ax25_ip.c 5.5 KB

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