fuse: update fuse_conn_init() and separate out fuse_conn_kill()
[safe/jmp/linux-2.6] / fs / fuse / inode.c
1 /*
2   FUSE: Filesystem in Userspace
3   Copyright (C) 2001-2008  Miklos Szeredi <miklos@szeredi.hu>
4
5   This program can be distributed under the terms of the GNU GPL.
6   See the file COPYING.
7 */
8
9 #include "fuse_i.h"
10
11 #include <linux/pagemap.h>
12 #include <linux/slab.h>
13 #include <linux/file.h>
14 #include <linux/seq_file.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/parser.h>
18 #include <linux/statfs.h>
19 #include <linux/random.h>
20 #include <linux/sched.h>
21 #include <linux/exportfs.h>
22
23 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
24 MODULE_DESCRIPTION("Filesystem in Userspace");
25 MODULE_LICENSE("GPL");
26
27 static struct kmem_cache *fuse_inode_cachep;
28 struct list_head fuse_conn_list;
29 DEFINE_MUTEX(fuse_mutex);
30
31 #define FUSE_SUPER_MAGIC 0x65735546
32
33 #define FUSE_DEFAULT_BLKSIZE 512
34
35 struct fuse_mount_data {
36         int fd;
37         unsigned rootmode;
38         unsigned user_id;
39         unsigned group_id;
40         unsigned fd_present:1;
41         unsigned rootmode_present:1;
42         unsigned user_id_present:1;
43         unsigned group_id_present:1;
44         unsigned flags;
45         unsigned max_read;
46         unsigned blksize;
47 };
48
49 static struct inode *fuse_alloc_inode(struct super_block *sb)
50 {
51         struct inode *inode;
52         struct fuse_inode *fi;
53
54         inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
55         if (!inode)
56                 return NULL;
57
58         fi = get_fuse_inode(inode);
59         fi->i_time = 0;
60         fi->nodeid = 0;
61         fi->nlookup = 0;
62         fi->attr_version = 0;
63         fi->writectr = 0;
64         INIT_LIST_HEAD(&fi->write_files);
65         INIT_LIST_HEAD(&fi->queued_writes);
66         INIT_LIST_HEAD(&fi->writepages);
67         init_waitqueue_head(&fi->page_waitq);
68         fi->forget_req = fuse_request_alloc();
69         if (!fi->forget_req) {
70                 kmem_cache_free(fuse_inode_cachep, inode);
71                 return NULL;
72         }
73
74         return inode;
75 }
76
77 static void fuse_destroy_inode(struct inode *inode)
78 {
79         struct fuse_inode *fi = get_fuse_inode(inode);
80         BUG_ON(!list_empty(&fi->write_files));
81         BUG_ON(!list_empty(&fi->queued_writes));
82         if (fi->forget_req)
83                 fuse_request_free(fi->forget_req);
84         kmem_cache_free(fuse_inode_cachep, inode);
85 }
86
87 void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
88                       u64 nodeid, u64 nlookup)
89 {
90         struct fuse_forget_in *inarg = &req->misc.forget_in;
91         inarg->nlookup = nlookup;
92         req->in.h.opcode = FUSE_FORGET;
93         req->in.h.nodeid = nodeid;
94         req->in.numargs = 1;
95         req->in.args[0].size = sizeof(struct fuse_forget_in);
96         req->in.args[0].value = inarg;
97         fuse_request_send_noreply(fc, req);
98 }
99
100 static void fuse_clear_inode(struct inode *inode)
101 {
102         if (inode->i_sb->s_flags & MS_ACTIVE) {
103                 struct fuse_conn *fc = get_fuse_conn(inode);
104                 struct fuse_inode *fi = get_fuse_inode(inode);
105                 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
106                 fi->forget_req = NULL;
107         }
108 }
109
110 static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
111 {
112         if (*flags & MS_MANDLOCK)
113                 return -EINVAL;
114
115         return 0;
116 }
117
118 void fuse_truncate(struct address_space *mapping, loff_t offset)
119 {
120         /* See vmtruncate() */
121         unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
122         truncate_inode_pages(mapping, offset);
123         unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
124 }
125
126 void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
127                                    u64 attr_valid)
128 {
129         struct fuse_conn *fc = get_fuse_conn(inode);
130         struct fuse_inode *fi = get_fuse_inode(inode);
131
132         fi->attr_version = ++fc->attr_version;
133         fi->i_time = attr_valid;
134
135         inode->i_ino     = attr->ino;
136         inode->i_mode    = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
137         inode->i_nlink   = attr->nlink;
138         inode->i_uid     = attr->uid;
139         inode->i_gid     = attr->gid;
140         inode->i_blocks  = attr->blocks;
141         inode->i_atime.tv_sec   = attr->atime;
142         inode->i_atime.tv_nsec  = attr->atimensec;
143         inode->i_mtime.tv_sec   = attr->mtime;
144         inode->i_mtime.tv_nsec  = attr->mtimensec;
145         inode->i_ctime.tv_sec   = attr->ctime;
146         inode->i_ctime.tv_nsec  = attr->ctimensec;
147
148         if (attr->blksize != 0)
149                 inode->i_blkbits = ilog2(attr->blksize);
150         else
151                 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
152
153         /*
154          * Don't set the sticky bit in i_mode, unless we want the VFS
155          * to check permissions.  This prevents failures due to the
156          * check in may_delete().
157          */
158         fi->orig_i_mode = inode->i_mode;
159         if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
160                 inode->i_mode &= ~S_ISVTX;
161 }
162
163 void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
164                             u64 attr_valid, u64 attr_version)
165 {
166         struct fuse_conn *fc = get_fuse_conn(inode);
167         struct fuse_inode *fi = get_fuse_inode(inode);
168         loff_t oldsize;
169
170         spin_lock(&fc->lock);
171         if (attr_version != 0 && fi->attr_version > attr_version) {
172                 spin_unlock(&fc->lock);
173                 return;
174         }
175
176         fuse_change_attributes_common(inode, attr, attr_valid);
177
178         oldsize = inode->i_size;
179         i_size_write(inode, attr->size);
180         spin_unlock(&fc->lock);
181
182         if (S_ISREG(inode->i_mode) && oldsize != attr->size) {
183                 if (attr->size < oldsize)
184                         fuse_truncate(inode->i_mapping, attr->size);
185                 invalidate_inode_pages2(inode->i_mapping);
186         }
187 }
188
189 static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
190 {
191         inode->i_mode = attr->mode & S_IFMT;
192         inode->i_size = attr->size;
193         if (S_ISREG(inode->i_mode)) {
194                 fuse_init_common(inode);
195                 fuse_init_file_inode(inode);
196         } else if (S_ISDIR(inode->i_mode))
197                 fuse_init_dir(inode);
198         else if (S_ISLNK(inode->i_mode))
199                 fuse_init_symlink(inode);
200         else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
201                  S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
202                 fuse_init_common(inode);
203                 init_special_inode(inode, inode->i_mode,
204                                    new_decode_dev(attr->rdev));
205         } else
206                 BUG();
207 }
208
209 static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
210 {
211         u64 nodeid = *(u64 *) _nodeidp;
212         if (get_node_id(inode) == nodeid)
213                 return 1;
214         else
215                 return 0;
216 }
217
218 static int fuse_inode_set(struct inode *inode, void *_nodeidp)
219 {
220         u64 nodeid = *(u64 *) _nodeidp;
221         get_fuse_inode(inode)->nodeid = nodeid;
222         return 0;
223 }
224
225 struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
226                         int generation, struct fuse_attr *attr,
227                         u64 attr_valid, u64 attr_version)
228 {
229         struct inode *inode;
230         struct fuse_inode *fi;
231         struct fuse_conn *fc = get_fuse_conn_super(sb);
232
233  retry:
234         inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
235         if (!inode)
236                 return NULL;
237
238         if ((inode->i_state & I_NEW)) {
239                 inode->i_flags |= S_NOATIME|S_NOCMTIME;
240                 inode->i_generation = generation;
241                 inode->i_data.backing_dev_info = &fc->bdi;
242                 fuse_init_inode(inode, attr);
243                 unlock_new_inode(inode);
244         } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
245                 /* Inode has changed type, any I/O on the old should fail */
246                 make_bad_inode(inode);
247                 iput(inode);
248                 goto retry;
249         }
250
251         fi = get_fuse_inode(inode);
252         spin_lock(&fc->lock);
253         fi->nlookup++;
254         spin_unlock(&fc->lock);
255         fuse_change_attributes(inode, attr, attr_valid, attr_version);
256
257         return inode;
258 }
259
260 static void fuse_umount_begin(struct super_block *sb)
261 {
262         fuse_abort_conn(get_fuse_conn_super(sb));
263 }
264
265 static void fuse_send_destroy(struct fuse_conn *fc)
266 {
267         struct fuse_req *req = fc->destroy_req;
268         if (req && fc->conn_init) {
269                 fc->destroy_req = NULL;
270                 req->in.h.opcode = FUSE_DESTROY;
271                 req->force = 1;
272                 fuse_request_send(fc, req);
273                 fuse_put_request(fc, req);
274         }
275 }
276
277 static void fuse_bdi_destroy(struct fuse_conn *fc)
278 {
279         if (fc->bdi_initialized)
280                 bdi_destroy(&fc->bdi);
281 }
282
283 static void fuse_conn_kill(struct fuse_conn *fc)
284 {
285         spin_lock(&fc->lock);
286         fc->connected = 0;
287         fc->blocked = 0;
288         spin_unlock(&fc->lock);
289         /* Flush all readers on this fs */
290         kill_fasync(&fc->fasync, SIGIO, POLL_IN);
291         wake_up_all(&fc->waitq);
292         wake_up_all(&fc->blocked_waitq);
293         wake_up_all(&fc->reserved_req_waitq);
294         mutex_lock(&fuse_mutex);
295         list_del(&fc->entry);
296         fuse_ctl_remove_conn(fc);
297         mutex_unlock(&fuse_mutex);
298         fuse_bdi_destroy(fc);
299 }
300
301 static void fuse_put_super(struct super_block *sb)
302 {
303         struct fuse_conn *fc = get_fuse_conn_super(sb);
304
305         fuse_send_destroy(fc);
306         fuse_conn_kill(fc);
307         fuse_conn_put(fc);
308 }
309
310 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
311 {
312         stbuf->f_type    = FUSE_SUPER_MAGIC;
313         stbuf->f_bsize   = attr->bsize;
314         stbuf->f_frsize  = attr->frsize;
315         stbuf->f_blocks  = attr->blocks;
316         stbuf->f_bfree   = attr->bfree;
317         stbuf->f_bavail  = attr->bavail;
318         stbuf->f_files   = attr->files;
319         stbuf->f_ffree   = attr->ffree;
320         stbuf->f_namelen = attr->namelen;
321         /* fsid is left zero */
322 }
323
324 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
325 {
326         struct super_block *sb = dentry->d_sb;
327         struct fuse_conn *fc = get_fuse_conn_super(sb);
328         struct fuse_req *req;
329         struct fuse_statfs_out outarg;
330         int err;
331
332         if (!fuse_allow_task(fc, current)) {
333                 buf->f_type = FUSE_SUPER_MAGIC;
334                 return 0;
335         }
336
337         req = fuse_get_req(fc);
338         if (IS_ERR(req))
339                 return PTR_ERR(req);
340
341         memset(&outarg, 0, sizeof(outarg));
342         req->in.numargs = 0;
343         req->in.h.opcode = FUSE_STATFS;
344         req->in.h.nodeid = get_node_id(dentry->d_inode);
345         req->out.numargs = 1;
346         req->out.args[0].size =
347                 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
348         req->out.args[0].value = &outarg;
349         fuse_request_send(fc, req);
350         err = req->out.h.error;
351         if (!err)
352                 convert_fuse_statfs(buf, &outarg.st);
353         fuse_put_request(fc, req);
354         return err;
355 }
356
357 enum {
358         OPT_FD,
359         OPT_ROOTMODE,
360         OPT_USER_ID,
361         OPT_GROUP_ID,
362         OPT_DEFAULT_PERMISSIONS,
363         OPT_ALLOW_OTHER,
364         OPT_MAX_READ,
365         OPT_BLKSIZE,
366         OPT_ERR
367 };
368
369 static const match_table_t tokens = {
370         {OPT_FD,                        "fd=%u"},
371         {OPT_ROOTMODE,                  "rootmode=%o"},
372         {OPT_USER_ID,                   "user_id=%u"},
373         {OPT_GROUP_ID,                  "group_id=%u"},
374         {OPT_DEFAULT_PERMISSIONS,       "default_permissions"},
375         {OPT_ALLOW_OTHER,               "allow_other"},
376         {OPT_MAX_READ,                  "max_read=%u"},
377         {OPT_BLKSIZE,                   "blksize=%u"},
378         {OPT_ERR,                       NULL}
379 };
380
381 static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
382 {
383         char *p;
384         memset(d, 0, sizeof(struct fuse_mount_data));
385         d->max_read = ~0;
386         d->blksize = FUSE_DEFAULT_BLKSIZE;
387
388         while ((p = strsep(&opt, ",")) != NULL) {
389                 int token;
390                 int value;
391                 substring_t args[MAX_OPT_ARGS];
392                 if (!*p)
393                         continue;
394
395                 token = match_token(p, tokens, args);
396                 switch (token) {
397                 case OPT_FD:
398                         if (match_int(&args[0], &value))
399                                 return 0;
400                         d->fd = value;
401                         d->fd_present = 1;
402                         break;
403
404                 case OPT_ROOTMODE:
405                         if (match_octal(&args[0], &value))
406                                 return 0;
407                         if (!fuse_valid_type(value))
408                                 return 0;
409                         d->rootmode = value;
410                         d->rootmode_present = 1;
411                         break;
412
413                 case OPT_USER_ID:
414                         if (match_int(&args[0], &value))
415                                 return 0;
416                         d->user_id = value;
417                         d->user_id_present = 1;
418                         break;
419
420                 case OPT_GROUP_ID:
421                         if (match_int(&args[0], &value))
422                                 return 0;
423                         d->group_id = value;
424                         d->group_id_present = 1;
425                         break;
426
427                 case OPT_DEFAULT_PERMISSIONS:
428                         d->flags |= FUSE_DEFAULT_PERMISSIONS;
429                         break;
430
431                 case OPT_ALLOW_OTHER:
432                         d->flags |= FUSE_ALLOW_OTHER;
433                         break;
434
435                 case OPT_MAX_READ:
436                         if (match_int(&args[0], &value))
437                                 return 0;
438                         d->max_read = value;
439                         break;
440
441                 case OPT_BLKSIZE:
442                         if (!is_bdev || match_int(&args[0], &value))
443                                 return 0;
444                         d->blksize = value;
445                         break;
446
447                 default:
448                         return 0;
449                 }
450         }
451
452         if (!d->fd_present || !d->rootmode_present ||
453             !d->user_id_present || !d->group_id_present)
454                 return 0;
455
456         return 1;
457 }
458
459 static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
460 {
461         struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
462
463         seq_printf(m, ",user_id=%u", fc->user_id);
464         seq_printf(m, ",group_id=%u", fc->group_id);
465         if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
466                 seq_puts(m, ",default_permissions");
467         if (fc->flags & FUSE_ALLOW_OTHER)
468                 seq_puts(m, ",allow_other");
469         if (fc->max_read != ~0)
470                 seq_printf(m, ",max_read=%u", fc->max_read);
471         if (mnt->mnt_sb->s_bdev &&
472             mnt->mnt_sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
473                 seq_printf(m, ",blksize=%lu", mnt->mnt_sb->s_blocksize);
474         return 0;
475 }
476
477 void fuse_conn_init(struct fuse_conn *fc)
478 {
479         memset(fc, 0, sizeof(*fc));
480         spin_lock_init(&fc->lock);
481         mutex_init(&fc->inst_mutex);
482         atomic_set(&fc->count, 1);
483         init_waitqueue_head(&fc->waitq);
484         init_waitqueue_head(&fc->blocked_waitq);
485         init_waitqueue_head(&fc->reserved_req_waitq);
486         INIT_LIST_HEAD(&fc->pending);
487         INIT_LIST_HEAD(&fc->processing);
488         INIT_LIST_HEAD(&fc->io);
489         INIT_LIST_HEAD(&fc->interrupts);
490         INIT_LIST_HEAD(&fc->bg_queue);
491         INIT_LIST_HEAD(&fc->entry);
492         atomic_set(&fc->num_waiting, 0);
493         fc->khctr = 0;
494         fc->polled_files = RB_ROOT;
495         fc->reqctr = 0;
496         fc->blocked = 1;
497         fc->attr_version = 1;
498         get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
499 }
500 EXPORT_SYMBOL_GPL(fuse_conn_init);
501
502 void fuse_conn_put(struct fuse_conn *fc)
503 {
504         if (atomic_dec_and_test(&fc->count)) {
505                 if (fc->destroy_req)
506                         fuse_request_free(fc->destroy_req);
507                 mutex_destroy(&fc->inst_mutex);
508                 fc->release(fc);
509         }
510 }
511
512 struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
513 {
514         atomic_inc(&fc->count);
515         return fc;
516 }
517
518 static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned mode)
519 {
520         struct fuse_attr attr;
521         memset(&attr, 0, sizeof(attr));
522
523         attr.mode = mode;
524         attr.ino = FUSE_ROOT_ID;
525         attr.nlink = 1;
526         return fuse_iget(sb, 1, 0, &attr, 0, 0);
527 }
528
529 struct fuse_inode_handle {
530         u64 nodeid;
531         u32 generation;
532 };
533
534 static struct dentry *fuse_get_dentry(struct super_block *sb,
535                                       struct fuse_inode_handle *handle)
536 {
537         struct fuse_conn *fc = get_fuse_conn_super(sb);
538         struct inode *inode;
539         struct dentry *entry;
540         int err = -ESTALE;
541
542         if (handle->nodeid == 0)
543                 goto out_err;
544
545         inode = ilookup5(sb, handle->nodeid, fuse_inode_eq, &handle->nodeid);
546         if (!inode) {
547                 struct fuse_entry_out outarg;
548                 struct qstr name;
549
550                 if (!fc->export_support)
551                         goto out_err;
552
553                 name.len = 1;
554                 name.name = ".";
555                 err = fuse_lookup_name(sb, handle->nodeid, &name, &outarg,
556                                        &inode);
557                 if (err && err != -ENOENT)
558                         goto out_err;
559                 if (err || !inode) {
560                         err = -ESTALE;
561                         goto out_err;
562                 }
563                 err = -EIO;
564                 if (get_node_id(inode) != handle->nodeid)
565                         goto out_iput;
566         }
567         err = -ESTALE;
568         if (inode->i_generation != handle->generation)
569                 goto out_iput;
570
571         entry = d_obtain_alias(inode);
572         if (!IS_ERR(entry) && get_node_id(inode) != FUSE_ROOT_ID) {
573                 entry->d_op = &fuse_dentry_operations;
574                 fuse_invalidate_entry_cache(entry);
575         }
576
577         return entry;
578
579  out_iput:
580         iput(inode);
581  out_err:
582         return ERR_PTR(err);
583 }
584
585 static int fuse_encode_fh(struct dentry *dentry, u32 *fh, int *max_len,
586                            int connectable)
587 {
588         struct inode *inode = dentry->d_inode;
589         bool encode_parent = connectable && !S_ISDIR(inode->i_mode);
590         int len = encode_parent ? 6 : 3;
591         u64 nodeid;
592         u32 generation;
593
594         if (*max_len < len)
595                 return  255;
596
597         nodeid = get_fuse_inode(inode)->nodeid;
598         generation = inode->i_generation;
599
600         fh[0] = (u32)(nodeid >> 32);
601         fh[1] = (u32)(nodeid & 0xffffffff);
602         fh[2] = generation;
603
604         if (encode_parent) {
605                 struct inode *parent;
606
607                 spin_lock(&dentry->d_lock);
608                 parent = dentry->d_parent->d_inode;
609                 nodeid = get_fuse_inode(parent)->nodeid;
610                 generation = parent->i_generation;
611                 spin_unlock(&dentry->d_lock);
612
613                 fh[3] = (u32)(nodeid >> 32);
614                 fh[4] = (u32)(nodeid & 0xffffffff);
615                 fh[5] = generation;
616         }
617
618         *max_len = len;
619         return encode_parent ? 0x82 : 0x81;
620 }
621
622 static struct dentry *fuse_fh_to_dentry(struct super_block *sb,
623                 struct fid *fid, int fh_len, int fh_type)
624 {
625         struct fuse_inode_handle handle;
626
627         if ((fh_type != 0x81 && fh_type != 0x82) || fh_len < 3)
628                 return NULL;
629
630         handle.nodeid = (u64) fid->raw[0] << 32;
631         handle.nodeid |= (u64) fid->raw[1];
632         handle.generation = fid->raw[2];
633         return fuse_get_dentry(sb, &handle);
634 }
635
636 static struct dentry *fuse_fh_to_parent(struct super_block *sb,
637                 struct fid *fid, int fh_len, int fh_type)
638 {
639         struct fuse_inode_handle parent;
640
641         if (fh_type != 0x82 || fh_len < 6)
642                 return NULL;
643
644         parent.nodeid = (u64) fid->raw[3] << 32;
645         parent.nodeid |= (u64) fid->raw[4];
646         parent.generation = fid->raw[5];
647         return fuse_get_dentry(sb, &parent);
648 }
649
650 static struct dentry *fuse_get_parent(struct dentry *child)
651 {
652         struct inode *child_inode = child->d_inode;
653         struct fuse_conn *fc = get_fuse_conn(child_inode);
654         struct inode *inode;
655         struct dentry *parent;
656         struct fuse_entry_out outarg;
657         struct qstr name;
658         int err;
659
660         if (!fc->export_support)
661                 return ERR_PTR(-ESTALE);
662
663         name.len = 2;
664         name.name = "..";
665         err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode),
666                                &name, &outarg, &inode);
667         if (err) {
668                 if (err == -ENOENT)
669                         return ERR_PTR(-ESTALE);
670                 return ERR_PTR(err);
671         }
672
673         parent = d_obtain_alias(inode);
674         if (!IS_ERR(parent) && get_node_id(inode) != FUSE_ROOT_ID) {
675                 parent->d_op = &fuse_dentry_operations;
676                 fuse_invalidate_entry_cache(parent);
677         }
678
679         return parent;
680 }
681
682 static const struct export_operations fuse_export_operations = {
683         .fh_to_dentry   = fuse_fh_to_dentry,
684         .fh_to_parent   = fuse_fh_to_parent,
685         .encode_fh      = fuse_encode_fh,
686         .get_parent     = fuse_get_parent,
687 };
688
689 static const struct super_operations fuse_super_operations = {
690         .alloc_inode    = fuse_alloc_inode,
691         .destroy_inode  = fuse_destroy_inode,
692         .clear_inode    = fuse_clear_inode,
693         .drop_inode     = generic_delete_inode,
694         .remount_fs     = fuse_remount_fs,
695         .put_super      = fuse_put_super,
696         .umount_begin   = fuse_umount_begin,
697         .statfs         = fuse_statfs,
698         .show_options   = fuse_show_options,
699 };
700
701 static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
702 {
703         struct fuse_init_out *arg = &req->misc.init_out;
704
705         if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
706                 fc->conn_error = 1;
707         else {
708                 unsigned long ra_pages;
709
710                 if (arg->minor >= 6) {
711                         ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
712                         if (arg->flags & FUSE_ASYNC_READ)
713                                 fc->async_read = 1;
714                         if (!(arg->flags & FUSE_POSIX_LOCKS))
715                                 fc->no_lock = 1;
716                         if (arg->flags & FUSE_ATOMIC_O_TRUNC)
717                                 fc->atomic_o_trunc = 1;
718                         if (arg->minor >= 9) {
719                                 /* LOOKUP has dependency on proto version */
720                                 if (arg->flags & FUSE_EXPORT_SUPPORT)
721                                         fc->export_support = 1;
722                         }
723                         if (arg->flags & FUSE_BIG_WRITES)
724                                 fc->big_writes = 1;
725                 } else {
726                         ra_pages = fc->max_read / PAGE_CACHE_SIZE;
727                         fc->no_lock = 1;
728                 }
729
730                 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
731                 fc->minor = arg->minor;
732                 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
733                 fc->max_write = max_t(unsigned, 4096, fc->max_write);
734                 fc->conn_init = 1;
735         }
736         fc->blocked = 0;
737         wake_up_all(&fc->blocked_waitq);
738 }
739
740 static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
741 {
742         struct fuse_init_in *arg = &req->misc.init_in;
743
744         arg->major = FUSE_KERNEL_VERSION;
745         arg->minor = FUSE_KERNEL_MINOR_VERSION;
746         arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
747         arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
748                 FUSE_EXPORT_SUPPORT | FUSE_BIG_WRITES;
749         req->in.h.opcode = FUSE_INIT;
750         req->in.numargs = 1;
751         req->in.args[0].size = sizeof(*arg);
752         req->in.args[0].value = arg;
753         req->out.numargs = 1;
754         /* Variable length arguement used for backward compatibility
755            with interface version < 7.5.  Rest of init_out is zeroed
756            by do_get_request(), so a short reply is not a problem */
757         req->out.argvar = 1;
758         req->out.args[0].size = sizeof(struct fuse_init_out);
759         req->out.args[0].value = &req->misc.init_out;
760         req->end = process_init_reply;
761         fuse_request_send_background(fc, req);
762 }
763
764 static void fuse_free_conn(struct fuse_conn *fc)
765 {
766         kfree(fc);
767 }
768
769 static int fuse_bdi_init(struct fuse_conn *fc, struct super_block *sb)
770 {
771         int err;
772
773         fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
774         fc->bdi.unplug_io_fn = default_unplug_io_fn;
775         /* fuse does it's own writeback accounting */
776         fc->bdi.capabilities = BDI_CAP_NO_ACCT_WB;
777
778         err = bdi_init(&fc->bdi);
779         if (err)
780                 return err;
781
782         fc->bdi_initialized = 1;
783
784         if (sb->s_bdev) {
785                 err =  bdi_register(&fc->bdi, NULL, "%u:%u-fuseblk",
786                                     MAJOR(fc->dev), MINOR(fc->dev));
787         } else {
788                 err = bdi_register_dev(&fc->bdi, fc->dev);
789         }
790
791         if (err)
792                 return err;
793
794         /*
795          * For a single fuse filesystem use max 1% of dirty +
796          * writeback threshold.
797          *
798          * This gives about 1M of write buffer for memory maps on a
799          * machine with 1G and 10% dirty_ratio, which should be more
800          * than enough.
801          *
802          * Privileged users can raise it by writing to
803          *
804          *    /sys/class/bdi/<bdi>/max_ratio
805          */
806         bdi_set_max_ratio(&fc->bdi, 1);
807
808         return 0;
809 }
810
811 static int fuse_fill_super(struct super_block *sb, void *data, int silent)
812 {
813         struct fuse_conn *fc;
814         struct inode *root;
815         struct fuse_mount_data d;
816         struct file *file;
817         struct dentry *root_dentry;
818         struct fuse_req *init_req;
819         int err;
820         int is_bdev = sb->s_bdev != NULL;
821
822         err = -EINVAL;
823         if (sb->s_flags & MS_MANDLOCK)
824                 goto err;
825
826         if (!parse_fuse_opt((char *) data, &d, is_bdev))
827                 goto err;
828
829         if (is_bdev) {
830 #ifdef CONFIG_BLOCK
831                 err = -EINVAL;
832                 if (!sb_set_blocksize(sb, d.blksize))
833                         goto err;
834 #endif
835         } else {
836                 sb->s_blocksize = PAGE_CACHE_SIZE;
837                 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
838         }
839         sb->s_magic = FUSE_SUPER_MAGIC;
840         sb->s_op = &fuse_super_operations;
841         sb->s_maxbytes = MAX_LFS_FILESIZE;
842         sb->s_export_op = &fuse_export_operations;
843
844         file = fget(d.fd);
845         err = -EINVAL;
846         if (!file)
847                 goto err;
848
849         if (file->f_op != &fuse_dev_operations)
850                 goto err_fput;
851
852         fc = kmalloc(sizeof(*fc), GFP_KERNEL);
853         err = -ENOMEM;
854         if (!fc)
855                 goto err_fput;
856
857         fuse_conn_init(fc);
858
859         fc->dev = sb->s_dev;
860         err = fuse_bdi_init(fc, sb);
861         if (err)
862                 goto err_put_conn;
863
864         fc->release = fuse_free_conn;
865         fc->flags = d.flags;
866         fc->user_id = d.user_id;
867         fc->group_id = d.group_id;
868         fc->max_read = max_t(unsigned, 4096, d.max_read);
869
870         /* Used by get_root_inode() */
871         sb->s_fs_info = fc;
872
873         err = -ENOMEM;
874         root = fuse_get_root_inode(sb, d.rootmode);
875         if (!root)
876                 goto err_put_conn;
877
878         root_dentry = d_alloc_root(root);
879         if (!root_dentry) {
880                 iput(root);
881                 goto err_put_conn;
882         }
883
884         init_req = fuse_request_alloc();
885         if (!init_req)
886                 goto err_put_root;
887
888         if (is_bdev) {
889                 fc->destroy_req = fuse_request_alloc();
890                 if (!fc->destroy_req)
891                         goto err_free_init_req;
892         }
893
894         mutex_lock(&fuse_mutex);
895         err = -EINVAL;
896         if (file->private_data)
897                 goto err_unlock;
898
899         err = fuse_ctl_add_conn(fc);
900         if (err)
901                 goto err_unlock;
902
903         list_add_tail(&fc->entry, &fuse_conn_list);
904         sb->s_root = root_dentry;
905         fc->connected = 1;
906         file->private_data = fuse_conn_get(fc);
907         mutex_unlock(&fuse_mutex);
908         /*
909          * atomic_dec_and_test() in fput() provides the necessary
910          * memory barrier for file->private_data to be visible on all
911          * CPUs after this
912          */
913         fput(file);
914
915         fuse_send_init(fc, init_req);
916
917         return 0;
918
919  err_unlock:
920         mutex_unlock(&fuse_mutex);
921  err_free_init_req:
922         fuse_request_free(init_req);
923  err_put_root:
924         dput(root_dentry);
925  err_put_conn:
926         fuse_bdi_destroy(fc);
927         fuse_conn_put(fc);
928  err_fput:
929         fput(file);
930  err:
931         return err;
932 }
933
934 static int fuse_get_sb(struct file_system_type *fs_type,
935                        int flags, const char *dev_name,
936                        void *raw_data, struct vfsmount *mnt)
937 {
938         return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
939 }
940
941 static struct file_system_type fuse_fs_type = {
942         .owner          = THIS_MODULE,
943         .name           = "fuse",
944         .fs_flags       = FS_HAS_SUBTYPE,
945         .get_sb         = fuse_get_sb,
946         .kill_sb        = kill_anon_super,
947 };
948
949 #ifdef CONFIG_BLOCK
950 static int fuse_get_sb_blk(struct file_system_type *fs_type,
951                            int flags, const char *dev_name,
952                            void *raw_data, struct vfsmount *mnt)
953 {
954         return get_sb_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super,
955                            mnt);
956 }
957
958 static struct file_system_type fuseblk_fs_type = {
959         .owner          = THIS_MODULE,
960         .name           = "fuseblk",
961         .get_sb         = fuse_get_sb_blk,
962         .kill_sb        = kill_block_super,
963         .fs_flags       = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
964 };
965
966 static inline int register_fuseblk(void)
967 {
968         return register_filesystem(&fuseblk_fs_type);
969 }
970
971 static inline void unregister_fuseblk(void)
972 {
973         unregister_filesystem(&fuseblk_fs_type);
974 }
975 #else
976 static inline int register_fuseblk(void)
977 {
978         return 0;
979 }
980
981 static inline void unregister_fuseblk(void)
982 {
983 }
984 #endif
985
986 static void fuse_inode_init_once(void *foo)
987 {
988         struct inode *inode = foo;
989
990         inode_init_once(inode);
991 }
992
993 static int __init fuse_fs_init(void)
994 {
995         int err;
996
997         err = register_filesystem(&fuse_fs_type);
998         if (err)
999                 goto out;
1000
1001         err = register_fuseblk();
1002         if (err)
1003                 goto out_unreg;
1004
1005         fuse_inode_cachep = kmem_cache_create("fuse_inode",
1006                                               sizeof(struct fuse_inode),
1007                                               0, SLAB_HWCACHE_ALIGN,
1008                                               fuse_inode_init_once);
1009         err = -ENOMEM;
1010         if (!fuse_inode_cachep)
1011                 goto out_unreg2;
1012
1013         return 0;
1014
1015  out_unreg2:
1016         unregister_fuseblk();
1017  out_unreg:
1018         unregister_filesystem(&fuse_fs_type);
1019  out:
1020         return err;
1021 }
1022
1023 static void fuse_fs_cleanup(void)
1024 {
1025         unregister_filesystem(&fuse_fs_type);
1026         unregister_fuseblk();
1027         kmem_cache_destroy(fuse_inode_cachep);
1028 }
1029
1030 static struct kobject *fuse_kobj;
1031 static struct kobject *connections_kobj;
1032
1033 static int fuse_sysfs_init(void)
1034 {
1035         int err;
1036
1037         fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
1038         if (!fuse_kobj) {
1039                 err = -ENOMEM;
1040                 goto out_err;
1041         }
1042
1043         connections_kobj = kobject_create_and_add("connections", fuse_kobj);
1044         if (!connections_kobj) {
1045                 err = -ENOMEM;
1046                 goto out_fuse_unregister;
1047         }
1048
1049         return 0;
1050
1051  out_fuse_unregister:
1052         kobject_put(fuse_kobj);
1053  out_err:
1054         return err;
1055 }
1056
1057 static void fuse_sysfs_cleanup(void)
1058 {
1059         kobject_put(connections_kobj);
1060         kobject_put(fuse_kobj);
1061 }
1062
1063 static int __init fuse_init(void)
1064 {
1065         int res;
1066
1067         printk(KERN_INFO "fuse init (API version %i.%i)\n",
1068                FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
1069
1070         INIT_LIST_HEAD(&fuse_conn_list);
1071         res = fuse_fs_init();
1072         if (res)
1073                 goto err;
1074
1075         res = fuse_dev_init();
1076         if (res)
1077                 goto err_fs_cleanup;
1078
1079         res = fuse_sysfs_init();
1080         if (res)
1081                 goto err_dev_cleanup;
1082
1083         res = fuse_ctl_init();
1084         if (res)
1085                 goto err_sysfs_cleanup;
1086
1087         return 0;
1088
1089  err_sysfs_cleanup:
1090         fuse_sysfs_cleanup();
1091  err_dev_cleanup:
1092         fuse_dev_cleanup();
1093  err_fs_cleanup:
1094         fuse_fs_cleanup();
1095  err:
1096         return res;
1097 }
1098
1099 static void __exit fuse_exit(void)
1100 {
1101         printk(KERN_DEBUG "fuse exit\n");
1102
1103         fuse_ctl_cleanup();
1104         fuse_sysfs_cleanup();
1105         fuse_fs_cleanup();
1106         fuse_dev_cleanup();
1107 }
1108
1109 module_init(fuse_init);
1110 module_exit(fuse_exit);