OSDN Git Service

Retry to mount FS in read-only mode if device is write-protected.
[android-x86/external-exfat.git] / libexfat / mount.c
1 /*
2         mount.c (22.10.09)
3         exFAT file system implementation library.
4
5         Copyright (C) 2009, 2010  Andrew Nayenko
6
7         This program is free software: you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation, either version 3 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "exfat.h"
22 #include <string.h>
23 #include <stdlib.h>
24 #include <errno.h>
25 #include <unistd.h>
26 #include <sys/types.h>
27 #define _XOPEN_SOURCE /* for tzset() in Linux */
28 #include <time.h>
29
30 static uint64_t rootdir_size(const struct exfat* ef)
31 {
32         uint64_t clusters = 0;
33         cluster_t rootdir_cluster = le32_to_cpu(ef->sb->rootdir_cluster);
34
35         while (!CLUSTER_INVALID(rootdir_cluster))
36         {
37                 clusters++;
38                 /* root directory cannot be contiguous because there is no flag
39                    to indicate this */
40                 rootdir_cluster = exfat_next_cluster(ef, ef->root, rootdir_cluster);
41         }
42         return clusters * CLUSTER_SIZE(*ef->sb);
43 }
44
45 static const char* get_option(const char* options, const char* option_name)
46 {
47         const char* p;
48         size_t length = strlen(option_name);
49
50         for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name))
51                 if ((p == options || p[-1] == ',') && p[length] == '=')
52                         return p + length + 1;
53         return NULL;
54 }
55
56 static int get_int_option(const char* options, const char* option_name,
57                 int base, int default_value)
58 {
59         const char* p = get_option(options, option_name);
60
61         if (p == NULL)
62                 return default_value;
63         return strtol(p, NULL, base);
64 }
65
66 static int match_option(const char* options, const char* option_name)
67 {
68         const char* p;
69         size_t length = strlen(option_name);
70
71         for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name))
72                 if ((p == options || p[-1] == ',') &&
73                                 (p[length] == ',' || p[length] == '\0'))
74                         return 1;
75         return 0;
76 }
77
78 static void parse_options(struct exfat* ef, const char* options)
79 {
80         int sys_umask = umask(0);
81         int opt_umask;
82
83         umask(sys_umask); /* restore umask */
84         opt_umask = get_int_option(options, "umask", 8, sys_umask);
85         ef->dmask = get_int_option(options, "dmask", 8, opt_umask) & 0777;
86         ef->fmask = get_int_option(options, "fmask", 8, opt_umask) & 0777;
87
88         ef->uid = get_int_option(options, "uid", 10, geteuid());
89         ef->gid = get_int_option(options, "gid", 10, getegid());
90
91         ef->ro = match_option(options, "ro");
92         ef->noatime = match_option(options, "noatime");
93 }
94
95 static int verify_vbr_checksum(void* sector, off_t sector_size, int fd)
96 {
97         uint32_t vbr_checksum;
98         int i;
99
100         exfat_read_raw(sector, sector_size, 0, fd);
101         vbr_checksum = exfat_vbr_start_checksum(sector, sector_size);
102         for (i = 1; i < 11; i++)
103         {
104                 exfat_read_raw(sector, sector_size, i * sector_size, fd);
105                 vbr_checksum = exfat_vbr_add_checksum(sector, sector_size,
106                                 vbr_checksum);
107         }
108         exfat_read_raw(sector, sector_size, i * sector_size, fd);
109         for (i = 0; i < sector_size / sizeof(vbr_checksum); i++)
110                 if (le32_to_cpu(((const le32_t*) sector)[i]) != vbr_checksum)
111                 {
112                         exfat_error("invalid VBR checksum 0x%x (expected 0x%x)",
113                                         le32_to_cpu(((const le32_t*) sector)[i]), vbr_checksum);
114                         return 1;
115                 }
116         return 0;
117 }
118
119 int exfat_mount(struct exfat* ef, const char* spec, const char* options)
120 {
121         int rc;
122
123         tzset();
124         memset(ef, 0, sizeof(struct exfat));
125
126         parse_options(ef, options);
127
128         ef->fd = exfat_open(spec, ef->ro);
129         if (ef->fd < 0)
130         {
131                 if (ef->ro || !match_option(options, "ro_fallback"))
132                         return -EIO;
133                 ef->fd = exfat_open(spec, 1);
134                 if (ef->fd < 0)
135                         return -EIO;
136                 exfat_warn("device is write-protected, mounting read-only");
137                 ef->ro_fallback = ef->ro = 1;
138         }
139
140         ef->sb = malloc(sizeof(struct exfat_super_block));
141         if (ef->sb == NULL)
142         {
143                 close(ef->fd);
144                 exfat_error("failed to allocate memory for the super block");
145                 return -ENOMEM;
146         }
147         memset(ef->sb, 0, sizeof(struct exfat_super_block));
148
149         exfat_read_raw(ef->sb, sizeof(struct exfat_super_block), 0, ef->fd);
150         if (memcmp(ef->sb->oem_name, "EXFAT   ", 8) != 0)
151         {
152                 close(ef->fd);
153                 free(ef->sb);
154                 exfat_error("exFAT file system is not found");
155                 return -EIO;
156         }
157         if (ef->sb->version.major != 1 || ef->sb->version.minor != 0)
158         {
159                 close(ef->fd);
160                 exfat_error("unsupported exFAT version: %hhu.%hhu",
161                                 ef->sb->version.major, ef->sb->version.minor);
162                 free(ef->sb);
163                 return -EIO;
164         }
165         if (ef->sb->fat_count != 1)
166         {
167                 close(ef->fd);
168                 free(ef->sb);
169                 exfat_error("unsupported FAT count: %hhu", ef->sb->fat_count);
170                 return -EIO;
171         }
172         /* officially exFAT supports cluster size up to 32 MB */
173         if ((int) ef->sb->sector_bits + (int) ef->sb->spc_bits > 25)
174         {
175                 close(ef->fd);
176                 free(ef->sb);
177                 exfat_error("too big cluster size: 2^%d",
178                                 (int) ef->sb->sector_bits + (int) ef->sb->spc_bits);
179                 return -EIO;
180         }
181
182         ef->zero_cluster = malloc(CLUSTER_SIZE(*ef->sb));
183         if (ef->zero_cluster == NULL)
184         {
185                 close(ef->fd);
186                 free(ef->sb);
187                 exfat_error("failed to allocate zero sector");
188                 return -ENOMEM;
189         }
190         /* use zero_cluster as a temporary buffer for VBR checksum verification */
191         if (verify_vbr_checksum(ef->zero_cluster, SECTOR_SIZE(*ef->sb),
192                         ef->fd) != 0)
193         {
194                 free(ef->zero_cluster);
195                 close(ef->fd);
196                 free(ef->sb);
197                 return -EIO;
198         }
199         memset(ef->zero_cluster, 0, CLUSTER_SIZE(*ef->sb));
200
201         ef->root = malloc(sizeof(struct exfat_node));
202         if (ef->root == NULL)
203         {
204                 free(ef->zero_cluster);
205                 close(ef->fd);
206                 free(ef->sb);
207                 exfat_error("failed to allocate root node");
208                 return -ENOMEM;
209         }
210         memset(ef->root, 0, sizeof(struct exfat_node));
211         ef->root->flags = EXFAT_ATTRIB_DIR;
212         ef->root->start_cluster = le32_to_cpu(ef->sb->rootdir_cluster);
213         ef->root->fptr_cluster = ef->root->start_cluster;
214         ef->root->name[0] = cpu_to_le16('\0');
215         ef->root->size = rootdir_size(ef);
216         /* exFAT does not have time attributes for the root directory */
217         ef->root->mtime = 0;
218         ef->root->atime = 0;
219         /* always keep at least 1 reference to the root node */
220         exfat_get_node(ef->root);
221
222         rc = exfat_cache_directory(ef, ef->root);
223         if (rc != 0)
224                 goto error;
225         if (ef->upcase == NULL)
226         {
227                 exfat_error("upcase table is not found");
228                 goto error;
229         }
230         if (ef->cmap.chunk == NULL)
231         {
232                 exfat_error("clusters bitmap is not found");
233                 goto error;
234         }
235
236         return 0;
237
238 error:
239         exfat_put_node(ef, ef->root);
240         exfat_reset_cache(ef);
241         free(ef->root);
242         free(ef->zero_cluster);
243         close(ef->fd);
244         free(ef->sb);
245         return -EIO;
246 }
247
248 void exfat_unmount(struct exfat* ef)
249 {
250         exfat_put_node(ef, ef->root);
251         exfat_reset_cache(ef);
252         free(ef->root);
253         ef->root = NULL;
254         free(ef->zero_cluster);
255         ef->zero_cluster = NULL;
256         free(ef->cmap.chunk);
257         ef->cmap.chunk = NULL;
258         if (fsync(ef->fd) < 0)
259                 exfat_error("fsync failed");
260         if (close(ef->fd) < 0)
261                 exfat_error("close failed");
262         ef->fd = 0;
263         free(ef->sb);
264         ef->sb = NULL;
265         free(ef->upcase);
266         ef->upcase = NULL;
267         ef->upcase_chars = 0;
268 }