blob: c21dc07f2a8cc6aa890ae2bd10728a1eade50af1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Beerd51fe1b2005-09-02 08:59:25 +02006 * and fs/sysfs/inode.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Copyright (c) 2002, Trond Myklebust <trond.myklebust@fys.uio.no>
9 *
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#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/dnotify.h>
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 Dumazetba899662005-08-26 12:05:31 -070030static struct vfsmount *rpc_mount __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int rpc_mount_count;
32
33static struct file_system_type rpc_pipe_fs_type;
34
35
Eric Dumazetba899662005-08-26 12:05:31 -070036static kmem_cache_t *rpc_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#define RPC_UPCALL_TIMEOUT (30*HZ)
39
Trond Myklebust9842ef32006-02-01 12:18:44 -050040static void rpc_purge_list(struct rpc_inode *rpci, struct list_head *head,
41 void (*destroy_msg)(struct rpc_pipe_msg *), int err)
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050042{
43 struct rpc_pipe_msg *msg;
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050044
Trond Myklebust9842ef32006-02-01 12:18:44 -050045 if (list_empty(head))
46 return;
47 do {
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050048 msg = list_entry(head->next, struct rpc_pipe_msg, list);
Trond Myklebust9842ef32006-02-01 12:18:44 -050049 list_del(&msg->list);
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050050 msg->errno = err;
51 destroy_msg(msg);
Trond Myklebust9842ef32006-02-01 12:18:44 -050052 } while (!list_empty(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 wake_up(&rpci->waitq);
54}
55
56static void
57rpc_timeout_upcall_queue(void *data)
58{
Trond Myklebust9842ef32006-02-01 12:18:44 -050059 LIST_HEAD(free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 struct rpc_inode *rpci = (struct rpc_inode *)data;
61 struct inode *inode = &rpci->vfs_inode;
Trond Myklebust9842ef32006-02-01 12:18:44 -050062 void (*destroy_msg)(struct rpc_pipe_msg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Trond Myklebust9842ef32006-02-01 12:18:44 -050064 spin_lock(&inode->i_lock);
65 if (rpci->ops == NULL) {
66 spin_unlock(&inode->i_lock);
67 return;
68 }
69 destroy_msg = rpci->ops->destroy_msg;
70 if (rpci->nreaders == 0) {
71 list_splice_init(&rpci->pipe, &free_list);
72 rpci->pipelen = 0;
73 }
74 spin_unlock(&inode->i_lock);
75 rpc_purge_list(rpci, &free_list, destroy_msg, -ETIMEDOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78int
79rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg)
80{
81 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust6070fe62005-10-27 22:12:46 -040082 int res = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Trond Myklebust9842ef32006-02-01 12:18:44 -050084 spin_lock(&inode->i_lock);
Trond Myklebust6070fe62005-10-27 22:12:46 -040085 if (rpci->ops == NULL)
86 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (rpci->nreaders) {
88 list_add_tail(&msg->list, &rpci->pipe);
89 rpci->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -040090 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) {
92 if (list_empty(&rpci->pipe))
Trond Myklebust24c5d9d2006-03-20 13:44:08 -050093 queue_delayed_work(rpciod_workqueue,
94 &rpci->queue_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 RPC_UPCALL_TIMEOUT);
96 list_add_tail(&msg->list, &rpci->pipe);
97 rpci->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -040098 res = 0;
99 }
100out:
Trond Myklebust9842ef32006-02-01 12:18:44 -0500101 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 wake_up(&rpci->waitq);
103 return res;
104}
105
Trond Myklebust6070fe62005-10-27 22:12:46 -0400106static inline void
107rpc_inode_setowner(struct inode *inode, void *private)
108{
109 RPC_I(inode)->private = private;
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static void
113rpc_close_pipes(struct inode *inode)
114{
115 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500116 struct rpc_pipe_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800118 mutex_lock(&inode->i_mutex);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500119 ops = rpci->ops;
120 if (ops != NULL) {
121 LIST_HEAD(free_list);
122
123 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 rpci->nreaders = 0;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500125 list_splice_init(&rpci->in_upcall, &free_list);
126 list_splice_init(&rpci->pipe, &free_list);
127 rpci->pipelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 rpci->ops = NULL;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500129 spin_unlock(&inode->i_lock);
130 rpc_purge_list(rpci, &free_list, ops->destroy_msg, -EPIPE);
131 rpci->nwriters = 0;
132 if (ops->release_pipe)
133 ops->release_pipe(inode);
134 cancel_delayed_work(&rpci->queue_timeout);
Trond Myklebust24c5d9d2006-03-20 13:44:08 -0500135 flush_workqueue(rpciod_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Trond Myklebust6070fe62005-10-27 22:12:46 -0400137 rpc_inode_setowner(inode, NULL);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800138 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static struct inode *
142rpc_alloc_inode(struct super_block *sb)
143{
144 struct rpc_inode *rpci;
145 rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, SLAB_KERNEL);
146 if (!rpci)
147 return NULL;
148 return &rpci->vfs_inode;
149}
150
151static void
152rpc_destroy_inode(struct inode *inode)
153{
154 kmem_cache_free(rpc_inode_cachep, RPC_I(inode));
155}
156
157static int
158rpc_pipe_open(struct inode *inode, struct file *filp)
159{
160 struct rpc_inode *rpci = RPC_I(inode);
161 int res = -ENXIO;
162
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800163 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (rpci->ops != NULL) {
165 if (filp->f_mode & FMODE_READ)
166 rpci->nreaders ++;
167 if (filp->f_mode & FMODE_WRITE)
168 rpci->nwriters ++;
169 res = 0;
170 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800171 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return res;
173}
174
175static int
176rpc_pipe_release(struct inode *inode, struct file *filp)
177{
Trond Myklebust969b7f22006-01-03 09:55:36 +0100178 struct rpc_inode *rpci = RPC_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct rpc_pipe_msg *msg;
180
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800181 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (rpci->ops == NULL)
183 goto out;
184 msg = (struct rpc_pipe_msg *)filp->private_data;
185 if (msg != NULL) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500186 spin_lock(&inode->i_lock);
Trond Myklebust48e49182005-12-19 17:11:22 -0500187 msg->errno = -EAGAIN;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500188 list_del(&msg->list);
189 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 rpci->ops->destroy_msg(msg);
191 }
192 if (filp->f_mode & FMODE_WRITE)
193 rpci->nwriters --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500194 if (filp->f_mode & FMODE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 rpci->nreaders --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500196 if (rpci->nreaders == 0) {
197 LIST_HEAD(free_list);
198 spin_lock(&inode->i_lock);
199 list_splice_init(&rpci->pipe, &free_list);
200 rpci->pipelen = 0;
201 spin_unlock(&inode->i_lock);
202 rpc_purge_list(rpci, &free_list,
203 rpci->ops->destroy_msg, -EAGAIN);
204 }
205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (rpci->ops->release_pipe)
207 rpci->ops->release_pipe(inode);
208out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800209 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
211}
212
213static ssize_t
214rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset)
215{
216 struct inode *inode = filp->f_dentry->d_inode;
217 struct rpc_inode *rpci = RPC_I(inode);
218 struct rpc_pipe_msg *msg;
219 int res = 0;
220
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800221 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (rpci->ops == NULL) {
223 res = -EPIPE;
224 goto out_unlock;
225 }
226 msg = filp->private_data;
227 if (msg == NULL) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500228 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!list_empty(&rpci->pipe)) {
230 msg = list_entry(rpci->pipe.next,
231 struct rpc_pipe_msg,
232 list);
233 list_move(&msg->list, &rpci->in_upcall);
234 rpci->pipelen -= msg->len;
235 filp->private_data = msg;
236 msg->copied = 0;
237 }
Trond Myklebust9842ef32006-02-01 12:18:44 -0500238 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (msg == NULL)
240 goto out_unlock;
241 }
242 /* NOTE: it is up to the callback to update msg->copied */
243 res = rpci->ops->upcall(filp, msg, buf, len);
244 if (res < 0 || msg->len == msg->copied) {
245 filp->private_data = NULL;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500246 spin_lock(&inode->i_lock);
247 list_del(&msg->list);
248 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 rpci->ops->destroy_msg(msg);
250 }
251out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800252 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return res;
254}
255
256static ssize_t
257rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset)
258{
259 struct inode *inode = filp->f_dentry->d_inode;
260 struct rpc_inode *rpci = RPC_I(inode);
261 int res;
262
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800263 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 res = -EPIPE;
265 if (rpci->ops != NULL)
266 res = rpci->ops->downcall(filp, buf, len);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800267 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return res;
269}
270
271static unsigned int
272rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait)
273{
274 struct rpc_inode *rpci;
275 unsigned int mask = 0;
276
277 rpci = RPC_I(filp->f_dentry->d_inode);
278 poll_wait(filp, &rpci->waitq, wait);
279
280 mask = POLLOUT | POLLWRNORM;
281 if (rpci->ops == NULL)
282 mask |= POLLERR | POLLHUP;
283 if (!list_empty(&rpci->pipe))
284 mask |= POLLIN | POLLRDNORM;
285 return mask;
286}
287
288static int
289rpc_pipe_ioctl(struct inode *ino, struct file *filp,
290 unsigned int cmd, unsigned long arg)
291{
292 struct rpc_inode *rpci = RPC_I(filp->f_dentry->d_inode);
293 int len;
294
295 switch (cmd) {
296 case FIONREAD:
297 if (rpci->ops == NULL)
298 return -EPIPE;
299 len = rpci->pipelen;
300 if (filp->private_data) {
301 struct rpc_pipe_msg *msg;
302 msg = (struct rpc_pipe_msg *)filp->private_data;
303 len += msg->len - msg->copied;
304 }
305 return put_user(len, (int __user *)arg);
306 default:
307 return -EINVAL;
308 }
309}
310
311static struct file_operations rpc_pipe_fops = {
312 .owner = THIS_MODULE,
313 .llseek = no_llseek,
314 .read = rpc_pipe_read,
315 .write = rpc_pipe_write,
316 .poll = rpc_pipe_poll,
317 .ioctl = rpc_pipe_ioctl,
318 .open = rpc_pipe_open,
319 .release = rpc_pipe_release,
320};
321
322static int
323rpc_show_info(struct seq_file *m, void *v)
324{
325 struct rpc_clnt *clnt = m->private;
326
327 seq_printf(m, "RPC server: %s\n", clnt->cl_server);
328 seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname,
329 clnt->cl_prog, clnt->cl_vers);
Chuck Levere7f78652006-08-22 20:06:19 -0400330 seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR));
331 seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return 0;
333}
334
335static int
336rpc_info_open(struct inode *inode, struct file *file)
337{
338 struct rpc_clnt *clnt;
339 int ret = single_open(file, rpc_show_info, NULL);
340
341 if (!ret) {
342 struct seq_file *m = file->private_data;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800343 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 clnt = RPC_I(inode)->private;
345 if (clnt) {
346 atomic_inc(&clnt->cl_users);
347 m->private = clnt;
348 } else {
349 single_release(inode, file);
350 ret = -EINVAL;
351 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800352 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354 return ret;
355}
356
357static int
358rpc_info_release(struct inode *inode, struct file *file)
359{
360 struct seq_file *m = file->private_data;
361 struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
362
363 if (clnt)
364 rpc_release_client(clnt);
365 return single_release(inode, file);
366}
367
368static struct file_operations rpc_info_operations = {
369 .owner = THIS_MODULE,
370 .open = rpc_info_open,
371 .read = seq_read,
372 .llseek = seq_lseek,
373 .release = rpc_info_release,
374};
375
376
377/*
378 * We have a single directory with 1 node in it.
379 */
380enum {
381 RPCAUTH_Root = 1,
382 RPCAUTH_lockd,
383 RPCAUTH_mount,
384 RPCAUTH_nfs,
385 RPCAUTH_portmap,
386 RPCAUTH_statd,
387 RPCAUTH_RootEOF
388};
389
390/*
391 * Description of fs contents.
392 */
393struct rpc_filelist {
394 char *name;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800395 const struct file_operations *i_fop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 int mode;
397};
398
399static struct rpc_filelist files[] = {
400 [RPCAUTH_lockd] = {
401 .name = "lockd",
402 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
403 },
404 [RPCAUTH_mount] = {
405 .name = "mount",
406 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
407 },
408 [RPCAUTH_nfs] = {
409 .name = "nfs",
410 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
411 },
412 [RPCAUTH_portmap] = {
413 .name = "portmap",
414 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
415 },
416 [RPCAUTH_statd] = {
417 .name = "statd",
418 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
419 },
420};
421
422enum {
423 RPCAUTH_info = 2,
424 RPCAUTH_EOF
425};
426
427static struct rpc_filelist authfiles[] = {
428 [RPCAUTH_info] = {
429 .name = "info",
430 .i_fop = &rpc_info_operations,
431 .mode = S_IFREG | S_IRUSR,
432 },
433};
434
Trond Myklebust54281542006-03-20 13:44:49 -0500435struct vfsmount *rpc_get_mount(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Trond Myklebust54281542006-03-20 13:44:49 -0500437 int err;
438
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400439 err = simple_pin_fs(&rpc_pipe_fs_type, &rpc_mount, &rpc_mount_count);
Trond Myklebust54281542006-03-20 13:44:49 -0500440 if (err != 0)
441 return ERR_PTR(err);
442 return rpc_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Trond Myklebust54281542006-03-20 13:44:49 -0500445void rpc_put_mount(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 simple_release_fs(&rpc_mount, &rpc_mount_count);
448}
449
Trond Myklebustf1345852005-09-23 11:08:25 -0400450static int
451rpc_lookup_parent(char *path, struct nameidata *nd)
452{
453 if (path[0] == '\0')
454 return -ENOENT;
Trond Myklebust54281542006-03-20 13:44:49 -0500455 nd->mnt = rpc_get_mount();
456 if (IS_ERR(nd->mnt)) {
Trond Myklebustf1345852005-09-23 11:08:25 -0400457 printk(KERN_WARNING "%s: %s failed to mount "
458 "pseudofilesystem \n", __FILE__, __FUNCTION__);
Trond Myklebust54281542006-03-20 13:44:49 -0500459 return PTR_ERR(nd->mnt);
Trond Myklebustf1345852005-09-23 11:08:25 -0400460 }
Trond Myklebust54281542006-03-20 13:44:49 -0500461 mntget(nd->mnt);
Trond Myklebustf1345852005-09-23 11:08:25 -0400462 nd->dentry = dget(rpc_mount->mnt_root);
463 nd->last_type = LAST_ROOT;
464 nd->flags = LOOKUP_PARENT;
465 nd->depth = 0;
466
467 if (path_walk(path, nd)) {
468 printk(KERN_WARNING "%s: %s failed to find path %s\n",
469 __FILE__, __FUNCTION__, path);
470 rpc_put_mount();
471 return -ENOENT;
472 }
473 return 0;
474}
475
476static void
477rpc_release_path(struct nameidata *nd)
478{
479 path_release(nd);
480 rpc_put_mount();
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static struct inode *
484rpc_get_inode(struct super_block *sb, int mode)
485{
486 struct inode *inode = new_inode(sb);
487 if (!inode)
488 return NULL;
489 inode->i_mode = mode;
490 inode->i_uid = inode->i_gid = 0;
491 inode->i_blksize = PAGE_CACHE_SIZE;
492 inode->i_blocks = 0;
493 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
494 switch(mode & S_IFMT) {
495 case S_IFDIR:
496 inode->i_fop = &simple_dir_operations;
497 inode->i_op = &simple_dir_inode_operations;
498 inode->i_nlink++;
499 default:
500 break;
501 }
502 return inode;
503}
504
505/*
506 * FIXME: This probably has races.
507 */
508static void
509rpc_depopulate(struct dentry *parent)
510{
511 struct inode *dir = parent->d_inode;
512 struct list_head *pos, *next;
513 struct dentry *dentry, *dvec[10];
514 int n = 0;
515
Arjan van de Venc6573c22006-07-03 00:25:16 -0700516 mutex_lock_nested(&dir->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517repeat:
518 spin_lock(&dcache_lock);
519 list_for_each_safe(pos, next, &parent->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800520 dentry = list_entry(pos, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 spin_lock(&dentry->d_lock);
522 if (!d_unhashed(dentry)) {
523 dget_locked(dentry);
524 __d_drop(dentry);
525 spin_unlock(&dentry->d_lock);
526 dvec[n++] = dentry;
527 if (n == ARRAY_SIZE(dvec))
528 break;
529 } else
530 spin_unlock(&dentry->d_lock);
531 }
532 spin_unlock(&dcache_lock);
533 if (n) {
534 do {
535 dentry = dvec[--n];
536 if (dentry->d_inode) {
537 rpc_close_pipes(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 simple_unlink(dir, dentry);
539 }
Trond Myklebust68adb0a2006-08-10 17:51:46 -0400540 inode_dir_notify(dir, DN_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 dput(dentry);
542 } while (n);
543 goto repeat;
544 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800545 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548static int
549rpc_populate(struct dentry *parent,
550 struct rpc_filelist *files,
551 int start, int eof)
552{
553 struct inode *inode, *dir = parent->d_inode;
554 void *private = RPC_I(dir)->private;
555 struct dentry *dentry;
556 int mode, i;
557
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800558 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 for (i = start; i < eof; i++) {
560 dentry = d_alloc_name(parent, files[i].name);
561 if (!dentry)
562 goto out_bad;
563 mode = files[i].mode;
564 inode = rpc_get_inode(dir->i_sb, mode);
565 if (!inode) {
566 dput(dentry);
567 goto out_bad;
568 }
569 inode->i_ino = i;
570 if (files[i].i_fop)
571 inode->i_fop = files[i].i_fop;
572 if (private)
573 rpc_inode_setowner(inode, private);
574 if (S_ISDIR(mode))
575 dir->i_nlink++;
576 d_add(dentry, inode);
577 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800578 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return 0;
580out_bad:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800581 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
583 __FILE__, __FUNCTION__, parent->d_name.name);
584 return -ENOMEM;
585}
586
Trond Myklebustf1345852005-09-23 11:08:25 -0400587static int
588__rpc_mkdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 struct inode *inode;
591
592 inode = rpc_get_inode(dir->i_sb, S_IFDIR | S_IRUSR | S_IXUSR);
593 if (!inode)
Trond Myklebustf1345852005-09-23 11:08:25 -0400594 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 inode->i_ino = iunique(dir->i_sb, 100);
Christoph Hellwig278c9952005-07-24 23:53:01 +0100596 d_instantiate(dentry, inode);
Trond Myklebustf1345852005-09-23 11:08:25 -0400597 dir->i_nlink++;
Christoph Hellwig278c9952005-07-24 23:53:01 +0100598 inode_dir_notify(dir, DN_CREATE);
Trond Myklebustf1345852005-09-23 11:08:25 -0400599 return 0;
600out_err:
601 printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
602 __FILE__, __FUNCTION__, dentry->d_name.name);
603 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Trond Myklebustf1345852005-09-23 11:08:25 -0400606static int
607__rpc_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Trond Myklebustf1345852005-09-23 11:08:25 -0400609 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Trond Myklebustf1345852005-09-23 11:08:25 -0400611 shrink_dcache_parent(dentry);
Trond Myklebust68adb0a2006-08-10 17:51:46 -0400612 if (d_unhashed(dentry))
613 return 0;
Trond Myklebustf1345852005-09-23 11:08:25 -0400614 if ((error = simple_rmdir(dir, dentry)) != 0)
615 return error;
616 if (!error) {
617 inode_dir_notify(dir, DN_DELETE);
618 d_drop(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400619 }
620 return 0;
621}
Christoph Hellwig278c9952005-07-24 23:53:01 +0100622
Trond Myklebustf1345852005-09-23 11:08:25 -0400623static struct dentry *
624rpc_lookup_negative(char *path, struct nameidata *nd)
625{
626 struct dentry *dentry;
627 struct inode *dir;
628 int error;
629
630 if ((error = rpc_lookup_parent(path, nd)) != 0)
631 return ERR_PTR(error);
632 dir = nd->dentry->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700633 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebustadb12f62006-02-01 12:19:13 -0500634 dentry = lookup_one_len(nd->last.name, nd->dentry, nd->last.len);
Trond Myklebustf1345852005-09-23 11:08:25 -0400635 if (IS_ERR(dentry))
636 goto out_err;
637 if (dentry->d_inode) {
638 dput(dentry);
639 dentry = ERR_PTR(-EEXIST);
640 goto out_err;
641 }
642 return dentry;
643out_err:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800644 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400645 rpc_release_path(nd);
646 return dentry;
647}
648
649
650struct dentry *
651rpc_mkdir(char *path, struct rpc_clnt *rpc_client)
652{
653 struct nameidata nd;
654 struct dentry *dentry;
655 struct inode *dir;
656 int error;
657
658 dentry = rpc_lookup_negative(path, &nd);
659 if (IS_ERR(dentry))
660 return dentry;
661 dir = nd.dentry->d_inode;
662 if ((error = __rpc_mkdir(dir, dentry)) != 0)
663 goto err_dput;
664 RPC_I(dentry->d_inode)->private = rpc_client;
665 error = rpc_populate(dentry, authfiles,
666 RPCAUTH_info, RPCAUTH_EOF);
667 if (error)
668 goto err_depopulate;
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400669 dget(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400670out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800671 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400672 rpc_release_path(&nd);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400673 return dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400674err_depopulate:
675 rpc_depopulate(dentry);
676 __rpc_rmdir(dir, dentry);
677err_dput:
678 dput(dentry);
679 printk(KERN_WARNING "%s: %s() failed to create directory %s (errno = %d)\n",
680 __FILE__, __FUNCTION__, path, error);
681 dentry = ERR_PTR(error);
682 goto out;
683}
684
685int
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700686rpc_rmdir(struct dentry *dentry)
Trond Myklebustf1345852005-09-23 11:08:25 -0400687{
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700688 struct dentry *parent;
Trond Myklebustf1345852005-09-23 11:08:25 -0400689 struct inode *dir;
690 int error;
691
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700692 parent = dget_parent(dentry);
693 dir = parent->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700694 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebustf1345852005-09-23 11:08:25 -0400695 rpc_depopulate(dentry);
696 error = __rpc_rmdir(dir, dentry);
697 dput(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800698 mutex_unlock(&dir->i_mutex);
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700699 dput(parent);
Trond Myklebustf1345852005-09-23 11:08:25 -0400700 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703struct dentry *
Trond Myklebustf1345852005-09-23 11:08:25 -0400704rpc_mkpipe(char *path, void *private, struct rpc_pipe_ops *ops, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Trond Myklebustf1345852005-09-23 11:08:25 -0400706 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 struct dentry *dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400708 struct inode *dir, *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct rpc_inode *rpci;
710
Trond Myklebustf1345852005-09-23 11:08:25 -0400711 dentry = rpc_lookup_negative(path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (IS_ERR(dentry))
Trond Myklebustf1345852005-09-23 11:08:25 -0400713 return dentry;
714 dir = nd.dentry->d_inode;
715 inode = rpc_get_inode(dir->i_sb, S_IFSOCK | S_IRUSR | S_IWUSR);
716 if (!inode)
717 goto err_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 inode->i_ino = iunique(dir->i_sb, 100);
719 inode->i_fop = &rpc_pipe_fops;
Trond Myklebustf1345852005-09-23 11:08:25 -0400720 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 rpci = RPC_I(inode);
722 rpci->private = private;
723 rpci->flags = flags;
724 rpci->ops = ops;
725 inode_dir_notify(dir, DN_CREATE);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400726 dget(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400727out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800728 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400729 rpc_release_path(&nd);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400730 return dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400731err_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 dput(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400733 dentry = ERR_PTR(-ENOMEM);
734 printk(KERN_WARNING "%s: %s() failed to create pipe %s (errno = %d)\n",
735 __FILE__, __FUNCTION__, path, -ENOMEM);
736 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Trond Myklebustf1345852005-09-23 11:08:25 -0400739int
Trond Myklebust5d674762006-07-31 14:11:48 -0700740rpc_unlink(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Trond Myklebust5d674762006-07-31 14:11:48 -0700742 struct dentry *parent;
Trond Myklebustf1345852005-09-23 11:08:25 -0400743 struct inode *dir;
Trond Myklebust5d674762006-07-31 14:11:48 -0700744 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Trond Myklebust5d674762006-07-31 14:11:48 -0700746 parent = dget_parent(dentry);
747 dir = parent->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700748 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebust68adb0a2006-08-10 17:51:46 -0400749 if (!d_unhashed(dentry)) {
750 d_drop(dentry);
751 if (dentry->d_inode) {
752 rpc_close_pipes(dentry->d_inode);
753 error = simple_unlink(dir, dentry);
754 }
755 inode_dir_notify(dir, DN_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Trond Myklebustf1345852005-09-23 11:08:25 -0400757 dput(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800758 mutex_unlock(&dir->i_mutex);
Trond Myklebust5d674762006-07-31 14:11:48 -0700759 dput(parent);
Trond Myklebustf1345852005-09-23 11:08:25 -0400760 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763/*
764 * populate the filesystem
765 */
766static struct super_operations s_ops = {
767 .alloc_inode = rpc_alloc_inode,
768 .destroy_inode = rpc_destroy_inode,
769 .statfs = simple_statfs,
770};
771
772#define RPCAUTH_GSSMAGIC 0x67596969
773
774static int
775rpc_fill_super(struct super_block *sb, void *data, int silent)
776{
777 struct inode *inode;
778 struct dentry *root;
779
780 sb->s_blocksize = PAGE_CACHE_SIZE;
781 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
782 sb->s_magic = RPCAUTH_GSSMAGIC;
783 sb->s_op = &s_ops;
784 sb->s_time_gran = 1;
785
786 inode = rpc_get_inode(sb, S_IFDIR | 0755);
787 if (!inode)
788 return -ENOMEM;
789 root = d_alloc_root(inode);
790 if (!root) {
791 iput(inode);
792 return -ENOMEM;
793 }
794 if (rpc_populate(root, files, RPCAUTH_Root + 1, RPCAUTH_RootEOF))
795 goto out;
796 sb->s_root = root;
797 return 0;
798out:
799 d_genocide(root);
800 dput(root);
801 return -ENOMEM;
802}
803
David Howells454e2392006-06-23 02:02:57 -0700804static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805rpc_get_sb(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -0700806 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
David Howells454e2392006-06-23 02:02:57 -0700808 return get_sb_single(fs_type, flags, data, rpc_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811static struct file_system_type rpc_pipe_fs_type = {
812 .owner = THIS_MODULE,
813 .name = "rpc_pipefs",
814 .get_sb = rpc_get_sb,
815 .kill_sb = kill_litter_super,
816};
817
818static void
819init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
820{
821 struct rpc_inode *rpci = (struct rpc_inode *) foo;
822
823 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
824 SLAB_CTOR_CONSTRUCTOR) {
825 inode_init_once(&rpci->vfs_inode);
826 rpci->private = NULL;
827 rpci->nreaders = 0;
828 rpci->nwriters = 0;
829 INIT_LIST_HEAD(&rpci->in_upcall);
830 INIT_LIST_HEAD(&rpci->pipe);
831 rpci->pipelen = 0;
832 init_waitqueue_head(&rpci->waitq);
833 INIT_WORK(&rpci->queue_timeout, rpc_timeout_upcall_queue, rpci);
834 rpci->ops = NULL;
835 }
836}
837
838int register_rpc_pipefs(void)
839{
840 rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800841 sizeof(struct rpc_inode),
842 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
843 SLAB_MEM_SPREAD),
844 init_once, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (!rpc_inode_cachep)
846 return -ENOMEM;
847 register_filesystem(&rpc_pipe_fs_type);
848 return 0;
849}
850
851void unregister_rpc_pipefs(void)
852{
853 if (kmem_cache_destroy(rpc_inode_cachep))
854 printk(KERN_WARNING "RPC: unable to free inode cache\n");
855 unregister_filesystem(&rpc_pipe_fs_type);
856}