vlanproc.c 8.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/******************************************************************************
 * vlanproc.c	VLAN Module. /proc filesystem interface.
 *
 *		This module is completely hardware-independent and provides
 *		access to the router using Linux /proc filesystem.
 *
 * Author:	Ben Greear, <greearb@candelatech.com> coppied from wanproc.c
 *               by: Gene Kozin	<genek@compuserve.com>
 *
 * Copyright:	(c) 1998 Ben Greear
 *
 *		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.
 * ============================================================================
 * Jan 20, 1998        Ben Greear     Initial Version
 *****************************************************************************/

J
Joe Perches 已提交
20 21
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
22
#include <linux/module.h>
23
#include <linux/errno.h>
L
Linus Torvalds 已提交
24
#include <linux/kernel.h>
25
#include <linux/string.h>
L
Linus Torvalds 已提交
26 27 28 29 30
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/fs.h>
#include <linux/netdevice.h>
#include <linux/if_vlan.h>
31
#include <net/net_namespace.h>
32
#include <net/netns/generic.h>
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
#include "vlanproc.h"
#include "vlan.h"

/****** Function Prototypes *************************************************/

/* Methods for preparing data for reading proc entries */
static int vlan_seq_show(struct seq_file *seq, void *v);
static void *vlan_seq_start(struct seq_file *seq, loff_t *pos);
static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos);
static void vlan_seq_stop(struct seq_file *seq, void *);
static int vlandev_seq_show(struct seq_file *seq, void *v);

/*
 *	Global Data
 */


/*
51
 *	Names of the proc directory entries
L
Linus Torvalds 已提交
52 53 54 55 56 57 58
 */

static const char name_root[]	 = "vlan";
static const char name_conf[]	 = "config";

/*
 *	Structures for interfacing with the /proc filesystem.
L
Lucas De Marchi 已提交
59
 *	VLAN creates its own directory /proc/net/vlan with the following
L
Linus Torvalds 已提交
60 61 62 63 64 65
 *	entries:
 *	config		device status/configuration
 *	<device>	entry for each  device
 */

/*
66
 *	Generic /proc/net/vlan/<file> file and inode operations
L
Linus Torvalds 已提交
67 68
 */

69
static const struct seq_operations vlan_seq_ops = {
L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77
	.start = vlan_seq_start,
	.next = vlan_seq_next,
	.stop = vlan_seq_stop,
	.show = vlan_seq_show,
};

static int vlan_seq_open(struct inode *inode, struct file *file)
{
78 79
	return seq_open_net(inode, file, &vlan_seq_ops,
			sizeof(struct seq_net_private));
L
Linus Torvalds 已提交
80 81
}

82
static const struct file_operations vlan_fops = {
L
Linus Torvalds 已提交
83 84 85 86
	.owner	 = THIS_MODULE,
	.open    = vlan_seq_open,
	.read    = seq_read,
	.llseek  = seq_lseek,
87
	.release = seq_release_net,
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98
};

/*
 *	/proc/net/vlan/<device> file and inode operations
 */

static int vlandev_seq_open(struct inode *inode, struct file *file)
{
	return single_open(file, vlandev_seq_show, PDE(inode)->data);
}

99
static const struct file_operations vlandev_fops = {
L
Linus Torvalds 已提交
100 101 102 103 104 105 106 107
	.owner = THIS_MODULE,
	.open    = vlandev_seq_open,
	.read    = seq_read,
	.llseek  = seq_lseek,
	.release = single_release,
};

/*
108
 * Proc filesystem directory entries.
L
Linus Torvalds 已提交
109 110 111
 */

/* Strings */
112
static const char *const vlan_name_type_str[VLAN_NAME_TYPE_HIGHEST] = {
P
Patrick McHardy 已提交
113 114 115 116
    [VLAN_NAME_TYPE_RAW_PLUS_VID]        = "VLAN_NAME_TYPE_RAW_PLUS_VID",
    [VLAN_NAME_TYPE_PLUS_VID_NO_PAD]	 = "VLAN_NAME_TYPE_PLUS_VID_NO_PAD",
    [VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD] = "VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD",
    [VLAN_NAME_TYPE_PLUS_VID]		 = "VLAN_NAME_TYPE_PLUS_VID",
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125
};
/*
 *	Interface functions
 */

/*
 *	Clean up /proc/net/vlan entries
 */

126
void vlan_proc_cleanup(struct net *net)
L
Linus Torvalds 已提交
127
{
128
	struct vlan_net *vn = net_generic(net, vlan_net_id);
129

130 131
	if (vn->proc_vlan_conf)
		remove_proc_entry(name_conf, vn->proc_vlan_dir);
L
Linus Torvalds 已提交
132

133 134
	if (vn->proc_vlan_dir)
		proc_net_remove(net, name_root);
L
Linus Torvalds 已提交
135 136 137 138 139 140 141 142 143 144

	/* Dynamically added entries should be cleaned up as their vlan_device
	 * is removed, so we should not have to take care of it here...
	 */
}

/*
 *	Create /proc/net/vlan entries
 */

145
int __net_init vlan_proc_init(struct net *net)
L
Linus Torvalds 已提交
146
{
147
	struct vlan_net *vn = net_generic(net, vlan_net_id);
148

149 150
	vn->proc_vlan_dir = proc_net_mkdir(net, name_root, net->proc_net);
	if (!vn->proc_vlan_dir)
151 152
		goto err;

153 154 155
	vn->proc_vlan_conf = proc_create(name_conf, S_IFREG|S_IRUSR|S_IWUSR,
				     vn->proc_vlan_dir, &vlan_fops);
	if (!vn->proc_vlan_conf)
156 157 158 159
		goto err;
	return 0;

err:
J
Joe Perches 已提交
160
	pr_err("can't create entry in proc filesystem!\n");
161
	vlan_proc_cleanup(net);
L
Linus Torvalds 已提交
162 163 164 165 166 167 168
	return -ENOBUFS;
}

/*
 *	Add directory entry for VLAN device.
 */

P
Patrick McHardy 已提交
169
int vlan_proc_add_dev(struct net_device *vlandev)
L
Linus Torvalds 已提交
170
{
171
	struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
172
	struct vlan_net *vn = net_generic(dev_net(vlandev), vlan_net_id);
L
Linus Torvalds 已提交
173

174
	vlan->dent =
175 176
		proc_create_data(vlandev->name, S_IFREG|S_IRUSR|S_IWUSR,
				 vn->proc_vlan_dir, &vlandev_fops, vlandev);
177
	if (!vlan->dent)
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185 186
		return -ENOBUFS;
	return 0;
}

/*
 *	Delete directory entry for VLAN device.
 */
int vlan_proc_rem_dev(struct net_device *vlandev)
{
187 188
	struct vlan_net *vn = net_generic(dev_net(vlandev), vlan_net_id);

L
Linus Torvalds 已提交
189
	/** NOTE:  This will consume the memory pointed to by dent, it seems. */
190 191
	if (vlan_dev_priv(vlandev)->dent) {
		remove_proc_entry(vlan_dev_priv(vlandev)->dent->name,
192
				  vn->proc_vlan_dir);
193
		vlan_dev_priv(vlandev)->dent = NULL;
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201 202 203
	}
	return 0;
}

/****** Proc filesystem entry points ****************************************/

/*
 * The following few functions build the content of /proc/net/vlan/config
 */

204
/* start read of /proc/net/vlan/config */
L
Linus Torvalds 已提交
205
static void *vlan_seq_start(struct seq_file *seq, loff_t *pos)
206
	__acquires(rcu)
L
Linus Torvalds 已提交
207 208
{
	struct net_device *dev;
209
	struct net *net = seq_file_net(seq);
L
Linus Torvalds 已提交
210 211
	loff_t i = 1;

212
	rcu_read_lock();
L
Linus Torvalds 已提交
213 214
	if (*pos == 0)
		return SEQ_START_TOKEN;
215

216
	for_each_netdev_rcu(net, dev) {
217 218 219 220 221 222
		if (!is_vlan_dev(dev))
			continue;

		if (i++ == *pos)
			return dev;
	}
223

224
	return  NULL;
225
}
L
Linus Torvalds 已提交
226 227 228

static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
229
	struct net_device *dev;
230
	struct net *net = seq_file_net(seq);
231

L
Linus Torvalds 已提交
232 233
	++*pos;

J
Joe Perches 已提交
234
	dev = v;
235
	if (v == SEQ_START_TOKEN)
236
		dev = net_device_entry(&net->dev_base_head);
237

238
	for_each_netdev_continue_rcu(net, dev) {
239 240 241 242 243 244 245
		if (!is_vlan_dev(dev))
			continue;

		return dev;
	}

	return NULL;
L
Linus Torvalds 已提交
246 247 248
}

static void vlan_seq_stop(struct seq_file *seq, void *v)
249
	__releases(rcu)
L
Linus Torvalds 已提交
250
{
251
	rcu_read_unlock();
L
Linus Torvalds 已提交
252 253 254 255
}

static int vlan_seq_show(struct seq_file *seq, void *v)
{
256 257 258
	struct net *net = seq_file_net(seq);
	struct vlan_net *vn = net_generic(net, vlan_net_id);

L
Linus Torvalds 已提交
259 260 261 262 263
	if (v == SEQ_START_TOKEN) {
		const char *nmtype = NULL;

		seq_puts(seq, "VLAN Dev name	 | VLAN ID\n");

264 265
		if (vn->name_type < ARRAY_SIZE(vlan_name_type_str))
		    nmtype =  vlan_name_type_str[vn->name_type];
L
Linus Torvalds 已提交
266

267
		seq_printf(seq, "Name-Type: %s\n",
P
Patrick McHardy 已提交
268
			   nmtype ? nmtype :  "UNKNOWN");
L
Linus Torvalds 已提交
269 270
	} else {
		const struct net_device *vlandev = v;
271
		const struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
L
Linus Torvalds 已提交
272

273
		seq_printf(seq, "%-15s| %d  | %s\n",  vlandev->name,
274
			   vlan->vlan_id,    vlan->real_dev->name);
L
Linus Torvalds 已提交
275 276 277 278 279 280 281
	}
	return 0;
}

static int vlandev_seq_show(struct seq_file *seq, void *offset)
{
	struct net_device *vlandev = (struct net_device *) seq->private;
282
	const struct vlan_dev_priv *vlan = vlan_dev_priv(vlandev);
283
	struct rtnl_link_stats64 temp;
284 285
	const struct rtnl_link_stats64 *stats;
	static const char fmt64[] = "%30s %12llu\n";
L
Linus Torvalds 已提交
286 287
	int i;

J
Joonwoo Park 已提交
288
	if (!is_vlan_dev(vlandev))
L
Linus Torvalds 已提交
289 290
		return 0;

291
	stats = dev_get_stats(vlandev, &temp);
P
Patrick McHardy 已提交
292 293
	seq_printf(seq,
		   "%s  VID: %d	 REORDER_HDR: %i  dev->priv_flags: %hx\n",
294 295
		   vlandev->name, vlan->vlan_id,
		   (int)(vlan->flags & 1), vlandev->priv_flags);
L
Linus Torvalds 已提交
296

297 298 299
	seq_printf(seq, fmt64, "total frames received", stats->rx_packets);
	seq_printf(seq, fmt64, "total bytes received", stats->rx_bytes);
	seq_printf(seq, fmt64, "Broadcast/Multicast Rcvd", stats->multicast);
L
Linus Torvalds 已提交
300
	seq_puts(seq, "\n");
301 302
	seq_printf(seq, fmt64, "total frames transmitted", stats->tx_packets);
	seq_printf(seq, fmt64, "total bytes transmitted", stats->tx_bytes);
303
	seq_printf(seq, "Device: %s", vlan->real_dev->name);
L
Linus Torvalds 已提交
304
	/* now show all PRIORITY mappings relating to this VLAN */
P
Patrick McHardy 已提交
305 306
	seq_printf(seq, "\nINGRESS priority mappings: "
			"0:%u  1:%u  2:%u  3:%u  4:%u  5:%u  6:%u 7:%u\n",
307 308 309 310 311 312 313 314
		   vlan->ingress_priority_map[0],
		   vlan->ingress_priority_map[1],
		   vlan->ingress_priority_map[2],
		   vlan->ingress_priority_map[3],
		   vlan->ingress_priority_map[4],
		   vlan->ingress_priority_map[5],
		   vlan->ingress_priority_map[6],
		   vlan->ingress_priority_map[7]);
L
Linus Torvalds 已提交
315

316
	seq_printf(seq, " EGRESS priority mappings: ");
L
Linus Torvalds 已提交
317 318
	for (i = 0; i < 16; i++) {
		const struct vlan_priority_tci_mapping *mp
319
			= vlan->egress_priority_map[i];
L
Linus Torvalds 已提交
320
		while (mp) {
321
			seq_printf(seq, "%u:%hu ",
L
Linus Torvalds 已提交
322 323 324 325 326 327 328 329
				   mp->priority, ((mp->vlan_qos >> 13) & 0x7));
			mp = mp->next;
		}
	}
	seq_puts(seq, "\n");

	return 0;
}