2 * Generic PPP layer for Linux.
4 * Copyright 1999-2002 Paul Mackerras.
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.
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
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.
22 * ==FILEVERSION 20041108==
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/kmod.h>
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/netdevice.h>
31 #include <linux/poll.h>
32 #include <linux/ppp_defs.h>
33 #include <linux/filter.h>
34 #include <linux/if_ppp.h>
35 #include <linux/ppp_channel.h>
36 #include <linux/ppp-comp.h>
37 #include <linux/skbuff.h>
38 #include <linux/rtnetlink.h>
39 #include <linux/if_arp.h>
41 #include <linux/tcp.h>
42 #include <linux/spinlock.h>
43 #include <linux/rwsem.h>
44 #include <linux/stddef.h>
45 #include <linux/device.h>
46 #include <linux/mutex.h>
47 #include <net/slhc_vj.h>
48 #include <asm/atomic.h>
50 #define PPP_VERSION "2.4.2"
53 * Network protocols we support.
55 #define NP_IP 0 /* Internet Protocol V4 */
56 #define NP_IPV6 1 /* Internet Protocol V6 */
57 #define NP_IPX 2 /* IPX protocol */
58 #define NP_AT 3 /* Appletalk protocol */
59 #define NP_MPLS_UC 4 /* MPLS unicast */
60 #define NP_MPLS_MC 5 /* MPLS multicast */
61 #define NUM_NP 6 /* Number of NPs. */
63 #define MPHDRLEN 6 /* multilink protocol header length */
64 #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
65 #define MIN_FRAG_SIZE 64
68 * An instance of /dev/ppp can be associated with either a ppp
69 * interface unit or a ppp channel. In both cases, file->private_data
70 * points to one of these.
76 struct sk_buff_head xq; /* pppd transmit queue */
77 struct sk_buff_head rq; /* receive queue for pppd */
78 wait_queue_head_t rwait; /* for poll on reading /dev/ppp */
79 atomic_t refcnt; /* # refs (incl /dev/ppp attached) */
80 int hdrlen; /* space to leave for headers */
81 int index; /* interface unit / channel number */
82 int dead; /* unit/channel has been shut down */
85 #define PF_TO_X(pf, X) container_of(pf, X, file)
87 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
88 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
91 * Data structure describing one ppp unit.
92 * A ppp unit corresponds to a ppp network interface device
93 * and represents a multilink bundle.
94 * It can have 0 or more ppp channels connected to it.
97 struct ppp_file file; /* stuff for read/write/poll 0 */
98 struct file *owner; /* file that owns this unit 48 */
99 struct list_head channels; /* list of attached channels 4c */
100 int n_channels; /* how many channels are attached 54 */
101 spinlock_t rlock; /* lock for receive side 58 */
102 spinlock_t wlock; /* lock for transmit side 5c */
103 int mru; /* max receive unit 60 */
104 unsigned int flags; /* control bits 64 */
105 unsigned int xstate; /* transmit state bits 68 */
106 unsigned int rstate; /* receive state bits 6c */
107 int debug; /* debug flags 70 */
108 struct slcompress *vj; /* state for VJ header compression */
109 enum NPmode npmode[NUM_NP]; /* what to do with each net proto 78 */
110 struct sk_buff *xmit_pending; /* a packet ready to go out 88 */
111 struct compressor *xcomp; /* transmit packet compressor 8c */
112 void *xc_state; /* its internal state 90 */
113 struct compressor *rcomp; /* receive decompressor 94 */
114 void *rc_state; /* its internal state 98 */
115 unsigned long last_xmit; /* jiffies when last pkt sent 9c */
116 unsigned long last_recv; /* jiffies when last pkt rcvd a0 */
117 struct net_device *dev; /* network interface device a4 */
118 #ifdef CONFIG_PPP_MULTILINK
119 int nxchan; /* next channel to send something on */
120 u32 nxseq; /* next sequence number to send */
121 int mrru; /* MP: max reconst. receive unit */
122 u32 nextseq; /* MP: seq no of next packet */
123 u32 minseq; /* MP: min of most recent seqnos */
124 struct sk_buff_head mrq; /* MP: receive reconstruction queue */
125 #endif /* CONFIG_PPP_MULTILINK */
126 struct net_device_stats stats; /* statistics */
127 #ifdef CONFIG_PPP_FILTER
128 struct sock_filter *pass_filter; /* filter for packets to pass */
129 struct sock_filter *active_filter;/* filter for pkts to reset idle */
130 unsigned pass_len, active_len;
131 #endif /* CONFIG_PPP_FILTER */
135 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
136 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
138 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
139 * Bits in xstate: SC_COMP_RUN
141 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
142 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
143 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
146 * Private data structure for each channel.
147 * This includes the data structure used for multilink.
150 struct ppp_file file; /* stuff for read/write/poll */
151 struct list_head list; /* link in all/new_channels list */
152 struct ppp_channel *chan; /* public channel data structure */
153 struct rw_semaphore chan_sem; /* protects `chan' during chan ioctl */
154 spinlock_t downl; /* protects `chan', file.xq dequeue */
155 struct ppp *ppp; /* ppp unit we're connected to */
156 struct list_head clist; /* link in list of channels per unit */
157 rwlock_t upl; /* protects `ppp' */
158 #ifdef CONFIG_PPP_MULTILINK
159 u8 avail; /* flag used in multilink stuff */
160 u8 had_frag; /* >= 1 fragments have been sent */
161 u32 lastseq; /* MP: last sequence # received */
162 #endif /* CONFIG_PPP_MULTILINK */
166 * SMP locking issues:
167 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
168 * list and the ppp.n_channels field, you need to take both locks
169 * before you modify them.
170 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
175 * A cardmap represents a mapping from unsigned integers to pointers,
176 * and provides a fast "find lowest unused number" operation.
177 * It uses a broad (32-way) tree with a bitmap at each level.
178 * It is designed to be space-efficient for small numbers of entries
179 * and time-efficient for large numbers of entries.
181 #define CARDMAP_ORDER 5
182 #define CARDMAP_WIDTH (1U << CARDMAP_ORDER)
183 #define CARDMAP_MASK (CARDMAP_WIDTH - 1)
188 struct cardmap *parent;
189 void *ptr[CARDMAP_WIDTH];
191 static void *cardmap_get(struct cardmap *map, unsigned int nr);
192 static int cardmap_set(struct cardmap **map, unsigned int nr, void *ptr);
193 static unsigned int cardmap_find_first_free(struct cardmap *map);
194 static void cardmap_destroy(struct cardmap **map);
197 * all_ppp_mutex protects the all_ppp_units mapping.
198 * It also ensures that finding a ppp unit in the all_ppp_units map
199 * and updating its file.refcnt field is atomic.
201 static DEFINE_MUTEX(all_ppp_mutex);
202 static struct cardmap *all_ppp_units;
203 static atomic_t ppp_unit_count = ATOMIC_INIT(0);
206 * all_channels_lock protects all_channels and last_channel_index,
207 * and the atomicity of find a channel and updating its file.refcnt
210 static DEFINE_SPINLOCK(all_channels_lock);
211 static LIST_HEAD(all_channels);
212 static LIST_HEAD(new_channels);
213 static int last_channel_index;
214 static atomic_t channel_count = ATOMIC_INIT(0);
216 /* Get the PPP protocol number from a skb */
217 #define PPP_PROTO(skb) (((skb)->data[0] << 8) + (skb)->data[1])
219 /* We limit the length of ppp->file.rq to this (arbitrary) value */
220 #define PPP_MAX_RQLEN 32
223 * Maximum number of multilink fragments queued up.
224 * This has to be large enough to cope with the maximum latency of
225 * the slowest channel relative to the others. Strictly it should
226 * depend on the number of channels and their characteristics.
228 #define PPP_MP_MAX_QLEN 128
230 /* Multilink header bits. */
231 #define B 0x80 /* this fragment begins a packet */
232 #define E 0x40 /* this fragment ends a packet */
234 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
235 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
236 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
239 static int ppp_unattached_ioctl(struct ppp_file *pf, struct file *file,
240 unsigned int cmd, unsigned long arg);
241 static void ppp_xmit_process(struct ppp *ppp);
242 static void ppp_send_frame(struct ppp *ppp, struct sk_buff *skb);
243 static void ppp_push(struct ppp *ppp);
244 static void ppp_channel_push(struct channel *pch);
245 static void ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb,
246 struct channel *pch);
247 static void ppp_receive_error(struct ppp *ppp);
248 static void ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb);
249 static struct sk_buff *ppp_decompress_frame(struct ppp *ppp,
250 struct sk_buff *skb);
251 #ifdef CONFIG_PPP_MULTILINK
252 static void ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb,
253 struct channel *pch);
254 static void ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb);
255 static struct sk_buff *ppp_mp_reconstruct(struct ppp *ppp);
256 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb);
257 #endif /* CONFIG_PPP_MULTILINK */
258 static int ppp_set_compress(struct ppp *ppp, unsigned long arg);
259 static void ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound);
260 static void ppp_ccp_closed(struct ppp *ppp);
261 static struct compressor *find_compressor(int type);
262 static void ppp_get_stats(struct ppp *ppp, struct ppp_stats *st);
263 static struct ppp *ppp_create_interface(int unit, int *retp);
264 static void init_ppp_file(struct ppp_file *pf, int kind);
265 static void ppp_shutdown_interface(struct ppp *ppp);
266 static void ppp_destroy_interface(struct ppp *ppp);
267 static struct ppp *ppp_find_unit(int unit);
268 static struct channel *ppp_find_channel(int unit);
269 static int ppp_connect_channel(struct channel *pch, int unit);
270 static int ppp_disconnect_channel(struct channel *pch);
271 static void ppp_destroy_channel(struct channel *pch);
273 static struct class *ppp_class;
275 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
276 static inline int proto_to_npindex(int proto)
295 /* Translates an NP index into a PPP protocol number */
296 static const int npindex_to_proto[NUM_NP] = {
305 /* Translates an ethertype into an NP index */
306 static inline int ethertype_to_npindex(int ethertype)
326 /* Translates an NP index into an ethertype */
327 static const int npindex_to_ethertype[NUM_NP] = {
339 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
340 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
341 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
342 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
343 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
344 ppp_recv_lock(ppp); } while (0)
345 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
346 ppp_xmit_unlock(ppp); } while (0)
349 * /dev/ppp device routines.
350 * The /dev/ppp device is used by pppd to control the ppp unit.
351 * It supports the read, write, ioctl and poll functions.
352 * Open instances of /dev/ppp can be in one of three states:
353 * unattached, attached to a ppp unit, or attached to a ppp channel.
355 static int ppp_open(struct inode *inode, struct file *file)
358 * This could (should?) be enforced by the permissions on /dev/ppp.
360 if (!capable(CAP_NET_ADMIN))
365 static int ppp_release(struct inode *inode, struct file *file)
367 struct ppp_file *pf = file->private_data;
371 file->private_data = NULL;
372 if (pf->kind == INTERFACE) {
374 if (file == ppp->owner)
375 ppp_shutdown_interface(ppp);
377 if (atomic_dec_and_test(&pf->refcnt)) {
380 ppp_destroy_interface(PF_TO_PPP(pf));
383 ppp_destroy_channel(PF_TO_CHANNEL(pf));
391 static ssize_t ppp_read(struct file *file, char __user *buf,
392 size_t count, loff_t *ppos)
394 struct ppp_file *pf = file->private_data;
395 DECLARE_WAITQUEUE(wait, current);
397 struct sk_buff *skb = NULL;
403 add_wait_queue(&pf->rwait, &wait);
405 set_current_state(TASK_INTERRUPTIBLE);
406 skb = skb_dequeue(&pf->rq);
412 if (pf->kind == INTERFACE) {
414 * Return 0 (EOF) on an interface that has no
415 * channels connected, unless it is looping
416 * network traffic (demand mode).
418 struct ppp *ppp = PF_TO_PPP(pf);
419 if (ppp->n_channels == 0
420 && (ppp->flags & SC_LOOP_TRAFFIC) == 0)
424 if (file->f_flags & O_NONBLOCK)
427 if (signal_pending(current))
431 set_current_state(TASK_RUNNING);
432 remove_wait_queue(&pf->rwait, &wait);
438 if (skb->len > count)
441 if (copy_to_user(buf, skb->data, skb->len))
451 static ssize_t ppp_write(struct file *file, const char __user *buf,
452 size_t count, loff_t *ppos)
454 struct ppp_file *pf = file->private_data;
461 skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL);
464 skb_reserve(skb, pf->hdrlen);
466 if (copy_from_user(skb_put(skb, count), buf, count)) {
471 skb_queue_tail(&pf->xq, skb);
475 ppp_xmit_process(PF_TO_PPP(pf));
478 ppp_channel_push(PF_TO_CHANNEL(pf));
488 /* No kernel lock - fine */
489 static unsigned int ppp_poll(struct file *file, poll_table *wait)
491 struct ppp_file *pf = file->private_data;
496 poll_wait(file, &pf->rwait, wait);
497 mask = POLLOUT | POLLWRNORM;
498 if (skb_peek(&pf->rq))
499 mask |= POLLIN | POLLRDNORM;
502 else if (pf->kind == INTERFACE) {
503 /* see comment in ppp_read */
504 struct ppp *ppp = PF_TO_PPP(pf);
505 if (ppp->n_channels == 0
506 && (ppp->flags & SC_LOOP_TRAFFIC) == 0)
507 mask |= POLLIN | POLLRDNORM;
513 #ifdef CONFIG_PPP_FILTER
514 static int get_filter(void __user *arg, struct sock_filter **p)
516 struct sock_fprog uprog;
517 struct sock_filter *code = NULL;
520 if (copy_from_user(&uprog, arg, sizeof(uprog)))
528 len = uprog.len * sizeof(struct sock_filter);
529 code = kmalloc(len, GFP_KERNEL);
533 if (copy_from_user(code, uprog.filter, len)) {
538 err = sk_chk_filter(code, uprog.len);
547 #endif /* CONFIG_PPP_FILTER */
549 static int ppp_ioctl(struct inode *inode, struct file *file,
550 unsigned int cmd, unsigned long arg)
552 struct ppp_file *pf = file->private_data;
554 int err = -EFAULT, val, val2, i;
555 struct ppp_idle idle;
558 struct slcompress *vj;
559 void __user *argp = (void __user *)arg;
560 int __user *p = argp;
563 return ppp_unattached_ioctl(pf, file, cmd, arg);
565 if (cmd == PPPIOCDETACH) {
567 * We have to be careful here... if the file descriptor
568 * has been dup'd, we could have another process in the
569 * middle of a poll using the same file *, so we had
570 * better not free the interface data structures -
571 * instead we fail the ioctl. Even in this case, we
572 * shut down the interface if we are the owner of it.
573 * Actually, we should get rid of PPPIOCDETACH, userland
574 * (i.e. pppd) could achieve the same effect by closing
575 * this fd and reopening /dev/ppp.
578 if (pf->kind == INTERFACE) {
580 if (file == ppp->owner)
581 ppp_shutdown_interface(ppp);
583 if (atomic_read(&file->f_count) <= 2) {
584 ppp_release(inode, file);
587 printk(KERN_DEBUG "PPPIOCDETACH file->f_count=%d\n",
588 atomic_read(&file->f_count));
592 if (pf->kind == CHANNEL) {
593 struct channel *pch = PF_TO_CHANNEL(pf);
594 struct ppp_channel *chan;
598 if (get_user(unit, p))
600 err = ppp_connect_channel(pch, unit);
604 err = ppp_disconnect_channel(pch);
608 down_read(&pch->chan_sem);
611 if (chan && chan->ops->ioctl)
612 err = chan->ops->ioctl(chan, cmd, arg);
613 up_read(&pch->chan_sem);
618 if (pf->kind != INTERFACE) {
620 printk(KERN_ERR "PPP: not interface or channel??\n");
627 if (get_user(val, p))
634 if (get_user(val, p))
637 cflags = ppp->flags & ~val;
638 ppp->flags = val & SC_FLAG_BITS;
640 if (cflags & SC_CCP_OPEN)
646 val = ppp->flags | ppp->xstate | ppp->rstate;
647 if (put_user(val, p))
652 case PPPIOCSCOMPRESS:
653 err = ppp_set_compress(ppp, arg);
657 if (put_user(ppp->file.index, p))
663 if (get_user(val, p))
670 if (put_user(ppp->debug, p))
676 idle.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
677 idle.recv_idle = (jiffies - ppp->last_recv) / HZ;
678 if (copy_to_user(argp, &idle, sizeof(idle)))
684 if (get_user(val, p))
687 if ((val >> 16) != 0) {
691 vj = slhc_init(val2+1, val+1);
693 printk(KERN_ERR "PPP: no memory (VJ compressor)\n");
707 if (copy_from_user(&npi, argp, sizeof(npi)))
709 err = proto_to_npindex(npi.protocol);
713 if (cmd == PPPIOCGNPMODE) {
715 npi.mode = ppp->npmode[i];
716 if (copy_to_user(argp, &npi, sizeof(npi)))
719 ppp->npmode[i] = npi.mode;
720 /* we may be able to transmit more packets now (??) */
721 netif_wake_queue(ppp->dev);
726 #ifdef CONFIG_PPP_FILTER
729 struct sock_filter *code;
730 err = get_filter(argp, &code);
733 kfree(ppp->pass_filter);
734 ppp->pass_filter = code;
743 struct sock_filter *code;
744 err = get_filter(argp, &code);
747 kfree(ppp->active_filter);
748 ppp->active_filter = code;
749 ppp->active_len = err;
755 #endif /* CONFIG_PPP_FILTER */
757 #ifdef CONFIG_PPP_MULTILINK
759 if (get_user(val, p))
763 ppp_recv_unlock(ppp);
766 #endif /* CONFIG_PPP_MULTILINK */
775 static int ppp_unattached_ioctl(struct ppp_file *pf, struct file *file,
776 unsigned int cmd, unsigned long arg)
778 int unit, err = -EFAULT;
780 struct channel *chan;
781 int __user *p = (int __user *)arg;
785 /* Create a new ppp unit */
786 if (get_user(unit, p))
788 ppp = ppp_create_interface(unit, &err);
791 file->private_data = &ppp->file;
794 if (put_user(ppp->file.index, p))
800 /* Attach to an existing ppp unit */
801 if (get_user(unit, p))
803 mutex_lock(&all_ppp_mutex);
805 ppp = ppp_find_unit(unit);
807 atomic_inc(&ppp->file.refcnt);
808 file->private_data = &ppp->file;
811 mutex_unlock(&all_ppp_mutex);
815 if (get_user(unit, p))
817 spin_lock_bh(&all_channels_lock);
819 chan = ppp_find_channel(unit);
821 atomic_inc(&chan->file.refcnt);
822 file->private_data = &chan->file;
825 spin_unlock_bh(&all_channels_lock);
834 static const struct file_operations ppp_device_fops = {
835 .owner = THIS_MODULE,
841 .release = ppp_release
844 #define PPP_MAJOR 108
846 /* Called at boot time if ppp is compiled into the kernel,
847 or at module load time (from init_module) if compiled as a module. */
848 static int __init ppp_init(void)
852 printk(KERN_INFO "PPP generic driver version " PPP_VERSION "\n");
853 err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
855 ppp_class = class_create(THIS_MODULE, "ppp");
856 if (IS_ERR(ppp_class)) {
857 err = PTR_ERR(ppp_class);
860 device_create(ppp_class, NULL, MKDEV(PPP_MAJOR, 0), "ppp");
865 printk(KERN_ERR "failed to register PPP device (%d)\n", err);
869 unregister_chrdev(PPP_MAJOR, "ppp");
874 * Network interface unit routines.
877 ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
879 struct ppp *ppp = (struct ppp *) dev->priv;
883 npi = ethertype_to_npindex(ntohs(skb->protocol));
887 /* Drop, accept or reject the packet */
888 switch (ppp->npmode[npi]) {
892 /* it would be nice to have a way to tell the network
893 system to queue this one up for later. */
900 /* Put the 2-byte PPP protocol number on the front,
901 making sure there is room for the address and control fields. */
902 if (skb_cow_head(skb, PPP_HDRLEN))
905 pp = skb_push(skb, 2);
906 proto = npindex_to_proto[npi];
910 netif_stop_queue(dev);
911 skb_queue_tail(&ppp->file.xq, skb);
912 ppp_xmit_process(ppp);
917 ++ppp->stats.tx_dropped;
921 static struct net_device_stats *
922 ppp_net_stats(struct net_device *dev)
924 struct ppp *ppp = (struct ppp *) dev->priv;
930 ppp_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
932 struct ppp *ppp = dev->priv;
934 void __user *addr = (void __user *) ifr->ifr_ifru.ifru_data;
935 struct ppp_stats stats;
936 struct ppp_comp_stats cstats;
941 ppp_get_stats(ppp, &stats);
942 if (copy_to_user(addr, &stats, sizeof(stats)))
948 memset(&cstats, 0, sizeof(cstats));
950 ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
952 ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
953 if (copy_to_user(addr, &cstats, sizeof(cstats)))
960 if (copy_to_user(addr, vers, strlen(vers) + 1))
972 static void ppp_setup(struct net_device *dev)
974 dev->hard_header_len = PPP_HDRLEN;
977 dev->tx_queue_len = 3;
978 dev->type = ARPHRD_PPP;
979 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
983 * Transmit-side routines.
987 * Called to do any work queued up on the transmit side
988 * that can now be done.
991 ppp_xmit_process(struct ppp *ppp)
998 while (!ppp->xmit_pending
999 && (skb = skb_dequeue(&ppp->file.xq)))
1000 ppp_send_frame(ppp, skb);
1001 /* If there's no work left to do, tell the core net
1002 code that we can accept some more. */
1003 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
1004 netif_wake_queue(ppp->dev);
1006 ppp_xmit_unlock(ppp);
1009 static inline struct sk_buff *
1010 pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1012 struct sk_buff *new_skb;
1014 int new_skb_size = ppp->dev->mtu +
1015 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1016 int compressor_skb_size = ppp->dev->mtu +
1017 ppp->xcomp->comp_extra + PPP_HDRLEN;
1018 new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1020 if (net_ratelimit())
1021 printk(KERN_ERR "PPP: no memory (comp pkt)\n");
1024 if (ppp->dev->hard_header_len > PPP_HDRLEN)
1025 skb_reserve(new_skb,
1026 ppp->dev->hard_header_len - PPP_HDRLEN);
1028 /* compressor still expects A/C bytes in hdr */
1029 len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1030 new_skb->data, skb->len + 2,
1031 compressor_skb_size);
1032 if (len > 0 && (ppp->flags & SC_CCP_UP)) {
1036 skb_pull(skb, 2); /* pull off A/C bytes */
1037 } else if (len == 0) {
1038 /* didn't compress, or CCP not up yet */
1044 * MPPE requires that we do not send unencrypted
1045 * frames. The compressor will return -1 if we
1046 * should drop the frame. We cannot simply test
1047 * the compress_proto because MPPE and MPPC share
1050 if (net_ratelimit())
1051 printk(KERN_ERR "ppp: compressor dropped pkt\n");
1060 * Compress and send a frame.
1061 * The caller should have locked the xmit path,
1062 * and xmit_pending should be 0.
1065 ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1067 int proto = PPP_PROTO(skb);
1068 struct sk_buff *new_skb;
1072 if (proto < 0x8000) {
1073 #ifdef CONFIG_PPP_FILTER
1074 /* check if we should pass this packet */
1075 /* the filter instructions are constructed assuming
1076 a four-byte PPP header on each packet */
1077 *skb_push(skb, 2) = 1;
1078 if (ppp->pass_filter
1079 && sk_run_filter(skb, ppp->pass_filter,
1080 ppp->pass_len) == 0) {
1082 printk(KERN_DEBUG "PPP: outbound frame not passed\n");
1086 /* if this packet passes the active filter, record the time */
1087 if (!(ppp->active_filter
1088 && sk_run_filter(skb, ppp->active_filter,
1089 ppp->active_len) == 0))
1090 ppp->last_xmit = jiffies;
1093 /* for data packets, record the time */
1094 ppp->last_xmit = jiffies;
1095 #endif /* CONFIG_PPP_FILTER */
1098 ++ppp->stats.tx_packets;
1099 ppp->stats.tx_bytes += skb->len - 2;
1103 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
1105 /* try to do VJ TCP header compression */
1106 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1109 printk(KERN_ERR "PPP: no memory (VJ comp pkt)\n");
1112 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1114 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1115 new_skb->data + 2, &cp,
1116 !(ppp->flags & SC_NO_TCP_CCID));
1117 if (cp == skb->data + 2) {
1118 /* didn't compress */
1121 if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1122 proto = PPP_VJC_COMP;
1123 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1125 proto = PPP_VJC_UNCOMP;
1126 cp[0] = skb->data[2];
1130 cp = skb_put(skb, len + 2);
1137 /* peek at outbound CCP frames */
1138 ppp_ccp_peek(ppp, skb, 0);
1142 /* try to do packet compression */
1143 if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state
1144 && proto != PPP_LCP && proto != PPP_CCP) {
1145 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1146 if (net_ratelimit())
1147 printk(KERN_ERR "ppp: compression required but down - pkt dropped.\n");
1150 skb = pad_compress_skb(ppp, skb);
1156 * If we are waiting for traffic (demand dialling),
1157 * queue it up for pppd to receive.
1159 if (ppp->flags & SC_LOOP_TRAFFIC) {
1160 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1162 skb_queue_tail(&ppp->file.rq, skb);
1163 wake_up_interruptible(&ppp->file.rwait);
1167 ppp->xmit_pending = skb;
1174 ++ppp->stats.tx_errors;
1178 * Try to send the frame in xmit_pending.
1179 * The caller should have the xmit path locked.
1182 ppp_push(struct ppp *ppp)
1184 struct list_head *list;
1185 struct channel *pch;
1186 struct sk_buff *skb = ppp->xmit_pending;
1191 list = &ppp->channels;
1192 if (list_empty(list)) {
1193 /* nowhere to send the packet, just drop it */
1194 ppp->xmit_pending = NULL;
1199 if ((ppp->flags & SC_MULTILINK) == 0) {
1200 /* not doing multilink: send it down the first channel */
1202 pch = list_entry(list, struct channel, clist);
1204 spin_lock_bh(&pch->downl);
1206 if (pch->chan->ops->start_xmit(pch->chan, skb))
1207 ppp->xmit_pending = NULL;
1209 /* channel got unregistered */
1211 ppp->xmit_pending = NULL;
1213 spin_unlock_bh(&pch->downl);
1217 #ifdef CONFIG_PPP_MULTILINK
1218 /* Multilink: fragment the packet over as many links
1219 as can take the packet at the moment. */
1220 if (!ppp_mp_explode(ppp, skb))
1222 #endif /* CONFIG_PPP_MULTILINK */
1224 ppp->xmit_pending = NULL;
1228 #ifdef CONFIG_PPP_MULTILINK
1230 * Divide a packet to be transmitted into fragments and
1231 * send them out the individual links.
1233 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1236 int i, bits, hdrlen, mtu;
1240 unsigned char *p, *q;
1241 struct list_head *list;
1242 struct channel *pch;
1243 struct sk_buff *frag;
1244 struct ppp_channel *chan;
1246 nfree = 0; /* # channels which have no packet already queued */
1247 navail = 0; /* total # of usable channels (not deregistered) */
1248 hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1250 list_for_each_entry(pch, &ppp->channels, clist) {
1251 navail += pch->avail = (pch->chan != NULL);
1253 if (skb_queue_empty(&pch->file.xq) ||
1258 if (!pch->had_frag && i < ppp->nxchan)
1265 * Don't start sending this packet unless at least half of
1266 * the channels are free. This gives much better TCP
1267 * performance if we have a lot of channels.
1269 if (nfree == 0 || nfree < navail / 2)
1270 return 0; /* can't take now, leave it in xmit_pending */
1272 /* Do protocol field compression (XXX this should be optional) */
1281 * Decide on fragment size.
1282 * We create a fragment for each free channel regardless of
1283 * how small they are (i.e. even 0 length) in order to minimize
1284 * the time that it will take to detect when a channel drops
1289 fragsize = DIV_ROUND_UP(fragsize, nfree);
1290 /* nbigger channels get fragsize bytes, the rest get fragsize-1,
1291 except if nbigger==0, then they all get fragsize. */
1292 nbigger = len % nfree;
1294 /* skip to the channel after the one we last used
1295 and start at that one */
1296 list = &ppp->channels;
1297 for (i = 0; i < ppp->nxchan; ++i) {
1299 if (list == &ppp->channels) {
1305 /* create a fragment for each channel */
1307 while (nfree > 0 || len > 0) {
1309 if (list == &ppp->channels) {
1313 pch = list_entry(list, struct channel, clist);
1319 * Skip this channel if it has a fragment pending already and
1320 * we haven't given a fragment to all of the free channels.
1322 if (pch->avail == 1) {
1330 /* check the channel's mtu and whether it is still attached. */
1331 spin_lock_bh(&pch->downl);
1332 if (pch->chan == NULL) {
1333 /* can't use this channel, it's being deregistered */
1334 spin_unlock_bh(&pch->downl);
1342 * Create a fragment for this channel of
1343 * min(max(mtu+2-hdrlen, 4), fragsize, len) bytes.
1344 * If mtu+2-hdrlen < 4, that is a ridiculously small
1345 * MTU, so we use mtu = 2 + hdrlen.
1350 mtu = pch->chan->mtu + 2 - hdrlen;
1355 if (flen == len && nfree == 0)
1357 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
1360 q = skb_put(frag, flen + hdrlen);
1362 /* make the MP header */
1365 if (ppp->flags & SC_MP_XSHORTSEQ) {
1366 q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
1370 q[3] = ppp->nxseq >> 16;
1371 q[4] = ppp->nxseq >> 8;
1377 * Unfortunately there is a bug in older versions of
1378 * the Linux PPP multilink reconstruction code where it
1379 * drops 0-length fragments. Therefore we make sure the
1380 * fragment has at least one byte of data. Any bytes
1381 * we add in this situation will end up as padding on the
1382 * end of the reconstructed packet.
1385 *skb_put(frag, 1) = 0;
1387 memcpy(q + hdrlen, p, flen);
1389 /* try to send it down the channel */
1391 if (!skb_queue_empty(&pch->file.xq) ||
1392 !chan->ops->start_xmit(chan, frag))
1393 skb_queue_tail(&pch->file.xq, frag);
1399 spin_unlock_bh(&pch->downl);
1401 if (--nbigger == 0 && fragsize > 0)
1409 spin_unlock_bh(&pch->downl);
1411 printk(KERN_ERR "PPP: no memory (fragment)\n");
1412 ++ppp->stats.tx_errors;
1414 return 1; /* abandon the frame */
1416 #endif /* CONFIG_PPP_MULTILINK */
1419 * Try to send data out on a channel.
1422 ppp_channel_push(struct channel *pch)
1424 struct sk_buff *skb;
1427 spin_lock_bh(&pch->downl);
1429 while (!skb_queue_empty(&pch->file.xq)) {
1430 skb = skb_dequeue(&pch->file.xq);
1431 if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
1432 /* put the packet back and try again later */
1433 skb_queue_head(&pch->file.xq, skb);
1438 /* channel got deregistered */
1439 skb_queue_purge(&pch->file.xq);
1441 spin_unlock_bh(&pch->downl);
1442 /* see if there is anything from the attached unit to be sent */
1443 if (skb_queue_empty(&pch->file.xq)) {
1444 read_lock_bh(&pch->upl);
1447 ppp_xmit_process(ppp);
1448 read_unlock_bh(&pch->upl);
1453 * Receive-side routines.
1456 /* misuse a few fields of the skb for MP reconstruction */
1457 #define sequence priority
1458 #define BEbits cb[0]
1461 ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1464 /* ppp->dev == 0 means interface is closing down */
1466 ppp_receive_frame(ppp, skb, pch);
1469 ppp_recv_unlock(ppp);
1473 ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
1475 struct channel *pch = chan->ppp;
1478 if (!pch || skb->len == 0) {
1483 proto = PPP_PROTO(skb);
1484 read_lock_bh(&pch->upl);
1485 if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
1486 /* put it on the channel queue */
1487 skb_queue_tail(&pch->file.rq, skb);
1488 /* drop old frames if queue too long */
1489 while (pch->file.rq.qlen > PPP_MAX_RQLEN
1490 && (skb = skb_dequeue(&pch->file.rq)))
1492 wake_up_interruptible(&pch->file.rwait);
1494 ppp_do_recv(pch->ppp, skb, pch);
1496 read_unlock_bh(&pch->upl);
1499 /* Put a 0-length skb in the receive queue as an error indication */
1501 ppp_input_error(struct ppp_channel *chan, int code)
1503 struct channel *pch = chan->ppp;
1504 struct sk_buff *skb;
1509 read_lock_bh(&pch->upl);
1511 skb = alloc_skb(0, GFP_ATOMIC);
1513 skb->len = 0; /* probably unnecessary */
1515 ppp_do_recv(pch->ppp, skb, pch);
1518 read_unlock_bh(&pch->upl);
1522 * We come in here to process a received frame.
1523 * The receive side of the ppp unit is locked.
1526 ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1528 if (pskb_may_pull(skb, 2)) {
1529 #ifdef CONFIG_PPP_MULTILINK
1530 /* XXX do channel-level decompression here */
1531 if (PPP_PROTO(skb) == PPP_MP)
1532 ppp_receive_mp_frame(ppp, skb, pch);
1534 #endif /* CONFIG_PPP_MULTILINK */
1535 ppp_receive_nonmp_frame(ppp, skb);
1540 /* note: a 0-length skb is used as an error indication */
1541 ++ppp->stats.rx_length_errors;
1544 ppp_receive_error(ppp);
1548 ppp_receive_error(struct ppp *ppp)
1550 ++ppp->stats.rx_errors;
1556 ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
1559 int proto, len, npi;
1562 * Decompress the frame, if compressed.
1563 * Note that some decompressors need to see uncompressed frames
1564 * that come in as well as compressed frames.
1566 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)
1567 && (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
1568 skb = ppp_decompress_frame(ppp, skb);
1570 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
1573 proto = PPP_PROTO(skb);
1576 /* decompress VJ compressed packets */
1577 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
1580 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
1581 /* copy to a new sk_buff with more tailroom */
1582 ns = dev_alloc_skb(skb->len + 128);
1584 printk(KERN_ERR"PPP: no memory (VJ decomp)\n");
1588 skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
1593 skb->ip_summed = CHECKSUM_NONE;
1595 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
1597 printk(KERN_DEBUG "PPP: VJ decompression error\n");
1602 skb_put(skb, len - skb->len);
1603 else if (len < skb->len)
1608 case PPP_VJC_UNCOMP:
1609 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
1612 /* Until we fix the decompressor need to make sure
1613 * data portion is linear.
1615 if (!pskb_may_pull(skb, skb->len))
1618 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
1619 printk(KERN_ERR "PPP: VJ uncompressed error\n");
1626 ppp_ccp_peek(ppp, skb, 1);
1630 ++ppp->stats.rx_packets;
1631 ppp->stats.rx_bytes += skb->len - 2;
1633 npi = proto_to_npindex(proto);
1635 /* control or unknown frame - pass it to pppd */
1636 skb_queue_tail(&ppp->file.rq, skb);
1637 /* limit queue length by dropping old frames */
1638 while (ppp->file.rq.qlen > PPP_MAX_RQLEN
1639 && (skb = skb_dequeue(&ppp->file.rq)))
1641 /* wake up any process polling or blocking on read */
1642 wake_up_interruptible(&ppp->file.rwait);
1645 /* network protocol frame - give it to the kernel */
1647 #ifdef CONFIG_PPP_FILTER
1648 /* check if the packet passes the pass and active filters */
1649 /* the filter instructions are constructed assuming
1650 a four-byte PPP header on each packet */
1651 if (ppp->pass_filter || ppp->active_filter) {
1652 if (skb_cloned(skb) &&
1653 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
1656 *skb_push(skb, 2) = 0;
1657 if (ppp->pass_filter
1658 && sk_run_filter(skb, ppp->pass_filter,
1659 ppp->pass_len) == 0) {
1661 printk(KERN_DEBUG "PPP: inbound frame "
1666 if (!(ppp->active_filter
1667 && sk_run_filter(skb, ppp->active_filter,
1668 ppp->active_len) == 0))
1669 ppp->last_recv = jiffies;
1672 #endif /* CONFIG_PPP_FILTER */
1673 ppp->last_recv = jiffies;
1675 if ((ppp->dev->flags & IFF_UP) == 0
1676 || ppp->npmode[npi] != NPMODE_PASS) {
1679 /* chop off protocol */
1680 skb_pull_rcsum(skb, 2);
1681 skb->dev = ppp->dev;
1682 skb->protocol = htons(npindex_to_ethertype[npi]);
1683 skb_reset_mac_header(skb);
1685 ppp->dev->last_rx = jiffies;
1692 ppp_receive_error(ppp);
1695 static struct sk_buff *
1696 ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
1698 int proto = PPP_PROTO(skb);
1702 /* Until we fix all the decompressor's need to make sure
1703 * data portion is linear.
1705 if (!pskb_may_pull(skb, skb->len))
1708 if (proto == PPP_COMP) {
1711 switch(ppp->rcomp->compress_proto) {
1713 obuff_size = ppp->mru + PPP_HDRLEN + 1;
1716 obuff_size = ppp->mru + PPP_HDRLEN;
1720 ns = dev_alloc_skb(obuff_size);
1722 printk(KERN_ERR "ppp_decompress_frame: no memory\n");
1725 /* the decompressor still expects the A/C bytes in the hdr */
1726 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
1727 skb->len + 2, ns->data, obuff_size);
1729 /* Pass the compressed frame to pppd as an
1730 error indication. */
1731 if (len == DECOMP_FATALERROR)
1732 ppp->rstate |= SC_DC_FERROR;
1740 skb_pull(skb, 2); /* pull off the A/C bytes */
1743 /* Uncompressed frame - pass to decompressor so it
1744 can update its dictionary if necessary. */
1745 if (ppp->rcomp->incomp)
1746 ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
1753 ppp->rstate |= SC_DC_ERROR;
1754 ppp_receive_error(ppp);
1758 #ifdef CONFIG_PPP_MULTILINK
1760 * Receive a multilink frame.
1761 * We put it on the reconstruction queue and then pull off
1762 * as many completed frames as we can.
1765 ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1769 int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1771 if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
1772 goto err; /* no good, throw it away */
1774 /* Decode sequence number and begin/end bits */
1775 if (ppp->flags & SC_MP_SHORTSEQ) {
1776 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
1779 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
1782 skb->BEbits = skb->data[2];
1783 skb_pull(skb, mphdrlen); /* pull off PPP and MP headers */
1786 * Do protocol ID decompression on the first fragment of each packet.
1788 if ((skb->BEbits & B) && (skb->data[0] & 1))
1789 *skb_push(skb, 1) = 0;
1792 * Expand sequence number to 32 bits, making it as close
1793 * as possible to ppp->minseq.
1795 seq |= ppp->minseq & ~mask;
1796 if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
1798 else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
1799 seq -= mask + 1; /* should never happen */
1800 skb->sequence = seq;
1804 * If this packet comes before the next one we were expecting,
1807 if (seq_before(seq, ppp->nextseq)) {
1809 ++ppp->stats.rx_dropped;
1810 ppp_receive_error(ppp);
1815 * Reevaluate minseq, the minimum over all channels of the
1816 * last sequence number received on each channel. Because of
1817 * the increasing sequence number rule, we know that any fragment
1818 * before `minseq' which hasn't arrived is never going to arrive.
1819 * The list of channels can't change because we have the receive
1820 * side of the ppp unit locked.
1822 list_for_each_entry(ch, &ppp->channels, clist) {
1823 if (seq_before(ch->lastseq, seq))
1826 if (seq_before(ppp->minseq, seq))
1829 /* Put the fragment on the reconstruction queue */
1830 ppp_mp_insert(ppp, skb);
1832 /* If the queue is getting long, don't wait any longer for packets
1833 before the start of the queue. */
1834 if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN
1835 && seq_before(ppp->minseq, ppp->mrq.next->sequence))
1836 ppp->minseq = ppp->mrq.next->sequence;
1838 /* Pull completed packets off the queue and receive them. */
1839 while ((skb = ppp_mp_reconstruct(ppp)))
1840 ppp_receive_nonmp_frame(ppp, skb);
1846 ppp_receive_error(ppp);
1850 * Insert a fragment on the MP reconstruction queue.
1851 * The queue is ordered by increasing sequence number.
1854 ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
1857 struct sk_buff_head *list = &ppp->mrq;
1858 u32 seq = skb->sequence;
1860 /* N.B. we don't need to lock the list lock because we have the
1861 ppp unit receive-side lock. */
1862 for (p = list->next; p != (struct sk_buff *)list; p = p->next)
1863 if (seq_before(seq, p->sequence))
1865 __skb_insert(skb, p->prev, p, list);
1869 * Reconstruct a packet from the MP fragment queue.
1870 * We go through increasing sequence numbers until we find a
1871 * complete packet, or we get to the sequence number for a fragment
1872 * which hasn't arrived but might still do so.
1874 static struct sk_buff *
1875 ppp_mp_reconstruct(struct ppp *ppp)
1877 u32 seq = ppp->nextseq;
1878 u32 minseq = ppp->minseq;
1879 struct sk_buff_head *list = &ppp->mrq;
1880 struct sk_buff *p, *next;
1881 struct sk_buff *head, *tail;
1882 struct sk_buff *skb = NULL;
1883 int lost = 0, len = 0;
1885 if (ppp->mrru == 0) /* do nothing until mrru is set */
1889 for (p = head; p != (struct sk_buff *) list; p = next) {
1891 if (seq_before(p->sequence, seq)) {
1892 /* this can't happen, anyway ignore the skb */
1893 printk(KERN_ERR "ppp_mp_reconstruct bad seq %u < %u\n",
1898 if (p->sequence != seq) {
1899 /* Fragment `seq' is missing. If it is after
1900 minseq, it might arrive later, so stop here. */
1901 if (seq_after(seq, minseq))
1903 /* Fragment `seq' is lost, keep going. */
1905 seq = seq_before(minseq, p->sequence)?
1906 minseq + 1: p->sequence;
1912 * At this point we know that all the fragments from
1913 * ppp->nextseq to seq are either present or lost.
1914 * Also, there are no complete packets in the queue
1915 * that have no missing fragments and end before this
1919 /* B bit set indicates this fragment starts a packet */
1920 if (p->BEbits & B) {
1928 /* Got a complete packet yet? */
1929 if (lost == 0 && (p->BEbits & E) && (head->BEbits & B)) {
1930 if (len > ppp->mrru + 2) {
1931 ++ppp->stats.rx_length_errors;
1932 printk(KERN_DEBUG "PPP: reconstructed packet"
1933 " is too long (%d)\n", len);
1934 } else if (p == head) {
1935 /* fragment is complete packet - reuse skb */
1939 } else if ((skb = dev_alloc_skb(len)) == NULL) {
1940 ++ppp->stats.rx_missed_errors;
1941 printk(KERN_DEBUG "PPP: no memory for "
1942 "reconstructed packet");
1947 ppp->nextseq = seq + 1;
1951 * If this is the ending fragment of a packet,
1952 * and we haven't found a complete valid packet yet,
1953 * we can discard up to and including this fragment.
1961 /* If we have a complete packet, copy it all into one skb. */
1963 /* If we have discarded any fragments,
1964 signal a receive error. */
1965 if (head->sequence != ppp->nextseq) {
1967 printk(KERN_DEBUG " missed pkts %u..%u\n",
1968 ppp->nextseq, head->sequence-1);
1969 ++ppp->stats.rx_dropped;
1970 ppp_receive_error(ppp);
1974 /* copy to a single skb */
1975 for (p = head; p != tail->next; p = p->next)
1976 skb_copy_bits(p, 0, skb_put(skb, p->len), p->len);
1977 ppp->nextseq = tail->sequence + 1;
1981 /* Discard all the skbuffs that we have copied the data out of
1982 or that we can't use. */
1983 while ((p = list->next) != head) {
1984 __skb_unlink(p, list);
1990 #endif /* CONFIG_PPP_MULTILINK */
1993 * Channel interface.
1997 * Create a new, unattached ppp channel.
2000 ppp_register_channel(struct ppp_channel *chan)
2002 struct channel *pch;
2004 pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
2010 init_ppp_file(&pch->file, CHANNEL);
2011 pch->file.hdrlen = chan->hdrlen;
2012 #ifdef CONFIG_PPP_MULTILINK
2014 #endif /* CONFIG_PPP_MULTILINK */
2015 init_rwsem(&pch->chan_sem);
2016 spin_lock_init(&pch->downl);
2017 rwlock_init(&pch->upl);
2018 spin_lock_bh(&all_channels_lock);
2019 pch->file.index = ++last_channel_index;
2020 list_add(&pch->list, &new_channels);
2021 atomic_inc(&channel_count);
2022 spin_unlock_bh(&all_channels_lock);
2027 * Return the index of a channel.
2029 int ppp_channel_index(struct ppp_channel *chan)
2031 struct channel *pch = chan->ppp;
2034 return pch->file.index;
2039 * Return the PPP unit number to which a channel is connected.
2041 int ppp_unit_number(struct ppp_channel *chan)
2043 struct channel *pch = chan->ppp;
2047 read_lock_bh(&pch->upl);
2049 unit = pch->ppp->file.index;
2050 read_unlock_bh(&pch->upl);
2056 * Disconnect a channel from the generic layer.
2057 * This must be called in process context.
2060 ppp_unregister_channel(struct ppp_channel *chan)
2062 struct channel *pch = chan->ppp;
2065 return; /* should never happen */
2069 * This ensures that we have returned from any calls into the
2070 * the channel's start_xmit or ioctl routine before we proceed.
2072 down_write(&pch->chan_sem);
2073 spin_lock_bh(&pch->downl);
2075 spin_unlock_bh(&pch->downl);
2076 up_write(&pch->chan_sem);
2077 ppp_disconnect_channel(pch);
2078 spin_lock_bh(&all_channels_lock);
2079 list_del(&pch->list);
2080 spin_unlock_bh(&all_channels_lock);
2082 wake_up_interruptible(&pch->file.rwait);
2083 if (atomic_dec_and_test(&pch->file.refcnt))
2084 ppp_destroy_channel(pch);
2088 * Callback from a channel when it can accept more to transmit.
2089 * This should be called at BH/softirq level, not interrupt level.
2092 ppp_output_wakeup(struct ppp_channel *chan)
2094 struct channel *pch = chan->ppp;
2098 ppp_channel_push(pch);
2102 * Compression control.
2105 /* Process the PPPIOCSCOMPRESS ioctl. */
2107 ppp_set_compress(struct ppp *ppp, unsigned long arg)
2110 struct compressor *cp, *ocomp;
2111 struct ppp_option_data data;
2112 void *state, *ostate;
2113 unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
2116 if (copy_from_user(&data, (void __user *) arg, sizeof(data))
2117 || (data.length <= CCP_MAX_OPTION_LENGTH
2118 && copy_from_user(ccp_option, (void __user *) data.ptr, data.length)))
2121 if (data.length > CCP_MAX_OPTION_LENGTH
2122 || ccp_option[1] < 2 || ccp_option[1] > data.length)
2125 cp = find_compressor(ccp_option[0]);
2128 request_module("ppp-compress-%d", ccp_option[0]);
2129 cp = find_compressor(ccp_option[0]);
2131 #endif /* CONFIG_KMOD */
2136 if (data.transmit) {
2137 state = cp->comp_alloc(ccp_option, data.length);
2140 ppp->xstate &= ~SC_COMP_RUN;
2142 ostate = ppp->xc_state;
2144 ppp->xc_state = state;
2145 ppp_xmit_unlock(ppp);
2147 ocomp->comp_free(ostate);
2148 module_put(ocomp->owner);
2152 module_put(cp->owner);
2155 state = cp->decomp_alloc(ccp_option, data.length);
2158 ppp->rstate &= ~SC_DECOMP_RUN;
2160 ostate = ppp->rc_state;
2162 ppp->rc_state = state;
2163 ppp_recv_unlock(ppp);
2165 ocomp->decomp_free(ostate);
2166 module_put(ocomp->owner);
2170 module_put(cp->owner);
2178 * Look at a CCP packet and update our state accordingly.
2179 * We assume the caller has the xmit or recv path locked.
2182 ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
2187 if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
2188 return; /* no header */
2191 switch (CCP_CODE(dp)) {
2194 /* A ConfReq starts negotiation of compression
2195 * in one direction of transmission,
2196 * and hence brings it down...but which way?
2199 * A ConfReq indicates what the sender would like to receive
2202 /* He is proposing what I should send */
2203 ppp->xstate &= ~SC_COMP_RUN;
2205 /* I am proposing to what he should send */
2206 ppp->rstate &= ~SC_DECOMP_RUN;
2213 * CCP is going down, both directions of transmission
2215 ppp->rstate &= ~SC_DECOMP_RUN;
2216 ppp->xstate &= ~SC_COMP_RUN;
2220 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
2222 len = CCP_LENGTH(dp);
2223 if (!pskb_may_pull(skb, len + 2))
2224 return; /* too short */
2227 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
2230 /* we will start receiving compressed packets */
2233 if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
2234 ppp->file.index, 0, ppp->mru, ppp->debug)) {
2235 ppp->rstate |= SC_DECOMP_RUN;
2236 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
2239 /* we will soon start sending compressed packets */
2242 if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
2243 ppp->file.index, 0, ppp->debug))
2244 ppp->xstate |= SC_COMP_RUN;
2249 /* reset the [de]compressor */
2250 if ((ppp->flags & SC_CCP_UP) == 0)
2253 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
2254 ppp->rcomp->decomp_reset(ppp->rc_state);
2255 ppp->rstate &= ~SC_DC_ERROR;
2258 if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
2259 ppp->xcomp->comp_reset(ppp->xc_state);
2265 /* Free up compression resources. */
2267 ppp_ccp_closed(struct ppp *ppp)
2269 void *xstate, *rstate;
2270 struct compressor *xcomp, *rcomp;
2273 ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
2276 xstate = ppp->xc_state;
2277 ppp->xc_state = NULL;
2280 rstate = ppp->rc_state;
2281 ppp->rc_state = NULL;
2285 xcomp->comp_free(xstate);
2286 module_put(xcomp->owner);
2289 rcomp->decomp_free(rstate);
2290 module_put(rcomp->owner);
2294 /* List of compressors. */
2295 static LIST_HEAD(compressor_list);
2296 static DEFINE_SPINLOCK(compressor_list_lock);
2298 struct compressor_entry {
2299 struct list_head list;
2300 struct compressor *comp;
2303 static struct compressor_entry *
2304 find_comp_entry(int proto)
2306 struct compressor_entry *ce;
2308 list_for_each_entry(ce, &compressor_list, list) {
2309 if (ce->comp->compress_proto == proto)
2315 /* Register a compressor */
2317 ppp_register_compressor(struct compressor *cp)
2319 struct compressor_entry *ce;
2321 spin_lock(&compressor_list_lock);
2323 if (find_comp_entry(cp->compress_proto))
2326 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
2331 list_add(&ce->list, &compressor_list);
2333 spin_unlock(&compressor_list_lock);
2337 /* Unregister a compressor */
2339 ppp_unregister_compressor(struct compressor *cp)
2341 struct compressor_entry *ce;
2343 spin_lock(&compressor_list_lock);
2344 ce = find_comp_entry(cp->compress_proto);
2345 if (ce && ce->comp == cp) {
2346 list_del(&ce->list);
2349 spin_unlock(&compressor_list_lock);
2352 /* Find a compressor. */
2353 static struct compressor *
2354 find_compressor(int type)
2356 struct compressor_entry *ce;
2357 struct compressor *cp = NULL;
2359 spin_lock(&compressor_list_lock);
2360 ce = find_comp_entry(type);
2363 if (!try_module_get(cp->owner))
2366 spin_unlock(&compressor_list_lock);
2371 * Miscelleneous stuff.
2375 ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
2377 struct slcompress *vj = ppp->vj;
2379 memset(st, 0, sizeof(*st));
2380 st->p.ppp_ipackets = ppp->stats.rx_packets;
2381 st->p.ppp_ierrors = ppp->stats.rx_errors;
2382 st->p.ppp_ibytes = ppp->stats.rx_bytes;
2383 st->p.ppp_opackets = ppp->stats.tx_packets;
2384 st->p.ppp_oerrors = ppp->stats.tx_errors;
2385 st->p.ppp_obytes = ppp->stats.tx_bytes;
2388 st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
2389 st->vj.vjs_compressed = vj->sls_o_compressed;
2390 st->vj.vjs_searches = vj->sls_o_searches;
2391 st->vj.vjs_misses = vj->sls_o_misses;
2392 st->vj.vjs_errorin = vj->sls_i_error;
2393 st->vj.vjs_tossed = vj->sls_i_tossed;
2394 st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
2395 st->vj.vjs_compressedin = vj->sls_i_compressed;
2399 * Stuff for handling the lists of ppp units and channels
2400 * and for initialization.
2404 * Create a new ppp interface unit. Fails if it can't allocate memory
2405 * or if there is already a unit with the requested number.
2406 * unit == -1 means allocate a new number.
2409 ppp_create_interface(int unit, int *retp)
2412 struct net_device *dev = NULL;
2416 ppp = kzalloc(sizeof(struct ppp), GFP_KERNEL);
2419 dev = alloc_netdev(0, "", ppp_setup);
2424 init_ppp_file(&ppp->file, INTERFACE);
2425 ppp->file.hdrlen = PPP_HDRLEN - 2; /* don't count proto bytes */
2426 for (i = 0; i < NUM_NP; ++i)
2427 ppp->npmode[i] = NPMODE_PASS;
2428 INIT_LIST_HEAD(&ppp->channels);
2429 spin_lock_init(&ppp->rlock);
2430 spin_lock_init(&ppp->wlock);
2431 #ifdef CONFIG_PPP_MULTILINK
2433 skb_queue_head_init(&ppp->mrq);
2434 #endif /* CONFIG_PPP_MULTILINK */
2438 dev->hard_start_xmit = ppp_start_xmit;
2439 dev->get_stats = ppp_net_stats;
2440 dev->do_ioctl = ppp_net_ioctl;
2443 mutex_lock(&all_ppp_mutex);
2445 unit = cardmap_find_first_free(all_ppp_units);
2446 else if (cardmap_get(all_ppp_units, unit) != NULL)
2447 goto out2; /* unit already exists */
2449 /* Initialize the new ppp unit */
2450 ppp->file.index = unit;
2451 sprintf(dev->name, "ppp%d", unit);
2453 ret = register_netdev(dev);
2455 printk(KERN_ERR "PPP: couldn't register device %s (%d)\n",
2460 atomic_inc(&ppp_unit_count);
2461 ret = cardmap_set(&all_ppp_units, unit, ppp);
2465 mutex_unlock(&all_ppp_mutex);
2470 atomic_dec(&ppp_unit_count);
2472 mutex_unlock(&all_ppp_mutex);
2482 * Initialize a ppp_file structure.
2485 init_ppp_file(struct ppp_file *pf, int kind)
2488 skb_queue_head_init(&pf->xq);
2489 skb_queue_head_init(&pf->rq);
2490 atomic_set(&pf->refcnt, 1);
2491 init_waitqueue_head(&pf->rwait);
2495 * Take down a ppp interface unit - called when the owning file
2496 * (the one that created the unit) is closed or detached.
2498 static void ppp_shutdown_interface(struct ppp *ppp)
2500 struct net_device *dev;
2502 mutex_lock(&all_ppp_mutex);
2507 /* This will call dev_close() for us. */
2509 unregister_netdev(dev);
2512 cardmap_set(&all_ppp_units, ppp->file.index, NULL);
2515 wake_up_interruptible(&ppp->file.rwait);
2516 mutex_unlock(&all_ppp_mutex);
2520 * Free the memory used by a ppp unit. This is only called once
2521 * there are no channels connected to the unit and no file structs
2522 * that reference the unit.
2524 static void ppp_destroy_interface(struct ppp *ppp)
2526 atomic_dec(&ppp_unit_count);
2528 if (!ppp->file.dead || ppp->n_channels) {
2529 /* "can't happen" */
2530 printk(KERN_ERR "ppp: destroying ppp struct %p but dead=%d "
2531 "n_channels=%d !\n", ppp, ppp->file.dead,
2536 ppp_ccp_closed(ppp);
2541 skb_queue_purge(&ppp->file.xq);
2542 skb_queue_purge(&ppp->file.rq);
2543 #ifdef CONFIG_PPP_MULTILINK
2544 skb_queue_purge(&ppp->mrq);
2545 #endif /* CONFIG_PPP_MULTILINK */
2546 #ifdef CONFIG_PPP_FILTER
2547 kfree(ppp->pass_filter);
2548 ppp->pass_filter = NULL;
2549 kfree(ppp->active_filter);
2550 ppp->active_filter = NULL;
2551 #endif /* CONFIG_PPP_FILTER */
2553 if (ppp->xmit_pending)
2554 kfree_skb(ppp->xmit_pending);
2560 * Locate an existing ppp unit.
2561 * The caller should have locked the all_ppp_mutex.
2564 ppp_find_unit(int unit)
2566 return cardmap_get(all_ppp_units, unit);
2570 * Locate an existing ppp channel.
2571 * The caller should have locked the all_channels_lock.
2572 * First we look in the new_channels list, then in the
2573 * all_channels list. If found in the new_channels list,
2574 * we move it to the all_channels list. This is for speed
2575 * when we have a lot of channels in use.
2577 static struct channel *
2578 ppp_find_channel(int unit)
2580 struct channel *pch;
2582 list_for_each_entry(pch, &new_channels, list) {
2583 if (pch->file.index == unit) {
2584 list_move(&pch->list, &all_channels);
2588 list_for_each_entry(pch, &all_channels, list) {
2589 if (pch->file.index == unit)
2596 * Connect a PPP channel to a PPP interface unit.
2599 ppp_connect_channel(struct channel *pch, int unit)
2605 mutex_lock(&all_ppp_mutex);
2606 ppp = ppp_find_unit(unit);
2609 write_lock_bh(&pch->upl);
2615 if (pch->file.hdrlen > ppp->file.hdrlen)
2616 ppp->file.hdrlen = pch->file.hdrlen;
2617 hdrlen = pch->file.hdrlen + 2; /* for protocol bytes */
2618 if (ppp->dev && hdrlen > ppp->dev->hard_header_len)
2619 ppp->dev->hard_header_len = hdrlen;
2620 list_add_tail(&pch->clist, &ppp->channels);
2623 atomic_inc(&ppp->file.refcnt);
2628 write_unlock_bh(&pch->upl);
2630 mutex_unlock(&all_ppp_mutex);
2635 * Disconnect a channel from its ppp unit.
2638 ppp_disconnect_channel(struct channel *pch)
2643 write_lock_bh(&pch->upl);
2646 write_unlock_bh(&pch->upl);
2648 /* remove it from the ppp unit's list */
2650 list_del(&pch->clist);
2651 if (--ppp->n_channels == 0)
2652 wake_up_interruptible(&ppp->file.rwait);
2654 if (atomic_dec_and_test(&ppp->file.refcnt))
2655 ppp_destroy_interface(ppp);
2662 * Free up the resources used by a ppp channel.
2664 static void ppp_destroy_channel(struct channel *pch)
2666 atomic_dec(&channel_count);
2668 if (!pch->file.dead) {
2669 /* "can't happen" */
2670 printk(KERN_ERR "ppp: destroying undead channel %p !\n",
2674 skb_queue_purge(&pch->file.xq);
2675 skb_queue_purge(&pch->file.rq);
2679 static void __exit ppp_cleanup(void)
2681 /* should never happen */
2682 if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
2683 printk(KERN_ERR "PPP: removing module but units remain!\n");
2684 cardmap_destroy(&all_ppp_units);
2685 unregister_chrdev(PPP_MAJOR, "ppp");
2686 device_destroy(ppp_class, MKDEV(PPP_MAJOR, 0));
2687 class_destroy(ppp_class);
2691 * Cardmap implementation.
2693 static void *cardmap_get(struct cardmap *map, unsigned int nr)
2698 for (p = map; p != NULL; ) {
2699 if ((i = nr >> p->shift) >= CARDMAP_WIDTH)
2703 nr &= ~(CARDMAP_MASK << p->shift);
2709 static int cardmap_set(struct cardmap **pmap, unsigned int nr, void *ptr)
2715 if (p == NULL || (nr >> p->shift) >= CARDMAP_WIDTH) {
2717 /* need a new top level */
2718 struct cardmap *np = kzalloc(sizeof(*np), GFP_KERNEL);
2723 np->shift = p->shift + CARDMAP_ORDER;
2728 } while ((nr >> p->shift) >= CARDMAP_WIDTH);
2731 while (p->shift > 0) {
2732 i = (nr >> p->shift) & CARDMAP_MASK;
2733 if (p->ptr[i] == NULL) {
2734 struct cardmap *np = kzalloc(sizeof(*np), GFP_KERNEL);
2737 np->shift = p->shift - CARDMAP_ORDER;
2742 clear_bit(i, &p->inuse);
2745 i = nr & CARDMAP_MASK;
2748 set_bit(i, &p->inuse);
2750 clear_bit(i, &p->inuse);
2756 static unsigned int cardmap_find_first_free(struct cardmap *map)
2759 unsigned int nr = 0;
2762 if ((p = map) == NULL)
2765 i = find_first_zero_bit(&p->inuse, CARDMAP_WIDTH);
2766 if (i >= CARDMAP_WIDTH) {
2767 if (p->parent == NULL)
2768 return CARDMAP_WIDTH << p->shift;
2770 i = (nr >> p->shift) & CARDMAP_MASK;
2771 set_bit(i, &p->inuse);
2774 nr = (nr & (~CARDMAP_MASK << p->shift)) | (i << p->shift);
2775 if (p->shift == 0 || p->ptr[i] == NULL)
2781 static void cardmap_destroy(struct cardmap **pmap)
2783 struct cardmap *p, *np;
2786 for (p = *pmap; p != NULL; p = np) {
2787 if (p->shift != 0) {
2788 for (i = 0; i < CARDMAP_WIDTH; ++i)
2789 if (p->ptr[i] != NULL)
2791 if (i < CARDMAP_WIDTH) {
2803 /* Module/initialization stuff */
2805 module_init(ppp_init);
2806 module_exit(ppp_cleanup);
2808 EXPORT_SYMBOL(ppp_register_channel);
2809 EXPORT_SYMBOL(ppp_unregister_channel);
2810 EXPORT_SYMBOL(ppp_channel_index);
2811 EXPORT_SYMBOL(ppp_unit_number);
2812 EXPORT_SYMBOL(ppp_input);
2813 EXPORT_SYMBOL(ppp_input_error);
2814 EXPORT_SYMBOL(ppp_output_wakeup);
2815 EXPORT_SYMBOL(ppp_register_compressor);
2816 EXPORT_SYMBOL(ppp_unregister_compressor);
2817 MODULE_LICENSE("GPL");
2818 MODULE_ALIAS_CHARDEV_MAJOR(PPP_MAJOR);
2819 MODULE_ALIAS("/dev/ppp");