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/random.h>
12 #include <linux/sysctl.h>
13 #include <linux/wait.h>
14 #include <linux/rwsem.h>
16 #ifdef CONFIG_PROC_SYSCTL
18 static void *get_uts(struct ctl_table *table)
20 char *which = table->data;
21 struct uts_namespace *uts_ns;
23 uts_ns = current->nsproxy->uts_ns;
24 which = (which - (char *)&init_uts_ns) + (char *)uts_ns;
30 * Special case of dostring for the UTS structure. This has locks
31 * to observe. Should this be in kernel/sys.c ????
33 static int proc_do_uts_string(struct ctl_table *table, int write,
34 void *buffer, size_t *lenp, loff_t *ppos)
36 struct ctl_table uts_table;
38 char tmp_data[__NEW_UTS_LEN + 1];
40 memcpy(&uts_table, table, sizeof(uts_table));
41 uts_table.data = tmp_data;
44 * Buffer the value in tmp_data so that proc_dostring() can be called
45 * without holding any locks.
46 * We also need to read the original value in the write==1 case to
47 * support partial writes.
50 memcpy(tmp_data, get_uts(table), sizeof(tmp_data));
52 r = proc_dostring(&uts_table, write, buffer, lenp, ppos);
56 * Write back the new value.
57 * Note that, since we dropped uts_sem, the result can
58 * theoretically be incorrect if there are two parallel writes
59 * at non-zero offsets to the same sysctl.
61 add_device_randomness(tmp_data, sizeof(tmp_data));
63 memcpy(get_uts(table), tmp_data, sizeof(tmp_data));
65 proc_sys_poll_notify(table->poll);
71 #define proc_do_uts_string NULL
74 static DEFINE_CTL_TABLE_POLL(hostname_poll);
75 static DEFINE_CTL_TABLE_POLL(domainname_poll);
77 // Note: update 'enum uts_proc' to match any changes to this table
78 static struct ctl_table uts_kern_table[] = {
81 .data = init_uts_ns.name.machine,
82 .maxlen = sizeof(init_uts_ns.name.machine),
84 .proc_handler = proc_do_uts_string,
88 .data = init_uts_ns.name.sysname,
89 .maxlen = sizeof(init_uts_ns.name.sysname),
91 .proc_handler = proc_do_uts_string,
94 .procname = "osrelease",
95 .data = init_uts_ns.name.release,
96 .maxlen = sizeof(init_uts_ns.name.release),
98 .proc_handler = proc_do_uts_string,
101 .procname = "version",
102 .data = init_uts_ns.name.version,
103 .maxlen = sizeof(init_uts_ns.name.version),
105 .proc_handler = proc_do_uts_string,
108 .procname = "hostname",
109 .data = init_uts_ns.name.nodename,
110 .maxlen = sizeof(init_uts_ns.name.nodename),
112 .proc_handler = proc_do_uts_string,
113 .poll = &hostname_poll,
116 .procname = "domainname",
117 .data = init_uts_ns.name.domainname,
118 .maxlen = sizeof(init_uts_ns.name.domainname),
120 .proc_handler = proc_do_uts_string,
121 .poll = &domainname_poll,
126 #ifdef CONFIG_PROC_SYSCTL
128 * Notify userspace about a change in a certain entry of uts_kern_table,
129 * identified by the parameter proc.
131 void uts_proc_notify(enum uts_proc proc)
133 struct ctl_table *table = &uts_kern_table[proc];
135 proc_sys_poll_notify(table->poll);
139 static int __init utsname_sysctl_init(void)
141 register_sysctl("kernel", uts_kern_table);
145 device_initcall(utsname_sysctl_init);