blob: c8fd0b6c16189dfd21aaf2373b3fa72fa6c39860 [file] [log] [blame]
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -05001/**
2 * debugfs interface for sunrpc
3 *
4 * (c) 2014 Jeff Layton <jlayton@primarydata.com>
5 */
6
7#include <linux/debugfs.h>
8#include <linux/sunrpc/sched.h>
9#include <linux/sunrpc/clnt.h>
10#include "netns.h"
11
12static struct dentry *topdir;
Chuck Lever4a068252015-05-11 14:02:25 -040013static struct dentry *rpc_fault_dir;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050014static struct dentry *rpc_clnt_dir;
Jeff Layton388f0c72014-11-26 14:44:44 -050015static struct dentry *rpc_xprt_dir;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050016
Chuck Lever4a068252015-05-11 14:02:25 -040017unsigned int rpc_inject_disconnect;
18
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050019static int
20tasks_show(struct seq_file *f, void *v)
21{
22 u32 xid = 0;
23 struct rpc_task *task = v;
24 struct rpc_clnt *clnt = task->tk_client;
25 const char *rpc_waitq = "none";
26
27 if (RPC_IS_QUEUED(task))
28 rpc_waitq = rpc_qname(task->tk_waitqueue);
29
30 if (task->tk_rqstp)
31 xid = be32_to_cpu(task->tk_rqstp->rq_xid);
32
33 seq_printf(f, "%5u %04x %6d 0x%x 0x%x %8ld %ps %sv%u %s a:%ps q:%s\n",
34 task->tk_pid, task->tk_flags, task->tk_status,
35 clnt->cl_clid, xid, task->tk_timeout, task->tk_ops,
36 clnt->cl_program->name, clnt->cl_vers, rpc_proc_name(task),
37 task->tk_action, rpc_waitq);
38 return 0;
39}
40
41static void *
42tasks_start(struct seq_file *f, loff_t *ppos)
43 __acquires(&clnt->cl_lock)
44{
Kinglong Mee3f373e82017-02-07 21:49:57 +080045 struct rpc_clnt *clnt = f->private;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050046 loff_t pos = *ppos;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050047 struct rpc_task *task;
48
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050049 spin_lock(&clnt->cl_lock);
50 list_for_each_entry(task, &clnt->cl_tasks, tk_task)
51 if (pos-- == 0)
52 return task;
53 return NULL;
54}
55
56static void *
57tasks_next(struct seq_file *f, void *v, loff_t *pos)
58{
Kinglong Mee3f373e82017-02-07 21:49:57 +080059 struct rpc_clnt *clnt = f->private;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050060 struct rpc_task *task = v;
61 struct list_head *next = task->tk_task.next;
62
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050063 ++*pos;
64
65 /* If there's another task on list, return it */
66 if (next == &clnt->cl_tasks)
67 return NULL;
68 return list_entry(next, struct rpc_task, tk_task);
69}
70
71static void
72tasks_stop(struct seq_file *f, void *v)
73 __releases(&clnt->cl_lock)
74{
Kinglong Mee3f373e82017-02-07 21:49:57 +080075 struct rpc_clnt *clnt = f->private;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050076 spin_unlock(&clnt->cl_lock);
77}
78
79static const struct seq_operations tasks_seq_operations = {
80 .start = tasks_start,
81 .next = tasks_next,
82 .stop = tasks_stop,
83 .show = tasks_show,
84};
85
86static int tasks_open(struct inode *inode, struct file *filp)
87{
Kinglong Mee3f373e82017-02-07 21:49:57 +080088 int ret = seq_open(filp, &tasks_seq_operations);
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050089 if (!ret) {
90 struct seq_file *seq = filp->private_data;
Kinglong Mee3f373e82017-02-07 21:49:57 +080091 struct rpc_clnt *clnt = seq->private = inode->i_private;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050092
Kinglong Mee3f373e82017-02-07 21:49:57 +080093 if (!atomic_inc_not_zero(&clnt->cl_count)) {
94 seq_release(inode, filp);
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -050095 ret = -EINVAL;
96 }
97 }
98
99 return ret;
100}
101
102static int
103tasks_release(struct inode *inode, struct file *filp)
104{
105 struct seq_file *seq = filp->private_data;
Kinglong Mee3f373e82017-02-07 21:49:57 +0800106 struct rpc_clnt *clnt = seq->private;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500107
Kinglong Mee3f373e82017-02-07 21:49:57 +0800108 rpc_release_client(clnt);
109 return seq_release(inode, filp);
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500110}
111
112static const struct file_operations tasks_fops = {
113 .owner = THIS_MODULE,
114 .open = tasks_open,
115 .read = seq_read,
116 .llseek = seq_lseek,
117 .release = tasks_release,
118};
119
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400120void
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500121rpc_clnt_debugfs_register(struct rpc_clnt *clnt)
122{
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400123 int len;
Jeff Layton388f0c72014-11-26 14:44:44 -0500124 char name[24]; /* enough for "../../rpc_xprt/ + 8 hex digits + NULL */
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400125 struct rpc_xprt *xprt;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500126
127 /* Already registered? */
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400128 if (clnt->cl_debugfs || !rpc_clnt_dir)
129 return;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500130
131 len = snprintf(name, sizeof(name), "%x", clnt->cl_clid);
132 if (len >= sizeof(name))
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400133 return;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500134
135 /* make the per-client dir */
136 clnt->cl_debugfs = debugfs_create_dir(name, rpc_clnt_dir);
137 if (!clnt->cl_debugfs)
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400138 return;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500139
140 /* make tasks file */
141 if (!debugfs_create_file("tasks", S_IFREG | S_IRUSR, clnt->cl_debugfs,
Jeff Layton388f0c72014-11-26 14:44:44 -0500142 clnt, &tasks_fops))
143 goto out_err;
144
Jeff Layton388f0c72014-11-26 14:44:44 -0500145 rcu_read_lock();
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400146 xprt = rcu_dereference(clnt->cl_xprt);
147 /* no "debugfs" dentry? Don't bother with the symlink. */
148 if (!xprt->debugfs) {
149 rcu_read_unlock();
150 return;
151 }
Jeff Layton388f0c72014-11-26 14:44:44 -0500152 len = snprintf(name, sizeof(name), "../../rpc_xprt/%s",
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400153 xprt->debugfs->d_name.name);
Jeff Layton388f0c72014-11-26 14:44:44 -0500154 rcu_read_unlock();
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400155
Jeff Layton388f0c72014-11-26 14:44:44 -0500156 if (len >= sizeof(name))
157 goto out_err;
158
Jeff Layton388f0c72014-11-26 14:44:44 -0500159 if (!debugfs_create_symlink("xprt", clnt->cl_debugfs, name))
160 goto out_err;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500161
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400162 return;
Jeff Layton388f0c72014-11-26 14:44:44 -0500163out_err:
164 debugfs_remove_recursive(clnt->cl_debugfs);
165 clnt->cl_debugfs = NULL;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500166}
167
168void
169rpc_clnt_debugfs_unregister(struct rpc_clnt *clnt)
170{
171 debugfs_remove_recursive(clnt->cl_debugfs);
172 clnt->cl_debugfs = NULL;
173}
174
Jeff Layton388f0c72014-11-26 14:44:44 -0500175static int
176xprt_info_show(struct seq_file *f, void *v)
177{
178 struct rpc_xprt *xprt = f->private;
179
180 seq_printf(f, "netid: %s\n", xprt->address_strings[RPC_DISPLAY_NETID]);
181 seq_printf(f, "addr: %s\n", xprt->address_strings[RPC_DISPLAY_ADDR]);
182 seq_printf(f, "port: %s\n", xprt->address_strings[RPC_DISPLAY_PORT]);
183 seq_printf(f, "state: 0x%lx\n", xprt->state);
184 return 0;
185}
186
187static int
188xprt_info_open(struct inode *inode, struct file *filp)
189{
190 int ret;
191 struct rpc_xprt *xprt = inode->i_private;
192
193 ret = single_open(filp, xprt_info_show, xprt);
194
195 if (!ret) {
196 if (!xprt_get(xprt)) {
197 single_release(inode, filp);
198 ret = -EINVAL;
199 }
200 }
201 return ret;
202}
203
204static int
205xprt_info_release(struct inode *inode, struct file *filp)
206{
207 struct rpc_xprt *xprt = inode->i_private;
208
209 xprt_put(xprt);
210 return single_release(inode, filp);
211}
212
213static const struct file_operations xprt_info_fops = {
214 .owner = THIS_MODULE,
215 .open = xprt_info_open,
216 .read = seq_read,
217 .llseek = seq_lseek,
218 .release = xprt_info_release,
219};
220
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400221void
Jeff Layton388f0c72014-11-26 14:44:44 -0500222rpc_xprt_debugfs_register(struct rpc_xprt *xprt)
223{
224 int len, id;
225 static atomic_t cur_id;
226 char name[9]; /* 8 hex digits + NULL term */
227
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400228 if (!rpc_xprt_dir)
229 return;
230
Jeff Layton388f0c72014-11-26 14:44:44 -0500231 id = (unsigned int)atomic_inc_return(&cur_id);
232
233 len = snprintf(name, sizeof(name), "%x", id);
234 if (len >= sizeof(name))
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400235 return;
Jeff Layton388f0c72014-11-26 14:44:44 -0500236
237 /* make the per-client dir */
238 xprt->debugfs = debugfs_create_dir(name, rpc_xprt_dir);
239 if (!xprt->debugfs)
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400240 return;
Jeff Layton388f0c72014-11-26 14:44:44 -0500241
242 /* make tasks file */
243 if (!debugfs_create_file("info", S_IFREG | S_IRUSR, xprt->debugfs,
244 xprt, &xprt_info_fops)) {
245 debugfs_remove_recursive(xprt->debugfs);
246 xprt->debugfs = NULL;
Jeff Layton388f0c72014-11-26 14:44:44 -0500247 }
Chuck Lever4a068252015-05-11 14:02:25 -0400248
249 atomic_set(&xprt->inject_disconnect, rpc_inject_disconnect);
Jeff Layton388f0c72014-11-26 14:44:44 -0500250}
251
252void
253rpc_xprt_debugfs_unregister(struct rpc_xprt *xprt)
254{
255 debugfs_remove_recursive(xprt->debugfs);
256 xprt->debugfs = NULL;
257}
258
Chuck Lever4a068252015-05-11 14:02:25 -0400259static int
260fault_open(struct inode *inode, struct file *filp)
261{
262 filp->private_data = kmalloc(128, GFP_KERNEL);
263 if (!filp->private_data)
264 return -ENOMEM;
265 return 0;
266}
267
268static int
269fault_release(struct inode *inode, struct file *filp)
270{
271 kfree(filp->private_data);
272 return 0;
273}
274
275static ssize_t
276fault_disconnect_read(struct file *filp, char __user *user_buf,
277 size_t len, loff_t *offset)
278{
279 char *buffer = (char *)filp->private_data;
280 size_t size;
281
282 size = sprintf(buffer, "%u\n", rpc_inject_disconnect);
283 return simple_read_from_buffer(user_buf, len, offset, buffer, size);
284}
285
286static ssize_t
287fault_disconnect_write(struct file *filp, const char __user *user_buf,
288 size_t len, loff_t *offset)
289{
290 char buffer[16];
291
Chuck Lever5fd23f72015-06-11 13:47:10 -0400292 if (len >= sizeof(buffer))
293 len = sizeof(buffer) - 1;
Chuck Lever4a068252015-05-11 14:02:25 -0400294 if (copy_from_user(buffer, user_buf, len))
295 return -EFAULT;
296 buffer[len] = '\0';
297 if (kstrtouint(buffer, 10, &rpc_inject_disconnect))
298 return -EINVAL;
299 return len;
300}
301
302static const struct file_operations fault_disconnect_fops = {
303 .owner = THIS_MODULE,
304 .open = fault_open,
305 .read = fault_disconnect_read,
306 .write = fault_disconnect_write,
307 .release = fault_release,
308};
309
310static struct dentry *
311inject_fault_dir(struct dentry *topdir)
312{
313 struct dentry *faultdir;
314
315 faultdir = debugfs_create_dir("inject_fault", topdir);
316 if (!faultdir)
317 return NULL;
318
319 if (!debugfs_create_file("disconnect", S_IFREG | S_IRUSR, faultdir,
320 NULL, &fault_disconnect_fops))
321 return NULL;
322
323 return faultdir;
324}
325
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500326void __exit
327sunrpc_debugfs_exit(void)
328{
329 debugfs_remove_recursive(topdir);
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400330 topdir = NULL;
Chuck Lever4a068252015-05-11 14:02:25 -0400331 rpc_fault_dir = NULL;
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400332 rpc_clnt_dir = NULL;
333 rpc_xprt_dir = NULL;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500334}
335
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400336void __init
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500337sunrpc_debugfs_init(void)
338{
339 topdir = debugfs_create_dir("sunrpc", NULL);
340 if (!topdir)
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400341 return;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500342
Chuck Lever4a068252015-05-11 14:02:25 -0400343 rpc_fault_dir = inject_fault_dir(topdir);
344 if (!rpc_fault_dir)
345 goto out_remove;
346
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500347 rpc_clnt_dir = debugfs_create_dir("rpc_clnt", topdir);
348 if (!rpc_clnt_dir)
349 goto out_remove;
350
Jeff Layton388f0c72014-11-26 14:44:44 -0500351 rpc_xprt_dir = debugfs_create_dir("rpc_xprt", topdir);
352 if (!rpc_xprt_dir)
353 goto out_remove;
354
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400355 return;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500356out_remove:
357 debugfs_remove_recursive(topdir);
358 topdir = NULL;
Chuck Lever4a068252015-05-11 14:02:25 -0400359 rpc_fault_dir = NULL;
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400360 rpc_clnt_dir = NULL;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500361}