blob: c9b57f47108c7005de24bff6146e7ac90964a665 [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>
Trond Myklebust50e437d2007-06-07 22:44:34 -040017#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#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
Christoph Lametere18b8902006-12-06 20:33:20 -080036static struct kmem_cache *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
David Howells65f27f32006-11-22 14:55:48 +000057rpc_timeout_upcall_queue(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Trond Myklebust9842ef32006-02-01 12:18:44 -050059 LIST_HEAD(free_list);
David Howells65f27f32006-11-22 14:55:48 +000060 struct rpc_inode *rpci =
61 container_of(work, struct rpc_inode, queue_timeout.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 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
J. Bruce Fields93a44a72007-11-06 13:06:03 -050079/**
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 Torvalds1da177e2005-04-16 15:20:36 -070089int
90rpc_queue_upcall(struct inode *inode, struct rpc_pipe_msg *msg)
91{
92 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust6070fe62005-10-27 22:12:46 -040093 int res = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Trond Myklebust9842ef32006-02-01 12:18:44 -050095 spin_lock(&inode->i_lock);
Trond Myklebust6070fe62005-10-27 22:12:46 -040096 if (rpci->ops == NULL)
97 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (rpci->nreaders) {
99 list_add_tail(&msg->list, &rpci->pipe);
100 rpci->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -0400101 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 } else if (rpci->flags & RPC_PIPE_WAIT_FOR_OPEN) {
103 if (list_empty(&rpci->pipe))
Trond Myklebust24c5d9d2006-03-20 13:44:08 -0500104 queue_delayed_work(rpciod_workqueue,
105 &rpci->queue_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 RPC_UPCALL_TIMEOUT);
107 list_add_tail(&msg->list, &rpci->pipe);
108 rpci->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -0400109 res = 0;
110 }
111out:
Trond Myklebust9842ef32006-02-01 12:18:44 -0500112 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 wake_up(&rpci->waitq);
114 return res;
115}
Trond Myklebust468039e2008-12-23 15:21:31 -0500116EXPORT_SYMBOL_GPL(rpc_queue_upcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Trond Myklebust6070fe62005-10-27 22:12:46 -0400118static inline void
119rpc_inode_setowner(struct inode *inode, void *private)
120{
121 RPC_I(inode)->private = private;
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static void
125rpc_close_pipes(struct inode *inode)
126{
127 struct rpc_inode *rpci = RPC_I(inode);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500128 struct rpc_pipe_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800130 mutex_lock(&inode->i_mutex);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500131 ops = rpci->ops;
132 if (ops != NULL) {
133 LIST_HEAD(free_list);
134
135 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 rpci->nreaders = 0;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500137 list_splice_init(&rpci->in_upcall, &free_list);
138 list_splice_init(&rpci->pipe, &free_list);
139 rpci->pipelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 rpci->ops = NULL;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500141 spin_unlock(&inode->i_lock);
142 rpc_purge_list(rpci, &free_list, ops->destroy_msg, -EPIPE);
143 rpci->nwriters = 0;
144 if (ops->release_pipe)
145 ops->release_pipe(inode);
Trond Myklebust4011cd92007-08-07 15:33:01 -0400146 cancel_delayed_work_sync(&rpci->queue_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
Trond Myklebust6070fe62005-10-27 22:12:46 -0400148 rpc_inode_setowner(inode, NULL);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800149 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static struct inode *
153rpc_alloc_inode(struct super_block *sb)
154{
155 struct rpc_inode *rpci;
Christoph Lametere94b1762006-12-06 20:33:17 -0800156 rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (!rpci)
158 return NULL;
159 return &rpci->vfs_inode;
160}
161
162static void
163rpc_destroy_inode(struct inode *inode)
164{
165 kmem_cache_free(rpc_inode_cachep, RPC_I(inode));
166}
167
168static int
169rpc_pipe_open(struct inode *inode, struct file *filp)
170{
171 struct rpc_inode *rpci = RPC_I(inode);
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500172 int first_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 int res = -ENXIO;
174
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800175 mutex_lock(&inode->i_mutex);
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500176 if (rpci->ops == NULL)
177 goto out;
178 first_open = rpci->nreaders == 0 && rpci->nwriters == 0;
179 if (first_open && rpci->ops->open_pipe) {
180 res = rpci->ops->open_pipe(inode);
181 if (res)
182 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500184 if (filp->f_mode & FMODE_READ)
185 rpci->nreaders++;
186 if (filp->f_mode & FMODE_WRITE)
187 rpci->nwriters++;
188 res = 0;
189out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800190 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return res;
192}
193
194static int
195rpc_pipe_release(struct inode *inode, struct file *filp)
196{
Trond Myklebust969b7f22006-01-03 09:55:36 +0100197 struct rpc_inode *rpci = RPC_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 struct rpc_pipe_msg *msg;
199
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800200 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (rpci->ops == NULL)
202 goto out;
203 msg = (struct rpc_pipe_msg *)filp->private_data;
204 if (msg != NULL) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500205 spin_lock(&inode->i_lock);
Trond Myklebust48e49182005-12-19 17:11:22 -0500206 msg->errno = -EAGAIN;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500207 list_del(&msg->list);
208 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 rpci->ops->destroy_msg(msg);
210 }
211 if (filp->f_mode & FMODE_WRITE)
212 rpci->nwriters --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500213 if (filp->f_mode & FMODE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 rpci->nreaders --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500215 if (rpci->nreaders == 0) {
216 LIST_HEAD(free_list);
217 spin_lock(&inode->i_lock);
218 list_splice_init(&rpci->pipe, &free_list);
219 rpci->pipelen = 0;
220 spin_unlock(&inode->i_lock);
221 rpc_purge_list(rpci, &free_list,
222 rpci->ops->destroy_msg, -EAGAIN);
223 }
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (rpci->ops->release_pipe)
226 rpci->ops->release_pipe(inode);
227out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800228 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
231
232static ssize_t
233rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset)
234{
Josef Sipek303b46b2006-12-08 02:37:42 -0800235 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct rpc_inode *rpci = RPC_I(inode);
237 struct rpc_pipe_msg *msg;
238 int res = 0;
239
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800240 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (rpci->ops == NULL) {
242 res = -EPIPE;
243 goto out_unlock;
244 }
245 msg = filp->private_data;
246 if (msg == NULL) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500247 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (!list_empty(&rpci->pipe)) {
249 msg = list_entry(rpci->pipe.next,
250 struct rpc_pipe_msg,
251 list);
252 list_move(&msg->list, &rpci->in_upcall);
253 rpci->pipelen -= msg->len;
254 filp->private_data = msg;
255 msg->copied = 0;
256 }
Trond Myklebust9842ef32006-02-01 12:18:44 -0500257 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (msg == NULL)
259 goto out_unlock;
260 }
261 /* NOTE: it is up to the callback to update msg->copied */
262 res = rpci->ops->upcall(filp, msg, buf, len);
263 if (res < 0 || msg->len == msg->copied) {
264 filp->private_data = NULL;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500265 spin_lock(&inode->i_lock);
266 list_del(&msg->list);
267 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 rpci->ops->destroy_msg(msg);
269 }
270out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800271 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return res;
273}
274
275static ssize_t
276rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset)
277{
Josef Sipek303b46b2006-12-08 02:37:42 -0800278 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct rpc_inode *rpci = RPC_I(inode);
280 int res;
281
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800282 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 res = -EPIPE;
284 if (rpci->ops != NULL)
285 res = rpci->ops->downcall(filp, buf, len);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800286 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return res;
288}
289
290static unsigned int
291rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait)
292{
293 struct rpc_inode *rpci;
294 unsigned int mask = 0;
295
Josef Sipek303b46b2006-12-08 02:37:42 -0800296 rpci = RPC_I(filp->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 poll_wait(filp, &rpci->waitq, wait);
298
299 mask = POLLOUT | POLLWRNORM;
300 if (rpci->ops == NULL)
301 mask |= POLLERR | POLLHUP;
J. Bruce Fieldseda4f9b2007-11-06 13:05:36 -0500302 if (filp->private_data || !list_empty(&rpci->pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 mask |= POLLIN | POLLRDNORM;
304 return mask;
305}
306
307static int
308rpc_pipe_ioctl(struct inode *ino, struct file *filp,
309 unsigned int cmd, unsigned long arg)
310{
Josef Sipek303b46b2006-12-08 02:37:42 -0800311 struct rpc_inode *rpci = RPC_I(filp->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 int len;
313
314 switch (cmd) {
315 case FIONREAD:
316 if (rpci->ops == NULL)
317 return -EPIPE;
318 len = rpci->pipelen;
319 if (filp->private_data) {
320 struct rpc_pipe_msg *msg;
321 msg = (struct rpc_pipe_msg *)filp->private_data;
322 len += msg->len - msg->copied;
323 }
324 return put_user(len, (int __user *)arg);
325 default:
326 return -EINVAL;
327 }
328}
329
Arjan van de Venda7071d2007-02-12 00:55:36 -0800330static const struct file_operations rpc_pipe_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 .owner = THIS_MODULE,
332 .llseek = no_llseek,
333 .read = rpc_pipe_read,
334 .write = rpc_pipe_write,
335 .poll = rpc_pipe_poll,
336 .ioctl = rpc_pipe_ioctl,
337 .open = rpc_pipe_open,
338 .release = rpc_pipe_release,
339};
340
341static int
342rpc_show_info(struct seq_file *m, void *v)
343{
344 struct rpc_clnt *clnt = m->private;
345
346 seq_printf(m, "RPC server: %s\n", clnt->cl_server);
347 seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname,
348 clnt->cl_prog, clnt->cl_vers);
Chuck Levere7f78652006-08-22 20:06:19 -0400349 seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR));
350 seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO));
J. Bruce Fieldsbf19aac2007-09-26 14:38:09 -0400351 seq_printf(m, "port: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return 0;
353}
354
355static int
356rpc_info_open(struct inode *inode, struct file *file)
357{
358 struct rpc_clnt *clnt;
359 int ret = single_open(file, rpc_show_info, NULL);
360
361 if (!ret) {
362 struct seq_file *m = file->private_data;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800363 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 clnt = RPC_I(inode)->private;
365 if (clnt) {
Trond Myklebust34f52e32007-06-14 16:40:31 -0400366 kref_get(&clnt->cl_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 m->private = clnt;
368 } else {
369 single_release(inode, file);
370 ret = -EINVAL;
371 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800372 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374 return ret;
375}
376
377static int
378rpc_info_release(struct inode *inode, struct file *file)
379{
380 struct seq_file *m = file->private_data;
381 struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
382
383 if (clnt)
384 rpc_release_client(clnt);
385 return single_release(inode, file);
386}
387
Arjan van de Venda7071d2007-02-12 00:55:36 -0800388static const struct file_operations rpc_info_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .owner = THIS_MODULE,
390 .open = rpc_info_open,
391 .read = seq_read,
392 .llseek = seq_lseek,
393 .release = rpc_info_release,
394};
395
396
397/*
398 * We have a single directory with 1 node in it.
399 */
400enum {
401 RPCAUTH_Root = 1,
402 RPCAUTH_lockd,
403 RPCAUTH_mount,
404 RPCAUTH_nfs,
405 RPCAUTH_portmap,
406 RPCAUTH_statd,
407 RPCAUTH_RootEOF
408};
409
410/*
411 * Description of fs contents.
412 */
413struct rpc_filelist {
414 char *name;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800415 const struct file_operations *i_fop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int mode;
417};
418
419static struct rpc_filelist files[] = {
420 [RPCAUTH_lockd] = {
421 .name = "lockd",
422 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
423 },
424 [RPCAUTH_mount] = {
425 .name = "mount",
426 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
427 },
428 [RPCAUTH_nfs] = {
429 .name = "nfs",
430 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
431 },
432 [RPCAUTH_portmap] = {
433 .name = "portmap",
434 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
435 },
436 [RPCAUTH_statd] = {
437 .name = "statd",
438 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
439 },
440};
441
442enum {
443 RPCAUTH_info = 2,
444 RPCAUTH_EOF
445};
446
447static struct rpc_filelist authfiles[] = {
448 [RPCAUTH_info] = {
449 .name = "info",
450 .i_fop = &rpc_info_operations,
451 .mode = S_IFREG | S_IRUSR,
452 },
453};
454
Trond Myklebust54281542006-03-20 13:44:49 -0500455struct vfsmount *rpc_get_mount(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Trond Myklebust54281542006-03-20 13:44:49 -0500457 int err;
458
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400459 err = simple_pin_fs(&rpc_pipe_fs_type, &rpc_mount, &rpc_mount_count);
Trond Myklebust54281542006-03-20 13:44:49 -0500460 if (err != 0)
461 return ERR_PTR(err);
462 return rpc_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Trond Myklebust54281542006-03-20 13:44:49 -0500465void rpc_put_mount(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 simple_release_fs(&rpc_mount, &rpc_mount_count);
468}
469
Trond Myklebust62e17612007-06-08 14:14:46 -0400470static int rpc_delete_dentry(struct dentry *dentry)
471{
472 return 1;
473}
474
475static struct dentry_operations rpc_dentry_operations = {
476 .d_delete = rpc_delete_dentry,
477};
478
Trond Myklebustf1345852005-09-23 11:08:25 -0400479static int
480rpc_lookup_parent(char *path, struct nameidata *nd)
481{
Josef 'Jeff' Sipek4ac4efc2007-07-19 01:48:20 -0700482 struct vfsmount *mnt;
483
Trond Myklebustf1345852005-09-23 11:08:25 -0400484 if (path[0] == '\0')
485 return -ENOENT;
Josef 'Jeff' Sipek4ac4efc2007-07-19 01:48:20 -0700486
487 mnt = rpc_get_mount();
488 if (IS_ERR(mnt)) {
Trond Myklebustf1345852005-09-23 11:08:25 -0400489 printk(KERN_WARNING "%s: %s failed to mount "
Harvey Harrison0dc47872008-03-05 20:47:47 -0800490 "pseudofilesystem \n", __FILE__, __func__);
Josef 'Jeff' Sipek4ac4efc2007-07-19 01:48:20 -0700491 return PTR_ERR(mnt);
Trond Myklebustf1345852005-09-23 11:08:25 -0400492 }
Trond Myklebustf1345852005-09-23 11:08:25 -0400493
Josef 'Jeff' Sipek4ac4efc2007-07-19 01:48:20 -0700494 if (vfs_path_lookup(mnt->mnt_root, mnt, path, LOOKUP_PARENT, nd)) {
Trond Myklebustf1345852005-09-23 11:08:25 -0400495 printk(KERN_WARNING "%s: %s failed to find path %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800496 __FILE__, __func__, path);
Trond Myklebustf1345852005-09-23 11:08:25 -0400497 rpc_put_mount();
498 return -ENOENT;
499 }
500 return 0;
501}
502
503static void
504rpc_release_path(struct nameidata *nd)
505{
Jan Blunck1d957f92008-02-14 19:34:35 -0800506 path_put(&nd->path);
Trond Myklebustf1345852005-09-23 11:08:25 -0400507 rpc_put_mount();
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static struct inode *
511rpc_get_inode(struct super_block *sb, int mode)
512{
513 struct inode *inode = new_inode(sb);
514 if (!inode)
515 return NULL;
516 inode->i_mode = mode;
517 inode->i_uid = inode->i_gid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 inode->i_blocks = 0;
519 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
520 switch(mode & S_IFMT) {
521 case S_IFDIR:
522 inode->i_fop = &simple_dir_operations;
523 inode->i_op = &simple_dir_inode_operations;
Dave Hansend8c76e62006-09-30 23:29:04 -0700524 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 default:
526 break;
527 }
528 return inode;
529}
530
531/*
532 * FIXME: This probably has races.
533 */
Chuck Lever9b45b742007-10-26 13:31:04 -0400534static void rpc_depopulate(struct dentry *parent,
535 unsigned long start, unsigned long eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 struct inode *dir = parent->d_inode;
538 struct list_head *pos, *next;
539 struct dentry *dentry, *dvec[10];
540 int n = 0;
541
Arjan van de Venc6573c22006-07-03 00:25:16 -0700542 mutex_lock_nested(&dir->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543repeat:
544 spin_lock(&dcache_lock);
545 list_for_each_safe(pos, next, &parent->d_subdirs) {
Eric Dumazet5160ee62006-01-08 01:03:32 -0800546 dentry = list_entry(pos, struct dentry, d_u.d_child);
Trond Myklebust62e17612007-06-08 14:14:46 -0400547 if (!dentry->d_inode ||
548 dentry->d_inode->i_ino < start ||
549 dentry->d_inode->i_ino >= eof)
550 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 spin_lock(&dentry->d_lock);
552 if (!d_unhashed(dentry)) {
553 dget_locked(dentry);
554 __d_drop(dentry);
555 spin_unlock(&dentry->d_lock);
556 dvec[n++] = dentry;
557 if (n == ARRAY_SIZE(dvec))
558 break;
559 } else
560 spin_unlock(&dentry->d_lock);
561 }
562 spin_unlock(&dcache_lock);
563 if (n) {
564 do {
565 dentry = dvec[--n];
Trond Myklebust62e17612007-06-08 14:14:46 -0400566 if (S_ISREG(dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 simple_unlink(dir, dentry);
Trond Myklebust62e17612007-06-08 14:14:46 -0400568 else if (S_ISDIR(dentry->d_inode->i_mode))
569 simple_rmdir(dir, dentry);
570 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 dput(dentry);
572 } while (n);
573 goto repeat;
574 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800575 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
578static int
579rpc_populate(struct dentry *parent,
580 struct rpc_filelist *files,
581 int start, int eof)
582{
583 struct inode *inode, *dir = parent->d_inode;
584 void *private = RPC_I(dir)->private;
585 struct dentry *dentry;
586 int mode, i;
587
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800588 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 for (i = start; i < eof; i++) {
590 dentry = d_alloc_name(parent, files[i].name);
591 if (!dentry)
592 goto out_bad;
Trond Myklebust62e17612007-06-08 14:14:46 -0400593 dentry->d_op = &rpc_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 mode = files[i].mode;
595 inode = rpc_get_inode(dir->i_sb, mode);
596 if (!inode) {
597 dput(dentry);
598 goto out_bad;
599 }
600 inode->i_ino = i;
601 if (files[i].i_fop)
602 inode->i_fop = files[i].i_fop;
603 if (private)
604 rpc_inode_setowner(inode, private);
605 if (S_ISDIR(mode))
Dave Hansend8c76e62006-09-30 23:29:04 -0700606 inc_nlink(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 d_add(dentry, inode);
Trond Myklebust50e437d2007-06-07 22:44:34 -0400608 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800610 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 0;
612out_bad:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800613 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800615 __FILE__, __func__, parent->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return -ENOMEM;
617}
618
Trond Myklebustf1345852005-09-23 11:08:25 -0400619static int
620__rpc_mkdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 struct inode *inode;
623
Trond Myklebust1d216322007-02-02 15:56:06 -0800624 inode = rpc_get_inode(dir->i_sb, S_IFDIR | S_IRUGO | S_IXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (!inode)
Trond Myklebustf1345852005-09-23 11:08:25 -0400626 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 inode->i_ino = iunique(dir->i_sb, 100);
Christoph Hellwig278c9952005-07-24 23:53:01 +0100628 d_instantiate(dentry, inode);
Dave Hansend8c76e62006-09-30 23:29:04 -0700629 inc_nlink(dir);
Trond Myklebust50e437d2007-06-07 22:44:34 -0400630 fsnotify_mkdir(dir, dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400631 return 0;
632out_err:
633 printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800634 __FILE__, __func__, dentry->d_name.name);
Trond Myklebustf1345852005-09-23 11:08:25 -0400635 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Trond Myklebustf1345852005-09-23 11:08:25 -0400638static int
639__rpc_rmdir(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Trond Myklebustf1345852005-09-23 11:08:25 -0400641 int error;
Trond Myklebust62e17612007-06-08 14:14:46 -0400642 error = simple_rmdir(dir, dentry);
643 if (!error)
644 d_delete(dentry);
645 return error;
Trond Myklebustf1345852005-09-23 11:08:25 -0400646}
Christoph Hellwig278c9952005-07-24 23:53:01 +0100647
Trond Myklebustf1345852005-09-23 11:08:25 -0400648static struct dentry *
Trond Myklebust34f30892007-06-07 18:28:02 -0400649rpc_lookup_create(struct dentry *parent, const char *name, int len, int exclusive)
Trond Myklebustf1345852005-09-23 11:08:25 -0400650{
Trond Myklebust158998b2006-08-24 01:03:17 -0400651 struct inode *dir = parent->d_inode;
Trond Myklebustf1345852005-09-23 11:08:25 -0400652 struct dentry *dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400653
Arjan van de Venc6573c22006-07-03 00:25:16 -0700654 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebust158998b2006-08-24 01:03:17 -0400655 dentry = lookup_one_len(name, parent, len);
Trond Myklebustf1345852005-09-23 11:08:25 -0400656 if (IS_ERR(dentry))
657 goto out_err;
Trond Myklebust62e17612007-06-08 14:14:46 -0400658 if (!dentry->d_inode)
659 dentry->d_op = &rpc_dentry_operations;
660 else if (exclusive) {
Trond Myklebustf1345852005-09-23 11:08:25 -0400661 dput(dentry);
662 dentry = ERR_PTR(-EEXIST);
663 goto out_err;
664 }
665 return dentry;
666out_err:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800667 mutex_unlock(&dir->i_mutex);
Trond Myklebust158998b2006-08-24 01:03:17 -0400668 return dentry;
669}
670
671static struct dentry *
672rpc_lookup_negative(char *path, struct nameidata *nd)
673{
674 struct dentry *dentry;
675 int error;
676
677 if ((error = rpc_lookup_parent(path, nd)) != 0)
678 return ERR_PTR(error);
Jan Blunck4ac91372008-02-14 19:34:32 -0800679 dentry = rpc_lookup_create(nd->path.dentry, nd->last.name, nd->last.len,
680 1);
Trond Myklebust158998b2006-08-24 01:03:17 -0400681 if (IS_ERR(dentry))
682 rpc_release_path(nd);
Trond Myklebustf1345852005-09-23 11:08:25 -0400683 return dentry;
684}
685
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500686/**
687 * rpc_mkdir - Create a new directory in rpc_pipefs
688 * @path: path from the rpc_pipefs root to the new directory
Randy Dunlap65b6e422008-02-13 15:03:23 -0800689 * @rpc_client: rpc client to associate with this directory
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500690 *
691 * This creates a directory at the given @path associated with
692 * @rpc_clnt, which will contain a file named "info" with some basic
693 * information about the client, together with any "pipes" that may
694 * later be created using rpc_mkpipe().
695 */
Trond Myklebustf1345852005-09-23 11:08:25 -0400696struct dentry *
697rpc_mkdir(char *path, struct rpc_clnt *rpc_client)
698{
699 struct nameidata nd;
700 struct dentry *dentry;
701 struct inode *dir;
702 int error;
703
704 dentry = rpc_lookup_negative(path, &nd);
705 if (IS_ERR(dentry))
706 return dentry;
Jan Blunck4ac91372008-02-14 19:34:32 -0800707 dir = nd.path.dentry->d_inode;
Trond Myklebustf1345852005-09-23 11:08:25 -0400708 if ((error = __rpc_mkdir(dir, dentry)) != 0)
709 goto err_dput;
710 RPC_I(dentry->d_inode)->private = rpc_client;
711 error = rpc_populate(dentry, authfiles,
712 RPCAUTH_info, RPCAUTH_EOF);
713 if (error)
714 goto err_depopulate;
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400715 dget(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400716out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800717 mutex_unlock(&dir->i_mutex);
Trond Myklebustf1345852005-09-23 11:08:25 -0400718 rpc_release_path(&nd);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400719 return dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400720err_depopulate:
Trond Myklebust62e17612007-06-08 14:14:46 -0400721 rpc_depopulate(dentry, RPCAUTH_info, RPCAUTH_EOF);
Trond Myklebustf1345852005-09-23 11:08:25 -0400722 __rpc_rmdir(dir, dentry);
723err_dput:
724 dput(dentry);
725 printk(KERN_WARNING "%s: %s() failed to create directory %s (errno = %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800726 __FILE__, __func__, path, error);
Trond Myklebustf1345852005-09-23 11:08:25 -0400727 dentry = ERR_PTR(error);
728 goto out;
729}
730
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500731/**
732 * rpc_rmdir - Remove a directory created with rpc_mkdir()
733 * @dentry: directory to remove
734 */
Trond Myklebustf1345852005-09-23 11:08:25 -0400735int
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700736rpc_rmdir(struct dentry *dentry)
Trond Myklebustf1345852005-09-23 11:08:25 -0400737{
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700738 struct dentry *parent;
Trond Myklebustf1345852005-09-23 11:08:25 -0400739 struct inode *dir;
740 int error;
741
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700742 parent = dget_parent(dentry);
743 dir = parent->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700744 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebust62e17612007-06-08 14:14:46 -0400745 rpc_depopulate(dentry, RPCAUTH_info, RPCAUTH_EOF);
Trond Myklebustf1345852005-09-23 11:08:25 -0400746 error = __rpc_rmdir(dir, dentry);
747 dput(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800748 mutex_unlock(&dir->i_mutex);
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700749 dput(parent);
Trond Myklebustf1345852005-09-23 11:08:25 -0400750 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500753/**
754 * rpc_mkpipe - make an rpc_pipefs file for kernel<->userspace communication
755 * @parent: dentry of directory to create new "pipe" in
756 * @name: name of pipe
757 * @private: private data to associate with the pipe, for the caller's use
758 * @ops: operations defining the behavior of the pipe: upcall, downcall,
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500759 * release_pipe, open_pipe, and destroy_msg.
Randy Dunlap65b6e422008-02-13 15:03:23 -0800760 * @flags: rpc_inode flags
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500761 *
762 * Data is made available for userspace to read by calls to
763 * rpc_queue_upcall(). The actual reads will result in calls to
764 * @ops->upcall, which will be called with the file pointer,
765 * message, and userspace buffer to copy to.
766 *
767 * Writes can come at any time, and do not necessarily have to be
768 * responses to upcalls. They will result in calls to @msg->downcall.
769 *
770 * The @private argument passed here will be available to all these methods
771 * from the file pointer, via RPC_I(file->f_dentry->d_inode)->private.
772 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773struct dentry *
Trond Myklebust158998b2006-08-24 01:03:17 -0400774rpc_mkpipe(struct dentry *parent, const char *name, void *private, struct rpc_pipe_ops *ops, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct dentry *dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400777 struct inode *dir, *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct rpc_inode *rpci;
779
Trond Myklebust34f30892007-06-07 18:28:02 -0400780 dentry = rpc_lookup_create(parent, name, strlen(name), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (IS_ERR(dentry))
Trond Myklebustf1345852005-09-23 11:08:25 -0400782 return dentry;
Trond Myklebust158998b2006-08-24 01:03:17 -0400783 dir = parent->d_inode;
Trond Myklebust34f30892007-06-07 18:28:02 -0400784 if (dentry->d_inode) {
785 rpci = RPC_I(dentry->d_inode);
786 if (rpci->private != private ||
787 rpci->ops != ops ||
788 rpci->flags != flags) {
789 dput (dentry);
790 dentry = ERR_PTR(-EBUSY);
791 }
Trond Myklebust03a12562007-06-08 14:14:53 -0400792 rpci->nkern_readwriters++;
Trond Myklebust34f30892007-06-07 18:28:02 -0400793 goto out;
794 }
Steve Dicksona53a3c52006-09-06 11:51:21 -0400795 inode = rpc_get_inode(dir->i_sb, S_IFIFO | S_IRUSR | S_IWUSR);
Trond Myklebustf1345852005-09-23 11:08:25 -0400796 if (!inode)
797 goto err_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 inode->i_ino = iunique(dir->i_sb, 100);
799 inode->i_fop = &rpc_pipe_fops;
Trond Myklebustf1345852005-09-23 11:08:25 -0400800 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 rpci = RPC_I(inode);
802 rpci->private = private;
803 rpci->flags = flags;
804 rpci->ops = ops;
Trond Myklebust03a12562007-06-08 14:14:53 -0400805 rpci->nkern_readwriters = 1;
Trond Myklebust50e437d2007-06-07 22:44:34 -0400806 fsnotify_create(dir, dentry);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400807 dget(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400808out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800809 mutex_unlock(&dir->i_mutex);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400810 return dentry;
Trond Myklebustf1345852005-09-23 11:08:25 -0400811err_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 dput(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400813 dentry = ERR_PTR(-ENOMEM);
Trond Myklebust158998b2006-08-24 01:03:17 -0400814 printk(KERN_WARNING "%s: %s() failed to create pipe %s/%s (errno = %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800815 __FILE__, __func__, parent->d_name.name, name,
Trond Myklebust158998b2006-08-24 01:03:17 -0400816 -ENOMEM);
Trond Myklebustf1345852005-09-23 11:08:25 -0400817 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
Trond Myklebust468039e2008-12-23 15:21:31 -0500819EXPORT_SYMBOL_GPL(rpc_mkpipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500821/**
822 * rpc_unlink - remove a pipe
823 * @dentry: dentry for the pipe, as returned from rpc_mkpipe
824 *
825 * After this call, lookups will no longer find the pipe, and any
826 * attempts to read or write using preexisting opens of the pipe will
827 * return -EPIPE.
828 */
Trond Myklebustf1345852005-09-23 11:08:25 -0400829int
Trond Myklebust5d674762006-07-31 14:11:48 -0700830rpc_unlink(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Trond Myklebust5d674762006-07-31 14:11:48 -0700832 struct dentry *parent;
Trond Myklebustf1345852005-09-23 11:08:25 -0400833 struct inode *dir;
Trond Myklebust5d674762006-07-31 14:11:48 -0700834 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Trond Myklebust5d674762006-07-31 14:11:48 -0700836 parent = dget_parent(dentry);
837 dir = parent->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700838 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebust03a12562007-06-08 14:14:53 -0400839 if (--RPC_I(dentry->d_inode)->nkern_readwriters == 0) {
840 rpc_close_pipes(dentry->d_inode);
841 error = simple_unlink(dir, dentry);
842 if (!error)
843 d_delete(dentry);
844 }
Trond Myklebustf1345852005-09-23 11:08:25 -0400845 dput(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800846 mutex_unlock(&dir->i_mutex);
Trond Myklebust5d674762006-07-31 14:11:48 -0700847 dput(parent);
Trond Myklebustf1345852005-09-23 11:08:25 -0400848 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
Trond Myklebust468039e2008-12-23 15:21:31 -0500850EXPORT_SYMBOL_GPL(rpc_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852/*
853 * populate the filesystem
854 */
855static struct super_operations s_ops = {
856 .alloc_inode = rpc_alloc_inode,
857 .destroy_inode = rpc_destroy_inode,
858 .statfs = simple_statfs,
859};
860
861#define RPCAUTH_GSSMAGIC 0x67596969
862
863static int
864rpc_fill_super(struct super_block *sb, void *data, int silent)
865{
866 struct inode *inode;
867 struct dentry *root;
868
869 sb->s_blocksize = PAGE_CACHE_SIZE;
870 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
871 sb->s_magic = RPCAUTH_GSSMAGIC;
872 sb->s_op = &s_ops;
873 sb->s_time_gran = 1;
874
875 inode = rpc_get_inode(sb, S_IFDIR | 0755);
876 if (!inode)
877 return -ENOMEM;
878 root = d_alloc_root(inode);
879 if (!root) {
880 iput(inode);
881 return -ENOMEM;
882 }
883 if (rpc_populate(root, files, RPCAUTH_Root + 1, RPCAUTH_RootEOF))
884 goto out;
885 sb->s_root = root;
886 return 0;
887out:
888 d_genocide(root);
889 dput(root);
890 return -ENOMEM;
891}
892
David Howells454e2392006-06-23 02:02:57 -0700893static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894rpc_get_sb(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -0700895 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
David Howells454e2392006-06-23 02:02:57 -0700897 return get_sb_single(fs_type, flags, data, rpc_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
900static struct file_system_type rpc_pipe_fs_type = {
901 .owner = THIS_MODULE,
902 .name = "rpc_pipefs",
903 .get_sb = rpc_get_sb,
904 .kill_sb = kill_litter_super,
905};
906
907static void
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700908init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct rpc_inode *rpci = (struct rpc_inode *) foo;
911
Christoph Lametera35afb82007-05-16 22:10:57 -0700912 inode_init_once(&rpci->vfs_inode);
913 rpci->private = NULL;
914 rpci->nreaders = 0;
915 rpci->nwriters = 0;
916 INIT_LIST_HEAD(&rpci->in_upcall);
Trond Myklebust6e84c7b2007-06-07 15:31:36 -0400917 INIT_LIST_HEAD(&rpci->in_downcall);
Christoph Lametera35afb82007-05-16 22:10:57 -0700918 INIT_LIST_HEAD(&rpci->pipe);
919 rpci->pipelen = 0;
920 init_waitqueue_head(&rpci->waitq);
921 INIT_DELAYED_WORK(&rpci->queue_timeout,
922 rpc_timeout_upcall_queue);
923 rpci->ops = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
926int register_rpc_pipefs(void)
927{
Akinobu Mita5bd5f582007-05-09 02:34:51 -0700928 int err;
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800931 sizeof(struct rpc_inode),
932 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
933 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900934 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (!rpc_inode_cachep)
936 return -ENOMEM;
Akinobu Mita5bd5f582007-05-09 02:34:51 -0700937 err = register_filesystem(&rpc_pipe_fs_type);
938 if (err) {
939 kmem_cache_destroy(rpc_inode_cachep);
940 return err;
941 }
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
944}
945
946void unregister_rpc_pipefs(void)
947{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700948 kmem_cache_destroy(rpc_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 unregister_filesystem(&rpc_pipe_fs_type);
950}