1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Generic PPP layer for Linux.
5 * Copyright 1999-2002 Paul Mackerras.
7 * The generic PPP layer handles the PPP network interfaces, the
8 * /dev/ppp device, packet and VJ compression, and multilink.
9 * It talks to PPP `channels' via the interface defined in
10 * include/linux/ppp_channel.h. Channels provide the basic means for
11 * sending and receiving PPP frames on some kind of communications
14 * Part of the code in this driver was inspired by the old async-only
15 * PPP driver, written by Michael Callahan and Al Longyear, and
16 * subsequently hacked by Paul Mackerras.
18 * ==FILEVERSION 20041108==
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/sched/signal.h>
24 #include <linux/kmod.h>
25 #include <linux/init.h>
26 #include <linux/list.h>
27 #include <linux/idr.h>
28 #include <linux/netdevice.h>
29 #include <linux/poll.h>
30 #include <linux/ppp_defs.h>
31 #include <linux/filter.h>
32 #include <linux/ppp-ioctl.h>
33 #include <linux/ppp_channel.h>
34 #include <linux/ppp-comp.h>
35 #include <linux/skbuff.h>
36 #include <linux/rtnetlink.h>
37 #include <linux/if_arp.h>
39 #include <linux/tcp.h>
40 #include <linux/spinlock.h>
41 #include <linux/rwsem.h>
42 #include <linux/stddef.h>
43 #include <linux/device.h>
44 #include <linux/mutex.h>
45 #include <linux/slab.h>
46 #include <linux/file.h>
47 #include <linux/unaligned.h>
48 #include <net/slhc_vj.h>
49 #include <linux/atomic.h>
50 #include <linux/refcount.h>
52 #include <linux/nsproxy.h>
53 #include <net/net_namespace.h>
54 #include <net/netns/generic.h>
56 #define PPP_VERSION "2.4.2"
59 * Network protocols we support.
61 #define NP_IP 0 /* Internet Protocol V4 */
62 #define NP_IPV6 1 /* Internet Protocol V6 */
63 #define NP_IPX 2 /* IPX protocol */
64 #define NP_AT 3 /* Appletalk protocol */
65 #define NP_MPLS_UC 4 /* MPLS unicast */
66 #define NP_MPLS_MC 5 /* MPLS multicast */
67 #define NUM_NP 6 /* Number of NPs. */
69 #define MPHDRLEN 6 /* multilink protocol header length */
70 #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
72 #define PPP_PROTO_LEN 2
73 #define PPP_LCP_HDRLEN 4
76 * An instance of /dev/ppp can be associated with either a ppp
77 * interface unit or a ppp channel. In both cases, file->private_data
78 * points to one of these.
84 struct sk_buff_head xq; /* pppd transmit queue */
85 struct sk_buff_head rq; /* receive queue for pppd */
86 wait_queue_head_t rwait; /* for poll on reading /dev/ppp */
87 refcount_t refcnt; /* # refs (incl /dev/ppp attached) */
88 int hdrlen; /* space to leave for headers */
89 int index; /* interface unit / channel number */
90 int dead; /* unit/channel has been shut down */
93 #define PF_TO_X(pf, X) container_of(pf, X, file)
95 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
96 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
99 * Data structure to hold primary network stats for which
100 * we want to use 64 bit storage. Other network stats
101 * are stored in dev->stats of the ppp strucute.
103 struct ppp_link_stats {
111 * Data structure describing one ppp unit.
112 * A ppp unit corresponds to a ppp network interface device
113 * and represents a multilink bundle.
114 * It can have 0 or more ppp channels connected to it.
117 struct ppp_file file; /* stuff for read/write/poll 0 */
118 struct file *owner; /* file that owns this unit 48 */
119 struct list_head channels; /* list of attached channels 4c */
120 int n_channels; /* how many channels are attached 54 */
121 spinlock_t rlock; /* lock for receive side 58 */
122 spinlock_t wlock; /* lock for transmit side 5c */
123 int __percpu *xmit_recursion; /* xmit recursion detect */
124 int mru; /* max receive unit 60 */
125 unsigned int flags; /* control bits 64 */
126 unsigned int xstate; /* transmit state bits 68 */
127 unsigned int rstate; /* receive state bits 6c */
128 int debug; /* debug flags 70 */
129 struct slcompress *vj; /* state for VJ header compression */
130 enum NPmode npmode[NUM_NP]; /* what to do with each net proto 78 */
131 struct sk_buff *xmit_pending; /* a packet ready to go out 88 */
132 struct compressor *xcomp; /* transmit packet compressor 8c */
133 void *xc_state; /* its internal state 90 */
134 struct compressor *rcomp; /* receive decompressor 94 */
135 void *rc_state; /* its internal state 98 */
136 unsigned long last_xmit; /* jiffies when last pkt sent 9c */
137 unsigned long last_recv; /* jiffies when last pkt rcvd a0 */
138 struct net_device *dev; /* network interface device a4 */
139 int closing; /* is device closing down? a8 */
140 #ifdef CONFIG_PPP_MULTILINK
141 int nxchan; /* next channel to send something on */
142 u32 nxseq; /* next sequence number to send */
143 int mrru; /* MP: max reconst. receive unit */
144 u32 nextseq; /* MP: seq no of next packet */
145 u32 minseq; /* MP: min of most recent seqnos */
146 struct sk_buff_head mrq; /* MP: receive reconstruction queue */
147 #endif /* CONFIG_PPP_MULTILINK */
148 #ifdef CONFIG_PPP_FILTER
149 struct bpf_prog *pass_filter; /* filter for packets to pass */
150 struct bpf_prog *active_filter; /* filter for pkts to reset idle */
151 #endif /* CONFIG_PPP_FILTER */
152 struct net *ppp_net; /* the net we belong to */
153 struct ppp_link_stats stats64; /* 64 bit network stats */
157 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
158 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
160 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
161 * Bits in xstate: SC_COMP_RUN
163 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
164 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
165 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
168 * Private data structure for each channel.
169 * This includes the data structure used for multilink.
172 struct ppp_file file; /* stuff for read/write/poll */
173 struct list_head list; /* link in all/new_channels list */
174 struct ppp_channel *chan; /* public channel data structure */
175 struct rw_semaphore chan_sem; /* protects `chan' during chan ioctl */
176 spinlock_t downl; /* protects `chan', file.xq dequeue */
177 struct ppp *ppp; /* ppp unit we're connected to */
178 struct net *chan_net; /* the net channel belongs to */
179 netns_tracker ns_tracker;
180 struct list_head clist; /* link in list of channels per unit */
181 rwlock_t upl; /* protects `ppp' and 'bridge' */
182 struct channel __rcu *bridge; /* "bridged" ppp channel */
183 #ifdef CONFIG_PPP_MULTILINK
184 u8 avail; /* flag used in multilink stuff */
185 u8 had_frag; /* >= 1 fragments have been sent */
186 u32 lastseq; /* MP: last sequence # received */
187 int speed; /* speed of the corresponding ppp channel*/
188 #endif /* CONFIG_PPP_MULTILINK */
198 * SMP locking issues:
199 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
200 * list and the ppp.n_channels field, you need to take both locks
201 * before you modify them.
202 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
206 static DEFINE_MUTEX(ppp_mutex);
207 static atomic_t ppp_unit_count = ATOMIC_INIT(0);
208 static atomic_t channel_count = ATOMIC_INIT(0);
210 /* per-net private data for this module */
211 static unsigned int ppp_net_id __read_mostly;
213 /* units to ppp mapping */
214 struct idr units_idr;
217 * all_ppp_mutex protects the units_idr mapping.
218 * It also ensures that finding a ppp unit in the units_idr
219 * map and updating its file.refcnt field is atomic.
221 struct mutex all_ppp_mutex;
224 struct list_head all_channels;
225 struct list_head new_channels;
226 int last_channel_index;
229 * all_channels_lock protects all_channels and
230 * last_channel_index, and the atomicity of find
231 * a channel and updating its file.refcnt field.
233 spinlock_t all_channels_lock;
236 /* Get the PPP protocol number from a skb */
237 #define PPP_PROTO(skb) get_unaligned_be16((skb)->data)
239 /* We limit the length of ppp->file.rq to this (arbitrary) value */
240 #define PPP_MAX_RQLEN 32
243 * Maximum number of multilink fragments queued up.
244 * This has to be large enough to cope with the maximum latency of
245 * the slowest channel relative to the others. Strictly it should
246 * depend on the number of channels and their characteristics.
248 #define PPP_MP_MAX_QLEN 128
250 /* Multilink header bits. */
251 #define B 0x80 /* this fragment begins a packet */
252 #define E 0x40 /* this fragment ends a packet */
254 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
255 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
256 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
259 static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
260 struct file *file, unsigned int cmd, unsigned long arg);
261 static void ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb);
262 static void ppp_send_frame(struct ppp *ppp, struct sk_buff *skb);
263 static void ppp_push(struct ppp *ppp);
264 static void ppp_channel_push(struct channel *pch);
265 static void ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb,
266 struct channel *pch);
267 static void ppp_receive_error(struct ppp *ppp);
268 static void ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb);
269 static struct sk_buff *ppp_decompress_frame(struct ppp *ppp,
270 struct sk_buff *skb);
271 #ifdef CONFIG_PPP_MULTILINK
272 static void ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb,
273 struct channel *pch);
274 static void ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb);
275 static struct sk_buff *ppp_mp_reconstruct(struct ppp *ppp);
276 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb);
277 #endif /* CONFIG_PPP_MULTILINK */
278 static int ppp_set_compress(struct ppp *ppp, struct ppp_option_data *data);
279 static void ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound);
280 static void ppp_ccp_closed(struct ppp *ppp);
281 static struct compressor *find_compressor(int type);
282 static void ppp_get_stats(struct ppp *ppp, struct ppp_stats *st);
283 static int ppp_create_interface(struct net *net, struct file *file, int *unit);
284 static void init_ppp_file(struct ppp_file *pf, int kind);
285 static void ppp_destroy_interface(struct ppp *ppp);
286 static struct ppp *ppp_find_unit(struct ppp_net *pn, int unit);
287 static struct channel *ppp_find_channel(struct ppp_net *pn, int unit);
288 static int ppp_connect_channel(struct channel *pch, int unit);
289 static int ppp_disconnect_channel(struct channel *pch);
290 static void ppp_destroy_channel(struct channel *pch);
291 static int unit_get(struct idr *p, void *ptr, int min);
292 static int unit_set(struct idr *p, void *ptr, int n);
293 static void unit_put(struct idr *p, int n);
294 static void *unit_find(struct idr *p, int n);
295 static void ppp_setup(struct net_device *dev);
297 static const struct net_device_ops ppp_netdev_ops;
299 static const struct class ppp_class = {
303 /* per net-namespace data */
304 static inline struct ppp_net *ppp_pernet(struct net *net)
306 return net_generic(net, ppp_net_id);
309 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
310 static inline int proto_to_npindex(int proto)
329 /* Translates an NP index into a PPP protocol number */
330 static const int npindex_to_proto[NUM_NP] = {
339 /* Translates an ethertype into an NP index */
340 static inline int ethertype_to_npindex(int ethertype)
360 /* Translates an NP index into an ethertype */
361 static const int npindex_to_ethertype[NUM_NP] = {
373 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
374 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
375 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
376 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
377 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
378 ppp_recv_lock(ppp); } while (0)
379 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
380 ppp_xmit_unlock(ppp); } while (0)
383 * /dev/ppp device routines.
384 * The /dev/ppp device is used by pppd to control the ppp unit.
385 * It supports the read, write, ioctl and poll functions.
386 * Open instances of /dev/ppp can be in one of three states:
387 * unattached, attached to a ppp unit, or attached to a ppp channel.
389 static int ppp_open(struct inode *inode, struct file *file)
392 * This could (should?) be enforced by the permissions on /dev/ppp.
394 if (!ns_capable(file->f_cred->user_ns, CAP_NET_ADMIN))
399 static int ppp_release(struct inode *unused, struct file *file)
401 struct ppp_file *pf = file->private_data;
405 file->private_data = NULL;
406 if (pf->kind == INTERFACE) {
409 if (file == ppp->owner)
410 unregister_netdevice(ppp->dev);
413 if (refcount_dec_and_test(&pf->refcnt)) {
416 ppp_destroy_interface(PF_TO_PPP(pf));
419 ppp_destroy_channel(PF_TO_CHANNEL(pf));
427 static ssize_t ppp_read(struct file *file, char __user *buf,
428 size_t count, loff_t *ppos)
430 struct ppp_file *pf = file->private_data;
431 DECLARE_WAITQUEUE(wait, current);
433 struct sk_buff *skb = NULL;
441 add_wait_queue(&pf->rwait, &wait);
443 set_current_state(TASK_INTERRUPTIBLE);
444 skb = skb_dequeue(&pf->rq);
450 if (pf->kind == INTERFACE) {
452 * Return 0 (EOF) on an interface that has no
453 * channels connected, unless it is looping
454 * network traffic (demand mode).
456 struct ppp *ppp = PF_TO_PPP(pf);
459 if (ppp->n_channels == 0 &&
460 (ppp->flags & SC_LOOP_TRAFFIC) == 0) {
461 ppp_recv_unlock(ppp);
464 ppp_recv_unlock(ppp);
467 if (file->f_flags & O_NONBLOCK)
470 if (signal_pending(current))
474 set_current_state(TASK_RUNNING);
475 remove_wait_queue(&pf->rwait, &wait);
481 if (skb->len > count)
486 iov_iter_init(&to, ITER_DEST, &iov, 1, count);
487 if (skb_copy_datagram_iter(skb, 0, &to, skb->len))
497 static bool ppp_check_packet(struct sk_buff *skb, size_t count)
499 /* LCP packets must include LCP header which 4 bytes long:
500 * 1-byte code, 1-byte identifier, and 2-byte length.
502 return get_unaligned_be16(skb->data) != PPP_LCP ||
503 count >= PPP_PROTO_LEN + PPP_LCP_HDRLEN;
506 static ssize_t ppp_write(struct file *file, const char __user *buf,
507 size_t count, loff_t *ppos)
509 struct ppp_file *pf = file->private_data;
515 /* All PPP packets should start with the 2-byte protocol */
516 if (count < PPP_PROTO_LEN)
519 skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL);
522 skb_reserve(skb, pf->hdrlen);
524 if (copy_from_user(skb_put(skb, count), buf, count)) {
529 if (unlikely(!ppp_check_packet(skb, count))) {
536 ppp_xmit_process(PF_TO_PPP(pf), skb);
539 skb_queue_tail(&pf->xq, skb);
540 ppp_channel_push(PF_TO_CHANNEL(pf));
550 /* No kernel lock - fine */
551 static __poll_t ppp_poll(struct file *file, poll_table *wait)
553 struct ppp_file *pf = file->private_data;
558 poll_wait(file, &pf->rwait, wait);
559 mask = EPOLLOUT | EPOLLWRNORM;
560 if (skb_peek(&pf->rq))
561 mask |= EPOLLIN | EPOLLRDNORM;
564 else if (pf->kind == INTERFACE) {
565 /* see comment in ppp_read */
566 struct ppp *ppp = PF_TO_PPP(pf);
569 if (ppp->n_channels == 0 &&
570 (ppp->flags & SC_LOOP_TRAFFIC) == 0)
571 mask |= EPOLLIN | EPOLLRDNORM;
572 ppp_recv_unlock(ppp);
578 #ifdef CONFIG_PPP_FILTER
579 static struct bpf_prog *get_filter(struct sock_fprog *uprog)
581 struct sock_fprog_kern fprog;
582 struct bpf_prog *res = NULL;
588 /* uprog->len is unsigned short, so no overflow here */
589 fprog.len = uprog->len;
590 fprog.filter = memdup_array_user(uprog->filter,
591 uprog->len, sizeof(struct sock_filter));
592 if (IS_ERR(fprog.filter))
593 return ERR_CAST(fprog.filter);
595 err = bpf_prog_create(&res, &fprog);
598 return err ? ERR_PTR(err) : res;
601 static struct bpf_prog *ppp_get_filter(struct sock_fprog __user *p)
603 struct sock_fprog uprog;
605 if (copy_from_user(&uprog, p, sizeof(struct sock_fprog)))
606 return ERR_PTR(-EFAULT);
607 return get_filter(&uprog);
611 struct sock_fprog32 {
613 compat_caddr_t filter;
616 #define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32)
617 #define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32)
619 static struct bpf_prog *compat_ppp_get_filter(struct sock_fprog32 __user *p)
621 struct sock_fprog32 uprog32;
622 struct sock_fprog uprog;
624 if (copy_from_user(&uprog32, p, sizeof(struct sock_fprog32)))
625 return ERR_PTR(-EFAULT);
626 uprog.len = uprog32.len;
627 uprog.filter = compat_ptr(uprog32.filter);
628 return get_filter(&uprog);
633 /* Bridge one PPP channel to another.
634 * When two channels are bridged, ppp_input on one channel is redirected to
635 * the other's ops->start_xmit handler.
636 * In order to safely bridge channels we must reject channels which are already
637 * part of a bridge instance, or which form part of an existing unit.
638 * Once successfully bridged, each channel holds a reference on the other
639 * to prevent it being freed while the bridge is extant.
641 static int ppp_bridge_channels(struct channel *pch, struct channel *pchb)
643 write_lock_bh(&pch->upl);
645 rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl))) {
646 write_unlock_bh(&pch->upl);
649 refcount_inc(&pchb->file.refcnt);
650 rcu_assign_pointer(pch->bridge, pchb);
651 write_unlock_bh(&pch->upl);
653 write_lock_bh(&pchb->upl);
655 rcu_dereference_protected(pchb->bridge, lockdep_is_held(&pchb->upl))) {
656 write_unlock_bh(&pchb->upl);
659 refcount_inc(&pch->file.refcnt);
660 rcu_assign_pointer(pchb->bridge, pch);
661 write_unlock_bh(&pchb->upl);
666 write_lock_bh(&pch->upl);
667 /* Re-read pch->bridge with upl held in case it was modified concurrently */
668 pchb = rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl));
669 RCU_INIT_POINTER(pch->bridge, NULL);
670 write_unlock_bh(&pch->upl);
674 if (refcount_dec_and_test(&pchb->file.refcnt))
675 ppp_destroy_channel(pchb);
680 static int ppp_unbridge_channels(struct channel *pch)
682 struct channel *pchb, *pchbb;
684 write_lock_bh(&pch->upl);
685 pchb = rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl));
687 write_unlock_bh(&pch->upl);
690 RCU_INIT_POINTER(pch->bridge, NULL);
691 write_unlock_bh(&pch->upl);
693 /* Only modify pchb if phcb->bridge points back to pch.
694 * If not, it implies that there has been a race unbridging (and possibly
695 * even rebridging) pchb. We should leave pchb alone to avoid either a
696 * refcount underflow, or breaking another established bridge instance.
698 write_lock_bh(&pchb->upl);
699 pchbb = rcu_dereference_protected(pchb->bridge, lockdep_is_held(&pchb->upl));
701 RCU_INIT_POINTER(pchb->bridge, NULL);
702 write_unlock_bh(&pchb->upl);
707 if (refcount_dec_and_test(&pch->file.refcnt))
708 ppp_destroy_channel(pch);
710 if (refcount_dec_and_test(&pchb->file.refcnt))
711 ppp_destroy_channel(pchb);
716 static long ppp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
720 int err = -EFAULT, val, val2, i;
721 struct ppp_idle32 idle32;
722 struct ppp_idle64 idle64;
725 struct slcompress *vj;
726 void __user *argp = (void __user *)arg;
727 int __user *p = argp;
729 mutex_lock(&ppp_mutex);
731 pf = file->private_data;
733 err = ppp_unattached_ioctl(current->nsproxy->net_ns,
738 if (cmd == PPPIOCDETACH) {
740 * PPPIOCDETACH is no longer supported as it was heavily broken,
741 * and is only known to have been used by pppd older than
742 * ppp-2.4.2 (released November 2003).
744 pr_warn_once("%s (%d) used obsolete PPPIOCDETACH ioctl\n",
745 current->comm, current->pid);
750 if (pf->kind == CHANNEL) {
751 struct channel *pch, *pchb;
752 struct ppp_channel *chan;
755 pch = PF_TO_CHANNEL(pf);
759 if (get_user(unit, p))
761 err = ppp_connect_channel(pch, unit);
765 err = ppp_disconnect_channel(pch);
768 case PPPIOCBRIDGECHAN:
769 if (get_user(unit, p))
772 pn = ppp_pernet(current->nsproxy->net_ns);
773 spin_lock_bh(&pn->all_channels_lock);
774 pchb = ppp_find_channel(pn, unit);
775 /* Hold a reference to prevent pchb being freed while
776 * we establish the bridge.
779 refcount_inc(&pchb->file.refcnt);
780 spin_unlock_bh(&pn->all_channels_lock);
783 err = ppp_bridge_channels(pch, pchb);
784 /* Drop earlier refcount now bridge establishment is complete */
785 if (refcount_dec_and_test(&pchb->file.refcnt))
786 ppp_destroy_channel(pchb);
789 case PPPIOCUNBRIDGECHAN:
790 err = ppp_unbridge_channels(pch);
794 down_read(&pch->chan_sem);
797 if (chan && chan->ops->ioctl)
798 err = chan->ops->ioctl(chan, cmd, arg);
799 up_read(&pch->chan_sem);
804 if (pf->kind != INTERFACE) {
806 pr_err("PPP: not interface or channel??\n");
814 if (get_user(val, p))
821 if (get_user(val, p))
824 cflags = ppp->flags & ~val;
825 #ifdef CONFIG_PPP_MULTILINK
826 if (!(ppp->flags & SC_MULTILINK) && (val & SC_MULTILINK))
829 ppp->flags = val & SC_FLAG_BITS;
831 if (cflags & SC_CCP_OPEN)
837 val = ppp->flags | ppp->xstate | ppp->rstate;
838 if (put_user(val, p))
843 case PPPIOCSCOMPRESS:
845 struct ppp_option_data data;
846 if (copy_from_user(&data, argp, sizeof(data)))
849 err = ppp_set_compress(ppp, &data);
853 if (put_user(ppp->file.index, p))
859 if (get_user(val, p))
866 if (put_user(ppp->debug, p))
872 idle32.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
873 idle32.recv_idle = (jiffies - ppp->last_recv) / HZ;
874 if (copy_to_user(argp, &idle32, sizeof(idle32)))
880 idle64.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
881 idle64.recv_idle = (jiffies - ppp->last_recv) / HZ;
882 if (copy_to_user(argp, &idle64, sizeof(idle64)))
888 if (get_user(val, p))
891 if ((val >> 16) != 0) {
895 vj = slhc_init(val2+1, val+1);
910 if (copy_from_user(&npi, argp, sizeof(npi)))
912 err = proto_to_npindex(npi.protocol);
916 if (cmd == PPPIOCGNPMODE) {
918 npi.mode = ppp->npmode[i];
919 if (copy_to_user(argp, &npi, sizeof(npi)))
922 ppp->npmode[i] = npi.mode;
923 /* we may be able to transmit more packets now (??) */
924 netif_wake_queue(ppp->dev);
929 #ifdef CONFIG_PPP_FILTER
933 struct bpf_prog *filter = ppp_get_filter(argp);
934 struct bpf_prog **which;
936 if (IS_ERR(filter)) {
937 err = PTR_ERR(filter);
940 if (cmd == PPPIOCSPASS)
941 which = &ppp->pass_filter;
943 which = &ppp->active_filter;
946 bpf_prog_destroy(*which);
952 #endif /* CONFIG_PPP_FILTER */
954 #ifdef CONFIG_PPP_MULTILINK
956 if (get_user(val, p))
960 ppp_recv_unlock(ppp);
963 #endif /* CONFIG_PPP_MULTILINK */
970 mutex_unlock(&ppp_mutex);
976 struct ppp_option_data32 {
979 compat_int_t transmit;
981 #define PPPIOCSCOMPRESS32 _IOW('t', 77, struct ppp_option_data32)
983 static long ppp_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
986 int err = -ENOIOCTLCMD;
987 void __user *argp = (void __user *)arg;
989 mutex_lock(&ppp_mutex);
991 pf = file->private_data;
992 if (pf && pf->kind == INTERFACE) {
993 struct ppp *ppp = PF_TO_PPP(pf);
995 #ifdef CONFIG_PPP_FILTER
997 case PPPIOCSACTIVE32:
999 struct bpf_prog *filter = compat_ppp_get_filter(argp);
1000 struct bpf_prog **which;
1002 if (IS_ERR(filter)) {
1003 err = PTR_ERR(filter);
1006 if (cmd == PPPIOCSPASS32)
1007 which = &ppp->pass_filter;
1009 which = &ppp->active_filter;
1012 bpf_prog_destroy(*which);
1018 #endif /* CONFIG_PPP_FILTER */
1019 case PPPIOCSCOMPRESS32:
1021 struct ppp_option_data32 data32;
1022 if (copy_from_user(&data32, argp, sizeof(data32))) {
1025 struct ppp_option_data data = {
1026 .ptr = compat_ptr(data32.ptr),
1027 .length = data32.length,
1028 .transmit = data32.transmit
1030 err = ppp_set_compress(ppp, &data);
1036 mutex_unlock(&ppp_mutex);
1038 /* all other commands have compatible arguments */
1039 if (err == -ENOIOCTLCMD)
1040 err = ppp_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
1046 static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
1047 struct file *file, unsigned int cmd, unsigned long arg)
1049 int unit, err = -EFAULT;
1051 struct channel *chan;
1053 int __user *p = (int __user *)arg;
1057 /* Create a new ppp unit */
1058 if (get_user(unit, p))
1060 err = ppp_create_interface(net, file, &unit);
1065 if (put_user(unit, p))
1071 /* Attach to an existing ppp unit */
1072 if (get_user(unit, p))
1075 pn = ppp_pernet(net);
1076 mutex_lock(&pn->all_ppp_mutex);
1077 ppp = ppp_find_unit(pn, unit);
1079 refcount_inc(&ppp->file.refcnt);
1080 file->private_data = &ppp->file;
1083 mutex_unlock(&pn->all_ppp_mutex);
1087 if (get_user(unit, p))
1090 pn = ppp_pernet(net);
1091 spin_lock_bh(&pn->all_channels_lock);
1092 chan = ppp_find_channel(pn, unit);
1094 refcount_inc(&chan->file.refcnt);
1095 file->private_data = &chan->file;
1098 spin_unlock_bh(&pn->all_channels_lock);
1108 static const struct file_operations ppp_device_fops = {
1109 .owner = THIS_MODULE,
1113 .unlocked_ioctl = ppp_ioctl,
1114 #ifdef CONFIG_COMPAT
1115 .compat_ioctl = ppp_compat_ioctl,
1118 .release = ppp_release,
1119 .llseek = noop_llseek,
1122 static __net_init int ppp_init_net(struct net *net)
1124 struct ppp_net *pn = net_generic(net, ppp_net_id);
1126 idr_init(&pn->units_idr);
1127 mutex_init(&pn->all_ppp_mutex);
1129 INIT_LIST_HEAD(&pn->all_channels);
1130 INIT_LIST_HEAD(&pn->new_channels);
1132 spin_lock_init(&pn->all_channels_lock);
1137 static __net_exit void ppp_exit_net(struct net *net)
1139 struct ppp_net *pn = net_generic(net, ppp_net_id);
1140 struct net_device *dev;
1141 struct net_device *aux;
1147 for_each_netdev_safe(net, dev, aux) {
1148 if (dev->netdev_ops == &ppp_netdev_ops)
1149 unregister_netdevice_queue(dev, &list);
1152 idr_for_each_entry(&pn->units_idr, ppp, id)
1153 /* Skip devices already unregistered by previous loop */
1154 if (!net_eq(dev_net(ppp->dev), net))
1155 unregister_netdevice_queue(ppp->dev, &list);
1157 unregister_netdevice_many(&list);
1160 mutex_destroy(&pn->all_ppp_mutex);
1161 idr_destroy(&pn->units_idr);
1162 WARN_ON_ONCE(!list_empty(&pn->all_channels));
1163 WARN_ON_ONCE(!list_empty(&pn->new_channels));
1166 static struct pernet_operations ppp_net_ops = {
1167 .init = ppp_init_net,
1168 .exit = ppp_exit_net,
1170 .size = sizeof(struct ppp_net),
1173 static int ppp_unit_register(struct ppp *ppp, int unit, bool ifname_is_set)
1175 struct ppp_net *pn = ppp_pernet(ppp->ppp_net);
1178 mutex_lock(&pn->all_ppp_mutex);
1181 ret = unit_get(&pn->units_idr, ppp, 0);
1184 if (!ifname_is_set) {
1186 snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ret);
1187 if (!netdev_name_in_use(ppp->ppp_net, ppp->dev->name))
1189 unit_put(&pn->units_idr, ret);
1190 ret = unit_get(&pn->units_idr, ppp, ret + 1);
1196 /* Caller asked for a specific unit number. Fail with -EEXIST
1197 * if unavailable. For backward compatibility, return -EEXIST
1198 * too if idr allocation fails; this makes pppd retry without
1199 * requesting a specific unit number.
1201 if (unit_find(&pn->units_idr, unit)) {
1205 ret = unit_set(&pn->units_idr, ppp, unit);
1207 /* Rewrite error for backward compatibility */
1212 ppp->file.index = ret;
1215 snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ppp->file.index);
1217 mutex_unlock(&pn->all_ppp_mutex);
1219 ret = register_netdevice(ppp->dev);
1223 atomic_inc(&ppp_unit_count);
1228 mutex_lock(&pn->all_ppp_mutex);
1229 unit_put(&pn->units_idr, ppp->file.index);
1231 mutex_unlock(&pn->all_ppp_mutex);
1236 static int ppp_dev_configure(struct net *src_net, struct net_device *dev,
1237 const struct ppp_config *conf)
1239 struct ppp *ppp = netdev_priv(dev);
1245 ppp->ppp_net = src_net;
1247 ppp->owner = conf->file;
1249 init_ppp_file(&ppp->file, INTERFACE);
1250 ppp->file.hdrlen = PPP_HDRLEN - 2; /* don't count proto bytes */
1252 for (indx = 0; indx < NUM_NP; ++indx)
1253 ppp->npmode[indx] = NPMODE_PASS;
1254 INIT_LIST_HEAD(&ppp->channels);
1255 spin_lock_init(&ppp->rlock);
1256 spin_lock_init(&ppp->wlock);
1258 ppp->xmit_recursion = alloc_percpu(int);
1259 if (!ppp->xmit_recursion) {
1263 for_each_possible_cpu(cpu)
1264 (*per_cpu_ptr(ppp->xmit_recursion, cpu)) = 0;
1266 #ifdef CONFIG_PPP_MULTILINK
1268 skb_queue_head_init(&ppp->mrq);
1269 #endif /* CONFIG_PPP_MULTILINK */
1270 #ifdef CONFIG_PPP_FILTER
1271 ppp->pass_filter = NULL;
1272 ppp->active_filter = NULL;
1273 #endif /* CONFIG_PPP_FILTER */
1275 err = ppp_unit_register(ppp, conf->unit, conf->ifname_is_set);
1279 conf->file->private_data = &ppp->file;
1283 free_percpu(ppp->xmit_recursion);
1288 static const struct nla_policy ppp_nl_policy[IFLA_PPP_MAX + 1] = {
1289 [IFLA_PPP_DEV_FD] = { .type = NLA_S32 },
1292 static int ppp_nl_validate(struct nlattr *tb[], struct nlattr *data[],
1293 struct netlink_ext_ack *extack)
1298 if (!data[IFLA_PPP_DEV_FD])
1300 if (nla_get_s32(data[IFLA_PPP_DEV_FD]) < 0)
1306 static int ppp_nl_newlink(struct net *src_net, struct net_device *dev,
1307 struct nlattr *tb[], struct nlattr *data[],
1308 struct netlink_ext_ack *extack)
1310 struct ppp_config conf = {
1312 .ifname_is_set = true,
1317 file = fget(nla_get_s32(data[IFLA_PPP_DEV_FD]));
1321 /* rtnl_lock is already held here, but ppp_create_interface() locks
1322 * ppp_mutex before holding rtnl_lock. Using mutex_trylock() avoids
1323 * possible deadlock due to lock order inversion, at the cost of
1324 * pushing the problem back to userspace.
1326 if (!mutex_trylock(&ppp_mutex)) {
1331 if (file->f_op != &ppp_device_fops || file->private_data) {
1338 /* Don't use device name generated by the rtnetlink layer when ifname
1339 * isn't specified. Let ppp_dev_configure() set the device name using
1340 * the PPP unit identifer as suffix (i.e. ppp<unit_id>). This allows
1341 * userspace to infer the device name using to the PPPIOCGUNIT ioctl.
1343 if (!tb[IFLA_IFNAME] || !nla_len(tb[IFLA_IFNAME]) || !*(char *)nla_data(tb[IFLA_IFNAME]))
1344 conf.ifname_is_set = false;
1346 err = ppp_dev_configure(src_net, dev, &conf);
1349 mutex_unlock(&ppp_mutex);
1356 static void ppp_nl_dellink(struct net_device *dev, struct list_head *head)
1358 unregister_netdevice_queue(dev, head);
1361 static size_t ppp_nl_get_size(const struct net_device *dev)
1366 static int ppp_nl_fill_info(struct sk_buff *skb, const struct net_device *dev)
1371 static struct net *ppp_nl_get_link_net(const struct net_device *dev)
1373 struct ppp *ppp = netdev_priv(dev);
1375 return READ_ONCE(ppp->ppp_net);
1378 static struct rtnl_link_ops ppp_link_ops __read_mostly = {
1380 .maxtype = IFLA_PPP_MAX,
1381 .policy = ppp_nl_policy,
1382 .priv_size = sizeof(struct ppp),
1384 .validate = ppp_nl_validate,
1385 .newlink = ppp_nl_newlink,
1386 .dellink = ppp_nl_dellink,
1387 .get_size = ppp_nl_get_size,
1388 .fill_info = ppp_nl_fill_info,
1389 .get_link_net = ppp_nl_get_link_net,
1392 #define PPP_MAJOR 108
1394 /* Called at boot time if ppp is compiled into the kernel,
1395 or at module load time (from init_module) if compiled as a module. */
1396 static int __init ppp_init(void)
1400 pr_info("PPP generic driver version " PPP_VERSION "\n");
1402 err = register_pernet_device(&ppp_net_ops);
1404 pr_err("failed to register PPP pernet device (%d)\n", err);
1408 err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
1410 pr_err("failed to register PPP device (%d)\n", err);
1414 err = class_register(&ppp_class);
1418 err = rtnl_link_register(&ppp_link_ops);
1420 pr_err("failed to register rtnetlink PPP handler\n");
1424 /* not a big deal if we fail here :-) */
1425 device_create(&ppp_class, NULL, MKDEV(PPP_MAJOR, 0), NULL, "ppp");
1430 class_unregister(&ppp_class);
1432 unregister_chrdev(PPP_MAJOR, "ppp");
1434 unregister_pernet_device(&ppp_net_ops);
1440 * Network interface unit routines.
1443 ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
1445 struct ppp *ppp = netdev_priv(dev);
1449 npi = ethertype_to_npindex(ntohs(skb->protocol));
1453 /* Drop, accept or reject the packet */
1454 switch (ppp->npmode[npi]) {
1458 /* it would be nice to have a way to tell the network
1459 system to queue this one up for later. */
1466 /* Put the 2-byte PPP protocol number on the front,
1467 making sure there is room for the address and control fields. */
1468 if (skb_cow_head(skb, PPP_HDRLEN))
1471 pp = skb_push(skb, 2);
1472 proto = npindex_to_proto[npi];
1473 put_unaligned_be16(proto, pp);
1475 skb_scrub_packet(skb, !net_eq(ppp->ppp_net, dev_net(dev)));
1476 ppp_xmit_process(ppp, skb);
1478 return NETDEV_TX_OK;
1482 ++dev->stats.tx_dropped;
1483 return NETDEV_TX_OK;
1487 ppp_net_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
1488 void __user *addr, int cmd)
1490 struct ppp *ppp = netdev_priv(dev);
1492 struct ppp_stats stats;
1493 struct ppp_comp_stats cstats;
1498 ppp_get_stats(ppp, &stats);
1499 if (copy_to_user(addr, &stats, sizeof(stats)))
1504 case SIOCGPPPCSTATS:
1505 memset(&cstats, 0, sizeof(cstats));
1507 ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
1509 ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
1510 if (copy_to_user(addr, &cstats, sizeof(cstats)))
1517 if (copy_to_user(addr, vers, strlen(vers) + 1))
1530 ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1532 struct ppp *ppp = netdev_priv(dev);
1535 stats64->rx_packets = ppp->stats64.rx_packets;
1536 stats64->rx_bytes = ppp->stats64.rx_bytes;
1537 ppp_recv_unlock(ppp);
1540 stats64->tx_packets = ppp->stats64.tx_packets;
1541 stats64->tx_bytes = ppp->stats64.tx_bytes;
1542 ppp_xmit_unlock(ppp);
1544 stats64->rx_errors = dev->stats.rx_errors;
1545 stats64->tx_errors = dev->stats.tx_errors;
1546 stats64->rx_dropped = dev->stats.rx_dropped;
1547 stats64->tx_dropped = dev->stats.tx_dropped;
1548 stats64->rx_length_errors = dev->stats.rx_length_errors;
1551 static int ppp_dev_init(struct net_device *dev)
1555 netdev_lockdep_set_classes(dev);
1557 ppp = netdev_priv(dev);
1558 /* Let the netdevice take a reference on the ppp file. This ensures
1559 * that ppp_destroy_interface() won't run before the device gets
1562 refcount_inc(&ppp->file.refcnt);
1567 static void ppp_dev_uninit(struct net_device *dev)
1569 struct ppp *ppp = netdev_priv(dev);
1570 struct ppp_net *pn = ppp_pernet(ppp->ppp_net);
1576 mutex_lock(&pn->all_ppp_mutex);
1577 unit_put(&pn->units_idr, ppp->file.index);
1578 mutex_unlock(&pn->all_ppp_mutex);
1583 wake_up_interruptible(&ppp->file.rwait);
1586 static void ppp_dev_priv_destructor(struct net_device *dev)
1590 ppp = netdev_priv(dev);
1591 if (refcount_dec_and_test(&ppp->file.refcnt))
1592 ppp_destroy_interface(ppp);
1595 static int ppp_fill_forward_path(struct net_device_path_ctx *ctx,
1596 struct net_device_path *path)
1598 struct ppp *ppp = netdev_priv(ctx->dev);
1599 struct ppp_channel *chan;
1600 struct channel *pch;
1602 if (ppp->flags & SC_MULTILINK)
1605 if (list_empty(&ppp->channels))
1608 pch = list_first_entry(&ppp->channels, struct channel, clist);
1610 if (!chan->ops->fill_forward_path)
1613 return chan->ops->fill_forward_path(ctx, path, chan);
1616 static const struct net_device_ops ppp_netdev_ops = {
1617 .ndo_init = ppp_dev_init,
1618 .ndo_uninit = ppp_dev_uninit,
1619 .ndo_start_xmit = ppp_start_xmit,
1620 .ndo_siocdevprivate = ppp_net_siocdevprivate,
1621 .ndo_get_stats64 = ppp_get_stats64,
1622 .ndo_fill_forward_path = ppp_fill_forward_path,
1625 static const struct device_type ppp_type = {
1629 static void ppp_setup(struct net_device *dev)
1631 dev->netdev_ops = &ppp_netdev_ops;
1632 SET_NETDEV_DEVTYPE(dev, &ppp_type);
1636 dev->hard_header_len = PPP_HDRLEN;
1639 dev->tx_queue_len = 3;
1640 dev->type = ARPHRD_PPP;
1641 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1642 dev->priv_destructor = ppp_dev_priv_destructor;
1643 netif_keep_dst(dev);
1647 * Transmit-side routines.
1650 /* Called to do any work queued up on the transmit side that can now be done */
1651 static void __ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb)
1654 if (!ppp->closing) {
1658 skb_queue_tail(&ppp->file.xq, skb);
1659 while (!ppp->xmit_pending &&
1660 (skb = skb_dequeue(&ppp->file.xq)))
1661 ppp_send_frame(ppp, skb);
1662 /* If there's no work left to do, tell the core net
1663 code that we can accept some more. */
1664 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
1665 netif_wake_queue(ppp->dev);
1667 netif_stop_queue(ppp->dev);
1671 ppp_xmit_unlock(ppp);
1674 static void ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb)
1678 if (unlikely(*this_cpu_ptr(ppp->xmit_recursion)))
1681 (*this_cpu_ptr(ppp->xmit_recursion))++;
1682 __ppp_xmit_process(ppp, skb);
1683 (*this_cpu_ptr(ppp->xmit_recursion))--;
1694 if (net_ratelimit())
1695 netdev_err(ppp->dev, "recursion detected\n");
1698 static inline struct sk_buff *
1699 pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1701 struct sk_buff *new_skb;
1703 int new_skb_size = ppp->dev->mtu +
1704 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1705 int compressor_skb_size = ppp->dev->mtu +
1706 ppp->xcomp->comp_extra + PPP_HDRLEN;
1707 new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1709 if (net_ratelimit())
1710 netdev_err(ppp->dev, "PPP: no memory (comp pkt)\n");
1713 if (ppp->dev->hard_header_len > PPP_HDRLEN)
1714 skb_reserve(new_skb,
1715 ppp->dev->hard_header_len - PPP_HDRLEN);
1717 /* compressor still expects A/C bytes in hdr */
1718 len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1719 new_skb->data, skb->len + 2,
1720 compressor_skb_size);
1721 if (len > 0 && (ppp->flags & SC_CCP_UP)) {
1725 skb_pull(skb, 2); /* pull off A/C bytes */
1726 } else if (len == 0) {
1727 /* didn't compress, or CCP not up yet */
1728 consume_skb(new_skb);
1733 * MPPE requires that we do not send unencrypted
1734 * frames. The compressor will return -1 if we
1735 * should drop the frame. We cannot simply test
1736 * the compress_proto because MPPE and MPPC share
1739 if (net_ratelimit())
1740 netdev_err(ppp->dev, "ppp: compressor dropped pkt\n");
1742 consume_skb(new_skb);
1749 * Compress and send a frame.
1750 * The caller should have locked the xmit path,
1751 * and xmit_pending should be 0.
1754 ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1756 int proto = PPP_PROTO(skb);
1757 struct sk_buff *new_skb;
1761 skb->dev = ppp->dev;
1763 if (proto < 0x8000) {
1764 #ifdef CONFIG_PPP_FILTER
1765 /* check if we should pass this packet */
1766 /* the filter instructions are constructed assuming
1767 a four-byte PPP header on each packet */
1768 *(u8 *)skb_push(skb, 2) = 1;
1769 if (ppp->pass_filter &&
1770 bpf_prog_run(ppp->pass_filter, skb) == 0) {
1772 netdev_printk(KERN_DEBUG, ppp->dev,
1773 "PPP: outbound frame "
1778 /* if this packet passes the active filter, record the time */
1779 if (!(ppp->active_filter &&
1780 bpf_prog_run(ppp->active_filter, skb) == 0))
1781 ppp->last_xmit = jiffies;
1784 /* for data packets, record the time */
1785 ppp->last_xmit = jiffies;
1786 #endif /* CONFIG_PPP_FILTER */
1789 ++ppp->stats64.tx_packets;
1790 ppp->stats64.tx_bytes += skb->len - PPP_PROTO_LEN;
1794 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
1796 /* try to do VJ TCP header compression */
1797 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1800 netdev_err(ppp->dev, "PPP: no memory (VJ comp pkt)\n");
1803 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1805 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1806 new_skb->data + 2, &cp,
1807 !(ppp->flags & SC_NO_TCP_CCID));
1808 if (cp == skb->data + 2) {
1809 /* didn't compress */
1810 consume_skb(new_skb);
1812 if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1813 proto = PPP_VJC_COMP;
1814 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1816 proto = PPP_VJC_UNCOMP;
1817 cp[0] = skb->data[2];
1821 cp = skb_put(skb, len + 2);
1828 /* peek at outbound CCP frames */
1829 ppp_ccp_peek(ppp, skb, 0);
1833 /* try to do packet compression */
1834 if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state &&
1835 proto != PPP_LCP && proto != PPP_CCP) {
1836 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1837 if (net_ratelimit())
1838 netdev_err(ppp->dev,
1839 "ppp: compression required but "
1840 "down - pkt dropped.\n");
1843 skb = pad_compress_skb(ppp, skb);
1849 * If we are waiting for traffic (demand dialling),
1850 * queue it up for pppd to receive.
1852 if (ppp->flags & SC_LOOP_TRAFFIC) {
1853 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1855 skb_queue_tail(&ppp->file.rq, skb);
1856 wake_up_interruptible(&ppp->file.rwait);
1860 ppp->xmit_pending = skb;
1866 ++ppp->dev->stats.tx_errors;
1870 * Try to send the frame in xmit_pending.
1871 * The caller should have the xmit path locked.
1874 ppp_push(struct ppp *ppp)
1876 struct list_head *list;
1877 struct channel *pch;
1878 struct sk_buff *skb = ppp->xmit_pending;
1883 list = &ppp->channels;
1884 if (list_empty(list)) {
1885 /* nowhere to send the packet, just drop it */
1886 ppp->xmit_pending = NULL;
1891 if ((ppp->flags & SC_MULTILINK) == 0) {
1892 /* not doing multilink: send it down the first channel */
1894 pch = list_entry(list, struct channel, clist);
1896 spin_lock(&pch->downl);
1898 if (pch->chan->ops->start_xmit(pch->chan, skb))
1899 ppp->xmit_pending = NULL;
1901 /* channel got unregistered */
1903 ppp->xmit_pending = NULL;
1905 spin_unlock(&pch->downl);
1909 #ifdef CONFIG_PPP_MULTILINK
1910 /* Multilink: fragment the packet over as many links
1911 as can take the packet at the moment. */
1912 if (!ppp_mp_explode(ppp, skb))
1914 #endif /* CONFIG_PPP_MULTILINK */
1916 ppp->xmit_pending = NULL;
1920 #ifdef CONFIG_PPP_MULTILINK
1921 static bool mp_protocol_compress __read_mostly = true;
1922 module_param(mp_protocol_compress, bool, 0644);
1923 MODULE_PARM_DESC(mp_protocol_compress,
1924 "compress protocol id in multilink fragments");
1927 * Divide a packet to be transmitted into fragments and
1928 * send them out the individual links.
1930 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1933 int i, bits, hdrlen, mtu;
1935 int navail, nfree, nzero;
1939 unsigned char *p, *q;
1940 struct list_head *list;
1941 struct channel *pch;
1942 struct sk_buff *frag;
1943 struct ppp_channel *chan;
1945 totspeed = 0; /*total bitrate of the bundle*/
1946 nfree = 0; /* # channels which have no packet already queued */
1947 navail = 0; /* total # of usable channels (not deregistered) */
1948 nzero = 0; /* number of channels with zero speed associated*/
1949 totfree = 0; /*total # of channels available and
1950 *having no queued packets before
1951 *starting the fragmentation*/
1953 hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1955 list_for_each_entry(pch, &ppp->channels, clist) {
1959 pch->speed = pch->chan->speed;
1964 if (skb_queue_empty(&pch->file.xq) ||
1966 if (pch->speed == 0)
1969 totspeed += pch->speed;
1975 if (!pch->had_frag && i < ppp->nxchan)
1981 * Don't start sending this packet unless at least half of
1982 * the channels are free. This gives much better TCP
1983 * performance if we have a lot of channels.
1985 if (nfree == 0 || nfree < navail / 2)
1986 return 0; /* can't take now, leave it in xmit_pending */
1988 /* Do protocol field compression */
1991 if (*p == 0 && mp_protocol_compress) {
1997 nbigger = len % nfree;
1999 /* skip to the channel after the one we last used
2000 and start at that one */
2001 list = &ppp->channels;
2002 for (i = 0; i < ppp->nxchan; ++i) {
2004 if (list == &ppp->channels) {
2010 /* create a fragment for each channel */
2014 if (list == &ppp->channels) {
2018 pch = list_entry(list, struct channel, clist);
2024 * Skip this channel if it has a fragment pending already and
2025 * we haven't given a fragment to all of the free channels.
2027 if (pch->avail == 1) {
2034 /* check the channel's mtu and whether it is still attached. */
2035 spin_lock(&pch->downl);
2036 if (pch->chan == NULL) {
2037 /* can't use this channel, it's being deregistered */
2038 if (pch->speed == 0)
2041 totspeed -= pch->speed;
2043 spin_unlock(&pch->downl);
2054 *if the channel speed is not set divide
2055 *the packet evenly among the free channels;
2056 *otherwise divide it according to the speed
2057 *of the channel we are going to transmit on
2061 if (pch->speed == 0) {
2068 flen = (((totfree - nzero)*(totlen + hdrlen*totfree)) /
2069 ((totspeed*totfree)/pch->speed)) - hdrlen;
2071 flen += ((totfree - nzero)*pch->speed)/totspeed;
2072 nbigger -= ((totfree - nzero)*pch->speed)/
2080 *check if we are on the last channel or
2081 *we exceded the length of the data to
2084 if ((nfree <= 0) || (flen > len))
2087 *it is not worth to tx on slow channels:
2088 *in that case from the resulting flen according to the
2089 *above formula will be equal or less than zero.
2090 *Skip the channel in this case
2094 spin_unlock(&pch->downl);
2099 * hdrlen includes the 2-byte PPP protocol field, but the
2100 * MTU counts only the payload excluding the protocol field.
2101 * (RFC1661 Section 2)
2103 mtu = pch->chan->mtu - (hdrlen - 2);
2110 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
2113 q = skb_put(frag, flen + hdrlen);
2115 /* make the MP header */
2116 put_unaligned_be16(PPP_MP, q);
2117 if (ppp->flags & SC_MP_XSHORTSEQ) {
2118 q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
2122 q[3] = ppp->nxseq >> 16;
2123 q[4] = ppp->nxseq >> 8;
2127 memcpy(q + hdrlen, p, flen);
2129 /* try to send it down the channel */
2131 if (!skb_queue_empty(&pch->file.xq) ||
2132 !chan->ops->start_xmit(chan, frag))
2133 skb_queue_tail(&pch->file.xq, frag);
2139 spin_unlock(&pch->downl);
2146 spin_unlock(&pch->downl);
2148 netdev_err(ppp->dev, "PPP: no memory (fragment)\n");
2149 ++ppp->dev->stats.tx_errors;
2151 return 1; /* abandon the frame */
2153 #endif /* CONFIG_PPP_MULTILINK */
2155 /* Try to send data out on a channel */
2156 static void __ppp_channel_push(struct channel *pch)
2158 struct sk_buff *skb;
2161 spin_lock(&pch->downl);
2163 while (!skb_queue_empty(&pch->file.xq)) {
2164 skb = skb_dequeue(&pch->file.xq);
2165 if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
2166 /* put the packet back and try again later */
2167 skb_queue_head(&pch->file.xq, skb);
2172 /* channel got deregistered */
2173 skb_queue_purge(&pch->file.xq);
2175 spin_unlock(&pch->downl);
2176 /* see if there is anything from the attached unit to be sent */
2177 if (skb_queue_empty(&pch->file.xq)) {
2180 __ppp_xmit_process(ppp, NULL);
2184 static void ppp_channel_push(struct channel *pch)
2186 read_lock_bh(&pch->upl);
2188 (*this_cpu_ptr(pch->ppp->xmit_recursion))++;
2189 __ppp_channel_push(pch);
2190 (*this_cpu_ptr(pch->ppp->xmit_recursion))--;
2192 __ppp_channel_push(pch);
2194 read_unlock_bh(&pch->upl);
2198 * Receive-side routines.
2201 struct ppp_mp_skb_parm {
2205 #define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
2208 ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2212 ppp_receive_frame(ppp, skb, pch);
2215 ppp_recv_unlock(ppp);
2219 * __ppp_decompress_proto - Decompress protocol field, slim version.
2220 * @skb: Socket buffer where protocol field should be decompressed. It must have
2221 * at least 1 byte of head room and 1 byte of linear data. First byte of
2222 * data must be a protocol field byte.
2224 * Decompress protocol field in PPP header if it's compressed, e.g. when
2225 * Protocol-Field-Compression (PFC) was negotiated. No checks w.r.t. skb data
2226 * length are done in this function.
2228 static void __ppp_decompress_proto(struct sk_buff *skb)
2230 if (skb->data[0] & 0x01)
2231 *(u8 *)skb_push(skb, 1) = 0x00;
2235 * ppp_decompress_proto - Check skb data room and decompress protocol field.
2236 * @skb: Socket buffer where protocol field should be decompressed. First byte
2237 * of data must be a protocol field byte.
2239 * Decompress protocol field in PPP header if it's compressed, e.g. when
2240 * Protocol-Field-Compression (PFC) was negotiated. This function also makes
2241 * sure that skb data room is sufficient for Protocol field, before and after
2244 * Return: true - decompressed successfully, false - not enough room in skb.
2246 static bool ppp_decompress_proto(struct sk_buff *skb)
2248 /* At least one byte should be present (if protocol is compressed) */
2249 if (!pskb_may_pull(skb, 1))
2252 __ppp_decompress_proto(skb);
2254 /* Protocol field should occupy 2 bytes when not compressed */
2255 return pskb_may_pull(skb, 2);
2258 /* Attempt to handle a frame via. a bridged channel, if one exists.
2259 * If the channel is bridged, the frame is consumed by the bridge.
2260 * If not, the caller must handle the frame by normal recv mechanisms.
2261 * Returns true if the frame is consumed, false otherwise.
2263 static bool ppp_channel_bridge_input(struct channel *pch, struct sk_buff *skb)
2265 struct channel *pchb;
2268 pchb = rcu_dereference(pch->bridge);
2272 spin_lock_bh(&pchb->downl);
2274 /* channel got unregistered */
2279 skb_scrub_packet(skb, !net_eq(pch->chan_net, pchb->chan_net));
2280 if (!pchb->chan->ops->start_xmit(pchb->chan, skb))
2284 spin_unlock_bh(&pchb->downl);
2288 /* If pchb is set then we've consumed the packet */
2293 ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
2295 struct channel *pch = chan->ppp;
2303 /* If the channel is bridged, transmit via. bridge */
2304 if (ppp_channel_bridge_input(pch, skb))
2307 read_lock_bh(&pch->upl);
2308 if (!ppp_decompress_proto(skb)) {
2311 ++pch->ppp->dev->stats.rx_length_errors;
2312 ppp_receive_error(pch->ppp);
2317 proto = PPP_PROTO(skb);
2318 if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
2319 /* put it on the channel queue */
2320 skb_queue_tail(&pch->file.rq, skb);
2321 /* drop old frames if queue too long */
2322 while (pch->file.rq.qlen > PPP_MAX_RQLEN &&
2323 (skb = skb_dequeue(&pch->file.rq)))
2325 wake_up_interruptible(&pch->file.rwait);
2327 ppp_do_recv(pch->ppp, skb, pch);
2331 read_unlock_bh(&pch->upl);
2334 /* Put a 0-length skb in the receive queue as an error indication */
2336 ppp_input_error(struct ppp_channel *chan, int code)
2338 struct channel *pch = chan->ppp;
2339 struct sk_buff *skb;
2344 read_lock_bh(&pch->upl);
2346 skb = alloc_skb(0, GFP_ATOMIC);
2348 skb->len = 0; /* probably unnecessary */
2350 ppp_do_recv(pch->ppp, skb, pch);
2353 read_unlock_bh(&pch->upl);
2357 * We come in here to process a received frame.
2358 * The receive side of the ppp unit is locked.
2361 ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2363 /* note: a 0-length skb is used as an error indication */
2365 skb_checksum_complete_unset(skb);
2366 #ifdef CONFIG_PPP_MULTILINK
2367 /* XXX do channel-level decompression here */
2368 if (PPP_PROTO(skb) == PPP_MP)
2369 ppp_receive_mp_frame(ppp, skb, pch);
2371 #endif /* CONFIG_PPP_MULTILINK */
2372 ppp_receive_nonmp_frame(ppp, skb);
2375 ppp_receive_error(ppp);
2380 ppp_receive_error(struct ppp *ppp)
2382 ++ppp->dev->stats.rx_errors;
2388 ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
2391 int proto, len, npi;
2394 * Decompress the frame, if compressed.
2395 * Note that some decompressors need to see uncompressed frames
2396 * that come in as well as compressed frames.
2398 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) &&
2399 (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
2400 skb = ppp_decompress_frame(ppp, skb);
2402 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
2405 /* At this point the "Protocol" field MUST be decompressed, either in
2406 * ppp_input(), ppp_decompress_frame() or in ppp_receive_mp_frame().
2408 proto = PPP_PROTO(skb);
2411 /* decompress VJ compressed packets */
2412 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
2415 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
2416 /* copy to a new sk_buff with more tailroom */
2417 ns = dev_alloc_skb(skb->len + 128);
2419 netdev_err(ppp->dev, "PPP: no memory "
2424 skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
2429 skb->ip_summed = CHECKSUM_NONE;
2431 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
2433 netdev_printk(KERN_DEBUG, ppp->dev,
2434 "PPP: VJ decompression error\n");
2439 skb_put(skb, len - skb->len);
2440 else if (len < skb->len)
2445 case PPP_VJC_UNCOMP:
2446 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
2449 /* Until we fix the decompressor need to make sure
2450 * data portion is linear.
2452 if (!pskb_may_pull(skb, skb->len))
2455 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
2456 netdev_err(ppp->dev, "PPP: VJ uncompressed error\n");
2463 ppp_ccp_peek(ppp, skb, 1);
2467 ++ppp->stats64.rx_packets;
2468 ppp->stats64.rx_bytes += skb->len - 2;
2470 npi = proto_to_npindex(proto);
2472 /* control or unknown frame - pass it to pppd */
2473 skb_queue_tail(&ppp->file.rq, skb);
2474 /* limit queue length by dropping old frames */
2475 while (ppp->file.rq.qlen > PPP_MAX_RQLEN &&
2476 (skb = skb_dequeue(&ppp->file.rq)))
2478 /* wake up any process polling or blocking on read */
2479 wake_up_interruptible(&ppp->file.rwait);
2482 /* network protocol frame - give it to the kernel */
2484 #ifdef CONFIG_PPP_FILTER
2485 /* check if the packet passes the pass and active filters */
2486 /* the filter instructions are constructed assuming
2487 a four-byte PPP header on each packet */
2488 if (ppp->pass_filter || ppp->active_filter) {
2489 if (skb_unclone(skb, GFP_ATOMIC))
2492 *(u8 *)skb_push(skb, 2) = 0;
2493 if (ppp->pass_filter &&
2494 bpf_prog_run(ppp->pass_filter, skb) == 0) {
2496 netdev_printk(KERN_DEBUG, ppp->dev,
2497 "PPP: inbound frame "
2502 if (!(ppp->active_filter &&
2503 bpf_prog_run(ppp->active_filter, skb) == 0))
2504 ppp->last_recv = jiffies;
2507 #endif /* CONFIG_PPP_FILTER */
2508 ppp->last_recv = jiffies;
2510 if ((ppp->dev->flags & IFF_UP) == 0 ||
2511 ppp->npmode[npi] != NPMODE_PASS) {
2514 /* chop off protocol */
2515 skb_pull_rcsum(skb, 2);
2516 skb->dev = ppp->dev;
2517 skb->protocol = htons(npindex_to_ethertype[npi]);
2518 skb_reset_mac_header(skb);
2519 skb_scrub_packet(skb, !net_eq(ppp->ppp_net,
2520 dev_net(ppp->dev)));
2528 ppp_receive_error(ppp);
2531 static struct sk_buff *
2532 ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
2534 int proto = PPP_PROTO(skb);
2538 /* Until we fix all the decompressor's need to make sure
2539 * data portion is linear.
2541 if (!pskb_may_pull(skb, skb->len))
2544 if (proto == PPP_COMP) {
2547 switch(ppp->rcomp->compress_proto) {
2549 obuff_size = ppp->mru + PPP_HDRLEN + 1;
2552 obuff_size = ppp->mru + PPP_HDRLEN;
2556 ns = dev_alloc_skb(obuff_size);
2558 netdev_err(ppp->dev, "ppp_decompress_frame: "
2562 /* the decompressor still expects the A/C bytes in the hdr */
2563 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
2564 skb->len + 2, ns->data, obuff_size);
2566 /* Pass the compressed frame to pppd as an
2567 error indication. */
2568 if (len == DECOMP_FATALERROR)
2569 ppp->rstate |= SC_DC_FERROR;
2577 skb_pull(skb, 2); /* pull off the A/C bytes */
2579 /* Don't call __ppp_decompress_proto() here, but instead rely on
2580 * corresponding algo (mppe/bsd/deflate) to decompress it.
2583 /* Uncompressed frame - pass to decompressor so it
2584 can update its dictionary if necessary. */
2585 if (ppp->rcomp->incomp)
2586 ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
2593 ppp->rstate |= SC_DC_ERROR;
2594 ppp_receive_error(ppp);
2598 #ifdef CONFIG_PPP_MULTILINK
2600 * Receive a multilink frame.
2601 * We put it on the reconstruction queue and then pull off
2602 * as many completed frames as we can.
2605 ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2609 int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
2611 if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
2612 goto err; /* no good, throw it away */
2614 /* Decode sequence number and begin/end bits */
2615 if (ppp->flags & SC_MP_SHORTSEQ) {
2616 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
2619 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
2622 PPP_MP_CB(skb)->BEbits = skb->data[2];
2623 skb_pull(skb, mphdrlen); /* pull off PPP and MP headers */
2626 * Do protocol ID decompression on the first fragment of each packet.
2627 * We have to do that here, because ppp_receive_nonmp_frame() expects
2628 * decompressed protocol field.
2630 if (PPP_MP_CB(skb)->BEbits & B)
2631 __ppp_decompress_proto(skb);
2634 * Expand sequence number to 32 bits, making it as close
2635 * as possible to ppp->minseq.
2637 seq |= ppp->minseq & ~mask;
2638 if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
2640 else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
2641 seq -= mask + 1; /* should never happen */
2642 PPP_MP_CB(skb)->sequence = seq;
2646 * If this packet comes before the next one we were expecting,
2649 if (seq_before(seq, ppp->nextseq)) {
2651 ++ppp->dev->stats.rx_dropped;
2652 ppp_receive_error(ppp);
2657 * Reevaluate minseq, the minimum over all channels of the
2658 * last sequence number received on each channel. Because of
2659 * the increasing sequence number rule, we know that any fragment
2660 * before `minseq' which hasn't arrived is never going to arrive.
2661 * The list of channels can't change because we have the receive
2662 * side of the ppp unit locked.
2664 list_for_each_entry(ch, &ppp->channels, clist) {
2665 if (seq_before(ch->lastseq, seq))
2668 if (seq_before(ppp->minseq, seq))
2671 /* Put the fragment on the reconstruction queue */
2672 ppp_mp_insert(ppp, skb);
2674 /* If the queue is getting long, don't wait any longer for packets
2675 before the start of the queue. */
2676 if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
2677 struct sk_buff *mskb = skb_peek(&ppp->mrq);
2678 if (seq_before(ppp->minseq, PPP_MP_CB(mskb)->sequence))
2679 ppp->minseq = PPP_MP_CB(mskb)->sequence;
2682 /* Pull completed packets off the queue and receive them. */
2683 while ((skb = ppp_mp_reconstruct(ppp))) {
2684 if (pskb_may_pull(skb, 2))
2685 ppp_receive_nonmp_frame(ppp, skb);
2687 ++ppp->dev->stats.rx_length_errors;
2689 ppp_receive_error(ppp);
2697 ppp_receive_error(ppp);
2701 * Insert a fragment on the MP reconstruction queue.
2702 * The queue is ordered by increasing sequence number.
2705 ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
2708 struct sk_buff_head *list = &ppp->mrq;
2709 u32 seq = PPP_MP_CB(skb)->sequence;
2711 /* N.B. we don't need to lock the list lock because we have the
2712 ppp unit receive-side lock. */
2713 skb_queue_walk(list, p) {
2714 if (seq_before(seq, PPP_MP_CB(p)->sequence))
2717 __skb_queue_before(list, p, skb);
2721 * Reconstruct a packet from the MP fragment queue.
2722 * We go through increasing sequence numbers until we find a
2723 * complete packet, or we get to the sequence number for a fragment
2724 * which hasn't arrived but might still do so.
2726 static struct sk_buff *
2727 ppp_mp_reconstruct(struct ppp *ppp)
2729 u32 seq = ppp->nextseq;
2730 u32 minseq = ppp->minseq;
2731 struct sk_buff_head *list = &ppp->mrq;
2732 struct sk_buff *p, *tmp;
2733 struct sk_buff *head, *tail;
2734 struct sk_buff *skb = NULL;
2735 int lost = 0, len = 0;
2737 if (ppp->mrru == 0) /* do nothing until mrru is set */
2739 head = __skb_peek(list);
2741 skb_queue_walk_safe(list, p, tmp) {
2743 if (seq_before(PPP_MP_CB(p)->sequence, seq)) {
2744 /* this can't happen, anyway ignore the skb */
2745 netdev_err(ppp->dev, "ppp_mp_reconstruct bad "
2747 PPP_MP_CB(p)->sequence, seq);
2748 __skb_unlink(p, list);
2752 if (PPP_MP_CB(p)->sequence != seq) {
2754 /* Fragment `seq' is missing. If it is after
2755 minseq, it might arrive later, so stop here. */
2756 if (seq_after(seq, minseq))
2758 /* Fragment `seq' is lost, keep going. */
2761 seq = seq_before(minseq, PPP_MP_CB(p)->sequence)?
2762 minseq + 1: PPP_MP_CB(p)->sequence;
2765 netdev_printk(KERN_DEBUG, ppp->dev,
2766 "lost frag %u..%u\n",
2773 * At this point we know that all the fragments from
2774 * ppp->nextseq to seq are either present or lost.
2775 * Also, there are no complete packets in the queue
2776 * that have no missing fragments and end before this
2780 /* B bit set indicates this fragment starts a packet */
2781 if (PPP_MP_CB(p)->BEbits & B) {
2789 /* Got a complete packet yet? */
2790 if (lost == 0 && (PPP_MP_CB(p)->BEbits & E) &&
2791 (PPP_MP_CB(head)->BEbits & B)) {
2792 if (len > ppp->mrru + 2) {
2793 ++ppp->dev->stats.rx_length_errors;
2794 netdev_printk(KERN_DEBUG, ppp->dev,
2795 "PPP: reconstructed packet"
2796 " is too long (%d)\n", len);
2801 ppp->nextseq = seq + 1;
2805 * If this is the ending fragment of a packet,
2806 * and we haven't found a complete valid packet yet,
2807 * we can discard up to and including this fragment.
2809 if (PPP_MP_CB(p)->BEbits & E) {
2810 struct sk_buff *tmp2;
2812 skb_queue_reverse_walk_from_safe(list, p, tmp2) {
2814 netdev_printk(KERN_DEBUG, ppp->dev,
2815 "discarding frag %u\n",
2816 PPP_MP_CB(p)->sequence);
2817 __skb_unlink(p, list);
2820 head = skb_peek(list);
2827 /* If we have a complete packet, copy it all into one skb. */
2829 /* If we have discarded any fragments,
2830 signal a receive error. */
2831 if (PPP_MP_CB(head)->sequence != ppp->nextseq) {
2832 skb_queue_walk_safe(list, p, tmp) {
2836 netdev_printk(KERN_DEBUG, ppp->dev,
2837 "discarding frag %u\n",
2838 PPP_MP_CB(p)->sequence);
2839 __skb_unlink(p, list);
2844 netdev_printk(KERN_DEBUG, ppp->dev,
2845 " missed pkts %u..%u\n",
2847 PPP_MP_CB(head)->sequence-1);
2848 ++ppp->dev->stats.rx_dropped;
2849 ppp_receive_error(ppp);
2854 struct sk_buff **fragpp = &skb_shinfo(skb)->frag_list;
2855 p = skb_queue_next(list, head);
2856 __skb_unlink(skb, list);
2857 skb_queue_walk_from_safe(list, p, tmp) {
2858 __skb_unlink(p, list);
2864 skb->data_len += p->len;
2865 skb->truesize += p->truesize;
2871 __skb_unlink(skb, list);
2874 ppp->nextseq = PPP_MP_CB(tail)->sequence + 1;
2879 #endif /* CONFIG_PPP_MULTILINK */
2882 * Channel interface.
2885 /* Create a new, unattached ppp channel. */
2886 int ppp_register_channel(struct ppp_channel *chan)
2888 return ppp_register_net_channel(current->nsproxy->net_ns, chan);
2891 /* Create a new, unattached ppp channel for specified net. */
2892 int ppp_register_net_channel(struct net *net, struct ppp_channel *chan)
2894 struct channel *pch;
2897 pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
2901 pn = ppp_pernet(net);
2905 pch->chan_net = get_net_track(net, &pch->ns_tracker, GFP_KERNEL);
2907 init_ppp_file(&pch->file, CHANNEL);
2908 pch->file.hdrlen = chan->hdrlen;
2909 #ifdef CONFIG_PPP_MULTILINK
2911 #endif /* CONFIG_PPP_MULTILINK */
2912 init_rwsem(&pch->chan_sem);
2913 spin_lock_init(&pch->downl);
2914 rwlock_init(&pch->upl);
2916 spin_lock_bh(&pn->all_channels_lock);
2917 pch->file.index = ++pn->last_channel_index;
2918 list_add(&pch->list, &pn->new_channels);
2919 atomic_inc(&channel_count);
2920 spin_unlock_bh(&pn->all_channels_lock);
2926 * Return the index of a channel.
2928 int ppp_channel_index(struct ppp_channel *chan)
2930 struct channel *pch = chan->ppp;
2933 return pch->file.index;
2938 * Return the PPP unit number to which a channel is connected.
2940 int ppp_unit_number(struct ppp_channel *chan)
2942 struct channel *pch = chan->ppp;
2946 read_lock_bh(&pch->upl);
2948 unit = pch->ppp->file.index;
2949 read_unlock_bh(&pch->upl);
2955 * Return the PPP device interface name of a channel.
2957 char *ppp_dev_name(struct ppp_channel *chan)
2959 struct channel *pch = chan->ppp;
2963 read_lock_bh(&pch->upl);
2964 if (pch->ppp && pch->ppp->dev)
2965 name = pch->ppp->dev->name;
2966 read_unlock_bh(&pch->upl);
2973 * Disconnect a channel from the generic layer.
2974 * This must be called in process context.
2977 ppp_unregister_channel(struct ppp_channel *chan)
2979 struct channel *pch = chan->ppp;
2983 return; /* should never happen */
2988 * This ensures that we have returned from any calls into
2989 * the channel's start_xmit or ioctl routine before we proceed.
2991 down_write(&pch->chan_sem);
2992 spin_lock_bh(&pch->downl);
2994 spin_unlock_bh(&pch->downl);
2995 up_write(&pch->chan_sem);
2996 ppp_disconnect_channel(pch);
2998 pn = ppp_pernet(pch->chan_net);
2999 spin_lock_bh(&pn->all_channels_lock);
3000 list_del(&pch->list);
3001 spin_unlock_bh(&pn->all_channels_lock);
3003 ppp_unbridge_channels(pch);
3006 wake_up_interruptible(&pch->file.rwait);
3008 if (refcount_dec_and_test(&pch->file.refcnt))
3009 ppp_destroy_channel(pch);
3013 * Callback from a channel when it can accept more to transmit.
3014 * This should be called at BH/softirq level, not interrupt level.
3017 ppp_output_wakeup(struct ppp_channel *chan)
3019 struct channel *pch = chan->ppp;
3023 ppp_channel_push(pch);
3027 * Compression control.
3030 /* Process the PPPIOCSCOMPRESS ioctl. */
3032 ppp_set_compress(struct ppp *ppp, struct ppp_option_data *data)
3035 struct compressor *cp, *ocomp;
3036 void *state, *ostate;
3037 unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
3039 if (data->length > CCP_MAX_OPTION_LENGTH)
3041 if (copy_from_user(ccp_option, data->ptr, data->length))
3045 if (data->length < 2 || ccp_option[1] < 2 || ccp_option[1] > data->length)
3048 cp = try_then_request_module(
3049 find_compressor(ccp_option[0]),
3050 "ppp-compress-%d", ccp_option[0]);
3055 if (data->transmit) {
3056 state = cp->comp_alloc(ccp_option, data->length);
3059 ppp->xstate &= ~SC_COMP_RUN;
3061 ostate = ppp->xc_state;
3063 ppp->xc_state = state;
3064 ppp_xmit_unlock(ppp);
3066 ocomp->comp_free(ostate);
3067 module_put(ocomp->owner);
3071 module_put(cp->owner);
3074 state = cp->decomp_alloc(ccp_option, data->length);
3077 ppp->rstate &= ~SC_DECOMP_RUN;
3079 ostate = ppp->rc_state;
3081 ppp->rc_state = state;
3082 ppp_recv_unlock(ppp);
3084 ocomp->decomp_free(ostate);
3085 module_put(ocomp->owner);
3089 module_put(cp->owner);
3097 * Look at a CCP packet and update our state accordingly.
3098 * We assume the caller has the xmit or recv path locked.
3101 ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
3106 if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
3107 return; /* no header */
3110 switch (CCP_CODE(dp)) {
3113 /* A ConfReq starts negotiation of compression
3114 * in one direction of transmission,
3115 * and hence brings it down...but which way?
3118 * A ConfReq indicates what the sender would like to receive
3121 /* He is proposing what I should send */
3122 ppp->xstate &= ~SC_COMP_RUN;
3124 /* I am proposing to what he should send */
3125 ppp->rstate &= ~SC_DECOMP_RUN;
3132 * CCP is going down, both directions of transmission
3134 ppp->rstate &= ~SC_DECOMP_RUN;
3135 ppp->xstate &= ~SC_COMP_RUN;
3139 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
3141 len = CCP_LENGTH(dp);
3142 if (!pskb_may_pull(skb, len + 2))
3143 return; /* too short */
3146 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
3149 /* we will start receiving compressed packets */
3152 if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
3153 ppp->file.index, 0, ppp->mru, ppp->debug)) {
3154 ppp->rstate |= SC_DECOMP_RUN;
3155 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
3158 /* we will soon start sending compressed packets */
3161 if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
3162 ppp->file.index, 0, ppp->debug))
3163 ppp->xstate |= SC_COMP_RUN;
3168 /* reset the [de]compressor */
3169 if ((ppp->flags & SC_CCP_UP) == 0)
3172 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
3173 ppp->rcomp->decomp_reset(ppp->rc_state);
3174 ppp->rstate &= ~SC_DC_ERROR;
3177 if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
3178 ppp->xcomp->comp_reset(ppp->xc_state);
3184 /* Free up compression resources. */
3186 ppp_ccp_closed(struct ppp *ppp)
3188 void *xstate, *rstate;
3189 struct compressor *xcomp, *rcomp;
3192 ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
3195 xstate = ppp->xc_state;
3196 ppp->xc_state = NULL;
3199 rstate = ppp->rc_state;
3200 ppp->rc_state = NULL;
3204 xcomp->comp_free(xstate);
3205 module_put(xcomp->owner);
3208 rcomp->decomp_free(rstate);
3209 module_put(rcomp->owner);
3213 /* List of compressors. */
3214 static LIST_HEAD(compressor_list);
3215 static DEFINE_SPINLOCK(compressor_list_lock);
3217 struct compressor_entry {
3218 struct list_head list;
3219 struct compressor *comp;
3222 static struct compressor_entry *
3223 find_comp_entry(int proto)
3225 struct compressor_entry *ce;
3227 list_for_each_entry(ce, &compressor_list, list) {
3228 if (ce->comp->compress_proto == proto)
3234 /* Register a compressor */
3236 ppp_register_compressor(struct compressor *cp)
3238 struct compressor_entry *ce;
3240 spin_lock(&compressor_list_lock);
3242 if (find_comp_entry(cp->compress_proto))
3245 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
3250 list_add(&ce->list, &compressor_list);
3252 spin_unlock(&compressor_list_lock);
3256 /* Unregister a compressor */
3258 ppp_unregister_compressor(struct compressor *cp)
3260 struct compressor_entry *ce;
3262 spin_lock(&compressor_list_lock);
3263 ce = find_comp_entry(cp->compress_proto);
3264 if (ce && ce->comp == cp) {
3265 list_del(&ce->list);
3268 spin_unlock(&compressor_list_lock);
3271 /* Find a compressor. */
3272 static struct compressor *
3273 find_compressor(int type)
3275 struct compressor_entry *ce;
3276 struct compressor *cp = NULL;
3278 spin_lock(&compressor_list_lock);
3279 ce = find_comp_entry(type);
3282 if (!try_module_get(cp->owner))
3285 spin_unlock(&compressor_list_lock);
3290 * Miscelleneous stuff.
3294 ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
3296 struct slcompress *vj = ppp->vj;
3298 memset(st, 0, sizeof(*st));
3299 st->p.ppp_ipackets = ppp->stats64.rx_packets;
3300 st->p.ppp_ierrors = ppp->dev->stats.rx_errors;
3301 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
3302 st->p.ppp_opackets = ppp->stats64.tx_packets;
3303 st->p.ppp_oerrors = ppp->dev->stats.tx_errors;
3304 st->p.ppp_obytes = ppp->stats64.tx_bytes;
3307 st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
3308 st->vj.vjs_compressed = vj->sls_o_compressed;
3309 st->vj.vjs_searches = vj->sls_o_searches;
3310 st->vj.vjs_misses = vj->sls_o_misses;
3311 st->vj.vjs_errorin = vj->sls_i_error;
3312 st->vj.vjs_tossed = vj->sls_i_tossed;
3313 st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
3314 st->vj.vjs_compressedin = vj->sls_i_compressed;
3318 * Stuff for handling the lists of ppp units and channels
3319 * and for initialization.
3323 * Create a new ppp interface unit. Fails if it can't allocate memory
3324 * or if there is already a unit with the requested number.
3325 * unit == -1 means allocate a new number.
3327 static int ppp_create_interface(struct net *net, struct file *file, int *unit)
3329 struct ppp_config conf = {
3332 .ifname_is_set = false,
3334 struct net_device *dev;
3338 dev = alloc_netdev(sizeof(struct ppp), "", NET_NAME_ENUM, ppp_setup);
3343 dev_net_set(dev, net);
3344 dev->rtnl_link_ops = &ppp_link_ops;
3348 err = ppp_dev_configure(net, dev, &conf);
3351 ppp = netdev_priv(dev);
3352 *unit = ppp->file.index;
3366 * Initialize a ppp_file structure.
3369 init_ppp_file(struct ppp_file *pf, int kind)
3372 skb_queue_head_init(&pf->xq);
3373 skb_queue_head_init(&pf->rq);
3374 refcount_set(&pf->refcnt, 1);
3375 init_waitqueue_head(&pf->rwait);
3379 * Free the memory used by a ppp unit. This is only called once
3380 * there are no channels connected to the unit and no file structs
3381 * that reference the unit.
3383 static void ppp_destroy_interface(struct ppp *ppp)
3385 atomic_dec(&ppp_unit_count);
3387 if (!ppp->file.dead || ppp->n_channels) {
3388 /* "can't happen" */
3389 netdev_err(ppp->dev, "ppp: destroying ppp struct %p "
3390 "but dead=%d n_channels=%d !\n",
3391 ppp, ppp->file.dead, ppp->n_channels);
3395 ppp_ccp_closed(ppp);
3400 skb_queue_purge(&ppp->file.xq);
3401 skb_queue_purge(&ppp->file.rq);
3402 #ifdef CONFIG_PPP_MULTILINK
3403 skb_queue_purge(&ppp->mrq);
3404 #endif /* CONFIG_PPP_MULTILINK */
3405 #ifdef CONFIG_PPP_FILTER
3406 if (ppp->pass_filter) {
3407 bpf_prog_destroy(ppp->pass_filter);
3408 ppp->pass_filter = NULL;
3411 if (ppp->active_filter) {
3412 bpf_prog_destroy(ppp->active_filter);
3413 ppp->active_filter = NULL;
3415 #endif /* CONFIG_PPP_FILTER */
3417 kfree_skb(ppp->xmit_pending);
3418 free_percpu(ppp->xmit_recursion);
3420 free_netdev(ppp->dev);
3424 * Locate an existing ppp unit.
3425 * The caller should have locked the all_ppp_mutex.
3428 ppp_find_unit(struct ppp_net *pn, int unit)
3430 return unit_find(&pn->units_idr, unit);
3434 * Locate an existing ppp channel.
3435 * The caller should have locked the all_channels_lock.
3436 * First we look in the new_channels list, then in the
3437 * all_channels list. If found in the new_channels list,
3438 * we move it to the all_channels list. This is for speed
3439 * when we have a lot of channels in use.
3441 static struct channel *
3442 ppp_find_channel(struct ppp_net *pn, int unit)
3444 struct channel *pch;
3446 list_for_each_entry(pch, &pn->new_channels, list) {
3447 if (pch->file.index == unit) {
3448 list_move(&pch->list, &pn->all_channels);
3453 list_for_each_entry(pch, &pn->all_channels, list) {
3454 if (pch->file.index == unit)
3462 * Connect a PPP channel to a PPP interface unit.
3465 ppp_connect_channel(struct channel *pch, int unit)
3472 pn = ppp_pernet(pch->chan_net);
3474 mutex_lock(&pn->all_ppp_mutex);
3475 ppp = ppp_find_unit(pn, unit);
3478 write_lock_bh(&pch->upl);
3481 rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl)))
3485 spin_lock_bh(&pch->downl);
3487 /* Don't connect unregistered channels */
3488 spin_unlock_bh(&pch->downl);
3493 spin_unlock_bh(&pch->downl);
3494 if (pch->file.hdrlen > ppp->file.hdrlen)
3495 ppp->file.hdrlen = pch->file.hdrlen;
3496 hdrlen = pch->file.hdrlen + 2; /* for protocol bytes */
3497 if (hdrlen > ppp->dev->hard_header_len)
3498 ppp->dev->hard_header_len = hdrlen;
3499 list_add_tail(&pch->clist, &ppp->channels);
3502 refcount_inc(&ppp->file.refcnt);
3507 write_unlock_bh(&pch->upl);
3509 mutex_unlock(&pn->all_ppp_mutex);
3514 * Disconnect a channel from its ppp unit.
3517 ppp_disconnect_channel(struct channel *pch)
3522 write_lock_bh(&pch->upl);
3525 write_unlock_bh(&pch->upl);
3527 /* remove it from the ppp unit's list */
3529 list_del(&pch->clist);
3530 if (--ppp->n_channels == 0)
3531 wake_up_interruptible(&ppp->file.rwait);
3533 if (refcount_dec_and_test(&ppp->file.refcnt))
3534 ppp_destroy_interface(ppp);
3541 * Free up the resources used by a ppp channel.
3543 static void ppp_destroy_channel(struct channel *pch)
3545 put_net_track(pch->chan_net, &pch->ns_tracker);
3546 pch->chan_net = NULL;
3548 atomic_dec(&channel_count);
3550 if (!pch->file.dead) {
3551 /* "can't happen" */
3552 pr_err("ppp: destroying undead channel %p !\n", pch);
3555 skb_queue_purge(&pch->file.xq);
3556 skb_queue_purge(&pch->file.rq);
3560 static void __exit ppp_cleanup(void)
3562 /* should never happen */
3563 if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
3564 pr_err("PPP: removing module but units remain!\n");
3565 rtnl_link_unregister(&ppp_link_ops);
3566 unregister_chrdev(PPP_MAJOR, "ppp");
3567 device_destroy(&ppp_class, MKDEV(PPP_MAJOR, 0));
3568 class_unregister(&ppp_class);
3569 unregister_pernet_device(&ppp_net_ops);
3573 * Units handling. Caller must protect concurrent access
3574 * by holding all_ppp_mutex
3577 /* associate pointer with specified number */
3578 static int unit_set(struct idr *p, void *ptr, int n)
3582 unit = idr_alloc(p, ptr, n, n + 1, GFP_KERNEL);
3583 if (unit == -ENOSPC)
3588 /* get new free unit number and associate pointer with it */
3589 static int unit_get(struct idr *p, void *ptr, int min)
3591 return idr_alloc(p, ptr, min, 0, GFP_KERNEL);
3594 /* put unit number back to a pool */
3595 static void unit_put(struct idr *p, int n)
3600 /* get pointer associated with the number */
3601 static void *unit_find(struct idr *p, int n)
3603 return idr_find(p, n);
3606 /* Module/initialization stuff */
3608 module_init(ppp_init);
3609 module_exit(ppp_cleanup);
3611 EXPORT_SYMBOL(ppp_register_net_channel);
3612 EXPORT_SYMBOL(ppp_register_channel);
3613 EXPORT_SYMBOL(ppp_unregister_channel);
3614 EXPORT_SYMBOL(ppp_channel_index);
3615 EXPORT_SYMBOL(ppp_unit_number);
3616 EXPORT_SYMBOL(ppp_dev_name);
3617 EXPORT_SYMBOL(ppp_input);
3618 EXPORT_SYMBOL(ppp_input_error);
3619 EXPORT_SYMBOL(ppp_output_wakeup);
3620 EXPORT_SYMBOL(ppp_register_compressor);
3621 EXPORT_SYMBOL(ppp_unregister_compressor);
3622 MODULE_DESCRIPTION("Generic PPP layer driver");
3623 MODULE_LICENSE("GPL");
3624 MODULE_ALIAS_CHARDEV(PPP_MAJOR, 0);
3625 MODULE_ALIAS_RTNL_LINK("ppp");
3626 MODULE_ALIAS("devname:ppp");