upload tizen1.0 source
[kernel/linux-2.6.36.git] / drivers / net / ppp_generic.c
1 /*
2  * Generic PPP layer for Linux.
3  *
4  * Copyright 1999-2002 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  * The generic PPP layer handles the PPP network interfaces, the
12  * /dev/ppp device, packet and VJ compression, and multilink.
13  * It talks to PPP `channels' via the interface defined in
14  * include/linux/ppp_channel.h.  Channels provide the basic means for
15  * sending and receiving PPP frames on some kind of communications
16  * channel.
17  *
18  * Part of the code in this driver was inspired by the old async-only
19  * PPP driver, written by Michael Callahan and Al Longyear, and
20  * subsequently hacked by Paul Mackerras.
21  *
22  * ==FILEVERSION 20041108==
23  */
24
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/kmod.h>
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/idr.h>
31 #include <linux/netdevice.h>
32 #include <linux/poll.h>
33 #include <linux/ppp_defs.h>
34 #include <linux/filter.h>
35 #include <linux/if_ppp.h>
36 #include <linux/ppp_channel.h>
37 #include <linux/ppp-comp.h>
38 #include <linux/skbuff.h>
39 #include <linux/rtnetlink.h>
40 #include <linux/if_arp.h>
41 #include <linux/ip.h>
42 #include <linux/tcp.h>
43 #include <linux/spinlock.h>
44 #include <linux/rwsem.h>
45 #include <linux/stddef.h>
46 #include <linux/device.h>
47 #include <linux/mutex.h>
48 #include <linux/slab.h>
49 #include <net/slhc_vj.h>
50 #include <asm/atomic.h>
51
52 #include <linux/nsproxy.h>
53 #include <net/net_namespace.h>
54 #include <net/netns/generic.h>
55
56 #define PPP_VERSION     "2.4.2"
57
58 /*
59  * Network protocols we support.
60  */
61 #define NP_IP   0               /* Internet Protocol V4 */
62 #define NP_IPV6 1               /* Internet Protocol V6 */
63 #define NP_IPX  2               /* IPX protocol */
64 #define NP_AT   3               /* Appletalk protocol */
65 #define NP_MPLS_UC 4            /* MPLS unicast */
66 #define NP_MPLS_MC 5            /* MPLS multicast */
67 #define NUM_NP  6               /* Number of NPs. */
68
69 #define MPHDRLEN        6       /* multilink protocol header length */
70 #define MPHDRLEN_SSN    4       /* ditto with short sequence numbers */
71
72 /*
73  * An instance of /dev/ppp can be associated with either a ppp
74  * interface unit or a ppp channel.  In both cases, file->private_data
75  * points to one of these.
76  */
77 struct ppp_file {
78         enum {
79                 INTERFACE=1, CHANNEL
80         }               kind;
81         struct sk_buff_head xq;         /* pppd transmit queue */
82         struct sk_buff_head rq;         /* receive queue for pppd */
83         wait_queue_head_t rwait;        /* for poll on reading /dev/ppp */
84         atomic_t        refcnt;         /* # refs (incl /dev/ppp attached) */
85         int             hdrlen;         /* space to leave for headers */
86         int             index;          /* interface unit / channel number */
87         int             dead;           /* unit/channel has been shut down */
88 };
89
90 #define PF_TO_X(pf, X)          container_of(pf, X, file)
91
92 #define PF_TO_PPP(pf)           PF_TO_X(pf, struct ppp)
93 #define PF_TO_CHANNEL(pf)       PF_TO_X(pf, struct channel)
94
95 /*
96  * Data structure describing one ppp unit.
97  * A ppp unit corresponds to a ppp network interface device
98  * and represents a multilink bundle.
99  * It can have 0 or more ppp channels connected to it.
100  */
101 struct ppp {
102         struct ppp_file file;           /* stuff for read/write/poll 0 */
103         struct file     *owner;         /* file that owns this unit 48 */
104         struct list_head channels;      /* list of attached channels 4c */
105         int             n_channels;     /* how many channels are attached 54 */
106         spinlock_t      rlock;          /* lock for receive side 58 */
107         spinlock_t      wlock;          /* lock for transmit side 5c */
108         int             mru;            /* max receive unit 60 */
109         unsigned int    flags;          /* control bits 64 */
110         unsigned int    xstate;         /* transmit state bits 68 */
111         unsigned int    rstate;         /* receive state bits 6c */
112         int             debug;          /* debug flags 70 */
113         struct slcompress *vj;          /* state for VJ header compression */
114         enum NPmode     npmode[NUM_NP]; /* what to do with each net proto 78 */
115         struct sk_buff  *xmit_pending;  /* a packet ready to go out 88 */
116         struct compressor *xcomp;       /* transmit packet compressor 8c */
117         void            *xc_state;      /* its internal state 90 */
118         struct compressor *rcomp;       /* receive decompressor 94 */
119         void            *rc_state;      /* its internal state 98 */
120         unsigned long   last_xmit;      /* jiffies when last pkt sent 9c */
121         unsigned long   last_recv;      /* jiffies when last pkt rcvd a0 */
122         struct net_device *dev;         /* network interface device a4 */
123         int             closing;        /* is device closing down? a8 */
124 #ifdef CONFIG_PPP_MULTILINK
125         int             nxchan;         /* next channel to send something on */
126         u32             nxseq;          /* next sequence number to send */
127         int             mrru;           /* MP: max reconst. receive unit */
128         u32             nextseq;        /* MP: seq no of next packet */
129         u32             minseq;         /* MP: min of most recent seqnos */
130         struct sk_buff_head mrq;        /* MP: receive reconstruction queue */
131 #endif /* CONFIG_PPP_MULTILINK */
132 #ifdef CONFIG_PPP_FILTER
133         struct sock_filter *pass_filter;        /* filter for packets to pass */
134         struct sock_filter *active_filter;/* filter for pkts to reset idle */
135         unsigned pass_len, active_len;
136 #endif /* CONFIG_PPP_FILTER */
137         struct net      *ppp_net;       /* the net we belong to */
138 };
139
140 /*
141  * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
142  * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
143  * SC_MUST_COMP
144  * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
145  * Bits in xstate: SC_COMP_RUN
146  */
147 #define SC_FLAG_BITS    (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
148                          |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
149                          |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
150
151 /*
152  * Private data structure for each channel.
153  * This includes the data structure used for multilink.
154  */
155 struct channel {
156         struct ppp_file file;           /* stuff for read/write/poll */
157         struct list_head list;          /* link in all/new_channels list */
158         struct ppp_channel *chan;       /* public channel data structure */
159         struct rw_semaphore chan_sem;   /* protects `chan' during chan ioctl */
160         spinlock_t      downl;          /* protects `chan', file.xq dequeue */
161         struct ppp      *ppp;           /* ppp unit we're connected to */
162         struct net      *chan_net;      /* the net channel belongs to */
163         struct list_head clist;         /* link in list of channels per unit */
164         rwlock_t        upl;            /* protects `ppp' */
165 #ifdef CONFIG_PPP_MULTILINK
166         u8              avail;          /* flag used in multilink stuff */
167         u8              had_frag;       /* >= 1 fragments have been sent */
168         u32             lastseq;        /* MP: last sequence # received */
169         int             speed;          /* speed of the corresponding ppp channel*/
170 #endif /* CONFIG_PPP_MULTILINK */
171 };
172
173 /*
174  * SMP locking issues:
175  * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
176  * list and the ppp.n_channels field, you need to take both locks
177  * before you modify them.
178  * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
179  * channel.downl.
180  */
181
182 static DEFINE_MUTEX(ppp_mutex);
183 static atomic_t ppp_unit_count = ATOMIC_INIT(0);
184 static atomic_t channel_count = ATOMIC_INIT(0);
185
186 /* per-net private data for this module */
187 static int ppp_net_id __read_mostly;
188 struct ppp_net {
189         /* units to ppp mapping */
190         struct idr units_idr;
191
192         /*
193          * all_ppp_mutex protects the units_idr mapping.
194          * It also ensures that finding a ppp unit in the units_idr
195          * map and updating its file.refcnt field is atomic.
196          */
197         struct mutex all_ppp_mutex;
198
199         /* channels */
200         struct list_head all_channels;
201         struct list_head new_channels;
202         int last_channel_index;
203
204         /*
205          * all_channels_lock protects all_channels and
206          * last_channel_index, and the atomicity of find
207          * a channel and updating its file.refcnt field.
208          */
209         spinlock_t all_channels_lock;
210 };
211
212 /* Get the PPP protocol number from a skb */
213 #define PPP_PROTO(skb)  (((skb)->data[0] << 8) + (skb)->data[1])
214
215 /* We limit the length of ppp->file.rq to this (arbitrary) value */
216 #define PPP_MAX_RQLEN   32
217
218 /*
219  * Maximum number of multilink fragments queued up.
220  * This has to be large enough to cope with the maximum latency of
221  * the slowest channel relative to the others.  Strictly it should
222  * depend on the number of channels and their characteristics.
223  */
224 #define PPP_MP_MAX_QLEN 128
225
226 /* Multilink header bits. */
227 #define B       0x80            /* this fragment begins a packet */
228 #define E       0x40            /* this fragment ends a packet */
229
230 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
231 #define seq_before(a, b)        ((s32)((a) - (b)) < 0)
232 #define seq_after(a, b)         ((s32)((a) - (b)) > 0)
233
234 /* Prototypes. */
235 static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
236                         struct file *file, unsigned int cmd, unsigned long arg);
237 static void ppp_xmit_process(struct ppp *ppp);
238 static void ppp_send_frame(struct ppp *ppp, struct sk_buff *skb);
239 static void ppp_push(struct ppp *ppp);
240 static void ppp_channel_push(struct channel *pch);
241 static void ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb,
242                               struct channel *pch);
243 static void ppp_receive_error(struct ppp *ppp);
244 static void ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb);
245 static struct sk_buff *ppp_decompress_frame(struct ppp *ppp,
246                                             struct sk_buff *skb);
247 #ifdef CONFIG_PPP_MULTILINK
248 static void ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb,
249                                 struct channel *pch);
250 static void ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb);
251 static struct sk_buff *ppp_mp_reconstruct(struct ppp *ppp);
252 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb);
253 #endif /* CONFIG_PPP_MULTILINK */
254 static int ppp_set_compress(struct ppp *ppp, unsigned long arg);
255 static void ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound);
256 static void ppp_ccp_closed(struct ppp *ppp);
257 static struct compressor *find_compressor(int type);
258 static void ppp_get_stats(struct ppp *ppp, struct ppp_stats *st);
259 static struct ppp *ppp_create_interface(struct net *net, int unit, int *retp);
260 static void init_ppp_file(struct ppp_file *pf, int kind);
261 static void ppp_shutdown_interface(struct ppp *ppp);
262 static void ppp_destroy_interface(struct ppp *ppp);
263 static struct ppp *ppp_find_unit(struct ppp_net *pn, int unit);
264 static struct channel *ppp_find_channel(struct ppp_net *pn, int unit);
265 static int ppp_connect_channel(struct channel *pch, int unit);
266 static int ppp_disconnect_channel(struct channel *pch);
267 static void ppp_destroy_channel(struct channel *pch);
268 static int unit_get(struct idr *p, void *ptr);
269 static int unit_set(struct idr *p, void *ptr, int n);
270 static void unit_put(struct idr *p, int n);
271 static void *unit_find(struct idr *p, int n);
272
273 static struct class *ppp_class;
274
275 /* per net-namespace data */
276 static inline struct ppp_net *ppp_pernet(struct net *net)
277 {
278         BUG_ON(!net);
279
280         return net_generic(net, ppp_net_id);
281 }
282
283 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
284 static inline int proto_to_npindex(int proto)
285 {
286         switch (proto) {
287         case PPP_IP:
288                 return NP_IP;
289         case PPP_IPV6:
290                 return NP_IPV6;
291         case PPP_IPX:
292                 return NP_IPX;
293         case PPP_AT:
294                 return NP_AT;
295         case PPP_MPLS_UC:
296                 return NP_MPLS_UC;
297         case PPP_MPLS_MC:
298                 return NP_MPLS_MC;
299         }
300         return -EINVAL;
301 }
302
303 /* Translates an NP index into a PPP protocol number */
304 static const int npindex_to_proto[NUM_NP] = {
305         PPP_IP,
306         PPP_IPV6,
307         PPP_IPX,
308         PPP_AT,
309         PPP_MPLS_UC,
310         PPP_MPLS_MC,
311 };
312
313 /* Translates an ethertype into an NP index */
314 static inline int ethertype_to_npindex(int ethertype)
315 {
316         switch (ethertype) {
317         case ETH_P_IP:
318                 return NP_IP;
319         case ETH_P_IPV6:
320                 return NP_IPV6;
321         case ETH_P_IPX:
322                 return NP_IPX;
323         case ETH_P_PPPTALK:
324         case ETH_P_ATALK:
325                 return NP_AT;
326         case ETH_P_MPLS_UC:
327                 return NP_MPLS_UC;
328         case ETH_P_MPLS_MC:
329                 return NP_MPLS_MC;
330         }
331         return -1;
332 }
333
334 /* Translates an NP index into an ethertype */
335 static const int npindex_to_ethertype[NUM_NP] = {
336         ETH_P_IP,
337         ETH_P_IPV6,
338         ETH_P_IPX,
339         ETH_P_PPPTALK,
340         ETH_P_MPLS_UC,
341         ETH_P_MPLS_MC,
342 };
343
344 /*
345  * Locking shorthand.
346  */
347 #define ppp_xmit_lock(ppp)      spin_lock_bh(&(ppp)->wlock)
348 #define ppp_xmit_unlock(ppp)    spin_unlock_bh(&(ppp)->wlock)
349 #define ppp_recv_lock(ppp)      spin_lock_bh(&(ppp)->rlock)
350 #define ppp_recv_unlock(ppp)    spin_unlock_bh(&(ppp)->rlock)
351 #define ppp_lock(ppp)           do { ppp_xmit_lock(ppp); \
352                                      ppp_recv_lock(ppp); } while (0)
353 #define ppp_unlock(ppp)         do { ppp_recv_unlock(ppp); \
354                                      ppp_xmit_unlock(ppp); } while (0)
355
356 /*
357  * /dev/ppp device routines.
358  * The /dev/ppp device is used by pppd to control the ppp unit.
359  * It supports the read, write, ioctl and poll functions.
360  * Open instances of /dev/ppp can be in one of three states:
361  * unattached, attached to a ppp unit, or attached to a ppp channel.
362  */
363 static int ppp_open(struct inode *inode, struct file *file)
364 {
365         /*
366          * This could (should?) be enforced by the permissions on /dev/ppp.
367          */
368         if (!capable(CAP_NET_ADMIN))
369                 return -EPERM;
370         return 0;
371 }
372
373 static int ppp_release(struct inode *unused, struct file *file)
374 {
375         struct ppp_file *pf = file->private_data;
376         struct ppp *ppp;
377
378         if (pf) {
379                 file->private_data = NULL;
380                 if (pf->kind == INTERFACE) {
381                         ppp = PF_TO_PPP(pf);
382                         if (file == ppp->owner)
383                                 ppp_shutdown_interface(ppp);
384                 }
385                 if (atomic_dec_and_test(&pf->refcnt)) {
386                         switch (pf->kind) {
387                         case INTERFACE:
388                                 ppp_destroy_interface(PF_TO_PPP(pf));
389                                 break;
390                         case CHANNEL:
391                                 ppp_destroy_channel(PF_TO_CHANNEL(pf));
392                                 break;
393                         }
394                 }
395         }
396         return 0;
397 }
398
399 static ssize_t ppp_read(struct file *file, char __user *buf,
400                         size_t count, loff_t *ppos)
401 {
402         struct ppp_file *pf = file->private_data;
403         DECLARE_WAITQUEUE(wait, current);
404         ssize_t ret;
405         struct sk_buff *skb = NULL;
406         struct iovec iov;
407
408         ret = count;
409
410         if (!pf)
411                 return -ENXIO;
412         add_wait_queue(&pf->rwait, &wait);
413         for (;;) {
414                 set_current_state(TASK_INTERRUPTIBLE);
415                 skb = skb_dequeue(&pf->rq);
416                 if (skb)
417                         break;
418                 ret = 0;
419                 if (pf->dead)
420                         break;
421                 if (pf->kind == INTERFACE) {
422                         /*
423                          * Return 0 (EOF) on an interface that has no
424                          * channels connected, unless it is looping
425                          * network traffic (demand mode).
426                          */
427                         struct ppp *ppp = PF_TO_PPP(pf);
428                         if (ppp->n_channels == 0 &&
429                             (ppp->flags & SC_LOOP_TRAFFIC) == 0)
430                                 break;
431                 }
432                 ret = -EAGAIN;
433                 if (file->f_flags & O_NONBLOCK)
434                         break;
435                 ret = -ERESTARTSYS;
436                 if (signal_pending(current))
437                         break;
438                 schedule();
439         }
440         set_current_state(TASK_RUNNING);
441         remove_wait_queue(&pf->rwait, &wait);
442
443         if (!skb)
444                 goto out;
445
446         ret = -EOVERFLOW;
447         if (skb->len > count)
448                 goto outf;
449         ret = -EFAULT;
450         iov.iov_base = buf;
451         iov.iov_len = count;
452         if (skb_copy_datagram_iovec(skb, 0, &iov, skb->len))
453                 goto outf;
454         ret = skb->len;
455
456  outf:
457         kfree_skb(skb);
458  out:
459         return ret;
460 }
461
462 static ssize_t ppp_write(struct file *file, const char __user *buf,
463                          size_t count, loff_t *ppos)
464 {
465         struct ppp_file *pf = file->private_data;
466         struct sk_buff *skb;
467         ssize_t ret;
468
469         if (!pf)
470                 return -ENXIO;
471         ret = -ENOMEM;
472         skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL);
473         if (!skb)
474                 goto out;
475         skb_reserve(skb, pf->hdrlen);
476         ret = -EFAULT;
477         if (copy_from_user(skb_put(skb, count), buf, count)) {
478                 kfree_skb(skb);
479                 goto out;
480         }
481
482         skb_queue_tail(&pf->xq, skb);
483
484         switch (pf->kind) {
485         case INTERFACE:
486                 ppp_xmit_process(PF_TO_PPP(pf));
487                 break;
488         case CHANNEL:
489                 ppp_channel_push(PF_TO_CHANNEL(pf));
490                 break;
491         }
492
493         ret = count;
494
495  out:
496         return ret;
497 }
498
499 /* No kernel lock - fine */
500 static unsigned int ppp_poll(struct file *file, poll_table *wait)
501 {
502         struct ppp_file *pf = file->private_data;
503         unsigned int mask;
504
505         if (!pf)
506                 return 0;
507         poll_wait(file, &pf->rwait, wait);
508         mask = POLLOUT | POLLWRNORM;
509         if (skb_peek(&pf->rq))
510                 mask |= POLLIN | POLLRDNORM;
511         if (pf->dead)
512                 mask |= POLLHUP;
513         else if (pf->kind == INTERFACE) {
514                 /* see comment in ppp_read */
515                 struct ppp *ppp = PF_TO_PPP(pf);
516                 if (ppp->n_channels == 0 &&
517                     (ppp->flags & SC_LOOP_TRAFFIC) == 0)
518                         mask |= POLLIN | POLLRDNORM;
519         }
520
521         return mask;
522 }
523
524 #ifdef CONFIG_PPP_FILTER
525 static int get_filter(void __user *arg, struct sock_filter **p)
526 {
527         struct sock_fprog uprog;
528         struct sock_filter *code = NULL;
529         int len, err;
530
531         if (copy_from_user(&uprog, arg, sizeof(uprog)))
532                 return -EFAULT;
533
534         if (!uprog.len) {
535                 *p = NULL;
536                 return 0;
537         }
538
539         len = uprog.len * sizeof(struct sock_filter);
540         code = memdup_user(uprog.filter, len);
541         if (IS_ERR(code))
542                 return PTR_ERR(code);
543
544         err = sk_chk_filter(code, uprog.len);
545         if (err) {
546                 kfree(code);
547                 return err;
548         }
549
550         *p = code;
551         return uprog.len;
552 }
553 #endif /* CONFIG_PPP_FILTER */
554
555 static long ppp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
556 {
557         struct ppp_file *pf = file->private_data;
558         struct ppp *ppp;
559         int err = -EFAULT, val, val2, i;
560         struct ppp_idle idle;
561         struct npioctl npi;
562         int unit, cflags;
563         struct slcompress *vj;
564         void __user *argp = (void __user *)arg;
565         int __user *p = argp;
566
567         if (!pf)
568                 return ppp_unattached_ioctl(current->nsproxy->net_ns,
569                                         pf, file, cmd, arg);
570
571         if (cmd == PPPIOCDETACH) {
572                 /*
573                  * We have to be careful here... if the file descriptor
574                  * has been dup'd, we could have another process in the
575                  * middle of a poll using the same file *, so we had
576                  * better not free the interface data structures -
577                  * instead we fail the ioctl.  Even in this case, we
578                  * shut down the interface if we are the owner of it.
579                  * Actually, we should get rid of PPPIOCDETACH, userland
580                  * (i.e. pppd) could achieve the same effect by closing
581                  * this fd and reopening /dev/ppp.
582                  */
583                 err = -EINVAL;
584                 mutex_lock(&ppp_mutex);
585                 if (pf->kind == INTERFACE) {
586                         ppp = PF_TO_PPP(pf);
587                         if (file == ppp->owner)
588                                 ppp_shutdown_interface(ppp);
589                 }
590                 if (atomic_long_read(&file->f_count) <= 2) {
591                         ppp_release(NULL, file);
592                         err = 0;
593                 } else
594                         printk(KERN_DEBUG "PPPIOCDETACH file->f_count=%ld\n",
595                                atomic_long_read(&file->f_count));
596                 mutex_unlock(&ppp_mutex);
597                 return err;
598         }
599
600         if (pf->kind == CHANNEL) {
601                 struct channel *pch;
602                 struct ppp_channel *chan;
603
604                 mutex_lock(&ppp_mutex);
605                 pch = PF_TO_CHANNEL(pf);
606
607                 switch (cmd) {
608                 case PPPIOCCONNECT:
609                         if (get_user(unit, p))
610                                 break;
611                         err = ppp_connect_channel(pch, unit);
612                         break;
613
614                 case PPPIOCDISCONN:
615                         err = ppp_disconnect_channel(pch);
616                         break;
617
618                 default:
619                         down_read(&pch->chan_sem);
620                         chan = pch->chan;
621                         err = -ENOTTY;
622                         if (chan && chan->ops->ioctl)
623                                 err = chan->ops->ioctl(chan, cmd, arg);
624                         up_read(&pch->chan_sem);
625                 }
626                 mutex_unlock(&ppp_mutex);
627                 return err;
628         }
629
630         if (pf->kind != INTERFACE) {
631                 /* can't happen */
632                 printk(KERN_ERR "PPP: not interface or channel??\n");
633                 return -EINVAL;
634         }
635
636         mutex_lock(&ppp_mutex);
637         ppp = PF_TO_PPP(pf);
638         switch (cmd) {
639         case PPPIOCSMRU:
640                 if (get_user(val, p))
641                         break;
642                 ppp->mru = val;
643                 err = 0;
644                 break;
645
646         case PPPIOCSFLAGS:
647                 if (get_user(val, p))
648                         break;
649                 ppp_lock(ppp);
650                 cflags = ppp->flags & ~val;
651                 ppp->flags = val & SC_FLAG_BITS;
652                 ppp_unlock(ppp);
653                 if (cflags & SC_CCP_OPEN)
654                         ppp_ccp_closed(ppp);
655                 err = 0;
656                 break;
657
658         case PPPIOCGFLAGS:
659                 val = ppp->flags | ppp->xstate | ppp->rstate;
660                 if (put_user(val, p))
661                         break;
662                 err = 0;
663                 break;
664
665         case PPPIOCSCOMPRESS:
666                 err = ppp_set_compress(ppp, arg);
667                 break;
668
669         case PPPIOCGUNIT:
670                 if (put_user(ppp->file.index, p))
671                         break;
672                 err = 0;
673                 break;
674
675         case PPPIOCSDEBUG:
676                 if (get_user(val, p))
677                         break;
678                 ppp->debug = val;
679                 err = 0;
680                 break;
681
682         case PPPIOCGDEBUG:
683                 if (put_user(ppp->debug, p))
684                         break;
685                 err = 0;
686                 break;
687
688         case PPPIOCGIDLE:
689                 idle.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
690                 idle.recv_idle = (jiffies - ppp->last_recv) / HZ;
691                 if (copy_to_user(argp, &idle, sizeof(idle)))
692                         break;
693                 err = 0;
694                 break;
695
696         case PPPIOCSMAXCID:
697                 if (get_user(val, p))
698                         break;
699                 val2 = 15;
700                 if ((val >> 16) != 0) {
701                         val2 = val >> 16;
702                         val &= 0xffff;
703                 }
704                 vj = slhc_init(val2+1, val+1);
705                 if (!vj) {
706                         printk(KERN_ERR "PPP: no memory (VJ compressor)\n");
707                         err = -ENOMEM;
708                         break;
709                 }
710                 ppp_lock(ppp);
711                 if (ppp->vj)
712                         slhc_free(ppp->vj);
713                 ppp->vj = vj;
714                 ppp_unlock(ppp);
715                 err = 0;
716                 break;
717
718         case PPPIOCGNPMODE:
719         case PPPIOCSNPMODE:
720                 if (copy_from_user(&npi, argp, sizeof(npi)))
721                         break;
722                 err = proto_to_npindex(npi.protocol);
723                 if (err < 0)
724                         break;
725                 i = err;
726                 if (cmd == PPPIOCGNPMODE) {
727                         err = -EFAULT;
728                         npi.mode = ppp->npmode[i];
729                         if (copy_to_user(argp, &npi, sizeof(npi)))
730                                 break;
731                 } else {
732                         ppp->npmode[i] = npi.mode;
733                         /* we may be able to transmit more packets now (??) */
734                         netif_wake_queue(ppp->dev);
735                 }
736                 err = 0;
737                 break;
738
739 #ifdef CONFIG_PPP_FILTER
740         case PPPIOCSPASS:
741         {
742                 struct sock_filter *code;
743                 err = get_filter(argp, &code);
744                 if (err >= 0) {
745                         ppp_lock(ppp);
746                         kfree(ppp->pass_filter);
747                         ppp->pass_filter = code;
748                         ppp->pass_len = err;
749                         ppp_unlock(ppp);
750                         err = 0;
751                 }
752                 break;
753         }
754         case PPPIOCSACTIVE:
755         {
756                 struct sock_filter *code;
757                 err = get_filter(argp, &code);
758                 if (err >= 0) {
759                         ppp_lock(ppp);
760                         kfree(ppp->active_filter);
761                         ppp->active_filter = code;
762                         ppp->active_len = err;
763                         ppp_unlock(ppp);
764                         err = 0;
765                 }
766                 break;
767         }
768 #endif /* CONFIG_PPP_FILTER */
769
770 #ifdef CONFIG_PPP_MULTILINK
771         case PPPIOCSMRRU:
772                 if (get_user(val, p))
773                         break;
774                 ppp_recv_lock(ppp);
775                 ppp->mrru = val;
776                 ppp_recv_unlock(ppp);
777                 err = 0;
778                 break;
779 #endif /* CONFIG_PPP_MULTILINK */
780
781         default:
782                 err = -ENOTTY;
783         }
784         mutex_unlock(&ppp_mutex);
785         return err;
786 }
787
788 static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
789                         struct file *file, unsigned int cmd, unsigned long arg)
790 {
791         int unit, err = -EFAULT;
792         struct ppp *ppp;
793         struct channel *chan;
794         struct ppp_net *pn;
795         int __user *p = (int __user *)arg;
796
797         mutex_lock(&ppp_mutex);
798         switch (cmd) {
799         case PPPIOCNEWUNIT:
800                 /* Create a new ppp unit */
801                 if (get_user(unit, p))
802                         break;
803                 ppp = ppp_create_interface(net, unit, &err);
804                 if (!ppp)
805                         break;
806                 file->private_data = &ppp->file;
807                 ppp->owner = file;
808                 err = -EFAULT;
809                 if (put_user(ppp->file.index, p))
810                         break;
811                 err = 0;
812                 break;
813
814         case PPPIOCATTACH:
815                 /* Attach to an existing ppp unit */
816                 if (get_user(unit, p))
817                         break;
818                 err = -ENXIO;
819                 pn = ppp_pernet(net);
820                 mutex_lock(&pn->all_ppp_mutex);
821                 ppp = ppp_find_unit(pn, unit);
822                 if (ppp) {
823                         atomic_inc(&ppp->file.refcnt);
824                         file->private_data = &ppp->file;
825                         err = 0;
826                 }
827                 mutex_unlock(&pn->all_ppp_mutex);
828                 break;
829
830         case PPPIOCATTCHAN:
831                 if (get_user(unit, p))
832                         break;
833                 err = -ENXIO;
834                 pn = ppp_pernet(net);
835                 spin_lock_bh(&pn->all_channels_lock);
836                 chan = ppp_find_channel(pn, unit);
837                 if (chan) {
838                         atomic_inc(&chan->file.refcnt);
839                         file->private_data = &chan->file;
840                         err = 0;
841                 }
842                 spin_unlock_bh(&pn->all_channels_lock);
843                 break;
844
845         default:
846                 err = -ENOTTY;
847         }
848         mutex_unlock(&ppp_mutex);
849         return err;
850 }
851
852 static const struct file_operations ppp_device_fops = {
853         .owner          = THIS_MODULE,
854         .read           = ppp_read,
855         .write          = ppp_write,
856         .poll           = ppp_poll,
857         .unlocked_ioctl = ppp_ioctl,
858         .open           = ppp_open,
859         .release        = ppp_release
860 };
861
862 static __net_init int ppp_init_net(struct net *net)
863 {
864         struct ppp_net *pn = net_generic(net, ppp_net_id);
865
866         idr_init(&pn->units_idr);
867         mutex_init(&pn->all_ppp_mutex);
868
869         INIT_LIST_HEAD(&pn->all_channels);
870         INIT_LIST_HEAD(&pn->new_channels);
871
872         spin_lock_init(&pn->all_channels_lock);
873
874         return 0;
875 }
876
877 static __net_exit void ppp_exit_net(struct net *net)
878 {
879         struct ppp_net *pn = net_generic(net, ppp_net_id);
880
881         idr_destroy(&pn->units_idr);
882 }
883
884 static struct pernet_operations ppp_net_ops = {
885         .init = ppp_init_net,
886         .exit = ppp_exit_net,
887         .id   = &ppp_net_id,
888         .size = sizeof(struct ppp_net),
889 };
890
891 #define PPP_MAJOR       108
892
893 /* Called at boot time if ppp is compiled into the kernel,
894    or at module load time (from init_module) if compiled as a module. */
895 static int __init ppp_init(void)
896 {
897         int err;
898
899         printk(KERN_INFO "PPP generic driver version " PPP_VERSION "\n");
900
901         err = register_pernet_device(&ppp_net_ops);
902         if (err) {
903                 printk(KERN_ERR "failed to register PPP pernet device (%d)\n", err);
904                 goto out;
905         }
906
907         err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
908         if (err) {
909                 printk(KERN_ERR "failed to register PPP device (%d)\n", err);
910                 goto out_net;
911         }
912
913         ppp_class = class_create(THIS_MODULE, "ppp");
914         if (IS_ERR(ppp_class)) {
915                 err = PTR_ERR(ppp_class);
916                 goto out_chrdev;
917         }
918
919         /* not a big deal if we fail here :-) */
920         device_create(ppp_class, NULL, MKDEV(PPP_MAJOR, 0), NULL, "ppp");
921
922         return 0;
923
924 out_chrdev:
925         unregister_chrdev(PPP_MAJOR, "ppp");
926 out_net:
927         unregister_pernet_device(&ppp_net_ops);
928 out:
929         return err;
930 }
931
932 /*
933  * Network interface unit routines.
934  */
935 static netdev_tx_t
936 ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
937 {
938         struct ppp *ppp = netdev_priv(dev);
939         int npi, proto;
940         unsigned char *pp;
941
942         npi = ethertype_to_npindex(ntohs(skb->protocol));
943         if (npi < 0)
944                 goto outf;
945
946         /* Drop, accept or reject the packet */
947         switch (ppp->npmode[npi]) {
948         case NPMODE_PASS:
949                 break;
950         case NPMODE_QUEUE:
951                 /* it would be nice to have a way to tell the network
952                    system to queue this one up for later. */
953                 goto outf;
954         case NPMODE_DROP:
955         case NPMODE_ERROR:
956                 goto outf;
957         }
958
959         /* Put the 2-byte PPP protocol number on the front,
960            making sure there is room for the address and control fields. */
961         if (skb_cow_head(skb, PPP_HDRLEN))
962                 goto outf;
963
964         pp = skb_push(skb, 2);
965         proto = npindex_to_proto[npi];
966         pp[0] = proto >> 8;
967         pp[1] = proto;
968
969         netif_stop_queue(dev);
970         skb_queue_tail(&ppp->file.xq, skb);
971         ppp_xmit_process(ppp);
972         return NETDEV_TX_OK;
973
974  outf:
975         kfree_skb(skb);
976         ++dev->stats.tx_dropped;
977         return NETDEV_TX_OK;
978 }
979
980 static int
981 ppp_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
982 {
983         struct ppp *ppp = netdev_priv(dev);
984         int err = -EFAULT;
985         void __user *addr = (void __user *) ifr->ifr_ifru.ifru_data;
986         struct ppp_stats stats;
987         struct ppp_comp_stats cstats;
988         char *vers;
989
990         switch (cmd) {
991         case SIOCGPPPSTATS:
992                 ppp_get_stats(ppp, &stats);
993                 if (copy_to_user(addr, &stats, sizeof(stats)))
994                         break;
995                 err = 0;
996                 break;
997
998         case SIOCGPPPCSTATS:
999                 memset(&cstats, 0, sizeof(cstats));
1000                 if (ppp->xc_state)
1001                         ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
1002                 if (ppp->rc_state)
1003                         ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
1004                 if (copy_to_user(addr, &cstats, sizeof(cstats)))
1005                         break;
1006                 err = 0;
1007                 break;
1008
1009         case SIOCGPPPVER:
1010                 vers = PPP_VERSION;
1011                 if (copy_to_user(addr, vers, strlen(vers) + 1))
1012                         break;
1013                 err = 0;
1014                 break;
1015
1016         default:
1017                 err = -EINVAL;
1018         }
1019
1020         return err;
1021 }
1022
1023 static const struct net_device_ops ppp_netdev_ops = {
1024         .ndo_start_xmit = ppp_start_xmit,
1025         .ndo_do_ioctl   = ppp_net_ioctl,
1026 };
1027
1028 static void ppp_setup(struct net_device *dev)
1029 {
1030         dev->netdev_ops = &ppp_netdev_ops;
1031         dev->hard_header_len = PPP_HDRLEN;
1032         dev->mtu = PPP_MTU;
1033         dev->addr_len = 0;
1034         dev->tx_queue_len = 3;
1035         dev->type = ARPHRD_PPP;
1036         dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1037         dev->features |= NETIF_F_NETNS_LOCAL;
1038         dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
1039 }
1040
1041 /*
1042  * Transmit-side routines.
1043  */
1044
1045 /*
1046  * Called to do any work queued up on the transmit side
1047  * that can now be done.
1048  */
1049 static void
1050 ppp_xmit_process(struct ppp *ppp)
1051 {
1052         struct sk_buff *skb;
1053
1054         ppp_xmit_lock(ppp);
1055         if (!ppp->closing) {
1056                 ppp_push(ppp);
1057                 while (!ppp->xmit_pending &&
1058                        (skb = skb_dequeue(&ppp->file.xq)))
1059                         ppp_send_frame(ppp, skb);
1060                 /* If there's no work left to do, tell the core net
1061                    code that we can accept some more. */
1062                 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
1063                         netif_wake_queue(ppp->dev);
1064         }
1065         ppp_xmit_unlock(ppp);
1066 }
1067
1068 static inline struct sk_buff *
1069 pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1070 {
1071         struct sk_buff *new_skb;
1072         int len;
1073         int new_skb_size = ppp->dev->mtu +
1074                 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1075         int compressor_skb_size = ppp->dev->mtu +
1076                 ppp->xcomp->comp_extra + PPP_HDRLEN;
1077         new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1078         if (!new_skb) {
1079                 if (net_ratelimit())
1080                         printk(KERN_ERR "PPP: no memory (comp pkt)\n");
1081                 return NULL;
1082         }
1083         if (ppp->dev->hard_header_len > PPP_HDRLEN)
1084                 skb_reserve(new_skb,
1085                             ppp->dev->hard_header_len - PPP_HDRLEN);
1086
1087         /* compressor still expects A/C bytes in hdr */
1088         len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1089                                    new_skb->data, skb->len + 2,
1090                                    compressor_skb_size);
1091         if (len > 0 && (ppp->flags & SC_CCP_UP)) {
1092                 kfree_skb(skb);
1093                 skb = new_skb;
1094                 skb_put(skb, len);
1095                 skb_pull(skb, 2);       /* pull off A/C bytes */
1096         } else if (len == 0) {
1097                 /* didn't compress, or CCP not up yet */
1098                 kfree_skb(new_skb);
1099                 new_skb = skb;
1100         } else {
1101                 /*
1102                  * (len < 0)
1103                  * MPPE requires that we do not send unencrypted
1104                  * frames.  The compressor will return -1 if we
1105                  * should drop the frame.  We cannot simply test
1106                  * the compress_proto because MPPE and MPPC share
1107                  * the same number.
1108                  */
1109                 if (net_ratelimit())
1110                         printk(KERN_ERR "ppp: compressor dropped pkt\n");
1111                 kfree_skb(skb);
1112                 kfree_skb(new_skb);
1113                 new_skb = NULL;
1114         }
1115         return new_skb;
1116 }
1117
1118 /*
1119  * Compress and send a frame.
1120  * The caller should have locked the xmit path,
1121  * and xmit_pending should be 0.
1122  */
1123 static void
1124 ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1125 {
1126         int proto = PPP_PROTO(skb);
1127         struct sk_buff *new_skb;
1128         int len;
1129         unsigned char *cp;
1130
1131         if (proto < 0x8000) {
1132 #ifdef CONFIG_PPP_FILTER
1133                 /* check if we should pass this packet */
1134                 /* the filter instructions are constructed assuming
1135                    a four-byte PPP header on each packet */
1136                 *skb_push(skb, 2) = 1;
1137                 if (ppp->pass_filter &&
1138                     sk_run_filter(skb, ppp->pass_filter,
1139                                   ppp->pass_len) == 0) {
1140                         if (ppp->debug & 1)
1141                                 printk(KERN_DEBUG "PPP: outbound frame not passed\n");
1142                         kfree_skb(skb);
1143                         return;
1144                 }
1145                 /* if this packet passes the active filter, record the time */
1146                 if (!(ppp->active_filter &&
1147                       sk_run_filter(skb, ppp->active_filter,
1148                                     ppp->active_len) == 0))
1149                         ppp->last_xmit = jiffies;
1150                 skb_pull(skb, 2);
1151 #else
1152                 /* for data packets, record the time */
1153                 ppp->last_xmit = jiffies;
1154 #endif /* CONFIG_PPP_FILTER */
1155         }
1156
1157         ++ppp->dev->stats.tx_packets;
1158         ppp->dev->stats.tx_bytes += skb->len - 2;
1159
1160         switch (proto) {
1161         case PPP_IP:
1162                 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
1163                         break;
1164                 /* try to do VJ TCP header compression */
1165                 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1166                                     GFP_ATOMIC);
1167                 if (!new_skb) {
1168                         printk(KERN_ERR "PPP: no memory (VJ comp pkt)\n");
1169                         goto drop;
1170                 }
1171                 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1172                 cp = skb->data + 2;
1173                 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1174                                     new_skb->data + 2, &cp,
1175                                     !(ppp->flags & SC_NO_TCP_CCID));
1176                 if (cp == skb->data + 2) {
1177                         /* didn't compress */
1178                         kfree_skb(new_skb);
1179                 } else {
1180                         if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1181                                 proto = PPP_VJC_COMP;
1182                                 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1183                         } else {
1184                                 proto = PPP_VJC_UNCOMP;
1185                                 cp[0] = skb->data[2];
1186                         }
1187                         kfree_skb(skb);
1188                         skb = new_skb;
1189                         cp = skb_put(skb, len + 2);
1190                         cp[0] = 0;
1191                         cp[1] = proto;
1192                 }
1193                 break;
1194
1195         case PPP_CCP:
1196                 /* peek at outbound CCP frames */
1197                 ppp_ccp_peek(ppp, skb, 0);
1198                 break;
1199         }
1200
1201         /* try to do packet compression */
1202         if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state &&
1203             proto != PPP_LCP && proto != PPP_CCP) {
1204                 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1205                         if (net_ratelimit())
1206                                 printk(KERN_ERR "ppp: compression required but down - pkt dropped.\n");
1207                         goto drop;
1208                 }
1209                 skb = pad_compress_skb(ppp, skb);
1210                 if (!skb)
1211                         goto drop;
1212         }
1213
1214         /*
1215          * If we are waiting for traffic (demand dialling),
1216          * queue it up for pppd to receive.
1217          */
1218         if (ppp->flags & SC_LOOP_TRAFFIC) {
1219                 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1220                         goto drop;
1221                 skb_queue_tail(&ppp->file.rq, skb);
1222                 wake_up_interruptible(&ppp->file.rwait);
1223                 return;
1224         }
1225
1226         ppp->xmit_pending = skb;
1227         ppp_push(ppp);
1228         return;
1229
1230  drop:
1231         kfree_skb(skb);
1232         ++ppp->dev->stats.tx_errors;
1233 }
1234
1235 /*
1236  * Try to send the frame in xmit_pending.
1237  * The caller should have the xmit path locked.
1238  */
1239 static void
1240 ppp_push(struct ppp *ppp)
1241 {
1242         struct list_head *list;
1243         struct channel *pch;
1244         struct sk_buff *skb = ppp->xmit_pending;
1245
1246         if (!skb)
1247                 return;
1248
1249         list = &ppp->channels;
1250         if (list_empty(list)) {
1251                 /* nowhere to send the packet, just drop it */
1252                 ppp->xmit_pending = NULL;
1253                 kfree_skb(skb);
1254                 return;
1255         }
1256
1257         if ((ppp->flags & SC_MULTILINK) == 0) {
1258                 /* not doing multilink: send it down the first channel */
1259                 list = list->next;
1260                 pch = list_entry(list, struct channel, clist);
1261
1262                 spin_lock_bh(&pch->downl);
1263                 if (pch->chan) {
1264                         if (pch->chan->ops->start_xmit(pch->chan, skb))
1265                                 ppp->xmit_pending = NULL;
1266                 } else {
1267                         /* channel got unregistered */
1268                         kfree_skb(skb);
1269                         ppp->xmit_pending = NULL;
1270                 }
1271                 spin_unlock_bh(&pch->downl);
1272                 return;
1273         }
1274
1275 #ifdef CONFIG_PPP_MULTILINK
1276         /* Multilink: fragment the packet over as many links
1277            as can take the packet at the moment. */
1278         if (!ppp_mp_explode(ppp, skb))
1279                 return;
1280 #endif /* CONFIG_PPP_MULTILINK */
1281
1282         ppp->xmit_pending = NULL;
1283         kfree_skb(skb);
1284 }
1285
1286 #ifdef CONFIG_PPP_MULTILINK
1287 /*
1288  * Divide a packet to be transmitted into fragments and
1289  * send them out the individual links.
1290  */
1291 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1292 {
1293         int len, totlen;
1294         int i, bits, hdrlen, mtu;
1295         int flen;
1296         int navail, nfree, nzero;
1297         int nbigger;
1298         int totspeed;
1299         int totfree;
1300         unsigned char *p, *q;
1301         struct list_head *list;
1302         struct channel *pch;
1303         struct sk_buff *frag;
1304         struct ppp_channel *chan;
1305
1306         totspeed = 0; /*total bitrate of the bundle*/
1307         nfree = 0; /* # channels which have no packet already queued */
1308         navail = 0; /* total # of usable channels (not deregistered) */
1309         nzero = 0; /* number of channels with zero speed associated*/
1310         totfree = 0; /*total # of channels available and
1311                                   *having no queued packets before
1312                                   *starting the fragmentation*/
1313
1314         hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1315         i = 0;
1316         list_for_each_entry(pch, &ppp->channels, clist) {
1317                 if (pch->chan) {
1318                         pch->avail = 1;
1319                         navail++;
1320                         pch->speed = pch->chan->speed;
1321                 } else {
1322                         pch->avail = 0;
1323                 }
1324                 if (pch->avail) {
1325                         if (skb_queue_empty(&pch->file.xq) ||
1326                                 !pch->had_frag) {
1327                                         if (pch->speed == 0)
1328                                                 nzero++;
1329                                         else
1330                                                 totspeed += pch->speed;
1331
1332                                         pch->avail = 2;
1333                                         ++nfree;
1334                                         ++totfree;
1335                                 }
1336                         if (!pch->had_frag && i < ppp->nxchan)
1337                                 ppp->nxchan = i;
1338                 }
1339                 ++i;
1340         }
1341         /*
1342          * Don't start sending this packet unless at least half of
1343          * the channels are free.  This gives much better TCP
1344          * performance if we have a lot of channels.
1345          */
1346         if (nfree == 0 || nfree < navail / 2)
1347                 return 0; /* can't take now, leave it in xmit_pending */
1348
1349         /* Do protocol field compression (XXX this should be optional) */
1350         p = skb->data;
1351         len = skb->len;
1352         if (*p == 0) {
1353                 ++p;
1354                 --len;
1355         }
1356
1357         totlen = len;
1358         nbigger = len % nfree;
1359
1360         /* skip to the channel after the one we last used
1361            and start at that one */
1362         list = &ppp->channels;
1363         for (i = 0; i < ppp->nxchan; ++i) {
1364                 list = list->next;
1365                 if (list == &ppp->channels) {
1366                         i = 0;
1367                         break;
1368                 }
1369         }
1370
1371         /* create a fragment for each channel */
1372         bits = B;
1373         while (len > 0) {
1374                 list = list->next;
1375                 if (list == &ppp->channels) {
1376                         i = 0;
1377                         continue;
1378                 }
1379                 pch = list_entry(list, struct channel, clist);
1380                 ++i;
1381                 if (!pch->avail)
1382                         continue;
1383
1384                 /*
1385                  * Skip this channel if it has a fragment pending already and
1386                  * we haven't given a fragment to all of the free channels.
1387                  */
1388                 if (pch->avail == 1) {
1389                         if (nfree > 0)
1390                                 continue;
1391                 } else {
1392                         pch->avail = 1;
1393                 }
1394
1395                 /* check the channel's mtu and whether it is still attached. */
1396                 spin_lock_bh(&pch->downl);
1397                 if (pch->chan == NULL) {
1398                         /* can't use this channel, it's being deregistered */
1399                         if (pch->speed == 0)
1400                                 nzero--;
1401                         else
1402                                 totspeed -= pch->speed;
1403
1404                         spin_unlock_bh(&pch->downl);
1405                         pch->avail = 0;
1406                         totlen = len;
1407                         totfree--;
1408                         nfree--;
1409                         if (--navail == 0)
1410                                 break;
1411                         continue;
1412                 }
1413
1414                 /*
1415                 *if the channel speed is not set divide
1416                 *the packet evenly among the free channels;
1417                 *otherwise divide it according to the speed
1418                 *of the channel we are going to transmit on
1419                 */
1420                 flen = len;
1421                 if (nfree > 0) {
1422                         if (pch->speed == 0) {
1423                                 flen = len/nfree;
1424                                 if (nbigger > 0) {
1425                                         flen++;
1426                                         nbigger--;
1427                                 }
1428                         } else {
1429                                 flen = (((totfree - nzero)*(totlen + hdrlen*totfree)) /
1430                                         ((totspeed*totfree)/pch->speed)) - hdrlen;
1431                                 if (nbigger > 0) {
1432                                         flen += ((totfree - nzero)*pch->speed)/totspeed;
1433                                         nbigger -= ((totfree - nzero)*pch->speed)/
1434                                                         totspeed;
1435                                 }
1436                         }
1437                         nfree--;
1438                 }
1439
1440                 /*
1441                  *check if we are on the last channel or
1442                  *we exceded the lenght of the data to
1443                  *fragment
1444                  */
1445                 if ((nfree <= 0) || (flen > len))
1446                         flen = len;
1447                 /*
1448                  *it is not worth to tx on slow channels:
1449                  *in that case from the resulting flen according to the
1450                  *above formula will be equal or less than zero.
1451                  *Skip the channel in this case
1452                  */
1453                 if (flen <= 0) {
1454                         pch->avail = 2;
1455                         spin_unlock_bh(&pch->downl);
1456                         continue;
1457                 }
1458
1459                 mtu = pch->chan->mtu - hdrlen;
1460                 if (mtu < 4)
1461                         mtu = 4;
1462                 if (flen > mtu)
1463                         flen = mtu;
1464                 if (flen == len)
1465                         bits |= E;
1466                 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
1467                 if (!frag)
1468                         goto noskb;
1469                 q = skb_put(frag, flen + hdrlen);
1470
1471                 /* make the MP header */
1472                 q[0] = PPP_MP >> 8;
1473                 q[1] = PPP_MP;
1474                 if (ppp->flags & SC_MP_XSHORTSEQ) {
1475                         q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
1476                         q[3] = ppp->nxseq;
1477                 } else {
1478                         q[2] = bits;
1479                         q[3] = ppp->nxseq >> 16;
1480                         q[4] = ppp->nxseq >> 8;
1481                         q[5] = ppp->nxseq;
1482                 }
1483
1484                 memcpy(q + hdrlen, p, flen);
1485
1486                 /* try to send it down the channel */
1487                 chan = pch->chan;
1488                 if (!skb_queue_empty(&pch->file.xq) ||
1489                         !chan->ops->start_xmit(chan, frag))
1490                         skb_queue_tail(&pch->file.xq, frag);
1491                 pch->had_frag = 1;
1492                 p += flen;
1493                 len -= flen;
1494                 ++ppp->nxseq;
1495                 bits = 0;
1496                 spin_unlock_bh(&pch->downl);
1497         }
1498         ppp->nxchan = i;
1499
1500         return 1;
1501
1502  noskb:
1503         spin_unlock_bh(&pch->downl);
1504         if (ppp->debug & 1)
1505                 printk(KERN_ERR "PPP: no memory (fragment)\n");
1506         ++ppp->dev->stats.tx_errors;
1507         ++ppp->nxseq;
1508         return 1;       /* abandon the frame */
1509 }
1510 #endif /* CONFIG_PPP_MULTILINK */
1511
1512 /*
1513  * Try to send data out on a channel.
1514  */
1515 static void
1516 ppp_channel_push(struct channel *pch)
1517 {
1518         struct sk_buff *skb;
1519         struct ppp *ppp;
1520
1521         spin_lock_bh(&pch->downl);
1522         if (pch->chan) {
1523                 while (!skb_queue_empty(&pch->file.xq)) {
1524                         skb = skb_dequeue(&pch->file.xq);
1525                         if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
1526                                 /* put the packet back and try again later */
1527                                 skb_queue_head(&pch->file.xq, skb);
1528                                 break;
1529                         }
1530                 }
1531         } else {
1532                 /* channel got deregistered */
1533                 skb_queue_purge(&pch->file.xq);
1534         }
1535         spin_unlock_bh(&pch->downl);
1536         /* see if there is anything from the attached unit to be sent */
1537         if (skb_queue_empty(&pch->file.xq)) {
1538                 read_lock_bh(&pch->upl);
1539                 ppp = pch->ppp;
1540                 if (ppp)
1541                         ppp_xmit_process(ppp);
1542                 read_unlock_bh(&pch->upl);
1543         }
1544 }
1545
1546 /*
1547  * Receive-side routines.
1548  */
1549
1550 /* misuse a few fields of the skb for MP reconstruction */
1551 #define sequence        priority
1552 #define BEbits          cb[0]
1553
1554 static inline void
1555 ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1556 {
1557         ppp_recv_lock(ppp);
1558         if (!ppp->closing)
1559                 ppp_receive_frame(ppp, skb, pch);
1560         else
1561                 kfree_skb(skb);
1562         ppp_recv_unlock(ppp);
1563 }
1564
1565 void
1566 ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
1567 {
1568         struct channel *pch = chan->ppp;
1569         int proto;
1570
1571         if (!pch) {
1572                 kfree_skb(skb);
1573                 return;
1574         }
1575
1576         read_lock_bh(&pch->upl);
1577         if (!pskb_may_pull(skb, 2)) {
1578                 kfree_skb(skb);
1579                 if (pch->ppp) {
1580                         ++pch->ppp->dev->stats.rx_length_errors;
1581                         ppp_receive_error(pch->ppp);
1582                 }
1583                 goto done;
1584         }
1585
1586         proto = PPP_PROTO(skb);
1587         if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
1588                 /* put it on the channel queue */
1589                 skb_queue_tail(&pch->file.rq, skb);
1590                 /* drop old frames if queue too long */
1591                 while (pch->file.rq.qlen > PPP_MAX_RQLEN &&
1592                        (skb = skb_dequeue(&pch->file.rq)))
1593                         kfree_skb(skb);
1594                 wake_up_interruptible(&pch->file.rwait);
1595         } else {
1596                 ppp_do_recv(pch->ppp, skb, pch);
1597         }
1598
1599 done:
1600         read_unlock_bh(&pch->upl);
1601 }
1602
1603 /* Put a 0-length skb in the receive queue as an error indication */
1604 void
1605 ppp_input_error(struct ppp_channel *chan, int code)
1606 {
1607         struct channel *pch = chan->ppp;
1608         struct sk_buff *skb;
1609
1610         if (!pch)
1611                 return;
1612
1613         read_lock_bh(&pch->upl);
1614         if (pch->ppp) {
1615                 skb = alloc_skb(0, GFP_ATOMIC);
1616                 if (skb) {
1617                         skb->len = 0;           /* probably unnecessary */
1618                         skb->cb[0] = code;
1619                         ppp_do_recv(pch->ppp, skb, pch);
1620                 }
1621         }
1622         read_unlock_bh(&pch->upl);
1623 }
1624
1625 /*
1626  * We come in here to process a received frame.
1627  * The receive side of the ppp unit is locked.
1628  */
1629 static void
1630 ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1631 {
1632         /* note: a 0-length skb is used as an error indication */
1633         if (skb->len > 0) {
1634 #ifdef CONFIG_PPP_MULTILINK
1635                 /* XXX do channel-level decompression here */
1636                 if (PPP_PROTO(skb) == PPP_MP)
1637                         ppp_receive_mp_frame(ppp, skb, pch);
1638                 else
1639 #endif /* CONFIG_PPP_MULTILINK */
1640                         ppp_receive_nonmp_frame(ppp, skb);
1641         } else {
1642                 kfree_skb(skb);
1643                 ppp_receive_error(ppp);
1644         }
1645 }
1646
1647 static void
1648 ppp_receive_error(struct ppp *ppp)
1649 {
1650         ++ppp->dev->stats.rx_errors;
1651         if (ppp->vj)
1652                 slhc_toss(ppp->vj);
1653 }
1654
1655 static void
1656 ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
1657 {
1658         struct sk_buff *ns;
1659         int proto, len, npi;
1660
1661         /*
1662          * Decompress the frame, if compressed.
1663          * Note that some decompressors need to see uncompressed frames
1664          * that come in as well as compressed frames.
1665          */
1666         if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) &&
1667             (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
1668                 skb = ppp_decompress_frame(ppp, skb);
1669
1670         if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
1671                 goto err;
1672
1673         proto = PPP_PROTO(skb);
1674         switch (proto) {
1675         case PPP_VJC_COMP:
1676                 /* decompress VJ compressed packets */
1677                 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
1678                         goto err;
1679
1680                 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
1681                         /* copy to a new sk_buff with more tailroom */
1682                         ns = dev_alloc_skb(skb->len + 128);
1683                         if (!ns) {
1684                                 printk(KERN_ERR"PPP: no memory (VJ decomp)\n");
1685                                 goto err;
1686                         }
1687                         skb_reserve(ns, 2);
1688                         skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
1689                         kfree_skb(skb);
1690                         skb = ns;
1691                 }
1692                 else
1693                         skb->ip_summed = CHECKSUM_NONE;
1694
1695                 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
1696                 if (len <= 0) {
1697                         printk(KERN_DEBUG "PPP: VJ decompression error\n");
1698                         goto err;
1699                 }
1700                 len += 2;
1701                 if (len > skb->len)
1702                         skb_put(skb, len - skb->len);
1703                 else if (len < skb->len)
1704                         skb_trim(skb, len);
1705                 proto = PPP_IP;
1706                 break;
1707
1708         case PPP_VJC_UNCOMP:
1709                 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
1710                         goto err;
1711
1712                 /* Until we fix the decompressor need to make sure
1713                  * data portion is linear.
1714                  */
1715                 if (!pskb_may_pull(skb, skb->len))
1716                         goto err;
1717
1718                 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
1719                         printk(KERN_ERR "PPP: VJ uncompressed error\n");
1720                         goto err;
1721                 }
1722                 proto = PPP_IP;
1723                 break;
1724
1725         case PPP_CCP:
1726                 ppp_ccp_peek(ppp, skb, 1);
1727                 break;
1728         }
1729
1730         ++ppp->dev->stats.rx_packets;
1731         ppp->dev->stats.rx_bytes += skb->len - 2;
1732
1733         npi = proto_to_npindex(proto);
1734         if (npi < 0) {
1735                 /* control or unknown frame - pass it to pppd */
1736                 skb_queue_tail(&ppp->file.rq, skb);
1737                 /* limit queue length by dropping old frames */
1738                 while (ppp->file.rq.qlen > PPP_MAX_RQLEN &&
1739                        (skb = skb_dequeue(&ppp->file.rq)))
1740                         kfree_skb(skb);
1741                 /* wake up any process polling or blocking on read */
1742                 wake_up_interruptible(&ppp->file.rwait);
1743
1744         } else {
1745                 /* network protocol frame - give it to the kernel */
1746
1747 #ifdef CONFIG_PPP_FILTER
1748                 /* check if the packet passes the pass and active filters */
1749                 /* the filter instructions are constructed assuming
1750                    a four-byte PPP header on each packet */
1751                 if (ppp->pass_filter || ppp->active_filter) {
1752                         if (skb_cloned(skb) &&
1753                             pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
1754                                 goto err;
1755
1756                         *skb_push(skb, 2) = 0;
1757                         if (ppp->pass_filter &&
1758                             sk_run_filter(skb, ppp->pass_filter,
1759                                           ppp->pass_len) == 0) {
1760                                 if (ppp->debug & 1)
1761                                         printk(KERN_DEBUG "PPP: inbound frame "
1762                                                "not passed\n");
1763                                 kfree_skb(skb);
1764                                 return;
1765                         }
1766                         if (!(ppp->active_filter &&
1767                               sk_run_filter(skb, ppp->active_filter,
1768                                             ppp->active_len) == 0))
1769                                 ppp->last_recv = jiffies;
1770                         __skb_pull(skb, 2);
1771                 } else
1772 #endif /* CONFIG_PPP_FILTER */
1773                         ppp->last_recv = jiffies;
1774
1775                 if ((ppp->dev->flags & IFF_UP) == 0 ||
1776                     ppp->npmode[npi] != NPMODE_PASS) {
1777                         kfree_skb(skb);
1778                 } else {
1779                         /* chop off protocol */
1780                         skb_pull_rcsum(skb, 2);
1781                         skb->dev = ppp->dev;
1782                         skb->protocol = htons(npindex_to_ethertype[npi]);
1783                         skb_reset_mac_header(skb);
1784                         netif_rx(skb);
1785                 }
1786         }
1787         return;
1788
1789  err:
1790         kfree_skb(skb);
1791         ppp_receive_error(ppp);
1792 }
1793
1794 static struct sk_buff *
1795 ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
1796 {
1797         int proto = PPP_PROTO(skb);
1798         struct sk_buff *ns;
1799         int len;
1800
1801         /* Until we fix all the decompressor's need to make sure
1802          * data portion is linear.
1803          */
1804         if (!pskb_may_pull(skb, skb->len))
1805                 goto err;
1806
1807         if (proto == PPP_COMP) {
1808                 int obuff_size;
1809
1810                 switch(ppp->rcomp->compress_proto) {
1811                 case CI_MPPE:
1812                         obuff_size = ppp->mru + PPP_HDRLEN + 1;
1813                         break;
1814                 default:
1815                         obuff_size = ppp->mru + PPP_HDRLEN;
1816                         break;
1817                 }
1818
1819                 ns = dev_alloc_skb(obuff_size);
1820                 if (!ns) {
1821                         printk(KERN_ERR "ppp_decompress_frame: no memory\n");
1822                         goto err;
1823                 }
1824                 /* the decompressor still expects the A/C bytes in the hdr */
1825                 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
1826                                 skb->len + 2, ns->data, obuff_size);
1827                 if (len < 0) {
1828                         /* Pass the compressed frame to pppd as an
1829                            error indication. */
1830                         if (len == DECOMP_FATALERROR)
1831                                 ppp->rstate |= SC_DC_FERROR;
1832                         kfree_skb(ns);
1833                         goto err;
1834                 }
1835
1836                 kfree_skb(skb);
1837                 skb = ns;
1838                 skb_put(skb, len);
1839                 skb_pull(skb, 2);       /* pull off the A/C bytes */
1840
1841         } else {
1842                 /* Uncompressed frame - pass to decompressor so it
1843                    can update its dictionary if necessary. */
1844                 if (ppp->rcomp->incomp)
1845                         ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
1846                                            skb->len + 2);
1847         }
1848
1849         return skb;
1850
1851  err:
1852         ppp->rstate |= SC_DC_ERROR;
1853         ppp_receive_error(ppp);
1854         return skb;
1855 }
1856
1857 #ifdef CONFIG_PPP_MULTILINK
1858 /*
1859  * Receive a multilink frame.
1860  * We put it on the reconstruction queue and then pull off
1861  * as many completed frames as we can.
1862  */
1863 static void
1864 ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1865 {
1866         u32 mask, seq;
1867         struct channel *ch;
1868         int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1869
1870         if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
1871                 goto err;               /* no good, throw it away */
1872
1873         /* Decode sequence number and begin/end bits */
1874         if (ppp->flags & SC_MP_SHORTSEQ) {
1875                 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
1876                 mask = 0xfff;
1877         } else {
1878                 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
1879                 mask = 0xffffff;
1880         }
1881         skb->BEbits = skb->data[2];
1882         skb_pull(skb, mphdrlen);        /* pull off PPP and MP headers */
1883
1884         /*
1885          * Do protocol ID decompression on the first fragment of each packet.
1886          */
1887         if ((skb->BEbits & B) && (skb->data[0] & 1))
1888                 *skb_push(skb, 1) = 0;
1889
1890         /*
1891          * Expand sequence number to 32 bits, making it as close
1892          * as possible to ppp->minseq.
1893          */
1894         seq |= ppp->minseq & ~mask;
1895         if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
1896                 seq += mask + 1;
1897         else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
1898                 seq -= mask + 1;        /* should never happen */
1899         skb->sequence = seq;
1900         pch->lastseq = seq;
1901
1902         /*
1903          * If this packet comes before the next one we were expecting,
1904          * drop it.
1905          */
1906         if (seq_before(seq, ppp->nextseq)) {
1907                 kfree_skb(skb);
1908                 ++ppp->dev->stats.rx_dropped;
1909                 ppp_receive_error(ppp);
1910                 return;
1911         }
1912
1913         /*
1914          * Reevaluate minseq, the minimum over all channels of the
1915          * last sequence number received on each channel.  Because of
1916          * the increasing sequence number rule, we know that any fragment
1917          * before `minseq' which hasn't arrived is never going to arrive.
1918          * The list of channels can't change because we have the receive
1919          * side of the ppp unit locked.
1920          */
1921         list_for_each_entry(ch, &ppp->channels, clist) {
1922                 if (seq_before(ch->lastseq, seq))
1923                         seq = ch->lastseq;
1924         }
1925         if (seq_before(ppp->minseq, seq))
1926                 ppp->minseq = seq;
1927
1928         /* Put the fragment on the reconstruction queue */
1929         ppp_mp_insert(ppp, skb);
1930
1931         /* If the queue is getting long, don't wait any longer for packets
1932            before the start of the queue. */
1933         if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
1934                 struct sk_buff *mskb = skb_peek(&ppp->mrq);
1935                 if (seq_before(ppp->minseq, mskb->sequence))
1936                         ppp->minseq = mskb->sequence;
1937         }
1938
1939         /* Pull completed packets off the queue and receive them. */
1940         while ((skb = ppp_mp_reconstruct(ppp))) {
1941                 if (pskb_may_pull(skb, 2))
1942                         ppp_receive_nonmp_frame(ppp, skb);
1943                 else {
1944                         ++ppp->dev->stats.rx_length_errors;
1945                         kfree_skb(skb);
1946                         ppp_receive_error(ppp);
1947                 }
1948         }
1949
1950         return;
1951
1952  err:
1953         kfree_skb(skb);
1954         ppp_receive_error(ppp);
1955 }
1956
1957 /*
1958  * Insert a fragment on the MP reconstruction queue.
1959  * The queue is ordered by increasing sequence number.
1960  */
1961 static void
1962 ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
1963 {
1964         struct sk_buff *p;
1965         struct sk_buff_head *list = &ppp->mrq;
1966         u32 seq = skb->sequence;
1967
1968         /* N.B. we don't need to lock the list lock because we have the
1969            ppp unit receive-side lock. */
1970         skb_queue_walk(list, p) {
1971                 if (seq_before(seq, p->sequence))
1972                         break;
1973         }
1974         __skb_queue_before(list, p, skb);
1975 }
1976
1977 /*
1978  * Reconstruct a packet from the MP fragment queue.
1979  * We go through increasing sequence numbers until we find a
1980  * complete packet, or we get to the sequence number for a fragment
1981  * which hasn't arrived but might still do so.
1982  */
1983 static struct sk_buff *
1984 ppp_mp_reconstruct(struct ppp *ppp)
1985 {
1986         u32 seq = ppp->nextseq;
1987         u32 minseq = ppp->minseq;
1988         struct sk_buff_head *list = &ppp->mrq;
1989         struct sk_buff *p, *next;
1990         struct sk_buff *head, *tail;
1991         struct sk_buff *skb = NULL;
1992         int lost = 0, len = 0;
1993
1994         if (ppp->mrru == 0)     /* do nothing until mrru is set */
1995                 return NULL;
1996         head = list->next;
1997         tail = NULL;
1998         for (p = head; p != (struct sk_buff *) list; p = next) {
1999                 next = p->next;
2000                 if (seq_before(p->sequence, seq)) {
2001                         /* this can't happen, anyway ignore the skb */
2002                         printk(KERN_ERR "ppp_mp_reconstruct bad seq %u < %u\n",
2003                                p->sequence, seq);
2004                         head = next;
2005                         continue;
2006                 }
2007                 if (p->sequence != seq) {
2008                         /* Fragment `seq' is missing.  If it is after
2009                            minseq, it might arrive later, so stop here. */
2010                         if (seq_after(seq, minseq))
2011                                 break;
2012                         /* Fragment `seq' is lost, keep going. */
2013                         lost = 1;
2014                         seq = seq_before(minseq, p->sequence)?
2015                                 minseq + 1: p->sequence;
2016                         next = p;
2017                         continue;
2018                 }
2019
2020                 /*
2021                  * At this point we know that all the fragments from
2022                  * ppp->nextseq to seq are either present or lost.
2023                  * Also, there are no complete packets in the queue
2024                  * that have no missing fragments and end before this
2025                  * fragment.
2026                  */
2027
2028                 /* B bit set indicates this fragment starts a packet */
2029                 if (p->BEbits & B) {
2030                         head = p;
2031                         lost = 0;
2032                         len = 0;
2033                 }
2034
2035                 len += p->len;
2036
2037                 /* Got a complete packet yet? */
2038                 if (lost == 0 && (p->BEbits & E) && (head->BEbits & B)) {
2039                         if (len > ppp->mrru + 2) {
2040                                 ++ppp->dev->stats.rx_length_errors;
2041                                 printk(KERN_DEBUG "PPP: reconstructed packet"
2042                                        " is too long (%d)\n", len);
2043                         } else if (p == head) {
2044                                 /* fragment is complete packet - reuse skb */
2045                                 tail = p;
2046                                 skb = skb_get(p);
2047                                 break;
2048                         } else if ((skb = dev_alloc_skb(len)) == NULL) {
2049                                 ++ppp->dev->stats.rx_missed_errors;
2050                                 printk(KERN_DEBUG "PPP: no memory for "
2051                                        "reconstructed packet");
2052                         } else {
2053                                 tail = p;
2054                                 break;
2055                         }
2056                         ppp->nextseq = seq + 1;
2057                 }
2058
2059                 /*
2060                  * If this is the ending fragment of a packet,
2061                  * and we haven't found a complete valid packet yet,
2062                  * we can discard up to and including this fragment.
2063                  */
2064                 if (p->BEbits & E)
2065                         head = next;
2066
2067                 ++seq;
2068         }
2069
2070         /* If we have a complete packet, copy it all into one skb. */
2071         if (tail != NULL) {
2072                 /* If we have discarded any fragments,
2073                    signal a receive error. */
2074                 if (head->sequence != ppp->nextseq) {
2075                         if (ppp->debug & 1)
2076                                 printk(KERN_DEBUG "  missed pkts %u..%u\n",
2077                                        ppp->nextseq, head->sequence-1);
2078                         ++ppp->dev->stats.rx_dropped;
2079                         ppp_receive_error(ppp);
2080                 }
2081
2082                 if (head != tail)
2083                         /* copy to a single skb */
2084                         for (p = head; p != tail->next; p = p->next)
2085                                 skb_copy_bits(p, 0, skb_put(skb, p->len), p->len);
2086                 ppp->nextseq = tail->sequence + 1;
2087                 head = tail->next;
2088         }
2089
2090         /* Discard all the skbuffs that we have copied the data out of
2091            or that we can't use. */
2092         while ((p = list->next) != head) {
2093                 __skb_unlink(p, list);
2094                 kfree_skb(p);
2095         }
2096
2097         return skb;
2098 }
2099 #endif /* CONFIG_PPP_MULTILINK */
2100
2101 /*
2102  * Channel interface.
2103  */
2104
2105 /* Create a new, unattached ppp channel. */
2106 int ppp_register_channel(struct ppp_channel *chan)
2107 {
2108         return ppp_register_net_channel(current->nsproxy->net_ns, chan);
2109 }
2110
2111 /* Create a new, unattached ppp channel for specified net. */
2112 int ppp_register_net_channel(struct net *net, struct ppp_channel *chan)
2113 {
2114         struct channel *pch;
2115         struct ppp_net *pn;
2116
2117         pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
2118         if (!pch)
2119                 return -ENOMEM;
2120
2121         pn = ppp_pernet(net);
2122
2123         pch->ppp = NULL;
2124         pch->chan = chan;
2125         pch->chan_net = net;
2126         chan->ppp = pch;
2127         init_ppp_file(&pch->file, CHANNEL);
2128         pch->file.hdrlen = chan->hdrlen;
2129 #ifdef CONFIG_PPP_MULTILINK
2130         pch->lastseq = -1;
2131 #endif /* CONFIG_PPP_MULTILINK */
2132         init_rwsem(&pch->chan_sem);
2133         spin_lock_init(&pch->downl);
2134         rwlock_init(&pch->upl);
2135
2136         spin_lock_bh(&pn->all_channels_lock);
2137         pch->file.index = ++pn->last_channel_index;
2138         list_add(&pch->list, &pn->new_channels);
2139         atomic_inc(&channel_count);
2140         spin_unlock_bh(&pn->all_channels_lock);
2141
2142         return 0;
2143 }
2144
2145 /*
2146  * Return the index of a channel.
2147  */
2148 int ppp_channel_index(struct ppp_channel *chan)
2149 {
2150         struct channel *pch = chan->ppp;
2151
2152         if (pch)
2153                 return pch->file.index;
2154         return -1;
2155 }
2156
2157 /*
2158  * Return the PPP unit number to which a channel is connected.
2159  */
2160 int ppp_unit_number(struct ppp_channel *chan)
2161 {
2162         struct channel *pch = chan->ppp;
2163         int unit = -1;
2164
2165         if (pch) {
2166                 read_lock_bh(&pch->upl);
2167                 if (pch->ppp)
2168                         unit = pch->ppp->file.index;
2169                 read_unlock_bh(&pch->upl);
2170         }
2171         return unit;
2172 }
2173
2174 /*
2175  * Return the PPP device interface name of a channel.
2176  */
2177 char *ppp_dev_name(struct ppp_channel *chan)
2178 {
2179         struct channel *pch = chan->ppp;
2180         char *name = NULL;
2181
2182         if (pch) {
2183                 read_lock_bh(&pch->upl);
2184                 if (pch->ppp && pch->ppp->dev)
2185                         name = pch->ppp->dev->name;
2186                 read_unlock_bh(&pch->upl);
2187         }
2188         return name;
2189 }
2190
2191
2192 /*
2193  * Disconnect a channel from the generic layer.
2194  * This must be called in process context.
2195  */
2196 void
2197 ppp_unregister_channel(struct ppp_channel *chan)
2198 {
2199         struct channel *pch = chan->ppp;
2200         struct ppp_net *pn;
2201
2202         if (!pch)
2203                 return;         /* should never happen */
2204
2205         chan->ppp = NULL;
2206
2207         /*
2208          * This ensures that we have returned from any calls into the
2209          * the channel's start_xmit or ioctl routine before we proceed.
2210          */
2211         down_write(&pch->chan_sem);
2212         spin_lock_bh(&pch->downl);
2213         pch->chan = NULL;
2214         spin_unlock_bh(&pch->downl);
2215         up_write(&pch->chan_sem);
2216         ppp_disconnect_channel(pch);
2217
2218         pn = ppp_pernet(pch->chan_net);
2219         spin_lock_bh(&pn->all_channels_lock);
2220         list_del(&pch->list);
2221         spin_unlock_bh(&pn->all_channels_lock);
2222
2223         pch->file.dead = 1;
2224         wake_up_interruptible(&pch->file.rwait);
2225         if (atomic_dec_and_test(&pch->file.refcnt))
2226                 ppp_destroy_channel(pch);
2227 }
2228
2229 /*
2230  * Callback from a channel when it can accept more to transmit.
2231  * This should be called at BH/softirq level, not interrupt level.
2232  */
2233 void
2234 ppp_output_wakeup(struct ppp_channel *chan)
2235 {
2236         struct channel *pch = chan->ppp;
2237
2238         if (!pch)
2239                 return;
2240         ppp_channel_push(pch);
2241 }
2242
2243 /*
2244  * Compression control.
2245  */
2246
2247 /* Process the PPPIOCSCOMPRESS ioctl. */
2248 static int
2249 ppp_set_compress(struct ppp *ppp, unsigned long arg)
2250 {
2251         int err;
2252         struct compressor *cp, *ocomp;
2253         struct ppp_option_data data;
2254         void *state, *ostate;
2255         unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
2256
2257         err = -EFAULT;
2258         if (copy_from_user(&data, (void __user *) arg, sizeof(data)) ||
2259             (data.length <= CCP_MAX_OPTION_LENGTH &&
2260              copy_from_user(ccp_option, (void __user *) data.ptr, data.length)))
2261                 goto out;
2262         err = -EINVAL;
2263         if (data.length > CCP_MAX_OPTION_LENGTH ||
2264             ccp_option[1] < 2 || ccp_option[1] > data.length)
2265                 goto out;
2266
2267         cp = try_then_request_module(
2268                 find_compressor(ccp_option[0]),
2269                 "ppp-compress-%d", ccp_option[0]);
2270         if (!cp)
2271                 goto out;
2272
2273         err = -ENOBUFS;
2274         if (data.transmit) {
2275                 state = cp->comp_alloc(ccp_option, data.length);
2276                 if (state) {
2277                         ppp_xmit_lock(ppp);
2278                         ppp->xstate &= ~SC_COMP_RUN;
2279                         ocomp = ppp->xcomp;
2280                         ostate = ppp->xc_state;
2281                         ppp->xcomp = cp;
2282                         ppp->xc_state = state;
2283                         ppp_xmit_unlock(ppp);
2284                         if (ostate) {
2285                                 ocomp->comp_free(ostate);
2286                                 module_put(ocomp->owner);
2287                         }
2288                         err = 0;
2289                 } else
2290                         module_put(cp->owner);
2291
2292         } else {
2293                 state = cp->decomp_alloc(ccp_option, data.length);
2294                 if (state) {
2295                         ppp_recv_lock(ppp);
2296                         ppp->rstate &= ~SC_DECOMP_RUN;
2297                         ocomp = ppp->rcomp;
2298                         ostate = ppp->rc_state;
2299                         ppp->rcomp = cp;
2300                         ppp->rc_state = state;
2301                         ppp_recv_unlock(ppp);
2302                         if (ostate) {
2303                                 ocomp->decomp_free(ostate);
2304                                 module_put(ocomp->owner);
2305                         }
2306                         err = 0;
2307                 } else
2308                         module_put(cp->owner);
2309         }
2310
2311  out:
2312         return err;
2313 }
2314
2315 /*
2316  * Look at a CCP packet and update our state accordingly.
2317  * We assume the caller has the xmit or recv path locked.
2318  */
2319 static void
2320 ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
2321 {
2322         unsigned char *dp;
2323         int len;
2324
2325         if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
2326                 return; /* no header */
2327         dp = skb->data + 2;
2328
2329         switch (CCP_CODE(dp)) {
2330         case CCP_CONFREQ:
2331
2332                 /* A ConfReq starts negotiation of compression
2333                  * in one direction of transmission,
2334                  * and hence brings it down...but which way?
2335                  *
2336                  * Remember:
2337                  * A ConfReq indicates what the sender would like to receive
2338                  */
2339                 if(inbound)
2340                         /* He is proposing what I should send */
2341                         ppp->xstate &= ~SC_COMP_RUN;
2342                 else
2343                         /* I am proposing to what he should send */
2344                         ppp->rstate &= ~SC_DECOMP_RUN;
2345
2346                 break;
2347
2348         case CCP_TERMREQ:
2349         case CCP_TERMACK:
2350                 /*
2351                  * CCP is going down, both directions of transmission
2352                  */
2353                 ppp->rstate &= ~SC_DECOMP_RUN;
2354                 ppp->xstate &= ~SC_COMP_RUN;
2355                 break;
2356
2357         case CCP_CONFACK:
2358                 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
2359                         break;
2360                 len = CCP_LENGTH(dp);
2361                 if (!pskb_may_pull(skb, len + 2))
2362                         return;         /* too short */
2363                 dp += CCP_HDRLEN;
2364                 len -= CCP_HDRLEN;
2365                 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
2366                         break;
2367                 if (inbound) {
2368                         /* we will start receiving compressed packets */
2369                         if (!ppp->rc_state)
2370                                 break;
2371                         if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
2372                                         ppp->file.index, 0, ppp->mru, ppp->debug)) {
2373                                 ppp->rstate |= SC_DECOMP_RUN;
2374                                 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
2375                         }
2376                 } else {
2377                         /* we will soon start sending compressed packets */
2378                         if (!ppp->xc_state)
2379                                 break;
2380                         if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
2381                                         ppp->file.index, 0, ppp->debug))
2382                                 ppp->xstate |= SC_COMP_RUN;
2383                 }
2384                 break;
2385
2386         case CCP_RESETACK:
2387                 /* reset the [de]compressor */
2388                 if ((ppp->flags & SC_CCP_UP) == 0)
2389                         break;
2390                 if (inbound) {
2391                         if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
2392                                 ppp->rcomp->decomp_reset(ppp->rc_state);
2393                                 ppp->rstate &= ~SC_DC_ERROR;
2394                         }
2395                 } else {
2396                         if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
2397                                 ppp->xcomp->comp_reset(ppp->xc_state);
2398                 }
2399                 break;
2400         }
2401 }
2402
2403 /* Free up compression resources. */
2404 static void
2405 ppp_ccp_closed(struct ppp *ppp)
2406 {
2407         void *xstate, *rstate;
2408         struct compressor *xcomp, *rcomp;
2409
2410         ppp_lock(ppp);
2411         ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
2412         ppp->xstate = 0;
2413         xcomp = ppp->xcomp;
2414         xstate = ppp->xc_state;
2415         ppp->xc_state = NULL;
2416         ppp->rstate = 0;
2417         rcomp = ppp->rcomp;
2418         rstate = ppp->rc_state;
2419         ppp->rc_state = NULL;
2420         ppp_unlock(ppp);
2421
2422         if (xstate) {
2423                 xcomp->comp_free(xstate);
2424                 module_put(xcomp->owner);
2425         }
2426         if (rstate) {
2427                 rcomp->decomp_free(rstate);
2428                 module_put(rcomp->owner);
2429         }
2430 }
2431
2432 /* List of compressors. */
2433 static LIST_HEAD(compressor_list);
2434 static DEFINE_SPINLOCK(compressor_list_lock);
2435
2436 struct compressor_entry {
2437         struct list_head list;
2438         struct compressor *comp;
2439 };
2440
2441 static struct compressor_entry *
2442 find_comp_entry(int proto)
2443 {
2444         struct compressor_entry *ce;
2445
2446         list_for_each_entry(ce, &compressor_list, list) {
2447                 if (ce->comp->compress_proto == proto)
2448                         return ce;
2449         }
2450         return NULL;
2451 }
2452
2453 /* Register a compressor */
2454 int
2455 ppp_register_compressor(struct compressor *cp)
2456 {
2457         struct compressor_entry *ce;
2458         int ret;
2459         spin_lock(&compressor_list_lock);
2460         ret = -EEXIST;
2461         if (find_comp_entry(cp->compress_proto))
2462                 goto out;
2463         ret = -ENOMEM;
2464         ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
2465         if (!ce)
2466                 goto out;
2467         ret = 0;
2468         ce->comp = cp;
2469         list_add(&ce->list, &compressor_list);
2470  out:
2471         spin_unlock(&compressor_list_lock);
2472         return ret;
2473 }
2474
2475 /* Unregister a compressor */
2476 void
2477 ppp_unregister_compressor(struct compressor *cp)
2478 {
2479         struct compressor_entry *ce;
2480
2481         spin_lock(&compressor_list_lock);
2482         ce = find_comp_entry(cp->compress_proto);
2483         if (ce && ce->comp == cp) {
2484                 list_del(&ce->list);
2485                 kfree(ce);
2486         }
2487         spin_unlock(&compressor_list_lock);
2488 }
2489
2490 /* Find a compressor. */
2491 static struct compressor *
2492 find_compressor(int type)
2493 {
2494         struct compressor_entry *ce;
2495         struct compressor *cp = NULL;
2496
2497         spin_lock(&compressor_list_lock);
2498         ce = find_comp_entry(type);
2499         if (ce) {
2500                 cp = ce->comp;
2501                 if (!try_module_get(cp->owner))
2502                         cp = NULL;
2503         }
2504         spin_unlock(&compressor_list_lock);
2505         return cp;
2506 }
2507
2508 /*
2509  * Miscelleneous stuff.
2510  */
2511
2512 static void
2513 ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
2514 {
2515         struct slcompress *vj = ppp->vj;
2516
2517         memset(st, 0, sizeof(*st));
2518         st->p.ppp_ipackets = ppp->dev->stats.rx_packets;
2519         st->p.ppp_ierrors = ppp->dev->stats.rx_errors;
2520         st->p.ppp_ibytes = ppp->dev->stats.rx_bytes;
2521         st->p.ppp_opackets = ppp->dev->stats.tx_packets;
2522         st->p.ppp_oerrors = ppp->dev->stats.tx_errors;
2523         st->p.ppp_obytes = ppp->dev->stats.tx_bytes;
2524         if (!vj)
2525                 return;
2526         st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
2527         st->vj.vjs_compressed = vj->sls_o_compressed;
2528         st->vj.vjs_searches = vj->sls_o_searches;
2529         st->vj.vjs_misses = vj->sls_o_misses;
2530         st->vj.vjs_errorin = vj->sls_i_error;
2531         st->vj.vjs_tossed = vj->sls_i_tossed;
2532         st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
2533         st->vj.vjs_compressedin = vj->sls_i_compressed;
2534 }
2535
2536 /*
2537  * Stuff for handling the lists of ppp units and channels
2538  * and for initialization.
2539  */
2540
2541 /*
2542  * Create a new ppp interface unit.  Fails if it can't allocate memory
2543  * or if there is already a unit with the requested number.
2544  * unit == -1 means allocate a new number.
2545  */
2546 static struct ppp *
2547 ppp_create_interface(struct net *net, int unit, int *retp)
2548 {
2549         struct ppp *ppp;
2550         struct ppp_net *pn;
2551         struct net_device *dev = NULL;
2552         int ret = -ENOMEM;
2553         int i;
2554
2555         dev = alloc_netdev(sizeof(struct ppp), "", ppp_setup);
2556         if (!dev)
2557                 goto out1;
2558
2559         pn = ppp_pernet(net);
2560
2561         ppp = netdev_priv(dev);
2562         ppp->dev = dev;
2563         ppp->mru = PPP_MRU;
2564         init_ppp_file(&ppp->file, INTERFACE);
2565         ppp->file.hdrlen = PPP_HDRLEN - 2;      /* don't count proto bytes */
2566         for (i = 0; i < NUM_NP; ++i)
2567                 ppp->npmode[i] = NPMODE_PASS;
2568         INIT_LIST_HEAD(&ppp->channels);
2569         spin_lock_init(&ppp->rlock);
2570         spin_lock_init(&ppp->wlock);
2571 #ifdef CONFIG_PPP_MULTILINK
2572         ppp->minseq = -1;
2573         skb_queue_head_init(&ppp->mrq);
2574 #endif /* CONFIG_PPP_MULTILINK */
2575
2576         /*
2577          * drum roll: don't forget to set
2578          * the net device is belong to
2579          */
2580         dev_net_set(dev, net);
2581
2582         ret = -EEXIST;
2583         mutex_lock(&pn->all_ppp_mutex);
2584
2585         if (unit < 0) {
2586                 unit = unit_get(&pn->units_idr, ppp);
2587                 if (unit < 0) {
2588                         *retp = unit;
2589                         goto out2;
2590                 }
2591         } else {
2592                 if (unit_find(&pn->units_idr, unit))
2593                         goto out2; /* unit already exists */
2594                 /*
2595                  * if caller need a specified unit number
2596                  * lets try to satisfy him, otherwise --
2597                  * he should better ask us for new unit number
2598                  *
2599                  * NOTE: yes I know that returning EEXIST it's not
2600                  * fair but at least pppd will ask us to allocate
2601                  * new unit in this case so user is happy :)
2602                  */
2603                 unit = unit_set(&pn->units_idr, ppp, unit);
2604                 if (unit < 0)
2605                         goto out2;
2606         }
2607
2608         /* Initialize the new ppp unit */
2609         ppp->file.index = unit;
2610         sprintf(dev->name, "ppp%d", unit);
2611
2612         ret = register_netdev(dev);
2613         if (ret != 0) {
2614                 unit_put(&pn->units_idr, unit);
2615                 printk(KERN_ERR "PPP: couldn't register device %s (%d)\n",
2616                        dev->name, ret);
2617                 goto out2;
2618         }
2619
2620         ppp->ppp_net = net;
2621
2622         atomic_inc(&ppp_unit_count);
2623         mutex_unlock(&pn->all_ppp_mutex);
2624
2625         *retp = 0;
2626         return ppp;
2627
2628 out2:
2629         mutex_unlock(&pn->all_ppp_mutex);
2630         free_netdev(dev);
2631 out1:
2632         *retp = ret;
2633         return NULL;
2634 }
2635
2636 /*
2637  * Initialize a ppp_file structure.
2638  */
2639 static void
2640 init_ppp_file(struct ppp_file *pf, int kind)
2641 {
2642         pf->kind = kind;
2643         skb_queue_head_init(&pf->xq);
2644         skb_queue_head_init(&pf->rq);
2645         atomic_set(&pf->refcnt, 1);
2646         init_waitqueue_head(&pf->rwait);
2647 }
2648
2649 /*
2650  * Take down a ppp interface unit - called when the owning file
2651  * (the one that created the unit) is closed or detached.
2652  */
2653 static void ppp_shutdown_interface(struct ppp *ppp)
2654 {
2655         struct ppp_net *pn;
2656
2657         pn = ppp_pernet(ppp->ppp_net);
2658         mutex_lock(&pn->all_ppp_mutex);
2659
2660         /* This will call dev_close() for us. */
2661         ppp_lock(ppp);
2662         if (!ppp->closing) {
2663                 ppp->closing = 1;
2664                 ppp_unlock(ppp);
2665                 unregister_netdev(ppp->dev);
2666         } else
2667                 ppp_unlock(ppp);
2668
2669         unit_put(&pn->units_idr, ppp->file.index);
2670         ppp->file.dead = 1;
2671         ppp->owner = NULL;
2672         wake_up_interruptible(&ppp->file.rwait);
2673
2674         mutex_unlock(&pn->all_ppp_mutex);
2675 }
2676
2677 /*
2678  * Free the memory used by a ppp unit.  This is only called once
2679  * there are no channels connected to the unit and no file structs
2680  * that reference the unit.
2681  */
2682 static void ppp_destroy_interface(struct ppp *ppp)
2683 {
2684         atomic_dec(&ppp_unit_count);
2685
2686         if (!ppp->file.dead || ppp->n_channels) {
2687                 /* "can't happen" */
2688                 printk(KERN_ERR "ppp: destroying ppp struct %p but dead=%d "
2689                        "n_channels=%d !\n", ppp, ppp->file.dead,
2690                        ppp->n_channels);
2691                 return;
2692         }
2693
2694         ppp_ccp_closed(ppp);
2695         if (ppp->vj) {
2696                 slhc_free(ppp->vj);
2697                 ppp->vj = NULL;
2698         }
2699         skb_queue_purge(&ppp->file.xq);
2700         skb_queue_purge(&ppp->file.rq);
2701 #ifdef CONFIG_PPP_MULTILINK
2702         skb_queue_purge(&ppp->mrq);
2703 #endif /* CONFIG_PPP_MULTILINK */
2704 #ifdef CONFIG_PPP_FILTER
2705         kfree(ppp->pass_filter);
2706         ppp->pass_filter = NULL;
2707         kfree(ppp->active_filter);
2708         ppp->active_filter = NULL;
2709 #endif /* CONFIG_PPP_FILTER */
2710
2711         kfree_skb(ppp->xmit_pending);
2712
2713         free_netdev(ppp->dev);
2714 }
2715
2716 /*
2717  * Locate an existing ppp unit.
2718  * The caller should have locked the all_ppp_mutex.
2719  */
2720 static struct ppp *
2721 ppp_find_unit(struct ppp_net *pn, int unit)
2722 {
2723         return unit_find(&pn->units_idr, unit);
2724 }
2725
2726 /*
2727  * Locate an existing ppp channel.
2728  * The caller should have locked the all_channels_lock.
2729  * First we look in the new_channels list, then in the
2730  * all_channels list.  If found in the new_channels list,
2731  * we move it to the all_channels list.  This is for speed
2732  * when we have a lot of channels in use.
2733  */
2734 static struct channel *
2735 ppp_find_channel(struct ppp_net *pn, int unit)
2736 {
2737         struct channel *pch;
2738
2739         list_for_each_entry(pch, &pn->new_channels, list) {
2740                 if (pch->file.index == unit) {
2741                         list_move(&pch->list, &pn->all_channels);
2742                         return pch;
2743                 }
2744         }
2745
2746         list_for_each_entry(pch, &pn->all_channels, list) {
2747                 if (pch->file.index == unit)
2748                         return pch;
2749         }
2750
2751         return NULL;
2752 }
2753
2754 /*
2755  * Connect a PPP channel to a PPP interface unit.
2756  */
2757 static int
2758 ppp_connect_channel(struct channel *pch, int unit)
2759 {
2760         struct ppp *ppp;
2761         struct ppp_net *pn;
2762         int ret = -ENXIO;
2763         int hdrlen;
2764
2765         pn = ppp_pernet(pch->chan_net);
2766
2767         mutex_lock(&pn->all_ppp_mutex);
2768         ppp = ppp_find_unit(pn, unit);
2769         if (!ppp)
2770                 goto out;
2771         write_lock_bh(&pch->upl);
2772         ret = -EINVAL;
2773         if (pch->ppp)
2774                 goto outl;
2775
2776         ppp_lock(ppp);
2777         if (pch->file.hdrlen > ppp->file.hdrlen)
2778                 ppp->file.hdrlen = pch->file.hdrlen;
2779         hdrlen = pch->file.hdrlen + 2;  /* for protocol bytes */
2780         if (hdrlen > ppp->dev->hard_header_len)
2781                 ppp->dev->hard_header_len = hdrlen;
2782         list_add_tail(&pch->clist, &ppp->channels);
2783         ++ppp->n_channels;
2784         pch->ppp = ppp;
2785         atomic_inc(&ppp->file.refcnt);
2786         ppp_unlock(ppp);
2787         ret = 0;
2788
2789  outl:
2790         write_unlock_bh(&pch->upl);
2791  out:
2792         mutex_unlock(&pn->all_ppp_mutex);
2793         return ret;
2794 }
2795
2796 /*
2797  * Disconnect a channel from its ppp unit.
2798  */
2799 static int
2800 ppp_disconnect_channel(struct channel *pch)
2801 {
2802         struct ppp *ppp;
2803         int err = -EINVAL;
2804
2805         write_lock_bh(&pch->upl);
2806         ppp = pch->ppp;
2807         pch->ppp = NULL;
2808         write_unlock_bh(&pch->upl);
2809         if (ppp) {
2810                 /* remove it from the ppp unit's list */
2811                 ppp_lock(ppp);
2812                 list_del(&pch->clist);
2813                 if (--ppp->n_channels == 0)
2814                         wake_up_interruptible(&ppp->file.rwait);
2815                 ppp_unlock(ppp);
2816                 if (atomic_dec_and_test(&ppp->file.refcnt))
2817                         ppp_destroy_interface(ppp);
2818                 err = 0;
2819         }
2820         return err;
2821 }
2822
2823 /*
2824  * Free up the resources used by a ppp channel.
2825  */
2826 static void ppp_destroy_channel(struct channel *pch)
2827 {
2828         atomic_dec(&channel_count);
2829
2830         if (!pch->file.dead) {
2831                 /* "can't happen" */
2832                 printk(KERN_ERR "ppp: destroying undead channel %p !\n",
2833                        pch);
2834                 return;
2835         }
2836         skb_queue_purge(&pch->file.xq);
2837         skb_queue_purge(&pch->file.rq);
2838         kfree(pch);
2839 }
2840
2841 static void __exit ppp_cleanup(void)
2842 {
2843         /* should never happen */
2844         if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
2845                 printk(KERN_ERR "PPP: removing module but units remain!\n");
2846         unregister_chrdev(PPP_MAJOR, "ppp");
2847         device_destroy(ppp_class, MKDEV(PPP_MAJOR, 0));
2848         class_destroy(ppp_class);
2849         unregister_pernet_device(&ppp_net_ops);
2850 }
2851
2852 /*
2853  * Units handling. Caller must protect concurrent access
2854  * by holding all_ppp_mutex
2855  */
2856
2857 /* associate pointer with specified number */
2858 static int unit_set(struct idr *p, void *ptr, int n)
2859 {
2860         int unit, err;
2861
2862 again:
2863         if (!idr_pre_get(p, GFP_KERNEL)) {
2864                 printk(KERN_ERR "PPP: No free memory for idr\n");
2865                 return -ENOMEM;
2866         }
2867
2868         err = idr_get_new_above(p, ptr, n, &unit);
2869         if (err == -EAGAIN)
2870                 goto again;
2871
2872         if (unit != n) {
2873                 idr_remove(p, unit);
2874                 return -EINVAL;
2875         }
2876
2877         return unit;
2878 }
2879
2880 /* get new free unit number and associate pointer with it */
2881 static int unit_get(struct idr *p, void *ptr)
2882 {
2883         int unit, err;
2884
2885 again:
2886         if (!idr_pre_get(p, GFP_KERNEL)) {
2887                 printk(KERN_ERR "PPP: No free memory for idr\n");
2888                 return -ENOMEM;
2889         }
2890
2891         err = idr_get_new_above(p, ptr, 0, &unit);
2892         if (err == -EAGAIN)
2893                 goto again;
2894
2895         return unit;
2896 }
2897
2898 /* put unit number back to a pool */
2899 static void unit_put(struct idr *p, int n)
2900 {
2901         idr_remove(p, n);
2902 }
2903
2904 /* get pointer associated with the number */
2905 static void *unit_find(struct idr *p, int n)
2906 {
2907         return idr_find(p, n);
2908 }
2909
2910 /* Module/initialization stuff */
2911
2912 module_init(ppp_init);
2913 module_exit(ppp_cleanup);
2914
2915 EXPORT_SYMBOL(ppp_register_net_channel);
2916 EXPORT_SYMBOL(ppp_register_channel);
2917 EXPORT_SYMBOL(ppp_unregister_channel);
2918 EXPORT_SYMBOL(ppp_channel_index);
2919 EXPORT_SYMBOL(ppp_unit_number);
2920 EXPORT_SYMBOL(ppp_dev_name);
2921 EXPORT_SYMBOL(ppp_input);
2922 EXPORT_SYMBOL(ppp_input_error);
2923 EXPORT_SYMBOL(ppp_output_wakeup);
2924 EXPORT_SYMBOL(ppp_register_compressor);
2925 EXPORT_SYMBOL(ppp_unregister_compressor);
2926 MODULE_LICENSE("GPL");
2927 MODULE_ALIAS_CHARDEV(PPP_MAJOR, 0);
2928 MODULE_ALIAS("devname:ppp");