1 /*****************************************************************************
2 * wanproc.c WAN Router Module. /proc filesystem interface.
4 * This module is completely hardware-independent and provides
5 * access to the router using Linux /proc filesystem.
9 * Copyright: (c) 1995-1999 Sangoma Technologies Inc.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 * ============================================================================
16 * Jun 02, 1999 Gideon Hack Updates for Linux 2.2.X kernels.
17 * Jun 29, 1997 Alan Cox Merged with 1.0.3 vendor code
18 * Jan 29, 1997 Gene Kozin v1.0.1. Implemented /proc read routines
19 * Jan 30, 1997 Alan Cox Hacked around for 2.1
20 * Dec 13, 1996 Gene Kozin Initial version (based on Sangoma's WANPIPE)
21 *****************************************************************************/
23 #include <linux/init.h> /* __initfunc et al. */
24 #include <linux/stddef.h> /* offsetof(), etc. */
25 #include <linux/errno.h> /* return codes */
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/wanrouter.h> /* WAN router API definitions */
29 #include <linux/seq_file.h>
30 #include <linux/smp_lock.h>
34 #define PROC_STATS_FORMAT "%30s: %12lu\n"
36 /****** Defines and Macros **************************************************/
38 #define PROT_DECODE(prot) ((prot == WANCONFIG_FR) ? " FR" :\
39 (prot == WANCONFIG_X25) ? " X25" : \
40 (prot == WANCONFIG_PPP) ? " PPP" : \
41 (prot == WANCONFIG_CHDLC) ? " CHDLC": \
42 (prot == WANCONFIG_MPPP) ? " MPPP" : \
45 /****** Function Prototypes *************************************************/
52 * Structures for interfacing with the /proc filesystem.
53 * Router creates its own directory /proc/net/router with the folowing
55 * config device configuration
56 * status global device statistics
57 * <device> entry for each WAN device
61 * Generic /proc/net/router/<file> file and inode operations
68 static struct proc_dir_entry *proc_router;
76 /****** Proc filesystem entry points ****************************************/
81 static void *r_start(struct seq_file *m, loff_t *pos)
83 struct wan_device *wandev;
88 return SEQ_START_TOKEN;
89 for (wandev = wanrouter_router_devlist; l-- && wandev;
90 wandev = wandev->next)
95 static void *r_next(struct seq_file *m, void *v, loff_t *pos)
97 struct wan_device *wandev = v;
99 return (v == SEQ_START_TOKEN) ? wanrouter_router_devlist : wandev->next;
102 static void r_stop(struct seq_file *m, void *v)
107 static int config_show(struct seq_file *m, void *v)
109 struct wan_device *p = v;
110 if (v == SEQ_START_TOKEN) {
111 seq_puts(m, "Device name | port |IRQ|DMA| mem.addr |"
112 "mem.size|option1|option2|option3|option4\n");
117 seq_printf(m, "%-15s|0x%-4X|%3u|%3u| 0x%-8lX |0x%-6X|%7u|%7u|%7u|%7u\n",
118 p->name, p->ioport, p->irq, p->dma, p->maddr, p->msize,
119 p->hw_opt[0], p->hw_opt[1], p->hw_opt[2], p->hw_opt[3]);
123 static int status_show(struct seq_file *m, void *v)
125 struct wan_device *p = v;
126 if (v == SEQ_START_TOKEN) {
127 seq_puts(m, "Device name |protocol|station|interface|"
128 "clocking|baud rate| MTU |ndev|link state\n");
133 seq_printf(m, "%-15s|%-8s| %-7s| %-9s|%-8s|%9u|%5u|%3u |",
135 PROT_DECODE(p->config_id),
136 p->config_id == WANCONFIG_FR ?
137 (p->station ? "Node" : "CPE") :
138 (p->config_id == WANCONFIG_X25 ?
139 (p->station ? "DCE" : "DTE") :
141 p->interface ? "V.35" : "RS-232",
142 p->clocking ? "internal" : "external",
148 case WAN_UNCONFIGURED:
149 seq_printf(m, "%-12s\n", "unconfigured");
151 case WAN_DISCONNECTED:
152 seq_printf(m, "%-12s\n", "disconnected");
155 seq_printf(m, "%-12s\n", "connecting");
158 seq_printf(m, "%-12s\n", "connected");
161 seq_printf(m, "%-12s\n", "invalid");
167 static struct seq_operations config_op = {
174 static struct seq_operations status_op = {
181 static int config_open(struct inode *inode, struct file *file)
183 return seq_open(file, &config_op);
186 static int status_open(struct inode *inode, struct file *file)
188 return seq_open(file, &status_op);
191 static const struct file_operations config_fops = {
192 .owner = THIS_MODULE,
196 .release = seq_release,
199 static const struct file_operations status_fops = {
200 .owner = THIS_MODULE,
204 .release = seq_release,
207 static int wandev_show(struct seq_file *m, void *v)
209 struct wan_device *wandev = m->private;
211 if (wandev->magic != ROUTER_MAGIC)
214 if (!wandev->state) {
215 seq_puts(m, "device is not configured!\n");
219 /* Update device statistics */
220 if (wandev->update) {
221 int err = wandev->update(wandev);
222 if (err == -EAGAIN) {
223 seq_puts(m, "Device is busy!\n");
227 seq_puts(m, "Device is not configured!\n");
232 seq_printf(m, PROC_STATS_FORMAT,
233 "total packets received", wandev->stats.rx_packets);
234 seq_printf(m, PROC_STATS_FORMAT,
235 "total packets transmitted", wandev->stats.tx_packets);
236 seq_printf(m, PROC_STATS_FORMAT,
237 "total bytes received", wandev->stats.rx_bytes);
238 seq_printf(m, PROC_STATS_FORMAT,
239 "total bytes transmitted", wandev->stats.tx_bytes);
240 seq_printf(m, PROC_STATS_FORMAT,
241 "bad packets received", wandev->stats.rx_errors);
242 seq_printf(m, PROC_STATS_FORMAT,
243 "packet transmit problems", wandev->stats.tx_errors);
244 seq_printf(m, PROC_STATS_FORMAT,
245 "received frames dropped", wandev->stats.rx_dropped);
246 seq_printf(m, PROC_STATS_FORMAT,
247 "transmit frames dropped", wandev->stats.tx_dropped);
248 seq_printf(m, PROC_STATS_FORMAT,
249 "multicast packets received", wandev->stats.multicast);
250 seq_printf(m, PROC_STATS_FORMAT,
251 "transmit collisions", wandev->stats.collisions);
252 seq_printf(m, PROC_STATS_FORMAT,
253 "receive length errors", wandev->stats.rx_length_errors);
254 seq_printf(m, PROC_STATS_FORMAT,
255 "receiver overrun errors", wandev->stats.rx_over_errors);
256 seq_printf(m, PROC_STATS_FORMAT,
257 "CRC errors", wandev->stats.rx_crc_errors);
258 seq_printf(m, PROC_STATS_FORMAT,
259 "frame format errors (aborts)", wandev->stats.rx_frame_errors);
260 seq_printf(m, PROC_STATS_FORMAT,
261 "receiver fifo overrun", wandev->stats.rx_fifo_errors);
262 seq_printf(m, PROC_STATS_FORMAT,
263 "receiver missed packet", wandev->stats.rx_missed_errors);
264 seq_printf(m, PROC_STATS_FORMAT,
265 "aborted frames transmitted", wandev->stats.tx_aborted_errors);
269 static int wandev_open(struct inode *inode, struct file *file)
271 return single_open(file, wandev_show, PDE(inode)->data);
274 static const struct file_operations wandev_fops = {
275 .owner = THIS_MODULE,
279 .release = single_release,
280 .ioctl = wanrouter_ioctl,
284 * Initialize router proc interface.
287 int __init wanrouter_proc_init(void)
289 struct proc_dir_entry *p;
290 proc_router = proc_mkdir(ROUTER_NAME, proc_net);
294 p = create_proc_entry("config", S_IRUGO, proc_router);
297 p->proc_fops = &config_fops;
298 p = create_proc_entry("status", S_IRUGO, proc_router);
301 p->proc_fops = &status_fops;
304 remove_proc_entry("config", proc_router);
306 remove_proc_entry(ROUTER_NAME, proc_net);
312 * Clean up router proc interface.
315 void wanrouter_proc_cleanup(void)
317 remove_proc_entry("config", proc_router);
318 remove_proc_entry("status", proc_router);
319 remove_proc_entry(ROUTER_NAME, proc_net);
323 * Add directory entry for WAN device.
326 int wanrouter_proc_add(struct wan_device* wandev)
328 if (wandev->magic != ROUTER_MAGIC)
331 wandev->dent = create_proc_entry(wandev->name, S_IRUGO, proc_router);
334 wandev->dent->proc_fops = &wandev_fops;
335 wandev->dent->data = wandev;
340 * Delete directory entry for WAN device.
342 int wanrouter_proc_delete(struct wan_device* wandev)
344 if (wandev->magic != ROUTER_MAGIC)
346 remove_proc_entry(wandev->name, proc_router);
353 * No /proc - output stubs
356 int __init wanrouter_proc_init(void)
361 void wanrouter_proc_cleanup(void)
365 int wanrouter_proc_add(struct wan_device *wandev)
370 int wanrouter_proc_delete(struct wan_device *wandev)