4 * Author: Eric Biederman <ebiederm@xmision.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2 of the
12 #include <linux/export.h>
13 #include <linux/uts.h>
14 #include <linux/utsname.h>
15 #include <linux/sysctl.h>
16 #include <linux/wait.h>
17 #include <linux/rwsem.h>
19 #ifdef CONFIG_PROC_SYSCTL
21 static void *get_uts(struct ctl_table
*table
)
23 char *which
= table
->data
;
24 struct uts_namespace
*uts_ns
;
26 uts_ns
= current
->nsproxy
->uts_ns
;
27 which
= (which
- (char *)&init_uts_ns
) + (char *)uts_ns
;
33 * Special case of dostring for the UTS structure. This has locks
34 * to observe. Should this be in kernel/sys.c ????
36 static int proc_do_uts_string(struct ctl_table
*table
, int write
,
37 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
39 struct ctl_table uts_table
;
41 char tmp_data
[__NEW_UTS_LEN
+ 1];
43 memcpy(&uts_table
, table
, sizeof(uts_table
));
44 uts_table
.data
= tmp_data
;
47 * Buffer the value in tmp_data so that proc_dostring() can be called
48 * without holding any locks.
49 * We also need to read the original value in the write==1 case to
50 * support partial writes.
53 memcpy(tmp_data
, get_uts(table
), sizeof(tmp_data
));
55 r
= proc_dostring(&uts_table
, write
, buffer
, lenp
, ppos
);
59 * Write back the new value.
60 * Note that, since we dropped uts_sem, the result can
61 * theoretically be incorrect if there are two parallel writes
62 * at non-zero offsets to the same sysctl.
65 memcpy(get_uts(table
), tmp_data
, sizeof(tmp_data
));
67 proc_sys_poll_notify(table
->poll
);
73 #define proc_do_uts_string NULL
76 static DEFINE_CTL_TABLE_POLL(hostname_poll
);
77 static DEFINE_CTL_TABLE_POLL(domainname_poll
);
79 static struct ctl_table uts_kern_table
[] = {
82 .data
= init_uts_ns
.name
.sysname
,
83 .maxlen
= sizeof(init_uts_ns
.name
.sysname
),
85 .proc_handler
= proc_do_uts_string
,
88 .procname
= "osrelease",
89 .data
= init_uts_ns
.name
.release
,
90 .maxlen
= sizeof(init_uts_ns
.name
.release
),
92 .proc_handler
= proc_do_uts_string
,
95 .procname
= "version",
96 .data
= init_uts_ns
.name
.version
,
97 .maxlen
= sizeof(init_uts_ns
.name
.version
),
99 .proc_handler
= proc_do_uts_string
,
102 .procname
= "hostname",
103 .data
= init_uts_ns
.name
.nodename
,
104 .maxlen
= sizeof(init_uts_ns
.name
.nodename
),
106 .proc_handler
= proc_do_uts_string
,
107 .poll
= &hostname_poll
,
110 .procname
= "domainname",
111 .data
= init_uts_ns
.name
.domainname
,
112 .maxlen
= sizeof(init_uts_ns
.name
.domainname
),
114 .proc_handler
= proc_do_uts_string
,
115 .poll
= &domainname_poll
,
120 static struct ctl_table uts_root_table
[] = {
122 .procname
= "kernel",
124 .child
= uts_kern_table
,
129 #ifdef CONFIG_PROC_SYSCTL
131 * Notify userspace about a change in a certain entry of uts_kern_table,
132 * identified by the parameter proc.
134 void uts_proc_notify(enum uts_proc proc
)
136 struct ctl_table
*table
= &uts_kern_table
[proc
];
138 proc_sys_poll_notify(table
->poll
);
142 static int __init
utsname_sysctl_init(void)
144 register_sysctl_table(uts_root_table
);
148 device_initcall(utsname_sysctl_init
);