]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/sunrpc/rpc_pipe.c
SUNRPC: Create API for displaying remote peer address
[mirror_ubuntu-zesty-kernel.git] / net / sunrpc / rpc_pipe.c
CommitLineData
1da177e4
LT
1/*
2 * net/sunrpc/rpc_pipe.c
3 *
4 * Userland/kernel interface for rpcauth_gss.
5 * Code shamelessly plagiarized from fs/nfsd/nfsctl.c
d51fe1be 6 * and fs/sysfs/inode.c
1da177e4
LT
7 *
8 * Copyright (c) 2002, Trond Myklebust <trond.myklebust@fys.uio.no>
9 *
10 */
1da177e4
LT
11#include <linux/module.h>
12#include <linux/slab.h>
13#include <linux/string.h>
14#include <linux/pagemap.h>
15#include <linux/mount.h>
16#include <linux/namei.h>
17#include <linux/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
ba89966c 30static struct vfsmount *rpc_mount __read_mostly;
1da177e4
LT
31static int rpc_mount_count;
32
33static struct file_system_type rpc_pipe_fs_type;
34
35
ba89966c 36static kmem_cache_t *rpc_inode_cachep __read_mostly;
1da177e4
LT
37
38#define RPC_UPCALL_TIMEOUT (30*HZ)
39
9842ef35
TM
40static void rpc_purge_list(struct rpc_inode *rpci, struct list_head *head,
41 void (*destroy_msg)(struct rpc_pipe_msg *), int err)
1da177e4 42{
1da177e4
LT
43 struct rpc_pipe_msg *msg;
44
9842ef35
TM
45 if (list_empty(head))
46 return;
47 do {
b3eb67a2 48 msg = list_entry(head->next, struct rpc_pipe_msg, list);
9842ef35 49 list_del(&msg->list);
1da177e4 50 msg->errno = err;
b3eb67a2 51 destroy_msg(msg);
9842ef35 52 } while (!list_empty(head));
1da177e4
LT
53 wake_up(&rpci->waitq);
54}
55
56static void
57rpc_timeout_upcall_queue(void *data)
58{
9842ef35 59 LIST_HEAD(free_list);
1da177e4
LT
60 struct rpc_inode *rpci = (struct rpc_inode *)data;
61 struct inode *inode = &rpci->vfs_inode;
9842ef35 62 void (*destroy_msg)(struct rpc_pipe_msg *);
1da177e4 63
9842ef35
TM
64 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);
1da177e4
LT
76}
77
78int
79rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg)
80{
81 struct rpc_inode *rpci = RPC_I(inode);
6070fe6f 82 int res = -EPIPE;
1da177e4 83
9842ef35 84 spin_lock(&inode->i_lock);
6070fe6f
TM
85 if (rpci->ops == NULL)
86 goto out;
1da177e4
LT
87 if (rpci->nreaders) {
88 list_add_tail(&msg->list, &rpci->pipe);
89 rpci->pipelen += msg->len;
6070fe6f 90 res = 0;
1da177e4
LT
91 } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) {
92 if (list_empty(&rpci->pipe))
24c5d9d7
TM
93 queue_delayed_work(rpciod_workqueue,
94 &rpci->queue_timeout,
1da177e4
LT
95 RPC_UPCALL_TIMEOUT);
96 list_add_tail(&msg->list, &rpci->pipe);
97 rpci->pipelen += msg->len;
6070fe6f
TM
98 res = 0;
99 }
100out:
9842ef35 101 spin_unlock(&inode->i_lock);
1da177e4
LT
102 wake_up(&rpci->waitq);
103 return res;
104}
105
6070fe6f
TM
106static inline void
107rpc_inode_setowner(struct inode *inode, void *private)
108{
109 RPC_I(inode)->private = private;
110}
111
1da177e4
LT
112static void
113rpc_close_pipes(struct inode *inode)
114{
115 struct rpc_inode *rpci = RPC_I(inode);
9842ef35 116 struct rpc_pipe_ops *ops;
1da177e4 117
1b1dcc1b 118 mutex_lock(&inode->i_mutex);
9842ef35
TM
119 ops = rpci->ops;
120 if (ops != NULL) {
121 LIST_HEAD(free_list);
122
123 spin_lock(&inode->i_lock);
1da177e4 124 rpci->nreaders = 0;
9842ef35
TM
125 list_splice_init(&rpci->in_upcall, &free_list);
126 list_splice_init(&rpci->pipe, &free_list);
127 rpci->pipelen = 0;
1da177e4 128 rpci->ops = NULL;
9842ef35
TM
129 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);
24c5d9d7 135 flush_workqueue(rpciod_workqueue);
1da177e4 136 }
6070fe6f 137 rpc_inode_setowner(inode, NULL);
1b1dcc1b 138 mutex_unlock(&inode->i_mutex);
1da177e4
LT
139}
140
1da177e4
LT
141static 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
1b1dcc1b 163 mutex_lock(&inode->i_mutex);
1da177e4
LT
164 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 }
1b1dcc1b 171 mutex_unlock(&inode->i_mutex);
1da177e4
LT
172 return res;
173}
174
175static int
176rpc_pipe_release(struct inode *inode, struct file *filp)
177{
969b7f25 178 struct rpc_inode *rpci = RPC_I(inode);
1da177e4
LT
179 struct rpc_pipe_msg *msg;
180
1b1dcc1b 181 mutex_lock(&inode->i_mutex);
1da177e4
LT
182 if (rpci->ops == NULL)
183 goto out;
184 msg = (struct rpc_pipe_msg *)filp->private_data;
185 if (msg != NULL) {
9842ef35 186 spin_lock(&inode->i_lock);
48e49187 187 msg->errno = -EAGAIN;
9842ef35
TM
188 list_del(&msg->list);
189 spin_unlock(&inode->i_lock);
1da177e4
LT
190 rpci->ops->destroy_msg(msg);
191 }
192 if (filp->f_mode & FMODE_WRITE)
193 rpci->nwriters --;
9842ef35 194 if (filp->f_mode & FMODE_READ) {
1da177e4 195 rpci->nreaders --;
9842ef35
TM
196 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 }
1da177e4
LT
206 if (rpci->ops->release_pipe)
207 rpci->ops->release_pipe(inode);
208out:
1b1dcc1b 209 mutex_unlock(&inode->i_mutex);
1da177e4
LT
210 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
1b1dcc1b 221 mutex_lock(&inode->i_mutex);
1da177e4
LT
222 if (rpci->ops == NULL) {
223 res = -EPIPE;
224 goto out_unlock;
225 }
226 msg = filp->private_data;
227 if (msg == NULL) {
9842ef35 228 spin_lock(&inode->i_lock);
1da177e4
LT
229 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 }
9842ef35 238 spin_unlock(&inode->i_lock);
1da177e4
LT
239 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;
9842ef35
TM
246 spin_lock(&inode->i_lock);
247 list_del(&msg->list);
248 spin_unlock(&inode->i_lock);
1da177e4
LT
249 rpci->ops->destroy_msg(msg);
250 }
251out_unlock:
1b1dcc1b 252 mutex_unlock(&inode->i_mutex);
1da177e4
LT
253 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
1b1dcc1b 263 mutex_lock(&inode->i_mutex);
1da177e4
LT
264 res = -EPIPE;
265 if (rpci->ops != NULL)
266 res = rpci->ops->downcall(filp, buf, len);
1b1dcc1b 267 mutex_unlock(&inode->i_mutex);
1da177e4
LT
268 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);
330 seq_printf(m, "address: %u.%u.%u.%u\n",
331 NIPQUAD(clnt->cl_xprt->addr.sin_addr.s_addr));
332 seq_printf(m, "protocol: %s\n",
333 clnt->cl_xprt->prot == IPPROTO_UDP ? "udp" : "tcp");
334 return 0;
335}
336
337static int
338rpc_info_open(struct inode *inode, struct file *file)
339{
340 struct rpc_clnt *clnt;
341 int ret = single_open(file, rpc_show_info, NULL);
342
343 if (!ret) {
344 struct seq_file *m = file->private_data;
1b1dcc1b 345 mutex_lock(&inode->i_mutex);
1da177e4
LT
346 clnt = RPC_I(inode)->private;
347 if (clnt) {
348 atomic_inc(&clnt->cl_users);
349 m->private = clnt;
350 } else {
351 single_release(inode, file);
352 ret = -EINVAL;
353 }
1b1dcc1b 354 mutex_unlock(&inode->i_mutex);
1da177e4
LT
355 }
356 return ret;
357}
358
359static int
360rpc_info_release(struct inode *inode, struct file *file)
361{
362 struct seq_file *m = file->private_data;
363 struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
364
365 if (clnt)
366 rpc_release_client(clnt);
367 return single_release(inode, file);
368}
369
370static struct file_operations rpc_info_operations = {
371 .owner = THIS_MODULE,
372 .open = rpc_info_open,
373 .read = seq_read,
374 .llseek = seq_lseek,
375 .release = rpc_info_release,
376};
377
378
379/*
380 * We have a single directory with 1 node in it.
381 */
382enum {
383 RPCAUTH_Root = 1,
384 RPCAUTH_lockd,
385 RPCAUTH_mount,
386 RPCAUTH_nfs,
387 RPCAUTH_portmap,
388 RPCAUTH_statd,
389 RPCAUTH_RootEOF
390};
391
392/*
393 * Description of fs contents.
394 */
395struct rpc_filelist {
396 char *name;
99ac48f5 397 const struct file_operations *i_fop;
1da177e4
LT
398 int mode;
399};
400
401static struct rpc_filelist files[] = {
402 [RPCAUTH_lockd] = {
403 .name = "lockd",
404 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
405 },
406 [RPCAUTH_mount] = {
407 .name = "mount",
408 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
409 },
410 [RPCAUTH_nfs] = {
411 .name = "nfs",
412 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
413 },
414 [RPCAUTH_portmap] = {
415 .name = "portmap",
416 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
417 },
418 [RPCAUTH_statd] = {
419 .name = "statd",
420 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
421 },
422};
423
424enum {
425 RPCAUTH_info = 2,
426 RPCAUTH_EOF
427};
428
429static struct rpc_filelist authfiles[] = {
430 [RPCAUTH_info] = {
431 .name = "info",
432 .i_fop = &rpc_info_operations,
433 .mode = S_IFREG | S_IRUSR,
434 },
435};
436
54281548 437struct vfsmount *rpc_get_mount(void)
1da177e4 438{
54281548
TM
439 int err;
440
1f5ce9e9 441 err = simple_pin_fs(&rpc_pipe_fs_type, &rpc_mount, &rpc_mount_count);
54281548
TM
442 if (err != 0)
443 return ERR_PTR(err);
444 return rpc_mount;
1da177e4
LT
445}
446
54281548 447void rpc_put_mount(void)
1da177e4
LT
448{
449 simple_release_fs(&rpc_mount, &rpc_mount_count);
450}
451
f134585a
TM
452static int
453rpc_lookup_parent(char *path, struct nameidata *nd)
454{
455 if (path[0] == '\0')
456 return -ENOENT;
54281548
TM
457 nd->mnt = rpc_get_mount();
458 if (IS_ERR(nd->mnt)) {
f134585a
TM
459 printk(KERN_WARNING "%s: %s failed to mount "
460 "pseudofilesystem \n", __FILE__, __FUNCTION__);
54281548 461 return PTR_ERR(nd->mnt);
f134585a 462 }
54281548 463 mntget(nd->mnt);
f134585a
TM
464 nd->dentry = dget(rpc_mount->mnt_root);
465 nd->last_type = LAST_ROOT;
466 nd->flags = LOOKUP_PARENT;
467 nd->depth = 0;
468
469 if (path_walk(path, nd)) {
470 printk(KERN_WARNING "%s: %s failed to find path %s\n",
471 __FILE__, __FUNCTION__, path);
472 rpc_put_mount();
473 return -ENOENT;
474 }
475 return 0;
476}
477
478static void
479rpc_release_path(struct nameidata *nd)
480{
481 path_release(nd);
482 rpc_put_mount();
483}
484
1da177e4
LT
485static struct inode *
486rpc_get_inode(struct super_block *sb, int mode)
487{
488 struct inode *inode = new_inode(sb);
489 if (!inode)
490 return NULL;
491 inode->i_mode = mode;
492 inode->i_uid = inode->i_gid = 0;
493 inode->i_blksize = PAGE_CACHE_SIZE;
494 inode->i_blocks = 0;
495 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
496 switch(mode & S_IFMT) {
497 case S_IFDIR:
498 inode->i_fop = &simple_dir_operations;
499 inode->i_op = &simple_dir_inode_operations;
500 inode->i_nlink++;
501 default:
502 break;
503 }
504 return inode;
505}
506
507/*
508 * FIXME: This probably has races.
509 */
510static void
511rpc_depopulate(struct dentry *parent)
512{
513 struct inode *dir = parent->d_inode;
514 struct list_head *pos, *next;
515 struct dentry *dentry, *dvec[10];
516 int n = 0;
517
c6573c29 518 mutex_lock_nested(&dir->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
519repeat:
520 spin_lock(&dcache_lock);
521 list_for_each_safe(pos, next, &parent->d_subdirs) {
5160ee6f 522 dentry = list_entry(pos, struct dentry, d_u.d_child);
1da177e4
LT
523 spin_lock(&dentry->d_lock);
524 if (!d_unhashed(dentry)) {
525 dget_locked(dentry);
526 __d_drop(dentry);
527 spin_unlock(&dentry->d_lock);
528 dvec[n++] = dentry;
529 if (n == ARRAY_SIZE(dvec))
530 break;
531 } else
532 spin_unlock(&dentry->d_lock);
533 }
534 spin_unlock(&dcache_lock);
535 if (n) {
536 do {
537 dentry = dvec[--n];
538 if (dentry->d_inode) {
539 rpc_close_pipes(dentry->d_inode);
1da177e4
LT
540 simple_unlink(dir, dentry);
541 }
68adb0af 542 inode_dir_notify(dir, DN_DELETE);
1da177e4
LT
543 dput(dentry);
544 } while (n);
545 goto repeat;
546 }
1b1dcc1b 547 mutex_unlock(&dir->i_mutex);
1da177e4
LT
548}
549
550static int
551rpc_populate(struct dentry *parent,
552 struct rpc_filelist *files,
553 int start, int eof)
554{
555 struct inode *inode, *dir = parent->d_inode;
556 void *private = RPC_I(dir)->private;
557 struct dentry *dentry;
558 int mode, i;
559
1b1dcc1b 560 mutex_lock(&dir->i_mutex);
1da177e4
LT
561 for (i = start; i < eof; i++) {
562 dentry = d_alloc_name(parent, files[i].name);
563 if (!dentry)
564 goto out_bad;
565 mode = files[i].mode;
566 inode = rpc_get_inode(dir->i_sb, mode);
567 if (!inode) {
568 dput(dentry);
569 goto out_bad;
570 }
571 inode->i_ino = i;
572 if (files[i].i_fop)
573 inode->i_fop = files[i].i_fop;
574 if (private)
575 rpc_inode_setowner(inode, private);
576 if (S_ISDIR(mode))
577 dir->i_nlink++;
578 d_add(dentry, inode);
579 }
1b1dcc1b 580 mutex_unlock(&dir->i_mutex);
1da177e4
LT
581 return 0;
582out_bad:
1b1dcc1b 583 mutex_unlock(&dir->i_mutex);
1da177e4
LT
584 printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
585 __FILE__, __FUNCTION__, parent->d_name.name);
586 return -ENOMEM;
587}
588
f134585a
TM
589static int
590__rpc_mkdir(struct inode *dir, struct dentry *dentry)
1da177e4
LT
591{
592 struct inode *inode;
f134585a
TM
593
594 inode = rpc_get_inode(dir->i_sb, S_IFDIR | S_IRUSR | S_IXUSR);
595 if (!inode)
596 goto out_err;
597 inode->i_ino = iunique(dir->i_sb, 100);
598 d_instantiate(dentry, inode);
599 dir->i_nlink++;
600 inode_dir_notify(dir, DN_CREATE);
f134585a
TM
601 return 0;
602out_err:
603 printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
604 __FILE__, __FUNCTION__, dentry->d_name.name);
605 return -ENOMEM;
606}
607
608static int
609__rpc_rmdir(struct inode *dir, struct dentry *dentry)
610{
1da177e4
LT
611 int error;
612
f134585a 613 shrink_dcache_parent(dentry);
68adb0af
TM
614 if (d_unhashed(dentry))
615 return 0;
f134585a
TM
616 if ((error = simple_rmdir(dir, dentry)) != 0)
617 return error;
618 if (!error) {
619 inode_dir_notify(dir, DN_DELETE);
620 d_drop(dentry);
f134585a
TM
621 }
622 return 0;
623}
1da177e4 624
f134585a
TM
625static struct dentry *
626rpc_lookup_negative(char *path, struct nameidata *nd)
627{
628 struct dentry *dentry;
629 struct inode *dir;
630 int error;
278c995c 631
f134585a
TM
632 if ((error = rpc_lookup_parent(path, nd)) != 0)
633 return ERR_PTR(error);
634 dir = nd->dentry->d_inode;
c6573c29 635 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
adb12f63 636 dentry = lookup_one_len(nd->last.name, nd->dentry, nd->last.len);
1da177e4 637 if (IS_ERR(dentry))
f134585a 638 goto out_err;
1da177e4 639 if (dentry->d_inode) {
f134585a 640 dput(dentry);
1da177e4 641 dentry = ERR_PTR(-EEXIST);
f134585a 642 goto out_err;
1da177e4 643 }
f134585a
TM
644 return dentry;
645out_err:
1b1dcc1b 646 mutex_unlock(&dir->i_mutex);
f134585a
TM
647 rpc_release_path(nd);
648 return dentry;
649}
278c995c 650
1da177e4 651
f134585a
TM
652struct dentry *
653rpc_mkdir(char *path, struct rpc_clnt *rpc_client)
654{
655 struct nameidata nd;
656 struct dentry *dentry;
657 struct inode *dir;
658 int error;
659
660 dentry = rpc_lookup_negative(path, &nd);
661 if (IS_ERR(dentry))
662 return dentry;
663 dir = nd.dentry->d_inode;
664 if ((error = __rpc_mkdir(dir, dentry)) != 0)
665 goto err_dput;
666 RPC_I(dentry->d_inode)->private = rpc_client;
1da177e4
LT
667 error = rpc_populate(dentry, authfiles,
668 RPCAUTH_info, RPCAUTH_EOF);
669 if (error)
f134585a 670 goto err_depopulate;
5c3e985a 671 dget(dentry);
f134585a 672out:
1b1dcc1b 673 mutex_unlock(&dir->i_mutex);
f134585a 674 rpc_release_path(&nd);
5c3e985a 675 return dentry;
f134585a
TM
676err_depopulate:
677 rpc_depopulate(dentry);
678 __rpc_rmdir(dir, dentry);
679err_dput:
680 dput(dentry);
681 printk(KERN_WARNING "%s: %s() failed to create directory %s (errno = %d)\n",
682 __FILE__, __FUNCTION__, path, error);
683 dentry = ERR_PTR(error);
684 goto out;
1da177e4
LT
685}
686
f134585a 687int
dff02cc1 688rpc_rmdir(struct dentry *dentry)
1da177e4 689{
dff02cc1 690 struct dentry *parent;
f134585a
TM
691 struct inode *dir;
692 int error;
278c995c 693
dff02cc1
TM
694 parent = dget_parent(dentry);
695 dir = parent->d_inode;
c6573c29 696 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
f134585a
TM
697 rpc_depopulate(dentry);
698 error = __rpc_rmdir(dir, dentry);
699 dput(dentry);
1b1dcc1b 700 mutex_unlock(&dir->i_mutex);
dff02cc1 701 dput(parent);
f134585a 702 return error;
1da177e4
LT
703}
704
705struct dentry *
f134585a 706rpc_mkpipe(char *path, void *private, struct rpc_pipe_ops *ops, int flags)
1da177e4 707{
f134585a 708 struct nameidata nd;
1da177e4 709 struct dentry *dentry;
f134585a 710 struct inode *dir, *inode;
1da177e4
LT
711 struct rpc_inode *rpci;
712
f134585a 713 dentry = rpc_lookup_negative(path, &nd);
1da177e4 714 if (IS_ERR(dentry))
f134585a
TM
715 return dentry;
716 dir = nd.dentry->d_inode;
717 inode = rpc_get_inode(dir->i_sb, S_IFSOCK | S_IRUSR | S_IWUSR);
718 if (!inode)
719 goto err_dput;
1da177e4
LT
720 inode->i_ino = iunique(dir->i_sb, 100);
721 inode->i_fop = &rpc_pipe_fops;
f134585a 722 d_instantiate(dentry, inode);
1da177e4
LT
723 rpci = RPC_I(inode);
724 rpci->private = private;
725 rpci->flags = flags;
726 rpci->ops = ops;
727 inode_dir_notify(dir, DN_CREATE);
5c3e985a 728 dget(dentry);
f134585a 729out:
1b1dcc1b 730 mutex_unlock(&dir->i_mutex);
f134585a 731 rpc_release_path(&nd);
5c3e985a 732 return dentry;
f134585a 733err_dput:
1da177e4 734 dput(dentry);
f134585a
TM
735 dentry = ERR_PTR(-ENOMEM);
736 printk(KERN_WARNING "%s: %s() failed to create pipe %s (errno = %d)\n",
737 __FILE__, __FUNCTION__, path, -ENOMEM);
738 goto out;
1da177e4
LT
739}
740
f134585a 741int
5d67476f 742rpc_unlink(struct dentry *dentry)
1da177e4 743{
5d67476f 744 struct dentry *parent;
f134585a 745 struct inode *dir;
5d67476f 746 int error = 0;
1da177e4 747
5d67476f
TM
748 parent = dget_parent(dentry);
749 dir = parent->d_inode;
c6573c29 750 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
68adb0af
TM
751 if (!d_unhashed(dentry)) {
752 d_drop(dentry);
753 if (dentry->d_inode) {
754 rpc_close_pipes(dentry->d_inode);
755 error = simple_unlink(dir, dentry);
756 }
757 inode_dir_notify(dir, DN_DELETE);
1da177e4 758 }
f134585a 759 dput(dentry);
1b1dcc1b 760 mutex_unlock(&dir->i_mutex);
5d67476f 761 dput(parent);
f134585a 762 return error;
1da177e4
LT
763}
764
765/*
766 * populate the filesystem
767 */
768static struct super_operations s_ops = {
769 .alloc_inode = rpc_alloc_inode,
770 .destroy_inode = rpc_destroy_inode,
771 .statfs = simple_statfs,
772};
773
774#define RPCAUTH_GSSMAGIC 0x67596969
775
776static int
777rpc_fill_super(struct super_block *sb, void *data, int silent)
778{
779 struct inode *inode;
780 struct dentry *root;
781
782 sb->s_blocksize = PAGE_CACHE_SIZE;
783 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
784 sb->s_magic = RPCAUTH_GSSMAGIC;
785 sb->s_op = &s_ops;
786 sb->s_time_gran = 1;
787
788 inode = rpc_get_inode(sb, S_IFDIR | 0755);
789 if (!inode)
790 return -ENOMEM;
791 root = d_alloc_root(inode);
792 if (!root) {
793 iput(inode);
794 return -ENOMEM;
795 }
796 if (rpc_populate(root, files, RPCAUTH_Root + 1, RPCAUTH_RootEOF))
797 goto out;
798 sb->s_root = root;
799 return 0;
800out:
801 d_genocide(root);
802 dput(root);
803 return -ENOMEM;
804}
805
454e2398 806static int
1da177e4 807rpc_get_sb(struct file_system_type *fs_type,
454e2398 808 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
1da177e4 809{
454e2398 810 return get_sb_single(fs_type, flags, data, rpc_fill_super, mnt);
1da177e4
LT
811}
812
813static struct file_system_type rpc_pipe_fs_type = {
814 .owner = THIS_MODULE,
815 .name = "rpc_pipefs",
816 .get_sb = rpc_get_sb,
817 .kill_sb = kill_litter_super,
818};
819
820static void
821init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
822{
823 struct rpc_inode *rpci = (struct rpc_inode *) foo;
824
825 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
826 SLAB_CTOR_CONSTRUCTOR) {
827 inode_init_once(&rpci->vfs_inode);
828 rpci->private = NULL;
829 rpci->nreaders = 0;
830 rpci->nwriters = 0;
831 INIT_LIST_HEAD(&rpci->in_upcall);
832 INIT_LIST_HEAD(&rpci->pipe);
833 rpci->pipelen = 0;
834 init_waitqueue_head(&rpci->waitq);
835 INIT_WORK(&rpci->queue_timeout, rpc_timeout_upcall_queue, rpci);
836 rpci->ops = NULL;
837 }
838}
839
840int register_rpc_pipefs(void)
841{
842 rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
fffb60f9
PJ
843 sizeof(struct rpc_inode),
844 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
845 SLAB_MEM_SPREAD),
846 init_once, NULL);
1da177e4
LT
847 if (!rpc_inode_cachep)
848 return -ENOMEM;
849 register_filesystem(&rpc_pipe_fs_type);
850 return 0;
851}
852
853void unregister_rpc_pipefs(void)
854{
855 if (kmem_cache_destroy(rpc_inode_cachep))
856 printk(KERN_WARNING "RPC: unable to free inode cache\n");
857 unregister_filesystem(&rpc_pipe_fs_type);
858}