patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / net / sunrpc / rpc_pipe.c
1 /*
2  * net/sunrpc/rpc_pipe.c
3  *
4  * Userland/kernel interface for rpcauth_gss.
5  * Code shamelessly plagiarized from fs/nfsd/nfsctl.c
6  * and fs/driverfs/inode.c
7  *
8  * Copyright (c) 2002, Trond Myklebust <trond.myklebust@fys.uio.no>
9  *
10  */
11 #include <linux/config.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/string.h>
15 #include <linux/pagemap.h>
16 #include <linux/mount.h>
17 #include <linux/namei.h>
18 #include <linux/dnotify.h>
19 #include <linux/kernel.h>
20
21 #include <asm/ioctls.h>
22 #include <linux/fs.h>
23 #include <linux/poll.h>
24 #include <linux/wait.h>
25 #include <linux/seq_file.h>
26
27 #include <linux/sunrpc/clnt.h>
28 #include <linux/workqueue.h>
29 #include <linux/sunrpc/rpc_pipe_fs.h>
30
31 static struct vfsmount *rpc_mount;
32 static int rpc_mount_count;
33
34 static struct file_system_type rpc_pipe_fs_type;
35
36
37 static kmem_cache_t *rpc_inode_cachep;
38
39 #define RPC_UPCALL_TIMEOUT (30*HZ)
40
41 static void
42 __rpc_purge_upcall(struct inode *inode, int err)
43 {
44         struct rpc_inode *rpci = RPC_I(inode);
45         struct rpc_pipe_msg *msg;
46
47         while (!list_empty(&rpci->pipe)) {
48                 msg = list_entry(rpci->pipe.next, struct rpc_pipe_msg, list);
49                 list_del_init(&msg->list);
50                 msg->errno = err;
51                 rpci->ops->destroy_msg(msg);
52         }
53         while (!list_empty(&rpci->in_upcall)) {
54                 msg = list_entry(rpci->pipe.next, struct rpc_pipe_msg, list);
55                 list_del_init(&msg->list);
56                 msg->errno = err;
57                 rpci->ops->destroy_msg(msg);
58         }
59         rpci->pipelen = 0;
60         wake_up(&rpci->waitq);
61 }
62
63 static void
64 rpc_timeout_upcall_queue(void *data)
65 {
66         struct rpc_inode *rpci = (struct rpc_inode *)data;
67         struct inode *inode = &rpci->vfs_inode;
68
69         down(&inode->i_sem);
70         if (rpci->nreaders == 0 && !list_empty(&rpci->pipe))
71                 __rpc_purge_upcall(inode, -ETIMEDOUT);
72         up(&inode->i_sem);
73 }
74
75 int
76 rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg)
77 {
78         struct rpc_inode *rpci = RPC_I(inode);
79         int res = 0;
80
81         down(&inode->i_sem);
82         if (rpci->nreaders) {
83                 list_add_tail(&msg->list, &rpci->pipe);
84                 rpci->pipelen += msg->len;
85         } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) {
86                 if (list_empty(&rpci->pipe))
87                         schedule_delayed_work(&rpci->queue_timeout,
88                                         RPC_UPCALL_TIMEOUT);
89                 list_add_tail(&msg->list, &rpci->pipe);
90                 rpci->pipelen += msg->len;
91         } else
92                 res = -EPIPE;
93         up(&inode->i_sem);
94         wake_up(&rpci->waitq);
95         return res;
96 }
97
98 static void
99 rpc_close_pipes(struct inode *inode)
100 {
101         struct rpc_inode *rpci = RPC_I(inode);
102
103         cancel_delayed_work(&rpci->queue_timeout);
104         flush_scheduled_work();
105         down(&inode->i_sem);
106         if (rpci->ops != NULL) {
107                 rpci->nreaders = 0;
108                 __rpc_purge_upcall(inode, -EPIPE);
109                 rpci->nwriters = 0;
110                 if (rpci->ops->release_pipe)
111                         rpci->ops->release_pipe(inode);
112                 rpci->ops = NULL;
113         }
114         up(&inode->i_sem);
115 }
116
117 static inline void
118 rpc_inode_setowner(struct inode *inode, void *private)
119 {
120         RPC_I(inode)->private = private;
121 }
122
123 static struct inode *
124 rpc_alloc_inode(struct super_block *sb)
125 {
126         struct rpc_inode *rpci;
127         rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, SLAB_KERNEL);
128         if (!rpci)
129                 return NULL;
130         return &rpci->vfs_inode;
131 }
132
133 static void
134 rpc_destroy_inode(struct inode *inode)
135 {
136         kmem_cache_free(rpc_inode_cachep, RPC_I(inode));
137 }
138
139 static int
140 rpc_pipe_open(struct inode *inode, struct file *filp)
141 {
142         struct rpc_inode *rpci = RPC_I(inode);
143         int res = -ENXIO;
144
145         down(&inode->i_sem);
146         if (rpci->ops != NULL) {
147                 if (filp->f_mode & FMODE_READ)
148                         rpci->nreaders ++;
149                 if (filp->f_mode & FMODE_WRITE)
150                         rpci->nwriters ++;
151                 res = 0;
152         }
153         up(&inode->i_sem);
154         return res;
155 }
156
157 static int
158 rpc_pipe_release(struct inode *inode, struct file *filp)
159 {
160         struct rpc_inode *rpci = RPC_I(filp->f_dentry->d_inode);
161         struct rpc_pipe_msg *msg;
162
163         down(&inode->i_sem);
164         if (rpci->ops == NULL)
165                 goto out;
166         msg = (struct rpc_pipe_msg *)filp->private_data;
167         if (msg != NULL) {
168                 msg->errno = -EPIPE;
169                 list_del_init(&msg->list);
170                 rpci->ops->destroy_msg(msg);
171         }
172         if (filp->f_mode & FMODE_WRITE)
173                 rpci->nwriters --;
174         if (filp->f_mode & FMODE_READ)
175                 rpci->nreaders --;
176         if (!rpci->nreaders)
177                 __rpc_purge_upcall(inode, -EPIPE);
178         if (rpci->ops->release_pipe)
179                 rpci->ops->release_pipe(inode);
180 out:
181         up(&inode->i_sem);
182         return 0;
183 }
184
185 static ssize_t
186 rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset)
187 {
188         struct inode *inode = filp->f_dentry->d_inode;
189         struct rpc_inode *rpci = RPC_I(inode);
190         struct rpc_pipe_msg *msg;
191         int res = 0;
192
193         down(&inode->i_sem);
194         if (rpci->ops == NULL) {
195                 res = -EPIPE;
196                 goto out_unlock;
197         }
198         msg = filp->private_data;
199         if (msg == NULL) {
200                 if (!list_empty(&rpci->pipe)) {
201                         msg = list_entry(rpci->pipe.next,
202                                         struct rpc_pipe_msg,
203                                         list);
204                         list_move(&msg->list, &rpci->in_upcall);
205                         rpci->pipelen -= msg->len;
206                         filp->private_data = msg;
207                         msg->copied = 0;
208                 }
209                 if (msg == NULL)
210                         goto out_unlock;
211         }
212         /* NOTE: it is up to the callback to update msg->copied */
213         res = rpci->ops->upcall(filp, msg, buf, len);
214         if (res < 0 || msg->len == msg->copied) {
215                 filp->private_data = NULL;
216                 list_del_init(&msg->list);
217                 rpci->ops->destroy_msg(msg);
218         }
219 out_unlock:
220         up(&inode->i_sem);
221         return res;
222 }
223
224 static ssize_t
225 rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset)
226 {
227         struct inode *inode = filp->f_dentry->d_inode;
228         struct rpc_inode *rpci = RPC_I(inode);
229         int res;
230
231         down(&inode->i_sem);
232         res = -EPIPE;
233         if (rpci->ops != NULL)
234                 res = rpci->ops->downcall(filp, buf, len);
235         up(&inode->i_sem);
236         return res;
237 }
238
239 static unsigned int
240 rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait)
241 {
242         struct rpc_inode *rpci;
243         unsigned int mask = 0;
244
245         rpci = RPC_I(filp->f_dentry->d_inode);
246         poll_wait(filp, &rpci->waitq, wait);
247
248         mask = POLLOUT | POLLWRNORM;
249         if (rpci->ops == NULL)
250                 mask |= POLLERR | POLLHUP;
251         if (!list_empty(&rpci->pipe))
252                 mask |= POLLIN | POLLRDNORM;
253         return mask;
254 }
255
256 static int
257 rpc_pipe_ioctl(struct inode *ino, struct file *filp,
258                 unsigned int cmd, unsigned long arg)
259 {
260         struct rpc_inode *rpci = RPC_I(filp->f_dentry->d_inode);
261         int len;
262
263         switch (cmd) {
264         case FIONREAD:
265                 if (rpci->ops == NULL)
266                         return -EPIPE;
267                 len = rpci->pipelen;
268                 if (filp->private_data) {
269                         struct rpc_pipe_msg *msg;
270                         msg = (struct rpc_pipe_msg *)filp->private_data;
271                         len += msg->len - msg->copied;
272                 }
273                 return put_user(len, (int __user *)arg);
274         default:
275                 return -EINVAL;
276         }
277 }
278
279 struct inode_operations rpc_pipe_iops = {
280         .lookup         = simple_lookup,
281 };
282
283
284 struct file_operations rpc_pipe_fops = {
285         .owner          = THIS_MODULE,
286         .llseek         = no_llseek,
287         .read           = rpc_pipe_read,
288         .write          = rpc_pipe_write,
289         .poll           = rpc_pipe_poll,
290         .ioctl          = rpc_pipe_ioctl,
291         .open           = rpc_pipe_open,
292         .release        = rpc_pipe_release,
293 };
294
295 static int
296 rpc_show_info(struct seq_file *m, void *v)
297 {
298         struct rpc_clnt *clnt = m->private;
299
300         seq_printf(m, "RPC server: %s\n", clnt->cl_server);
301         seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname,
302                         clnt->cl_prog, clnt->cl_vers);
303         seq_printf(m, "address: %u.%u.%u.%u\n",
304                         NIPQUAD(clnt->cl_xprt->addr.sin_addr.s_addr));
305         seq_printf(m, "protocol: %s\n",
306                         clnt->cl_xprt->prot == IPPROTO_UDP ? "udp" : "tcp");
307         return 0;
308 }
309
310 static int
311 rpc_info_open(struct inode *inode, struct file *file)
312 {
313         struct rpc_clnt *clnt;
314         int ret = single_open(file, rpc_show_info, NULL);
315
316         if (!ret) {
317                 struct seq_file *m = file->private_data;
318                 down(&inode->i_sem);
319                 clnt = RPC_I(inode)->private;
320                 if (clnt) {
321                         atomic_inc(&clnt->cl_users);
322                         m->private = clnt;
323                 } else {
324                         single_release(inode, file);
325                         ret = -EINVAL;
326                 }
327                 up(&inode->i_sem);
328         }
329         return ret;
330 }
331
332 static int
333 rpc_info_release(struct inode *inode, struct file *file)
334 {
335         struct seq_file *m = file->private_data;
336         struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
337
338         if (clnt)
339                 rpc_release_client(clnt);
340         return single_release(inode, file);
341 }
342
343 static struct file_operations rpc_info_operations = {
344         .owner          = THIS_MODULE,
345         .open           = rpc_info_open,
346         .read           = seq_read,
347         .llseek         = seq_lseek,
348         .release        = rpc_info_release,
349 };
350
351
352 /*
353  * We have a single directory with 1 node in it.
354  */
355 enum {
356         RPCAUTH_Root = 1,
357         RPCAUTH_lockd,
358         RPCAUTH_mount,
359         RPCAUTH_nfs,
360         RPCAUTH_portmap,
361         RPCAUTH_statd,
362         RPCAUTH_RootEOF
363 };
364
365 /*
366  * Description of fs contents.
367  */
368 struct rpc_filelist {
369         char *name;
370         struct file_operations *i_fop;
371         int mode;
372 };
373
374 static struct rpc_filelist files[] = {
375         [RPCAUTH_lockd] = {
376                 .name = "lockd",
377                 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
378         },
379         [RPCAUTH_mount] = {
380                 .name = "mount",
381                 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
382         },
383         [RPCAUTH_nfs] = {
384                 .name = "nfs",
385                 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
386         },
387         [RPCAUTH_portmap] = {
388                 .name = "portmap",
389                 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
390         },
391         [RPCAUTH_statd] = {
392                 .name = "statd",
393                 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
394         },
395 };
396
397 enum {
398         RPCAUTH_info = 2,
399         RPCAUTH_EOF
400 };
401
402 static struct rpc_filelist authfiles[] = {
403         [RPCAUTH_info] = {
404                 .name = "info",
405                 .i_fop = &rpc_info_operations,
406                 .mode = S_IFREG | S_IRUSR,
407         },
408 };
409
410 static int
411 rpc_get_mount(void)
412 {
413         return simple_pin_fs("rpc_pipefs", &rpc_mount, &rpc_mount_count);
414 }
415
416 static void
417 rpc_put_mount(void)
418 {
419         simple_release_fs(&rpc_mount, &rpc_mount_count);
420 }
421
422 static int
423 rpc_lookup_parent(char *path, struct nameidata *nd)
424 {
425         if (path[0] == '\0')
426                 return -ENOENT;
427         if (rpc_get_mount()) {
428                 printk(KERN_WARNING "%s: %s failed to mount "
429                                "pseudofilesystem \n", __FILE__, __FUNCTION__);
430                 return -ENODEV;
431         }
432         nd->mnt = mntget(rpc_mount);
433         nd->dentry = dget(rpc_mount->mnt_root);
434         nd->last_type = LAST_ROOT;
435         nd->flags = LOOKUP_PARENT;
436
437         if (path_walk(path, nd)) {
438                 printk(KERN_WARNING "%s: %s failed to find path %s\n",
439                                 __FILE__, __FUNCTION__, path);
440                 rpc_put_mount();
441                 return -ENOENT;
442         }
443         return 0;
444 }
445
446 static void
447 rpc_release_path(struct nameidata *nd)
448 {
449         path_release(nd);
450         rpc_put_mount();
451 }
452
453 static struct inode *
454 rpc_get_inode(struct super_block *sb, int mode)
455 {
456         struct inode *inode = new_inode(sb);
457         if (!inode)
458                 return NULL;
459         inode->i_mode = mode;
460         inode->i_uid = inode->i_gid = 0;
461         inode->i_blksize = PAGE_CACHE_SIZE;
462         inode->i_blocks = 0;
463         inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
464         switch(mode & S_IFMT) {
465                 case S_IFDIR:
466                         inode->i_fop = &simple_dir_operations;
467                         inode->i_op = &simple_dir_inode_operations;
468                         inode->i_nlink++;
469                 default:
470                         break;
471         }
472         return inode;
473 }
474
475 /*
476  * FIXME: This probably has races.
477  */
478 static void
479 rpc_depopulate(struct dentry *parent)
480 {
481         struct inode *dir = parent->d_inode;
482         struct list_head *pos, *next;
483         struct dentry *dentry, *dvec[10];
484         int n = 0;
485
486         down(&dir->i_sem);
487 repeat:
488         spin_lock(&dcache_lock);
489         list_for_each_safe(pos, next, &parent->d_subdirs) {
490                 dentry = list_entry(pos, struct dentry, d_child);
491                 spin_lock(&dentry->d_lock);
492                 if (!d_unhashed(dentry)) {
493                         dget_locked(dentry);
494                         __d_drop(dentry);
495                         spin_unlock(&dentry->d_lock);
496                         dvec[n++] = dentry;
497                         if (n == ARRAY_SIZE(dvec))
498                                 break;
499                 } else
500                         spin_unlock(&dentry->d_lock);
501         }
502         spin_unlock(&dcache_lock);
503         if (n) {
504                 do {
505                         dentry = dvec[--n];
506                         if (dentry->d_inode) {
507                                 rpc_close_pipes(dentry->d_inode);
508                                 rpc_inode_setowner(dentry->d_inode, NULL);
509                                 simple_unlink(dir, dentry);
510                         }
511                         dput(dentry);
512                 } while (n);
513                 goto repeat;
514         }
515         up(&dir->i_sem);
516 }
517
518 static int
519 rpc_populate(struct dentry *parent,
520                 struct rpc_filelist *files,
521                 int start, int eof)
522 {
523         struct inode *inode, *dir = parent->d_inode;
524         void *private = RPC_I(dir)->private;
525         struct qstr name;
526         struct dentry *dentry;
527         int mode, i;
528
529         down(&dir->i_sem);
530         for (i = start; i < eof; i++) {
531                 name.name = files[i].name;
532                 name.len = strlen(name.name);
533                 name.hash = full_name_hash(name.name, name.len);
534                 dentry = d_alloc(parent, &name);
535                 if (!dentry)
536                         goto out_bad;
537                 mode = files[i].mode;
538                 inode = rpc_get_inode(dir->i_sb, mode);
539                 if (!inode) {
540                         dput(dentry);
541                         goto out_bad;
542                 }
543                 inode->i_ino = i;
544                 if (files[i].i_fop)
545                         inode->i_fop = files[i].i_fop;
546                 if (private)
547                         rpc_inode_setowner(inode, private);
548                 if (S_ISDIR(mode))
549                         dir->i_nlink++;
550                 d_add(dentry, inode);
551         }
552         up(&dir->i_sem);
553         return 0;
554 out_bad:
555         up(&dir->i_sem);
556         printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
557                         __FILE__, __FUNCTION__, parent->d_name.name);
558         return -ENOMEM;
559 }
560
561 static int
562 __rpc_mkdir(struct inode *dir, struct dentry *dentry)
563 {
564         struct inode *inode;
565
566         inode = rpc_get_inode(dir->i_sb, S_IFDIR | S_IRUSR | S_IXUSR);
567         if (!inode)
568                 goto out_err;
569         inode->i_ino = iunique(dir->i_sb, 100);
570         d_instantiate(dentry, inode);
571         dir->i_nlink++;
572         inode_dir_notify(dir, DN_CREATE);
573         rpc_get_mount();
574         return 0;
575 out_err:
576         printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
577                         __FILE__, __FUNCTION__, dentry->d_name.name);
578         return -ENOMEM;
579 }
580
581 static int
582 __rpc_rmdir(struct inode *dir, struct dentry *dentry)
583 {
584         int error;
585
586         shrink_dcache_parent(dentry);
587         if (dentry->d_inode) {
588                 rpc_close_pipes(dentry->d_inode);
589                 rpc_inode_setowner(dentry->d_inode, NULL);
590         }
591         if ((error = simple_rmdir(dir, dentry)) != 0)
592                 return error;
593         if (!error) {
594                 inode_dir_notify(dir, DN_DELETE);
595                 d_drop(dentry);
596                 rpc_put_mount();
597         }
598         return 0;
599 }
600
601 struct dentry *
602 rpc_lookup_negative(char *path, struct nameidata *nd)
603 {
604         struct dentry *dentry;
605         struct inode *dir;
606         int error;
607
608         if ((error = rpc_lookup_parent(path, nd)) != 0)
609                 return ERR_PTR(error);
610         dir = nd->dentry->d_inode;
611         down(&dir->i_sem);
612         dentry = lookup_hash(&nd->last, nd->dentry);
613         if (IS_ERR(dentry))
614                 goto out_err;
615         if (dentry->d_inode) {
616                 dput(dentry);
617                 dentry = ERR_PTR(-EEXIST);
618                 goto out_err;
619         }
620         return dentry;
621 out_err:
622         up(&dir->i_sem);
623         rpc_release_path(nd);
624         return dentry;
625 }
626
627
628 struct dentry *
629 rpc_mkdir(char *path, struct rpc_clnt *rpc_client)
630 {
631         struct nameidata nd;
632         struct dentry *dentry;
633         struct inode *dir;
634         int error;
635
636         dentry = rpc_lookup_negative(path, &nd);
637         if (IS_ERR(dentry))
638                 return dentry;
639         dir = nd.dentry->d_inode;
640         if ((error = __rpc_mkdir(dir, dentry)) != 0)
641                 goto err_dput;
642         RPC_I(dentry->d_inode)->private = rpc_client;
643         error = rpc_populate(dentry, authfiles,
644                         RPCAUTH_info, RPCAUTH_EOF);
645         if (error)
646                 goto err_depopulate;
647 out:
648         up(&dir->i_sem);
649         rpc_release_path(&nd);
650         return dentry;
651 err_depopulate:
652         rpc_depopulate(dentry);
653         __rpc_rmdir(dir, dentry);
654 err_dput:
655         dput(dentry);
656         printk(KERN_WARNING "%s: %s() failed to create directory %s (errno = %d)\n",
657                         __FILE__, __FUNCTION__, path, error);
658         dentry = ERR_PTR(error);
659         goto out;
660 }
661
662 int
663 rpc_rmdir(char *path)
664 {
665         struct nameidata nd;
666         struct dentry *dentry;
667         struct inode *dir;
668         int error;
669
670         if ((error = rpc_lookup_parent(path, &nd)) != 0)
671                 return error;
672         dir = nd.dentry->d_inode;
673         down(&dir->i_sem);
674         dentry = lookup_hash(&nd.last, nd.dentry);
675         if (IS_ERR(dentry)) {
676                 error = PTR_ERR(dentry);
677                 goto out_release;
678         }
679         rpc_depopulate(dentry);
680         error = __rpc_rmdir(dir, dentry);
681         dput(dentry);
682 out_release:
683         up(&dir->i_sem);
684         rpc_release_path(&nd);
685         return error;
686 }
687
688 struct dentry *
689 rpc_mkpipe(char *path, void *private, struct rpc_pipe_ops *ops, int flags)
690 {
691         struct nameidata nd;
692         struct dentry *dentry;
693         struct inode *dir, *inode;
694         struct rpc_inode *rpci;
695
696         dentry = rpc_lookup_negative(path, &nd);
697         if (IS_ERR(dentry))
698                 return dentry;
699         dir = nd.dentry->d_inode;
700         inode = rpc_get_inode(dir->i_sb, S_IFSOCK | S_IRUSR | S_IWUSR);
701         if (!inode)
702                 goto err_dput;
703         inode->i_ino = iunique(dir->i_sb, 100);
704         inode->i_fop = &rpc_pipe_fops;
705         d_instantiate(dentry, inode);
706         rpci = RPC_I(inode);
707         rpci->private = private;
708         rpci->flags = flags;
709         rpci->ops = ops;
710         inode_dir_notify(dir, DN_CREATE);
711 out:
712         up(&dir->i_sem);
713         rpc_release_path(&nd);
714         return dentry;
715 err_dput:
716         dput(dentry);
717         dentry = ERR_PTR(-ENOMEM);
718         printk(KERN_WARNING "%s: %s() failed to create pipe %s (errno = %d)\n",
719                         __FILE__, __FUNCTION__, path, -ENOMEM);
720         goto out;
721 }
722
723 int
724 rpc_unlink(char *path)
725 {
726         struct nameidata nd;
727         struct dentry *dentry;
728         struct inode *dir;
729         int error;
730
731         if ((error = rpc_lookup_parent(path, &nd)) != 0)
732                 return error;
733         dir = nd.dentry->d_inode;
734         down(&dir->i_sem);
735         dentry = lookup_hash(&nd.last, nd.dentry);
736         if (IS_ERR(dentry)) {
737                 error = PTR_ERR(dentry);
738                 goto out_release;
739         }
740         d_drop(dentry);
741         if (dentry->d_inode) {
742                 rpc_close_pipes(dentry->d_inode);
743                 rpc_inode_setowner(dentry->d_inode, NULL);
744                 error = simple_unlink(dir, dentry);
745         }
746         dput(dentry);
747         inode_dir_notify(dir, DN_DELETE);
748 out_release:
749         up(&dir->i_sem);
750         rpc_release_path(&nd);
751         return error;
752 }
753
754 /*
755  * populate the filesystem
756  */
757 static struct super_operations s_ops = {
758         .alloc_inode    = rpc_alloc_inode,
759         .destroy_inode  = rpc_destroy_inode,
760         .statfs         = simple_statfs,
761 };
762
763 #define RPCAUTH_GSSMAGIC 0x67596969
764
765 static int
766 rpc_fill_super(struct super_block *sb, void *data, int silent)
767 {
768         struct inode *inode;
769         struct dentry *root;
770
771         sb->s_blocksize = PAGE_CACHE_SIZE;
772         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
773         sb->s_magic = RPCAUTH_GSSMAGIC;
774         sb->s_op = &s_ops;
775
776         inode = rpc_get_inode(sb, S_IFDIR | 0755);
777         if (!inode)
778                 return -ENOMEM;
779         root = d_alloc_root(inode);
780         if (!root) {
781                 iput(inode);
782                 return -ENOMEM;
783         }
784         if (rpc_populate(root, files, RPCAUTH_Root + 1, RPCAUTH_RootEOF))
785                 goto out;
786         sb->s_root = root;
787         return 0;
788 out:
789         d_genocide(root);
790         dput(root);
791         return -ENOMEM;
792 }
793
794 static struct super_block *
795 rpc_get_sb(struct file_system_type *fs_type,
796                 int flags, const char *dev_name, void *data)
797 {
798         return get_sb_single(fs_type, flags, data, rpc_fill_super);
799 }
800
801 static struct file_system_type rpc_pipe_fs_type = {
802         .owner          = THIS_MODULE,
803         .name           = "rpc_pipefs",
804         .get_sb         = rpc_get_sb,
805         .kill_sb        = kill_litter_super,
806 };
807
808 static void
809 init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
810 {
811         struct rpc_inode *rpci = (struct rpc_inode *) foo;
812
813         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
814             SLAB_CTOR_CONSTRUCTOR) {
815                 inode_init_once(&rpci->vfs_inode);
816                 rpci->private = NULL;
817                 rpci->nreaders = 0;
818                 rpci->nwriters = 0;
819                 INIT_LIST_HEAD(&rpci->in_upcall);
820                 INIT_LIST_HEAD(&rpci->pipe);
821                 rpci->pipelen = 0;
822                 init_waitqueue_head(&rpci->waitq);
823                 INIT_WORK(&rpci->queue_timeout, rpc_timeout_upcall_queue, rpci);
824                 rpci->ops = NULL;
825         }
826 }
827
828 int register_rpc_pipefs(void)
829 {
830         rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
831                                              sizeof(struct rpc_inode),
832                                              0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
833                                              init_once, NULL);
834         if (!rpc_inode_cachep)
835                 return -ENOMEM;
836         register_filesystem(&rpc_pipe_fs_type);
837         return 0;
838 }
839
840 void unregister_rpc_pipefs(void)
841 {
842         if (kmem_cache_destroy(rpc_inode_cachep))
843                 printk(KERN_WARNING "RPC: unable to free inode cache\n");
844         unregister_filesystem(&rpc_pipe_fs_type);
845 }