Merge tag 'modules-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof...
[platform/kernel/linux-starfive.git] / kernel / utsname_sysctl.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  *  Copyright (C) 2007
4  *
5  *  Author: Eric Biederman <ebiederm@xmision.com>
6  */
7
8 #include <linux/export.h>
9 #include <linux/uts.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>
15
16 #ifdef CONFIG_PROC_SYSCTL
17
18 static void *get_uts(struct ctl_table *table)
19 {
20         char *which = table->data;
21         struct uts_namespace *uts_ns;
22
23         uts_ns = current->nsproxy->uts_ns;
24         which = (which - (char *)&init_uts_ns) + (char *)uts_ns;
25
26         return which;
27 }
28
29 /*
30  *      Special case of dostring for the UTS structure. This has locks
31  *      to observe. Should this be in kernel/sys.c ????
32  */
33 static int proc_do_uts_string(struct ctl_table *table, int write,
34                   void *buffer, size_t *lenp, loff_t *ppos)
35 {
36         struct ctl_table uts_table;
37         int r;
38         char tmp_data[__NEW_UTS_LEN + 1];
39
40         memcpy(&uts_table, table, sizeof(uts_table));
41         uts_table.data = tmp_data;
42
43         /*
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.
48          */
49         down_read(&uts_sem);
50         memcpy(tmp_data, get_uts(table), sizeof(tmp_data));
51         up_read(&uts_sem);
52         r = proc_dostring(&uts_table, write, buffer, lenp, ppos);
53
54         if (write) {
55                 /*
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.
60                  */
61                 add_device_randomness(tmp_data, sizeof(tmp_data));
62                 down_write(&uts_sem);
63                 memcpy(get_uts(table), tmp_data, sizeof(tmp_data));
64                 up_write(&uts_sem);
65                 proc_sys_poll_notify(table->poll);
66         }
67
68         return r;
69 }
70 #else
71 #define proc_do_uts_string NULL
72 #endif
73
74 static DEFINE_CTL_TABLE_POLL(hostname_poll);
75 static DEFINE_CTL_TABLE_POLL(domainname_poll);
76
77 static struct ctl_table uts_kern_table[] = {
78         {
79                 .procname       = "ostype",
80                 .data           = init_uts_ns.name.sysname,
81                 .maxlen         = sizeof(init_uts_ns.name.sysname),
82                 .mode           = 0444,
83                 .proc_handler   = proc_do_uts_string,
84         },
85         {
86                 .procname       = "osrelease",
87                 .data           = init_uts_ns.name.release,
88                 .maxlen         = sizeof(init_uts_ns.name.release),
89                 .mode           = 0444,
90                 .proc_handler   = proc_do_uts_string,
91         },
92         {
93                 .procname       = "version",
94                 .data           = init_uts_ns.name.version,
95                 .maxlen         = sizeof(init_uts_ns.name.version),
96                 .mode           = 0444,
97                 .proc_handler   = proc_do_uts_string,
98         },
99         {
100                 .procname       = "hostname",
101                 .data           = init_uts_ns.name.nodename,
102                 .maxlen         = sizeof(init_uts_ns.name.nodename),
103                 .mode           = 0644,
104                 .proc_handler   = proc_do_uts_string,
105                 .poll           = &hostname_poll,
106         },
107         {
108                 .procname       = "domainname",
109                 .data           = init_uts_ns.name.domainname,
110                 .maxlen         = sizeof(init_uts_ns.name.domainname),
111                 .mode           = 0644,
112                 .proc_handler   = proc_do_uts_string,
113                 .poll           = &domainname_poll,
114         },
115         {}
116 };
117
118 static struct ctl_table uts_root_table[] = {
119         {
120                 .procname       = "kernel",
121                 .mode           = 0555,
122                 .child          = uts_kern_table,
123         },
124         {}
125 };
126
127 #ifdef CONFIG_PROC_SYSCTL
128 /*
129  * Notify userspace about a change in a certain entry of uts_kern_table,
130  * identified by the parameter proc.
131  */
132 void uts_proc_notify(enum uts_proc proc)
133 {
134         struct ctl_table *table = &uts_kern_table[proc];
135
136         proc_sys_poll_notify(table->poll);
137 }
138 #endif
139
140 static int __init utsname_sysctl_init(void)
141 {
142         register_sysctl_table(uts_root_table);
143         return 0;
144 }
145
146 device_initcall(utsname_sysctl_init);