mpoa_proc.c 7.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2
#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
L
Linus Torvalds 已提交
3 4 5 6

#ifdef CONFIG_PROC_FS
#include <linux/errno.h>
#include <linux/kernel.h>
7
#include <linux/string.h>
L
Linus Torvalds 已提交
8 9 10
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/proc_fs.h>
11
#include <linux/ktime.h>
L
Linus Torvalds 已提交
12
#include <linux/seq_file.h>
13
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
14 15
#include <linux/atmmpc.h>
#include <linux/atm.h>
16
#include <linux/gfp.h>
L
Linus Torvalds 已提交
17 18 19 20 21
#include "mpc.h"
#include "mpoa_caches.h"

/*
 * mpoa_proc.c: Implementation MPOA client's proc
22
 * file system statistics
L
Linus Torvalds 已提交
23 24 25
 */

#if 1
26 27
#define dprintk(format, args...)					\
	printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args)  /* debug */
L
Linus Torvalds 已提交
28
#else
29 30 31 32 33 34 35 36 37 38 39 40 41 42
#define dprintk(format, args...)					\
	do { if (0)							\
		printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args);\
	} while (0)
#endif

#if 0
#define ddprintk(format, args...)					\
	printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args)  /* debug */
#else
#define ddprintk(format, args...)					\
	do { if (0)							\
		printk(KERN_DEBUG "mpoa:%s: " format, __FILE__, ##args);\
	} while (0)
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50 51
#endif

#define STAT_FILE_NAME "mpc"     /* Our statistic file's name */

extern struct mpoa_client *mpcs;
extern struct proc_dir_entry *atm_proc_root;  /* from proc.c. */

static int proc_mpc_open(struct inode *inode, struct file *file);
static ssize_t proc_mpc_write(struct file *file, const char __user *buff,
52
			      size_t nbytes, loff_t *ppos);
L
Linus Torvalds 已提交
53 54 55 56 57 58

static int parse_qos(const char *buff);

/*
 *   Define allowed FILE OPERATIONS
 */
59
static const struct file_operations mpc_file_operations = {
L
Linus Torvalds 已提交
60 61 62 63 64 65 66 67 68 69
	.open =		proc_mpc_open,
	.read =		seq_read,
	.llseek =	seq_lseek,
	.write =	proc_mpc_write,
	.release =	seq_release,
};

/*
 * Returns the state of an ingress cache entry as a string
 */
70 71 72
static const char *ingress_state_string(int state)
{
	switch (state) {
L
Linus Torvalds 已提交
73
	case INGRESS_RESOLVING:
74
		return "resolving  ";
L
Linus Torvalds 已提交
75
	case INGRESS_RESOLVED:
76
		return "resolved   ";
L
Linus Torvalds 已提交
77
	case INGRESS_INVALID:
78
		return "invalid    ";
L
Linus Torvalds 已提交
79
	case INGRESS_REFRESHING:
80
		return "refreshing ";
L
Linus Torvalds 已提交
81
	}
82 83

	return "";
L
Linus Torvalds 已提交
84 85 86 87 88
}

/*
 * Returns the state of an egress cache entry as a string
 */
89 90 91
static const char *egress_state_string(int state)
{
	switch (state) {
L
Linus Torvalds 已提交
92
	case EGRESS_RESOLVED:
93
		return "resolved   ";
L
Linus Torvalds 已提交
94
	case EGRESS_PURGE:
95
		return "purge      ";
L
Linus Torvalds 已提交
96
	case EGRESS_INVALID:
97
		return "invalid    ";
L
Linus Torvalds 已提交
98
	}
99 100

	return "";
L
Linus Torvalds 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
}

/*
 * FIXME: mpcs (and per-mpc lists) have no locking whatsoever.
 */

static void *mpc_start(struct seq_file *m, loff_t *pos)
{
	loff_t l = *pos;
	struct mpoa_client *mpc;

	if (!l--)
		return SEQ_START_TOKEN;
	for (mpc = mpcs; mpc; mpc = mpc->next)
		if (!l--)
			return mpc;
	return NULL;
}

static void *mpc_next(struct seq_file *m, void *v, loff_t *pos)
{
	struct mpoa_client *p = v;
	(*pos)++;
	return v == SEQ_START_TOKEN ? mpcs : p->next;
}

static void mpc_stop(struct seq_file *m, void *v)
{
}

/*
 * READING function - called when the /proc/atm/mpoa file is read from.
 */
static int mpc_show(struct seq_file *m, void *v)
{
	struct mpoa_client *mpc = v;
	int i;
	in_cache_entry *in_entry;
	eg_cache_entry *eg_entry;
140
	time64_t now;
L
Linus Torvalds 已提交
141 142 143 144 145 146 147
	unsigned char ip_string[16];

	if (v == SEQ_START_TOKEN) {
		atm_mpoa_disp_qos(m);
		return 0;
	}

148
	seq_printf(m, "\nInterface %d:\n\n", mpc->dev_num);
L
Linus Torvalds 已提交
149
	seq_printf(m, "Ingress Entries:\nIP address      State      Holding time  Packets fwded  VPI  VCI\n");
150
	now = ktime_get_seconds();
L
Linus Torvalds 已提交
151 152

	for (in_entry = mpc->in_cache; in_entry; in_entry = in_entry->next) {
153 154
		unsigned long seconds_delta = now - in_entry->time;

155
		sprintf(ip_string, "%pI4", &in_entry->ctrl_info.in_dst_ip);
L
Linus Torvalds 已提交
156
		seq_printf(m, "%-16s%s%-14lu%-12u",
157 158 159
			   ip_string,
			   ingress_state_string(in_entry->entry_state),
			   in_entry->ctrl_info.holding_time -
160
			   seconds_delta,
161
			   in_entry->packets_fwded);
L
Linus Torvalds 已提交
162
		if (in_entry->shortcut)
163 164 165
			seq_printf(m, "   %-3d  %-3d",
				   in_entry->shortcut->vpi,
				   in_entry->shortcut->vci);
L
Linus Torvalds 已提交
166 167 168 169 170 171 172
		seq_printf(m, "\n");
	}

	seq_printf(m, "\n");
	seq_printf(m, "Egress Entries:\nIngress MPC ATM addr\nCache-id        State      Holding time  Packets recvd  Latest IP addr   VPI VCI\n");
	for (eg_entry = mpc->eg_cache; eg_entry; eg_entry = eg_entry->next) {
		unsigned char *p = eg_entry->ctrl_info.in_MPC_data_ATM_addr;
173 174
		unsigned long seconds_delta = now - eg_entry->time;

175
		for (i = 0; i < ATM_ESA_LEN; i++)
L
Linus Torvalds 已提交
176 177 178 179
			seq_printf(m, "%02x", p[i]);
		seq_printf(m, "\n%-16lu%s%-14lu%-15u",
			   (unsigned long)ntohl(eg_entry->ctrl_info.cache_id),
			   egress_state_string(eg_entry->entry_state),
180
			   (eg_entry->ctrl_info.holding_time - seconds_delta),
L
Linus Torvalds 已提交
181
			   eg_entry->packets_rcvd);
182

L
Linus Torvalds 已提交
183
		/* latest IP address */
184
		sprintf(ip_string, "%pI4", &eg_entry->latest_ip_addr);
L
Linus Torvalds 已提交
185 186 187
		seq_printf(m, "%-16s", ip_string);

		if (eg_entry->shortcut)
188 189 190
			seq_printf(m, " %-3d %-3d",
				   eg_entry->shortcut->vpi,
				   eg_entry->shortcut->vci);
L
Linus Torvalds 已提交
191 192 193 194 195 196
		seq_printf(m, "\n");
	}
	seq_printf(m, "\n");
	return 0;
}

197
static const struct seq_operations mpc_op = {
L
Linus Torvalds 已提交
198 199 200 201 202 203 204 205 206 207 208 209
	.start =	mpc_start,
	.next =		mpc_next,
	.stop =		mpc_stop,
	.show =		mpc_show
};

static int proc_mpc_open(struct inode *inode, struct file *file)
{
	return seq_open(file, &mpc_op);
}

static ssize_t proc_mpc_write(struct file *file, const char __user *buff,
210
			      size_t nbytes, loff_t *ppos)
L
Linus Torvalds 已提交
211
{
212
	char *page, *p;
213
	unsigned int len;
L
Linus Torvalds 已提交
214

215
	if (nbytes == 0)
L
Linus Torvalds 已提交
216 217
		return 0;

218
	if (nbytes >= PAGE_SIZE)
L
Linus Torvalds 已提交
219 220
		nbytes = PAGE_SIZE-1;

221 222
	page = (char *)__get_free_page(GFP_KERNEL);
	if (!page)
L
Linus Torvalds 已提交
223 224
		return -ENOMEM;

225 226
	for (p = page, len = 0; len < nbytes; p++, len++) {
		if (get_user(*p, buff++)) {
L
Linus Torvalds 已提交
227 228 229
			free_page((unsigned long)page);
			return -EFAULT;
		}
230 231 232
		if (*p == '\0' || *p == '\n')
			break;
	}
L
Linus Torvalds 已提交
233

234
	*p = '\0';
L
Linus Torvalds 已提交
235 236

	if (!parse_qos(page))
237 238 239
		printk("mpoa: proc_mpc_write: could not parse '%s'\n", page);

	free_page((unsigned long)page);
L
Linus Torvalds 已提交
240

241
	return len;
L
Linus Torvalds 已提交
242 243 244 245
}

static int parse_qos(const char *buff)
{
246 247 248 249
	/* possible lines look like this
	 * add 130.230.54.142 tx=max_pcr,max_sdu rx=max_pcr,max_sdu
	 */
	unsigned char ip[4];
L
Linus Torvalds 已提交
250
	int tx_pcr, tx_sdu, rx_pcr, rx_sdu;
251 252 253 254
	__be32 ipaddr;
	struct atm_qos qos;

	memset(&qos, 0, sizeof(struct atm_qos));
L
Linus Torvalds 已提交
255 256 257

	if (sscanf(buff, "del %hhu.%hhu.%hhu.%hhu",
			ip, ip+1, ip+2, ip+3) == 4) {
A
Al Viro 已提交
258
		ipaddr = *(__be32 *)ip;
L
Linus Torvalds 已提交
259 260 261 262 263 264 265 266 267 268 269
		return atm_mpoa_delete_qos(atm_mpoa_search_qos(ipaddr));
	}

	if (sscanf(buff, "add %hhu.%hhu.%hhu.%hhu tx=%d,%d rx=tx",
			ip, ip+1, ip+2, ip+3, &tx_pcr, &tx_sdu) == 6) {
		rx_pcr = tx_pcr;
		rx_sdu = tx_sdu;
	} else if (sscanf(buff, "add %hhu.%hhu.%hhu.%hhu tx=%d,%d rx=%d,%d",
		ip, ip+1, ip+2, ip+3, &tx_pcr, &tx_sdu, &rx_pcr, &rx_sdu) != 8)
		return 0;

270
	ipaddr = *(__be32 *)ip;
L
Linus Torvalds 已提交
271 272 273 274 275 276
	qos.txtp.traffic_class = ATM_CBR;
	qos.txtp.max_pcr = tx_pcr;
	qos.txtp.max_sdu = tx_sdu;
	qos.rxtp.traffic_class = ATM_CBR;
	qos.rxtp.max_pcr = rx_pcr;
	qos.rxtp.max_sdu = rx_sdu;
277
	qos.aal = ATM_AAL5;
278
	dprintk("parse_qos(): setting qos parameters to tx=%d,%d rx=%d,%d\n",
279 280
		qos.txtp.max_pcr, qos.txtp.max_sdu,
		qos.rxtp.max_pcr, qos.rxtp.max_sdu);
L
Linus Torvalds 已提交
281 282 283 284 285 286 287 288 289 290 291 292

	atm_mpoa_add_qos(ipaddr, &qos);
	return 1;
}

/*
 * INITIALIZATION function - called when module is initialized/loaded.
 */
int mpc_proc_init(void)
{
	struct proc_dir_entry *p;

293
	p = proc_create(STAT_FILE_NAME, 0, atm_proc_root, &mpc_file_operations);
L
Linus Torvalds 已提交
294
	if (!p) {
295
		pr_err("Unable to initialize /proc/atm/%s\n", STAT_FILE_NAME);
296 297
		return -ENOMEM;
	}
L
Linus Torvalds 已提交
298 299 300 301 302 303 304 305
	return 0;
}

/*
 * DELETING function - called when module is removed.
 */
void mpc_proc_clean(void)
{
306
	remove_proc_entry(STAT_FILE_NAME, atm_proc_root);
L
Linus Torvalds 已提交
307 308 309
}

#endif /* CONFIG_PROC_FS */