1 // SPDX-License-Identifier: GPL-2.0-only
5 * Author: Eric Biederman <ebiederm@xmision.com>
8 #include <linux/export.h>
10 #include <linux/utsname.h>
11 #include <linux/sysctl.h>
12 #include <linux/wait.h>
13 #include <linux/rwsem.h>
15 #ifdef CONFIG_PROC_SYSCTL
17 static void *get_uts(struct ctl_table
*table
)
19 char *which
= table
->data
;
20 struct uts_namespace
*uts_ns
;
22 uts_ns
= current
->nsproxy
->uts_ns
;
23 which
= (which
- (char *)&init_uts_ns
) + (char *)uts_ns
;
29 * Special case of dostring for the UTS structure. This has locks
30 * to observe. Should this be in kernel/sys.c ????
32 static int proc_do_uts_string(struct ctl_table
*table
, int write
,
33 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
35 struct ctl_table uts_table
;
37 char tmp_data
[__NEW_UTS_LEN
+ 1];
39 memcpy(&uts_table
, table
, sizeof(uts_table
));
40 uts_table
.data
= tmp_data
;
43 * Buffer the value in tmp_data so that proc_dostring() can be called
44 * without holding any locks.
45 * We also need to read the original value in the write==1 case to
46 * support partial writes.
49 memcpy(tmp_data
, get_uts(table
), sizeof(tmp_data
));
51 r
= proc_dostring(&uts_table
, write
, buffer
, lenp
, ppos
);
55 * Write back the new value.
56 * Note that, since we dropped uts_sem, the result can
57 * theoretically be incorrect if there are two parallel writes
58 * at non-zero offsets to the same sysctl.
61 memcpy(get_uts(table
), tmp_data
, sizeof(tmp_data
));
63 proc_sys_poll_notify(table
->poll
);
69 #define proc_do_uts_string NULL
72 static DEFINE_CTL_TABLE_POLL(hostname_poll
);
73 static DEFINE_CTL_TABLE_POLL(domainname_poll
);
75 static struct ctl_table uts_kern_table
[] = {
78 .data
= init_uts_ns
.name
.sysname
,
79 .maxlen
= sizeof(init_uts_ns
.name
.sysname
),
81 .proc_handler
= proc_do_uts_string
,
84 .procname
= "osrelease",
85 .data
= init_uts_ns
.name
.release
,
86 .maxlen
= sizeof(init_uts_ns
.name
.release
),
88 .proc_handler
= proc_do_uts_string
,
91 .procname
= "version",
92 .data
= init_uts_ns
.name
.version
,
93 .maxlen
= sizeof(init_uts_ns
.name
.version
),
95 .proc_handler
= proc_do_uts_string
,
98 .procname
= "hostname",
99 .data
= init_uts_ns
.name
.nodename
,
100 .maxlen
= sizeof(init_uts_ns
.name
.nodename
),
102 .proc_handler
= proc_do_uts_string
,
103 .poll
= &hostname_poll
,
106 .procname
= "domainname",
107 .data
= init_uts_ns
.name
.domainname
,
108 .maxlen
= sizeof(init_uts_ns
.name
.domainname
),
110 .proc_handler
= proc_do_uts_string
,
111 .poll
= &domainname_poll
,
116 static struct ctl_table uts_root_table
[] = {
118 .procname
= "kernel",
120 .child
= uts_kern_table
,
125 #ifdef CONFIG_PROC_SYSCTL
127 * Notify userspace about a change in a certain entry of uts_kern_table,
128 * identified by the parameter proc.
130 void uts_proc_notify(enum uts_proc proc
)
132 struct ctl_table
*table
= &uts_kern_table
[proc
];
134 proc_sys_poll_notify(table
->poll
);
138 static int __init
utsname_sysctl_init(void)
140 register_sysctl_table(uts_root_table
);
144 device_initcall(utsname_sysctl_init
);