xref: /openbmc/linux/kernel/sysctl.c (revision f1aa2eb5ea05ccd1fd92d235346e60e90a1ed949)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  * sysctl.c: General linux system control interface
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  * Begun 24 March 1995, Stephen Tweedie
61da177e4SLinus Torvalds  * Added /proc support, Dec 1995
71da177e4SLinus Torvalds  * Added bdflush entry and intvec min/max checking, 2/23/96, Tom Dyas.
81da177e4SLinus Torvalds  * Added hooks for /proc/sys/net (minor, minor patch), 96/4/1, Mike Shaver.
91da177e4SLinus Torvalds  * Added kernel/java-{interpreter,appletviewer}, 96/5/10, Mike Shaver.
101da177e4SLinus Torvalds  * Dynamic registration fixes, Stephen Tweedie.
111da177e4SLinus Torvalds  * Added kswapd-interval, ctrl-alt-del, printk stuff, 1/8/97, Chris Horn.
121da177e4SLinus Torvalds  * Made sysctl support optional via CONFIG_SYSCTL, 1/10/97, Chris
131da177e4SLinus Torvalds  *  Horn.
141da177e4SLinus Torvalds  * Added proc_doulongvec_ms_jiffies_minmax, 09/08/99, Carlos H. Bauer.
151da177e4SLinus Torvalds  * Added proc_doulongvec_minmax, 09/08/99, Carlos H. Bauer.
161da177e4SLinus Torvalds  * Changed linked lists to use list.h instead of lists.h, 02/24/00, Bill
171da177e4SLinus Torvalds  *  Wendling.
181da177e4SLinus Torvalds  * The list_for_each() macro wasn't appropriate for the sysctl loop.
191da177e4SLinus Torvalds  *  Removed it and replaced it with older style, 03/23/00, Bill Wendling
201da177e4SLinus Torvalds  */
211da177e4SLinus Torvalds 
221da177e4SLinus Torvalds #include <linux/module.h>
231da177e4SLinus Torvalds #include <linux/mm.h>
241da177e4SLinus Torvalds #include <linux/swap.h>
251da177e4SLinus Torvalds #include <linux/slab.h>
261da177e4SLinus Torvalds #include <linux/sysctl.h>
275a04cca6SAkinobu Mita #include <linux/bitmap.h>
28d33ed52dSDave Young #include <linux/signal.h>
29f39650deSAndy Shevchenko #include <linux/panic.h>
30455cd5abSDan Rosenberg #include <linux/printk.h>
311da177e4SLinus Torvalds #include <linux/proc_fs.h>
3272c2d582SAndrew Morgan #include <linux/security.h>
331da177e4SLinus Torvalds #include <linux/ctype.h>
34fd4b616bSSteven Rostedt #include <linux/kmemleak.h>
35b6459415SJakub Kicinski #include <linux/filter.h>
3662239ac2SAdrian Bunk #include <linux/fs.h>
371da177e4SLinus Torvalds #include <linux/init.h>
381da177e4SLinus Torvalds #include <linux/kernel.h>
390296b228SKay Sievers #include <linux/kobject.h>
4020380731SArnaldo Carvalho de Melo #include <linux/net.h>
411da177e4SLinus Torvalds #include <linux/sysrq.h>
421da177e4SLinus Torvalds #include <linux/highuid.h>
431da177e4SLinus Torvalds #include <linux/writeback.h>
443fff4c42SIngo Molnar #include <linux/ratelimit.h>
4576ab0f53SMel Gorman #include <linux/compaction.h>
461da177e4SLinus Torvalds #include <linux/hugetlb.h>
471da177e4SLinus Torvalds #include <linux/initrd.h>
480b77f5bfSDavid Howells #include <linux/key.h>
491da177e4SLinus Torvalds #include <linux/times.h>
501da177e4SLinus Torvalds #include <linux/limits.h>
511da177e4SLinus Torvalds #include <linux/dcache.h>
521da177e4SLinus Torvalds #include <linux/syscalls.h>
53c748e134SAdrian Bunk #include <linux/vmstat.h>
54c255d844SPavel Machek #include <linux/nfs_fs.h>
55c255d844SPavel Machek #include <linux/acpi.h>
5610a0a8d4SJeremy Fitzhardinge #include <linux/reboot.h>
57b0fc494fSSteven Rostedt #include <linux/ftrace.h>
58cdd6c482SIngo Molnar #include <linux/perf_event.h>
598e4228e1SDavid Rientjes #include <linux/oom.h>
6017f60a7dSEric Paris #include <linux/kmod.h>
6173efc039SDan Ballard #include <linux/capability.h>
6240401530SAl Viro #include <linux/binfmts.h>
63cf4aebc2SClark Williams #include <linux/sched/sysctl.h>
64d2921684SEric W. Biederman #include <linux/mount.h>
65cefdca0aSPeter Xu #include <linux/userfaultfd_k.h>
662374c09bSChristoph Hellwig #include <linux/pid.h>
671da177e4SLinus Torvalds 
687f2923c4SChristian Brauner #include "../lib/kstrtox.h"
697f2923c4SChristian Brauner 
707c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
711da177e4SLinus Torvalds #include <asm/processor.h>
721da177e4SLinus Torvalds 
7329cbc78bSAndi Kleen #ifdef CONFIG_X86
7429cbc78bSAndi Kleen #include <asm/nmi.h>
750741f4d2SChuck Ebbert #include <asm/stacktrace.h>
766e7c4025SIngo Molnar #include <asm/io.h>
7729cbc78bSAndi Kleen #endif
78d550bbd4SDavid Howells #ifdef CONFIG_SPARC
79d550bbd4SDavid Howells #include <asm/setup.h>
80d550bbd4SDavid Howells #endif
814f0e056fSDave Young #ifdef CONFIG_RT_MUTEXES
824f0e056fSDave Young #include <linux/rtmutex.h>
834f0e056fSDave Young #endif
84504d7cf1SDon Zickus 
85b13bc7cbSLiu Shixin /* shared constants to be used in various sysctls */
86b13bc7cbSLiu Shixin const int sysctl_vals[] = { 0, 1, 2, 3, 4, 100, 200, 1000, 3000, INT_MAX, 65535, -1 };
87b13bc7cbSLiu Shixin EXPORT_SYMBOL(sysctl_vals);
88b13bc7cbSLiu Shixin 
89b13bc7cbSLiu Shixin const unsigned long sysctl_long_vals[] = { 0, 1, LONG_MAX };
90b13bc7cbSLiu Shixin EXPORT_SYMBOL_GPL(sysctl_long_vals);
91b13bc7cbSLiu Shixin 
921da177e4SLinus Torvalds #if defined(CONFIG_SYSCTL)
931da177e4SLinus Torvalds 
94c4f3b63fSRavikiran G Thirumalai /* Constants used for minimum and maximum */
95c4f3b63fSRavikiran G Thirumalai 
96c5dfd78eSArnaldo Carvalho de Melo #ifdef CONFIG_PERF_EVENTS
97d73840ecSXiaoming Ni static const int six_hundred_forty_kb = 640 * 1024;
98c5dfd78eSArnaldo Carvalho de Melo #endif
99c4f3b63fSRavikiran G Thirumalai 
1009e4a5bdaSAndrea Righi 
101f628867dSStephen Kitt static const int ngroups_max = NGROUPS_MAX;
10273efc039SDan Ballard static const int cap_last_cap = CAP_LAST_CAP;
1031da177e4SLinus Torvalds 
104d6f8ff73SRandy Dunlap #ifdef CONFIG_PROC_SYSCTL
105f4aacea2SKees Cook 
106a19ac337SLuis R. Rodriguez /**
107a19ac337SLuis R. Rodriguez  * enum sysctl_writes_mode - supported sysctl write modes
108a19ac337SLuis R. Rodriguez  *
109a19ac337SLuis R. Rodriguez  * @SYSCTL_WRITES_LEGACY: each write syscall must fully contain the sysctl value
110a19ac337SLuis R. Rodriguez  *	to be written, and multiple writes on the same sysctl file descriptor
111a19ac337SLuis R. Rodriguez  *	will rewrite the sysctl value, regardless of file position. No warning
112a19ac337SLuis R. Rodriguez  *	is issued when the initial position is not 0.
113a19ac337SLuis R. Rodriguez  * @SYSCTL_WRITES_WARN: same as above but warn when the initial file position is
114a19ac337SLuis R. Rodriguez  *	not 0.
115a19ac337SLuis R. Rodriguez  * @SYSCTL_WRITES_STRICT: writes to numeric sysctl entries must always be at
116a19ac337SLuis R. Rodriguez  *	file position 0 and the value must be fully contained in the buffer
117a19ac337SLuis R. Rodriguez  *	sent to the write syscall. If dealing with strings respect the file
118a19ac337SLuis R. Rodriguez  *	position, but restrict this to the max length of the buffer, anything
11965f50f25SWeitao Hou  *	passed the max length will be ignored. Multiple writes will append
120a19ac337SLuis R. Rodriguez  *	to the buffer.
121a19ac337SLuis R. Rodriguez  *
122a19ac337SLuis R. Rodriguez  * These write modes control how current file position affects the behavior of
123a19ac337SLuis R. Rodriguez  * updating sysctl values through the proc interface on each write.
124a19ac337SLuis R. Rodriguez  */
125a19ac337SLuis R. Rodriguez enum sysctl_writes_mode {
126a19ac337SLuis R. Rodriguez 	SYSCTL_WRITES_LEGACY		= -1,
127a19ac337SLuis R. Rodriguez 	SYSCTL_WRITES_WARN		= 0,
128a19ac337SLuis R. Rodriguez 	SYSCTL_WRITES_STRICT		= 1,
129a19ac337SLuis R. Rodriguez };
130f4aacea2SKees Cook 
131a19ac337SLuis R. Rodriguez static enum sysctl_writes_mode sysctl_writes_strict = SYSCTL_WRITES_STRICT;
132f461d2dcSChristoph Hellwig #endif /* CONFIG_PROC_SYSCTL */
133ceb18132SLuis R. Rodriguez 
13467f3977fSAlexandre Ghiti #if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
13567f3977fSAlexandre Ghiti     defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
1361da177e4SLinus Torvalds int sysctl_legacy_va_layout;
1371da177e4SLinus Torvalds #endif
1381da177e4SLinus Torvalds 
139f461d2dcSChristoph Hellwig #endif /* CONFIG_SYSCTL */
140f461d2dcSChristoph Hellwig 
141f461d2dcSChristoph Hellwig /*
142f461d2dcSChristoph Hellwig  * /proc/sys support
143f461d2dcSChristoph Hellwig  */
144f461d2dcSChristoph Hellwig 
145f461d2dcSChristoph Hellwig #ifdef CONFIG_PROC_SYSCTL
146f461d2dcSChristoph Hellwig 
147f461d2dcSChristoph Hellwig static int _proc_do_string(char *data, int maxlen, int write,
14832927393SChristoph Hellwig 		char *buffer, size_t *lenp, loff_t *ppos)
149f461d2dcSChristoph Hellwig {
150f461d2dcSChristoph Hellwig 	size_t len;
15132927393SChristoph Hellwig 	char c, *p;
152f461d2dcSChristoph Hellwig 
153f461d2dcSChristoph Hellwig 	if (!data || !maxlen || !*lenp) {
154f461d2dcSChristoph Hellwig 		*lenp = 0;
155f461d2dcSChristoph Hellwig 		return 0;
156f461d2dcSChristoph Hellwig 	}
157f461d2dcSChristoph Hellwig 
158f461d2dcSChristoph Hellwig 	if (write) {
159f461d2dcSChristoph Hellwig 		if (sysctl_writes_strict == SYSCTL_WRITES_STRICT) {
160f461d2dcSChristoph Hellwig 			/* Only continue writes not past the end of buffer. */
161f461d2dcSChristoph Hellwig 			len = strlen(data);
162f461d2dcSChristoph Hellwig 			if (len > maxlen - 1)
163f461d2dcSChristoph Hellwig 				len = maxlen - 1;
164f461d2dcSChristoph Hellwig 
165f461d2dcSChristoph Hellwig 			if (*ppos > len)
166f461d2dcSChristoph Hellwig 				return 0;
167f461d2dcSChristoph Hellwig 			len = *ppos;
168f461d2dcSChristoph Hellwig 		} else {
169f461d2dcSChristoph Hellwig 			/* Start writing from beginning of buffer. */
170f461d2dcSChristoph Hellwig 			len = 0;
171f461d2dcSChristoph Hellwig 		}
172f461d2dcSChristoph Hellwig 
173f461d2dcSChristoph Hellwig 		*ppos += *lenp;
174f461d2dcSChristoph Hellwig 		p = buffer;
175f461d2dcSChristoph Hellwig 		while ((p - buffer) < *lenp && len < maxlen - 1) {
17632927393SChristoph Hellwig 			c = *(p++);
177f461d2dcSChristoph Hellwig 			if (c == 0 || c == '\n')
178f461d2dcSChristoph Hellwig 				break;
179f461d2dcSChristoph Hellwig 			data[len++] = c;
180f461d2dcSChristoph Hellwig 		}
181f461d2dcSChristoph Hellwig 		data[len] = 0;
182f461d2dcSChristoph Hellwig 	} else {
183f461d2dcSChristoph Hellwig 		len = strlen(data);
184f461d2dcSChristoph Hellwig 		if (len > maxlen)
185f461d2dcSChristoph Hellwig 			len = maxlen;
186f461d2dcSChristoph Hellwig 
187f461d2dcSChristoph Hellwig 		if (*ppos > len) {
188f461d2dcSChristoph Hellwig 			*lenp = 0;
189f461d2dcSChristoph Hellwig 			return 0;
190f461d2dcSChristoph Hellwig 		}
191f461d2dcSChristoph Hellwig 
192f461d2dcSChristoph Hellwig 		data += *ppos;
193f461d2dcSChristoph Hellwig 		len  -= *ppos;
194f461d2dcSChristoph Hellwig 
195f461d2dcSChristoph Hellwig 		if (len > *lenp)
196f461d2dcSChristoph Hellwig 			len = *lenp;
197f461d2dcSChristoph Hellwig 		if (len)
19832927393SChristoph Hellwig 			memcpy(buffer, data, len);
199f461d2dcSChristoph Hellwig 		if (len < *lenp) {
20032927393SChristoph Hellwig 			buffer[len] = '\n';
201f461d2dcSChristoph Hellwig 			len++;
202f461d2dcSChristoph Hellwig 		}
203f461d2dcSChristoph Hellwig 		*lenp = len;
204f461d2dcSChristoph Hellwig 		*ppos += len;
205f461d2dcSChristoph Hellwig 	}
206f461d2dcSChristoph Hellwig 	return 0;
207f461d2dcSChristoph Hellwig }
208f461d2dcSChristoph Hellwig 
209f461d2dcSChristoph Hellwig static void warn_sysctl_write(struct ctl_table *table)
210f461d2dcSChristoph Hellwig {
211f461d2dcSChristoph Hellwig 	pr_warn_once("%s wrote to %s when file position was not 0!\n"
212f461d2dcSChristoph Hellwig 		"This will not be supported in the future. To silence this\n"
213f461d2dcSChristoph Hellwig 		"warning, set kernel.sysctl_writes_strict = -1\n",
214f461d2dcSChristoph Hellwig 		current->comm, table->procname);
215f461d2dcSChristoph Hellwig }
216f461d2dcSChristoph Hellwig 
217f461d2dcSChristoph Hellwig /**
218f461d2dcSChristoph Hellwig  * proc_first_pos_non_zero_ignore - check if first position is allowed
219f461d2dcSChristoph Hellwig  * @ppos: file position
220f461d2dcSChristoph Hellwig  * @table: the sysctl table
221f461d2dcSChristoph Hellwig  *
222f461d2dcSChristoph Hellwig  * Returns true if the first position is non-zero and the sysctl_writes_strict
223f461d2dcSChristoph Hellwig  * mode indicates this is not allowed for numeric input types. String proc
224f461d2dcSChristoph Hellwig  * handlers can ignore the return value.
225f461d2dcSChristoph Hellwig  */
226f461d2dcSChristoph Hellwig static bool proc_first_pos_non_zero_ignore(loff_t *ppos,
227f461d2dcSChristoph Hellwig 					   struct ctl_table *table)
228f461d2dcSChristoph Hellwig {
229f461d2dcSChristoph Hellwig 	if (!*ppos)
230f461d2dcSChristoph Hellwig 		return false;
231f461d2dcSChristoph Hellwig 
232f461d2dcSChristoph Hellwig 	switch (sysctl_writes_strict) {
233f461d2dcSChristoph Hellwig 	case SYSCTL_WRITES_STRICT:
234f461d2dcSChristoph Hellwig 		return true;
235f461d2dcSChristoph Hellwig 	case SYSCTL_WRITES_WARN:
236f461d2dcSChristoph Hellwig 		warn_sysctl_write(table);
237f461d2dcSChristoph Hellwig 		return false;
238f461d2dcSChristoph Hellwig 	default:
239f461d2dcSChristoph Hellwig 		return false;
240f461d2dcSChristoph Hellwig 	}
241f461d2dcSChristoph Hellwig }
242f461d2dcSChristoph Hellwig 
243f461d2dcSChristoph Hellwig /**
244f461d2dcSChristoph Hellwig  * proc_dostring - read a string sysctl
245f461d2dcSChristoph Hellwig  * @table: the sysctl table
246f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
247f461d2dcSChristoph Hellwig  * @buffer: the user buffer
248f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
249f461d2dcSChristoph Hellwig  * @ppos: file position
250f461d2dcSChristoph Hellwig  *
251f461d2dcSChristoph Hellwig  * Reads/writes a string from/to the user buffer. If the kernel
252f461d2dcSChristoph Hellwig  * buffer provided is not large enough to hold the string, the
253f461d2dcSChristoph Hellwig  * string is truncated. The copied string is %NULL-terminated.
254f461d2dcSChristoph Hellwig  * If the string is being read by the user process, it is copied
255f461d2dcSChristoph Hellwig  * and a newline '\n' is added. It is truncated if the buffer is
256f461d2dcSChristoph Hellwig  * not large enough.
257f461d2dcSChristoph Hellwig  *
258f461d2dcSChristoph Hellwig  * Returns 0 on success.
259f461d2dcSChristoph Hellwig  */
260f461d2dcSChristoph Hellwig int proc_dostring(struct ctl_table *table, int write,
26132927393SChristoph Hellwig 		  void *buffer, size_t *lenp, loff_t *ppos)
262f461d2dcSChristoph Hellwig {
263f461d2dcSChristoph Hellwig 	if (write)
264f461d2dcSChristoph Hellwig 		proc_first_pos_non_zero_ignore(ppos, table);
265f461d2dcSChristoph Hellwig 
26632927393SChristoph Hellwig 	return _proc_do_string(table->data, table->maxlen, write, buffer, lenp,
26732927393SChristoph Hellwig 			ppos);
268f461d2dcSChristoph Hellwig }
269f461d2dcSChristoph Hellwig 
270bce93322SLinus Torvalds static void proc_skip_spaces(char **buf, size_t *size)
271f461d2dcSChristoph Hellwig {
272bce93322SLinus Torvalds 	while (*size) {
273bce93322SLinus Torvalds 		if (!isspace(**buf))
274bce93322SLinus Torvalds 			break;
275bce93322SLinus Torvalds 		(*size)--;
276bce93322SLinus Torvalds 		(*buf)++;
277bce93322SLinus Torvalds 	}
278f461d2dcSChristoph Hellwig }
279f461d2dcSChristoph Hellwig 
280f461d2dcSChristoph Hellwig static void proc_skip_char(char **buf, size_t *size, const char v)
281f461d2dcSChristoph Hellwig {
282f461d2dcSChristoph Hellwig 	while (*size) {
283f461d2dcSChristoph Hellwig 		if (**buf != v)
284f461d2dcSChristoph Hellwig 			break;
285f461d2dcSChristoph Hellwig 		(*size)--;
286f461d2dcSChristoph Hellwig 		(*buf)++;
287f461d2dcSChristoph Hellwig 	}
288f461d2dcSChristoph Hellwig }
289f461d2dcSChristoph Hellwig 
290f461d2dcSChristoph Hellwig /**
291f461d2dcSChristoph Hellwig  * strtoul_lenient - parse an ASCII formatted integer from a buffer and only
292f461d2dcSChristoph Hellwig  *                   fail on overflow
293f461d2dcSChristoph Hellwig  *
294f461d2dcSChristoph Hellwig  * @cp: kernel buffer containing the string to parse
295f461d2dcSChristoph Hellwig  * @endp: pointer to store the trailing characters
296f461d2dcSChristoph Hellwig  * @base: the base to use
297f461d2dcSChristoph Hellwig  * @res: where the parsed integer will be stored
298f461d2dcSChristoph Hellwig  *
299f461d2dcSChristoph Hellwig  * In case of success 0 is returned and @res will contain the parsed integer,
300f461d2dcSChristoph Hellwig  * @endp will hold any trailing characters.
301f461d2dcSChristoph Hellwig  * This function will fail the parse on overflow. If there wasn't an overflow
302f461d2dcSChristoph Hellwig  * the function will defer the decision what characters count as invalid to the
303f461d2dcSChristoph Hellwig  * caller.
304f461d2dcSChristoph Hellwig  */
305f461d2dcSChristoph Hellwig static int strtoul_lenient(const char *cp, char **endp, unsigned int base,
306f461d2dcSChristoph Hellwig 			   unsigned long *res)
307f461d2dcSChristoph Hellwig {
308f461d2dcSChristoph Hellwig 	unsigned long long result;
309f461d2dcSChristoph Hellwig 	unsigned int rv;
310f461d2dcSChristoph Hellwig 
311f461d2dcSChristoph Hellwig 	cp = _parse_integer_fixup_radix(cp, &base);
312f461d2dcSChristoph Hellwig 	rv = _parse_integer(cp, base, &result);
313f461d2dcSChristoph Hellwig 	if ((rv & KSTRTOX_OVERFLOW) || (result != (unsigned long)result))
314f461d2dcSChristoph Hellwig 		return -ERANGE;
315f461d2dcSChristoph Hellwig 
316f461d2dcSChristoph Hellwig 	cp += rv;
317f461d2dcSChristoph Hellwig 
318f461d2dcSChristoph Hellwig 	if (endp)
319f461d2dcSChristoph Hellwig 		*endp = (char *)cp;
320f461d2dcSChristoph Hellwig 
321f461d2dcSChristoph Hellwig 	*res = (unsigned long)result;
322f461d2dcSChristoph Hellwig 	return 0;
323f461d2dcSChristoph Hellwig }
324f461d2dcSChristoph Hellwig 
325f461d2dcSChristoph Hellwig #define TMPBUFLEN 22
326f461d2dcSChristoph Hellwig /**
327f461d2dcSChristoph Hellwig  * proc_get_long - reads an ASCII formatted integer from a user buffer
328f461d2dcSChristoph Hellwig  *
329f461d2dcSChristoph Hellwig  * @buf: a kernel buffer
330f461d2dcSChristoph Hellwig  * @size: size of the kernel buffer
331f461d2dcSChristoph Hellwig  * @val: this is where the number will be stored
332f461d2dcSChristoph Hellwig  * @neg: set to %TRUE if number is negative
333f461d2dcSChristoph Hellwig  * @perm_tr: a vector which contains the allowed trailers
334f461d2dcSChristoph Hellwig  * @perm_tr_len: size of the perm_tr vector
335f461d2dcSChristoph Hellwig  * @tr: pointer to store the trailer character
336f461d2dcSChristoph Hellwig  *
337f461d2dcSChristoph Hellwig  * In case of success %0 is returned and @buf and @size are updated with
338f461d2dcSChristoph Hellwig  * the amount of bytes read. If @tr is non-NULL and a trailing
339f461d2dcSChristoph Hellwig  * character exists (size is non-zero after returning from this
340f461d2dcSChristoph Hellwig  * function), @tr is updated with the trailing character.
341f461d2dcSChristoph Hellwig  */
342f461d2dcSChristoph Hellwig static int proc_get_long(char **buf, size_t *size,
343f461d2dcSChristoph Hellwig 			  unsigned long *val, bool *neg,
344f461d2dcSChristoph Hellwig 			  const char *perm_tr, unsigned perm_tr_len, char *tr)
345f461d2dcSChristoph Hellwig {
346f461d2dcSChristoph Hellwig 	char *p, tmp[TMPBUFLEN];
347e6cfaf34SLinus Torvalds 	ssize_t len = *size;
348f461d2dcSChristoph Hellwig 
349e6cfaf34SLinus Torvalds 	if (len <= 0)
350f461d2dcSChristoph Hellwig 		return -EINVAL;
351f461d2dcSChristoph Hellwig 
352f461d2dcSChristoph Hellwig 	if (len > TMPBUFLEN - 1)
353f461d2dcSChristoph Hellwig 		len = TMPBUFLEN - 1;
354f461d2dcSChristoph Hellwig 
355f461d2dcSChristoph Hellwig 	memcpy(tmp, *buf, len);
356f461d2dcSChristoph Hellwig 
357f461d2dcSChristoph Hellwig 	tmp[len] = 0;
358f461d2dcSChristoph Hellwig 	p = tmp;
359f461d2dcSChristoph Hellwig 	if (*p == '-' && *size > 1) {
360f461d2dcSChristoph Hellwig 		*neg = true;
361f461d2dcSChristoph Hellwig 		p++;
362f461d2dcSChristoph Hellwig 	} else
363f461d2dcSChristoph Hellwig 		*neg = false;
364f461d2dcSChristoph Hellwig 	if (!isdigit(*p))
365f461d2dcSChristoph Hellwig 		return -EINVAL;
366f461d2dcSChristoph Hellwig 
367f461d2dcSChristoph Hellwig 	if (strtoul_lenient(p, &p, 0, val))
368f461d2dcSChristoph Hellwig 		return -EINVAL;
369f461d2dcSChristoph Hellwig 
370f461d2dcSChristoph Hellwig 	len = p - tmp;
371f461d2dcSChristoph Hellwig 
372f461d2dcSChristoph Hellwig 	/* We don't know if the next char is whitespace thus we may accept
373f461d2dcSChristoph Hellwig 	 * invalid integers (e.g. 1234...a) or two integers instead of one
374f461d2dcSChristoph Hellwig 	 * (e.g. 123...1). So lets not allow such large numbers. */
375f461d2dcSChristoph Hellwig 	if (len == TMPBUFLEN - 1)
376f461d2dcSChristoph Hellwig 		return -EINVAL;
377f461d2dcSChristoph Hellwig 
378f461d2dcSChristoph Hellwig 	if (len < *size && perm_tr_len && !memchr(perm_tr, *p, perm_tr_len))
379f461d2dcSChristoph Hellwig 		return -EINVAL;
380f461d2dcSChristoph Hellwig 
381f461d2dcSChristoph Hellwig 	if (tr && (len < *size))
382f461d2dcSChristoph Hellwig 		*tr = *p;
383f461d2dcSChristoph Hellwig 
384f461d2dcSChristoph Hellwig 	*buf += len;
385f461d2dcSChristoph Hellwig 	*size -= len;
386f461d2dcSChristoph Hellwig 
387f461d2dcSChristoph Hellwig 	return 0;
388f461d2dcSChristoph Hellwig }
389f461d2dcSChristoph Hellwig 
390f461d2dcSChristoph Hellwig /**
391f461d2dcSChristoph Hellwig  * proc_put_long - converts an integer to a decimal ASCII formatted string
392f461d2dcSChristoph Hellwig  *
393f461d2dcSChristoph Hellwig  * @buf: the user buffer
394f461d2dcSChristoph Hellwig  * @size: the size of the user buffer
395f461d2dcSChristoph Hellwig  * @val: the integer to be converted
396f461d2dcSChristoph Hellwig  * @neg: sign of the number, %TRUE for negative
397f461d2dcSChristoph Hellwig  *
39832927393SChristoph Hellwig  * In case of success @buf and @size are updated with the amount of bytes
39932927393SChristoph Hellwig  * written.
400f461d2dcSChristoph Hellwig  */
40132927393SChristoph Hellwig static void proc_put_long(void **buf, size_t *size, unsigned long val, bool neg)
402f461d2dcSChristoph Hellwig {
403f461d2dcSChristoph Hellwig 	int len;
404f461d2dcSChristoph Hellwig 	char tmp[TMPBUFLEN], *p = tmp;
405f461d2dcSChristoph Hellwig 
406f461d2dcSChristoph Hellwig 	sprintf(p, "%s%lu", neg ? "-" : "", val);
407f461d2dcSChristoph Hellwig 	len = strlen(tmp);
408f461d2dcSChristoph Hellwig 	if (len > *size)
409f461d2dcSChristoph Hellwig 		len = *size;
41032927393SChristoph Hellwig 	memcpy(*buf, tmp, len);
411f461d2dcSChristoph Hellwig 	*size -= len;
412f461d2dcSChristoph Hellwig 	*buf += len;
413f461d2dcSChristoph Hellwig }
414f461d2dcSChristoph Hellwig #undef TMPBUFLEN
415f461d2dcSChristoph Hellwig 
41632927393SChristoph Hellwig static void proc_put_char(void **buf, size_t *size, char c)
417f461d2dcSChristoph Hellwig {
418f461d2dcSChristoph Hellwig 	if (*size) {
41932927393SChristoph Hellwig 		char **buffer = (char **)buf;
42032927393SChristoph Hellwig 		**buffer = c;
42132927393SChristoph Hellwig 
42232927393SChristoph Hellwig 		(*size)--;
42332927393SChristoph Hellwig 		(*buffer)++;
424f461d2dcSChristoph Hellwig 		*buf = *buffer;
425f461d2dcSChristoph Hellwig 	}
426f461d2dcSChristoph Hellwig }
427f461d2dcSChristoph Hellwig 
428f461d2dcSChristoph Hellwig static int do_proc_dointvec_conv(bool *negp, unsigned long *lvalp,
429f461d2dcSChristoph Hellwig 				 int *valp,
430f461d2dcSChristoph Hellwig 				 int write, void *data)
431f461d2dcSChristoph Hellwig {
432f461d2dcSChristoph Hellwig 	if (write) {
433f461d2dcSChristoph Hellwig 		if (*negp) {
434f461d2dcSChristoph Hellwig 			if (*lvalp > (unsigned long) INT_MAX + 1)
435f461d2dcSChristoph Hellwig 				return -EINVAL;
4361f1be04bSKuniyuki Iwashima 			WRITE_ONCE(*valp, -*lvalp);
437f461d2dcSChristoph Hellwig 		} else {
438f461d2dcSChristoph Hellwig 			if (*lvalp > (unsigned long) INT_MAX)
439f461d2dcSChristoph Hellwig 				return -EINVAL;
4401f1be04bSKuniyuki Iwashima 			WRITE_ONCE(*valp, *lvalp);
441f461d2dcSChristoph Hellwig 		}
442f461d2dcSChristoph Hellwig 	} else {
4431f1be04bSKuniyuki Iwashima 		int val = READ_ONCE(*valp);
444f461d2dcSChristoph Hellwig 		if (val < 0) {
445f461d2dcSChristoph Hellwig 			*negp = true;
446f461d2dcSChristoph Hellwig 			*lvalp = -(unsigned long)val;
447f461d2dcSChristoph Hellwig 		} else {
448f461d2dcSChristoph Hellwig 			*negp = false;
449f461d2dcSChristoph Hellwig 			*lvalp = (unsigned long)val;
450f461d2dcSChristoph Hellwig 		}
451f461d2dcSChristoph Hellwig 	}
452f461d2dcSChristoph Hellwig 	return 0;
453f461d2dcSChristoph Hellwig }
454f461d2dcSChristoph Hellwig 
455f461d2dcSChristoph Hellwig static int do_proc_douintvec_conv(unsigned long *lvalp,
456f461d2dcSChristoph Hellwig 				  unsigned int *valp,
457f461d2dcSChristoph Hellwig 				  int write, void *data)
458f461d2dcSChristoph Hellwig {
459f461d2dcSChristoph Hellwig 	if (write) {
460f461d2dcSChristoph Hellwig 		if (*lvalp > UINT_MAX)
461f461d2dcSChristoph Hellwig 			return -EINVAL;
4624762b532SKuniyuki Iwashima 		WRITE_ONCE(*valp, *lvalp);
463f461d2dcSChristoph Hellwig 	} else {
4644762b532SKuniyuki Iwashima 		unsigned int val = READ_ONCE(*valp);
465f461d2dcSChristoph Hellwig 		*lvalp = (unsigned long)val;
466f461d2dcSChristoph Hellwig 	}
467f461d2dcSChristoph Hellwig 	return 0;
468f461d2dcSChristoph Hellwig }
469f461d2dcSChristoph Hellwig 
470f461d2dcSChristoph Hellwig static const char proc_wspace_sep[] = { ' ', '\t', '\n' };
471f461d2dcSChristoph Hellwig 
472f461d2dcSChristoph Hellwig static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
47332927393SChristoph Hellwig 		  int write, void *buffer,
474f461d2dcSChristoph Hellwig 		  size_t *lenp, loff_t *ppos,
475f461d2dcSChristoph Hellwig 		  int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
476f461d2dcSChristoph Hellwig 			      int write, void *data),
477f461d2dcSChristoph Hellwig 		  void *data)
478f461d2dcSChristoph Hellwig {
479f461d2dcSChristoph Hellwig 	int *i, vleft, first = 1, err = 0;
480f461d2dcSChristoph Hellwig 	size_t left;
48132927393SChristoph Hellwig 	char *p;
482f461d2dcSChristoph Hellwig 
483f461d2dcSChristoph Hellwig 	if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
484f461d2dcSChristoph Hellwig 		*lenp = 0;
485f461d2dcSChristoph Hellwig 		return 0;
486f461d2dcSChristoph Hellwig 	}
487f461d2dcSChristoph Hellwig 
488f461d2dcSChristoph Hellwig 	i = (int *) tbl_data;
489f461d2dcSChristoph Hellwig 	vleft = table->maxlen / sizeof(*i);
490f461d2dcSChristoph Hellwig 	left = *lenp;
491f461d2dcSChristoph Hellwig 
492f461d2dcSChristoph Hellwig 	if (!conv)
493f461d2dcSChristoph Hellwig 		conv = do_proc_dointvec_conv;
494f461d2dcSChristoph Hellwig 
495f461d2dcSChristoph Hellwig 	if (write) {
496f461d2dcSChristoph Hellwig 		if (proc_first_pos_non_zero_ignore(ppos, table))
497f461d2dcSChristoph Hellwig 			goto out;
498f461d2dcSChristoph Hellwig 
499f461d2dcSChristoph Hellwig 		if (left > PAGE_SIZE - 1)
500f461d2dcSChristoph Hellwig 			left = PAGE_SIZE - 1;
50132927393SChristoph Hellwig 		p = buffer;
502f461d2dcSChristoph Hellwig 	}
503f461d2dcSChristoph Hellwig 
504f461d2dcSChristoph Hellwig 	for (; left && vleft--; i++, first=0) {
505f461d2dcSChristoph Hellwig 		unsigned long lval;
506f461d2dcSChristoph Hellwig 		bool neg;
507f461d2dcSChristoph Hellwig 
508f461d2dcSChristoph Hellwig 		if (write) {
509bce93322SLinus Torvalds 			proc_skip_spaces(&p, &left);
510f461d2dcSChristoph Hellwig 
511f461d2dcSChristoph Hellwig 			if (!left)
512f461d2dcSChristoph Hellwig 				break;
513f461d2dcSChristoph Hellwig 			err = proc_get_long(&p, &left, &lval, &neg,
514f461d2dcSChristoph Hellwig 					     proc_wspace_sep,
515f461d2dcSChristoph Hellwig 					     sizeof(proc_wspace_sep), NULL);
516f461d2dcSChristoph Hellwig 			if (err)
517f461d2dcSChristoph Hellwig 				break;
518f461d2dcSChristoph Hellwig 			if (conv(&neg, &lval, i, 1, data)) {
519f461d2dcSChristoph Hellwig 				err = -EINVAL;
520f461d2dcSChristoph Hellwig 				break;
521f461d2dcSChristoph Hellwig 			}
522f461d2dcSChristoph Hellwig 		} else {
523f461d2dcSChristoph Hellwig 			if (conv(&neg, &lval, i, 0, data)) {
524f461d2dcSChristoph Hellwig 				err = -EINVAL;
525f461d2dcSChristoph Hellwig 				break;
526f461d2dcSChristoph Hellwig 			}
527f461d2dcSChristoph Hellwig 			if (!first)
52832927393SChristoph Hellwig 				proc_put_char(&buffer, &left, '\t');
52932927393SChristoph Hellwig 			proc_put_long(&buffer, &left, lval, neg);
530f461d2dcSChristoph Hellwig 		}
531f461d2dcSChristoph Hellwig 	}
532f461d2dcSChristoph Hellwig 
533f461d2dcSChristoph Hellwig 	if (!write && !first && left && !err)
53432927393SChristoph Hellwig 		proc_put_char(&buffer, &left, '\n');
535f461d2dcSChristoph Hellwig 	if (write && !err && left)
536bce93322SLinus Torvalds 		proc_skip_spaces(&p, &left);
53732927393SChristoph Hellwig 	if (write && first)
538f461d2dcSChristoph Hellwig 		return err ? : -EINVAL;
539f461d2dcSChristoph Hellwig 	*lenp -= left;
540f461d2dcSChristoph Hellwig out:
541f461d2dcSChristoph Hellwig 	*ppos += *lenp;
542f461d2dcSChristoph Hellwig 	return err;
543f461d2dcSChristoph Hellwig }
544f461d2dcSChristoph Hellwig 
545f461d2dcSChristoph Hellwig static int do_proc_dointvec(struct ctl_table *table, int write,
54632927393SChristoph Hellwig 		  void *buffer, size_t *lenp, loff_t *ppos,
547f461d2dcSChristoph Hellwig 		  int (*conv)(bool *negp, unsigned long *lvalp, int *valp,
548f461d2dcSChristoph Hellwig 			      int write, void *data),
549f461d2dcSChristoph Hellwig 		  void *data)
550f461d2dcSChristoph Hellwig {
551f461d2dcSChristoph Hellwig 	return __do_proc_dointvec(table->data, table, write,
552f461d2dcSChristoph Hellwig 			buffer, lenp, ppos, conv, data);
553f461d2dcSChristoph Hellwig }
554f461d2dcSChristoph Hellwig 
555f461d2dcSChristoph Hellwig static int do_proc_douintvec_w(unsigned int *tbl_data,
556f461d2dcSChristoph Hellwig 			       struct ctl_table *table,
55732927393SChristoph Hellwig 			       void *buffer,
558f461d2dcSChristoph Hellwig 			       size_t *lenp, loff_t *ppos,
559f461d2dcSChristoph Hellwig 			       int (*conv)(unsigned long *lvalp,
560f461d2dcSChristoph Hellwig 					   unsigned int *valp,
561f461d2dcSChristoph Hellwig 					   int write, void *data),
562f461d2dcSChristoph Hellwig 			       void *data)
563f461d2dcSChristoph Hellwig {
564f461d2dcSChristoph Hellwig 	unsigned long lval;
565f461d2dcSChristoph Hellwig 	int err = 0;
566f461d2dcSChristoph Hellwig 	size_t left;
567f461d2dcSChristoph Hellwig 	bool neg;
56832927393SChristoph Hellwig 	char *p = buffer;
569f461d2dcSChristoph Hellwig 
570f461d2dcSChristoph Hellwig 	left = *lenp;
571f461d2dcSChristoph Hellwig 
572f461d2dcSChristoph Hellwig 	if (proc_first_pos_non_zero_ignore(ppos, table))
573f461d2dcSChristoph Hellwig 		goto bail_early;
574f461d2dcSChristoph Hellwig 
575f461d2dcSChristoph Hellwig 	if (left > PAGE_SIZE - 1)
576f461d2dcSChristoph Hellwig 		left = PAGE_SIZE - 1;
577f461d2dcSChristoph Hellwig 
578bce93322SLinus Torvalds 	proc_skip_spaces(&p, &left);
579f461d2dcSChristoph Hellwig 	if (!left) {
580f461d2dcSChristoph Hellwig 		err = -EINVAL;
581f461d2dcSChristoph Hellwig 		goto out_free;
582f461d2dcSChristoph Hellwig 	}
583f461d2dcSChristoph Hellwig 
584f461d2dcSChristoph Hellwig 	err = proc_get_long(&p, &left, &lval, &neg,
585f461d2dcSChristoph Hellwig 			     proc_wspace_sep,
586f461d2dcSChristoph Hellwig 			     sizeof(proc_wspace_sep), NULL);
587f461d2dcSChristoph Hellwig 	if (err || neg) {
588f461d2dcSChristoph Hellwig 		err = -EINVAL;
589f461d2dcSChristoph Hellwig 		goto out_free;
590f461d2dcSChristoph Hellwig 	}
591f461d2dcSChristoph Hellwig 
592f461d2dcSChristoph Hellwig 	if (conv(&lval, tbl_data, 1, data)) {
593f461d2dcSChristoph Hellwig 		err = -EINVAL;
594f461d2dcSChristoph Hellwig 		goto out_free;
595f461d2dcSChristoph Hellwig 	}
596f461d2dcSChristoph Hellwig 
597f461d2dcSChristoph Hellwig 	if (!err && left)
598bce93322SLinus Torvalds 		proc_skip_spaces(&p, &left);
599f461d2dcSChristoph Hellwig 
600f461d2dcSChristoph Hellwig out_free:
601f461d2dcSChristoph Hellwig 	if (err)
602f461d2dcSChristoph Hellwig 		return -EINVAL;
603f461d2dcSChristoph Hellwig 
604f461d2dcSChristoph Hellwig 	return 0;
605f461d2dcSChristoph Hellwig 
606f461d2dcSChristoph Hellwig 	/* This is in keeping with old __do_proc_dointvec() */
607f461d2dcSChristoph Hellwig bail_early:
608f461d2dcSChristoph Hellwig 	*ppos += *lenp;
609f461d2dcSChristoph Hellwig 	return err;
610f461d2dcSChristoph Hellwig }
611f461d2dcSChristoph Hellwig 
61232927393SChristoph Hellwig static int do_proc_douintvec_r(unsigned int *tbl_data, void *buffer,
613f461d2dcSChristoph Hellwig 			       size_t *lenp, loff_t *ppos,
614f461d2dcSChristoph Hellwig 			       int (*conv)(unsigned long *lvalp,
615f461d2dcSChristoph Hellwig 					   unsigned int *valp,
616f461d2dcSChristoph Hellwig 					   int write, void *data),
617f461d2dcSChristoph Hellwig 			       void *data)
618f461d2dcSChristoph Hellwig {
619f461d2dcSChristoph Hellwig 	unsigned long lval;
620f461d2dcSChristoph Hellwig 	int err = 0;
621f461d2dcSChristoph Hellwig 	size_t left;
622f461d2dcSChristoph Hellwig 
623f461d2dcSChristoph Hellwig 	left = *lenp;
624f461d2dcSChristoph Hellwig 
625f461d2dcSChristoph Hellwig 	if (conv(&lval, tbl_data, 0, data)) {
626f461d2dcSChristoph Hellwig 		err = -EINVAL;
627f461d2dcSChristoph Hellwig 		goto out;
628f461d2dcSChristoph Hellwig 	}
629f461d2dcSChristoph Hellwig 
63032927393SChristoph Hellwig 	proc_put_long(&buffer, &left, lval, false);
63132927393SChristoph Hellwig 	if (!left)
632f461d2dcSChristoph Hellwig 		goto out;
633f461d2dcSChristoph Hellwig 
63432927393SChristoph Hellwig 	proc_put_char(&buffer, &left, '\n');
635f461d2dcSChristoph Hellwig 
636f461d2dcSChristoph Hellwig out:
637f461d2dcSChristoph Hellwig 	*lenp -= left;
638f461d2dcSChristoph Hellwig 	*ppos += *lenp;
639f461d2dcSChristoph Hellwig 
640f461d2dcSChristoph Hellwig 	return err;
641f461d2dcSChristoph Hellwig }
642f461d2dcSChristoph Hellwig 
643f461d2dcSChristoph Hellwig static int __do_proc_douintvec(void *tbl_data, struct ctl_table *table,
64432927393SChristoph Hellwig 			       int write, void *buffer,
645f461d2dcSChristoph Hellwig 			       size_t *lenp, loff_t *ppos,
646f461d2dcSChristoph Hellwig 			       int (*conv)(unsigned long *lvalp,
647f461d2dcSChristoph Hellwig 					   unsigned int *valp,
648f461d2dcSChristoph Hellwig 					   int write, void *data),
649f461d2dcSChristoph Hellwig 			       void *data)
650f461d2dcSChristoph Hellwig {
651f461d2dcSChristoph Hellwig 	unsigned int *i, vleft;
652f461d2dcSChristoph Hellwig 
653f461d2dcSChristoph Hellwig 	if (!tbl_data || !table->maxlen || !*lenp || (*ppos && !write)) {
654f461d2dcSChristoph Hellwig 		*lenp = 0;
655f461d2dcSChristoph Hellwig 		return 0;
656f461d2dcSChristoph Hellwig 	}
657f461d2dcSChristoph Hellwig 
658f461d2dcSChristoph Hellwig 	i = (unsigned int *) tbl_data;
659f461d2dcSChristoph Hellwig 	vleft = table->maxlen / sizeof(*i);
660f461d2dcSChristoph Hellwig 
661f461d2dcSChristoph Hellwig 	/*
662f461d2dcSChristoph Hellwig 	 * Arrays are not supported, keep this simple. *Do not* add
663f461d2dcSChristoph Hellwig 	 * support for them.
664f461d2dcSChristoph Hellwig 	 */
665f461d2dcSChristoph Hellwig 	if (vleft != 1) {
666f461d2dcSChristoph Hellwig 		*lenp = 0;
667f461d2dcSChristoph Hellwig 		return -EINVAL;
668f461d2dcSChristoph Hellwig 	}
669f461d2dcSChristoph Hellwig 
670f461d2dcSChristoph Hellwig 	if (!conv)
671f461d2dcSChristoph Hellwig 		conv = do_proc_douintvec_conv;
672f461d2dcSChristoph Hellwig 
673f461d2dcSChristoph Hellwig 	if (write)
674f461d2dcSChristoph Hellwig 		return do_proc_douintvec_w(i, table, buffer, lenp, ppos,
675f461d2dcSChristoph Hellwig 					   conv, data);
676f461d2dcSChristoph Hellwig 	return do_proc_douintvec_r(i, buffer, lenp, ppos, conv, data);
677f461d2dcSChristoph Hellwig }
678f461d2dcSChristoph Hellwig 
6791998f193SLuis Chamberlain int do_proc_douintvec(struct ctl_table *table, int write,
68032927393SChristoph Hellwig 		      void *buffer, size_t *lenp, loff_t *ppos,
681f461d2dcSChristoph Hellwig 		      int (*conv)(unsigned long *lvalp,
682f461d2dcSChristoph Hellwig 				  unsigned int *valp,
683f461d2dcSChristoph Hellwig 				  int write, void *data),
684f461d2dcSChristoph Hellwig 		      void *data)
685f461d2dcSChristoph Hellwig {
686f461d2dcSChristoph Hellwig 	return __do_proc_douintvec(table->data, table, write,
687f461d2dcSChristoph Hellwig 				   buffer, lenp, ppos, conv, data);
688f461d2dcSChristoph Hellwig }
689f461d2dcSChristoph Hellwig 
690f461d2dcSChristoph Hellwig /**
691a2071573SJia He  * proc_dobool - read/write a bool
692a2071573SJia He  * @table: the sysctl table
693a2071573SJia He  * @write: %TRUE if this is a write to the sysctl file
694a2071573SJia He  * @buffer: the user buffer
695a2071573SJia He  * @lenp: the size of the user buffer
696a2071573SJia He  * @ppos: file position
697a2071573SJia He  *
698*f1aa2eb5SOndrej Mosnacek  * Reads/writes one integer value from/to the user buffer,
699*f1aa2eb5SOndrej Mosnacek  * treated as an ASCII string.
700*f1aa2eb5SOndrej Mosnacek  *
701*f1aa2eb5SOndrej Mosnacek  * table->data must point to a bool variable and table->maxlen must
702*f1aa2eb5SOndrej Mosnacek  * be sizeof(bool).
703a2071573SJia He  *
704a2071573SJia He  * Returns 0 on success.
705a2071573SJia He  */
706a2071573SJia He int proc_dobool(struct ctl_table *table, int write, void *buffer,
707a2071573SJia He 		size_t *lenp, loff_t *ppos)
708a2071573SJia He {
709*f1aa2eb5SOndrej Mosnacek 	struct ctl_table tmp;
710*f1aa2eb5SOndrej Mosnacek 	bool *data = table->data;
711*f1aa2eb5SOndrej Mosnacek 	int res, val;
712*f1aa2eb5SOndrej Mosnacek 
713*f1aa2eb5SOndrej Mosnacek 	/* Do not support arrays yet. */
714*f1aa2eb5SOndrej Mosnacek 	if (table->maxlen != sizeof(bool))
715*f1aa2eb5SOndrej Mosnacek 		return -EINVAL;
716*f1aa2eb5SOndrej Mosnacek 
717*f1aa2eb5SOndrej Mosnacek 	tmp = *table;
718*f1aa2eb5SOndrej Mosnacek 	tmp.maxlen = sizeof(val);
719*f1aa2eb5SOndrej Mosnacek 	tmp.data = &val;
720*f1aa2eb5SOndrej Mosnacek 
721*f1aa2eb5SOndrej Mosnacek 	val = READ_ONCE(*data);
722*f1aa2eb5SOndrej Mosnacek 	res = proc_dointvec(&tmp, write, buffer, lenp, ppos);
723*f1aa2eb5SOndrej Mosnacek 	if (res)
724*f1aa2eb5SOndrej Mosnacek 		return res;
725*f1aa2eb5SOndrej Mosnacek 	if (write)
726*f1aa2eb5SOndrej Mosnacek 		WRITE_ONCE(*data, val);
727*f1aa2eb5SOndrej Mosnacek 	return 0;
728a2071573SJia He }
729a2071573SJia He 
730a2071573SJia He /**
731f461d2dcSChristoph Hellwig  * proc_dointvec - read a vector of integers
732f461d2dcSChristoph Hellwig  * @table: the sysctl table
733f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
734f461d2dcSChristoph Hellwig  * @buffer: the user buffer
735f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
736f461d2dcSChristoph Hellwig  * @ppos: file position
737f461d2dcSChristoph Hellwig  *
738f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
739f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
740f461d2dcSChristoph Hellwig  *
741f461d2dcSChristoph Hellwig  * Returns 0 on success.
742f461d2dcSChristoph Hellwig  */
74332927393SChristoph Hellwig int proc_dointvec(struct ctl_table *table, int write, void *buffer,
74432927393SChristoph Hellwig 		  size_t *lenp, loff_t *ppos)
745f461d2dcSChristoph Hellwig {
746f461d2dcSChristoph Hellwig 	return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL);
747f461d2dcSChristoph Hellwig }
748f461d2dcSChristoph Hellwig 
749f461d2dcSChristoph Hellwig #ifdef CONFIG_COMPACTION
750f461d2dcSChristoph Hellwig static int proc_dointvec_minmax_warn_RT_change(struct ctl_table *table,
75132927393SChristoph Hellwig 		int write, void *buffer, size_t *lenp, loff_t *ppos)
752f461d2dcSChristoph Hellwig {
753f461d2dcSChristoph Hellwig 	int ret, old;
754f461d2dcSChristoph Hellwig 
755f461d2dcSChristoph Hellwig 	if (!IS_ENABLED(CONFIG_PREEMPT_RT) || !write)
756f461d2dcSChristoph Hellwig 		return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
757f461d2dcSChristoph Hellwig 
758f461d2dcSChristoph Hellwig 	old = *(int *)table->data;
759f461d2dcSChristoph Hellwig 	ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
760f461d2dcSChristoph Hellwig 	if (ret)
761f461d2dcSChristoph Hellwig 		return ret;
762f461d2dcSChristoph Hellwig 	if (old != *(int *)table->data)
763f461d2dcSChristoph Hellwig 		pr_warn_once("sysctl attribute %s changed by %s[%d]\n",
764f461d2dcSChristoph Hellwig 			     table->procname, current->comm,
765f461d2dcSChristoph Hellwig 			     task_pid_nr(current));
766f461d2dcSChristoph Hellwig 	return ret;
767f461d2dcSChristoph Hellwig }
768f461d2dcSChristoph Hellwig #endif
769f461d2dcSChristoph Hellwig 
770f461d2dcSChristoph Hellwig /**
771f461d2dcSChristoph Hellwig  * proc_douintvec - read a vector of unsigned integers
772f461d2dcSChristoph Hellwig  * @table: the sysctl table
773f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
774f461d2dcSChristoph Hellwig  * @buffer: the user buffer
775f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
776f461d2dcSChristoph Hellwig  * @ppos: file position
777f461d2dcSChristoph Hellwig  *
778f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
779f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
780f461d2dcSChristoph Hellwig  *
781f461d2dcSChristoph Hellwig  * Returns 0 on success.
782f461d2dcSChristoph Hellwig  */
78332927393SChristoph Hellwig int proc_douintvec(struct ctl_table *table, int write, void *buffer,
78432927393SChristoph Hellwig 		size_t *lenp, loff_t *ppos)
785f461d2dcSChristoph Hellwig {
786f461d2dcSChristoph Hellwig 	return do_proc_douintvec(table, write, buffer, lenp, ppos,
787f461d2dcSChristoph Hellwig 				 do_proc_douintvec_conv, NULL);
788f461d2dcSChristoph Hellwig }
789f461d2dcSChristoph Hellwig 
790f461d2dcSChristoph Hellwig /*
791f461d2dcSChristoph Hellwig  * Taint values can only be increased
792f461d2dcSChristoph Hellwig  * This means we can safely use a temporary.
793f461d2dcSChristoph Hellwig  */
794f461d2dcSChristoph Hellwig static int proc_taint(struct ctl_table *table, int write,
79532927393SChristoph Hellwig 			       void *buffer, size_t *lenp, loff_t *ppos)
796f461d2dcSChristoph Hellwig {
797f461d2dcSChristoph Hellwig 	struct ctl_table t;
798f461d2dcSChristoph Hellwig 	unsigned long tmptaint = get_taint();
799f461d2dcSChristoph Hellwig 	int err;
800f461d2dcSChristoph Hellwig 
801f461d2dcSChristoph Hellwig 	if (write && !capable(CAP_SYS_ADMIN))
802f461d2dcSChristoph Hellwig 		return -EPERM;
803f461d2dcSChristoph Hellwig 
804f461d2dcSChristoph Hellwig 	t = *table;
805f461d2dcSChristoph Hellwig 	t.data = &tmptaint;
806f461d2dcSChristoph Hellwig 	err = proc_doulongvec_minmax(&t, write, buffer, lenp, ppos);
807f461d2dcSChristoph Hellwig 	if (err < 0)
808f461d2dcSChristoph Hellwig 		return err;
809f461d2dcSChristoph Hellwig 
810f461d2dcSChristoph Hellwig 	if (write) {
811db38d5c1SRafael Aquini 		int i;
812db38d5c1SRafael Aquini 
813db38d5c1SRafael Aquini 		/*
814db38d5c1SRafael Aquini 		 * If we are relying on panic_on_taint not producing
815db38d5c1SRafael Aquini 		 * false positives due to userspace input, bail out
816db38d5c1SRafael Aquini 		 * before setting the requested taint flags.
817db38d5c1SRafael Aquini 		 */
818db38d5c1SRafael Aquini 		if (panic_on_taint_nousertaint && (tmptaint & panic_on_taint))
819db38d5c1SRafael Aquini 			return -EINVAL;
820db38d5c1SRafael Aquini 
821f461d2dcSChristoph Hellwig 		/*
822f461d2dcSChristoph Hellwig 		 * Poor man's atomic or. Not worth adding a primitive
823f461d2dcSChristoph Hellwig 		 * to everyone's atomic.h for this
824f461d2dcSChristoph Hellwig 		 */
825e77132e7SRafael Aquini 		for (i = 0; i < TAINT_FLAGS_COUNT; i++)
826e77132e7SRafael Aquini 			if ((1UL << i) & tmptaint)
827f461d2dcSChristoph Hellwig 				add_taint(i, LOCKDEP_STILL_OK);
828f461d2dcSChristoph Hellwig 	}
829f461d2dcSChristoph Hellwig 
830f461d2dcSChristoph Hellwig 	return err;
831f461d2dcSChristoph Hellwig }
832f461d2dcSChristoph Hellwig 
833f461d2dcSChristoph Hellwig /**
834f461d2dcSChristoph Hellwig  * struct do_proc_dointvec_minmax_conv_param - proc_dointvec_minmax() range checking structure
835f461d2dcSChristoph Hellwig  * @min: pointer to minimum allowable value
836f461d2dcSChristoph Hellwig  * @max: pointer to maximum allowable value
837f461d2dcSChristoph Hellwig  *
838f461d2dcSChristoph Hellwig  * The do_proc_dointvec_minmax_conv_param structure provides the
839f461d2dcSChristoph Hellwig  * minimum and maximum values for doing range checking for those sysctl
840f461d2dcSChristoph Hellwig  * parameters that use the proc_dointvec_minmax() handler.
841f461d2dcSChristoph Hellwig  */
842f461d2dcSChristoph Hellwig struct do_proc_dointvec_minmax_conv_param {
843f461d2dcSChristoph Hellwig 	int *min;
844f461d2dcSChristoph Hellwig 	int *max;
845f461d2dcSChristoph Hellwig };
846f461d2dcSChristoph Hellwig 
847f461d2dcSChristoph Hellwig static int do_proc_dointvec_minmax_conv(bool *negp, unsigned long *lvalp,
848f461d2dcSChristoph Hellwig 					int *valp,
849f461d2dcSChristoph Hellwig 					int write, void *data)
850f461d2dcSChristoph Hellwig {
851f461d2dcSChristoph Hellwig 	int tmp, ret;
852f461d2dcSChristoph Hellwig 	struct do_proc_dointvec_minmax_conv_param *param = data;
853f461d2dcSChristoph Hellwig 	/*
854f461d2dcSChristoph Hellwig 	 * If writing, first do so via a temporary local int so we can
855f461d2dcSChristoph Hellwig 	 * bounds-check it before touching *valp.
856f461d2dcSChristoph Hellwig 	 */
857f461d2dcSChristoph Hellwig 	int *ip = write ? &tmp : valp;
858f461d2dcSChristoph Hellwig 
859f461d2dcSChristoph Hellwig 	ret = do_proc_dointvec_conv(negp, lvalp, ip, write, data);
860f461d2dcSChristoph Hellwig 	if (ret)
861f461d2dcSChristoph Hellwig 		return ret;
862f461d2dcSChristoph Hellwig 
863f461d2dcSChristoph Hellwig 	if (write) {
864f461d2dcSChristoph Hellwig 		if ((param->min && *param->min > tmp) ||
865f461d2dcSChristoph Hellwig 		    (param->max && *param->max < tmp))
866f461d2dcSChristoph Hellwig 			return -EINVAL;
867f613d86dSKuniyuki Iwashima 		WRITE_ONCE(*valp, tmp);
868f461d2dcSChristoph Hellwig 	}
869f461d2dcSChristoph Hellwig 
870f461d2dcSChristoph Hellwig 	return 0;
871f461d2dcSChristoph Hellwig }
872f461d2dcSChristoph Hellwig 
873f461d2dcSChristoph Hellwig /**
874f461d2dcSChristoph Hellwig  * proc_dointvec_minmax - read a vector of integers with min/max values
875f461d2dcSChristoph Hellwig  * @table: the sysctl table
876f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
877f461d2dcSChristoph Hellwig  * @buffer: the user buffer
878f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
879f461d2dcSChristoph Hellwig  * @ppos: file position
880f461d2dcSChristoph Hellwig  *
881f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
882f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
883f461d2dcSChristoph Hellwig  *
884f461d2dcSChristoph Hellwig  * This routine will ensure the values are within the range specified by
885f461d2dcSChristoph Hellwig  * table->extra1 (min) and table->extra2 (max).
886f461d2dcSChristoph Hellwig  *
887f461d2dcSChristoph Hellwig  * Returns 0 on success or -EINVAL on write when the range check fails.
888f461d2dcSChristoph Hellwig  */
889f461d2dcSChristoph Hellwig int proc_dointvec_minmax(struct ctl_table *table, int write,
89032927393SChristoph Hellwig 		  void *buffer, size_t *lenp, loff_t *ppos)
891f461d2dcSChristoph Hellwig {
892f461d2dcSChristoph Hellwig 	struct do_proc_dointvec_minmax_conv_param param = {
893f461d2dcSChristoph Hellwig 		.min = (int *) table->extra1,
894f461d2dcSChristoph Hellwig 		.max = (int *) table->extra2,
895f461d2dcSChristoph Hellwig 	};
896f461d2dcSChristoph Hellwig 	return do_proc_dointvec(table, write, buffer, lenp, ppos,
897f461d2dcSChristoph Hellwig 				do_proc_dointvec_minmax_conv, &param);
898f461d2dcSChristoph Hellwig }
899f461d2dcSChristoph Hellwig 
900f461d2dcSChristoph Hellwig /**
901f461d2dcSChristoph Hellwig  * struct do_proc_douintvec_minmax_conv_param - proc_douintvec_minmax() range checking structure
902f461d2dcSChristoph Hellwig  * @min: pointer to minimum allowable value
903f461d2dcSChristoph Hellwig  * @max: pointer to maximum allowable value
904f461d2dcSChristoph Hellwig  *
905f461d2dcSChristoph Hellwig  * The do_proc_douintvec_minmax_conv_param structure provides the
906f461d2dcSChristoph Hellwig  * minimum and maximum values for doing range checking for those sysctl
907f461d2dcSChristoph Hellwig  * parameters that use the proc_douintvec_minmax() handler.
908f461d2dcSChristoph Hellwig  */
909f461d2dcSChristoph Hellwig struct do_proc_douintvec_minmax_conv_param {
910f461d2dcSChristoph Hellwig 	unsigned int *min;
911f461d2dcSChristoph Hellwig 	unsigned int *max;
912f461d2dcSChristoph Hellwig };
913f461d2dcSChristoph Hellwig 
914f461d2dcSChristoph Hellwig static int do_proc_douintvec_minmax_conv(unsigned long *lvalp,
915f461d2dcSChristoph Hellwig 					 unsigned int *valp,
916f461d2dcSChristoph Hellwig 					 int write, void *data)
917f461d2dcSChristoph Hellwig {
918f461d2dcSChristoph Hellwig 	int ret;
919f461d2dcSChristoph Hellwig 	unsigned int tmp;
920f461d2dcSChristoph Hellwig 	struct do_proc_douintvec_minmax_conv_param *param = data;
921f461d2dcSChristoph Hellwig 	/* write via temporary local uint for bounds-checking */
922f461d2dcSChristoph Hellwig 	unsigned int *up = write ? &tmp : valp;
923f461d2dcSChristoph Hellwig 
924f461d2dcSChristoph Hellwig 	ret = do_proc_douintvec_conv(lvalp, up, write, data);
925f461d2dcSChristoph Hellwig 	if (ret)
926f461d2dcSChristoph Hellwig 		return ret;
927f461d2dcSChristoph Hellwig 
928f461d2dcSChristoph Hellwig 	if (write) {
929f461d2dcSChristoph Hellwig 		if ((param->min && *param->min > tmp) ||
930f461d2dcSChristoph Hellwig 		    (param->max && *param->max < tmp))
931f461d2dcSChristoph Hellwig 			return -ERANGE;
932f461d2dcSChristoph Hellwig 
9332d3b559dSKuniyuki Iwashima 		WRITE_ONCE(*valp, tmp);
934f461d2dcSChristoph Hellwig 	}
935f461d2dcSChristoph Hellwig 
936f461d2dcSChristoph Hellwig 	return 0;
937f461d2dcSChristoph Hellwig }
938f461d2dcSChristoph Hellwig 
939f461d2dcSChristoph Hellwig /**
940f461d2dcSChristoph Hellwig  * proc_douintvec_minmax - read a vector of unsigned ints with min/max values
941f461d2dcSChristoph Hellwig  * @table: the sysctl table
942f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
943f461d2dcSChristoph Hellwig  * @buffer: the user buffer
944f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
945f461d2dcSChristoph Hellwig  * @ppos: file position
946f461d2dcSChristoph Hellwig  *
947f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) unsigned integer
948f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string. Negative
949f461d2dcSChristoph Hellwig  * strings are not allowed.
950f461d2dcSChristoph Hellwig  *
951f461d2dcSChristoph Hellwig  * This routine will ensure the values are within the range specified by
952f461d2dcSChristoph Hellwig  * table->extra1 (min) and table->extra2 (max). There is a final sanity
953f461d2dcSChristoph Hellwig  * check for UINT_MAX to avoid having to support wrap around uses from
954f461d2dcSChristoph Hellwig  * userspace.
955f461d2dcSChristoph Hellwig  *
956f461d2dcSChristoph Hellwig  * Returns 0 on success or -ERANGE on write when the range check fails.
957f461d2dcSChristoph Hellwig  */
958f461d2dcSChristoph Hellwig int proc_douintvec_minmax(struct ctl_table *table, int write,
95932927393SChristoph Hellwig 			  void *buffer, size_t *lenp, loff_t *ppos)
960f461d2dcSChristoph Hellwig {
961f461d2dcSChristoph Hellwig 	struct do_proc_douintvec_minmax_conv_param param = {
962f461d2dcSChristoph Hellwig 		.min = (unsigned int *) table->extra1,
963f461d2dcSChristoph Hellwig 		.max = (unsigned int *) table->extra2,
964f461d2dcSChristoph Hellwig 	};
965f461d2dcSChristoph Hellwig 	return do_proc_douintvec(table, write, buffer, lenp, ppos,
966f461d2dcSChristoph Hellwig 				 do_proc_douintvec_minmax_conv, &param);
967f461d2dcSChristoph Hellwig }
968f461d2dcSChristoph Hellwig 
969cb944413SEric Dumazet /**
970cb944413SEric Dumazet  * proc_dou8vec_minmax - read a vector of unsigned chars with min/max values
971cb944413SEric Dumazet  * @table: the sysctl table
972cb944413SEric Dumazet  * @write: %TRUE if this is a write to the sysctl file
973cb944413SEric Dumazet  * @buffer: the user buffer
974cb944413SEric Dumazet  * @lenp: the size of the user buffer
975cb944413SEric Dumazet  * @ppos: file position
976cb944413SEric Dumazet  *
977cb944413SEric Dumazet  * Reads/writes up to table->maxlen/sizeof(u8) unsigned chars
978cb944413SEric Dumazet  * values from/to the user buffer, treated as an ASCII string. Negative
979cb944413SEric Dumazet  * strings are not allowed.
980cb944413SEric Dumazet  *
981cb944413SEric Dumazet  * This routine will ensure the values are within the range specified by
982cb944413SEric Dumazet  * table->extra1 (min) and table->extra2 (max).
983cb944413SEric Dumazet  *
984cb944413SEric Dumazet  * Returns 0 on success or an error on write when the range check fails.
985cb944413SEric Dumazet  */
986cb944413SEric Dumazet int proc_dou8vec_minmax(struct ctl_table *table, int write,
987cb944413SEric Dumazet 			void *buffer, size_t *lenp, loff_t *ppos)
988cb944413SEric Dumazet {
989cb944413SEric Dumazet 	struct ctl_table tmp;
990cb944413SEric Dumazet 	unsigned int min = 0, max = 255U, val;
991cb944413SEric Dumazet 	u8 *data = table->data;
992cb944413SEric Dumazet 	struct do_proc_douintvec_minmax_conv_param param = {
993cb944413SEric Dumazet 		.min = &min,
994cb944413SEric Dumazet 		.max = &max,
995cb944413SEric Dumazet 	};
996cb944413SEric Dumazet 	int res;
997cb944413SEric Dumazet 
998cb944413SEric Dumazet 	/* Do not support arrays yet. */
999cb944413SEric Dumazet 	if (table->maxlen != sizeof(u8))
1000cb944413SEric Dumazet 		return -EINVAL;
1001cb944413SEric Dumazet 
1002cb944413SEric Dumazet 	if (table->extra1) {
1003cb944413SEric Dumazet 		min = *(unsigned int *) table->extra1;
1004cb944413SEric Dumazet 		if (min > 255U)
1005cb944413SEric Dumazet 			return -EINVAL;
1006cb944413SEric Dumazet 	}
1007cb944413SEric Dumazet 	if (table->extra2) {
1008cb944413SEric Dumazet 		max = *(unsigned int *) table->extra2;
1009cb944413SEric Dumazet 		if (max > 255U)
1010cb944413SEric Dumazet 			return -EINVAL;
1011cb944413SEric Dumazet 	}
1012cb944413SEric Dumazet 
1013cb944413SEric Dumazet 	tmp = *table;
1014cb944413SEric Dumazet 
1015cb944413SEric Dumazet 	tmp.maxlen = sizeof(val);
1016cb944413SEric Dumazet 	tmp.data = &val;
10177dee5d77SKuniyuki Iwashima 	val = READ_ONCE(*data);
1018cb944413SEric Dumazet 	res = do_proc_douintvec(&tmp, write, buffer, lenp, ppos,
1019cb944413SEric Dumazet 				do_proc_douintvec_minmax_conv, &param);
1020cb944413SEric Dumazet 	if (res)
1021cb944413SEric Dumazet 		return res;
1022cb944413SEric Dumazet 	if (write)
10237dee5d77SKuniyuki Iwashima 		WRITE_ONCE(*data, val);
1024cb944413SEric Dumazet 	return 0;
1025cb944413SEric Dumazet }
1026cb944413SEric Dumazet EXPORT_SYMBOL_GPL(proc_dou8vec_minmax);
1027cb944413SEric Dumazet 
1028f461d2dcSChristoph Hellwig #ifdef CONFIG_MAGIC_SYSRQ
1029f461d2dcSChristoph Hellwig static int sysrq_sysctl_handler(struct ctl_table *table, int write,
103032927393SChristoph Hellwig 				void *buffer, size_t *lenp, loff_t *ppos)
1031f461d2dcSChristoph Hellwig {
1032f461d2dcSChristoph Hellwig 	int tmp, ret;
1033f461d2dcSChristoph Hellwig 
1034f461d2dcSChristoph Hellwig 	tmp = sysrq_mask();
1035f461d2dcSChristoph Hellwig 
1036f461d2dcSChristoph Hellwig 	ret = __do_proc_dointvec(&tmp, table, write, buffer,
1037f461d2dcSChristoph Hellwig 			       lenp, ppos, NULL, NULL);
1038f461d2dcSChristoph Hellwig 	if (ret || !write)
1039f461d2dcSChristoph Hellwig 		return ret;
1040f461d2dcSChristoph Hellwig 
1041f461d2dcSChristoph Hellwig 	if (write)
1042f461d2dcSChristoph Hellwig 		sysrq_toggle_support(tmp);
1043f461d2dcSChristoph Hellwig 
1044f461d2dcSChristoph Hellwig 	return 0;
1045f461d2dcSChristoph Hellwig }
1046f461d2dcSChristoph Hellwig #endif
1047f461d2dcSChristoph Hellwig 
104832927393SChristoph Hellwig static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table,
104932927393SChristoph Hellwig 		int write, void *buffer, size_t *lenp, loff_t *ppos,
105032927393SChristoph Hellwig 		unsigned long convmul, unsigned long convdiv)
1051f461d2dcSChristoph Hellwig {
1052f461d2dcSChristoph Hellwig 	unsigned long *i, *min, *max;
1053f461d2dcSChristoph Hellwig 	int vleft, first = 1, err = 0;
1054f461d2dcSChristoph Hellwig 	size_t left;
105532927393SChristoph Hellwig 	char *p;
1056f461d2dcSChristoph Hellwig 
1057f461d2dcSChristoph Hellwig 	if (!data || !table->maxlen || !*lenp || (*ppos && !write)) {
1058f461d2dcSChristoph Hellwig 		*lenp = 0;
1059f461d2dcSChristoph Hellwig 		return 0;
1060f461d2dcSChristoph Hellwig 	}
1061f461d2dcSChristoph Hellwig 
10628ebc4123SDong Chuanjian 	i = data;
10638ebc4123SDong Chuanjian 	min = table->extra1;
10648ebc4123SDong Chuanjian 	max = table->extra2;
1065f461d2dcSChristoph Hellwig 	vleft = table->maxlen / sizeof(unsigned long);
1066f461d2dcSChristoph Hellwig 	left = *lenp;
1067f461d2dcSChristoph Hellwig 
1068f461d2dcSChristoph Hellwig 	if (write) {
1069f461d2dcSChristoph Hellwig 		if (proc_first_pos_non_zero_ignore(ppos, table))
1070f461d2dcSChristoph Hellwig 			goto out;
1071f461d2dcSChristoph Hellwig 
1072f461d2dcSChristoph Hellwig 		if (left > PAGE_SIZE - 1)
1073f461d2dcSChristoph Hellwig 			left = PAGE_SIZE - 1;
107432927393SChristoph Hellwig 		p = buffer;
1075f461d2dcSChristoph Hellwig 	}
1076f461d2dcSChristoph Hellwig 
1077f461d2dcSChristoph Hellwig 	for (; left && vleft--; i++, first = 0) {
1078f461d2dcSChristoph Hellwig 		unsigned long val;
1079f461d2dcSChristoph Hellwig 
1080f461d2dcSChristoph Hellwig 		if (write) {
1081f461d2dcSChristoph Hellwig 			bool neg;
1082f461d2dcSChristoph Hellwig 
1083bce93322SLinus Torvalds 			proc_skip_spaces(&p, &left);
1084f461d2dcSChristoph Hellwig 			if (!left)
1085f461d2dcSChristoph Hellwig 				break;
1086f461d2dcSChristoph Hellwig 
1087f461d2dcSChristoph Hellwig 			err = proc_get_long(&p, &left, &val, &neg,
1088f461d2dcSChristoph Hellwig 					     proc_wspace_sep,
1089f461d2dcSChristoph Hellwig 					     sizeof(proc_wspace_sep), NULL);
10901622ed7dSBaokun Li 			if (err || neg) {
10911622ed7dSBaokun Li 				err = -EINVAL;
1092f461d2dcSChristoph Hellwig 				break;
10931622ed7dSBaokun Li 			}
10941622ed7dSBaokun Li 
1095f461d2dcSChristoph Hellwig 			val = convmul * val / convdiv;
1096f461d2dcSChristoph Hellwig 			if ((min && val < *min) || (max && val > *max)) {
1097f461d2dcSChristoph Hellwig 				err = -EINVAL;
1098f461d2dcSChristoph Hellwig 				break;
1099f461d2dcSChristoph Hellwig 			}
1100c31bcc8fSKuniyuki Iwashima 			WRITE_ONCE(*i, val);
1101f461d2dcSChristoph Hellwig 		} else {
1102c31bcc8fSKuniyuki Iwashima 			val = convdiv * READ_ONCE(*i) / convmul;
110332927393SChristoph Hellwig 			if (!first)
110432927393SChristoph Hellwig 				proc_put_char(&buffer, &left, '\t');
110532927393SChristoph Hellwig 			proc_put_long(&buffer, &left, val, false);
1106f461d2dcSChristoph Hellwig 		}
1107f461d2dcSChristoph Hellwig 	}
1108f461d2dcSChristoph Hellwig 
1109f461d2dcSChristoph Hellwig 	if (!write && !first && left && !err)
111032927393SChristoph Hellwig 		proc_put_char(&buffer, &left, '\n');
1111f461d2dcSChristoph Hellwig 	if (write && !err)
1112bce93322SLinus Torvalds 		proc_skip_spaces(&p, &left);
111332927393SChristoph Hellwig 	if (write && first)
1114f461d2dcSChristoph Hellwig 		return err ? : -EINVAL;
1115f461d2dcSChristoph Hellwig 	*lenp -= left;
1116f461d2dcSChristoph Hellwig out:
1117f461d2dcSChristoph Hellwig 	*ppos += *lenp;
1118f461d2dcSChristoph Hellwig 	return err;
1119f461d2dcSChristoph Hellwig }
1120f461d2dcSChristoph Hellwig 
1121f461d2dcSChristoph Hellwig static int do_proc_doulongvec_minmax(struct ctl_table *table, int write,
112232927393SChristoph Hellwig 		void *buffer, size_t *lenp, loff_t *ppos, unsigned long convmul,
1123f461d2dcSChristoph Hellwig 		unsigned long convdiv)
1124f461d2dcSChristoph Hellwig {
1125f461d2dcSChristoph Hellwig 	return __do_proc_doulongvec_minmax(table->data, table, write,
1126f461d2dcSChristoph Hellwig 			buffer, lenp, ppos, convmul, convdiv);
1127f461d2dcSChristoph Hellwig }
1128f461d2dcSChristoph Hellwig 
1129f461d2dcSChristoph Hellwig /**
1130f461d2dcSChristoph Hellwig  * proc_doulongvec_minmax - read a vector of long integers with min/max values
1131f461d2dcSChristoph Hellwig  * @table: the sysctl table
1132f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
1133f461d2dcSChristoph Hellwig  * @buffer: the user buffer
1134f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
1135f461d2dcSChristoph Hellwig  * @ppos: file position
1136f461d2dcSChristoph Hellwig  *
1137f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1138f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
1139f461d2dcSChristoph Hellwig  *
1140f461d2dcSChristoph Hellwig  * This routine will ensure the values are within the range specified by
1141f461d2dcSChristoph Hellwig  * table->extra1 (min) and table->extra2 (max).
1142f461d2dcSChristoph Hellwig  *
1143f461d2dcSChristoph Hellwig  * Returns 0 on success.
1144f461d2dcSChristoph Hellwig  */
1145f461d2dcSChristoph Hellwig int proc_doulongvec_minmax(struct ctl_table *table, int write,
114632927393SChristoph Hellwig 			   void *buffer, size_t *lenp, loff_t *ppos)
1147f461d2dcSChristoph Hellwig {
1148f461d2dcSChristoph Hellwig     return do_proc_doulongvec_minmax(table, write, buffer, lenp, ppos, 1l, 1l);
1149f461d2dcSChristoph Hellwig }
1150f461d2dcSChristoph Hellwig 
1151f461d2dcSChristoph Hellwig /**
1152f461d2dcSChristoph Hellwig  * proc_doulongvec_ms_jiffies_minmax - read a vector of millisecond values with min/max values
1153f461d2dcSChristoph Hellwig  * @table: the sysctl table
1154f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
1155f461d2dcSChristoph Hellwig  * @buffer: the user buffer
1156f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
1157f461d2dcSChristoph Hellwig  * @ppos: file position
1158f461d2dcSChristoph Hellwig  *
1159f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long
1160f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string. The values
1161f461d2dcSChristoph Hellwig  * are treated as milliseconds, and converted to jiffies when they are stored.
1162f461d2dcSChristoph Hellwig  *
1163f461d2dcSChristoph Hellwig  * This routine will ensure the values are within the range specified by
1164f461d2dcSChristoph Hellwig  * table->extra1 (min) and table->extra2 (max).
1165f461d2dcSChristoph Hellwig  *
1166f461d2dcSChristoph Hellwig  * Returns 0 on success.
1167f461d2dcSChristoph Hellwig  */
1168f461d2dcSChristoph Hellwig int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
116932927393SChristoph Hellwig 				      void *buffer, size_t *lenp, loff_t *ppos)
1170f461d2dcSChristoph Hellwig {
1171f461d2dcSChristoph Hellwig     return do_proc_doulongvec_minmax(table, write, buffer,
1172f461d2dcSChristoph Hellwig 				     lenp, ppos, HZ, 1000l);
1173f461d2dcSChristoph Hellwig }
1174f461d2dcSChristoph Hellwig 
1175f461d2dcSChristoph Hellwig 
1176f461d2dcSChristoph Hellwig static int do_proc_dointvec_jiffies_conv(bool *negp, unsigned long *lvalp,
1177f461d2dcSChristoph Hellwig 					 int *valp,
1178f461d2dcSChristoph Hellwig 					 int write, void *data)
1179f461d2dcSChristoph Hellwig {
1180f461d2dcSChristoph Hellwig 	if (write) {
1181f461d2dcSChristoph Hellwig 		if (*lvalp > INT_MAX / HZ)
1182f461d2dcSChristoph Hellwig 			return 1;
1183e8778208SKuniyuki Iwashima 		if (*negp)
1184e8778208SKuniyuki Iwashima 			WRITE_ONCE(*valp, -*lvalp * HZ);
1185e8778208SKuniyuki Iwashima 		else
1186e8778208SKuniyuki Iwashima 			WRITE_ONCE(*valp, *lvalp * HZ);
1187f461d2dcSChristoph Hellwig 	} else {
1188e8778208SKuniyuki Iwashima 		int val = READ_ONCE(*valp);
1189f461d2dcSChristoph Hellwig 		unsigned long lval;
1190f461d2dcSChristoph Hellwig 		if (val < 0) {
1191f461d2dcSChristoph Hellwig 			*negp = true;
1192f461d2dcSChristoph Hellwig 			lval = -(unsigned long)val;
1193f461d2dcSChristoph Hellwig 		} else {
1194f461d2dcSChristoph Hellwig 			*negp = false;
1195f461d2dcSChristoph Hellwig 			lval = (unsigned long)val;
1196f461d2dcSChristoph Hellwig 		}
1197f461d2dcSChristoph Hellwig 		*lvalp = lval / HZ;
1198f461d2dcSChristoph Hellwig 	}
1199f461d2dcSChristoph Hellwig 	return 0;
1200f461d2dcSChristoph Hellwig }
1201f461d2dcSChristoph Hellwig 
1202f461d2dcSChristoph Hellwig static int do_proc_dointvec_userhz_jiffies_conv(bool *negp, unsigned long *lvalp,
1203f461d2dcSChristoph Hellwig 						int *valp,
1204f461d2dcSChristoph Hellwig 						int write, void *data)
1205f461d2dcSChristoph Hellwig {
1206f461d2dcSChristoph Hellwig 	if (write) {
1207f461d2dcSChristoph Hellwig 		if (USER_HZ < HZ && *lvalp > (LONG_MAX / HZ) * USER_HZ)
1208f461d2dcSChristoph Hellwig 			return 1;
1209f461d2dcSChristoph Hellwig 		*valp = clock_t_to_jiffies(*negp ? -*lvalp : *lvalp);
1210f461d2dcSChristoph Hellwig 	} else {
1211f461d2dcSChristoph Hellwig 		int val = *valp;
1212f461d2dcSChristoph Hellwig 		unsigned long lval;
1213f461d2dcSChristoph Hellwig 		if (val < 0) {
1214f461d2dcSChristoph Hellwig 			*negp = true;
1215f461d2dcSChristoph Hellwig 			lval = -(unsigned long)val;
1216f461d2dcSChristoph Hellwig 		} else {
1217f461d2dcSChristoph Hellwig 			*negp = false;
1218f461d2dcSChristoph Hellwig 			lval = (unsigned long)val;
1219f461d2dcSChristoph Hellwig 		}
1220f461d2dcSChristoph Hellwig 		*lvalp = jiffies_to_clock_t(lval);
1221f461d2dcSChristoph Hellwig 	}
1222f461d2dcSChristoph Hellwig 	return 0;
1223f461d2dcSChristoph Hellwig }
1224f461d2dcSChristoph Hellwig 
1225f461d2dcSChristoph Hellwig static int do_proc_dointvec_ms_jiffies_conv(bool *negp, unsigned long *lvalp,
1226f461d2dcSChristoph Hellwig 					    int *valp,
1227f461d2dcSChristoph Hellwig 					    int write, void *data)
1228f461d2dcSChristoph Hellwig {
1229f461d2dcSChristoph Hellwig 	if (write) {
1230f461d2dcSChristoph Hellwig 		unsigned long jif = msecs_to_jiffies(*negp ? -*lvalp : *lvalp);
1231f461d2dcSChristoph Hellwig 
1232f461d2dcSChristoph Hellwig 		if (jif > INT_MAX)
1233f461d2dcSChristoph Hellwig 			return 1;
12347d1025e5SKuniyuki Iwashima 		WRITE_ONCE(*valp, (int)jif);
1235f461d2dcSChristoph Hellwig 	} else {
12367d1025e5SKuniyuki Iwashima 		int val = READ_ONCE(*valp);
1237f461d2dcSChristoph Hellwig 		unsigned long lval;
1238f461d2dcSChristoph Hellwig 		if (val < 0) {
1239f461d2dcSChristoph Hellwig 			*negp = true;
1240f461d2dcSChristoph Hellwig 			lval = -(unsigned long)val;
1241f461d2dcSChristoph Hellwig 		} else {
1242f461d2dcSChristoph Hellwig 			*negp = false;
1243f461d2dcSChristoph Hellwig 			lval = (unsigned long)val;
1244f461d2dcSChristoph Hellwig 		}
1245f461d2dcSChristoph Hellwig 		*lvalp = jiffies_to_msecs(lval);
1246f461d2dcSChristoph Hellwig 	}
1247f461d2dcSChristoph Hellwig 	return 0;
1248f461d2dcSChristoph Hellwig }
1249f461d2dcSChristoph Hellwig 
1250c381d02bSYuwei Wang static int do_proc_dointvec_ms_jiffies_minmax_conv(bool *negp, unsigned long *lvalp,
1251c381d02bSYuwei Wang 						int *valp, int write, void *data)
1252c381d02bSYuwei Wang {
1253c381d02bSYuwei Wang 	int tmp, ret;
1254c381d02bSYuwei Wang 	struct do_proc_dointvec_minmax_conv_param *param = data;
1255c381d02bSYuwei Wang 	/*
1256c381d02bSYuwei Wang 	 * If writing, first do so via a temporary local int so we can
1257c381d02bSYuwei Wang 	 * bounds-check it before touching *valp.
1258c381d02bSYuwei Wang 	 */
1259c381d02bSYuwei Wang 	int *ip = write ? &tmp : valp;
1260c381d02bSYuwei Wang 
1261c381d02bSYuwei Wang 	ret = do_proc_dointvec_ms_jiffies_conv(negp, lvalp, ip, write, data);
1262c381d02bSYuwei Wang 	if (ret)
1263c381d02bSYuwei Wang 		return ret;
1264c381d02bSYuwei Wang 
1265c381d02bSYuwei Wang 	if (write) {
1266c381d02bSYuwei Wang 		if ((param->min && *param->min > tmp) ||
1267c381d02bSYuwei Wang 				(param->max && *param->max < tmp))
1268c381d02bSYuwei Wang 			return -EINVAL;
1269c381d02bSYuwei Wang 		*valp = tmp;
1270c381d02bSYuwei Wang 	}
1271c381d02bSYuwei Wang 	return 0;
1272c381d02bSYuwei Wang }
1273c381d02bSYuwei Wang 
1274f461d2dcSChristoph Hellwig /**
1275f461d2dcSChristoph Hellwig  * proc_dointvec_jiffies - read a vector of integers as seconds
1276f461d2dcSChristoph Hellwig  * @table: the sysctl table
1277f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
1278f461d2dcSChristoph Hellwig  * @buffer: the user buffer
1279f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
1280f461d2dcSChristoph Hellwig  * @ppos: file position
1281f461d2dcSChristoph Hellwig  *
1282f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1283f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
1284f461d2dcSChristoph Hellwig  * The values read are assumed to be in seconds, and are converted into
1285f461d2dcSChristoph Hellwig  * jiffies.
1286f461d2dcSChristoph Hellwig  *
1287f461d2dcSChristoph Hellwig  * Returns 0 on success.
1288f461d2dcSChristoph Hellwig  */
1289f461d2dcSChristoph Hellwig int proc_dointvec_jiffies(struct ctl_table *table, int write,
129032927393SChristoph Hellwig 			  void *buffer, size_t *lenp, loff_t *ppos)
1291f461d2dcSChristoph Hellwig {
1292f461d2dcSChristoph Hellwig     return do_proc_dointvec(table,write,buffer,lenp,ppos,
1293f461d2dcSChristoph Hellwig 		    	    do_proc_dointvec_jiffies_conv,NULL);
1294f461d2dcSChristoph Hellwig }
1295f461d2dcSChristoph Hellwig 
1296c381d02bSYuwei Wang int proc_dointvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1297c381d02bSYuwei Wang 			  void *buffer, size_t *lenp, loff_t *ppos)
1298c381d02bSYuwei Wang {
1299c381d02bSYuwei Wang 	struct do_proc_dointvec_minmax_conv_param param = {
1300c381d02bSYuwei Wang 		.min = (int *) table->extra1,
1301c381d02bSYuwei Wang 		.max = (int *) table->extra2,
1302c381d02bSYuwei Wang 	};
1303c381d02bSYuwei Wang 	return do_proc_dointvec(table, write, buffer, lenp, ppos,
1304c381d02bSYuwei Wang 			do_proc_dointvec_ms_jiffies_minmax_conv, &param);
1305c381d02bSYuwei Wang }
1306c381d02bSYuwei Wang 
1307f461d2dcSChristoph Hellwig /**
1308f461d2dcSChristoph Hellwig  * proc_dointvec_userhz_jiffies - read a vector of integers as 1/USER_HZ seconds
1309f461d2dcSChristoph Hellwig  * @table: the sysctl table
1310f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
1311f461d2dcSChristoph Hellwig  * @buffer: the user buffer
1312f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
1313f461d2dcSChristoph Hellwig  * @ppos: pointer to the file position
1314f461d2dcSChristoph Hellwig  *
1315f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1316f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
1317f461d2dcSChristoph Hellwig  * The values read are assumed to be in 1/USER_HZ seconds, and
1318f461d2dcSChristoph Hellwig  * are converted into jiffies.
1319f461d2dcSChristoph Hellwig  *
1320f461d2dcSChristoph Hellwig  * Returns 0 on success.
1321f461d2dcSChristoph Hellwig  */
1322f461d2dcSChristoph Hellwig int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
132332927393SChristoph Hellwig 				 void *buffer, size_t *lenp, loff_t *ppos)
1324f461d2dcSChristoph Hellwig {
1325f461d2dcSChristoph Hellwig 	return do_proc_dointvec(table, write, buffer, lenp, ppos,
1326f461d2dcSChristoph Hellwig 				do_proc_dointvec_userhz_jiffies_conv, NULL);
1327f461d2dcSChristoph Hellwig }
1328f461d2dcSChristoph Hellwig 
1329f461d2dcSChristoph Hellwig /**
1330f461d2dcSChristoph Hellwig  * proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
1331f461d2dcSChristoph Hellwig  * @table: the sysctl table
1332f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
1333f461d2dcSChristoph Hellwig  * @buffer: the user buffer
1334f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
1335f461d2dcSChristoph Hellwig  * @ppos: file position
1336f461d2dcSChristoph Hellwig  * @ppos: the current position in the file
1337f461d2dcSChristoph Hellwig  *
1338f461d2dcSChristoph Hellwig  * Reads/writes up to table->maxlen/sizeof(unsigned int) integer
1339f461d2dcSChristoph Hellwig  * values from/to the user buffer, treated as an ASCII string.
1340f461d2dcSChristoph Hellwig  * The values read are assumed to be in 1/1000 seconds, and
1341f461d2dcSChristoph Hellwig  * are converted into jiffies.
1342f461d2dcSChristoph Hellwig  *
1343f461d2dcSChristoph Hellwig  * Returns 0 on success.
1344f461d2dcSChristoph Hellwig  */
134532927393SChristoph Hellwig int proc_dointvec_ms_jiffies(struct ctl_table *table, int write, void *buffer,
134632927393SChristoph Hellwig 		size_t *lenp, loff_t *ppos)
1347f461d2dcSChristoph Hellwig {
1348f461d2dcSChristoph Hellwig 	return do_proc_dointvec(table, write, buffer, lenp, ppos,
1349f461d2dcSChristoph Hellwig 				do_proc_dointvec_ms_jiffies_conv, NULL);
1350f461d2dcSChristoph Hellwig }
1351f461d2dcSChristoph Hellwig 
135232927393SChristoph Hellwig static int proc_do_cad_pid(struct ctl_table *table, int write, void *buffer,
135332927393SChristoph Hellwig 		size_t *lenp, loff_t *ppos)
1354f461d2dcSChristoph Hellwig {
1355f461d2dcSChristoph Hellwig 	struct pid *new_pid;
1356f461d2dcSChristoph Hellwig 	pid_t tmp;
1357f461d2dcSChristoph Hellwig 	int r;
1358f461d2dcSChristoph Hellwig 
1359f461d2dcSChristoph Hellwig 	tmp = pid_vnr(cad_pid);
1360f461d2dcSChristoph Hellwig 
1361f461d2dcSChristoph Hellwig 	r = __do_proc_dointvec(&tmp, table, write, buffer,
1362f461d2dcSChristoph Hellwig 			       lenp, ppos, NULL, NULL);
1363f461d2dcSChristoph Hellwig 	if (r || !write)
1364f461d2dcSChristoph Hellwig 		return r;
1365f461d2dcSChristoph Hellwig 
1366f461d2dcSChristoph Hellwig 	new_pid = find_get_pid(tmp);
1367f461d2dcSChristoph Hellwig 	if (!new_pid)
1368f461d2dcSChristoph Hellwig 		return -ESRCH;
1369f461d2dcSChristoph Hellwig 
1370f461d2dcSChristoph Hellwig 	put_pid(xchg(&cad_pid, new_pid));
1371f461d2dcSChristoph Hellwig 	return 0;
1372f461d2dcSChristoph Hellwig }
1373f461d2dcSChristoph Hellwig 
1374f461d2dcSChristoph Hellwig /**
1375f461d2dcSChristoph Hellwig  * proc_do_large_bitmap - read/write from/to a large bitmap
1376f461d2dcSChristoph Hellwig  * @table: the sysctl table
1377f461d2dcSChristoph Hellwig  * @write: %TRUE if this is a write to the sysctl file
1378f461d2dcSChristoph Hellwig  * @buffer: the user buffer
1379f461d2dcSChristoph Hellwig  * @lenp: the size of the user buffer
1380f461d2dcSChristoph Hellwig  * @ppos: file position
1381f461d2dcSChristoph Hellwig  *
1382f461d2dcSChristoph Hellwig  * The bitmap is stored at table->data and the bitmap length (in bits)
1383f461d2dcSChristoph Hellwig  * in table->maxlen.
1384f461d2dcSChristoph Hellwig  *
1385f461d2dcSChristoph Hellwig  * We use a range comma separated format (e.g. 1,3-4,10-10) so that
1386f461d2dcSChristoph Hellwig  * large bitmaps may be represented in a compact manner. Writing into
1387f461d2dcSChristoph Hellwig  * the file will clear the bitmap then update it with the given input.
1388f461d2dcSChristoph Hellwig  *
1389f461d2dcSChristoph Hellwig  * Returns 0 on success.
1390f461d2dcSChristoph Hellwig  */
1391f461d2dcSChristoph Hellwig int proc_do_large_bitmap(struct ctl_table *table, int write,
139232927393SChristoph Hellwig 			 void *buffer, size_t *lenp, loff_t *ppos)
1393f461d2dcSChristoph Hellwig {
1394f461d2dcSChristoph Hellwig 	int err = 0;
1395f461d2dcSChristoph Hellwig 	size_t left = *lenp;
1396f461d2dcSChristoph Hellwig 	unsigned long bitmap_len = table->maxlen;
1397f461d2dcSChristoph Hellwig 	unsigned long *bitmap = *(unsigned long **) table->data;
1398f461d2dcSChristoph Hellwig 	unsigned long *tmp_bitmap = NULL;
1399f461d2dcSChristoph Hellwig 	char tr_a[] = { '-', ',', '\n' }, tr_b[] = { ',', '\n', 0 }, c;
1400f461d2dcSChristoph Hellwig 
1401f461d2dcSChristoph Hellwig 	if (!bitmap || !bitmap_len || !left || (*ppos && !write)) {
1402f461d2dcSChristoph Hellwig 		*lenp = 0;
1403f461d2dcSChristoph Hellwig 		return 0;
1404f461d2dcSChristoph Hellwig 	}
1405f461d2dcSChristoph Hellwig 
1406f461d2dcSChristoph Hellwig 	if (write) {
140732927393SChristoph Hellwig 		char *p = buffer;
1408f461d2dcSChristoph Hellwig 		size_t skipped = 0;
1409f461d2dcSChristoph Hellwig 
1410f461d2dcSChristoph Hellwig 		if (left > PAGE_SIZE - 1) {
1411f461d2dcSChristoph Hellwig 			left = PAGE_SIZE - 1;
1412f461d2dcSChristoph Hellwig 			/* How much of the buffer we'll skip this pass */
1413f461d2dcSChristoph Hellwig 			skipped = *lenp - left;
1414f461d2dcSChristoph Hellwig 		}
1415f461d2dcSChristoph Hellwig 
1416f461d2dcSChristoph Hellwig 		tmp_bitmap = bitmap_zalloc(bitmap_len, GFP_KERNEL);
141732927393SChristoph Hellwig 		if (!tmp_bitmap)
1418f461d2dcSChristoph Hellwig 			return -ENOMEM;
1419f461d2dcSChristoph Hellwig 		proc_skip_char(&p, &left, '\n');
1420f461d2dcSChristoph Hellwig 		while (!err && left) {
1421f461d2dcSChristoph Hellwig 			unsigned long val_a, val_b;
1422f461d2dcSChristoph Hellwig 			bool neg;
1423f461d2dcSChristoph Hellwig 			size_t saved_left;
1424f461d2dcSChristoph Hellwig 
1425f461d2dcSChristoph Hellwig 			/* In case we stop parsing mid-number, we can reset */
1426f461d2dcSChristoph Hellwig 			saved_left = left;
1427f461d2dcSChristoph Hellwig 			err = proc_get_long(&p, &left, &val_a, &neg, tr_a,
1428f461d2dcSChristoph Hellwig 					     sizeof(tr_a), &c);
1429f461d2dcSChristoph Hellwig 			/*
1430f461d2dcSChristoph Hellwig 			 * If we consumed the entirety of a truncated buffer or
1431f461d2dcSChristoph Hellwig 			 * only one char is left (may be a "-"), then stop here,
1432f461d2dcSChristoph Hellwig 			 * reset, & come back for more.
1433f461d2dcSChristoph Hellwig 			 */
1434f461d2dcSChristoph Hellwig 			if ((left <= 1) && skipped) {
1435f461d2dcSChristoph Hellwig 				left = saved_left;
1436f461d2dcSChristoph Hellwig 				break;
1437f461d2dcSChristoph Hellwig 			}
1438f461d2dcSChristoph Hellwig 
1439f461d2dcSChristoph Hellwig 			if (err)
1440f461d2dcSChristoph Hellwig 				break;
1441f461d2dcSChristoph Hellwig 			if (val_a >= bitmap_len || neg) {
1442f461d2dcSChristoph Hellwig 				err = -EINVAL;
1443f461d2dcSChristoph Hellwig 				break;
1444f461d2dcSChristoph Hellwig 			}
1445f461d2dcSChristoph Hellwig 
1446f461d2dcSChristoph Hellwig 			val_b = val_a;
1447f461d2dcSChristoph Hellwig 			if (left) {
1448f461d2dcSChristoph Hellwig 				p++;
1449f461d2dcSChristoph Hellwig 				left--;
1450f461d2dcSChristoph Hellwig 			}
1451f461d2dcSChristoph Hellwig 
1452f461d2dcSChristoph Hellwig 			if (c == '-') {
1453f461d2dcSChristoph Hellwig 				err = proc_get_long(&p, &left, &val_b,
1454f461d2dcSChristoph Hellwig 						     &neg, tr_b, sizeof(tr_b),
1455f461d2dcSChristoph Hellwig 						     &c);
1456f461d2dcSChristoph Hellwig 				/*
1457f461d2dcSChristoph Hellwig 				 * If we consumed all of a truncated buffer or
1458f461d2dcSChristoph Hellwig 				 * then stop here, reset, & come back for more.
1459f461d2dcSChristoph Hellwig 				 */
1460f461d2dcSChristoph Hellwig 				if (!left && skipped) {
1461f461d2dcSChristoph Hellwig 					left = saved_left;
1462f461d2dcSChristoph Hellwig 					break;
1463f461d2dcSChristoph Hellwig 				}
1464f461d2dcSChristoph Hellwig 
1465f461d2dcSChristoph Hellwig 				if (err)
1466f461d2dcSChristoph Hellwig 					break;
1467f461d2dcSChristoph Hellwig 				if (val_b >= bitmap_len || neg ||
1468f461d2dcSChristoph Hellwig 				    val_a > val_b) {
1469f461d2dcSChristoph Hellwig 					err = -EINVAL;
1470f461d2dcSChristoph Hellwig 					break;
1471f461d2dcSChristoph Hellwig 				}
1472f461d2dcSChristoph Hellwig 				if (left) {
1473f461d2dcSChristoph Hellwig 					p++;
1474f461d2dcSChristoph Hellwig 					left--;
1475f461d2dcSChristoph Hellwig 				}
1476f461d2dcSChristoph Hellwig 			}
1477f461d2dcSChristoph Hellwig 
1478f461d2dcSChristoph Hellwig 			bitmap_set(tmp_bitmap, val_a, val_b - val_a + 1);
1479f461d2dcSChristoph Hellwig 			proc_skip_char(&p, &left, '\n');
1480f461d2dcSChristoph Hellwig 		}
1481f461d2dcSChristoph Hellwig 		left += skipped;
1482f461d2dcSChristoph Hellwig 	} else {
1483f461d2dcSChristoph Hellwig 		unsigned long bit_a, bit_b = 0;
14849a52c5f3SJiapeng Chong 		bool first = 1;
1485f461d2dcSChristoph Hellwig 
1486f461d2dcSChristoph Hellwig 		while (left) {
1487f461d2dcSChristoph Hellwig 			bit_a = find_next_bit(bitmap, bitmap_len, bit_b);
1488f461d2dcSChristoph Hellwig 			if (bit_a >= bitmap_len)
1489f461d2dcSChristoph Hellwig 				break;
1490f461d2dcSChristoph Hellwig 			bit_b = find_next_zero_bit(bitmap, bitmap_len,
1491f461d2dcSChristoph Hellwig 						   bit_a + 1) - 1;
1492f461d2dcSChristoph Hellwig 
149332927393SChristoph Hellwig 			if (!first)
149432927393SChristoph Hellwig 				proc_put_char(&buffer, &left, ',');
149532927393SChristoph Hellwig 			proc_put_long(&buffer, &left, bit_a, false);
1496f461d2dcSChristoph Hellwig 			if (bit_a != bit_b) {
149732927393SChristoph Hellwig 				proc_put_char(&buffer, &left, '-');
149832927393SChristoph Hellwig 				proc_put_long(&buffer, &left, bit_b, false);
1499f461d2dcSChristoph Hellwig 			}
1500f461d2dcSChristoph Hellwig 
1501f461d2dcSChristoph Hellwig 			first = 0; bit_b++;
1502f461d2dcSChristoph Hellwig 		}
150332927393SChristoph Hellwig 		proc_put_char(&buffer, &left, '\n');
1504f461d2dcSChristoph Hellwig 	}
1505f461d2dcSChristoph Hellwig 
1506f461d2dcSChristoph Hellwig 	if (!err) {
1507f461d2dcSChristoph Hellwig 		if (write) {
1508f461d2dcSChristoph Hellwig 			if (*ppos)
1509f461d2dcSChristoph Hellwig 				bitmap_or(bitmap, bitmap, tmp_bitmap, bitmap_len);
1510f461d2dcSChristoph Hellwig 			else
1511f461d2dcSChristoph Hellwig 				bitmap_copy(bitmap, tmp_bitmap, bitmap_len);
1512f461d2dcSChristoph Hellwig 		}
1513f461d2dcSChristoph Hellwig 		*lenp -= left;
1514f461d2dcSChristoph Hellwig 		*ppos += *lenp;
1515f461d2dcSChristoph Hellwig 	}
1516f461d2dcSChristoph Hellwig 
1517f461d2dcSChristoph Hellwig 	bitmap_free(tmp_bitmap);
1518f461d2dcSChristoph Hellwig 	return err;
1519f461d2dcSChristoph Hellwig }
1520f461d2dcSChristoph Hellwig 
1521f461d2dcSChristoph Hellwig #else /* CONFIG_PROC_SYSCTL */
1522f461d2dcSChristoph Hellwig 
1523f461d2dcSChristoph Hellwig int proc_dostring(struct ctl_table *table, int write,
152432927393SChristoph Hellwig 		  void *buffer, size_t *lenp, loff_t *ppos)
1525f461d2dcSChristoph Hellwig {
1526f461d2dcSChristoph Hellwig 	return -ENOSYS;
1527f461d2dcSChristoph Hellwig }
1528f461d2dcSChristoph Hellwig 
1529a2071573SJia He int proc_dobool(struct ctl_table *table, int write,
1530a2071573SJia He 		void *buffer, size_t *lenp, loff_t *ppos)
1531a2071573SJia He {
1532a2071573SJia He 	return -ENOSYS;
1533a2071573SJia He }
1534a2071573SJia He 
1535f461d2dcSChristoph Hellwig int proc_dointvec(struct ctl_table *table, int write,
153632927393SChristoph Hellwig 		  void *buffer, size_t *lenp, loff_t *ppos)
1537f461d2dcSChristoph Hellwig {
1538f461d2dcSChristoph Hellwig 	return -ENOSYS;
1539f461d2dcSChristoph Hellwig }
1540f461d2dcSChristoph Hellwig 
1541f461d2dcSChristoph Hellwig int proc_douintvec(struct ctl_table *table, int write,
154232927393SChristoph Hellwig 		  void *buffer, size_t *lenp, loff_t *ppos)
1543f461d2dcSChristoph Hellwig {
1544f461d2dcSChristoph Hellwig 	return -ENOSYS;
1545f461d2dcSChristoph Hellwig }
1546f461d2dcSChristoph Hellwig 
1547f461d2dcSChristoph Hellwig int proc_dointvec_minmax(struct ctl_table *table, int write,
154832927393SChristoph Hellwig 		    void *buffer, size_t *lenp, loff_t *ppos)
1549f461d2dcSChristoph Hellwig {
1550f461d2dcSChristoph Hellwig 	return -ENOSYS;
1551f461d2dcSChristoph Hellwig }
1552f461d2dcSChristoph Hellwig 
1553f461d2dcSChristoph Hellwig int proc_douintvec_minmax(struct ctl_table *table, int write,
155432927393SChristoph Hellwig 			  void *buffer, size_t *lenp, loff_t *ppos)
1555f461d2dcSChristoph Hellwig {
1556f461d2dcSChristoph Hellwig 	return -ENOSYS;
1557f461d2dcSChristoph Hellwig }
1558f461d2dcSChristoph Hellwig 
1559cb944413SEric Dumazet int proc_dou8vec_minmax(struct ctl_table *table, int write,
1560cb944413SEric Dumazet 			void *buffer, size_t *lenp, loff_t *ppos)
1561cb944413SEric Dumazet {
1562cb944413SEric Dumazet 	return -ENOSYS;
1563cb944413SEric Dumazet }
1564cb944413SEric Dumazet 
1565f461d2dcSChristoph Hellwig int proc_dointvec_jiffies(struct ctl_table *table, int write,
156632927393SChristoph Hellwig 		    void *buffer, size_t *lenp, loff_t *ppos)
1567f461d2dcSChristoph Hellwig {
1568f461d2dcSChristoph Hellwig 	return -ENOSYS;
1569f461d2dcSChristoph Hellwig }
1570f461d2dcSChristoph Hellwig 
1571c381d02bSYuwei Wang int proc_dointvec_ms_jiffies_minmax(struct ctl_table *table, int write,
1572c381d02bSYuwei Wang 				    void *buffer, size_t *lenp, loff_t *ppos)
1573c381d02bSYuwei Wang {
1574c381d02bSYuwei Wang 	return -ENOSYS;
1575c381d02bSYuwei Wang }
1576c381d02bSYuwei Wang 
1577f461d2dcSChristoph Hellwig int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
157832927393SChristoph Hellwig 		    void *buffer, size_t *lenp, loff_t *ppos)
1579f461d2dcSChristoph Hellwig {
1580f461d2dcSChristoph Hellwig 	return -ENOSYS;
1581f461d2dcSChristoph Hellwig }
1582f461d2dcSChristoph Hellwig 
1583f461d2dcSChristoph Hellwig int proc_dointvec_ms_jiffies(struct ctl_table *table, int write,
158432927393SChristoph Hellwig 			     void *buffer, size_t *lenp, loff_t *ppos)
1585f461d2dcSChristoph Hellwig {
1586f461d2dcSChristoph Hellwig 	return -ENOSYS;
1587f461d2dcSChristoph Hellwig }
1588f461d2dcSChristoph Hellwig 
1589f461d2dcSChristoph Hellwig int proc_doulongvec_minmax(struct ctl_table *table, int write,
159032927393SChristoph Hellwig 		    void *buffer, size_t *lenp, loff_t *ppos)
1591f461d2dcSChristoph Hellwig {
1592f461d2dcSChristoph Hellwig 	return -ENOSYS;
1593f461d2dcSChristoph Hellwig }
1594f461d2dcSChristoph Hellwig 
1595f461d2dcSChristoph Hellwig int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write,
159632927393SChristoph Hellwig 				      void *buffer, size_t *lenp, loff_t *ppos)
1597f461d2dcSChristoph Hellwig {
1598f461d2dcSChristoph Hellwig 	return -ENOSYS;
1599f461d2dcSChristoph Hellwig }
1600f461d2dcSChristoph Hellwig 
1601f461d2dcSChristoph Hellwig int proc_do_large_bitmap(struct ctl_table *table, int write,
160232927393SChristoph Hellwig 			 void *buffer, size_t *lenp, loff_t *ppos)
1603f461d2dcSChristoph Hellwig {
1604f461d2dcSChristoph Hellwig 	return -ENOSYS;
1605f461d2dcSChristoph Hellwig }
1606f461d2dcSChristoph Hellwig 
1607f461d2dcSChristoph Hellwig #endif /* CONFIG_PROC_SYSCTL */
1608f461d2dcSChristoph Hellwig 
1609f461d2dcSChristoph Hellwig #if defined(CONFIG_SYSCTL)
1610f461d2dcSChristoph Hellwig int proc_do_static_key(struct ctl_table *table, int write,
161132927393SChristoph Hellwig 		       void *buffer, size_t *lenp, loff_t *ppos)
1612f461d2dcSChristoph Hellwig {
1613f461d2dcSChristoph Hellwig 	struct static_key *key = (struct static_key *)table->data;
1614f461d2dcSChristoph Hellwig 	static DEFINE_MUTEX(static_key_mutex);
1615f461d2dcSChristoph Hellwig 	int val, ret;
1616f461d2dcSChristoph Hellwig 	struct ctl_table tmp = {
1617f461d2dcSChristoph Hellwig 		.data   = &val,
1618f461d2dcSChristoph Hellwig 		.maxlen = sizeof(val),
1619f461d2dcSChristoph Hellwig 		.mode   = table->mode,
1620f461d2dcSChristoph Hellwig 		.extra1 = SYSCTL_ZERO,
1621f461d2dcSChristoph Hellwig 		.extra2 = SYSCTL_ONE,
1622f461d2dcSChristoph Hellwig 	};
1623f461d2dcSChristoph Hellwig 
1624f461d2dcSChristoph Hellwig 	if (write && !capable(CAP_SYS_ADMIN))
1625f461d2dcSChristoph Hellwig 		return -EPERM;
1626f461d2dcSChristoph Hellwig 
1627f461d2dcSChristoph Hellwig 	mutex_lock(&static_key_mutex);
1628f461d2dcSChristoph Hellwig 	val = static_key_enabled(key);
1629f461d2dcSChristoph Hellwig 	ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
1630f461d2dcSChristoph Hellwig 	if (write && !ret) {
1631f461d2dcSChristoph Hellwig 		if (val)
1632f461d2dcSChristoph Hellwig 			static_key_enable(key);
1633f461d2dcSChristoph Hellwig 		else
1634f461d2dcSChristoph Hellwig 			static_key_disable(key);
1635f461d2dcSChristoph Hellwig 	}
1636f461d2dcSChristoph Hellwig 	mutex_unlock(&static_key_mutex);
1637f461d2dcSChristoph Hellwig 	return ret;
1638f461d2dcSChristoph Hellwig }
1639f461d2dcSChristoph Hellwig 
1640d8217f07SEric W. Biederman static struct ctl_table kern_table[] = {
16411799e35dSIngo Molnar 	{
16421da177e4SLinus Torvalds 		.procname	= "panic",
16431da177e4SLinus Torvalds 		.data		= &panic_timeout,
16441da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
16451da177e4SLinus Torvalds 		.mode		= 0644,
16466d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
16471da177e4SLinus Torvalds 	},
164834f5a398STheodore Ts'o #ifdef CONFIG_PROC_SYSCTL
16491da177e4SLinus Torvalds 	{
16501da177e4SLinus Torvalds 		.procname	= "tainted",
165125ddbb18SAndi Kleen 		.maxlen 	= sizeof(long),
165234f5a398STheodore Ts'o 		.mode		= 0644,
16536d456111SEric W. Biederman 		.proc_handler	= proc_taint,
16541da177e4SLinus Torvalds 	},
1655f4aacea2SKees Cook 	{
1656f4aacea2SKees Cook 		.procname	= "sysctl_writes_strict",
1657f4aacea2SKees Cook 		.data		= &sysctl_writes_strict,
1658f4aacea2SKees Cook 		.maxlen		= sizeof(int),
1659f4aacea2SKees Cook 		.mode		= 0644,
1660f4aacea2SKees Cook 		.proc_handler	= proc_dointvec_minmax,
166178e36f3bSXiaoming Ni 		.extra1		= SYSCTL_NEG_ONE,
1662eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
1663f4aacea2SKees Cook 	},
166434f5a398STheodore Ts'o #endif
166545807a1dSIngo Molnar 	{
166645807a1dSIngo Molnar 		.procname	= "print-fatal-signals",
166745807a1dSIngo Molnar 		.data		= &print_fatal_signals,
166845807a1dSIngo Molnar 		.maxlen		= sizeof(int),
166945807a1dSIngo Molnar 		.mode		= 0644,
16706d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
167145807a1dSIngo Molnar 	},
167272c57ed5SDavid S. Miller #ifdef CONFIG_SPARC
16731da177e4SLinus Torvalds 	{
16741da177e4SLinus Torvalds 		.procname	= "reboot-cmd",
16751da177e4SLinus Torvalds 		.data		= reboot_command,
16761da177e4SLinus Torvalds 		.maxlen		= 256,
16771da177e4SLinus Torvalds 		.mode		= 0644,
16786d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
16791da177e4SLinus Torvalds 	},
16801da177e4SLinus Torvalds 	{
16811da177e4SLinus Torvalds 		.procname	= "stop-a",
16821da177e4SLinus Torvalds 		.data		= &stop_a_enabled,
16831da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
16841da177e4SLinus Torvalds 		.mode		= 0644,
16856d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
16861da177e4SLinus Torvalds 	},
16871da177e4SLinus Torvalds 	{
16881da177e4SLinus Torvalds 		.procname	= "scons-poweroff",
16891da177e4SLinus Torvalds 		.data		= &scons_pwroff,
16901da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
16911da177e4SLinus Torvalds 		.mode		= 0644,
16926d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
16931da177e4SLinus Torvalds 	},
16941da177e4SLinus Torvalds #endif
16950871420fSDavid S. Miller #ifdef CONFIG_SPARC64
16960871420fSDavid S. Miller 	{
16970871420fSDavid S. Miller 		.procname	= "tsb-ratio",
16980871420fSDavid S. Miller 		.data		= &sysctl_tsb_ratio,
16990871420fSDavid S. Miller 		.maxlen		= sizeof (int),
17000871420fSDavid S. Miller 		.mode		= 0644,
17016d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
17020871420fSDavid S. Miller 	},
17030871420fSDavid S. Miller #endif
1704b67114dbSHelge Deller #ifdef CONFIG_PARISC
17051da177e4SLinus Torvalds 	{
17061da177e4SLinus Torvalds 		.procname	= "soft-power",
17071da177e4SLinus Torvalds 		.data		= &pwrsw_enabled,
17081da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
17091da177e4SLinus Torvalds 		.mode		= 0644,
17106d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
17111da177e4SLinus Torvalds 	},
1712bf14e3b9SVineet Gupta #endif
1713bf14e3b9SVineet Gupta #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_ALLOW
17141da177e4SLinus Torvalds 	{
17151da177e4SLinus Torvalds 		.procname	= "unaligned-trap",
17161da177e4SLinus Torvalds 		.data		= &unaligned_enabled,
17171da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
17181da177e4SLinus Torvalds 		.mode		= 0644,
17196d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
17201da177e4SLinus Torvalds 	},
17211da177e4SLinus Torvalds #endif
1722f38f1d2aSSteven Rostedt #ifdef CONFIG_STACK_TRACER
1723f38f1d2aSSteven Rostedt 	{
1724f38f1d2aSSteven Rostedt 		.procname	= "stack_tracer_enabled",
1725f38f1d2aSSteven Rostedt 		.data		= &stack_tracer_enabled,
1726f38f1d2aSSteven Rostedt 		.maxlen		= sizeof(int),
1727f38f1d2aSSteven Rostedt 		.mode		= 0644,
17286d456111SEric W. Biederman 		.proc_handler	= stack_trace_sysctl,
1729f38f1d2aSSteven Rostedt 	},
1730f38f1d2aSSteven Rostedt #endif
1731944ac425SSteven Rostedt #ifdef CONFIG_TRACING
1732944ac425SSteven Rostedt 	{
17333299b4ddSPeter Zijlstra 		.procname	= "ftrace_dump_on_oops",
1734944ac425SSteven Rostedt 		.data		= &ftrace_dump_on_oops,
1735944ac425SSteven Rostedt 		.maxlen		= sizeof(int),
1736944ac425SSteven Rostedt 		.mode		= 0644,
17376d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1738944ac425SSteven Rostedt 	},
1739de7edd31SSteven Rostedt (Red Hat) 	{
1740de7edd31SSteven Rostedt (Red Hat) 		.procname	= "traceoff_on_warning",
1741de7edd31SSteven Rostedt (Red Hat) 		.data		= &__disable_trace_on_warning,
1742de7edd31SSteven Rostedt (Red Hat) 		.maxlen		= sizeof(__disable_trace_on_warning),
1743de7edd31SSteven Rostedt (Red Hat) 		.mode		= 0644,
1744de7edd31SSteven Rostedt (Red Hat) 		.proc_handler	= proc_dointvec,
1745de7edd31SSteven Rostedt (Red Hat) 	},
17460daa2302SSteven Rostedt (Red Hat) 	{
17470daa2302SSteven Rostedt (Red Hat) 		.procname	= "tracepoint_printk",
17480daa2302SSteven Rostedt (Red Hat) 		.data		= &tracepoint_printk,
17490daa2302SSteven Rostedt (Red Hat) 		.maxlen		= sizeof(tracepoint_printk),
17500daa2302SSteven Rostedt (Red Hat) 		.mode		= 0644,
175142391745SSteven Rostedt (Red Hat) 		.proc_handler	= tracepoint_printk_sysctl,
17520daa2302SSteven Rostedt (Red Hat) 	},
1753944ac425SSteven Rostedt #endif
1754a1ef5adbSJohannes Berg #ifdef CONFIG_MODULES
17551da177e4SLinus Torvalds 	{
17561da177e4SLinus Torvalds 		.procname	= "modprobe",
17571da177e4SLinus Torvalds 		.data		= &modprobe_path,
17581da177e4SLinus Torvalds 		.maxlen		= KMOD_PATH_LEN,
17591da177e4SLinus Torvalds 		.mode		= 0644,
17606d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
17611da177e4SLinus Torvalds 	},
17623d43321bSKees Cook 	{
17633d43321bSKees Cook 		.procname	= "modules_disabled",
17643d43321bSKees Cook 		.data		= &modules_disabled,
17653d43321bSKees Cook 		.maxlen		= sizeof(int),
17663d43321bSKees Cook 		.mode		= 0644,
17673d43321bSKees Cook 		/* only handle a transition from default "0" to "1" */
17686d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
1769eec4844fSMatteo Croce 		.extra1		= SYSCTL_ONE,
1770eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
17713d43321bSKees Cook 	},
17721da177e4SLinus Torvalds #endif
177386d56134SMichael Marineau #ifdef CONFIG_UEVENT_HELPER
17741da177e4SLinus Torvalds 	{
17751da177e4SLinus Torvalds 		.procname	= "hotplug",
1776312c004dSKay Sievers 		.data		= &uevent_helper,
1777312c004dSKay Sievers 		.maxlen		= UEVENT_HELPER_PATH_LEN,
17781da177e4SLinus Torvalds 		.mode		= 0644,
17796d456111SEric W. Biederman 		.proc_handler	= proc_dostring,
17801da177e4SLinus Torvalds 	},
178186d56134SMichael Marineau #endif
17821da177e4SLinus Torvalds #ifdef CONFIG_MAGIC_SYSRQ
17831da177e4SLinus Torvalds 	{
17841da177e4SLinus Torvalds 		.procname	= "sysrq",
1785eaee4172SDmitry Safonov 		.data		= NULL,
17861da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
17871da177e4SLinus Torvalds 		.mode		= 0644,
178897f5f0cdSDmitry Torokhov 		.proc_handler	= sysrq_sysctl_handler,
17891da177e4SLinus Torvalds 	},
17901da177e4SLinus Torvalds #endif
1791d6f8ff73SRandy Dunlap #ifdef CONFIG_PROC_SYSCTL
17921da177e4SLinus Torvalds 	{
17931da177e4SLinus Torvalds 		.procname	= "cad_pid",
17949ec52099SCedric Le Goater 		.data		= NULL,
17951da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
17961da177e4SLinus Torvalds 		.mode		= 0600,
17976d456111SEric W. Biederman 		.proc_handler	= proc_do_cad_pid,
17981da177e4SLinus Torvalds 	},
1799d6f8ff73SRandy Dunlap #endif
18001da177e4SLinus Torvalds 	{
18011da177e4SLinus Torvalds 		.procname	= "threads-max",
180216db3d3fSHeinrich Schuchardt 		.data		= NULL,
18031da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
18041da177e4SLinus Torvalds 		.mode		= 0644,
180516db3d3fSHeinrich Schuchardt 		.proc_handler	= sysctl_max_threads,
18061da177e4SLinus Torvalds 	},
18071da177e4SLinus Torvalds 	{
180817f60a7dSEric Paris 		.procname	= "usermodehelper",
180917f60a7dSEric Paris 		.mode		= 0555,
181017f60a7dSEric Paris 		.child		= usermodehelper_table,
181117f60a7dSEric Paris 	},
181217f60a7dSEric Paris 	{
18131da177e4SLinus Torvalds 		.procname	= "overflowuid",
18141da177e4SLinus Torvalds 		.data		= &overflowuid,
18151da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
18161da177e4SLinus Torvalds 		.mode		= 0644,
18176d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
18182452dcb9SXiaoming Ni 		.extra1		= SYSCTL_ZERO,
181954771613SLuis Chamberlain 		.extra2		= SYSCTL_MAXOLDUID,
18201da177e4SLinus Torvalds 	},
18211da177e4SLinus Torvalds 	{
18221da177e4SLinus Torvalds 		.procname	= "overflowgid",
18231da177e4SLinus Torvalds 		.data		= &overflowgid,
18241da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
18251da177e4SLinus Torvalds 		.mode		= 0644,
18266d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
18272452dcb9SXiaoming Ni 		.extra1		= SYSCTL_ZERO,
182854771613SLuis Chamberlain 		.extra2		= SYSCTL_MAXOLDUID,
18291da177e4SLinus Torvalds 	},
1830347a8dc3SMartin Schwidefsky #ifdef CONFIG_S390
18311da177e4SLinus Torvalds 	{
18321da177e4SLinus Torvalds 		.procname	= "userprocess_debug",
1833ab3c68eeSHeiko Carstens 		.data		= &show_unhandled_signals,
18341da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
18351da177e4SLinus Torvalds 		.mode		= 0644,
18366d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
18371da177e4SLinus Torvalds 	},
18381da177e4SLinus Torvalds #endif
18391da177e4SLinus Torvalds 	{
18401da177e4SLinus Torvalds 		.procname	= "pid_max",
18411da177e4SLinus Torvalds 		.data		= &pid_max,
18421da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
18431da177e4SLinus Torvalds 		.mode		= 0644,
18446d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
18451da177e4SLinus Torvalds 		.extra1		= &pid_max_min,
18461da177e4SLinus Torvalds 		.extra2		= &pid_max_max,
18471da177e4SLinus Torvalds 	},
18481da177e4SLinus Torvalds 	{
18491da177e4SLinus Torvalds 		.procname	= "panic_on_oops",
18501da177e4SLinus Torvalds 		.data		= &panic_on_oops,
18511da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
18521da177e4SLinus Torvalds 		.mode		= 0644,
18536d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
18541da177e4SLinus Torvalds 	},
185581c9d43fSFeng Tang 	{
185681c9d43fSFeng Tang 		.procname	= "panic_print",
185781c9d43fSFeng Tang 		.data		= &panic_print,
185881c9d43fSFeng Tang 		.maxlen		= sizeof(unsigned long),
185981c9d43fSFeng Tang 		.mode		= 0644,
186081c9d43fSFeng Tang 		.proc_handler	= proc_doulongvec_minmax,
186181c9d43fSFeng Tang 	},
1862eaf06b24SDan Rosenberg 	{
18631da177e4SLinus Torvalds 		.procname	= "ngroups_max",
1864f628867dSStephen Kitt 		.data		= (void *)&ngroups_max,
18651da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
18661da177e4SLinus Torvalds 		.mode		= 0444,
18676d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
18681da177e4SLinus Torvalds 	},
186973efc039SDan Ballard 	{
187073efc039SDan Ballard 		.procname	= "cap_last_cap",
187173efc039SDan Ballard 		.data		= (void *)&cap_last_cap,
187273efc039SDan Ballard 		.maxlen		= sizeof(int),
187373efc039SDan Ballard 		.mode		= 0444,
187473efc039SDan Ballard 		.proc_handler	= proc_dointvec,
187573efc039SDan Ballard 	},
18765dc30558SDon Zickus #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86)
18775dc30558SDon Zickus 	{
18785dc30558SDon Zickus 		.procname       = "unknown_nmi_panic",
18795dc30558SDon Zickus 		.data           = &unknown_nmi_panic,
18805dc30558SDon Zickus 		.maxlen         = sizeof (int),
18815dc30558SDon Zickus 		.mode           = 0644,
18825dc30558SDon Zickus 		.proc_handler   = proc_dointvec,
18835dc30558SDon Zickus 	},
1884504d7cf1SDon Zickus #endif
1885b6522fa4SXiaoming Ni 
1886b6522fa4SXiaoming Ni #if (defined(CONFIG_X86_32) || defined(CONFIG_PARISC)) && \
1887b6522fa4SXiaoming Ni 	defined(CONFIG_DEBUG_STACKOVERFLOW)
1888b6522fa4SXiaoming Ni 	{
1889b6522fa4SXiaoming Ni 		.procname	= "panic_on_stackoverflow",
1890b6522fa4SXiaoming Ni 		.data		= &sysctl_panic_on_stackoverflow,
1891b6522fa4SXiaoming Ni 		.maxlen		= sizeof(int),
1892b6522fa4SXiaoming Ni 		.mode		= 0644,
1893b6522fa4SXiaoming Ni 		.proc_handler	= proc_dointvec,
1894b6522fa4SXiaoming Ni 	},
1895b6522fa4SXiaoming Ni #endif
18961da177e4SLinus Torvalds #if defined(CONFIG_X86)
18971da177e4SLinus Torvalds 	{
18988da5addaSDon Zickus 		.procname	= "panic_on_unrecovered_nmi",
18998da5addaSDon Zickus 		.data		= &panic_on_unrecovered_nmi,
19008da5addaSDon Zickus 		.maxlen		= sizeof(int),
19018da5addaSDon Zickus 		.mode		= 0644,
19026d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
19038da5addaSDon Zickus 	},
19048da5addaSDon Zickus 	{
19055211a242SKurt Garloff 		.procname	= "panic_on_io_nmi",
19065211a242SKurt Garloff 		.data		= &panic_on_io_nmi,
19075211a242SKurt Garloff 		.maxlen		= sizeof(int),
19085211a242SKurt Garloff 		.mode		= 0644,
19096d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
19105211a242SKurt Garloff 	},
19115211a242SKurt Garloff 	{
19121da177e4SLinus Torvalds 		.procname	= "bootloader_type",
19131da177e4SLinus Torvalds 		.data		= &bootloader_type,
19141da177e4SLinus Torvalds 		.maxlen		= sizeof (int),
19151da177e4SLinus Torvalds 		.mode		= 0444,
19166d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
19171da177e4SLinus Torvalds 	},
19180741f4d2SChuck Ebbert 	{
19195031296cSH. Peter Anvin 		.procname	= "bootloader_version",
19205031296cSH. Peter Anvin 		.data		= &bootloader_version,
19215031296cSH. Peter Anvin 		.maxlen		= sizeof (int),
19225031296cSH. Peter Anvin 		.mode		= 0444,
19236d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
19245031296cSH. Peter Anvin 	},
19255031296cSH. Peter Anvin 	{
19266e7c4025SIngo Molnar 		.procname	= "io_delay_type",
19276e7c4025SIngo Molnar 		.data		= &io_delay_type,
19286e7c4025SIngo Molnar 		.maxlen		= sizeof(int),
19296e7c4025SIngo Molnar 		.mode		= 0644,
19306d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
19316e7c4025SIngo Molnar 	},
19321da177e4SLinus Torvalds #endif
19337a9166e3SLuke Yang #if defined(CONFIG_MMU)
19341da177e4SLinus Torvalds 	{
19351da177e4SLinus Torvalds 		.procname	= "randomize_va_space",
19361da177e4SLinus Torvalds 		.data		= &randomize_va_space,
19371da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
19381da177e4SLinus Torvalds 		.mode		= 0644,
19396d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
19401da177e4SLinus Torvalds 	},
19417a9166e3SLuke Yang #endif
19420152fb37SMartin Schwidefsky #if defined(CONFIG_S390) && defined(CONFIG_SMP)
1943951f22d5SMartin Schwidefsky 	{
1944951f22d5SMartin Schwidefsky 		.procname	= "spin_retry",
1945951f22d5SMartin Schwidefsky 		.data		= &spin_retry,
1946951f22d5SMartin Schwidefsky 		.maxlen		= sizeof (int),
1947951f22d5SMartin Schwidefsky 		.mode		= 0644,
19486d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1949951f22d5SMartin Schwidefsky 	},
1950951f22d5SMartin Schwidefsky #endif
1951673d5b43SLen Brown #if	defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86)
1952c255d844SPavel Machek 	{
1953c255d844SPavel Machek 		.procname	= "acpi_video_flags",
195477afcf78SPavel Machek 		.data		= &acpi_realmode_flags,
1955c255d844SPavel Machek 		.maxlen		= sizeof (unsigned long),
1956c255d844SPavel Machek 		.mode		= 0644,
19576d456111SEric W. Biederman 		.proc_handler	= proc_doulongvec_minmax,
1958c255d844SPavel Machek 	},
1959c255d844SPavel Machek #endif
1960b6fca725SVineet Gupta #ifdef CONFIG_SYSCTL_ARCH_UNALIGN_NO_WARN
1961d2b176edSJes Sorensen 	{
1962d2b176edSJes Sorensen 		.procname	= "ignore-unaligned-usertrap",
1963d2b176edSJes Sorensen 		.data		= &no_unaligned_warning,
1964d2b176edSJes Sorensen 		.maxlen		= sizeof (int),
1965d2b176edSJes Sorensen 		.mode		= 0644,
19666d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
1967d2b176edSJes Sorensen 	},
1968b6fca725SVineet Gupta #endif
1969b6fca725SVineet Gupta #ifdef CONFIG_IA64
197088fc241fSDoug Chapman 	{
197188fc241fSDoug Chapman 		.procname	= "unaligned-dump-stack",
197288fc241fSDoug Chapman 		.data		= &unaligned_dump_stack,
197388fc241fSDoug Chapman 		.maxlen		= sizeof (int),
197488fc241fSDoug Chapman 		.mode		= 0644,
19756d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
197688fc241fSDoug Chapman 	},
1977d2b176edSJes Sorensen #endif
197823f78d4aSIngo Molnar #ifdef CONFIG_RT_MUTEXES
197923f78d4aSIngo Molnar 	{
198023f78d4aSIngo Molnar 		.procname	= "max_lock_depth",
198123f78d4aSIngo Molnar 		.data		= &max_lock_depth,
198223f78d4aSIngo Molnar 		.maxlen		= sizeof(int),
198323f78d4aSIngo Molnar 		.mode		= 0644,
19846d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
198523f78d4aSIngo Molnar 	},
198623f78d4aSIngo Molnar #endif
19870b77f5bfSDavid Howells #ifdef CONFIG_KEYS
19880b77f5bfSDavid Howells 	{
19890b77f5bfSDavid Howells 		.procname	= "keys",
19900b77f5bfSDavid Howells 		.mode		= 0555,
19910b77f5bfSDavid Howells 		.child		= key_sysctls,
19920b77f5bfSDavid Howells 	},
19930b77f5bfSDavid Howells #endif
1994cdd6c482SIngo Molnar #ifdef CONFIG_PERF_EVENTS
1995aa4a2218SVince Weaver 	/*
1996aa4a2218SVince Weaver 	 * User-space scripts rely on the existence of this file
1997aa4a2218SVince Weaver 	 * as a feature check for perf_events being enabled.
1998aa4a2218SVince Weaver 	 *
1999aa4a2218SVince Weaver 	 * So it's an ABI, do not remove!
2000aa4a2218SVince Weaver 	 */
20011ccd1549SPeter Zijlstra 	{
2002cdd6c482SIngo Molnar 		.procname	= "perf_event_paranoid",
2003cdd6c482SIngo Molnar 		.data		= &sysctl_perf_event_paranoid,
2004cdd6c482SIngo Molnar 		.maxlen		= sizeof(sysctl_perf_event_paranoid),
20051ccd1549SPeter Zijlstra 		.mode		= 0644,
20066d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
20071ccd1549SPeter Zijlstra 	},
2008c5078f78SPeter Zijlstra 	{
2009cdd6c482SIngo Molnar 		.procname	= "perf_event_mlock_kb",
2010cdd6c482SIngo Molnar 		.data		= &sysctl_perf_event_mlock,
2011cdd6c482SIngo Molnar 		.maxlen		= sizeof(sysctl_perf_event_mlock),
2012c5078f78SPeter Zijlstra 		.mode		= 0644,
20136d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
2014c5078f78SPeter Zijlstra 	},
2015a78ac325SPeter Zijlstra 	{
2016cdd6c482SIngo Molnar 		.procname	= "perf_event_max_sample_rate",
2017cdd6c482SIngo Molnar 		.data		= &sysctl_perf_event_sample_rate,
2018cdd6c482SIngo Molnar 		.maxlen		= sizeof(sysctl_perf_event_sample_rate),
2019a78ac325SPeter Zijlstra 		.mode		= 0644,
2020163ec435SPeter Zijlstra 		.proc_handler	= perf_proc_update_handler,
2021eec4844fSMatteo Croce 		.extra1		= SYSCTL_ONE,
2022a78ac325SPeter Zijlstra 	},
202314c63f17SDave Hansen 	{
202414c63f17SDave Hansen 		.procname	= "perf_cpu_time_max_percent",
202514c63f17SDave Hansen 		.data		= &sysctl_perf_cpu_time_max_percent,
202614c63f17SDave Hansen 		.maxlen		= sizeof(sysctl_perf_cpu_time_max_percent),
202714c63f17SDave Hansen 		.mode		= 0644,
202814c63f17SDave Hansen 		.proc_handler	= perf_cpu_time_max_percent_handler,
2029eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
203078e36f3bSXiaoming Ni 		.extra2		= SYSCTL_ONE_HUNDRED,
203114c63f17SDave Hansen 	},
2032c5dfd78eSArnaldo Carvalho de Melo 	{
2033c5dfd78eSArnaldo Carvalho de Melo 		.procname	= "perf_event_max_stack",
2034a831100aSArnaldo Carvalho de Melo 		.data		= &sysctl_perf_event_max_stack,
2035c5dfd78eSArnaldo Carvalho de Melo 		.maxlen		= sizeof(sysctl_perf_event_max_stack),
2036c5dfd78eSArnaldo Carvalho de Melo 		.mode		= 0644,
2037c5dfd78eSArnaldo Carvalho de Melo 		.proc_handler	= perf_event_max_stack_handler,
2038eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2039d73840ecSXiaoming Ni 		.extra2		= (void *)&six_hundred_forty_kb,
2040c5dfd78eSArnaldo Carvalho de Melo 	},
2041c85b0334SArnaldo Carvalho de Melo 	{
2042c85b0334SArnaldo Carvalho de Melo 		.procname	= "perf_event_max_contexts_per_stack",
2043c85b0334SArnaldo Carvalho de Melo 		.data		= &sysctl_perf_event_max_contexts_per_stack,
2044c85b0334SArnaldo Carvalho de Melo 		.maxlen		= sizeof(sysctl_perf_event_max_contexts_per_stack),
2045c85b0334SArnaldo Carvalho de Melo 		.mode		= 0644,
2046c85b0334SArnaldo Carvalho de Melo 		.proc_handler	= perf_event_max_stack_handler,
2047eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
204878e36f3bSXiaoming Ni 		.extra2		= SYSCTL_ONE_THOUSAND,
2049c85b0334SArnaldo Carvalho de Melo 	},
20501ccd1549SPeter Zijlstra #endif
20519e3961a0SPrarit Bhargava 	{
20529e3961a0SPrarit Bhargava 		.procname	= "panic_on_warn",
20539e3961a0SPrarit Bhargava 		.data		= &panic_on_warn,
20549e3961a0SPrarit Bhargava 		.maxlen		= sizeof(int),
20559e3961a0SPrarit Bhargava 		.mode		= 0644,
20569e3961a0SPrarit Bhargava 		.proc_handler	= proc_dointvec_minmax,
2057eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2058eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
20599e3961a0SPrarit Bhargava 	},
20607251ceb5SGeert Uytterhoeven #ifdef CONFIG_TREE_RCU
2061088e9d25SDaniel Bristot de Oliveira 	{
2062088e9d25SDaniel Bristot de Oliveira 		.procname	= "panic_on_rcu_stall",
2063088e9d25SDaniel Bristot de Oliveira 		.data		= &sysctl_panic_on_rcu_stall,
2064088e9d25SDaniel Bristot de Oliveira 		.maxlen		= sizeof(sysctl_panic_on_rcu_stall),
2065088e9d25SDaniel Bristot de Oliveira 		.mode		= 0644,
2066088e9d25SDaniel Bristot de Oliveira 		.proc_handler	= proc_dointvec_minmax,
2067eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2068eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
2069088e9d25SDaniel Bristot de Oliveira 	},
2070dfe56404Schao 	{
2071dfe56404Schao 		.procname	= "max_rcu_stall_to_panic",
2072dfe56404Schao 		.data		= &sysctl_max_rcu_stall_to_panic,
2073dfe56404Schao 		.maxlen		= sizeof(sysctl_max_rcu_stall_to_panic),
2074dfe56404Schao 		.mode		= 0644,
2075dfe56404Schao 		.proc_handler	= proc_dointvec_minmax,
2076dfe56404Schao 		.extra1		= SYSCTL_ONE,
2077dfe56404Schao 		.extra2		= SYSCTL_INT_MAX,
2078dfe56404Schao 	},
2079dfe56404Schao #endif
20806fce56ecSEric W. Biederman 	{ }
20811da177e4SLinus Torvalds };
20821da177e4SLinus Torvalds 
2083d8217f07SEric W. Biederman static struct ctl_table vm_table[] = {
20841da177e4SLinus Torvalds 	{
20851da177e4SLinus Torvalds 		.procname	= "overcommit_memory",
20861da177e4SLinus Torvalds 		.data		= &sysctl_overcommit_memory,
20871da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_overcommit_memory),
20881da177e4SLinus Torvalds 		.mode		= 0644,
208956f3547bSFeng Tang 		.proc_handler	= overcommit_policy_handler,
2090eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
209178e36f3bSXiaoming Ni 		.extra2		= SYSCTL_TWO,
20921da177e4SLinus Torvalds 	},
20931da177e4SLinus Torvalds 	{
20941da177e4SLinus Torvalds 		.procname	= "overcommit_ratio",
20951da177e4SLinus Torvalds 		.data		= &sysctl_overcommit_ratio,
20961da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_overcommit_ratio),
20971da177e4SLinus Torvalds 		.mode		= 0644,
209849f0ce5fSJerome Marchand 		.proc_handler	= overcommit_ratio_handler,
209949f0ce5fSJerome Marchand 	},
210049f0ce5fSJerome Marchand 	{
210149f0ce5fSJerome Marchand 		.procname	= "overcommit_kbytes",
210249f0ce5fSJerome Marchand 		.data		= &sysctl_overcommit_kbytes,
210349f0ce5fSJerome Marchand 		.maxlen		= sizeof(sysctl_overcommit_kbytes),
210449f0ce5fSJerome Marchand 		.mode		= 0644,
210549f0ce5fSJerome Marchand 		.proc_handler	= overcommit_kbytes_handler,
21061da177e4SLinus Torvalds 	},
21071da177e4SLinus Torvalds 	{
21081da177e4SLinus Torvalds 		.procname	= "page-cluster",
21091da177e4SLinus Torvalds 		.data		= &page_cluster,
21101da177e4SLinus Torvalds 		.maxlen		= sizeof(int),
21111da177e4SLinus Torvalds 		.mode		= 0644,
2112cb16e95fSPetr Holasek 		.proc_handler	= proc_dointvec_minmax,
2113eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2114ea0ffd0cSKairui Song 		.extra2		= (void *)&page_cluster_max,
21151da177e4SLinus Torvalds 	},
21161da177e4SLinus Torvalds 	{
21171efff914STheodore Ts'o 		.procname	= "dirtytime_expire_seconds",
21181efff914STheodore Ts'o 		.data		= &dirtytime_expire_interval,
21192d87b309SRandy Dunlap 		.maxlen		= sizeof(dirtytime_expire_interval),
21201efff914STheodore Ts'o 		.mode		= 0644,
21211efff914STheodore Ts'o 		.proc_handler	= dirtytime_interval_handler,
2122eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
21231efff914STheodore Ts'o 	},
21241efff914STheodore Ts'o 	{
21251da177e4SLinus Torvalds 		.procname	= "swappiness",
21261da177e4SLinus Torvalds 		.data		= &vm_swappiness,
21271da177e4SLinus Torvalds 		.maxlen		= sizeof(vm_swappiness),
21281da177e4SLinus Torvalds 		.mode		= 0644,
21296d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
2130eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
213178e36f3bSXiaoming Ni 		.extra2		= SYSCTL_TWO_HUNDRED,
21321da177e4SLinus Torvalds 	},
213343b5240cSMuchun Song #ifdef CONFIG_NUMA
213443b5240cSMuchun Song 	{
213543b5240cSMuchun Song 		.procname	= "numa_stat",
213643b5240cSMuchun Song 		.data		= &sysctl_vm_numa_stat,
213743b5240cSMuchun Song 		.maxlen		= sizeof(int),
213843b5240cSMuchun Song 		.mode		= 0644,
213943b5240cSMuchun Song 		.proc_handler	= sysctl_vm_numa_stat_handler,
214043b5240cSMuchun Song 		.extra1		= SYSCTL_ZERO,
214143b5240cSMuchun Song 		.extra2		= SYSCTL_ONE,
214243b5240cSMuchun Song 	},
214343b5240cSMuchun Song #endif
21441da177e4SLinus Torvalds #ifdef CONFIG_HUGETLB_PAGE
21451da177e4SLinus Torvalds 	{
21461da177e4SLinus Torvalds 		.procname	= "nr_hugepages",
2147e5ff2159SAndi Kleen 		.data		= NULL,
21481da177e4SLinus Torvalds 		.maxlen		= sizeof(unsigned long),
21491da177e4SLinus Torvalds 		.mode		= 0644,
21506d456111SEric W. Biederman 		.proc_handler	= hugetlb_sysctl_handler,
21511da177e4SLinus Torvalds 	},
215206808b08SLee Schermerhorn #ifdef CONFIG_NUMA
215306808b08SLee Schermerhorn 	{
215406808b08SLee Schermerhorn 		.procname       = "nr_hugepages_mempolicy",
215506808b08SLee Schermerhorn 		.data           = NULL,
215606808b08SLee Schermerhorn 		.maxlen         = sizeof(unsigned long),
215706808b08SLee Schermerhorn 		.mode           = 0644,
215806808b08SLee Schermerhorn 		.proc_handler   = &hugetlb_mempolicy_sysctl_handler,
215906808b08SLee Schermerhorn 	},
216006808b08SLee Schermerhorn #endif
21611da177e4SLinus Torvalds 	 {
21621da177e4SLinus Torvalds 		.procname	= "hugetlb_shm_group",
21631da177e4SLinus Torvalds 		.data		= &sysctl_hugetlb_shm_group,
21641da177e4SLinus Torvalds 		.maxlen		= sizeof(gid_t),
21651da177e4SLinus Torvalds 		.mode		= 0644,
21666d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
21671da177e4SLinus Torvalds 	 },
2168396faf03SMel Gorman 	{
2169d1c3fb1fSNishanth Aravamudan 		.procname	= "nr_overcommit_hugepages",
2170e5ff2159SAndi Kleen 		.data		= NULL,
2171e5ff2159SAndi Kleen 		.maxlen		= sizeof(unsigned long),
2172d1c3fb1fSNishanth Aravamudan 		.mode		= 0644,
21736d456111SEric W. Biederman 		.proc_handler	= hugetlb_overcommit_handler,
2174d1c3fb1fSNishanth Aravamudan 	},
21751da177e4SLinus Torvalds #endif
21761da177e4SLinus Torvalds 	{
21771da177e4SLinus Torvalds 		.procname	= "lowmem_reserve_ratio",
21781da177e4SLinus Torvalds 		.data		= &sysctl_lowmem_reserve_ratio,
21791da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_lowmem_reserve_ratio),
21801da177e4SLinus Torvalds 		.mode		= 0644,
21816d456111SEric W. Biederman 		.proc_handler	= lowmem_reserve_ratio_sysctl_handler,
21821da177e4SLinus Torvalds 	},
21831da177e4SLinus Torvalds 	{
21849d0243bcSAndrew Morton 		.procname	= "drop_caches",
21859d0243bcSAndrew Morton 		.data		= &sysctl_drop_caches,
21869d0243bcSAndrew Morton 		.maxlen		= sizeof(int),
2187204cb79aSJohannes Weiner 		.mode		= 0200,
21889d0243bcSAndrew Morton 		.proc_handler	= drop_caches_sysctl_handler,
2189eec4844fSMatteo Croce 		.extra1		= SYSCTL_ONE,
219078e36f3bSXiaoming Ni 		.extra2		= SYSCTL_FOUR,
21919d0243bcSAndrew Morton 	},
219276ab0f53SMel Gorman #ifdef CONFIG_COMPACTION
219376ab0f53SMel Gorman 	{
219476ab0f53SMel Gorman 		.procname	= "compact_memory",
2195ef498438SPintu Kumar 		.data		= NULL,
219676ab0f53SMel Gorman 		.maxlen		= sizeof(int),
219776ab0f53SMel Gorman 		.mode		= 0200,
219876ab0f53SMel Gorman 		.proc_handler	= sysctl_compaction_handler,
219976ab0f53SMel Gorman 	},
22005e771905SMel Gorman 	{
2201facdaa91SNitin Gupta 		.procname	= "compaction_proactiveness",
2202facdaa91SNitin Gupta 		.data		= &sysctl_compaction_proactiveness,
2203d34c0a75SNitin Gupta 		.maxlen		= sizeof(sysctl_compaction_proactiveness),
2204facdaa91SNitin Gupta 		.mode		= 0644,
220565d759c8SCharan Teja Reddy 		.proc_handler	= compaction_proactiveness_sysctl_handler,
2206facdaa91SNitin Gupta 		.extra1		= SYSCTL_ZERO,
220778e36f3bSXiaoming Ni 		.extra2		= SYSCTL_ONE_HUNDRED,
2208facdaa91SNitin Gupta 	},
2209facdaa91SNitin Gupta 	{
22105e771905SMel Gorman 		.procname	= "extfrag_threshold",
22115e771905SMel Gorman 		.data		= &sysctl_extfrag_threshold,
22125e771905SMel Gorman 		.maxlen		= sizeof(int),
22135e771905SMel Gorman 		.mode		= 0644,
22146b7e5cadSMatthew Wilcox 		.proc_handler	= proc_dointvec_minmax,
22152452dcb9SXiaoming Ni 		.extra1		= SYSCTL_ZERO,
2216feb2bd01SLiu Shixin 		.extra2		= SYSCTL_ONE_THOUSAND,
22175e771905SMel Gorman 	},
22185bbe3547SEric B Munson 	{
22195bbe3547SEric B Munson 		.procname	= "compact_unevictable_allowed",
22205bbe3547SEric B Munson 		.data		= &sysctl_compact_unevictable_allowed,
22215bbe3547SEric B Munson 		.maxlen		= sizeof(int),
22225bbe3547SEric B Munson 		.mode		= 0644,
22236923aa0dSSebastian Andrzej Siewior 		.proc_handler	= proc_dointvec_minmax_warn_RT_change,
2224eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2225eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
22265bbe3547SEric B Munson 	},
22275e771905SMel Gorman 
222876ab0f53SMel Gorman #endif /* CONFIG_COMPACTION */
22299d0243bcSAndrew Morton 	{
22301da177e4SLinus Torvalds 		.procname	= "min_free_kbytes",
22311da177e4SLinus Torvalds 		.data		= &min_free_kbytes,
22321da177e4SLinus Torvalds 		.maxlen		= sizeof(min_free_kbytes),
22331da177e4SLinus Torvalds 		.mode		= 0644,
22346d456111SEric W. Biederman 		.proc_handler	= min_free_kbytes_sysctl_handler,
2235eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
22361da177e4SLinus Torvalds 	},
22378ad4b1fbSRohit Seth 	{
22381c30844dSMel Gorman 		.procname	= "watermark_boost_factor",
22391c30844dSMel Gorman 		.data		= &watermark_boost_factor,
22401c30844dSMel Gorman 		.maxlen		= sizeof(watermark_boost_factor),
22411c30844dSMel Gorman 		.mode		= 0644,
224226363af5SChristoph Hellwig 		.proc_handler	= proc_dointvec_minmax,
2243eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
22441c30844dSMel Gorman 	},
22451c30844dSMel Gorman 	{
2246795ae7a0SJohannes Weiner 		.procname	= "watermark_scale_factor",
2247795ae7a0SJohannes Weiner 		.data		= &watermark_scale_factor,
2248795ae7a0SJohannes Weiner 		.maxlen		= sizeof(watermark_scale_factor),
2249795ae7a0SJohannes Weiner 		.mode		= 0644,
2250795ae7a0SJohannes Weiner 		.proc_handler	= watermark_scale_factor_sysctl_handler,
2251eec4844fSMatteo Croce 		.extra1		= SYSCTL_ONE,
225278e36f3bSXiaoming Ni 		.extra2		= SYSCTL_THREE_THOUSAND,
2253795ae7a0SJohannes Weiner 	},
2254795ae7a0SJohannes Weiner 	{
225574f44822SMel Gorman 		.procname	= "percpu_pagelist_high_fraction",
225674f44822SMel Gorman 		.data		= &percpu_pagelist_high_fraction,
225774f44822SMel Gorman 		.maxlen		= sizeof(percpu_pagelist_high_fraction),
22588ad4b1fbSRohit Seth 		.mode		= 0644,
225974f44822SMel Gorman 		.proc_handler	= percpu_pagelist_high_fraction_sysctl_handler,
2260eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
22618ad4b1fbSRohit Seth 	},
22625ef64cc8SLinus Torvalds 	{
22635ef64cc8SLinus Torvalds 		.procname	= "page_lock_unfairness",
22645ef64cc8SLinus Torvalds 		.data		= &sysctl_page_lock_unfairness,
22655ef64cc8SLinus Torvalds 		.maxlen		= sizeof(sysctl_page_lock_unfairness),
22665ef64cc8SLinus Torvalds 		.mode		= 0644,
22675ef64cc8SLinus Torvalds 		.proc_handler	= proc_dointvec_minmax,
22685ef64cc8SLinus Torvalds 		.extra1		= SYSCTL_ZERO,
22695ef64cc8SLinus Torvalds 	},
22701da177e4SLinus Torvalds #ifdef CONFIG_MMU
22711da177e4SLinus Torvalds 	{
22721da177e4SLinus Torvalds 		.procname	= "max_map_count",
22731da177e4SLinus Torvalds 		.data		= &sysctl_max_map_count,
22741da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_max_map_count),
22751da177e4SLinus Torvalds 		.mode		= 0644,
22763e26120cSWANG Cong 		.proc_handler	= proc_dointvec_minmax,
2277eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
22781da177e4SLinus Torvalds 	},
2279dd8632a1SPaul Mundt #else
2280dd8632a1SPaul Mundt 	{
2281dd8632a1SPaul Mundt 		.procname	= "nr_trim_pages",
2282dd8632a1SPaul Mundt 		.data		= &sysctl_nr_trim_pages,
2283dd8632a1SPaul Mundt 		.maxlen		= sizeof(sysctl_nr_trim_pages),
2284dd8632a1SPaul Mundt 		.mode		= 0644,
22856d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
2286eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2287dd8632a1SPaul Mundt 	},
22881da177e4SLinus Torvalds #endif
22891da177e4SLinus Torvalds 	{
22901da177e4SLinus Torvalds 		.procname	= "vfs_cache_pressure",
22911da177e4SLinus Torvalds 		.data		= &sysctl_vfs_cache_pressure,
22921da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_vfs_cache_pressure),
22931da177e4SLinus Torvalds 		.mode		= 0644,
22943b3376f2SLin Feng 		.proc_handler	= proc_dointvec_minmax,
2295eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
22961da177e4SLinus Torvalds 	},
229767f3977fSAlexandre Ghiti #if defined(HAVE_ARCH_PICK_MMAP_LAYOUT) || \
229867f3977fSAlexandre Ghiti     defined(CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT)
22991da177e4SLinus Torvalds 	{
23001da177e4SLinus Torvalds 		.procname	= "legacy_va_layout",
23011da177e4SLinus Torvalds 		.data		= &sysctl_legacy_va_layout,
23021da177e4SLinus Torvalds 		.maxlen		= sizeof(sysctl_legacy_va_layout),
23031da177e4SLinus Torvalds 		.mode		= 0644,
23043b3376f2SLin Feng 		.proc_handler	= proc_dointvec_minmax,
2305eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
23061da177e4SLinus Torvalds 	},
23071da177e4SLinus Torvalds #endif
23081743660bSChristoph Lameter #ifdef CONFIG_NUMA
23091743660bSChristoph Lameter 	{
23101743660bSChristoph Lameter 		.procname	= "zone_reclaim_mode",
2311a5f5f91dSMel Gorman 		.data		= &node_reclaim_mode,
2312a5f5f91dSMel Gorman 		.maxlen		= sizeof(node_reclaim_mode),
23131743660bSChristoph Lameter 		.mode		= 0644,
23143b3376f2SLin Feng 		.proc_handler	= proc_dointvec_minmax,
2315eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
23161743660bSChristoph Lameter 	},
23179614634fSChristoph Lameter 	{
23189614634fSChristoph Lameter 		.procname	= "min_unmapped_ratio",
23199614634fSChristoph Lameter 		.data		= &sysctl_min_unmapped_ratio,
23209614634fSChristoph Lameter 		.maxlen		= sizeof(sysctl_min_unmapped_ratio),
23219614634fSChristoph Lameter 		.mode		= 0644,
23226d456111SEric W. Biederman 		.proc_handler	= sysctl_min_unmapped_ratio_sysctl_handler,
2323eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
232478e36f3bSXiaoming Ni 		.extra2		= SYSCTL_ONE_HUNDRED,
23259614634fSChristoph Lameter 	},
23260ff38490SChristoph Lameter 	{
23270ff38490SChristoph Lameter 		.procname	= "min_slab_ratio",
23280ff38490SChristoph Lameter 		.data		= &sysctl_min_slab_ratio,
23290ff38490SChristoph Lameter 		.maxlen		= sizeof(sysctl_min_slab_ratio),
23300ff38490SChristoph Lameter 		.mode		= 0644,
23316d456111SEric W. Biederman 		.proc_handler	= sysctl_min_slab_ratio_sysctl_handler,
2332eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
233378e36f3bSXiaoming Ni 		.extra2		= SYSCTL_ONE_HUNDRED,
23340ff38490SChristoph Lameter 	},
23351743660bSChristoph Lameter #endif
233677461ab3SChristoph Lameter #ifdef CONFIG_SMP
233777461ab3SChristoph Lameter 	{
233877461ab3SChristoph Lameter 		.procname	= "stat_interval",
233977461ab3SChristoph Lameter 		.data		= &sysctl_stat_interval,
234077461ab3SChristoph Lameter 		.maxlen		= sizeof(sysctl_stat_interval),
234177461ab3SChristoph Lameter 		.mode		= 0644,
23426d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_jiffies,
234377461ab3SChristoph Lameter 	},
234452b6f46bSHugh Dickins 	{
234552b6f46bSHugh Dickins 		.procname	= "stat_refresh",
234652b6f46bSHugh Dickins 		.data		= NULL,
234752b6f46bSHugh Dickins 		.maxlen		= 0,
234852b6f46bSHugh Dickins 		.mode		= 0600,
234952b6f46bSHugh Dickins 		.proc_handler	= vmstat_refresh,
235052b6f46bSHugh Dickins 	},
235177461ab3SChristoph Lameter #endif
23526e141546SDavid Howells #ifdef CONFIG_MMU
2353ed032189SEric Paris 	{
2354ed032189SEric Paris 		.procname	= "mmap_min_addr",
2355788084abSEric Paris 		.data		= &dac_mmap_min_addr,
2356ed032189SEric Paris 		.maxlen		= sizeof(unsigned long),
2357ed032189SEric Paris 		.mode		= 0644,
23586d456111SEric W. Biederman 		.proc_handler	= mmap_min_addr_handler,
2359ed032189SEric Paris 	},
23606e141546SDavid Howells #endif
2361f0c0b2b8SKAMEZAWA Hiroyuki #ifdef CONFIG_NUMA
2362f0c0b2b8SKAMEZAWA Hiroyuki 	{
2363f0c0b2b8SKAMEZAWA Hiroyuki 		.procname	= "numa_zonelist_order",
2364f0c0b2b8SKAMEZAWA Hiroyuki 		.data		= &numa_zonelist_order,
2365f0c0b2b8SKAMEZAWA Hiroyuki 		.maxlen		= NUMA_ZONELIST_ORDER_LEN,
2366f0c0b2b8SKAMEZAWA Hiroyuki 		.mode		= 0644,
23676d456111SEric W. Biederman 		.proc_handler	= numa_zonelist_order_handler,
2368f0c0b2b8SKAMEZAWA Hiroyuki 	},
2369f0c0b2b8SKAMEZAWA Hiroyuki #endif
23702b8232ceSAl Viro #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \
23715c36e657SPaul Mundt    (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL))
2372e6e5494cSIngo Molnar 	{
2373e6e5494cSIngo Molnar 		.procname	= "vdso_enabled",
23743d7ee969SAndy Lutomirski #ifdef CONFIG_X86_32
23753d7ee969SAndy Lutomirski 		.data		= &vdso32_enabled,
23763d7ee969SAndy Lutomirski 		.maxlen		= sizeof(vdso32_enabled),
23773d7ee969SAndy Lutomirski #else
2378e6e5494cSIngo Molnar 		.data		= &vdso_enabled,
2379e6e5494cSIngo Molnar 		.maxlen		= sizeof(vdso_enabled),
23803d7ee969SAndy Lutomirski #endif
2381e6e5494cSIngo Molnar 		.mode		= 0644,
23826d456111SEric W. Biederman 		.proc_handler	= proc_dointvec,
2383eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2384e6e5494cSIngo Molnar 	},
2385e6e5494cSIngo Molnar #endif
23866a46079cSAndi Kleen #ifdef CONFIG_MEMORY_FAILURE
23876a46079cSAndi Kleen 	{
23886a46079cSAndi Kleen 		.procname	= "memory_failure_early_kill",
23896a46079cSAndi Kleen 		.data		= &sysctl_memory_failure_early_kill,
23906a46079cSAndi Kleen 		.maxlen		= sizeof(sysctl_memory_failure_early_kill),
23916a46079cSAndi Kleen 		.mode		= 0644,
23926d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
2393eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2394eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
23956a46079cSAndi Kleen 	},
23966a46079cSAndi Kleen 	{
23976a46079cSAndi Kleen 		.procname	= "memory_failure_recovery",
23986a46079cSAndi Kleen 		.data		= &sysctl_memory_failure_recovery,
23996a46079cSAndi Kleen 		.maxlen		= sizeof(sysctl_memory_failure_recovery),
24006a46079cSAndi Kleen 		.mode		= 0644,
24016d456111SEric W. Biederman 		.proc_handler	= proc_dointvec_minmax,
2402eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2403eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
24046a46079cSAndi Kleen 	},
24056a46079cSAndi Kleen #endif
2406c9b1d098SAndrew Shewmaker 	{
2407c9b1d098SAndrew Shewmaker 		.procname	= "user_reserve_kbytes",
2408c9b1d098SAndrew Shewmaker 		.data		= &sysctl_user_reserve_kbytes,
2409c9b1d098SAndrew Shewmaker 		.maxlen		= sizeof(sysctl_user_reserve_kbytes),
2410c9b1d098SAndrew Shewmaker 		.mode		= 0644,
2411c9b1d098SAndrew Shewmaker 		.proc_handler	= proc_doulongvec_minmax,
2412c9b1d098SAndrew Shewmaker 	},
24134eeab4f5SAndrew Shewmaker 	{
24144eeab4f5SAndrew Shewmaker 		.procname	= "admin_reserve_kbytes",
24154eeab4f5SAndrew Shewmaker 		.data		= &sysctl_admin_reserve_kbytes,
24164eeab4f5SAndrew Shewmaker 		.maxlen		= sizeof(sysctl_admin_reserve_kbytes),
24174eeab4f5SAndrew Shewmaker 		.mode		= 0644,
24184eeab4f5SAndrew Shewmaker 		.proc_handler	= proc_doulongvec_minmax,
24194eeab4f5SAndrew Shewmaker 	},
2420d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_BITS
2421d07e2259SDaniel Cashman 	{
2422d07e2259SDaniel Cashman 		.procname	= "mmap_rnd_bits",
2423d07e2259SDaniel Cashman 		.data		= &mmap_rnd_bits,
2424d07e2259SDaniel Cashman 		.maxlen		= sizeof(mmap_rnd_bits),
2425d07e2259SDaniel Cashman 		.mode		= 0600,
2426d07e2259SDaniel Cashman 		.proc_handler	= proc_dointvec_minmax,
2427d07e2259SDaniel Cashman 		.extra1		= (void *)&mmap_rnd_bits_min,
2428d07e2259SDaniel Cashman 		.extra2		= (void *)&mmap_rnd_bits_max,
2429d07e2259SDaniel Cashman 	},
2430d07e2259SDaniel Cashman #endif
2431d07e2259SDaniel Cashman #ifdef CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS
2432d07e2259SDaniel Cashman 	{
2433d07e2259SDaniel Cashman 		.procname	= "mmap_rnd_compat_bits",
2434d07e2259SDaniel Cashman 		.data		= &mmap_rnd_compat_bits,
2435d07e2259SDaniel Cashman 		.maxlen		= sizeof(mmap_rnd_compat_bits),
2436d07e2259SDaniel Cashman 		.mode		= 0600,
2437d07e2259SDaniel Cashman 		.proc_handler	= proc_dointvec_minmax,
2438d07e2259SDaniel Cashman 		.extra1		= (void *)&mmap_rnd_compat_bits_min,
2439d07e2259SDaniel Cashman 		.extra2		= (void *)&mmap_rnd_compat_bits_max,
2440d07e2259SDaniel Cashman 	},
2441d07e2259SDaniel Cashman #endif
2442cefdca0aSPeter Xu #ifdef CONFIG_USERFAULTFD
2443cefdca0aSPeter Xu 	{
2444cefdca0aSPeter Xu 		.procname	= "unprivileged_userfaultfd",
2445cefdca0aSPeter Xu 		.data		= &sysctl_unprivileged_userfaultfd,
2446cefdca0aSPeter Xu 		.maxlen		= sizeof(sysctl_unprivileged_userfaultfd),
2447cefdca0aSPeter Xu 		.mode		= 0644,
2448cefdca0aSPeter Xu 		.proc_handler	= proc_dointvec_minmax,
2449eec4844fSMatteo Croce 		.extra1		= SYSCTL_ZERO,
2450eec4844fSMatteo Croce 		.extra2		= SYSCTL_ONE,
2451cefdca0aSPeter Xu 	},
2452cefdca0aSPeter Xu #endif
24536fce56ecSEric W. Biederman 	{ }
24541da177e4SLinus Torvalds };
24551da177e4SLinus Torvalds 
2456d8217f07SEric W. Biederman static struct ctl_table debug_table[] = {
24577ac57a89SCatalin Marinas #ifdef CONFIG_SYSCTL_EXCEPTION_TRACE
2458abd4f750SMasoud Asgharifard Sharbiani 	{
2459abd4f750SMasoud Asgharifard Sharbiani 		.procname	= "exception-trace",
2460abd4f750SMasoud Asgharifard Sharbiani 		.data		= &show_unhandled_signals,
2461abd4f750SMasoud Asgharifard Sharbiani 		.maxlen		= sizeof(int),
2462abd4f750SMasoud Asgharifard Sharbiani 		.mode		= 0644,
2463abd4f750SMasoud Asgharifard Sharbiani 		.proc_handler	= proc_dointvec
2464abd4f750SMasoud Asgharifard Sharbiani 	},
2465abd4f750SMasoud Asgharifard Sharbiani #endif
24666fce56ecSEric W. Biederman 	{ }
24671da177e4SLinus Torvalds };
24681da177e4SLinus Torvalds 
2469d8217f07SEric W. Biederman static struct ctl_table dev_table[] = {
24706fce56ecSEric W. Biederman 	{ }
24711da177e4SLinus Torvalds };
24721da177e4SLinus Torvalds 
247351cb8dfcSLuis Chamberlain DECLARE_SYSCTL_BASE(kernel, kern_table);
247451cb8dfcSLuis Chamberlain DECLARE_SYSCTL_BASE(vm, vm_table);
247551cb8dfcSLuis Chamberlain DECLARE_SYSCTL_BASE(debug, debug_table);
247651cb8dfcSLuis Chamberlain DECLARE_SYSCTL_BASE(dev, dev_table);
2477f461d2dcSChristoph Hellwig 
2478d8c0418aSLuis Chamberlain int __init sysctl_init_bases(void)
2479330d57fbSAl Viro {
248051cb8dfcSLuis Chamberlain 	register_sysctl_base(kernel);
248151cb8dfcSLuis Chamberlain 	register_sysctl_base(vm);
248251cb8dfcSLuis Chamberlain 	register_sysctl_base(debug);
248351cb8dfcSLuis Chamberlain 	register_sysctl_base(dev);
2484fd4b616bSSteven Rostedt 
2485330d57fbSAl Viro 	return 0;
2486f7e6ced4SAl Viro }
2487b89a8171SEric W. Biederman #endif /* CONFIG_SYSCTL */
24881da177e4SLinus Torvalds /*
24891da177e4SLinus Torvalds  * No sense putting this after each symbol definition, twice,
24901da177e4SLinus Torvalds  * exception granted :-)
24911da177e4SLinus Torvalds  */
2492a2071573SJia He EXPORT_SYMBOL(proc_dobool);
24931da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec);
2494e7d316a0SSubash Abhinov Kasiviswanathan EXPORT_SYMBOL(proc_douintvec);
24951da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_jiffies);
24961da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_minmax);
249761d9b56aSLuis R. Rodriguez EXPORT_SYMBOL_GPL(proc_douintvec_minmax);
24981da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
24991da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
25001da177e4SLinus Torvalds EXPORT_SYMBOL(proc_dostring);
25011da177e4SLinus Torvalds EXPORT_SYMBOL(proc_doulongvec_minmax);
25021da177e4SLinus Torvalds EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
25030bc19985SStephen Suryaputra EXPORT_SYMBOL(proc_do_large_bitmap);
2504