diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-18 21:08:49 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-18 21:08:49 +0000 |
commit | de7684a309ad20c1b889d048d741cb1dd52245f7 (patch) | |
tree | efae3387e1978cdd128ff2a922b734d0e9d0180f /util-linux/volume_id/ntfs.c | |
parent | 27dd495b98a6135554b1d839fefe436ba3c6ca71 (diff) | |
download | busybox-w32-de7684a309ad20c1b889d048d741cb1dd52245f7.tar.gz busybox-w32-de7684a309ad20c1b889d048d741cb1dd52245f7.tar.bz2 busybox-w32-de7684a309ad20c1b889d048d741cb1dd52245f7.zip |
support for mount by label (not yet tested)
Also adds findfs applet. Closes bug 1143.
Diffstat (limited to 'util-linux/volume_id/ntfs.c')
-rw-r--r-- | util-linux/volume_id/ntfs.c | 193 |
1 files changed, 193 insertions, 0 deletions
diff --git a/util-linux/volume_id/ntfs.c b/util-linux/volume_id/ntfs.c new file mode 100644 index 000000000..cbd5d5bba --- /dev/null +++ b/util-linux/volume_id/ntfs.c | |||
@@ -0,0 +1,193 @@ | |||
1 | /* | ||
2 | * volume_id - reads filesystem label and uuid | ||
3 | * | ||
4 | * Copyright (C) 2004 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 | |||
21 | #include "volume_id_internal.h" | ||
22 | |||
23 | struct ntfs_super_block { | ||
24 | uint8_t jump[3]; | ||
25 | uint8_t oem_id[8]; | ||
26 | uint16_t bytes_per_sector; | ||
27 | uint8_t sectors_per_cluster; | ||
28 | uint16_t reserved_sectors; | ||
29 | uint8_t fats; | ||
30 | uint16_t root_entries; | ||
31 | uint16_t sectors; | ||
32 | uint8_t media_type; | ||
33 | uint16_t sectors_per_fat; | ||
34 | uint16_t sectors_per_track; | ||
35 | uint16_t heads; | ||
36 | uint32_t hidden_sectors; | ||
37 | uint32_t large_sectors; | ||
38 | uint16_t unused[2]; | ||
39 | uint64_t number_of_sectors; | ||
40 | uint64_t mft_cluster_location; | ||
41 | uint64_t mft_mirror_cluster_location; | ||
42 | int8_t cluster_per_mft_record; | ||
43 | uint8_t reserved1[3]; | ||
44 | int8_t cluster_per_index_record; | ||
45 | uint8_t reserved2[3]; | ||
46 | uint8_t volume_serial[8]; | ||
47 | uint16_t checksum; | ||
48 | } __attribute__((__packed__)); | ||
49 | |||
50 | struct master_file_table_record { | ||
51 | uint8_t magic[4]; | ||
52 | uint16_t usa_ofs; | ||
53 | uint16_t usa_count; | ||
54 | uint64_t lsn; | ||
55 | uint16_t sequence_number; | ||
56 | uint16_t link_count; | ||
57 | uint16_t attrs_offset; | ||
58 | uint16_t flags; | ||
59 | uint32_t bytes_in_use; | ||
60 | uint32_t bytes_allocated; | ||
61 | } __attribute__((__packed__)); | ||
62 | |||
63 | struct file_attribute { | ||
64 | uint32_t type; | ||
65 | uint32_t len; | ||
66 | uint8_t non_resident; | ||
67 | uint8_t name_len; | ||
68 | uint16_t name_offset; | ||
69 | uint16_t flags; | ||
70 | uint16_t instance; | ||
71 | uint32_t value_len; | ||
72 | uint16_t value_offset; | ||
73 | } __attribute__((__packed__)); | ||
74 | |||
75 | struct volume_info { | ||
76 | uint64_t reserved; | ||
77 | uint8_t major_ver; | ||
78 | uint8_t minor_ver; | ||
79 | } __attribute__((__packed__)); | ||
80 | |||
81 | #define MFT_RECORD_VOLUME 3 | ||
82 | #define MFT_RECORD_ATTR_VOLUME_NAME 0x60 | ||
83 | #define MFT_RECORD_ATTR_VOLUME_INFO 0x70 | ||
84 | #define MFT_RECORD_ATTR_OBJECT_ID 0x40 | ||
85 | #define MFT_RECORD_ATTR_END 0xffffffffu | ||
86 | |||
87 | int volume_id_probe_ntfs(struct volume_id *id, uint64_t off) | ||
88 | { | ||
89 | unsigned sector_size; | ||
90 | unsigned cluster_size; | ||
91 | uint64_t mft_cluster; | ||
92 | uint64_t mft_off; | ||
93 | unsigned mft_record_size; | ||
94 | unsigned attr_type; | ||
95 | unsigned attr_off; | ||
96 | unsigned attr_len; | ||
97 | unsigned val_off; | ||
98 | unsigned val_len; | ||
99 | struct master_file_table_record *mftr; | ||
100 | struct ntfs_super_block *ns; | ||
101 | const uint8_t *buf; | ||
102 | const uint8_t *val; | ||
103 | |||
104 | dbg("probing at offset 0x%llx", (unsigned long long) off); | ||
105 | |||
106 | ns = volume_id_get_buffer(id, off, 0x200); | ||
107 | if (ns == NULL) | ||
108 | return -1; | ||
109 | |||
110 | if (memcmp(ns->oem_id, "NTFS", 4) != 0) | ||
111 | return -1; | ||
112 | |||
113 | volume_id_set_uuid(id, ns->volume_serial, UUID_NTFS); | ||
114 | |||
115 | sector_size = le16_to_cpu(ns->bytes_per_sector); | ||
116 | cluster_size = ns->sectors_per_cluster * sector_size; | ||
117 | mft_cluster = le64_to_cpu(ns->mft_cluster_location); | ||
118 | mft_off = mft_cluster * cluster_size; | ||
119 | |||
120 | if (ns->cluster_per_mft_record < 0) | ||
121 | /* size = -log2(mft_record_size); normally 1024 Bytes */ | ||
122 | mft_record_size = 1 << -ns->cluster_per_mft_record; | ||
123 | else | ||
124 | mft_record_size = ns->cluster_per_mft_record * cluster_size; | ||
125 | |||
126 | dbg("sectorsize 0x%x", sector_size); | ||
127 | dbg("clustersize 0x%x", cluster_size); | ||
128 | dbg("mftcluster %llu", (unsigned long long) mft_cluster); | ||
129 | dbg("mftoffset 0x%llx", (unsigned long long) mft_off); | ||
130 | dbg("cluster per mft_record %i", ns->cluster_per_mft_record); | ||
131 | dbg("mft record size %i", mft_record_size); | ||
132 | |||
133 | buf = volume_id_get_buffer(id, off + mft_off + (MFT_RECORD_VOLUME * mft_record_size), | ||
134 | mft_record_size); | ||
135 | if (buf == NULL) | ||
136 | goto found; | ||
137 | |||
138 | mftr = (struct master_file_table_record*) buf; | ||
139 | |||
140 | dbg("mftr->magic '%c%c%c%c'", mftr->magic[0], mftr->magic[1], mftr->magic[2], mftr->magic[3]); | ||
141 | if (memcmp(mftr->magic, "FILE", 4) != 0) | ||
142 | goto found; | ||
143 | |||
144 | attr_off = le16_to_cpu(mftr->attrs_offset); | ||
145 | dbg("file $Volume's attributes are at offset %i", attr_off); | ||
146 | |||
147 | while (1) { | ||
148 | struct file_attribute *attr; | ||
149 | |||
150 | attr = (struct file_attribute*) &buf[attr_off]; | ||
151 | attr_type = le32_to_cpu(attr->type); | ||
152 | attr_len = le16_to_cpu(attr->len); | ||
153 | val_off = le16_to_cpu(attr->value_offset); | ||
154 | val_len = le32_to_cpu(attr->value_len); | ||
155 | attr_off += attr_len; | ||
156 | |||
157 | if (attr_len == 0) | ||
158 | break; | ||
159 | |||
160 | if (attr_off >= mft_record_size) | ||
161 | break; | ||
162 | |||
163 | if (attr_type == MFT_RECORD_ATTR_END) | ||
164 | break; | ||
165 | |||
166 | dbg("found attribute type 0x%x, len %i, at offset %i", | ||
167 | attr_type, attr_len, attr_off); | ||
168 | |||
169 | if (attr_type == MFT_RECORD_ATTR_VOLUME_INFO) { | ||
170 | struct volume_info *info; | ||
171 | dbg("found info, len %i", val_len); | ||
172 | info = (struct volume_info*) (((uint8_t *) attr) + val_off); | ||
173 | snprintf(id->type_version, sizeof(id->type_version)-1, | ||
174 | "%u.%u", info->major_ver, info->minor_ver); | ||
175 | } | ||
176 | |||
177 | if (attr_type == MFT_RECORD_ATTR_VOLUME_NAME) { | ||
178 | dbg("found label, len %i", val_len); | ||
179 | if (val_len > VOLUME_ID_LABEL_SIZE) | ||
180 | val_len = VOLUME_ID_LABEL_SIZE; | ||
181 | |||
182 | val = ((uint8_t *) attr) + val_off; | ||
183 | volume_id_set_label_raw(id, val, val_len); | ||
184 | volume_id_set_label_unicode16(id, val, LE, val_len); | ||
185 | } | ||
186 | } | ||
187 | |||
188 | found: | ||
189 | volume_id_set_usage(id, VOLUME_ID_FILESYSTEM); | ||
190 | id->type = "ntfs"; | ||
191 | |||
192 | return 0; | ||
193 | } | ||