sysctl_net_core.c 4.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/* -*- linux-c -*-
 * sysctl_net_core.c: sysctl interface to net core subsystem.
 *
 * Begun April 1, 1996, Mike Shaver.
 * Added /proc/sys/net/core directory entry (empty =) ). [MS]
 */

#include <linux/mm.h>
#include <linux/sysctl.h>
#include <linux/module.h>
11
#include <linux/socket.h>
12
#include <linux/netdevice.h>
13
#include <linux/init.h>
14
#include <net/ip.h>
15
#include <net/sock.h>
L
Linus Torvalds 已提交
16

17
static struct ctl_table net_core_table[] = {
L
Linus Torvalds 已提交
18 19 20 21 22 23 24
#ifdef CONFIG_NET
	{
		.ctl_name	= NET_CORE_WMEM_MAX,
		.procname	= "wmem_max",
		.data		= &sysctl_wmem_max,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
25
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
26 27 28 29 30 31 32
	},
	{
		.ctl_name	= NET_CORE_RMEM_MAX,
		.procname	= "rmem_max",
		.data		= &sysctl_rmem_max,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
33
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
34 35 36 37 38 39 40
	},
	{
		.ctl_name	= NET_CORE_WMEM_DEFAULT,
		.procname	= "wmem_default",
		.data		= &sysctl_wmem_default,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
41
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
42 43 44 45 46 47 48
	},
	{
		.ctl_name	= NET_CORE_RMEM_DEFAULT,
		.procname	= "rmem_default",
		.data		= &sysctl_rmem_default,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
49
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
50 51 52 53 54 55 56
	},
	{
		.ctl_name	= NET_CORE_DEV_WEIGHT,
		.procname	= "dev_weight",
		.data		= &weight_p,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
57
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
58 59 60 61 62 63 64
	},
	{
		.ctl_name	= NET_CORE_MAX_BACKLOG,
		.procname	= "netdev_max_backlog",
		.data		= &netdev_max_backlog,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
65
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
66 67 68 69
	},
	{
		.ctl_name	= NET_CORE_MSG_COST,
		.procname	= "message_cost",
D
Dave Young 已提交
70
		.data		= &net_ratelimit_state.interval,
L
Linus Torvalds 已提交
71 72
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
73 74
		.proc_handler	= proc_dointvec_jiffies,
		.strategy	= sysctl_jiffies,
L
Linus Torvalds 已提交
75 76 77 78
	},
	{
		.ctl_name	= NET_CORE_MSG_BURST,
		.procname	= "message_burst",
D
Dave Young 已提交
79
		.data		= &net_ratelimit_state.burst,
L
Linus Torvalds 已提交
80 81
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
82
		.proc_handler	= proc_dointvec,
L
Linus Torvalds 已提交
83 84 85 86 87 88 89
	},
	{
		.ctl_name	= NET_CORE_OPTMEM_MAX,
		.procname	= "optmem_max",
		.data		= &sysctl_optmem_max,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
90
		.proc_handler	= proc_dointvec
L
Linus Torvalds 已提交
91 92
	},
#endif /* CONFIG_NET */
93 94 95 96 97 98
	{
		.ctl_name	= NET_CORE_BUDGET,
		.procname	= "netdev_budget",
		.data		= &netdev_budget,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
99
		.proc_handler	= proc_dointvec
100
	},
101 102 103 104 105 106
	{
		.ctl_name	= NET_CORE_WARNINGS,
		.procname	= "warnings",
		.data		= &net_msg_warn,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
107
		.proc_handler	= proc_dointvec
108
	},
L
Linus Torvalds 已提交
109 110
	{ .ctl_name = 0 }
};
111

112 113 114 115 116 117 118
static struct ctl_table netns_core_table[] = {
	{
		.ctl_name	= NET_CORE_SOMAXCONN,
		.procname	= "somaxconn",
		.data		= &init_net.core.sysctl_somaxconn,
		.maxlen		= sizeof(int),
		.mode		= 0644,
A
Alexey Dobriyan 已提交
119
		.proc_handler	= proc_dointvec
120 121 122 123
	},
	{ .ctl_name = 0 }
};

A
Alexey Dobriyan 已提交
124
__net_initdata struct ctl_path net_core_path[] = {
125 126 127 128 129
	{ .procname = "net", .ctl_name = CTL_NET, },
	{ .procname = "core", .ctl_name = NET_CORE, },
	{ },
};

130
static __net_init int sysctl_core_net_init(struct net *net)
131
{
132
	struct ctl_table *tbl;
133

134
	net->core.sysctl_somaxconn = SOMAXCONN;
135

136
	tbl = netns_core_table;
137
	if (net != &init_net) {
138
		tbl = kmemdup(tbl, sizeof(netns_core_table), GFP_KERNEL);
139 140 141
		if (tbl == NULL)
			goto err_dup;

142
		tbl[0].data = &net->core.sysctl_somaxconn;
143 144
	}

145
	net->core.sysctl_hdr = register_net_sysctl_table(net,
146
			net_core_path, tbl);
147
	if (net->core.sysctl_hdr == NULL)
148
		goto err_reg;
149

150 151 152
	return 0;

err_reg:
153
	if (tbl != netns_core_table)
154 155 156 157 158 159 160 161 162
		kfree(tbl);
err_dup:
	return -ENOMEM;
}

static __net_exit void sysctl_core_net_exit(struct net *net)
{
	struct ctl_table *tbl;

163 164
	tbl = net->core.sysctl_hdr->ctl_table_arg;
	unregister_net_sysctl_table(net->core.sysctl_hdr);
165
	BUG_ON(tbl == netns_core_table);
166 167 168 169 170 171 172 173 174 175
	kfree(tbl);
}

static __net_initdata struct pernet_operations sysctl_core_ops = {
	.init = sysctl_core_net_init,
	.exit = sysctl_core_net_exit,
};

static __init int sysctl_core_init(void)
{
A
Alexey Dobriyan 已提交
176 177 178
	static struct ctl_table empty[1];

	register_sysctl_paths(net_core_path, empty);
179
	register_net_sysctl_rotable(net_core_path, net_core_table);
180
	return register_pernet_subsys(&sysctl_core_ops);
181 182
}

A
Alexey Dobriyan 已提交
183
fs_initcall(sysctl_core_init);