OSDN Git Service

Check FS version on mount.
[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 <fcntl.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #define _XOPEN_SOURCE /* for tzset() in Linux */
30 #include <time.h>
31
32 static uint64_t rootdir_size(const struct exfat* ef)
33 {
34         uint64_t clusters = 0;
35         cluster_t rootdir_cluster = le32_to_cpu(ef->sb->rootdir_cluster);
36
37         while (!CLUSTER_INVALID(rootdir_cluster))
38         {
39                 clusters++;
40                 /* root directory cannot be contiguous because there is no flag
41                    to indicate this */
42                 rootdir_cluster = exfat_next_cluster(ef, ef->root, rootdir_cluster);
43         }
44         return clusters * CLUSTER_SIZE(*ef->sb);
45 }
46
47 static const char* get_option(const char* options, const char* option_name)
48 {
49         const char* p;
50         size_t length = strlen(option_name);
51
52         for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name))
53                 if ((p == options || p[-1] == ',') && p[length] == '=')
54                         return p + length + 1;
55         return NULL;
56 }
57
58 static int get_int_option(const char* options, const char* option_name,
59                 int base, int default_value)
60 {
61         const char* p = get_option(options, option_name);
62
63         if (p == NULL)
64                 return default_value;
65         return strtol(p, NULL, base);
66 }
67
68 static int match_option(const char* options, const char* option_name)
69 {
70         const char* p;
71         size_t length = strlen(option_name);
72
73         for (p = strstr(options, option_name); p; p = strstr(p + 1, option_name))
74                 if ((p == options || p[-1] == ',') &&
75                                 (p[length] == ',' || p[length] == '\0'))
76                         return 1;
77         return 0;
78 }
79
80 static void parse_options(struct exfat* ef, const char* options)
81 {
82         int sys_umask = umask(0);
83         int opt_umask;
84
85         umask(sys_umask); /* restore umask */
86         opt_umask = get_int_option(options, "umask", 8, sys_umask);
87         ef->dmask = get_int_option(options, "dmask", 8, opt_umask) & 0777;
88         ef->fmask = get_int_option(options, "fmask", 8, opt_umask) & 0777;
89
90         ef->uid = get_int_option(options, "uid", 10, geteuid());
91         ef->gid = get_int_option(options, "gid", 10, getegid());
92
93         ef->ro = match_option(options, "ro");
94         ef->noatime = match_option(options, "noatime");
95 }
96
97 int exfat_mount(struct exfat* ef, const char* spec, const char* options)
98 {
99         uint16_t fs_version;
100
101         tzset();
102         memset(ef, 0, sizeof(struct exfat));
103
104         ef->sb = malloc(sizeof(struct exfat_super_block));
105         if (ef->sb == NULL)
106         {
107                 exfat_error("memory allocation failed");
108                 return -ENOMEM;
109         }
110         memset(ef->sb, 0, sizeof(struct exfat_super_block));
111
112         parse_options(ef, options);
113
114         ef->fd = open(spec, ef->ro ? O_RDONLY : O_RDWR);
115         if (ef->fd < 0)
116         {
117                 free(ef->sb);
118                 exfat_error("failed to open `%s'", spec);
119                 return -EIO;
120         }
121
122         exfat_read_raw(ef->sb, sizeof(struct exfat_super_block), 0, ef->fd);
123         if (memcmp(ef->sb->oem_name, "EXFAT   ", 8) != 0)
124         {
125                 close(ef->fd);
126                 free(ef->sb);
127                 exfat_error("exFAT file system is not found");
128                 return -EIO;
129         }
130         fs_version = le16_to_cpu(ef->sb->version);
131         if (fs_version != 0x0100)
132         {
133                 close(ef->fd);
134                 free(ef->sb);
135                 exfat_error("unsupported exFAT version: %hu.%hu",
136                                 fs_version >> 8, fs_version & 0xff);
137                 return -EIO;
138         }
139         /* officially exFAT supports cluster size up to 32 MB */
140         if ((int) ef->sb->block_bits + (int) ef->sb->bpc_bits > 25)
141         {
142                 close(ef->fd);
143                 free(ef->sb);
144                 exfat_error("too big cluster size: 2^%d",
145                                 (int) ef->sb->block_bits + (int) ef->sb->bpc_bits);
146                 return -EIO;
147         }
148
149         ef->zero_block = malloc(BLOCK_SIZE(*ef->sb));
150         if (ef->zero_block == NULL)
151         {
152                 close(ef->fd);
153                 free(ef->sb);
154                 exfat_error("failed to allocate zero block");
155                 return -ENOMEM;
156         }
157         memset(ef->zero_block, 0, BLOCK_SIZE(*ef->sb));
158
159         ef->root = malloc(sizeof(struct exfat_node));
160         if (ef->root == NULL)
161         {
162                 free(ef->zero_block);
163                 close(ef->fd);
164                 free(ef->sb);
165                 exfat_error("failed to allocate root node");
166                 return -ENOMEM;
167         }
168         memset(ef->root, 0, sizeof(struct exfat_node));
169         ef->root->flags = EXFAT_ATTRIB_DIR;
170         ef->root->start_cluster = le32_to_cpu(ef->sb->rootdir_cluster);
171         ef->root->fptr_cluster = ef->root->start_cluster;
172         ef->root->name[0] = cpu_to_le16('\0');
173         ef->root->size = rootdir_size(ef);
174         /* exFAT does not have time attributes for the root directory */
175         ef->root->mtime = 0;
176         ef->root->atime = 0;
177         /* always keep at least 1 reference to the root node */
178         exfat_get_node(ef->root);
179
180         return 0;
181 }
182
183 void exfat_unmount(struct exfat* ef)
184 {
185         exfat_put_node(ef, ef->root);
186         exfat_reset_cache(ef);
187         free(ef->root);
188         ef->root = NULL;
189         free(ef->zero_block);
190         ef->zero_block = NULL;
191         free(ef->cmap.chunk);
192         ef->cmap.chunk = NULL;
193         close(ef->fd);
194         ef->fd = 0;
195         free(ef->sb);
196         ef->sb = NULL;
197         free(ef->upcase);
198         ef->upcase = NULL;
199         ef->upcase_chars = 0;
200 }