| 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. */ | 
|  | 22 |  | 
|  | 23 | #include <asm/system.h> | 
|  | 24 | #include <asm/uaccess.h> | 
|  | 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 | { | 
|  | 45 | struct net_device_stats *stats = netdev_priv(dev); | 
|  | 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; | 
| Arnaldo Carvalho de Melo | 459a98e | 2007-03-19 15:30:44 -0700 | [diff] [blame] | 59 | skb_reset_mac_header(skb); | 
| 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 |  | 
| Ralf Baechle | 98a82fe | 2005-08-24 11:35:51 -0700 | [diff] [blame] | 68 | #ifdef CONFIG_INET | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 |  | 
|  | 70 | static int nr_rebuild_header(struct sk_buff *skb) | 
|  | 71 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | unsigned char *bp = skb->data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
| Ralf Baechle | 3f2aadd | 2005-09-12 14:21:48 -0700 | [diff] [blame] | 74 | if (arp_find(bp + 7, skb)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
|  | 77 | bp[6] &= ~AX25_CBIT; | 
|  | 78 | bp[6] &= ~AX25_EBIT; | 
|  | 79 | bp[6] |= AX25_SSSID_SPARE; | 
|  | 80 | bp    += AX25_ADDR_LEN; | 
|  | 81 |  | 
|  | 82 | bp[6] &= ~AX25_CBIT; | 
|  | 83 | bp[6] |= AX25_EBIT; | 
|  | 84 | bp[6] |= AX25_SSSID_SPARE; | 
|  | 85 |  | 
| Ralf Baechle | 3f2aadd | 2005-09-12 14:21:48 -0700 | [diff] [blame] | 86 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } | 
|  | 88 |  | 
|  | 89 | #else | 
|  | 90 |  | 
|  | 91 | static int nr_rebuild_header(struct sk_buff *skb) | 
|  | 92 | { | 
|  | 93 | return 1; | 
|  | 94 | } | 
|  | 95 |  | 
|  | 96 | #endif | 
|  | 97 |  | 
|  | 98 | static int nr_header(struct sk_buff *skb, struct net_device *dev, unsigned short type, | 
|  | 99 | void *daddr, void *saddr, unsigned len) | 
|  | 100 | { | 
|  | 101 | unsigned char *buff = skb_push(skb, NR_NETWORK_LEN + NR_TRANSPORT_LEN); | 
|  | 102 |  | 
|  | 103 | memcpy(buff, (saddr != NULL) ? saddr : dev->dev_addr, dev->addr_len); | 
|  | 104 | buff[6] &= ~AX25_CBIT; | 
|  | 105 | buff[6] &= ~AX25_EBIT; | 
|  | 106 | buff[6] |= AX25_SSSID_SPARE; | 
|  | 107 | buff    += AX25_ADDR_LEN; | 
|  | 108 |  | 
|  | 109 | if (daddr != NULL) | 
|  | 110 | memcpy(buff, daddr, dev->addr_len); | 
|  | 111 | buff[6] &= ~AX25_CBIT; | 
|  | 112 | buff[6] |= AX25_EBIT; | 
|  | 113 | buff[6] |= AX25_SSSID_SPARE; | 
|  | 114 | buff    += AX25_ADDR_LEN; | 
|  | 115 |  | 
|  | 116 | *buff++ = sysctl_netrom_network_ttl_initialiser; | 
|  | 117 |  | 
|  | 118 | *buff++ = NR_PROTO_IP; | 
|  | 119 | *buff++ = NR_PROTO_IP; | 
|  | 120 | *buff++ = 0; | 
|  | 121 | *buff++ = 0; | 
|  | 122 | *buff++ = NR_PROTOEXT; | 
|  | 123 |  | 
|  | 124 | if (daddr != NULL) | 
|  | 125 | return 37; | 
|  | 126 |  | 
|  | 127 | return -37; | 
|  | 128 | } | 
|  | 129 |  | 
| Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 130 | 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] | 131 | { | 
|  | 132 | struct sockaddr *sa = addr; | 
| Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 133 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 |  | 
| Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 135 | if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len)) | 
|  | 136 | return 0; | 
|  | 137 |  | 
|  | 138 | if (dev->flags & IFF_UP) { | 
|  | 139 | err = ax25_listen_register((ax25_address *)sa->sa_data, NULL); | 
|  | 140 | if (err) | 
|  | 141 | return err; | 
|  | 142 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | ax25_listen_release((ax25_address *)dev->dev_addr, NULL); | 
| Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 144 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 |  | 
|  | 146 | memcpy(dev->dev_addr, sa->sa_data, dev->addr_len); | 
|  | 147 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | return 0; | 
|  | 149 | } | 
|  | 150 |  | 
|  | 151 | static int nr_open(struct net_device *dev) | 
|  | 152 | { | 
| Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 153 | int err; | 
|  | 154 |  | 
|  | 155 | err = ax25_listen_register((ax25_address *)dev->dev_addr, NULL); | 
|  | 156 | if (err) | 
|  | 157 | return err; | 
|  | 158 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | netif_start_queue(dev); | 
| Ralf Baechle | 81dcd16 | 2006-12-14 15:50:34 -0800 | [diff] [blame] | 160 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | return 0; | 
|  | 162 | } | 
|  | 163 |  | 
|  | 164 | static int nr_close(struct net_device *dev) | 
|  | 165 | { | 
|  | 166 | ax25_listen_release((ax25_address *)dev->dev_addr, NULL); | 
|  | 167 | netif_stop_queue(dev); | 
|  | 168 | return 0; | 
|  | 169 | } | 
|  | 170 |  | 
|  | 171 | static int nr_xmit(struct sk_buff *skb, struct net_device *dev) | 
|  | 172 | { | 
| Ralf Baechle | b88a762 | 2005-09-12 14:28:03 -0700 | [diff] [blame] | 173 | struct nr_private *nr = netdev_priv(dev); | 
|  | 174 | struct net_device_stats *stats = &nr->stats; | 
|  | 175 | unsigned int len = skb->len; | 
| Ralf Baechle | 3f2aadd | 2005-09-12 14:21:48 -0700 | [diff] [blame] | 176 |  | 
|  | 177 | if (!nr_route_frame(skb, NULL)) { | 
|  | 178 | kfree_skb(skb); | 
|  | 179 | stats->tx_errors++; | 
|  | 180 | return 0; | 
|  | 181 | } | 
|  | 182 |  | 
|  | 183 | stats->tx_packets++; | 
|  | 184 | stats->tx_bytes += len; | 
|  | 185 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | return 0; | 
|  | 187 | } | 
|  | 188 |  | 
|  | 189 | static struct net_device_stats *nr_get_stats(struct net_device *dev) | 
|  | 190 | { | 
| Ralf Baechle | b88a762 | 2005-09-12 14:28:03 -0700 | [diff] [blame] | 191 | struct nr_private *nr = netdev_priv(dev); | 
|  | 192 |  | 
|  | 193 | return &nr->stats; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } | 
|  | 195 |  | 
|  | 196 | void nr_setup(struct net_device *dev) | 
|  | 197 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | dev->mtu		= NR_MAX_PACKET_SIZE; | 
|  | 199 | dev->hard_start_xmit	= nr_xmit; | 
|  | 200 | dev->open		= nr_open; | 
|  | 201 | dev->stop		= nr_close; | 
|  | 202 |  | 
|  | 203 | dev->hard_header	= nr_header; | 
|  | 204 | dev->hard_header_len	= NR_NETWORK_LEN + NR_TRANSPORT_LEN; | 
|  | 205 | dev->addr_len		= AX25_ADDR_LEN; | 
|  | 206 | dev->type		= ARPHRD_NETROM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | dev->rebuild_header	= nr_rebuild_header; | 
|  | 208 | dev->set_mac_address    = nr_set_mac_address; | 
|  | 209 |  | 
|  | 210 | /* New-style flags. */ | 
| Ralf Baechle | 7237729 | 2005-09-12 14:26:26 -0700 | [diff] [blame] | 211 | dev->flags		= IFF_NOARP; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 |  | 
|  | 213 | dev->get_stats 		= nr_get_stats; | 
|  | 214 | } |