nr_timer.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

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_timer.c
  14.  * NET/ROM 007 Jonathan(G4KLX) New timer architecture.
  15.  * Implemented idle timer.
  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. static void nr_heartbeat_expiry(unsigned long);
  39. static void nr_t1timer_expiry(unsigned long);
  40. static void nr_t2timer_expiry(unsigned long);
  41. static void nr_t4timer_expiry(unsigned long);
  42. static void nr_idletimer_expiry(unsigned long);
  43. void nr_start_t1timer(struct sock *sk)
  44. {
  45. del_timer(&sk->protinfo.nr->t1timer);
  46. sk->protinfo.nr->t1timer.data     = (unsigned long)sk;
  47. sk->protinfo.nr->t1timer.function = &nr_t1timer_expiry;
  48. sk->protinfo.nr->t1timer.expires  = jiffies + sk->protinfo.nr->t1;
  49. add_timer(&sk->protinfo.nr->t1timer);
  50. }
  51. void nr_start_t2timer(struct sock *sk)
  52. {
  53. del_timer(&sk->protinfo.nr->t2timer);
  54. sk->protinfo.nr->t2timer.data     = (unsigned long)sk;
  55. sk->protinfo.nr->t2timer.function = &nr_t2timer_expiry;
  56. sk->protinfo.nr->t2timer.expires  = jiffies + sk->protinfo.nr->t2;
  57. add_timer(&sk->protinfo.nr->t2timer);
  58. }
  59. void nr_start_t4timer(struct sock *sk)
  60. {
  61. del_timer(&sk->protinfo.nr->t4timer);
  62. sk->protinfo.nr->t4timer.data     = (unsigned long)sk;
  63. sk->protinfo.nr->t4timer.function = &nr_t4timer_expiry;
  64. sk->protinfo.nr->t4timer.expires  = jiffies + sk->protinfo.nr->t4;
  65. add_timer(&sk->protinfo.nr->t4timer);
  66. }
  67. void nr_start_idletimer(struct sock *sk)
  68. {
  69. del_timer(&sk->protinfo.nr->idletimer);
  70. if (sk->protinfo.nr->idle > 0) {
  71. sk->protinfo.nr->idletimer.data     = (unsigned long)sk;
  72. sk->protinfo.nr->idletimer.function = &nr_idletimer_expiry;
  73. sk->protinfo.nr->idletimer.expires  = jiffies + sk->protinfo.nr->idle;
  74. add_timer(&sk->protinfo.nr->idletimer);
  75. }
  76. }
  77. void nr_start_heartbeat(struct sock *sk)
  78. {
  79. del_timer(&sk->timer);
  80. sk->timer.data     = (unsigned long)sk;
  81. sk->timer.function = &nr_heartbeat_expiry;
  82. sk->timer.expires  = jiffies + 5 * HZ;
  83. add_timer(&sk->timer);
  84. }
  85. void nr_stop_t1timer(struct sock *sk)
  86. {
  87. del_timer(&sk->protinfo.nr->t1timer);
  88. }
  89. void nr_stop_t2timer(struct sock *sk)
  90. {
  91. del_timer(&sk->protinfo.nr->t2timer);
  92. }
  93. void nr_stop_t4timer(struct sock *sk)
  94. {
  95. del_timer(&sk->protinfo.nr->t4timer);
  96. }
  97. void nr_stop_idletimer(struct sock *sk)
  98. {
  99. del_timer(&sk->protinfo.nr->idletimer);
  100. }
  101. void nr_stop_heartbeat(struct sock *sk)
  102. {
  103. del_timer(&sk->timer);
  104. }
  105. int nr_t1timer_running(struct sock *sk)
  106. {
  107. return timer_pending(&sk->protinfo.nr->t1timer);
  108. }
  109. static void nr_heartbeat_expiry(unsigned long param)
  110. {
  111. struct sock *sk = (struct sock *)param;
  112. switch (sk->protinfo.nr->state) {
  113. case NR_STATE_0:
  114. /* Magic here: If we listen() and a new link dies before it
  115.    is accepted() it isn't 'dead' so doesn't get removed. */
  116. if (sk->destroy || (sk->state == TCP_LISTEN && sk->dead)) {
  117. nr_destroy_socket(sk);
  118. return;
  119. }
  120. break;
  121. case NR_STATE_3:
  122. /*
  123.  * Check for the state of the receive buffer.
  124.  */
  125. if (atomic_read(&sk->rmem_alloc) < (sk->rcvbuf / 2) &&
  126.     (sk->protinfo.nr->condition & NR_COND_OWN_RX_BUSY)) {
  127. sk->protinfo.nr->condition &= ~NR_COND_OWN_RX_BUSY;
  128. sk->protinfo.nr->condition &= ~NR_COND_ACK_PENDING;
  129. sk->protinfo.nr->vl         = sk->protinfo.nr->vr;
  130. nr_write_internal(sk, NR_INFOACK);
  131. break;
  132. }
  133. break;
  134. }
  135. nr_start_heartbeat(sk);
  136. }
  137. static void nr_t2timer_expiry(unsigned long param)
  138. {
  139. struct sock *sk = (struct sock *)param;
  140. if (sk->protinfo.nr->condition & NR_COND_ACK_PENDING) {
  141. sk->protinfo.nr->condition &= ~NR_COND_ACK_PENDING;
  142. nr_enquiry_response(sk);
  143. }
  144. }
  145. static void nr_t4timer_expiry(unsigned long param)
  146. {
  147. struct sock *sk = (struct sock *)param;
  148. sk->protinfo.nr->condition &= ~NR_COND_PEER_RX_BUSY;
  149. }
  150. static void nr_idletimer_expiry(unsigned long param)
  151. {
  152. struct sock *sk = (struct sock *)param;
  153. nr_clear_queues(sk);
  154. sk->protinfo.nr->n2count = 0;
  155. nr_write_internal(sk, NR_DISCREQ);
  156. sk->protinfo.nr->state = NR_STATE_2;
  157. nr_start_t1timer(sk);
  158. nr_stop_t2timer(sk);
  159. nr_stop_t4timer(sk);
  160. sk->state     = TCP_CLOSE;
  161. sk->err       = 0;
  162. sk->shutdown |= SEND_SHUTDOWN;
  163. if (!sk->dead)
  164. sk->state_change(sk);
  165. sk->dead = 1;
  166. }
  167. static void nr_t1timer_expiry(unsigned long param)
  168. {
  169. struct sock *sk = (struct sock *)param;
  170. switch (sk->protinfo.nr->state) {
  171. case NR_STATE_1: 
  172. if (sk->protinfo.nr->n2count == sk->protinfo.nr->n2) {
  173. nr_disconnect(sk, ETIMEDOUT);
  174. return;
  175. } else {
  176. sk->protinfo.nr->n2count++;
  177. nr_write_internal(sk, NR_CONNREQ);
  178. }
  179. break;
  180. case NR_STATE_2:
  181. if (sk->protinfo.nr->n2count == sk->protinfo.nr->n2) {
  182. nr_disconnect(sk, ETIMEDOUT);
  183. return;
  184. } else {
  185. sk->protinfo.nr->n2count++;
  186. nr_write_internal(sk, NR_DISCREQ);
  187. }
  188. break;
  189. case NR_STATE_3:
  190. if (sk->protinfo.nr->n2count == sk->protinfo.nr->n2) {
  191. nr_disconnect(sk, ETIMEDOUT);
  192. return;
  193. } else {
  194. sk->protinfo.nr->n2count++;
  195. nr_requeue_frames(sk);
  196. }
  197. break;
  198. }
  199. nr_start_t1timer(sk);
  200. }