2 * net/sunrpc/rpc_pipe.c
4 * Userland/kernel interface for rpcauth_gss.
5 * Code shamelessly plagiarized from fs/nfsd/nfsctl.c
11 #include <linux/module.h>
12 #include <linux/slab.h>
13 #include <linux/string.h>
14 #include <linux/pagemap.h>
15 #include <linux/mount.h>
16 #include <linux/namei.h>
17 #include <linux/fsnotify.h>
18 #include <linux/kernel.h>
20 #include <asm/ioctls.h>
22 #include <linux/poll.h>
23 #include <linux/wait.h>
24 #include <linux/seq_file.h>
26 #include <linux/sunrpc/clnt.h>
27 #include <linux/workqueue.h>
28 #include <linux/sunrpc/rpc_pipe_fs.h>
29 #include <linux/sunrpc/cache.h>
31 static struct vfsmount *rpc_mnt __read_mostly;
32 static int rpc_mount_count;
34 static struct file_system_type rpc_pipe_fs_type;
37 static struct kmem_cache *rpc_inode_cachep __read_mostly;
39 #define RPC_UPCALL_TIMEOUT (30*HZ)
41 static void rpc_purge_list(struct rpc_inode *rpci, struct list_head *head,
42 void (*destroy_msg)(struct rpc_pipe_msg *), int err)
44 struct rpc_pipe_msg *msg;
49 msg = list_entry(head->next, struct rpc_pipe_msg, list);
50 list_del_init(&msg->list);
53 } while (!list_empty(head));
54 wake_up(&rpci->waitq);
58 rpc_timeout_upcall_queue(struct work_struct *work)
61 struct rpc_inode *rpci =
62 container_of(work, struct rpc_inode, queue_timeout.work);
63 struct inode *inode = &rpci->vfs_inode;
64 void (*destroy_msg)(struct rpc_pipe_msg *);
66 spin_lock(&inode->i_lock);
67 if (rpci->ops == NULL) {
68 spin_unlock(&inode->i_lock);
71 destroy_msg = rpci->ops->destroy_msg;
72 if (rpci->nreaders == 0) {
73 list_splice_init(&rpci->pipe, &free_list);
76 spin_unlock(&inode->i_lock);
77 rpc_purge_list(rpci, &free_list, destroy_msg, -ETIMEDOUT);
81 * rpc_queue_upcall - queue an upcall message to userspace
82 * @inode: inode of upcall pipe on which to queue given message
83 * @msg: message to queue
85 * Call with an @inode created by rpc_mkpipe() to queue an upcall.
86 * A userspace process may then later read the upcall by performing a
87 * read on an open file for this inode. It is up to the caller to
88 * initialize the fields of @msg (other than @msg->list) appropriately.
91 rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg)
93 struct rpc_inode *rpci = RPC_I(inode);
96 spin_lock(&inode->i_lock);
97 if (rpci->ops == NULL)
100 list_add_tail(&msg->list, &rpci->pipe);
101 rpci->pipelen += msg->len;
103 } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) {
104 if (list_empty(&rpci->pipe))
105 queue_delayed_work(rpciod_workqueue,
106 &rpci->queue_timeout,
108 list_add_tail(&msg->list, &rpci->pipe);
109 rpci->pipelen += msg->len;
113 spin_unlock(&inode->i_lock);
114 wake_up(&rpci->waitq);
117 EXPORT_SYMBOL_GPL(rpc_queue_upcall);
120 rpc_inode_setowner(struct inode *inode, void *private)
122 RPC_I(inode)->private = private;
126 rpc_close_pipes(struct inode *inode)
128 struct rpc_inode *rpci = RPC_I(inode);
129 const struct rpc_pipe_ops *ops;
132 mutex_lock(&inode->i_mutex);
135 LIST_HEAD(free_list);
136 spin_lock(&inode->i_lock);
137 need_release = rpci->nreaders != 0 || rpci->nwriters != 0;
139 list_splice_init(&rpci->in_upcall, &free_list);
140 list_splice_init(&rpci->pipe, &free_list);
143 spin_unlock(&inode->i_lock);
144 rpc_purge_list(rpci, &free_list, ops->destroy_msg, -EPIPE);
146 if (need_release && ops->release_pipe)
147 ops->release_pipe(inode);
148 cancel_delayed_work_sync(&rpci->queue_timeout);
150 rpc_inode_setowner(inode, NULL);
151 mutex_unlock(&inode->i_mutex);
154 static struct inode *
155 rpc_alloc_inode(struct super_block *sb)
157 struct rpc_inode *rpci;
158 rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, GFP_KERNEL);
161 return &rpci->vfs_inode;
165 rpc_i_callback(struct rcu_head *head)
167 struct inode *inode = container_of(head, struct inode, i_rcu);
168 INIT_LIST_HEAD(&inode->i_dentry);
169 kmem_cache_free(rpc_inode_cachep, RPC_I(inode));
173 rpc_destroy_inode(struct inode *inode)
175 call_rcu(&inode->i_rcu, rpc_i_callback);
179 rpc_pipe_open(struct inode *inode, struct file *filp)
181 struct rpc_inode *rpci = RPC_I(inode);
185 mutex_lock(&inode->i_mutex);
186 if (rpci->ops == NULL)
188 first_open = rpci->nreaders == 0 && rpci->nwriters == 0;
189 if (first_open && rpci->ops->open_pipe) {
190 res = rpci->ops->open_pipe(inode);
194 if (filp->f_mode & FMODE_READ)
196 if (filp->f_mode & FMODE_WRITE)
200 mutex_unlock(&inode->i_mutex);
205 rpc_pipe_release(struct inode *inode, struct file *filp)
207 struct rpc_inode *rpci = RPC_I(inode);
208 struct rpc_pipe_msg *msg;
211 mutex_lock(&inode->i_mutex);
212 if (rpci->ops == NULL)
214 msg = filp->private_data;
216 spin_lock(&inode->i_lock);
217 msg->errno = -EAGAIN;
218 list_del_init(&msg->list);
219 spin_unlock(&inode->i_lock);
220 rpci->ops->destroy_msg(msg);
222 if (filp->f_mode & FMODE_WRITE)
224 if (filp->f_mode & FMODE_READ) {
226 if (rpci->nreaders == 0) {
227 LIST_HEAD(free_list);
228 spin_lock(&inode->i_lock);
229 list_splice_init(&rpci->pipe, &free_list);
231 spin_unlock(&inode->i_lock);
232 rpc_purge_list(rpci, &free_list,
233 rpci->ops->destroy_msg, -EAGAIN);
236 last_close = rpci->nwriters == 0 && rpci->nreaders == 0;
237 if (last_close && rpci->ops->release_pipe)
238 rpci->ops->release_pipe(inode);
240 mutex_unlock(&inode->i_mutex);
245 rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset)
247 struct inode *inode = filp->f_path.dentry->d_inode;
248 struct rpc_inode *rpci = RPC_I(inode);
249 struct rpc_pipe_msg *msg;
252 mutex_lock(&inode->i_mutex);
253 if (rpci->ops == NULL) {
257 msg = filp->private_data;
259 spin_lock(&inode->i_lock);
260 if (!list_empty(&rpci->pipe)) {
261 msg = list_entry(rpci->pipe.next,
264 list_move(&msg->list, &rpci->in_upcall);
265 rpci->pipelen -= msg->len;
266 filp->private_data = msg;
269 spin_unlock(&inode->i_lock);
273 /* NOTE: it is up to the callback to update msg->copied */
274 res = rpci->ops->upcall(filp, msg, buf, len);
275 if (res < 0 || msg->len == msg->copied) {
276 filp->private_data = NULL;
277 spin_lock(&inode->i_lock);
278 list_del_init(&msg->list);
279 spin_unlock(&inode->i_lock);
280 rpci->ops->destroy_msg(msg);
283 mutex_unlock(&inode->i_mutex);
288 rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset)
290 struct inode *inode = filp->f_path.dentry->d_inode;
291 struct rpc_inode *rpci = RPC_I(inode);
294 mutex_lock(&inode->i_mutex);
296 if (rpci->ops != NULL)
297 res = rpci->ops->downcall(filp, buf, len);
298 mutex_unlock(&inode->i_mutex);
303 rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait)
305 struct rpc_inode *rpci;
306 unsigned int mask = 0;
308 rpci = RPC_I(filp->f_path.dentry->d_inode);
309 poll_wait(filp, &rpci->waitq, wait);
311 mask = POLLOUT | POLLWRNORM;
312 if (rpci->ops == NULL)
313 mask |= POLLERR | POLLHUP;
314 if (filp->private_data || !list_empty(&rpci->pipe))
315 mask |= POLLIN | POLLRDNORM;
320 rpc_pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
322 struct inode *inode = filp->f_path.dentry->d_inode;
323 struct rpc_inode *rpci = RPC_I(inode);
328 spin_lock(&inode->i_lock);
329 if (rpci->ops == NULL) {
330 spin_unlock(&inode->i_lock);
334 if (filp->private_data) {
335 struct rpc_pipe_msg *msg;
336 msg = filp->private_data;
337 len += msg->len - msg->copied;
339 spin_unlock(&inode->i_lock);
340 return put_user(len, (int __user *)arg);
346 static const struct file_operations rpc_pipe_fops = {
347 .owner = THIS_MODULE,
349 .read = rpc_pipe_read,
350 .write = rpc_pipe_write,
351 .poll = rpc_pipe_poll,
352 .unlocked_ioctl = rpc_pipe_ioctl,
353 .open = rpc_pipe_open,
354 .release = rpc_pipe_release,
358 rpc_show_info(struct seq_file *m, void *v)
360 struct rpc_clnt *clnt = m->private;
362 seq_printf(m, "RPC server: %s\n", clnt->cl_server);
363 seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname,
364 clnt->cl_prog, clnt->cl_vers);
365 seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR));
366 seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO));
367 seq_printf(m, "port: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PORT));
372 rpc_info_open(struct inode *inode, struct file *file)
374 struct rpc_clnt *clnt = NULL;
375 int ret = single_open(file, rpc_show_info, NULL);
378 struct seq_file *m = file->private_data;
380 spin_lock(&file->f_path.dentry->d_lock);
381 if (!d_unhashed(file->f_path.dentry))
382 clnt = RPC_I(inode)->private;
383 if (clnt != NULL && atomic_inc_not_zero(&clnt->cl_count)) {
384 spin_unlock(&file->f_path.dentry->d_lock);
387 spin_unlock(&file->f_path.dentry->d_lock);
388 single_release(inode, file);
396 rpc_info_release(struct inode *inode, struct file *file)
398 struct seq_file *m = file->private_data;
399 struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
402 rpc_release_client(clnt);
403 return single_release(inode, file);
406 static const struct file_operations rpc_info_operations = {
407 .owner = THIS_MODULE,
408 .open = rpc_info_open,
411 .release = rpc_info_release,
416 * Description of fs contents.
418 struct rpc_filelist {
420 const struct file_operations *i_fop;
424 struct vfsmount *rpc_get_mount(void)
428 err = simple_pin_fs(&rpc_pipe_fs_type, &rpc_mnt, &rpc_mount_count);
433 EXPORT_SYMBOL_GPL(rpc_get_mount);
435 void rpc_put_mount(void)
437 simple_release_fs(&rpc_mnt, &rpc_mount_count);
439 EXPORT_SYMBOL_GPL(rpc_put_mount);
441 static int rpc_delete_dentry(const struct dentry *dentry)
446 static const struct dentry_operations rpc_dentry_operations = {
447 .d_delete = rpc_delete_dentry,
450 static struct inode *
451 rpc_get_inode(struct super_block *sb, umode_t mode)
453 struct inode *inode = new_inode(sb);
456 inode->i_ino = get_next_ino();
457 inode->i_mode = mode;
458 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
459 switch(mode & S_IFMT) {
461 inode->i_fop = &simple_dir_operations;
462 inode->i_op = &simple_dir_inode_operations;
470 static int __rpc_create_common(struct inode *dir, struct dentry *dentry,
472 const struct file_operations *i_fop,
478 inode = rpc_get_inode(dir->i_sb, mode);
481 inode->i_ino = iunique(dir->i_sb, 100);
483 inode->i_fop = i_fop;
485 rpc_inode_setowner(inode, private);
486 d_add(dentry, inode);
489 printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
490 __FILE__, __func__, dentry->d_name.name);
495 static int __rpc_create(struct inode *dir, struct dentry *dentry,
497 const struct file_operations *i_fop,
502 err = __rpc_create_common(dir, dentry, S_IFREG | mode, i_fop, private);
505 fsnotify_create(dir, dentry);
509 static int __rpc_mkdir(struct inode *dir, struct dentry *dentry,
511 const struct file_operations *i_fop,
516 err = __rpc_create_common(dir, dentry, S_IFDIR | mode, i_fop, private);
520 fsnotify_mkdir(dir, dentry);
524 static int __rpc_mkpipe(struct inode *dir, struct dentry *dentry,
526 const struct file_operations *i_fop,
528 const struct rpc_pipe_ops *ops,
531 struct rpc_inode *rpci;
534 err = __rpc_create_common(dir, dentry, S_IFIFO | mode, i_fop, private);
537 rpci = RPC_I(dentry->d_inode);
538 rpci->nkern_readwriters = 1;
539 rpci->private = private;
542 fsnotify_create(dir, dentry);
546 static int __rpc_rmdir(struct inode *dir, struct dentry *dentry)
551 ret = simple_rmdir(dir, dentry);
557 static int __rpc_unlink(struct inode *dir, struct dentry *dentry)
562 ret = simple_unlink(dir, dentry);
568 static int __rpc_rmpipe(struct inode *dir, struct dentry *dentry)
570 struct inode *inode = dentry->d_inode;
571 struct rpc_inode *rpci = RPC_I(inode);
573 rpci->nkern_readwriters--;
574 if (rpci->nkern_readwriters != 0)
576 rpc_close_pipes(inode);
577 return __rpc_unlink(dir, dentry);
580 static struct dentry *__rpc_lookup_create(struct dentry *parent,
583 struct dentry *dentry;
585 dentry = d_lookup(parent, name);
587 dentry = d_alloc(parent, name);
589 dentry = ERR_PTR(-ENOMEM);
593 if (!dentry->d_inode)
594 d_set_d_op(dentry, &rpc_dentry_operations);
599 static struct dentry *__rpc_lookup_create_exclusive(struct dentry *parent,
602 struct dentry *dentry;
604 dentry = __rpc_lookup_create(parent, name);
607 if (dentry->d_inode == NULL)
610 return ERR_PTR(-EEXIST);
614 * FIXME: This probably has races.
616 static void __rpc_depopulate(struct dentry *parent,
617 const struct rpc_filelist *files,
620 struct inode *dir = parent->d_inode;
621 struct dentry *dentry;
625 for (i = start; i < eof; i++) {
626 name.name = files[i].name;
627 name.len = strlen(files[i].name);
628 name.hash = full_name_hash(name.name, name.len);
629 dentry = d_lookup(parent, &name);
633 if (dentry->d_inode == NULL)
635 switch (dentry->d_inode->i_mode & S_IFMT) {
639 __rpc_unlink(dir, dentry);
642 __rpc_rmdir(dir, dentry);
649 static void rpc_depopulate(struct dentry *parent,
650 const struct rpc_filelist *files,
653 struct inode *dir = parent->d_inode;
655 mutex_lock_nested(&dir->i_mutex, I_MUTEX_CHILD);
656 __rpc_depopulate(parent, files, start, eof);
657 mutex_unlock(&dir->i_mutex);
660 static int rpc_populate(struct dentry *parent,
661 const struct rpc_filelist *files,
665 struct inode *dir = parent->d_inode;
666 struct dentry *dentry;
669 mutex_lock(&dir->i_mutex);
670 for (i = start; i < eof; i++) {
673 q.name = files[i].name;
674 q.len = strlen(files[i].name);
675 q.hash = full_name_hash(q.name, q.len);
676 dentry = __rpc_lookup_create_exclusive(parent, &q);
677 err = PTR_ERR(dentry);
680 switch (files[i].mode & S_IFMT) {
684 err = __rpc_create(dir, dentry,
690 err = __rpc_mkdir(dir, dentry,
698 mutex_unlock(&dir->i_mutex);
701 __rpc_depopulate(parent, files, start, eof);
702 mutex_unlock(&dir->i_mutex);
703 printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
704 __FILE__, __func__, parent->d_name.name);
708 static struct dentry *rpc_mkdir_populate(struct dentry *parent,
709 struct qstr *name, umode_t mode, void *private,
710 int (*populate)(struct dentry *, void *), void *args_populate)
712 struct dentry *dentry;
713 struct inode *dir = parent->d_inode;
716 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
717 dentry = __rpc_lookup_create_exclusive(parent, name);
720 error = __rpc_mkdir(dir, dentry, mode, NULL, private);
723 if (populate != NULL) {
724 error = populate(dentry, args_populate);
729 mutex_unlock(&dir->i_mutex);
732 __rpc_rmdir(dir, dentry);
734 dentry = ERR_PTR(error);
738 static int rpc_rmdir_depopulate(struct dentry *dentry,
739 void (*depopulate)(struct dentry *))
741 struct dentry *parent;
745 parent = dget_parent(dentry);
746 dir = parent->d_inode;
747 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
748 if (depopulate != NULL)
750 error = __rpc_rmdir(dir, dentry);
751 mutex_unlock(&dir->i_mutex);
757 * rpc_mkpipe - make an rpc_pipefs file for kernel<->userspace communication
758 * @parent: dentry of directory to create new "pipe" in
759 * @name: name of pipe
760 * @private: private data to associate with the pipe, for the caller's use
761 * @ops: operations defining the behavior of the pipe: upcall, downcall,
762 * release_pipe, open_pipe, and destroy_msg.
763 * @flags: rpc_inode flags
765 * Data is made available for userspace to read by calls to
766 * rpc_queue_upcall(). The actual reads will result in calls to
767 * @ops->upcall, which will be called with the file pointer,
768 * message, and userspace buffer to copy to.
770 * Writes can come at any time, and do not necessarily have to be
771 * responses to upcalls. They will result in calls to @msg->downcall.
773 * The @private argument passed here will be available to all these methods
774 * from the file pointer, via RPC_I(file->f_dentry->d_inode)->private.
776 struct dentry *rpc_mkpipe(struct dentry *parent, const char *name,
777 void *private, const struct rpc_pipe_ops *ops,
780 struct dentry *dentry;
781 struct inode *dir = parent->d_inode;
782 umode_t umode = S_IFIFO | S_IRUSR | S_IWUSR;
786 if (ops->upcall == NULL)
788 if (ops->downcall == NULL)
792 q.len = strlen(name);
793 q.hash = full_name_hash(q.name, q.len),
795 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
796 dentry = __rpc_lookup_create(parent, &q);
799 if (dentry->d_inode) {
800 struct rpc_inode *rpci = RPC_I(dentry->d_inode);
801 if (rpci->private != private ||
803 rpci->flags != flags) {
808 rpci->nkern_readwriters++;
812 err = __rpc_mkpipe(dir, dentry, umode, &rpc_pipe_fops,
813 private, ops, flags);
817 mutex_unlock(&dir->i_mutex);
820 dentry = ERR_PTR(err);
821 printk(KERN_WARNING "%s: %s() failed to create pipe %s/%s (errno = %d)\n",
822 __FILE__, __func__, parent->d_name.name, name,
826 EXPORT_SYMBOL_GPL(rpc_mkpipe);
829 * rpc_unlink - remove a pipe
830 * @dentry: dentry for the pipe, as returned from rpc_mkpipe
832 * After this call, lookups will no longer find the pipe, and any
833 * attempts to read or write using preexisting opens of the pipe will
837 rpc_unlink(struct dentry *dentry)
839 struct dentry *parent;
843 parent = dget_parent(dentry);
844 dir = parent->d_inode;
845 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
846 error = __rpc_rmpipe(dir, dentry);
847 mutex_unlock(&dir->i_mutex);
851 EXPORT_SYMBOL_GPL(rpc_unlink);
858 static const struct rpc_filelist authfiles[] = {
861 .i_fop = &rpc_info_operations,
862 .mode = S_IFREG | S_IRUSR,
866 static int rpc_clntdir_populate(struct dentry *dentry, void *private)
868 return rpc_populate(dentry,
869 authfiles, RPCAUTH_info, RPCAUTH_EOF,
873 static void rpc_clntdir_depopulate(struct dentry *dentry)
875 rpc_depopulate(dentry, authfiles, RPCAUTH_info, RPCAUTH_EOF);
879 * rpc_create_client_dir - Create a new rpc_client directory in rpc_pipefs
880 * @dentry: dentry from the rpc_pipefs root to the new directory
881 * @name: &struct qstr for the name
882 * @rpc_client: rpc client to associate with this directory
884 * This creates a directory at the given @path associated with
885 * @rpc_clnt, which will contain a file named "info" with some basic
886 * information about the client, together with any "pipes" that may
887 * later be created using rpc_mkpipe().
889 struct dentry *rpc_create_client_dir(struct dentry *dentry,
891 struct rpc_clnt *rpc_client)
893 return rpc_mkdir_populate(dentry, name, S_IRUGO | S_IXUGO, NULL,
894 rpc_clntdir_populate, rpc_client);
898 * rpc_remove_client_dir - Remove a directory created with rpc_create_client_dir()
899 * @dentry: directory to remove
901 int rpc_remove_client_dir(struct dentry *dentry)
903 return rpc_rmdir_depopulate(dentry, rpc_clntdir_depopulate);
906 static const struct rpc_filelist cache_pipefs_files[3] = {
909 .i_fop = &cache_file_operations_pipefs,
910 .mode = S_IFREG|S_IRUSR|S_IWUSR,
914 .i_fop = &content_file_operations_pipefs,
915 .mode = S_IFREG|S_IRUSR,
919 .i_fop = &cache_flush_operations_pipefs,
920 .mode = S_IFREG|S_IRUSR|S_IWUSR,
924 static int rpc_cachedir_populate(struct dentry *dentry, void *private)
926 return rpc_populate(dentry,
927 cache_pipefs_files, 0, 3,
931 static void rpc_cachedir_depopulate(struct dentry *dentry)
933 rpc_depopulate(dentry, cache_pipefs_files, 0, 3);
936 struct dentry *rpc_create_cache_dir(struct dentry *parent, struct qstr *name,
937 mode_t umode, struct cache_detail *cd)
939 return rpc_mkdir_populate(parent, name, umode, NULL,
940 rpc_cachedir_populate, cd);
943 void rpc_remove_cache_dir(struct dentry *dentry)
945 rpc_rmdir_depopulate(dentry, rpc_cachedir_depopulate);
949 * populate the filesystem
951 static const struct super_operations s_ops = {
952 .alloc_inode = rpc_alloc_inode,
953 .destroy_inode = rpc_destroy_inode,
954 .statfs = simple_statfs,
957 #define RPCAUTH_GSSMAGIC 0x67596969
960 * We have a single directory with 1 node in it.
973 static const struct rpc_filelist files[] = {
976 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
980 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
984 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
986 [RPCAUTH_portmap] = {
988 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
992 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
994 [RPCAUTH_nfsd4_cb] = {
996 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1000 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1005 rpc_fill_super(struct super_block *sb, void *data, int silent)
1007 struct inode *inode;
1008 struct dentry *root;
1010 sb->s_blocksize = PAGE_CACHE_SIZE;
1011 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1012 sb->s_magic = RPCAUTH_GSSMAGIC;
1014 sb->s_time_gran = 1;
1016 inode = rpc_get_inode(sb, S_IFDIR | 0755);
1019 sb->s_root = root = d_alloc_root(inode);
1024 if (rpc_populate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF, NULL))
1029 static struct dentry *
1030 rpc_mount(struct file_system_type *fs_type,
1031 int flags, const char *dev_name, void *data)
1033 return mount_single(fs_type, flags, data, rpc_fill_super);
1036 static struct file_system_type rpc_pipe_fs_type = {
1037 .owner = THIS_MODULE,
1038 .name = "rpc_pipefs",
1040 .kill_sb = kill_litter_super,
1044 init_once(void *foo)
1046 struct rpc_inode *rpci = (struct rpc_inode *) foo;
1048 inode_init_once(&rpci->vfs_inode);
1049 rpci->private = NULL;
1052 INIT_LIST_HEAD(&rpci->in_upcall);
1053 INIT_LIST_HEAD(&rpci->in_downcall);
1054 INIT_LIST_HEAD(&rpci->pipe);
1056 init_waitqueue_head(&rpci->waitq);
1057 INIT_DELAYED_WORK(&rpci->queue_timeout,
1058 rpc_timeout_upcall_queue);
1062 int register_rpc_pipefs(void)
1066 rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
1067 sizeof(struct rpc_inode),
1068 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1071 if (!rpc_inode_cachep)
1073 err = register_filesystem(&rpc_pipe_fs_type);
1075 kmem_cache_destroy(rpc_inode_cachep);
1082 void unregister_rpc_pipefs(void)
1084 kmem_cache_destroy(rpc_inode_cachep);
1085 unregister_filesystem(&rpc_pipe_fs_type);