]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - net/sunrpc/sysctl.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next
[thirdparty/kernel/linux.git] / net / sunrpc / sysctl.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * linux/net/sunrpc/sysctl.c
4 *
5 * Sysctl interface to sunrpc module.
6 *
7 * I would prefer to register the sunrpc table below sys/net, but that's
8 * impossible at the moment.
9 */
10
1da177e4
LT
11#include <linux/types.h>
12#include <linux/linkage.h>
13#include <linux/ctype.h>
14#include <linux/fs.h>
15#include <linux/sysctl.h>
16#include <linux/module.h>
17
7c0f6ba6 18#include <linux/uaccess.h>
1da177e4
LT
19#include <linux/sunrpc/types.h>
20#include <linux/sunrpc/sched.h>
21#include <linux/sunrpc/stats.h>
dc9a16e4 22#include <linux/sunrpc/svc_xprt.h>
1da177e4 23
70abc49b
SK
24#include "netns.h"
25
1da177e4
LT
26/*
27 * Declare the debug flags here
28 */
29unsigned int rpc_debug;
e8914c65 30EXPORT_SYMBOL_GPL(rpc_debug);
a6eaf8bd 31
1da177e4 32unsigned int nfs_debug;
e8914c65 33EXPORT_SYMBOL_GPL(nfs_debug);
a6eaf8bd 34
1da177e4 35unsigned int nfsd_debug;
e8914c65 36EXPORT_SYMBOL_GPL(nfsd_debug);
a6eaf8bd 37
1da177e4 38unsigned int nlm_debug;
e8914c65 39EXPORT_SYMBOL_GPL(nlm_debug);
1da177e4 40
f895b252 41#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
1da177e4 42
fe2c6338 43static int proc_do_xprt(struct ctl_table *table, int write,
32927393 44 void *buffer, size_t *lenp, loff_t *ppos)
dc9a16e4
TT
45{
46 char tmpbuf[256];
ae297504 47 ssize_t len;
27df6f25 48
d435c05a 49 if (write || *ppos) {
dc9a16e4
TT
50 *lenp = 0;
51 return 0;
52 }
27df6f25 53 len = svc_print_xprts(tmpbuf, sizeof(tmpbuf));
ae297504 54 len = memory_read_from_buffer(buffer, *lenp, ppos, tmpbuf, len);
c09f56b8 55
ae297504 56 if (len < 0) {
c09f56b8
AM
57 *lenp = 0;
58 return -EINVAL;
59 }
ae297504 60 *lenp = len;
c09f56b8 61 return 0;
dc9a16e4
TT
62}
63
1da177e4 64static int
32927393
CH
65proc_dodebug(struct ctl_table *table, int write, void *buffer, size_t *lenp,
66 loff_t *ppos)
1da177e4 67{
32927393
CH
68 char tmpbuf[20], *s = NULL;
69 char *p;
1da177e4
LT
70 unsigned int value;
71 size_t left, len;
72
73 if ((*ppos && !write) || !*lenp) {
74 *lenp = 0;
75 return 0;
76 }
77
78 left = *lenp;
79
80 if (write) {
1da177e4 81 p = buffer;
32927393
CH
82 while (left && isspace(*p)) {
83 left--;
84 p++;
85 }
1da177e4
LT
86 if (!left)
87 goto done;
88
89 if (left > sizeof(tmpbuf) - 1)
90 return -EINVAL;
32927393 91 memcpy(tmpbuf, p, left);
1da177e4
LT
92 tmpbuf[left] = '\0';
93
941c3ff3
KM
94 value = simple_strtol(tmpbuf, &s, 0);
95 if (s) {
96 left -= (s - tmpbuf);
97 if (left && !isspace(*s))
98 return -EINVAL;
ca65a280
JP
99 while (left && isspace(*s)) {
100 left--;
101 s++;
102 }
941c3ff3
KM
103 } else
104 left = 0;
1da177e4
LT
105 *(unsigned int *) table->data = value;
106 /* Display the RPC tasks on writing to rpc_debug */
bc2a3f86 107 if (strcmp(table->procname, "rpc_debug") == 0)
70abc49b 108 rpc_show_tasks(&init_net);
1da177e4 109 } else {
941c3ff3 110 len = sprintf(tmpbuf, "0x%04x", *(unsigned int *) table->data);
1da177e4
LT
111 if (len > left)
112 len = left;
32927393 113 memcpy(buffer, tmpbuf, len);
1da177e4 114 if ((left -= len) > 0) {
32927393 115 *((char *)buffer + len) = '\n';
1da177e4
LT
116 left--;
117 }
118 }
119
120done:
121 *lenp -= left;
122 *ppos += *lenp;
123 return 0;
124}
125
32e356be 126static struct ctl_table_header *sunrpc_table_header;
a246b010 127
fe2c6338 128static struct ctl_table debug_table[] = {
1da177e4 129 {
1da177e4
LT
130 .procname = "rpc_debug",
131 .data = &rpc_debug,
132 .maxlen = sizeof(int),
133 .mode = 0644,
6d456111 134 .proc_handler = proc_dodebug
cca5172a 135 },
1da177e4 136 {
1da177e4
LT
137 .procname = "nfs_debug",
138 .data = &nfs_debug,
139 .maxlen = sizeof(int),
140 .mode = 0644,
6d456111 141 .proc_handler = proc_dodebug
cca5172a 142 },
1da177e4 143 {
1da177e4
LT
144 .procname = "nfsd_debug",
145 .data = &nfsd_debug,
146 .maxlen = sizeof(int),
147 .mode = 0644,
6d456111 148 .proc_handler = proc_dodebug
cca5172a 149 },
1da177e4 150 {
1da177e4
LT
151 .procname = "nlm_debug",
152 .data = &nlm_debug,
153 .maxlen = sizeof(int),
154 .mode = 0644,
6d456111 155 .proc_handler = proc_dodebug
cca5172a 156 },
dc9a16e4
TT
157 {
158 .procname = "transports",
159 .maxlen = 256,
160 .mode = 0444,
6d456111 161 .proc_handler = proc_do_xprt,
dc9a16e4 162 },
1da177e4
LT
163};
164
32e356be
LC
165void
166rpc_register_sysctl(void)
167{
168 if (!sunrpc_table_header)
703c6d03 169 sunrpc_table_header = register_sysctl("sunrpc", debug_table);
32e356be
LC
170}
171
172void
173rpc_unregister_sysctl(void)
174{
175 if (sunrpc_table_header) {
176 unregister_sysctl_table(sunrpc_table_header);
177 sunrpc_table_header = NULL;
178 }
179}
1da177e4 180#endif