ax25_ip.c 5.1 KB

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