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