x25_in.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. /*
  2. * X.25 Packet Layer release 002
  3. *
  4. * This is ALPHA test software. This code may break your machine,
  5. * randomly fail to work with new releases, misbehave and/or generally
  6. * screw up. It might even work.
  7. *
  8. * This code REQUIRES 2.1.15 or higher
  9. *
  10. * This module:
  11. * This module is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License
  13. * as published by the Free Software Foundation; either version
  14. * 2 of the License, or (at your option) any later version.
  15. *
  16. * History
  17. * X.25 001 Jonathan Naylor Started coding.
  18. * X.25 002 Jonathan Naylor Centralised disconnection code.
  19. * New timer architecture.
  20. * 2000-03-20 Daniela Squassoni Disabling/enabling of facilities
  21. * negotiation.
  22. * 2000-11-10 Henner Eisen Check and reset for out-of-sequence
  23. * i-frames.
  24. */
  25. #include <linux/slab.h>
  26. #include <linux/errno.h>
  27. #include <linux/kernel.h>
  28. #include <linux/string.h>
  29. #include <linux/skbuff.h>
  30. #include <net/sock.h>
  31. #include <net/tcp_states.h>
  32. #include <net/x25.h>
  33. static int x25_queue_rx_frame(struct sock *sk, struct sk_buff *skb, int more)
  34. {
  35. struct sk_buff *skbo, *skbn = skb;
  36. struct x25_sock *x25 = x25_sk(sk);
  37. if (more) {
  38. x25->fraglen += skb->len;
  39. skb_queue_tail(&x25->fragment_queue, skb);
  40. skb_set_owner_r(skb, sk);
  41. return 0;
  42. }
  43. if (!more && x25->fraglen > 0) { /* End of fragment */
  44. int len = x25->fraglen + skb->len;
  45. if ((skbn = alloc_skb(len, GFP_ATOMIC)) == NULL){
  46. kfree_skb(skb);
  47. return 1;
  48. }
  49. skb_queue_tail(&x25->fragment_queue, skb);
  50. skb_reset_transport_header(skbn);
  51. skbo = skb_dequeue(&x25->fragment_queue);
  52. skb_copy_from_linear_data(skbo, skb_put(skbn, skbo->len),
  53. skbo->len);
  54. kfree_skb(skbo);
  55. while ((skbo =
  56. skb_dequeue(&x25->fragment_queue)) != NULL) {
  57. skb_pull(skbo, (x25->neighbour->extended) ?
  58. X25_EXT_MIN_LEN : X25_STD_MIN_LEN);
  59. skb_copy_from_linear_data(skbo,
  60. skb_put(skbn, skbo->len),
  61. skbo->len);
  62. kfree_skb(skbo);
  63. }
  64. x25->fraglen = 0;
  65. }
  66. skb_set_owner_r(skbn, sk);
  67. skb_queue_tail(&sk->sk_receive_queue, skbn);
  68. if (!sock_flag(sk, SOCK_DEAD))
  69. sk->sk_data_ready(sk, skbn->len);
  70. return 0;
  71. }
  72. /*
  73. * State machine for state 1, Awaiting Call Accepted State.
  74. * The handling of the timer(s) is in file x25_timer.c.
  75. * Handling of state 0 and connection release is in af_x25.c.
  76. */
  77. static int x25_state1_machine(struct sock *sk, struct sk_buff *skb, int frametype)
  78. {
  79. struct x25_address source_addr, dest_addr;
  80. int len;
  81. struct x25_sock *x25 = x25_sk(sk);
  82. switch (frametype) {
  83. case X25_CALL_ACCEPTED: {
  84. x25_stop_timer(sk);
  85. x25->condition = 0x00;
  86. x25->vs = 0;
  87. x25->va = 0;
  88. x25->vr = 0;
  89. x25->vl = 0;
  90. x25->state = X25_STATE_3;
  91. sk->sk_state = TCP_ESTABLISHED;
  92. /*
  93. * Parse the data in the frame.
  94. */
  95. skb_pull(skb, X25_STD_MIN_LEN);
  96. len = x25_parse_address_block(skb, &source_addr,
  97. &dest_addr);
  98. if (len > 0)
  99. skb_pull(skb, len);
  100. else if (len < 0)
  101. goto out_clear;
  102. len = x25_parse_facilities(skb, &x25->facilities,
  103. &x25->dte_facilities,
  104. &x25->vc_facil_mask);
  105. if (len > 0)
  106. skb_pull(skb, len);
  107. else if (len < 0)
  108. goto out_clear;
  109. /*
  110. * Copy any Call User Data.
  111. */
  112. if (skb->len > 0) {
  113. skb_copy_from_linear_data(skb,
  114. x25->calluserdata.cuddata,
  115. skb->len);
  116. x25->calluserdata.cudlength = skb->len;
  117. }
  118. if (!sock_flag(sk, SOCK_DEAD))
  119. sk->sk_state_change(sk);
  120. break;
  121. }
  122. case X25_CLEAR_REQUEST:
  123. x25_write_internal(sk, X25_CLEAR_CONFIRMATION);
  124. x25_disconnect(sk, ECONNREFUSED, skb->data[3], skb->data[4]);
  125. break;
  126. default:
  127. break;
  128. }
  129. return 0;
  130. out_clear:
  131. x25_write_internal(sk, X25_CLEAR_REQUEST);
  132. x25->state = X25_STATE_2;
  133. x25_start_t23timer(sk);
  134. return 0;
  135. }
  136. /*
  137. * State machine for state 2, Awaiting Clear Confirmation State.
  138. * The handling of the timer(s) is in file x25_timer.c
  139. * Handling of state 0 and connection release is in af_x25.c.
  140. */
  141. static int x25_state2_machine(struct sock *sk, struct sk_buff *skb, int frametype)
  142. {
  143. switch (frametype) {
  144. case X25_CLEAR_REQUEST:
  145. x25_write_internal(sk, X25_CLEAR_CONFIRMATION);
  146. x25_disconnect(sk, 0, skb->data[3], skb->data[4]);
  147. break;
  148. case X25_CLEAR_CONFIRMATION:
  149. x25_disconnect(sk, 0, 0, 0);
  150. break;
  151. default:
  152. break;
  153. }
  154. return 0;
  155. }
  156. /*
  157. * State machine for state 3, Connected State.
  158. * The handling of the timer(s) is in file x25_timer.c
  159. * Handling of state 0 and connection release is in af_x25.c.
  160. */
  161. static int x25_state3_machine(struct sock *sk, struct sk_buff *skb, int frametype, int ns, int nr, int q, int d, int m)
  162. {
  163. int queued = 0;
  164. int modulus;
  165. struct x25_sock *x25 = x25_sk(sk);
  166. modulus = (x25->neighbour->extended) ? X25_EMODULUS : X25_SMODULUS;
  167. switch (frametype) {
  168. case X25_RESET_REQUEST:
  169. x25_write_internal(sk, X25_RESET_CONFIRMATION);
  170. x25_stop_timer(sk);
  171. x25->condition = 0x00;
  172. x25->vs = 0;
  173. x25->vr = 0;
  174. x25->va = 0;
  175. x25->vl = 0;
  176. x25_requeue_frames(sk);
  177. break;
  178. case X25_CLEAR_REQUEST:
  179. x25_write_internal(sk, X25_CLEAR_CONFIRMATION);
  180. x25_disconnect(sk, 0, skb->data[3], skb->data[4]);
  181. break;
  182. case X25_RR:
  183. case X25_RNR:
  184. if (!x25_validate_nr(sk, nr)) {
  185. x25_clear_queues(sk);
  186. x25_write_internal(sk, X25_RESET_REQUEST);
  187. x25_start_t22timer(sk);
  188. x25->condition = 0x00;
  189. x25->vs = 0;
  190. x25->vr = 0;
  191. x25->va = 0;
  192. x25->vl = 0;
  193. x25->state = X25_STATE_4;
  194. } else {
  195. x25_frames_acked(sk, nr);
  196. if (frametype == X25_RNR) {
  197. x25->condition |= X25_COND_PEER_RX_BUSY;
  198. } else {
  199. x25->condition &= ~X25_COND_PEER_RX_BUSY;
  200. }
  201. }
  202. break;
  203. case X25_DATA: /* XXX */
  204. x25->condition &= ~X25_COND_PEER_RX_BUSY;
  205. if ((ns != x25->vr) || !x25_validate_nr(sk, nr)) {
  206. x25_clear_queues(sk);
  207. x25_write_internal(sk, X25_RESET_REQUEST);
  208. x25_start_t22timer(sk);
  209. x25->condition = 0x00;
  210. x25->vs = 0;
  211. x25->vr = 0;
  212. x25->va = 0;
  213. x25->vl = 0;
  214. x25->state = X25_STATE_4;
  215. break;
  216. }
  217. x25_frames_acked(sk, nr);
  218. if (ns == x25->vr) {
  219. if (x25_queue_rx_frame(sk, skb, m) == 0) {
  220. x25->vr = (x25->vr + 1) % modulus;
  221. queued = 1;
  222. } else {
  223. /* Should never happen */
  224. x25_clear_queues(sk);
  225. x25_write_internal(sk, X25_RESET_REQUEST);
  226. x25_start_t22timer(sk);
  227. x25->condition = 0x00;
  228. x25->vs = 0;
  229. x25->vr = 0;
  230. x25->va = 0;
  231. x25->vl = 0;
  232. x25->state = X25_STATE_4;
  233. break;
  234. }
  235. if (atomic_read(&sk->sk_rmem_alloc) >
  236. (sk->sk_rcvbuf >> 1))
  237. x25->condition |= X25_COND_OWN_RX_BUSY;
  238. }
  239. /*
  240. * If the window is full Ack it immediately, else
  241. * start the holdback timer.
  242. */
  243. if (((x25->vl + x25->facilities.winsize_in) % modulus) == x25->vr) {
  244. x25->condition &= ~X25_COND_ACK_PENDING;
  245. x25_stop_timer(sk);
  246. x25_enquiry_response(sk);
  247. } else {
  248. x25->condition |= X25_COND_ACK_PENDING;
  249. x25_start_t2timer(sk);
  250. }
  251. break;
  252. case X25_INTERRUPT_CONFIRMATION:
  253. clear_bit(X25_INTERRUPT_FLAG, &x25->flags);
  254. break;
  255. case X25_INTERRUPT:
  256. if (sock_flag(sk, SOCK_URGINLINE))
  257. queued = !sock_queue_rcv_skb(sk, skb);
  258. else {
  259. skb_set_owner_r(skb, sk);
  260. skb_queue_tail(&x25->interrupt_in_queue, skb);
  261. queued = 1;
  262. }
  263. sk_send_sigurg(sk);
  264. x25_write_internal(sk, X25_INTERRUPT_CONFIRMATION);
  265. break;
  266. default:
  267. printk(KERN_WARNING "x25: unknown %02X in state 3\n", frametype);
  268. break;
  269. }
  270. return queued;
  271. }
  272. /*
  273. * State machine for state 4, Awaiting Reset Confirmation State.
  274. * The handling of the timer(s) is in file x25_timer.c
  275. * Handling of state 0 and connection release is in af_x25.c.
  276. */
  277. static int x25_state4_machine(struct sock *sk, struct sk_buff *skb, int frametype)
  278. {
  279. switch (frametype) {
  280. case X25_RESET_REQUEST:
  281. x25_write_internal(sk, X25_RESET_CONFIRMATION);
  282. case X25_RESET_CONFIRMATION: {
  283. struct x25_sock *x25 = x25_sk(sk);
  284. x25_stop_timer(sk);
  285. x25->condition = 0x00;
  286. x25->va = 0;
  287. x25->vr = 0;
  288. x25->vs = 0;
  289. x25->vl = 0;
  290. x25->state = X25_STATE_3;
  291. x25_requeue_frames(sk);
  292. break;
  293. }
  294. case X25_CLEAR_REQUEST:
  295. x25_write_internal(sk, X25_CLEAR_CONFIRMATION);
  296. x25_disconnect(sk, 0, skb->data[3], skb->data[4]);
  297. break;
  298. default:
  299. break;
  300. }
  301. return 0;
  302. }
  303. /* Higher level upcall for a LAPB frame */
  304. int x25_process_rx_frame(struct sock *sk, struct sk_buff *skb)
  305. {
  306. struct x25_sock *x25 = x25_sk(sk);
  307. int queued = 0, frametype, ns, nr, q, d, m;
  308. if (x25->state == X25_STATE_0)
  309. return 0;
  310. frametype = x25_decode(sk, skb, &ns, &nr, &q, &d, &m);
  311. switch (x25->state) {
  312. case X25_STATE_1:
  313. queued = x25_state1_machine(sk, skb, frametype);
  314. break;
  315. case X25_STATE_2:
  316. queued = x25_state2_machine(sk, skb, frametype);
  317. break;
  318. case X25_STATE_3:
  319. queued = x25_state3_machine(sk, skb, frametype, ns, nr, q, d, m);
  320. break;
  321. case X25_STATE_4:
  322. queued = x25_state4_machine(sk, skb, frametype);
  323. break;
  324. }
  325. x25_kick(sk);
  326. return queued;
  327. }
  328. int x25_backlog_rcv(struct sock *sk, struct sk_buff *skb)
  329. {
  330. int queued = x25_process_rx_frame(sk, skb);
  331. if (!queued)
  332. kfree_skb(skb);
  333. return 0;
  334. }