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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* net/atm/pppoatm.c - RFC2364 PPP over ATM/AAL5 */
  2. /* Copyright 1999-2000 by Mitchell Blank Jr */
  3. /* Based on clip.c; 1995-1999 by Werner Almesberger, EPFL LRC/ICA */
  4. /* And on ppp_async.c; Copyright 1999 Paul Mackerras */
  5. /* And help from Jens Axboe */
  6. /*
  7.  *  This program 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.  * This driver provides the encapsulation and framing for sending
  13.  * and receiving PPP frames in ATM AAL5 PDUs.
  14.  */
  15. /*
  16.  * One shortcoming of this driver is that it does not comply with
  17.  * section 8 of RFC2364 - we are supposed to detect a change
  18.  * in encapsulation and immediately abort the connection (in order
  19.  * to avoid a black-hole being created if our peer loses state
  20.  * and changes encapsulation unilaterally.  However, since the
  21.  * ppp_generic layer actually does the decapsulation, we need
  22.  * a way of notifying it when we _think_ there might be a problem)
  23.  * There's two cases:
  24.  *   1. LLC-encapsulation was missing when it was enabled.  In
  25.  * this case, we should tell the upper layer "tear down
  26.  * this session if this skb looks ok to you"
  27.  *   2. LLC-encapsulation was present when it was disabled.  Then
  28.  * we need to tell the upper layer "this packet may be
  29.  * ok, but if its in error tear down the session"
  30.  * These hooks are not yet available in ppp_generic
  31.  */
  32. #include <linux/module.h>
  33. #include <linux/config.h>
  34. #include <linux/init.h>
  35. #include <linux/skbuff.h>
  36. #include <linux/atm.h>
  37. #include <linux/atmdev.h>
  38. #include <linux/ppp_defs.h>
  39. #include <linux/if_ppp.h>
  40. #include <linux/ppp_channel.h>
  41. #include <linux/atmppp.h>
  42. #if 0
  43. #define DPRINTK(format, args...) 
  44. printk(KERN_DEBUG "pppoatm: " format, ##args)
  45. #else
  46. #define DPRINTK(format, args...)
  47. #endif
  48. enum pppoatm_encaps {
  49. e_autodetect = PPPOATM_ENCAPS_AUTODETECT,
  50. e_vc = PPPOATM_ENCAPS_VC,
  51. e_llc = PPPOATM_ENCAPS_LLC,
  52. };
  53. struct pppoatm_vcc {
  54. struct atm_vcc *atmvcc; /* VCC descriptor */
  55. void (*old_push)(struct atm_vcc *, struct sk_buff *);
  56. void (*old_pop)(struct atm_vcc *, struct sk_buff *);
  57. /* keep old push/pop for detaching */
  58. enum pppoatm_encaps encaps;
  59. int flags; /* SC_COMP_PROT - compress protocol */
  60. struct ppp_channel chan; /* interface to generic ppp layer */
  61. struct tasklet_struct wakeup_tasklet;
  62. };
  63. /*
  64.  * Header used for LLC Encapsulated PPP (4 bytes) followed by the LCP protocol
  65.  * ID (0xC021) used in autodetection
  66.  */
  67. static const unsigned char pppllc[6] = { 0xFE, 0xFE, 0x03, 0xCF, 0xC0, 0x21 };
  68. #define LLC_LEN (4)
  69. static inline struct pppoatm_vcc *atmvcc_to_pvcc(const struct atm_vcc *atmvcc)
  70. {
  71. return (struct pppoatm_vcc *) (atmvcc->user_back);
  72. }
  73. static inline struct pppoatm_vcc *chan_to_pvcc(const struct ppp_channel *chan)
  74. {
  75. return (struct pppoatm_vcc *) (chan->private);
  76. }
  77. /*
  78.  * We can't do this directly from our _pop handler, since the ppp code
  79.  * doesn't want to be called in interrupt context, so we do it from
  80.  * a tasklet
  81.  */
  82. static void pppoatm_wakeup_sender(unsigned long arg)
  83. {
  84. ppp_output_wakeup((struct ppp_channel *) arg);
  85. }
  86. /*
  87.  * This gets called every time the ATM card has finished sending our
  88.  * skb.  The ->old_pop will take care up normal atm flow control,
  89.  * but we also need to wake up the device if we blocked it
  90.  */
  91. static void pppoatm_pop(struct atm_vcc *atmvcc, struct sk_buff *skb)
  92. {
  93. struct pppoatm_vcc *pvcc = atmvcc_to_pvcc(atmvcc);
  94. pvcc->old_pop(atmvcc, skb);
  95. /*
  96.  * We don't really always want to do this since it's
  97.  * really inefficient - it would be much better if we could
  98.  * test if we had actually throttled the generic layer.
  99.  * Unfortunately then there would be a nasty SMP race where
  100.  * we could clear that flag just as we refuse another packet.
  101.  * For now we do the safe thing.
  102.  */
  103. tasklet_schedule(&pvcc->wakeup_tasklet);
  104. }
  105. /*
  106.  * Unbind from PPP - currently we only do this when closing the socket,
  107.  * but we could put this into an ioctl if need be
  108.  */
  109. static void pppoatm_unassign_vcc(struct atm_vcc *atmvcc)
  110. {
  111. struct pppoatm_vcc *pvcc;
  112. pvcc = atmvcc_to_pvcc(atmvcc);
  113. atmvcc->push = pvcc->old_push;
  114. atmvcc->pop = pvcc->old_pop;
  115. tasklet_kill(&pvcc->wakeup_tasklet);
  116. ppp_unregister_channel(&pvcc->chan);
  117. atmvcc->user_back = NULL;
  118. kfree(pvcc);
  119. /* Gee, I hope we have the big kernel lock here... */
  120. MOD_DEC_USE_COUNT;
  121. }
  122. /* Called when an AAL5 PDU comes in */
  123. static void pppoatm_push(struct atm_vcc *atmvcc, struct sk_buff *skb)
  124. {
  125. struct pppoatm_vcc *pvcc = atmvcc_to_pvcc(atmvcc);
  126. DPRINTK("pppoatm pushn");
  127. if (skb == NULL) { /* VCC was closed */
  128. DPRINTK("removing ATMPPP VCC %pn", pvcc);
  129. pppoatm_unassign_vcc(atmvcc);
  130. atmvcc->push(atmvcc, NULL); /* Pass along bad news */
  131. return;
  132. }
  133. atm_return(atmvcc, skb->truesize);
  134. switch (pvcc->encaps) {
  135. case e_llc:
  136. if (skb->len < LLC_LEN ||
  137.     memcmp(skb->data, pppllc, LLC_LEN))
  138. goto error;
  139. skb_pull(skb, LLC_LEN);
  140. break;
  141. case e_autodetect:
  142. if (pvcc->chan.ppp == NULL) { /* Not bound yet! */
  143. kfree_skb(skb);
  144. return;
  145. }
  146. if (skb->len >= sizeof(pppllc) &&
  147.     !memcmp(skb->data, pppllc, sizeof(pppllc))) {
  148. pvcc->encaps = e_llc;
  149. skb_pull(skb, LLC_LEN);
  150. break;
  151. }
  152. if (skb->len >= (sizeof(pppllc) - LLC_LEN) &&
  153.     !memcmp(skb->data, &pppllc[LLC_LEN],
  154.     sizeof(pppllc) - LLC_LEN)) {
  155. pvcc->encaps = e_vc;
  156. pvcc->chan.mtu += LLC_LEN;
  157. break;
  158. }
  159. DPRINTK("(unit %d): Couldn't autodetect yet "
  160.     "(skb: %02X %02X %02X %02X %02X %02X)n",
  161.     pvcc->chan.unit,
  162.     skb->data[0], skb->data[1], skb->data[2],
  163.     skb->data[3], skb->data[4], skb->data[5]);
  164. goto error;
  165. case e_vc:
  166. break;
  167. }
  168. ppp_input(&pvcc->chan, skb);
  169. return;
  170.     error:
  171. kfree_skb(skb);
  172. ppp_input_error(&pvcc->chan, 0);
  173. }
  174. /*
  175.  * Called by the ppp_generic.c to send a packet - returns true if packet
  176.  * was accepted.  If we return false, then it's our job to call
  177.  * ppp_output_wakeup(chan) when we're feeling more up to it.
  178.  * Note that in the ENOMEM case (as opposed to the !atm_may_send case)
  179.  * we should really drop the packet, but the generic layer doesn't
  180.  * support this yet.  We just return 'DROP_PACKET' which we actually define
  181.  * as success, just to be clear what we're really doing.
  182.  */
  183. #define DROP_PACKET 1
  184. static int pppoatm_send(struct ppp_channel *chan, struct sk_buff *skb)
  185. {
  186. struct pppoatm_vcc *pvcc = chan_to_pvcc(chan);
  187. ATM_SKB(skb)->vcc = pvcc->atmvcc;
  188. DPRINTK("(unit %d): pppoatm_send (skb=0x%p, vcc=0x%p)n",
  189.     pvcc->chan.unit, skb, pvcc->atmvcc);
  190. if (skb->data[0] == '' && (pvcc->flags & SC_COMP_PROT))
  191. (void) skb_pull(skb, 1);
  192. switch (pvcc->encaps) { /* LLC encapsulation needed */
  193. case e_llc:
  194. if (skb_headroom(skb) < LLC_LEN) {
  195. struct sk_buff *n;
  196. n = skb_realloc_headroom(skb, LLC_LEN);
  197. if (n != NULL &&
  198.     !atm_may_send(pvcc->atmvcc, n->truesize)) {
  199. kfree_skb(n);
  200. goto nospace;
  201. }
  202. kfree_skb(skb);
  203. if ((skb = n) == NULL)
  204. return DROP_PACKET;
  205. } else if (!atm_may_send(pvcc->atmvcc, skb->truesize))
  206. goto nospace;
  207. memcpy(skb_push(skb, LLC_LEN), pppllc, LLC_LEN);
  208. break;
  209. case e_vc:
  210. if (!atm_may_send(pvcc->atmvcc, skb->truesize))
  211. goto nospace;
  212. break;
  213. case e_autodetect:
  214. DPRINTK("(unit %d): Trying to send without setting encaps!n",
  215.     pvcc->chan.unit);
  216. kfree_skb(skb);
  217. return 1;
  218. }
  219. atomic_add(skb->truesize, &ATM_SKB(skb)->vcc->tx_inuse);
  220. ATM_SKB(skb)->iovcnt = 0;
  221. ATM_SKB(skb)->atm_options = ATM_SKB(skb)->vcc->atm_options;
  222. DPRINTK("(unit %d): atm_skb(%p)->vcc(%p)->dev(%p)n",
  223.     pvcc->chan.unit, skb, ATM_SKB(skb)->vcc,
  224.     ATM_SKB(skb)->vcc->dev);
  225. return ATM_SKB(skb)->vcc->send(ATM_SKB(skb)->vcc, skb)
  226.     ? DROP_PACKET : 1;
  227.     nospace:
  228. /*
  229.  * We don't have space to send this SKB now, but we might have
  230.  * already applied SC_COMP_PROT compression, so may need to undo
  231.  */
  232. if ((pvcc->flags & SC_COMP_PROT) && skb_headroom(skb) > 0 &&
  233.     skb->data[-1] == '')
  234. (void) skb_push(skb, 1);
  235. return 0;
  236. }
  237. /* This handles ioctls sent to the /dev/ppp interface */
  238. static int pppoatm_devppp_ioctl(struct ppp_channel *chan, unsigned int cmd,
  239. unsigned long arg)
  240. {
  241. switch (cmd) {
  242. case PPPIOCGFLAGS:
  243. return put_user(chan_to_pvcc(chan)->flags, (int *) arg)
  244.     ? -EFAULT : 0;
  245. case PPPIOCSFLAGS:
  246. return get_user(chan_to_pvcc(chan)->flags, (int *) arg)
  247.     ? -EFAULT : 0;
  248. }
  249. return -ENOTTY;
  250. }
  251. static /*const*/ struct ppp_channel_ops pppoatm_ops = {
  252. start_xmit: pppoatm_send,
  253. ioctl: pppoatm_devppp_ioctl,
  254. };
  255. static int pppoatm_assign_vcc(struct atm_vcc *atmvcc, unsigned long arg)
  256. {
  257. struct atm_backend_ppp be;
  258. struct pppoatm_vcc *pvcc;
  259. int err;
  260. /*
  261.  * Each PPPoATM instance has its own tasklet - this is just a
  262.  * prototypical one used to initialize them
  263.  */
  264. static const DECLARE_TASKLET(tasklet_proto, pppoatm_wakeup_sender, 0);
  265. if (copy_from_user(&be, (void *) arg, sizeof be))
  266. return -EFAULT;
  267. if (be.encaps != PPPOATM_ENCAPS_AUTODETECT &&
  268.     be.encaps != PPPOATM_ENCAPS_VC && be.encaps != PPPOATM_ENCAPS_LLC)
  269. return -EINVAL;
  270. MOD_INC_USE_COUNT;
  271. pvcc = kmalloc(sizeof(*pvcc), GFP_KERNEL);
  272. if (pvcc == NULL) {
  273. MOD_DEC_USE_COUNT;
  274. return -ENOMEM;
  275. }
  276. memset(pvcc, 0, sizeof(*pvcc));
  277. pvcc->atmvcc = atmvcc;
  278. pvcc->old_push = atmvcc->push;
  279. pvcc->old_pop = atmvcc->pop;
  280. pvcc->encaps = (enum pppoatm_encaps) be.encaps;
  281. pvcc->chan.private = pvcc;
  282. pvcc->chan.ops = &pppoatm_ops;
  283. pvcc->chan.mtu = atmvcc->qos.txtp.max_sdu - PPP_HDRLEN -
  284.     (be.encaps == e_vc ? 0 : LLC_LEN);
  285. pvcc->wakeup_tasklet = tasklet_proto;
  286. pvcc->wakeup_tasklet.data = (unsigned long) &pvcc->chan;
  287. if ((err = ppp_register_channel(&pvcc->chan)) != 0) {
  288. kfree(pvcc);
  289. return err;
  290. }
  291. atmvcc->user_back = pvcc;
  292. atmvcc->push = pppoatm_push;
  293. atmvcc->pop = pppoatm_pop;
  294. return 0;
  295. }
  296. /*
  297.  * This handles ioctls actually performed on our vcc - we must return
  298.  * -ENOIOCTLCMD for any unrecognized ioctl
  299.  */
  300. static int pppoatm_ioctl(struct atm_vcc *atmvcc, unsigned int cmd,
  301. unsigned long arg)
  302. {
  303. if (cmd != ATM_SETBACKEND && atmvcc->push != pppoatm_push)
  304. return -ENOIOCTLCMD;
  305. switch (cmd) {
  306. case ATM_SETBACKEND: {
  307. atm_backend_t b;
  308. if (get_user(b, (atm_backend_t *) arg))
  309. return -EFAULT;
  310. if (b != ATM_BACKEND_PPP)
  311. return -ENOIOCTLCMD;
  312. if (!capable(CAP_NET_ADMIN))
  313. return -EPERM;
  314. return pppoatm_assign_vcc(atmvcc, arg);
  315. }
  316. case PPPIOCGCHAN:
  317. return put_user(ppp_channel_index(&atmvcc_to_pvcc(atmvcc)->
  318.     chan), (int *) arg) ? -EFAULT : 0;
  319. case PPPIOCGUNIT:
  320. return put_user(ppp_unit_number(&atmvcc_to_pvcc(atmvcc)->
  321.     chan), (int *) arg) ? -EFAULT : 0;
  322. }
  323. return -ENOIOCTLCMD;
  324. }
  325. /* the following avoids some spurious warnings from the compiler */
  326. #define UNUSED __attribute__((unused))
  327. extern int (*pppoatm_ioctl_hook)(struct atm_vcc *, unsigned int, unsigned long);
  328. static int __init UNUSED pppoatm_init(void)
  329. {
  330. pppoatm_ioctl_hook = pppoatm_ioctl;
  331. return 0;
  332. }
  333. static void __exit UNUSED pppoatm_exit(void)
  334. {
  335. pppoatm_ioctl_hook = NULL;
  336. }
  337. module_init(pppoatm_init);
  338. module_exit(pppoatm_exit);
  339. MODULE_AUTHOR("Mitchell Blank Jr <mitch@sfgoth.com>");
  340. MODULE_DESCRIPTION("RFC2364 PPP over ATM/AAL5");
  341. MODULE_LICENSE("GPL");