blob: b8f278bffef5c83797f7af9d2e0dcf3273198c4e [file] [log] [blame]
Denis Vlasenkode7684a2008-02-18 21:08:49 +00001/*
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
Sven-Göran Bergh3b458012013-07-31 15:45:20 +020021//kbuild:lib-$(CONFIG_FEATURE_VOLUMEID_NTFS) += ntfs.o
22
Denis Vlasenkode7684a2008-02-18 21:08:49 +000023#include "volume_id_internal.h"
24
25struct ntfs_super_block {
26 uint8_t jump[3];
27 uint8_t oem_id[8];
28 uint16_t bytes_per_sector;
29 uint8_t sectors_per_cluster;
30 uint16_t reserved_sectors;
31 uint8_t fats;
32 uint16_t root_entries;
33 uint16_t sectors;
34 uint8_t media_type;
35 uint16_t sectors_per_fat;
36 uint16_t sectors_per_track;
37 uint16_t heads;
38 uint32_t hidden_sectors;
39 uint32_t large_sectors;
40 uint16_t unused[2];
41 uint64_t number_of_sectors;
42 uint64_t mft_cluster_location;
43 uint64_t mft_mirror_cluster_location;
44 int8_t cluster_per_mft_record;
45 uint8_t reserved1[3];
46 int8_t cluster_per_index_record;
47 uint8_t reserved2[3];
48 uint8_t volume_serial[8];
49 uint16_t checksum;
Denys Vlasenko8dc0e192009-09-16 00:58:11 +020050} PACKED;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000051
52struct master_file_table_record {
53 uint8_t magic[4];
54 uint16_t usa_ofs;
55 uint16_t usa_count;
56 uint64_t lsn;
57 uint16_t sequence_number;
58 uint16_t link_count;
59 uint16_t attrs_offset;
60 uint16_t flags;
61 uint32_t bytes_in_use;
62 uint32_t bytes_allocated;
Denys Vlasenko8dc0e192009-09-16 00:58:11 +020063} PACKED;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000064
65struct file_attribute {
66 uint32_t type;
67 uint32_t len;
68 uint8_t non_resident;
69 uint8_t name_len;
70 uint16_t name_offset;
71 uint16_t flags;
72 uint16_t instance;
73 uint32_t value_len;
74 uint16_t value_offset;
Denys Vlasenko8dc0e192009-09-16 00:58:11 +020075} PACKED;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000076
77struct volume_info {
78 uint64_t reserved;
79 uint8_t major_ver;
80 uint8_t minor_ver;
Denys Vlasenko8dc0e192009-09-16 00:58:11 +020081} PACKED;
Denis Vlasenkode7684a2008-02-18 21:08:49 +000082
83#define MFT_RECORD_VOLUME 3
84#define MFT_RECORD_ATTR_VOLUME_NAME 0x60
85#define MFT_RECORD_ATTR_VOLUME_INFO 0x70
86#define MFT_RECORD_ATTR_OBJECT_ID 0x40
87#define MFT_RECORD_ATTR_END 0xffffffffu
88
Denys Vlasenko89300962009-11-01 23:07:18 +010089int FAST_FUNC volume_id_probe_ntfs(struct volume_id *id /*,uint64_t off*/)
Denis Vlasenkode7684a2008-02-18 21:08:49 +000090{
Denis Vlasenko28ea4292009-02-15 05:51:19 +000091#define off ((uint64_t)0)
Denis Vlasenkode7684a2008-02-18 21:08:49 +000092 unsigned sector_size;
93 unsigned cluster_size;
94 uint64_t mft_cluster;
95 uint64_t mft_off;
96 unsigned mft_record_size;
97 unsigned attr_type;
98 unsigned attr_off;
99 unsigned attr_len;
100 unsigned val_off;
101 unsigned val_len;
102 struct master_file_table_record *mftr;
103 struct ntfs_super_block *ns;
104 const uint8_t *buf;
105 const uint8_t *val;
106
107 dbg("probing at offset 0x%llx", (unsigned long long) off);
108
109 ns = volume_id_get_buffer(id, off, 0x200);
110 if (ns == NULL)
111 return -1;
112
113 if (memcmp(ns->oem_id, "NTFS", 4) != 0)
114 return -1;
115
116 volume_id_set_uuid(id, ns->volume_serial, UUID_NTFS);
117
118 sector_size = le16_to_cpu(ns->bytes_per_sector);
119 cluster_size = ns->sectors_per_cluster * sector_size;
120 mft_cluster = le64_to_cpu(ns->mft_cluster_location);
121 mft_off = mft_cluster * cluster_size;
122
123 if (ns->cluster_per_mft_record < 0)
124 /* size = -log2(mft_record_size); normally 1024 Bytes */
125 mft_record_size = 1 << -ns->cluster_per_mft_record;
126 else
127 mft_record_size = ns->cluster_per_mft_record * cluster_size;
128
129 dbg("sectorsize 0x%x", sector_size);
130 dbg("clustersize 0x%x", cluster_size);
131 dbg("mftcluster %llu", (unsigned long long) mft_cluster);
132 dbg("mftoffset 0x%llx", (unsigned long long) mft_off);
133 dbg("cluster per mft_record %i", ns->cluster_per_mft_record);
134 dbg("mft record size %i", mft_record_size);
135
136 buf = volume_id_get_buffer(id, off + mft_off + (MFT_RECORD_VOLUME * mft_record_size),
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100137 mft_record_size);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000138 if (buf == NULL)
139 goto found;
140
141 mftr = (struct master_file_table_record*) buf;
142
143 dbg("mftr->magic '%c%c%c%c'", mftr->magic[0], mftr->magic[1], mftr->magic[2], mftr->magic[3]);
144 if (memcmp(mftr->magic, "FILE", 4) != 0)
145 goto found;
146
147 attr_off = le16_to_cpu(mftr->attrs_offset);
148 dbg("file $Volume's attributes are at offset %i", attr_off);
149
150 while (1) {
151 struct file_attribute *attr;
152
153 attr = (struct file_attribute*) &buf[attr_off];
154 attr_type = le32_to_cpu(attr->type);
Oliver Metz041baf22013-05-08 20:21:29 +0200155 attr_len = le32_to_cpu(attr->len);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000156 val_off = le16_to_cpu(attr->value_offset);
157 val_len = le32_to_cpu(attr->value_len);
158 attr_off += attr_len;
159
160 if (attr_len == 0)
161 break;
162
163 if (attr_off >= mft_record_size)
164 break;
165
166 if (attr_type == MFT_RECORD_ATTR_END)
167 break;
168
169 dbg("found attribute type 0x%x, len %i, at offset %i",
Denys Vlasenko60cb48c2013-01-14 15:57:44 +0100170 attr_type, attr_len, attr_off);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000171
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000172// if (attr_type == MFT_RECORD_ATTR_VOLUME_INFO) {
173// struct volume_info *info;
174// dbg("found info, len %i", val_len);
175// info = (struct volume_info*) (((uint8_t *) attr) + val_off);
176// snprintf(id->type_version, sizeof(id->type_version)-1,
177// "%u.%u", info->major_ver, info->minor_ver);
178// }
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000179
180 if (attr_type == MFT_RECORD_ATTR_VOLUME_NAME) {
181 dbg("found label, len %i", val_len);
182 if (val_len > VOLUME_ID_LABEL_SIZE)
183 val_len = VOLUME_ID_LABEL_SIZE;
184
185 val = ((uint8_t *) attr) + val_off;
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000186// volume_id_set_label_raw(id, val, val_len);
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000187 volume_id_set_label_unicode16(id, val, LE, val_len);
188 }
189 }
190
191 found:
Denis Vlasenkoc5b73722008-03-17 09:21:26 +0000192// volume_id_set_usage(id, VOLUME_ID_FILESYSTEM);
Denys Vlasenko90615a02010-12-30 00:40:11 +0100193 IF_FEATURE_BLKID_TYPE(id->type = "ntfs";)
Denis Vlasenkode7684a2008-02-18 21:08:49 +0000194
195 return 0;
196}