blob: 6dd8b96e8df75e7c75c9571c017b22e15507d513 [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>
Trond Myklebust8854e822009-08-09 15:14:30 -040029#include <linux/sunrpc/cache.h>
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +030030#include <linux/nsproxy.h>
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +030031#include <linux/notifier.h>
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +030032
33#include "netns.h"
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +030034#include "sunrpc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Stanislav Kinsburskyefc46bf2011-12-26 15:39:47 +030036#define RPCDBG_FACILITY RPCDBG_DEBUG
37
38#define NET_NAME(net) ((net == &init_net) ? " (init_net)" : "")
39
Al Virofc14f2f2010-07-25 01:48:30 +040040static struct vfsmount *rpc_mnt __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static int rpc_mount_count;
42
43static struct file_system_type rpc_pipe_fs_type;
44
45
Christoph Lametere18b8902006-12-06 20:33:20 -080046static struct kmem_cache *rpc_inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define RPC_UPCALL_TIMEOUT (30*HZ)
49
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +030050static BLOCKING_NOTIFIER_HEAD(rpc_pipefs_notifier_list);
51
52int rpc_pipefs_notifier_register(struct notifier_block *nb)
53{
54 return blocking_notifier_chain_cond_register(&rpc_pipefs_notifier_list, nb);
55}
56EXPORT_SYMBOL_GPL(rpc_pipefs_notifier_register);
57
58void rpc_pipefs_notifier_unregister(struct notifier_block *nb)
59{
60 blocking_notifier_chain_unregister(&rpc_pipefs_notifier_list, nb);
61}
62EXPORT_SYMBOL_GPL(rpc_pipefs_notifier_unregister);
63
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +030064static void rpc_purge_list(struct rpc_pipe *pipe, struct list_head *head,
Trond Myklebust9842ef32006-02-01 12:18:44 -050065 void (*destroy_msg)(struct rpc_pipe_msg *), int err)
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050066{
67 struct rpc_pipe_msg *msg;
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050068
Trond Myklebust9842ef32006-02-01 12:18:44 -050069 if (list_empty(head))
70 return;
71 do {
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050072 msg = list_entry(head->next, struct rpc_pipe_msg, list);
Trond Myklebust5a676572010-09-12 19:55:25 -040073 list_del_init(&msg->list);
Trond Myklebustb3eb67a2005-11-25 17:10:11 -050074 msg->errno = err;
75 destroy_msg(msg);
Trond Myklebust9842ef32006-02-01 12:18:44 -050076 } while (!list_empty(head));
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +030077 wake_up(&pipe->waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80static void
David Howells65f27f32006-11-22 14:55:48 +000081rpc_timeout_upcall_queue(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Trond Myklebust9842ef32006-02-01 12:18:44 -050083 LIST_HEAD(free_list);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +030084 struct rpc_pipe *pipe =
85 container_of(work, struct rpc_pipe, queue_timeout.work);
Trond Myklebust9842ef32006-02-01 12:18:44 -050086 void (*destroy_msg)(struct rpc_pipe_msg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +030088 spin_lock(&pipe->lock);
89 if (pipe->ops == NULL) {
90 spin_unlock(&pipe->lock);
Trond Myklebust9842ef32006-02-01 12:18:44 -050091 return;
92 }
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +030093 destroy_msg = pipe->ops->destroy_msg;
94 if (pipe->nreaders == 0) {
95 list_splice_init(&pipe->pipe, &free_list);
96 pipe->pipelen = 0;
Trond Myklebust9842ef32006-02-01 12:18:44 -050097 }
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +030098 spin_unlock(&pipe->lock);
99 rpc_purge_list(pipe, &free_list, destroy_msg, -ETIMEDOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Peng Taoc1225152011-09-22 21:50:10 -0400102ssize_t rpc_pipe_generic_upcall(struct file *filp, struct rpc_pipe_msg *msg,
103 char __user *dst, size_t buflen)
104{
105 char *data = (char *)msg->data + msg->copied;
106 size_t mlen = min(msg->len - msg->copied, buflen);
107 unsigned long left;
108
109 left = copy_to_user(dst, data, mlen);
110 if (left == mlen) {
111 msg->errno = -EFAULT;
112 return -EFAULT;
113 }
114
115 mlen -= left;
116 msg->copied += mlen;
117 msg->errno = 0;
118 return mlen;
119}
120EXPORT_SYMBOL_GPL(rpc_pipe_generic_upcall);
121
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500122/**
Ben Hutchings1a5778a2010-02-14 22:35:47 -0800123 * rpc_queue_upcall - queue an upcall message to userspace
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500124 * @inode: inode of upcall pipe on which to queue given message
125 * @msg: message to queue
126 *
127 * Call with an @inode created by rpc_mkpipe() to queue an upcall.
128 * A userspace process may then later read the upcall by performing a
129 * read on an open file for this inode. It is up to the caller to
130 * initialize the fields of @msg (other than @msg->list) appropriately.
131 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132int
Stanislav Kinsburskyd706ed12011-12-26 15:43:49 +0300133rpc_queue_upcall(struct rpc_pipe *pipe, struct rpc_pipe_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Trond Myklebust6070fe62005-10-27 22:12:46 -0400135 int res = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300137 spin_lock(&pipe->lock);
138 if (pipe->ops == NULL)
Trond Myklebust6070fe62005-10-27 22:12:46 -0400139 goto out;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300140 if (pipe->nreaders) {
141 list_add_tail(&msg->list, &pipe->pipe);
142 pipe->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -0400143 res = 0;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300144 } else if (pipe->flags & RPC_PIPE_WAIT_FOR_OPEN) {
145 if (list_empty(&pipe->pipe))
Trond Myklebust24c5d9d2006-03-20 13:44:08 -0500146 queue_delayed_work(rpciod_workqueue,
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300147 &pipe->queue_timeout,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 RPC_UPCALL_TIMEOUT);
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300149 list_add_tail(&msg->list, &pipe->pipe);
150 pipe->pipelen += msg->len;
Trond Myklebust6070fe62005-10-27 22:12:46 -0400151 res = 0;
152 }
153out:
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300154 spin_unlock(&pipe->lock);
155 wake_up(&pipe->waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return res;
157}
Trond Myklebust468039e2008-12-23 15:21:31 -0500158EXPORT_SYMBOL_GPL(rpc_queue_upcall);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Trond Myklebust6070fe62005-10-27 22:12:46 -0400160static inline void
161rpc_inode_setowner(struct inode *inode, void *private)
162{
163 RPC_I(inode)->private = private;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static void
167rpc_close_pipes(struct inode *inode)
168{
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300169 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Trond Myklebustb693ba42009-08-09 15:14:15 -0400170 const struct rpc_pipe_ops *ops;
\"J. Bruce Fields\e7128042008-12-23 16:09:47 -0500171 int need_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800173 mutex_lock(&inode->i_mutex);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300174 ops = pipe->ops;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500175 if (ops != NULL) {
176 LIST_HEAD(free_list);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300177 spin_lock(&pipe->lock);
178 need_release = pipe->nreaders != 0 || pipe->nwriters != 0;
179 pipe->nreaders = 0;
180 list_splice_init(&pipe->in_upcall, &free_list);
181 list_splice_init(&pipe->pipe, &free_list);
182 pipe->pipelen = 0;
183 pipe->ops = NULL;
184 spin_unlock(&pipe->lock);
185 rpc_purge_list(pipe, &free_list, ops->destroy_msg, -EPIPE);
186 pipe->nwriters = 0;
\"J. Bruce Fields\e7128042008-12-23 16:09:47 -0500187 if (need_release && ops->release_pipe)
Trond Myklebust9842ef32006-02-01 12:18:44 -0500188 ops->release_pipe(inode);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300189 cancel_delayed_work_sync(&pipe->queue_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Trond Myklebust6070fe62005-10-27 22:12:46 -0400191 rpc_inode_setowner(inode, NULL);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800192 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static struct inode *
196rpc_alloc_inode(struct super_block *sb)
197{
198 struct rpc_inode *rpci;
Christoph Lametere94b1762006-12-06 20:33:17 -0800199 rpci = (struct rpc_inode *)kmem_cache_alloc(rpc_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (!rpci)
201 return NULL;
202 return &rpci->vfs_inode;
203}
204
205static void
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100206rpc_i_callback(struct rcu_head *head)
207{
208 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100209 kmem_cache_free(rpc_inode_cachep, RPC_I(inode));
210}
211
212static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213rpc_destroy_inode(struct inode *inode)
214{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100215 call_rcu(&inode->i_rcu, rpc_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218static int
219rpc_pipe_open(struct inode *inode, struct file *filp)
220{
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300221 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500222 int first_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 int res = -ENXIO;
224
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800225 mutex_lock(&inode->i_mutex);
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300226 if (pipe->ops == NULL)
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500227 goto out;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300228 first_open = pipe->nreaders == 0 && pipe->nwriters == 0;
229 if (first_open && pipe->ops->open_pipe) {
230 res = pipe->ops->open_pipe(inode);
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500231 if (res)
232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500234 if (filp->f_mode & FMODE_READ)
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300235 pipe->nreaders++;
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500236 if (filp->f_mode & FMODE_WRITE)
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300237 pipe->nwriters++;
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500238 res = 0;
239out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800240 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return res;
242}
243
244static int
245rpc_pipe_release(struct inode *inode, struct file *filp)
246{
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300247 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 struct rpc_pipe_msg *msg;
\"J. Bruce Fields\e7128042008-12-23 16:09:47 -0500249 int last_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800251 mutex_lock(&inode->i_mutex);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300252 if (pipe->ops == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 goto out;
Joe Perches655b5bb2010-09-04 18:52:53 -0700254 msg = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (msg != NULL) {
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300256 spin_lock(&pipe->lock);
Trond Myklebust48e49182005-12-19 17:11:22 -0500257 msg->errno = -EAGAIN;
Trond Myklebust5a676572010-09-12 19:55:25 -0400258 list_del_init(&msg->list);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300259 spin_unlock(&pipe->lock);
260 pipe->ops->destroy_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
262 if (filp->f_mode & FMODE_WRITE)
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300263 pipe->nwriters --;
Trond Myklebust9842ef32006-02-01 12:18:44 -0500264 if (filp->f_mode & FMODE_READ) {
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300265 pipe->nreaders --;
266 if (pipe->nreaders == 0) {
Trond Myklebust9842ef32006-02-01 12:18:44 -0500267 LIST_HEAD(free_list);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300268 spin_lock(&pipe->lock);
269 list_splice_init(&pipe->pipe, &free_list);
270 pipe->pipelen = 0;
271 spin_unlock(&pipe->lock);
272 rpc_purge_list(pipe, &free_list,
273 pipe->ops->destroy_msg, -EAGAIN);
Trond Myklebust9842ef32006-02-01 12:18:44 -0500274 }
275 }
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300276 last_close = pipe->nwriters == 0 && pipe->nreaders == 0;
277 if (last_close && pipe->ops->release_pipe)
278 pipe->ops->release_pipe(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800280 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
282}
283
284static ssize_t
285rpc_pipe_read(struct file *filp, char __user *buf, size_t len, loff_t *offset)
286{
Josef Sipek303b46b2006-12-08 02:37:42 -0800287 struct inode *inode = filp->f_path.dentry->d_inode;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300288 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct rpc_pipe_msg *msg;
290 int res = 0;
291
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800292 mutex_lock(&inode->i_mutex);
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300293 if (pipe->ops == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 res = -EPIPE;
295 goto out_unlock;
296 }
297 msg = filp->private_data;
298 if (msg == NULL) {
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300299 spin_lock(&pipe->lock);
300 if (!list_empty(&pipe->pipe)) {
301 msg = list_entry(pipe->pipe.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 struct rpc_pipe_msg,
303 list);
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300304 list_move(&msg->list, &pipe->in_upcall);
305 pipe->pipelen -= msg->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 filp->private_data = msg;
307 msg->copied = 0;
308 }
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300309 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (msg == NULL)
311 goto out_unlock;
312 }
313 /* NOTE: it is up to the callback to update msg->copied */
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300314 res = pipe->ops->upcall(filp, msg, buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (res < 0 || msg->len == msg->copied) {
316 filp->private_data = NULL;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300317 spin_lock(&pipe->lock);
Trond Myklebust5a676572010-09-12 19:55:25 -0400318 list_del_init(&msg->list);
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300319 spin_unlock(&pipe->lock);
320 pipe->ops->destroy_msg(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800323 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return res;
325}
326
327static ssize_t
328rpc_pipe_write(struct file *filp, const char __user *buf, size_t len, loff_t *offset)
329{
Josef Sipek303b46b2006-12-08 02:37:42 -0800330 struct inode *inode = filp->f_path.dentry->d_inode;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300331 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int res;
333
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800334 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 res = -EPIPE;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300336 if (pipe->ops != NULL)
337 res = pipe->ops->downcall(filp, buf, len);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800338 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return res;
340}
341
342static unsigned int
343rpc_pipe_poll(struct file *filp, struct poll_table_struct *wait)
344{
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300345 struct rpc_pipe *pipe = RPC_I(filp->f_path.dentry->d_inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 unsigned int mask = 0;
347
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300348 poll_wait(filp, &pipe->waitq, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 mask = POLLOUT | POLLWRNORM;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300351 if (pipe->ops == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 mask |= POLLERR | POLLHUP;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300353 if (filp->private_data || !list_empty(&pipe->pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 mask |= POLLIN | POLLRDNORM;
355 return mask;
356}
357
Arnd Bergmanna6f8dbc2010-10-04 21:18:23 +0200358static long
359rpc_pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Arnd Bergmanna6f8dbc2010-10-04 21:18:23 +0200361 struct inode *inode = filp->f_path.dentry->d_inode;
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300362 struct rpc_pipe *pipe = RPC_I(inode)->pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int len;
364
365 switch (cmd) {
366 case FIONREAD:
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300367 spin_lock(&pipe->lock);
368 if (pipe->ops == NULL) {
369 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -EPIPE;
Arnd Bergmanna6f8dbc2010-10-04 21:18:23 +0200371 }
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300372 len = pipe->pipelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (filp->private_data) {
374 struct rpc_pipe_msg *msg;
Joe Perches655b5bb2010-09-04 18:52:53 -0700375 msg = filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 len += msg->len - msg->copied;
377 }
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300378 spin_unlock(&pipe->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return put_user(len, (int __user *)arg);
380 default:
381 return -EINVAL;
382 }
383}
384
Arjan van de Venda7071d2007-02-12 00:55:36 -0800385static const struct file_operations rpc_pipe_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .owner = THIS_MODULE,
387 .llseek = no_llseek,
388 .read = rpc_pipe_read,
389 .write = rpc_pipe_write,
390 .poll = rpc_pipe_poll,
Frederic Weisbecker674b6042010-05-19 15:08:17 +0200391 .unlocked_ioctl = rpc_pipe_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 .open = rpc_pipe_open,
393 .release = rpc_pipe_release,
394};
395
396static int
397rpc_show_info(struct seq_file *m, void *v)
398{
399 struct rpc_clnt *clnt = m->private;
400
401 seq_printf(m, "RPC server: %s\n", clnt->cl_server);
402 seq_printf(m, "service: %s (%d) version %d\n", clnt->cl_protname,
403 clnt->cl_prog, clnt->cl_vers);
Chuck Levere7f78652006-08-22 20:06:19 -0400404 seq_printf(m, "address: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR));
405 seq_printf(m, "protocol: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PROTO));
J. Bruce Fieldsbf19aac2007-09-26 14:38:09 -0400406 seq_printf(m, "port: %s\n", rpc_peeraddr2str(clnt, RPC_DISPLAY_PORT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
408}
409
410static int
411rpc_info_open(struct inode *inode, struct file *file)
412{
Trond Myklebust006abe82010-09-12 19:55:25 -0400413 struct rpc_clnt *clnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 int ret = single_open(file, rpc_show_info, NULL);
415
416 if (!ret) {
417 struct seq_file *m = file->private_data;
Trond Myklebust006abe82010-09-12 19:55:25 -0400418
419 spin_lock(&file->f_path.dentry->d_lock);
420 if (!d_unhashed(file->f_path.dentry))
421 clnt = RPC_I(inode)->private;
422 if (clnt != NULL && atomic_inc_not_zero(&clnt->cl_count)) {
423 spin_unlock(&file->f_path.dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 m->private = clnt;
425 } else {
Trond Myklebust006abe82010-09-12 19:55:25 -0400426 spin_unlock(&file->f_path.dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 single_release(inode, file);
428 ret = -EINVAL;
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 return ret;
432}
433
434static int
435rpc_info_release(struct inode *inode, struct file *file)
436{
437 struct seq_file *m = file->private_data;
438 struct rpc_clnt *clnt = (struct rpc_clnt *)m->private;
439
440 if (clnt)
441 rpc_release_client(clnt);
442 return single_release(inode, file);
443}
444
Arjan van de Venda7071d2007-02-12 00:55:36 -0800445static const struct file_operations rpc_info_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 .owner = THIS_MODULE,
447 .open = rpc_info_open,
448 .read = seq_read,
449 .llseek = seq_lseek,
450 .release = rpc_info_release,
451};
452
453
454/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * Description of fs contents.
456 */
457struct rpc_filelist {
Trond Myklebustac6fece2009-08-09 15:14:20 -0400458 const char *name;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800459 const struct file_operations *i_fop;
Trond Myklebust7364af62009-08-09 15:14:16 -0400460 umode_t mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461};
462
Trond Myklebust54281542006-03-20 13:44:49 -0500463struct vfsmount *rpc_get_mount(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Trond Myklebust54281542006-03-20 13:44:49 -0500465 int err;
466
Al Virofc14f2f2010-07-25 01:48:30 +0400467 err = simple_pin_fs(&rpc_pipe_fs_type, &rpc_mnt, &rpc_mount_count);
Trond Myklebust54281542006-03-20 13:44:49 -0500468 if (err != 0)
469 return ERR_PTR(err);
Al Virofc14f2f2010-07-25 01:48:30 +0400470 return rpc_mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
Trond Myklebuste571cbf2009-08-19 18:12:27 -0400472EXPORT_SYMBOL_GPL(rpc_get_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Trond Myklebust54281542006-03-20 13:44:49 -0500474void rpc_put_mount(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Al Virofc14f2f2010-07-25 01:48:30 +0400476 simple_release_fs(&rpc_mnt, &rpc_mount_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
Trond Myklebuste571cbf2009-08-19 18:12:27 -0400478EXPORT_SYMBOL_GPL(rpc_put_mount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Nick Pigginfe15ce42011-01-07 17:49:23 +1100480static int rpc_delete_dentry(const struct dentry *dentry)
Trond Myklebust62e17612007-06-08 14:14:46 -0400481{
482 return 1;
483}
484
Al Viro3ba13d12009-02-20 06:02:22 +0000485static const struct dentry_operations rpc_dentry_operations = {
Trond Myklebust62e17612007-06-08 14:14:46 -0400486 .d_delete = rpc_delete_dentry,
487};
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static struct inode *
Trond Myklebust7364af62009-08-09 15:14:16 -0400490rpc_get_inode(struct super_block *sb, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 struct inode *inode = new_inode(sb);
493 if (!inode)
494 return NULL;
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400495 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 inode->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Joe Perches89f0e4f2011-07-01 09:43:12 +0000498 switch (mode & S_IFMT) {
499 case S_IFDIR:
500 inode->i_fop = &simple_dir_operations;
501 inode->i_op = &simple_dir_inode_operations;
502 inc_nlink(inode);
503 default:
504 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 return inode;
507}
508
Trond Myklebust75898062009-08-09 15:14:17 -0400509static int __rpc_create_common(struct inode *dir, struct dentry *dentry,
510 umode_t mode,
511 const struct file_operations *i_fop,
512 void *private)
513{
514 struct inode *inode;
515
Trond Myklebustbeb0f0a2010-12-20 21:19:26 +0000516 d_drop(dentry);
Trond Myklebust75898062009-08-09 15:14:17 -0400517 inode = rpc_get_inode(dir->i_sb, mode);
518 if (!inode)
519 goto out_err;
520 inode->i_ino = iunique(dir->i_sb, 100);
521 if (i_fop)
522 inode->i_fop = i_fop;
523 if (private)
524 rpc_inode_setowner(inode, private);
525 d_add(dentry, inode);
526 return 0;
527out_err:
528 printk(KERN_WARNING "%s: %s failed to allocate inode for dentry %s\n",
529 __FILE__, __func__, dentry->d_name.name);
530 dput(dentry);
531 return -ENOMEM;
532}
533
Trond Myklebustac6fece2009-08-09 15:14:20 -0400534static int __rpc_create(struct inode *dir, struct dentry *dentry,
535 umode_t mode,
536 const struct file_operations *i_fop,
537 void *private)
538{
539 int err;
540
541 err = __rpc_create_common(dir, dentry, S_IFREG | mode, i_fop, private);
542 if (err)
543 return err;
544 fsnotify_create(dir, dentry);
545 return 0;
546}
547
Trond Myklebust75898062009-08-09 15:14:17 -0400548static int __rpc_mkdir(struct inode *dir, struct dentry *dentry,
549 umode_t mode,
550 const struct file_operations *i_fop,
551 void *private)
552{
553 int err;
554
555 err = __rpc_create_common(dir, dentry, S_IFDIR | mode, i_fop, private);
556 if (err)
557 return err;
558 inc_nlink(dir);
559 fsnotify_mkdir(dir, dentry);
560 return 0;
561}
562
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300563static void
564init_pipe(struct rpc_pipe *pipe)
565{
566 pipe->nreaders = 0;
567 pipe->nwriters = 0;
568 INIT_LIST_HEAD(&pipe->in_upcall);
569 INIT_LIST_HEAD(&pipe->in_downcall);
570 INIT_LIST_HEAD(&pipe->pipe);
571 pipe->pipelen = 0;
572 init_waitqueue_head(&pipe->waitq);
573 INIT_DELAYED_WORK(&pipe->queue_timeout,
574 rpc_timeout_upcall_queue);
575 pipe->ops = NULL;
576 spin_lock_init(&pipe->lock);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300577 pipe->dentry = NULL;
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300578}
579
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300580void rpc_destroy_pipe_data(struct rpc_pipe *pipe)
581{
582 kfree(pipe);
583}
584EXPORT_SYMBOL_GPL(rpc_destroy_pipe_data);
585
586struct rpc_pipe *rpc_mkpipe_data(const struct rpc_pipe_ops *ops, int flags)
Trond Myklebust75898062009-08-09 15:14:17 -0400587{
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300588 struct rpc_pipe *pipe;
Trond Myklebust75898062009-08-09 15:14:17 -0400589
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300590 pipe = kzalloc(sizeof(struct rpc_pipe), GFP_KERNEL);
591 if (!pipe)
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300592 return ERR_PTR(-ENOMEM);
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300593 init_pipe(pipe);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300594 pipe->ops = ops;
595 pipe->flags = flags;
596 return pipe;
597}
598EXPORT_SYMBOL_GPL(rpc_mkpipe_data);
599
600static int __rpc_mkpipe_dentry(struct inode *dir, struct dentry *dentry,
601 umode_t mode,
602 const struct file_operations *i_fop,
603 void *private,
604 struct rpc_pipe *pipe)
605{
606 struct rpc_inode *rpci;
607 int err;
608
Trond Myklebust75898062009-08-09 15:14:17 -0400609 err = __rpc_create_common(dir, dentry, S_IFIFO | mode, i_fop, private);
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300610 if (err)
Trond Myklebust75898062009-08-09 15:14:17 -0400611 return err;
612 rpci = RPC_I(dentry->d_inode);
Trond Myklebust75898062009-08-09 15:14:17 -0400613 rpci->private = private;
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +0300614 rpci->pipe = pipe;
Trond Myklebust75898062009-08-09 15:14:17 -0400615 fsnotify_create(dir, dentry);
616 return 0;
617}
618
Trond Myklebustac6fece2009-08-09 15:14:20 -0400619static int __rpc_rmdir(struct inode *dir, struct dentry *dentry)
620{
621 int ret;
622
623 dget(dentry);
624 ret = simple_rmdir(dir, dentry);
625 d_delete(dentry);
626 dput(dentry);
627 return ret;
628}
629
Trond Myklebust810d90b2009-08-09 15:14:18 -0400630static int __rpc_unlink(struct inode *dir, struct dentry *dentry)
631{
632 int ret;
633
634 dget(dentry);
635 ret = simple_unlink(dir, dentry);
636 d_delete(dentry);
637 dput(dentry);
638 return ret;
639}
640
641static int __rpc_rmpipe(struct inode *dir, struct dentry *dentry)
642{
643 struct inode *inode = dentry->d_inode;
Trond Myklebust810d90b2009-08-09 15:14:18 -0400644
Trond Myklebust810d90b2009-08-09 15:14:18 -0400645 rpc_close_pipes(inode);
646 return __rpc_unlink(dir, dentry);
647}
648
Trond Myklebustcfeaa4a2009-08-09 15:14:20 -0400649static struct dentry *__rpc_lookup_create_exclusive(struct dentry *parent,
650 struct qstr *name)
651{
652 struct dentry *dentry;
653
Stanislav Kinsbursky5bff0382011-11-08 15:09:19 +0300654 dentry = d_lookup(parent, name);
655 if (!dentry) {
656 dentry = d_alloc(parent, name);
657 if (!dentry)
658 return ERR_PTR(-ENOMEM);
659 }
660 if (dentry->d_inode == NULL) {
661 d_set_d_op(dentry, &rpc_dentry_operations);
Dan Carpenterf1f0abe2010-03-21 12:10:34 -0400662 return dentry;
Stanislav Kinsbursky5bff0382011-11-08 15:09:19 +0300663 }
Trond Myklebustcfeaa4a2009-08-09 15:14:20 -0400664 dput(dentry);
665 return ERR_PTR(-EEXIST);
666}
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668/*
669 * FIXME: This probably has races.
670 */
Trond Myklebustac6fece2009-08-09 15:14:20 -0400671static void __rpc_depopulate(struct dentry *parent,
672 const struct rpc_filelist *files,
673 int start, int eof)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 struct inode *dir = parent->d_inode;
Trond Myklebustac6fece2009-08-09 15:14:20 -0400676 struct dentry *dentry;
677 struct qstr name;
678 int i;
679
680 for (i = start; i < eof; i++) {
681 name.name = files[i].name;
682 name.len = strlen(files[i].name);
683 name.hash = full_name_hash(name.name, name.len);
684 dentry = d_lookup(parent, &name);
685
686 if (dentry == NULL)
687 continue;
688 if (dentry->d_inode == NULL)
689 goto next;
690 switch (dentry->d_inode->i_mode & S_IFMT) {
691 default:
692 BUG();
693 case S_IFREG:
694 __rpc_unlink(dir, dentry);
695 break;
696 case S_IFDIR:
697 __rpc_rmdir(dir, dentry);
698 }
699next:
700 dput(dentry);
701 }
702}
703
704static void rpc_depopulate(struct dentry *parent,
705 const struct rpc_filelist *files,
706 int start, int eof)
707{
708 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Arjan van de Venc6573c22006-07-03 00:25:16 -0700710 mutex_lock_nested(&dir->i_mutex, I_MUTEX_CHILD);
Trond Myklebustac6fece2009-08-09 15:14:20 -0400711 __rpc_depopulate(parent, files, start, eof);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800712 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Trond Myklebustac6fece2009-08-09 15:14:20 -0400715static int rpc_populate(struct dentry *parent,
716 const struct rpc_filelist *files,
717 int start, int eof,
718 void *private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Trond Myklebustac6fece2009-08-09 15:14:20 -0400720 struct inode *dir = parent->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct dentry *dentry;
Trond Myklebustac6fece2009-08-09 15:14:20 -0400722 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800724 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 for (i = start; i < eof; i++) {
Trond Myklebustac6fece2009-08-09 15:14:20 -0400726 struct qstr q;
727
728 q.name = files[i].name;
729 q.len = strlen(files[i].name);
730 q.hash = full_name_hash(q.name, q.len);
731 dentry = __rpc_lookup_create_exclusive(parent, &q);
732 err = PTR_ERR(dentry);
733 if (IS_ERR(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto out_bad;
Trond Myklebustac6fece2009-08-09 15:14:20 -0400735 switch (files[i].mode & S_IFMT) {
736 default:
737 BUG();
738 case S_IFREG:
739 err = __rpc_create(dir, dentry,
740 files[i].mode,
741 files[i].i_fop,
742 private);
743 break;
744 case S_IFDIR:
745 err = __rpc_mkdir(dir, dentry,
746 files[i].mode,
747 NULL,
748 private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Trond Myklebustac6fece2009-08-09 15:14:20 -0400750 if (err != 0)
751 goto out_bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800753 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
755out_bad:
Trond Myklebustac6fece2009-08-09 15:14:20 -0400756 __rpc_depopulate(parent, files, start, eof);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800757 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 printk(KERN_WARNING "%s: %s failed to populate directory %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800759 __FILE__, __func__, parent->d_name.name);
Trond Myklebustac6fece2009-08-09 15:14:20 -0400760 return err;
Trond Myklebustf1345852005-09-23 11:08:25 -0400761}
Christoph Hellwig278c9952005-07-24 23:53:01 +0100762
Trond Myklebuste57aed72009-08-09 15:14:26 -0400763static struct dentry *rpc_mkdir_populate(struct dentry *parent,
764 struct qstr *name, umode_t mode, void *private,
765 int (*populate)(struct dentry *, void *), void *args_populate)
Trond Myklebustf1345852005-09-23 11:08:25 -0400766{
Trond Myklebustf1345852005-09-23 11:08:25 -0400767 struct dentry *dentry;
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400768 struct inode *dir = parent->d_inode;
Trond Myklebustf1345852005-09-23 11:08:25 -0400769 int error;
770
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400771 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
772 dentry = __rpc_lookup_create_exclusive(parent, name);
Trond Myklebustf1345852005-09-23 11:08:25 -0400773 if (IS_ERR(dentry))
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400774 goto out;
775 error = __rpc_mkdir(dir, dentry, mode, NULL, private);
Trond Myklebust75898062009-08-09 15:14:17 -0400776 if (error != 0)
777 goto out_err;
Trond Myklebuste57aed72009-08-09 15:14:26 -0400778 if (populate != NULL) {
779 error = populate(dentry, args_populate);
780 if (error)
781 goto err_rmdir;
782 }
Trond Myklebustf1345852005-09-23 11:08:25 -0400783out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800784 mutex_unlock(&dir->i_mutex);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400785 return dentry;
Trond Myklebustac6fece2009-08-09 15:14:20 -0400786err_rmdir:
Trond Myklebustf1345852005-09-23 11:08:25 -0400787 __rpc_rmdir(dir, dentry);
Trond Myklebust75898062009-08-09 15:14:17 -0400788out_err:
Trond Myklebustf1345852005-09-23 11:08:25 -0400789 dentry = ERR_PTR(error);
790 goto out;
791}
792
Trond Myklebuste57aed72009-08-09 15:14:26 -0400793static int rpc_rmdir_depopulate(struct dentry *dentry,
794 void (*depopulate)(struct dentry *))
Trond Myklebustf1345852005-09-23 11:08:25 -0400795{
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700796 struct dentry *parent;
Trond Myklebustf1345852005-09-23 11:08:25 -0400797 struct inode *dir;
798 int error;
799
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700800 parent = dget_parent(dentry);
801 dir = parent->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700802 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebuste57aed72009-08-09 15:14:26 -0400803 if (depopulate != NULL)
804 depopulate(dentry);
Trond Myklebustf1345852005-09-23 11:08:25 -0400805 error = __rpc_rmdir(dir, dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800806 mutex_unlock(&dir->i_mutex);
Trond Myklebustdff02cc2006-07-31 14:17:18 -0700807 dput(parent);
Trond Myklebustf1345852005-09-23 11:08:25 -0400808 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500811/**
812 * rpc_mkpipe - make an rpc_pipefs file for kernel<->userspace communication
813 * @parent: dentry of directory to create new "pipe" in
814 * @name: name of pipe
815 * @private: private data to associate with the pipe, for the caller's use
816 * @ops: operations defining the behavior of the pipe: upcall, downcall,
\"J. Bruce Fields\c3810602008-12-23 16:08:32 -0500817 * release_pipe, open_pipe, and destroy_msg.
Stanislav Kinsburskyd0fe13b2011-12-26 15:43:41 +0300818 * @flags: rpc_pipe flags
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500819 *
820 * Data is made available for userspace to read by calls to
821 * rpc_queue_upcall(). The actual reads will result in calls to
822 * @ops->upcall, which will be called with the file pointer,
823 * message, and userspace buffer to copy to.
824 *
825 * Writes can come at any time, and do not necessarily have to be
826 * responses to upcalls. They will result in calls to @msg->downcall.
827 *
828 * The @private argument passed here will be available to all these methods
829 * from the file pointer, via RPC_I(file->f_dentry->d_inode)->private.
830 */
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300831struct dentry *rpc_mkpipe_dentry(struct dentry *parent, const char *name,
832 void *private, struct rpc_pipe *pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 struct dentry *dentry;
Trond Myklebust75898062009-08-09 15:14:17 -0400835 struct inode *dir = parent->d_inode;
Trond Myklebust7364af62009-08-09 15:14:16 -0400836 umode_t umode = S_IFIFO | S_IRUSR | S_IWUSR;
Trond Myklebustcfeaa4a2009-08-09 15:14:20 -0400837 struct qstr q;
Trond Myklebust75898062009-08-09 15:14:17 -0400838 int err;
Trond Myklebust7364af62009-08-09 15:14:16 -0400839
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300840 if (pipe->ops->upcall == NULL)
Trond Myklebust7364af62009-08-09 15:14:16 -0400841 umode &= ~S_IRUGO;
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300842 if (pipe->ops->downcall == NULL)
Trond Myklebust7364af62009-08-09 15:14:16 -0400843 umode &= ~S_IWUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Trond Myklebustcfeaa4a2009-08-09 15:14:20 -0400845 q.name = name;
846 q.len = strlen(name);
847 q.hash = full_name_hash(q.name, q.len),
848
849 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Stanislav Kinsbursky5bff0382011-11-08 15:09:19 +0300850 dentry = __rpc_lookup_create_exclusive(parent, &q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (IS_ERR(dentry))
Trond Myklebustcfeaa4a2009-08-09 15:14:20 -0400852 goto out;
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300853 err = __rpc_mkpipe_dentry(dir, dentry, umode, &rpc_pipe_fops,
854 private, pipe);
Trond Myklebust75898062009-08-09 15:14:17 -0400855 if (err)
856 goto out_err;
Trond Myklebustf1345852005-09-23 11:08:25 -0400857out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800858 mutex_unlock(&dir->i_mutex);
Trond Myklebust5c3e9852006-07-29 17:37:40 -0400859 return dentry;
Trond Myklebust75898062009-08-09 15:14:17 -0400860out_err:
861 dentry = ERR_PTR(err);
Trond Myklebust158998b2006-08-24 01:03:17 -0400862 printk(KERN_WARNING "%s: %s() failed to create pipe %s/%s (errno = %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800863 __FILE__, __func__, parent->d_name.name, name,
Trond Myklebust75898062009-08-09 15:14:17 -0400864 err);
Trond Myklebustf1345852005-09-23 11:08:25 -0400865 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
Stanislav Kinsburskyc239d832011-12-26 15:44:06 +0300867EXPORT_SYMBOL_GPL(rpc_mkpipe_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
J. Bruce Fields93a44a72007-11-06 13:06:03 -0500869/**
870 * rpc_unlink - remove a pipe
871 * @dentry: dentry for the pipe, as returned from rpc_mkpipe
872 *
873 * After this call, lookups will no longer find the pipe, and any
874 * attempts to read or write using preexisting opens of the pipe will
875 * return -EPIPE.
876 */
Trond Myklebustf1345852005-09-23 11:08:25 -0400877int
Trond Myklebust5d674762006-07-31 14:11:48 -0700878rpc_unlink(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Trond Myklebust5d674762006-07-31 14:11:48 -0700880 struct dentry *parent;
Trond Myklebustf1345852005-09-23 11:08:25 -0400881 struct inode *dir;
Trond Myklebust5d674762006-07-31 14:11:48 -0700882 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Trond Myklebust5d674762006-07-31 14:11:48 -0700884 parent = dget_parent(dentry);
885 dir = parent->d_inode;
Arjan van de Venc6573c22006-07-03 00:25:16 -0700886 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Trond Myklebust810d90b2009-08-09 15:14:18 -0400887 error = __rpc_rmpipe(dir, dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800888 mutex_unlock(&dir->i_mutex);
Trond Myklebust5d674762006-07-31 14:11:48 -0700889 dput(parent);
Trond Myklebustf1345852005-09-23 11:08:25 -0400890 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
Trond Myklebust468039e2008-12-23 15:21:31 -0500892EXPORT_SYMBOL_GPL(rpc_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Trond Myklebuste57aed72009-08-09 15:14:26 -0400894enum {
895 RPCAUTH_info,
896 RPCAUTH_EOF
897};
898
899static const struct rpc_filelist authfiles[] = {
900 [RPCAUTH_info] = {
901 .name = "info",
902 .i_fop = &rpc_info_operations,
903 .mode = S_IFREG | S_IRUSR,
904 },
905};
906
907static int rpc_clntdir_populate(struct dentry *dentry, void *private)
908{
909 return rpc_populate(dentry,
910 authfiles, RPCAUTH_info, RPCAUTH_EOF,
911 private);
912}
913
914static void rpc_clntdir_depopulate(struct dentry *dentry)
915{
916 rpc_depopulate(dentry, authfiles, RPCAUTH_info, RPCAUTH_EOF);
917}
918
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400919/**
920 * rpc_create_client_dir - Create a new rpc_client directory in rpc_pipefs
Randy Dunlap4111d4f2009-09-23 14:36:38 -0400921 * @dentry: dentry from the rpc_pipefs root to the new directory
922 * @name: &struct qstr for the name
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400923 * @rpc_client: rpc client to associate with this directory
924 *
925 * This creates a directory at the given @path associated with
926 * @rpc_clnt, which will contain a file named "info" with some basic
927 * information about the client, together with any "pipes" that may
928 * later be created using rpc_mkpipe().
929 */
Trond Myklebust23ac6582009-08-09 15:14:25 -0400930struct dentry *rpc_create_client_dir(struct dentry *dentry,
Trond Myklebuste57aed72009-08-09 15:14:26 -0400931 struct qstr *name,
932 struct rpc_clnt *rpc_client)
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400933{
Trond Myklebuste57aed72009-08-09 15:14:26 -0400934 return rpc_mkdir_populate(dentry, name, S_IRUGO | S_IXUGO, NULL,
935 rpc_clntdir_populate, rpc_client);
936}
937
938/**
939 * rpc_remove_client_dir - Remove a directory created with rpc_create_client_dir()
940 * @dentry: directory to remove
941 */
942int rpc_remove_client_dir(struct dentry *dentry)
943{
944 return rpc_rmdir_depopulate(dentry, rpc_clntdir_depopulate);
Trond Myklebust7d59d1e2009-08-09 15:14:23 -0400945}
946
Trond Myklebust8854e822009-08-09 15:14:30 -0400947static const struct rpc_filelist cache_pipefs_files[3] = {
948 [0] = {
949 .name = "channel",
950 .i_fop = &cache_file_operations_pipefs,
Trond Myklebust96c61cb2009-08-19 18:12:21 -0400951 .mode = S_IFREG|S_IRUSR|S_IWUSR,
Trond Myklebust8854e822009-08-09 15:14:30 -0400952 },
953 [1] = {
954 .name = "content",
955 .i_fop = &content_file_operations_pipefs,
956 .mode = S_IFREG|S_IRUSR,
957 },
958 [2] = {
959 .name = "flush",
960 .i_fop = &cache_flush_operations_pipefs,
961 .mode = S_IFREG|S_IRUSR|S_IWUSR,
962 },
963};
964
965static int rpc_cachedir_populate(struct dentry *dentry, void *private)
966{
967 return rpc_populate(dentry,
968 cache_pipefs_files, 0, 3,
969 private);
970}
971
972static void rpc_cachedir_depopulate(struct dentry *dentry)
973{
974 rpc_depopulate(dentry, cache_pipefs_files, 0, 3);
975}
976
977struct dentry *rpc_create_cache_dir(struct dentry *parent, struct qstr *name,
Al Viro64f14262011-07-25 00:35:13 -0400978 umode_t umode, struct cache_detail *cd)
Trond Myklebust8854e822009-08-09 15:14:30 -0400979{
980 return rpc_mkdir_populate(parent, name, umode, NULL,
981 rpc_cachedir_populate, cd);
982}
983
984void rpc_remove_cache_dir(struct dentry *dentry)
985{
986 rpc_rmdir_depopulate(dentry, rpc_cachedir_depopulate);
987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989/*
990 * populate the filesystem
991 */
Alexey Dobriyanb87221d2009-09-21 17:01:09 -0700992static const struct super_operations s_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 .alloc_inode = rpc_alloc_inode,
994 .destroy_inode = rpc_destroy_inode,
995 .statfs = simple_statfs,
996};
997
998#define RPCAUTH_GSSMAGIC 0x67596969
999
Trond Myklebustbb156742009-08-09 15:14:21 -04001000/*
1001 * We have a single directory with 1 node in it.
1002 */
1003enum {
1004 RPCAUTH_lockd,
1005 RPCAUTH_mount,
1006 RPCAUTH_nfs,
1007 RPCAUTH_portmap,
1008 RPCAUTH_statd,
1009 RPCAUTH_nfsd4_cb,
Trond Myklebuste571cbf2009-08-19 18:12:27 -04001010 RPCAUTH_cache,
Trond Myklebustbb156742009-08-09 15:14:21 -04001011 RPCAUTH_RootEOF
1012};
1013
1014static const struct rpc_filelist files[] = {
1015 [RPCAUTH_lockd] = {
1016 .name = "lockd",
1017 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1018 },
1019 [RPCAUTH_mount] = {
1020 .name = "mount",
1021 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1022 },
1023 [RPCAUTH_nfs] = {
1024 .name = "nfs",
1025 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1026 },
1027 [RPCAUTH_portmap] = {
1028 .name = "portmap",
1029 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1030 },
1031 [RPCAUTH_statd] = {
1032 .name = "statd",
1033 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1034 },
1035 [RPCAUTH_nfsd4_cb] = {
1036 .name = "nfsd4_cb",
1037 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1038 },
Trond Myklebuste571cbf2009-08-19 18:12:27 -04001039 [RPCAUTH_cache] = {
1040 .name = "cache",
1041 .mode = S_IFDIR | S_IRUGO | S_IXUGO,
1042 },
Trond Myklebustbb156742009-08-09 15:14:21 -04001043};
1044
Stanislav Kinsbursky432eb1a2011-12-26 15:39:22 +03001045/*
1046 * This call can be used only in RPC pipefs mount notification hooks.
1047 */
1048struct dentry *rpc_d_lookup_sb(const struct super_block *sb,
1049 const unsigned char *dir_name)
1050{
1051 struct qstr dir = {
1052 .name = dir_name,
1053 .len = strlen(dir_name),
1054 .hash = full_name_hash(dir_name, strlen(dir_name)),
1055 };
1056
1057 return d_lookup(sb->s_root, &dir);
1058}
1059EXPORT_SYMBOL_GPL(rpc_d_lookup_sb);
1060
Stanislav Kinsburskyc21a5882011-12-26 15:39:39 +03001061void rpc_pipefs_init_net(struct net *net)
1062{
1063 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1064
1065 mutex_init(&sn->pipefs_sb_lock);
1066}
1067
1068/*
1069 * This call will be used for per network namespace operations calls.
1070 * Note: Function will be returned with pipefs_sb_lock taken if superblock was
1071 * found. This lock have to be released by rpc_put_sb_net() when all operations
1072 * will be completed.
1073 */
1074struct super_block *rpc_get_sb_net(const struct net *net)
1075{
1076 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1077
1078 mutex_lock(&sn->pipefs_sb_lock);
1079 if (sn->pipefs_sb)
1080 return sn->pipefs_sb;
1081 mutex_unlock(&sn->pipefs_sb_lock);
1082 return NULL;
1083}
1084EXPORT_SYMBOL_GPL(rpc_get_sb_net);
1085
1086void rpc_put_sb_net(const struct net *net)
1087{
1088 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
1089
1090 BUG_ON(sn->pipefs_sb == NULL);
1091 mutex_unlock(&sn->pipefs_sb_lock);
1092}
1093EXPORT_SYMBOL_GPL(rpc_put_sb_net);
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095static int
1096rpc_fill_super(struct super_block *sb, void *data, int silent)
1097{
1098 struct inode *inode;
1099 struct dentry *root;
Stanislav Kinsbursky38b0da72011-12-26 15:38:56 +03001100 struct net *net = data;
Stanislav Kinsbursky90c4e822011-12-26 15:39:30 +03001101 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +03001102 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 sb->s_blocksize = PAGE_CACHE_SIZE;
1105 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1106 sb->s_magic = RPCAUTH_GSSMAGIC;
1107 sb->s_op = &s_ops;
1108 sb->s_time_gran = 1;
1109
1110 inode = rpc_get_inode(sb, S_IFDIR | 0755);
1111 if (!inode)
1112 return -ENOMEM;
Al Virofc7bed82010-01-25 18:30:38 -05001113 sb->s_root = root = d_alloc_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (!root) {
1115 iput(inode);
1116 return -ENOMEM;
1117 }
Trond Myklebustac6fece2009-08-09 15:14:20 -04001118 if (rpc_populate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF, NULL))
Al Virofc7bed82010-01-25 18:30:38 -05001119 return -ENOMEM;
Stanislav Kinsburskyefc46bf2011-12-26 15:39:47 +03001120 dprintk("RPC: sending pipefs MOUNT notification for net %p%s\n", net,
1121 NET_NAME(net));
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +03001122 err = blocking_notifier_call_chain(&rpc_pipefs_notifier_list,
1123 RPC_PIPEFS_MOUNT,
1124 sb);
1125 if (err)
1126 goto err_depopulate;
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +03001127 sb->s_fs_info = get_net(net);
Stanislav Kinsbursky90c4e822011-12-26 15:39:30 +03001128 sn->pipefs_sb = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return 0;
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +03001130
1131err_depopulate:
1132 blocking_notifier_call_chain(&rpc_pipefs_notifier_list,
1133 RPC_PIPEFS_UMOUNT,
1134 sb);
1135 __rpc_depopulate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF);
1136 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
Al Virofc14f2f2010-07-25 01:48:30 +04001139static struct dentry *
1140rpc_mount(struct file_system_type *fs_type,
1141 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Stanislav Kinsbursky38b0da72011-12-26 15:38:56 +03001143 return mount_ns(fs_type, flags, current->nsproxy->net_ns, rpc_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +03001146void rpc_kill_sb(struct super_block *sb)
1147{
1148 struct net *net = sb->s_fs_info;
Stanislav Kinsbursky90c4e822011-12-26 15:39:30 +03001149 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +03001150
Stanislav Kinsburskyc21a5882011-12-26 15:39:39 +03001151 mutex_lock(&sn->pipefs_sb_lock);
Stanislav Kinsbursky90c4e822011-12-26 15:39:30 +03001152 sn->pipefs_sb = NULL;
Stanislav Kinsburskyc21a5882011-12-26 15:39:39 +03001153 mutex_unlock(&sn->pipefs_sb_lock);
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +03001154 put_net(net);
Stanislav Kinsburskyefc46bf2011-12-26 15:39:47 +03001155 dprintk("RPC: sending pipefs UMOUNT notification for net %p%s\n", net,
1156 NET_NAME(net));
Stanislav Kinsbursky2d001312011-12-26 15:39:13 +03001157 blocking_notifier_call_chain(&rpc_pipefs_notifier_list,
1158 RPC_PIPEFS_UMOUNT,
1159 sb);
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +03001160 kill_litter_super(sb);
1161}
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163static struct file_system_type rpc_pipe_fs_type = {
1164 .owner = THIS_MODULE,
1165 .name = "rpc_pipefs",
Al Virofc14f2f2010-07-25 01:48:30 +04001166 .mount = rpc_mount,
Stanislav Kinsbursky021c68d2011-12-26 15:39:04 +03001167 .kill_sb = rpc_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168};
1169
1170static void
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001171init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 struct rpc_inode *rpci = (struct rpc_inode *) foo;
1174
Christoph Lametera35afb82007-05-16 22:10:57 -07001175 inode_init_once(&rpci->vfs_inode);
1176 rpci->private = NULL;
Stanislav Kinsburskyba9e0972011-12-26 15:43:32 +03001177 rpci->pipe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
1180int register_rpc_pipefs(void)
1181{
Akinobu Mita5bd5f582007-05-09 02:34:51 -07001182 int err;
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 rpc_inode_cachep = kmem_cache_create("rpc_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001185 sizeof(struct rpc_inode),
1186 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1187 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001188 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (!rpc_inode_cachep)
1190 return -ENOMEM;
Akinobu Mita5bd5f582007-05-09 02:34:51 -07001191 err = register_filesystem(&rpc_pipe_fs_type);
1192 if (err) {
1193 kmem_cache_destroy(rpc_inode_cachep);
1194 return err;
1195 }
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return 0;
1198}
1199
1200void unregister_rpc_pipefs(void)
1201{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001202 kmem_cache_destroy(rpc_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 unregister_filesystem(&rpc_pipe_fs_type);
1204}
Michal Schmidtdcbf8c32011-07-02 00:47:12 +02001205
1206/* Make 'mount -t rpc_pipefs ...' autoload this module. */
1207MODULE_ALIAS("rpc_pipefs");