1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Generic PPP layer for Linux.
4 *
5 * Copyright 1999-2002 Paul Mackerras.
6 *
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
12 * channel.
13 *
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.
17 *
18 * ==FILEVERSION 20041108==
19 */
20
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>
38 #include <linux/ip.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>
51
52 #include <linux/nsproxy.h>
53 #include <net/net_namespace.h>
54 #include <net/netns/generic.h>
55
56 #define PPP_VERSION "2.4.2"
57
58 /*
59 * Network protocols we support.
60 */
61 #define NP_IP 0 /* Internet Protocol V4 */
62 #define NP_IPV6 1 /* Internet Protocol V6 */
63 #define NP_IPX 2 /* IPX protocol */
64 #define NP_AT 3 /* Appletalk protocol */
65 #define NP_MPLS_UC 4 /* MPLS unicast */
66 #define NP_MPLS_MC 5 /* MPLS multicast */
67 #define NUM_NP 6 /* Number of NPs. */
68
69 #define MPHDRLEN 6 /* multilink protocol header length */
70 #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
71
72 #define PPP_PROTO_LEN 2
73
74 /*
75 * An instance of /dev/ppp can be associated with either a ppp
76 * interface unit or a ppp channel. In both cases, file->private_data
77 * points to one of these.
78 */
79 struct ppp_file {
80 enum {
81 INTERFACE=1, CHANNEL
82 } kind;
83 struct sk_buff_head xq; /* pppd transmit queue */
84 struct sk_buff_head rq; /* receive queue for pppd */
85 wait_queue_head_t rwait; /* for poll on reading /dev/ppp */
86 refcount_t refcnt; /* # refs (incl /dev/ppp attached) */
87 int hdrlen; /* space to leave for headers */
88 int index; /* interface unit / channel number */
89 int dead; /* unit/channel has been shut down */
90 };
91
92 #define PF_TO_X(pf, X) container_of(pf, X, file)
93
94 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
95 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
96
97 /*
98 * Data structure to hold primary network stats for which
99 * we want to use 64 bit storage. Other network stats
100 * are stored in dev->stats of the ppp strucute.
101 */
102 struct ppp_link_stats {
103 u64 rx_packets;
104 u64 tx_packets;
105 u64 rx_bytes;
106 u64 tx_bytes;
107 };
108
109 /*
110 * Data structure describing one ppp unit.
111 * A ppp unit corresponds to a ppp network interface device
112 * and represents a multilink bundle.
113 * It can have 0 or more ppp channels connected to it.
114 */
115 struct ppp {
116 struct ppp_file file; /* stuff for read/write/poll 0 */
117 struct file *owner; /* file that owns this unit 48 */
118 struct list_head channels; /* list of attached channels 4c */
119 int n_channels; /* how many channels are attached 54 */
120 spinlock_t rlock; /* lock for receive side 58 */
121 spinlock_t wlock; /* lock for transmit side 5c */
122 int __percpu *xmit_recursion; /* xmit recursion detect */
123 int mru; /* max receive unit 60 */
124 unsigned int flags; /* control bits 64 */
125 unsigned int xstate; /* transmit state bits 68 */
126 unsigned int rstate; /* receive state bits 6c */
127 int debug; /* debug flags 70 */
128 struct slcompress *vj; /* state for VJ header compression */
129 enum NPmode npmode[NUM_NP]; /* what to do with each net proto 78 */
130 struct sk_buff *xmit_pending; /* a packet ready to go out 88 */
131 struct compressor *xcomp; /* transmit packet compressor 8c */
132 void *xc_state; /* its internal state 90 */
133 struct compressor *rcomp; /* receive decompressor 94 */
134 void *rc_state; /* its internal state 98 */
135 unsigned long last_xmit; /* jiffies when last pkt sent 9c */
136 unsigned long last_recv; /* jiffies when last pkt rcvd a0 */
137 struct net_device *dev; /* network interface device a4 */
138 int closing; /* is device closing down? a8 */
139 #ifdef CONFIG_PPP_MULTILINK
140 int nxchan; /* next channel to send something on */
141 u32 nxseq; /* next sequence number to send */
142 int mrru; /* MP: max reconst. receive unit */
143 u32 nextseq; /* MP: seq no of next packet */
144 u32 minseq; /* MP: min of most recent seqnos */
145 struct sk_buff_head mrq; /* MP: receive reconstruction queue */
146 #endif /* CONFIG_PPP_MULTILINK */
147 #ifdef CONFIG_PPP_FILTER
148 struct bpf_prog *pass_filter; /* filter for packets to pass */
149 struct bpf_prog *active_filter; /* filter for pkts to reset idle */
150 #endif /* CONFIG_PPP_FILTER */
151 struct net *ppp_net; /* the net we belong to */
152 struct ppp_link_stats stats64; /* 64 bit network stats */
153 };
154
155 /*
156 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
157 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
158 * SC_MUST_COMP
159 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
160 * Bits in xstate: SC_COMP_RUN
161 */
162 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
163 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
164 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
165
166 /*
167 * Private data structure for each channel.
168 * This includes the data structure used for multilink.
169 */
170 struct channel {
171 struct ppp_file file; /* stuff for read/write/poll */
172 struct list_head list; /* link in all/new_channels list */
173 struct ppp_channel *chan; /* public channel data structure */
174 struct rw_semaphore chan_sem; /* protects `chan' during chan ioctl */
175 spinlock_t downl; /* protects `chan', file.xq dequeue */
176 struct ppp *ppp; /* ppp unit we're connected to */
177 struct net *chan_net; /* the net channel belongs to */
178 struct list_head clist; /* link in list of channels per unit */
179 rwlock_t upl; /* protects `ppp' and 'bridge' */
180 struct channel __rcu *bridge; /* "bridged" ppp channel */
181 #ifdef CONFIG_PPP_MULTILINK
182 u8 avail; /* flag used in multilink stuff */
183 u8 had_frag; /* >= 1 fragments have been sent */
184 u32 lastseq; /* MP: last sequence # received */
185 int speed; /* speed of the corresponding ppp channel*/
186 #endif /* CONFIG_PPP_MULTILINK */
187 };
188
189 struct ppp_config {
190 struct file *file;
191 s32 unit;
192 bool ifname_is_set;
193 };
194
195 /*
196 * SMP locking issues:
197 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
198 * list and the ppp.n_channels field, you need to take both locks
199 * before you modify them.
200 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
201 * channel.downl.
202 */
203
204 static DEFINE_MUTEX(ppp_mutex);
205 static atomic_t ppp_unit_count = ATOMIC_INIT(0);
206 static atomic_t channel_count = ATOMIC_INIT(0);
207
208 /* per-net private data for this module */
209 static unsigned int ppp_net_id __read_mostly;
210 struct ppp_net {
211 /* units to ppp mapping */
212 struct idr units_idr;
213
214 /*
215 * all_ppp_mutex protects the units_idr mapping.
216 * It also ensures that finding a ppp unit in the units_idr
217 * map and updating its file.refcnt field is atomic.
218 */
219 struct mutex all_ppp_mutex;
220
221 /* channels */
222 struct list_head all_channels;
223 struct list_head new_channels;
224 int last_channel_index;
225
226 /*
227 * all_channels_lock protects all_channels and
228 * last_channel_index, and the atomicity of find
229 * a channel and updating its file.refcnt field.
230 */
231 spinlock_t all_channels_lock;
232 };
233
234 /* Get the PPP protocol number from a skb */
235 #define PPP_PROTO(skb) get_unaligned_be16((skb)->data)
236
237 /* We limit the length of ppp->file.rq to this (arbitrary) value */
238 #define PPP_MAX_RQLEN 32
239
240 /*
241 * Maximum number of multilink fragments queued up.
242 * This has to be large enough to cope with the maximum latency of
243 * the slowest channel relative to the others. Strictly it should
244 * depend on the number of channels and their characteristics.
245 */
246 #define PPP_MP_MAX_QLEN 128
247
248 /* Multilink header bits. */
249 #define B 0x80 /* this fragment begins a packet */
250 #define E 0x40 /* this fragment ends a packet */
251
252 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
253 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
254 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
255
256 /* Prototypes. */
257 static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
258 struct file *file, unsigned int cmd, unsigned long arg);
259 static void ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb);
260 static void ppp_send_frame(struct ppp *ppp, struct sk_buff *skb);
261 static void ppp_push(struct ppp *ppp);
262 static void ppp_channel_push(struct channel *pch);
263 static void ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb,
264 struct channel *pch);
265 static void ppp_receive_error(struct ppp *ppp);
266 static void ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb);
267 static struct sk_buff *ppp_decompress_frame(struct ppp *ppp,
268 struct sk_buff *skb);
269 #ifdef CONFIG_PPP_MULTILINK
270 static void ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb,
271 struct channel *pch);
272 static void ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb);
273 static struct sk_buff *ppp_mp_reconstruct(struct ppp *ppp);
274 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb);
275 #endif /* CONFIG_PPP_MULTILINK */
276 static int ppp_set_compress(struct ppp *ppp, struct ppp_option_data *data);
277 static void ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound);
278 static void ppp_ccp_closed(struct ppp *ppp);
279 static struct compressor *find_compressor(int type);
280 static void ppp_get_stats(struct ppp *ppp, struct ppp_stats *st);
281 static int ppp_create_interface(struct net *net, struct file *file, int *unit);
282 static void init_ppp_file(struct ppp_file *pf, int kind);
283 static void ppp_destroy_interface(struct ppp *ppp);
284 static struct ppp *ppp_find_unit(struct ppp_net *pn, int unit);
285 static struct channel *ppp_find_channel(struct ppp_net *pn, int unit);
286 static int ppp_connect_channel(struct channel *pch, int unit);
287 static int ppp_disconnect_channel(struct channel *pch);
288 static void ppp_destroy_channel(struct channel *pch);
289 static int unit_get(struct idr *p, void *ptr, int min);
290 static int unit_set(struct idr *p, void *ptr, int n);
291 static void unit_put(struct idr *p, int n);
292 static void *unit_find(struct idr *p, int n);
293 static void ppp_setup(struct net_device *dev);
294
295 static const struct net_device_ops ppp_netdev_ops;
296
297 static struct class *ppp_class;
298
299 /* per net-namespace data */
ppp_pernet(struct net * net)300 static inline struct ppp_net *ppp_pernet(struct net *net)
301 {
302 return net_generic(net, ppp_net_id);
303 }
304
305 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
proto_to_npindex(int proto)306 static inline int proto_to_npindex(int proto)
307 {
308 switch (proto) {
309 case PPP_IP:
310 return NP_IP;
311 case PPP_IPV6:
312 return NP_IPV6;
313 case PPP_IPX:
314 return NP_IPX;
315 case PPP_AT:
316 return NP_AT;
317 case PPP_MPLS_UC:
318 return NP_MPLS_UC;
319 case PPP_MPLS_MC:
320 return NP_MPLS_MC;
321 }
322 return -EINVAL;
323 }
324
325 /* Translates an NP index into a PPP protocol number */
326 static const int npindex_to_proto[NUM_NP] = {
327 PPP_IP,
328 PPP_IPV6,
329 PPP_IPX,
330 PPP_AT,
331 PPP_MPLS_UC,
332 PPP_MPLS_MC,
333 };
334
335 /* Translates an ethertype into an NP index */
ethertype_to_npindex(int ethertype)336 static inline int ethertype_to_npindex(int ethertype)
337 {
338 switch (ethertype) {
339 case ETH_P_IP:
340 return NP_IP;
341 case ETH_P_IPV6:
342 return NP_IPV6;
343 case ETH_P_IPX:
344 return NP_IPX;
345 case ETH_P_PPPTALK:
346 case ETH_P_ATALK:
347 return NP_AT;
348 case ETH_P_MPLS_UC:
349 return NP_MPLS_UC;
350 case ETH_P_MPLS_MC:
351 return NP_MPLS_MC;
352 }
353 return -1;
354 }
355
356 /* Translates an NP index into an ethertype */
357 static const int npindex_to_ethertype[NUM_NP] = {
358 ETH_P_IP,
359 ETH_P_IPV6,
360 ETH_P_IPX,
361 ETH_P_PPPTALK,
362 ETH_P_MPLS_UC,
363 ETH_P_MPLS_MC,
364 };
365
366 /*
367 * Locking shorthand.
368 */
369 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
370 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
371 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
372 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
373 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
374 ppp_recv_lock(ppp); } while (0)
375 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
376 ppp_xmit_unlock(ppp); } while (0)
377
378 /*
379 * /dev/ppp device routines.
380 * The /dev/ppp device is used by pppd to control the ppp unit.
381 * It supports the read, write, ioctl and poll functions.
382 * Open instances of /dev/ppp can be in one of three states:
383 * unattached, attached to a ppp unit, or attached to a ppp channel.
384 */
ppp_open(struct inode * inode,struct file * file)385 static int ppp_open(struct inode *inode, struct file *file)
386 {
387 /*
388 * This could (should?) be enforced by the permissions on /dev/ppp.
389 */
390 if (!ns_capable(file->f_cred->user_ns, CAP_NET_ADMIN))
391 return -EPERM;
392 return 0;
393 }
394
ppp_release(struct inode * unused,struct file * file)395 static int ppp_release(struct inode *unused, struct file *file)
396 {
397 struct ppp_file *pf = file->private_data;
398 struct ppp *ppp;
399
400 if (pf) {
401 file->private_data = NULL;
402 if (pf->kind == INTERFACE) {
403 ppp = PF_TO_PPP(pf);
404 rtnl_lock();
405 if (file == ppp->owner)
406 unregister_netdevice(ppp->dev);
407 rtnl_unlock();
408 }
409 if (refcount_dec_and_test(&pf->refcnt)) {
410 switch (pf->kind) {
411 case INTERFACE:
412 ppp_destroy_interface(PF_TO_PPP(pf));
413 break;
414 case CHANNEL:
415 ppp_destroy_channel(PF_TO_CHANNEL(pf));
416 break;
417 }
418 }
419 }
420 return 0;
421 }
422
ppp_read(struct file * file,char __user * buf,size_t count,loff_t * ppos)423 static ssize_t ppp_read(struct file *file, char __user *buf,
424 size_t count, loff_t *ppos)
425 {
426 struct ppp_file *pf = file->private_data;
427 DECLARE_WAITQUEUE(wait, current);
428 ssize_t ret;
429 struct sk_buff *skb = NULL;
430 struct iovec iov;
431 struct iov_iter to;
432
433 ret = count;
434
435 if (!pf)
436 return -ENXIO;
437 add_wait_queue(&pf->rwait, &wait);
438 for (;;) {
439 set_current_state(TASK_INTERRUPTIBLE);
440 skb = skb_dequeue(&pf->rq);
441 if (skb)
442 break;
443 ret = 0;
444 if (pf->dead)
445 break;
446 if (pf->kind == INTERFACE) {
447 /*
448 * Return 0 (EOF) on an interface that has no
449 * channels connected, unless it is looping
450 * network traffic (demand mode).
451 */
452 struct ppp *ppp = PF_TO_PPP(pf);
453
454 ppp_recv_lock(ppp);
455 if (ppp->n_channels == 0 &&
456 (ppp->flags & SC_LOOP_TRAFFIC) == 0) {
457 ppp_recv_unlock(ppp);
458 break;
459 }
460 ppp_recv_unlock(ppp);
461 }
462 ret = -EAGAIN;
463 if (file->f_flags & O_NONBLOCK)
464 break;
465 ret = -ERESTARTSYS;
466 if (signal_pending(current))
467 break;
468 schedule();
469 }
470 set_current_state(TASK_RUNNING);
471 remove_wait_queue(&pf->rwait, &wait);
472
473 if (!skb)
474 goto out;
475
476 ret = -EOVERFLOW;
477 if (skb->len > count)
478 goto outf;
479 ret = -EFAULT;
480 iov.iov_base = buf;
481 iov.iov_len = count;
482 iov_iter_init(&to, READ, &iov, 1, count);
483 if (skb_copy_datagram_iter(skb, 0, &to, skb->len))
484 goto outf;
485 ret = skb->len;
486
487 outf:
488 kfree_skb(skb);
489 out:
490 return ret;
491 }
492
ppp_write(struct file * file,const char __user * buf,size_t count,loff_t * ppos)493 static ssize_t ppp_write(struct file *file, const char __user *buf,
494 size_t count, loff_t *ppos)
495 {
496 struct ppp_file *pf = file->private_data;
497 struct sk_buff *skb;
498 ssize_t ret;
499
500 if (!pf)
501 return -ENXIO;
502 /* All PPP packets should start with the 2-byte protocol */
503 if (count < PPP_PROTO_LEN)
504 return -EINVAL;
505 ret = -ENOMEM;
506 skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL);
507 if (!skb)
508 goto out;
509 skb_reserve(skb, pf->hdrlen);
510 ret = -EFAULT;
511 if (copy_from_user(skb_put(skb, count), buf, count)) {
512 kfree_skb(skb);
513 goto out;
514 }
515
516 switch (pf->kind) {
517 case INTERFACE:
518 ppp_xmit_process(PF_TO_PPP(pf), skb);
519 break;
520 case CHANNEL:
521 skb_queue_tail(&pf->xq, skb);
522 ppp_channel_push(PF_TO_CHANNEL(pf));
523 break;
524 }
525
526 ret = count;
527
528 out:
529 return ret;
530 }
531
532 /* No kernel lock - fine */
ppp_poll(struct file * file,poll_table * wait)533 static __poll_t ppp_poll(struct file *file, poll_table *wait)
534 {
535 struct ppp_file *pf = file->private_data;
536 __poll_t mask;
537
538 if (!pf)
539 return 0;
540 poll_wait(file, &pf->rwait, wait);
541 mask = EPOLLOUT | EPOLLWRNORM;
542 if (skb_peek(&pf->rq))
543 mask |= EPOLLIN | EPOLLRDNORM;
544 if (pf->dead)
545 mask |= EPOLLHUP;
546 else if (pf->kind == INTERFACE) {
547 /* see comment in ppp_read */
548 struct ppp *ppp = PF_TO_PPP(pf);
549
550 ppp_recv_lock(ppp);
551 if (ppp->n_channels == 0 &&
552 (ppp->flags & SC_LOOP_TRAFFIC) == 0)
553 mask |= EPOLLIN | EPOLLRDNORM;
554 ppp_recv_unlock(ppp);
555 }
556
557 return mask;
558 }
559
560 #ifdef CONFIG_PPP_FILTER
get_filter(struct sock_fprog * uprog)561 static struct bpf_prog *get_filter(struct sock_fprog *uprog)
562 {
563 struct sock_fprog_kern fprog;
564 struct bpf_prog *res = NULL;
565 int err;
566
567 if (!uprog->len)
568 return NULL;
569
570 /* uprog->len is unsigned short, so no overflow here */
571 fprog.len = uprog->len;
572 fprog.filter = memdup_user(uprog->filter,
573 uprog->len * sizeof(struct sock_filter));
574 if (IS_ERR(fprog.filter))
575 return ERR_CAST(fprog.filter);
576
577 err = bpf_prog_create(&res, &fprog);
578 kfree(fprog.filter);
579
580 return err ? ERR_PTR(err) : res;
581 }
582
ppp_get_filter(struct sock_fprog __user * p)583 static struct bpf_prog *ppp_get_filter(struct sock_fprog __user *p)
584 {
585 struct sock_fprog uprog;
586
587 if (copy_from_user(&uprog, p, sizeof(struct sock_fprog)))
588 return ERR_PTR(-EFAULT);
589 return get_filter(&uprog);
590 }
591
592 #ifdef CONFIG_COMPAT
593 struct sock_fprog32 {
594 unsigned short len;
595 compat_caddr_t filter;
596 };
597
598 #define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32)
599 #define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32)
600
compat_ppp_get_filter(struct sock_fprog32 __user * p)601 static struct bpf_prog *compat_ppp_get_filter(struct sock_fprog32 __user *p)
602 {
603 struct sock_fprog32 uprog32;
604 struct sock_fprog uprog;
605
606 if (copy_from_user(&uprog32, p, sizeof(struct sock_fprog32)))
607 return ERR_PTR(-EFAULT);
608 uprog.len = uprog32.len;
609 uprog.filter = compat_ptr(uprog32.filter);
610 return get_filter(&uprog);
611 }
612 #endif
613 #endif
614
615 /* Bridge one PPP channel to another.
616 * When two channels are bridged, ppp_input on one channel is redirected to
617 * the other's ops->start_xmit handler.
618 * In order to safely bridge channels we must reject channels which are already
619 * part of a bridge instance, or which form part of an existing unit.
620 * Once successfully bridged, each channel holds a reference on the other
621 * to prevent it being freed while the bridge is extant.
622 */
ppp_bridge_channels(struct channel * pch,struct channel * pchb)623 static int ppp_bridge_channels(struct channel *pch, struct channel *pchb)
624 {
625 write_lock_bh(&pch->upl);
626 if (pch->ppp ||
627 rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl))) {
628 write_unlock_bh(&pch->upl);
629 return -EALREADY;
630 }
631 refcount_inc(&pchb->file.refcnt);
632 rcu_assign_pointer(pch->bridge, pchb);
633 write_unlock_bh(&pch->upl);
634
635 write_lock_bh(&pchb->upl);
636 if (pchb->ppp ||
637 rcu_dereference_protected(pchb->bridge, lockdep_is_held(&pchb->upl))) {
638 write_unlock_bh(&pchb->upl);
639 goto err_unset;
640 }
641 refcount_inc(&pch->file.refcnt);
642 rcu_assign_pointer(pchb->bridge, pch);
643 write_unlock_bh(&pchb->upl);
644
645 return 0;
646
647 err_unset:
648 write_lock_bh(&pch->upl);
649 /* Re-read pch->bridge with upl held in case it was modified concurrently */
650 pchb = rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl));
651 RCU_INIT_POINTER(pch->bridge, NULL);
652 write_unlock_bh(&pch->upl);
653 synchronize_rcu();
654
655 if (pchb)
656 if (refcount_dec_and_test(&pchb->file.refcnt))
657 ppp_destroy_channel(pchb);
658
659 return -EALREADY;
660 }
661
ppp_unbridge_channels(struct channel * pch)662 static int ppp_unbridge_channels(struct channel *pch)
663 {
664 struct channel *pchb, *pchbb;
665
666 write_lock_bh(&pch->upl);
667 pchb = rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl));
668 if (!pchb) {
669 write_unlock_bh(&pch->upl);
670 return -EINVAL;
671 }
672 RCU_INIT_POINTER(pch->bridge, NULL);
673 write_unlock_bh(&pch->upl);
674
675 /* Only modify pchb if phcb->bridge points back to pch.
676 * If not, it implies that there has been a race unbridging (and possibly
677 * even rebridging) pchb. We should leave pchb alone to avoid either a
678 * refcount underflow, or breaking another established bridge instance.
679 */
680 write_lock_bh(&pchb->upl);
681 pchbb = rcu_dereference_protected(pchb->bridge, lockdep_is_held(&pchb->upl));
682 if (pchbb == pch)
683 RCU_INIT_POINTER(pchb->bridge, NULL);
684 write_unlock_bh(&pchb->upl);
685
686 synchronize_rcu();
687
688 if (pchbb == pch)
689 if (refcount_dec_and_test(&pch->file.refcnt))
690 ppp_destroy_channel(pch);
691
692 if (refcount_dec_and_test(&pchb->file.refcnt))
693 ppp_destroy_channel(pchb);
694
695 return 0;
696 }
697
ppp_ioctl(struct file * file,unsigned int cmd,unsigned long arg)698 static long ppp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
699 {
700 struct ppp_file *pf;
701 struct ppp *ppp;
702 int err = -EFAULT, val, val2, i;
703 struct ppp_idle32 idle32;
704 struct ppp_idle64 idle64;
705 struct npioctl npi;
706 int unit, cflags;
707 struct slcompress *vj;
708 void __user *argp = (void __user *)arg;
709 int __user *p = argp;
710
711 mutex_lock(&ppp_mutex);
712
713 pf = file->private_data;
714 if (!pf) {
715 err = ppp_unattached_ioctl(current->nsproxy->net_ns,
716 pf, file, cmd, arg);
717 goto out;
718 }
719
720 if (cmd == PPPIOCDETACH) {
721 /*
722 * PPPIOCDETACH is no longer supported as it was heavily broken,
723 * and is only known to have been used by pppd older than
724 * ppp-2.4.2 (released November 2003).
725 */
726 pr_warn_once("%s (%d) used obsolete PPPIOCDETACH ioctl\n",
727 current->comm, current->pid);
728 err = -EINVAL;
729 goto out;
730 }
731
732 if (pf->kind == CHANNEL) {
733 struct channel *pch, *pchb;
734 struct ppp_channel *chan;
735 struct ppp_net *pn;
736
737 pch = PF_TO_CHANNEL(pf);
738
739 switch (cmd) {
740 case PPPIOCCONNECT:
741 if (get_user(unit, p))
742 break;
743 err = ppp_connect_channel(pch, unit);
744 break;
745
746 case PPPIOCDISCONN:
747 err = ppp_disconnect_channel(pch);
748 break;
749
750 case PPPIOCBRIDGECHAN:
751 if (get_user(unit, p))
752 break;
753 err = -ENXIO;
754 pn = ppp_pernet(current->nsproxy->net_ns);
755 spin_lock_bh(&pn->all_channels_lock);
756 pchb = ppp_find_channel(pn, unit);
757 /* Hold a reference to prevent pchb being freed while
758 * we establish the bridge.
759 */
760 if (pchb)
761 refcount_inc(&pchb->file.refcnt);
762 spin_unlock_bh(&pn->all_channels_lock);
763 if (!pchb)
764 break;
765 err = ppp_bridge_channels(pch, pchb);
766 /* Drop earlier refcount now bridge establishment is complete */
767 if (refcount_dec_and_test(&pchb->file.refcnt))
768 ppp_destroy_channel(pchb);
769 break;
770
771 case PPPIOCUNBRIDGECHAN:
772 err = ppp_unbridge_channels(pch);
773 break;
774
775 default:
776 down_read(&pch->chan_sem);
777 chan = pch->chan;
778 err = -ENOTTY;
779 if (chan && chan->ops->ioctl)
780 err = chan->ops->ioctl(chan, cmd, arg);
781 up_read(&pch->chan_sem);
782 }
783 goto out;
784 }
785
786 if (pf->kind != INTERFACE) {
787 /* can't happen */
788 pr_err("PPP: not interface or channel??\n");
789 err = -EINVAL;
790 goto out;
791 }
792
793 ppp = PF_TO_PPP(pf);
794 switch (cmd) {
795 case PPPIOCSMRU:
796 if (get_user(val, p))
797 break;
798 ppp->mru = val;
799 err = 0;
800 break;
801
802 case PPPIOCSFLAGS:
803 if (get_user(val, p))
804 break;
805 ppp_lock(ppp);
806 cflags = ppp->flags & ~val;
807 #ifdef CONFIG_PPP_MULTILINK
808 if (!(ppp->flags & SC_MULTILINK) && (val & SC_MULTILINK))
809 ppp->nextseq = 0;
810 #endif
811 ppp->flags = val & SC_FLAG_BITS;
812 ppp_unlock(ppp);
813 if (cflags & SC_CCP_OPEN)
814 ppp_ccp_closed(ppp);
815 err = 0;
816 break;
817
818 case PPPIOCGFLAGS:
819 val = ppp->flags | ppp->xstate | ppp->rstate;
820 if (put_user(val, p))
821 break;
822 err = 0;
823 break;
824
825 case PPPIOCSCOMPRESS:
826 {
827 struct ppp_option_data data;
828 if (copy_from_user(&data, argp, sizeof(data)))
829 err = -EFAULT;
830 else
831 err = ppp_set_compress(ppp, &data);
832 break;
833 }
834 case PPPIOCGUNIT:
835 if (put_user(ppp->file.index, p))
836 break;
837 err = 0;
838 break;
839
840 case PPPIOCSDEBUG:
841 if (get_user(val, p))
842 break;
843 ppp->debug = val;
844 err = 0;
845 break;
846
847 case PPPIOCGDEBUG:
848 if (put_user(ppp->debug, p))
849 break;
850 err = 0;
851 break;
852
853 case PPPIOCGIDLE32:
854 idle32.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
855 idle32.recv_idle = (jiffies - ppp->last_recv) / HZ;
856 if (copy_to_user(argp, &idle32, sizeof(idle32)))
857 break;
858 err = 0;
859 break;
860
861 case PPPIOCGIDLE64:
862 idle64.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
863 idle64.recv_idle = (jiffies - ppp->last_recv) / HZ;
864 if (copy_to_user(argp, &idle64, sizeof(idle64)))
865 break;
866 err = 0;
867 break;
868
869 case PPPIOCSMAXCID:
870 if (get_user(val, p))
871 break;
872 val2 = 15;
873 if ((val >> 16) != 0) {
874 val2 = val >> 16;
875 val &= 0xffff;
876 }
877 vj = slhc_init(val2+1, val+1);
878 if (IS_ERR(vj)) {
879 err = PTR_ERR(vj);
880 break;
881 }
882 ppp_lock(ppp);
883 if (ppp->vj)
884 slhc_free(ppp->vj);
885 ppp->vj = vj;
886 ppp_unlock(ppp);
887 err = 0;
888 break;
889
890 case PPPIOCGNPMODE:
891 case PPPIOCSNPMODE:
892 if (copy_from_user(&npi, argp, sizeof(npi)))
893 break;
894 err = proto_to_npindex(npi.protocol);
895 if (err < 0)
896 break;
897 i = err;
898 if (cmd == PPPIOCGNPMODE) {
899 err = -EFAULT;
900 npi.mode = ppp->npmode[i];
901 if (copy_to_user(argp, &npi, sizeof(npi)))
902 break;
903 } else {
904 ppp->npmode[i] = npi.mode;
905 /* we may be able to transmit more packets now (??) */
906 netif_wake_queue(ppp->dev);
907 }
908 err = 0;
909 break;
910
911 #ifdef CONFIG_PPP_FILTER
912 case PPPIOCSPASS:
913 case PPPIOCSACTIVE:
914 {
915 struct bpf_prog *filter = ppp_get_filter(argp);
916 struct bpf_prog **which;
917
918 if (IS_ERR(filter)) {
919 err = PTR_ERR(filter);
920 break;
921 }
922 if (cmd == PPPIOCSPASS)
923 which = &ppp->pass_filter;
924 else
925 which = &ppp->active_filter;
926 ppp_lock(ppp);
927 if (*which)
928 bpf_prog_destroy(*which);
929 *which = filter;
930 ppp_unlock(ppp);
931 err = 0;
932 break;
933 }
934 #endif /* CONFIG_PPP_FILTER */
935
936 #ifdef CONFIG_PPP_MULTILINK
937 case PPPIOCSMRRU:
938 if (get_user(val, p))
939 break;
940 ppp_recv_lock(ppp);
941 ppp->mrru = val;
942 ppp_recv_unlock(ppp);
943 err = 0;
944 break;
945 #endif /* CONFIG_PPP_MULTILINK */
946
947 default:
948 err = -ENOTTY;
949 }
950
951 out:
952 mutex_unlock(&ppp_mutex);
953
954 return err;
955 }
956
957 #ifdef CONFIG_COMPAT
958 struct ppp_option_data32 {
959 compat_uptr_t ptr;
960 u32 length;
961 compat_int_t transmit;
962 };
963 #define PPPIOCSCOMPRESS32 _IOW('t', 77, struct ppp_option_data32)
964
ppp_compat_ioctl(struct file * file,unsigned int cmd,unsigned long arg)965 static long ppp_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
966 {
967 struct ppp_file *pf;
968 int err = -ENOIOCTLCMD;
969 void __user *argp = (void __user *)arg;
970
971 mutex_lock(&ppp_mutex);
972
973 pf = file->private_data;
974 if (pf && pf->kind == INTERFACE) {
975 struct ppp *ppp = PF_TO_PPP(pf);
976 switch (cmd) {
977 #ifdef CONFIG_PPP_FILTER
978 case PPPIOCSPASS32:
979 case PPPIOCSACTIVE32:
980 {
981 struct bpf_prog *filter = compat_ppp_get_filter(argp);
982 struct bpf_prog **which;
983
984 if (IS_ERR(filter)) {
985 err = PTR_ERR(filter);
986 break;
987 }
988 if (cmd == PPPIOCSPASS32)
989 which = &ppp->pass_filter;
990 else
991 which = &ppp->active_filter;
992 ppp_lock(ppp);
993 if (*which)
994 bpf_prog_destroy(*which);
995 *which = filter;
996 ppp_unlock(ppp);
997 err = 0;
998 break;
999 }
1000 #endif /* CONFIG_PPP_FILTER */
1001 case PPPIOCSCOMPRESS32:
1002 {
1003 struct ppp_option_data32 data32;
1004 if (copy_from_user(&data32, argp, sizeof(data32))) {
1005 err = -EFAULT;
1006 } else {
1007 struct ppp_option_data data = {
1008 .ptr = compat_ptr(data32.ptr),
1009 .length = data32.length,
1010 .transmit = data32.transmit
1011 };
1012 err = ppp_set_compress(ppp, &data);
1013 }
1014 break;
1015 }
1016 }
1017 }
1018 mutex_unlock(&ppp_mutex);
1019
1020 /* all other commands have compatible arguments */
1021 if (err == -ENOIOCTLCMD)
1022 err = ppp_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
1023
1024 return err;
1025 }
1026 #endif
1027
ppp_unattached_ioctl(struct net * net,struct ppp_file * pf,struct file * file,unsigned int cmd,unsigned long arg)1028 static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
1029 struct file *file, unsigned int cmd, unsigned long arg)
1030 {
1031 int unit, err = -EFAULT;
1032 struct ppp *ppp;
1033 struct channel *chan;
1034 struct ppp_net *pn;
1035 int __user *p = (int __user *)arg;
1036
1037 switch (cmd) {
1038 case PPPIOCNEWUNIT:
1039 /* Create a new ppp unit */
1040 if (get_user(unit, p))
1041 break;
1042 err = ppp_create_interface(net, file, &unit);
1043 if (err < 0)
1044 break;
1045
1046 err = -EFAULT;
1047 if (put_user(unit, p))
1048 break;
1049 err = 0;
1050 break;
1051
1052 case PPPIOCATTACH:
1053 /* Attach to an existing ppp unit */
1054 if (get_user(unit, p))
1055 break;
1056 err = -ENXIO;
1057 pn = ppp_pernet(net);
1058 mutex_lock(&pn->all_ppp_mutex);
1059 ppp = ppp_find_unit(pn, unit);
1060 if (ppp) {
1061 refcount_inc(&ppp->file.refcnt);
1062 file->private_data = &ppp->file;
1063 err = 0;
1064 }
1065 mutex_unlock(&pn->all_ppp_mutex);
1066 break;
1067
1068 case PPPIOCATTCHAN:
1069 if (get_user(unit, p))
1070 break;
1071 err = -ENXIO;
1072 pn = ppp_pernet(net);
1073 spin_lock_bh(&pn->all_channels_lock);
1074 chan = ppp_find_channel(pn, unit);
1075 if (chan) {
1076 refcount_inc(&chan->file.refcnt);
1077 file->private_data = &chan->file;
1078 err = 0;
1079 }
1080 spin_unlock_bh(&pn->all_channels_lock);
1081 break;
1082
1083 default:
1084 err = -ENOTTY;
1085 }
1086
1087 return err;
1088 }
1089
1090 static const struct file_operations ppp_device_fops = {
1091 .owner = THIS_MODULE,
1092 .read = ppp_read,
1093 .write = ppp_write,
1094 .poll = ppp_poll,
1095 .unlocked_ioctl = ppp_ioctl,
1096 #ifdef CONFIG_COMPAT
1097 .compat_ioctl = ppp_compat_ioctl,
1098 #endif
1099 .open = ppp_open,
1100 .release = ppp_release,
1101 .llseek = noop_llseek,
1102 };
1103
ppp_init_net(struct net * net)1104 static __net_init int ppp_init_net(struct net *net)
1105 {
1106 struct ppp_net *pn = net_generic(net, ppp_net_id);
1107
1108 idr_init(&pn->units_idr);
1109 mutex_init(&pn->all_ppp_mutex);
1110
1111 INIT_LIST_HEAD(&pn->all_channels);
1112 INIT_LIST_HEAD(&pn->new_channels);
1113
1114 spin_lock_init(&pn->all_channels_lock);
1115
1116 return 0;
1117 }
1118
ppp_exit_net(struct net * net)1119 static __net_exit void ppp_exit_net(struct net *net)
1120 {
1121 struct ppp_net *pn = net_generic(net, ppp_net_id);
1122 struct net_device *dev;
1123 struct net_device *aux;
1124 struct ppp *ppp;
1125 LIST_HEAD(list);
1126 int id;
1127
1128 rtnl_lock();
1129 for_each_netdev_safe(net, dev, aux) {
1130 if (dev->netdev_ops == &ppp_netdev_ops)
1131 unregister_netdevice_queue(dev, &list);
1132 }
1133
1134 idr_for_each_entry(&pn->units_idr, ppp, id)
1135 /* Skip devices already unregistered by previous loop */
1136 if (!net_eq(dev_net(ppp->dev), net))
1137 unregister_netdevice_queue(ppp->dev, &list);
1138
1139 unregister_netdevice_many(&list);
1140 rtnl_unlock();
1141
1142 mutex_destroy(&pn->all_ppp_mutex);
1143 idr_destroy(&pn->units_idr);
1144 WARN_ON_ONCE(!list_empty(&pn->all_channels));
1145 WARN_ON_ONCE(!list_empty(&pn->new_channels));
1146 }
1147
1148 static struct pernet_operations ppp_net_ops = {
1149 .init = ppp_init_net,
1150 .exit = ppp_exit_net,
1151 .id = &ppp_net_id,
1152 .size = sizeof(struct ppp_net),
1153 };
1154
ppp_unit_register(struct ppp * ppp,int unit,bool ifname_is_set)1155 static int ppp_unit_register(struct ppp *ppp, int unit, bool ifname_is_set)
1156 {
1157 struct ppp_net *pn = ppp_pernet(ppp->ppp_net);
1158 int ret;
1159
1160 mutex_lock(&pn->all_ppp_mutex);
1161
1162 if (unit < 0) {
1163 ret = unit_get(&pn->units_idr, ppp, 0);
1164 if (ret < 0)
1165 goto err;
1166 if (!ifname_is_set) {
1167 while (1) {
1168 snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ret);
1169 if (!__dev_get_by_name(ppp->ppp_net, ppp->dev->name))
1170 break;
1171 unit_put(&pn->units_idr, ret);
1172 ret = unit_get(&pn->units_idr, ppp, ret + 1);
1173 if (ret < 0)
1174 goto err;
1175 }
1176 }
1177 } else {
1178 /* Caller asked for a specific unit number. Fail with -EEXIST
1179 * if unavailable. For backward compatibility, return -EEXIST
1180 * too if idr allocation fails; this makes pppd retry without
1181 * requesting a specific unit number.
1182 */
1183 if (unit_find(&pn->units_idr, unit)) {
1184 ret = -EEXIST;
1185 goto err;
1186 }
1187 ret = unit_set(&pn->units_idr, ppp, unit);
1188 if (ret < 0) {
1189 /* Rewrite error for backward compatibility */
1190 ret = -EEXIST;
1191 goto err;
1192 }
1193 }
1194 ppp->file.index = ret;
1195
1196 if (!ifname_is_set)
1197 snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ppp->file.index);
1198
1199 mutex_unlock(&pn->all_ppp_mutex);
1200
1201 ret = register_netdevice(ppp->dev);
1202 if (ret < 0)
1203 goto err_unit;
1204
1205 atomic_inc(&ppp_unit_count);
1206
1207 return 0;
1208
1209 err_unit:
1210 mutex_lock(&pn->all_ppp_mutex);
1211 unit_put(&pn->units_idr, ppp->file.index);
1212 err:
1213 mutex_unlock(&pn->all_ppp_mutex);
1214
1215 return ret;
1216 }
1217
ppp_dev_configure(struct net * src_net,struct net_device * dev,const struct ppp_config * conf)1218 static int ppp_dev_configure(struct net *src_net, struct net_device *dev,
1219 const struct ppp_config *conf)
1220 {
1221 struct ppp *ppp = netdev_priv(dev);
1222 int indx;
1223 int err;
1224 int cpu;
1225
1226 ppp->dev = dev;
1227 ppp->ppp_net = src_net;
1228 ppp->mru = PPP_MRU;
1229 ppp->owner = conf->file;
1230
1231 init_ppp_file(&ppp->file, INTERFACE);
1232 ppp->file.hdrlen = PPP_HDRLEN - 2; /* don't count proto bytes */
1233
1234 for (indx = 0; indx < NUM_NP; ++indx)
1235 ppp->npmode[indx] = NPMODE_PASS;
1236 INIT_LIST_HEAD(&ppp->channels);
1237 spin_lock_init(&ppp->rlock);
1238 spin_lock_init(&ppp->wlock);
1239
1240 ppp->xmit_recursion = alloc_percpu(int);
1241 if (!ppp->xmit_recursion) {
1242 err = -ENOMEM;
1243 goto err1;
1244 }
1245 for_each_possible_cpu(cpu)
1246 (*per_cpu_ptr(ppp->xmit_recursion, cpu)) = 0;
1247
1248 #ifdef CONFIG_PPP_MULTILINK
1249 ppp->minseq = -1;
1250 skb_queue_head_init(&ppp->mrq);
1251 #endif /* CONFIG_PPP_MULTILINK */
1252 #ifdef CONFIG_PPP_FILTER
1253 ppp->pass_filter = NULL;
1254 ppp->active_filter = NULL;
1255 #endif /* CONFIG_PPP_FILTER */
1256
1257 err = ppp_unit_register(ppp, conf->unit, conf->ifname_is_set);
1258 if (err < 0)
1259 goto err2;
1260
1261 conf->file->private_data = &ppp->file;
1262
1263 return 0;
1264 err2:
1265 free_percpu(ppp->xmit_recursion);
1266 err1:
1267 return err;
1268 }
1269
1270 static const struct nla_policy ppp_nl_policy[IFLA_PPP_MAX + 1] = {
1271 [IFLA_PPP_DEV_FD] = { .type = NLA_S32 },
1272 };
1273
ppp_nl_validate(struct nlattr * tb[],struct nlattr * data[],struct netlink_ext_ack * extack)1274 static int ppp_nl_validate(struct nlattr *tb[], struct nlattr *data[],
1275 struct netlink_ext_ack *extack)
1276 {
1277 if (!data)
1278 return -EINVAL;
1279
1280 if (!data[IFLA_PPP_DEV_FD])
1281 return -EINVAL;
1282 if (nla_get_s32(data[IFLA_PPP_DEV_FD]) < 0)
1283 return -EBADF;
1284
1285 return 0;
1286 }
1287
ppp_nl_newlink(struct net * src_net,struct net_device * dev,struct nlattr * tb[],struct nlattr * data[],struct netlink_ext_ack * extack)1288 static int ppp_nl_newlink(struct net *src_net, struct net_device *dev,
1289 struct nlattr *tb[], struct nlattr *data[],
1290 struct netlink_ext_ack *extack)
1291 {
1292 struct ppp_config conf = {
1293 .unit = -1,
1294 .ifname_is_set = true,
1295 };
1296 struct file *file;
1297 int err;
1298
1299 file = fget(nla_get_s32(data[IFLA_PPP_DEV_FD]));
1300 if (!file)
1301 return -EBADF;
1302
1303 /* rtnl_lock is already held here, but ppp_create_interface() locks
1304 * ppp_mutex before holding rtnl_lock. Using mutex_trylock() avoids
1305 * possible deadlock due to lock order inversion, at the cost of
1306 * pushing the problem back to userspace.
1307 */
1308 if (!mutex_trylock(&ppp_mutex)) {
1309 err = -EBUSY;
1310 goto out;
1311 }
1312
1313 if (file->f_op != &ppp_device_fops || file->private_data) {
1314 err = -EBADF;
1315 goto out_unlock;
1316 }
1317
1318 conf.file = file;
1319
1320 /* Don't use device name generated by the rtnetlink layer when ifname
1321 * isn't specified. Let ppp_dev_configure() set the device name using
1322 * the PPP unit identifer as suffix (i.e. ppp<unit_id>). This allows
1323 * userspace to infer the device name using to the PPPIOCGUNIT ioctl.
1324 */
1325 if (!tb[IFLA_IFNAME] || !nla_len(tb[IFLA_IFNAME]) || !*(char *)nla_data(tb[IFLA_IFNAME]))
1326 conf.ifname_is_set = false;
1327
1328 err = ppp_dev_configure(src_net, dev, &conf);
1329
1330 out_unlock:
1331 mutex_unlock(&ppp_mutex);
1332 out:
1333 fput(file);
1334
1335 return err;
1336 }
1337
ppp_nl_dellink(struct net_device * dev,struct list_head * head)1338 static void ppp_nl_dellink(struct net_device *dev, struct list_head *head)
1339 {
1340 unregister_netdevice_queue(dev, head);
1341 }
1342
ppp_nl_get_size(const struct net_device * dev)1343 static size_t ppp_nl_get_size(const struct net_device *dev)
1344 {
1345 return 0;
1346 }
1347
ppp_nl_fill_info(struct sk_buff * skb,const struct net_device * dev)1348 static int ppp_nl_fill_info(struct sk_buff *skb, const struct net_device *dev)
1349 {
1350 return 0;
1351 }
1352
ppp_nl_get_link_net(const struct net_device * dev)1353 static struct net *ppp_nl_get_link_net(const struct net_device *dev)
1354 {
1355 struct ppp *ppp = netdev_priv(dev);
1356
1357 return ppp->ppp_net;
1358 }
1359
1360 static struct rtnl_link_ops ppp_link_ops __read_mostly = {
1361 .kind = "ppp",
1362 .maxtype = IFLA_PPP_MAX,
1363 .policy = ppp_nl_policy,
1364 .priv_size = sizeof(struct ppp),
1365 .setup = ppp_setup,
1366 .validate = ppp_nl_validate,
1367 .newlink = ppp_nl_newlink,
1368 .dellink = ppp_nl_dellink,
1369 .get_size = ppp_nl_get_size,
1370 .fill_info = ppp_nl_fill_info,
1371 .get_link_net = ppp_nl_get_link_net,
1372 };
1373
1374 #define PPP_MAJOR 108
1375
1376 /* Called at boot time if ppp is compiled into the kernel,
1377 or at module load time (from init_module) if compiled as a module. */
ppp_init(void)1378 static int __init ppp_init(void)
1379 {
1380 int err;
1381
1382 pr_info("PPP generic driver version " PPP_VERSION "\n");
1383
1384 err = register_pernet_device(&ppp_net_ops);
1385 if (err) {
1386 pr_err("failed to register PPP pernet device (%d)\n", err);
1387 goto out;
1388 }
1389
1390 err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
1391 if (err) {
1392 pr_err("failed to register PPP device (%d)\n", err);
1393 goto out_net;
1394 }
1395
1396 ppp_class = class_create(THIS_MODULE, "ppp");
1397 if (IS_ERR(ppp_class)) {
1398 err = PTR_ERR(ppp_class);
1399 goto out_chrdev;
1400 }
1401
1402 err = rtnl_link_register(&ppp_link_ops);
1403 if (err) {
1404 pr_err("failed to register rtnetlink PPP handler\n");
1405 goto out_class;
1406 }
1407
1408 /* not a big deal if we fail here :-) */
1409 device_create(ppp_class, NULL, MKDEV(PPP_MAJOR, 0), NULL, "ppp");
1410
1411 return 0;
1412
1413 out_class:
1414 class_destroy(ppp_class);
1415 out_chrdev:
1416 unregister_chrdev(PPP_MAJOR, "ppp");
1417 out_net:
1418 unregister_pernet_device(&ppp_net_ops);
1419 out:
1420 return err;
1421 }
1422
1423 /*
1424 * Network interface unit routines.
1425 */
1426 static netdev_tx_t
ppp_start_xmit(struct sk_buff * skb,struct net_device * dev)1427 ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
1428 {
1429 struct ppp *ppp = netdev_priv(dev);
1430 int npi, proto;
1431 unsigned char *pp;
1432
1433 npi = ethertype_to_npindex(ntohs(skb->protocol));
1434 if (npi < 0)
1435 goto outf;
1436
1437 /* Drop, accept or reject the packet */
1438 switch (ppp->npmode[npi]) {
1439 case NPMODE_PASS:
1440 break;
1441 case NPMODE_QUEUE:
1442 /* it would be nice to have a way to tell the network
1443 system to queue this one up for later. */
1444 goto outf;
1445 case NPMODE_DROP:
1446 case NPMODE_ERROR:
1447 goto outf;
1448 }
1449
1450 /* Put the 2-byte PPP protocol number on the front,
1451 making sure there is room for the address and control fields. */
1452 if (skb_cow_head(skb, PPP_HDRLEN))
1453 goto outf;
1454
1455 pp = skb_push(skb, 2);
1456 proto = npindex_to_proto[npi];
1457 put_unaligned_be16(proto, pp);
1458
1459 skb_scrub_packet(skb, !net_eq(ppp->ppp_net, dev_net(dev)));
1460 ppp_xmit_process(ppp, skb);
1461
1462 return NETDEV_TX_OK;
1463
1464 outf:
1465 kfree_skb(skb);
1466 ++dev->stats.tx_dropped;
1467 return NETDEV_TX_OK;
1468 }
1469
1470 static int
ppp_net_siocdevprivate(struct net_device * dev,struct ifreq * ifr,void __user * addr,int cmd)1471 ppp_net_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
1472 void __user *addr, int cmd)
1473 {
1474 struct ppp *ppp = netdev_priv(dev);
1475 int err = -EFAULT;
1476 struct ppp_stats stats;
1477 struct ppp_comp_stats cstats;
1478 char *vers;
1479
1480 switch (cmd) {
1481 case SIOCGPPPSTATS:
1482 ppp_get_stats(ppp, &stats);
1483 if (copy_to_user(addr, &stats, sizeof(stats)))
1484 break;
1485 err = 0;
1486 break;
1487
1488 case SIOCGPPPCSTATS:
1489 memset(&cstats, 0, sizeof(cstats));
1490 if (ppp->xc_state)
1491 ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
1492 if (ppp->rc_state)
1493 ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
1494 if (copy_to_user(addr, &cstats, sizeof(cstats)))
1495 break;
1496 err = 0;
1497 break;
1498
1499 case SIOCGPPPVER:
1500 vers = PPP_VERSION;
1501 if (copy_to_user(addr, vers, strlen(vers) + 1))
1502 break;
1503 err = 0;
1504 break;
1505
1506 default:
1507 err = -EINVAL;
1508 }
1509
1510 return err;
1511 }
1512
1513 static void
ppp_get_stats64(struct net_device * dev,struct rtnl_link_stats64 * stats64)1514 ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1515 {
1516 struct ppp *ppp = netdev_priv(dev);
1517
1518 ppp_recv_lock(ppp);
1519 stats64->rx_packets = ppp->stats64.rx_packets;
1520 stats64->rx_bytes = ppp->stats64.rx_bytes;
1521 ppp_recv_unlock(ppp);
1522
1523 ppp_xmit_lock(ppp);
1524 stats64->tx_packets = ppp->stats64.tx_packets;
1525 stats64->tx_bytes = ppp->stats64.tx_bytes;
1526 ppp_xmit_unlock(ppp);
1527
1528 stats64->rx_errors = dev->stats.rx_errors;
1529 stats64->tx_errors = dev->stats.tx_errors;
1530 stats64->rx_dropped = dev->stats.rx_dropped;
1531 stats64->tx_dropped = dev->stats.tx_dropped;
1532 stats64->rx_length_errors = dev->stats.rx_length_errors;
1533 }
1534
ppp_dev_init(struct net_device * dev)1535 static int ppp_dev_init(struct net_device *dev)
1536 {
1537 struct ppp *ppp;
1538
1539 netdev_lockdep_set_classes(dev);
1540
1541 ppp = netdev_priv(dev);
1542 /* Let the netdevice take a reference on the ppp file. This ensures
1543 * that ppp_destroy_interface() won't run before the device gets
1544 * unregistered.
1545 */
1546 refcount_inc(&ppp->file.refcnt);
1547
1548 return 0;
1549 }
1550
ppp_dev_uninit(struct net_device * dev)1551 static void ppp_dev_uninit(struct net_device *dev)
1552 {
1553 struct ppp *ppp = netdev_priv(dev);
1554 struct ppp_net *pn = ppp_pernet(ppp->ppp_net);
1555
1556 ppp_lock(ppp);
1557 ppp->closing = 1;
1558 ppp_unlock(ppp);
1559
1560 mutex_lock(&pn->all_ppp_mutex);
1561 unit_put(&pn->units_idr, ppp->file.index);
1562 mutex_unlock(&pn->all_ppp_mutex);
1563
1564 ppp->owner = NULL;
1565
1566 ppp->file.dead = 1;
1567 wake_up_interruptible(&ppp->file.rwait);
1568 }
1569
ppp_dev_priv_destructor(struct net_device * dev)1570 static void ppp_dev_priv_destructor(struct net_device *dev)
1571 {
1572 struct ppp *ppp;
1573
1574 ppp = netdev_priv(dev);
1575 if (refcount_dec_and_test(&ppp->file.refcnt))
1576 ppp_destroy_interface(ppp);
1577 }
1578
ppp_fill_forward_path(struct net_device_path_ctx * ctx,struct net_device_path * path)1579 static int ppp_fill_forward_path(struct net_device_path_ctx *ctx,
1580 struct net_device_path *path)
1581 {
1582 struct ppp *ppp = netdev_priv(ctx->dev);
1583 struct ppp_channel *chan;
1584 struct channel *pch;
1585
1586 if (ppp->flags & SC_MULTILINK)
1587 return -EOPNOTSUPP;
1588
1589 if (list_empty(&ppp->channels))
1590 return -ENODEV;
1591
1592 pch = list_first_entry(&ppp->channels, struct channel, clist);
1593 chan = pch->chan;
1594 if (!chan->ops->fill_forward_path)
1595 return -EOPNOTSUPP;
1596
1597 return chan->ops->fill_forward_path(ctx, path, chan);
1598 }
1599
1600 static const struct net_device_ops ppp_netdev_ops = {
1601 .ndo_init = ppp_dev_init,
1602 .ndo_uninit = ppp_dev_uninit,
1603 .ndo_start_xmit = ppp_start_xmit,
1604 .ndo_siocdevprivate = ppp_net_siocdevprivate,
1605 .ndo_get_stats64 = ppp_get_stats64,
1606 .ndo_fill_forward_path = ppp_fill_forward_path,
1607 };
1608
1609 static struct device_type ppp_type = {
1610 .name = "ppp",
1611 };
1612
ppp_setup(struct net_device * dev)1613 static void ppp_setup(struct net_device *dev)
1614 {
1615 dev->netdev_ops = &ppp_netdev_ops;
1616 SET_NETDEV_DEVTYPE(dev, &ppp_type);
1617
1618 dev->features |= NETIF_F_LLTX;
1619
1620 dev->hard_header_len = PPP_HDRLEN;
1621 dev->mtu = PPP_MRU;
1622 dev->addr_len = 0;
1623 dev->tx_queue_len = 3;
1624 dev->type = ARPHRD_PPP;
1625 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
1626 dev->priv_destructor = ppp_dev_priv_destructor;
1627 netif_keep_dst(dev);
1628 }
1629
1630 /*
1631 * Transmit-side routines.
1632 */
1633
1634 /* Called to do any work queued up on the transmit side that can now be done */
__ppp_xmit_process(struct ppp * ppp,struct sk_buff * skb)1635 static void __ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb)
1636 {
1637 ppp_xmit_lock(ppp);
1638 if (!ppp->closing) {
1639 ppp_push(ppp);
1640
1641 if (skb)
1642 skb_queue_tail(&ppp->file.xq, skb);
1643 while (!ppp->xmit_pending &&
1644 (skb = skb_dequeue(&ppp->file.xq)))
1645 ppp_send_frame(ppp, skb);
1646 /* If there's no work left to do, tell the core net
1647 code that we can accept some more. */
1648 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
1649 netif_wake_queue(ppp->dev);
1650 else
1651 netif_stop_queue(ppp->dev);
1652 } else {
1653 kfree_skb(skb);
1654 }
1655 ppp_xmit_unlock(ppp);
1656 }
1657
ppp_xmit_process(struct ppp * ppp,struct sk_buff * skb)1658 static void ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb)
1659 {
1660 local_bh_disable();
1661
1662 if (unlikely(*this_cpu_ptr(ppp->xmit_recursion)))
1663 goto err;
1664
1665 (*this_cpu_ptr(ppp->xmit_recursion))++;
1666 __ppp_xmit_process(ppp, skb);
1667 (*this_cpu_ptr(ppp->xmit_recursion))--;
1668
1669 local_bh_enable();
1670
1671 return;
1672
1673 err:
1674 local_bh_enable();
1675
1676 kfree_skb(skb);
1677
1678 if (net_ratelimit())
1679 netdev_err(ppp->dev, "recursion detected\n");
1680 }
1681
1682 static inline struct sk_buff *
pad_compress_skb(struct ppp * ppp,struct sk_buff * skb)1683 pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1684 {
1685 struct sk_buff *new_skb;
1686 int len;
1687 int new_skb_size = ppp->dev->mtu +
1688 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1689 int compressor_skb_size = ppp->dev->mtu +
1690 ppp->xcomp->comp_extra + PPP_HDRLEN;
1691 new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1692 if (!new_skb) {
1693 if (net_ratelimit())
1694 netdev_err(ppp->dev, "PPP: no memory (comp pkt)\n");
1695 return NULL;
1696 }
1697 if (ppp->dev->hard_header_len > PPP_HDRLEN)
1698 skb_reserve(new_skb,
1699 ppp->dev->hard_header_len - PPP_HDRLEN);
1700
1701 /* compressor still expects A/C bytes in hdr */
1702 len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1703 new_skb->data, skb->len + 2,
1704 compressor_skb_size);
1705 if (len > 0 && (ppp->flags & SC_CCP_UP)) {
1706 consume_skb(skb);
1707 skb = new_skb;
1708 skb_put(skb, len);
1709 skb_pull(skb, 2); /* pull off A/C bytes */
1710 } else if (len == 0) {
1711 /* didn't compress, or CCP not up yet */
1712 consume_skb(new_skb);
1713 new_skb = skb;
1714 } else {
1715 /*
1716 * (len < 0)
1717 * MPPE requires that we do not send unencrypted
1718 * frames. The compressor will return -1 if we
1719 * should drop the frame. We cannot simply test
1720 * the compress_proto because MPPE and MPPC share
1721 * the same number.
1722 */
1723 if (net_ratelimit())
1724 netdev_err(ppp->dev, "ppp: compressor dropped pkt\n");
1725 kfree_skb(skb);
1726 consume_skb(new_skb);
1727 new_skb = NULL;
1728 }
1729 return new_skb;
1730 }
1731
1732 /*
1733 * Compress and send a frame.
1734 * The caller should have locked the xmit path,
1735 * and xmit_pending should be 0.
1736 */
1737 static void
ppp_send_frame(struct ppp * ppp,struct sk_buff * skb)1738 ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1739 {
1740 int proto = PPP_PROTO(skb);
1741 struct sk_buff *new_skb;
1742 int len;
1743 unsigned char *cp;
1744
1745 skb->dev = ppp->dev;
1746
1747 if (proto < 0x8000) {
1748 #ifdef CONFIG_PPP_FILTER
1749 /* check if we should pass this packet */
1750 /* the filter instructions are constructed assuming
1751 a four-byte PPP header on each packet */
1752 *(u8 *)skb_push(skb, 2) = 1;
1753 if (ppp->pass_filter &&
1754 bpf_prog_run(ppp->pass_filter, skb) == 0) {
1755 if (ppp->debug & 1)
1756 netdev_printk(KERN_DEBUG, ppp->dev,
1757 "PPP: outbound frame "
1758 "not passed\n");
1759 kfree_skb(skb);
1760 return;
1761 }
1762 /* if this packet passes the active filter, record the time */
1763 if (!(ppp->active_filter &&
1764 bpf_prog_run(ppp->active_filter, skb) == 0))
1765 ppp->last_xmit = jiffies;
1766 skb_pull(skb, 2);
1767 #else
1768 /* for data packets, record the time */
1769 ppp->last_xmit = jiffies;
1770 #endif /* CONFIG_PPP_FILTER */
1771 }
1772
1773 ++ppp->stats64.tx_packets;
1774 ppp->stats64.tx_bytes += skb->len - PPP_PROTO_LEN;
1775
1776 switch (proto) {
1777 case PPP_IP:
1778 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
1779 break;
1780 /* try to do VJ TCP header compression */
1781 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1782 GFP_ATOMIC);
1783 if (!new_skb) {
1784 netdev_err(ppp->dev, "PPP: no memory (VJ comp pkt)\n");
1785 goto drop;
1786 }
1787 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1788 cp = skb->data + 2;
1789 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1790 new_skb->data + 2, &cp,
1791 !(ppp->flags & SC_NO_TCP_CCID));
1792 if (cp == skb->data + 2) {
1793 /* didn't compress */
1794 consume_skb(new_skb);
1795 } else {
1796 if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1797 proto = PPP_VJC_COMP;
1798 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1799 } else {
1800 proto = PPP_VJC_UNCOMP;
1801 cp[0] = skb->data[2];
1802 }
1803 consume_skb(skb);
1804 skb = new_skb;
1805 cp = skb_put(skb, len + 2);
1806 cp[0] = 0;
1807 cp[1] = proto;
1808 }
1809 break;
1810
1811 case PPP_CCP:
1812 /* peek at outbound CCP frames */
1813 ppp_ccp_peek(ppp, skb, 0);
1814 break;
1815 }
1816
1817 /* try to do packet compression */
1818 if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state &&
1819 proto != PPP_LCP && proto != PPP_CCP) {
1820 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1821 if (net_ratelimit())
1822 netdev_err(ppp->dev,
1823 "ppp: compression required but "
1824 "down - pkt dropped.\n");
1825 goto drop;
1826 }
1827 skb = pad_compress_skb(ppp, skb);
1828 if (!skb)
1829 goto drop;
1830 }
1831
1832 /*
1833 * If we are waiting for traffic (demand dialling),
1834 * queue it up for pppd to receive.
1835 */
1836 if (ppp->flags & SC_LOOP_TRAFFIC) {
1837 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1838 goto drop;
1839 skb_queue_tail(&ppp->file.rq, skb);
1840 wake_up_interruptible(&ppp->file.rwait);
1841 return;
1842 }
1843
1844 ppp->xmit_pending = skb;
1845 ppp_push(ppp);
1846 return;
1847
1848 drop:
1849 kfree_skb(skb);
1850 ++ppp->dev->stats.tx_errors;
1851 }
1852
1853 /*
1854 * Try to send the frame in xmit_pending.
1855 * The caller should have the xmit path locked.
1856 */
1857 static void
ppp_push(struct ppp * ppp)1858 ppp_push(struct ppp *ppp)
1859 {
1860 struct list_head *list;
1861 struct channel *pch;
1862 struct sk_buff *skb = ppp->xmit_pending;
1863
1864 if (!skb)
1865 return;
1866
1867 list = &ppp->channels;
1868 if (list_empty(list)) {
1869 /* nowhere to send the packet, just drop it */
1870 ppp->xmit_pending = NULL;
1871 kfree_skb(skb);
1872 return;
1873 }
1874
1875 if ((ppp->flags & SC_MULTILINK) == 0) {
1876 /* not doing multilink: send it down the first channel */
1877 list = list->next;
1878 pch = list_entry(list, struct channel, clist);
1879
1880 spin_lock(&pch->downl);
1881 if (pch->chan) {
1882 if (pch->chan->ops->start_xmit(pch->chan, skb))
1883 ppp->xmit_pending = NULL;
1884 } else {
1885 /* channel got unregistered */
1886 kfree_skb(skb);
1887 ppp->xmit_pending = NULL;
1888 }
1889 spin_unlock(&pch->downl);
1890 return;
1891 }
1892
1893 #ifdef CONFIG_PPP_MULTILINK
1894 /* Multilink: fragment the packet over as many links
1895 as can take the packet at the moment. */
1896 if (!ppp_mp_explode(ppp, skb))
1897 return;
1898 #endif /* CONFIG_PPP_MULTILINK */
1899
1900 ppp->xmit_pending = NULL;
1901 kfree_skb(skb);
1902 }
1903
1904 #ifdef CONFIG_PPP_MULTILINK
1905 static bool mp_protocol_compress __read_mostly = true;
1906 module_param(mp_protocol_compress, bool, 0644);
1907 MODULE_PARM_DESC(mp_protocol_compress,
1908 "compress protocol id in multilink fragments");
1909
1910 /*
1911 * Divide a packet to be transmitted into fragments and
1912 * send them out the individual links.
1913 */
ppp_mp_explode(struct ppp * ppp,struct sk_buff * skb)1914 static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1915 {
1916 int len, totlen;
1917 int i, bits, hdrlen, mtu;
1918 int flen;
1919 int navail, nfree, nzero;
1920 int nbigger;
1921 int totspeed;
1922 int totfree;
1923 unsigned char *p, *q;
1924 struct list_head *list;
1925 struct channel *pch;
1926 struct sk_buff *frag;
1927 struct ppp_channel *chan;
1928
1929 totspeed = 0; /*total bitrate of the bundle*/
1930 nfree = 0; /* # channels which have no packet already queued */
1931 navail = 0; /* total # of usable channels (not deregistered) */
1932 nzero = 0; /* number of channels with zero speed associated*/
1933 totfree = 0; /*total # of channels available and
1934 *having no queued packets before
1935 *starting the fragmentation*/
1936
1937 hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1938 i = 0;
1939 list_for_each_entry(pch, &ppp->channels, clist) {
1940 if (pch->chan) {
1941 pch->avail = 1;
1942 navail++;
1943 pch->speed = pch->chan->speed;
1944 } else {
1945 pch->avail = 0;
1946 }
1947 if (pch->avail) {
1948 if (skb_queue_empty(&pch->file.xq) ||
1949 !pch->had_frag) {
1950 if (pch->speed == 0)
1951 nzero++;
1952 else
1953 totspeed += pch->speed;
1954
1955 pch->avail = 2;
1956 ++nfree;
1957 ++totfree;
1958 }
1959 if (!pch->had_frag && i < ppp->nxchan)
1960 ppp->nxchan = i;
1961 }
1962 ++i;
1963 }
1964 /*
1965 * Don't start sending this packet unless at least half of
1966 * the channels are free. This gives much better TCP
1967 * performance if we have a lot of channels.
1968 */
1969 if (nfree == 0 || nfree < navail / 2)
1970 return 0; /* can't take now, leave it in xmit_pending */
1971
1972 /* Do protocol field compression */
1973 p = skb->data;
1974 len = skb->len;
1975 if (*p == 0 && mp_protocol_compress) {
1976 ++p;
1977 --len;
1978 }
1979
1980 totlen = len;
1981 nbigger = len % nfree;
1982
1983 /* skip to the channel after the one we last used
1984 and start at that one */
1985 list = &ppp->channels;
1986 for (i = 0; i < ppp->nxchan; ++i) {
1987 list = list->next;
1988 if (list == &ppp->channels) {
1989 i = 0;
1990 break;
1991 }
1992 }
1993
1994 /* create a fragment for each channel */
1995 bits = B;
1996 while (len > 0) {
1997 list = list->next;
1998 if (list == &ppp->channels) {
1999 i = 0;
2000 continue;
2001 }
2002 pch = list_entry(list, struct channel, clist);
2003 ++i;
2004 if (!pch->avail)
2005 continue;
2006
2007 /*
2008 * Skip this channel if it has a fragment pending already and
2009 * we haven't given a fragment to all of the free channels.
2010 */
2011 if (pch->avail == 1) {
2012 if (nfree > 0)
2013 continue;
2014 } else {
2015 pch->avail = 1;
2016 }
2017
2018 /* check the channel's mtu and whether it is still attached. */
2019 spin_lock(&pch->downl);
2020 if (pch->chan == NULL) {
2021 /* can't use this channel, it's being deregistered */
2022 if (pch->speed == 0)
2023 nzero--;
2024 else
2025 totspeed -= pch->speed;
2026
2027 spin_unlock(&pch->downl);
2028 pch->avail = 0;
2029 totlen = len;
2030 totfree--;
2031 nfree--;
2032 if (--navail == 0)
2033 break;
2034 continue;
2035 }
2036
2037 /*
2038 *if the channel speed is not set divide
2039 *the packet evenly among the free channels;
2040 *otherwise divide it according to the speed
2041 *of the channel we are going to transmit on
2042 */
2043 flen = len;
2044 if (nfree > 0) {
2045 if (pch->speed == 0) {
2046 flen = len/nfree;
2047 if (nbigger > 0) {
2048 flen++;
2049 nbigger--;
2050 }
2051 } else {
2052 flen = (((totfree - nzero)*(totlen + hdrlen*totfree)) /
2053 ((totspeed*totfree)/pch->speed)) - hdrlen;
2054 if (nbigger > 0) {
2055 flen += ((totfree - nzero)*pch->speed)/totspeed;
2056 nbigger -= ((totfree - nzero)*pch->speed)/
2057 totspeed;
2058 }
2059 }
2060 nfree--;
2061 }
2062
2063 /*
2064 *check if we are on the last channel or
2065 *we exceded the length of the data to
2066 *fragment
2067 */
2068 if ((nfree <= 0) || (flen > len))
2069 flen = len;
2070 /*
2071 *it is not worth to tx on slow channels:
2072 *in that case from the resulting flen according to the
2073 *above formula will be equal or less than zero.
2074 *Skip the channel in this case
2075 */
2076 if (flen <= 0) {
2077 pch->avail = 2;
2078 spin_unlock(&pch->downl);
2079 continue;
2080 }
2081
2082 /*
2083 * hdrlen includes the 2-byte PPP protocol field, but the
2084 * MTU counts only the payload excluding the protocol field.
2085 * (RFC1661 Section 2)
2086 */
2087 mtu = pch->chan->mtu - (hdrlen - 2);
2088 if (mtu < 4)
2089 mtu = 4;
2090 if (flen > mtu)
2091 flen = mtu;
2092 if (flen == len)
2093 bits |= E;
2094 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
2095 if (!frag)
2096 goto noskb;
2097 q = skb_put(frag, flen + hdrlen);
2098
2099 /* make the MP header */
2100 put_unaligned_be16(PPP_MP, q);
2101 if (ppp->flags & SC_MP_XSHORTSEQ) {
2102 q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
2103 q[3] = ppp->nxseq;
2104 } else {
2105 q[2] = bits;
2106 q[3] = ppp->nxseq >> 16;
2107 q[4] = ppp->nxseq >> 8;
2108 q[5] = ppp->nxseq;
2109 }
2110
2111 memcpy(q + hdrlen, p, flen);
2112
2113 /* try to send it down the channel */
2114 chan = pch->chan;
2115 if (!skb_queue_empty(&pch->file.xq) ||
2116 !chan->ops->start_xmit(chan, frag))
2117 skb_queue_tail(&pch->file.xq, frag);
2118 pch->had_frag = 1;
2119 p += flen;
2120 len -= flen;
2121 ++ppp->nxseq;
2122 bits = 0;
2123 spin_unlock(&pch->downl);
2124 }
2125 ppp->nxchan = i;
2126
2127 return 1;
2128
2129 noskb:
2130 spin_unlock(&pch->downl);
2131 if (ppp->debug & 1)
2132 netdev_err(ppp->dev, "PPP: no memory (fragment)\n");
2133 ++ppp->dev->stats.tx_errors;
2134 ++ppp->nxseq;
2135 return 1; /* abandon the frame */
2136 }
2137 #endif /* CONFIG_PPP_MULTILINK */
2138
2139 /* Try to send data out on a channel */
__ppp_channel_push(struct channel * pch)2140 static void __ppp_channel_push(struct channel *pch)
2141 {
2142 struct sk_buff *skb;
2143 struct ppp *ppp;
2144
2145 spin_lock(&pch->downl);
2146 if (pch->chan) {
2147 while (!skb_queue_empty(&pch->file.xq)) {
2148 skb = skb_dequeue(&pch->file.xq);
2149 if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
2150 /* put the packet back and try again later */
2151 skb_queue_head(&pch->file.xq, skb);
2152 break;
2153 }
2154 }
2155 } else {
2156 /* channel got deregistered */
2157 skb_queue_purge(&pch->file.xq);
2158 }
2159 spin_unlock(&pch->downl);
2160 /* see if there is anything from the attached unit to be sent */
2161 if (skb_queue_empty(&pch->file.xq)) {
2162 ppp = pch->ppp;
2163 if (ppp)
2164 __ppp_xmit_process(ppp, NULL);
2165 }
2166 }
2167
ppp_channel_push(struct channel * pch)2168 static void ppp_channel_push(struct channel *pch)
2169 {
2170 read_lock_bh(&pch->upl);
2171 if (pch->ppp) {
2172 (*this_cpu_ptr(pch->ppp->xmit_recursion))++;
2173 __ppp_channel_push(pch);
2174 (*this_cpu_ptr(pch->ppp->xmit_recursion))--;
2175 } else {
2176 __ppp_channel_push(pch);
2177 }
2178 read_unlock_bh(&pch->upl);
2179 }
2180
2181 /*
2182 * Receive-side routines.
2183 */
2184
2185 struct ppp_mp_skb_parm {
2186 u32 sequence;
2187 u8 BEbits;
2188 };
2189 #define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
2190
2191 static inline void
ppp_do_recv(struct ppp * ppp,struct sk_buff * skb,struct channel * pch)2192 ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2193 {
2194 ppp_recv_lock(ppp);
2195 if (!ppp->closing)
2196 ppp_receive_frame(ppp, skb, pch);
2197 else
2198 kfree_skb(skb);
2199 ppp_recv_unlock(ppp);
2200 }
2201
2202 /**
2203 * __ppp_decompress_proto - Decompress protocol field, slim version.
2204 * @skb: Socket buffer where protocol field should be decompressed. It must have
2205 * at least 1 byte of head room and 1 byte of linear data. First byte of
2206 * data must be a protocol field byte.
2207 *
2208 * Decompress protocol field in PPP header if it's compressed, e.g. when
2209 * Protocol-Field-Compression (PFC) was negotiated. No checks w.r.t. skb data
2210 * length are done in this function.
2211 */
__ppp_decompress_proto(struct sk_buff * skb)2212 static void __ppp_decompress_proto(struct sk_buff *skb)
2213 {
2214 if (skb->data[0] & 0x01)
2215 *(u8 *)skb_push(skb, 1) = 0x00;
2216 }
2217
2218 /**
2219 * ppp_decompress_proto - Check skb data room and decompress protocol field.
2220 * @skb: Socket buffer where protocol field should be decompressed. First byte
2221 * of data must be a protocol field byte.
2222 *
2223 * Decompress protocol field in PPP header if it's compressed, e.g. when
2224 * Protocol-Field-Compression (PFC) was negotiated. This function also makes
2225 * sure that skb data room is sufficient for Protocol field, before and after
2226 * decompression.
2227 *
2228 * Return: true - decompressed successfully, false - not enough room in skb.
2229 */
ppp_decompress_proto(struct sk_buff * skb)2230 static bool ppp_decompress_proto(struct sk_buff *skb)
2231 {
2232 /* At least one byte should be present (if protocol is compressed) */
2233 if (!pskb_may_pull(skb, 1))
2234 return false;
2235
2236 __ppp_decompress_proto(skb);
2237
2238 /* Protocol field should occupy 2 bytes when not compressed */
2239 return pskb_may_pull(skb, 2);
2240 }
2241
2242 /* Attempt to handle a frame via. a bridged channel, if one exists.
2243 * If the channel is bridged, the frame is consumed by the bridge.
2244 * If not, the caller must handle the frame by normal recv mechanisms.
2245 * Returns true if the frame is consumed, false otherwise.
2246 */
ppp_channel_bridge_input(struct channel * pch,struct sk_buff * skb)2247 static bool ppp_channel_bridge_input(struct channel *pch, struct sk_buff *skb)
2248 {
2249 struct channel *pchb;
2250
2251 rcu_read_lock();
2252 pchb = rcu_dereference(pch->bridge);
2253 if (!pchb)
2254 goto out_rcu;
2255
2256 spin_lock(&pchb->downl);
2257 if (!pchb->chan) {
2258 /* channel got unregistered */
2259 kfree_skb(skb);
2260 goto outl;
2261 }
2262
2263 skb_scrub_packet(skb, !net_eq(pch->chan_net, pchb->chan_net));
2264 if (!pchb->chan->ops->start_xmit(pchb->chan, skb))
2265 kfree_skb(skb);
2266
2267 outl:
2268 spin_unlock(&pchb->downl);
2269 out_rcu:
2270 rcu_read_unlock();
2271
2272 /* If pchb is set then we've consumed the packet */
2273 return !!pchb;
2274 }
2275
2276 void
ppp_input(struct ppp_channel * chan,struct sk_buff * skb)2277 ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
2278 {
2279 struct channel *pch = chan->ppp;
2280 int proto;
2281
2282 if (!pch) {
2283 kfree_skb(skb);
2284 return;
2285 }
2286
2287 /* If the channel is bridged, transmit via. bridge */
2288 if (ppp_channel_bridge_input(pch, skb))
2289 return;
2290
2291 read_lock_bh(&pch->upl);
2292 if (!ppp_decompress_proto(skb)) {
2293 kfree_skb(skb);
2294 if (pch->ppp) {
2295 ++pch->ppp->dev->stats.rx_length_errors;
2296 ppp_receive_error(pch->ppp);
2297 }
2298 goto done;
2299 }
2300
2301 proto = PPP_PROTO(skb);
2302 if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
2303 /* put it on the channel queue */
2304 skb_queue_tail(&pch->file.rq, skb);
2305 /* drop old frames if queue too long */
2306 while (pch->file.rq.qlen > PPP_MAX_RQLEN &&
2307 (skb = skb_dequeue(&pch->file.rq)))
2308 kfree_skb(skb);
2309 wake_up_interruptible(&pch->file.rwait);
2310 } else {
2311 ppp_do_recv(pch->ppp, skb, pch);
2312 }
2313
2314 done:
2315 read_unlock_bh(&pch->upl);
2316 }
2317
2318 /* Put a 0-length skb in the receive queue as an error indication */
2319 void
ppp_input_error(struct ppp_channel * chan,int code)2320 ppp_input_error(struct ppp_channel *chan, int code)
2321 {
2322 struct channel *pch = chan->ppp;
2323 struct sk_buff *skb;
2324
2325 if (!pch)
2326 return;
2327
2328 read_lock_bh(&pch->upl);
2329 if (pch->ppp) {
2330 skb = alloc_skb(0, GFP_ATOMIC);
2331 if (skb) {
2332 skb->len = 0; /* probably unnecessary */
2333 skb->cb[0] = code;
2334 ppp_do_recv(pch->ppp, skb, pch);
2335 }
2336 }
2337 read_unlock_bh(&pch->upl);
2338 }
2339
2340 /*
2341 * We come in here to process a received frame.
2342 * The receive side of the ppp unit is locked.
2343 */
2344 static void
ppp_receive_frame(struct ppp * ppp,struct sk_buff * skb,struct channel * pch)2345 ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2346 {
2347 /* note: a 0-length skb is used as an error indication */
2348 if (skb->len > 0) {
2349 skb_checksum_complete_unset(skb);
2350 #ifdef CONFIG_PPP_MULTILINK
2351 /* XXX do channel-level decompression here */
2352 if (PPP_PROTO(skb) == PPP_MP)
2353 ppp_receive_mp_frame(ppp, skb, pch);
2354 else
2355 #endif /* CONFIG_PPP_MULTILINK */
2356 ppp_receive_nonmp_frame(ppp, skb);
2357 } else {
2358 kfree_skb(skb);
2359 ppp_receive_error(ppp);
2360 }
2361 }
2362
2363 static void
ppp_receive_error(struct ppp * ppp)2364 ppp_receive_error(struct ppp *ppp)
2365 {
2366 ++ppp->dev->stats.rx_errors;
2367 if (ppp->vj)
2368 slhc_toss(ppp->vj);
2369 }
2370
2371 static void
ppp_receive_nonmp_frame(struct ppp * ppp,struct sk_buff * skb)2372 ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
2373 {
2374 struct sk_buff *ns;
2375 int proto, len, npi;
2376
2377 /*
2378 * Decompress the frame, if compressed.
2379 * Note that some decompressors need to see uncompressed frames
2380 * that come in as well as compressed frames.
2381 */
2382 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) &&
2383 (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
2384 skb = ppp_decompress_frame(ppp, skb);
2385
2386 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
2387 goto err;
2388
2389 /* At this point the "Protocol" field MUST be decompressed, either in
2390 * ppp_input(), ppp_decompress_frame() or in ppp_receive_mp_frame().
2391 */
2392 proto = PPP_PROTO(skb);
2393 switch (proto) {
2394 case PPP_VJC_COMP:
2395 /* decompress VJ compressed packets */
2396 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
2397 goto err;
2398
2399 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
2400 /* copy to a new sk_buff with more tailroom */
2401 ns = dev_alloc_skb(skb->len + 128);
2402 if (!ns) {
2403 netdev_err(ppp->dev, "PPP: no memory "
2404 "(VJ decomp)\n");
2405 goto err;
2406 }
2407 skb_reserve(ns, 2);
2408 skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
2409 consume_skb(skb);
2410 skb = ns;
2411 }
2412 else
2413 skb->ip_summed = CHECKSUM_NONE;
2414
2415 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
2416 if (len <= 0) {
2417 netdev_printk(KERN_DEBUG, ppp->dev,
2418 "PPP: VJ decompression error\n");
2419 goto err;
2420 }
2421 len += 2;
2422 if (len > skb->len)
2423 skb_put(skb, len - skb->len);
2424 else if (len < skb->len)
2425 skb_trim(skb, len);
2426 proto = PPP_IP;
2427 break;
2428
2429 case PPP_VJC_UNCOMP:
2430 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
2431 goto err;
2432
2433 /* Until we fix the decompressor need to make sure
2434 * data portion is linear.
2435 */
2436 if (!pskb_may_pull(skb, skb->len))
2437 goto err;
2438
2439 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
2440 netdev_err(ppp->dev, "PPP: VJ uncompressed error\n");
2441 goto err;
2442 }
2443 proto = PPP_IP;
2444 break;
2445
2446 case PPP_CCP:
2447 ppp_ccp_peek(ppp, skb, 1);
2448 break;
2449 }
2450
2451 ++ppp->stats64.rx_packets;
2452 ppp->stats64.rx_bytes += skb->len - 2;
2453
2454 npi = proto_to_npindex(proto);
2455 if (npi < 0) {
2456 /* control or unknown frame - pass it to pppd */
2457 skb_queue_tail(&ppp->file.rq, skb);
2458 /* limit queue length by dropping old frames */
2459 while (ppp->file.rq.qlen > PPP_MAX_RQLEN &&
2460 (skb = skb_dequeue(&ppp->file.rq)))
2461 kfree_skb(skb);
2462 /* wake up any process polling or blocking on read */
2463 wake_up_interruptible(&ppp->file.rwait);
2464
2465 } else {
2466 /* network protocol frame - give it to the kernel */
2467
2468 #ifdef CONFIG_PPP_FILTER
2469 /* check if the packet passes the pass and active filters */
2470 /* the filter instructions are constructed assuming
2471 a four-byte PPP header on each packet */
2472 if (ppp->pass_filter || ppp->active_filter) {
2473 if (skb_unclone(skb, GFP_ATOMIC))
2474 goto err;
2475
2476 *(u8 *)skb_push(skb, 2) = 0;
2477 if (ppp->pass_filter &&
2478 bpf_prog_run(ppp->pass_filter, skb) == 0) {
2479 if (ppp->debug & 1)
2480 netdev_printk(KERN_DEBUG, ppp->dev,
2481 "PPP: inbound frame "
2482 "not passed\n");
2483 kfree_skb(skb);
2484 return;
2485 }
2486 if (!(ppp->active_filter &&
2487 bpf_prog_run(ppp->active_filter, skb) == 0))
2488 ppp->last_recv = jiffies;
2489 __skb_pull(skb, 2);
2490 } else
2491 #endif /* CONFIG_PPP_FILTER */
2492 ppp->last_recv = jiffies;
2493
2494 if ((ppp->dev->flags & IFF_UP) == 0 ||
2495 ppp->npmode[npi] != NPMODE_PASS) {
2496 kfree_skb(skb);
2497 } else {
2498 /* chop off protocol */
2499 skb_pull_rcsum(skb, 2);
2500 skb->dev = ppp->dev;
2501 skb->protocol = htons(npindex_to_ethertype[npi]);
2502 skb_reset_mac_header(skb);
2503 skb_scrub_packet(skb, !net_eq(ppp->ppp_net,
2504 dev_net(ppp->dev)));
2505 netif_rx(skb);
2506 }
2507 }
2508 return;
2509
2510 err:
2511 kfree_skb(skb);
2512 ppp_receive_error(ppp);
2513 }
2514
2515 static struct sk_buff *
ppp_decompress_frame(struct ppp * ppp,struct sk_buff * skb)2516 ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
2517 {
2518 int proto = PPP_PROTO(skb);
2519 struct sk_buff *ns;
2520 int len;
2521
2522 /* Until we fix all the decompressor's need to make sure
2523 * data portion is linear.
2524 */
2525 if (!pskb_may_pull(skb, skb->len))
2526 goto err;
2527
2528 if (proto == PPP_COMP) {
2529 int obuff_size;
2530
2531 switch(ppp->rcomp->compress_proto) {
2532 case CI_MPPE:
2533 obuff_size = ppp->mru + PPP_HDRLEN + 1;
2534 break;
2535 default:
2536 obuff_size = ppp->mru + PPP_HDRLEN;
2537 break;
2538 }
2539
2540 ns = dev_alloc_skb(obuff_size);
2541 if (!ns) {
2542 netdev_err(ppp->dev, "ppp_decompress_frame: "
2543 "no memory\n");
2544 goto err;
2545 }
2546 /* the decompressor still expects the A/C bytes in the hdr */
2547 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
2548 skb->len + 2, ns->data, obuff_size);
2549 if (len < 0) {
2550 /* Pass the compressed frame to pppd as an
2551 error indication. */
2552 if (len == DECOMP_FATALERROR)
2553 ppp->rstate |= SC_DC_FERROR;
2554 kfree_skb(ns);
2555 goto err;
2556 }
2557
2558 consume_skb(skb);
2559 skb = ns;
2560 skb_put(skb, len);
2561 skb_pull(skb, 2); /* pull off the A/C bytes */
2562
2563 /* Don't call __ppp_decompress_proto() here, but instead rely on
2564 * corresponding algo (mppe/bsd/deflate) to decompress it.
2565 */
2566 } else {
2567 /* Uncompressed frame - pass to decompressor so it
2568 can update its dictionary if necessary. */
2569 if (ppp->rcomp->incomp)
2570 ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
2571 skb->len + 2);
2572 }
2573
2574 return skb;
2575
2576 err:
2577 ppp->rstate |= SC_DC_ERROR;
2578 ppp_receive_error(ppp);
2579 return skb;
2580 }
2581
2582 #ifdef CONFIG_PPP_MULTILINK
2583 /*
2584 * Receive a multilink frame.
2585 * We put it on the reconstruction queue and then pull off
2586 * as many completed frames as we can.
2587 */
2588 static void
ppp_receive_mp_frame(struct ppp * ppp,struct sk_buff * skb,struct channel * pch)2589 ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2590 {
2591 u32 mask, seq;
2592 struct channel *ch;
2593 int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
2594
2595 if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
2596 goto err; /* no good, throw it away */
2597
2598 /* Decode sequence number and begin/end bits */
2599 if (ppp->flags & SC_MP_SHORTSEQ) {
2600 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
2601 mask = 0xfff;
2602 } else {
2603 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
2604 mask = 0xffffff;
2605 }
2606 PPP_MP_CB(skb)->BEbits = skb->data[2];
2607 skb_pull(skb, mphdrlen); /* pull off PPP and MP headers */
2608
2609 /*
2610 * Do protocol ID decompression on the first fragment of each packet.
2611 * We have to do that here, because ppp_receive_nonmp_frame() expects
2612 * decompressed protocol field.
2613 */
2614 if (PPP_MP_CB(skb)->BEbits & B)
2615 __ppp_decompress_proto(skb);
2616
2617 /*
2618 * Expand sequence number to 32 bits, making it as close
2619 * as possible to ppp->minseq.
2620 */
2621 seq |= ppp->minseq & ~mask;
2622 if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
2623 seq += mask + 1;
2624 else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
2625 seq -= mask + 1; /* should never happen */
2626 PPP_MP_CB(skb)->sequence = seq;
2627 pch->lastseq = seq;
2628
2629 /*
2630 * If this packet comes before the next one we were expecting,
2631 * drop it.
2632 */
2633 if (seq_before(seq, ppp->nextseq)) {
2634 kfree_skb(skb);
2635 ++ppp->dev->stats.rx_dropped;
2636 ppp_receive_error(ppp);
2637 return;
2638 }
2639
2640 /*
2641 * Reevaluate minseq, the minimum over all channels of the
2642 * last sequence number received on each channel. Because of
2643 * the increasing sequence number rule, we know that any fragment
2644 * before `minseq' which hasn't arrived is never going to arrive.
2645 * The list of channels can't change because we have the receive
2646 * side of the ppp unit locked.
2647 */
2648 list_for_each_entry(ch, &ppp->channels, clist) {
2649 if (seq_before(ch->lastseq, seq))
2650 seq = ch->lastseq;
2651 }
2652 if (seq_before(ppp->minseq, seq))
2653 ppp->minseq = seq;
2654
2655 /* Put the fragment on the reconstruction queue */
2656 ppp_mp_insert(ppp, skb);
2657
2658 /* If the queue is getting long, don't wait any longer for packets
2659 before the start of the queue. */
2660 if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
2661 struct sk_buff *mskb = skb_peek(&ppp->mrq);
2662 if (seq_before(ppp->minseq, PPP_MP_CB(mskb)->sequence))
2663 ppp->minseq = PPP_MP_CB(mskb)->sequence;
2664 }
2665
2666 /* Pull completed packets off the queue and receive them. */
2667 while ((skb = ppp_mp_reconstruct(ppp))) {
2668 if (pskb_may_pull(skb, 2))
2669 ppp_receive_nonmp_frame(ppp, skb);
2670 else {
2671 ++ppp->dev->stats.rx_length_errors;
2672 kfree_skb(skb);
2673 ppp_receive_error(ppp);
2674 }
2675 }
2676
2677 return;
2678
2679 err:
2680 kfree_skb(skb);
2681 ppp_receive_error(ppp);
2682 }
2683
2684 /*
2685 * Insert a fragment on the MP reconstruction queue.
2686 * The queue is ordered by increasing sequence number.
2687 */
2688 static void
ppp_mp_insert(struct ppp * ppp,struct sk_buff * skb)2689 ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
2690 {
2691 struct sk_buff *p;
2692 struct sk_buff_head *list = &ppp->mrq;
2693 u32 seq = PPP_MP_CB(skb)->sequence;
2694
2695 /* N.B. we don't need to lock the list lock because we have the
2696 ppp unit receive-side lock. */
2697 skb_queue_walk(list, p) {
2698 if (seq_before(seq, PPP_MP_CB(p)->sequence))
2699 break;
2700 }
2701 __skb_queue_before(list, p, skb);
2702 }
2703
2704 /*
2705 * Reconstruct a packet from the MP fragment queue.
2706 * We go through increasing sequence numbers until we find a
2707 * complete packet, or we get to the sequence number for a fragment
2708 * which hasn't arrived but might still do so.
2709 */
2710 static struct sk_buff *
ppp_mp_reconstruct(struct ppp * ppp)2711 ppp_mp_reconstruct(struct ppp *ppp)
2712 {
2713 u32 seq = ppp->nextseq;
2714 u32 minseq = ppp->minseq;
2715 struct sk_buff_head *list = &ppp->mrq;
2716 struct sk_buff *p, *tmp;
2717 struct sk_buff *head, *tail;
2718 struct sk_buff *skb = NULL;
2719 int lost = 0, len = 0;
2720
2721 if (ppp->mrru == 0) /* do nothing until mrru is set */
2722 return NULL;
2723 head = __skb_peek(list);
2724 tail = NULL;
2725 skb_queue_walk_safe(list, p, tmp) {
2726 again:
2727 if (seq_before(PPP_MP_CB(p)->sequence, seq)) {
2728 /* this can't happen, anyway ignore the skb */
2729 netdev_err(ppp->dev, "ppp_mp_reconstruct bad "
2730 "seq %u < %u\n",
2731 PPP_MP_CB(p)->sequence, seq);
2732 __skb_unlink(p, list);
2733 kfree_skb(p);
2734 continue;
2735 }
2736 if (PPP_MP_CB(p)->sequence != seq) {
2737 u32 oldseq;
2738 /* Fragment `seq' is missing. If it is after
2739 minseq, it might arrive later, so stop here. */
2740 if (seq_after(seq, minseq))
2741 break;
2742 /* Fragment `seq' is lost, keep going. */
2743 lost = 1;
2744 oldseq = seq;
2745 seq = seq_before(minseq, PPP_MP_CB(p)->sequence)?
2746 minseq + 1: PPP_MP_CB(p)->sequence;
2747
2748 if (ppp->debug & 1)
2749 netdev_printk(KERN_DEBUG, ppp->dev,
2750 "lost frag %u..%u\n",
2751 oldseq, seq-1);
2752
2753 goto again;
2754 }
2755
2756 /*
2757 * At this point we know that all the fragments from
2758 * ppp->nextseq to seq are either present or lost.
2759 * Also, there are no complete packets in the queue
2760 * that have no missing fragments and end before this
2761 * fragment.
2762 */
2763
2764 /* B bit set indicates this fragment starts a packet */
2765 if (PPP_MP_CB(p)->BEbits & B) {
2766 head = p;
2767 lost = 0;
2768 len = 0;
2769 }
2770
2771 len += p->len;
2772
2773 /* Got a complete packet yet? */
2774 if (lost == 0 && (PPP_MP_CB(p)->BEbits & E) &&
2775 (PPP_MP_CB(head)->BEbits & B)) {
2776 if (len > ppp->mrru + 2) {
2777 ++ppp->dev->stats.rx_length_errors;
2778 netdev_printk(KERN_DEBUG, ppp->dev,
2779 "PPP: reconstructed packet"
2780 " is too long (%d)\n", len);
2781 } else {
2782 tail = p;
2783 break;
2784 }
2785 ppp->nextseq = seq + 1;
2786 }
2787
2788 /*
2789 * If this is the ending fragment of a packet,
2790 * and we haven't found a complete valid packet yet,
2791 * we can discard up to and including this fragment.
2792 */
2793 if (PPP_MP_CB(p)->BEbits & E) {
2794 struct sk_buff *tmp2;
2795
2796 skb_queue_reverse_walk_from_safe(list, p, tmp2) {
2797 if (ppp->debug & 1)
2798 netdev_printk(KERN_DEBUG, ppp->dev,
2799 "discarding frag %u\n",
2800 PPP_MP_CB(p)->sequence);
2801 __skb_unlink(p, list);
2802 kfree_skb(p);
2803 }
2804 head = skb_peek(list);
2805 if (!head)
2806 break;
2807 }
2808 ++seq;
2809 }
2810
2811 /* If we have a complete packet, copy it all into one skb. */
2812 if (tail != NULL) {
2813 /* If we have discarded any fragments,
2814 signal a receive error. */
2815 if (PPP_MP_CB(head)->sequence != ppp->nextseq) {
2816 skb_queue_walk_safe(list, p, tmp) {
2817 if (p == head)
2818 break;
2819 if (ppp->debug & 1)
2820 netdev_printk(KERN_DEBUG, ppp->dev,
2821 "discarding frag %u\n",
2822 PPP_MP_CB(p)->sequence);
2823 __skb_unlink(p, list);
2824 kfree_skb(p);
2825 }
2826
2827 if (ppp->debug & 1)
2828 netdev_printk(KERN_DEBUG, ppp->dev,
2829 " missed pkts %u..%u\n",
2830 ppp->nextseq,
2831 PPP_MP_CB(head)->sequence-1);
2832 ++ppp->dev->stats.rx_dropped;
2833 ppp_receive_error(ppp);
2834 }
2835
2836 skb = head;
2837 if (head != tail) {
2838 struct sk_buff **fragpp = &skb_shinfo(skb)->frag_list;
2839 p = skb_queue_next(list, head);
2840 __skb_unlink(skb, list);
2841 skb_queue_walk_from_safe(list, p, tmp) {
2842 __skb_unlink(p, list);
2843 *fragpp = p;
2844 p->next = NULL;
2845 fragpp = &p->next;
2846
2847 skb->len += p->len;
2848 skb->data_len += p->len;
2849 skb->truesize += p->truesize;
2850
2851 if (p == tail)
2852 break;
2853 }
2854 } else {
2855 __skb_unlink(skb, list);
2856 }
2857
2858 ppp->nextseq = PPP_MP_CB(tail)->sequence + 1;
2859 }
2860
2861 return skb;
2862 }
2863 #endif /* CONFIG_PPP_MULTILINK */
2864
2865 /*
2866 * Channel interface.
2867 */
2868
2869 /* Create a new, unattached ppp channel. */
ppp_register_channel(struct ppp_channel * chan)2870 int ppp_register_channel(struct ppp_channel *chan)
2871 {
2872 return ppp_register_net_channel(current->nsproxy->net_ns, chan);
2873 }
2874
2875 /* Create a new, unattached ppp channel for specified net. */
ppp_register_net_channel(struct net * net,struct ppp_channel * chan)2876 int ppp_register_net_channel(struct net *net, struct ppp_channel *chan)
2877 {
2878 struct channel *pch;
2879 struct ppp_net *pn;
2880
2881 pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
2882 if (!pch)
2883 return -ENOMEM;
2884
2885 pn = ppp_pernet(net);
2886
2887 pch->ppp = NULL;
2888 pch->chan = chan;
2889 pch->chan_net = get_net(net);
2890 chan->ppp = pch;
2891 init_ppp_file(&pch->file, CHANNEL);
2892 pch->file.hdrlen = chan->hdrlen;
2893 #ifdef CONFIG_PPP_MULTILINK
2894 pch->lastseq = -1;
2895 #endif /* CONFIG_PPP_MULTILINK */
2896 init_rwsem(&pch->chan_sem);
2897 spin_lock_init(&pch->downl);
2898 rwlock_init(&pch->upl);
2899
2900 spin_lock_bh(&pn->all_channels_lock);
2901 pch->file.index = ++pn->last_channel_index;
2902 list_add(&pch->list, &pn->new_channels);
2903 atomic_inc(&channel_count);
2904 spin_unlock_bh(&pn->all_channels_lock);
2905
2906 return 0;
2907 }
2908
2909 /*
2910 * Return the index of a channel.
2911 */
ppp_channel_index(struct ppp_channel * chan)2912 int ppp_channel_index(struct ppp_channel *chan)
2913 {
2914 struct channel *pch = chan->ppp;
2915
2916 if (pch)
2917 return pch->file.index;
2918 return -1;
2919 }
2920
2921 /*
2922 * Return the PPP unit number to which a channel is connected.
2923 */
ppp_unit_number(struct ppp_channel * chan)2924 int ppp_unit_number(struct ppp_channel *chan)
2925 {
2926 struct channel *pch = chan->ppp;
2927 int unit = -1;
2928
2929 if (pch) {
2930 read_lock_bh(&pch->upl);
2931 if (pch->ppp)
2932 unit = pch->ppp->file.index;
2933 read_unlock_bh(&pch->upl);
2934 }
2935 return unit;
2936 }
2937
2938 /*
2939 * Return the PPP device interface name of a channel.
2940 */
ppp_dev_name(struct ppp_channel * chan)2941 char *ppp_dev_name(struct ppp_channel *chan)
2942 {
2943 struct channel *pch = chan->ppp;
2944 char *name = NULL;
2945
2946 if (pch) {
2947 read_lock_bh(&pch->upl);
2948 if (pch->ppp && pch->ppp->dev)
2949 name = pch->ppp->dev->name;
2950 read_unlock_bh(&pch->upl);
2951 }
2952 return name;
2953 }
2954
2955
2956 /*
2957 * Disconnect a channel from the generic layer.
2958 * This must be called in process context.
2959 */
2960 void
ppp_unregister_channel(struct ppp_channel * chan)2961 ppp_unregister_channel(struct ppp_channel *chan)
2962 {
2963 struct channel *pch = chan->ppp;
2964 struct ppp_net *pn;
2965
2966 if (!pch)
2967 return; /* should never happen */
2968
2969 chan->ppp = NULL;
2970
2971 /*
2972 * This ensures that we have returned from any calls into the
2973 * the channel's start_xmit or ioctl routine before we proceed.
2974 */
2975 down_write(&pch->chan_sem);
2976 spin_lock_bh(&pch->downl);
2977 pch->chan = NULL;
2978 spin_unlock_bh(&pch->downl);
2979 up_write(&pch->chan_sem);
2980 ppp_disconnect_channel(pch);
2981
2982 pn = ppp_pernet(pch->chan_net);
2983 spin_lock_bh(&pn->all_channels_lock);
2984 list_del(&pch->list);
2985 spin_unlock_bh(&pn->all_channels_lock);
2986
2987 ppp_unbridge_channels(pch);
2988
2989 pch->file.dead = 1;
2990 wake_up_interruptible(&pch->file.rwait);
2991
2992 if (refcount_dec_and_test(&pch->file.refcnt))
2993 ppp_destroy_channel(pch);
2994 }
2995
2996 /*
2997 * Callback from a channel when it can accept more to transmit.
2998 * This should be called at BH/softirq level, not interrupt level.
2999 */
3000 void
ppp_output_wakeup(struct ppp_channel * chan)3001 ppp_output_wakeup(struct ppp_channel *chan)
3002 {
3003 struct channel *pch = chan->ppp;
3004
3005 if (!pch)
3006 return;
3007 ppp_channel_push(pch);
3008 }
3009
3010 /*
3011 * Compression control.
3012 */
3013
3014 /* Process the PPPIOCSCOMPRESS ioctl. */
3015 static int
ppp_set_compress(struct ppp * ppp,struct ppp_option_data * data)3016 ppp_set_compress(struct ppp *ppp, struct ppp_option_data *data)
3017 {
3018 int err = -EFAULT;
3019 struct compressor *cp, *ocomp;
3020 void *state, *ostate;
3021 unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
3022
3023 if (data->length > CCP_MAX_OPTION_LENGTH)
3024 goto out;
3025 if (copy_from_user(ccp_option, data->ptr, data->length))
3026 goto out;
3027
3028 err = -EINVAL;
3029 if (data->length < 2 || ccp_option[1] < 2 || ccp_option[1] > data->length)
3030 goto out;
3031
3032 cp = try_then_request_module(
3033 find_compressor(ccp_option[0]),
3034 "ppp-compress-%d", ccp_option[0]);
3035 if (!cp)
3036 goto out;
3037
3038 err = -ENOBUFS;
3039 if (data->transmit) {
3040 state = cp->comp_alloc(ccp_option, data->length);
3041 if (state) {
3042 ppp_xmit_lock(ppp);
3043 ppp->xstate &= ~SC_COMP_RUN;
3044 ocomp = ppp->xcomp;
3045 ostate = ppp->xc_state;
3046 ppp->xcomp = cp;
3047 ppp->xc_state = state;
3048 ppp_xmit_unlock(ppp);
3049 if (ostate) {
3050 ocomp->comp_free(ostate);
3051 module_put(ocomp->owner);
3052 }
3053 err = 0;
3054 } else
3055 module_put(cp->owner);
3056
3057 } else {
3058 state = cp->decomp_alloc(ccp_option, data->length);
3059 if (state) {
3060 ppp_recv_lock(ppp);
3061 ppp->rstate &= ~SC_DECOMP_RUN;
3062 ocomp = ppp->rcomp;
3063 ostate = ppp->rc_state;
3064 ppp->rcomp = cp;
3065 ppp->rc_state = state;
3066 ppp_recv_unlock(ppp);
3067 if (ostate) {
3068 ocomp->decomp_free(ostate);
3069 module_put(ocomp->owner);
3070 }
3071 err = 0;
3072 } else
3073 module_put(cp->owner);
3074 }
3075
3076 out:
3077 return err;
3078 }
3079
3080 /*
3081 * Look at a CCP packet and update our state accordingly.
3082 * We assume the caller has the xmit or recv path locked.
3083 */
3084 static void
ppp_ccp_peek(struct ppp * ppp,struct sk_buff * skb,int inbound)3085 ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
3086 {
3087 unsigned char *dp;
3088 int len;
3089
3090 if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
3091 return; /* no header */
3092 dp = skb->data + 2;
3093
3094 switch (CCP_CODE(dp)) {
3095 case CCP_CONFREQ:
3096
3097 /* A ConfReq starts negotiation of compression
3098 * in one direction of transmission,
3099 * and hence brings it down...but which way?
3100 *
3101 * Remember:
3102 * A ConfReq indicates what the sender would like to receive
3103 */
3104 if(inbound)
3105 /* He is proposing what I should send */
3106 ppp->xstate &= ~SC_COMP_RUN;
3107 else
3108 /* I am proposing to what he should send */
3109 ppp->rstate &= ~SC_DECOMP_RUN;
3110
3111 break;
3112
3113 case CCP_TERMREQ:
3114 case CCP_TERMACK:
3115 /*
3116 * CCP is going down, both directions of transmission
3117 */
3118 ppp->rstate &= ~SC_DECOMP_RUN;
3119 ppp->xstate &= ~SC_COMP_RUN;
3120 break;
3121
3122 case CCP_CONFACK:
3123 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
3124 break;
3125 len = CCP_LENGTH(dp);
3126 if (!pskb_may_pull(skb, len + 2))
3127 return; /* too short */
3128 dp += CCP_HDRLEN;
3129 len -= CCP_HDRLEN;
3130 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
3131 break;
3132 if (inbound) {
3133 /* we will start receiving compressed packets */
3134 if (!ppp->rc_state)
3135 break;
3136 if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
3137 ppp->file.index, 0, ppp->mru, ppp->debug)) {
3138 ppp->rstate |= SC_DECOMP_RUN;
3139 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
3140 }
3141 } else {
3142 /* we will soon start sending compressed packets */
3143 if (!ppp->xc_state)
3144 break;
3145 if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
3146 ppp->file.index, 0, ppp->debug))
3147 ppp->xstate |= SC_COMP_RUN;
3148 }
3149 break;
3150
3151 case CCP_RESETACK:
3152 /* reset the [de]compressor */
3153 if ((ppp->flags & SC_CCP_UP) == 0)
3154 break;
3155 if (inbound) {
3156 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
3157 ppp->rcomp->decomp_reset(ppp->rc_state);
3158 ppp->rstate &= ~SC_DC_ERROR;
3159 }
3160 } else {
3161 if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
3162 ppp->xcomp->comp_reset(ppp->xc_state);
3163 }
3164 break;
3165 }
3166 }
3167
3168 /* Free up compression resources. */
3169 static void
ppp_ccp_closed(struct ppp * ppp)3170 ppp_ccp_closed(struct ppp *ppp)
3171 {
3172 void *xstate, *rstate;
3173 struct compressor *xcomp, *rcomp;
3174
3175 ppp_lock(ppp);
3176 ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
3177 ppp->xstate = 0;
3178 xcomp = ppp->xcomp;
3179 xstate = ppp->xc_state;
3180 ppp->xc_state = NULL;
3181 ppp->rstate = 0;
3182 rcomp = ppp->rcomp;
3183 rstate = ppp->rc_state;
3184 ppp->rc_state = NULL;
3185 ppp_unlock(ppp);
3186
3187 if (xstate) {
3188 xcomp->comp_free(xstate);
3189 module_put(xcomp->owner);
3190 }
3191 if (rstate) {
3192 rcomp->decomp_free(rstate);
3193 module_put(rcomp->owner);
3194 }
3195 }
3196
3197 /* List of compressors. */
3198 static LIST_HEAD(compressor_list);
3199 static DEFINE_SPINLOCK(compressor_list_lock);
3200
3201 struct compressor_entry {
3202 struct list_head list;
3203 struct compressor *comp;
3204 };
3205
3206 static struct compressor_entry *
find_comp_entry(int proto)3207 find_comp_entry(int proto)
3208 {
3209 struct compressor_entry *ce;
3210
3211 list_for_each_entry(ce, &compressor_list, list) {
3212 if (ce->comp->compress_proto == proto)
3213 return ce;
3214 }
3215 return NULL;
3216 }
3217
3218 /* Register a compressor */
3219 int
ppp_register_compressor(struct compressor * cp)3220 ppp_register_compressor(struct compressor *cp)
3221 {
3222 struct compressor_entry *ce;
3223 int ret;
3224 spin_lock(&compressor_list_lock);
3225 ret = -EEXIST;
3226 if (find_comp_entry(cp->compress_proto))
3227 goto out;
3228 ret = -ENOMEM;
3229 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
3230 if (!ce)
3231 goto out;
3232 ret = 0;
3233 ce->comp = cp;
3234 list_add(&ce->list, &compressor_list);
3235 out:
3236 spin_unlock(&compressor_list_lock);
3237 return ret;
3238 }
3239
3240 /* Unregister a compressor */
3241 void
ppp_unregister_compressor(struct compressor * cp)3242 ppp_unregister_compressor(struct compressor *cp)
3243 {
3244 struct compressor_entry *ce;
3245
3246 spin_lock(&compressor_list_lock);
3247 ce = find_comp_entry(cp->compress_proto);
3248 if (ce && ce->comp == cp) {
3249 list_del(&ce->list);
3250 kfree(ce);
3251 }
3252 spin_unlock(&compressor_list_lock);
3253 }
3254
3255 /* Find a compressor. */
3256 static struct compressor *
find_compressor(int type)3257 find_compressor(int type)
3258 {
3259 struct compressor_entry *ce;
3260 struct compressor *cp = NULL;
3261
3262 spin_lock(&compressor_list_lock);
3263 ce = find_comp_entry(type);
3264 if (ce) {
3265 cp = ce->comp;
3266 if (!try_module_get(cp->owner))
3267 cp = NULL;
3268 }
3269 spin_unlock(&compressor_list_lock);
3270 return cp;
3271 }
3272
3273 /*
3274 * Miscelleneous stuff.
3275 */
3276
3277 static void
ppp_get_stats(struct ppp * ppp,struct ppp_stats * st)3278 ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
3279 {
3280 struct slcompress *vj = ppp->vj;
3281
3282 memset(st, 0, sizeof(*st));
3283 st->p.ppp_ipackets = ppp->stats64.rx_packets;
3284 st->p.ppp_ierrors = ppp->dev->stats.rx_errors;
3285 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
3286 st->p.ppp_opackets = ppp->stats64.tx_packets;
3287 st->p.ppp_oerrors = ppp->dev->stats.tx_errors;
3288 st->p.ppp_obytes = ppp->stats64.tx_bytes;
3289 if (!vj)
3290 return;
3291 st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
3292 st->vj.vjs_compressed = vj->sls_o_compressed;
3293 st->vj.vjs_searches = vj->sls_o_searches;
3294 st->vj.vjs_misses = vj->sls_o_misses;
3295 st->vj.vjs_errorin = vj->sls_i_error;
3296 st->vj.vjs_tossed = vj->sls_i_tossed;
3297 st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
3298 st->vj.vjs_compressedin = vj->sls_i_compressed;
3299 }
3300
3301 /*
3302 * Stuff for handling the lists of ppp units and channels
3303 * and for initialization.
3304 */
3305
3306 /*
3307 * Create a new ppp interface unit. Fails if it can't allocate memory
3308 * or if there is already a unit with the requested number.
3309 * unit == -1 means allocate a new number.
3310 */
ppp_create_interface(struct net * net,struct file * file,int * unit)3311 static int ppp_create_interface(struct net *net, struct file *file, int *unit)
3312 {
3313 struct ppp_config conf = {
3314 .file = file,
3315 .unit = *unit,
3316 .ifname_is_set = false,
3317 };
3318 struct net_device *dev;
3319 struct ppp *ppp;
3320 int err;
3321
3322 dev = alloc_netdev(sizeof(struct ppp), "", NET_NAME_ENUM, ppp_setup);
3323 if (!dev) {
3324 err = -ENOMEM;
3325 goto err;
3326 }
3327 dev_net_set(dev, net);
3328 dev->rtnl_link_ops = &ppp_link_ops;
3329
3330 rtnl_lock();
3331
3332 err = ppp_dev_configure(net, dev, &conf);
3333 if (err < 0)
3334 goto err_dev;
3335 ppp = netdev_priv(dev);
3336 *unit = ppp->file.index;
3337
3338 rtnl_unlock();
3339
3340 return 0;
3341
3342 err_dev:
3343 rtnl_unlock();
3344 free_netdev(dev);
3345 err:
3346 return err;
3347 }
3348
3349 /*
3350 * Initialize a ppp_file structure.
3351 */
3352 static void
init_ppp_file(struct ppp_file * pf,int kind)3353 init_ppp_file(struct ppp_file *pf, int kind)
3354 {
3355 pf->kind = kind;
3356 skb_queue_head_init(&pf->xq);
3357 skb_queue_head_init(&pf->rq);
3358 refcount_set(&pf->refcnt, 1);
3359 init_waitqueue_head(&pf->rwait);
3360 }
3361
3362 /*
3363 * Free the memory used by a ppp unit. This is only called once
3364 * there are no channels connected to the unit and no file structs
3365 * that reference the unit.
3366 */
ppp_destroy_interface(struct ppp * ppp)3367 static void ppp_destroy_interface(struct ppp *ppp)
3368 {
3369 atomic_dec(&ppp_unit_count);
3370
3371 if (!ppp->file.dead || ppp->n_channels) {
3372 /* "can't happen" */
3373 netdev_err(ppp->dev, "ppp: destroying ppp struct %p "
3374 "but dead=%d n_channels=%d !\n",
3375 ppp, ppp->file.dead, ppp->n_channels);
3376 return;
3377 }
3378
3379 ppp_ccp_closed(ppp);
3380 if (ppp->vj) {
3381 slhc_free(ppp->vj);
3382 ppp->vj = NULL;
3383 }
3384 skb_queue_purge(&ppp->file.xq);
3385 skb_queue_purge(&ppp->file.rq);
3386 #ifdef CONFIG_PPP_MULTILINK
3387 skb_queue_purge(&ppp->mrq);
3388 #endif /* CONFIG_PPP_MULTILINK */
3389 #ifdef CONFIG_PPP_FILTER
3390 if (ppp->pass_filter) {
3391 bpf_prog_destroy(ppp->pass_filter);
3392 ppp->pass_filter = NULL;
3393 }
3394
3395 if (ppp->active_filter) {
3396 bpf_prog_destroy(ppp->active_filter);
3397 ppp->active_filter = NULL;
3398 }
3399 #endif /* CONFIG_PPP_FILTER */
3400
3401 kfree_skb(ppp->xmit_pending);
3402 free_percpu(ppp->xmit_recursion);
3403
3404 free_netdev(ppp->dev);
3405 }
3406
3407 /*
3408 * Locate an existing ppp unit.
3409 * The caller should have locked the all_ppp_mutex.
3410 */
3411 static struct ppp *
ppp_find_unit(struct ppp_net * pn,int unit)3412 ppp_find_unit(struct ppp_net *pn, int unit)
3413 {
3414 return unit_find(&pn->units_idr, unit);
3415 }
3416
3417 /*
3418 * Locate an existing ppp channel.
3419 * The caller should have locked the all_channels_lock.
3420 * First we look in the new_channels list, then in the
3421 * all_channels list. If found in the new_channels list,
3422 * we move it to the all_channels list. This is for speed
3423 * when we have a lot of channels in use.
3424 */
3425 static struct channel *
ppp_find_channel(struct ppp_net * pn,int unit)3426 ppp_find_channel(struct ppp_net *pn, int unit)
3427 {
3428 struct channel *pch;
3429
3430 list_for_each_entry(pch, &pn->new_channels, list) {
3431 if (pch->file.index == unit) {
3432 list_move(&pch->list, &pn->all_channels);
3433 return pch;
3434 }
3435 }
3436
3437 list_for_each_entry(pch, &pn->all_channels, list) {
3438 if (pch->file.index == unit)
3439 return pch;
3440 }
3441
3442 return NULL;
3443 }
3444
3445 /*
3446 * Connect a PPP channel to a PPP interface unit.
3447 */
3448 static int
ppp_connect_channel(struct channel * pch,int unit)3449 ppp_connect_channel(struct channel *pch, int unit)
3450 {
3451 struct ppp *ppp;
3452 struct ppp_net *pn;
3453 int ret = -ENXIO;
3454 int hdrlen;
3455
3456 pn = ppp_pernet(pch->chan_net);
3457
3458 mutex_lock(&pn->all_ppp_mutex);
3459 ppp = ppp_find_unit(pn, unit);
3460 if (!ppp)
3461 goto out;
3462 write_lock_bh(&pch->upl);
3463 ret = -EINVAL;
3464 if (pch->ppp ||
3465 rcu_dereference_protected(pch->bridge, lockdep_is_held(&pch->upl)))
3466 goto outl;
3467
3468 ppp_lock(ppp);
3469 spin_lock_bh(&pch->downl);
3470 if (!pch->chan) {
3471 /* Don't connect unregistered channels */
3472 spin_unlock_bh(&pch->downl);
3473 ppp_unlock(ppp);
3474 ret = -ENOTCONN;
3475 goto outl;
3476 }
3477 spin_unlock_bh(&pch->downl);
3478 if (pch->file.hdrlen > ppp->file.hdrlen)
3479 ppp->file.hdrlen = pch->file.hdrlen;
3480 hdrlen = pch->file.hdrlen + 2; /* for protocol bytes */
3481 if (hdrlen > ppp->dev->hard_header_len)
3482 ppp->dev->hard_header_len = hdrlen;
3483 list_add_tail(&pch->clist, &ppp->channels);
3484 ++ppp->n_channels;
3485 pch->ppp = ppp;
3486 refcount_inc(&ppp->file.refcnt);
3487 ppp_unlock(ppp);
3488 ret = 0;
3489
3490 outl:
3491 write_unlock_bh(&pch->upl);
3492 out:
3493 mutex_unlock(&pn->all_ppp_mutex);
3494 return ret;
3495 }
3496
3497 /*
3498 * Disconnect a channel from its ppp unit.
3499 */
3500 static int
ppp_disconnect_channel(struct channel * pch)3501 ppp_disconnect_channel(struct channel *pch)
3502 {
3503 struct ppp *ppp;
3504 int err = -EINVAL;
3505
3506 write_lock_bh(&pch->upl);
3507 ppp = pch->ppp;
3508 pch->ppp = NULL;
3509 write_unlock_bh(&pch->upl);
3510 if (ppp) {
3511 /* remove it from the ppp unit's list */
3512 ppp_lock(ppp);
3513 list_del(&pch->clist);
3514 if (--ppp->n_channels == 0)
3515 wake_up_interruptible(&ppp->file.rwait);
3516 ppp_unlock(ppp);
3517 if (refcount_dec_and_test(&ppp->file.refcnt))
3518 ppp_destroy_interface(ppp);
3519 err = 0;
3520 }
3521 return err;
3522 }
3523
3524 /*
3525 * Free up the resources used by a ppp channel.
3526 */
ppp_destroy_channel(struct channel * pch)3527 static void ppp_destroy_channel(struct channel *pch)
3528 {
3529 put_net(pch->chan_net);
3530 pch->chan_net = NULL;
3531
3532 atomic_dec(&channel_count);
3533
3534 if (!pch->file.dead) {
3535 /* "can't happen" */
3536 pr_err("ppp: destroying undead channel %p !\n", pch);
3537 return;
3538 }
3539 skb_queue_purge(&pch->file.xq);
3540 skb_queue_purge(&pch->file.rq);
3541 kfree(pch);
3542 }
3543
ppp_cleanup(void)3544 static void __exit ppp_cleanup(void)
3545 {
3546 /* should never happen */
3547 if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
3548 pr_err("PPP: removing module but units remain!\n");
3549 rtnl_link_unregister(&ppp_link_ops);
3550 unregister_chrdev(PPP_MAJOR, "ppp");
3551 device_destroy(ppp_class, MKDEV(PPP_MAJOR, 0));
3552 class_destroy(ppp_class);
3553 unregister_pernet_device(&ppp_net_ops);
3554 }
3555
3556 /*
3557 * Units handling. Caller must protect concurrent access
3558 * by holding all_ppp_mutex
3559 */
3560
3561 /* associate pointer with specified number */
unit_set(struct idr * p,void * ptr,int n)3562 static int unit_set(struct idr *p, void *ptr, int n)
3563 {
3564 int unit;
3565
3566 unit = idr_alloc(p, ptr, n, n + 1, GFP_KERNEL);
3567 if (unit == -ENOSPC)
3568 unit = -EINVAL;
3569 return unit;
3570 }
3571
3572 /* get new free unit number and associate pointer with it */
unit_get(struct idr * p,void * ptr,int min)3573 static int unit_get(struct idr *p, void *ptr, int min)
3574 {
3575 return idr_alloc(p, ptr, min, 0, GFP_KERNEL);
3576 }
3577
3578 /* put unit number back to a pool */
unit_put(struct idr * p,int n)3579 static void unit_put(struct idr *p, int n)
3580 {
3581 idr_remove(p, n);
3582 }
3583
3584 /* get pointer associated with the number */
unit_find(struct idr * p,int n)3585 static void *unit_find(struct idr *p, int n)
3586 {
3587 return idr_find(p, n);
3588 }
3589
3590 /* Module/initialization stuff */
3591
3592 module_init(ppp_init);
3593 module_exit(ppp_cleanup);
3594
3595 EXPORT_SYMBOL(ppp_register_net_channel);
3596 EXPORT_SYMBOL(ppp_register_channel);
3597 EXPORT_SYMBOL(ppp_unregister_channel);
3598 EXPORT_SYMBOL(ppp_channel_index);
3599 EXPORT_SYMBOL(ppp_unit_number);
3600 EXPORT_SYMBOL(ppp_dev_name);
3601 EXPORT_SYMBOL(ppp_input);
3602 EXPORT_SYMBOL(ppp_input_error);
3603 EXPORT_SYMBOL(ppp_output_wakeup);
3604 EXPORT_SYMBOL(ppp_register_compressor);
3605 EXPORT_SYMBOL(ppp_unregister_compressor);
3606 MODULE_LICENSE("GPL");
3607 MODULE_ALIAS_CHARDEV(PPP_MAJOR, 0);
3608 MODULE_ALIAS_RTNL_LINK("ppp");
3609 MODULE_ALIAS("devname:ppp");
3610