blob: 567abbe25bc82d56f727b24b0cd0a9b53bfd903e [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 */
11#include <linux/config.h>
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/string.h>
15#include <linux/pagemap.h>
16#include <linux/mount.h>
17#include <linux/namei.h>
18#include <linux/dnotify.h>
19#include <linux/kernel.h>
20
21#include <asm/ioctls.h>
22#include <linux/fs.h>
23#include <linux/poll.h>
24#include <linux/wait.h>
25#include <linux/seq_file.h>
26
27#include <linux/sunrpc/clnt.h>
28#include <linux/workqueue.h>
29#include <linux/sunrpc/rpc_pipe_fs.h>
30
Eric Dumazetba899662005-08-26 12:05:31 -070031static struct vfsmount *rpc_mount __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static int rpc_mount_count;
33
34static struct file_system_type rpc_pipe_fs_type;
35
36
Eric Dumazetba899662005-08-26 12:05:31 -070037static kmem_cache_t *rpc_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#define RPC_UPCALL_TIMEOUT (30*HZ)
40
Trond Myklebust9842ef32006-02-01 12:18:44 -050041static void rpc_purge_list(struct rpc_inode *rpci, struct list_head *head,
42 void (*destroy_msg)(struct rpc_pipe_msg *), int err)
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050043{
44 struct rpc_pipe_msg *msg;
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050045
Trond Myklebust9842ef32006-02-01 12:18:44 -050046 if (list_empty(head))
47 return;
48 do {
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050049 msg = list_entry(head->next, struct rpc_pipe_msg, list);
Trond Myklebust9842ef32006-02-01 12:18:44 -050050 list_del(&msg->list);
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050051 msg->errno = err;
52 destroy_msg(msg);
Trond Myklebust9842ef32006-02-01 12:18:44 -050053 } while (!list_empty(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 wake_up(&rpci->waitq);
55}
56
57static void
58rpc_timeout_upcall_queue(void *data)
59{
Trond Myklebust9842ef32006-02-01 12:18:44 -050060 LIST_HEAD(free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 struct rpc_inode *rpci = (struct rpc_inode *)data;
62 struct inode *inode = &rpci->vfs_inode;
Trond Myklebust9842ef32006-02-01 12:18:44 -050063 void (*destroy_msg)(struct rpc_pipe_msg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Trond Myklebust9842ef32006-02-01 12:18:44 -050065 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 Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79int
80rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg)
81{
82 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust6070fe62005-10-27 22:12:46 -040083 int res = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Trond Myklebust9842ef32006-02-01 12:18:44 -050085 spin_lock(&inode->i_lock);
Trond Myklebust6070fe62005-10-27 22:12:46 -040086 if (rpci->ops == NULL)
87 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (rpci->nreaders) {
89 list_add_tail(&msg->list, &rpci->pipe);
90 rpci->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -040091 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) {
93 if (list_empty(&rpci->pipe))
Trond Myklebust24c5d9d2006-03-20 13:44:08 -050094 queue_delayed_work(rpciod_workqueue,
95 &rpci->queue_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 RPC_UPCALL_TIMEOUT);
97 list_add_tail(&msg->list, &rpci->pipe);
98 rpci->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -040099 res = 0;
100 }
101out:
Trond Myklebust9842ef32006-02-01 12:18:44 -0500102 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 wake_up(&rpci->waitq);
104 return res;
105}
106
Trond Myklebust6070fe62005-10-27 22:12:46 -0400107static inline void
108rpc_inode_setowner(struct inode *inode, void *private)
109{
110 RPC_I(inode)->private = private;
111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static void
114rpc_close_pipes(struct inode *inode)
115{
116 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500117 struct rpc_pipe_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800119 mutex_lock(&inode->i_mutex);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500120 ops = rpci->ops;
121 if (ops != NULL) {
122 LIST_HEAD(free_list);
123
124 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 rpci->nreaders = 0;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500126 list_splice_init(&rpci->in_upcall, &free_list);
127 list_splice_init(&rpci->pipe, &free_list);
128 rpci->pipelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 rpci->ops = NULL;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500130 spin_unlock(&inode->i_lock);
131 rpc_purge_list(rpci, &free_list, ops->destroy_msg, -EPIPE);
132 rpci->nwriters = 0;
133 if (ops->release_pipe)
134 ops->release_pipe(inode);
135 cancel_delayed_work(&rpci->queue_timeout);
Trond Myklebust24c5d9d2006-03-20 13:44:08 -0500136 flush_workqueue(rpciod_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
Trond Myklebust6070fe62005-10-27 22:12:46 -0400138 rpc_inode_setowner(inode, NULL);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800139 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static struct inode *
143rpc_alloc_inode(struct super_block *sb)
144{
145 struct rpc_inode *rpci;
146 rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, SLAB_KERNEL);
147 if (!rpci)
148 return NULL;
149 return &rpci->vfs_inode;
150}
151
152static void
153rpc_destroy_inode(struct inode *inode)
154{
155 kmem_cache_free(rpc_inode_cachep, RPC_I(inode));
156}
157
158static int
159rpc_pipe_open(struct inode *inode, struct file *filp)
160{
161 struct rpc_inode *rpci = RPC_I(inode);
162 int res = -ENXIO;
163
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800164 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (rpci->ops != NULL) {
166 if (filp->f_mode & FMODE_READ)
167 rpci->nreaders ++;
168 if (filp->f_mode & FMODE_WRITE)
169 rpci->nwriters ++;
170 res = 0;
171 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800172 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return res;
174}
175
176static int
177rpc_pipe_release(struct inode *inode, struct file *filp)
178{
Trond Myklebust969b7f22006-01-03 09:55:36 +0100179 struct rpc_inode *rpci = RPC_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 struct rpc_pipe_msg *msg;
181
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800182 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (rpci->ops == NULL)
184 goto out;
185 msg = (struct rpc_pipe_msg *)filp->private_data;
186 if (msg != NULL) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500187 spin_lock(&inode->i_lock);
Trond Myklebust48e49182005-12-19 17:11:22 -0500188 msg->errno = -EAGAIN;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500189 list_del(&msg->list);
190 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 rpci->ops->destroy_msg(msg);
192 }
193 if (filp->f_mode & FMODE_WRITE)
194 rpci->nwriters --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500195 if (filp->f_mode & FMODE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 rpci->nreaders --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500197 if (rpci->nreaders == 0) {
198 LIST_HEAD(free_list);
199 spin_lock(&inode->i_lock);
200 list_splice_init(&rpci->pipe, &free_list);
201 rpci->pipelen = 0;
202 spin_unlock(&inode->i_lock);
203 rpc_purge_list(rpci, &free_list,
204 rpci->ops->destroy_msg, -EAGAIN);
205 }
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (rpci->ops->release_pipe)
208 rpci->ops->release_pipe(inode);
209out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800210 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return 0;
212}
213
214static ssize_t
215rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset)
216{
217 struct inode *inode = filp->f_dentry->d_inode;
218 struct rpc_inode *rpci = RPC_I(inode);
219 struct rpc_pipe_msg *msg;
220 int res = 0;
221
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800222 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (rpci->ops == NULL) {
224 res = -EPIPE;
225 goto out_unlock;
226 }
227 msg = filp->private_data;
228 if (msg == NULL) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500229 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (!list_empty(&rpci->pipe)) {
231 msg = list_entry(rpci->pipe.next,
232 struct rpc_pipe_msg,
233 list);
234 list_move(&msg->list, &rpci->in_upcall);
235 rpci->pipelen -= msg->len;
236 filp->private_data = msg;
237 msg->copied = 0;
238 }
Trond Myklebust9842ef32006-02-01 12:18:44 -0500239 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (msg == NULL)
241 goto out_unlock;
242 }
243 /* NOTE: it is up to the callback to update msg->copied */
244 res = rpci->ops->upcall(filp, msg, buf, len);
245 if (res < 0 || msg->len == msg->copied) {
246 filp->private_data = NULL;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500247 spin_lock(&inode->i_lock);
248 list_del(&msg->list);
249 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 rpci->ops->destroy_msg(msg);
251 }
252out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800253 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return res;
255}
256
257static ssize_t
258rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset)
259{
260 struct inode *inode = filp->f_dentry->d_inode;
261 struct rpc_inode *rpci = RPC_I(inode);
262 int res;
263
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800264 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 res = -EPIPE;
266 if (rpci->ops != NULL)
267 res = rpci->ops->downcall(filp, buf, len);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800268 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return res;
270}
271
272static unsigned int
273rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait)
274{
275 struct rpc_inode *rpci;
276 unsigned int mask = 0;
277
278 rpci = RPC_I(filp->f_dentry->d_inode);
279 poll_wait(filp, &rpci->waitq, wait);
280
281 mask = POLLOUT | POLLWRNORM;
282 if (rpci->ops == NULL)
283 mask |= POLLERR | POLLHUP;
284 if (!list_empty(&rpci->pipe))
285 mask |= POLLIN | POLLRDNORM;
286 return mask;
287}
288
289static int
290rpc_pipe_ioctl(struct inode *ino, struct file *filp,
291 unsigned int cmd, unsigned long arg)
292{
293 struct rpc_inode *rpci = RPC_I(filp->f_dentry->d_inode);
294 int len;
295
296 switch (cmd) {
297 case FIONREAD:
298 if (rpci->ops == NULL)
299 return -EPIPE;
300 len = rpci->pipelen;
301 if (filp->private_data) {
302 struct rpc_pipe_msg *msg;
303 msg = (struct rpc_pipe_msg *)filp->private_data;
304 len += msg->len - msg->copied;
305 }
306 return put_user(len, (int __user *)arg);
307 default:
308 return -EINVAL;
309 }
310}
311
312static struct file_operations rpc_pipe_fops = {
313 .owner = THIS_MODULE,
314 .llseek = no_llseek,
315 .read = rpc_pipe_read,
316 .write = rpc_pipe_write,
317 .poll = rpc_pipe_poll,
318 .ioctl = rpc_pipe_ioctl,
319 .open = rpc_pipe_open,
320 .release = rpc_pipe_release,
321};
322
323static int
324rpc_show_info(struct seq_file *m, void *v)
325{
326 struct rpc_clnt *clnt = m->private;
327
328 seq_printf(m, "RPC server: %s\n", clnt->cl_server);
329 seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname,
330 clnt->cl_prog, clnt->cl_vers);
331 seq_printf(m, "address: %u.%u.%u.%u\n",
332 NIPQUAD(clnt->cl_xprt->addr.sin_addr.s_addr));
333 seq_printf(m, "protocol: %s\n",
334 clnt->cl_xprt->prot == IPPROTO_UDP ? "udp" : "tcp");
335 return 0;
336}
337
338static int
339rpc_info_open(struct inode *inode, struct file *file)
340{
341 struct rpc_clnt *clnt;
342 int ret = single_open(file, rpc_show_info, NULL);
343
344 if (!ret) {
345 struct seq_file *m = file->private_data;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800346 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 clnt = RPC_I(inode)->private;
348 if (clnt) {
349 atomic_inc(&clnt->cl_users);
350 m->private = clnt;
351 } else {
352 single_release(inode, file);
353 ret = -EINVAL;
354 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800355 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 return ret;
358}
359
360static int
361rpc_info_release(struct inode *inode, struct file *file)
362{
363 struct seq_file *m = file->private_data;
364 struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
365
366 if (clnt)
367 rpc_release_client(clnt);
368 return single_release(inode, file);
369}
370
371static struct file_operations rpc_info_operations = {
372 .owner = THIS_MODULE,
373 .open = rpc_info_open,
374 .read = seq_read,
375 .llseek = seq_lseek,
376 .release = rpc_info_release,
377};
378
379
380/*
381 * We have a single directory with 1 node in it.
382 */
383enum {
384 RPCAUTH_Root = 1,
385 RPCAUTH_lockd,
386 RPCAUTH_mount,
387 RPCAUTH_nfs,
388 RPCAUTH_portmap,
389 RPCAUTH_statd,
390 RPCAUTH_RootEOF
391};
392
393/*
394 * Description of fs contents.
395 */
396struct rpc_filelist {
397 char *name;
398 struct file_operations *i_fop;
399 int mode;
400};
401
402static struct rpc_filelist files[] = {
403 [RPCAUTH_lockd] = {
404 .name = "lockd",
405 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
406 },
407 [RPCAUTH_mount] = {
408 .name = "mount",
409 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
410 },
411 [RPCAUTH_nfs] = {
412 .name = "nfs",
413 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
414 },
415 [RPCAUTH_portmap] = {
416 .name = "portmap",
417 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
418 },
419 [RPCAUTH_statd] = {
420 .name = "statd",
421 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
422 },
423};
424
425enum {
426 RPCAUTH_info = 2,
427 RPCAUTH_EOF
428};
429
430static struct rpc_filelist authfiles[] = {
431 [RPCAUTH_info] = {
432 .name = "info",
433 .i_fop = &rpc_info_operations,
434 .mode = S_IFREG | S_IRUSR,
435 },
436};
437
438static int
439rpc_get_mount(void)
440{
441 return simple_pin_fs("rpc_pipefs", &rpc_mount, &rpc_mount_count);
442}
443
444static void
445rpc_put_mount(void)
446{
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;
455 if (rpc_get_mount()) {
456 printk(KERN_WARNING "%s: %s failed to mount "
457 "pseudofilesystem \n", __FILE__, __FUNCTION__);
458 return -ENODEV;
459 }
460 nd->mnt = mntget(rpc_mount);
461 nd->dentry = dget(rpc_mount->mnt_root);
462 nd->last_type = LAST_ROOT;
463 nd->flags = LOOKUP_PARENT;
464 nd->depth = 0;
465
466 if (path_walk(path, nd)) {
467 printk(KERN_WARNING "%s: %s failed to find path %s\n",
468 __FILE__, __FUNCTION__, path);
469 rpc_put_mount();
470 return -ENOENT;
471 }
472 return 0;
473}
474
475static void
476rpc_release_path(struct nameidata *nd)
477{
478 path_release(nd);
479 rpc_put_mount();
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482static struct inode *
483rpc_get_inode(struct super_block *sb, int mode)
484{
485 struct inode *inode = new_inode(sb);
486 if (!inode)
487 return NULL;
488 inode->i_mode = mode;
489 inode->i_uid = inode->i_gid = 0;
490 inode->i_blksize = PAGE_CACHE_SIZE;
491 inode->i_blocks = 0;
492 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
493 switch(mode & S_IFMT) {
494 case S_IFDIR:
495 inode->i_fop = &simple_dir_operations;
496 inode->i_op = &simple_dir_inode_operations;
497 inode->i_nlink++;
498 default:
499 break;
500 }
501 return inode;
502}
503
504/*
505 * FIXME: This probably has races.
506 */
507static void
508rpc_depopulate(struct dentry *parent)
509{
510 struct inode *dir = parent->d_inode;
511 struct list_head *pos, *next;
512 struct dentry *dentry, *dvec[10];
513 int n = 0;
514
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800515 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516repeat:
517 spin_lock(&dcache_lock);
518 list_for_each_safe(pos, next, &parent->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800519 dentry = list_entry(pos, struct dentry, d_u.d_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 spin_lock(&dentry->d_lock);
521 if (!d_unhashed(dentry)) {
522 dget_locked(dentry);
523 __d_drop(dentry);
524 spin_unlock(&dentry->d_lock);
525 dvec[n++] = dentry;
526 if (n == ARRAY_SIZE(dvec))
527 break;
528 } else
529 spin_unlock(&dentry->d_lock);
530 }
531 spin_unlock(&dcache_lock);
532 if (n) {
533 do {
534 dentry = dvec[--n];
535 if (dentry->d_inode) {
536 rpc_close_pipes(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 simple_unlink(dir, dentry);
538 }
539 dput(dentry);
540 } while (n);
541 goto repeat;
542 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800543 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546static int
547rpc_populate(struct dentry *parent,
548 struct rpc_filelist *files,
549 int start, int eof)
550{
551 struct inode *inode, *dir = parent->d_inode;
552 void *private = RPC_I(dir)->private;
553 struct dentry *dentry;
554 int mode, i;
555
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800556 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 for (i = start; i < eof; i++) {
558 dentry = d_alloc_name(parent, files[i].name);
559 if (!dentry)
560 goto out_bad;
561 mode = files[i].mode;
562 inode = rpc_get_inode(dir->i_sb, mode);
563 if (!inode) {
564 dput(dentry);
565 goto out_bad;
566 }
567 inode->i_ino = i;
568 if (files[i].i_fop)
569 inode->i_fop = files[i].i_fop;
570 if (private)
571 rpc_inode_setowner(inode, private);
572 if (S_ISDIR(mode))
573 dir->i_nlink++;
574 d_add(dentry, inode);
575 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800576 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return 0;
578out_bad:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800579 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
581 __FILE__, __FUNCTION__, parent->d_name.name);
582 return -ENOMEM;
583}
584
Trond Myklebustf1345852005-09-23 11:08:25 -0400585static int
586__rpc_mkdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 struct inode *inode;
589
590 inode = rpc_get_inode(dir->i_sb, S_IFDIR | S_IRUSR | S_IXUSR);
591 if (!inode)
Trond Myklebustf1345852005-09-23 11:08:25 -0400592 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 inode->i_ino = iunique(dir->i_sb, 100);
Christoph Hellwig278c9952005-07-24 23:53:01 +0100594 d_instantiate(dentry, inode);
Trond Myklebustf1345852005-09-23 11:08:25 -0400595 dir->i_nlink++;
Christoph Hellwig278c9952005-07-24 23:53:01 +0100596 inode_dir_notify(dir, DN_CREATE);
Trond Myklebustf1345852005-09-23 11:08:25 -0400597 rpc_get_mount();
598 return 0;
599out_err:
600 printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
601 __FILE__, __FUNCTION__, dentry->d_name.name);
602 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Trond Myklebustf1345852005-09-23 11:08:25 -0400605static int
606__rpc_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Trond Myklebustf1345852005-09-23 11:08:25 -0400608 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Trond Myklebustf1345852005-09-23 11:08:25 -0400610 shrink_dcache_parent(dentry);
Trond Myklebust6070fe62005-10-27 22:12:46 -0400611 if (dentry->d_inode)
Christoph Hellwig278c9952005-07-24 23:53:01 +0100612 rpc_close_pipes(dentry->d_inode);
Trond Myklebustf1345852005-09-23 11:08:25 -0400613 if ((error = simple_rmdir(dir, dentry)) != 0)
614 return error;
615 if (!error) {
616 inode_dir_notify(dir, DN_DELETE);
617 d_drop(dentry);
618 rpc_put_mount();
619 }
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;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800633 mutex_lock(&dir->i_mutex);
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;
669out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800670 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400671 rpc_release_path(&nd);
672 return dentry;
673err_depopulate:
674 rpc_depopulate(dentry);
675 __rpc_rmdir(dir, dentry);
676err_dput:
677 dput(dentry);
678 printk(KERN_WARNING "%s: %s() failed to create directory %s (errno = %d)\n",
679 __FILE__, __FUNCTION__, path, error);
680 dentry = ERR_PTR(error);
681 goto out;
682}
683
684int
685rpc_rmdir(char *path)
686{
687 struct nameidata nd;
688 struct dentry *dentry;
689 struct inode *dir;
690 int error;
691
692 if ((error = rpc_lookup_parent(path, &nd)) != 0)
693 return error;
694 dir = nd.dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800695 mutex_lock(&dir->i_mutex);
Trond Myklebustadb12f62006-02-01 12:19:13 -0500696 dentry = lookup_one_len(nd.last.name, nd.dentry, nd.last.len);
Trond Myklebustf1345852005-09-23 11:08:25 -0400697 if (IS_ERR(dentry)) {
698 error = PTR_ERR(dentry);
699 goto out_release;
700 }
701 rpc_depopulate(dentry);
702 error = __rpc_rmdir(dir, dentry);
703 dput(dentry);
704out_release:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800705 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400706 rpc_release_path(&nd);
707 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710struct dentry *
Trond Myklebustf1345852005-09-23 11:08:25 -0400711rpc_mkpipe(char *path, void *private, struct rpc_pipe_ops *ops, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Trond Myklebustf1345852005-09-23 11:08:25 -0400713 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 struct dentry *dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400715 struct inode *dir, *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 struct rpc_inode *rpci;
717
Trond Myklebustf1345852005-09-23 11:08:25 -0400718 dentry = rpc_lookup_negative(path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (IS_ERR(dentry))
Trond Myklebustf1345852005-09-23 11:08:25 -0400720 return dentry;
721 dir = nd.dentry->d_inode;
722 inode = rpc_get_inode(dir->i_sb, S_IFSOCK | S_IRUSR | S_IWUSR);
723 if (!inode)
724 goto err_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 inode->i_ino = iunique(dir->i_sb, 100);
726 inode->i_fop = &rpc_pipe_fops;
Trond Myklebustf1345852005-09-23 11:08:25 -0400727 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 rpci = RPC_I(inode);
729 rpci->private = private;
730 rpci->flags = flags;
731 rpci->ops = ops;
732 inode_dir_notify(dir, DN_CREATE);
Trond Myklebustf1345852005-09-23 11:08:25 -0400733out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800734 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400735 rpc_release_path(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400737err_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 dput(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400739 dentry = ERR_PTR(-ENOMEM);
740 printk(KERN_WARNING "%s: %s() failed to create pipe %s (errno = %d)\n",
741 __FILE__, __FUNCTION__, path, -ENOMEM);
742 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Trond Myklebustf1345852005-09-23 11:08:25 -0400745int
746rpc_unlink(char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Trond Myklebustf1345852005-09-23 11:08:25 -0400748 struct nameidata nd;
749 struct dentry *dentry;
750 struct inode *dir;
751 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Trond Myklebustf1345852005-09-23 11:08:25 -0400753 if ((error = rpc_lookup_parent(path, &nd)) != 0)
754 return error;
755 dir = nd.dentry->d_inode;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800756 mutex_lock(&dir->i_mutex);
Trond Myklebustadb12f62006-02-01 12:19:13 -0500757 dentry = lookup_one_len(nd.last.name, nd.dentry, nd.last.len);
Trond Myklebustf1345852005-09-23 11:08:25 -0400758 if (IS_ERR(dentry)) {
759 error = PTR_ERR(dentry);
760 goto out_release;
761 }
762 d_drop(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (dentry->d_inode) {
764 rpc_close_pipes(dentry->d_inode);
Trond Myklebustf1345852005-09-23 11:08:25 -0400765 error = simple_unlink(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
Trond Myklebustf1345852005-09-23 11:08:25 -0400767 dput(dentry);
768 inode_dir_notify(dir, DN_DELETE);
769out_release:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800770 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400771 rpc_release_path(&nd);
772 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775/*
776 * populate the filesystem
777 */
778static struct super_operations s_ops = {
779 .alloc_inode = rpc_alloc_inode,
780 .destroy_inode = rpc_destroy_inode,
781 .statfs = simple_statfs,
782};
783
784#define RPCAUTH_GSSMAGIC 0x67596969
785
786static int
787rpc_fill_super(struct super_block *sb, void *data, int silent)
788{
789 struct inode *inode;
790 struct dentry *root;
791
792 sb->s_blocksize = PAGE_CACHE_SIZE;
793 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
794 sb->s_magic = RPCAUTH_GSSMAGIC;
795 sb->s_op = &s_ops;
796 sb->s_time_gran = 1;
797
798 inode = rpc_get_inode(sb, S_IFDIR | 0755);
799 if (!inode)
800 return -ENOMEM;
801 root = d_alloc_root(inode);
802 if (!root) {
803 iput(inode);
804 return -ENOMEM;
805 }
806 if (rpc_populate(root, files, RPCAUTH_Root + 1, RPCAUTH_RootEOF))
807 goto out;
808 sb->s_root = root;
809 return 0;
810out:
811 d_genocide(root);
812 dput(root);
813 return -ENOMEM;
814}
815
816static struct super_block *
817rpc_get_sb(struct file_system_type *fs_type,
818 int flags, const char *dev_name, void *data)
819{
820 return get_sb_single(fs_type, flags, data, rpc_fill_super);
821}
822
823static struct file_system_type rpc_pipe_fs_type = {
824 .owner = THIS_MODULE,
825 .name = "rpc_pipefs",
826 .get_sb = rpc_get_sb,
827 .kill_sb = kill_litter_super,
828};
829
830static void
831init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
832{
833 struct rpc_inode *rpci = (struct rpc_inode *) foo;
834
835 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
836 SLAB_CTOR_CONSTRUCTOR) {
837 inode_init_once(&rpci->vfs_inode);
838 rpci->private = NULL;
839 rpci->nreaders = 0;
840 rpci->nwriters = 0;
841 INIT_LIST_HEAD(&rpci->in_upcall);
842 INIT_LIST_HEAD(&rpci->pipe);
843 rpci->pipelen = 0;
844 init_waitqueue_head(&rpci->waitq);
845 INIT_WORK(&rpci->queue_timeout, rpc_timeout_upcall_queue, rpci);
846 rpci->ops = NULL;
847 }
848}
849
850int register_rpc_pipefs(void)
851{
852 rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
853 sizeof(struct rpc_inode),
854 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
855 init_once, NULL);
856 if (!rpc_inode_cachep)
857 return -ENOMEM;
858 register_filesystem(&rpc_pipe_fs_type);
859 return 0;
860}
861
862void unregister_rpc_pipefs(void)
863{
864 if (kmem_cache_destroy(rpc_inode_cachep))
865 printk(KERN_WARNING "RPC: unable to free inode cache\n");
866 unregister_filesystem(&rpc_pipe_fs_type);
867}