net: use symbolic values for ndo_start_xmit() return codes
[linux-2.6.git] / drivers / net / wan / dlci.c
blob2fa275a58f9d7f618b8a7d0e5398cda3c38c51c6
1 /*
2 * DLCI Implementation of Frame Relay protocol for Linux, according to
3 * RFC 1490. This generic device provides en/decapsulation for an
4 * underlying hardware driver. Routes & IPs are assigned to these
5 * interfaces. Requires 'dlcicfg' program to create usable
6 * interfaces, the initial one, 'dlci' is for IOCTL use only.
8 * Version: @(#)dlci.c 0.35 4 Jan 1997
10 * Author: Mike McLagan <mike.mclagan@linux.org>
12 * Changes:
14 * 0.15 Mike Mclagan Packet freeing, bug in kmalloc call
15 * DLCI_RET handling
16 * 0.20 Mike McLagan More conservative on which packets
17 * are returned for retry and which are
18 * are dropped. If DLCI_RET_DROP is
19 * returned from the FRAD, the packet is
20 * sent back to Linux for re-transmission
21 * 0.25 Mike McLagan Converted to use SIOC IOCTL calls
22 * 0.30 Jim Freeman Fixed to allow IPX traffic
23 * 0.35 Michael Elizabeth Fixed incorrect memcpy_fromfs
25 * This program is free software; you can redistribute it and/or
26 * modify it under the terms of the GNU General Public License
27 * as published by the Free Software Foundation; either version
28 * 2 of the License, or (at your option) any later version.
31 #include <linux/module.h>
32 #include <linux/kernel.h>
33 #include <linux/types.h>
34 #include <linux/fcntl.h>
35 #include <linux/interrupt.h>
36 #include <linux/ptrace.h>
37 #include <linux/ioport.h>
38 #include <linux/in.h>
39 #include <linux/init.h>
40 #include <linux/slab.h>
41 #include <linux/string.h>
42 #include <linux/errno.h>
43 #include <linux/netdevice.h>
44 #include <linux/skbuff.h>
45 #include <linux/if_arp.h>
46 #include <linux/if_frad.h>
47 #include <linux/bitops.h>
49 #include <net/sock.h>
51 #include <asm/system.h>
52 #include <asm/io.h>
53 #include <asm/dma.h>
54 #include <asm/uaccess.h>
56 static const char version[] = "DLCI driver v0.35, 4 Jan 1997, mike.mclagan@linux.org";
58 static LIST_HEAD(dlci_devs);
60 static void dlci_setup(struct net_device *);
62 /*
63 * these encapsulate the RFC 1490 requirements as well as
64 * deal with packet transmission and reception, working with
65 * the upper network layers
68 static int dlci_header(struct sk_buff *skb, struct net_device *dev,
69 unsigned short type, const void *daddr,
70 const void *saddr, unsigned len)
72 struct frhdr hdr;
73 struct dlci_local *dlp;
74 unsigned int hlen;
75 char *dest;
77 dlp = netdev_priv(dev);
79 hdr.control = FRAD_I_UI;
80 switch(type)
82 case ETH_P_IP:
83 hdr.IP_NLPID = FRAD_P_IP;
84 hlen = sizeof(hdr.control) + sizeof(hdr.IP_NLPID);
85 break;
87 /* feel free to add other types, if necessary */
89 default:
90 hdr.pad = FRAD_P_PADDING;
91 hdr.NLPID = FRAD_P_SNAP;
92 memset(hdr.OUI, 0, sizeof(hdr.OUI));
93 hdr.PID = htons(type);
94 hlen = sizeof(hdr);
95 break;
98 dest = skb_push(skb, hlen);
99 if (!dest)
100 return(0);
102 memcpy(dest, &hdr, hlen);
104 return(hlen);
107 static void dlci_receive(struct sk_buff *skb, struct net_device *dev)
109 struct dlci_local *dlp;
110 struct frhdr *hdr;
111 int process, header;
113 dlp = netdev_priv(dev);
114 if (!pskb_may_pull(skb, sizeof(*hdr))) {
115 printk(KERN_NOTICE "%s: invalid data no header\n",
116 dev->name);
117 dev->stats.rx_errors++;
118 kfree_skb(skb);
119 return;
122 hdr = (struct frhdr *) skb->data;
123 process = 0;
124 header = 0;
125 skb->dev = dev;
127 if (hdr->control != FRAD_I_UI)
129 printk(KERN_NOTICE "%s: Invalid header flag 0x%02X.\n", dev->name, hdr->control);
130 dev->stats.rx_errors++;
132 else
133 switch(hdr->IP_NLPID)
135 case FRAD_P_PADDING:
136 if (hdr->NLPID != FRAD_P_SNAP)
138 printk(KERN_NOTICE "%s: Unsupported NLPID 0x%02X.\n", dev->name, hdr->NLPID);
139 dev->stats.rx_errors++;
140 break;
143 if (hdr->OUI[0] + hdr->OUI[1] + hdr->OUI[2] != 0)
145 printk(KERN_NOTICE "%s: Unsupported organizationally unique identifier 0x%02X-%02X-%02X.\n", dev->name, hdr->OUI[0], hdr->OUI[1], hdr->OUI[2]);
146 dev->stats.rx_errors++;
147 break;
150 /* at this point, it's an EtherType frame */
151 header = sizeof(struct frhdr);
152 /* Already in network order ! */
153 skb->protocol = hdr->PID;
154 process = 1;
155 break;
157 case FRAD_P_IP:
158 header = sizeof(hdr->control) + sizeof(hdr->IP_NLPID);
159 skb->protocol = htons(ETH_P_IP);
160 process = 1;
161 break;
163 case FRAD_P_SNAP:
164 case FRAD_P_Q933:
165 case FRAD_P_CLNP:
166 printk(KERN_NOTICE "%s: Unsupported NLPID 0x%02X.\n", dev->name, hdr->pad);
167 dev->stats.rx_errors++;
168 break;
170 default:
171 printk(KERN_NOTICE "%s: Invalid pad byte 0x%02X.\n", dev->name, hdr->pad);
172 dev->stats.rx_errors++;
173 break;
176 if (process)
178 /* we've set up the protocol, so discard the header */
179 skb_reset_mac_header(skb);
180 skb_pull(skb, header);
181 dev->stats.rx_bytes += skb->len;
182 netif_rx(skb);
183 dev->stats.rx_packets++;
185 else
186 dev_kfree_skb(skb);
189 static int dlci_transmit(struct sk_buff *skb, struct net_device *dev)
191 struct dlci_local *dlp;
192 int ret;
194 ret = 0;
196 if (!skb || !dev)
197 return(0);
199 dlp = netdev_priv(dev);
201 netif_stop_queue(dev);
203 ret = dlp->slave->netdev_ops->ndo_start_xmit(skb, dlp->slave);
204 switch (ret)
206 case DLCI_RET_OK:
207 dev->stats.tx_packets++;
208 ret = NETDEV_TX_OK;
209 break;
210 case DLCI_RET_ERR:
211 dev->stats.tx_errors++;
212 ret = NETDEV_TX_OK;
213 break;
214 case DLCI_RET_DROP:
215 dev->stats.tx_dropped++;
216 ret = NETDEV_TX_BUSY;
217 break;
219 /* Alan Cox recommends always returning 0, and always freeing the packet */
220 /* experience suggest a slightly more conservative approach */
222 if (!ret)
224 dev_kfree_skb(skb);
225 netif_wake_queue(dev);
227 return(ret);
230 static int dlci_config(struct net_device *dev, struct dlci_conf __user *conf, int get)
232 struct dlci_conf config;
233 struct dlci_local *dlp;
234 struct frad_local *flp;
235 int err;
237 dlp = netdev_priv(dev);
239 flp = netdev_priv(dlp->slave);
241 if (!get)
243 if(copy_from_user(&config, conf, sizeof(struct dlci_conf)))
244 return -EFAULT;
245 if (config.flags & ~DLCI_VALID_FLAGS)
246 return(-EINVAL);
247 memcpy(&dlp->config, &config, sizeof(struct dlci_conf));
248 dlp->configured = 1;
251 err = (*flp->dlci_conf)(dlp->slave, dev, get);
252 if (err)
253 return(err);
255 if (get)
257 if(copy_to_user(conf, &dlp->config, sizeof(struct dlci_conf)))
258 return -EFAULT;
261 return(0);
264 static int dlci_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
266 struct dlci_local *dlp;
268 if (!capable(CAP_NET_ADMIN))
269 return(-EPERM);
271 dlp = netdev_priv(dev);
273 switch(cmd)
275 case DLCI_GET_SLAVE:
276 if (!*(short *)(dev->dev_addr))
277 return(-EINVAL);
279 strncpy(ifr->ifr_slave, dlp->slave->name, sizeof(ifr->ifr_slave));
280 break;
282 case DLCI_GET_CONF:
283 case DLCI_SET_CONF:
284 if (!*(short *)(dev->dev_addr))
285 return(-EINVAL);
287 return(dlci_config(dev, ifr->ifr_data, cmd == DLCI_GET_CONF));
288 break;
290 default:
291 return(-EOPNOTSUPP);
293 return(0);
296 static int dlci_change_mtu(struct net_device *dev, int new_mtu)
298 struct dlci_local *dlp = netdev_priv(dev);
300 return dev_set_mtu(dlp->slave, new_mtu);
303 static int dlci_open(struct net_device *dev)
305 struct dlci_local *dlp;
306 struct frad_local *flp;
307 int err;
309 dlp = netdev_priv(dev);
311 if (!*(short *)(dev->dev_addr))
312 return(-EINVAL);
314 if (!netif_running(dlp->slave))
315 return(-ENOTCONN);
317 flp = netdev_priv(dlp->slave);
318 err = (*flp->activate)(dlp->slave, dev);
319 if (err)
320 return(err);
322 netif_start_queue(dev);
324 return 0;
327 static int dlci_close(struct net_device *dev)
329 struct dlci_local *dlp;
330 struct frad_local *flp;
331 int err;
333 netif_stop_queue(dev);
335 dlp = netdev_priv(dev);
337 flp = netdev_priv(dlp->slave);
338 err = (*flp->deactivate)(dlp->slave, dev);
340 return 0;
343 static int dlci_add(struct dlci_add *dlci)
345 struct net_device *master, *slave;
346 struct dlci_local *dlp;
347 struct frad_local *flp;
348 int err = -EINVAL;
351 /* validate slave device */
352 slave = dev_get_by_name(&init_net, dlci->devname);
353 if (!slave)
354 return -ENODEV;
356 if (slave->type != ARPHRD_FRAD || netdev_priv(slave) == NULL)
357 goto err1;
359 /* create device name */
360 master = alloc_netdev( sizeof(struct dlci_local), "dlci%d",
361 dlci_setup);
362 if (!master) {
363 err = -ENOMEM;
364 goto err1;
367 /* make sure same slave not already registered */
368 rtnl_lock();
369 list_for_each_entry(dlp, &dlci_devs, list) {
370 if (dlp->slave == slave) {
371 err = -EBUSY;
372 goto err2;
376 err = dev_alloc_name(master, master->name);
377 if (err < 0)
378 goto err2;
380 *(short *)(master->dev_addr) = dlci->dlci;
382 dlp = netdev_priv(master);
383 dlp->slave = slave;
384 dlp->master = master;
386 flp = netdev_priv(slave);
387 err = (*flp->assoc)(slave, master);
388 if (err < 0)
389 goto err2;
391 err = register_netdevice(master);
392 if (err < 0)
393 goto err2;
395 strcpy(dlci->devname, master->name);
397 list_add(&dlp->list, &dlci_devs);
398 rtnl_unlock();
400 return(0);
402 err2:
403 rtnl_unlock();
404 free_netdev(master);
405 err1:
406 dev_put(slave);
407 return(err);
410 static int dlci_del(struct dlci_add *dlci)
412 struct dlci_local *dlp;
413 struct frad_local *flp;
414 struct net_device *master, *slave;
415 int err;
417 /* validate slave device */
418 master = __dev_get_by_name(&init_net, dlci->devname);
419 if (!master)
420 return(-ENODEV);
422 if (netif_running(master)) {
423 return(-EBUSY);
426 dlp = netdev_priv(master);
427 slave = dlp->slave;
428 flp = netdev_priv(slave);
430 rtnl_lock();
431 err = (*flp->deassoc)(slave, master);
432 if (!err) {
433 list_del(&dlp->list);
435 unregister_netdevice(master);
437 dev_put(slave);
439 rtnl_unlock();
441 return(err);
444 static int dlci_ioctl(unsigned int cmd, void __user *arg)
446 struct dlci_add add;
447 int err;
449 if (!capable(CAP_NET_ADMIN))
450 return(-EPERM);
452 if(copy_from_user(&add, arg, sizeof(struct dlci_add)))
453 return -EFAULT;
455 switch (cmd)
457 case SIOCADDDLCI:
458 err = dlci_add(&add);
460 if (!err)
461 if(copy_to_user(arg, &add, sizeof(struct dlci_add)))
462 return -EFAULT;
463 break;
465 case SIOCDELDLCI:
466 err = dlci_del(&add);
467 break;
469 default:
470 err = -EINVAL;
473 return(err);
476 static const struct header_ops dlci_header_ops = {
477 .create = dlci_header,
480 static const struct net_device_ops dlci_netdev_ops = {
481 .ndo_open = dlci_open,
482 .ndo_stop = dlci_close,
483 .ndo_do_ioctl = dlci_dev_ioctl,
484 .ndo_start_xmit = dlci_transmit,
485 .ndo_change_mtu = dlci_change_mtu,
488 static void dlci_setup(struct net_device *dev)
490 struct dlci_local *dlp = netdev_priv(dev);
492 dev->flags = 0;
493 dev->header_ops = &dlci_header_ops;
494 dev->netdev_ops = &dlci_netdev_ops;
495 dev->destructor = free_netdev;
497 dlp->receive = dlci_receive;
499 dev->type = ARPHRD_DLCI;
500 dev->hard_header_len = sizeof(struct frhdr);
501 dev->addr_len = sizeof(short);
505 /* if slave is unregistering, then cleanup master */
506 static int dlci_dev_event(struct notifier_block *unused,
507 unsigned long event, void *ptr)
509 struct net_device *dev = (struct net_device *) ptr;
511 if (dev_net(dev) != &init_net)
512 return NOTIFY_DONE;
514 if (event == NETDEV_UNREGISTER) {
515 struct dlci_local *dlp;
517 list_for_each_entry(dlp, &dlci_devs, list) {
518 if (dlp->slave == dev) {
519 list_del(&dlp->list);
520 unregister_netdevice(dlp->master);
521 dev_put(dlp->slave);
522 break;
526 return NOTIFY_DONE;
529 static struct notifier_block dlci_notifier = {
530 .notifier_call = dlci_dev_event,
533 static int __init init_dlci(void)
535 dlci_ioctl_set(dlci_ioctl);
536 register_netdevice_notifier(&dlci_notifier);
538 printk("%s.\n", version);
540 return 0;
543 static void __exit dlci_exit(void)
545 struct dlci_local *dlp, *nxt;
547 dlci_ioctl_set(NULL);
548 unregister_netdevice_notifier(&dlci_notifier);
550 rtnl_lock();
551 list_for_each_entry_safe(dlp, nxt, &dlci_devs, list) {
552 unregister_netdevice(dlp->master);
553 dev_put(dlp->slave);
555 rtnl_unlock();
558 module_init(init_dlci);
559 module_exit(dlci_exit);
561 MODULE_AUTHOR("Mike McLagan");
562 MODULE_DESCRIPTION("Frame Relay DLCI layer");
563 MODULE_LICENSE("GPL");