| 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/errno.h> | 
|  | 10 | #include <linux/types.h> | 
|  | 11 | #include <linux/socket.h> | 
|  | 12 | #include <linux/in.h> | 
|  | 13 | #include <linux/kernel.h> | 
| Ralf Baechle | 70868ea | 2006-05-03 23:25:17 -0700 | [diff] [blame] | 14 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/timer.h> | 
|  | 16 | #include <linux/string.h> | 
|  | 17 | #include <linux/sockios.h> | 
|  | 18 | #include <linux/net.h> | 
|  | 19 | #include <net/ax25.h> | 
|  | 20 | #include <linux/inet.h> | 
|  | 21 | #include <linux/netdevice.h> | 
|  | 22 | #include <linux/if_arp.h> | 
|  | 23 | #include <linux/skbuff.h> | 
|  | 24 | #include <net/sock.h> | 
|  | 25 | #include <asm/uaccess.h> | 
|  | 26 | #include <asm/system.h> | 
|  | 27 | #include <linux/fcntl.h> | 
|  | 28 | #include <linux/termios.h>	/* For TIOCINQ/OUTQ */ | 
|  | 29 | #include <linux/mm.h> | 
|  | 30 | #include <linux/interrupt.h> | 
|  | 31 | #include <linux/notifier.h> | 
|  | 32 | #include <linux/proc_fs.h> | 
|  | 33 | #include <linux/stat.h> | 
|  | 34 | #include <linux/netfilter.h> | 
|  | 35 | #include <linux/sysctl.h> | 
|  | 36 | #include <net/ip.h> | 
|  | 37 | #include <net/arp.h> | 
|  | 38 |  | 
|  | 39 | /* | 
|  | 40 | *	IP over AX.25 encapsulation. | 
|  | 41 | */ | 
|  | 42 |  | 
|  | 43 | /* | 
|  | 44 | *	Shove an AX.25 UI header on an IP packet and handle ARP | 
|  | 45 | */ | 
|  | 46 |  | 
|  | 47 | #ifdef CONFIG_INET | 
|  | 48 |  | 
| Ralf Baechle | 6f74998 | 2005-09-12 14:21:01 -0700 | [diff] [blame] | 49 | int ax25_hard_header(struct sk_buff *skb, struct net_device *dev, unsigned short type, void *daddr, void *saddr, unsigned len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { | 
|  | 51 | unsigned char *buff; | 
|  | 52 |  | 
|  | 53 | /* they sometimes come back to us... */ | 
|  | 54 | if (type == ETH_P_AX25) | 
|  | 55 | return 0; | 
|  | 56 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 57 | /* header is an AX.25 UI frame from us to them */ | 
|  | 58 | buff = skb_push(skb, AX25_HEADER_LEN); | 
|  | 59 | *buff++ = 0x00;	/* KISS DATA */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 |  | 
|  | 61 | if (daddr != NULL) | 
|  | 62 | memcpy(buff, daddr, dev->addr_len);	/* Address specified */ | 
|  | 63 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 64 | buff[6] &= ~AX25_CBIT; | 
|  | 65 | buff[6] &= ~AX25_EBIT; | 
|  | 66 | buff[6] |= AX25_SSSID_SPARE; | 
|  | 67 | buff    += AX25_ADDR_LEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 69 | if (saddr != NULL) | 
|  | 70 | memcpy(buff, saddr, dev->addr_len); | 
|  | 71 | else | 
|  | 72 | memcpy(buff, dev->dev_addr, dev->addr_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 74 | buff[6] &= ~AX25_CBIT; | 
|  | 75 | buff[6] |= AX25_EBIT; | 
|  | 76 | buff[6] |= AX25_SSSID_SPARE; | 
|  | 77 | buff    += AX25_ADDR_LEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 79 | *buff++  = AX25_UI;	/* UI */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 81 | /* Append a suitable AX.25 PID */ | 
|  | 82 | switch (type) { | 
|  | 83 | case ETH_P_IP: | 
|  | 84 | *buff++ = AX25_P_IP; | 
|  | 85 | break; | 
|  | 86 | case ETH_P_ARP: | 
|  | 87 | *buff++ = AX25_P_ARP; | 
|  | 88 | break; | 
|  | 89 | default: | 
|  | 90 | printk(KERN_ERR "AX.25: ax25_hard_header - wrong protocol type 0x%2.2x\n", type); | 
|  | 91 | *buff++ = 0; | 
|  | 92 | break; | 
|  | 93 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 |  | 
|  | 95 | if (daddr != NULL) | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 96 | return AX25_HEADER_LEN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 |  | 
|  | 98 | return -AX25_HEADER_LEN;	/* Unfinished header */ | 
|  | 99 | } | 
|  | 100 |  | 
|  | 101 | int ax25_rebuild_header(struct sk_buff *skb) | 
|  | 102 | { | 
|  | 103 | struct sk_buff *ourskb; | 
|  | 104 | unsigned char *bp  = skb->data; | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 105 | ax25_route *route; | 
|  | 106 | struct net_device *dev = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | ax25_address *src, *dst; | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 108 | ax25_digi *digipeat = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | ax25_dev *ax25_dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | ax25_cb *ax25; | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 111 | char ip_mode = ' '; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 |  | 
|  | 113 | dst = (ax25_address *)(bp + 1); | 
|  | 114 | src = (ax25_address *)(bp + 8); | 
|  | 115 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 116 | if (arp_find(bp + 1, skb)) | 
|  | 117 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 |  | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 119 | route = ax25_get_route(dst, NULL); | 
|  | 120 | if (route) { | 
|  | 121 | digipeat = route->digipeat; | 
|  | 122 | dev = route->dev; | 
|  | 123 | ip_mode = route->ip_mode; | 
| Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 124 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 |  | 
|  | 126 | if (dev == NULL) | 
|  | 127 | dev = skb->dev; | 
|  | 128 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 129 | if ((ax25_dev = ax25_dev_ax25dev(dev)) == NULL) { | 
|  | 130 | goto put; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } | 
|  | 132 |  | 
|  | 133 | if (bp[16] == AX25_P_IP) { | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 134 | if (ip_mode == 'V' || (ip_mode == ' ' && ax25_dev->values[AX25_VALUES_IPDEFMODE])) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | /* | 
|  | 136 | *	We copy the buffer and release the original thereby | 
|  | 137 | *	keeping it straight | 
|  | 138 | * | 
|  | 139 | *	Note: we report 1 back so the caller will | 
|  | 140 | *	not feed the frame direct to the physical device | 
|  | 141 | *	We don't want that to happen. (It won't be upset | 
|  | 142 | *	as we have pulled the frame from the queue by | 
|  | 143 | *	freeing it). | 
|  | 144 | * | 
|  | 145 | *	NB: TCP modifies buffers that are still | 
|  | 146 | *	on a device queue, thus we use skb_copy() | 
|  | 147 | *      instead of using skb_clone() unless this | 
|  | 148 | *	gets fixed. | 
|  | 149 | */ | 
|  | 150 |  | 
|  | 151 | ax25_address src_c; | 
|  | 152 | ax25_address dst_c; | 
|  | 153 |  | 
|  | 154 | if ((ourskb = skb_copy(skb, GFP_ATOMIC)) == NULL) { | 
|  | 155 | kfree_skb(skb); | 
|  | 156 | goto put; | 
|  | 157 | } | 
|  | 158 |  | 
|  | 159 | if (skb->sk != NULL) | 
|  | 160 | skb_set_owner_w(ourskb, skb->sk); | 
|  | 161 |  | 
|  | 162 | kfree_skb(skb); | 
|  | 163 | /* dl9sau: bugfix | 
|  | 164 | * after kfree_skb(), dst and src which were pointer | 
|  | 165 | * to bp which is part of skb->data would not be valid | 
|  | 166 | * anymore hope that after skb_pull(ourskb, ..) our | 
|  | 167 | * dsc_c and src_c will not become invalid | 
|  | 168 | */ | 
|  | 169 | bp  = ourskb->data; | 
|  | 170 | dst_c = *(ax25_address *)(bp + 1); | 
|  | 171 | src_c = *(ax25_address *)(bp + 8); | 
|  | 172 |  | 
|  | 173 | skb_pull(ourskb, AX25_HEADER_LEN - 1);	/* Keep PID */ | 
| Arnaldo Carvalho de Melo | c1d2bbe | 2007-04-10 20:45:18 -0700 | [diff] [blame] | 174 | skb_reset_network_header(ourskb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 |  | 
|  | 176 | ax25=ax25_send_frame( | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 177 | ourskb, | 
|  | 178 | ax25_dev->values[AX25_VALUES_PACLEN], | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | &src_c, | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 180 | &dst_c, digipeat, dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | if (ax25) { | 
|  | 182 | ax25_cb_put(ax25); | 
|  | 183 | } | 
|  | 184 | goto put; | 
|  | 185 | } | 
|  | 186 | } | 
|  | 187 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 188 | bp[7]  &= ~AX25_CBIT; | 
|  | 189 | bp[7]  &= ~AX25_EBIT; | 
|  | 190 | bp[7]  |= AX25_SSSID_SPARE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 192 | bp[14] &= ~AX25_CBIT; | 
|  | 193 | bp[14] |= AX25_EBIT; | 
|  | 194 | bp[14] |= AX25_SSSID_SPARE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 |  | 
|  | 196 | skb_pull(skb, AX25_KISS_HEADER_LEN); | 
|  | 197 |  | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 198 | if (digipeat != NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL) { | 
|  | 200 | kfree_skb(skb); | 
|  | 201 | goto put; | 
|  | 202 | } | 
|  | 203 |  | 
|  | 204 | skb = ourskb; | 
|  | 205 | } | 
|  | 206 |  | 
| Arnaldo Carvalho de Melo | 29c4be5 | 2005-04-21 16:46:56 -0700 | [diff] [blame] | 207 | ax25_queue_xmit(skb, dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 |  | 
|  | 209 | put: | 
| Ralf Baechle DL5RB | 006f68b | 2006-07-03 19:30:18 -0700 | [diff] [blame] | 210 | if (route) | 
|  | 211 | ax25_put_route(route); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 |  | 
| YOSHIFUJI Hideaki | 528930b | 2007-02-09 23:24:31 +0900 | [diff] [blame] | 213 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } | 
|  | 215 |  | 
|  | 216 | #else	/* INET */ | 
|  | 217 |  | 
| Ralf Baechle | 6f74998 | 2005-09-12 14:21:01 -0700 | [diff] [blame] | 218 | int ax25_hard_header(struct sk_buff *skb, struct net_device *dev, unsigned short type, void *daddr, void *saddr, unsigned len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { | 
|  | 220 | return -AX25_HEADER_LEN; | 
|  | 221 | } | 
|  | 222 |  | 
|  | 223 | int ax25_rebuild_header(struct sk_buff *skb) | 
|  | 224 | { | 
|  | 225 | return 1; | 
|  | 226 | } | 
|  | 227 |  | 
|  | 228 | #endif | 
|  | 229 |  | 
| Ralf Baechle | 70868ea | 2006-05-03 23:25:17 -0700 | [diff] [blame] | 230 | EXPORT_SYMBOL(ax25_hard_header); | 
|  | 231 | EXPORT_SYMBOL(ax25_rebuild_header); |