Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License as published by |
| 4 | * the Free Software Foundation; either version 2 of the License, or |
| 5 | * (at your option) any later version. |
| 6 | * |
| 7 | * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk) |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/module.h> |
| 10 | #include <linux/proc_fs.h> |
| 11 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/interrupt.h> |
| 13 | #include <linux/fs.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/sysctl.h> |
| 16 | #include <linux/string.h> |
| 17 | #include <linux/socket.h> |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/fcntl.h> |
| 20 | #include <linux/in.h> |
| 21 | #include <linux/if_ether.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <asm/io.h> |
| 25 | |
| 26 | #include <linux/inet.h> |
| 27 | #include <linux/netdevice.h> |
| 28 | #include <linux/etherdevice.h> |
| 29 | #include <linux/if_arp.h> |
| 30 | #include <linux/skbuff.h> |
| 31 | |
| 32 | #include <net/ip.h> |
| 33 | #include <net/arp.h> |
| 34 | |
| 35 | #include <net/ax25.h> |
| 36 | #include <net/rose.h> |
| 37 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 38 | static int rose_header(struct sk_buff *skb, struct net_device *dev, |
| 39 | unsigned short type, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 40 | const void *daddr, const void *saddr, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
| 42 | unsigned char *buff = skb_push(skb, ROSE_MIN_LEN + 2); |
| 43 | |
Eric W. Biederman | b753af3 | 2015-03-02 00:01:30 -0600 | [diff] [blame] | 44 | if (daddr) |
| 45 | memcpy(buff + 7, daddr, dev->addr_len); |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | *buff++ = ROSE_GFI | ROSE_Q_BIT; |
| 48 | *buff++ = 0x00; |
| 49 | *buff++ = ROSE_DATA; |
| 50 | *buff++ = 0x7F; |
| 51 | *buff++ = AX25_P_IP; |
| 52 | |
| 53 | if (daddr != NULL) |
| 54 | return 37; |
| 55 | |
| 56 | return -37; |
| 57 | } |
| 58 | |
| 59 | static int rose_rebuild_header(struct sk_buff *skb) |
| 60 | { |
Pavel Emelyanov | 78f150b | 2007-12-05 02:18:15 -0800 | [diff] [blame] | 61 | #ifdef CONFIG_INET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | unsigned char *bp = (unsigned char *)skb->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | if (arp_find(bp + 7, skb)) { |
| 65 | return 1; |
| 66 | } |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #endif |
Eric W. Biederman | 03ec2ac | 2015-03-02 00:02:19 -0600 | [diff] [blame^] | 69 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static int rose_set_mac_address(struct net_device *dev, void *addr) |
| 73 | { |
| 74 | struct sockaddr *sa = addr; |
Ralf Baechle | a159aaa | 2006-12-14 15:51:44 -0800 | [diff] [blame] | 75 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
danborkmann@iogearbox.net | 81213b5 | 2012-03-27 22:47:43 +0000 | [diff] [blame] | 77 | if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len)) |
Ralf Baechle | a159aaa | 2006-12-14 15:51:44 -0800 | [diff] [blame] | 78 | return 0; |
| 79 | |
| 80 | if (dev->flags & IFF_UP) { |
danborkmann@iogearbox.net | 81213b5 | 2012-03-27 22:47:43 +0000 | [diff] [blame] | 81 | err = rose_add_loopback_node((rose_address *)sa->sa_data); |
Ralf Baechle | a159aaa | 2006-12-14 15:51:44 -0800 | [diff] [blame] | 82 | if (err) |
| 83 | return err; |
| 84 | |
| 85 | rose_del_loopback_node((rose_address *)dev->dev_addr); |
| 86 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | memcpy(dev->dev_addr, sa->sa_data, dev->addr_len); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | static int rose_open(struct net_device *dev) |
| 94 | { |
Ralf Baechle | a159aaa | 2006-12-14 15:51:44 -0800 | [diff] [blame] | 95 | int err; |
| 96 | |
| 97 | err = rose_add_loopback_node((rose_address *)dev->dev_addr); |
| 98 | if (err) |
| 99 | return err; |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | netif_start_queue(dev); |
Ralf Baechle | a159aaa | 2006-12-14 15:51:44 -0800 | [diff] [blame] | 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | return 0; |
| 104 | } |
| 105 | |
| 106 | static int rose_close(struct net_device *dev) |
| 107 | { |
| 108 | netif_stop_queue(dev); |
| 109 | rose_del_loopback_node((rose_address *)dev->dev_addr); |
| 110 | return 0; |
| 111 | } |
| 112 | |
Stephen Hemminger | 36e4d64 | 2009-08-31 19:50:43 +0000 | [diff] [blame] | 113 | static netdev_tx_t rose_xmit(struct sk_buff *skb, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | { |
Stephen Hemminger | d289d12 | 2009-01-09 13:01:05 +0000 | [diff] [blame] | 115 | struct net_device_stats *stats = &dev->stats; |
Eric W. Biederman | 03ec2ac | 2015-03-02 00:02:19 -0600 | [diff] [blame^] | 116 | unsigned int len = skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | if (!netif_running(dev)) { |
| 119 | printk(KERN_ERR "ROSE: rose_xmit - called when iface is down\n"); |
Patrick McHardy | 5b54814 | 2009-06-12 06:22:29 +0000 | [diff] [blame] | 120 | return NETDEV_TX_BUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
Eric W. Biederman | 03ec2ac | 2015-03-02 00:02:19 -0600 | [diff] [blame^] | 122 | |
| 123 | if (!rose_route_frame(skb, NULL)) { |
| 124 | dev_kfree_skb(skb); |
| 125 | stats->tx_errors++; |
| 126 | return NETDEV_TX_OK; |
| 127 | } |
| 128 | |
| 129 | stats->tx_packets++; |
| 130 | stats->tx_bytes += len; |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 131 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 134 | static const struct header_ops rose_header_ops = { |
| 135 | .create = rose_header, |
Weilong Chen | db34de9 | 2013-12-19 11:55:17 +0800 | [diff] [blame] | 136 | .rebuild = rose_rebuild_header, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 137 | }; |
| 138 | |
Stephen Hemminger | 3170c65 | 2009-01-09 13:01:06 +0000 | [diff] [blame] | 139 | static const struct net_device_ops rose_netdev_ops = { |
| 140 | .ndo_open = rose_open, |
| 141 | .ndo_stop = rose_close, |
| 142 | .ndo_start_xmit = rose_xmit, |
| 143 | .ndo_set_mac_address = rose_set_mac_address, |
| 144 | }; |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | void rose_setup(struct net_device *dev) |
| 147 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | dev->mtu = ROSE_MAX_PACKET_SIZE - 2; |
Stephen Hemminger | 3170c65 | 2009-01-09 13:01:06 +0000 | [diff] [blame] | 149 | dev->netdev_ops = &rose_netdev_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 151 | dev->header_ops = &rose_header_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | dev->hard_header_len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN; |
| 153 | dev->addr_len = ROSE_ADDR_LEN; |
| 154 | dev->type = ARPHRD_ROSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | /* New-style flags. */ |
Ralf Baechle | d2ce4bc | 2005-09-12 14:26:52 -0700 | [diff] [blame] | 157 | dev->flags = IFF_NOARP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |