lapb_iface.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. /*
  2. * LAPB release 002
  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. * LAPB 001 Jonathan Naylor Started Coding
  14. * LAPB 002 Jonathan Naylor New timer architecture.
  15. * 2000-10-29 Henner Eisen lapb_data_indication() return status.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/errno.h>
  19. #include <linux/types.h>
  20. #include <linux/socket.h>
  21. #include <linux/in.h>
  22. #include <linux/kernel.h>
  23. #include <linux/jiffies.h>
  24. #include <linux/timer.h>
  25. #include <linux/string.h>
  26. #include <linux/sockios.h>
  27. #include <linux/net.h>
  28. #include <linux/inet.h>
  29. #include <linux/if_arp.h>
  30. #include <linux/skbuff.h>
  31. #include <linux/slab.h>
  32. #include <net/sock.h>
  33. #include <asm/uaccess.h>
  34. #include <asm/system.h>
  35. #include <linux/fcntl.h>
  36. #include <linux/mm.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/stat.h>
  39. #include <linux/init.h>
  40. #include <net/lapb.h>
  41. static LIST_HEAD(lapb_list);
  42. static DEFINE_RWLOCK(lapb_list_lock);
  43. /*
  44. * Free an allocated lapb control block.
  45. */
  46. static void lapb_free_cb(struct lapb_cb *lapb)
  47. {
  48. kfree(lapb);
  49. }
  50. static __inline__ void lapb_hold(struct lapb_cb *lapb)
  51. {
  52. atomic_inc(&lapb->refcnt);
  53. }
  54. static __inline__ void lapb_put(struct lapb_cb *lapb)
  55. {
  56. if (atomic_dec_and_test(&lapb->refcnt))
  57. lapb_free_cb(lapb);
  58. }
  59. /*
  60. * Socket removal during an interrupt is now safe.
  61. */
  62. static void __lapb_remove_cb(struct lapb_cb *lapb)
  63. {
  64. if (lapb->node.next) {
  65. list_del(&lapb->node);
  66. lapb_put(lapb);
  67. }
  68. }
  69. /*
  70. * Add a socket to the bound sockets list.
  71. */
  72. static void __lapb_insert_cb(struct lapb_cb *lapb)
  73. {
  74. list_add(&lapb->node, &lapb_list);
  75. lapb_hold(lapb);
  76. }
  77. static struct lapb_cb *__lapb_devtostruct(struct net_device *dev)
  78. {
  79. struct list_head *entry;
  80. struct lapb_cb *lapb, *use = NULL;
  81. list_for_each(entry, &lapb_list) {
  82. lapb = list_entry(entry, struct lapb_cb, node);
  83. if (lapb->dev == dev) {
  84. use = lapb;
  85. break;
  86. }
  87. }
  88. if (use)
  89. lapb_hold(use);
  90. return use;
  91. }
  92. static struct lapb_cb *lapb_devtostruct(struct net_device *dev)
  93. {
  94. struct lapb_cb *rc;
  95. read_lock_bh(&lapb_list_lock);
  96. rc = __lapb_devtostruct(dev);
  97. read_unlock_bh(&lapb_list_lock);
  98. return rc;
  99. }
  100. /*
  101. * Create an empty LAPB control block.
  102. */
  103. static struct lapb_cb *lapb_create_cb(void)
  104. {
  105. struct lapb_cb *lapb = kzalloc(sizeof(*lapb), GFP_ATOMIC);
  106. if (!lapb)
  107. goto out;
  108. skb_queue_head_init(&lapb->write_queue);
  109. skb_queue_head_init(&lapb->ack_queue);
  110. init_timer(&lapb->t1timer);
  111. init_timer(&lapb->t2timer);
  112. lapb->t1 = LAPB_DEFAULT_T1;
  113. lapb->t2 = LAPB_DEFAULT_T2;
  114. lapb->n2 = LAPB_DEFAULT_N2;
  115. lapb->mode = LAPB_DEFAULT_MODE;
  116. lapb->window = LAPB_DEFAULT_WINDOW;
  117. lapb->state = LAPB_STATE_0;
  118. atomic_set(&lapb->refcnt, 1);
  119. out:
  120. return lapb;
  121. }
  122. int lapb_register(struct net_device *dev,
  123. const struct lapb_register_struct *callbacks)
  124. {
  125. struct lapb_cb *lapb;
  126. int rc = LAPB_BADTOKEN;
  127. write_lock_bh(&lapb_list_lock);
  128. lapb = __lapb_devtostruct(dev);
  129. if (lapb) {
  130. lapb_put(lapb);
  131. goto out;
  132. }
  133. lapb = lapb_create_cb();
  134. rc = LAPB_NOMEM;
  135. if (!lapb)
  136. goto out;
  137. lapb->dev = dev;
  138. lapb->callbacks = callbacks;
  139. __lapb_insert_cb(lapb);
  140. lapb_start_t1timer(lapb);
  141. rc = LAPB_OK;
  142. out:
  143. write_unlock_bh(&lapb_list_lock);
  144. return rc;
  145. }
  146. int lapb_unregister(struct net_device *dev)
  147. {
  148. struct lapb_cb *lapb;
  149. int rc = LAPB_BADTOKEN;
  150. write_lock_bh(&lapb_list_lock);
  151. lapb = __lapb_devtostruct(dev);
  152. if (!lapb)
  153. goto out;
  154. lapb_stop_t1timer(lapb);
  155. lapb_stop_t2timer(lapb);
  156. lapb_clear_queues(lapb);
  157. __lapb_remove_cb(lapb);
  158. lapb_put(lapb);
  159. rc = LAPB_OK;
  160. out:
  161. write_unlock_bh(&lapb_list_lock);
  162. return rc;
  163. }
  164. int lapb_getparms(struct net_device *dev, struct lapb_parms_struct *parms)
  165. {
  166. int rc = LAPB_BADTOKEN;
  167. struct lapb_cb *lapb = lapb_devtostruct(dev);
  168. if (!lapb)
  169. goto out;
  170. parms->t1 = lapb->t1 / HZ;
  171. parms->t2 = lapb->t2 / HZ;
  172. parms->n2 = lapb->n2;
  173. parms->n2count = lapb->n2count;
  174. parms->state = lapb->state;
  175. parms->window = lapb->window;
  176. parms->mode = lapb->mode;
  177. if (!timer_pending(&lapb->t1timer))
  178. parms->t1timer = 0;
  179. else
  180. parms->t1timer = (lapb->t1timer.expires - jiffies) / HZ;
  181. if (!timer_pending(&lapb->t2timer))
  182. parms->t2timer = 0;
  183. else
  184. parms->t2timer = (lapb->t2timer.expires - jiffies) / HZ;
  185. lapb_put(lapb);
  186. rc = LAPB_OK;
  187. out:
  188. return rc;
  189. }
  190. int lapb_setparms(struct net_device *dev, struct lapb_parms_struct *parms)
  191. {
  192. int rc = LAPB_BADTOKEN;
  193. struct lapb_cb *lapb = lapb_devtostruct(dev);
  194. if (!lapb)
  195. goto out;
  196. rc = LAPB_INVALUE;
  197. if (parms->t1 < 1 || parms->t2 < 1 || parms->n2 < 1)
  198. goto out_put;
  199. if (lapb->state == LAPB_STATE_0) {
  200. if (parms->mode & LAPB_EXTENDED) {
  201. if (parms->window < 1 || parms->window > 127)
  202. goto out_put;
  203. } else {
  204. if (parms->window < 1 || parms->window > 7)
  205. goto out_put;
  206. }
  207. lapb->mode = parms->mode;
  208. lapb->window = parms->window;
  209. }
  210. lapb->t1 = parms->t1 * HZ;
  211. lapb->t2 = parms->t2 * HZ;
  212. lapb->n2 = parms->n2;
  213. rc = LAPB_OK;
  214. out_put:
  215. lapb_put(lapb);
  216. out:
  217. return rc;
  218. }
  219. int lapb_connect_request(struct net_device *dev)
  220. {
  221. struct lapb_cb *lapb = lapb_devtostruct(dev);
  222. int rc = LAPB_BADTOKEN;
  223. if (!lapb)
  224. goto out;
  225. rc = LAPB_OK;
  226. if (lapb->state == LAPB_STATE_1)
  227. goto out_put;
  228. rc = LAPB_CONNECTED;
  229. if (lapb->state == LAPB_STATE_3 || lapb->state == LAPB_STATE_4)
  230. goto out_put;
  231. lapb_establish_data_link(lapb);
  232. #if LAPB_DEBUG > 0
  233. printk(KERN_DEBUG "lapb: (%p) S0 -> S1\n", lapb->dev);
  234. #endif
  235. lapb->state = LAPB_STATE_1;
  236. rc = LAPB_OK;
  237. out_put:
  238. lapb_put(lapb);
  239. out:
  240. return rc;
  241. }
  242. int lapb_disconnect_request(struct net_device *dev)
  243. {
  244. struct lapb_cb *lapb = lapb_devtostruct(dev);
  245. int rc = LAPB_BADTOKEN;
  246. if (!lapb)
  247. goto out;
  248. switch (lapb->state) {
  249. case LAPB_STATE_0:
  250. rc = LAPB_NOTCONNECTED;
  251. goto out_put;
  252. case LAPB_STATE_1:
  253. #if LAPB_DEBUG > 1
  254. printk(KERN_DEBUG "lapb: (%p) S1 TX DISC(1)\n", lapb->dev);
  255. #endif
  256. #if LAPB_DEBUG > 0
  257. printk(KERN_DEBUG "lapb: (%p) S1 -> S0\n", lapb->dev);
  258. #endif
  259. lapb_send_control(lapb, LAPB_DISC, LAPB_POLLON, LAPB_COMMAND);
  260. lapb->state = LAPB_STATE_0;
  261. lapb_start_t1timer(lapb);
  262. rc = LAPB_NOTCONNECTED;
  263. goto out_put;
  264. case LAPB_STATE_2:
  265. rc = LAPB_OK;
  266. goto out_put;
  267. }
  268. lapb_clear_queues(lapb);
  269. lapb->n2count = 0;
  270. lapb_send_control(lapb, LAPB_DISC, LAPB_POLLON, LAPB_COMMAND);
  271. lapb_start_t1timer(lapb);
  272. lapb_stop_t2timer(lapb);
  273. lapb->state = LAPB_STATE_2;
  274. #if LAPB_DEBUG > 1
  275. printk(KERN_DEBUG "lapb: (%p) S3 DISC(1)\n", lapb->dev);
  276. #endif
  277. #if LAPB_DEBUG > 0
  278. printk(KERN_DEBUG "lapb: (%p) S3 -> S2\n", lapb->dev);
  279. #endif
  280. rc = LAPB_OK;
  281. out_put:
  282. lapb_put(lapb);
  283. out:
  284. return rc;
  285. }
  286. int lapb_data_request(struct net_device *dev, struct sk_buff *skb)
  287. {
  288. struct lapb_cb *lapb = lapb_devtostruct(dev);
  289. int rc = LAPB_BADTOKEN;
  290. if (!lapb)
  291. goto out;
  292. rc = LAPB_NOTCONNECTED;
  293. if (lapb->state != LAPB_STATE_3 && lapb->state != LAPB_STATE_4)
  294. goto out_put;
  295. skb_queue_tail(&lapb->write_queue, skb);
  296. lapb_kick(lapb);
  297. rc = LAPB_OK;
  298. out_put:
  299. lapb_put(lapb);
  300. out:
  301. return rc;
  302. }
  303. int lapb_data_received(struct net_device *dev, struct sk_buff *skb)
  304. {
  305. struct lapb_cb *lapb = lapb_devtostruct(dev);
  306. int rc = LAPB_BADTOKEN;
  307. if (lapb) {
  308. lapb_data_input(lapb, skb);
  309. lapb_put(lapb);
  310. rc = LAPB_OK;
  311. }
  312. return rc;
  313. }
  314. void lapb_connect_confirmation(struct lapb_cb *lapb, int reason)
  315. {
  316. if (lapb->callbacks->connect_confirmation)
  317. lapb->callbacks->connect_confirmation(lapb->dev, reason);
  318. }
  319. void lapb_connect_indication(struct lapb_cb *lapb, int reason)
  320. {
  321. if (lapb->callbacks->connect_indication)
  322. lapb->callbacks->connect_indication(lapb->dev, reason);
  323. }
  324. void lapb_disconnect_confirmation(struct lapb_cb *lapb, int reason)
  325. {
  326. if (lapb->callbacks->disconnect_confirmation)
  327. lapb->callbacks->disconnect_confirmation(lapb->dev, reason);
  328. }
  329. void lapb_disconnect_indication(struct lapb_cb *lapb, int reason)
  330. {
  331. if (lapb->callbacks->disconnect_indication)
  332. lapb->callbacks->disconnect_indication(lapb->dev, reason);
  333. }
  334. int lapb_data_indication(struct lapb_cb *lapb, struct sk_buff *skb)
  335. {
  336. if (lapb->callbacks->data_indication)
  337. return lapb->callbacks->data_indication(lapb->dev, skb);
  338. kfree_skb(skb);
  339. return NET_RX_SUCCESS; /* For now; must be != NET_RX_DROP */
  340. }
  341. int lapb_data_transmit(struct lapb_cb *lapb, struct sk_buff *skb)
  342. {
  343. int used = 0;
  344. if (lapb->callbacks->data_transmit) {
  345. lapb->callbacks->data_transmit(lapb->dev, skb);
  346. used = 1;
  347. }
  348. return used;
  349. }
  350. EXPORT_SYMBOL(lapb_register);
  351. EXPORT_SYMBOL(lapb_unregister);
  352. EXPORT_SYMBOL(lapb_getparms);
  353. EXPORT_SYMBOL(lapb_setparms);
  354. EXPORT_SYMBOL(lapb_connect_request);
  355. EXPORT_SYMBOL(lapb_disconnect_request);
  356. EXPORT_SYMBOL(lapb_data_request);
  357. EXPORT_SYMBOL(lapb_data_received);
  358. static int __init lapb_init(void)
  359. {
  360. return 0;
  361. }
  362. static void __exit lapb_exit(void)
  363. {
  364. WARN_ON(!list_empty(&lapb_list));
  365. }
  366. MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
  367. MODULE_DESCRIPTION("The X.25 Link Access Procedure B link layer protocol");
  368. MODULE_LICENSE("GPL");
  369. module_init(lapb_init);
  370. module_exit(lapb_exit);