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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * NET/ROM release 007
  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.  * History
  13.  * NET/ROM 001 Jonathan(G4KLX) Cloned from ax25_subr.c
  14.  * NET/ROM 003 Jonathan(G4KLX) Added G8BPQ NET/ROM extensions.
  15.  * NET/ROM 007 Jonathan(G4KLX) New timer architecture.
  16.  */
  17. #include <linux/errno.h>
  18. #include <linux/types.h>
  19. #include <linux/socket.h>
  20. #include <linux/in.h>
  21. #include <linux/kernel.h>
  22. #include <linux/sched.h>
  23. #include <linux/timer.h>
  24. #include <linux/string.h>
  25. #include <linux/sockios.h>
  26. #include <linux/net.h>
  27. #include <net/ax25.h>
  28. #include <linux/inet.h>
  29. #include <linux/netdevice.h>
  30. #include <linux/skbuff.h>
  31. #include <net/sock.h>
  32. #include <asm/uaccess.h>
  33. #include <asm/system.h>
  34. #include <linux/fcntl.h>
  35. #include <linux/mm.h>
  36. #include <linux/interrupt.h>
  37. #include <net/netrom.h>
  38. /*
  39.  * This routine purges all of the queues of frames.
  40.  */
  41. void nr_clear_queues(struct sock *sk)
  42. {
  43. skb_queue_purge(&sk->write_queue);
  44. skb_queue_purge(&sk->protinfo.nr->ack_queue);
  45. skb_queue_purge(&sk->protinfo.nr->reseq_queue);
  46. skb_queue_purge(&sk->protinfo.nr->frag_queue);
  47. }
  48. /*
  49.  * This routine purges the input queue of those frames that have been
  50.  * acknowledged. This replaces the boxes labelled "V(a) <- N(r)" on the
  51.  * SDL diagram.
  52.  */
  53. void nr_frames_acked(struct sock *sk, unsigned short nr)
  54. {
  55. struct sk_buff *skb;
  56. /*
  57.  * Remove all the ack-ed frames from the ack queue.
  58.  */
  59. if (sk->protinfo.nr->va != nr) {
  60. while (skb_peek(&sk->protinfo.nr->ack_queue) != NULL && sk->protinfo.nr->va != nr) {
  61.         skb = skb_dequeue(&sk->protinfo.nr->ack_queue);
  62. kfree_skb(skb);
  63. sk->protinfo.nr->va = (sk->protinfo.nr->va + 1) % NR_MODULUS;
  64. }
  65. }
  66. }
  67. /*
  68.  * Requeue all the un-ack-ed frames on the output queue to be picked
  69.  * up by nr_kick called from the timer. This arrangement handles the
  70.  * possibility of an empty output queue.
  71.  */
  72. void nr_requeue_frames(struct sock *sk)
  73. {
  74. struct sk_buff *skb, *skb_prev = NULL;
  75. while ((skb = skb_dequeue(&sk->protinfo.nr->ack_queue)) != NULL) {
  76. if (skb_prev == NULL)
  77. skb_queue_head(&sk->write_queue, skb);
  78. else
  79. skb_append(skb_prev, skb);
  80. skb_prev = skb;
  81. }
  82. }
  83. /*
  84.  * Validate that the value of nr is between va and vs. Return true or
  85.  * false for testing.
  86.  */
  87. int nr_validate_nr(struct sock *sk, unsigned short nr)
  88. {
  89. unsigned short vc = sk->protinfo.nr->va;
  90. while (vc != sk->protinfo.nr->vs) {
  91. if (nr == vc) return 1;
  92. vc = (vc + 1) % NR_MODULUS;
  93. }
  94. if (nr == sk->protinfo.nr->vs) return 1;
  95. return 0;
  96. }
  97. /*
  98.  * Check that ns is within the receive window.
  99.  */
  100. int nr_in_rx_window(struct sock *sk, unsigned short ns)
  101. {
  102. unsigned short vc = sk->protinfo.nr->vr;
  103. unsigned short vt = (sk->protinfo.nr->vl + sk->protinfo.nr->window) % NR_MODULUS;
  104. while (vc != vt) {
  105. if (ns == vc) return 1;
  106. vc = (vc + 1) % NR_MODULUS;
  107. }
  108. return 0;
  109. }
  110. /* 
  111.  *  This routine is called when the HDLC layer internally generates a
  112.  *  control frame.
  113.  */
  114. void nr_write_internal(struct sock *sk, int frametype)
  115. {
  116. struct sk_buff *skb;
  117. unsigned char  *dptr;
  118. int len, timeout;
  119. len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + NR_NETWORK_LEN + NR_TRANSPORT_LEN;
  120. switch (frametype & 0x0F) {
  121. case NR_CONNREQ:
  122. len += 17;
  123. break;
  124. case NR_CONNACK:
  125. len += (sk->protinfo.nr->bpqext) ? 2 : 1;
  126. break;
  127. case NR_DISCREQ:
  128. case NR_DISCACK:
  129. case NR_INFOACK:
  130. break;
  131. default:
  132. printk(KERN_ERR "NET/ROM: nr_write_internal - invalid frame type %dn", frametype);
  133. return;
  134. }
  135. if ((skb = alloc_skb(len, GFP_ATOMIC)) == NULL)
  136. return;
  137. /*
  138.  * Space for AX.25 and NET/ROM network header
  139.  */
  140. skb_reserve(skb, AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + NR_NETWORK_LEN);
  141. dptr = skb_put(skb, skb_tailroom(skb));
  142. switch (frametype & 0x0F) {
  143. case NR_CONNREQ:
  144. timeout  = sk->protinfo.nr->t1 / HZ;
  145. *dptr++  = sk->protinfo.nr->my_index;
  146. *dptr++  = sk->protinfo.nr->my_id;
  147. *dptr++  = 0;
  148. *dptr++  = 0;
  149. *dptr++  = frametype;
  150. *dptr++  = sk->protinfo.nr->window;
  151. memcpy(dptr, &sk->protinfo.nr->user_addr, AX25_ADDR_LEN);
  152. dptr[6] &= ~AX25_CBIT;
  153. dptr[6] &= ~AX25_EBIT;
  154. dptr[6] |= AX25_SSSID_SPARE;
  155. dptr    += AX25_ADDR_LEN;
  156. memcpy(dptr, &sk->protinfo.nr->source_addr, AX25_ADDR_LEN);
  157. dptr[6] &= ~AX25_CBIT;
  158. dptr[6] &= ~AX25_EBIT;
  159. dptr[6] |= AX25_SSSID_SPARE;
  160. dptr    += AX25_ADDR_LEN;
  161. *dptr++  = timeout % 256;
  162. *dptr++  = timeout / 256;
  163. break;
  164. case NR_CONNACK:
  165. *dptr++ = sk->protinfo.nr->your_index;
  166. *dptr++ = sk->protinfo.nr->your_id;
  167. *dptr++ = sk->protinfo.nr->my_index;
  168. *dptr++ = sk->protinfo.nr->my_id;
  169. *dptr++ = frametype;
  170. *dptr++ = sk->protinfo.nr->window;
  171. if (sk->protinfo.nr->bpqext) *dptr++ = sysctl_netrom_network_ttl_initialiser;
  172. break;
  173. case NR_DISCREQ:
  174. case NR_DISCACK:
  175. *dptr++ = sk->protinfo.nr->your_index;
  176. *dptr++ = sk->protinfo.nr->your_id;
  177. *dptr++ = 0;
  178. *dptr++ = 0;
  179. *dptr++ = frametype;
  180. break;
  181. case NR_INFOACK:
  182. *dptr++ = sk->protinfo.nr->your_index;
  183. *dptr++ = sk->protinfo.nr->your_id;
  184. *dptr++ = 0;
  185. *dptr++ = sk->protinfo.nr->vr;
  186. *dptr++ = frametype;
  187. break;
  188. }
  189. nr_transmit_buffer(sk, skb);
  190. }
  191. /*
  192.  * This routine is called when a Connect Acknowledge with the Choke Flag
  193.  * set is needed to refuse a connection.
  194.  */
  195. void nr_transmit_refusal(struct sk_buff *skb, int mine)
  196. {
  197. struct sk_buff *skbn;
  198. unsigned char *dptr;
  199. int len;
  200. len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + NR_NETWORK_LEN + NR_TRANSPORT_LEN + 1;
  201. if ((skbn = alloc_skb(len, GFP_ATOMIC)) == NULL)
  202. return;
  203. skb_reserve(skbn, AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN);
  204. dptr = skb_put(skbn, NR_NETWORK_LEN + NR_TRANSPORT_LEN);
  205. memcpy(dptr, skb->data + 7, AX25_ADDR_LEN);
  206. dptr[6] &= ~AX25_CBIT;
  207. dptr[6] &= ~AX25_EBIT;
  208. dptr[6] |= AX25_SSSID_SPARE;
  209. dptr += AX25_ADDR_LEN;
  210. memcpy(dptr, skb->data + 0, AX25_ADDR_LEN);
  211. dptr[6] &= ~AX25_CBIT;
  212. dptr[6] |= AX25_EBIT;
  213. dptr[6] |= AX25_SSSID_SPARE;
  214. dptr += AX25_ADDR_LEN;
  215. *dptr++ = sysctl_netrom_network_ttl_initialiser;
  216. if (mine) {
  217. *dptr++ = 0;
  218. *dptr++ = 0;
  219. *dptr++ = skb->data[15];
  220. *dptr++ = skb->data[16];
  221. } else {
  222. *dptr++ = skb->data[15];
  223. *dptr++ = skb->data[16];
  224. *dptr++ = 0;
  225. *dptr++ = 0;
  226. }
  227. *dptr++ = NR_CONNACK | NR_CHOKE_FLAG;
  228. *dptr++ = 0;
  229. if (!nr_route_frame(skbn, NULL))
  230. kfree_skb(skbn);
  231. }
  232. void nr_disconnect(struct sock *sk, int reason)
  233. {
  234. nr_stop_t1timer(sk);
  235. nr_stop_t2timer(sk);
  236. nr_stop_t4timer(sk);
  237. nr_stop_idletimer(sk);
  238. nr_clear_queues(sk);
  239. sk->protinfo.nr->state = NR_STATE_0;
  240. sk->state     = TCP_CLOSE;
  241. sk->err       = reason;
  242. sk->shutdown |= SEND_SHUTDOWN;
  243. if (!sk->dead)
  244. sk->state_change(sk);
  245. sk->dead = 1;
  246. }