blob: 4ca61d49885b68187eb6fcb6ad209209b955b400 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Eric W. Biederman39732ac2007-02-14 00:33:58 -08002/*
3 * Copyright (C) 2007
4 *
5 * Author: Eric Biederman <ebiederm@xmision.com>
Eric W. Biederman39732ac2007-02-14 00:33:58 -08006 */
7
Paul Gortmaker9984de12011-05-23 14:51:41 -04008#include <linux/export.h>
Eric W. Biederman39732ac2007-02-14 00:33:58 -08009#include <linux/uts.h>
10#include <linux/utsname.h>
Eric W. Biederman39732ac2007-02-14 00:33:58 -080011#include <linux/sysctl.h>
Lucas De Marchif1ecf062011-11-02 13:39:22 -070012#include <linux/wait.h>
Ingo Molnarcd9c5132017-02-08 18:51:58 +010013#include <linux/rwsem.h>
Eric W. Biederman39732ac2007-02-14 00:33:58 -080014
Yuanhan Liucd89f462013-02-27 17:05:22 -080015#ifdef CONFIG_PROC_SYSCTL
16
Jann Horn42a0cc32018-06-25 18:34:10 +020017static void *get_uts(struct ctl_table *table)
Eric W. Biederman39732ac2007-02-14 00:33:58 -080018{
19 char *which = table->data;
Pavel Emelyanov32df81c2007-11-28 16:21:38 -080020 struct uts_namespace *uts_ns;
21
22 uts_ns = current->nsproxy->uts_ns;
23 which = (which - (char *)&init_uts_ns) + (char *)uts_ns;
Cedric Le Goater7d69a1f2007-07-15 23:40:58 -070024
Eric W. Biederman39732ac2007-02-14 00:33:58 -080025 return which;
26}
27
Eric W. Biederman39732ac2007-02-14 00:33:58 -080028/*
29 * Special case of dostring for the UTS structure. This has locks
30 * to observe. Should this be in kernel/sys.c ????
31 */
Joe Perches6f8fd1d2014-06-06 14:38:08 -070032static int proc_do_uts_string(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +020033 void *buffer, size_t *lenp, loff_t *ppos)
Eric W. Biederman39732ac2007-02-14 00:33:58 -080034{
35 struct ctl_table uts_table;
36 int r;
Jann Horn42a0cc32018-06-25 18:34:10 +020037 char tmp_data[__NEW_UTS_LEN + 1];
Lucas De Marchif1ecf062011-11-02 13:39:22 -070038
Jann Horn42a0cc32018-06-25 18:34:10 +020039 memcpy(&uts_table, table, sizeof(uts_table));
40 uts_table.data = tmp_data;
41
42 /*
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.
47 */
48 down_read(&uts_sem);
49 memcpy(tmp_data, get_uts(table), sizeof(tmp_data));
50 up_read(&uts_sem);
51 r = proc_dostring(&uts_table, write, buffer, lenp, ppos);
52
53 if (write) {
54 /*
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.
59 */
60 down_write(&uts_sem);
61 memcpy(get_uts(table), tmp_data, sizeof(tmp_data));
62 up_write(&uts_sem);
Lucas De Marchif1ecf062011-11-02 13:39:22 -070063 proc_sys_poll_notify(table->poll);
Jann Horn42a0cc32018-06-25 18:34:10 +020064 }
Lucas De Marchif1ecf062011-11-02 13:39:22 -070065
Eric W. Biederman39732ac2007-02-14 00:33:58 -080066 return r;
67}
68#else
69#define proc_do_uts_string NULL
70#endif
71
Lucas De Marchif1ecf062011-11-02 13:39:22 -070072static DEFINE_CTL_TABLE_POLL(hostname_poll);
73static DEFINE_CTL_TABLE_POLL(domainname_poll);
74
Eric W. Biederman39732ac2007-02-14 00:33:58 -080075static struct ctl_table uts_kern_table[] = {
76 {
Eric W. Biederman39732ac2007-02-14 00:33:58 -080077 .procname = "ostype",
78 .data = init_uts_ns.name.sysname,
79 .maxlen = sizeof(init_uts_ns.name.sysname),
80 .mode = 0444,
81 .proc_handler = proc_do_uts_string,
Eric W. Biederman39732ac2007-02-14 00:33:58 -080082 },
83 {
Eric W. Biederman39732ac2007-02-14 00:33:58 -080084 .procname = "osrelease",
85 .data = init_uts_ns.name.release,
86 .maxlen = sizeof(init_uts_ns.name.release),
87 .mode = 0444,
88 .proc_handler = proc_do_uts_string,
Eric W. Biederman39732ac2007-02-14 00:33:58 -080089 },
90 {
Eric W. Biederman39732ac2007-02-14 00:33:58 -080091 .procname = "version",
92 .data = init_uts_ns.name.version,
93 .maxlen = sizeof(init_uts_ns.name.version),
94 .mode = 0444,
95 .proc_handler = proc_do_uts_string,
Eric W. Biederman39732ac2007-02-14 00:33:58 -080096 },
97 {
Eric W. Biederman39732ac2007-02-14 00:33:58 -080098 .procname = "hostname",
99 .data = init_uts_ns.name.nodename,
100 .maxlen = sizeof(init_uts_ns.name.nodename),
101 .mode = 0644,
102 .proc_handler = proc_do_uts_string,
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700103 .poll = &hostname_poll,
Eric W. Biederman39732ac2007-02-14 00:33:58 -0800104 },
105 {
Eric W. Biederman39732ac2007-02-14 00:33:58 -0800106 .procname = "domainname",
107 .data = init_uts_ns.name.domainname,
108 .maxlen = sizeof(init_uts_ns.name.domainname),
109 .mode = 0644,
110 .proc_handler = proc_do_uts_string,
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700111 .poll = &domainname_poll,
Eric W. Biederman39732ac2007-02-14 00:33:58 -0800112 },
113 {}
114};
115
116static struct ctl_table uts_root_table[] = {
117 {
Eric W. Biederman39732ac2007-02-14 00:33:58 -0800118 .procname = "kernel",
119 .mode = 0555,
120 .child = uts_kern_table,
121 },
122 {}
123};
124
Lucas De Marchif1ecf062011-11-02 13:39:22 -0700125#ifdef CONFIG_PROC_SYSCTL
126/*
127 * Notify userspace about a change in a certain entry of uts_kern_table,
128 * identified by the parameter proc.
129 */
130void uts_proc_notify(enum uts_proc proc)
131{
132 struct ctl_table *table = &uts_kern_table[proc];
133
134 proc_sys_poll_notify(table->poll);
135}
136#endif
137
Eric W. Biederman39732ac2007-02-14 00:33:58 -0800138static int __init utsname_sysctl_init(void)
139{
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800140 register_sysctl_table(uts_root_table);
Eric W. Biederman39732ac2007-02-14 00:33:58 -0800141 return 0;
142}
143
Fabian Frederick95583e42014-06-04 16:11:26 -0700144device_initcall(utsname_sysctl_init);