Linux Audio

Check our new training course

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