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 #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>
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>
51 #include <asm/system.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
*);
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
)
73 struct dlci_local
*dlp
;
77 dlp
= netdev_priv(dev
);
79 hdr
.control
= FRAD_I_UI
;
83 hdr
.IP_NLPID
= FRAD_P_IP
;
84 hlen
= sizeof(hdr
.control
) + sizeof(hdr
.IP_NLPID
);
87 /* feel free to add other types, if necessary */
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
);
98 dest
= skb_push(skb
, hlen
);
102 memcpy(dest
, &hdr
, hlen
);
107 static void dlci_receive(struct sk_buff
*skb
, struct net_device
*dev
)
109 struct dlci_local
*dlp
;
113 dlp
= netdev_priv(dev
);
114 if (!pskb_may_pull(skb
, sizeof(*hdr
))) {
115 printk(KERN_NOTICE
"%s: invalid data no header\n",
117 dev
->stats
.rx_errors
++;
122 hdr
= (struct frhdr
*) skb
->data
;
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
++;
133 switch (hdr
->IP_NLPID
)
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
++;
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
++;
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 printk(KERN_NOTICE
"%s: Unsupported NLPID 0x%02X.\n", dev
->name
, hdr
->pad
);
167 dev
->stats
.rx_errors
++;
171 printk(KERN_NOTICE
"%s: Invalid pad byte 0x%02X.\n", dev
->name
, hdr
->pad
);
172 dev
->stats
.rx_errors
++;
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
;
183 dev
->stats
.rx_packets
++;
189 static netdev_tx_t
dlci_transmit(struct sk_buff
*skb
, struct net_device
*dev
)
191 struct dlci_local
*dlp
= netdev_priv(dev
);
194 dlp
->slave
->netdev_ops
->ndo_start_xmit(skb
, dlp
->slave
);
198 static int dlci_config(struct net_device
*dev
, struct dlci_conf __user
*conf
, int get
)
200 struct dlci_conf config
;
201 struct dlci_local
*dlp
;
202 struct frad_local
*flp
;
205 dlp
= netdev_priv(dev
);
207 flp
= netdev_priv(dlp
->slave
);
211 if (copy_from_user(&config
, conf
, sizeof(struct dlci_conf
)))
213 if (config
.flags
& ~DLCI_VALID_FLAGS
)
215 memcpy(&dlp
->config
, &config
, sizeof(struct dlci_conf
));
219 err
= (*flp
->dlci_conf
)(dlp
->slave
, dev
, get
);
225 if (copy_to_user(conf
, &dlp
->config
, sizeof(struct dlci_conf
)))
232 static int dlci_dev_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
234 struct dlci_local
*dlp
;
236 if (!capable(CAP_NET_ADMIN
))
239 dlp
= netdev_priv(dev
);
244 if (!*(short *)(dev
->dev_addr
))
247 strncpy(ifr
->ifr_slave
, dlp
->slave
->name
, sizeof(ifr
->ifr_slave
));
252 if (!*(short *)(dev
->dev_addr
))
255 return(dlci_config(dev
, ifr
->ifr_data
, cmd
== DLCI_GET_CONF
));
264 static int dlci_change_mtu(struct net_device
*dev
, int new_mtu
)
266 struct dlci_local
*dlp
= netdev_priv(dev
);
268 return dev_set_mtu(dlp
->slave
, new_mtu
);
271 static int dlci_open(struct net_device
*dev
)
273 struct dlci_local
*dlp
;
274 struct frad_local
*flp
;
277 dlp
= netdev_priv(dev
);
279 if (!*(short *)(dev
->dev_addr
))
282 if (!netif_running(dlp
->slave
))
285 flp
= netdev_priv(dlp
->slave
);
286 err
= (*flp
->activate
)(dlp
->slave
, dev
);
290 netif_start_queue(dev
);
295 static int dlci_close(struct net_device
*dev
)
297 struct dlci_local
*dlp
;
298 struct frad_local
*flp
;
301 netif_stop_queue(dev
);
303 dlp
= netdev_priv(dev
);
305 flp
= netdev_priv(dlp
->slave
);
306 err
= (*flp
->deactivate
)(dlp
->slave
, dev
);
311 static int dlci_add(struct dlci_add
*dlci
)
313 struct net_device
*master
, *slave
;
314 struct dlci_local
*dlp
;
315 struct frad_local
*flp
;
319 /* validate slave device */
320 slave
= dev_get_by_name(&init_net
, dlci
->devname
);
324 if (slave
->type
!= ARPHRD_FRAD
|| netdev_priv(slave
) == NULL
)
327 /* create device name */
328 master
= alloc_netdev( sizeof(struct dlci_local
), "dlci%d",
335 /* make sure same slave not already registered */
337 list_for_each_entry(dlp
, &dlci_devs
, list
) {
338 if (dlp
->slave
== slave
) {
344 err
= dev_alloc_name(master
, master
->name
);
348 *(short *)(master
->dev_addr
) = dlci
->dlci
;
350 dlp
= netdev_priv(master
);
352 dlp
->master
= master
;
354 flp
= netdev_priv(slave
);
355 err
= (*flp
->assoc
)(slave
, master
);
359 err
= register_netdevice(master
);
363 strcpy(dlci
->devname
, master
->name
);
365 list_add(&dlp
->list
, &dlci_devs
);
378 static int dlci_del(struct dlci_add
*dlci
)
380 struct dlci_local
*dlp
;
381 struct frad_local
*flp
;
382 struct net_device
*master
, *slave
;
385 /* validate slave device */
386 master
= __dev_get_by_name(&init_net
, dlci
->devname
);
390 if (netif_running(master
)) {
394 dlp
= netdev_priv(master
);
396 flp
= netdev_priv(slave
);
399 err
= (*flp
->deassoc
)(slave
, master
);
401 list_del(&dlp
->list
);
403 unregister_netdevice(master
);
412 static int dlci_ioctl(unsigned int cmd
, void __user
*arg
)
417 if (!capable(CAP_NET_ADMIN
))
420 if (copy_from_user(&add
, arg
, sizeof(struct dlci_add
)))
426 err
= dlci_add(&add
);
429 if (copy_to_user(arg
, &add
, sizeof(struct dlci_add
)))
434 err
= dlci_del(&add
);
444 static const struct header_ops dlci_header_ops
= {
445 .create
= dlci_header
,
448 static const struct net_device_ops dlci_netdev_ops
= {
449 .ndo_open
= dlci_open
,
450 .ndo_stop
= dlci_close
,
451 .ndo_do_ioctl
= dlci_dev_ioctl
,
452 .ndo_start_xmit
= dlci_transmit
,
453 .ndo_change_mtu
= dlci_change_mtu
,
456 static void dlci_setup(struct net_device
*dev
)
458 struct dlci_local
*dlp
= netdev_priv(dev
);
461 dev
->header_ops
= &dlci_header_ops
;
462 dev
->netdev_ops
= &dlci_netdev_ops
;
463 dev
->destructor
= free_netdev
;
465 dlp
->receive
= dlci_receive
;
467 dev
->type
= ARPHRD_DLCI
;
468 dev
->hard_header_len
= sizeof(struct frhdr
);
469 dev
->addr_len
= sizeof(short);
473 /* if slave is unregistering, then cleanup master */
474 static int dlci_dev_event(struct notifier_block
*unused
,
475 unsigned long event
, void *ptr
)
477 struct net_device
*dev
= (struct net_device
*) ptr
;
479 if (dev_net(dev
) != &init_net
)
482 if (event
== NETDEV_UNREGISTER
) {
483 struct dlci_local
*dlp
;
485 list_for_each_entry(dlp
, &dlci_devs
, list
) {
486 if (dlp
->slave
== dev
) {
487 list_del(&dlp
->list
);
488 unregister_netdevice(dlp
->master
);
497 static struct notifier_block dlci_notifier
= {
498 .notifier_call
= dlci_dev_event
,
501 static int __init
init_dlci(void)
503 dlci_ioctl_set(dlci_ioctl
);
504 register_netdevice_notifier(&dlci_notifier
);
506 printk("%s.\n", version
);
511 static void __exit
dlci_exit(void)
513 struct dlci_local
*dlp
, *nxt
;
515 dlci_ioctl_set(NULL
);
516 unregister_netdevice_notifier(&dlci_notifier
);
519 list_for_each_entry_safe(dlp
, nxt
, &dlci_devs
, list
) {
520 unregister_netdevice(dlp
->master
);
526 module_init(init_dlci
);
527 module_exit(dlci_exit
);
529 MODULE_AUTHOR("Mike McLagan");
530 MODULE_DESCRIPTION("Frame Relay DLCI layer");
531 MODULE_LICENSE("GPL");