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

嵌入式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.  *      2000-09-04 Henner Eisen Prevent freeing a dangling skb.
  18.  */
  19. #include <linux/config.h>
  20. #include <linux/errno.h>
  21. #include <linux/types.h>
  22. #include <linux/socket.h>
  23. #include <linux/in.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/timer.h>
  27. #include <linux/string.h>
  28. #include <linux/sockios.h>
  29. #include <linux/net.h>
  30. #include <linux/stat.h>
  31. #include <linux/inet.h>
  32. #include <linux/netdevice.h>
  33. #include <linux/skbuff.h>
  34. #include <net/sock.h>
  35. #include <asm/segment.h>
  36. #include <asm/system.h>
  37. #include <asm/uaccess.h>
  38. #include <linux/fcntl.h>
  39. #include <linux/termios.h> /* For TIOCINQ/OUTQ */
  40. #include <linux/mm.h>
  41. #include <linux/interrupt.h>
  42. #include <linux/notifier.h>
  43. #include <linux/proc_fs.h>
  44. #include <linux/if_arp.h>
  45. #include <net/x25.h>
  46. static int x25_receive_data(struct sk_buff *skb, struct x25_neigh *neigh)
  47. {
  48. struct sock *sk;
  49. unsigned short frametype;
  50. unsigned int lci;
  51. frametype = skb->data[2];
  52.         lci = ((skb->data[0] << 8) & 0xF00) + ((skb->data[1] << 0) & 0x0FF);
  53. /*
  54.  * LCI of zero is always for us, and its always a link control
  55.  * frame.
  56.  */
  57. if (lci == 0) {
  58. x25_link_control(skb, neigh, frametype);
  59. return 0;
  60. }
  61. /*
  62.  * Find an existing socket.
  63.  */
  64. if ((sk = x25_find_socket(lci, neigh)) != NULL) {
  65. int queued = 1;
  66. skb->h.raw = skb->data;
  67. bh_lock_sock(sk);
  68. if (!sk->lock.users) {
  69. queued = x25_process_rx_frame(sk, skb);
  70. } else {
  71. sk_add_backlog(sk, skb);
  72. }
  73. bh_unlock_sock(sk);
  74. return queued;
  75. }
  76. /*
  77.  * Is is a Call Request ? if so process it.
  78.  */
  79. if (frametype == X25_CALL_REQUEST)
  80. return x25_rx_call_request(skb, neigh, lci);
  81. /*
  82.  * Its not a Call Request, nor is it a control frame.
  83.  *      Let caller throw it away.
  84.  */
  85. /*
  86. x25_transmit_clear_request(neigh, lci, 0x0D);
  87. */
  88. printk(KERN_DEBUG "x25_receive_data(): unknown frame type %2xn",frametype);
  89. return 0;
  90. }
  91. int x25_lapb_receive_frame(struct sk_buff *skb, struct net_device *dev, struct packet_type *ptype)
  92. {
  93. struct x25_neigh *neigh;
  94. int queued;
  95. skb->sk = NULL;
  96. /*
  97.  * Packet received from unrecognised device, throw it away.
  98.  */
  99. if ((neigh = x25_get_neigh(dev)) == NULL) {
  100. printk(KERN_DEBUG "X.25: unknown neighbour - %sn", dev->name);
  101. kfree_skb(skb);
  102. return 0;
  103. }
  104. switch (skb->data[0]) {
  105. case 0x00:
  106. skb_pull(skb, 1);
  107. queued = x25_receive_data(skb, neigh);
  108. if( ! queued )
  109. /* We need to free the skb ourselves because
  110.  * net_bh() won't care about our return code.
  111.  */
  112. kfree_skb(skb);
  113. return 0;
  114. case 0x01:
  115. x25_link_established(neigh);
  116. kfree_skb(skb);
  117. return 0;
  118. case 0x02:
  119. x25_link_terminated(neigh);
  120. kfree_skb(skb);
  121. return 0;
  122. case 0x03:
  123. kfree_skb(skb);
  124. return 0;
  125. default:
  126. kfree_skb(skb);
  127. return 0;
  128. }
  129. }
  130. int x25_llc_receive_frame(struct sk_buff *skb, struct net_device *dev, struct packet_type *ptype)
  131. {
  132. struct x25_neigh *neigh;
  133. skb->sk = NULL;
  134. /*
  135.  * Packet received from unrecognised device, throw it away.
  136.  */
  137. if ((neigh = x25_get_neigh(dev)) == NULL) {
  138. printk(KERN_DEBUG "X.25: unknown_neighbour - %sn", dev->name);
  139. kfree_skb(skb);
  140. return 0;
  141. }
  142. return x25_receive_data(skb, neigh);
  143. }
  144. void x25_establish_link(struct x25_neigh *neigh)
  145. {
  146. struct sk_buff *skb;
  147. unsigned char *ptr;
  148. switch (neigh->dev->type) {
  149. case ARPHRD_X25:
  150. if ((skb = alloc_skb(1, GFP_ATOMIC)) == NULL) {
  151. printk(KERN_ERR "x25_dev: out of memoryn");
  152. return;
  153. }
  154. ptr  = skb_put(skb, 1);
  155. *ptr = 0x01;
  156. break;
  157. #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
  158. case ARPHRD_ETHER:
  159. return;
  160. #endif
  161. default:
  162. return;
  163. }
  164. skb->protocol = htons(ETH_P_X25);
  165. skb->dev      = neigh->dev;
  166. dev_queue_xmit(skb);
  167. }
  168. void x25_terminate_link(struct x25_neigh *neigh)
  169. {
  170. struct sk_buff *skb;
  171. unsigned char *ptr;
  172. switch (neigh->dev->type) {
  173. case ARPHRD_X25:
  174. if ((skb = alloc_skb(1, GFP_ATOMIC)) == NULL) {
  175. printk(KERN_ERR "x25_dev: out of memoryn");
  176. return;
  177. }
  178. ptr  = skb_put(skb, 1);
  179. *ptr = 0x02;
  180. break;
  181. #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
  182. case ARPHRD_ETHER:
  183. return;
  184. #endif
  185. default:
  186. return;
  187. }
  188. skb->protocol = htons(ETH_P_X25);
  189. skb->dev      = neigh->dev;
  190. dev_queue_xmit(skb);
  191. }
  192. void x25_send_frame(struct sk_buff *skb, struct x25_neigh *neigh)
  193. {
  194. unsigned char *dptr;
  195. skb->nh.raw = skb->data;
  196. switch (neigh->dev->type) {
  197. case ARPHRD_X25:
  198. dptr  = skb_push(skb, 1);
  199. *dptr = 0x00;
  200. break;
  201. #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
  202. case ARPHRD_ETHER:
  203. kfree_skb(skb);
  204. return;
  205. #endif
  206. default:
  207. kfree_skb(skb);
  208. return;
  209. }
  210. skb->protocol = htons(ETH_P_X25);
  211. skb->dev      = neigh->dev;
  212. dev_queue_xmit(skb);
  213. }