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 <asm/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 */
73 * An instance of /dev/ppp can be associated with either a ppp
74 * interface unit or a ppp channel. In both cases, file->private_data
75 * points to one of these.
81 struct sk_buff_head xq
; /* pppd transmit queue */
82 struct sk_buff_head rq
; /* receive queue for pppd */
83 wait_queue_head_t rwait
; /* for poll on reading /dev/ppp */
84 refcount_t refcnt
; /* # refs (incl /dev/ppp attached) */
85 int hdrlen
; /* space to leave for headers */
86 int index
; /* interface unit / channel number */
87 int dead
; /* unit/channel has been shut down */
90 #define PF_TO_X(pf, X) container_of(pf, X, file)
92 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
93 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
96 * Data structure to hold primary network stats for which
97 * we want to use 64 bit storage. Other network stats
98 * are stored in dev->stats of the ppp strucute.
100 struct ppp_link_stats
{
108 * Data structure describing one ppp unit.
109 * A ppp unit corresponds to a ppp network interface device
110 * and represents a multilink bundle.
111 * It can have 0 or more ppp channels connected to it.
114 struct ppp_file file
; /* stuff for read/write/poll 0 */
115 struct file
*owner
; /* file that owns this unit 48 */
116 struct list_head channels
; /* list of attached channels 4c */
117 int n_channels
; /* how many channels are attached 54 */
118 spinlock_t rlock
; /* lock for receive side 58 */
119 spinlock_t wlock
; /* lock for transmit side 5c */
120 int __percpu
*xmit_recursion
; /* xmit recursion detect */
121 int mru
; /* max receive unit 60 */
122 unsigned int flags
; /* control bits 64 */
123 unsigned int xstate
; /* transmit state bits 68 */
124 unsigned int rstate
; /* receive state bits 6c */
125 int debug
; /* debug flags 70 */
126 struct slcompress
*vj
; /* state for VJ header compression */
127 enum NPmode npmode
[NUM_NP
]; /* what to do with each net proto 78 */
128 struct sk_buff
*xmit_pending
; /* a packet ready to go out 88 */
129 struct compressor
*xcomp
; /* transmit packet compressor 8c */
130 void *xc_state
; /* its internal state 90 */
131 struct compressor
*rcomp
; /* receive decompressor 94 */
132 void *rc_state
; /* its internal state 98 */
133 unsigned long last_xmit
; /* jiffies when last pkt sent 9c */
134 unsigned long last_recv
; /* jiffies when last pkt rcvd a0 */
135 struct net_device
*dev
; /* network interface device a4 */
136 int closing
; /* is device closing down? a8 */
137 #ifdef CONFIG_PPP_MULTILINK
138 int nxchan
; /* next channel to send something on */
139 u32 nxseq
; /* next sequence number to send */
140 int mrru
; /* MP: max reconst. receive unit */
141 u32 nextseq
; /* MP: seq no of next packet */
142 u32 minseq
; /* MP: min of most recent seqnos */
143 struct sk_buff_head mrq
; /* MP: receive reconstruction queue */
144 #endif /* CONFIG_PPP_MULTILINK */
145 #ifdef CONFIG_PPP_FILTER
146 struct bpf_prog
*pass_filter
; /* filter for packets to pass */
147 struct bpf_prog
*active_filter
; /* filter for pkts to reset idle */
148 #endif /* CONFIG_PPP_FILTER */
149 struct net
*ppp_net
; /* the net we belong to */
150 struct ppp_link_stats stats64
; /* 64 bit network stats */
154 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
155 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
157 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
158 * Bits in xstate: SC_COMP_RUN
160 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
161 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
162 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
165 * Private data structure for each channel.
166 * This includes the data structure used for multilink.
169 struct ppp_file file
; /* stuff for read/write/poll */
170 struct list_head list
; /* link in all/new_channels list */
171 struct ppp_channel
*chan
; /* public channel data structure */
172 struct rw_semaphore chan_sem
; /* protects `chan' during chan ioctl */
173 spinlock_t downl
; /* protects `chan', file.xq dequeue */
174 struct ppp
*ppp
; /* ppp unit we're connected to */
175 struct net
*chan_net
; /* the net channel belongs to */
176 struct list_head clist
; /* link in list of channels per unit */
177 rwlock_t upl
; /* protects `ppp' */
178 #ifdef CONFIG_PPP_MULTILINK
179 u8 avail
; /* flag used in multilink stuff */
180 u8 had_frag
; /* >= 1 fragments have been sent */
181 u32 lastseq
; /* MP: last sequence # received */
182 int speed
; /* speed of the corresponding ppp channel*/
183 #endif /* CONFIG_PPP_MULTILINK */
193 * SMP locking issues:
194 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
195 * list and the ppp.n_channels field, you need to take both locks
196 * before you modify them.
197 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
201 static DEFINE_MUTEX(ppp_mutex
);
202 static atomic_t ppp_unit_count
= ATOMIC_INIT(0);
203 static atomic_t channel_count
= ATOMIC_INIT(0);
205 /* per-net private data for this module */
206 static unsigned int ppp_net_id __read_mostly
;
208 /* units to ppp mapping */
209 struct idr units_idr
;
212 * all_ppp_mutex protects the units_idr mapping.
213 * It also ensures that finding a ppp unit in the units_idr
214 * map and updating its file.refcnt field is atomic.
216 struct mutex all_ppp_mutex
;
219 struct list_head all_channels
;
220 struct list_head new_channels
;
221 int last_channel_index
;
224 * all_channels_lock protects all_channels and
225 * last_channel_index, and the atomicity of find
226 * a channel and updating its file.refcnt field.
228 spinlock_t all_channels_lock
;
231 /* Get the PPP protocol number from a skb */
232 #define PPP_PROTO(skb) get_unaligned_be16((skb)->data)
234 /* We limit the length of ppp->file.rq to this (arbitrary) value */
235 #define PPP_MAX_RQLEN 32
238 * Maximum number of multilink fragments queued up.
239 * This has to be large enough to cope with the maximum latency of
240 * the slowest channel relative to the others. Strictly it should
241 * depend on the number of channels and their characteristics.
243 #define PPP_MP_MAX_QLEN 128
245 /* Multilink header bits. */
246 #define B 0x80 /* this fragment begins a packet */
247 #define E 0x40 /* this fragment ends a packet */
249 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
250 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
251 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
254 static int ppp_unattached_ioctl(struct net
*net
, struct ppp_file
*pf
,
255 struct file
*file
, unsigned int cmd
, unsigned long arg
);
256 static void ppp_xmit_process(struct ppp
*ppp
, struct sk_buff
*skb
);
257 static void ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
258 static void ppp_push(struct ppp
*ppp
);
259 static void ppp_channel_push(struct channel
*pch
);
260 static void ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
261 struct channel
*pch
);
262 static void ppp_receive_error(struct ppp
*ppp
);
263 static void ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
264 static struct sk_buff
*ppp_decompress_frame(struct ppp
*ppp
,
265 struct sk_buff
*skb
);
266 #ifdef CONFIG_PPP_MULTILINK
267 static void ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
268 struct channel
*pch
);
269 static void ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
);
270 static struct sk_buff
*ppp_mp_reconstruct(struct ppp
*ppp
);
271 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
);
272 #endif /* CONFIG_PPP_MULTILINK */
273 static int ppp_set_compress(struct ppp
*ppp
, unsigned long arg
);
274 static void ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
);
275 static void ppp_ccp_closed(struct ppp
*ppp
);
276 static struct compressor
*find_compressor(int type
);
277 static void ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
);
278 static int ppp_create_interface(struct net
*net
, struct file
*file
, int *unit
);
279 static void init_ppp_file(struct ppp_file
*pf
, int kind
);
280 static void ppp_destroy_interface(struct ppp
*ppp
);
281 static struct ppp
*ppp_find_unit(struct ppp_net
*pn
, int unit
);
282 static struct channel
*ppp_find_channel(struct ppp_net
*pn
, int unit
);
283 static int ppp_connect_channel(struct channel
*pch
, int unit
);
284 static int ppp_disconnect_channel(struct channel
*pch
);
285 static void ppp_destroy_channel(struct channel
*pch
);
286 static int unit_get(struct idr
*p
, void *ptr
);
287 static int unit_set(struct idr
*p
, void *ptr
, int n
);
288 static void unit_put(struct idr
*p
, int n
);
289 static void *unit_find(struct idr
*p
, int n
);
290 static void ppp_setup(struct net_device
*dev
);
292 static const struct net_device_ops ppp_netdev_ops
;
294 static struct class *ppp_class
;
296 /* per net-namespace data */
297 static inline struct ppp_net
*ppp_pernet(struct net
*net
)
301 return net_generic(net
, ppp_net_id
);
304 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
305 static inline int proto_to_npindex(int proto
)
324 /* Translates an NP index into a PPP protocol number */
325 static const int npindex_to_proto
[NUM_NP
] = {
334 /* Translates an ethertype into an NP index */
335 static inline int ethertype_to_npindex(int ethertype
)
355 /* Translates an NP index into an ethertype */
356 static const int npindex_to_ethertype
[NUM_NP
] = {
368 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
369 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
370 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
371 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
372 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
373 ppp_recv_lock(ppp); } while (0)
374 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
375 ppp_xmit_unlock(ppp); } while (0)
378 * /dev/ppp device routines.
379 * The /dev/ppp device is used by pppd to control the ppp unit.
380 * It supports the read, write, ioctl and poll functions.
381 * Open instances of /dev/ppp can be in one of three states:
382 * unattached, attached to a ppp unit, or attached to a ppp channel.
384 static int ppp_open(struct inode
*inode
, struct file
*file
)
387 * This could (should?) be enforced by the permissions on /dev/ppp.
389 if (!ns_capable(file
->f_cred
->user_ns
, CAP_NET_ADMIN
))
394 static int ppp_release(struct inode
*unused
, struct file
*file
)
396 struct ppp_file
*pf
= file
->private_data
;
400 file
->private_data
= NULL
;
401 if (pf
->kind
== INTERFACE
) {
404 if (file
== ppp
->owner
)
405 unregister_netdevice(ppp
->dev
);
408 if (refcount_dec_and_test(&pf
->refcnt
)) {
411 ppp_destroy_interface(PF_TO_PPP(pf
));
414 ppp_destroy_channel(PF_TO_CHANNEL(pf
));
422 static ssize_t
ppp_read(struct file
*file
, char __user
*buf
,
423 size_t count
, loff_t
*ppos
)
425 struct ppp_file
*pf
= file
->private_data
;
426 DECLARE_WAITQUEUE(wait
, current
);
428 struct sk_buff
*skb
= NULL
;
436 add_wait_queue(&pf
->rwait
, &wait
);
438 set_current_state(TASK_INTERRUPTIBLE
);
439 skb
= skb_dequeue(&pf
->rq
);
445 if (pf
->kind
== INTERFACE
) {
447 * Return 0 (EOF) on an interface that has no
448 * channels connected, unless it is looping
449 * network traffic (demand mode).
451 struct ppp
*ppp
= PF_TO_PPP(pf
);
454 if (ppp
->n_channels
== 0 &&
455 (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0) {
456 ppp_recv_unlock(ppp
);
459 ppp_recv_unlock(ppp
);
462 if (file
->f_flags
& O_NONBLOCK
)
465 if (signal_pending(current
))
469 set_current_state(TASK_RUNNING
);
470 remove_wait_queue(&pf
->rwait
, &wait
);
476 if (skb
->len
> count
)
481 iov_iter_init(&to
, READ
, &iov
, 1, count
);
482 if (skb_copy_datagram_iter(skb
, 0, &to
, skb
->len
))
492 static ssize_t
ppp_write(struct file
*file
, const char __user
*buf
,
493 size_t count
, loff_t
*ppos
)
495 struct ppp_file
*pf
= file
->private_data
;
502 skb
= alloc_skb(count
+ pf
->hdrlen
, GFP_KERNEL
);
505 skb_reserve(skb
, pf
->hdrlen
);
507 if (copy_from_user(skb_put(skb
, count
), buf
, count
)) {
514 ppp_xmit_process(PF_TO_PPP(pf
), skb
);
517 skb_queue_tail(&pf
->xq
, skb
);
518 ppp_channel_push(PF_TO_CHANNEL(pf
));
528 /* No kernel lock - fine */
529 static __poll_t
ppp_poll(struct file
*file
, poll_table
*wait
)
531 struct ppp_file
*pf
= file
->private_data
;
536 poll_wait(file
, &pf
->rwait
, wait
);
537 mask
= EPOLLOUT
| EPOLLWRNORM
;
538 if (skb_peek(&pf
->rq
))
539 mask
|= EPOLLIN
| EPOLLRDNORM
;
542 else if (pf
->kind
== INTERFACE
) {
543 /* see comment in ppp_read */
544 struct ppp
*ppp
= PF_TO_PPP(pf
);
547 if (ppp
->n_channels
== 0 &&
548 (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
549 mask
|= EPOLLIN
| EPOLLRDNORM
;
550 ppp_recv_unlock(ppp
);
556 #ifdef CONFIG_PPP_FILTER
557 static int get_filter(void __user
*arg
, struct sock_filter
**p
)
559 struct sock_fprog uprog
;
560 struct sock_filter
*code
= NULL
;
563 if (copy_from_user(&uprog
, arg
, sizeof(uprog
)))
571 len
= uprog
.len
* sizeof(struct sock_filter
);
572 code
= memdup_user(uprog
.filter
, len
);
574 return PTR_ERR(code
);
579 #endif /* CONFIG_PPP_FILTER */
581 static long ppp_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
585 int err
= -EFAULT
, val
, val2
, i
;
586 struct ppp_idle idle
;
589 struct slcompress
*vj
;
590 void __user
*argp
= (void __user
*)arg
;
591 int __user
*p
= argp
;
593 mutex_lock(&ppp_mutex
);
595 pf
= file
->private_data
;
597 err
= ppp_unattached_ioctl(current
->nsproxy
->net_ns
,
602 if (cmd
== PPPIOCDETACH
) {
604 * PPPIOCDETACH is no longer supported as it was heavily broken,
605 * and is only known to have been used by pppd older than
606 * ppp-2.4.2 (released November 2003).
608 pr_warn_once("%s (%d) used obsolete PPPIOCDETACH ioctl\n",
609 current
->comm
, current
->pid
);
614 if (pf
->kind
== CHANNEL
) {
616 struct ppp_channel
*chan
;
618 pch
= PF_TO_CHANNEL(pf
);
622 if (get_user(unit
, p
))
624 err
= ppp_connect_channel(pch
, unit
);
628 err
= ppp_disconnect_channel(pch
);
632 down_read(&pch
->chan_sem
);
635 if (chan
&& chan
->ops
->ioctl
)
636 err
= chan
->ops
->ioctl(chan
, cmd
, arg
);
637 up_read(&pch
->chan_sem
);
642 if (pf
->kind
!= INTERFACE
) {
644 pr_err("PPP: not interface or channel??\n");
652 if (get_user(val
, p
))
659 if (get_user(val
, p
))
662 cflags
= ppp
->flags
& ~val
;
663 #ifdef CONFIG_PPP_MULTILINK
664 if (!(ppp
->flags
& SC_MULTILINK
) && (val
& SC_MULTILINK
))
667 ppp
->flags
= val
& SC_FLAG_BITS
;
669 if (cflags
& SC_CCP_OPEN
)
675 val
= ppp
->flags
| ppp
->xstate
| ppp
->rstate
;
676 if (put_user(val
, p
))
681 case PPPIOCSCOMPRESS
:
682 err
= ppp_set_compress(ppp
, arg
);
686 if (put_user(ppp
->file
.index
, p
))
692 if (get_user(val
, p
))
699 if (put_user(ppp
->debug
, p
))
705 idle
.xmit_idle
= (jiffies
- ppp
->last_xmit
) / HZ
;
706 idle
.recv_idle
= (jiffies
- ppp
->last_recv
) / HZ
;
707 if (copy_to_user(argp
, &idle
, sizeof(idle
)))
713 if (get_user(val
, p
))
716 if ((val
>> 16) != 0) {
720 vj
= slhc_init(val2
+1, val
+1);
735 if (copy_from_user(&npi
, argp
, sizeof(npi
)))
737 err
= proto_to_npindex(npi
.protocol
);
741 if (cmd
== PPPIOCGNPMODE
) {
743 npi
.mode
= ppp
->npmode
[i
];
744 if (copy_to_user(argp
, &npi
, sizeof(npi
)))
747 ppp
->npmode
[i
] = npi
.mode
;
748 /* we may be able to transmit more packets now (??) */
749 netif_wake_queue(ppp
->dev
);
754 #ifdef CONFIG_PPP_FILTER
757 struct sock_filter
*code
;
759 err
= get_filter(argp
, &code
);
761 struct bpf_prog
*pass_filter
= NULL
;
762 struct sock_fprog_kern fprog
= {
769 err
= bpf_prog_create(&pass_filter
, &fprog
);
772 if (ppp
->pass_filter
)
773 bpf_prog_destroy(ppp
->pass_filter
);
774 ppp
->pass_filter
= pass_filter
;
783 struct sock_filter
*code
;
785 err
= get_filter(argp
, &code
);
787 struct bpf_prog
*active_filter
= NULL
;
788 struct sock_fprog_kern fprog
= {
795 err
= bpf_prog_create(&active_filter
, &fprog
);
798 if (ppp
->active_filter
)
799 bpf_prog_destroy(ppp
->active_filter
);
800 ppp
->active_filter
= active_filter
;
807 #endif /* CONFIG_PPP_FILTER */
809 #ifdef CONFIG_PPP_MULTILINK
811 if (get_user(val
, p
))
815 ppp_recv_unlock(ppp
);
818 #endif /* CONFIG_PPP_MULTILINK */
825 mutex_unlock(&ppp_mutex
);
830 static int ppp_unattached_ioctl(struct net
*net
, struct ppp_file
*pf
,
831 struct file
*file
, unsigned int cmd
, unsigned long arg
)
833 int unit
, err
= -EFAULT
;
835 struct channel
*chan
;
837 int __user
*p
= (int __user
*)arg
;
841 /* Create a new ppp unit */
842 if (get_user(unit
, p
))
844 err
= ppp_create_interface(net
, file
, &unit
);
849 if (put_user(unit
, p
))
855 /* Attach to an existing ppp unit */
856 if (get_user(unit
, p
))
859 pn
= ppp_pernet(net
);
860 mutex_lock(&pn
->all_ppp_mutex
);
861 ppp
= ppp_find_unit(pn
, unit
);
863 refcount_inc(&ppp
->file
.refcnt
);
864 file
->private_data
= &ppp
->file
;
867 mutex_unlock(&pn
->all_ppp_mutex
);
871 if (get_user(unit
, p
))
874 pn
= ppp_pernet(net
);
875 spin_lock_bh(&pn
->all_channels_lock
);
876 chan
= ppp_find_channel(pn
, unit
);
878 refcount_inc(&chan
->file
.refcnt
);
879 file
->private_data
= &chan
->file
;
882 spin_unlock_bh(&pn
->all_channels_lock
);
892 static const struct file_operations ppp_device_fops
= {
893 .owner
= THIS_MODULE
,
897 .unlocked_ioctl
= ppp_ioctl
,
899 .release
= ppp_release
,
900 .llseek
= noop_llseek
,
903 static __net_init
int ppp_init_net(struct net
*net
)
905 struct ppp_net
*pn
= net_generic(net
, ppp_net_id
);
907 idr_init(&pn
->units_idr
);
908 mutex_init(&pn
->all_ppp_mutex
);
910 INIT_LIST_HEAD(&pn
->all_channels
);
911 INIT_LIST_HEAD(&pn
->new_channels
);
913 spin_lock_init(&pn
->all_channels_lock
);
918 static __net_exit
void ppp_exit_net(struct net
*net
)
920 struct ppp_net
*pn
= net_generic(net
, ppp_net_id
);
921 struct net_device
*dev
;
922 struct net_device
*aux
;
928 for_each_netdev_safe(net
, dev
, aux
) {
929 if (dev
->netdev_ops
== &ppp_netdev_ops
)
930 unregister_netdevice_queue(dev
, &list
);
933 idr_for_each_entry(&pn
->units_idr
, ppp
, id
)
934 /* Skip devices already unregistered by previous loop */
935 if (!net_eq(dev_net(ppp
->dev
), net
))
936 unregister_netdevice_queue(ppp
->dev
, &list
);
938 unregister_netdevice_many(&list
);
941 mutex_destroy(&pn
->all_ppp_mutex
);
942 idr_destroy(&pn
->units_idr
);
943 WARN_ON_ONCE(!list_empty(&pn
->all_channels
));
944 WARN_ON_ONCE(!list_empty(&pn
->new_channels
));
947 static struct pernet_operations ppp_net_ops
= {
948 .init
= ppp_init_net
,
949 .exit
= ppp_exit_net
,
951 .size
= sizeof(struct ppp_net
),
954 static int ppp_unit_register(struct ppp
*ppp
, int unit
, bool ifname_is_set
)
956 struct ppp_net
*pn
= ppp_pernet(ppp
->ppp_net
);
959 mutex_lock(&pn
->all_ppp_mutex
);
962 ret
= unit_get(&pn
->units_idr
, ppp
);
966 /* Caller asked for a specific unit number. Fail with -EEXIST
967 * if unavailable. For backward compatibility, return -EEXIST
968 * too if idr allocation fails; this makes pppd retry without
969 * requesting a specific unit number.
971 if (unit_find(&pn
->units_idr
, unit
)) {
975 ret
= unit_set(&pn
->units_idr
, ppp
, unit
);
977 /* Rewrite error for backward compatibility */
982 ppp
->file
.index
= ret
;
985 snprintf(ppp
->dev
->name
, IFNAMSIZ
, "ppp%i", ppp
->file
.index
);
987 mutex_unlock(&pn
->all_ppp_mutex
);
989 ret
= register_netdevice(ppp
->dev
);
993 atomic_inc(&ppp_unit_count
);
998 mutex_lock(&pn
->all_ppp_mutex
);
999 unit_put(&pn
->units_idr
, ppp
->file
.index
);
1001 mutex_unlock(&pn
->all_ppp_mutex
);
1006 static int ppp_dev_configure(struct net
*src_net
, struct net_device
*dev
,
1007 const struct ppp_config
*conf
)
1009 struct ppp
*ppp
= netdev_priv(dev
);
1015 ppp
->ppp_net
= src_net
;
1017 ppp
->owner
= conf
->file
;
1019 init_ppp_file(&ppp
->file
, INTERFACE
);
1020 ppp
->file
.hdrlen
= PPP_HDRLEN
- 2; /* don't count proto bytes */
1022 for (indx
= 0; indx
< NUM_NP
; ++indx
)
1023 ppp
->npmode
[indx
] = NPMODE_PASS
;
1024 INIT_LIST_HEAD(&ppp
->channels
);
1025 spin_lock_init(&ppp
->rlock
);
1026 spin_lock_init(&ppp
->wlock
);
1028 ppp
->xmit_recursion
= alloc_percpu(int);
1029 if (!ppp
->xmit_recursion
) {
1033 for_each_possible_cpu(cpu
)
1034 (*per_cpu_ptr(ppp
->xmit_recursion
, cpu
)) = 0;
1036 #ifdef CONFIG_PPP_MULTILINK
1038 skb_queue_head_init(&ppp
->mrq
);
1039 #endif /* CONFIG_PPP_MULTILINK */
1040 #ifdef CONFIG_PPP_FILTER
1041 ppp
->pass_filter
= NULL
;
1042 ppp
->active_filter
= NULL
;
1043 #endif /* CONFIG_PPP_FILTER */
1045 err
= ppp_unit_register(ppp
, conf
->unit
, conf
->ifname_is_set
);
1049 conf
->file
->private_data
= &ppp
->file
;
1053 free_percpu(ppp
->xmit_recursion
);
1058 static const struct nla_policy ppp_nl_policy
[IFLA_PPP_MAX
+ 1] = {
1059 [IFLA_PPP_DEV_FD
] = { .type
= NLA_S32
},
1062 static int ppp_nl_validate(struct nlattr
*tb
[], struct nlattr
*data
[],
1063 struct netlink_ext_ack
*extack
)
1068 if (!data
[IFLA_PPP_DEV_FD
])
1070 if (nla_get_s32(data
[IFLA_PPP_DEV_FD
]) < 0)
1076 static int ppp_nl_newlink(struct net
*src_net
, struct net_device
*dev
,
1077 struct nlattr
*tb
[], struct nlattr
*data
[],
1078 struct netlink_ext_ack
*extack
)
1080 struct ppp_config conf
= {
1082 .ifname_is_set
= true,
1087 file
= fget(nla_get_s32(data
[IFLA_PPP_DEV_FD
]));
1091 /* rtnl_lock is already held here, but ppp_create_interface() locks
1092 * ppp_mutex before holding rtnl_lock. Using mutex_trylock() avoids
1093 * possible deadlock due to lock order inversion, at the cost of
1094 * pushing the problem back to userspace.
1096 if (!mutex_trylock(&ppp_mutex
)) {
1101 if (file
->f_op
!= &ppp_device_fops
|| file
->private_data
) {
1108 /* Don't use device name generated by the rtnetlink layer when ifname
1109 * isn't specified. Let ppp_dev_configure() set the device name using
1110 * the PPP unit identifer as suffix (i.e. ppp<unit_id>). This allows
1111 * userspace to infer the device name using to the PPPIOCGUNIT ioctl.
1113 if (!tb
[IFLA_IFNAME
])
1114 conf
.ifname_is_set
= false;
1116 err
= ppp_dev_configure(src_net
, dev
, &conf
);
1119 mutex_unlock(&ppp_mutex
);
1126 static void ppp_nl_dellink(struct net_device
*dev
, struct list_head
*head
)
1128 unregister_netdevice_queue(dev
, head
);
1131 static size_t ppp_nl_get_size(const struct net_device
*dev
)
1136 static int ppp_nl_fill_info(struct sk_buff
*skb
, const struct net_device
*dev
)
1141 static struct net
*ppp_nl_get_link_net(const struct net_device
*dev
)
1143 struct ppp
*ppp
= netdev_priv(dev
);
1145 return ppp
->ppp_net
;
1148 static struct rtnl_link_ops ppp_link_ops __read_mostly
= {
1150 .maxtype
= IFLA_PPP_MAX
,
1151 .policy
= ppp_nl_policy
,
1152 .priv_size
= sizeof(struct ppp
),
1154 .validate
= ppp_nl_validate
,
1155 .newlink
= ppp_nl_newlink
,
1156 .dellink
= ppp_nl_dellink
,
1157 .get_size
= ppp_nl_get_size
,
1158 .fill_info
= ppp_nl_fill_info
,
1159 .get_link_net
= ppp_nl_get_link_net
,
1162 #define PPP_MAJOR 108
1164 /* Called at boot time if ppp is compiled into the kernel,
1165 or at module load time (from init_module) if compiled as a module. */
1166 static int __init
ppp_init(void)
1170 pr_info("PPP generic driver version " PPP_VERSION
"\n");
1172 err
= register_pernet_device(&ppp_net_ops
);
1174 pr_err("failed to register PPP pernet device (%d)\n", err
);
1178 err
= register_chrdev(PPP_MAJOR
, "ppp", &ppp_device_fops
);
1180 pr_err("failed to register PPP device (%d)\n", err
);
1184 ppp_class
= class_create(THIS_MODULE
, "ppp");
1185 if (IS_ERR(ppp_class
)) {
1186 err
= PTR_ERR(ppp_class
);
1190 err
= rtnl_link_register(&ppp_link_ops
);
1192 pr_err("failed to register rtnetlink PPP handler\n");
1196 /* not a big deal if we fail here :-) */
1197 device_create(ppp_class
, NULL
, MKDEV(PPP_MAJOR
, 0), NULL
, "ppp");
1202 class_destroy(ppp_class
);
1204 unregister_chrdev(PPP_MAJOR
, "ppp");
1206 unregister_pernet_device(&ppp_net_ops
);
1212 * Network interface unit routines.
1215 ppp_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1217 struct ppp
*ppp
= netdev_priv(dev
);
1221 npi
= ethertype_to_npindex(ntohs(skb
->protocol
));
1225 /* Drop, accept or reject the packet */
1226 switch (ppp
->npmode
[npi
]) {
1230 /* it would be nice to have a way to tell the network
1231 system to queue this one up for later. */
1238 /* Put the 2-byte PPP protocol number on the front,
1239 making sure there is room for the address and control fields. */
1240 if (skb_cow_head(skb
, PPP_HDRLEN
))
1243 pp
= skb_push(skb
, 2);
1244 proto
= npindex_to_proto
[npi
];
1245 put_unaligned_be16(proto
, pp
);
1247 skb_scrub_packet(skb
, !net_eq(ppp
->ppp_net
, dev_net(dev
)));
1248 ppp_xmit_process(ppp
, skb
);
1250 return NETDEV_TX_OK
;
1254 ++dev
->stats
.tx_dropped
;
1255 return NETDEV_TX_OK
;
1259 ppp_net_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1261 struct ppp
*ppp
= netdev_priv(dev
);
1263 void __user
*addr
= (void __user
*) ifr
->ifr_ifru
.ifru_data
;
1264 struct ppp_stats stats
;
1265 struct ppp_comp_stats cstats
;
1270 ppp_get_stats(ppp
, &stats
);
1271 if (copy_to_user(addr
, &stats
, sizeof(stats
)))
1276 case SIOCGPPPCSTATS
:
1277 memset(&cstats
, 0, sizeof(cstats
));
1279 ppp
->xcomp
->comp_stat(ppp
->xc_state
, &cstats
.c
);
1281 ppp
->rcomp
->decomp_stat(ppp
->rc_state
, &cstats
.d
);
1282 if (copy_to_user(addr
, &cstats
, sizeof(cstats
)))
1289 if (copy_to_user(addr
, vers
, strlen(vers
) + 1))
1302 ppp_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats64
)
1304 struct ppp
*ppp
= netdev_priv(dev
);
1307 stats64
->rx_packets
= ppp
->stats64
.rx_packets
;
1308 stats64
->rx_bytes
= ppp
->stats64
.rx_bytes
;
1309 ppp_recv_unlock(ppp
);
1312 stats64
->tx_packets
= ppp
->stats64
.tx_packets
;
1313 stats64
->tx_bytes
= ppp
->stats64
.tx_bytes
;
1314 ppp_xmit_unlock(ppp
);
1316 stats64
->rx_errors
= dev
->stats
.rx_errors
;
1317 stats64
->tx_errors
= dev
->stats
.tx_errors
;
1318 stats64
->rx_dropped
= dev
->stats
.rx_dropped
;
1319 stats64
->tx_dropped
= dev
->stats
.tx_dropped
;
1320 stats64
->rx_length_errors
= dev
->stats
.rx_length_errors
;
1323 static int ppp_dev_init(struct net_device
*dev
)
1327 netdev_lockdep_set_classes(dev
);
1329 ppp
= netdev_priv(dev
);
1330 /* Let the netdevice take a reference on the ppp file. This ensures
1331 * that ppp_destroy_interface() won't run before the device gets
1334 refcount_inc(&ppp
->file
.refcnt
);
1339 static void ppp_dev_uninit(struct net_device
*dev
)
1341 struct ppp
*ppp
= netdev_priv(dev
);
1342 struct ppp_net
*pn
= ppp_pernet(ppp
->ppp_net
);
1348 mutex_lock(&pn
->all_ppp_mutex
);
1349 unit_put(&pn
->units_idr
, ppp
->file
.index
);
1350 mutex_unlock(&pn
->all_ppp_mutex
);
1355 wake_up_interruptible(&ppp
->file
.rwait
);
1358 static void ppp_dev_priv_destructor(struct net_device
*dev
)
1362 ppp
= netdev_priv(dev
);
1363 if (refcount_dec_and_test(&ppp
->file
.refcnt
))
1364 ppp_destroy_interface(ppp
);
1367 static const struct net_device_ops ppp_netdev_ops
= {
1368 .ndo_init
= ppp_dev_init
,
1369 .ndo_uninit
= ppp_dev_uninit
,
1370 .ndo_start_xmit
= ppp_start_xmit
,
1371 .ndo_do_ioctl
= ppp_net_ioctl
,
1372 .ndo_get_stats64
= ppp_get_stats64
,
1375 static struct device_type ppp_type
= {
1379 static void ppp_setup(struct net_device
*dev
)
1381 dev
->netdev_ops
= &ppp_netdev_ops
;
1382 SET_NETDEV_DEVTYPE(dev
, &ppp_type
);
1384 dev
->features
|= NETIF_F_LLTX
;
1386 dev
->hard_header_len
= PPP_HDRLEN
;
1389 dev
->tx_queue_len
= 3;
1390 dev
->type
= ARPHRD_PPP
;
1391 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
1392 dev
->priv_destructor
= ppp_dev_priv_destructor
;
1393 netif_keep_dst(dev
);
1397 * Transmit-side routines.
1400 /* Called to do any work queued up on the transmit side that can now be done */
1401 static void __ppp_xmit_process(struct ppp
*ppp
, struct sk_buff
*skb
)
1404 if (!ppp
->closing
) {
1408 skb_queue_tail(&ppp
->file
.xq
, skb
);
1409 while (!ppp
->xmit_pending
&&
1410 (skb
= skb_dequeue(&ppp
->file
.xq
)))
1411 ppp_send_frame(ppp
, skb
);
1412 /* If there's no work left to do, tell the core net
1413 code that we can accept some more. */
1414 if (!ppp
->xmit_pending
&& !skb_peek(&ppp
->file
.xq
))
1415 netif_wake_queue(ppp
->dev
);
1417 netif_stop_queue(ppp
->dev
);
1419 ppp_xmit_unlock(ppp
);
1422 static void ppp_xmit_process(struct ppp
*ppp
, struct sk_buff
*skb
)
1426 if (unlikely(*this_cpu_ptr(ppp
->xmit_recursion
)))
1429 (*this_cpu_ptr(ppp
->xmit_recursion
))++;
1430 __ppp_xmit_process(ppp
, skb
);
1431 (*this_cpu_ptr(ppp
->xmit_recursion
))--;
1442 if (net_ratelimit())
1443 netdev_err(ppp
->dev
, "recursion detected\n");
1446 static inline struct sk_buff
*
1447 pad_compress_skb(struct ppp
*ppp
, struct sk_buff
*skb
)
1449 struct sk_buff
*new_skb
;
1451 int new_skb_size
= ppp
->dev
->mtu
+
1452 ppp
->xcomp
->comp_extra
+ ppp
->dev
->hard_header_len
;
1453 int compressor_skb_size
= ppp
->dev
->mtu
+
1454 ppp
->xcomp
->comp_extra
+ PPP_HDRLEN
;
1455 new_skb
= alloc_skb(new_skb_size
, GFP_ATOMIC
);
1457 if (net_ratelimit())
1458 netdev_err(ppp
->dev
, "PPP: no memory (comp pkt)\n");
1461 if (ppp
->dev
->hard_header_len
> PPP_HDRLEN
)
1462 skb_reserve(new_skb
,
1463 ppp
->dev
->hard_header_len
- PPP_HDRLEN
);
1465 /* compressor still expects A/C bytes in hdr */
1466 len
= ppp
->xcomp
->compress(ppp
->xc_state
, skb
->data
- 2,
1467 new_skb
->data
, skb
->len
+ 2,
1468 compressor_skb_size
);
1469 if (len
> 0 && (ppp
->flags
& SC_CCP_UP
)) {
1473 skb_pull(skb
, 2); /* pull off A/C bytes */
1474 } else if (len
== 0) {
1475 /* didn't compress, or CCP not up yet */
1476 consume_skb(new_skb
);
1481 * MPPE requires that we do not send unencrypted
1482 * frames. The compressor will return -1 if we
1483 * should drop the frame. We cannot simply test
1484 * the compress_proto because MPPE and MPPC share
1487 if (net_ratelimit())
1488 netdev_err(ppp
->dev
, "ppp: compressor dropped pkt\n");
1490 consume_skb(new_skb
);
1497 * Compress and send a frame.
1498 * The caller should have locked the xmit path,
1499 * and xmit_pending should be 0.
1502 ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1504 int proto
= PPP_PROTO(skb
);
1505 struct sk_buff
*new_skb
;
1509 if (proto
< 0x8000) {
1510 #ifdef CONFIG_PPP_FILTER
1511 /* check if we should pass this packet */
1512 /* the filter instructions are constructed assuming
1513 a four-byte PPP header on each packet */
1514 *(u8
*)skb_push(skb
, 2) = 1;
1515 if (ppp
->pass_filter
&&
1516 BPF_PROG_RUN(ppp
->pass_filter
, skb
) == 0) {
1518 netdev_printk(KERN_DEBUG
, ppp
->dev
,
1519 "PPP: outbound frame "
1524 /* if this packet passes the active filter, record the time */
1525 if (!(ppp
->active_filter
&&
1526 BPF_PROG_RUN(ppp
->active_filter
, skb
) == 0))
1527 ppp
->last_xmit
= jiffies
;
1530 /* for data packets, record the time */
1531 ppp
->last_xmit
= jiffies
;
1532 #endif /* CONFIG_PPP_FILTER */
1535 ++ppp
->stats64
.tx_packets
;
1536 ppp
->stats64
.tx_bytes
+= skb
->len
- 2;
1540 if (!ppp
->vj
|| (ppp
->flags
& SC_COMP_TCP
) == 0)
1542 /* try to do VJ TCP header compression */
1543 new_skb
= alloc_skb(skb
->len
+ ppp
->dev
->hard_header_len
- 2,
1546 netdev_err(ppp
->dev
, "PPP: no memory (VJ comp pkt)\n");
1549 skb_reserve(new_skb
, ppp
->dev
->hard_header_len
- 2);
1551 len
= slhc_compress(ppp
->vj
, cp
, skb
->len
- 2,
1552 new_skb
->data
+ 2, &cp
,
1553 !(ppp
->flags
& SC_NO_TCP_CCID
));
1554 if (cp
== skb
->data
+ 2) {
1555 /* didn't compress */
1556 consume_skb(new_skb
);
1558 if (cp
[0] & SL_TYPE_COMPRESSED_TCP
) {
1559 proto
= PPP_VJC_COMP
;
1560 cp
[0] &= ~SL_TYPE_COMPRESSED_TCP
;
1562 proto
= PPP_VJC_UNCOMP
;
1563 cp
[0] = skb
->data
[2];
1567 cp
= skb_put(skb
, len
+ 2);
1574 /* peek at outbound CCP frames */
1575 ppp_ccp_peek(ppp
, skb
, 0);
1579 /* try to do packet compression */
1580 if ((ppp
->xstate
& SC_COMP_RUN
) && ppp
->xc_state
&&
1581 proto
!= PPP_LCP
&& proto
!= PPP_CCP
) {
1582 if (!(ppp
->flags
& SC_CCP_UP
) && (ppp
->flags
& SC_MUST_COMP
)) {
1583 if (net_ratelimit())
1584 netdev_err(ppp
->dev
,
1585 "ppp: compression required but "
1586 "down - pkt dropped.\n");
1589 skb
= pad_compress_skb(ppp
, skb
);
1595 * If we are waiting for traffic (demand dialling),
1596 * queue it up for pppd to receive.
1598 if (ppp
->flags
& SC_LOOP_TRAFFIC
) {
1599 if (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
)
1601 skb_queue_tail(&ppp
->file
.rq
, skb
);
1602 wake_up_interruptible(&ppp
->file
.rwait
);
1606 ppp
->xmit_pending
= skb
;
1612 ++ppp
->dev
->stats
.tx_errors
;
1616 * Try to send the frame in xmit_pending.
1617 * The caller should have the xmit path locked.
1620 ppp_push(struct ppp
*ppp
)
1622 struct list_head
*list
;
1623 struct channel
*pch
;
1624 struct sk_buff
*skb
= ppp
->xmit_pending
;
1629 list
= &ppp
->channels
;
1630 if (list_empty(list
)) {
1631 /* nowhere to send the packet, just drop it */
1632 ppp
->xmit_pending
= NULL
;
1637 if ((ppp
->flags
& SC_MULTILINK
) == 0) {
1638 /* not doing multilink: send it down the first channel */
1640 pch
= list_entry(list
, struct channel
, clist
);
1642 spin_lock(&pch
->downl
);
1644 if (pch
->chan
->ops
->start_xmit(pch
->chan
, skb
))
1645 ppp
->xmit_pending
= NULL
;
1647 /* channel got unregistered */
1649 ppp
->xmit_pending
= NULL
;
1651 spin_unlock(&pch
->downl
);
1655 #ifdef CONFIG_PPP_MULTILINK
1656 /* Multilink: fragment the packet over as many links
1657 as can take the packet at the moment. */
1658 if (!ppp_mp_explode(ppp
, skb
))
1660 #endif /* CONFIG_PPP_MULTILINK */
1662 ppp
->xmit_pending
= NULL
;
1666 #ifdef CONFIG_PPP_MULTILINK
1667 static bool mp_protocol_compress __read_mostly
= true;
1668 module_param(mp_protocol_compress
, bool, 0644);
1669 MODULE_PARM_DESC(mp_protocol_compress
,
1670 "compress protocol id in multilink fragments");
1673 * Divide a packet to be transmitted into fragments and
1674 * send them out the individual links.
1676 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
)
1679 int i
, bits
, hdrlen
, mtu
;
1681 int navail
, nfree
, nzero
;
1685 unsigned char *p
, *q
;
1686 struct list_head
*list
;
1687 struct channel
*pch
;
1688 struct sk_buff
*frag
;
1689 struct ppp_channel
*chan
;
1691 totspeed
= 0; /*total bitrate of the bundle*/
1692 nfree
= 0; /* # channels which have no packet already queued */
1693 navail
= 0; /* total # of usable channels (not deregistered) */
1694 nzero
= 0; /* number of channels with zero speed associated*/
1695 totfree
= 0; /*total # of channels available and
1696 *having no queued packets before
1697 *starting the fragmentation*/
1699 hdrlen
= (ppp
->flags
& SC_MP_XSHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1701 list_for_each_entry(pch
, &ppp
->channels
, clist
) {
1705 pch
->speed
= pch
->chan
->speed
;
1710 if (skb_queue_empty(&pch
->file
.xq
) ||
1712 if (pch
->speed
== 0)
1715 totspeed
+= pch
->speed
;
1721 if (!pch
->had_frag
&& i
< ppp
->nxchan
)
1727 * Don't start sending this packet unless at least half of
1728 * the channels are free. This gives much better TCP
1729 * performance if we have a lot of channels.
1731 if (nfree
== 0 || nfree
< navail
/ 2)
1732 return 0; /* can't take now, leave it in xmit_pending */
1734 /* Do protocol field compression */
1737 if (*p
== 0 && mp_protocol_compress
) {
1743 nbigger
= len
% nfree
;
1745 /* skip to the channel after the one we last used
1746 and start at that one */
1747 list
= &ppp
->channels
;
1748 for (i
= 0; i
< ppp
->nxchan
; ++i
) {
1750 if (list
== &ppp
->channels
) {
1756 /* create a fragment for each channel */
1760 if (list
== &ppp
->channels
) {
1764 pch
= list_entry(list
, struct channel
, clist
);
1770 * Skip this channel if it has a fragment pending already and
1771 * we haven't given a fragment to all of the free channels.
1773 if (pch
->avail
== 1) {
1780 /* check the channel's mtu and whether it is still attached. */
1781 spin_lock(&pch
->downl
);
1782 if (pch
->chan
== NULL
) {
1783 /* can't use this channel, it's being deregistered */
1784 if (pch
->speed
== 0)
1787 totspeed
-= pch
->speed
;
1789 spin_unlock(&pch
->downl
);
1800 *if the channel speed is not set divide
1801 *the packet evenly among the free channels;
1802 *otherwise divide it according to the speed
1803 *of the channel we are going to transmit on
1807 if (pch
->speed
== 0) {
1814 flen
= (((totfree
- nzero
)*(totlen
+ hdrlen
*totfree
)) /
1815 ((totspeed
*totfree
)/pch
->speed
)) - hdrlen
;
1817 flen
+= ((totfree
- nzero
)*pch
->speed
)/totspeed
;
1818 nbigger
-= ((totfree
- nzero
)*pch
->speed
)/
1826 *check if we are on the last channel or
1827 *we exceded the length of the data to
1830 if ((nfree
<= 0) || (flen
> len
))
1833 *it is not worth to tx on slow channels:
1834 *in that case from the resulting flen according to the
1835 *above formula will be equal or less than zero.
1836 *Skip the channel in this case
1840 spin_unlock(&pch
->downl
);
1845 * hdrlen includes the 2-byte PPP protocol field, but the
1846 * MTU counts only the payload excluding the protocol field.
1847 * (RFC1661 Section 2)
1849 mtu
= pch
->chan
->mtu
- (hdrlen
- 2);
1856 frag
= alloc_skb(flen
+ hdrlen
+ (flen
== 0), GFP_ATOMIC
);
1859 q
= skb_put(frag
, flen
+ hdrlen
);
1861 /* make the MP header */
1862 put_unaligned_be16(PPP_MP
, q
);
1863 if (ppp
->flags
& SC_MP_XSHORTSEQ
) {
1864 q
[2] = bits
+ ((ppp
->nxseq
>> 8) & 0xf);
1868 q
[3] = ppp
->nxseq
>> 16;
1869 q
[4] = ppp
->nxseq
>> 8;
1873 memcpy(q
+ hdrlen
, p
, flen
);
1875 /* try to send it down the channel */
1877 if (!skb_queue_empty(&pch
->file
.xq
) ||
1878 !chan
->ops
->start_xmit(chan
, frag
))
1879 skb_queue_tail(&pch
->file
.xq
, frag
);
1885 spin_unlock(&pch
->downl
);
1892 spin_unlock(&pch
->downl
);
1894 netdev_err(ppp
->dev
, "PPP: no memory (fragment)\n");
1895 ++ppp
->dev
->stats
.tx_errors
;
1897 return 1; /* abandon the frame */
1899 #endif /* CONFIG_PPP_MULTILINK */
1901 /* Try to send data out on a channel */
1902 static void __ppp_channel_push(struct channel
*pch
)
1904 struct sk_buff
*skb
;
1907 spin_lock(&pch
->downl
);
1909 while (!skb_queue_empty(&pch
->file
.xq
)) {
1910 skb
= skb_dequeue(&pch
->file
.xq
);
1911 if (!pch
->chan
->ops
->start_xmit(pch
->chan
, skb
)) {
1912 /* put the packet back and try again later */
1913 skb_queue_head(&pch
->file
.xq
, skb
);
1918 /* channel got deregistered */
1919 skb_queue_purge(&pch
->file
.xq
);
1921 spin_unlock(&pch
->downl
);
1922 /* see if there is anything from the attached unit to be sent */
1923 if (skb_queue_empty(&pch
->file
.xq
)) {
1926 __ppp_xmit_process(ppp
, NULL
);
1930 static void ppp_channel_push(struct channel
*pch
)
1932 read_lock_bh(&pch
->upl
);
1934 (*this_cpu_ptr(pch
->ppp
->xmit_recursion
))++;
1935 __ppp_channel_push(pch
);
1936 (*this_cpu_ptr(pch
->ppp
->xmit_recursion
))--;
1938 __ppp_channel_push(pch
);
1940 read_unlock_bh(&pch
->upl
);
1944 * Receive-side routines.
1947 struct ppp_mp_skb_parm
{
1951 #define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
1954 ppp_do_recv(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1958 ppp_receive_frame(ppp
, skb
, pch
);
1961 ppp_recv_unlock(ppp
);
1965 * __ppp_decompress_proto - Decompress protocol field, slim version.
1966 * @skb: Socket buffer where protocol field should be decompressed. It must have
1967 * at least 1 byte of head room and 1 byte of linear data. First byte of
1968 * data must be a protocol field byte.
1970 * Decompress protocol field in PPP header if it's compressed, e.g. when
1971 * Protocol-Field-Compression (PFC) was negotiated. No checks w.r.t. skb data
1972 * length are done in this function.
1974 static void __ppp_decompress_proto(struct sk_buff
*skb
)
1976 if (skb
->data
[0] & 0x01)
1977 *(u8
*)skb_push(skb
, 1) = 0x00;
1981 * ppp_decompress_proto - Check skb data room and decompress protocol field.
1982 * @skb: Socket buffer where protocol field should be decompressed. First byte
1983 * of data must be a protocol field byte.
1985 * Decompress protocol field in PPP header if it's compressed, e.g. when
1986 * Protocol-Field-Compression (PFC) was negotiated. This function also makes
1987 * sure that skb data room is sufficient for Protocol field, before and after
1990 * Return: true - decompressed successfully, false - not enough room in skb.
1992 static bool ppp_decompress_proto(struct sk_buff
*skb
)
1994 /* At least one byte should be present (if protocol is compressed) */
1995 if (!pskb_may_pull(skb
, 1))
1998 __ppp_decompress_proto(skb
);
2000 /* Protocol field should occupy 2 bytes when not compressed */
2001 return pskb_may_pull(skb
, 2);
2005 ppp_input(struct ppp_channel
*chan
, struct sk_buff
*skb
)
2007 struct channel
*pch
= chan
->ppp
;
2015 read_lock_bh(&pch
->upl
);
2016 if (!ppp_decompress_proto(skb
)) {
2019 ++pch
->ppp
->dev
->stats
.rx_length_errors
;
2020 ppp_receive_error(pch
->ppp
);
2025 proto
= PPP_PROTO(skb
);
2026 if (!pch
->ppp
|| proto
>= 0xc000 || proto
== PPP_CCPFRAG
) {
2027 /* put it on the channel queue */
2028 skb_queue_tail(&pch
->file
.rq
, skb
);
2029 /* drop old frames if queue too long */
2030 while (pch
->file
.rq
.qlen
> PPP_MAX_RQLEN
&&
2031 (skb
= skb_dequeue(&pch
->file
.rq
)))
2033 wake_up_interruptible(&pch
->file
.rwait
);
2035 ppp_do_recv(pch
->ppp
, skb
, pch
);
2039 read_unlock_bh(&pch
->upl
);
2042 /* Put a 0-length skb in the receive queue as an error indication */
2044 ppp_input_error(struct ppp_channel
*chan
, int code
)
2046 struct channel
*pch
= chan
->ppp
;
2047 struct sk_buff
*skb
;
2052 read_lock_bh(&pch
->upl
);
2054 skb
= alloc_skb(0, GFP_ATOMIC
);
2056 skb
->len
= 0; /* probably unnecessary */
2058 ppp_do_recv(pch
->ppp
, skb
, pch
);
2061 read_unlock_bh(&pch
->upl
);
2065 * We come in here to process a received frame.
2066 * The receive side of the ppp unit is locked.
2069 ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
2071 /* note: a 0-length skb is used as an error indication */
2073 skb_checksum_complete_unset(skb
);
2074 #ifdef CONFIG_PPP_MULTILINK
2075 /* XXX do channel-level decompression here */
2076 if (PPP_PROTO(skb
) == PPP_MP
)
2077 ppp_receive_mp_frame(ppp
, skb
, pch
);
2079 #endif /* CONFIG_PPP_MULTILINK */
2080 ppp_receive_nonmp_frame(ppp
, skb
);
2083 ppp_receive_error(ppp
);
2088 ppp_receive_error(struct ppp
*ppp
)
2090 ++ppp
->dev
->stats
.rx_errors
;
2096 ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
2099 int proto
, len
, npi
;
2102 * Decompress the frame, if compressed.
2103 * Note that some decompressors need to see uncompressed frames
2104 * that come in as well as compressed frames.
2106 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
) &&
2107 (ppp
->rstate
& (SC_DC_FERROR
| SC_DC_ERROR
)) == 0)
2108 skb
= ppp_decompress_frame(ppp
, skb
);
2110 if (ppp
->flags
& SC_MUST_COMP
&& ppp
->rstate
& SC_DC_FERROR
)
2113 /* At this point the "Protocol" field MUST be decompressed, either in
2114 * ppp_input(), ppp_decompress_frame() or in ppp_receive_mp_frame().
2116 proto
= PPP_PROTO(skb
);
2119 /* decompress VJ compressed packets */
2120 if (!ppp
->vj
|| (ppp
->flags
& SC_REJ_COMP_TCP
))
2123 if (skb_tailroom(skb
) < 124 || skb_cloned(skb
)) {
2124 /* copy to a new sk_buff with more tailroom */
2125 ns
= dev_alloc_skb(skb
->len
+ 128);
2127 netdev_err(ppp
->dev
, "PPP: no memory "
2132 skb_copy_bits(skb
, 0, skb_put(ns
, skb
->len
), skb
->len
);
2137 skb
->ip_summed
= CHECKSUM_NONE
;
2139 len
= slhc_uncompress(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2);
2141 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2142 "PPP: VJ decompression error\n");
2147 skb_put(skb
, len
- skb
->len
);
2148 else if (len
< skb
->len
)
2153 case PPP_VJC_UNCOMP
:
2154 if (!ppp
->vj
|| (ppp
->flags
& SC_REJ_COMP_TCP
))
2157 /* Until we fix the decompressor need to make sure
2158 * data portion is linear.
2160 if (!pskb_may_pull(skb
, skb
->len
))
2163 if (slhc_remember(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2) <= 0) {
2164 netdev_err(ppp
->dev
, "PPP: VJ uncompressed error\n");
2171 ppp_ccp_peek(ppp
, skb
, 1);
2175 ++ppp
->stats64
.rx_packets
;
2176 ppp
->stats64
.rx_bytes
+= skb
->len
- 2;
2178 npi
= proto_to_npindex(proto
);
2180 /* control or unknown frame - pass it to pppd */
2181 skb_queue_tail(&ppp
->file
.rq
, skb
);
2182 /* limit queue length by dropping old frames */
2183 while (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
&&
2184 (skb
= skb_dequeue(&ppp
->file
.rq
)))
2186 /* wake up any process polling or blocking on read */
2187 wake_up_interruptible(&ppp
->file
.rwait
);
2190 /* network protocol frame - give it to the kernel */
2192 #ifdef CONFIG_PPP_FILTER
2193 /* check if the packet passes the pass and active filters */
2194 /* the filter instructions are constructed assuming
2195 a four-byte PPP header on each packet */
2196 if (ppp
->pass_filter
|| ppp
->active_filter
) {
2197 if (skb_unclone(skb
, GFP_ATOMIC
))
2200 *(u8
*)skb_push(skb
, 2) = 0;
2201 if (ppp
->pass_filter
&&
2202 BPF_PROG_RUN(ppp
->pass_filter
, skb
) == 0) {
2204 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2205 "PPP: inbound frame "
2210 if (!(ppp
->active_filter
&&
2211 BPF_PROG_RUN(ppp
->active_filter
, skb
) == 0))
2212 ppp
->last_recv
= jiffies
;
2215 #endif /* CONFIG_PPP_FILTER */
2216 ppp
->last_recv
= jiffies
;
2218 if ((ppp
->dev
->flags
& IFF_UP
) == 0 ||
2219 ppp
->npmode
[npi
] != NPMODE_PASS
) {
2222 /* chop off protocol */
2223 skb_pull_rcsum(skb
, 2);
2224 skb
->dev
= ppp
->dev
;
2225 skb
->protocol
= htons(npindex_to_ethertype
[npi
]);
2226 skb_reset_mac_header(skb
);
2227 skb_scrub_packet(skb
, !net_eq(ppp
->ppp_net
,
2228 dev_net(ppp
->dev
)));
2236 ppp_receive_error(ppp
);
2239 static struct sk_buff
*
2240 ppp_decompress_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
2242 int proto
= PPP_PROTO(skb
);
2246 /* Until we fix all the decompressor's need to make sure
2247 * data portion is linear.
2249 if (!pskb_may_pull(skb
, skb
->len
))
2252 if (proto
== PPP_COMP
) {
2255 switch(ppp
->rcomp
->compress_proto
) {
2257 obuff_size
= ppp
->mru
+ PPP_HDRLEN
+ 1;
2260 obuff_size
= ppp
->mru
+ PPP_HDRLEN
;
2264 ns
= dev_alloc_skb(obuff_size
);
2266 netdev_err(ppp
->dev
, "ppp_decompress_frame: "
2270 /* the decompressor still expects the A/C bytes in the hdr */
2271 len
= ppp
->rcomp
->decompress(ppp
->rc_state
, skb
->data
- 2,
2272 skb
->len
+ 2, ns
->data
, obuff_size
);
2274 /* Pass the compressed frame to pppd as an
2275 error indication. */
2276 if (len
== DECOMP_FATALERROR
)
2277 ppp
->rstate
|= SC_DC_FERROR
;
2285 skb_pull(skb
, 2); /* pull off the A/C bytes */
2287 /* Don't call __ppp_decompress_proto() here, but instead rely on
2288 * corresponding algo (mppe/bsd/deflate) to decompress it.
2291 /* Uncompressed frame - pass to decompressor so it
2292 can update its dictionary if necessary. */
2293 if (ppp
->rcomp
->incomp
)
2294 ppp
->rcomp
->incomp(ppp
->rc_state
, skb
->data
- 2,
2301 ppp
->rstate
|= SC_DC_ERROR
;
2302 ppp_receive_error(ppp
);
2306 #ifdef CONFIG_PPP_MULTILINK
2308 * Receive a multilink frame.
2309 * We put it on the reconstruction queue and then pull off
2310 * as many completed frames as we can.
2313 ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
2317 int mphdrlen
= (ppp
->flags
& SC_MP_SHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
2319 if (!pskb_may_pull(skb
, mphdrlen
+ 1) || ppp
->mrru
== 0)
2320 goto err
; /* no good, throw it away */
2322 /* Decode sequence number and begin/end bits */
2323 if (ppp
->flags
& SC_MP_SHORTSEQ
) {
2324 seq
= ((skb
->data
[2] & 0x0f) << 8) | skb
->data
[3];
2327 seq
= (skb
->data
[3] << 16) | (skb
->data
[4] << 8)| skb
->data
[5];
2330 PPP_MP_CB(skb
)->BEbits
= skb
->data
[2];
2331 skb_pull(skb
, mphdrlen
); /* pull off PPP and MP headers */
2334 * Do protocol ID decompression on the first fragment of each packet.
2335 * We have to do that here, because ppp_receive_nonmp_frame() expects
2336 * decompressed protocol field.
2338 if (PPP_MP_CB(skb
)->BEbits
& B
)
2339 __ppp_decompress_proto(skb
);
2342 * Expand sequence number to 32 bits, making it as close
2343 * as possible to ppp->minseq.
2345 seq
|= ppp
->minseq
& ~mask
;
2346 if ((int)(ppp
->minseq
- seq
) > (int)(mask
>> 1))
2348 else if ((int)(seq
- ppp
->minseq
) > (int)(mask
>> 1))
2349 seq
-= mask
+ 1; /* should never happen */
2350 PPP_MP_CB(skb
)->sequence
= seq
;
2354 * If this packet comes before the next one we were expecting,
2357 if (seq_before(seq
, ppp
->nextseq
)) {
2359 ++ppp
->dev
->stats
.rx_dropped
;
2360 ppp_receive_error(ppp
);
2365 * Reevaluate minseq, the minimum over all channels of the
2366 * last sequence number received on each channel. Because of
2367 * the increasing sequence number rule, we know that any fragment
2368 * before `minseq' which hasn't arrived is never going to arrive.
2369 * The list of channels can't change because we have the receive
2370 * side of the ppp unit locked.
2372 list_for_each_entry(ch
, &ppp
->channels
, clist
) {
2373 if (seq_before(ch
->lastseq
, seq
))
2376 if (seq_before(ppp
->minseq
, seq
))
2379 /* Put the fragment on the reconstruction queue */
2380 ppp_mp_insert(ppp
, skb
);
2382 /* If the queue is getting long, don't wait any longer for packets
2383 before the start of the queue. */
2384 if (skb_queue_len(&ppp
->mrq
) >= PPP_MP_MAX_QLEN
) {
2385 struct sk_buff
*mskb
= skb_peek(&ppp
->mrq
);
2386 if (seq_before(ppp
->minseq
, PPP_MP_CB(mskb
)->sequence
))
2387 ppp
->minseq
= PPP_MP_CB(mskb
)->sequence
;
2390 /* Pull completed packets off the queue and receive them. */
2391 while ((skb
= ppp_mp_reconstruct(ppp
))) {
2392 if (pskb_may_pull(skb
, 2))
2393 ppp_receive_nonmp_frame(ppp
, skb
);
2395 ++ppp
->dev
->stats
.rx_length_errors
;
2397 ppp_receive_error(ppp
);
2405 ppp_receive_error(ppp
);
2409 * Insert a fragment on the MP reconstruction queue.
2410 * The queue is ordered by increasing sequence number.
2413 ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
)
2416 struct sk_buff_head
*list
= &ppp
->mrq
;
2417 u32 seq
= PPP_MP_CB(skb
)->sequence
;
2419 /* N.B. we don't need to lock the list lock because we have the
2420 ppp unit receive-side lock. */
2421 skb_queue_walk(list
, p
) {
2422 if (seq_before(seq
, PPP_MP_CB(p
)->sequence
))
2425 __skb_queue_before(list
, p
, skb
);
2429 * Reconstruct a packet from the MP fragment queue.
2430 * We go through increasing sequence numbers until we find a
2431 * complete packet, or we get to the sequence number for a fragment
2432 * which hasn't arrived but might still do so.
2434 static struct sk_buff
*
2435 ppp_mp_reconstruct(struct ppp
*ppp
)
2437 u32 seq
= ppp
->nextseq
;
2438 u32 minseq
= ppp
->minseq
;
2439 struct sk_buff_head
*list
= &ppp
->mrq
;
2440 struct sk_buff
*p
, *tmp
;
2441 struct sk_buff
*head
, *tail
;
2442 struct sk_buff
*skb
= NULL
;
2443 int lost
= 0, len
= 0;
2445 if (ppp
->mrru
== 0) /* do nothing until mrru is set */
2447 head
= __skb_peek(list
);
2449 skb_queue_walk_safe(list
, p
, tmp
) {
2451 if (seq_before(PPP_MP_CB(p
)->sequence
, seq
)) {
2452 /* this can't happen, anyway ignore the skb */
2453 netdev_err(ppp
->dev
, "ppp_mp_reconstruct bad "
2455 PPP_MP_CB(p
)->sequence
, seq
);
2456 __skb_unlink(p
, list
);
2460 if (PPP_MP_CB(p
)->sequence
!= seq
) {
2462 /* Fragment `seq' is missing. If it is after
2463 minseq, it might arrive later, so stop here. */
2464 if (seq_after(seq
, minseq
))
2466 /* Fragment `seq' is lost, keep going. */
2469 seq
= seq_before(minseq
, PPP_MP_CB(p
)->sequence
)?
2470 minseq
+ 1: PPP_MP_CB(p
)->sequence
;
2473 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2474 "lost frag %u..%u\n",
2481 * At this point we know that all the fragments from
2482 * ppp->nextseq to seq are either present or lost.
2483 * Also, there are no complete packets in the queue
2484 * that have no missing fragments and end before this
2488 /* B bit set indicates this fragment starts a packet */
2489 if (PPP_MP_CB(p
)->BEbits
& B
) {
2497 /* Got a complete packet yet? */
2498 if (lost
== 0 && (PPP_MP_CB(p
)->BEbits
& E
) &&
2499 (PPP_MP_CB(head
)->BEbits
& B
)) {
2500 if (len
> ppp
->mrru
+ 2) {
2501 ++ppp
->dev
->stats
.rx_length_errors
;
2502 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2503 "PPP: reconstructed packet"
2504 " is too long (%d)\n", len
);
2509 ppp
->nextseq
= seq
+ 1;
2513 * If this is the ending fragment of a packet,
2514 * and we haven't found a complete valid packet yet,
2515 * we can discard up to and including this fragment.
2517 if (PPP_MP_CB(p
)->BEbits
& E
) {
2518 struct sk_buff
*tmp2
;
2520 skb_queue_reverse_walk_from_safe(list
, p
, tmp2
) {
2522 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2523 "discarding frag %u\n",
2524 PPP_MP_CB(p
)->sequence
);
2525 __skb_unlink(p
, list
);
2528 head
= skb_peek(list
);
2535 /* If we have a complete packet, copy it all into one skb. */
2537 /* If we have discarded any fragments,
2538 signal a receive error. */
2539 if (PPP_MP_CB(head
)->sequence
!= ppp
->nextseq
) {
2540 skb_queue_walk_safe(list
, p
, tmp
) {
2544 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2545 "discarding frag %u\n",
2546 PPP_MP_CB(p
)->sequence
);
2547 __skb_unlink(p
, list
);
2552 netdev_printk(KERN_DEBUG
, ppp
->dev
,
2553 " missed pkts %u..%u\n",
2555 PPP_MP_CB(head
)->sequence
-1);
2556 ++ppp
->dev
->stats
.rx_dropped
;
2557 ppp_receive_error(ppp
);
2562 struct sk_buff
**fragpp
= &skb_shinfo(skb
)->frag_list
;
2563 p
= skb_queue_next(list
, head
);
2564 __skb_unlink(skb
, list
);
2565 skb_queue_walk_from_safe(list
, p
, tmp
) {
2566 __skb_unlink(p
, list
);
2572 skb
->data_len
+= p
->len
;
2573 skb
->truesize
+= p
->truesize
;
2579 __skb_unlink(skb
, list
);
2582 ppp
->nextseq
= PPP_MP_CB(tail
)->sequence
+ 1;
2587 #endif /* CONFIG_PPP_MULTILINK */
2590 * Channel interface.
2593 /* Create a new, unattached ppp channel. */
2594 int ppp_register_channel(struct ppp_channel
*chan
)
2596 return ppp_register_net_channel(current
->nsproxy
->net_ns
, chan
);
2599 /* Create a new, unattached ppp channel for specified net. */
2600 int ppp_register_net_channel(struct net
*net
, struct ppp_channel
*chan
)
2602 struct channel
*pch
;
2605 pch
= kzalloc(sizeof(struct channel
), GFP_KERNEL
);
2609 pn
= ppp_pernet(net
);
2613 pch
->chan_net
= get_net(net
);
2615 init_ppp_file(&pch
->file
, CHANNEL
);
2616 pch
->file
.hdrlen
= chan
->hdrlen
;
2617 #ifdef CONFIG_PPP_MULTILINK
2619 #endif /* CONFIG_PPP_MULTILINK */
2620 init_rwsem(&pch
->chan_sem
);
2621 spin_lock_init(&pch
->downl
);
2622 rwlock_init(&pch
->upl
);
2624 spin_lock_bh(&pn
->all_channels_lock
);
2625 pch
->file
.index
= ++pn
->last_channel_index
;
2626 list_add(&pch
->list
, &pn
->new_channels
);
2627 atomic_inc(&channel_count
);
2628 spin_unlock_bh(&pn
->all_channels_lock
);
2634 * Return the index of a channel.
2636 int ppp_channel_index(struct ppp_channel
*chan
)
2638 struct channel
*pch
= chan
->ppp
;
2641 return pch
->file
.index
;
2646 * Return the PPP unit number to which a channel is connected.
2648 int ppp_unit_number(struct ppp_channel
*chan
)
2650 struct channel
*pch
= chan
->ppp
;
2654 read_lock_bh(&pch
->upl
);
2656 unit
= pch
->ppp
->file
.index
;
2657 read_unlock_bh(&pch
->upl
);
2663 * Return the PPP device interface name of a channel.
2665 char *ppp_dev_name(struct ppp_channel
*chan
)
2667 struct channel
*pch
= chan
->ppp
;
2671 read_lock_bh(&pch
->upl
);
2672 if (pch
->ppp
&& pch
->ppp
->dev
)
2673 name
= pch
->ppp
->dev
->name
;
2674 read_unlock_bh(&pch
->upl
);
2681 * Disconnect a channel from the generic layer.
2682 * This must be called in process context.
2685 ppp_unregister_channel(struct ppp_channel
*chan
)
2687 struct channel
*pch
= chan
->ppp
;
2691 return; /* should never happen */
2696 * This ensures that we have returned from any calls into the
2697 * the channel's start_xmit or ioctl routine before we proceed.
2699 down_write(&pch
->chan_sem
);
2700 spin_lock_bh(&pch
->downl
);
2702 spin_unlock_bh(&pch
->downl
);
2703 up_write(&pch
->chan_sem
);
2704 ppp_disconnect_channel(pch
);
2706 pn
= ppp_pernet(pch
->chan_net
);
2707 spin_lock_bh(&pn
->all_channels_lock
);
2708 list_del(&pch
->list
);
2709 spin_unlock_bh(&pn
->all_channels_lock
);
2712 wake_up_interruptible(&pch
->file
.rwait
);
2713 if (refcount_dec_and_test(&pch
->file
.refcnt
))
2714 ppp_destroy_channel(pch
);
2718 * Callback from a channel when it can accept more to transmit.
2719 * This should be called at BH/softirq level, not interrupt level.
2722 ppp_output_wakeup(struct ppp_channel
*chan
)
2724 struct channel
*pch
= chan
->ppp
;
2728 ppp_channel_push(pch
);
2732 * Compression control.
2735 /* Process the PPPIOCSCOMPRESS ioctl. */
2737 ppp_set_compress(struct ppp
*ppp
, unsigned long arg
)
2740 struct compressor
*cp
, *ocomp
;
2741 struct ppp_option_data data
;
2742 void *state
, *ostate
;
2743 unsigned char ccp_option
[CCP_MAX_OPTION_LENGTH
];
2746 if (copy_from_user(&data
, (void __user
*) arg
, sizeof(data
)))
2748 if (data
.length
> CCP_MAX_OPTION_LENGTH
)
2750 if (copy_from_user(ccp_option
, (void __user
*) data
.ptr
, data
.length
))
2754 if (data
.length
< 2 || ccp_option
[1] < 2 || ccp_option
[1] > data
.length
)
2757 cp
= try_then_request_module(
2758 find_compressor(ccp_option
[0]),
2759 "ppp-compress-%d", ccp_option
[0]);
2764 if (data
.transmit
) {
2765 state
= cp
->comp_alloc(ccp_option
, data
.length
);
2768 ppp
->xstate
&= ~SC_COMP_RUN
;
2770 ostate
= ppp
->xc_state
;
2772 ppp
->xc_state
= state
;
2773 ppp_xmit_unlock(ppp
);
2775 ocomp
->comp_free(ostate
);
2776 module_put(ocomp
->owner
);
2780 module_put(cp
->owner
);
2783 state
= cp
->decomp_alloc(ccp_option
, data
.length
);
2786 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2788 ostate
= ppp
->rc_state
;
2790 ppp
->rc_state
= state
;
2791 ppp_recv_unlock(ppp
);
2793 ocomp
->decomp_free(ostate
);
2794 module_put(ocomp
->owner
);
2798 module_put(cp
->owner
);
2806 * Look at a CCP packet and update our state accordingly.
2807 * We assume the caller has the xmit or recv path locked.
2810 ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
)
2815 if (!pskb_may_pull(skb
, CCP_HDRLEN
+ 2))
2816 return; /* no header */
2819 switch (CCP_CODE(dp
)) {
2822 /* A ConfReq starts negotiation of compression
2823 * in one direction of transmission,
2824 * and hence brings it down...but which way?
2827 * A ConfReq indicates what the sender would like to receive
2830 /* He is proposing what I should send */
2831 ppp
->xstate
&= ~SC_COMP_RUN
;
2833 /* I am proposing to what he should send */
2834 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2841 * CCP is going down, both directions of transmission
2843 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2844 ppp
->xstate
&= ~SC_COMP_RUN
;
2848 if ((ppp
->flags
& (SC_CCP_OPEN
| SC_CCP_UP
)) != SC_CCP_OPEN
)
2850 len
= CCP_LENGTH(dp
);
2851 if (!pskb_may_pull(skb
, len
+ 2))
2852 return; /* too short */
2855 if (len
< CCP_OPT_MINLEN
|| len
< CCP_OPT_LENGTH(dp
))
2858 /* we will start receiving compressed packets */
2861 if (ppp
->rcomp
->decomp_init(ppp
->rc_state
, dp
, len
,
2862 ppp
->file
.index
, 0, ppp
->mru
, ppp
->debug
)) {
2863 ppp
->rstate
|= SC_DECOMP_RUN
;
2864 ppp
->rstate
&= ~(SC_DC_ERROR
| SC_DC_FERROR
);
2867 /* we will soon start sending compressed packets */
2870 if (ppp
->xcomp
->comp_init(ppp
->xc_state
, dp
, len
,
2871 ppp
->file
.index
, 0, ppp
->debug
))
2872 ppp
->xstate
|= SC_COMP_RUN
;
2877 /* reset the [de]compressor */
2878 if ((ppp
->flags
& SC_CCP_UP
) == 0)
2881 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
)) {
2882 ppp
->rcomp
->decomp_reset(ppp
->rc_state
);
2883 ppp
->rstate
&= ~SC_DC_ERROR
;
2886 if (ppp
->xc_state
&& (ppp
->xstate
& SC_COMP_RUN
))
2887 ppp
->xcomp
->comp_reset(ppp
->xc_state
);
2893 /* Free up compression resources. */
2895 ppp_ccp_closed(struct ppp
*ppp
)
2897 void *xstate
, *rstate
;
2898 struct compressor
*xcomp
, *rcomp
;
2901 ppp
->flags
&= ~(SC_CCP_OPEN
| SC_CCP_UP
);
2904 xstate
= ppp
->xc_state
;
2905 ppp
->xc_state
= NULL
;
2908 rstate
= ppp
->rc_state
;
2909 ppp
->rc_state
= NULL
;
2913 xcomp
->comp_free(xstate
);
2914 module_put(xcomp
->owner
);
2917 rcomp
->decomp_free(rstate
);
2918 module_put(rcomp
->owner
);
2922 /* List of compressors. */
2923 static LIST_HEAD(compressor_list
);
2924 static DEFINE_SPINLOCK(compressor_list_lock
);
2926 struct compressor_entry
{
2927 struct list_head list
;
2928 struct compressor
*comp
;
2931 static struct compressor_entry
*
2932 find_comp_entry(int proto
)
2934 struct compressor_entry
*ce
;
2936 list_for_each_entry(ce
, &compressor_list
, list
) {
2937 if (ce
->comp
->compress_proto
== proto
)
2943 /* Register a compressor */
2945 ppp_register_compressor(struct compressor
*cp
)
2947 struct compressor_entry
*ce
;
2949 spin_lock(&compressor_list_lock
);
2951 if (find_comp_entry(cp
->compress_proto
))
2954 ce
= kmalloc(sizeof(struct compressor_entry
), GFP_ATOMIC
);
2959 list_add(&ce
->list
, &compressor_list
);
2961 spin_unlock(&compressor_list_lock
);
2965 /* Unregister a compressor */
2967 ppp_unregister_compressor(struct compressor
*cp
)
2969 struct compressor_entry
*ce
;
2971 spin_lock(&compressor_list_lock
);
2972 ce
= find_comp_entry(cp
->compress_proto
);
2973 if (ce
&& ce
->comp
== cp
) {
2974 list_del(&ce
->list
);
2977 spin_unlock(&compressor_list_lock
);
2980 /* Find a compressor. */
2981 static struct compressor
*
2982 find_compressor(int type
)
2984 struct compressor_entry
*ce
;
2985 struct compressor
*cp
= NULL
;
2987 spin_lock(&compressor_list_lock
);
2988 ce
= find_comp_entry(type
);
2991 if (!try_module_get(cp
->owner
))
2994 spin_unlock(&compressor_list_lock
);
2999 * Miscelleneous stuff.
3003 ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
)
3005 struct slcompress
*vj
= ppp
->vj
;
3007 memset(st
, 0, sizeof(*st
));
3008 st
->p
.ppp_ipackets
= ppp
->stats64
.rx_packets
;
3009 st
->p
.ppp_ierrors
= ppp
->dev
->stats
.rx_errors
;
3010 st
->p
.ppp_ibytes
= ppp
->stats64
.rx_bytes
;
3011 st
->p
.ppp_opackets
= ppp
->stats64
.tx_packets
;
3012 st
->p
.ppp_oerrors
= ppp
->dev
->stats
.tx_errors
;
3013 st
->p
.ppp_obytes
= ppp
->stats64
.tx_bytes
;
3016 st
->vj
.vjs_packets
= vj
->sls_o_compressed
+ vj
->sls_o_uncompressed
;
3017 st
->vj
.vjs_compressed
= vj
->sls_o_compressed
;
3018 st
->vj
.vjs_searches
= vj
->sls_o_searches
;
3019 st
->vj
.vjs_misses
= vj
->sls_o_misses
;
3020 st
->vj
.vjs_errorin
= vj
->sls_i_error
;
3021 st
->vj
.vjs_tossed
= vj
->sls_i_tossed
;
3022 st
->vj
.vjs_uncompressedin
= vj
->sls_i_uncompressed
;
3023 st
->vj
.vjs_compressedin
= vj
->sls_i_compressed
;
3027 * Stuff for handling the lists of ppp units and channels
3028 * and for initialization.
3032 * Create a new ppp interface unit. Fails if it can't allocate memory
3033 * or if there is already a unit with the requested number.
3034 * unit == -1 means allocate a new number.
3036 static int ppp_create_interface(struct net
*net
, struct file
*file
, int *unit
)
3038 struct ppp_config conf
= {
3041 .ifname_is_set
= false,
3043 struct net_device
*dev
;
3047 dev
= alloc_netdev(sizeof(struct ppp
), "", NET_NAME_ENUM
, ppp_setup
);
3052 dev_net_set(dev
, net
);
3053 dev
->rtnl_link_ops
= &ppp_link_ops
;
3057 err
= ppp_dev_configure(net
, dev
, &conf
);
3060 ppp
= netdev_priv(dev
);
3061 *unit
= ppp
->file
.index
;
3075 * Initialize a ppp_file structure.
3078 init_ppp_file(struct ppp_file
*pf
, int kind
)
3081 skb_queue_head_init(&pf
->xq
);
3082 skb_queue_head_init(&pf
->rq
);
3083 refcount_set(&pf
->refcnt
, 1);
3084 init_waitqueue_head(&pf
->rwait
);
3088 * Free the memory used by a ppp unit. This is only called once
3089 * there are no channels connected to the unit and no file structs
3090 * that reference the unit.
3092 static void ppp_destroy_interface(struct ppp
*ppp
)
3094 atomic_dec(&ppp_unit_count
);
3096 if (!ppp
->file
.dead
|| ppp
->n_channels
) {
3097 /* "can't happen" */
3098 netdev_err(ppp
->dev
, "ppp: destroying ppp struct %p "
3099 "but dead=%d n_channels=%d !\n",
3100 ppp
, ppp
->file
.dead
, ppp
->n_channels
);
3104 ppp_ccp_closed(ppp
);
3109 skb_queue_purge(&ppp
->file
.xq
);
3110 skb_queue_purge(&ppp
->file
.rq
);
3111 #ifdef CONFIG_PPP_MULTILINK
3112 skb_queue_purge(&ppp
->mrq
);
3113 #endif /* CONFIG_PPP_MULTILINK */
3114 #ifdef CONFIG_PPP_FILTER
3115 if (ppp
->pass_filter
) {
3116 bpf_prog_destroy(ppp
->pass_filter
);
3117 ppp
->pass_filter
= NULL
;
3120 if (ppp
->active_filter
) {
3121 bpf_prog_destroy(ppp
->active_filter
);
3122 ppp
->active_filter
= NULL
;
3124 #endif /* CONFIG_PPP_FILTER */
3126 kfree_skb(ppp
->xmit_pending
);
3127 free_percpu(ppp
->xmit_recursion
);
3129 free_netdev(ppp
->dev
);
3133 * Locate an existing ppp unit.
3134 * The caller should have locked the all_ppp_mutex.
3137 ppp_find_unit(struct ppp_net
*pn
, int unit
)
3139 return unit_find(&pn
->units_idr
, unit
);
3143 * Locate an existing ppp channel.
3144 * The caller should have locked the all_channels_lock.
3145 * First we look in the new_channels list, then in the
3146 * all_channels list. If found in the new_channels list,
3147 * we move it to the all_channels list. This is for speed
3148 * when we have a lot of channels in use.
3150 static struct channel
*
3151 ppp_find_channel(struct ppp_net
*pn
, int unit
)
3153 struct channel
*pch
;
3155 list_for_each_entry(pch
, &pn
->new_channels
, list
) {
3156 if (pch
->file
.index
== unit
) {
3157 list_move(&pch
->list
, &pn
->all_channels
);
3162 list_for_each_entry(pch
, &pn
->all_channels
, list
) {
3163 if (pch
->file
.index
== unit
)
3171 * Connect a PPP channel to a PPP interface unit.
3174 ppp_connect_channel(struct channel
*pch
, int unit
)
3181 pn
= ppp_pernet(pch
->chan_net
);
3183 mutex_lock(&pn
->all_ppp_mutex
);
3184 ppp
= ppp_find_unit(pn
, unit
);
3187 write_lock_bh(&pch
->upl
);
3193 spin_lock_bh(&pch
->downl
);
3195 /* Don't connect unregistered channels */
3196 spin_unlock_bh(&pch
->downl
);
3201 spin_unlock_bh(&pch
->downl
);
3202 if (pch
->file
.hdrlen
> ppp
->file
.hdrlen
)
3203 ppp
->file
.hdrlen
= pch
->file
.hdrlen
;
3204 hdrlen
= pch
->file
.hdrlen
+ 2; /* for protocol bytes */
3205 if (hdrlen
> ppp
->dev
->hard_header_len
)
3206 ppp
->dev
->hard_header_len
= hdrlen
;
3207 list_add_tail(&pch
->clist
, &ppp
->channels
);
3210 refcount_inc(&ppp
->file
.refcnt
);
3215 write_unlock_bh(&pch
->upl
);
3217 mutex_unlock(&pn
->all_ppp_mutex
);
3222 * Disconnect a channel from its ppp unit.
3225 ppp_disconnect_channel(struct channel
*pch
)
3230 write_lock_bh(&pch
->upl
);
3233 write_unlock_bh(&pch
->upl
);
3235 /* remove it from the ppp unit's list */
3237 list_del(&pch
->clist
);
3238 if (--ppp
->n_channels
== 0)
3239 wake_up_interruptible(&ppp
->file
.rwait
);
3241 if (refcount_dec_and_test(&ppp
->file
.refcnt
))
3242 ppp_destroy_interface(ppp
);
3249 * Free up the resources used by a ppp channel.
3251 static void ppp_destroy_channel(struct channel
*pch
)
3253 put_net(pch
->chan_net
);
3254 pch
->chan_net
= NULL
;
3256 atomic_dec(&channel_count
);
3258 if (!pch
->file
.dead
) {
3259 /* "can't happen" */
3260 pr_err("ppp: destroying undead channel %p !\n", pch
);
3263 skb_queue_purge(&pch
->file
.xq
);
3264 skb_queue_purge(&pch
->file
.rq
);
3268 static void __exit
ppp_cleanup(void)
3270 /* should never happen */
3271 if (atomic_read(&ppp_unit_count
) || atomic_read(&channel_count
))
3272 pr_err("PPP: removing module but units remain!\n");
3273 rtnl_link_unregister(&ppp_link_ops
);
3274 unregister_chrdev(PPP_MAJOR
, "ppp");
3275 device_destroy(ppp_class
, MKDEV(PPP_MAJOR
, 0));
3276 class_destroy(ppp_class
);
3277 unregister_pernet_device(&ppp_net_ops
);
3281 * Units handling. Caller must protect concurrent access
3282 * by holding all_ppp_mutex
3285 /* associate pointer with specified number */
3286 static int unit_set(struct idr
*p
, void *ptr
, int n
)
3290 unit
= idr_alloc(p
, ptr
, n
, n
+ 1, GFP_KERNEL
);
3291 if (unit
== -ENOSPC
)
3296 /* get new free unit number and associate pointer with it */
3297 static int unit_get(struct idr
*p
, void *ptr
)
3299 return idr_alloc(p
, ptr
, 0, 0, GFP_KERNEL
);
3302 /* put unit number back to a pool */
3303 static void unit_put(struct idr
*p
, int n
)
3308 /* get pointer associated with the number */
3309 static void *unit_find(struct idr
*p
, int n
)
3311 return idr_find(p
, n
);
3314 /* Module/initialization stuff */
3316 module_init(ppp_init
);
3317 module_exit(ppp_cleanup
);
3319 EXPORT_SYMBOL(ppp_register_net_channel
);
3320 EXPORT_SYMBOL(ppp_register_channel
);
3321 EXPORT_SYMBOL(ppp_unregister_channel
);
3322 EXPORT_SYMBOL(ppp_channel_index
);
3323 EXPORT_SYMBOL(ppp_unit_number
);
3324 EXPORT_SYMBOL(ppp_dev_name
);
3325 EXPORT_SYMBOL(ppp_input
);
3326 EXPORT_SYMBOL(ppp_input_error
);
3327 EXPORT_SYMBOL(ppp_output_wakeup
);
3328 EXPORT_SYMBOL(ppp_register_compressor
);
3329 EXPORT_SYMBOL(ppp_unregister_compressor
);
3330 MODULE_LICENSE("GPL");
3331 MODULE_ALIAS_CHARDEV(PPP_MAJOR
, 0);
3332 MODULE_ALIAS_RTNL_LINK("ppp");
3333 MODULE_ALIAS("devname:ppp");