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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: isdn_x25iface.c,v 1.1.4.1 2001/11/20 14:19:34 kai Exp $
  2.  *
  3.  * Linux ISDN subsystem, X.25 related functions
  4.  *
  5.  * This software may be used and distributed according to the terms
  6.  * of the GNU General Public License, incorporated herein by reference.
  7.  *
  8.  * stuff needed to support the Linux X.25 PLP code on top of devices that
  9.  * can provide a lab_b service using the concap_proto mechanism.
  10.  * This module supports a network interface wich provides lapb_sematics
  11.  * -- as defined in ../../Documentation/networking/x25-iface.txt -- to
  12.  * the upper layer and assumes that the lower layer provides a reliable
  13.  * data link service by means of the concap_device_ops callbacks.
  14.  *
  15.  * Only protocol specific stuff goes here. Device specific stuff
  16.  * goes to another -- device related -- concap_proto support source file.
  17.  *
  18.  */
  19. /* #include <linux/isdn.h> */
  20. #include <linux/netdevice.h>
  21. #include <linux/concap.h>
  22. #include <linux/wanrouter.h>
  23. #include "isdn_x25iface.h"
  24. /* for debugging messages not to cause an oops when device pointer is NULL*/
  25. #define MY_DEVNAME(dev)  ( (dev) ? (dev)->name : "DEVICE UNSPECIFIED" )
  26. typedef struct isdn_x25iface_proto_data {
  27. int magic;
  28. enum wan_states state;
  29. /* Private stuff, not to be accessed via proto_data. We provide the
  30.    other storage for the concap_proto instance here as well,
  31.    enabling us to allocate both with just one kmalloc(): */ 
  32. struct concap_proto priv;
  33. } ix25_pdata_t;
  34. /* is now in header file (extern): struct concap_proto * isdn_x25iface_proto_new(void); */
  35. void isdn_x25iface_proto_del( struct concap_proto * );
  36. int isdn_x25iface_proto_close( struct concap_proto * );
  37. int isdn_x25iface_proto_restart( struct concap_proto *,
  38.  struct net_device *,
  39.  struct concap_device_ops *);
  40. int isdn_x25iface_xmit( struct concap_proto *, struct sk_buff * );
  41. int isdn_x25iface_receive( struct concap_proto *, struct sk_buff * );
  42. int isdn_x25iface_connect_ind( struct concap_proto * );
  43. int isdn_x25iface_disconn_ind( struct concap_proto * );
  44. static struct concap_proto_ops ix25_pops = {
  45. &isdn_x25iface_proto_new,
  46. &isdn_x25iface_proto_del,
  47. &isdn_x25iface_proto_restart,
  48. &isdn_x25iface_proto_close,
  49. &isdn_x25iface_xmit,
  50. &isdn_x25iface_receive,
  51. &isdn_x25iface_connect_ind,
  52. &isdn_x25iface_disconn_ind
  53. };
  54. /* error message helper function */
  55. static void illegal_state_warn( unsigned state, unsigned char firstbyte) 
  56. {
  57. printk( KERN_WARNING "isdn_x25iface: firstbyte %x illegal in"
  58. "current state %dn",firstbyte, state );
  59. }
  60. /* check protocol data field for consistency */
  61. static int pdata_is_bad( ix25_pdata_t * pda ){
  62. if( pda  &&  pda -> magic == ISDN_X25IFACE_MAGIC ) return 0;
  63. printk( KERN_WARNING
  64. "isdn_x25iface_xxx: illegal pointer to proto datan" );
  65. return 1;
  66. }
  67. /* create a new x25 interface protocol instance
  68.  */
  69. struct concap_proto * isdn_x25iface_proto_new()
  70. {
  71. ix25_pdata_t * tmp = kmalloc(sizeof(ix25_pdata_t),GFP_KERNEL);
  72. IX25DEBUG("isdn_x25iface_proto_newn");
  73. if( tmp ){
  74. tmp -> magic = ISDN_X25IFACE_MAGIC;
  75. tmp -> state = WAN_UNCONFIGURED;
  76. /* private data space used to hold the concap_proto data.
  77.    Only to be accessed via the returned pointer */
  78. tmp -> priv.dops       = NULL;
  79. tmp -> priv.net_dev    = NULL;
  80. tmp -> priv.pops       = &ix25_pops;
  81. tmp -> priv.flags      = 0;
  82. tmp -> priv.proto_data = tmp;
  83. return( &(tmp -> priv) );
  84. }
  85. return NULL;
  86. };
  87. /* close the x25iface encapsulation protocol 
  88.  */
  89. int isdn_x25iface_proto_close(struct concap_proto *cprot){
  90. ix25_pdata_t *tmp;
  91.         int ret = 0;
  92. ulong flags;
  93. if( ! cprot ){
  94. printk( KERN_ERR "isdn_x25iface_proto_close: "
  95. "invalid concap_proto pointern" );
  96. return -1;
  97. }
  98. IX25DEBUG( "isdn_x25iface_proto_close %s n", MY_DEVNAME(cprot -> net_dev) );
  99. save_flags(flags);
  100. cli();  /* avoid races with incoming events calling pops methods while
  101.  cprot members are inconsistent */  
  102. cprot -> dops    = NULL;
  103. cprot -> net_dev = NULL;
  104. tmp = cprot -> proto_data;
  105. if( pdata_is_bad( tmp ) ){
  106. ret = -1;
  107. } else {
  108. tmp -> state = WAN_UNCONFIGURED;
  109. }
  110. restore_flags(flags);
  111. return ret;
  112. }
  113. /* Delete the x25iface encapsulation protocol instance
  114.  */
  115. void isdn_x25iface_proto_del(struct concap_proto *cprot){
  116. ix25_pdata_t * tmp;
  117.  
  118. IX25DEBUG( "isdn_x25iface_proto_del n" );
  119. if( ! cprot ){
  120. printk( KERN_ERR "isdn_x25iface_proto_del: "
  121. "concap_proto pointer is NULLn" );
  122. return;
  123. }
  124. tmp = cprot -> proto_data;
  125. if( tmp == NULL ){ 
  126. printk( KERN_ERR "isdn_x25iface_proto_del: inconsistent "
  127. "proto_data pointer (maybe already deleted?)n"); 
  128. return;
  129. }
  130. /* close if the protocol is still open */
  131. if( cprot -> dops ) isdn_x25iface_proto_close(cprot);
  132. /* freeing the storage should be sufficient now. But some additional
  133.    settings might help to catch wild pointer bugs */
  134. tmp -> magic = 0;
  135. cprot -> proto_data = NULL;
  136. kfree( tmp );
  137. return;
  138. }
  139. /* (re-)initialize the data structures for x25iface encapsulation
  140.  */
  141. int isdn_x25iface_proto_restart(struct concap_proto *cprot,
  142. struct net_device *ndev, 
  143. struct concap_device_ops *dops)
  144. {
  145. ix25_pdata_t * pda = cprot -> proto_data ;
  146. ulong flags;
  147. IX25DEBUG( "isdn_x25iface_proto_restart %s n", MY_DEVNAME(ndev) );
  148. if ( pdata_is_bad( pda ) ) return -1;
  149. if( !( dops  && dops -> data_req && dops -> connect_req 
  150.        && dops -> disconn_req )  ){
  151. printk( KERN_WARNING "isdn_x25iface_restart: required dops"
  152. " missingn" );
  153. isdn_x25iface_proto_close(cprot);
  154. return -1;
  155. }
  156. save_flags(flags);
  157. cli();  /* avoid races with incoming events calling pops methods while
  158.  cprot members are inconsistent */  
  159. cprot -> net_dev = ndev;
  160. cprot -> pops = &ix25_pops;
  161. cprot -> dops = dops;
  162. pda -> state = WAN_DISCONNECTED;
  163. restore_flags(flags);
  164. return 0;
  165. }
  166. /* deliver a dl_data frame received from i4l HL driver to the network layer 
  167.  */
  168. int isdn_x25iface_receive(struct concap_proto *cprot, struct sk_buff *skb)
  169. {
  170.    IX25DEBUG( "isdn_x25iface_receive %s n", MY_DEVNAME(cprot->net_dev) );
  171. if ( ( (ix25_pdata_t*) (cprot->proto_data) ) 
  172.      -> state == WAN_CONNECTED ){
  173. skb -> dev = cprot -> net_dev;
  174. skb -> protocol = htons(ETH_P_X25);
  175. skb -> pkt_type = PACKET_HOST;
  176. if( skb_push(skb, 1)){
  177. skb -> data[0]=0x00;
  178. skb -> mac.raw = skb -> data;
  179. netif_rx(skb);
  180. return 0;
  181. }
  182. }
  183. printk(KERN_WARNING "isdn_x25iface_receive %s: not connected, skb droppedn", MY_DEVNAME(cprot->net_dev) );
  184. dev_kfree_skb(skb);
  185. return -1;
  186. }
  187. /* a connection set up is indicated by lower layer 
  188.  */
  189. int isdn_x25iface_connect_ind(struct concap_proto *cprot)
  190. {
  191. struct sk_buff * skb = dev_alloc_skb(1);
  192. enum wan_states *state_p 
  193.   = &( ( (ix25_pdata_t*) (cprot->proto_data) ) -> state);
  194. IX25DEBUG( "isdn_x25iface_connect_ind %s n"
  195.    , MY_DEVNAME(cprot->net_dev) );
  196. if( *state_p == WAN_UNCONFIGURED ){ 
  197. printk(KERN_WARNING 
  198.        "isdn_x25iface_connect_ind while unconfigured %sn"
  199.        , MY_DEVNAME(cprot->net_dev) );
  200. return -1;
  201. }
  202. *state_p = WAN_CONNECTED;
  203. if( skb ){
  204. *( skb_put(skb, 1) ) = 0x01;
  205. skb -> mac.raw = skb -> data;
  206. skb -> dev  = cprot -> net_dev;
  207. skb -> protocol = htons(ETH_P_X25);
  208. skb -> pkt_type = PACKET_HOST;
  209. netif_rx(skb);
  210. return 0;
  211. } else {
  212. printk(KERN_WARNING "isdn_x25iface_connect_ind: "
  213.        " out of memory -- disconnectingn");
  214. cprot -> dops -> disconn_req(cprot);
  215. return -1;
  216. }
  217. }
  218. /* a disconnect is indicated by lower layer 
  219.  */
  220. int isdn_x25iface_disconn_ind(struct concap_proto *cprot)
  221. {
  222. struct sk_buff *skb;
  223. enum wan_states *state_p 
  224.   = &( ( (ix25_pdata_t*) (cprot->proto_data) ) -> state);
  225. IX25DEBUG( "isdn_x25iface_disconn_ind %s n", MY_DEVNAME(cprot -> net_dev) );
  226. if( *state_p == WAN_UNCONFIGURED ){ 
  227. printk(KERN_WARNING 
  228.        "isdn_x25iface_disconn_ind while unconfiguredn");
  229. return -1;
  230. }
  231. if(! cprot -> net_dev) return -1;
  232. *state_p = WAN_DISCONNECTED;
  233. skb = dev_alloc_skb(1);
  234. if( skb ){
  235. *( skb_put(skb, 1) ) = 0x02;
  236. skb -> mac.raw = skb -> data;
  237. skb -> dev  = cprot -> net_dev;
  238. skb -> protocol = htons(ETH_P_X25);
  239. skb -> pkt_type = PACKET_HOST;
  240. netif_rx(skb);
  241. return 0;
  242. } else {
  243. printk(KERN_WARNING "isdn_x25iface_disconn_ind:"
  244.        " out of memoryn");
  245. return -1;
  246. }
  247. }
  248. /* process a frame handed over to us from linux network layer. First byte
  249.    semantics as defined in ../../Documentation/networking/x25-iface.txt 
  250.    */
  251. int isdn_x25iface_xmit(struct concap_proto *cprot, struct sk_buff *skb)
  252. {
  253. unsigned char firstbyte = skb->data[0];
  254. unsigned *state = 
  255. &( ( (ix25_pdata_t*) (cprot -> proto_data) ) -> state  );
  256. int ret = 0;
  257. IX25DEBUG( "isdn_x25iface_xmit: %s first=%x state=%d n", MY_DEVNAME(cprot -> net_dev), firstbyte, *state );
  258. switch ( firstbyte ){
  259. case 0x00: /* dl_data request */
  260. if( *state == WAN_CONNECTED ){
  261. skb_pull(skb, 1);
  262. cprot -> net_dev -> trans_start = jiffies;
  263. ret = ( cprot -> dops -> data_req(cprot, skb) );
  264. /* prepare for future retransmissions */
  265. if( ret ) skb_push(skb,1);
  266. return ret;
  267. }
  268. illegal_state_warn( *state, firstbyte ); 
  269. break;
  270. case 0x01: /* dl_connect request */
  271. if( *state == WAN_DISCONNECTED ){
  272. *state = WAN_CONNECTING;
  273.         ret = cprot -> dops -> connect_req(cprot);
  274. if(ret){
  275. /* reset state and notify upper layer about
  276.  * immidiatly failed attempts */
  277. isdn_x25iface_disconn_ind(cprot);
  278. }
  279. } else {
  280. illegal_state_warn( *state, firstbyte );
  281. }
  282. break;
  283. case 0x02: /* dl_disconnect request */
  284. switch ( *state ){
  285. case WAN_DISCONNECTED: 
  286. /* Should not happen. However, give upper layer a
  287.    chance to recover from inconstistency  but don't
  288.    trust the lower layer sending the disconn_confirm
  289.    when already disconnected */
  290. printk(KERN_WARNING "isdn_x25iface_xmit: disconnect "
  291.        " requested while disconnectedn" );
  292. isdn_x25iface_disconn_ind(cprot);
  293. break; /* prevent infinite loops */
  294. case WAN_CONNECTING:
  295. case WAN_CONNECTED:
  296. *state = WAN_DISCONNECTED;
  297. cprot -> dops -> disconn_req(cprot);
  298. break;
  299. default:
  300. illegal_state_warn( *state, firstbyte );
  301. }
  302. break;
  303. case 0x03: /* changing lapb parameters requested */
  304. printk(KERN_WARNING "isdn_x25iface_xmit: setting of lapb"
  305.        " options not yet supportedn");
  306. break;
  307. default:
  308. printk(KERN_WARNING "isdn_x25iface_xmit: frame with illegal"
  309.        " first byte %x ignored:n", firstbyte);
  310. }
  311. dev_kfree_skb(skb);
  312. return 0;
  313. }