ax25_subr.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk)
  8. * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
  9. * Copyright (C) Joerg Reuter DL1BKE (jreuter@yaina.de)
  10. * Copyright (C) Frederic Rible F1OAT (frible@teaser.fr)
  11. */
  12. #include <linux/errno.h>
  13. #include <linux/types.h>
  14. #include <linux/socket.h>
  15. #include <linux/in.h>
  16. #include <linux/kernel.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/skbuff.h>
  25. #include <net/sock.h>
  26. #include <net/tcp_states.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/system.h>
  29. #include <linux/fcntl.h>
  30. #include <linux/mm.h>
  31. #include <linux/interrupt.h>
  32. /*
  33. * This routine purges all the queues of frames.
  34. */
  35. void ax25_clear_queues(ax25_cb *ax25)
  36. {
  37. skb_queue_purge(&ax25->write_queue);
  38. skb_queue_purge(&ax25->ack_queue);
  39. skb_queue_purge(&ax25->reseq_queue);
  40. skb_queue_purge(&ax25->frag_queue);
  41. }
  42. /*
  43. * This routine purges the input queue of those frames that have been
  44. * acknowledged. This replaces the boxes labelled "V(a) <- N(r)" on the
  45. * SDL diagram.
  46. */
  47. void ax25_frames_acked(ax25_cb *ax25, unsigned short nr)
  48. {
  49. struct sk_buff *skb;
  50. /*
  51. * Remove all the ack-ed frames from the ack queue.
  52. */
  53. if (ax25->va != nr) {
  54. while (skb_peek(&ax25->ack_queue) != NULL && ax25->va != nr) {
  55. skb = skb_dequeue(&ax25->ack_queue);
  56. kfree_skb(skb);
  57. ax25->va = (ax25->va + 1) % ax25->modulus;
  58. }
  59. }
  60. }
  61. void ax25_requeue_frames(ax25_cb *ax25)
  62. {
  63. struct sk_buff *skb, *skb_prev = NULL;
  64. /*
  65. * Requeue all the un-ack-ed frames on the output queue to be picked
  66. * up by ax25_kick called from the timer. This arrangement handles the
  67. * possibility of an empty output queue.
  68. */
  69. while ((skb = skb_dequeue(&ax25->ack_queue)) != NULL) {
  70. if (skb_prev == NULL)
  71. skb_queue_head(&ax25->write_queue, skb);
  72. else
  73. skb_append(skb_prev, skb, &ax25->write_queue);
  74. skb_prev = skb;
  75. }
  76. }
  77. /*
  78. * Validate that the value of nr is between va and vs. Return true or
  79. * false for testing.
  80. */
  81. int ax25_validate_nr(ax25_cb *ax25, unsigned short nr)
  82. {
  83. unsigned short vc = ax25->va;
  84. while (vc != ax25->vs) {
  85. if (nr == vc) return 1;
  86. vc = (vc + 1) % ax25->modulus;
  87. }
  88. if (nr == ax25->vs) return 1;
  89. return 0;
  90. }
  91. /*
  92. * This routine is the centralised routine for parsing the control
  93. * information for the different frame formats.
  94. */
  95. int ax25_decode(ax25_cb *ax25, struct sk_buff *skb, int *ns, int *nr, int *pf)
  96. {
  97. unsigned char *frame;
  98. int frametype = AX25_ILLEGAL;
  99. frame = skb->data;
  100. *ns = *nr = *pf = 0;
  101. if (ax25->modulus == AX25_MODULUS) {
  102. if ((frame[0] & AX25_S) == 0) {
  103. frametype = AX25_I; /* I frame - carries NR/NS/PF */
  104. *ns = (frame[0] >> 1) & 0x07;
  105. *nr = (frame[0] >> 5) & 0x07;
  106. *pf = frame[0] & AX25_PF;
  107. } else if ((frame[0] & AX25_U) == 1) { /* S frame - take out PF/NR */
  108. frametype = frame[0] & 0x0F;
  109. *nr = (frame[0] >> 5) & 0x07;
  110. *pf = frame[0] & AX25_PF;
  111. } else if ((frame[0] & AX25_U) == 3) { /* U frame - take out PF */
  112. frametype = frame[0] & ~AX25_PF;
  113. *pf = frame[0] & AX25_PF;
  114. }
  115. skb_pull(skb, 1);
  116. } else {
  117. if ((frame[0] & AX25_S) == 0) {
  118. frametype = AX25_I; /* I frame - carries NR/NS/PF */
  119. *ns = (frame[0] >> 1) & 0x7F;
  120. *nr = (frame[1] >> 1) & 0x7F;
  121. *pf = frame[1] & AX25_EPF;
  122. skb_pull(skb, 2);
  123. } else if ((frame[0] & AX25_U) == 1) { /* S frame - take out PF/NR */
  124. frametype = frame[0] & 0x0F;
  125. *nr = (frame[1] >> 1) & 0x7F;
  126. *pf = frame[1] & AX25_EPF;
  127. skb_pull(skb, 2);
  128. } else if ((frame[0] & AX25_U) == 3) { /* U frame - take out PF */
  129. frametype = frame[0] & ~AX25_PF;
  130. *pf = frame[0] & AX25_PF;
  131. skb_pull(skb, 1);
  132. }
  133. }
  134. return frametype;
  135. }
  136. /*
  137. * This routine is called when the HDLC layer internally generates a
  138. * command or response for the remote machine ( eg. RR, UA etc. ).
  139. * Only supervisory or unnumbered frames are processed.
  140. */
  141. void ax25_send_control(ax25_cb *ax25, int frametype, int poll_bit, int type)
  142. {
  143. struct sk_buff *skb;
  144. unsigned char *dptr;
  145. if ((skb = alloc_skb(ax25->ax25_dev->dev->hard_header_len + 2, GFP_ATOMIC)) == NULL)
  146. return;
  147. skb_reserve(skb, ax25->ax25_dev->dev->hard_header_len);
  148. skb_reset_network_header(skb);
  149. /* Assume a response - address structure for DTE */
  150. if (ax25->modulus == AX25_MODULUS) {
  151. dptr = skb_put(skb, 1);
  152. *dptr = frametype;
  153. *dptr |= (poll_bit) ? AX25_PF : 0;
  154. if ((frametype & AX25_U) == AX25_S) /* S frames carry NR */
  155. *dptr |= (ax25->vr << 5);
  156. } else {
  157. if ((frametype & AX25_U) == AX25_U) {
  158. dptr = skb_put(skb, 1);
  159. *dptr = frametype;
  160. *dptr |= (poll_bit) ? AX25_PF : 0;
  161. } else {
  162. dptr = skb_put(skb, 2);
  163. dptr[0] = frametype;
  164. dptr[1] = (ax25->vr << 1);
  165. dptr[1] |= (poll_bit) ? AX25_EPF : 0;
  166. }
  167. }
  168. ax25_transmit_buffer(ax25, skb, type);
  169. }
  170. /*
  171. * Send a 'DM' to an unknown connection attempt, or an invalid caller.
  172. *
  173. * Note: src here is the sender, thus it's the target of the DM
  174. */
  175. void ax25_return_dm(struct net_device *dev, ax25_address *src, ax25_address *dest, ax25_digi *digi)
  176. {
  177. struct sk_buff *skb;
  178. char *dptr;
  179. ax25_digi retdigi;
  180. if (dev == NULL)
  181. return;
  182. if ((skb = alloc_skb(dev->hard_header_len + 1, GFP_ATOMIC)) == NULL)
  183. return; /* Next SABM will get DM'd */
  184. skb_reserve(skb, dev->hard_header_len);
  185. skb_reset_network_header(skb);
  186. ax25_digi_invert(digi, &retdigi);
  187. dptr = skb_put(skb, 1);
  188. *dptr = AX25_DM | AX25_PF;
  189. /*
  190. * Do the address ourselves
  191. */
  192. dptr = skb_push(skb, ax25_addr_size(digi));
  193. dptr += ax25_addr_build(dptr, dest, src, &retdigi, AX25_RESPONSE, AX25_MODULUS);
  194. ax25_queue_xmit(skb, dev);
  195. }
  196. /*
  197. * Exponential backoff for AX.25
  198. */
  199. void ax25_calculate_t1(ax25_cb *ax25)
  200. {
  201. int n, t = 2;
  202. switch (ax25->backoff) {
  203. case 0:
  204. break;
  205. case 1:
  206. t += 2 * ax25->n2count;
  207. break;
  208. case 2:
  209. for (n = 0; n < ax25->n2count; n++)
  210. t *= 2;
  211. if (t > 8) t = 8;
  212. break;
  213. }
  214. ax25->t1 = t * ax25->rtt;
  215. }
  216. /*
  217. * Calculate the Round Trip Time
  218. */
  219. void ax25_calculate_rtt(ax25_cb *ax25)
  220. {
  221. if (ax25->backoff == 0)
  222. return;
  223. if (ax25_t1timer_running(ax25) && ax25->n2count == 0)
  224. ax25->rtt = (9 * ax25->rtt + ax25->t1 - ax25_display_timer(&ax25->t1timer)) / 10;
  225. if (ax25->rtt < AX25_T1CLAMPLO)
  226. ax25->rtt = AX25_T1CLAMPLO;
  227. if (ax25->rtt > AX25_T1CLAMPHI)
  228. ax25->rtt = AX25_T1CLAMPHI;
  229. }
  230. void ax25_disconnect(ax25_cb *ax25, int reason)
  231. {
  232. ax25_clear_queues(ax25);
  233. ax25_stop_t1timer(ax25);
  234. ax25_stop_t2timer(ax25);
  235. ax25_stop_t3timer(ax25);
  236. ax25_stop_idletimer(ax25);
  237. ax25->state = AX25_STATE_0;
  238. ax25_link_failed(ax25, reason);
  239. if (ax25->sk != NULL) {
  240. bh_lock_sock(ax25->sk);
  241. ax25->sk->sk_state = TCP_CLOSE;
  242. ax25->sk->sk_err = reason;
  243. ax25->sk->sk_shutdown |= SEND_SHUTDOWN;
  244. if (!sock_flag(ax25->sk, SOCK_DEAD)) {
  245. ax25->sk->sk_state_change(ax25->sk);
  246. sock_set_flag(ax25->sk, SOCK_DEAD);
  247. }
  248. bh_unlock_sock(ax25->sk);
  249. }
  250. }