Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/sunrpc/rpc_pipe.c |
| 3 | * |
| 4 | * Userland/kernel interface for rpcauth_gss. |
| 5 | * Code shamelessly plagiarized from fs/nfsd/nfsctl.c |
Rolf Eike Beer | d51fe1b | 2005-09-02 08:59:25 +0200 | [diff] [blame] | 6 | * and fs/sysfs/inode.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * Copyright (c) 2002, Trond Myklebust <trond.myklebust@fys.uio.no> |
| 9 | * |
| 10 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Trond Myklebust | 50e437d | 2007-06-07 22:44:34 -0400 | [diff] [blame] | 17 | #include <linux/fsnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | |
| 20 | #include <asm/ioctls.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/poll.h> |
| 23 | #include <linux/wait.h> |
| 24 | #include <linux/seq_file.h> |
| 25 | |
| 26 | #include <linux/sunrpc/clnt.h> |
| 27 | #include <linux/workqueue.h> |
| 28 | #include <linux/sunrpc/rpc_pipe_fs.h> |
| 29 | |
Eric Dumazet | ba89966 | 2005-08-26 12:05:31 -0700 | [diff] [blame] | 30 | static struct vfsmount *rpc_mount __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static int rpc_mount_count; |
| 32 | |
| 33 | static struct file_system_type rpc_pipe_fs_type; |
| 34 | |
| 35 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 36 | static struct kmem_cache *rpc_inode_cachep __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | #define RPC_UPCALL_TIMEOUT (30*HZ) |
| 39 | |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 40 | static void rpc_purge_list(struct rpc_inode *rpci, struct list_head *head, |
| 41 | void (*destroy_msg)(struct rpc_pipe_msg *), int err) |
Trond Myklebust | b3eb67a | 2005-11-25 17:10:11 -0500 | [diff] [blame] | 42 | { |
| 43 | struct rpc_pipe_msg *msg; |
Trond Myklebust | b3eb67a | 2005-11-25 17:10:11 -0500 | [diff] [blame] | 44 | |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 45 | if (list_empty(head)) |
| 46 | return; |
| 47 | do { |
Trond Myklebust | b3eb67a | 2005-11-25 17:10:11 -0500 | [diff] [blame] | 48 | msg = list_entry(head->next, struct rpc_pipe_msg, list); |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 49 | list_del(&msg->list); |
Trond Myklebust | b3eb67a | 2005-11-25 17:10:11 -0500 | [diff] [blame] | 50 | msg->errno = err; |
| 51 | destroy_msg(msg); |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 52 | } while (!list_empty(head)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | wake_up(&rpci->waitq); |
| 54 | } |
| 55 | |
| 56 | static void |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 57 | rpc_timeout_upcall_queue(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 59 | LIST_HEAD(free_list); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 60 | struct rpc_inode *rpci = |
| 61 | container_of(work, struct rpc_inode, queue_timeout.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | struct inode *inode = &rpci->vfs_inode; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 63 | void (*destroy_msg)(struct rpc_pipe_msg *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 65 | spin_lock(&inode->i_lock); |
| 66 | if (rpci->ops == NULL) { |
| 67 | spin_unlock(&inode->i_lock); |
| 68 | return; |
| 69 | } |
| 70 | destroy_msg = rpci->ops->destroy_msg; |
| 71 | if (rpci->nreaders == 0) { |
| 72 | list_splice_init(&rpci->pipe, &free_list); |
| 73 | rpci->pipelen = 0; |
| 74 | } |
| 75 | spin_unlock(&inode->i_lock); |
| 76 | rpc_purge_list(rpci, &free_list, destroy_msg, -ETIMEDOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
J. Bruce Fields | 93a44a7 | 2007-11-06 13:06:03 -0500 | [diff] [blame^] | 79 | /** |
| 80 | * rpc_queue_upcall |
| 81 | * @inode: inode of upcall pipe on which to queue given message |
| 82 | * @msg: message to queue |
| 83 | * |
| 84 | * Call with an @inode created by rpc_mkpipe() to queue an upcall. |
| 85 | * A userspace process may then later read the upcall by performing a |
| 86 | * read on an open file for this inode. It is up to the caller to |
| 87 | * initialize the fields of @msg (other than @msg->list) appropriately. |
| 88 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | int |
| 90 | rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg) |
| 91 | { |
| 92 | struct rpc_inode *rpci = RPC_I(inode); |
Trond Myklebust | 6070fe6 | 2005-10-27 22:12:46 -0400 | [diff] [blame] | 93 | int res = -EPIPE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 95 | spin_lock(&inode->i_lock); |
Trond Myklebust | 6070fe6 | 2005-10-27 22:12:46 -0400 | [diff] [blame] | 96 | if (rpci->ops == NULL) |
| 97 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | if (rpci->nreaders) { |
| 99 | list_add_tail(&msg->list, &rpci->pipe); |
| 100 | rpci->pipelen += msg->len; |
Trond Myklebust | 6070fe6 | 2005-10-27 22:12:46 -0400 | [diff] [blame] | 101 | res = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) { |
| 103 | if (list_empty(&rpci->pipe)) |
Trond Myklebust | 24c5d9d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 104 | queue_delayed_work(rpciod_workqueue, |
| 105 | &rpci->queue_timeout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | RPC_UPCALL_TIMEOUT); |
| 107 | list_add_tail(&msg->list, &rpci->pipe); |
| 108 | rpci->pipelen += msg->len; |
Trond Myklebust | 6070fe6 | 2005-10-27 22:12:46 -0400 | [diff] [blame] | 109 | res = 0; |
| 110 | } |
| 111 | out: |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 112 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | wake_up(&rpci->waitq); |
| 114 | return res; |
| 115 | } |
| 116 | |
Trond Myklebust | 6070fe6 | 2005-10-27 22:12:46 -0400 | [diff] [blame] | 117 | static inline void |
| 118 | rpc_inode_setowner(struct inode *inode, void *private) |
| 119 | { |
| 120 | RPC_I(inode)->private = private; |
| 121 | } |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | static void |
| 124 | rpc_close_pipes(struct inode *inode) |
| 125 | { |
| 126 | struct rpc_inode *rpci = RPC_I(inode); |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 127 | struct rpc_pipe_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 129 | mutex_lock(&inode->i_mutex); |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 130 | ops = rpci->ops; |
| 131 | if (ops != NULL) { |
| 132 | LIST_HEAD(free_list); |
| 133 | |
| 134 | spin_lock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | rpci->nreaders = 0; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 136 | list_splice_init(&rpci->in_upcall, &free_list); |
| 137 | list_splice_init(&rpci->pipe, &free_list); |
| 138 | rpci->pipelen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | rpci->ops = NULL; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 140 | spin_unlock(&inode->i_lock); |
| 141 | rpc_purge_list(rpci, &free_list, ops->destroy_msg, -EPIPE); |
| 142 | rpci->nwriters = 0; |
| 143 | if (ops->release_pipe) |
| 144 | ops->release_pipe(inode); |
Trond Myklebust | 4011cd9 | 2007-08-07 15:33:01 -0400 | [diff] [blame] | 145 | cancel_delayed_work_sync(&rpci->queue_timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
Trond Myklebust | 6070fe6 | 2005-10-27 22:12:46 -0400 | [diff] [blame] | 147 | rpc_inode_setowner(inode, NULL); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 148 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | static struct inode * |
| 152 | rpc_alloc_inode(struct super_block *sb) |
| 153 | { |
| 154 | struct rpc_inode *rpci; |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 155 | rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | if (!rpci) |
| 157 | return NULL; |
| 158 | return &rpci->vfs_inode; |
| 159 | } |
| 160 | |
| 161 | static void |
| 162 | rpc_destroy_inode(struct inode *inode) |
| 163 | { |
| 164 | kmem_cache_free(rpc_inode_cachep, RPC_I(inode)); |
| 165 | } |
| 166 | |
| 167 | static int |
| 168 | rpc_pipe_open(struct inode *inode, struct file *filp) |
| 169 | { |
| 170 | struct rpc_inode *rpci = RPC_I(inode); |
| 171 | int res = -ENXIO; |
| 172 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 173 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | if (rpci->ops != NULL) { |
| 175 | if (filp->f_mode & FMODE_READ) |
| 176 | rpci->nreaders ++; |
| 177 | if (filp->f_mode & FMODE_WRITE) |
| 178 | rpci->nwriters ++; |
| 179 | res = 0; |
| 180 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 181 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | return res; |
| 183 | } |
| 184 | |
| 185 | static int |
| 186 | rpc_pipe_release(struct inode *inode, struct file *filp) |
| 187 | { |
Trond Myklebust | 969b7f2 | 2006-01-03 09:55:36 +0100 | [diff] [blame] | 188 | struct rpc_inode *rpci = RPC_I(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | struct rpc_pipe_msg *msg; |
| 190 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 191 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | if (rpci->ops == NULL) |
| 193 | goto out; |
| 194 | msg = (struct rpc_pipe_msg *)filp->private_data; |
| 195 | if (msg != NULL) { |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 196 | spin_lock(&inode->i_lock); |
Trond Myklebust | 48e4918 | 2005-12-19 17:11:22 -0500 | [diff] [blame] | 197 | msg->errno = -EAGAIN; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 198 | list_del(&msg->list); |
| 199 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | rpci->ops->destroy_msg(msg); |
| 201 | } |
| 202 | if (filp->f_mode & FMODE_WRITE) |
| 203 | rpci->nwriters --; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 204 | if (filp->f_mode & FMODE_READ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | rpci->nreaders --; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 206 | if (rpci->nreaders == 0) { |
| 207 | LIST_HEAD(free_list); |
| 208 | spin_lock(&inode->i_lock); |
| 209 | list_splice_init(&rpci->pipe, &free_list); |
| 210 | rpci->pipelen = 0; |
| 211 | spin_unlock(&inode->i_lock); |
| 212 | rpc_purge_list(rpci, &free_list, |
| 213 | rpci->ops->destroy_msg, -EAGAIN); |
| 214 | } |
| 215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | if (rpci->ops->release_pipe) |
| 217 | rpci->ops->release_pipe(inode); |
| 218 | out: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 219 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | static ssize_t |
| 224 | rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset) |
| 225 | { |
Josef Sipek | 303b46b | 2006-12-08 02:37:42 -0800 | [diff] [blame] | 226 | struct inode *inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | struct rpc_inode *rpci = RPC_I(inode); |
| 228 | struct rpc_pipe_msg *msg; |
| 229 | int res = 0; |
| 230 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 231 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | if (rpci->ops == NULL) { |
| 233 | res = -EPIPE; |
| 234 | goto out_unlock; |
| 235 | } |
| 236 | msg = filp->private_data; |
| 237 | if (msg == NULL) { |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 238 | spin_lock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | if (!list_empty(&rpci->pipe)) { |
| 240 | msg = list_entry(rpci->pipe.next, |
| 241 | struct rpc_pipe_msg, |
| 242 | list); |
| 243 | list_move(&msg->list, &rpci->in_upcall); |
| 244 | rpci->pipelen -= msg->len; |
| 245 | filp->private_data = msg; |
| 246 | msg->copied = 0; |
| 247 | } |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 248 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | if (msg == NULL) |
| 250 | goto out_unlock; |
| 251 | } |
| 252 | /* NOTE: it is up to the callback to update msg->copied */ |
| 253 | res = rpci->ops->upcall(filp, msg, buf, len); |
| 254 | if (res < 0 || msg->len == msg->copied) { |
| 255 | filp->private_data = NULL; |
Trond Myklebust | 9842ef3 | 2006-02-01 12:18:44 -0500 | [diff] [blame] | 256 | spin_lock(&inode->i_lock); |
| 257 | list_del(&msg->list); |
| 258 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | rpci->ops->destroy_msg(msg); |
| 260 | } |
| 261 | out_unlock: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 262 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | return res; |
| 264 | } |
| 265 | |
| 266 | static ssize_t |
| 267 | rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset) |
| 268 | { |
Josef Sipek | 303b46b | 2006-12-08 02:37:42 -0800 | [diff] [blame] | 269 | struct inode *inode = filp->f_path.dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | struct rpc_inode *rpci = RPC_I(inode); |
| 271 | int res; |
| 272 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 273 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | res = -EPIPE; |
| 275 | if (rpci->ops != NULL) |
| 276 | res = rpci->ops->downcall(filp, buf, len); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 277 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | return res; |
| 279 | } |
| 280 | |
| 281 | static unsigned int |
| 282 | rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait) |
| 283 | { |
| 284 | struct rpc_inode *rpci; |
| 285 | unsigned int mask = 0; |
| 286 | |
Josef Sipek | 303b46b | 2006-12-08 02:37:42 -0800 | [diff] [blame] | 287 | rpci = RPC_I(filp->f_path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | poll_wait(filp, &rpci->waitq, wait); |
| 289 | |
| 290 | mask = POLLOUT | POLLWRNORM; |
| 291 | if (rpci->ops == NULL) |
| 292 | mask |= POLLERR | POLLHUP; |
J. Bruce Fields | eda4f9b | 2007-11-06 13:05:36 -0500 | [diff] [blame] | 293 | if (filp->private_data || !list_empty(&rpci->pipe)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | mask |= POLLIN | POLLRDNORM; |
| 295 | return mask; |
| 296 | } |
| 297 | |
| 298 | static int |
| 299 | rpc_pipe_ioctl(struct inode *ino, struct file *filp, |
| 300 | unsigned int cmd, unsigned long arg) |
| 301 | { |
Josef Sipek | 303b46b | 2006-12-08 02:37:42 -0800 | [diff] [blame] | 302 | struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | int len; |
| 304 | |
| 305 | switch (cmd) { |
| 306 | case FIONREAD: |
| 307 | if (rpci->ops == NULL) |
| 308 | return -EPIPE; |
| 309 | len = rpci->pipelen; |
| 310 | if (filp->private_data) { |
| 311 | struct rpc_pipe_msg *msg; |
| 312 | msg = (struct rpc_pipe_msg *)filp->private_data; |
| 313 | len += msg->len - msg->copied; |
| 314 | } |
| 315 | return put_user(len, (int __user *)arg); |
| 316 | default: |
| 317 | return -EINVAL; |
| 318 | } |
| 319 | } |
| 320 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 321 | static const struct file_operations rpc_pipe_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | .owner = THIS_MODULE, |
| 323 | .llseek = no_llseek, |
| 324 | .read = rpc_pipe_read, |
| 325 | .write = rpc_pipe_write, |
| 326 | .poll = rpc_pipe_poll, |
| 327 | .ioctl = rpc_pipe_ioctl, |
| 328 | .open = rpc_pipe_open, |
| 329 | .release = rpc_pipe_release, |
| 330 | }; |
| 331 | |
| 332 | static int |
| 333 | rpc_show_info(struct seq_file *m, void *v) |
| 334 | { |
| 335 | struct rpc_clnt *clnt = m->private; |
| 336 | |
| 337 | seq_printf(m, "RPC server: %s\n", clnt->cl_server); |
| 338 | seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname, |
| 339 | clnt->cl_prog, clnt->cl_vers); |
Chuck Lever | e7f7865 | 2006-08-22 20:06:19 -0400 | [diff] [blame] | 340 | seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR)); |
| 341 | seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO)); |
J. Bruce Fields | bf19aac | 2007-09-26 14:38:09 -0400 | [diff] [blame] | 342 | seq_printf(m, "port: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PORT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | static int |
| 347 | rpc_info_open(struct inode *inode, struct file *file) |
| 348 | { |
| 349 | struct rpc_clnt *clnt; |
| 350 | int ret = single_open(file, rpc_show_info, NULL); |
| 351 | |
| 352 | if (!ret) { |
| 353 | struct seq_file *m = file->private_data; |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 354 | mutex_lock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | clnt = RPC_I(inode)->private; |
| 356 | if (clnt) { |
Trond Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 357 | kref_get(&clnt->cl_kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | m->private = clnt; |
| 359 | } else { |
| 360 | single_release(inode, file); |
| 361 | ret = -EINVAL; |
| 362 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 363 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | } |
| 365 | return ret; |
| 366 | } |
| 367 | |
| 368 | static int |
| 369 | rpc_info_release(struct inode *inode, struct file *file) |
| 370 | { |
| 371 | struct seq_file *m = file->private_data; |
| 372 | struct rpc_clnt *clnt = (struct rpc_clnt *)m->private; |
| 373 | |
| 374 | if (clnt) |
| 375 | rpc_release_client(clnt); |
| 376 | return single_release(inode, file); |
| 377 | } |
| 378 | |
Arjan van de Ven | da7071d | 2007-02-12 00:55:36 -0800 | [diff] [blame] | 379 | static const struct file_operations rpc_info_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | .owner = THIS_MODULE, |
| 381 | .open = rpc_info_open, |
| 382 | .read = seq_read, |
| 383 | .llseek = seq_lseek, |
| 384 | .release = rpc_info_release, |
| 385 | }; |
| 386 | |
| 387 | |
| 388 | /* |
| 389 | * We have a single directory with 1 node in it. |
| 390 | */ |
| 391 | enum { |
| 392 | RPCAUTH_Root = 1, |
| 393 | RPCAUTH_lockd, |
| 394 | RPCAUTH_mount, |
| 395 | RPCAUTH_nfs, |
| 396 | RPCAUTH_portmap, |
| 397 | RPCAUTH_statd, |
| 398 | RPCAUTH_RootEOF |
| 399 | }; |
| 400 | |
| 401 | /* |
| 402 | * Description of fs contents. |
| 403 | */ |
| 404 | struct rpc_filelist { |
| 405 | char *name; |
Arjan van de Ven | 99ac48f | 2006-03-28 01:56:41 -0800 | [diff] [blame] | 406 | const struct file_operations *i_fop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | int mode; |
| 408 | }; |
| 409 | |
| 410 | static struct rpc_filelist files[] = { |
| 411 | [RPCAUTH_lockd] = { |
| 412 | .name = "lockd", |
| 413 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
| 414 | }, |
| 415 | [RPCAUTH_mount] = { |
| 416 | .name = "mount", |
| 417 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
| 418 | }, |
| 419 | [RPCAUTH_nfs] = { |
| 420 | .name = "nfs", |
| 421 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
| 422 | }, |
| 423 | [RPCAUTH_portmap] = { |
| 424 | .name = "portmap", |
| 425 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
| 426 | }, |
| 427 | [RPCAUTH_statd] = { |
| 428 | .name = "statd", |
| 429 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
| 430 | }, |
| 431 | }; |
| 432 | |
| 433 | enum { |
| 434 | RPCAUTH_info = 2, |
| 435 | RPCAUTH_EOF |
| 436 | }; |
| 437 | |
| 438 | static struct rpc_filelist authfiles[] = { |
| 439 | [RPCAUTH_info] = { |
| 440 | .name = "info", |
| 441 | .i_fop = &rpc_info_operations, |
| 442 | .mode = S_IFREG | S_IRUSR, |
| 443 | }, |
| 444 | }; |
| 445 | |
Trond Myklebust | 5428154 | 2006-03-20 13:44:49 -0500 | [diff] [blame] | 446 | struct vfsmount *rpc_get_mount(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | { |
Trond Myklebust | 5428154 | 2006-03-20 13:44:49 -0500 | [diff] [blame] | 448 | int err; |
| 449 | |
Trond Myklebust | 1f5ce9e | 2006-06-09 09:34:16 -0400 | [diff] [blame] | 450 | err = simple_pin_fs(&rpc_pipe_fs_type, &rpc_mount, &rpc_mount_count); |
Trond Myklebust | 5428154 | 2006-03-20 13:44:49 -0500 | [diff] [blame] | 451 | if (err != 0) |
| 452 | return ERR_PTR(err); |
| 453 | return rpc_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Trond Myklebust | 5428154 | 2006-03-20 13:44:49 -0500 | [diff] [blame] | 456 | void rpc_put_mount(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { |
| 458 | simple_release_fs(&rpc_mount, &rpc_mount_count); |
| 459 | } |
| 460 | |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 461 | static int rpc_delete_dentry(struct dentry *dentry) |
| 462 | { |
| 463 | return 1; |
| 464 | } |
| 465 | |
| 466 | static struct dentry_operations rpc_dentry_operations = { |
| 467 | .d_delete = rpc_delete_dentry, |
| 468 | }; |
| 469 | |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 470 | static int |
| 471 | rpc_lookup_parent(char *path, struct nameidata *nd) |
| 472 | { |
Josef 'Jeff' Sipek | 4ac4efc | 2007-07-19 01:48:20 -0700 | [diff] [blame] | 473 | struct vfsmount *mnt; |
| 474 | |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 475 | if (path[0] == '\0') |
| 476 | return -ENOENT; |
Josef 'Jeff' Sipek | 4ac4efc | 2007-07-19 01:48:20 -0700 | [diff] [blame] | 477 | |
| 478 | mnt = rpc_get_mount(); |
| 479 | if (IS_ERR(mnt)) { |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 480 | printk(KERN_WARNING "%s: %s failed to mount " |
| 481 | "pseudofilesystem \n", __FILE__, __FUNCTION__); |
Josef 'Jeff' Sipek | 4ac4efc | 2007-07-19 01:48:20 -0700 | [diff] [blame] | 482 | return PTR_ERR(mnt); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 483 | } |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 484 | |
Josef 'Jeff' Sipek | 4ac4efc | 2007-07-19 01:48:20 -0700 | [diff] [blame] | 485 | if (vfs_path_lookup(mnt->mnt_root, mnt, path, LOOKUP_PARENT, nd)) { |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 486 | printk(KERN_WARNING "%s: %s failed to find path %s\n", |
| 487 | __FILE__, __FUNCTION__, path); |
| 488 | rpc_put_mount(); |
| 489 | return -ENOENT; |
| 490 | } |
| 491 | return 0; |
| 492 | } |
| 493 | |
| 494 | static void |
| 495 | rpc_release_path(struct nameidata *nd) |
| 496 | { |
| 497 | path_release(nd); |
| 498 | rpc_put_mount(); |
| 499 | } |
| 500 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | static struct inode * |
| 502 | rpc_get_inode(struct super_block *sb, int mode) |
| 503 | { |
| 504 | struct inode *inode = new_inode(sb); |
| 505 | if (!inode) |
| 506 | return NULL; |
| 507 | inode->i_mode = mode; |
| 508 | inode->i_uid = inode->i_gid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | inode->i_blocks = 0; |
| 510 | inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME; |
| 511 | switch(mode & S_IFMT) { |
| 512 | case S_IFDIR: |
| 513 | inode->i_fop = &simple_dir_operations; |
| 514 | inode->i_op = &simple_dir_inode_operations; |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 515 | inc_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | default: |
| 517 | break; |
| 518 | } |
| 519 | return inode; |
| 520 | } |
| 521 | |
| 522 | /* |
| 523 | * FIXME: This probably has races. |
| 524 | */ |
| 525 | static void |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 526 | rpc_depopulate(struct dentry *parent, int start, int eof) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | { |
| 528 | struct inode *dir = parent->d_inode; |
| 529 | struct list_head *pos, *next; |
| 530 | struct dentry *dentry, *dvec[10]; |
| 531 | int n = 0; |
| 532 | |
Arjan van de Ven | c6573c2 | 2006-07-03 00:25:16 -0700 | [diff] [blame] | 533 | mutex_lock_nested(&dir->i_mutex, I_MUTEX_CHILD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | repeat: |
| 535 | spin_lock(&dcache_lock); |
| 536 | list_for_each_safe(pos, next, &parent->d_subdirs) { |
Eric Dumazet | 5160ee6 | 2006-01-08 01:03:32 -0800 | [diff] [blame] | 537 | dentry = list_entry(pos, struct dentry, d_u.d_child); |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 538 | if (!dentry->d_inode || |
| 539 | dentry->d_inode->i_ino < start || |
| 540 | dentry->d_inode->i_ino >= eof) |
| 541 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | spin_lock(&dentry->d_lock); |
| 543 | if (!d_unhashed(dentry)) { |
| 544 | dget_locked(dentry); |
| 545 | __d_drop(dentry); |
| 546 | spin_unlock(&dentry->d_lock); |
| 547 | dvec[n++] = dentry; |
| 548 | if (n == ARRAY_SIZE(dvec)) |
| 549 | break; |
| 550 | } else |
| 551 | spin_unlock(&dentry->d_lock); |
| 552 | } |
| 553 | spin_unlock(&dcache_lock); |
| 554 | if (n) { |
| 555 | do { |
| 556 | dentry = dvec[--n]; |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 557 | if (S_ISREG(dentry->d_inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | simple_unlink(dir, dentry); |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 559 | else if (S_ISDIR(dentry->d_inode->i_mode)) |
| 560 | simple_rmdir(dir, dentry); |
| 561 | d_delete(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | dput(dentry); |
| 563 | } while (n); |
| 564 | goto repeat; |
| 565 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 566 | mutex_unlock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | static int |
| 570 | rpc_populate(struct dentry *parent, |
| 571 | struct rpc_filelist *files, |
| 572 | int start, int eof) |
| 573 | { |
| 574 | struct inode *inode, *dir = parent->d_inode; |
| 575 | void *private = RPC_I(dir)->private; |
| 576 | struct dentry *dentry; |
| 577 | int mode, i; |
| 578 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 579 | mutex_lock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | for (i = start; i < eof; i++) { |
| 581 | dentry = d_alloc_name(parent, files[i].name); |
| 582 | if (!dentry) |
| 583 | goto out_bad; |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 584 | dentry->d_op = &rpc_dentry_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | mode = files[i].mode; |
| 586 | inode = rpc_get_inode(dir->i_sb, mode); |
| 587 | if (!inode) { |
| 588 | dput(dentry); |
| 589 | goto out_bad; |
| 590 | } |
| 591 | inode->i_ino = i; |
| 592 | if (files[i].i_fop) |
| 593 | inode->i_fop = files[i].i_fop; |
| 594 | if (private) |
| 595 | rpc_inode_setowner(inode, private); |
| 596 | if (S_ISDIR(mode)) |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 597 | inc_nlink(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | d_add(dentry, inode); |
Trond Myklebust | 50e437d | 2007-06-07 22:44:34 -0400 | [diff] [blame] | 599 | fsnotify_create(dir, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 601 | mutex_unlock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | return 0; |
| 603 | out_bad: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 604 | mutex_unlock(&dir->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | printk(KERN_WARNING "%s: %s failed to populate directory %s\n", |
| 606 | __FILE__, __FUNCTION__, parent->d_name.name); |
| 607 | return -ENOMEM; |
| 608 | } |
| 609 | |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 610 | static int |
| 611 | __rpc_mkdir(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | { |
| 613 | struct inode *inode; |
| 614 | |
Trond Myklebust | 1d21632 | 2007-02-02 15:56:06 -0800 | [diff] [blame] | 615 | inode = rpc_get_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | if (!inode) |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 617 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | inode->i_ino = iunique(dir->i_sb, 100); |
Christoph Hellwig | 278c995 | 2005-07-24 23:53:01 +0100 | [diff] [blame] | 619 | d_instantiate(dentry, inode); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 620 | inc_nlink(dir); |
Trond Myklebust | 50e437d | 2007-06-07 22:44:34 -0400 | [diff] [blame] | 621 | fsnotify_mkdir(dir, dentry); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 622 | return 0; |
| 623 | out_err: |
| 624 | printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n", |
| 625 | __FILE__, __FUNCTION__, dentry->d_name.name); |
| 626 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
| 628 | |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 629 | static int |
| 630 | __rpc_rmdir(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | { |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 632 | int error; |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 633 | error = simple_rmdir(dir, dentry); |
| 634 | if (!error) |
| 635 | d_delete(dentry); |
| 636 | return error; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 637 | } |
Christoph Hellwig | 278c995 | 2005-07-24 23:53:01 +0100 | [diff] [blame] | 638 | |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 639 | static struct dentry * |
Trond Myklebust | 34f3089 | 2007-06-07 18:28:02 -0400 | [diff] [blame] | 640 | rpc_lookup_create(struct dentry *parent, const char *name, int len, int exclusive) |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 641 | { |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 642 | struct inode *dir = parent->d_inode; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 643 | struct dentry *dentry; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 644 | |
Arjan van de Ven | c6573c2 | 2006-07-03 00:25:16 -0700 | [diff] [blame] | 645 | mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT); |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 646 | dentry = lookup_one_len(name, parent, len); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 647 | if (IS_ERR(dentry)) |
| 648 | goto out_err; |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 649 | if (!dentry->d_inode) |
| 650 | dentry->d_op = &rpc_dentry_operations; |
| 651 | else if (exclusive) { |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 652 | dput(dentry); |
| 653 | dentry = ERR_PTR(-EEXIST); |
| 654 | goto out_err; |
| 655 | } |
| 656 | return dentry; |
| 657 | out_err: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 658 | mutex_unlock(&dir->i_mutex); |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 659 | return dentry; |
| 660 | } |
| 661 | |
| 662 | static struct dentry * |
| 663 | rpc_lookup_negative(char *path, struct nameidata *nd) |
| 664 | { |
| 665 | struct dentry *dentry; |
| 666 | int error; |
| 667 | |
| 668 | if ((error = rpc_lookup_parent(path, nd)) != 0) |
| 669 | return ERR_PTR(error); |
Trond Myklebust | 34f3089 | 2007-06-07 18:28:02 -0400 | [diff] [blame] | 670 | dentry = rpc_lookup_create(nd->dentry, nd->last.name, nd->last.len, 1); |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 671 | if (IS_ERR(dentry)) |
| 672 | rpc_release_path(nd); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 673 | return dentry; |
| 674 | } |
| 675 | |
J. Bruce Fields | 93a44a7 | 2007-11-06 13:06:03 -0500 | [diff] [blame^] | 676 | /** |
| 677 | * rpc_mkdir - Create a new directory in rpc_pipefs |
| 678 | * @path: path from the rpc_pipefs root to the new directory |
| 679 | * @rpc_clnt: rpc client to associate with this directory |
| 680 | * |
| 681 | * This creates a directory at the given @path associated with |
| 682 | * @rpc_clnt, which will contain a file named "info" with some basic |
| 683 | * information about the client, together with any "pipes" that may |
| 684 | * later be created using rpc_mkpipe(). |
| 685 | */ |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 686 | struct dentry * |
| 687 | rpc_mkdir(char *path, struct rpc_clnt *rpc_client) |
| 688 | { |
| 689 | struct nameidata nd; |
| 690 | struct dentry *dentry; |
| 691 | struct inode *dir; |
| 692 | int error; |
| 693 | |
| 694 | dentry = rpc_lookup_negative(path, &nd); |
| 695 | if (IS_ERR(dentry)) |
| 696 | return dentry; |
| 697 | dir = nd.dentry->d_inode; |
| 698 | if ((error = __rpc_mkdir(dir, dentry)) != 0) |
| 699 | goto err_dput; |
| 700 | RPC_I(dentry->d_inode)->private = rpc_client; |
| 701 | error = rpc_populate(dentry, authfiles, |
| 702 | RPCAUTH_info, RPCAUTH_EOF); |
| 703 | if (error) |
| 704 | goto err_depopulate; |
Trond Myklebust | 5c3e985 | 2006-07-29 17:37:40 -0400 | [diff] [blame] | 705 | dget(dentry); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 706 | out: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 707 | mutex_unlock(&dir->i_mutex); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 708 | rpc_release_path(&nd); |
Trond Myklebust | 5c3e985 | 2006-07-29 17:37:40 -0400 | [diff] [blame] | 709 | return dentry; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 710 | err_depopulate: |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 711 | rpc_depopulate(dentry, RPCAUTH_info, RPCAUTH_EOF); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 712 | __rpc_rmdir(dir, dentry); |
| 713 | err_dput: |
| 714 | dput(dentry); |
| 715 | printk(KERN_WARNING "%s: %s() failed to create directory %s (errno = %d)\n", |
| 716 | __FILE__, __FUNCTION__, path, error); |
| 717 | dentry = ERR_PTR(error); |
| 718 | goto out; |
| 719 | } |
| 720 | |
J. Bruce Fields | 93a44a7 | 2007-11-06 13:06:03 -0500 | [diff] [blame^] | 721 | /** |
| 722 | * rpc_rmdir - Remove a directory created with rpc_mkdir() |
| 723 | * @dentry: directory to remove |
| 724 | */ |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 725 | int |
Trond Myklebust | dff02cc | 2006-07-31 14:17:18 -0700 | [diff] [blame] | 726 | rpc_rmdir(struct dentry *dentry) |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 727 | { |
Trond Myklebust | dff02cc | 2006-07-31 14:17:18 -0700 | [diff] [blame] | 728 | struct dentry *parent; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 729 | struct inode *dir; |
| 730 | int error; |
| 731 | |
Trond Myklebust | dff02cc | 2006-07-31 14:17:18 -0700 | [diff] [blame] | 732 | parent = dget_parent(dentry); |
| 733 | dir = parent->d_inode; |
Arjan van de Ven | c6573c2 | 2006-07-03 00:25:16 -0700 | [diff] [blame] | 734 | mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT); |
Trond Myklebust | 62e1761 | 2007-06-08 14:14:46 -0400 | [diff] [blame] | 735 | rpc_depopulate(dentry, RPCAUTH_info, RPCAUTH_EOF); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 736 | error = __rpc_rmdir(dir, dentry); |
| 737 | dput(dentry); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 738 | mutex_unlock(&dir->i_mutex); |
Trond Myklebust | dff02cc | 2006-07-31 14:17:18 -0700 | [diff] [blame] | 739 | dput(parent); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 740 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | } |
| 742 | |
J. Bruce Fields | 93a44a7 | 2007-11-06 13:06:03 -0500 | [diff] [blame^] | 743 | /** |
| 744 | * rpc_mkpipe - make an rpc_pipefs file for kernel<->userspace communication |
| 745 | * @parent: dentry of directory to create new "pipe" in |
| 746 | * @name: name of pipe |
| 747 | * @private: private data to associate with the pipe, for the caller's use |
| 748 | * @ops: operations defining the behavior of the pipe: upcall, downcall, |
| 749 | * release_pipe, and destroy_msg. |
| 750 | * |
| 751 | * Data is made available for userspace to read by calls to |
| 752 | * rpc_queue_upcall(). The actual reads will result in calls to |
| 753 | * @ops->upcall, which will be called with the file pointer, |
| 754 | * message, and userspace buffer to copy to. |
| 755 | * |
| 756 | * Writes can come at any time, and do not necessarily have to be |
| 757 | * responses to upcalls. They will result in calls to @msg->downcall. |
| 758 | * |
| 759 | * The @private argument passed here will be available to all these methods |
| 760 | * from the file pointer, via RPC_I(file->f_dentry->d_inode)->private. |
| 761 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | struct dentry * |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 763 | rpc_mkpipe(struct dentry *parent, const char *name, void *private, struct rpc_pipe_ops *ops, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | struct dentry *dentry; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 766 | struct inode *dir, *inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | struct rpc_inode *rpci; |
| 768 | |
Trond Myklebust | 34f3089 | 2007-06-07 18:28:02 -0400 | [diff] [blame] | 769 | dentry = rpc_lookup_create(parent, name, strlen(name), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | if (IS_ERR(dentry)) |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 771 | return dentry; |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 772 | dir = parent->d_inode; |
Trond Myklebust | 34f3089 | 2007-06-07 18:28:02 -0400 | [diff] [blame] | 773 | if (dentry->d_inode) { |
| 774 | rpci = RPC_I(dentry->d_inode); |
| 775 | if (rpci->private != private || |
| 776 | rpci->ops != ops || |
| 777 | rpci->flags != flags) { |
| 778 | dput (dentry); |
| 779 | dentry = ERR_PTR(-EBUSY); |
| 780 | } |
Trond Myklebust | 03a1256 | 2007-06-08 14:14:53 -0400 | [diff] [blame] | 781 | rpci->nkern_readwriters++; |
Trond Myklebust | 34f3089 | 2007-06-07 18:28:02 -0400 | [diff] [blame] | 782 | goto out; |
| 783 | } |
Steve Dickson | a53a3c5 | 2006-09-06 11:51:21 -0400 | [diff] [blame] | 784 | inode = rpc_get_inode(dir->i_sb, S_IFIFO | S_IRUSR | S_IWUSR); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 785 | if (!inode) |
| 786 | goto err_dput; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | inode->i_ino = iunique(dir->i_sb, 100); |
| 788 | inode->i_fop = &rpc_pipe_fops; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 789 | d_instantiate(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | rpci = RPC_I(inode); |
| 791 | rpci->private = private; |
| 792 | rpci->flags = flags; |
| 793 | rpci->ops = ops; |
Trond Myklebust | 03a1256 | 2007-06-08 14:14:53 -0400 | [diff] [blame] | 794 | rpci->nkern_readwriters = 1; |
Trond Myklebust | 50e437d | 2007-06-07 22:44:34 -0400 | [diff] [blame] | 795 | fsnotify_create(dir, dentry); |
Trond Myklebust | 5c3e985 | 2006-07-29 17:37:40 -0400 | [diff] [blame] | 796 | dget(dentry); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 797 | out: |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 798 | mutex_unlock(&dir->i_mutex); |
Trond Myklebust | 5c3e985 | 2006-07-29 17:37:40 -0400 | [diff] [blame] | 799 | return dentry; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 800 | err_dput: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | dput(dentry); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 802 | dentry = ERR_PTR(-ENOMEM); |
Trond Myklebust | 158998b | 2006-08-24 01:03:17 -0400 | [diff] [blame] | 803 | printk(KERN_WARNING "%s: %s() failed to create pipe %s/%s (errno = %d)\n", |
| 804 | __FILE__, __FUNCTION__, parent->d_name.name, name, |
| 805 | -ENOMEM); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 806 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | } |
| 808 | |
J. Bruce Fields | 93a44a7 | 2007-11-06 13:06:03 -0500 | [diff] [blame^] | 809 | /** |
| 810 | * rpc_unlink - remove a pipe |
| 811 | * @dentry: dentry for the pipe, as returned from rpc_mkpipe |
| 812 | * |
| 813 | * After this call, lookups will no longer find the pipe, and any |
| 814 | * attempts to read or write using preexisting opens of the pipe will |
| 815 | * return -EPIPE. |
| 816 | */ |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 817 | int |
Trond Myklebust | 5d67476 | 2006-07-31 14:11:48 -0700 | [diff] [blame] | 818 | rpc_unlink(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | { |
Trond Myklebust | 5d67476 | 2006-07-31 14:11:48 -0700 | [diff] [blame] | 820 | struct dentry *parent; |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 821 | struct inode *dir; |
Trond Myklebust | 5d67476 | 2006-07-31 14:11:48 -0700 | [diff] [blame] | 822 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
Trond Myklebust | 5d67476 | 2006-07-31 14:11:48 -0700 | [diff] [blame] | 824 | parent = dget_parent(dentry); |
| 825 | dir = parent->d_inode; |
Arjan van de Ven | c6573c2 | 2006-07-03 00:25:16 -0700 | [diff] [blame] | 826 | mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT); |
Trond Myklebust | 03a1256 | 2007-06-08 14:14:53 -0400 | [diff] [blame] | 827 | if (--RPC_I(dentry->d_inode)->nkern_readwriters == 0) { |
| 828 | rpc_close_pipes(dentry->d_inode); |
| 829 | error = simple_unlink(dir, dentry); |
| 830 | if (!error) |
| 831 | d_delete(dentry); |
| 832 | } |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 833 | dput(dentry); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 834 | mutex_unlock(&dir->i_mutex); |
Trond Myklebust | 5d67476 | 2006-07-31 14:11:48 -0700 | [diff] [blame] | 835 | dput(parent); |
Trond Myklebust | f134585 | 2005-09-23 11:08:25 -0400 | [diff] [blame] | 836 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | } |
| 838 | |
| 839 | /* |
| 840 | * populate the filesystem |
| 841 | */ |
| 842 | static struct super_operations s_ops = { |
| 843 | .alloc_inode = rpc_alloc_inode, |
| 844 | .destroy_inode = rpc_destroy_inode, |
| 845 | .statfs = simple_statfs, |
| 846 | }; |
| 847 | |
| 848 | #define RPCAUTH_GSSMAGIC 0x67596969 |
| 849 | |
| 850 | static int |
| 851 | rpc_fill_super(struct super_block *sb, void *data, int silent) |
| 852 | { |
| 853 | struct inode *inode; |
| 854 | struct dentry *root; |
| 855 | |
| 856 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 857 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 858 | sb->s_magic = RPCAUTH_GSSMAGIC; |
| 859 | sb->s_op = &s_ops; |
| 860 | sb->s_time_gran = 1; |
| 861 | |
| 862 | inode = rpc_get_inode(sb, S_IFDIR | 0755); |
| 863 | if (!inode) |
| 864 | return -ENOMEM; |
| 865 | root = d_alloc_root(inode); |
| 866 | if (!root) { |
| 867 | iput(inode); |
| 868 | return -ENOMEM; |
| 869 | } |
| 870 | if (rpc_populate(root, files, RPCAUTH_Root + 1, RPCAUTH_RootEOF)) |
| 871 | goto out; |
| 872 | sb->s_root = root; |
| 873 | return 0; |
| 874 | out: |
| 875 | d_genocide(root); |
| 876 | dput(root); |
| 877 | return -ENOMEM; |
| 878 | } |
| 879 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 880 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | rpc_get_sb(struct file_system_type *fs_type, |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 882 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | { |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 884 | return get_sb_single(fs_type, flags, data, rpc_fill_super, mnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | static struct file_system_type rpc_pipe_fs_type = { |
| 888 | .owner = THIS_MODULE, |
| 889 | .name = "rpc_pipefs", |
| 890 | .get_sb = rpc_get_sb, |
| 891 | .kill_sb = kill_litter_super, |
| 892 | }; |
| 893 | |
| 894 | static void |
Christoph Lameter | 4ba9b9d | 2007-10-16 23:25:51 -0700 | [diff] [blame] | 895 | init_once(struct kmem_cache * cachep, void *foo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | { |
| 897 | struct rpc_inode *rpci = (struct rpc_inode *) foo; |
| 898 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 899 | inode_init_once(&rpci->vfs_inode); |
| 900 | rpci->private = NULL; |
| 901 | rpci->nreaders = 0; |
| 902 | rpci->nwriters = 0; |
| 903 | INIT_LIST_HEAD(&rpci->in_upcall); |
Trond Myklebust | 6e84c7b | 2007-06-07 15:31:36 -0400 | [diff] [blame] | 904 | INIT_LIST_HEAD(&rpci->in_downcall); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 905 | INIT_LIST_HEAD(&rpci->pipe); |
| 906 | rpci->pipelen = 0; |
| 907 | init_waitqueue_head(&rpci->waitq); |
| 908 | INIT_DELAYED_WORK(&rpci->queue_timeout, |
| 909 | rpc_timeout_upcall_queue); |
| 910 | rpci->ops = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | } |
| 912 | |
| 913 | int register_rpc_pipefs(void) |
| 914 | { |
Akinobu Mita | 5bd5f58 | 2007-05-09 02:34:51 -0700 | [diff] [blame] | 915 | int err; |
| 916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | rpc_inode_cachep = kmem_cache_create("rpc_inode_cache", |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 918 | sizeof(struct rpc_inode), |
| 919 | 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| |
| 920 | SLAB_MEM_SPREAD), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 921 | init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | if (!rpc_inode_cachep) |
| 923 | return -ENOMEM; |
Akinobu Mita | 5bd5f58 | 2007-05-09 02:34:51 -0700 | [diff] [blame] | 924 | err = register_filesystem(&rpc_pipe_fs_type); |
| 925 | if (err) { |
| 926 | kmem_cache_destroy(rpc_inode_cachep); |
| 927 | return err; |
| 928 | } |
| 929 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | return 0; |
| 931 | } |
| 932 | |
| 933 | void unregister_rpc_pipefs(void) |
| 934 | { |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 935 | kmem_cache_destroy(rpc_inode_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | unregister_filesystem(&rpc_pipe_fs_type); |
| 937 | } |