x25_out.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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 New timer architecture.
  19. * 2000-09-04 Henner Eisen Prevented x25_output() skb leakage.
  20. * 2000-10-27 Henner Eisen MSG_DONTWAIT for fragment allocation.
  21. * 2000-11-10 Henner Eisen x25_send_iframe(): re-queued frames
  22. * needed cleaned seq-number fields.
  23. */
  24. #include <linux/slab.h>
  25. #include <linux/socket.h>
  26. #include <linux/kernel.h>
  27. #include <linux/string.h>
  28. #include <linux/skbuff.h>
  29. #include <net/sock.h>
  30. #include <net/x25.h>
  31. static int x25_pacsize_to_bytes(unsigned int pacsize)
  32. {
  33. int bytes = 1;
  34. if (!pacsize)
  35. return 128;
  36. while (pacsize-- > 0)
  37. bytes *= 2;
  38. return bytes;
  39. }
  40. /*
  41. * This is where all X.25 information frames pass.
  42. *
  43. * Returns the amount of user data bytes sent on success
  44. * or a negative error code on failure.
  45. */
  46. int x25_output(struct sock *sk, struct sk_buff *skb)
  47. {
  48. struct sk_buff *skbn;
  49. unsigned char header[X25_EXT_MIN_LEN];
  50. int err, frontlen, len;
  51. int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT;
  52. struct x25_sock *x25 = x25_sk(sk);
  53. int header_len = x25->neighbour->extended ? X25_EXT_MIN_LEN :
  54. X25_STD_MIN_LEN;
  55. int max_len = x25_pacsize_to_bytes(x25->facilities.pacsize_out);
  56. if (skb->len - header_len > max_len) {
  57. /* Save a copy of the Header */
  58. skb_copy_from_linear_data(skb, header, header_len);
  59. skb_pull(skb, header_len);
  60. frontlen = skb_headroom(skb);
  61. while (skb->len > 0) {
  62. if ((skbn = sock_alloc_send_skb(sk, frontlen + max_len,
  63. noblock, &err)) == NULL){
  64. if (err == -EWOULDBLOCK && noblock){
  65. kfree_skb(skb);
  66. return sent;
  67. }
  68. SOCK_DEBUG(sk, "x25_output: fragment alloc"
  69. " failed, err=%d, %d bytes "
  70. "sent\n", err, sent);
  71. return err;
  72. }
  73. skb_reserve(skbn, frontlen);
  74. len = max_len > skb->len ? skb->len : max_len;
  75. /* Copy the user data */
  76. skb_copy_from_linear_data(skb, skb_put(skbn, len), len);
  77. skb_pull(skb, len);
  78. /* Duplicate the Header */
  79. skb_push(skbn, header_len);
  80. skb_copy_to_linear_data(skbn, header, header_len);
  81. if (skb->len > 0) {
  82. if (x25->neighbour->extended)
  83. skbn->data[3] |= X25_EXT_M_BIT;
  84. else
  85. skbn->data[2] |= X25_STD_M_BIT;
  86. }
  87. skb_queue_tail(&sk->sk_write_queue, skbn);
  88. sent += len;
  89. }
  90. kfree_skb(skb);
  91. } else {
  92. skb_queue_tail(&sk->sk_write_queue, skb);
  93. sent = skb->len - header_len;
  94. }
  95. return sent;
  96. }
  97. /*
  98. * This procedure is passed a buffer descriptor for an iframe. It builds
  99. * the rest of the control part of the frame and then writes it out.
  100. */
  101. static void x25_send_iframe(struct sock *sk, struct sk_buff *skb)
  102. {
  103. struct x25_sock *x25 = x25_sk(sk);
  104. if (!skb)
  105. return;
  106. if (x25->neighbour->extended) {
  107. skb->data[2] = (x25->vs << 1) & 0xFE;
  108. skb->data[3] &= X25_EXT_M_BIT;
  109. skb->data[3] |= (x25->vr << 1) & 0xFE;
  110. } else {
  111. skb->data[2] &= X25_STD_M_BIT;
  112. skb->data[2] |= (x25->vs << 1) & 0x0E;
  113. skb->data[2] |= (x25->vr << 5) & 0xE0;
  114. }
  115. x25_transmit_link(skb, x25->neighbour);
  116. }
  117. void x25_kick(struct sock *sk)
  118. {
  119. struct sk_buff *skb, *skbn;
  120. unsigned short start, end;
  121. int modulus;
  122. struct x25_sock *x25 = x25_sk(sk);
  123. if (x25->state != X25_STATE_3)
  124. return;
  125. /*
  126. * Transmit interrupt data.
  127. */
  128. if (skb_peek(&x25->interrupt_out_queue) != NULL &&
  129. !test_and_set_bit(X25_INTERRUPT_FLAG, &x25->flags)) {
  130. skb = skb_dequeue(&x25->interrupt_out_queue);
  131. x25_transmit_link(skb, x25->neighbour);
  132. }
  133. if (x25->condition & X25_COND_PEER_RX_BUSY)
  134. return;
  135. if (!skb_peek(&sk->sk_write_queue))
  136. return;
  137. modulus = x25->neighbour->extended ? X25_EMODULUS : X25_SMODULUS;
  138. start = skb_peek(&x25->ack_queue) ? x25->vs : x25->va;
  139. end = (x25->va + x25->facilities.winsize_out) % modulus;
  140. if (start == end)
  141. return;
  142. x25->vs = start;
  143. /*
  144. * Transmit data until either we're out of data to send or
  145. * the window is full.
  146. */
  147. skb = skb_dequeue(&sk->sk_write_queue);
  148. do {
  149. if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
  150. skb_queue_head(&sk->sk_write_queue, skb);
  151. break;
  152. }
  153. skb_set_owner_w(skbn, sk);
  154. /*
  155. * Transmit the frame copy.
  156. */
  157. x25_send_iframe(sk, skbn);
  158. x25->vs = (x25->vs + 1) % modulus;
  159. /*
  160. * Requeue the original data frame.
  161. */
  162. skb_queue_tail(&x25->ack_queue, skb);
  163. } while (x25->vs != end &&
  164. (skb = skb_dequeue(&sk->sk_write_queue)) != NULL);
  165. x25->vl = x25->vr;
  166. x25->condition &= ~X25_COND_ACK_PENDING;
  167. x25_stop_timer(sk);
  168. }
  169. /*
  170. * The following routines are taken from page 170 of the 7th ARRL Computer
  171. * Networking Conference paper, as is the whole state machine.
  172. */
  173. void x25_enquiry_response(struct sock *sk)
  174. {
  175. struct x25_sock *x25 = x25_sk(sk);
  176. if (x25->condition & X25_COND_OWN_RX_BUSY)
  177. x25_write_internal(sk, X25_RNR);
  178. else
  179. x25_write_internal(sk, X25_RR);
  180. x25->vl = x25->vr;
  181. x25->condition &= ~X25_COND_ACK_PENDING;
  182. x25_stop_timer(sk);
  183. }