blob: 027f8b0e05dd89df88a413a1c4b211d2f0048a11 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 mount.c (22.10.09)
3 exFAT file system implementation library.
4
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04005 Free exFAT implementation.
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -04006 Copyright (C) 2010-2014 Andrew Nayenko
bigbiff bigbiff9c754052013-01-09 09:09:08 -05007
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04008 This program is free software; you can redistribute it and/or modify
bigbiff bigbiff9c754052013-01-09 09:09:08 -05009 it under the terms of the GNU General Public License as published by
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040010 the Free Software Foundation, either version 2 of the License, or
bigbiff bigbiff9c754052013-01-09 09:09:08 -050011 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040018 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
bigbiff bigbiff9c754052013-01-09 09:09:08 -050021*/
22
23#include "exfat.h"
24#include <string.h>
25#include <stdlib.h>
26#include <errno.h>
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040027#include <inttypes.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050028#include <unistd.h>
29#include <sys/types.h>
30
31static uint64_t rootdir_size(const struct exfat* ef)
32{
33 uint64_t clusters = 0;
34 cluster_t rootdir_cluster = le32_to_cpu(ef->sb->rootdir_cluster);
35
36 while (!CLUSTER_INVALID(rootdir_cluster))
37 {
38 clusters++;
39 /* root directory cannot be contiguous because there is no flag
40 to indicate this */
41 rootdir_cluster = exfat_next_cluster(ef, ef->root, rootdir_cluster);
42 }
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -040043 if (rootdir_cluster != EXFAT_CLUSTER_END)
44 {
45 exfat_error("bad cluster %#x while reading root directory",
46 rootdir_cluster);
47 return 0;
48 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -050049 return clusters * CLUSTER_SIZE(*ef->sb);
50}
51
52static const char* get_option(const char* options, const char* option_name)
53{
54 const char* p;
55 size_t length = strlen(option_name);
56
57 for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name))
58 if ((p == options || p[-1] == ',') && p[length] == '=')
59 return p + length + 1;
60 return NULL;
61}
62
63static int get_int_option(const char* options, const char* option_name,
64 int base, int default_value)
65{
66 const char* p = get_option(options, option_name);
67
68 if (p == NULL)
69 return default_value;
70 return strtol(p, NULL, base);
71}
72
73static bool match_option(const char* options, const char* option_name)
74{
75 const char* p;
76 size_t length = strlen(option_name);
77
78 for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name))
79 if ((p == options || p[-1] == ',') &&
80 (p[length] == ',' || p[length] == '\0'))
81 return true;
82 return false;
83}
84
85static void parse_options(struct exfat* ef, const char* options)
86{
87 int sys_umask = umask(0);
88 int opt_umask;
89
90 umask(sys_umask); /* restore umask */
91 opt_umask = get_int_option(options, "umask", 8, sys_umask);
92 ef->dmask = get_int_option(options, "dmask", 8, opt_umask) & 0777;
93 ef->fmask = get_int_option(options, "fmask", 8, opt_umask) & 0777;
94
95 ef->uid = get_int_option(options, "uid", 10, geteuid());
96 ef->gid = get_int_option(options, "gid", 10, getegid());
97
98 ef->noatime = match_option(options, "noatime");
99}
100
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400101static bool verify_vbr_checksum(struct exfat_dev* dev, void* sector,
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500102 off64_t sector_size)
103{
104 uint32_t vbr_checksum;
105 int i;
106
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400107 if (exfat_pread(dev, sector, sector_size, 0) < 0)
108 {
109 exfat_error("failed to read boot sector");
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400110 return false;
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400111 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500112 vbr_checksum = exfat_vbr_start_checksum(sector, sector_size);
113 for (i = 1; i < 11; i++)
114 {
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400115 if (exfat_pread(dev, sector, sector_size, i * sector_size) < 0)
116 {
117 exfat_error("failed to read VBR sector");
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400118 return false;
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400119 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500120 vbr_checksum = exfat_vbr_add_checksum(sector, sector_size,
121 vbr_checksum);
122 }
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400123 if (exfat_pread(dev, sector, sector_size, i * sector_size) < 0)
124 {
125 exfat_error("failed to read VBR checksum sector");
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400126 return false;
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400127 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500128 for (i = 0; i < sector_size / sizeof(vbr_checksum); i++)
129 if (le32_to_cpu(((const le32_t*) sector)[i]) != vbr_checksum)
130 {
131 exfat_error("invalid VBR checksum 0x%x (expected 0x%x)",
132 le32_to_cpu(((const le32_t*) sector)[i]), vbr_checksum);
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400133 return false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500134 }
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400135 return true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500136}
137
138static int commit_super_block(const struct exfat* ef)
139{
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400140 if (exfat_pwrite(ef->dev, ef->sb, sizeof(struct exfat_super_block), 0) < 0)
141 {
142 exfat_error("failed to write super block");
143 return 1;
144 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500145 return exfat_fsync(ef->dev);
146}
147
148static int prepare_super_block(const struct exfat* ef)
149{
150 if (le16_to_cpu(ef->sb->volume_state) & EXFAT_STATE_MOUNTED)
151 exfat_warn("volume was not unmounted cleanly");
152
153 if (ef->ro)
154 return 0;
155
156 ef->sb->volume_state = cpu_to_le16(
157 le16_to_cpu(ef->sb->volume_state) | EXFAT_STATE_MOUNTED);
158 return commit_super_block(ef);
159}
160
161int exfat_mount(struct exfat* ef, const char* spec, const char* options)
162{
163 int rc;
164 enum exfat_mode mode;
165
166 exfat_tzset();
167 memset(ef, 0, sizeof(struct exfat));
168
169 parse_options(ef, options);
170
171 if (match_option(options, "ro"))
172 mode = EXFAT_MODE_RO;
173 else if (match_option(options, "ro_fallback"))
174 mode = EXFAT_MODE_ANY;
175 else
176 mode = EXFAT_MODE_RW;
177 ef->dev = exfat_open(spec, mode);
178 if (ef->dev == NULL)
179 return -EIO;
180 if (exfat_get_mode(ef->dev) == EXFAT_MODE_RO)
181 {
182 if (mode == EXFAT_MODE_ANY)
183 ef->ro = -1;
184 else
185 ef->ro = 1;
186 }
187
188 ef->sb = malloc(sizeof(struct exfat_super_block));
189 if (ef->sb == NULL)
190 {
191 exfat_close(ef->dev);
192 exfat_error("failed to allocate memory for the super block");
193 return -ENOMEM;
194 }
195 memset(ef->sb, 0, sizeof(struct exfat_super_block));
196
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400197 if (exfat_pread(ef->dev, ef->sb, sizeof(struct exfat_super_block), 0) < 0)
198 {
199 exfat_close(ef->dev);
200 free(ef->sb);
201 exfat_error("failed to read boot sector");
202 return -EIO;
203 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500204 if (memcmp(ef->sb->oem_name, "EXFAT ", 8) != 0)
205 {
206 exfat_close(ef->dev);
207 free(ef->sb);
208 exfat_error("exFAT file system is not found");
209 return -EIO;
210 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500211 ef->zero_cluster = malloc(CLUSTER_SIZE(*ef->sb));
212 if (ef->zero_cluster == NULL)
213 {
214 exfat_close(ef->dev);
215 free(ef->sb);
216 exfat_error("failed to allocate zero sector");
217 return -ENOMEM;
218 }
219 /* use zero_cluster as a temporary buffer for VBR checksum verification */
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400220 if (!verify_vbr_checksum(ef->dev, ef->zero_cluster, SECTOR_SIZE(*ef->sb)))
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500221 {
222 free(ef->zero_cluster);
223 exfat_close(ef->dev);
224 free(ef->sb);
225 return -EIO;
226 }
227 memset(ef->zero_cluster, 0, CLUSTER_SIZE(*ef->sb));
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400228 if (ef->sb->version.major != 1 || ef->sb->version.minor != 0)
229 {
230 free(ef->zero_cluster);
231 exfat_close(ef->dev);
232 exfat_error("unsupported exFAT version: %hhu.%hhu",
233 ef->sb->version.major, ef->sb->version.minor);
234 free(ef->sb);
235 return -EIO;
236 }
237 if (ef->sb->fat_count != 1)
238 {
239 free(ef->zero_cluster);
240 exfat_close(ef->dev);
241 exfat_error("unsupported FAT count: %hhu", ef->sb->fat_count);
242 free(ef->sb);
243 return -EIO;
244 }
245 /* officially exFAT supports cluster size up to 32 MB */
246 if ((int) ef->sb->sector_bits + (int) ef->sb->spc_bits > 25)
247 {
248 free(ef->zero_cluster);
249 exfat_close(ef->dev);
250 exfat_error("too big cluster size: 2^%d",
251 (int) ef->sb->sector_bits + (int) ef->sb->spc_bits);
252 free(ef->sb);
253 return -EIO;
254 }
255 if (le64_to_cpu(ef->sb->sector_count) * SECTOR_SIZE(*ef->sb) >
256 exfat_get_size(ef->dev))
257 {
258 free(ef->zero_cluster);
259 exfat_error("file system is larger than underlying device: "
260 "%"PRIu64" > %"PRIu64,
261 le64_to_cpu(ef->sb->sector_count) * SECTOR_SIZE(*ef->sb),
262 exfat_get_size(ef->dev));
263 exfat_close(ef->dev);
264 free(ef->sb);
265 return -EIO;
266 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500267
268 ef->root = malloc(sizeof(struct exfat_node));
269 if (ef->root == NULL)
270 {
271 free(ef->zero_cluster);
272 exfat_close(ef->dev);
273 free(ef->sb);
274 exfat_error("failed to allocate root node");
275 return -ENOMEM;
276 }
277 memset(ef->root, 0, sizeof(struct exfat_node));
278 ef->root->flags = EXFAT_ATTRIB_DIR;
279 ef->root->start_cluster = le32_to_cpu(ef->sb->rootdir_cluster);
280 ef->root->fptr_cluster = ef->root->start_cluster;
281 ef->root->name[0] = cpu_to_le16('\0');
282 ef->root->size = rootdir_size(ef);
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400283 if (ef->root->size == 0)
284 {
285 free(ef->root);
286 free(ef->zero_cluster);
287 exfat_close(ef->dev);
288 free(ef->sb);
289 return -EIO;
290 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500291 /* exFAT does not have time attributes for the root directory */
292 ef->root->mtime = 0;
293 ef->root->atime = 0;
294 /* always keep at least 1 reference to the root node */
295 exfat_get_node(ef->root);
296
297 rc = exfat_cache_directory(ef, ef->root);
298 if (rc != 0)
299 goto error;
300 if (ef->upcase == NULL)
301 {
302 exfat_error("upcase table is not found");
303 goto error;
304 }
305 if (ef->cmap.chunk == NULL)
306 {
307 exfat_error("clusters bitmap is not found");
308 goto error;
309 }
310
311 if (prepare_super_block(ef) != 0)
312 goto error;
313
314 return 0;
315
316error:
317 exfat_put_node(ef, ef->root);
318 exfat_reset_cache(ef);
319 free(ef->root);
320 free(ef->zero_cluster);
321 exfat_close(ef->dev);
322 free(ef->sb);
323 return -EIO;
324}
325
326static void finalize_super_block(struct exfat* ef)
327{
328 if (ef->ro)
329 return;
330
331 ef->sb->volume_state = cpu_to_le16(
332 le16_to_cpu(ef->sb->volume_state) & ~EXFAT_STATE_MOUNTED);
333
334 /* Some implementations set the percentage of allocated space to 0xff
335 on FS creation and never update it. In this case leave it as is. */
336 if (ef->sb->allocated_percent != 0xff)
337 {
338 uint32_t free, total;
339
340 free = exfat_count_free_clusters(ef);
341 total = le32_to_cpu(ef->sb->cluster_count);
342 ef->sb->allocated_percent = ((total - free) * 100 + total / 2) / total;
343 }
344
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400345 commit_super_block(ef); /* ignore return code */
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500346}
347
348void exfat_unmount(struct exfat* ef)
349{
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400350 exfat_flush(ef); /* ignore return code */
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500351 exfat_put_node(ef, ef->root);
352 exfat_reset_cache(ef);
353 free(ef->root);
354 ef->root = NULL;
355 finalize_super_block(ef);
356 exfat_close(ef->dev); /* close descriptor immediately after fsync */
357 ef->dev = NULL;
358 free(ef->zero_cluster);
359 ef->zero_cluster = NULL;
360 free(ef->cmap.chunk);
361 ef->cmap.chunk = NULL;
362 free(ef->sb);
363 ef->sb = NULL;
364 free(ef->upcase);
365 ef->upcase = NULL;
366 ef->upcase_chars = 0;
367}