ax25_ds_in.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * AX.25 release 037
  3.  *
  4.  * This code REQUIRES 2.1.15 or higher/ NET3.038
  5.  *
  6.  * This module:
  7.  * This module is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version
  10.  * 2 of the License, or (at your option) any later version.
  11.  *
  12.  * Most of this code is based on the SDL diagrams published in the 7th
  13.  * ARRL Computer Networking Conference papers. The diagrams have mistakes
  14.  * in them, but are mostly correct. Before you modify the code could you
  15.  * read the SDL diagrams as the code is not obvious and probably very
  16.  * easy to break;
  17.  *
  18.  * History
  19.  * AX.25 036 Jonathan(G4KLX) Cloned from ax25_in.c
  20.  * Joerg(DL1BKE) Fixed it.
  21.  * AX.25 037 Jonathan(G4KLX) New timer architecture.
  22.  * Joerg(DL1BKE) ax25->n2count never got reset
  23.  */
  24. #include <linux/errno.h>
  25. #include <linux/types.h>
  26. #include <linux/socket.h>
  27. #include <linux/in.h>
  28. #include <linux/kernel.h>
  29. #include <linux/sched.h>
  30. #include <linux/timer.h>
  31. #include <linux/string.h>
  32. #include <linux/sockios.h>
  33. #include <linux/net.h>
  34. #include <net/ax25.h>
  35. #include <linux/inet.h>
  36. #include <linux/netdevice.h>
  37. #include <linux/skbuff.h>
  38. #include <net/sock.h>
  39. #include <net/ip.h> /* For ip_rcv */
  40. #include <asm/uaccess.h>
  41. #include <asm/system.h>
  42. #include <linux/fcntl.h>
  43. #include <linux/mm.h>
  44. #include <linux/interrupt.h>
  45. /*
  46.  * State machine for state 1, Awaiting Connection State.
  47.  * The handling of the timer(s) is in file ax25_ds_timer.c.
  48.  * Handling of state 0 and connection release is in ax25.c.
  49.  */
  50. static int ax25_ds_state1_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int type)
  51. {
  52. switch (frametype) {
  53. case AX25_SABM:
  54. ax25->modulus = AX25_MODULUS;
  55. ax25->window  = ax25->ax25_dev->values[AX25_VALUES_WINDOW];
  56. ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
  57. break;
  58. case AX25_SABME:
  59. ax25->modulus = AX25_EMODULUS;
  60. ax25->window  =  ax25->ax25_dev->values[AX25_VALUES_EWINDOW];
  61. ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
  62. break;
  63. case AX25_DISC:
  64. ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE);
  65. break;
  66. case AX25_UA:
  67. ax25_calculate_rtt(ax25);
  68. ax25_stop_t1timer(ax25);
  69. ax25_start_t3timer(ax25);
  70. ax25_start_idletimer(ax25);
  71. ax25->vs      = 0;
  72. ax25->va      = 0;
  73. ax25->vr      = 0;
  74. ax25->state   = AX25_STATE_3;
  75. ax25->n2count = 0;
  76. if (ax25->sk != NULL) {
  77. ax25->sk->state = TCP_ESTABLISHED;
  78. /* For WAIT_SABM connections we will produce an accept ready socket here */
  79. if (!ax25->sk->dead)
  80. ax25->sk->state_change(ax25->sk);
  81. }
  82. ax25_dama_on(ax25);
  83. /* according to DK4EG磗 spec we are required to
  84.  * send a RR RESPONSE FINAL NR=0. 
  85.  */
  86. ax25_std_enquiry_response(ax25);
  87. break;
  88. case AX25_DM:
  89. if (pf) ax25_disconnect(ax25, ECONNREFUSED);
  90. break;
  91. default:
  92. if (pf) ax25_send_control(ax25, AX25_SABM, AX25_POLLON, AX25_COMMAND);
  93. break;
  94. }
  95. return 0;
  96. }
  97. /*
  98.  * State machine for state 2, Awaiting Release State.
  99.  * The handling of the timer(s) is in file ax25_ds_timer.c
  100.  * Handling of state 0 and connection release is in ax25.c.
  101.  */
  102. static int ax25_ds_state2_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int type)
  103. {
  104. switch (frametype) {
  105. case AX25_SABM:
  106. case AX25_SABME:
  107. ax25_send_control(ax25, AX25_DISC, AX25_POLLON, AX25_COMMAND);
  108. ax25_dama_off(ax25);
  109. break;
  110. case AX25_DISC:
  111. ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
  112. ax25_dama_off(ax25);
  113. ax25_disconnect(ax25, 0);
  114. break;
  115. case AX25_DM:
  116. case AX25_UA:
  117. if (pf) {
  118. ax25_dama_off(ax25);
  119. ax25_disconnect(ax25, 0);
  120. }
  121. break;
  122. case AX25_I:
  123. case AX25_REJ:
  124. case AX25_RNR:
  125. case AX25_RR:
  126. if (pf) {
  127. ax25_send_control(ax25, AX25_DISC, AX25_POLLON, AX25_COMMAND);
  128. ax25_dama_off(ax25);
  129. }
  130. break;
  131. default:
  132. break;
  133. }
  134. return 0;
  135. }
  136. /*
  137.  * State machine for state 3, Connected State.
  138.  * The handling of the timer(s) is in file ax25_timer.c
  139.  * Handling of state 0 and connection release is in ax25.c.
  140.  */
  141. static int ax25_ds_state3_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type)
  142. {
  143. int queued = 0;
  144. switch (frametype) {
  145. case AX25_SABM:
  146. case AX25_SABME:
  147. if (frametype == AX25_SABM) {
  148. ax25->modulus   = AX25_MODULUS;
  149. ax25->window    = ax25->ax25_dev->values[AX25_VALUES_WINDOW];
  150. } else {
  151. ax25->modulus   = AX25_EMODULUS;
  152. ax25->window    = ax25->ax25_dev->values[AX25_VALUES_EWINDOW];
  153. }
  154. ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
  155. ax25_stop_t1timer(ax25);
  156. ax25_start_t3timer(ax25);
  157. ax25_start_idletimer(ax25);
  158. ax25->condition = 0x00;
  159. ax25->vs        = 0;
  160. ax25->va        = 0;
  161. ax25->vr        = 0;
  162. ax25_requeue_frames(ax25);
  163. ax25_dama_on(ax25);
  164. break;
  165. case AX25_DISC:
  166. ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE);
  167. ax25_dama_off(ax25);
  168. ax25_disconnect(ax25, 0);
  169. break;
  170. case AX25_DM:
  171. ax25_dama_off(ax25);
  172. ax25_disconnect(ax25, ECONNRESET);
  173. break;
  174. case AX25_RR:
  175. case AX25_RNR:
  176. if (frametype == AX25_RR)
  177. ax25->condition &= ~AX25_COND_PEER_RX_BUSY;
  178. else
  179. ax25->condition |= AX25_COND_PEER_RX_BUSY;
  180. if (ax25_validate_nr(ax25, nr)) {
  181. if (ax25_check_iframes_acked(ax25, nr))
  182. ax25->n2count=0;
  183. if (type == AX25_COMMAND && pf)
  184. ax25_ds_enquiry_response(ax25);
  185. } else {
  186. ax25_ds_nr_error_recovery(ax25);
  187. ax25->state = AX25_STATE_1;
  188. }
  189. break;
  190. case AX25_REJ:
  191. ax25->condition &= ~AX25_COND_PEER_RX_BUSY;
  192. if (ax25_validate_nr(ax25, nr)) {
  193. if (ax25->va != nr)
  194. ax25->n2count=0;
  195. ax25_frames_acked(ax25, nr);
  196. ax25_calculate_rtt(ax25);
  197. ax25_stop_t1timer(ax25);
  198. ax25_start_t3timer(ax25);
  199. ax25_requeue_frames(ax25);
  200. if (type == AX25_COMMAND && pf)
  201. ax25_ds_enquiry_response(ax25);
  202. } else {
  203. ax25_ds_nr_error_recovery(ax25);
  204. ax25->state = AX25_STATE_1;
  205. }
  206. break;
  207. case AX25_I:
  208. if (!ax25_validate_nr(ax25, nr)) {
  209. ax25_ds_nr_error_recovery(ax25);
  210. ax25->state = AX25_STATE_1;
  211. break;
  212. }
  213. if (ax25->condition & AX25_COND_PEER_RX_BUSY) {
  214. ax25_frames_acked(ax25, nr);
  215. ax25->n2count = 0;
  216. } else {
  217. if (ax25_check_iframes_acked(ax25, nr))
  218. ax25->n2count = 0;
  219. }
  220. if (ax25->condition & AX25_COND_OWN_RX_BUSY) {
  221. if (pf) ax25_ds_enquiry_response(ax25);
  222. break;
  223. }
  224. if (ns == ax25->vr) {
  225. ax25->vr = (ax25->vr + 1) % ax25->modulus;
  226. queued = ax25_rx_iframe(ax25, skb);
  227. if (ax25->condition & AX25_COND_OWN_RX_BUSY)
  228. ax25->vr = ns; /* ax25->vr - 1 */
  229. ax25->condition &= ~AX25_COND_REJECT;
  230. if (pf) {
  231. ax25_ds_enquiry_response(ax25);
  232. } else {
  233. if (!(ax25->condition & AX25_COND_ACK_PENDING)) {
  234. ax25->condition |= AX25_COND_ACK_PENDING;
  235. ax25_start_t2timer(ax25);
  236. }
  237. }
  238. } else {
  239. if (ax25->condition & AX25_COND_REJECT) {
  240. if (pf) ax25_ds_enquiry_response(ax25);
  241. } else {
  242. ax25->condition |= AX25_COND_REJECT;
  243. ax25_ds_enquiry_response(ax25);
  244. ax25->condition &= ~AX25_COND_ACK_PENDING;
  245. }
  246. }
  247. break;
  248. case AX25_FRMR:
  249. case AX25_ILLEGAL:
  250. ax25_ds_establish_data_link(ax25);
  251. ax25->state = AX25_STATE_1;
  252. break;
  253. default:
  254. break;
  255. }
  256. return queued;
  257. }
  258. /*
  259.  * Higher level upcall for a LAPB frame
  260.  */
  261. int ax25_ds_frame_in(ax25_cb *ax25, struct sk_buff *skb, int type)
  262. {
  263. int queued = 0, frametype, ns, nr, pf;
  264. frametype = ax25_decode(ax25, skb, &ns, &nr, &pf);
  265. switch (ax25->state) {
  266. case AX25_STATE_1:
  267. queued = ax25_ds_state1_machine(ax25, skb, frametype, pf, type);
  268. break;
  269. case AX25_STATE_2:
  270. queued = ax25_ds_state2_machine(ax25, skb, frametype, pf, type);
  271. break;
  272. case AX25_STATE_3:
  273. queued = ax25_ds_state3_machine(ax25, skb, frametype, ns, nr, pf, type);
  274. break;
  275. }
  276. return queued;
  277. }