blob: 666bbacb8cb493dd8ef9b50b14bfcd993952a019 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * "LAPB via ethernet" driver release 001
3 *
4 * This code REQUIRES 2.1.15 or higher/ NET3.038
5 *
6 * This module:
7 * This module is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 * This is a "pseudo" network driver to allow LAPB over Ethernet.
13 *
14 * This driver can use any ethernet destination address, and can be
15 * limited to accept frames from one dedicated ethernet card only.
16 *
17 * History
18 * LAPBETH 001 Jonathan Naylor Cloned from bpqether.c
19 * 2000-10-29 Henner Eisen lapb_data_indication() return status.
20 * 2000-11-14 Henner Eisen dev_hold/put, NETDEV_GOING_DOWN support
21 */
22
Joe Perches23efcb72011-06-26 19:01:35 +000023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/errno.h>
26#include <linux/types.h>
27#include <linux/socket.h>
28#include <linux/in.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/string.h>
32#include <linux/net.h>
33#include <linux/inet.h>
34#include <linux/netdevice.h>
35#include <linux/if_arp.h>
36#include <linux/skbuff.h>
37#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39#include <linux/mm.h>
40#include <linux/interrupt.h>
41#include <linux/notifier.h>
42#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/module.h>
44#include <linux/lapb.h>
45#include <linux/init.h>
46
47#include <net/x25device.h>
48
stephen hemmingerdcfc5d72010-09-02 14:29:35 +000049static const u8 bcast_addr[6] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* If this number is made larger, check that the temporary string buffer
52 * in lapbeth_new_device is large enough to store the probe device name.*/
53#define MAXLAPBDEV 100
54
55struct lapbethdev {
56 struct list_head node;
57 struct net_device *ethdev; /* link to ethernet device */
58 struct net_device *axdev; /* lapbeth device (lapb#) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Robert P. J. Day293a3832008-03-28 16:16:39 -070061static LIST_HEAD(lapbeth_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* ------------------------------------------------------------------------ */
64
65/*
66 * Get the LAPB device for the ethernet device
67 */
68static struct lapbethdev *lapbeth_get_x25_dev(struct net_device *dev)
69{
70 struct lapbethdev *lapbeth;
71
72 list_for_each_entry_rcu(lapbeth, &lapbeth_devices, node) {
73 if (lapbeth->ethdev == dev)
74 return lapbeth;
75 }
76 return NULL;
77}
78
79static __inline__ int dev_is_ethdev(struct net_device *dev)
80{
81 return dev->type == ARPHRD_ETHER && strncmp(dev->name, "dummy", 5);
82}
83
84/* ------------------------------------------------------------------------ */
85
86/*
87 * Receive a LAPB frame via an ethernet interface.
88 */
David S. Millerf2ccd8f2005-08-09 19:34:12 -070089static int lapbeth_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *ptype, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 int len, err;
92 struct lapbethdev *lapbeth;
93
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090094 if (dev_net(dev) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -070095 goto drop;
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
98 return NET_RX_DROP;
99
100 if (!pskb_may_pull(skb, 2))
101 goto drop;
102
103 rcu_read_lock();
104 lapbeth = lapbeth_get_x25_dev(dev);
105 if (!lapbeth)
106 goto drop_unlock;
107 if (!netif_running(lapbeth->axdev))
108 goto drop_unlock;
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 len = skb->data[0] + skb->data[1] * 256;
Stephen Hemmingerea2ebaf2009-03-20 19:36:17 +0000111 dev->stats.rx_packets++;
112 dev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 skb_pull(skb, 2); /* Remove the length bytes */
115 skb_trim(skb, len); /* Set the length of the data */
116
117 if ((err = lapb_data_received(lapbeth->axdev, skb)) != LAPB_OK) {
118 printk(KERN_DEBUG "lapbether: lapb_data_received err - %d\n", err);
119 goto drop_unlock;
120 }
121out:
122 rcu_read_unlock();
123 return 0;
124drop_unlock:
125 kfree_skb(skb);
126 goto out;
127drop:
128 kfree_skb(skb);
129 return 0;
130}
131
132static int lapbeth_data_indication(struct net_device *dev, struct sk_buff *skb)
133{
134 unsigned char *ptr;
135
136 skb_push(skb, 1);
137
138 if (skb_cow(skb, 1))
139 return NET_RX_DROP;
140
141 ptr = skb->data;
andrew hendry4d995032010-04-19 13:30:02 +0000142 *ptr = X25_IFACE_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 skb->protocol = x25_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return netif_rx(skb);
146}
147
148/*
149 * Send a LAPB frame via an ethernet interface
150 */
Stephen Hemmingerd71a6742009-08-31 19:50:47 +0000151static netdev_tx_t lapbeth_xmit(struct sk_buff *skb,
152 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Patrick McHardyd77eeb72009-06-15 23:33:24 +0000154 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /*
157 * Just to be *really* sure not to send anything if the interface
158 * is down, the ethernet device may have gone.
159 */
Patrick McHardyd77eeb72009-06-15 23:33:24 +0000160 if (!netif_running(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Xie He8fb9b362020-08-05 18:50:40 -0700163 /* There should be a pseudo header of 1 byte added by upper layers.
164 * Check to make sure it is there before reading it.
165 */
166 if (skb->len < 1)
167 goto drop;
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 switch (skb->data[0]) {
andrew hendry4d995032010-04-19 13:30:02 +0000170 case X25_IFACE_DATA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
andrew hendry4d995032010-04-19 13:30:02 +0000172 case X25_IFACE_CONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if ((err = lapb_connect_request(dev)) != LAPB_OK)
Joe Perches23efcb72011-06-26 19:01:35 +0000174 pr_err("lapb_connect_request error: %d\n", err);
Patrick McHardyd77eeb72009-06-15 23:33:24 +0000175 goto drop;
andrew hendry4d995032010-04-19 13:30:02 +0000176 case X25_IFACE_DISCONNECT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if ((err = lapb_disconnect_request(dev)) != LAPB_OK)
Joe Perches23efcb72011-06-26 19:01:35 +0000178 pr_err("lapb_disconnect_request err: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* Fall thru */
180 default:
Patrick McHardyd77eeb72009-06-15 23:33:24 +0000181 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 skb_pull(skb, 1);
185
186 if ((err = lapb_data_request(dev, skb)) != LAPB_OK) {
Joe Perches23efcb72011-06-26 19:01:35 +0000187 pr_err("lapb_data_request error - %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto drop;
189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190out:
Patrick McHardyd77eeb72009-06-15 23:33:24 +0000191 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192drop:
193 kfree_skb(skb);
194 goto out;
195}
196
197static void lapbeth_data_transmit(struct net_device *ndev, struct sk_buff *skb)
198{
199 struct lapbethdev *lapbeth = netdev_priv(ndev);
200 unsigned char *ptr;
201 struct net_device *dev;
202 int size = skb->len;
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 ptr = skb_push(skb, 2);
205
206 *ptr++ = size % 256;
207 *ptr++ = size / 256;
208
Stephen Hemmingerea2ebaf2009-03-20 19:36:17 +0000209 ndev->stats.tx_packets++;
210 ndev->stats.tx_bytes += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 skb->dev = dev = lapbeth->ethdev;
213
Xie He63708b22020-09-16 09:49:18 -0700214 skb->protocol = htons(ETH_P_DEC);
215
Xie He8d495722020-08-25 20:03:53 -0700216 skb_reset_network_header(skb);
217
Stephen Hemminger0c4e8582007-10-09 01:36:32 -0700218 dev_hard_header(skb, dev, ETH_P_DEC, bcast_addr, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 dev_queue_xmit(skb);
221}
222
223static void lapbeth_connected(struct net_device *dev, int reason)
224{
225 unsigned char *ptr;
226 struct sk_buff *skb = dev_alloc_skb(1);
227
228 if (!skb) {
Joe Perches23efcb72011-06-26 19:01:35 +0000229 pr_err("out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return;
231 }
232
233 ptr = skb_put(skb, 1);
andrew hendry4d995032010-04-19 13:30:02 +0000234 *ptr = X25_IFACE_CONNECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 skb->protocol = x25_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 netif_rx(skb);
238}
239
240static void lapbeth_disconnected(struct net_device *dev, int reason)
241{
242 unsigned char *ptr;
243 struct sk_buff *skb = dev_alloc_skb(1);
244
245 if (!skb) {
Joe Perches23efcb72011-06-26 19:01:35 +0000246 pr_err("out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return;
248 }
249
250 ptr = skb_put(skb, 1);
andrew hendry4d995032010-04-19 13:30:02 +0000251 *ptr = X25_IFACE_DISCONNECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 skb->protocol = x25_type_trans(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 netif_rx(skb);
255}
256
257/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 * Set AX.25 callsign
259 */
260static int lapbeth_set_mac_address(struct net_device *dev, void *addr)
261{
262 struct sockaddr *sa = addr;
263 memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
264 return 0;
265}
266
267
stephen hemmingerd97a0772011-09-16 11:04:29 +0000268static const struct lapb_register_struct lapbeth_callbacks = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 .connect_confirmation = lapbeth_connected,
270 .connect_indication = lapbeth_connected,
271 .disconnect_confirmation = lapbeth_disconnected,
272 .disconnect_indication = lapbeth_disconnected,
273 .data_indication = lapbeth_data_indication,
274 .data_transmit = lapbeth_data_transmit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275};
276
277/*
278 * open/close a device
279 */
280static int lapbeth_open(struct net_device *dev)
281{
282 int err;
283
284 if ((err = lapb_register(dev, &lapbeth_callbacks)) != LAPB_OK) {
Joe Perches23efcb72011-06-26 19:01:35 +0000285 pr_err("lapb_register error: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return -ENODEV;
287 }
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return 0;
290}
291
292static int lapbeth_close(struct net_device *dev)
293{
294 int err;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if ((err = lapb_unregister(dev)) != LAPB_OK)
Joe Perches23efcb72011-06-26 19:01:35 +0000297 pr_err("lapb_unregister error: %d\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 return 0;
300}
301
302/* ------------------------------------------------------------------------ */
303
Stephen Hemminger39549b12009-03-20 19:36:18 +0000304static const struct net_device_ops lapbeth_netdev_ops = {
305 .ndo_open = lapbeth_open,
306 .ndo_stop = lapbeth_close,
307 .ndo_start_xmit = lapbeth_xmit,
308 .ndo_set_mac_address = lapbeth_set_mac_address,
309};
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static void lapbeth_setup(struct net_device *dev)
312{
Stephen Hemminger39549b12009-03-20 19:36:18 +0000313 dev->netdev_ops = &lapbeth_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 dev->destructor = free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 dev->type = ARPHRD_X25;
Xie He8fb9b362020-08-05 18:50:40 -0700316 dev->hard_header_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 dev->mtu = 1000;
318 dev->addr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
321/*
322 * Setup a new device.
323 */
324static int lapbeth_new_device(struct net_device *dev)
325{
326 struct net_device *ndev;
327 struct lapbethdev *lapbeth;
328 int rc = -ENOMEM;
329
330 ASSERT_RTNL();
331
Tom Gundersenc835a672014-07-14 16:37:24 +0200332 ndev = alloc_netdev(sizeof(*lapbeth), "lapb%d", NET_NAME_UNKNOWN,
333 lapbeth_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (!ndev)
335 goto out;
336
Xie He4d565f42020-07-05 17:45:21 -0700337 /* When transmitting data:
338 * first this driver removes a pseudo header of 1 byte,
339 * then the lapb module prepends an LAPB header of at most 3 bytes,
340 * then this driver prepends a length field of 2 bytes,
341 * then the underlying Ethernet device prepends its own header.
342 */
Xie He8fb9b362020-08-05 18:50:40 -0700343 ndev->needed_headroom = -1 + 3 + 2 + dev->hard_header_len
344 + dev->needed_headroom;
Xie Hea60936c2020-08-21 14:26:59 -0700345 ndev->needed_tailroom = dev->needed_tailroom;
Xie He4d565f42020-07-05 17:45:21 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 lapbeth = netdev_priv(ndev);
348 lapbeth->axdev = ndev;
349
350 dev_hold(dev);
351 lapbeth->ethdev = dev;
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 rc = -EIO;
354 if (register_netdevice(ndev))
355 goto fail;
356
357 list_add_rcu(&lapbeth->node, &lapbeth_devices);
358 rc = 0;
359out:
360 return rc;
361fail:
362 dev_put(dev);
363 free_netdev(ndev);
364 kfree(lapbeth);
365 goto out;
366}
367
368/*
369 * Free a lapb network device.
370 */
371static void lapbeth_free_device(struct lapbethdev *lapbeth)
372{
373 dev_put(lapbeth->ethdev);
374 list_del_rcu(&lapbeth->node);
375 unregister_netdevice(lapbeth->axdev);
376}
377
378/*
379 * Handle device status changes.
380 *
381 * Called from notifier with RTNL held.
382 */
383static int lapbeth_device_event(struct notifier_block *this,
384 unsigned long event, void *ptr)
385{
386 struct lapbethdev *lapbeth;
Jiri Pirko351638e2013-05-28 01:30:21 +0000387 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900389 if (dev_net(dev) != &init_net)
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200390 return NOTIFY_DONE;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (!dev_is_ethdev(dev))
393 return NOTIFY_DONE;
394
395 switch (event) {
396 case NETDEV_UP:
397 /* New ethernet device -> new LAPB interface */
398 if (lapbeth_get_x25_dev(dev) == NULL)
399 lapbeth_new_device(dev);
400 break;
401 case NETDEV_DOWN:
402 /* ethernet device closed -> close LAPB interface */
403 lapbeth = lapbeth_get_x25_dev(dev);
404 if (lapbeth)
405 dev_close(lapbeth->axdev);
406 break;
407 case NETDEV_UNREGISTER:
408 /* ethernet device disappears -> remove LAPB interface */
409 lapbeth = lapbeth_get_x25_dev(dev);
410 if (lapbeth)
411 lapbeth_free_device(lapbeth);
412 break;
413 }
414
415 return NOTIFY_DONE;
416}
417
418/* ------------------------------------------------------------------------ */
419
Stephen Hemminger7546dd92009-03-09 08:18:29 +0000420static struct packet_type lapbeth_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -0800421 .type = cpu_to_be16(ETH_P_DEC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 .func = lapbeth_rcv,
423};
424
425static struct notifier_block lapbeth_dev_notifier = {
426 .notifier_call = lapbeth_device_event,
427};
428
Stephen Hemminger81b700b2009-02-26 10:19:23 +0000429static const char banner[] __initconst =
Hannes Eder5ee0d592009-02-14 11:48:07 +0000430 KERN_INFO "LAPB Ethernet driver version 0.02\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432static int __init lapbeth_init_driver(void)
433{
434 dev_add_pack(&lapbeth_packet_type);
435
436 register_netdevice_notifier(&lapbeth_dev_notifier);
437
438 printk(banner);
439
440 return 0;
441}
442module_init(lapbeth_init_driver);
443
444static void __exit lapbeth_cleanup_driver(void)
445{
446 struct lapbethdev *lapbeth;
447 struct list_head *entry, *tmp;
448
449 dev_remove_pack(&lapbeth_packet_type);
450 unregister_netdevice_notifier(&lapbeth_dev_notifier);
451
452 rtnl_lock();
453 list_for_each_safe(entry, tmp, &lapbeth_devices) {
454 lapbeth = list_entry(entry, struct lapbethdev, node);
455
David S. Millere544ff02008-05-03 21:10:58 -0700456 dev_put(lapbeth->ethdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 unregister_netdevice(lapbeth->axdev);
458 }
459 rtnl_unlock();
460}
461module_exit(lapbeth_cleanup_driver);
462
463MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
464MODULE_DESCRIPTION("The unofficial LAPB over Ethernet driver");
465MODULE_LICENSE("GPL");