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 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> /* For the statistics structure. */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Fabian Frederick | dc8e541 | 2014-10-17 22:00:22 +0200 | [diff] [blame] | 23 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/io.h> |
| 26 | |
| 27 | #include <linux/inet.h> |
| 28 | #include <linux/netdevice.h> |
| 29 | #include <linux/etherdevice.h> |
| 30 | #include <linux/if_arp.h> |
| 31 | #include <linux/skbuff.h> |
| 32 | |
| 33 | #include <net/ip.h> |
| 34 | #include <net/arp.h> |
| 35 | |
| 36 | #include <net/ax25.h> |
| 37 | #include <net/netrom.h> |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* |
| 40 | * Only allow IP over NET/ROM frames through if the netrom device is up. |
| 41 | */ |
| 42 | |
| 43 | int nr_rx_ip(struct sk_buff *skb, struct net_device *dev) |
| 44 | { |
Stephen Hemminger | b51414b | 2009-01-09 13:01:03 +0000 | [diff] [blame] | 45 | struct net_device_stats *stats = &dev->stats; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | if (!netif_running(dev)) { |
Ralf Baechle | 6ddcf62 | 2005-09-12 14:23:06 -0700 | [diff] [blame] | 48 | stats->rx_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | stats->rx_packets++; |
| 53 | stats->rx_bytes += skb->len; |
| 54 | |
| 55 | skb->protocol = htons(ETH_P_IP); |
| 56 | |
| 57 | /* Spoof incoming device */ |
| 58 | skb->dev = dev; |
David S. Miller | c6e6ca7 | 2007-12-20 00:25:54 -0800 | [diff] [blame] | 59 | skb->mac_header = skb->network_header; |
Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 60 | skb_reset_network_header(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | skb->pkt_type = PACKET_HOST; |
| 62 | |
Ralf Baechle | 98a82fe | 2005-08-24 11:35:51 -0700 | [diff] [blame] | 63 | netif_rx(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | return 1; |
| 66 | } |
| 67 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 68 | static int nr_header(struct sk_buff *skb, struct net_device *dev, |
| 69 | unsigned short type, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 70 | const void *daddr, const void *saddr, unsigned int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { |
| 72 | unsigned char *buff = skb_push(skb, NR_NETWORK_LEN + NR_TRANSPORT_LEN); |
| 73 | |
| 74 | memcpy(buff, (saddr != NULL) ? saddr : dev->dev_addr, dev->addr_len); |
| 75 | buff[6] &= ~AX25_CBIT; |
| 76 | buff[6] &= ~AX25_EBIT; |
| 77 | buff[6] |= AX25_SSSID_SPARE; |
| 78 | buff += AX25_ADDR_LEN; |
| 79 | |
| 80 | if (daddr != NULL) |
| 81 | memcpy(buff, daddr, dev->addr_len); |
| 82 | buff[6] &= ~AX25_CBIT; |
| 83 | buff[6] |= AX25_EBIT; |
| 84 | buff[6] |= AX25_SSSID_SPARE; |
| 85 | buff += AX25_ADDR_LEN; |
| 86 | |
| 87 | *buff++ = sysctl_netrom_network_ttl_initialiser; |
| 88 | |
| 89 | *buff++ = NR_PROTO_IP; |
| 90 | *buff++ = NR_PROTO_IP; |
| 91 | *buff++ = 0; |
| 92 | *buff++ = 0; |
| 93 | *buff++ = NR_PROTOEXT; |
| 94 | |
| 95 | if (daddr != NULL) |
| 96 | return 37; |
| 97 | |
| 98 | return -37; |
| 99 | } |
| 100 | |
Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 101 | static int __must_check nr_set_mac_address(struct net_device *dev, void *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | { |
| 103 | struct sockaddr *sa = addr; |
Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 104 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 106 | if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len)) |
| 107 | return 0; |
| 108 | |
| 109 | if (dev->flags & IFF_UP) { |
| 110 | err = ax25_listen_register((ax25_address *)sa->sa_data, NULL); |
| 111 | if (err) |
| 112 | return err; |
| 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | ax25_listen_release((ax25_address *)dev->dev_addr, NULL); |
Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 115 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | memcpy(dev->dev_addr, sa->sa_data, dev->addr_len); |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | static int nr_open(struct net_device *dev) |
| 123 | { |
Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 124 | int err; |
| 125 | |
| 126 | err = ax25_listen_register((ax25_address *)dev->dev_addr, NULL); |
| 127 | if (err) |
| 128 | return err; |
| 129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | netif_start_queue(dev); |
Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | static int nr_close(struct net_device *dev) |
| 136 | { |
| 137 | ax25_listen_release((ax25_address *)dev->dev_addr, NULL); |
| 138 | netif_stop_queue(dev); |
| 139 | return 0; |
| 140 | } |
| 141 | |
Stephen Hemminger | 36e4d64 | 2009-08-31 19:50:43 +0000 | [diff] [blame] | 142 | static netdev_tx_t nr_xmit(struct sk_buff *skb, struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
Stephen Hemminger | b51414b | 2009-01-09 13:01:03 +0000 | [diff] [blame] | 144 | struct net_device_stats *stats = &dev->stats; |
Ralf Baechle | b88a762 | 2005-09-12 14:28:03 -0700 | [diff] [blame] | 145 | unsigned int len = skb->len; |
Ralf Baechle | 3f2aadd | 2005-09-12 14:21:48 -0700 | [diff] [blame] | 146 | |
| 147 | if (!nr_route_frame(skb, NULL)) { |
| 148 | kfree_skb(skb); |
| 149 | stats->tx_errors++; |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 150 | return NETDEV_TX_OK; |
Ralf Baechle | 3f2aadd | 2005-09-12 14:21:48 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | stats->tx_packets++; |
| 154 | stats->tx_bytes += len; |
| 155 | |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 156 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 159 | static const struct header_ops nr_header_ops = { |
| 160 | .create = nr_header, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 161 | }; |
| 162 | |
Stephen Hemminger | 0f6c5c8 | 2009-01-09 13:01:04 +0000 | [diff] [blame] | 163 | static const struct net_device_ops nr_netdev_ops = { |
| 164 | .ndo_open = nr_open, |
| 165 | .ndo_stop = nr_close, |
| 166 | .ndo_start_xmit = nr_xmit, |
| 167 | .ndo_set_mac_address = nr_set_mac_address, |
| 168 | }; |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | void nr_setup(struct net_device *dev) |
| 171 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | dev->mtu = NR_MAX_PACKET_SIZE; |
Stephen Hemminger | 0f6c5c8 | 2009-01-09 13:01:04 +0000 | [diff] [blame] | 173 | dev->netdev_ops = &nr_netdev_ops; |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 174 | dev->header_ops = &nr_header_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | dev->hard_header_len = NR_NETWORK_LEN + NR_TRANSPORT_LEN; |
| 176 | dev->addr_len = AX25_ADDR_LEN; |
| 177 | dev->type = ARPHRD_NETROM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | /* New-style flags. */ |
Ralf Baechle | 7237729 | 2005-09-12 14:26:26 -0700 | [diff] [blame] | 180 | dev->flags = IFF_NOARP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |