diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-25 14:22:08 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-25 14:22:08 +0200 |
commit | 73c47f6c41c97fb452b4747088543f2c2166830a (patch) | |
tree | 7caf2112b732b4294a85a382de7d0a5a7265fa19 /util-linux/volume_id/minix.c | |
parent | 5c123ac2082530ef4426737183ff76fe4595e1ff (diff) | |
download | busybox-w32-73c47f6c41c97fb452b4747088543f2c2166830a.tar.gz busybox-w32-73c47f6c41c97fb452b4747088543f2c2166830a.tar.bz2 busybox-w32-73c47f6c41c97fb452b4747088543f2c2166830a.zip |
volume_id: enable minix detection
function old new delta
volume_id_probe_minix - 87 +87
fs2 64 68 +4
------------------------------------------------------------------------------
(add/remove: 2/0 grow/shrink: 1/0 up/down: 91/0) Total: 91 bytes
Patch by wdlkmpx <wdlkmpx@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/volume_id/minix.c')
-rw-r--r-- | util-linux/volume_id/minix.c | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/util-linux/volume_id/minix.c b/util-linux/volume_id/minix.c new file mode 100644 index 000000000..c934f9ead --- /dev/null +++ b/util-linux/volume_id/minix.c | |||
@@ -0,0 +1,91 @@ | |||
1 | /* | ||
2 | * volume_id - reads filesystem label and uuid | ||
3 | * | ||
4 | * Copyright (C) 2005 Kay Sievers <kay.sievers@vrfy.org> | ||
5 | * | ||
6 | * This library is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU Lesser General Public | ||
8 | * License as published by the Free Software Foundation; either | ||
9 | * version 2.1 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * This library is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * Lesser General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU Lesser General Public | ||
17 | * License along with this library; if not, write to the Free Software | ||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
19 | */ | ||
20 | //config:config FEATURE_VOLUMEID_MINIX | ||
21 | //config: bool "minix filesystem" | ||
22 | //config: default y | ||
23 | //config: depends on VOLUMEID | ||
24 | |||
25 | //kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_MINIX) += minix.o | ||
26 | |||
27 | #include "volume_id_internal.h" | ||
28 | |||
29 | struct minix_super_block { | ||
30 | uint16_t s_ninodes; | ||
31 | uint16_t s_nzones; | ||
32 | uint16_t s_imap_blocks; | ||
33 | uint16_t s_zmap_blocks; | ||
34 | uint16_t s_firstdatazone; | ||
35 | uint16_t s_log_zone_size; | ||
36 | uint32_t s_max_size; | ||
37 | uint16_t s_magic; | ||
38 | uint16_t s_state; | ||
39 | uint32_t s_zones; | ||
40 | } PACKED; | ||
41 | |||
42 | /* V3 minix super-block data on disk */ | ||
43 | struct minix3_super_block { | ||
44 | uint32_t s_ninodes; | ||
45 | uint16_t s_pad0; | ||
46 | uint16_t s_imap_blocks; | ||
47 | uint16_t s_zmap_blocks; | ||
48 | uint16_t s_firstdatazone; | ||
49 | uint16_t s_log_zone_size; | ||
50 | uint16_t s_pad1; | ||
51 | uint32_t s_max_size; | ||
52 | uint32_t s_zones; | ||
53 | uint16_t s_magic; | ||
54 | uint16_t s_pad2; | ||
55 | uint16_t s_blocksize; | ||
56 | uint8_t s_disk_version; | ||
57 | } PACKED; | ||
58 | |||
59 | #define MINIX_SUPERBLOCK_OFFSET 0x400 | ||
60 | |||
61 | int FAST_FUNC volume_id_probe_minix(struct volume_id *id /*, uint64_t off*/) | ||
62 | { | ||
63 | #define off ((uint64_t)0) | ||
64 | struct minix_super_block *ms; | ||
65 | struct minix3_super_block *ms3; | ||
66 | |||
67 | dbg("probing at offset 0x%llx", (unsigned long long) off); | ||
68 | |||
69 | ms = volume_id_get_buffer(id, off + MINIX_SUPERBLOCK_OFFSET, 0x200); | ||
70 | if (ms == NULL) | ||
71 | return -1; | ||
72 | if (ms->s_magic == cpu_to_le16(0x137F)) /* minix V1 fs, 14 char names */ | ||
73 | goto found; | ||
74 | if (ms->s_magic == cpu_to_le16(0x138F)) /* minix V1 fs, 30 char names */ | ||
75 | goto found; | ||
76 | if (ms->s_magic == cpu_to_le16(0x2468)) /* minix V2 fs, 14 char names */ | ||
77 | goto found; | ||
78 | if (ms->s_magic == cpu_to_le16(0x2478)) /* minix V2 fs, 30 char names */ | ||
79 | goto found; | ||
80 | |||
81 | ms3 = (void*)ms; | ||
82 | if (ms3->s_magic == cpu_to_le16(0x4d5a)) /* minix V3 fs, 60 char names */ | ||
83 | goto found; | ||
84 | |||
85 | return -1; | ||
86 | |||
87 | found: | ||
88 | // volume_id_set_usage(id, VOLUME_ID_FILESYSTEM); | ||
89 | IF_FEATURE_BLKID_TYPE(id->type = "minix";) | ||
90 | return 0; | ||
91 | } | ||