proc.c 11.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * INET		An implementation of the TCP/IP protocol suite for the LINUX
 *		operating system.  INET is implemented using the  BSD Socket
 *		interface as the means of communication with the user level.
 *
 *		This file implements the various access functions for the
 *		PROC file system.  This is very similar to the IPv4 version,
 *		except it reports the sockets in the INET6 address family.
 *
 * Authors:	David S. Miller (davem@caip.rutgers.edu)
11
 *		YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
L
Linus Torvalds 已提交
12 13 14 15 16 17 18 19 20 21 22 23
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 */
#include <linux/socket.h>
#include <linux/net.h>
#include <linux/ipv6.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/stddef.h>
24
#include <linux/export.h>
25
#include <net/net_namespace.h>
26
#include <net/ip.h>
L
Linus Torvalds 已提交
27 28
#include <net/sock.h>
#include <net/tcp.h>
29
#include <net/udp.h>
L
Linus Torvalds 已提交
30 31 32
#include <net/transp_v6.h>
#include <net/ipv6.h>

33 34 35 36 37
#define MAX4(a, b, c, d) \
	max_t(u32, max_t(u32, a, b), max_t(u32, c, d))
#define SNMP_MIB_MAX MAX4(UDP_MIB_MAX, TCP_MIB_MAX, \
			IPSTATS_MIB_MAX, ICMP_MIB_MAX)

L
Linus Torvalds 已提交
38 39
static int sockstat6_seq_show(struct seq_file *seq, void *v)
{
40
	struct net *net = seq->private;
41
	unsigned int frag_mem = ip6_frag_mem(net);
42

L
Linus Torvalds 已提交
43
	seq_printf(seq, "TCP6: inuse %d\n",
44
		       sock_prot_inuse_get(net, &tcpv6_prot));
L
Linus Torvalds 已提交
45
	seq_printf(seq, "UDP6: inuse %d\n",
46
		       sock_prot_inuse_get(net, &udpv6_prot));
47
	seq_printf(seq, "UDPLITE6: inuse %d\n",
48
			sock_prot_inuse_get(net, &udplitev6_prot));
L
Linus Torvalds 已提交
49
	seq_printf(seq, "RAW6: inuse %d\n",
50
		       sock_prot_inuse_get(net, &rawv6_prot));
51
	seq_printf(seq, "FRAG6: inuse %u memory %u\n", !!frag_mem, frag_mem);
L
Linus Torvalds 已提交
52 53 54
	return 0;
}

55 56 57 58 59 60 61 62 63 64 65 66
static int sockstat6_seq_open(struct inode *inode, struct file *file)
{
	return single_open_net(inode, file, sockstat6_seq_show);
}

static const struct file_operations sockstat6_seq_fops = {
	.open	 = sockstat6_seq_open,
	.read	 = seq_read,
	.llseek	 = seq_lseek,
	.release = single_release_net,
};

A
Alexey Dobriyan 已提交
67
static const struct snmp_mib snmp6_ipstats_list[] = {
L
Linus Torvalds 已提交
68
/* ipv6 mib according to RFC 2465 */
69
	SNMP_MIB_ITEM("Ip6InReceives", IPSTATS_MIB_INPKTS),
L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77 78
	SNMP_MIB_ITEM("Ip6InHdrErrors", IPSTATS_MIB_INHDRERRORS),
	SNMP_MIB_ITEM("Ip6InTooBigErrors", IPSTATS_MIB_INTOOBIGERRORS),
	SNMP_MIB_ITEM("Ip6InNoRoutes", IPSTATS_MIB_INNOROUTES),
	SNMP_MIB_ITEM("Ip6InAddrErrors", IPSTATS_MIB_INADDRERRORS),
	SNMP_MIB_ITEM("Ip6InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS),
	SNMP_MIB_ITEM("Ip6InTruncatedPkts", IPSTATS_MIB_INTRUNCATEDPKTS),
	SNMP_MIB_ITEM("Ip6InDiscards", IPSTATS_MIB_INDISCARDS),
	SNMP_MIB_ITEM("Ip6InDelivers", IPSTATS_MIB_INDELIVERS),
	SNMP_MIB_ITEM("Ip6OutForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS),
79
	SNMP_MIB_ITEM("Ip6OutRequests", IPSTATS_MIB_OUTPKTS),
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90
	SNMP_MIB_ITEM("Ip6OutDiscards", IPSTATS_MIB_OUTDISCARDS),
	SNMP_MIB_ITEM("Ip6OutNoRoutes", IPSTATS_MIB_OUTNOROUTES),
	SNMP_MIB_ITEM("Ip6ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT),
	SNMP_MIB_ITEM("Ip6ReasmReqds", IPSTATS_MIB_REASMREQDS),
	SNMP_MIB_ITEM("Ip6ReasmOKs", IPSTATS_MIB_REASMOKS),
	SNMP_MIB_ITEM("Ip6ReasmFails", IPSTATS_MIB_REASMFAILS),
	SNMP_MIB_ITEM("Ip6FragOKs", IPSTATS_MIB_FRAGOKS),
	SNMP_MIB_ITEM("Ip6FragFails", IPSTATS_MIB_FRAGFAILS),
	SNMP_MIB_ITEM("Ip6FragCreates", IPSTATS_MIB_FRAGCREATES),
	SNMP_MIB_ITEM("Ip6InMcastPkts", IPSTATS_MIB_INMCASTPKTS),
	SNMP_MIB_ITEM("Ip6OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS),
91 92 93 94 95 96
	SNMP_MIB_ITEM("Ip6InOctets", IPSTATS_MIB_INOCTETS),
	SNMP_MIB_ITEM("Ip6OutOctets", IPSTATS_MIB_OUTOCTETS),
	SNMP_MIB_ITEM("Ip6InMcastOctets", IPSTATS_MIB_INMCASTOCTETS),
	SNMP_MIB_ITEM("Ip6OutMcastOctets", IPSTATS_MIB_OUTMCASTOCTETS),
	SNMP_MIB_ITEM("Ip6InBcastOctets", IPSTATS_MIB_INBCASTOCTETS),
	SNMP_MIB_ITEM("Ip6OutBcastOctets", IPSTATS_MIB_OUTBCASTOCTETS),
97
	/* IPSTATS_MIB_CSUMERRORS is not relevant in IPv6 (no checksum) */
98 99 100 101
	SNMP_MIB_ITEM("Ip6InNoECTPkts", IPSTATS_MIB_NOECTPKTS),
	SNMP_MIB_ITEM("Ip6InECT1Pkts", IPSTATS_MIB_ECT1PKTS),
	SNMP_MIB_ITEM("Ip6InECT0Pkts", IPSTATS_MIB_ECT0PKTS),
	SNMP_MIB_ITEM("Ip6InCEPkts", IPSTATS_MIB_CEPKTS),
L
Linus Torvalds 已提交
102 103 104
	SNMP_MIB_SENTINEL
};

A
Alexey Dobriyan 已提交
105
static const struct snmp_mib snmp6_icmp6_list[] = {
106
/* icmpv6 mib according to RFC 2466 */
L
Linus Torvalds 已提交
107 108 109
	SNMP_MIB_ITEM("Icmp6InMsgs", ICMP6_MIB_INMSGS),
	SNMP_MIB_ITEM("Icmp6InErrors", ICMP6_MIB_INERRORS),
	SNMP_MIB_ITEM("Icmp6OutMsgs", ICMP6_MIB_OUTMSGS),
E
Eric Dumazet 已提交
110
	SNMP_MIB_ITEM("Icmp6OutErrors", ICMP6_MIB_OUTERRORS),
111
	SNMP_MIB_ITEM("Icmp6InCsumErrors", ICMP6_MIB_CSUMERRORS),
L
Linus Torvalds 已提交
112 113 114
	SNMP_MIB_SENTINEL
};

115
/* RFC 4293 v6 ICMPMsgStatsTable; named items for RFC 2466 compatibility */
116
static const char *const icmp6type2name[256] = {
117 118 119 120
	[ICMPV6_DEST_UNREACH] = "DestUnreachs",
	[ICMPV6_PKT_TOOBIG] = "PktTooBigs",
	[ICMPV6_TIME_EXCEED] = "TimeExcds",
	[ICMPV6_PARAMPROB] = "ParmProblems",
121
	[ICMPV6_ECHO_REQUEST] = "Echos",
122 123 124 125 126 127 128 129 130
	[ICMPV6_ECHO_REPLY] = "EchoReplies",
	[ICMPV6_MGM_QUERY] = "GroupMembQueries",
	[ICMPV6_MGM_REPORT] = "GroupMembResponses",
	[ICMPV6_MGM_REDUCTION] = "GroupMembReductions",
	[ICMPV6_MLD2_REPORT] = "MLDv2Reports",
	[NDISC_ROUTER_ADVERTISEMENT] = "RouterAdvertisements",
	[NDISC_ROUTER_SOLICITATION] = "RouterSolicits",
	[NDISC_NEIGHBOUR_ADVERTISEMENT] = "NeighborAdvertisements",
	[NDISC_NEIGHBOUR_SOLICITATION] = "NeighborSolicits",
131
	[NDISC_REDIRECT] = "Redirects",
132 133 134
};


A
Alexey Dobriyan 已提交
135
static const struct snmp_mib snmp6_udp6_list[] = {
L
Linus Torvalds 已提交
136 137 138 139
	SNMP_MIB_ITEM("Udp6InDatagrams", UDP_MIB_INDATAGRAMS),
	SNMP_MIB_ITEM("Udp6NoPorts", UDP_MIB_NOPORTS),
	SNMP_MIB_ITEM("Udp6InErrors", UDP_MIB_INERRORS),
	SNMP_MIB_ITEM("Udp6OutDatagrams", UDP_MIB_OUTDATAGRAMS),
140 141
	SNMP_MIB_ITEM("Udp6RcvbufErrors", UDP_MIB_RCVBUFERRORS),
	SNMP_MIB_ITEM("Udp6SndbufErrors", UDP_MIB_SNDBUFERRORS),
142
	SNMP_MIB_ITEM("Udp6InCsumErrors", UDP_MIB_CSUMERRORS),
143
	SNMP_MIB_ITEM("Udp6IgnoredMulti", UDP_MIB_IGNOREDMULTI),
L
Linus Torvalds 已提交
144 145 146
	SNMP_MIB_SENTINEL
};

A
Alexey Dobriyan 已提交
147
static const struct snmp_mib snmp6_udplite6_list[] = {
148 149 150 151
	SNMP_MIB_ITEM("UdpLite6InDatagrams", UDP_MIB_INDATAGRAMS),
	SNMP_MIB_ITEM("UdpLite6NoPorts", UDP_MIB_NOPORTS),
	SNMP_MIB_ITEM("UdpLite6InErrors", UDP_MIB_INERRORS),
	SNMP_MIB_ITEM("UdpLite6OutDatagrams", UDP_MIB_OUTDATAGRAMS),
152 153
	SNMP_MIB_ITEM("UdpLite6RcvbufErrors", UDP_MIB_RCVBUFERRORS),
	SNMP_MIB_ITEM("UdpLite6SndbufErrors", UDP_MIB_SNDBUFERRORS),
154
	SNMP_MIB_ITEM("UdpLite6InCsumErrors", UDP_MIB_CSUMERRORS),
155 156 157
	SNMP_MIB_SENTINEL
};

158
static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib)
159
{
160
	char name[32];
161 162 163 164 165
	int i;

	/* print by name -- deprecated items */
	for (i = 0; i < ICMP6MSG_MIB_MAX; i++) {
		int icmptype;
166
		const char *p;
167 168 169 170 171

		icmptype = i & 0xff;
		p = icmp6type2name[icmptype];
		if (!p)	/* don't print un-named types here */
			continue;
172
		snprintf(name, sizeof(name), "Icmp6%s%s",
173 174
			i & 0x100 ? "Out" : "In", p);
		seq_printf(seq, "%-32s\t%lu\n", name,
175
			   atomic_long_read(smib + i));
176 177 178 179 180 181
	}

	/* print by number (nonzero only) - ICMPMsgStat format */
	for (i = 0; i < ICMP6MSG_MIB_MAX; i++) {
		unsigned long val;

182
		val = atomic_long_read(smib + i);
183 184
		if (!val)
			continue;
185
		snprintf(name, sizeof(name), "Icmp6%sType%u",
186 187 188 189 190
			i & 0x100 ?  "Out" : "In", i & 0xff);
		seq_printf(seq, "%-32s\t%lu\n", name, val);
	}
}

191 192 193
/* can be called either with percpu mib (pcpumib != NULL),
 * or shared one (smib != NULL)
 */
194
static void snmp6_seq_show_item(struct seq_file *seq, void __percpu *pcpumib,
195
				atomic_long_t *smib,
A
Alexey Dobriyan 已提交
196
				const struct snmp_mib *itemlist)
L
Linus Torvalds 已提交
197
{
198
	unsigned long buff[SNMP_MIB_MAX];
L
Linus Torvalds 已提交
199
	int i;
200

201 202 203 204 205 206 207 208 209 210 211
	if (pcpumib) {
		memset(buff, 0, sizeof(unsigned long) * SNMP_MIB_MAX);

		snmp_get_cpu_field_batch(buff, itemlist, pcpumib);
		for (i = 0; itemlist[i].name; i++)
			seq_printf(seq, "%-32s\t%lu\n",
				   itemlist[i].name, buff[i]);
	} else {
		for (i = 0; itemlist[i].name; i++)
			seq_printf(seq, "%-32s\t%lu\n", itemlist[i].name,
				   atomic_long_read(smib + itemlist[i].entry));
212
	}
L
Linus Torvalds 已提交
213 214
}

W
WANG Cong 已提交
215
static void snmp6_seq_show_item64(struct seq_file *seq, void __percpu *mib,
216 217
				  const struct snmp_mib *itemlist, size_t syncpoff)
{
218
	u64 buff64[SNMP_MIB_MAX];
219 220
	int i;

221
	memset(buff64, 0, sizeof(u64) * SNMP_MIB_MAX);
222 223

	snmp_get_cpu_field64_batch(buff64, itemlist, mib, syncpoff);
224
	for (i = 0; itemlist[i].name; i++)
225
		seq_printf(seq, "%-32s\t%llu\n", itemlist[i].name, buff64[i]);
226 227
}

L
Linus Torvalds 已提交
228 229
static int snmp6_seq_show(struct seq_file *seq, void *v)
{
230 231
	struct net *net = (struct net *)seq->private;

W
WANG Cong 已提交
232
	snmp6_seq_show_item64(seq, net->mib.ipv6_statistics,
233
			    snmp6_ipstats_list, offsetof(struct ipstats_mib, syncp));
234
	snmp6_seq_show_item(seq, net->mib.icmpv6_statistics,
235
			    NULL, snmp6_icmp6_list);
236
	snmp6_seq_show_icmpv6msg(seq, net->mib.icmpv6msg_statistics->mibs);
237
	snmp6_seq_show_item(seq, net->mib.udp_stats_in6,
238
			    NULL, snmp6_udp6_list);
239
	snmp6_seq_show_item(seq, net->mib.udplite_stats_in6,
240
			    NULL, snmp6_udplite6_list);
L
Linus Torvalds 已提交
241 242 243 244 245
	return 0;
}

static int snmp6_seq_open(struct inode *inode, struct file *file)
{
246
	return single_open_net(inode, file, snmp6_seq_show);
L
Linus Torvalds 已提交
247 248
}

249
static const struct file_operations snmp6_seq_fops = {
L
Linus Torvalds 已提交
250 251 252
	.open	 = snmp6_seq_open,
	.read	 = seq_read,
	.llseek	 = seq_lseek,
253
	.release = single_release_net,
L
Linus Torvalds 已提交
254 255
};

256 257 258 259 260
static int snmp6_dev_seq_show(struct seq_file *seq, void *v)
{
	struct inet6_dev *idev = (struct inet6_dev *)seq->private;

	seq_printf(seq, "%-32s\t%u\n", "ifIndex", idev->dev->ifindex);
W
WANG Cong 已提交
261
	snmp6_seq_show_item64(seq, idev->stats.ipv6,
262
			    snmp6_ipstats_list, offsetof(struct ipstats_mib, syncp));
263
	snmp6_seq_show_item(seq, NULL, idev->stats.icmpv6dev->mibs,
264
			    snmp6_icmp6_list);
265
	snmp6_seq_show_icmpv6msg(seq, idev->stats.icmpv6msgdev->mibs);
266 267 268 269 270
	return 0;
}

static int snmp6_dev_seq_open(struct inode *inode, struct file *file)
{
A
Al Viro 已提交
271
	return single_open(file, snmp6_dev_seq_show, PDE_DATA(inode));
272 273 274 275 276 277 278 279 280
}

static const struct file_operations snmp6_dev_seq_fops = {
	.open	 = snmp6_dev_seq_open,
	.read	 = seq_read,
	.llseek	 = seq_lseek,
	.release = single_release,
};

L
Linus Torvalds 已提交
281 282 283
int snmp6_register_dev(struct inet6_dev *idev)
{
	struct proc_dir_entry *p;
284
	struct net *net;
L
Linus Torvalds 已提交
285 286 287 288

	if (!idev || !idev->dev)
		return -EINVAL;

289 290
	net = dev_net(idev->dev);
	if (!net->mib.proc_net_devsnmp6)
L
Linus Torvalds 已提交
291 292
		return -ENOENT;

293
	p = proc_create_data(idev->dev->name, S_IRUGO,
294 295
			     net->mib.proc_net_devsnmp6,
			     &snmp6_dev_seq_fops, idev);
L
Linus Torvalds 已提交
296 297 298 299 300 301 302 303 304
	if (!p)
		return -ENOMEM;

	idev->stats.proc_dir_entry = p;
	return 0;
}

int snmp6_unregister_dev(struct inet6_dev *idev)
{
305 306
	struct net *net = dev_net(idev->dev);
	if (!net->mib.proc_net_devsnmp6)
L
Linus Torvalds 已提交
307
		return -ENOENT;
J
Jiri Slaby 已提交
308
	if (!idev->stats.proc_dir_entry)
L
Linus Torvalds 已提交
309
		return -EINVAL;
310
	proc_remove(idev->stats.proc_dir_entry);
311
	idev->stats.proc_dir_entry = NULL;
L
Linus Torvalds 已提交
312 313 314
	return 0;
}

315
static int __net_init ipv6_proc_init_net(struct net *net)
316
{
317 318
	if (!proc_create("sockstat6", S_IRUGO, net->proc_net,
			 &sockstat6_seq_fops))
319
		return -ENOMEM;
320

321
	if (!proc_create("snmp6", S_IRUGO, net->proc_net, &snmp6_seq_fops))
322 323 324 325 326
		goto proc_snmp6_fail;

	net->mib.proc_net_devsnmp6 = proc_mkdir("dev_snmp6", net->proc_net);
	if (!net->mib.proc_net_devsnmp6)
		goto proc_dev_snmp6_fail;
327
	return 0;
328

329
proc_dev_snmp6_fail:
330
	remove_proc_entry("snmp6", net->proc_net);
331
proc_snmp6_fail:
332
	remove_proc_entry("sockstat6", net->proc_net);
333
	return -ENOMEM;
334 335
}

336
static void __net_exit ipv6_proc_exit_net(struct net *net)
337
{
338 339 340
	remove_proc_entry("sockstat6", net->proc_net);
	remove_proc_entry("dev_snmp6", net->proc_net);
	remove_proc_entry("snmp6", net->proc_net);
341 342 343 344 345
}

static struct pernet_operations ipv6_proc_ops = {
	.init = ipv6_proc_init_net,
	.exit = ipv6_proc_exit_net,
346
	.async = true,
347 348
};

L
Linus Torvalds 已提交
349 350
int __init ipv6_misc_proc_init(void)
{
351
	return register_pernet_subsys(&ipv6_proc_ops);
L
Linus Torvalds 已提交
352 353 354 355
}

void ipv6_misc_proc_exit(void)
{
356
	unregister_pernet_subsys(&ipv6_proc_ops);
L
Linus Torvalds 已提交
357
}