87aa9729ccbd05c7e82063e8034c3edcac3507de
[openwrt.git] / package / switch / src / switch-core.c
1 /*
2  * switch-core.c
3  *
4  * Copyright (C) 2005 Felix Fietkau <openwrt@nbd.name>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19  *
20  * $Id: $
21  *
22  * Basic doc of driver's /proc interface:
23  * /proc/switch/<interface>/
24  *   registers:              read-only
25  *   counters:               read-only
26  *   reset:                  write causes hardware reset
27  *   enable_vlan:            "0", "1"
28  *   port/<port-number>/
29  *     enabled:              "0", "1"
30  *     media:                "AUTO", "100FD", "100HD", "10FD", "10HD"
31  *   vlan/<port-number>/
32  *     ports: same syntax as for nvram's vlan*ports (eg. "1 2 3 4 5*")
33  */
34
35 #include <linux/autoconf.h>
36 #include <linux/module.h>
37 #include <linux/init.h>
38 #include <asm/uaccess.h>
39 #include <linux/proc_fs.h>
40 #include <linux/list.h>
41
42 #include "switch-core.h"
43
44 static int drv_num = 0;
45 static struct proc_dir_entry *switch_root;
46 switch_driver drivers;
47
48 typedef struct {
49         struct list_head list;
50         struct proc_dir_entry *parent;
51         int nr;
52         void *driver;
53         switch_config handler;
54 } switch_proc_handler;
55
56 typedef struct {
57         struct proc_dir_entry *driver_dir, *port_dir, *vlan_dir;
58         struct proc_dir_entry **ports, **vlans;
59         switch_proc_handler data;
60         int nr;
61 } switch_priv;
62
63 static ssize_t switch_proc_read(struct file *file, char *buf, size_t count, loff_t *ppos);
64 static ssize_t switch_proc_write(struct file *file, const char *buf, size_t count, void *data);
65
66 static struct file_operations switch_proc_fops = {
67         .read = (ssize_t (*) (struct file *, char __user *, size_t, loff_t *))switch_proc_read,
68         .write = (ssize_t (*) (struct file *, const char __user *, size_t, loff_t *))switch_proc_write
69 };
70
71 static ssize_t switch_proc_read(struct file *file, char *buf, size_t count, loff_t *ppos)
72 {
73 #ifdef LINUX_2_4
74         struct inode *inode = file->f_dentry->d_inode;
75         struct proc_dir_entry *dent = inode->u.generic_ip;
76 #else
77         struct proc_dir_entry *dent = PDE(file->f_dentry->d_inode);
78 #endif
79         char *page;
80         int len = 0;
81         
82         if ((page = kmalloc(SWITCH_MAX_BUFSZ, GFP_KERNEL)) == NULL)
83                 return -ENOBUFS;
84         
85         if (dent->data != NULL) {
86                 switch_proc_handler *handler = (switch_proc_handler *) dent->data;
87                 if (handler->handler.read != NULL)
88                         len += handler->handler.read(handler->driver, page + len, handler->nr);
89         }
90         len += 1;
91
92         if (*ppos < len) {
93                 len = min_t(int, len - *ppos, count);
94                 if (copy_to_user(buf, (page + *ppos), len)) {
95                         kfree(page);
96                         return -EFAULT;
97                 }
98                 *ppos += len;
99         } else {
100                 len = 0;
101         }
102
103         kfree(page);
104         return len;
105 }
106
107
108 static ssize_t switch_proc_write(struct file *file, const char *buf, size_t count, void *data)
109 {
110 #ifdef LINUX_2_4
111         struct inode *inode = file->f_dentry->d_inode;
112         struct proc_dir_entry *dent = inode->u.generic_ip;
113 #else
114         struct proc_dir_entry *dent = PDE(file->f_dentry->d_inode);
115 #endif
116         char *page;
117         int ret = -EINVAL;
118
119         if ((page = kmalloc(count + 1, GFP_KERNEL)) == NULL)
120                 return -ENOBUFS;
121
122         if (copy_from_user(page, buf, count)) {
123                 kfree(page);
124                 return -EINVAL;
125         }
126         page[count] = 0;
127         
128         if (dent->data != NULL) {
129                 switch_proc_handler *handler = (switch_proc_handler *) dent->data;
130                 if (handler->handler.write != NULL) {
131                         if ((ret = handler->handler.write(handler->driver, page, handler->nr)) >= 0)
132                                 ret = count;
133                 }
134         }
135
136         kfree(page);
137         return ret;
138 }
139
140 static int handle_driver_name(void *driver, char *buf, int nr)
141 {
142         const char *name = ((switch_driver *) driver)->name;
143         return sprintf(buf, "%s\n", name);
144 }
145
146 static int handle_driver_version(void *driver, char *buf, int nr)
147 {
148         const char *version = ((switch_driver *) driver)->version;
149         strcpy(buf, version);
150         return sprintf(buf, "%s\n", version);
151 }
152
153 static void add_handler(switch_driver *driver, const switch_config *handler, struct proc_dir_entry *parent, int nr)
154 {
155         switch_priv *priv = (switch_priv *) driver->data;
156         struct proc_dir_entry *p;
157         int mode;
158
159         switch_proc_handler *tmp;
160         tmp = (switch_proc_handler *) kmalloc(sizeof(switch_proc_handler), GFP_KERNEL);
161         if (!tmp)
162                 return;
163         INIT_LIST_HEAD(&tmp->list);
164         tmp->parent = parent;
165         tmp->nr = nr;
166         tmp->driver = driver;
167         memcpy(&tmp->handler, handler, sizeof(switch_config));
168         list_add(&tmp->list, &priv->data.list);
169         
170         mode = 0;
171         if (handler->read != NULL) mode |= S_IRUSR;
172         if (handler->write != NULL) mode |= S_IWUSR;
173         
174         if ((p = create_proc_entry(handler->name, mode, parent)) != NULL) {
175                 p->data = (void *) tmp;
176                 p->proc_fops = &switch_proc_fops;
177         }
178 }
179
180 static inline void add_handlers(switch_driver *driver, const switch_config *handlers, struct proc_dir_entry *parent, int nr)
181 {
182         int i;
183         
184         for (i = 0; handlers[i].name != NULL; i++) {
185                 add_handler(driver, &(handlers[i]), parent, nr);
186         }
187 }               
188
189 static void remove_handlers(switch_priv *priv)
190 {
191         struct list_head *pos, *q;
192         switch_proc_handler *tmp;
193
194         list_for_each_safe(pos, q, &priv->data.list) {
195                 tmp = list_entry(pos, switch_proc_handler, list);
196                 list_del(pos);
197                 remove_proc_entry(tmp->handler.name, tmp->parent);
198                 kfree(tmp);
199         }
200 }
201
202
203 static void do_unregister(switch_driver *driver)
204 {
205         char buf[4];
206         int i;
207         switch_priv *priv = (switch_priv *) driver->data;
208
209         remove_handlers(priv);
210         
211         for(i = 0; priv->ports[i] != NULL; i++) {
212                 sprintf(buf, "%d", i);
213                 remove_proc_entry(buf, priv->port_dir);
214         }
215         kfree(priv->ports);
216         remove_proc_entry("port", priv->driver_dir);
217
218         for(i = 0; priv->vlans[i] != NULL; i++) {
219                 sprintf(buf, "%d", i);
220                 remove_proc_entry(buf, priv->vlan_dir);
221         }
222         kfree(priv->vlans);
223         remove_proc_entry("vlan", priv->driver_dir);
224
225         remove_proc_entry(driver->interface, switch_root);
226                         
227         if (priv->nr == (drv_num - 1))
228                 drv_num--;
229
230         kfree(priv);
231 }
232
233 switch_config global_driver_handlers[] = {
234         {"driver", handle_driver_name, NULL},
235         {"version", handle_driver_version, NULL},
236         {NULL, NULL, NULL}
237 };
238
239 static int do_register(switch_driver *driver)
240 {
241         switch_priv *priv;
242         int i;
243         char buf[4];
244
245         priv = kmalloc(sizeof(switch_priv), GFP_KERNEL);
246         if (!priv)
247                 return -ENOMEM;
248         driver->data = (void *) priv;
249
250         priv->ports = kmalloc((driver->ports + 1) * sizeof(struct proc_dir_entry *),
251                               GFP_KERNEL);
252         if (!priv->ports) {
253                 kfree(priv);
254                 return -ENOMEM;
255         }
256         priv->vlans = kmalloc((driver->vlans + 1) * sizeof(struct proc_dir_entry *),
257                               GFP_KERNEL);
258         if (!priv->vlans) {
259                 kfree(priv->ports);
260                 kfree(priv);
261                 return -ENOMEM;
262         }
263
264         INIT_LIST_HEAD(&priv->data.list);
265         
266         priv->nr = drv_num++;
267         priv->driver_dir = proc_mkdir(driver->interface, switch_root);
268         if (driver->driver_handlers != NULL) {
269                 add_handlers(driver, driver->driver_handlers, priv->driver_dir, 0);
270                 add_handlers(driver, global_driver_handlers, priv->driver_dir, 0);
271         }
272         
273         priv->port_dir = proc_mkdir("port", priv->driver_dir);
274         for (i = 0; i < driver->ports; i++) {
275                 sprintf(buf, "%d", i);
276                 priv->ports[i] = proc_mkdir(buf, priv->port_dir);
277                 if (driver->port_handlers != NULL)
278                         add_handlers(driver, driver->port_handlers, priv->ports[i], i);
279         }
280         priv->ports[i] = NULL;
281         
282         priv->vlan_dir = proc_mkdir("vlan", priv->driver_dir);
283         for (i = 0; i < driver->vlans; i++) {
284                 sprintf(buf, "%d", i);
285                 priv->vlans[i] = proc_mkdir(buf, priv->vlan_dir);
286                 if (driver->vlan_handlers != NULL)
287                         add_handlers(driver, driver->vlan_handlers, priv->vlans[i], i);
288         }
289         priv->vlans[i] = NULL;
290         
291
292         return 0;
293 }
294
295 static inline int isspace(char c) {
296         switch(c) {
297                 case ' ':
298                 case 0x09:
299                 case 0x0a:
300                 case 0x0d:
301                         return 1;
302                 default:
303                         return 0;
304         }
305 }
306
307 #define toupper(c) (islower(c) ? ((c) ^ 0x20) : (c))
308 #define islower(c) (((unsigned char)((c) - 'a')) < 26)
309                                                                                                                  
310 int switch_parse_media(char *buf)
311 {
312         char *str = buf;
313         while (*buf != 0) {
314                 *buf = toupper(*buf);
315                 buf++;
316         }
317
318         if (strncmp(str, "AUTO", 4) == 0)
319                 return SWITCH_MEDIA_AUTO;
320         else if (strncmp(str, "100FD", 5) == 0)
321                 return SWITCH_MEDIA_100 | SWITCH_MEDIA_FD;
322         else if (strncmp(str, "100HD", 5) == 0)
323                 return SWITCH_MEDIA_100;
324         else if (strncmp(str, "10FD", 4) == 0)
325                 return SWITCH_MEDIA_FD;
326         else if (strncmp(str, "10HD", 4) == 0)
327                 return 0;
328         else return -1;
329 }
330
331 int switch_print_media(char *buf, int media)
332 {
333         int len = 0;
334
335         if (media & SWITCH_MEDIA_AUTO)
336                 len = sprintf(buf, "Auto");
337         else if (media == (SWITCH_MEDIA_100 | SWITCH_MEDIA_FD))
338                 len = sprintf(buf, "100FD");
339         else if (media == SWITCH_MEDIA_100)
340                 len = sprintf(buf,  "100HD");
341         else if (media == SWITCH_MEDIA_FD)
342                 len = sprintf(buf,  "10FD");
343         else if (media == 0)
344                 len = sprintf(buf,  "10HD");
345         else
346                 len = sprintf(buf, "Invalid");
347
348         return len;
349 }
350
351 switch_vlan_config *switch_parse_vlan(switch_driver *driver, char *buf)
352 {
353         switch_vlan_config *c;
354         int j, u, p, s;
355         
356         c = kmalloc(sizeof(switch_vlan_config), GFP_KERNEL);
357         if (!c)
358                 return NULL;
359         memset(c, 0, sizeof(switch_vlan_config));
360
361         while (isspace(*buf)) buf++;
362         j = 0;
363         while (*buf >= '0' && *buf <= '9') {
364                 j *= 10;
365                 j += *buf++ - '0';
366
367                 u = ((j == driver->cpuport) ? 0 : 1);
368                 p = 0;
369                 s = !(*buf >= '0' && *buf <= '9');
370         
371                 if (s) {
372                         while (s && !isspace(*buf) && (*buf != 0)) {
373                                 switch(*buf) {
374                                         case 'u':
375                                                 u = 1;
376                                                 break;
377                                         case 't':
378                                                 u = 0;
379                                                 break;
380                                         case '*':
381                                                 p = 1;
382                                                 break;
383                                 }
384                                 buf++;
385                         }
386                         c->port |= (1 << j);
387                         if (u)
388                                 c->untag |= (1 << j);
389                         if (p)
390                                 c->pvid |= (1 << j);
391
392                         j = 0;
393                 }
394                 
395                 while (isspace(*buf)) buf++;
396         }
397         if (*buf != 0) return NULL;
398
399         c->port &= (1 << driver->ports) - 1;
400         c->untag &= (1 << driver->ports) - 1;
401         c->pvid &= (1 << driver->ports) - 1;
402         
403         return c;
404 }
405
406
407 int switch_register_driver(switch_driver *driver)
408 {
409         struct list_head *pos;
410         switch_driver *new;
411         int ret;
412
413         list_for_each(pos, &drivers.list) {
414                 if (strcmp(list_entry(pos, switch_driver, list)->name, driver->name) == 0) {
415                         printk("Switch driver '%s' already exists in the kernel\n", driver->name);
416                         return -EINVAL;
417                 }
418                 if (strcmp(list_entry(pos, switch_driver, list)->interface, driver->interface) == 0) {
419                         printk("There is already a switch registered on the device '%s'\n", driver->interface);
420                         return -EINVAL;
421                 }
422         }
423
424         new = kmalloc(sizeof(switch_driver), GFP_KERNEL);
425         if (!new)
426                 return -ENOMEM;
427         memcpy(new, driver, sizeof(switch_driver));
428         new->name = strdup(driver->name);
429         new->interface = strdup(driver->interface);
430
431         if ((ret = do_register(new)) < 0) {
432                 kfree(new->name);
433                 kfree(new);
434                 return ret;
435         }
436         INIT_LIST_HEAD(&new->list);
437         list_add(&new->list, &drivers.list);
438
439         return 0;
440 }
441
442 void switch_unregister_driver(char *name) {
443         struct list_head *pos, *q;
444         switch_driver *tmp;
445
446         list_for_each_safe(pos, q, &drivers.list) {
447                 tmp = list_entry(pos, switch_driver, list);
448                 if (strcmp(tmp->name, name) == 0) {
449                         do_unregister(tmp);
450                         list_del(pos);
451                         kfree(tmp->name);
452                         kfree(tmp);
453
454                         return;
455                 }
456         }
457 }
458
459 static int __init switch_init(void)
460 {
461         if ((switch_root = proc_mkdir("switch", NULL)) == NULL) {
462                 printk("%s: proc_mkdir failed.\n", __FILE__);
463                 return -ENODEV;
464         }
465
466         INIT_LIST_HEAD(&drivers.list);
467         
468         return 0;
469 }
470
471 static void __exit switch_exit(void)
472 {
473         remove_proc_entry("switch", NULL);
474 }
475
476 MODULE_AUTHOR("Felix Fietkau <openwrt@nbd.name>");
477 MODULE_LICENSE("GPL");
478
479 EXPORT_SYMBOL(switch_register_driver);
480 EXPORT_SYMBOL(switch_unregister_driver);
481 EXPORT_SYMBOL(switch_parse_vlan);
482 EXPORT_SYMBOL(switch_parse_media);
483 EXPORT_SYMBOL(switch_print_media);
484
485 module_init(switch_init);
486 module_exit(switch_exit);