| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * PPP async serial channel driver for Linux. | 
|  | 3 | * | 
|  | 4 | * Copyright 1999 Paul Mackerras. | 
|  | 5 | * | 
|  | 6 | *  This program is free software; you can redistribute it and/or | 
|  | 7 | *  modify it under the terms of the GNU General Public License | 
|  | 8 | *  as published by the Free Software Foundation; either version | 
|  | 9 | *  2 of the License, or (at your option) any later version. | 
|  | 10 | * | 
|  | 11 | * This driver provides the encapsulation and framing for sending | 
|  | 12 | * and receiving PPP frames over async serial lines.  It relies on | 
|  | 13 | * the generic PPP layer to give it frames to send and to process | 
|  | 14 | * received frames.  It implements the PPP line discipline. | 
|  | 15 | * | 
|  | 16 | * Part of the code in this driver was inspired by the old async-only | 
|  | 17 | * PPP driver, written by Michael Callahan and Al Longyear, and | 
|  | 18 | * subsequently hacked by Paul Mackerras. | 
|  | 19 | */ | 
|  | 20 |  | 
|  | 21 | #include <linux/module.h> | 
|  | 22 | #include <linux/kernel.h> | 
|  | 23 | #include <linux/skbuff.h> | 
|  | 24 | #include <linux/tty.h> | 
|  | 25 | #include <linux/netdevice.h> | 
|  | 26 | #include <linux/poll.h> | 
|  | 27 | #include <linux/crc-ccitt.h> | 
|  | 28 | #include <linux/ppp_defs.h> | 
|  | 29 | #include <linux/if_ppp.h> | 
|  | 30 | #include <linux/ppp_channel.h> | 
|  | 31 | #include <linux/spinlock.h> | 
|  | 32 | #include <linux/init.h> | 
| Marcelo Feitoza Parisi | ff5688a | 2006-01-09 18:37:15 -0800 | [diff] [blame] | 33 | #include <linux/jiffies.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> | 
| Changli Gao | 96545ae | 2011-01-06 13:37:36 +0000 | [diff] [blame] | 35 | #include <asm/unaligned.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/uaccess.h> | 
| Philippe De Muyter | 6722e78 | 2005-11-08 09:40:26 -0800 | [diff] [blame] | 37 | #include <asm/string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 |  | 
|  | 39 | #define PPP_VERSION	"2.4.2" | 
|  | 40 |  | 
| fangxiaozhi | 208f203 | 2009-11-17 04:02:24 -0800 | [diff] [blame] | 41 | #define OBUFSIZE	4096 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
|  | 43 | /* Structure for storing local state. */ | 
|  | 44 | struct asyncppp { | 
|  | 45 | struct tty_struct *tty; | 
|  | 46 | unsigned int	flags; | 
|  | 47 | unsigned int	state; | 
|  | 48 | unsigned int	rbits; | 
|  | 49 | int		mru; | 
|  | 50 | spinlock_t	xmit_lock; | 
|  | 51 | spinlock_t	recv_lock; | 
|  | 52 | unsigned long	xmit_flags; | 
|  | 53 | u32		xaccm[8]; | 
|  | 54 | u32		raccm; | 
|  | 55 | unsigned int	bytes_sent; | 
|  | 56 | unsigned int	bytes_rcvd; | 
|  | 57 |  | 
|  | 58 | struct sk_buff	*tpkt; | 
|  | 59 | int		tpkt_pos; | 
|  | 60 | u16		tfcs; | 
|  | 61 | unsigned char	*optr; | 
|  | 62 | unsigned char	*olim; | 
|  | 63 | unsigned long	last_xmit; | 
|  | 64 |  | 
|  | 65 | struct sk_buff	*rpkt; | 
|  | 66 | int		lcp_fcs; | 
|  | 67 | struct sk_buff_head rqueue; | 
|  | 68 |  | 
|  | 69 | struct tasklet_struct tsk; | 
|  | 70 |  | 
|  | 71 | atomic_t	refcnt; | 
|  | 72 | struct semaphore dead_sem; | 
|  | 73 | struct ppp_channel chan;	/* interface to generic ppp layer */ | 
|  | 74 | unsigned char	obuf[OBUFSIZE]; | 
|  | 75 | }; | 
|  | 76 |  | 
|  | 77 | /* Bit numbers in xmit_flags */ | 
|  | 78 | #define XMIT_WAKEUP	0 | 
|  | 79 | #define XMIT_FULL	1 | 
|  | 80 | #define XMIT_BUSY	2 | 
|  | 81 |  | 
|  | 82 | /* State bits */ | 
|  | 83 | #define SC_TOSS		1 | 
|  | 84 | #define SC_ESCAPE	2 | 
|  | 85 | #define SC_PREV_ERROR	4 | 
|  | 86 |  | 
|  | 87 | /* Bits in rbits */ | 
|  | 88 | #define SC_RCV_BITS	(SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP) | 
|  | 89 |  | 
|  | 90 | static int flag_time = HZ; | 
|  | 91 | module_param(flag_time, int, 0); | 
|  | 92 | MODULE_PARM_DESC(flag_time, "ppp_async: interval between flagged packets (in clock ticks)"); | 
|  | 93 | MODULE_LICENSE("GPL"); | 
|  | 94 | MODULE_ALIAS_LDISC(N_PPP); | 
|  | 95 |  | 
|  | 96 | /* | 
|  | 97 | * Prototypes. | 
|  | 98 | */ | 
|  | 99 | static int ppp_async_encode(struct asyncppp *ap); | 
|  | 100 | static int ppp_async_send(struct ppp_channel *chan, struct sk_buff *skb); | 
|  | 101 | static int ppp_async_push(struct asyncppp *ap); | 
|  | 102 | static void ppp_async_flush_output(struct asyncppp *ap); | 
|  | 103 | static void ppp_async_input(struct asyncppp *ap, const unsigned char *buf, | 
|  | 104 | char *flags, int count); | 
|  | 105 | static int ppp_async_ioctl(struct ppp_channel *chan, unsigned int cmd, | 
|  | 106 | unsigned long arg); | 
|  | 107 | static void ppp_async_process(unsigned long arg); | 
|  | 108 |  | 
|  | 109 | static void async_lcp_peek(struct asyncppp *ap, unsigned char *data, | 
|  | 110 | int len, int inbound); | 
|  | 111 |  | 
| stephen hemminger | d7100da | 2010-08-04 07:34:36 +0000 | [diff] [blame] | 112 | static const struct ppp_channel_ops async_ops = { | 
|  | 113 | .start_xmit = ppp_async_send, | 
|  | 114 | .ioctl      = ppp_async_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | }; | 
|  | 116 |  | 
|  | 117 | /* | 
|  | 118 | * Routines implementing the PPP line discipline. | 
|  | 119 | */ | 
|  | 120 |  | 
|  | 121 | /* | 
|  | 122 | * We have a potential race on dereferencing tty->disc_data, | 
|  | 123 | * because the tty layer provides no locking at all - thus one | 
|  | 124 | * cpu could be running ppp_asynctty_receive while another | 
|  | 125 | * calls ppp_asynctty_close, which zeroes tty->disc_data and | 
|  | 126 | * frees the memory that ppp_asynctty_receive is using.  The best | 
|  | 127 | * way to fix this is to use a rwlock in the tty struct, but for now | 
|  | 128 | * we use a single global rwlock for all ttys in ppp line discipline. | 
|  | 129 | * | 
| Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 130 | * FIXME: this is no longer true. The _close path for the ldisc is | 
|  | 131 | * now guaranteed to be sane. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | */ | 
|  | 133 | static DEFINE_RWLOCK(disc_data_lock); | 
|  | 134 |  | 
|  | 135 | static struct asyncppp *ap_get(struct tty_struct *tty) | 
|  | 136 | { | 
|  | 137 | struct asyncppp *ap; | 
|  | 138 |  | 
|  | 139 | read_lock(&disc_data_lock); | 
|  | 140 | ap = tty->disc_data; | 
|  | 141 | if (ap != NULL) | 
|  | 142 | atomic_inc(&ap->refcnt); | 
|  | 143 | read_unlock(&disc_data_lock); | 
|  | 144 | return ap; | 
|  | 145 | } | 
|  | 146 |  | 
|  | 147 | static void ap_put(struct asyncppp *ap) | 
|  | 148 | { | 
|  | 149 | if (atomic_dec_and_test(&ap->refcnt)) | 
|  | 150 | up(&ap->dead_sem); | 
|  | 151 | } | 
|  | 152 |  | 
|  | 153 | /* | 
|  | 154 | * Called when a tty is put into PPP line discipline. Called in process | 
|  | 155 | * context. | 
|  | 156 | */ | 
|  | 157 | static int | 
|  | 158 | ppp_asynctty_open(struct tty_struct *tty) | 
|  | 159 | { | 
|  | 160 | struct asyncppp *ap; | 
|  | 161 | int err; | 
| Gabriele Paoloni | 9c70526 | 2009-03-13 16:09:12 -0700 | [diff] [blame] | 162 | int speed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 164 | if (tty->ops->write == NULL) | 
|  | 165 | return -EOPNOTSUPP; | 
|  | 166 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | err = -ENOMEM; | 
| Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 168 | ap = kzalloc(sizeof(*ap), GFP_KERNEL); | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 169 | if (!ap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | goto out; | 
|  | 171 |  | 
|  | 172 | /* initialize the asyncppp structure */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | ap->tty = tty; | 
|  | 174 | ap->mru = PPP_MRU; | 
|  | 175 | spin_lock_init(&ap->xmit_lock); | 
|  | 176 | spin_lock_init(&ap->recv_lock); | 
|  | 177 | ap->xaccm[0] = ~0U; | 
|  | 178 | ap->xaccm[3] = 0x60000000U; | 
|  | 179 | ap->raccm = ~0U; | 
|  | 180 | ap->optr = ap->obuf; | 
|  | 181 | ap->olim = ap->obuf; | 
|  | 182 | ap->lcp_fcs = -1; | 
|  | 183 |  | 
|  | 184 | skb_queue_head_init(&ap->rqueue); | 
|  | 185 | tasklet_init(&ap->tsk, ppp_async_process, (unsigned long) ap); | 
|  | 186 |  | 
|  | 187 | atomic_set(&ap->refcnt, 1); | 
| Thomas Gleixner | 0bce198 | 2010-09-07 14:32:22 +0000 | [diff] [blame] | 188 | sema_init(&ap->dead_sem, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 |  | 
|  | 190 | ap->chan.private = ap; | 
|  | 191 | ap->chan.ops = &async_ops; | 
|  | 192 | ap->chan.mtu = PPP_MRU; | 
| Gabriele Paoloni | 9c70526 | 2009-03-13 16:09:12 -0700 | [diff] [blame] | 193 | speed = tty_get_baud_rate(tty); | 
|  | 194 | ap->chan.speed = speed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | err = ppp_register_channel(&ap->chan); | 
|  | 196 | if (err) | 
|  | 197 | goto out_free; | 
|  | 198 |  | 
|  | 199 | tty->disc_data = ap; | 
| Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 200 | tty->receive_room = 65536; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return 0; | 
|  | 202 |  | 
|  | 203 | out_free: | 
|  | 204 | kfree(ap); | 
|  | 205 | out: | 
|  | 206 | return err; | 
|  | 207 | } | 
|  | 208 |  | 
|  | 209 | /* | 
|  | 210 | * Called when the tty is put into another line discipline | 
|  | 211 | * or it hangs up.  We have to wait for any cpu currently | 
|  | 212 | * executing in any of the other ppp_asynctty_* routines to | 
|  | 213 | * finish before we can call ppp_unregister_channel and free | 
|  | 214 | * the asyncppp struct.  This routine must be called from | 
|  | 215 | * process context, not interrupt or softirq context. | 
|  | 216 | */ | 
|  | 217 | static void | 
|  | 218 | ppp_asynctty_close(struct tty_struct *tty) | 
|  | 219 | { | 
|  | 220 | struct asyncppp *ap; | 
|  | 221 |  | 
|  | 222 | write_lock_irq(&disc_data_lock); | 
|  | 223 | ap = tty->disc_data; | 
|  | 224 | tty->disc_data = NULL; | 
|  | 225 | write_unlock_irq(&disc_data_lock); | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 226 | if (!ap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | return; | 
|  | 228 |  | 
|  | 229 | /* | 
|  | 230 | * We have now ensured that nobody can start using ap from now | 
|  | 231 | * on, but we have to wait for all existing users to finish. | 
|  | 232 | * Note that ppp_unregister_channel ensures that no calls to | 
|  | 233 | * our channel ops (i.e. ppp_async_send/ioctl) are in progress | 
|  | 234 | * by the time it returns. | 
|  | 235 | */ | 
|  | 236 | if (!atomic_dec_and_test(&ap->refcnt)) | 
|  | 237 | down(&ap->dead_sem); | 
|  | 238 | tasklet_kill(&ap->tsk); | 
|  | 239 |  | 
|  | 240 | ppp_unregister_channel(&ap->chan); | 
| Wei Yongjun | 1d2f8c9 | 2009-02-25 00:16:08 +0000 | [diff] [blame] | 241 | kfree_skb(ap->rpkt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | skb_queue_purge(&ap->rqueue); | 
| Wei Yongjun | 1d2f8c9 | 2009-02-25 00:16:08 +0000 | [diff] [blame] | 243 | kfree_skb(ap->tpkt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | kfree(ap); | 
|  | 245 | } | 
|  | 246 |  | 
|  | 247 | /* | 
|  | 248 | * Called on tty hangup in process context. | 
|  | 249 | * | 
|  | 250 | * Wait for I/O to driver to complete and unregister PPP channel. | 
|  | 251 | * This is already done by the close routine, so just call that. | 
|  | 252 | */ | 
|  | 253 | static int ppp_asynctty_hangup(struct tty_struct *tty) | 
|  | 254 | { | 
|  | 255 | ppp_asynctty_close(tty); | 
|  | 256 | return 0; | 
|  | 257 | } | 
|  | 258 |  | 
|  | 259 | /* | 
|  | 260 | * Read does nothing - no data is ever available this way. | 
|  | 261 | * Pppd reads and writes packets via /dev/ppp instead. | 
|  | 262 | */ | 
|  | 263 | static ssize_t | 
|  | 264 | ppp_asynctty_read(struct tty_struct *tty, struct file *file, | 
|  | 265 | unsigned char __user *buf, size_t count) | 
|  | 266 | { | 
|  | 267 | return -EAGAIN; | 
|  | 268 | } | 
|  | 269 |  | 
|  | 270 | /* | 
|  | 271 | * Write on the tty does nothing, the packets all come in | 
|  | 272 | * from the ppp generic stuff. | 
|  | 273 | */ | 
|  | 274 | static ssize_t | 
|  | 275 | ppp_asynctty_write(struct tty_struct *tty, struct file *file, | 
|  | 276 | const unsigned char *buf, size_t count) | 
|  | 277 | { | 
|  | 278 | return -EAGAIN; | 
|  | 279 | } | 
|  | 280 |  | 
|  | 281 | /* | 
|  | 282 | * Called in process context only. May be re-entered by multiple | 
|  | 283 | * ioctl calling threads. | 
|  | 284 | */ | 
| Jeff Garzik | 6aa20a2 | 2006-09-13 13:24:59 -0400 | [diff] [blame] | 285 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | static int | 
|  | 287 | ppp_asynctty_ioctl(struct tty_struct *tty, struct file *file, | 
|  | 288 | unsigned int cmd, unsigned long arg) | 
|  | 289 | { | 
|  | 290 | struct asyncppp *ap = ap_get(tty); | 
|  | 291 | int err, val; | 
|  | 292 | int __user *p = (int __user *)arg; | 
|  | 293 |  | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 294 | if (!ap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | return -ENXIO; | 
|  | 296 | err = -EFAULT; | 
|  | 297 | switch (cmd) { | 
|  | 298 | case PPPIOCGCHAN: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | err = -EFAULT; | 
|  | 300 | if (put_user(ppp_channel_index(&ap->chan), p)) | 
|  | 301 | break; | 
|  | 302 | err = 0; | 
|  | 303 | break; | 
|  | 304 |  | 
|  | 305 | case PPPIOCGUNIT: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | err = -EFAULT; | 
|  | 307 | if (put_user(ppp_unit_number(&ap->chan), p)) | 
|  | 308 | break; | 
|  | 309 | err = 0; | 
|  | 310 | break; | 
|  | 311 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | case TCFLSH: | 
|  | 313 | /* flush our buffers and the serial port's buffer */ | 
|  | 314 | if (arg == TCIOFLUSH || arg == TCOFLUSH) | 
|  | 315 | ppp_async_flush_output(ap); | 
| Alan Cox | d012753 | 2007-11-07 01:27:34 -0800 | [diff] [blame] | 316 | err = tty_perform_flush(tty, arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | break; | 
|  | 318 |  | 
|  | 319 | case FIONREAD: | 
|  | 320 | val = 0; | 
|  | 321 | if (put_user(val, p)) | 
|  | 322 | break; | 
|  | 323 | err = 0; | 
|  | 324 | break; | 
|  | 325 |  | 
|  | 326 | default: | 
| Alan Cox | d012753 | 2007-11-07 01:27:34 -0800 | [diff] [blame] | 327 | /* Try the various mode ioctls */ | 
|  | 328 | err = tty_mode_ioctl(tty, file, cmd, arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } | 
|  | 330 |  | 
|  | 331 | ap_put(ap); | 
|  | 332 | return err; | 
|  | 333 | } | 
|  | 334 |  | 
|  | 335 | /* No kernel lock - fine */ | 
|  | 336 | static unsigned int | 
|  | 337 | ppp_asynctty_poll(struct tty_struct *tty, struct file *file, poll_table *wait) | 
|  | 338 | { | 
|  | 339 | return 0; | 
|  | 340 | } | 
|  | 341 |  | 
| Tilman Schmidt | 92d326f | 2009-10-01 04:28:44 +0000 | [diff] [blame] | 342 | /* May sleep, don't call from interrupt level or with interrupts disabled */ | 
| Felipe Balbi | b1c43f8 | 2011-03-21 12:25:08 +0200 | [diff] [blame] | 343 | static unsigned int | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | ppp_asynctty_receive(struct tty_struct *tty, const unsigned char *buf, | 
|  | 345 | char *cflags, int count) | 
|  | 346 | { | 
|  | 347 | struct asyncppp *ap = ap_get(tty); | 
|  | 348 | unsigned long flags; | 
|  | 349 |  | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 350 | if (!ap) | 
| Felipe Balbi | b1c43f8 | 2011-03-21 12:25:08 +0200 | [diff] [blame] | 351 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | spin_lock_irqsave(&ap->recv_lock, flags); | 
|  | 353 | ppp_async_input(ap, buf, cflags, count); | 
|  | 354 | spin_unlock_irqrestore(&ap->recv_lock, flags); | 
| David S. Miller | b03efcf | 2005-07-08 14:57:23 -0700 | [diff] [blame] | 355 | if (!skb_queue_empty(&ap->rqueue)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | tasklet_schedule(&ap->tsk); | 
|  | 357 | ap_put(ap); | 
| Linus Torvalds | 4a21b8c | 2009-07-16 09:14:23 -0700 | [diff] [blame] | 358 | tty_unthrottle(tty); | 
| Felipe Balbi | b1c43f8 | 2011-03-21 12:25:08 +0200 | [diff] [blame] | 359 |  | 
|  | 360 | return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } | 
|  | 362 |  | 
|  | 363 | static void | 
|  | 364 | ppp_asynctty_wakeup(struct tty_struct *tty) | 
|  | 365 | { | 
|  | 366 | struct asyncppp *ap = ap_get(tty); | 
|  | 367 |  | 
|  | 368 | clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 369 | if (!ap) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | return; | 
|  | 371 | set_bit(XMIT_WAKEUP, &ap->xmit_flags); | 
|  | 372 | tasklet_schedule(&ap->tsk); | 
|  | 373 | ap_put(ap); | 
|  | 374 | } | 
|  | 375 |  | 
|  | 376 |  | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 377 | static struct tty_ldisc_ops ppp_ldisc = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | .owner  = THIS_MODULE, | 
|  | 379 | .magic	= TTY_LDISC_MAGIC, | 
|  | 380 | .name	= "ppp", | 
|  | 381 | .open	= ppp_asynctty_open, | 
|  | 382 | .close	= ppp_asynctty_close, | 
|  | 383 | .hangup	= ppp_asynctty_hangup, | 
|  | 384 | .read	= ppp_asynctty_read, | 
|  | 385 | .write	= ppp_asynctty_write, | 
|  | 386 | .ioctl	= ppp_asynctty_ioctl, | 
|  | 387 | .poll	= ppp_asynctty_poll, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | .receive_buf = ppp_asynctty_receive, | 
|  | 389 | .write_wakeup = ppp_asynctty_wakeup, | 
|  | 390 | }; | 
|  | 391 |  | 
|  | 392 | static int __init | 
|  | 393 | ppp_async_init(void) | 
|  | 394 | { | 
|  | 395 | int err; | 
|  | 396 |  | 
|  | 397 | err = tty_register_ldisc(N_PPP, &ppp_ldisc); | 
|  | 398 | if (err != 0) | 
|  | 399 | printk(KERN_ERR "PPP_async: error %d registering line disc.\n", | 
|  | 400 | err); | 
|  | 401 | return err; | 
|  | 402 | } | 
|  | 403 |  | 
|  | 404 | /* | 
|  | 405 | * The following routines provide the PPP channel interface. | 
|  | 406 | */ | 
|  | 407 | static int | 
|  | 408 | ppp_async_ioctl(struct ppp_channel *chan, unsigned int cmd, unsigned long arg) | 
|  | 409 | { | 
|  | 410 | struct asyncppp *ap = chan->private; | 
|  | 411 | void __user *argp = (void __user *)arg; | 
|  | 412 | int __user *p = argp; | 
|  | 413 | int err, val; | 
|  | 414 | u32 accm[8]; | 
|  | 415 |  | 
|  | 416 | err = -EFAULT; | 
|  | 417 | switch (cmd) { | 
|  | 418 | case PPPIOCGFLAGS: | 
|  | 419 | val = ap->flags | ap->rbits; | 
|  | 420 | if (put_user(val, p)) | 
|  | 421 | break; | 
|  | 422 | err = 0; | 
|  | 423 | break; | 
|  | 424 | case PPPIOCSFLAGS: | 
|  | 425 | if (get_user(val, p)) | 
|  | 426 | break; | 
|  | 427 | ap->flags = val & ~SC_RCV_BITS; | 
|  | 428 | spin_lock_irq(&ap->recv_lock); | 
|  | 429 | ap->rbits = val & SC_RCV_BITS; | 
|  | 430 | spin_unlock_irq(&ap->recv_lock); | 
|  | 431 | err = 0; | 
|  | 432 | break; | 
|  | 433 |  | 
|  | 434 | case PPPIOCGASYNCMAP: | 
|  | 435 | if (put_user(ap->xaccm[0], (u32 __user *)argp)) | 
|  | 436 | break; | 
|  | 437 | err = 0; | 
|  | 438 | break; | 
|  | 439 | case PPPIOCSASYNCMAP: | 
|  | 440 | if (get_user(ap->xaccm[0], (u32 __user *)argp)) | 
|  | 441 | break; | 
|  | 442 | err = 0; | 
|  | 443 | break; | 
|  | 444 |  | 
|  | 445 | case PPPIOCGRASYNCMAP: | 
|  | 446 | if (put_user(ap->raccm, (u32 __user *)argp)) | 
|  | 447 | break; | 
|  | 448 | err = 0; | 
|  | 449 | break; | 
|  | 450 | case PPPIOCSRASYNCMAP: | 
|  | 451 | if (get_user(ap->raccm, (u32 __user *)argp)) | 
|  | 452 | break; | 
|  | 453 | err = 0; | 
|  | 454 | break; | 
|  | 455 |  | 
|  | 456 | case PPPIOCGXASYNCMAP: | 
|  | 457 | if (copy_to_user(argp, ap->xaccm, sizeof(ap->xaccm))) | 
|  | 458 | break; | 
|  | 459 | err = 0; | 
|  | 460 | break; | 
|  | 461 | case PPPIOCSXASYNCMAP: | 
|  | 462 | if (copy_from_user(accm, argp, sizeof(accm))) | 
|  | 463 | break; | 
|  | 464 | accm[2] &= ~0x40000000U;	/* can't escape 0x5e */ | 
|  | 465 | accm[3] |= 0x60000000U;		/* must escape 0x7d, 0x7e */ | 
|  | 466 | memcpy(ap->xaccm, accm, sizeof(ap->xaccm)); | 
|  | 467 | err = 0; | 
|  | 468 | break; | 
|  | 469 |  | 
|  | 470 | case PPPIOCGMRU: | 
|  | 471 | if (put_user(ap->mru, p)) | 
|  | 472 | break; | 
|  | 473 | err = 0; | 
|  | 474 | break; | 
|  | 475 | case PPPIOCSMRU: | 
|  | 476 | if (get_user(val, p)) | 
|  | 477 | break; | 
|  | 478 | if (val < PPP_MRU) | 
|  | 479 | val = PPP_MRU; | 
|  | 480 | ap->mru = val; | 
|  | 481 | err = 0; | 
|  | 482 | break; | 
|  | 483 |  | 
|  | 484 | default: | 
|  | 485 | err = -ENOTTY; | 
|  | 486 | } | 
|  | 487 |  | 
|  | 488 | return err; | 
|  | 489 | } | 
|  | 490 |  | 
|  | 491 | /* | 
|  | 492 | * This is called at softirq level to deliver received packets | 
|  | 493 | * to the ppp_generic code, and to tell the ppp_generic code | 
|  | 494 | * if we can accept more output now. | 
|  | 495 | */ | 
|  | 496 | static void ppp_async_process(unsigned long arg) | 
|  | 497 | { | 
|  | 498 | struct asyncppp *ap = (struct asyncppp *) arg; | 
|  | 499 | struct sk_buff *skb; | 
|  | 500 |  | 
|  | 501 | /* process received packets */ | 
|  | 502 | while ((skb = skb_dequeue(&ap->rqueue)) != NULL) { | 
|  | 503 | if (skb->cb[0]) | 
|  | 504 | ppp_input_error(&ap->chan, 0); | 
|  | 505 | ppp_input(&ap->chan, skb); | 
|  | 506 | } | 
|  | 507 |  | 
|  | 508 | /* try to push more stuff out */ | 
|  | 509 | if (test_bit(XMIT_WAKEUP, &ap->xmit_flags) && ppp_async_push(ap)) | 
|  | 510 | ppp_output_wakeup(&ap->chan); | 
|  | 511 | } | 
|  | 512 |  | 
|  | 513 | /* | 
|  | 514 | * Procedures for encapsulation and framing. | 
|  | 515 | */ | 
|  | 516 |  | 
|  | 517 | /* | 
|  | 518 | * Procedure to encode the data for async serial transmission. | 
|  | 519 | * Does octet stuffing (escaping), puts the address/control bytes | 
|  | 520 | * on if A/C compression is disabled, and does protocol compression. | 
|  | 521 | * Assumes ap->tpkt != 0 on entry. | 
|  | 522 | * Returns 1 if we finished the current frame, 0 otherwise. | 
|  | 523 | */ | 
|  | 524 |  | 
|  | 525 | #define PUT_BYTE(ap, buf, c, islcp)	do {		\ | 
|  | 526 | if ((islcp && c < 0x20) || (ap->xaccm[c >> 5] & (1 << (c & 0x1f)))) {\ | 
|  | 527 | *buf++ = PPP_ESCAPE;			\ | 
|  | 528 | *buf++ = c ^ 0x20;			\ | 
|  | 529 | } else						\ | 
|  | 530 | *buf++ = c;				\ | 
|  | 531 | } while (0) | 
|  | 532 |  | 
|  | 533 | static int | 
|  | 534 | ppp_async_encode(struct asyncppp *ap) | 
|  | 535 | { | 
|  | 536 | int fcs, i, count, c, proto; | 
|  | 537 | unsigned char *buf, *buflim; | 
|  | 538 | unsigned char *data; | 
|  | 539 | int islcp; | 
|  | 540 |  | 
|  | 541 | buf = ap->obuf; | 
|  | 542 | ap->olim = buf; | 
|  | 543 | ap->optr = buf; | 
|  | 544 | i = ap->tpkt_pos; | 
|  | 545 | data = ap->tpkt->data; | 
|  | 546 | count = ap->tpkt->len; | 
|  | 547 | fcs = ap->tfcs; | 
| Changli Gao | 96545ae | 2011-01-06 13:37:36 +0000 | [diff] [blame] | 548 | proto = get_unaligned_be16(data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 |  | 
|  | 550 | /* | 
|  | 551 | * LCP packets with code values between 1 (configure-reqest) | 
|  | 552 | * and 7 (code-reject) must be sent as though no options | 
|  | 553 | * had been negotiated. | 
|  | 554 | */ | 
|  | 555 | islcp = proto == PPP_LCP && 1 <= data[2] && data[2] <= 7; | 
|  | 556 |  | 
|  | 557 | if (i == 0) { | 
|  | 558 | if (islcp) | 
|  | 559 | async_lcp_peek(ap, data, count, 0); | 
|  | 560 |  | 
|  | 561 | /* | 
|  | 562 | * Start of a new packet - insert the leading FLAG | 
|  | 563 | * character if necessary. | 
|  | 564 | */ | 
| Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 565 | if (islcp || flag_time == 0 || | 
|  | 566 | time_after_eq(jiffies, ap->last_xmit + flag_time)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | *buf++ = PPP_FLAG; | 
|  | 568 | ap->last_xmit = jiffies; | 
|  | 569 | fcs = PPP_INITFCS; | 
|  | 570 |  | 
|  | 571 | /* | 
|  | 572 | * Put in the address/control bytes if necessary | 
|  | 573 | */ | 
|  | 574 | if ((ap->flags & SC_COMP_AC) == 0 || islcp) { | 
|  | 575 | PUT_BYTE(ap, buf, 0xff, islcp); | 
|  | 576 | fcs = PPP_FCS(fcs, 0xff); | 
|  | 577 | PUT_BYTE(ap, buf, 0x03, islcp); | 
|  | 578 | fcs = PPP_FCS(fcs, 0x03); | 
|  | 579 | } | 
|  | 580 | } | 
|  | 581 |  | 
|  | 582 | /* | 
|  | 583 | * Once we put in the last byte, we need to put in the FCS | 
|  | 584 | * and closing flag, so make sure there is at least 7 bytes | 
|  | 585 | * of free space in the output buffer. | 
|  | 586 | */ | 
|  | 587 | buflim = ap->obuf + OBUFSIZE - 6; | 
|  | 588 | while (i < count && buf < buflim) { | 
|  | 589 | c = data[i++]; | 
|  | 590 | if (i == 1 && c == 0 && (ap->flags & SC_COMP_PROT)) | 
|  | 591 | continue;	/* compress protocol field */ | 
|  | 592 | fcs = PPP_FCS(fcs, c); | 
|  | 593 | PUT_BYTE(ap, buf, c, islcp); | 
|  | 594 | } | 
|  | 595 |  | 
|  | 596 | if (i < count) { | 
|  | 597 | /* | 
|  | 598 | * Remember where we are up to in this packet. | 
|  | 599 | */ | 
|  | 600 | ap->olim = buf; | 
|  | 601 | ap->tpkt_pos = i; | 
|  | 602 | ap->tfcs = fcs; | 
|  | 603 | return 0; | 
|  | 604 | } | 
|  | 605 |  | 
|  | 606 | /* | 
|  | 607 | * We have finished the packet.  Add the FCS and flag. | 
|  | 608 | */ | 
|  | 609 | fcs = ~fcs; | 
|  | 610 | c = fcs & 0xff; | 
|  | 611 | PUT_BYTE(ap, buf, c, islcp); | 
|  | 612 | c = (fcs >> 8) & 0xff; | 
|  | 613 | PUT_BYTE(ap, buf, c, islcp); | 
|  | 614 | *buf++ = PPP_FLAG; | 
|  | 615 | ap->olim = buf; | 
|  | 616 |  | 
|  | 617 | kfree_skb(ap->tpkt); | 
|  | 618 | ap->tpkt = NULL; | 
|  | 619 | return 1; | 
|  | 620 | } | 
|  | 621 |  | 
|  | 622 | /* | 
|  | 623 | * Transmit-side routines. | 
|  | 624 | */ | 
|  | 625 |  | 
|  | 626 | /* | 
|  | 627 | * Send a packet to the peer over an async tty line. | 
|  | 628 | * Returns 1 iff the packet was accepted. | 
|  | 629 | * If the packet was not accepted, we will call ppp_output_wakeup | 
|  | 630 | * at some later time. | 
|  | 631 | */ | 
|  | 632 | static int | 
|  | 633 | ppp_async_send(struct ppp_channel *chan, struct sk_buff *skb) | 
|  | 634 | { | 
|  | 635 | struct asyncppp *ap = chan->private; | 
|  | 636 |  | 
|  | 637 | ppp_async_push(ap); | 
|  | 638 |  | 
|  | 639 | if (test_and_set_bit(XMIT_FULL, &ap->xmit_flags)) | 
|  | 640 | return 0;	/* already full */ | 
|  | 641 | ap->tpkt = skb; | 
|  | 642 | ap->tpkt_pos = 0; | 
|  | 643 |  | 
|  | 644 | ppp_async_push(ap); | 
|  | 645 | return 1; | 
|  | 646 | } | 
|  | 647 |  | 
|  | 648 | /* | 
|  | 649 | * Push as much data as possible out to the tty. | 
|  | 650 | */ | 
|  | 651 | static int | 
|  | 652 | ppp_async_push(struct asyncppp *ap) | 
|  | 653 | { | 
|  | 654 | int avail, sent, done = 0; | 
|  | 655 | struct tty_struct *tty = ap->tty; | 
|  | 656 | int tty_stuffed = 0; | 
|  | 657 |  | 
|  | 658 | /* | 
|  | 659 | * We can get called recursively here if the tty write | 
|  | 660 | * function calls our wakeup function.  This can happen | 
|  | 661 | * for example on a pty with both the master and slave | 
|  | 662 | * set to PPP line discipline. | 
|  | 663 | * We use the XMIT_BUSY bit to detect this and get out, | 
|  | 664 | * leaving the XMIT_WAKEUP bit set to tell the other | 
|  | 665 | * instance that it may now be able to write more now. | 
|  | 666 | */ | 
|  | 667 | if (test_and_set_bit(XMIT_BUSY, &ap->xmit_flags)) | 
|  | 668 | return 0; | 
|  | 669 | spin_lock_bh(&ap->xmit_lock); | 
|  | 670 | for (;;) { | 
|  | 671 | if (test_and_clear_bit(XMIT_WAKEUP, &ap->xmit_flags)) | 
|  | 672 | tty_stuffed = 0; | 
|  | 673 | if (!tty_stuffed && ap->optr < ap->olim) { | 
|  | 674 | avail = ap->olim - ap->optr; | 
|  | 675 | set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 676 | sent = tty->ops->write(tty, ap->optr, avail); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | if (sent < 0) | 
|  | 678 | goto flush;	/* error, e.g. loss of CD */ | 
|  | 679 | ap->optr += sent; | 
|  | 680 | if (sent < avail) | 
|  | 681 | tty_stuffed = 1; | 
|  | 682 | continue; | 
|  | 683 | } | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 684 | if (ap->optr >= ap->olim && ap->tpkt) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | if (ppp_async_encode(ap)) { | 
|  | 686 | /* finished processing ap->tpkt */ | 
|  | 687 | clear_bit(XMIT_FULL, &ap->xmit_flags); | 
|  | 688 | done = 1; | 
|  | 689 | } | 
|  | 690 | continue; | 
|  | 691 | } | 
|  | 692 | /* | 
|  | 693 | * We haven't made any progress this time around. | 
|  | 694 | * Clear XMIT_BUSY to let other callers in, but | 
|  | 695 | * after doing so we have to check if anyone set | 
|  | 696 | * XMIT_WAKEUP since we last checked it.  If they | 
|  | 697 | * did, we should try again to set XMIT_BUSY and go | 
|  | 698 | * around again in case XMIT_BUSY was still set when | 
|  | 699 | * the other caller tried. | 
|  | 700 | */ | 
|  | 701 | clear_bit(XMIT_BUSY, &ap->xmit_flags); | 
|  | 702 | /* any more work to do? if not, exit the loop */ | 
| Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 703 | if (!(test_bit(XMIT_WAKEUP, &ap->xmit_flags) || | 
|  | 704 | (!tty_stuffed && ap->tpkt))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | break; | 
|  | 706 | /* more work to do, see if we can do it now */ | 
|  | 707 | if (test_and_set_bit(XMIT_BUSY, &ap->xmit_flags)) | 
|  | 708 | break; | 
|  | 709 | } | 
|  | 710 | spin_unlock_bh(&ap->xmit_lock); | 
|  | 711 | return done; | 
|  | 712 |  | 
|  | 713 | flush: | 
|  | 714 | clear_bit(XMIT_BUSY, &ap->xmit_flags); | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 715 | if (ap->tpkt) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | kfree_skb(ap->tpkt); | 
|  | 717 | ap->tpkt = NULL; | 
|  | 718 | clear_bit(XMIT_FULL, &ap->xmit_flags); | 
|  | 719 | done = 1; | 
|  | 720 | } | 
|  | 721 | ap->optr = ap->olim; | 
|  | 722 | spin_unlock_bh(&ap->xmit_lock); | 
|  | 723 | return done; | 
|  | 724 | } | 
|  | 725 |  | 
|  | 726 | /* | 
|  | 727 | * Flush output from our internal buffers. | 
|  | 728 | * Called for the TCFLSH ioctl. Can be entered in parallel | 
|  | 729 | * but this is covered by the xmit_lock. | 
|  | 730 | */ | 
|  | 731 | static void | 
|  | 732 | ppp_async_flush_output(struct asyncppp *ap) | 
|  | 733 | { | 
|  | 734 | int done = 0; | 
|  | 735 |  | 
|  | 736 | spin_lock_bh(&ap->xmit_lock); | 
|  | 737 | ap->optr = ap->olim; | 
|  | 738 | if (ap->tpkt != NULL) { | 
|  | 739 | kfree_skb(ap->tpkt); | 
|  | 740 | ap->tpkt = NULL; | 
|  | 741 | clear_bit(XMIT_FULL, &ap->xmit_flags); | 
|  | 742 | done = 1; | 
|  | 743 | } | 
|  | 744 | spin_unlock_bh(&ap->xmit_lock); | 
|  | 745 | if (done) | 
|  | 746 | ppp_output_wakeup(&ap->chan); | 
|  | 747 | } | 
|  | 748 |  | 
|  | 749 | /* | 
|  | 750 | * Receive-side routines. | 
|  | 751 | */ | 
|  | 752 |  | 
|  | 753 | /* see how many ordinary chars there are at the start of buf */ | 
|  | 754 | static inline int | 
|  | 755 | scan_ordinary(struct asyncppp *ap, const unsigned char *buf, int count) | 
|  | 756 | { | 
|  | 757 | int i, c; | 
|  | 758 |  | 
|  | 759 | for (i = 0; i < count; ++i) { | 
|  | 760 | c = buf[i]; | 
| Joe Perches | 8e95a20 | 2009-12-03 07:58:21 +0000 | [diff] [blame] | 761 | if (c == PPP_ESCAPE || c == PPP_FLAG || | 
|  | 762 | (c < 0x20 && (ap->raccm & (1 << c)) != 0)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | break; | 
|  | 764 | } | 
|  | 765 | return i; | 
|  | 766 | } | 
|  | 767 |  | 
|  | 768 | /* called when a flag is seen - do end-of-packet processing */ | 
|  | 769 | static void | 
|  | 770 | process_input_packet(struct asyncppp *ap) | 
|  | 771 | { | 
|  | 772 | struct sk_buff *skb; | 
|  | 773 | unsigned char *p; | 
|  | 774 | unsigned int len, fcs, proto; | 
|  | 775 |  | 
|  | 776 | skb = ap->rpkt; | 
|  | 777 | if (ap->state & (SC_TOSS | SC_ESCAPE)) | 
|  | 778 | goto err; | 
|  | 779 |  | 
|  | 780 | if (skb == NULL) | 
|  | 781 | return;		/* 0-length packet */ | 
|  | 782 |  | 
|  | 783 | /* check the FCS */ | 
|  | 784 | p = skb->data; | 
|  | 785 | len = skb->len; | 
|  | 786 | if (len < 3) | 
|  | 787 | goto err;	/* too short */ | 
|  | 788 | fcs = PPP_INITFCS; | 
|  | 789 | for (; len > 0; --len) | 
|  | 790 | fcs = PPP_FCS(fcs, *p++); | 
|  | 791 | if (fcs != PPP_GOODFCS) | 
|  | 792 | goto err;	/* bad FCS */ | 
|  | 793 | skb_trim(skb, skb->len - 2); | 
|  | 794 |  | 
|  | 795 | /* check for address/control and protocol compression */ | 
|  | 796 | p = skb->data; | 
| Paul Mackerras | 7c5050e | 2007-04-19 13:05:52 -0700 | [diff] [blame] | 797 | if (p[0] == PPP_ALLSTATIONS) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | /* chop off address/control */ | 
| Paul Mackerras | 7c5050e | 2007-04-19 13:05:52 -0700 | [diff] [blame] | 799 | if (p[1] != PPP_UI || skb->len < 3) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | goto err; | 
|  | 801 | p = skb_pull(skb, 2); | 
|  | 802 | } | 
|  | 803 | proto = p[0]; | 
|  | 804 | if (proto & 1) { | 
|  | 805 | /* protocol is compressed */ | 
|  | 806 | skb_push(skb, 1)[0] = 0; | 
|  | 807 | } else { | 
|  | 808 | if (skb->len < 2) | 
|  | 809 | goto err; | 
|  | 810 | proto = (proto << 8) + p[1]; | 
|  | 811 | if (proto == PPP_LCP) | 
|  | 812 | async_lcp_peek(ap, p, skb->len, 1); | 
|  | 813 | } | 
|  | 814 |  | 
|  | 815 | /* queue the frame to be processed */ | 
|  | 816 | skb->cb[0] = ap->state; | 
|  | 817 | skb_queue_tail(&ap->rqueue, skb); | 
|  | 818 | ap->rpkt = NULL; | 
|  | 819 | ap->state = 0; | 
|  | 820 | return; | 
|  | 821 |  | 
|  | 822 | err: | 
|  | 823 | /* frame had an error, remember that, reset SC_TOSS & SC_ESCAPE */ | 
|  | 824 | ap->state = SC_PREV_ERROR; | 
| Philippe De Muyter | 6722e78 | 2005-11-08 09:40:26 -0800 | [diff] [blame] | 825 | if (skb) { | 
|  | 826 | /* make skb appear as freshly allocated */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | skb_trim(skb, 0); | 
| Philippe De Muyter | 6722e78 | 2005-11-08 09:40:26 -0800 | [diff] [blame] | 828 | skb_reserve(skb, - skb_headroom(skb)); | 
|  | 829 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } | 
|  | 831 |  | 
|  | 832 | /* Called when the tty driver has data for us. Runs parallel with the | 
|  | 833 | other ldisc functions but will not be re-entered */ | 
|  | 834 |  | 
|  | 835 | static void | 
|  | 836 | ppp_async_input(struct asyncppp *ap, const unsigned char *buf, | 
|  | 837 | char *flags, int count) | 
|  | 838 | { | 
|  | 839 | struct sk_buff *skb; | 
|  | 840 | int c, i, j, n, s, f; | 
|  | 841 | unsigned char *sp; | 
|  | 842 |  | 
|  | 843 | /* update bits used for 8-bit cleanness detection */ | 
|  | 844 | if (~ap->rbits & SC_RCV_BITS) { | 
|  | 845 | s = 0; | 
|  | 846 | for (i = 0; i < count; ++i) { | 
|  | 847 | c = buf[i]; | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 848 | if (flags && flags[i] != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | continue; | 
|  | 850 | s |= (c & 0x80)? SC_RCV_B7_1: SC_RCV_B7_0; | 
|  | 851 | c = ((c >> 4) ^ c) & 0xf; | 
|  | 852 | s |= (0x6996 & (1 << c))? SC_RCV_ODDP: SC_RCV_EVNP; | 
|  | 853 | } | 
|  | 854 | ap->rbits |= s; | 
|  | 855 | } | 
|  | 856 |  | 
|  | 857 | while (count > 0) { | 
|  | 858 | /* scan through and see how many chars we can do in bulk */ | 
|  | 859 | if ((ap->state & SC_ESCAPE) && buf[0] == PPP_ESCAPE) | 
|  | 860 | n = 1; | 
|  | 861 | else | 
|  | 862 | n = scan_ordinary(ap, buf, count); | 
|  | 863 |  | 
|  | 864 | f = 0; | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 865 | if (flags && (ap->state & SC_TOSS) == 0) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | /* check the flags to see if any char had an error */ | 
|  | 867 | for (j = 0; j < n; ++j) | 
|  | 868 | if ((f = flags[j]) != 0) | 
|  | 869 | break; | 
|  | 870 | } | 
|  | 871 | if (f != 0) { | 
|  | 872 | /* start tossing */ | 
|  | 873 | ap->state |= SC_TOSS; | 
|  | 874 |  | 
|  | 875 | } else if (n > 0 && (ap->state & SC_TOSS) == 0) { | 
|  | 876 | /* stuff the chars in the skb */ | 
|  | 877 | skb = ap->rpkt; | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 878 | if (!skb) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | skb = dev_alloc_skb(ap->mru + PPP_HDRLEN + 2); | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 880 | if (!skb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | goto nomem; | 
| Philippe De Muyter | 6722e78 | 2005-11-08 09:40:26 -0800 | [diff] [blame] | 882 | ap->rpkt = skb; | 
|  | 883 | } | 
|  | 884 | if (skb->len == 0) { | 
|  | 885 | /* Try to get the payload 4-byte aligned. | 
|  | 886 | * This should match the | 
|  | 887 | * PPP_ALLSTATIONS/PPP_UI/compressed tests in | 
|  | 888 | * process_input_packet, but we do not have | 
|  | 889 | * enough chars here to test buf[1] and buf[2]. | 
|  | 890 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | if (buf[0] != PPP_ALLSTATIONS) | 
|  | 892 | skb_reserve(skb, 2 + (buf[0] & 1)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } | 
|  | 894 | if (n > skb_tailroom(skb)) { | 
|  | 895 | /* packet overflowed MRU */ | 
|  | 896 | ap->state |= SC_TOSS; | 
|  | 897 | } else { | 
|  | 898 | sp = skb_put(skb, n); | 
|  | 899 | memcpy(sp, buf, n); | 
|  | 900 | if (ap->state & SC_ESCAPE) { | 
|  | 901 | sp[0] ^= 0x20; | 
|  | 902 | ap->state &= ~SC_ESCAPE; | 
|  | 903 | } | 
|  | 904 | } | 
|  | 905 | } | 
|  | 906 |  | 
|  | 907 | if (n >= count) | 
|  | 908 | break; | 
|  | 909 |  | 
|  | 910 | c = buf[n]; | 
|  | 911 | if (flags != NULL && flags[n] != 0) { | 
|  | 912 | ap->state |= SC_TOSS; | 
|  | 913 | } else if (c == PPP_FLAG) { | 
|  | 914 | process_input_packet(ap); | 
|  | 915 | } else if (c == PPP_ESCAPE) { | 
|  | 916 | ap->state |= SC_ESCAPE; | 
|  | 917 | } else if (I_IXON(ap->tty)) { | 
|  | 918 | if (c == START_CHAR(ap->tty)) | 
|  | 919 | start_tty(ap->tty); | 
|  | 920 | else if (c == STOP_CHAR(ap->tty)) | 
|  | 921 | stop_tty(ap->tty); | 
|  | 922 | } | 
|  | 923 | /* otherwise it's a char in the recv ACCM */ | 
|  | 924 | ++n; | 
|  | 925 |  | 
|  | 926 | buf += n; | 
| Joe Perches | cd228d5 | 2007-11-12 18:07:31 -0800 | [diff] [blame] | 927 | if (flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | flags += n; | 
|  | 929 | count -= n; | 
|  | 930 | } | 
|  | 931 | return; | 
|  | 932 |  | 
|  | 933 | nomem: | 
|  | 934 | printk(KERN_ERR "PPPasync: no memory (input pkt)\n"); | 
|  | 935 | ap->state |= SC_TOSS; | 
|  | 936 | } | 
|  | 937 |  | 
|  | 938 | /* | 
|  | 939 | * We look at LCP frames going past so that we can notice | 
|  | 940 | * and react to the LCP configure-ack from the peer. | 
|  | 941 | * In the situation where the peer has been sent a configure-ack | 
|  | 942 | * already, LCP is up once it has sent its configure-ack | 
|  | 943 | * so the immediately following packet can be sent with the | 
|  | 944 | * configured LCP options.  This allows us to process the following | 
|  | 945 | * packet correctly without pppd needing to respond quickly. | 
|  | 946 | * | 
|  | 947 | * We only respond to the received configure-ack if we have just | 
|  | 948 | * sent a configure-request, and the configure-ack contains the | 
|  | 949 | * same data (this is checked using a 16-bit crc of the data). | 
|  | 950 | */ | 
|  | 951 | #define CONFREQ		1	/* LCP code field values */ | 
|  | 952 | #define CONFACK		2 | 
|  | 953 | #define LCP_MRU		1	/* LCP option numbers */ | 
|  | 954 | #define LCP_ASYNCMAP	2 | 
|  | 955 |  | 
|  | 956 | static void async_lcp_peek(struct asyncppp *ap, unsigned char *data, | 
|  | 957 | int len, int inbound) | 
|  | 958 | { | 
|  | 959 | int dlen, fcs, i, code; | 
|  | 960 | u32 val; | 
|  | 961 |  | 
|  | 962 | data += 2;		/* skip protocol bytes */ | 
|  | 963 | len -= 2; | 
|  | 964 | if (len < 4)		/* 4 = code, ID, length */ | 
|  | 965 | return; | 
|  | 966 | code = data[0]; | 
|  | 967 | if (code != CONFACK && code != CONFREQ) | 
|  | 968 | return; | 
| Changli Gao | 96545ae | 2011-01-06 13:37:36 +0000 | [diff] [blame] | 969 | dlen = get_unaligned_be16(data + 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | if (len < dlen) | 
|  | 971 | return;		/* packet got truncated or length is bogus */ | 
|  | 972 |  | 
|  | 973 | if (code == (inbound? CONFACK: CONFREQ)) { | 
|  | 974 | /* | 
|  | 975 | * sent confreq or received confack: | 
|  | 976 | * calculate the crc of the data from the ID field on. | 
|  | 977 | */ | 
|  | 978 | fcs = PPP_INITFCS; | 
|  | 979 | for (i = 1; i < dlen; ++i) | 
|  | 980 | fcs = PPP_FCS(fcs, data[i]); | 
|  | 981 |  | 
|  | 982 | if (!inbound) { | 
|  | 983 | /* outbound confreq - remember the crc for later */ | 
|  | 984 | ap->lcp_fcs = fcs; | 
|  | 985 | return; | 
|  | 986 | } | 
|  | 987 |  | 
|  | 988 | /* received confack, check the crc */ | 
|  | 989 | fcs ^= ap->lcp_fcs; | 
|  | 990 | ap->lcp_fcs = -1; | 
|  | 991 | if (fcs != 0) | 
|  | 992 | return; | 
|  | 993 | } else if (inbound) | 
|  | 994 | return;	/* not interested in received confreq */ | 
|  | 995 |  | 
|  | 996 | /* process the options in the confack */ | 
|  | 997 | data += 4; | 
|  | 998 | dlen -= 4; | 
|  | 999 | /* data[0] is code, data[1] is length */ | 
|  | 1000 | while (dlen >= 2 && dlen >= data[1] && data[1] >= 2) { | 
|  | 1001 | switch (data[0]) { | 
|  | 1002 | case LCP_MRU: | 
| Changli Gao | 96545ae | 2011-01-06 13:37:36 +0000 | [diff] [blame] | 1003 | val = get_unaligned_be16(data + 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | if (inbound) | 
|  | 1005 | ap->mru = val; | 
|  | 1006 | else | 
|  | 1007 | ap->chan.mtu = val; | 
|  | 1008 | break; | 
|  | 1009 | case LCP_ASYNCMAP: | 
| Changli Gao | 96545ae | 2011-01-06 13:37:36 +0000 | [diff] [blame] | 1010 | val = get_unaligned_be32(data + 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | if (inbound) | 
|  | 1012 | ap->raccm = val; | 
|  | 1013 | else | 
|  | 1014 | ap->xaccm[0] = val; | 
|  | 1015 | break; | 
|  | 1016 | } | 
|  | 1017 | dlen -= data[1]; | 
|  | 1018 | data += data[1]; | 
|  | 1019 | } | 
|  | 1020 | } | 
|  | 1021 |  | 
|  | 1022 | static void __exit ppp_async_cleanup(void) | 
|  | 1023 | { | 
| Alexey Dobriyan | 64ccd71 | 2005-06-23 00:10:33 -0700 | [diff] [blame] | 1024 | if (tty_unregister_ldisc(N_PPP) != 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | printk(KERN_ERR "failed to unregister PPP line discipline\n"); | 
|  | 1026 | } | 
|  | 1027 |  | 
|  | 1028 | module_init(ppp_async_init); | 
|  | 1029 | module_exit(ppp_async_cleanup); |