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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ROSE release 003
  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.  * ROSE 001 Jonathan(G4KLX) Cloned from rose_timer.c
  14.  * ROSE 003 Jonathan(G4KLX) New timer architecture.
  15.  */
  16. #include <linux/errno.h>
  17. #include <linux/types.h>
  18. #include <linux/socket.h>
  19. #include <linux/in.h>
  20. #include <linux/kernel.h>
  21. #include <linux/sched.h>
  22. #include <linux/timer.h>
  23. #include <linux/string.h>
  24. #include <linux/sockios.h>
  25. #include <linux/net.h>
  26. #include <net/ax25.h>
  27. #include <linux/inet.h>
  28. #include <linux/netdevice.h>
  29. #include <linux/skbuff.h>
  30. #include <net/sock.h>
  31. #include <asm/segment.h>
  32. #include <asm/system.h>
  33. #include <linux/fcntl.h>
  34. #include <linux/mm.h>
  35. #include <linux/interrupt.h>
  36. #include <linux/netfilter.h>
  37. #include <net/rose.h>
  38. static void rose_ftimer_expiry(unsigned long);
  39. static void rose_t0timer_expiry(unsigned long);
  40. void rose_start_ftimer(struct rose_neigh *neigh)
  41. {
  42. del_timer(&neigh->ftimer);
  43. neigh->ftimer.data     = (unsigned long)neigh;
  44. neigh->ftimer.function = &rose_ftimer_expiry;
  45. neigh->ftimer.expires  = jiffies + sysctl_rose_link_fail_timeout;
  46. add_timer(&neigh->ftimer);
  47. }
  48. void rose_start_t0timer(struct rose_neigh *neigh)
  49. {
  50. del_timer(&neigh->t0timer);
  51. neigh->t0timer.data     = (unsigned long)neigh;
  52. neigh->t0timer.function = &rose_t0timer_expiry;
  53. neigh->t0timer.expires  = jiffies + sysctl_rose_restart_request_timeout;
  54. add_timer(&neigh->t0timer);
  55. }
  56. void rose_stop_ftimer(struct rose_neigh *neigh)
  57. {
  58. del_timer(&neigh->ftimer);
  59. }
  60. void rose_stop_t0timer(struct rose_neigh *neigh)
  61. {
  62. del_timer(&neigh->t0timer);
  63. }
  64. int rose_ftimer_running(struct rose_neigh *neigh)
  65. {
  66. return timer_pending(&neigh->ftimer);
  67. }
  68. int rose_t0timer_running(struct rose_neigh *neigh)
  69. {
  70. return timer_pending(&neigh->t0timer);
  71. }
  72. static void rose_ftimer_expiry(unsigned long param)
  73. {
  74. }
  75. static void rose_t0timer_expiry(unsigned long param)
  76. {
  77. struct rose_neigh *neigh = (struct rose_neigh *)param;
  78. rose_transmit_restart_request(neigh);
  79. neigh->dce_mode = 0;
  80. rose_start_t0timer(neigh);
  81. }
  82. /*
  83.  * Interface to ax25_send_frame. Changes my level 2 callsign depending
  84.  * on whether we have a global ROSE callsign or use the default port
  85.  * callsign.
  86.  */
  87. static int rose_send_frame(struct sk_buff *skb, struct rose_neigh *neigh)
  88. {
  89. ax25_address *rose_call;
  90. if (ax25cmp(&rose_callsign, &null_ax25_address) == 0)
  91. rose_call = (ax25_address *)neigh->dev->dev_addr;
  92. else
  93. rose_call = &rose_callsign;
  94. neigh->ax25 = ax25_send_frame(skb, 260, rose_call, &neigh->callsign, neigh->digipeat, neigh->dev);
  95. return (neigh->ax25 != NULL);
  96. }
  97. /*
  98.  * Interface to ax25_link_up. Changes my level 2 callsign depending
  99.  * on whether we have a global ROSE callsign or use the default port
  100.  * callsign.
  101.  */
  102. static int rose_link_up(struct rose_neigh *neigh)
  103. {
  104. ax25_address *rose_call;
  105. if (ax25cmp(&rose_callsign, &null_ax25_address) == 0)
  106. rose_call = (ax25_address *)neigh->dev->dev_addr;
  107. else
  108. rose_call = &rose_callsign;
  109. neigh->ax25 = ax25_find_cb(rose_call, &neigh->callsign, neigh->digipeat, neigh->dev);
  110. return (neigh->ax25 != NULL);
  111. }
  112. /*
  113.  * This handles all restart and diagnostic frames.
  114.  */
  115. void rose_link_rx_restart(struct sk_buff *skb, struct rose_neigh *neigh, unsigned short frametype)
  116. {
  117. struct sk_buff *skbn;
  118. switch (frametype) {
  119. case ROSE_RESTART_REQUEST:
  120. rose_stop_t0timer(neigh);
  121. neigh->restarted = 1;
  122. neigh->dce_mode  = (skb->data[3] == ROSE_DTE_ORIGINATED);
  123. rose_transmit_restart_confirmation(neigh);
  124. break;
  125. case ROSE_RESTART_CONFIRMATION:
  126. rose_stop_t0timer(neigh);
  127. neigh->restarted = 1;
  128. break;
  129. case ROSE_DIAGNOSTIC:
  130. printk(KERN_WARNING "ROSE: received diagnostic #%d - %02X %02X %02Xn", skb->data[3], skb->data[4], skb->data[5], skb->data[6]);
  131. break;
  132. default:
  133. printk(KERN_WARNING "ROSE: received unknown %02X with LCI 000n", frametype);
  134. break;
  135. }
  136. if (neigh->restarted) {
  137. while ((skbn = skb_dequeue(&neigh->queue)) != NULL)
  138. if (!rose_send_frame(skbn, neigh))
  139. kfree_skb(skbn);
  140. }
  141. }
  142. /*
  143.  * This routine is called when a Restart Request is needed
  144.  */
  145. void rose_transmit_restart_request(struct rose_neigh *neigh)
  146. {
  147. struct sk_buff *skb;
  148. unsigned char *dptr;
  149. int len;
  150. len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN + 3;
  151. if ((skb = alloc_skb(len, GFP_ATOMIC)) == NULL)
  152. return;
  153. skb_reserve(skb, AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN);
  154. dptr = skb_put(skb, ROSE_MIN_LEN + 3);
  155. *dptr++ = AX25_P_ROSE;
  156. *dptr++ = ROSE_GFI;
  157. *dptr++ = 0x00;
  158. *dptr++ = ROSE_RESTART_REQUEST;
  159. *dptr++ = ROSE_DTE_ORIGINATED;
  160. *dptr++ = 0;
  161. if (!rose_send_frame(skb, neigh))
  162. kfree_skb(skb);
  163. }
  164. /*
  165.  * This routine is called when a Restart Confirmation is needed
  166.  */
  167. void rose_transmit_restart_confirmation(struct rose_neigh *neigh)
  168. {
  169. struct sk_buff *skb;
  170. unsigned char *dptr;
  171. int len;
  172. len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN + 1;
  173. if ((skb = alloc_skb(len, GFP_ATOMIC)) == NULL)
  174. return;
  175. skb_reserve(skb, AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN);
  176. dptr = skb_put(skb, ROSE_MIN_LEN + 1);
  177. *dptr++ = AX25_P_ROSE;
  178. *dptr++ = ROSE_GFI;
  179. *dptr++ = 0x00;
  180. *dptr++ = ROSE_RESTART_CONFIRMATION;
  181. if (!rose_send_frame(skb, neigh))
  182. kfree_skb(skb);
  183. }
  184. /*
  185.  * This routine is called when a Diagnostic is required.
  186.  */
  187. void rose_transmit_diagnostic(struct rose_neigh *neigh, unsigned char diag)
  188. {
  189. struct sk_buff *skb;
  190. unsigned char *dptr;
  191. int len;
  192. len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN + 2;
  193. if ((skb = alloc_skb(len, GFP_ATOMIC)) == NULL)
  194. return;
  195. skb_reserve(skb, AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN);
  196. dptr = skb_put(skb, ROSE_MIN_LEN + 2);
  197. *dptr++ = AX25_P_ROSE;
  198. *dptr++ = ROSE_GFI;
  199. *dptr++ = 0x00;
  200. *dptr++ = ROSE_DIAGNOSTIC;
  201. *dptr++ = diag;
  202. if (!rose_send_frame(skb, neigh))
  203. kfree_skb(skb);
  204. }
  205. /*
  206.  * This routine is called when a Clear Request is needed outside of the context
  207.  * of a connected socket.
  208.  */
  209. void rose_transmit_clear_request(struct rose_neigh *neigh, unsigned int lci, unsigned char cause, unsigned char diagnostic)
  210. {
  211. struct sk_buff *skb;
  212. unsigned char *dptr;
  213. int len;
  214. struct net_device *first;
  215. int faclen = 0;
  216. len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN + 3;
  217. first = rose_dev_first();
  218. if (first)
  219. faclen = 6 + AX25_ADDR_LEN + 3 + ROSE_ADDR_LEN;
  220. if ((skb = alloc_skb(len + faclen, GFP_ATOMIC)) == NULL)
  221. return;
  222. skb_reserve(skb, AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN);
  223. dptr = skb_put(skb, ROSE_MIN_LEN + 3 + faclen);
  224. *dptr++ = AX25_P_ROSE;
  225. *dptr++ = ((lci >> 8) & 0x0F) | ROSE_GFI;
  226. *dptr++ = ((lci >> 0) & 0xFF);
  227. *dptr++ = ROSE_CLEAR_REQUEST;
  228. *dptr++ = cause;
  229. *dptr++ = diagnostic;
  230. if (first) {
  231. *dptr++ = 0x00; /* Address length */
  232. *dptr++ = 4 + AX25_ADDR_LEN + 3 + ROSE_ADDR_LEN; /* Facilities length */
  233. *dptr++ = 0;
  234. *dptr++ = FAC_NATIONAL;
  235. *dptr++ = FAC_NATIONAL_FAIL_CALL;
  236. *dptr++ = AX25_ADDR_LEN;
  237. memcpy(dptr, &rose_callsign, AX25_ADDR_LEN);
  238. dptr += AX25_ADDR_LEN;
  239. *dptr++ = FAC_NATIONAL_FAIL_ADD;
  240. *dptr++ = ROSE_ADDR_LEN + 1;
  241. *dptr++ = ROSE_ADDR_LEN * 2;
  242. memcpy(dptr, first->dev_addr, ROSE_ADDR_LEN);
  243. }
  244. if (!rose_send_frame(skb, neigh))
  245. kfree_skb(skb);
  246. }
  247. void rose_transmit_link(struct sk_buff *skb, struct rose_neigh *neigh)
  248. {
  249. unsigned char *dptr;
  250. #if 0
  251. if (call_fw_firewall(PF_ROSE, skb->dev, skb->data, NULL, &skb) != FW_ACCEPT) {
  252. kfree_skb(skb);
  253. return;
  254. }
  255. #endif
  256. if (neigh->loopback) {
  257. rose_loopback_queue(skb, neigh);
  258. return;
  259. }
  260. if (!rose_link_up(neigh))
  261. neigh->restarted = 0;
  262. dptr = skb_push(skb, 1);
  263. *dptr++ = AX25_P_ROSE;
  264. if (neigh->restarted) {
  265. if (!rose_send_frame(skb, neigh))
  266. kfree_skb(skb);
  267. } else {
  268. skb_queue_tail(&neigh->queue, skb);
  269. if (!rose_t0timer_running(neigh)) {
  270. rose_transmit_restart_request(neigh);
  271. neigh->dce_mode = 0;
  272. rose_start_t0timer(neigh);
  273. }
  274. }
  275. }