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