OSDN Git Service

Implement unlink and rmdir in the FUSE driver.
[android-x86/external-exfat.git] / fuse / main.c
1 /*
2  *  main.c
3  *  FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
4  *
5  *  Created by Andrew Nayenko on 01.09.09.
6  *  This software is distributed under the GNU General Public License 
7  *  version 3 or any later.
8  */
9
10 #include <fuse.h>
11 #include <errno.h>
12 #include <fcntl.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <exfat.h>
17
18 #define exfat_debug(format, ...)
19
20 #if !defined(FUSE_VERSION) || (FUSE_VERSION < 26)
21         #error FUSE 2.6 or later is required
22 #endif
23
24 struct exfat ef;
25
26 static struct exfat_node* get_node(const struct fuse_file_info *fi)
27 {
28         return (struct exfat_node*) (size_t) fi->fh;
29 }
30
31 static void set_node(struct fuse_file_info *fi, struct exfat_node* node)
32 {
33         fi->fh = (uint64_t) (size_t) node;
34 }
35
36 static int fuse_exfat_getattr(const char *path, struct stat *stbuf)
37 {
38         struct exfat_node* node;
39         int rc;
40
41         exfat_debug("[fuse_exfat_getattr] %s", path);
42
43         rc = exfat_lookup(&ef, &node, path);
44         if (rc != 0)
45                 return rc;
46
47         exfat_stat(node, stbuf);
48         exfat_put_node(&ef, node);
49         return 0;
50 }
51
52 static int fuse_exfat_truncate(const char *path, off_t size)
53 {
54         struct exfat_node* node;
55         int rc;
56
57         exfat_debug("[fuse_exfat_truncate] %s, %llu", path, size);
58
59         rc = exfat_lookup(&ef, &node, path);
60         if (rc != 0)
61                 return rc;
62
63         exfat_truncate(&ef, node, size);
64         exfat_put_node(&ef, node);
65         return 0;
66 }
67
68 static int fuse_exfat_readdir(const char *path, void *buffer,
69                 fuse_fill_dir_t filler, off_t offset, struct fuse_file_info *fi)
70 {
71         struct exfat_node* parent;
72         struct exfat_node* node;
73         struct exfat_iterator it;
74         int rc;
75         char name[EXFAT_NAME_MAX + 1];
76
77         exfat_debug("[fuse_exfat_readdir] %s", path);
78
79         rc = exfat_lookup(&ef, &parent, path);
80         if (rc != 0)
81                 return rc;
82         if (!(parent->flags & EXFAT_ATTRIB_DIR))
83         {
84                 exfat_put_node(&ef, parent);
85                 exfat_error("`%s' is not a directory (0x%x)", path, parent->flags);
86                 return -ENOTDIR;
87         }
88
89         filler(buffer, ".", NULL, 0);
90         filler(buffer, "..", NULL, 0);
91
92         rc = exfat_opendir(&ef, parent, &it);
93         if (rc != 0)
94         {
95                 exfat_put_node(&ef, parent);
96                 exfat_error("failed to open directory `%s'", path);
97                 return rc;
98         }
99         while ((node = exfat_readdir(&ef, &it)))
100         {
101                 exfat_get_name(node, name, EXFAT_NAME_MAX);
102                 exfat_debug("[fuse_exfat_readdir] %s: %s, %llu bytes, cluster %u",
103                                 name, IS_CONTIGUOUS(*node) ? "contiguous" : "fragmented",
104                                 node->size, node->start_cluster);
105                 filler(buffer, name, NULL, 0);
106                 exfat_put_node(&ef, node);
107         }
108         exfat_closedir(&ef, &it);
109         exfat_put_node(&ef, parent);
110         return 0;
111 }
112
113 static int fuse_exfat_open(const char *path, struct fuse_file_info *fi)
114 {
115         struct exfat_node* node;
116         int rc;
117
118         exfat_debug("[fuse_exfat_open] %s", path);
119
120         rc = exfat_lookup(&ef, &node, path);
121         if (rc != 0)
122                 return rc;
123         set_node(fi, node);
124         return 0;
125 }
126
127 static int fuse_exfat_release(const char *path, struct fuse_file_info *fi)
128 {
129         exfat_put_node(&ef, get_node(fi));
130         return 0;
131 }
132
133 static int fuse_exfat_read(const char *path, char *buffer, size_t size,
134                 off_t offset, struct fuse_file_info *fi)
135 {
136         exfat_debug("[fuse_exfat_read] %s (%zu bytes)", path, size);
137         return exfat_read(&ef, get_node(fi), buffer, size, offset);
138 }
139
140 static int fuse_exfat_write(const char *path, const char *buffer, size_t size,
141                 off_t offset, struct fuse_file_info *fi)
142 {
143         exfat_debug("[fuse_exfat_write] %s (%zu bytes)", path, size);
144         return exfat_write(&ef, get_node(fi), buffer, size, offset);
145 }
146
147 int fuse_exfat_unlink(const char *path)
148 {
149         struct exfat_node* node;
150         int rc;
151
152         exfat_debug("[fuse_exfat_unlink] %s", path);
153
154         rc = exfat_lookup(&ef, &node, path);
155         if (rc != 0)
156                 return rc;
157
158         rc = exfat_unlink(&ef, node);
159         exfat_put_node(&ef, node);
160         return rc;
161 }
162
163 int fuse_exfat_rmdir(const char *path)
164 {
165         struct exfat_node* node;
166         int rc;
167
168         exfat_debug("[fuse_exfat_rmdir] %s", path);
169
170         rc = exfat_lookup(&ef, &node, path);
171         if (rc != 0)
172                 return rc;
173
174         rc = exfat_rmdir(&ef, node);
175         exfat_put_node(&ef, node);
176         return rc;
177 }
178
179 static int fuse_exfat_statfs(const char *path, struct statvfs *sfs)
180 {
181         const uint64_t block_count = le64_to_cpu(ef.sb->block_count);
182
183         sfs->f_bsize = BLOCK_SIZE(*ef.sb);
184         sfs->f_frsize = CLUSTER_SIZE(*ef.sb);
185         sfs->f_blocks = block_count;
186         sfs->f_bavail = block_count - ef.sb->allocated_percent * block_count / 100;
187         sfs->f_bfree = sfs->f_bavail;
188         sfs->f_namemax = EXFAT_NAME_MAX;
189
190         /*
191            Below are fake values because in exFAT there is
192            a) no simple way to count files;
193            b) no such thing as inode;
194            So here we assume that inode = cluster.
195         */
196         sfs->f_files = (sfs->f_blocks - sfs->f_bfree) >> ef.sb->bpc_bits;
197         sfs->f_favail = sfs->f_bfree >> ef.sb->bpc_bits;
198         sfs->f_ffree = sfs->f_bavail;
199
200         return 0;
201 }
202
203 void fuse_exfat_destroy(void* unused)
204 {
205         exfat_unmount(&ef);
206 }
207
208 static void usage(const char* prog)
209 {
210         fprintf(stderr, "Usage: %s <spec> <mountpoint> [-o options]\n", prog);
211         exit(1);
212 }
213
214 static struct fuse_operations fuse_exfat_ops =
215 {
216         .getattr        = fuse_exfat_getattr,
217         .truncate       = fuse_exfat_truncate,
218         .readdir        = fuse_exfat_readdir,
219         .open           = fuse_exfat_open,
220         .release        = fuse_exfat_release,
221         .read           = fuse_exfat_read,
222         .write          = fuse_exfat_write,
223         .unlink         = fuse_exfat_unlink,
224         .rmdir          = fuse_exfat_rmdir,
225         .statfs         = fuse_exfat_statfs,
226         .destroy        = fuse_exfat_destroy,
227 };
228
229 int main(int argc, char* argv[])
230 {
231         struct fuse_args mount_args = FUSE_ARGS_INIT(0, NULL);
232         struct fuse_args newfs_args = FUSE_ARGS_INIT(0, NULL);
233         const char* spec = NULL;
234         const char* mount_point = NULL;
235         const char* mount_options = "";
236         int debug = 0;
237         struct fuse_chan* fc = NULL;
238         struct fuse* fh = NULL;
239         char** pp;
240
241         printf("FUSE exfat %u.%u\n", EXFAT_VERSION_MAJOR, EXFAT_VERSION_MINOR);
242
243         for (pp = argv + 1; *pp; pp++)
244         {
245                 if (strcmp(*pp, "-o") == 0)
246                 {
247                         pp++;
248                         if (*pp == NULL)
249                                 usage(argv[0]);
250                         mount_options = *pp;
251                 }
252                 else if (strcmp(*pp, "-d") == 0)
253                         debug = 1;
254                 else if (spec == NULL)
255                         spec = *pp;
256                 else if (mount_point == NULL)
257                         mount_point = *pp;
258                 else
259                         usage(argv[0]);
260         }
261         if (spec == NULL || mount_point == NULL)
262                 usage(argv[0]);
263
264         /* create arguments for fuse_mount() */
265         if (fuse_opt_add_arg(&mount_args, "exfat") != 0 ||
266                 fuse_opt_add_arg(&mount_args, "-o") != 0 ||
267                 fuse_opt_add_arg(&mount_args, mount_options) != 0)
268                 return 1;
269
270         /* create FUSE mount point */
271         fc = fuse_mount(mount_point, &mount_args);
272         fuse_opt_free_args(&mount_args);
273         if (fc == NULL)
274                 return 1;
275
276         /* create arguments for fuse_new() */
277         if (fuse_opt_add_arg(&newfs_args, "") != 0 ||
278                 (debug && fuse_opt_add_arg(&newfs_args, "-d") != 0))
279         {
280                 fuse_unmount(mount_point, fc);
281                 return 1;
282         }
283
284         /* create new FUSE file system */
285         fh = fuse_new(fc, &newfs_args, &fuse_exfat_ops,
286                         sizeof(struct fuse_operations), NULL);
287         fuse_opt_free_args(&newfs_args);
288         if (fh == NULL)
289         {
290                 fuse_unmount(mount_point, fc);
291                 return 1;
292         }
293
294         /* exit session on HUP, TERM and INT signals and ignore PIPE signal */
295         if (fuse_set_signal_handlers(fuse_get_session(fh)))
296         {
297                 fuse_unmount(mount_point, fc);
298                 fuse_destroy(fh);
299                 return 1;
300         }
301
302         if (exfat_mount(&ef, spec) != 0)
303         {
304                 fuse_unmount(mount_point, fc);
305                 fuse_destroy(fh);
306                 return 1;
307         }
308
309         /* FUSE main loop */
310         fuse_loop(fh);
311
312         /* it's quite illogical but fuse_unmount() must be called BEFORE
313            fuse_destroy() */
314         fuse_unmount(mount_point, fc);
315         fuse_destroy(fh);
316         return 0;
317 }