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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * X.25 Packet Layer release 002
  3.  *
  4.  * This is ALPHA test software. This code may break your machine, randomly fail to work with new 
  5.  * releases, misbehave and/or generally screw up. It might even work. 
  6.  *
  7.  * This code REQUIRES 2.1.15 or higher
  8.  *
  9.  * This module:
  10.  * This module is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  *
  15.  * History
  16.  * X.25 001 Jonathan Naylor Started coding.
  17.  * X.25 002 Jonathan Naylor New timer architecture.
  18.  * 2000-09-04 Henner Eisen Prevented x25_output() skb leakage.
  19.  * 2000-10-27 Henner Eisen MSG_DONTWAIT for fragment allocation.
  20.  * 2000-11-10 Henner Eisen x25_send_iframe(): re-queued frames
  21.  * needed cleaned seq-number fields.
  22.  */
  23. #include <linux/errno.h>
  24. #include <linux/types.h>
  25. #include <linux/socket.h>
  26. #include <linux/in.h>
  27. #include <linux/kernel.h>
  28. #include <linux/sched.h>
  29. #include <linux/timer.h>
  30. #include <linux/string.h>
  31. #include <linux/sockios.h>
  32. #include <linux/net.h>
  33. #include <linux/inet.h>
  34. #include <linux/netdevice.h>
  35. #include <linux/skbuff.h>
  36. #include <net/sock.h>
  37. #include <asm/segment.h>
  38. #include <asm/system.h>
  39. #include <linux/fcntl.h>
  40. #include <linux/mm.h>
  41. #include <linux/interrupt.h>
  42. #include <net/x25.h>
  43. static int x25_pacsize_to_bytes(unsigned int pacsize)
  44. {
  45. int bytes = 1;
  46. if (pacsize == 0)
  47. return 128;
  48. while (pacsize-- > 0)
  49. bytes *= 2;
  50. return bytes;
  51. }
  52. /*
  53.  * This is where all X.25 information frames pass.
  54.  *
  55.  *      Returns the amount of user data bytes sent on success
  56.  *      or a negative error code on failure.
  57.  */
  58. int x25_output(struct sock *sk, struct sk_buff *skb)
  59. {
  60. struct sk_buff *skbn;
  61. unsigned char header[X25_EXT_MIN_LEN];
  62. int err, frontlen, len, header_len, max_len;
  63. int sent=0, noblock = X25_SKB_CB(skb)->flags & MSG_DONTWAIT;
  64. header_len = (sk->protinfo.x25->neighbour->extended) ? X25_EXT_MIN_LEN : X25_STD_MIN_LEN;
  65. max_len    = x25_pacsize_to_bytes(sk->protinfo.x25->facilities.pacsize_out);
  66. if (skb->len - header_len > max_len) {
  67. /* Save a copy of the Header */
  68. memcpy(header, skb->data, header_len);
  69. skb_pull(skb, header_len);
  70. frontlen = skb_headroom(skb);
  71. while (skb->len > 0) {
  72. if ((skbn = sock_alloc_send_skb(sk, frontlen + max_len, noblock, &err)) == NULL){
  73. if(err == -EWOULDBLOCK && noblock){
  74. kfree_skb(skb);
  75. return sent;
  76. }
  77. SOCK_DEBUG(sk, "x25_output: fragment allocation failed, err=%d, %d bytes sentn", err, sent);
  78. return err;
  79. }
  80. skb_reserve(skbn, frontlen);
  81. len = (max_len > skb->len) ? skb->len : max_len;
  82. /* Copy the user data */
  83. memcpy(skb_put(skbn, len), skb->data, len);
  84. skb_pull(skb, len);
  85. /* Duplicate the Header */
  86. skb_push(skbn, header_len);
  87. memcpy(skbn->data, header, header_len);
  88. if (skb->len > 0) {
  89. if (sk->protinfo.x25->neighbour->extended)
  90. skbn->data[3] |= X25_EXT_M_BIT;
  91. else
  92. skbn->data[2] |= X25_STD_M_BIT;
  93. }
  94. skb_queue_tail(&sk->write_queue, skbn);
  95. sent += len;
  96. }
  97. kfree_skb(skb);
  98. } else {
  99. skb_queue_tail(&sk->write_queue, skb);
  100. sent = skb->len - header_len;
  101. }
  102. return sent;
  103. }
  104. /* 
  105.  * This procedure is passed a buffer descriptor for an iframe. It builds
  106.  * the rest of the control part of the frame and then writes it out.
  107.  */
  108. static void x25_send_iframe(struct sock *sk, struct sk_buff *skb)
  109. {
  110. if (skb == NULL)
  111. return;
  112. if (sk->protinfo.x25->neighbour->extended) {
  113. skb->data[2]  = (sk->protinfo.x25->vs << 1) & 0xFE;
  114. skb->data[3] &= X25_EXT_M_BIT;
  115. skb->data[3] |= (sk->protinfo.x25->vr << 1) & 0xFE;
  116. } else {
  117. skb->data[2] &= X25_STD_M_BIT;
  118. skb->data[2] |= (sk->protinfo.x25->vs << 1) & 0x0E;
  119. skb->data[2] |= (sk->protinfo.x25->vr << 5) & 0xE0;
  120. }
  121. x25_transmit_link(skb, sk->protinfo.x25->neighbour);
  122. }
  123. void x25_kick(struct sock *sk)
  124. {
  125. struct sk_buff *skb, *skbn;
  126. unsigned short start, end;
  127. int modulus;
  128. if (sk->protinfo.x25->state != X25_STATE_3)
  129. return;
  130. /*
  131.  * Transmit interrupt data.
  132.  */
  133. if (!sk->protinfo.x25->intflag && skb_peek(&sk->protinfo.x25->interrupt_out_queue) != NULL) {
  134. sk->protinfo.x25->intflag = 1;
  135. skb = skb_dequeue(&sk->protinfo.x25->interrupt_out_queue);
  136. x25_transmit_link(skb, sk->protinfo.x25->neighbour);
  137. }
  138. if (sk->protinfo.x25->condition & X25_COND_PEER_RX_BUSY)
  139. return;
  140. if (skb_peek(&sk->write_queue) == NULL)
  141. return;
  142. modulus = (sk->protinfo.x25->neighbour->extended) ? X25_EMODULUS : X25_SMODULUS;
  143. start   = (skb_peek(&sk->protinfo.x25->ack_queue) == NULL) ? sk->protinfo.x25->va : sk->protinfo.x25->vs;
  144. end     = (sk->protinfo.x25->va + sk->protinfo.x25->facilities.winsize_out) % modulus;
  145. if (start == end)
  146. return;
  147. sk->protinfo.x25->vs = start;
  148. /*
  149.  * Transmit data until either we're out of data to send or
  150.  * the window is full.
  151.  */
  152. skb = skb_dequeue(&sk->write_queue);
  153. do {
  154. if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
  155. skb_queue_head(&sk->write_queue, skb);
  156. break;
  157. }
  158. skb_set_owner_w(skbn, sk);
  159. /*
  160.  * Transmit the frame copy.
  161.  */
  162. x25_send_iframe(sk, skbn);
  163. sk->protinfo.x25->vs = (sk->protinfo.x25->vs + 1) % modulus;
  164. /*
  165.  * Requeue the original data frame.
  166.  */
  167. skb_queue_tail(&sk->protinfo.x25->ack_queue, skb);
  168. } while (sk->protinfo.x25->vs != end && (skb = skb_dequeue(&sk->write_queue)) != NULL);
  169. sk->protinfo.x25->vl         = sk->protinfo.x25->vr;
  170. sk->protinfo.x25->condition &= ~X25_COND_ACK_PENDING;
  171. x25_stop_timer(sk);
  172. }
  173. /*
  174.  * The following routines are taken from page 170 of the 7th ARRL Computer
  175.  * Networking Conference paper, as is the whole state machine.
  176.  */
  177. void x25_enquiry_response(struct sock *sk)
  178. {
  179. if (sk->protinfo.x25->condition & X25_COND_OWN_RX_BUSY)
  180. x25_write_internal(sk, X25_RNR);
  181. else
  182. x25_write_internal(sk, X25_RR);
  183. sk->protinfo.x25->vl         = sk->protinfo.x25->vr;
  184. sk->protinfo.x25->condition &= ~X25_COND_ACK_PENDING;
  185. x25_stop_timer(sk);
  186. }