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>
14 * 0.15 Mike Mclagan Packet freeing, bug in kmalloc call
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33 #include <linux/module.h>
34 #include <linux/kernel.h>
35 #include <linux/types.h>
36 #include <linux/fcntl.h>
37 #include <linux/interrupt.h>
38 #include <linux/ptrace.h>
39 #include <linux/ioport.h>
41 #include <linux/init.h>
42 #include <linux/slab.h>
43 #include <linux/string.h>
44 #include <linux/errno.h>
45 #include <linux/netdevice.h>
46 #include <linux/skbuff.h>
47 #include <linux/if_arp.h>
48 #include <linux/if_frad.h>
49 #include <linux/bitops.h>
55 #include <asm/uaccess.h>
57 static const char version[] = "DLCI driver v0.35, 4 Jan 1997, mike.mclagan@linux.org";
59 static LIST_HEAD(dlci_devs);
61 static void dlci_setup(struct net_device *);
64 * these encapsulate the RFC 1490 requirements as well as
65 * deal with packet transmission and reception, working with
66 * the upper network layers
69 static int dlci_header(struct sk_buff *skb, struct net_device *dev,
70 unsigned short type, const void *daddr,
71 const void *saddr, unsigned len)
77 hdr.control = FRAD_I_UI;
81 hdr.IP_NLPID = FRAD_P_IP;
82 hlen = sizeof(hdr.control) + sizeof(hdr.IP_NLPID);
85 /* feel free to add other types, if necessary */
88 hdr.pad = FRAD_P_PADDING;
89 hdr.NLPID = FRAD_P_SNAP;
90 memset(hdr.OUI, 0, sizeof(hdr.OUI));
91 hdr.PID = htons(type);
96 dest = skb_push(skb, hlen);
100 memcpy(dest, &hdr, hlen);
105 static void dlci_receive(struct sk_buff *skb, struct net_device *dev)
110 if (!pskb_may_pull(skb, sizeof(*hdr))) {
111 netdev_notice(dev, "invalid data no header\n");
112 dev->stats.rx_errors++;
117 hdr = (struct frhdr *) skb->data;
122 if (hdr->control != FRAD_I_UI)
124 netdev_notice(dev, "Invalid header flag 0x%02X\n",
126 dev->stats.rx_errors++;
129 switch (hdr->IP_NLPID)
132 if (hdr->NLPID != FRAD_P_SNAP)
134 netdev_notice(dev, "Unsupported NLPID 0x%02X\n",
136 dev->stats.rx_errors++;
140 if (hdr->OUI[0] + hdr->OUI[1] + hdr->OUI[2] != 0)
142 netdev_notice(dev, "Unsupported organizationally unique identifier 0x%02X-%02X-%02X\n",
146 dev->stats.rx_errors++;
150 /* at this point, it's an EtherType frame */
151 header = sizeof(struct frhdr);
152 /* Already in network order ! */
153 skb->protocol = hdr->PID;
158 header = sizeof(hdr->control) + sizeof(hdr->IP_NLPID);
159 skb->protocol = htons(ETH_P_IP);
166 netdev_notice(dev, "Unsupported NLPID 0x%02X\n",
168 dev->stats.rx_errors++;
172 netdev_notice(dev, "Invalid pad byte 0x%02X\n",
174 dev->stats.rx_errors++;
180 /* we've set up the protocol, so discard the header */
181 skb_reset_mac_header(skb);
182 skb_pull(skb, header);
183 dev->stats.rx_bytes += skb->len;
185 dev->stats.rx_packets++;
191 static netdev_tx_t dlci_transmit(struct sk_buff *skb, struct net_device *dev)
193 struct dlci_local *dlp = netdev_priv(dev);
196 dlp->slave->netdev_ops->ndo_start_xmit(skb, dlp->slave);
200 static int dlci_config(struct net_device *dev, struct dlci_conf __user *conf, int get)
202 struct dlci_conf config;
203 struct dlci_local *dlp;
204 struct frad_local *flp;
207 dlp = netdev_priv(dev);
209 flp = netdev_priv(dlp->slave);
213 if (copy_from_user(&config, conf, sizeof(struct dlci_conf)))
215 if (config.flags & ~DLCI_VALID_FLAGS)
217 memcpy(&dlp->config, &config, sizeof(struct dlci_conf));
221 err = (*flp->dlci_conf)(dlp->slave, dev, get);
227 if (copy_to_user(conf, &dlp->config, sizeof(struct dlci_conf)))
234 static int dlci_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
236 struct dlci_local *dlp;
238 if (!capable(CAP_NET_ADMIN))
241 dlp = netdev_priv(dev);
246 if (!*(short *)(dev->dev_addr))
249 strncpy(ifr->ifr_slave, dlp->slave->name, sizeof(ifr->ifr_slave));
254 if (!*(short *)(dev->dev_addr))
257 return dlci_config(dev, ifr->ifr_data, cmd == DLCI_GET_CONF);
266 static int dlci_change_mtu(struct net_device *dev, int new_mtu)
268 struct dlci_local *dlp = netdev_priv(dev);
270 return dev_set_mtu(dlp->slave, new_mtu);
273 static int dlci_open(struct net_device *dev)
275 struct dlci_local *dlp;
276 struct frad_local *flp;
279 dlp = netdev_priv(dev);
281 if (!*(short *)(dev->dev_addr))
284 if (!netif_running(dlp->slave))
287 flp = netdev_priv(dlp->slave);
288 err = (*flp->activate)(dlp->slave, dev);
292 netif_start_queue(dev);
297 static int dlci_close(struct net_device *dev)
299 struct dlci_local *dlp;
300 struct frad_local *flp;
303 netif_stop_queue(dev);
305 dlp = netdev_priv(dev);
307 flp = netdev_priv(dlp->slave);
308 err = (*flp->deactivate)(dlp->slave, dev);
313 static int dlci_add(struct dlci_add *dlci)
315 struct net_device *master, *slave;
316 struct dlci_local *dlp;
317 struct frad_local *flp;
321 /* validate slave device */
322 slave = dev_get_by_name(&init_net, dlci->devname);
326 if (slave->type != ARPHRD_FRAD || netdev_priv(slave) == NULL)
329 /* create device name */
330 master = alloc_netdev( sizeof(struct dlci_local), "dlci%d",
337 /* make sure same slave not already registered */
339 list_for_each_entry(dlp, &dlci_devs, list) {
340 if (dlp->slave == slave) {
346 *(short *)(master->dev_addr) = dlci->dlci;
348 dlp = netdev_priv(master);
350 dlp->master = master;
352 flp = netdev_priv(slave);
353 err = (*flp->assoc)(slave, master);
357 err = register_netdevice(master);
361 strcpy(dlci->devname, master->name);
363 list_add(&dlp->list, &dlci_devs);
376 static int dlci_del(struct dlci_add *dlci)
378 struct dlci_local *dlp;
379 struct frad_local *flp;
380 struct net_device *master, *slave;
386 /* validate slave device */
387 master = __dev_get_by_name(&init_net, dlci->devname);
393 list_for_each_entry(dlp, &dlci_devs, list) {
394 if (dlp->master == master) {
404 if (netif_running(master)) {
409 dlp = netdev_priv(master);
411 flp = netdev_priv(slave);
413 err = (*flp->deassoc)(slave, master);
415 list_del(&dlp->list);
417 unregister_netdevice(master);
426 static int dlci_ioctl(unsigned int cmd, void __user *arg)
431 if (!capable(CAP_NET_ADMIN))
434 if (copy_from_user(&add, arg, sizeof(struct dlci_add)))
440 err = dlci_add(&add);
443 if (copy_to_user(arg, &add, sizeof(struct dlci_add)))
448 err = dlci_del(&add);
458 static const struct header_ops dlci_header_ops = {
459 .create = dlci_header,
462 static const struct net_device_ops dlci_netdev_ops = {
463 .ndo_open = dlci_open,
464 .ndo_stop = dlci_close,
465 .ndo_do_ioctl = dlci_dev_ioctl,
466 .ndo_start_xmit = dlci_transmit,
467 .ndo_change_mtu = dlci_change_mtu,
470 static void dlci_setup(struct net_device *dev)
472 struct dlci_local *dlp = netdev_priv(dev);
475 dev->header_ops = &dlci_header_ops;
476 dev->netdev_ops = &dlci_netdev_ops;
477 dev->destructor = free_netdev;
479 dlp->receive = dlci_receive;
481 dev->type = ARPHRD_DLCI;
482 dev->hard_header_len = sizeof(struct frhdr);
483 dev->addr_len = sizeof(short);
487 /* if slave is unregistering, then cleanup master */
488 static int dlci_dev_event(struct notifier_block *unused,
489 unsigned long event, void *ptr)
491 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
493 if (dev_net(dev) != &init_net)
496 if (event == NETDEV_UNREGISTER) {
497 struct dlci_local *dlp;
499 list_for_each_entry(dlp, &dlci_devs, list) {
500 if (dlp->slave == dev) {
501 list_del(&dlp->list);
502 unregister_netdevice(dlp->master);
511 static struct notifier_block dlci_notifier = {
512 .notifier_call = dlci_dev_event,
515 static int __init init_dlci(void)
517 dlci_ioctl_set(dlci_ioctl);
518 register_netdevice_notifier(&dlci_notifier);
520 printk("%s.\n", version);
525 static void __exit dlci_exit(void)
527 struct dlci_local *dlp, *nxt;
529 dlci_ioctl_set(NULL);
530 unregister_netdevice_notifier(&dlci_notifier);
533 list_for_each_entry_safe(dlp, nxt, &dlci_devs, list) {
534 unregister_netdevice(dlp->master);
540 module_init(init_dlci);
541 module_exit(dlci_exit);
543 MODULE_AUTHOR("Mike McLagan");
544 MODULE_DESCRIPTION("Frame Relay DLCI layer");
545 MODULE_LICENSE("GPL");