]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/linux/sysctl.h
UBUNTU: Ubuntu-5.3.0-29.31
[mirror_ubuntu-eoan-kernel.git] / include / linux / sysctl.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * sysctl.h: General linux system control interface
4 *
5 * Begun 24 March 1995, Stephen Tweedie
6 *
7 ****************************************************************
8 ****************************************************************
9 **
7cc13edc 10 ** WARNING:
1da177e4 11 ** The values in this file are exported to user space via
7cc13edc
EB
12 ** the sysctl() binary interface. Do *NOT* change the
13 ** numbering of any existing values here, and do not change
14 ** any numbers within any one set of values. If you have to
93aec204 15 ** redefine an existing interface, use a new number for it.
7cc13edc
EB
16 ** The kernel will then return -ENOTDIR to any application using
17 ** the old binary interface.
18 **
1da177e4
LT
19 ****************************************************************
20 ****************************************************************
21 */
1da177e4
LT
22#ifndef _LINUX_SYSCTL_H
23#define _LINUX_SYSCTL_H
24
d4ed803c 25#include <linux/list.h>
684adca4 26#include <linux/rcupdate.h>
f1ecf068 27#include <linux/wait.h>
ac13ac6f 28#include <linux/rbtree.h>
e79c6a4f 29#include <linux/uidgid.h>
607ca46e 30#include <uapi/linux/sysctl.h>
1da177e4 31
805b5d5e 32/* For the /proc/sys support */
db3f6001 33struct completion;
1ff007eb 34struct ctl_table;
e51b6ba0 35struct nsproxy;
d7321cd6 36struct ctl_table_root;
f7e6ced4 37struct ctl_table_header;
7ec66d06 38struct ctl_dir;
f7e6ced4 39
eec4844f
MC
40/* Keep the same order as in fs/proc/proc_sysctl.c */
41#define SYSCTL_ZERO ((void *)&sysctl_vals[0])
42#define SYSCTL_ONE ((void *)&sysctl_vals[1])
43#define SYSCTL_INT_MAX ((void *)&sysctl_vals[2])
44
45extern const int sysctl_vals[];
46
8d65af78 47typedef int proc_handler (struct ctl_table *ctl, int write,
1da177e4
LT
48 void __user *buffer, size_t *lenp, loff_t *ppos);
49
8d65af78 50extern int proc_dostring(struct ctl_table *, int,
1da177e4 51 void __user *, size_t *, loff_t *);
8d65af78 52extern int proc_dointvec(struct ctl_table *, int,
1da177e4 53 void __user *, size_t *, loff_t *);
e7d316a0
SAK
54extern int proc_douintvec(struct ctl_table *, int,
55 void __user *, size_t *, loff_t *);
8d65af78 56extern int proc_dointvec_minmax(struct ctl_table *, int,
1da177e4 57 void __user *, size_t *, loff_t *);
61d9b56a
LR
58extern int proc_douintvec_minmax(struct ctl_table *table, int write,
59 void __user *buffer, size_t *lenp,
60 loff_t *ppos);
8d65af78 61extern int proc_dointvec_jiffies(struct ctl_table *, int,
1da177e4 62 void __user *, size_t *, loff_t *);
8d65af78 63extern int proc_dointvec_userhz_jiffies(struct ctl_table *, int,
1da177e4 64 void __user *, size_t *, loff_t *);
8d65af78 65extern int proc_dointvec_ms_jiffies(struct ctl_table *, int,
1da177e4 66 void __user *, size_t *, loff_t *);
8d65af78 67extern int proc_doulongvec_minmax(struct ctl_table *, int,
1da177e4 68 void __user *, size_t *, loff_t *);
d8217f07 69extern int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int,
8d65af78 70 void __user *, size_t *, loff_t *);
9f977fb7
OP
71extern int proc_do_large_bitmap(struct ctl_table *, int,
72 void __user *, size_t *, loff_t *);
a8e11e5c
ED
73extern int proc_do_static_key(struct ctl_table *table, int write,
74 void __user *buffer, size_t *lenp,
75 loff_t *ppos);
1da177e4 76
1da177e4
LT
77/*
78 * Register a set of sysctl names by calling register_sysctl_table
2315ffa0
EB
79 * with an initialised array of struct ctl_table's. An entry with
80 * NULL procname terminates the table. table->de will be
d99f160a 81 * set up by the registration and need not be initialised in advance.
1da177e4
LT
82 *
83 * sysctl names can be mirrored automatically under /proc/sys. The
84 * procname supplied controls /proc naming.
85 *
86 * The table's mode will be honoured both for sys_sysctl(2) and
87 * proc-fs access.
88 *
89 * Leaf nodes in the sysctl tree will be represented by a single file
90 * under /proc; non-leaf nodes will be represented by directories. A
91 * null procname disables /proc mirroring at this node.
d99f160a 92 *
1da177e4
LT
93 * sysctl(2) can automatically manage read and write requests through
94 * the sysctl table. The data and maxlen fields of the ctl_table
95 * struct enable minimal validation of the values being written to be
96 * performed, and the mode field allows minimal authentication.
97 *
1da177e4
LT
98 * There must be a proc_handler routine for any terminal nodes
99 * mirrored under /proc/sys (non-terminals are handled by a built-in
100 * directory handler). Several default handlers are available to
101 * cover common cases.
102 */
103
f1ecf068
LDM
104/* Support for userspace poll() to watch for changes */
105struct ctl_table_poll {
106 atomic_t event;
107 wait_queue_head_t wait;
108};
109
110static inline void *proc_sys_poll_event(struct ctl_table_poll *poll)
111{
112 return (void *)(unsigned long)atomic_read(&poll->event);
113}
114
f1ecf068
LDM
115#define __CTL_TABLE_POLL_INITIALIZER(name) { \
116 .event = ATOMIC_INIT(0), \
117 .wait = __WAIT_QUEUE_HEAD_INITIALIZER(name.wait) }
118
119#define DEFINE_CTL_TABLE_POLL(name) \
120 struct ctl_table_poll name = __CTL_TABLE_POLL_INITIALIZER(name)
121
1da177e4
LT
122/* A sysctl table is an array of struct ctl_table: */
123struct ctl_table
124{
1da177e4
LT
125 const char *procname; /* Text ID for /proc/sys, or zero */
126 void *data;
127 int maxlen;
36fcb589 128 umode_t mode;
f728019b 129 struct ctl_table *child; /* Deprecated */
1da177e4 130 proc_handler *proc_handler; /* Callback for text formatting */
f1ecf068 131 struct ctl_table_poll *poll;
1da177e4
LT
132 void *extra1;
133 void *extra2;
3859a271 134} __randomize_layout;
1da177e4 135
ac13ac6f
EB
136struct ctl_node {
137 struct rb_node node;
138 struct ctl_table_header *header;
139};
140
1da177e4 141/* struct ctl_table_header is used to maintain dynamic lists of
d8217f07 142 struct ctl_table trees. */
1da177e4
LT
143struct ctl_table_header
144{
dfef6dcd
AV
145 union {
146 struct {
147 struct ctl_table *ctl_table;
dfef6dcd
AV
148 int used;
149 int count;
938aaa4f 150 int nreg;
dfef6dcd
AV
151 };
152 struct rcu_head rcu;
153 };
330d57fb 154 struct completion *unregistering;
23eb06de 155 struct ctl_table *ctl_table_arg;
e51b6ba0 156 struct ctl_table_root *root;
73455092 157 struct ctl_table_set *set;
7ec66d06 158 struct ctl_dir *parent;
ac13ac6f 159 struct ctl_node *node;
2fd1d2c4 160 struct hlist_head inodes; /* head for proc_inode->sysctl_inodes */
7ec66d06
EB
161};
162
163struct ctl_dir {
164 /* Header must be at the start of ctl_dir */
165 struct ctl_table_header header;
ac13ac6f 166 struct rb_root root;
1da177e4
LT
167};
168
0ce8974d 169struct ctl_table_set {
0ce8974d 170 int (*is_seen)(struct ctl_table_set *);
0e47c99d 171 struct ctl_dir dir;
0ce8974d
EB
172};
173
174struct ctl_table_root {
0ce8974d 175 struct ctl_table_set default_set;
13bcc6a2 176 struct ctl_table_set *(*lookup)(struct ctl_table_root *root);
e79c6a4f
DT
177 void (*set_ownership)(struct ctl_table_header *head,
178 struct ctl_table *table,
179 kuid_t *uid, kgid_t *gid);
73f7ef43 180 int (*permissions)(struct ctl_table_header *head, struct ctl_table *table);
0ce8974d
EB
181};
182
29e796fd
EB
183/* struct ctl_path describes where in the hierarchy a table is added */
184struct ctl_path {
185 const char *procname;
29e796fd
EB
186};
187
0ce8974d
EB
188#ifdef CONFIG_SYSCTL
189
190void proc_sys_poll_notify(struct ctl_table_poll *poll);
191
192extern void setup_sysctl_set(struct ctl_table_set *p,
9eb47c26 193 struct ctl_table_root *root,
0ce8974d 194 int (*is_seen)(struct ctl_table_set *));
97324cd8 195extern void retire_sysctl_set(struct ctl_table_set *set);
0ce8974d 196
6e9d5164 197struct ctl_table_header *__register_sysctl_table(
60a47a2e 198 struct ctl_table_set *set,
6e9d5164 199 const char *path, struct ctl_table *table);
e51b6ba0 200struct ctl_table_header *__register_sysctl_paths(
60a47a2e 201 struct ctl_table_set *set,
e51b6ba0 202 const struct ctl_path *path, struct ctl_table *table);
fea478d4 203struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table);
d8217f07 204struct ctl_table_header *register_sysctl_table(struct ctl_table * table);
29e796fd
EB
205struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
206 struct ctl_table *table);
0b4d4147 207
1da177e4
LT
208void unregister_sysctl_table(struct ctl_table_header * table);
209
de4e83bd 210extern int sysctl_init(void);
f9bd6733
EB
211
212extern struct ctl_table sysctl_mount_point[];
213
0ce8974d
EB
214#else /* CONFIG_SYSCTL */
215static inline struct ctl_table_header *register_sysctl_table(struct ctl_table * table)
216{
217 return NULL;
218}
219
220static inline struct ctl_table_header *register_sysctl_paths(
221 const struct ctl_path *path, struct ctl_table *table)
222{
223 return NULL;
224}
225
e609a6b8
AB
226static inline struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
227{
228 return NULL;
229}
230
0ce8974d
EB
231static inline void unregister_sysctl_table(struct ctl_table_header * table)
232{
233}
234
235static inline void setup_sysctl_set(struct ctl_table_set *p,
9eb47c26 236 struct ctl_table_root *root,
0ce8974d
EB
237 int (*is_seen)(struct ctl_table_set *))
238{
239}
240
0ce8974d
EB
241#endif /* CONFIG_SYSCTL */
242
16db3d3f
HS
243int sysctl_max_threads(struct ctl_table *table, int write,
244 void __user *buffer, size_t *lenp, loff_t *ppos);
245
1da177e4 246#endif /* _LINUX_SYSCTL_H */