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