OSDN Git Service

Refactored device access mode handling.
[android-x86/external-exfat.git] / fuse / main.c
1 /*
2         main.c (01.09.09)
3         FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
4
5         Copyright (C) 2010-2012  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 #define FUSE_USE_VERSION 26
22 #include <fuse.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <exfat.h>
29 #include <inttypes.h>
30 #include <limits.h>
31 #include <sys/types.h>
32 #include <pwd.h>
33 #include <unistd.h>
34
35 #define exfat_debug(format, ...)
36
37 #if !defined(FUSE_VERSION) || (FUSE_VERSION < 26)
38         #error FUSE 2.6 or later is required
39 #endif
40
41 const char* default_options = "ro_fallback,allow_other,blkdev";
42
43 struct exfat ef;
44
45 static struct exfat_node* get_node(const struct fuse_file_info* fi)
46 {
47         return (struct exfat_node*) (size_t) fi->fh;
48 }
49
50 static void set_node(struct fuse_file_info* fi, struct exfat_node* node)
51 {
52         fi->fh = (uint64_t) (size_t) node;
53 }
54
55 static int fuse_exfat_getattr(const char* path, struct stat* stbuf)
56 {
57         struct exfat_node* node;
58         int rc;
59
60         exfat_debug("[fuse_exfat_getattr] %s", path);
61
62         rc = exfat_lookup(&ef, &node, path);
63         if (rc != 0)
64                 return rc;
65
66         exfat_stat(&ef, node, stbuf);
67         exfat_put_node(&ef, node);
68         return 0;
69 }
70
71 static int fuse_exfat_truncate(const char* path, off_t size)
72 {
73         struct exfat_node* node;
74         int rc;
75
76         exfat_debug("[fuse_exfat_truncate] %s, %"PRIu64, path, (uint64_t) size);
77
78         rc = exfat_lookup(&ef, &node, path);
79         if (rc != 0)
80                 return rc;
81
82         rc = exfat_truncate(&ef, node, size);
83         exfat_put_node(&ef, node);
84         return rc;
85 }
86
87 static int fuse_exfat_readdir(const char* path, void* buffer,
88                 fuse_fill_dir_t filler, off_t offset, struct fuse_file_info* fi)
89 {
90         struct exfat_node* parent;
91         struct exfat_node* node;
92         struct exfat_iterator it;
93         int rc;
94         char name[EXFAT_NAME_MAX + 1];
95
96         exfat_debug("[fuse_exfat_readdir] %s", path);
97
98         rc = exfat_lookup(&ef, &parent, path);
99         if (rc != 0)
100                 return rc;
101         if (!(parent->flags & EXFAT_ATTRIB_DIR))
102         {
103                 exfat_put_node(&ef, parent);
104                 exfat_error("`%s' is not a directory (0x%x)", path, parent->flags);
105                 return -ENOTDIR;
106         }
107
108         filler(buffer, ".", NULL, 0);
109         filler(buffer, "..", NULL, 0);
110
111         rc = exfat_opendir(&ef, parent, &it);
112         if (rc != 0)
113         {
114                 exfat_put_node(&ef, parent);
115                 exfat_error("failed to open directory `%s'", path);
116                 return rc;
117         }
118         while ((node = exfat_readdir(&ef, &it)))
119         {
120                 exfat_get_name(node, name, EXFAT_NAME_MAX);
121                 exfat_debug("[fuse_exfat_readdir] %s: %s, %"PRIu64" bytes, cluster %u",
122                                 name, IS_CONTIGUOUS(*node) ? "contiguous" : "fragmented",
123                                 (uint64_t) node->size, node->start_cluster);
124                 filler(buffer, name, NULL, 0);
125                 exfat_put_node(&ef, node);
126         }
127         exfat_closedir(&ef, &it);
128         exfat_put_node(&ef, parent);
129         return 0;
130 }
131
132 static int fuse_exfat_open(const char* path, struct fuse_file_info* fi)
133 {
134         struct exfat_node* node;
135         int rc;
136
137         exfat_debug("[fuse_exfat_open] %s", path);
138
139         rc = exfat_lookup(&ef, &node, path);
140         if (rc != 0)
141                 return rc;
142         set_node(fi, node);
143         fi->keep_cache = 1;
144         return 0;
145 }
146
147 static int fuse_exfat_release(const char* path, struct fuse_file_info* fi)
148 {
149         exfat_put_node(&ef, get_node(fi));
150         return 0;
151 }
152
153 static int fuse_exfat_read(const char* path, char* buffer, size_t size,
154                 off_t offset, struct fuse_file_info* fi)
155 {
156         exfat_debug("[fuse_exfat_read] %s (%zu bytes)", path, size);
157         return exfat_generic_pread(&ef, get_node(fi), buffer, size, offset);
158 }
159
160 static int fuse_exfat_write(const char* path, const char* buffer, size_t size,
161                 off_t offset, struct fuse_file_info* fi)
162 {
163         exfat_debug("[fuse_exfat_write] %s (%zu bytes)", path, size);
164         return exfat_generic_pwrite(&ef, get_node(fi), buffer, size, offset);
165 }
166
167 static int fuse_exfat_unlink(const char* path)
168 {
169         struct exfat_node* node;
170         int rc;
171
172         exfat_debug("[fuse_exfat_unlink] %s", path);
173
174         rc = exfat_lookup(&ef, &node, path);
175         if (rc != 0)
176                 return rc;
177
178         rc = exfat_unlink(&ef, node);
179         exfat_put_node(&ef, node);
180         return rc;
181 }
182
183 static int fuse_exfat_rmdir(const char* path)
184 {
185         struct exfat_node* node;
186         int rc;
187
188         exfat_debug("[fuse_exfat_rmdir] %s", path);
189
190         rc = exfat_lookup(&ef, &node, path);
191         if (rc != 0)
192                 return rc;
193
194         rc = exfat_rmdir(&ef, node);
195         exfat_put_node(&ef, node);
196         return rc;
197 }
198
199 static int fuse_exfat_mknod(const char* path, mode_t mode, dev_t dev)
200 {
201         exfat_debug("[fuse_exfat_mknod] %s", path);
202         return exfat_mknod(&ef, path);
203 }
204
205 static int fuse_exfat_mkdir(const char* path, mode_t mode)
206 {
207         exfat_debug("[fuse_exfat_mkdir] %s", path);
208         return exfat_mkdir(&ef, path);
209 }
210
211 static int fuse_exfat_rename(const char* old_path, const char* new_path)
212 {
213         exfat_debug("[fuse_exfat_rename] %s => %s", old_path, new_path);
214         return exfat_rename(&ef, old_path, new_path);
215 }
216
217 static int fuse_exfat_utimens(const char* path, const struct timespec tv[2])
218 {
219         struct exfat_node* node;
220         int rc;
221
222         exfat_debug("[fuse_exfat_utimens] %s", path);
223
224         rc = exfat_lookup(&ef, &node, path);
225         if (rc != 0)
226                 return rc;
227
228         exfat_utimes(node, tv);
229         exfat_put_node(&ef, node);
230         return 0;
231 }
232
233 #ifdef __APPLE__
234 static int fuse_exfat_chmod(const char* path, mode_t mode)
235 {
236         exfat_debug("[fuse_exfat_chmod] %s 0%ho", path, mode);
237         /* make OS X utilities happy */
238         return 0;
239 }
240 #endif
241
242 static int fuse_exfat_statfs(const char* path, struct statvfs* sfs)
243 {
244         sfs->f_bsize = CLUSTER_SIZE(*ef.sb);
245         sfs->f_frsize = CLUSTER_SIZE(*ef.sb);
246         sfs->f_blocks = le64_to_cpu(ef.sb->sector_count) >> ef.sb->spc_bits;
247         sfs->f_bavail = exfat_count_free_clusters(&ef);
248         sfs->f_bfree = sfs->f_bavail;
249         sfs->f_namemax = EXFAT_NAME_MAX;
250
251         /*
252            Below are fake values because in exFAT there is
253            a) no simple way to count files;
254            b) no such thing as inode;
255            So here we assume that inode = cluster.
256         */
257         sfs->f_files = (sfs->f_blocks - sfs->f_bfree) >> ef.sb->spc_bits;
258         sfs->f_favail = sfs->f_bfree >> ef.sb->spc_bits;
259         sfs->f_ffree = sfs->f_bavail;
260
261         return 0;
262 }
263
264 static void fuse_exfat_destroy(void* unused)
265 {
266         exfat_unmount(&ef);
267 }
268
269 static void usage(const char* prog)
270 {
271         fprintf(stderr, "Usage: %s [-d] [-o options] [-v] <device> <dir>\n", prog);
272         exit(1);
273 }
274
275 static struct fuse_operations fuse_exfat_ops =
276 {
277         .getattr        = fuse_exfat_getattr,
278         .truncate       = fuse_exfat_truncate,
279         .readdir        = fuse_exfat_readdir,
280         .open           = fuse_exfat_open,
281         .release        = fuse_exfat_release,
282         .read           = fuse_exfat_read,
283         .write          = fuse_exfat_write,
284         .unlink         = fuse_exfat_unlink,
285         .rmdir          = fuse_exfat_rmdir,
286         .mknod          = fuse_exfat_mknod,
287         .mkdir          = fuse_exfat_mkdir,
288         .rename         = fuse_exfat_rename,
289         .utimens        = fuse_exfat_utimens,
290 #ifdef __APPLE__
291         .chmod          = fuse_exfat_chmod,
292 #endif
293         .statfs         = fuse_exfat_statfs,
294         .destroy        = fuse_exfat_destroy,
295 };
296
297 static char* add_option(char* options, const char* name, const char* value)
298 {
299         size_t size;
300
301         if (value)
302                 size = strlen(options) + strlen(name) + strlen(value) + 3;
303         else
304                 size = strlen(options) + strlen(name) + 2;
305
306         options = realloc(options, size);
307         if (options == NULL)
308         {
309                 exfat_error("failed to reallocate options string");
310                 return NULL;
311         }
312         strcat(options, ",");
313         strcat(options, name);
314         if (value)
315         {
316                 strcat(options, "=");
317                 strcat(options, value);
318         }
319         return options;
320 }
321
322 static char* add_fsname_option(char* options, const char* spec)
323 {
324         char spec_abs[PATH_MAX];
325
326         if (realpath(spec, spec_abs) == NULL)
327         {
328                 free(options);
329                 exfat_error("failed to get absolute path for `%s'", spec);
330                 return NULL;
331         }
332         return add_option(options, "fsname", spec_abs);
333 }
334
335 static char* add_user_option(char* options)
336 {
337         struct passwd* pw;
338
339         if (getuid() == 0)
340                 return options;
341
342         pw = getpwuid(getuid());
343         if (pw == NULL || pw->pw_name == NULL)
344         {
345                 free(options);
346                 exfat_error("failed to determine username");
347                 return NULL;
348         }
349         return add_option(options, "user", pw->pw_name);
350 }
351
352 static char* add_blksize_option(char* options, long cluster_size)
353 {
354         long page_size = sysconf(_SC_PAGESIZE);
355         char blksize[20];
356
357         if (page_size < 1)
358                 page_size = 0x1000;
359
360         snprintf(blksize, sizeof(blksize), "%ld", MIN(page_size, cluster_size));
361         return add_option(options, "blksize", blksize);
362 }
363
364 static char* add_fuse_options(char* options, const char* spec)
365 {
366         options = add_fsname_option(options, spec);
367         if (options == NULL)
368                 return NULL;
369         options = add_user_option(options);
370         if (options == NULL)
371                 return NULL;
372         options = add_blksize_option(options, CLUSTER_SIZE(*ef.sb));
373         if (options == NULL)
374                 return NULL;
375
376         return options;
377 }
378
379 int main(int argc, char* argv[])
380 {
381         struct fuse_args mount_args = FUSE_ARGS_INIT(0, NULL);
382         struct fuse_args newfs_args = FUSE_ARGS_INIT(0, NULL);
383         const char* spec = NULL;
384         const char* mount_point = NULL;
385         char* mount_options;
386         int debug = 0;
387         struct fuse_chan* fc = NULL;
388         struct fuse* fh = NULL;
389         char** pp;
390
391         printf("FUSE exfat %u.%u.%u\n",
392                         EXFAT_VERSION_MAJOR, EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
393
394         mount_options = strdup(default_options);
395         if (mount_options == NULL)
396         {
397                 exfat_error("failed to allocate options string");
398                 return 1;
399         }
400
401         for (pp = argv + 1; *pp; pp++)
402         {
403                 if (strcmp(*pp, "-o") == 0)
404                 {
405                         pp++;
406                         if (*pp == NULL)
407                                 usage(argv[0]);
408                         mount_options = add_option(mount_options, *pp, NULL);
409                         if (mount_options == NULL)
410                                 return 1;
411                 }
412                 else if (strcmp(*pp, "-d") == 0)
413                         debug = 1;
414                 else if (strcmp(*pp, "-v") == 0)
415                 {
416                         free(mount_options);
417                         puts("Copyright (C) 2010-2012  Andrew Nayenko");
418                         return 0;
419                 }
420                 else if (spec == NULL)
421                         spec = *pp;
422                 else if (mount_point == NULL)
423                         mount_point = *pp;
424                 else
425                 {
426                         free(mount_options);
427                         usage(argv[0]);
428                 }
429         }
430         if (spec == NULL || mount_point == NULL)
431         {
432                 free(mount_options);
433                 usage(argv[0]);
434         }
435
436         if (exfat_mount(&ef, spec, mount_options) != 0)
437         {
438                 free(mount_options);
439                 return 1;
440         }
441
442         if (ef.ro == -1) /* read-only fallback was used */
443         {
444                 mount_options = add_option(mount_options, "ro", NULL);
445                 if (mount_options == NULL)
446                 {
447                         exfat_unmount(&ef);
448                         return 1;
449                 }
450         }
451
452         mount_options = add_fuse_options(mount_options, spec);
453         if (mount_options == NULL)
454         {
455                 exfat_unmount(&ef);
456                 return 1;
457         }
458
459         /* create arguments for fuse_mount() */
460         if (fuse_opt_add_arg(&mount_args, "exfat") != 0 ||
461                 fuse_opt_add_arg(&mount_args, "-o") != 0 ||
462                 fuse_opt_add_arg(&mount_args, mount_options) != 0)
463         {
464                 exfat_unmount(&ef);
465                 free(mount_options);
466                 return 1;
467         }
468
469         free(mount_options);
470
471         /* create FUSE mount point */
472         fc = fuse_mount(mount_point, &mount_args);
473         fuse_opt_free_args(&mount_args);
474         if (fc == NULL)
475         {
476                 exfat_unmount(&ef);
477                 return 1;
478         }
479
480         /* create arguments for fuse_new() */
481         if (fuse_opt_add_arg(&newfs_args, "") != 0 ||
482                 (debug && fuse_opt_add_arg(&newfs_args, "-d") != 0))
483         {
484                 fuse_unmount(mount_point, fc);
485                 exfat_unmount(&ef);
486                 return 1;
487         }
488
489         /* create new FUSE file system */
490         fh = fuse_new(fc, &newfs_args, &fuse_exfat_ops,
491                         sizeof(struct fuse_operations), NULL);
492         fuse_opt_free_args(&newfs_args);
493         if (fh == NULL)
494         {
495                 fuse_unmount(mount_point, fc);
496                 exfat_unmount(&ef);
497                 return 1;
498         }
499
500         /* exit session on HUP, TERM and INT signals and ignore PIPE signal */
501         if (fuse_set_signal_handlers(fuse_get_session(fh)) != 0)
502         {
503                 fuse_unmount(mount_point, fc);
504                 fuse_destroy(fh);
505                 exfat_unmount(&ef);
506                 exfat_error("failed to set signal handlers");
507                 return 1;
508         }
509
510         /* go to background (unless "-d" option is passed) and run FUSE
511            main loop */
512         if (fuse_daemonize(debug) == 0)
513         {
514                 if (fuse_loop(fh) != 0)
515                         exfat_error("FUSE loop failure");
516         }
517         else
518                 exfat_error("failed to daemonize");
519
520         fuse_remove_signal_handlers(fuse_get_session(fh));
521         /* note that fuse_unmount() must be called BEFORE fuse_destroy() */
522         fuse_unmount(mount_point, fc);
523         fuse_destroy(fh);
524         return 0;
525 }