blob: 13028833bee39e26641976dacb879b8ddf34c7a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Generic PPP layer for Linux.
3 *
4 * Copyright 1999-2002 Paul Mackerras.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * The generic PPP layer handles the PPP network interfaces, the
12 * /dev/ppp device, packet and VJ compression, and multilink.
13 * It talks to PPP `channels' via the interface defined in
14 * include/linux/ppp_channel.h. Channels provide the basic means for
15 * sending and receiving PPP frames on some kind of communications
16 * channel.
17 *
18 * Part of the code in this driver was inspired by the old async-only
19 * PPP driver, written by Michael Callahan and Al Longyear, and
20 * subsequently hacked by Paul Mackerras.
21 *
22 * ==FILEVERSION 20041108==
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010027#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kmod.h>
29#include <linux/init.h>
30#include <linux/list.h>
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -080031#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/netdevice.h>
33#include <linux/poll.h>
34#include <linux/ppp_defs.h>
35#include <linux/filter.h>
Paul Mackerrasbf7daeb2012-03-04 12:56:04 +000036#include <linux/ppp-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/ppp_channel.h>
38#include <linux/ppp-comp.h>
39#include <linux/skbuff.h>
40#include <linux/rtnetlink.h>
41#include <linux/if_arp.h>
42#include <linux/ip.h>
43#include <linux/tcp.h>
44#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/rwsem.h>
46#include <linux/stddef.h>
47#include <linux/device.h>
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080048#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Guillaume Nault96d934c2016-04-28 17:55:30 +020050#include <linux/file.h>
Changli Gao96545ae2011-01-06 13:37:36 +000051#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <net/slhc_vj.h>
Arun Sharma600634972011-07-26 16:09:06 -070053#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Cyrill Gorcunov273ec512009-01-21 15:55:35 -080055#include <linux/nsproxy.h>
56#include <net/net_namespace.h>
57#include <net/netns/generic.h>
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define PPP_VERSION "2.4.2"
60
61/*
62 * Network protocols we support.
63 */
64#define NP_IP 0 /* Internet Protocol V4 */
65#define NP_IPV6 1 /* Internet Protocol V6 */
66#define NP_IPX 2 /* IPX protocol */
67#define NP_AT 3 /* Appletalk protocol */
68#define NP_MPLS_UC 4 /* MPLS unicast */
69#define NP_MPLS_MC 5 /* MPLS multicast */
70#define NUM_NP 6 /* Number of NPs. */
71
72#define MPHDRLEN 6 /* multilink protocol header length */
73#define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
76 * An instance of /dev/ppp can be associated with either a ppp
77 * interface unit or a ppp channel. In both cases, file->private_data
78 * points to one of these.
79 */
80struct ppp_file {
81 enum {
82 INTERFACE=1, CHANNEL
83 } kind;
84 struct sk_buff_head xq; /* pppd transmit queue */
85 struct sk_buff_head rq; /* receive queue for pppd */
86 wait_queue_head_t rwait; /* for poll on reading /dev/ppp */
87 atomic_t refcnt; /* # refs (incl /dev/ppp attached) */
88 int hdrlen; /* space to leave for headers */
89 int index; /* interface unit / channel number */
90 int dead; /* unit/channel has been shut down */
91};
92
Robert P. J. Dayb385a142007-02-10 01:46:25 -080093#define PF_TO_X(pf, X) container_of(pf, X, file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
96#define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +000099 * Data structure to hold primary network stats for which
100 * we want to use 64 bit storage. Other network stats
101 * are stored in dev->stats of the ppp strucute.
102 */
103struct ppp_link_stats {
104 u64 rx_packets;
105 u64 tx_packets;
106 u64 rx_bytes;
107 u64 tx_bytes;
108};
109
110/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * Data structure describing one ppp unit.
112 * A ppp unit corresponds to a ppp network interface device
113 * and represents a multilink bundle.
114 * It can have 0 or more ppp channels connected to it.
115 */
116struct ppp {
117 struct ppp_file file; /* stuff for read/write/poll 0 */
118 struct file *owner; /* file that owns this unit 48 */
119 struct list_head channels; /* list of attached channels 4c */
120 int n_channels; /* how many channels are attached 54 */
121 spinlock_t rlock; /* lock for receive side 58 */
122 spinlock_t wlock; /* lock for transmit side 5c */
123 int 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 */
James Chapman739840d2008-12-17 12:02:16 +0000138 int closing; /* is device closing down? a8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#ifdef CONFIG_PPP_FILTER
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -0700148 struct bpf_prog *pass_filter; /* filter for packets to pass */
149 struct bpf_prog *active_filter; /* filter for pkts to reset idle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#endif /* CONFIG_PPP_FILTER */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800151 struct net *ppp_net; /* the net we belong to */
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +0000152 struct ppp_link_stats stats64; /* 64 bit network stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155/*
156 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
Matt Domschb3f9b922005-11-08 09:40:47 -0800157 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
158 * SC_MUST_COMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * 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 \
Matt Domschb3f9b922005-11-08 09:40:47 -0800164 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/*
167 * Private data structure for each channel.
168 * This includes the data structure used for multilink.
169 */
170struct 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 */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800177 struct net *chan_net; /* the net channel belongs to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct list_head clist; /* link in list of channels per unit */
179 rwlock_t upl; /* protects `ppp' */
180#ifdef CONFIG_PPP_MULTILINK
181 u8 avail; /* flag used in multilink stuff */
182 u8 had_frag; /* >= 1 fragments have been sent */
183 u32 lastseq; /* MP: last sequence # received */
Lennart Sorensenfa44a732010-01-18 12:59:55 +0000184 int speed; /* speed of the corresponding ppp channel*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#endif /* CONFIG_PPP_MULTILINK */
186};
187
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200188struct ppp_config {
189 struct file *file;
190 s32 unit;
Guillaume Nault96d934c2016-04-28 17:55:30 +0200191 bool ifname_is_set;
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
195 * SMP locking issues:
196 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
197 * list and the ppp.n_channels field, you need to take both locks
198 * before you modify them.
199 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
200 * channel.downl.
201 */
202
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000203static DEFINE_MUTEX(ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static atomic_t ppp_unit_count = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static atomic_t channel_count = ATOMIC_INIT(0);
206
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800207/* per-net private data for this module */
Alexey Dobriyanc7d03a02016-11-17 04:58:21 +0300208static unsigned int ppp_net_id __read_mostly;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800209struct ppp_net {
210 /* units to ppp mapping */
211 struct idr units_idr;
212
213 /*
214 * all_ppp_mutex protects the units_idr mapping.
215 * It also ensures that finding a ppp unit in the units_idr
216 * map and updating its file.refcnt field is atomic.
217 */
218 struct mutex all_ppp_mutex;
219
220 /* channels */
221 struct list_head all_channels;
222 struct list_head new_channels;
223 int last_channel_index;
224
225 /*
226 * all_channels_lock protects all_channels and
227 * last_channel_index, and the atomicity of find
228 * a channel and updating its file.refcnt field.
229 */
230 spinlock_t all_channels_lock;
231};
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/* Get the PPP protocol number from a skb */
Changli Gao96545ae2011-01-06 13:37:36 +0000234#define PPP_PROTO(skb) get_unaligned_be16((skb)->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/* We limit the length of ppp->file.rq to this (arbitrary) value */
237#define PPP_MAX_RQLEN 32
238
239/*
240 * Maximum number of multilink fragments queued up.
241 * This has to be large enough to cope with the maximum latency of
242 * the slowest channel relative to the others. Strictly it should
243 * depend on the number of channels and their characteristics.
244 */
245#define PPP_MP_MAX_QLEN 128
246
247/* Multilink header bits. */
248#define B 0x80 /* this fragment begins a packet */
249#define E 0x40 /* this fragment ends a packet */
250
251/* Compare multilink sequence numbers (assumed to be 32 bits wide) */
252#define seq_before(a, b) ((s32)((a) - (b)) < 0)
253#define seq_after(a, b) ((s32)((a) - (b)) > 0)
254
255/* Prototypes. */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800256static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
257 struct file *file, unsigned int cmd, unsigned long arg);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +0000258static void ppp_xmit_process(struct ppp *ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void ppp_send_frame(struct ppp *ppp, struct sk_buff *skb);
260static void ppp_push(struct ppp *ppp);
261static void ppp_channel_push(struct channel *pch);
262static void ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb,
263 struct channel *pch);
264static void ppp_receive_error(struct ppp *ppp);
265static void ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb);
266static struct sk_buff *ppp_decompress_frame(struct ppp *ppp,
267 struct sk_buff *skb);
268#ifdef CONFIG_PPP_MULTILINK
269static void ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb,
270 struct channel *pch);
271static void ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb);
272static struct sk_buff *ppp_mp_reconstruct(struct ppp *ppp);
273static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb);
274#endif /* CONFIG_PPP_MULTILINK */
275static int ppp_set_compress(struct ppp *ppp, unsigned long arg);
276static void ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound);
277static void ppp_ccp_closed(struct ppp *ppp);
278static struct compressor *find_compressor(int type);
279static void ppp_get_stats(struct ppp *ppp, struct ppp_stats *st);
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200280static int ppp_create_interface(struct net *net, struct file *file, int *unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281static void init_ppp_file(struct ppp_file *pf, int kind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static void ppp_destroy_interface(struct ppp *ppp);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800283static struct ppp *ppp_find_unit(struct ppp_net *pn, int unit);
284static struct channel *ppp_find_channel(struct ppp_net *pn, int unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static int ppp_connect_channel(struct channel *pch, int unit);
286static int ppp_disconnect_channel(struct channel *pch);
287static void ppp_destroy_channel(struct channel *pch);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -0800288static int unit_get(struct idr *p, void *ptr);
Cyrill Gorcunov85997572009-01-12 22:11:56 -0800289static int unit_set(struct idr *p, void *ptr, int n);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -0800290static void unit_put(struct idr *p, int n);
291static void *unit_find(struct idr *p, int n);
Guillaume Nault96d934c2016-04-28 17:55:30 +0200292static void ppp_setup(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Guillaume Nault79c441a2015-08-24 11:35:30 +0200294static const struct net_device_ops ppp_netdev_ops;
295
gregkh@suse.de56b22932005-03-23 10:01:41 -0800296static struct class *ppp_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800298/* per net-namespace data */
299static inline struct ppp_net *ppp_pernet(struct net *net)
300{
301 BUG_ON(!net);
302
303 return net_generic(net, ppp_net_id);
304}
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/* Translates a PPP protocol number to a NP index (NP == network protocol) */
307static inline int proto_to_npindex(int proto)
308{
309 switch (proto) {
310 case PPP_IP:
311 return NP_IP;
312 case PPP_IPV6:
313 return NP_IPV6;
314 case PPP_IPX:
315 return NP_IPX;
316 case PPP_AT:
317 return NP_AT;
318 case PPP_MPLS_UC:
319 return NP_MPLS_UC;
320 case PPP_MPLS_MC:
321 return NP_MPLS_MC;
322 }
323 return -EINVAL;
324}
325
326/* Translates an NP index into a PPP protocol number */
327static const int npindex_to_proto[NUM_NP] = {
328 PPP_IP,
329 PPP_IPV6,
330 PPP_IPX,
331 PPP_AT,
332 PPP_MPLS_UC,
333 PPP_MPLS_MC,
334};
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/* Translates an ethertype into an NP index */
337static inline int ethertype_to_npindex(int ethertype)
338{
339 switch (ethertype) {
340 case ETH_P_IP:
341 return NP_IP;
342 case ETH_P_IPV6:
343 return NP_IPV6;
344 case ETH_P_IPX:
345 return NP_IPX;
346 case ETH_P_PPPTALK:
347 case ETH_P_ATALK:
348 return NP_AT;
349 case ETH_P_MPLS_UC:
350 return NP_MPLS_UC;
351 case ETH_P_MPLS_MC:
352 return NP_MPLS_MC;
353 }
354 return -1;
355}
356
357/* Translates an NP index into an ethertype */
358static const int npindex_to_ethertype[NUM_NP] = {
359 ETH_P_IP,
360 ETH_P_IPV6,
361 ETH_P_IPX,
362 ETH_P_PPPTALK,
363 ETH_P_MPLS_UC,
364 ETH_P_MPLS_MC,
365};
366
367/*
368 * Locking shorthand.
369 */
370#define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
371#define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
372#define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
373#define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
374#define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
375 ppp_recv_lock(ppp); } while (0)
376#define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
377 ppp_xmit_unlock(ppp); } while (0)
378
379/*
380 * /dev/ppp device routines.
381 * The /dev/ppp device is used by pppd to control the ppp unit.
382 * It supports the read, write, ioctl and poll functions.
383 * Open instances of /dev/ppp can be in one of three states:
384 * unattached, attached to a ppp unit, or attached to a ppp channel.
385 */
386static int ppp_open(struct inode *inode, struct file *file)
387{
388 /*
389 * This could (should?) be enforced by the permissions on /dev/ppp.
390 */
391 if (!capable(CAP_NET_ADMIN))
392 return -EPERM;
393 return 0;
394}
395
Alan Coxf3ff8a42008-05-25 23:40:58 -0700396static int ppp_release(struct inode *unused, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 struct ppp_file *pf = file->private_data;
399 struct ppp *ppp;
400
Joe Perchescd228d52007-11-12 18:07:31 -0800401 if (pf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 file->private_data = NULL;
403 if (pf->kind == INTERFACE) {
404 ppp = PF_TO_PPP(pf);
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200405 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (file == ppp->owner)
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200407 unregister_netdevice(ppp->dev);
408 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410 if (atomic_dec_and_test(&pf->refcnt)) {
411 switch (pf->kind) {
412 case INTERFACE:
413 ppp_destroy_interface(PF_TO_PPP(pf));
414 break;
415 case CHANNEL:
416 ppp_destroy_channel(PF_TO_CHANNEL(pf));
417 break;
418 }
419 }
420 }
421 return 0;
422}
423
424static ssize_t ppp_read(struct file *file, char __user *buf,
425 size_t count, loff_t *ppos)
426{
427 struct ppp_file *pf = file->private_data;
428 DECLARE_WAITQUEUE(wait, current);
429 ssize_t ret;
430 struct sk_buff *skb = NULL;
Simon Arlott19937d02010-05-03 10:20:27 +0000431 struct iovec iov;
Al Viroba568402014-11-24 17:48:04 -0500432 struct iov_iter to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 ret = count;
435
Joe Perchescd228d52007-11-12 18:07:31 -0800436 if (!pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -ENXIO;
438 add_wait_queue(&pf->rwait, &wait);
439 for (;;) {
440 set_current_state(TASK_INTERRUPTIBLE);
441 skb = skb_dequeue(&pf->rq);
442 if (skb)
443 break;
444 ret = 0;
445 if (pf->dead)
446 break;
447 if (pf->kind == INTERFACE) {
448 /*
449 * Return 0 (EOF) on an interface that has no
450 * channels connected, unless it is looping
451 * network traffic (demand mode).
452 */
453 struct ppp *ppp = PF_TO_PPP(pf);
Guillaume Naultedffc212016-02-26 18:45:34 +0100454
455 ppp_recv_lock(ppp);
Joe Perches8e95a202009-12-03 07:58:21 +0000456 if (ppp->n_channels == 0 &&
Guillaume Naultedffc212016-02-26 18:45:34 +0100457 (ppp->flags & SC_LOOP_TRAFFIC) == 0) {
458 ppp_recv_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
Guillaume Naultedffc212016-02-26 18:45:34 +0100460 }
461 ppp_recv_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463 ret = -EAGAIN;
464 if (file->f_flags & O_NONBLOCK)
465 break;
466 ret = -ERESTARTSYS;
467 if (signal_pending(current))
468 break;
469 schedule();
470 }
471 set_current_state(TASK_RUNNING);
472 remove_wait_queue(&pf->rwait, &wait);
473
Joe Perchescd228d52007-11-12 18:07:31 -0800474 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 goto out;
476
477 ret = -EOVERFLOW;
478 if (skb->len > count)
479 goto outf;
480 ret = -EFAULT;
Simon Arlott19937d02010-05-03 10:20:27 +0000481 iov.iov_base = buf;
482 iov.iov_len = count;
Al Viroba568402014-11-24 17:48:04 -0500483 iov_iter_init(&to, READ, &iov, 1, count);
484 if (skb_copy_datagram_iter(skb, 0, &to, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 goto outf;
486 ret = skb->len;
487
488 outf:
489 kfree_skb(skb);
490 out:
491 return ret;
492}
493
494static ssize_t ppp_write(struct file *file, const char __user *buf,
495 size_t count, loff_t *ppos)
496{
497 struct ppp_file *pf = file->private_data;
498 struct sk_buff *skb;
499 ssize_t ret;
500
Joe Perchescd228d52007-11-12 18:07:31 -0800501 if (!pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return -ENXIO;
503 ret = -ENOMEM;
504 skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL);
Joe Perchescd228d52007-11-12 18:07:31 -0800505 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 goto out;
507 skb_reserve(skb, pf->hdrlen);
508 ret = -EFAULT;
509 if (copy_from_user(skb_put(skb, count), buf, count)) {
510 kfree_skb(skb);
511 goto out;
512 }
513
514 skb_queue_tail(&pf->xq, skb);
515
516 switch (pf->kind) {
517 case INTERFACE:
518 ppp_xmit_process(PF_TO_PPP(pf));
519 break;
520 case CHANNEL:
521 ppp_channel_push(PF_TO_CHANNEL(pf));
522 break;
523 }
524
525 ret = count;
526
527 out:
528 return ret;
529}
530
531/* No kernel lock - fine */
532static unsigned int ppp_poll(struct file *file, poll_table *wait)
533{
534 struct ppp_file *pf = file->private_data;
535 unsigned int mask;
536
Joe Perchescd228d52007-11-12 18:07:31 -0800537 if (!pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return 0;
539 poll_wait(file, &pf->rwait, wait);
540 mask = POLLOUT | POLLWRNORM;
Joe Perchescd228d52007-11-12 18:07:31 -0800541 if (skb_peek(&pf->rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 mask |= POLLIN | POLLRDNORM;
543 if (pf->dead)
544 mask |= POLLHUP;
545 else if (pf->kind == INTERFACE) {
546 /* see comment in ppp_read */
547 struct ppp *ppp = PF_TO_PPP(pf);
Guillaume Naultedffc212016-02-26 18:45:34 +0100548
549 ppp_recv_lock(ppp);
Joe Perches8e95a202009-12-03 07:58:21 +0000550 if (ppp->n_channels == 0 &&
551 (ppp->flags & SC_LOOP_TRAFFIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 mask |= POLLIN | POLLRDNORM;
Guillaume Naultedffc212016-02-26 18:45:34 +0100553 ppp_recv_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555
556 return mask;
557}
558
559#ifdef CONFIG_PPP_FILTER
560static int get_filter(void __user *arg, struct sock_filter **p)
561{
562 struct sock_fprog uprog;
563 struct sock_filter *code = NULL;
Christoph Schulz3916a312014-07-14 08:01:10 +0200564 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 if (copy_from_user(&uprog, arg, sizeof(uprog)))
567 return -EFAULT;
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (!uprog.len) {
570 *p = NULL;
571 return 0;
572 }
573
574 len = uprog.len * sizeof(struct sock_filter);
Julia Lawallb23d00e2010-05-21 22:18:59 +0000575 code = memdup_user(uprog.filter, len);
576 if (IS_ERR(code))
577 return PTR_ERR(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 *p = code;
580 return uprog.len;
581}
582#endif /* CONFIG_PPP_FILTER */
583
Alan Coxf3ff8a42008-05-25 23:40:58 -0700584static long ppp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100586 struct ppp_file *pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct ppp *ppp;
588 int err = -EFAULT, val, val2, i;
589 struct ppp_idle idle;
590 struct npioctl npi;
591 int unit, cflags;
592 struct slcompress *vj;
593 void __user *argp = (void __user *)arg;
594 int __user *p = argp;
595
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100596 mutex_lock(&ppp_mutex);
597
598 pf = file->private_data;
599 if (!pf) {
600 err = ppp_unattached_ioctl(current->nsproxy->net_ns,
601 pf, file, cmd, arg);
602 goto out;
603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (cmd == PPPIOCDETACH) {
606 /*
607 * We have to be careful here... if the file descriptor
608 * has been dup'd, we could have another process in the
609 * middle of a poll using the same file *, so we had
610 * better not free the interface data structures -
611 * instead we fail the ioctl. Even in this case, we
612 * shut down the interface if we are the owner of it.
613 * Actually, we should get rid of PPPIOCDETACH, userland
614 * (i.e. pppd) could achieve the same effect by closing
615 * this fd and reopening /dev/ppp.
616 */
617 err = -EINVAL;
618 if (pf->kind == INTERFACE) {
619 ppp = PF_TO_PPP(pf);
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200620 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (file == ppp->owner)
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200622 unregister_netdevice(ppp->dev);
623 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
Al Viro24dff962014-10-08 23:44:00 -0400625 if (atomic_long_read(&file->f_count) < 2) {
Alan Coxf3ff8a42008-05-25 23:40:58 -0700626 ppp_release(NULL, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 err = 0;
628 } else
David S. Millerb48f8c22011-01-20 22:44:36 -0800629 pr_warn("PPPIOCDETACH file->f_count=%ld\n",
630 atomic_long_read(&file->f_count));
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100631 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
634 if (pf->kind == CHANNEL) {
Alan Coxf3ff8a42008-05-25 23:40:58 -0700635 struct channel *pch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 struct ppp_channel *chan;
637
Alan Coxf3ff8a42008-05-25 23:40:58 -0700638 pch = PF_TO_CHANNEL(pf);
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 switch (cmd) {
641 case PPPIOCCONNECT:
642 if (get_user(unit, p))
643 break;
644 err = ppp_connect_channel(pch, unit);
645 break;
646
647 case PPPIOCDISCONN:
648 err = ppp_disconnect_channel(pch);
649 break;
650
651 default:
652 down_read(&pch->chan_sem);
653 chan = pch->chan;
654 err = -ENOTTY;
655 if (chan && chan->ops->ioctl)
656 err = chan->ops->ioctl(chan, cmd, arg);
657 up_read(&pch->chan_sem);
658 }
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100659 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
662 if (pf->kind != INTERFACE) {
663 /* can't happen */
David S. Millerb48f8c22011-01-20 22:44:36 -0800664 pr_err("PPP: not interface or channel??\n");
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100665 err = -EINVAL;
666 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668
669 ppp = PF_TO_PPP(pf);
670 switch (cmd) {
671 case PPPIOCSMRU:
672 if (get_user(val, p))
673 break;
674 ppp->mru = val;
675 err = 0;
676 break;
677
678 case PPPIOCSFLAGS:
679 if (get_user(val, p))
680 break;
681 ppp_lock(ppp);
682 cflags = ppp->flags & ~val;
Christoph Schulza9f559c2014-07-16 23:41:26 +0200683#ifdef CONFIG_PPP_MULTILINK
Christoph Schulzd762d032014-07-15 11:51:03 +0200684 if (!(ppp->flags & SC_MULTILINK) && (val & SC_MULTILINK))
685 ppp->nextseq = 0;
Christoph Schulza9f559c2014-07-16 23:41:26 +0200686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 ppp->flags = val & SC_FLAG_BITS;
688 ppp_unlock(ppp);
689 if (cflags & SC_CCP_OPEN)
690 ppp_ccp_closed(ppp);
691 err = 0;
692 break;
693
694 case PPPIOCGFLAGS:
695 val = ppp->flags | ppp->xstate | ppp->rstate;
696 if (put_user(val, p))
697 break;
698 err = 0;
699 break;
700
701 case PPPIOCSCOMPRESS:
702 err = ppp_set_compress(ppp, arg);
703 break;
704
705 case PPPIOCGUNIT:
706 if (put_user(ppp->file.index, p))
707 break;
708 err = 0;
709 break;
710
711 case PPPIOCSDEBUG:
712 if (get_user(val, p))
713 break;
714 ppp->debug = val;
715 err = 0;
716 break;
717
718 case PPPIOCGDEBUG:
719 if (put_user(ppp->debug, p))
720 break;
721 err = 0;
722 break;
723
724 case PPPIOCGIDLE:
725 idle.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
726 idle.recv_idle = (jiffies - ppp->last_recv) / HZ;
727 if (copy_to_user(argp, &idle, sizeof(idle)))
728 break;
729 err = 0;
730 break;
731
732 case PPPIOCSMAXCID:
733 if (get_user(val, p))
734 break;
735 val2 = 15;
736 if ((val >> 16) != 0) {
737 val2 = val >> 16;
738 val &= 0xffff;
739 }
740 vj = slhc_init(val2+1, val+1);
Ben Hutchings4ab42d72015-11-01 16:22:53 +0000741 if (IS_ERR(vj)) {
742 err = PTR_ERR(vj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 break;
744 }
745 ppp_lock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -0800746 if (ppp->vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 slhc_free(ppp->vj);
748 ppp->vj = vj;
749 ppp_unlock(ppp);
750 err = 0;
751 break;
752
753 case PPPIOCGNPMODE:
754 case PPPIOCSNPMODE:
755 if (copy_from_user(&npi, argp, sizeof(npi)))
756 break;
757 err = proto_to_npindex(npi.protocol);
758 if (err < 0)
759 break;
760 i = err;
761 if (cmd == PPPIOCGNPMODE) {
762 err = -EFAULT;
763 npi.mode = ppp->npmode[i];
764 if (copy_to_user(argp, &npi, sizeof(npi)))
765 break;
766 } else {
767 ppp->npmode[i] = npi.mode;
768 /* we may be able to transmit more packets now (??) */
769 netif_wake_queue(ppp->dev);
770 }
771 err = 0;
772 break;
773
774#ifdef CONFIG_PPP_FILTER
775 case PPPIOCSPASS:
776 {
777 struct sock_filter *code;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 err = get_filter(argp, &code);
780 if (err >= 0) {
Takashi Iwai5748eb82014-11-10 11:50:21 +0100781 struct bpf_prog *pass_filter = NULL;
Daniel Borkmannb1fcd352014-05-23 18:43:58 +0200782 struct sock_fprog_kern fprog = {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100783 .len = err,
784 .filter = code,
785 };
786
Takashi Iwai5748eb82014-11-10 11:50:21 +0100787 err = 0;
788 if (fprog.filter)
789 err = bpf_prog_create(&pass_filter, &fprog);
790 if (!err) {
791 ppp_lock(ppp);
792 if (ppp->pass_filter)
793 bpf_prog_destroy(ppp->pass_filter);
794 ppp->pass_filter = pass_filter;
795 ppp_unlock(ppp);
Christoph Schulzcc25eaa2014-07-16 22:10:29 +0200796 }
Daniel Borkmann568f1942014-03-28 18:58:23 +0100797 kfree(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799 break;
800 }
801 case PPPIOCSACTIVE:
802 {
803 struct sock_filter *code;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 err = get_filter(argp, &code);
806 if (err >= 0) {
Takashi Iwai5748eb82014-11-10 11:50:21 +0100807 struct bpf_prog *active_filter = NULL;
Daniel Borkmannb1fcd352014-05-23 18:43:58 +0200808 struct sock_fprog_kern fprog = {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100809 .len = err,
810 .filter = code,
811 };
812
Takashi Iwai5748eb82014-11-10 11:50:21 +0100813 err = 0;
814 if (fprog.filter)
815 err = bpf_prog_create(&active_filter, &fprog);
816 if (!err) {
817 ppp_lock(ppp);
818 if (ppp->active_filter)
819 bpf_prog_destroy(ppp->active_filter);
820 ppp->active_filter = active_filter;
821 ppp_unlock(ppp);
Christoph Schulzcc25eaa2014-07-16 22:10:29 +0200822 }
Daniel Borkmann568f1942014-03-28 18:58:23 +0100823 kfree(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825 break;
826 }
827#endif /* CONFIG_PPP_FILTER */
828
829#ifdef CONFIG_PPP_MULTILINK
830 case PPPIOCSMRRU:
831 if (get_user(val, p))
832 break;
833 ppp_recv_lock(ppp);
834 ppp->mrru = val;
835 ppp_recv_unlock(ppp);
836 err = 0;
837 break;
838#endif /* CONFIG_PPP_MULTILINK */
839
840 default:
841 err = -ENOTTY;
842 }
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100843
844out:
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000845 mutex_unlock(&ppp_mutex);
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return err;
848}
849
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800850static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
851 struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 int unit, err = -EFAULT;
854 struct ppp *ppp;
855 struct channel *chan;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800856 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 int __user *p = (int __user *)arg;
858
859 switch (cmd) {
860 case PPPIOCNEWUNIT:
861 /* Create a new ppp unit */
862 if (get_user(unit, p))
863 break;
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200864 err = ppp_create_interface(net, file, &unit);
865 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 break;
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 err = -EFAULT;
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200869 if (put_user(unit, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 break;
871 err = 0;
872 break;
873
874 case PPPIOCATTACH:
875 /* Attach to an existing ppp unit */
876 if (get_user(unit, p))
877 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 err = -ENXIO;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800879 pn = ppp_pernet(net);
880 mutex_lock(&pn->all_ppp_mutex);
881 ppp = ppp_find_unit(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -0800882 if (ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 atomic_inc(&ppp->file.refcnt);
884 file->private_data = &ppp->file;
885 err = 0;
886 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800887 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 break;
889
890 case PPPIOCATTCHAN:
891 if (get_user(unit, p))
892 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 err = -ENXIO;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800894 pn = ppp_pernet(net);
895 spin_lock_bh(&pn->all_channels_lock);
896 chan = ppp_find_channel(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -0800897 if (chan) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 atomic_inc(&chan->file.refcnt);
899 file->private_data = &chan->file;
900 err = 0;
901 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800902 spin_unlock_bh(&pn->all_channels_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 break;
904
905 default:
906 err = -ENOTTY;
907 }
Guillaume Naulte8e56ff2016-03-14 21:17:16 +0100908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return err;
910}
911
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800912static const struct file_operations ppp_device_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 .owner = THIS_MODULE,
914 .read = ppp_read,
915 .write = ppp_write,
916 .poll = ppp_poll,
Alan Coxf3ff8a42008-05-25 23:40:58 -0700917 .unlocked_ioctl = ppp_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 .open = ppp_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200919 .release = ppp_release,
920 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921};
922
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800923static __net_init int ppp_init_net(struct net *net)
924{
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000925 struct ppp_net *pn = net_generic(net, ppp_net_id);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800926
927 idr_init(&pn->units_idr);
928 mutex_init(&pn->all_ppp_mutex);
929
930 INIT_LIST_HEAD(&pn->all_channels);
931 INIT_LIST_HEAD(&pn->new_channels);
932
933 spin_lock_init(&pn->all_channels_lock);
934
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800935 return 0;
936}
937
938static __net_exit void ppp_exit_net(struct net *net)
939{
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000940 struct ppp_net *pn = net_generic(net, ppp_net_id);
Guillaume Nault79c441a2015-08-24 11:35:30 +0200941 struct net_device *dev;
942 struct net_device *aux;
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200943 struct ppp *ppp;
944 LIST_HEAD(list);
945 int id;
946
947 rtnl_lock();
Guillaume Nault79c441a2015-08-24 11:35:30 +0200948 for_each_netdev_safe(net, dev, aux) {
949 if (dev->netdev_ops == &ppp_netdev_ops)
950 unregister_netdevice_queue(dev, &list);
951 }
952
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200953 idr_for_each_entry(&pn->units_idr, ppp, id)
Guillaume Nault79c441a2015-08-24 11:35:30 +0200954 /* Skip devices already unregistered by previous loop */
955 if (!net_eq(dev_net(ppp->dev), net))
956 unregister_netdevice_queue(ppp->dev, &list);
Guillaume Nault8cb775b2015-08-14 10:42:56 +0200957
958 unregister_netdevice_many(&list);
959 rtnl_unlock();
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800960
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800961 idr_destroy(&pn->units_idr);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800962}
963
Alexey Dobriyan00129852009-02-09 18:05:16 -0800964static struct pernet_operations ppp_net_ops = {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800965 .init = ppp_init_net,
966 .exit = ppp_exit_net,
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000967 .id = &ppp_net_id,
968 .size = sizeof(struct ppp_net),
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800969};
970
Guillaume Nault96d934c2016-04-28 17:55:30 +0200971static int ppp_unit_register(struct ppp *ppp, int unit, bool ifname_is_set)
Guillaume Nault7d9f0b42016-04-28 17:55:28 +0200972{
973 struct ppp_net *pn = ppp_pernet(ppp->ppp_net);
974 int ret;
975
976 mutex_lock(&pn->all_ppp_mutex);
977
978 if (unit < 0) {
979 ret = unit_get(&pn->units_idr, ppp);
980 if (ret < 0)
981 goto err;
982 } else {
983 /* Caller asked for a specific unit number. Fail with -EEXIST
984 * if unavailable. For backward compatibility, return -EEXIST
985 * too if idr allocation fails; this makes pppd retry without
986 * requesting a specific unit number.
987 */
988 if (unit_find(&pn->units_idr, unit)) {
989 ret = -EEXIST;
990 goto err;
991 }
992 ret = unit_set(&pn->units_idr, ppp, unit);
993 if (ret < 0) {
994 /* Rewrite error for backward compatibility */
995 ret = -EEXIST;
996 goto err;
997 }
998 }
999 ppp->file.index = ret;
1000
Guillaume Nault96d934c2016-04-28 17:55:30 +02001001 if (!ifname_is_set)
1002 snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ppp->file.index);
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02001003
1004 ret = register_netdevice(ppp->dev);
1005 if (ret < 0)
1006 goto err_unit;
1007
1008 atomic_inc(&ppp_unit_count);
1009
1010 mutex_unlock(&pn->all_ppp_mutex);
1011
1012 return 0;
1013
1014err_unit:
1015 unit_put(&pn->units_idr, ppp->file.index);
1016err:
1017 mutex_unlock(&pn->all_ppp_mutex);
1018
1019 return ret;
1020}
1021
1022static int ppp_dev_configure(struct net *src_net, struct net_device *dev,
1023 const struct ppp_config *conf)
1024{
1025 struct ppp *ppp = netdev_priv(dev);
1026 int indx;
1027 int err;
1028
1029 ppp->dev = dev;
1030 ppp->ppp_net = src_net;
1031 ppp->mru = PPP_MRU;
1032 ppp->owner = conf->file;
1033
1034 init_ppp_file(&ppp->file, INTERFACE);
1035 ppp->file.hdrlen = PPP_HDRLEN - 2; /* don't count proto bytes */
1036
1037 for (indx = 0; indx < NUM_NP; ++indx)
1038 ppp->npmode[indx] = NPMODE_PASS;
1039 INIT_LIST_HEAD(&ppp->channels);
1040 spin_lock_init(&ppp->rlock);
1041 spin_lock_init(&ppp->wlock);
1042#ifdef CONFIG_PPP_MULTILINK
1043 ppp->minseq = -1;
1044 skb_queue_head_init(&ppp->mrq);
1045#endif /* CONFIG_PPP_MULTILINK */
1046#ifdef CONFIG_PPP_FILTER
1047 ppp->pass_filter = NULL;
1048 ppp->active_filter = NULL;
1049#endif /* CONFIG_PPP_FILTER */
1050
Guillaume Nault96d934c2016-04-28 17:55:30 +02001051 err = ppp_unit_register(ppp, conf->unit, conf->ifname_is_set);
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02001052 if (err < 0)
1053 return err;
1054
1055 conf->file->private_data = &ppp->file;
1056
1057 return 0;
1058}
1059
Guillaume Nault96d934c2016-04-28 17:55:30 +02001060static const struct nla_policy ppp_nl_policy[IFLA_PPP_MAX + 1] = {
1061 [IFLA_PPP_DEV_FD] = { .type = NLA_S32 },
1062};
1063
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001064static int ppp_nl_validate(struct nlattr *tb[], struct nlattr *data[],
1065 struct netlink_ext_ack *extack)
Guillaume Nault96d934c2016-04-28 17:55:30 +02001066{
1067 if (!data)
1068 return -EINVAL;
1069
1070 if (!data[IFLA_PPP_DEV_FD])
1071 return -EINVAL;
1072 if (nla_get_s32(data[IFLA_PPP_DEV_FD]) < 0)
1073 return -EBADF;
1074
1075 return 0;
1076}
1077
1078static int ppp_nl_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001079 struct nlattr *tb[], struct nlattr *data[],
1080 struct netlink_ext_ack *extack)
Guillaume Nault96d934c2016-04-28 17:55:30 +02001081{
1082 struct ppp_config conf = {
1083 .unit = -1,
1084 .ifname_is_set = true,
1085 };
1086 struct file *file;
1087 int err;
1088
1089 file = fget(nla_get_s32(data[IFLA_PPP_DEV_FD]));
1090 if (!file)
1091 return -EBADF;
1092
1093 /* rtnl_lock is already held here, but ppp_create_interface() locks
1094 * ppp_mutex before holding rtnl_lock. Using mutex_trylock() avoids
1095 * possible deadlock due to lock order inversion, at the cost of
1096 * pushing the problem back to userspace.
1097 */
1098 if (!mutex_trylock(&ppp_mutex)) {
1099 err = -EBUSY;
1100 goto out;
1101 }
1102
1103 if (file->f_op != &ppp_device_fops || file->private_data) {
1104 err = -EBADF;
1105 goto out_unlock;
1106 }
1107
1108 conf.file = file;
Guillaume Naultbb8082f2016-08-09 15:12:26 +02001109
1110 /* Don't use device name generated by the rtnetlink layer when ifname
1111 * isn't specified. Let ppp_dev_configure() set the device name using
1112 * the PPP unit identifer as suffix (i.e. ppp<unit_id>). This allows
1113 * userspace to infer the device name using to the PPPIOCGUNIT ioctl.
1114 */
1115 if (!tb[IFLA_IFNAME])
1116 conf.ifname_is_set = false;
1117
Guillaume Nault96d934c2016-04-28 17:55:30 +02001118 err = ppp_dev_configure(src_net, dev, &conf);
1119
1120out_unlock:
1121 mutex_unlock(&ppp_mutex);
1122out:
1123 fput(file);
1124
1125 return err;
1126}
1127
1128static void ppp_nl_dellink(struct net_device *dev, struct list_head *head)
1129{
1130 unregister_netdevice_queue(dev, head);
1131}
1132
1133static size_t ppp_nl_get_size(const struct net_device *dev)
1134{
1135 return 0;
1136}
1137
1138static int ppp_nl_fill_info(struct sk_buff *skb, const struct net_device *dev)
1139{
1140 return 0;
1141}
1142
1143static struct net *ppp_nl_get_link_net(const struct net_device *dev)
1144{
1145 struct ppp *ppp = netdev_priv(dev);
1146
1147 return ppp->ppp_net;
1148}
1149
1150static struct rtnl_link_ops ppp_link_ops __read_mostly = {
1151 .kind = "ppp",
1152 .maxtype = IFLA_PPP_MAX,
1153 .policy = ppp_nl_policy,
1154 .priv_size = sizeof(struct ppp),
1155 .setup = ppp_setup,
1156 .validate = ppp_nl_validate,
1157 .newlink = ppp_nl_newlink,
1158 .dellink = ppp_nl_dellink,
1159 .get_size = ppp_nl_get_size,
1160 .fill_info = ppp_nl_fill_info,
1161 .get_link_net = ppp_nl_get_link_net,
1162};
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164#define PPP_MAJOR 108
1165
1166/* Called at boot time if ppp is compiled into the kernel,
1167 or at module load time (from init_module) if compiled as a module. */
1168static int __init ppp_init(void)
1169{
1170 int err;
1171
David S. Millerb48f8c22011-01-20 22:44:36 -08001172 pr_info("PPP generic driver version " PPP_VERSION "\n");
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001173
Eric W. Biederman741a6fa2009-11-29 15:46:09 +00001174 err = register_pernet_device(&ppp_net_ops);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001175 if (err) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001176 pr_err("failed to register PPP pernet device (%d)\n", err);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001177 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001180 err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
1181 if (err) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001182 pr_err("failed to register PPP device (%d)\n", err);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001183 goto out_net;
1184 }
1185
1186 ppp_class = class_create(THIS_MODULE, "ppp");
1187 if (IS_ERR(ppp_class)) {
1188 err = PTR_ERR(ppp_class);
1189 goto out_chrdev;
1190 }
1191
Guillaume Nault96d934c2016-04-28 17:55:30 +02001192 err = rtnl_link_register(&ppp_link_ops);
1193 if (err) {
1194 pr_err("failed to register rtnetlink PPP handler\n");
1195 goto out_class;
1196 }
1197
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001198 /* not a big deal if we fail here :-) */
1199 device_create(ppp_class, NULL, MKDEV(PPP_MAJOR, 0), NULL, "ppp");
1200
1201 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Guillaume Nault96d934c2016-04-28 17:55:30 +02001203out_class:
1204 class_destroy(ppp_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205out_chrdev:
1206 unregister_chrdev(PPP_MAJOR, "ppp");
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001207out_net:
Eric W. Biederman741a6fa2009-11-29 15:46:09 +00001208 unregister_pernet_device(&ppp_net_ops);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001209out:
1210 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213/*
1214 * Network interface unit routines.
1215 */
Stephen Hemminger424efe92009-08-31 19:50:51 +00001216static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
1218{
Wang Chenc8019bf2008-11-20 04:24:17 -08001219 struct ppp *ppp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 int npi, proto;
1221 unsigned char *pp;
1222
1223 npi = ethertype_to_npindex(ntohs(skb->protocol));
1224 if (npi < 0)
1225 goto outf;
1226
1227 /* Drop, accept or reject the packet */
1228 switch (ppp->npmode[npi]) {
1229 case NPMODE_PASS:
1230 break;
1231 case NPMODE_QUEUE:
1232 /* it would be nice to have a way to tell the network
1233 system to queue this one up for later. */
1234 goto outf;
1235 case NPMODE_DROP:
1236 case NPMODE_ERROR:
1237 goto outf;
1238 }
1239
1240 /* Put the 2-byte PPP protocol number on the front,
1241 making sure there is room for the address and control fields. */
Herbert Xu7b797d52007-09-16 16:21:42 -07001242 if (skb_cow_head(skb, PPP_HDRLEN))
1243 goto outf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 pp = skb_push(skb, 2);
1246 proto = npindex_to_proto[npi];
Changli Gao96545ae2011-01-06 13:37:36 +00001247 put_unaligned_be16(proto, pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Guillaume Nault79c441a2015-08-24 11:35:30 +02001249 skb_scrub_packet(skb, !net_eq(ppp->ppp_net, dev_net(dev)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 skb_queue_tail(&ppp->file.xq, skb);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001251 ppp_xmit_process(ppp);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001252 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 outf:
1255 kfree_skb(skb);
Paulius Zaleckas6ceffd42009-02-23 04:59:43 +00001256 ++dev->stats.tx_dropped;
Patrick McHardy6ed10652009-06-23 06:03:08 +00001257 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260static int
1261ppp_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1262{
Wang Chenc8019bf2008-11-20 04:24:17 -08001263 struct ppp *ppp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 int err = -EFAULT;
1265 void __user *addr = (void __user *) ifr->ifr_ifru.ifru_data;
1266 struct ppp_stats stats;
1267 struct ppp_comp_stats cstats;
1268 char *vers;
1269
1270 switch (cmd) {
1271 case SIOCGPPPSTATS:
1272 ppp_get_stats(ppp, &stats);
1273 if (copy_to_user(addr, &stats, sizeof(stats)))
1274 break;
1275 err = 0;
1276 break;
1277
1278 case SIOCGPPPCSTATS:
1279 memset(&cstats, 0, sizeof(cstats));
Joe Perchescd228d52007-11-12 18:07:31 -08001280 if (ppp->xc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
Joe Perchescd228d52007-11-12 18:07:31 -08001282 if (ppp->rc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
1284 if (copy_to_user(addr, &cstats, sizeof(cstats)))
1285 break;
1286 err = 0;
1287 break;
1288
1289 case SIOCGPPPVER:
1290 vers = PPP_VERSION;
1291 if (copy_to_user(addr, vers, strlen(vers) + 1))
1292 break;
1293 err = 0;
1294 break;
1295
1296 default:
1297 err = -EINVAL;
1298 }
1299
1300 return err;
1301}
1302
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001303static void
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001304ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1305{
1306 struct ppp *ppp = netdev_priv(dev);
1307
1308 ppp_recv_lock(ppp);
1309 stats64->rx_packets = ppp->stats64.rx_packets;
1310 stats64->rx_bytes = ppp->stats64.rx_bytes;
1311 ppp_recv_unlock(ppp);
1312
1313 ppp_xmit_lock(ppp);
1314 stats64->tx_packets = ppp->stats64.tx_packets;
1315 stats64->tx_bytes = ppp->stats64.tx_bytes;
1316 ppp_xmit_unlock(ppp);
1317
1318 stats64->rx_errors = dev->stats.rx_errors;
1319 stats64->tx_errors = dev->stats.tx_errors;
1320 stats64->rx_dropped = dev->stats.rx_dropped;
1321 stats64->tx_dropped = dev->stats.tx_dropped;
1322 stats64->rx_length_errors = dev->stats.rx_length_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001323}
1324
Eric Dumazet303c07d2013-02-19 10:42:03 -08001325static int ppp_dev_init(struct net_device *dev)
1326{
Eric Dumazetd3fff6c2016-06-09 07:45:12 -07001327 netdev_lockdep_set_classes(dev);
Eric Dumazet303c07d2013-02-19 10:42:03 -08001328 return 0;
1329}
1330
Guillaume Nault8cb775b2015-08-14 10:42:56 +02001331static void ppp_dev_uninit(struct net_device *dev)
1332{
1333 struct ppp *ppp = netdev_priv(dev);
1334 struct ppp_net *pn = ppp_pernet(ppp->ppp_net);
1335
1336 ppp_lock(ppp);
1337 ppp->closing = 1;
1338 ppp_unlock(ppp);
1339
1340 mutex_lock(&pn->all_ppp_mutex);
1341 unit_put(&pn->units_idr, ppp->file.index);
1342 mutex_unlock(&pn->all_ppp_mutex);
1343
1344 ppp->owner = NULL;
1345
1346 ppp->file.dead = 1;
1347 wake_up_interruptible(&ppp->file.rwait);
1348}
1349
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001350static const struct net_device_ops ppp_netdev_ops = {
Eric Dumazet303c07d2013-02-19 10:42:03 -08001351 .ndo_init = ppp_dev_init,
Guillaume Nault8cb775b2015-08-14 10:42:56 +02001352 .ndo_uninit = ppp_dev_uninit,
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001353 .ndo_start_xmit = ppp_start_xmit,
1354 .ndo_do_ioctl = ppp_net_ioctl,
1355 .ndo_get_stats64 = ppp_get_stats64,
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001356};
1357
Guillaume Nault94dbffe2015-12-11 19:54:49 +01001358static struct device_type ppp_type = {
1359 .name = "ppp",
1360};
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362static void ppp_setup(struct net_device *dev)
1363{
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001364 dev->netdev_ops = &ppp_netdev_ops;
Guillaume Nault94dbffe2015-12-11 19:54:49 +01001365 SET_NETDEV_DEVTYPE(dev, &ppp_type);
1366
Guillaume Nault07712772016-08-27 22:22:51 +02001367 dev->features |= NETIF_F_LLTX;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 dev->hard_header_len = PPP_HDRLEN;
Paul Mackerrasbf7daeb2012-03-04 12:56:04 +00001370 dev->mtu = PPP_MRU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 dev->addr_len = 0;
1372 dev->tx_queue_len = 3;
1373 dev->type = ARPHRD_PPP;
1374 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Eric Dumazet02875872014-10-05 18:38:35 -07001375 netif_keep_dst(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
1378/*
1379 * Transmit-side routines.
1380 */
1381
Guillaume Nault55454a52016-08-27 22:22:32 +02001382/* Called to do any work queued up on the transmit side that can now be done */
1383static void __ppp_xmit_process(struct ppp *ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct sk_buff *skb;
1386
1387 ppp_xmit_lock(ppp);
James Chapman739840d2008-12-17 12:02:16 +00001388 if (!ppp->closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 ppp_push(ppp);
Joe Perches8e95a202009-12-03 07:58:21 +00001390 while (!ppp->xmit_pending &&
1391 (skb = skb_dequeue(&ppp->file.xq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 ppp_send_frame(ppp, skb);
1393 /* If there's no work left to do, tell the core net
1394 code that we can accept some more. */
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001395 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 netif_wake_queue(ppp->dev);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001397 else
1398 netif_stop_queue(ppp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
1400 ppp_xmit_unlock(ppp);
1401}
1402
Guillaume Nault55454a52016-08-27 22:22:32 +02001403static DEFINE_PER_CPU(int, ppp_xmit_recursion);
1404
1405static void ppp_xmit_process(struct ppp *ppp)
1406{
1407 local_bh_disable();
1408
1409 if (unlikely(__this_cpu_read(ppp_xmit_recursion)))
1410 goto err;
1411
1412 __this_cpu_inc(ppp_xmit_recursion);
1413 __ppp_xmit_process(ppp);
1414 __this_cpu_dec(ppp_xmit_recursion);
1415
1416 local_bh_enable();
1417
1418 return;
1419
1420err:
1421 local_bh_enable();
1422
1423 if (net_ratelimit())
1424 netdev_err(ppp->dev, "recursion detected\n");
1425}
1426
Matt Domschb3f9b922005-11-08 09:40:47 -08001427static inline struct sk_buff *
1428pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1429{
1430 struct sk_buff *new_skb;
1431 int len;
1432 int new_skb_size = ppp->dev->mtu +
1433 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1434 int compressor_skb_size = ppp->dev->mtu +
1435 ppp->xcomp->comp_extra + PPP_HDRLEN;
1436 new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1437 if (!new_skb) {
1438 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001439 netdev_err(ppp->dev, "PPP: no memory (comp pkt)\n");
Matt Domschb3f9b922005-11-08 09:40:47 -08001440 return NULL;
1441 }
1442 if (ppp->dev->hard_header_len > PPP_HDRLEN)
1443 skb_reserve(new_skb,
1444 ppp->dev->hard_header_len - PPP_HDRLEN);
1445
1446 /* compressor still expects A/C bytes in hdr */
1447 len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1448 new_skb->data, skb->len + 2,
1449 compressor_skb_size);
1450 if (len > 0 && (ppp->flags & SC_CCP_UP)) {
Eric Dumazet968d7012012-05-18 20:23:00 +00001451 consume_skb(skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001452 skb = new_skb;
1453 skb_put(skb, len);
1454 skb_pull(skb, 2); /* pull off A/C bytes */
1455 } else if (len == 0) {
1456 /* didn't compress, or CCP not up yet */
Eric Dumazet968d7012012-05-18 20:23:00 +00001457 consume_skb(new_skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001458 new_skb = skb;
1459 } else {
1460 /*
1461 * (len < 0)
1462 * MPPE requires that we do not send unencrypted
1463 * frames. The compressor will return -1 if we
1464 * should drop the frame. We cannot simply test
1465 * the compress_proto because MPPE and MPPC share
1466 * the same number.
1467 */
1468 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001469 netdev_err(ppp->dev, "ppp: compressor dropped pkt\n");
Matt Domschb3f9b922005-11-08 09:40:47 -08001470 kfree_skb(skb);
Eric Dumazet968d7012012-05-18 20:23:00 +00001471 consume_skb(new_skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001472 new_skb = NULL;
1473 }
1474 return new_skb;
1475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477/*
1478 * Compress and send a frame.
1479 * The caller should have locked the xmit path,
1480 * and xmit_pending should be 0.
1481 */
1482static void
1483ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1484{
1485 int proto = PPP_PROTO(skb);
1486 struct sk_buff *new_skb;
1487 int len;
1488 unsigned char *cp;
1489
1490 if (proto < 0x8000) {
1491#ifdef CONFIG_PPP_FILTER
1492 /* check if we should pass this packet */
1493 /* the filter instructions are constructed assuming
1494 a four-byte PPP header on each packet */
Johannes Bergd58ff352017-06-16 14:29:23 +02001495 *(u8 *)skb_push(skb, 2) = 1;
Joe Perches8e95a202009-12-03 07:58:21 +00001496 if (ppp->pass_filter &&
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001497 BPF_PROG_RUN(ppp->pass_filter, skb) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001499 netdev_printk(KERN_DEBUG, ppp->dev,
1500 "PPP: outbound frame "
1501 "not passed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 kfree_skb(skb);
1503 return;
1504 }
1505 /* if this packet passes the active filter, record the time */
Joe Perches8e95a202009-12-03 07:58:21 +00001506 if (!(ppp->active_filter &&
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001507 BPF_PROG_RUN(ppp->active_filter, skb) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 ppp->last_xmit = jiffies;
1509 skb_pull(skb, 2);
1510#else
1511 /* for data packets, record the time */
1512 ppp->last_xmit = jiffies;
1513#endif /* CONFIG_PPP_FILTER */
1514 }
1515
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001516 ++ppp->stats64.tx_packets;
1517 ppp->stats64.tx_bytes += skb->len - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 switch (proto) {
1520 case PPP_IP:
Joe Perchescd228d52007-11-12 18:07:31 -08001521 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 break;
1523 /* try to do VJ TCP header compression */
1524 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1525 GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001526 if (!new_skb) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001527 netdev_err(ppp->dev, "PPP: no memory (VJ comp pkt)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 goto drop;
1529 }
1530 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1531 cp = skb->data + 2;
1532 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1533 new_skb->data + 2, &cp,
1534 !(ppp->flags & SC_NO_TCP_CCID));
1535 if (cp == skb->data + 2) {
1536 /* didn't compress */
Eric Dumazet968d7012012-05-18 20:23:00 +00001537 consume_skb(new_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 } else {
1539 if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1540 proto = PPP_VJC_COMP;
1541 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1542 } else {
1543 proto = PPP_VJC_UNCOMP;
1544 cp[0] = skb->data[2];
1545 }
Eric Dumazet968d7012012-05-18 20:23:00 +00001546 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 skb = new_skb;
1548 cp = skb_put(skb, len + 2);
1549 cp[0] = 0;
1550 cp[1] = proto;
1551 }
1552 break;
1553
1554 case PPP_CCP:
1555 /* peek at outbound CCP frames */
1556 ppp_ccp_peek(ppp, skb, 0);
1557 break;
1558 }
1559
1560 /* try to do packet compression */
Joe Perches8e95a202009-12-03 07:58:21 +00001561 if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state &&
1562 proto != PPP_LCP && proto != PPP_CCP) {
Matt Domschb3f9b922005-11-08 09:40:47 -08001563 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1564 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001565 netdev_err(ppp->dev,
1566 "ppp: compression required but "
1567 "down - pkt dropped.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 goto drop;
1569 }
Matt Domschb3f9b922005-11-08 09:40:47 -08001570 skb = pad_compress_skb(ppp, skb);
1571 if (!skb)
1572 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574
1575 /*
1576 * If we are waiting for traffic (demand dialling),
1577 * queue it up for pppd to receive.
1578 */
1579 if (ppp->flags & SC_LOOP_TRAFFIC) {
1580 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1581 goto drop;
1582 skb_queue_tail(&ppp->file.rq, skb);
1583 wake_up_interruptible(&ppp->file.rwait);
1584 return;
1585 }
1586
1587 ppp->xmit_pending = skb;
1588 ppp_push(ppp);
1589 return;
1590
1591 drop:
Wei Yongjun1d2f8c92009-02-25 00:16:08 +00001592 kfree_skb(skb);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001593 ++ppp->dev->stats.tx_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594}
1595
1596/*
1597 * Try to send the frame in xmit_pending.
1598 * The caller should have the xmit path locked.
1599 */
1600static void
1601ppp_push(struct ppp *ppp)
1602{
1603 struct list_head *list;
1604 struct channel *pch;
1605 struct sk_buff *skb = ppp->xmit_pending;
1606
Joe Perchescd228d52007-11-12 18:07:31 -08001607 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return;
1609
1610 list = &ppp->channels;
1611 if (list_empty(list)) {
1612 /* nowhere to send the packet, just drop it */
1613 ppp->xmit_pending = NULL;
1614 kfree_skb(skb);
1615 return;
1616 }
1617
1618 if ((ppp->flags & SC_MULTILINK) == 0) {
1619 /* not doing multilink: send it down the first channel */
1620 list = list->next;
1621 pch = list_entry(list, struct channel, clist);
1622
Gao Feng97fcc192017-06-01 17:58:39 +08001623 spin_lock(&pch->downl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (pch->chan) {
1625 if (pch->chan->ops->start_xmit(pch->chan, skb))
1626 ppp->xmit_pending = NULL;
1627 } else {
1628 /* channel got unregistered */
1629 kfree_skb(skb);
1630 ppp->xmit_pending = NULL;
1631 }
Gao Feng97fcc192017-06-01 17:58:39 +08001632 spin_unlock(&pch->downl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 return;
1634 }
1635
1636#ifdef CONFIG_PPP_MULTILINK
1637 /* Multilink: fragment the packet over as many links
1638 as can take the packet at the moment. */
1639 if (!ppp_mp_explode(ppp, skb))
1640 return;
1641#endif /* CONFIG_PPP_MULTILINK */
1642
1643 ppp->xmit_pending = NULL;
1644 kfree_skb(skb);
1645}
1646
1647#ifdef CONFIG_PPP_MULTILINK
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001648static bool mp_protocol_compress __read_mostly = true;
1649module_param(mp_protocol_compress, bool, S_IRUGO | S_IWUSR);
1650MODULE_PARM_DESC(mp_protocol_compress,
1651 "compress protocol id in multilink fragments");
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653/*
1654 * Divide a packet to be transmitted into fragments and
1655 * send them out the individual links.
1656 */
1657static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1658{
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001659 int len, totlen;
1660 int i, bits, hdrlen, mtu;
1661 int flen;
1662 int navail, nfree, nzero;
1663 int nbigger;
1664 int totspeed;
1665 int totfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 unsigned char *p, *q;
1667 struct list_head *list;
1668 struct channel *pch;
1669 struct sk_buff *frag;
1670 struct ppp_channel *chan;
1671
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001672 totspeed = 0; /*total bitrate of the bundle*/
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001673 nfree = 0; /* # channels which have no packet already queued */
1674 navail = 0; /* total # of usable channels (not deregistered) */
1675 nzero = 0; /* number of channels with zero speed associated*/
1676 totfree = 0; /*total # of channels available and
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001677 *having no queued packets before
1678 *starting the fragmentation*/
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001681 i = 0;
1682 list_for_each_entry(pch, &ppp->channels, clist) {
Dan Carpenter34297692010-09-10 01:58:10 +00001683 if (pch->chan) {
1684 pch->avail = 1;
1685 navail++;
1686 pch->speed = pch->chan->speed;
1687 } else {
1688 pch->avail = 0;
1689 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001690 if (pch->avail) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001691 if (skb_queue_empty(&pch->file.xq) ||
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001692 !pch->had_frag) {
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001693 if (pch->speed == 0)
1694 nzero++;
1695 else
1696 totspeed += pch->speed;
1697
1698 pch->avail = 2;
1699 ++nfree;
1700 ++totfree;
1701 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001702 if (!pch->had_frag && i < ppp->nxchan)
1703 ppp->nxchan = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001705 ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001707 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001708 * Don't start sending this packet unless at least half of
1709 * the channels are free. This gives much better TCP
1710 * performance if we have a lot of channels.
Paul Mackerras516cd152005-05-12 19:47:12 -04001711 */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001712 if (nfree == 0 || nfree < navail / 2)
1713 return 0; /* can't take now, leave it in xmit_pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001715 /* Do protocol field compression */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001716 p = skb->data;
1717 len = skb->len;
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001718 if (*p == 0 && mp_protocol_compress) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 ++p;
1720 --len;
1721 }
1722
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001723 totlen = len;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001724 nbigger = len % nfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001726 /* skip to the channel after the one we last used
1727 and start at that one */
Domen Puncer81616c52005-09-10 00:27:04 -07001728 list = &ppp->channels;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001729 for (i = 0; i < ppp->nxchan; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 list = list->next;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001731 if (list == &ppp->channels) {
1732 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 break;
1734 }
1735 }
1736
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001737 /* create a fragment for each channel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 bits = B;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001739 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 list = list->next;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001741 if (list == &ppp->channels) {
1742 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 continue;
1744 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001745 pch = list_entry(list, struct channel, clist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 ++i;
1747 if (!pch->avail)
1748 continue;
1749
Paul Mackerras516cd152005-05-12 19:47:12 -04001750 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001751 * Skip this channel if it has a fragment pending already and
1752 * we haven't given a fragment to all of the free channels.
Paul Mackerras516cd152005-05-12 19:47:12 -04001753 */
1754 if (pch->avail == 1) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001755 if (nfree > 0)
Paul Mackerras516cd152005-05-12 19:47:12 -04001756 continue;
1757 } else {
Paul Mackerras516cd152005-05-12 19:47:12 -04001758 pch->avail = 1;
1759 }
1760
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 /* check the channel's mtu and whether it is still attached. */
Gao Feng97fcc192017-06-01 17:58:39 +08001762 spin_lock(&pch->downl);
Paul Mackerras516cd152005-05-12 19:47:12 -04001763 if (pch->chan == NULL) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001764 /* can't use this channel, it's being deregistered */
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001765 if (pch->speed == 0)
1766 nzero--;
1767 else
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001768 totspeed -= pch->speed;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001769
Gao Feng97fcc192017-06-01 17:58:39 +08001770 spin_unlock(&pch->downl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 pch->avail = 0;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001772 totlen = len;
1773 totfree--;
1774 nfree--;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001775 if (--navail == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 break;
1777 continue;
1778 }
1779
1780 /*
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001781 *if the channel speed is not set divide
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001782 *the packet evenly among the free channels;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001783 *otherwise divide it according to the speed
1784 *of the channel we are going to transmit on
1785 */
David S. Miller886f9fe2009-08-19 13:55:55 -07001786 flen = len;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001787 if (nfree > 0) {
1788 if (pch->speed == 0) {
Ben McKeegan536e00e2010-06-02 23:14:33 +00001789 flen = len/nfree;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001790 if (nbigger > 0) {
1791 flen++;
1792 nbigger--;
1793 }
1794 } else {
1795 flen = (((totfree - nzero)*(totlen + hdrlen*totfree)) /
1796 ((totspeed*totfree)/pch->speed)) - hdrlen;
1797 if (nbigger > 0) {
1798 flen += ((totfree - nzero)*pch->speed)/totspeed;
1799 nbigger -= ((totfree - nzero)*pch->speed)/
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001800 totspeed;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001801 }
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001802 }
Ben McKeegana53a8b52009-07-28 07:43:57 +00001803 nfree--;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001804 }
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001805
1806 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001807 *check if we are on the last channel or
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001808 *we exceded the length of the data to
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001809 *fragment
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
Ben McKeegana53a8b52009-07-28 07:43:57 +00001811 if ((nfree <= 0) || (flen > len))
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001812 flen = len;
1813 /*
1814 *it is not worth to tx on slow channels:
1815 *in that case from the resulting flen according to the
1816 *above formula will be equal or less than zero.
1817 *Skip the channel in this case
1818 */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001819 if (flen <= 0) {
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001820 pch->avail = 2;
Gao Feng97fcc192017-06-01 17:58:39 +08001821 spin_unlock(&pch->downl);
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001822 continue;
1823 }
1824
Henry Wong22e83a22011-09-18 13:41:49 +00001825 /*
1826 * hdrlen includes the 2-byte PPP protocol field, but the
1827 * MTU counts only the payload excluding the protocol field.
1828 * (RFC1661 Section 2)
1829 */
1830 mtu = pch->chan->mtu - (hdrlen - 2);
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001831 if (mtu < 4)
1832 mtu = 4;
Paul Mackerras516cd152005-05-12 19:47:12 -04001833 if (flen > mtu)
1834 flen = mtu;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001835 if (flen == len)
1836 bits |= E;
1837 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001838 if (!frag)
Paul Mackerras516cd152005-05-12 19:47:12 -04001839 goto noskb;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001840 q = skb_put(frag, flen + hdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001842 /* make the MP header */
Changli Gao96545ae2011-01-06 13:37:36 +00001843 put_unaligned_be16(PPP_MP, q);
Paul Mackerras516cd152005-05-12 19:47:12 -04001844 if (ppp->flags & SC_MP_XSHORTSEQ) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001845 q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
Paul Mackerras516cd152005-05-12 19:47:12 -04001846 q[3] = ppp->nxseq;
1847 } else {
1848 q[2] = bits;
1849 q[3] = ppp->nxseq >> 16;
1850 q[4] = ppp->nxseq >> 8;
1851 q[5] = ppp->nxseq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001853
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001854 memcpy(q + hdrlen, p, flen);
Paul Mackerras516cd152005-05-12 19:47:12 -04001855
1856 /* try to send it down the channel */
1857 chan = pch->chan;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001858 if (!skb_queue_empty(&pch->file.xq) ||
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001859 !chan->ops->start_xmit(chan, frag))
Paul Mackerras516cd152005-05-12 19:47:12 -04001860 skb_queue_tail(&pch->file.xq, frag);
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001861 pch->had_frag = 1;
Paul Mackerras516cd152005-05-12 19:47:12 -04001862 p += flen;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001863 len -= flen;
Paul Mackerras516cd152005-05-12 19:47:12 -04001864 ++ppp->nxseq;
1865 bits = 0;
Gao Feng97fcc192017-06-01 17:58:39 +08001866 spin_unlock(&pch->downl);
Paul Mackerras516cd152005-05-12 19:47:12 -04001867 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001868 ppp->nxchan = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 return 1;
1871
1872 noskb:
Gao Feng97fcc192017-06-01 17:58:39 +08001873 spin_unlock(&pch->downl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001875 netdev_err(ppp->dev, "PPP: no memory (fragment)\n");
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001876 ++ppp->dev->stats.tx_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 ++ppp->nxseq;
1878 return 1; /* abandon the frame */
1879}
1880#endif /* CONFIG_PPP_MULTILINK */
1881
Guillaume Nault55454a52016-08-27 22:22:32 +02001882/* Try to send data out on a channel */
1883static void __ppp_channel_push(struct channel *pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 struct sk_buff *skb;
1886 struct ppp *ppp;
1887
Gao Feng97fcc192017-06-01 17:58:39 +08001888 spin_lock(&pch->downl);
Joe Perchescd228d52007-11-12 18:07:31 -08001889 if (pch->chan) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001890 while (!skb_queue_empty(&pch->file.xq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 skb = skb_dequeue(&pch->file.xq);
1892 if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
1893 /* put the packet back and try again later */
1894 skb_queue_head(&pch->file.xq, skb);
1895 break;
1896 }
1897 }
1898 } else {
1899 /* channel got deregistered */
1900 skb_queue_purge(&pch->file.xq);
1901 }
Gao Feng97fcc192017-06-01 17:58:39 +08001902 spin_unlock(&pch->downl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 /* see if there is anything from the attached unit to be sent */
David S. Millerb03efcf2005-07-08 14:57:23 -07001904 if (skb_queue_empty(&pch->file.xq)) {
Gao Feng97fcc192017-06-01 17:58:39 +08001905 read_lock(&pch->upl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 ppp = pch->ppp;
Joe Perchescd228d52007-11-12 18:07:31 -08001907 if (ppp)
Guillaume Nault55454a52016-08-27 22:22:32 +02001908 __ppp_xmit_process(ppp);
Gao Feng97fcc192017-06-01 17:58:39 +08001909 read_unlock(&pch->upl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
1911}
1912
Guillaume Nault55454a52016-08-27 22:22:32 +02001913static void ppp_channel_push(struct channel *pch)
1914{
1915 local_bh_disable();
1916
1917 __this_cpu_inc(ppp_xmit_recursion);
1918 __ppp_channel_push(pch);
1919 __this_cpu_dec(ppp_xmit_recursion);
1920
1921 local_bh_enable();
1922}
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924/*
1925 * Receive-side routines.
1926 */
1927
David S. Millera00eac02010-10-05 01:36:52 -07001928struct ppp_mp_skb_parm {
1929 u32 sequence;
1930 u8 BEbits;
1931};
1932#define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934static inline void
1935ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1936{
1937 ppp_recv_lock(ppp);
James Chapman739840d2008-12-17 12:02:16 +00001938 if (!ppp->closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 ppp_receive_frame(ppp, skb, pch);
1940 else
1941 kfree_skb(skb);
1942 ppp_recv_unlock(ppp);
1943}
1944
1945void
1946ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
1947{
1948 struct channel *pch = chan->ppp;
1949 int proto;
1950
Simon Arlottea8420e2010-05-03 10:19:33 +00001951 if (!pch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 kfree_skb(skb);
1953 return;
1954 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 read_lock_bh(&pch->upl);
Simon Arlottea8420e2010-05-03 10:19:33 +00001957 if (!pskb_may_pull(skb, 2)) {
1958 kfree_skb(skb);
1959 if (pch->ppp) {
1960 ++pch->ppp->dev->stats.rx_length_errors;
1961 ppp_receive_error(pch->ppp);
1962 }
1963 goto done;
1964 }
1965
1966 proto = PPP_PROTO(skb);
Joe Perchescd228d52007-11-12 18:07:31 -08001967 if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 /* put it on the channel queue */
1969 skb_queue_tail(&pch->file.rq, skb);
1970 /* drop old frames if queue too long */
Joe Perches8e95a202009-12-03 07:58:21 +00001971 while (pch->file.rq.qlen > PPP_MAX_RQLEN &&
1972 (skb = skb_dequeue(&pch->file.rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 kfree_skb(skb);
1974 wake_up_interruptible(&pch->file.rwait);
1975 } else {
1976 ppp_do_recv(pch->ppp, skb, pch);
1977 }
Simon Arlottea8420e2010-05-03 10:19:33 +00001978
1979done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 read_unlock_bh(&pch->upl);
1981}
1982
1983/* Put a 0-length skb in the receive queue as an error indication */
1984void
1985ppp_input_error(struct ppp_channel *chan, int code)
1986{
1987 struct channel *pch = chan->ppp;
1988 struct sk_buff *skb;
1989
Joe Perchescd228d52007-11-12 18:07:31 -08001990 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return;
1992
1993 read_lock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08001994 if (pch->ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 skb = alloc_skb(0, GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001996 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 skb->len = 0; /* probably unnecessary */
1998 skb->cb[0] = code;
1999 ppp_do_recv(pch->ppp, skb, pch);
2000 }
2001 }
2002 read_unlock_bh(&pch->upl);
2003}
2004
2005/*
2006 * We come in here to process a received frame.
2007 * The receive side of the ppp unit is locked.
2008 */
2009static void
2010ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2011{
Simon Arlottea8420e2010-05-03 10:19:33 +00002012 /* note: a 0-length skb is used as an error indication */
2013 if (skb->len > 0) {
Tom Herbert3dfb0532015-04-20 14:10:05 -07002014 skb_checksum_complete_unset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015#ifdef CONFIG_PPP_MULTILINK
2016 /* XXX do channel-level decompression here */
2017 if (PPP_PROTO(skb) == PPP_MP)
2018 ppp_receive_mp_frame(ppp, skb, pch);
2019 else
2020#endif /* CONFIG_PPP_MULTILINK */
2021 ppp_receive_nonmp_frame(ppp, skb);
Simon Arlottea8420e2010-05-03 10:19:33 +00002022 } else {
2023 kfree_skb(skb);
2024 ppp_receive_error(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
2028static void
2029ppp_receive_error(struct ppp *ppp)
2030{
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002031 ++ppp->dev->stats.rx_errors;
Joe Perchescd228d52007-11-12 18:07:31 -08002032 if (ppp->vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 slhc_toss(ppp->vj);
2034}
2035
2036static void
2037ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
2038{
2039 struct sk_buff *ns;
2040 int proto, len, npi;
2041
2042 /*
2043 * Decompress the frame, if compressed.
2044 * Note that some decompressors need to see uncompressed frames
2045 * that come in as well as compressed frames.
2046 */
Joe Perches8e95a202009-12-03 07:58:21 +00002047 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) &&
2048 (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 skb = ppp_decompress_frame(ppp, skb);
2050
Matt Domschb3f9b922005-11-08 09:40:47 -08002051 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
2052 goto err;
2053
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 proto = PPP_PROTO(skb);
2055 switch (proto) {
2056 case PPP_VJC_COMP:
2057 /* decompress VJ compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002058 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 goto err;
2060
Herbert Xu2a38b772007-09-16 16:22:13 -07002061 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 /* copy to a new sk_buff with more tailroom */
2063 ns = dev_alloc_skb(skb->len + 128);
Joe Perchescd228d52007-11-12 18:07:31 -08002064 if (!ns) {
David S. Millerb48f8c22011-01-20 22:44:36 -08002065 netdev_err(ppp->dev, "PPP: no memory "
2066 "(VJ decomp)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 goto err;
2068 }
2069 skb_reserve(ns, 2);
2070 skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
Eric Dumazet968d7012012-05-18 20:23:00 +00002071 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 skb = ns;
2073 }
Herbert Xue3f749c2006-02-05 20:23:33 -08002074 else
2075 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
2078 if (len <= 0) {
David S. Millerb48f8c22011-01-20 22:44:36 -08002079 netdev_printk(KERN_DEBUG, ppp->dev,
2080 "PPP: VJ decompression error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 goto err;
2082 }
2083 len += 2;
2084 if (len > skb->len)
2085 skb_put(skb, len - skb->len);
2086 else if (len < skb->len)
2087 skb_trim(skb, len);
2088 proto = PPP_IP;
2089 break;
2090
2091 case PPP_VJC_UNCOMP:
Joe Perchescd228d52007-11-12 18:07:31 -08002092 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 goto err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 /* Until we fix the decompressor need to make sure
2096 * data portion is linear.
2097 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002098 if (!pskb_may_pull(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 goto err;
2100
2101 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
David S. Millerb48f8c22011-01-20 22:44:36 -08002102 netdev_err(ppp->dev, "PPP: VJ uncompressed error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 goto err;
2104 }
2105 proto = PPP_IP;
2106 break;
2107
2108 case PPP_CCP:
2109 ppp_ccp_peek(ppp, skb, 1);
2110 break;
2111 }
2112
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002113 ++ppp->stats64.rx_packets;
2114 ppp->stats64.rx_bytes += skb->len - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116 npi = proto_to_npindex(proto);
2117 if (npi < 0) {
2118 /* control or unknown frame - pass it to pppd */
2119 skb_queue_tail(&ppp->file.rq, skb);
2120 /* limit queue length by dropping old frames */
Joe Perches8e95a202009-12-03 07:58:21 +00002121 while (ppp->file.rq.qlen > PPP_MAX_RQLEN &&
2122 (skb = skb_dequeue(&ppp->file.rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 kfree_skb(skb);
2124 /* wake up any process polling or blocking on read */
2125 wake_up_interruptible(&ppp->file.rwait);
2126
2127 } else {
2128 /* network protocol frame - give it to the kernel */
2129
2130#ifdef CONFIG_PPP_FILTER
2131 /* check if the packet passes the pass and active filters */
2132 /* the filter instructions are constructed assuming
2133 a four-byte PPP header on each packet */
Herbert Xu2a38b772007-09-16 16:22:13 -07002134 if (ppp->pass_filter || ppp->active_filter) {
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +00002135 if (skb_unclone(skb, GFP_ATOMIC))
Herbert Xu2a38b772007-09-16 16:22:13 -07002136 goto err;
2137
Johannes Bergd58ff352017-06-16 14:29:23 +02002138 *(u8 *)skb_push(skb, 2) = 0;
Joe Perches8e95a202009-12-03 07:58:21 +00002139 if (ppp->pass_filter &&
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07002140 BPF_PROG_RUN(ppp->pass_filter, skb) == 0) {
Herbert Xu2a38b772007-09-16 16:22:13 -07002141 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08002142 netdev_printk(KERN_DEBUG, ppp->dev,
2143 "PPP: inbound frame "
2144 "not passed\n");
Herbert Xu2a38b772007-09-16 16:22:13 -07002145 kfree_skb(skb);
2146 return;
2147 }
Joe Perches8e95a202009-12-03 07:58:21 +00002148 if (!(ppp->active_filter &&
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07002149 BPF_PROG_RUN(ppp->active_filter, skb) == 0))
Herbert Xu2a38b772007-09-16 16:22:13 -07002150 ppp->last_recv = jiffies;
2151 __skb_pull(skb, 2);
2152 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153#endif /* CONFIG_PPP_FILTER */
Herbert Xu2a38b772007-09-16 16:22:13 -07002154 ppp->last_recv = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Joe Perches8e95a202009-12-03 07:58:21 +00002156 if ((ppp->dev->flags & IFF_UP) == 0 ||
2157 ppp->npmode[npi] != NPMODE_PASS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 kfree_skb(skb);
2159 } else {
Herbert Xucbb042f2006-03-20 22:43:56 -08002160 /* chop off protocol */
2161 skb_pull_rcsum(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 skb->dev = ppp->dev;
2163 skb->protocol = htons(npindex_to_ethertype[npi]);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07002164 skb_reset_mac_header(skb);
Guillaume Nault79c441a2015-08-24 11:35:30 +02002165 skb_scrub_packet(skb, !net_eq(ppp->ppp_net,
2166 dev_net(ppp->dev)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 }
2169 }
2170 return;
2171
2172 err:
2173 kfree_skb(skb);
2174 ppp_receive_error(ppp);
2175}
2176
2177static struct sk_buff *
2178ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
2179{
2180 int proto = PPP_PROTO(skb);
2181 struct sk_buff *ns;
2182 int len;
2183
2184 /* Until we fix all the decompressor's need to make sure
2185 * data portion is linear.
2186 */
2187 if (!pskb_may_pull(skb, skb->len))
2188 goto err;
2189
2190 if (proto == PPP_COMP) {
Konstantin Sharlaimov4b2a8fb2007-06-23 23:05:54 -07002191 int obuff_size;
2192
2193 switch(ppp->rcomp->compress_proto) {
2194 case CI_MPPE:
2195 obuff_size = ppp->mru + PPP_HDRLEN + 1;
2196 break;
2197 default:
2198 obuff_size = ppp->mru + PPP_HDRLEN;
2199 break;
2200 }
2201
2202 ns = dev_alloc_skb(obuff_size);
Joe Perchescd228d52007-11-12 18:07:31 -08002203 if (!ns) {
David S. Millerb48f8c22011-01-20 22:44:36 -08002204 netdev_err(ppp->dev, "ppp_decompress_frame: "
2205 "no memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 goto err;
2207 }
2208 /* the decompressor still expects the A/C bytes in the hdr */
2209 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
Konstantin Sharlaimov06c7af52007-08-21 00:12:44 -07002210 skb->len + 2, ns->data, obuff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (len < 0) {
2212 /* Pass the compressed frame to pppd as an
2213 error indication. */
2214 if (len == DECOMP_FATALERROR)
2215 ppp->rstate |= SC_DC_FERROR;
2216 kfree_skb(ns);
2217 goto err;
2218 }
2219
Eric Dumazet968d7012012-05-18 20:23:00 +00002220 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 skb = ns;
2222 skb_put(skb, len);
2223 skb_pull(skb, 2); /* pull off the A/C bytes */
2224
2225 } else {
2226 /* Uncompressed frame - pass to decompressor so it
2227 can update its dictionary if necessary. */
2228 if (ppp->rcomp->incomp)
2229 ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
2230 skb->len + 2);
2231 }
2232
2233 return skb;
2234
2235 err:
2236 ppp->rstate |= SC_DC_ERROR;
2237 ppp_receive_error(ppp);
2238 return skb;
2239}
2240
2241#ifdef CONFIG_PPP_MULTILINK
2242/*
2243 * Receive a multilink frame.
2244 * We put it on the reconstruction queue and then pull off
2245 * as many completed frames as we can.
2246 */
2247static void
2248ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
2249{
2250 u32 mask, seq;
Domen Puncer81616c52005-09-10 00:27:04 -07002251 struct channel *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
2253
Herbert Xu2a38b772007-09-16 16:22:13 -07002254 if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 goto err; /* no good, throw it away */
2256
2257 /* Decode sequence number and begin/end bits */
2258 if (ppp->flags & SC_MP_SHORTSEQ) {
2259 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
2260 mask = 0xfff;
2261 } else {
2262 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
2263 mask = 0xffffff;
2264 }
David S. Millera00eac02010-10-05 01:36:52 -07002265 PPP_MP_CB(skb)->BEbits = skb->data[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 skb_pull(skb, mphdrlen); /* pull off PPP and MP headers */
2267
2268 /*
2269 * Do protocol ID decompression on the first fragment of each packet.
2270 */
David S. Millera00eac02010-10-05 01:36:52 -07002271 if ((PPP_MP_CB(skb)->BEbits & B) && (skb->data[0] & 1))
Johannes Bergd58ff352017-06-16 14:29:23 +02002272 *(u8 *)skb_push(skb, 1) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274 /*
2275 * Expand sequence number to 32 bits, making it as close
2276 * as possible to ppp->minseq.
2277 */
2278 seq |= ppp->minseq & ~mask;
2279 if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
2280 seq += mask + 1;
2281 else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
2282 seq -= mask + 1; /* should never happen */
David S. Millera00eac02010-10-05 01:36:52 -07002283 PPP_MP_CB(skb)->sequence = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 pch->lastseq = seq;
2285
2286 /*
2287 * If this packet comes before the next one we were expecting,
2288 * drop it.
2289 */
2290 if (seq_before(seq, ppp->nextseq)) {
2291 kfree_skb(skb);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002292 ++ppp->dev->stats.rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 ppp_receive_error(ppp);
2294 return;
2295 }
2296
2297 /*
2298 * Reevaluate minseq, the minimum over all channels of the
2299 * last sequence number received on each channel. Because of
2300 * the increasing sequence number rule, we know that any fragment
2301 * before `minseq' which hasn't arrived is never going to arrive.
2302 * The list of channels can't change because we have the receive
2303 * side of the ppp unit locked.
2304 */
Domen Puncer81616c52005-09-10 00:27:04 -07002305 list_for_each_entry(ch, &ppp->channels, clist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (seq_before(ch->lastseq, seq))
2307 seq = ch->lastseq;
2308 }
2309 if (seq_before(ppp->minseq, seq))
2310 ppp->minseq = seq;
2311
2312 /* Put the fragment on the reconstruction queue */
2313 ppp_mp_insert(ppp, skb);
2314
2315 /* If the queue is getting long, don't wait any longer for packets
2316 before the start of the queue. */
David S. Miller38ce7c72008-09-23 01:17:18 -07002317 if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
stephen hemmingerc6b20d92010-06-01 06:05:46 +00002318 struct sk_buff *mskb = skb_peek(&ppp->mrq);
David S. Millera00eac02010-10-05 01:36:52 -07002319 if (seq_before(ppp->minseq, PPP_MP_CB(mskb)->sequence))
2320 ppp->minseq = PPP_MP_CB(mskb)->sequence;
David S. Miller38ce7c72008-09-23 01:17:18 -07002321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 /* Pull completed packets off the queue and receive them. */
Ben McKeegan82b3cc12009-11-16 03:44:25 +00002324 while ((skb = ppp_mp_reconstruct(ppp))) {
2325 if (pskb_may_pull(skb, 2))
2326 ppp_receive_nonmp_frame(ppp, skb);
2327 else {
2328 ++ppp->dev->stats.rx_length_errors;
2329 kfree_skb(skb);
2330 ppp_receive_error(ppp);
2331 }
2332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 return;
2335
2336 err:
2337 kfree_skb(skb);
2338 ppp_receive_error(ppp);
2339}
2340
2341/*
2342 * Insert a fragment on the MP reconstruction queue.
2343 * The queue is ordered by increasing sequence number.
2344 */
2345static void
2346ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
2347{
2348 struct sk_buff *p;
2349 struct sk_buff_head *list = &ppp->mrq;
David S. Millera00eac02010-10-05 01:36:52 -07002350 u32 seq = PPP_MP_CB(skb)->sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 /* N.B. we don't need to lock the list lock because we have the
2353 ppp unit receive-side lock. */
David S. Miller13c98212008-10-09 16:40:29 -07002354 skb_queue_walk(list, p) {
David S. Millera00eac02010-10-05 01:36:52 -07002355 if (seq_before(seq, PPP_MP_CB(p)->sequence))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 break;
David S. Miller13c98212008-10-09 16:40:29 -07002357 }
David S. Miller43f59c82008-09-21 21:28:51 -07002358 __skb_queue_before(list, p, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359}
2360
2361/*
2362 * Reconstruct a packet from the MP fragment queue.
2363 * We go through increasing sequence numbers until we find a
2364 * complete packet, or we get to the sequence number for a fragment
2365 * which hasn't arrived but might still do so.
2366 */
Stephen Hemminger3c582b32008-01-23 20:54:07 -08002367static struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368ppp_mp_reconstruct(struct ppp *ppp)
2369{
2370 u32 seq = ppp->nextseq;
2371 u32 minseq = ppp->minseq;
2372 struct sk_buff_head *list = &ppp->mrq;
David S. Millerd52344a72011-01-20 22:52:05 -08002373 struct sk_buff *p, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 struct sk_buff *head, *tail;
2375 struct sk_buff *skb = NULL;
2376 int lost = 0, len = 0;
2377
2378 if (ppp->mrru == 0) /* do nothing until mrru is set */
2379 return NULL;
2380 head = list->next;
2381 tail = NULL;
David S. Millerd52344a72011-01-20 22:52:05 -08002382 skb_queue_walk_safe(list, p, tmp) {
2383 again:
David S. Millera00eac02010-10-05 01:36:52 -07002384 if (seq_before(PPP_MP_CB(p)->sequence, seq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 /* this can't happen, anyway ignore the skb */
David S. Millerb48f8c22011-01-20 22:44:36 -08002386 netdev_err(ppp->dev, "ppp_mp_reconstruct bad "
2387 "seq %u < %u\n",
2388 PPP_MP_CB(p)->sequence, seq);
David S. Millerd52344a72011-01-20 22:52:05 -08002389 __skb_unlink(p, list);
2390 kfree_skb(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 continue;
2392 }
David S. Millera00eac02010-10-05 01:36:52 -07002393 if (PPP_MP_CB(p)->sequence != seq) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002394 u32 oldseq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 /* Fragment `seq' is missing. If it is after
2396 minseq, it might arrive later, so stop here. */
2397 if (seq_after(seq, minseq))
2398 break;
2399 /* Fragment `seq' is lost, keep going. */
2400 lost = 1;
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002401 oldseq = seq;
David S. Millera00eac02010-10-05 01:36:52 -07002402 seq = seq_before(minseq, PPP_MP_CB(p)->sequence)?
2403 minseq + 1: PPP_MP_CB(p)->sequence;
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002404
2405 if (ppp->debug & 1)
2406 netdev_printk(KERN_DEBUG, ppp->dev,
2407 "lost frag %u..%u\n",
2408 oldseq, seq-1);
2409
David S. Millerd52344a72011-01-20 22:52:05 -08002410 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
2412
2413 /*
2414 * At this point we know that all the fragments from
2415 * ppp->nextseq to seq are either present or lost.
2416 * Also, there are no complete packets in the queue
2417 * that have no missing fragments and end before this
2418 * fragment.
2419 */
2420
2421 /* B bit set indicates this fragment starts a packet */
David S. Millera00eac02010-10-05 01:36:52 -07002422 if (PPP_MP_CB(p)->BEbits & B) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 head = p;
2424 lost = 0;
2425 len = 0;
2426 }
2427
2428 len += p->len;
2429
2430 /* Got a complete packet yet? */
David S. Millera00eac02010-10-05 01:36:52 -07002431 if (lost == 0 && (PPP_MP_CB(p)->BEbits & E) &&
2432 (PPP_MP_CB(head)->BEbits & B)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (len > ppp->mrru + 2) {
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002434 ++ppp->dev->stats.rx_length_errors;
David S. Millerb48f8c22011-01-20 22:44:36 -08002435 netdev_printk(KERN_DEBUG, ppp->dev,
2436 "PPP: reconstructed packet"
2437 " is too long (%d)\n", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 } else {
2439 tail = p;
2440 break;
2441 }
2442 ppp->nextseq = seq + 1;
2443 }
2444
2445 /*
2446 * If this is the ending fragment of a packet,
2447 * and we haven't found a complete valid packet yet,
2448 * we can discard up to and including this fragment.
2449 */
David S. Millerd52344a72011-01-20 22:52:05 -08002450 if (PPP_MP_CB(p)->BEbits & E) {
2451 struct sk_buff *tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
David S. Millerd52344a72011-01-20 22:52:05 -08002453 skb_queue_reverse_walk_from_safe(list, p, tmp2) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002454 if (ppp->debug & 1)
2455 netdev_printk(KERN_DEBUG, ppp->dev,
2456 "discarding frag %u\n",
2457 PPP_MP_CB(p)->sequence);
David S. Millerd52344a72011-01-20 22:52:05 -08002458 __skb_unlink(p, list);
2459 kfree_skb(p);
2460 }
2461 head = skb_peek(list);
2462 if (!head)
2463 break;
2464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 ++seq;
2466 }
2467
2468 /* If we have a complete packet, copy it all into one skb. */
2469 if (tail != NULL) {
2470 /* If we have discarded any fragments,
2471 signal a receive error. */
David S. Millera00eac02010-10-05 01:36:52 -07002472 if (PPP_MP_CB(head)->sequence != ppp->nextseq) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002473 skb_queue_walk_safe(list, p, tmp) {
2474 if (p == head)
2475 break;
2476 if (ppp->debug & 1)
2477 netdev_printk(KERN_DEBUG, ppp->dev,
2478 "discarding frag %u\n",
2479 PPP_MP_CB(p)->sequence);
2480 __skb_unlink(p, list);
2481 kfree_skb(p);
2482 }
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08002485 netdev_printk(KERN_DEBUG, ppp->dev,
2486 " missed pkts %u..%u\n",
2487 ppp->nextseq,
2488 PPP_MP_CB(head)->sequence-1);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002489 ++ppp->dev->stats.rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 ppp_receive_error(ppp);
2491 }
2492
David S. Miller212bfb92011-01-20 22:46:07 -08002493 skb = head;
2494 if (head != tail) {
2495 struct sk_buff **fragpp = &skb_shinfo(skb)->frag_list;
2496 p = skb_queue_next(list, head);
2497 __skb_unlink(skb, list);
2498 skb_queue_walk_from_safe(list, p, tmp) {
2499 __skb_unlink(p, list);
2500 *fragpp = p;
2501 p->next = NULL;
2502 fragpp = &p->next;
2503
2504 skb->len += p->len;
2505 skb->data_len += p->len;
Eric Dumazet19c6c8f2012-02-13 04:23:24 +00002506 skb->truesize += p->truesize;
David S. Miller212bfb92011-01-20 22:46:07 -08002507
2508 if (p == tail)
2509 break;
2510 }
2511 } else {
2512 __skb_unlink(skb, list);
2513 }
2514
David S. Millera00eac02010-10-05 01:36:52 -07002515 ppp->nextseq = PPP_MP_CB(tail)->sequence + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
2517
2518 return skb;
2519}
2520#endif /* CONFIG_PPP_MULTILINK */
2521
2522/*
2523 * Channel interface.
2524 */
2525
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002526/* Create a new, unattached ppp channel. */
2527int ppp_register_channel(struct ppp_channel *chan)
2528{
2529 return ppp_register_net_channel(current->nsproxy->net_ns, chan);
2530}
2531
2532/* Create a new, unattached ppp channel for specified net. */
2533int ppp_register_net_channel(struct net *net, struct ppp_channel *chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
2535 struct channel *pch;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002536 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Panagiotis Issarisd4274b52006-08-15 16:01:07 -07002538 pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
Joe Perchescd228d52007-11-12 18:07:31 -08002539 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 return -ENOMEM;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002541
2542 pn = ppp_pernet(net);
2543
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 pch->ppp = NULL;
2545 pch->chan = chan;
Guillaume Nault1f461dc2016-03-23 16:38:55 +01002546 pch->chan_net = get_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 chan->ppp = pch;
2548 init_ppp_file(&pch->file, CHANNEL);
2549 pch->file.hdrlen = chan->hdrlen;
2550#ifdef CONFIG_PPP_MULTILINK
2551 pch->lastseq = -1;
2552#endif /* CONFIG_PPP_MULTILINK */
2553 init_rwsem(&pch->chan_sem);
2554 spin_lock_init(&pch->downl);
2555 rwlock_init(&pch->upl);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002556
2557 spin_lock_bh(&pn->all_channels_lock);
2558 pch->file.index = ++pn->last_channel_index;
2559 list_add(&pch->list, &pn->new_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 atomic_inc(&channel_count);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002561 spin_unlock_bh(&pn->all_channels_lock);
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return 0;
2564}
2565
2566/*
2567 * Return the index of a channel.
2568 */
2569int ppp_channel_index(struct ppp_channel *chan)
2570{
2571 struct channel *pch = chan->ppp;
2572
Joe Perchescd228d52007-11-12 18:07:31 -08002573 if (pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 return pch->file.index;
2575 return -1;
2576}
2577
2578/*
2579 * Return the PPP unit number to which a channel is connected.
2580 */
2581int ppp_unit_number(struct ppp_channel *chan)
2582{
2583 struct channel *pch = chan->ppp;
2584 int unit = -1;
2585
Joe Perchescd228d52007-11-12 18:07:31 -08002586 if (pch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 read_lock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08002588 if (pch->ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 unit = pch->ppp->file.index;
2590 read_unlock_bh(&pch->upl);
2591 }
2592 return unit;
2593}
2594
2595/*
James Chapman63f96072010-04-02 06:18:39 +00002596 * Return the PPP device interface name of a channel.
2597 */
2598char *ppp_dev_name(struct ppp_channel *chan)
2599{
2600 struct channel *pch = chan->ppp;
2601 char *name = NULL;
2602
2603 if (pch) {
2604 read_lock_bh(&pch->upl);
2605 if (pch->ppp && pch->ppp->dev)
2606 name = pch->ppp->dev->name;
2607 read_unlock_bh(&pch->upl);
2608 }
2609 return name;
2610}
2611
2612
2613/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 * Disconnect a channel from the generic layer.
2615 * This must be called in process context.
2616 */
2617void
2618ppp_unregister_channel(struct ppp_channel *chan)
2619{
2620 struct channel *pch = chan->ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002621 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Joe Perchescd228d52007-11-12 18:07:31 -08002623 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 return; /* should never happen */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 chan->ppp = NULL;
2627
2628 /*
2629 * This ensures that we have returned from any calls into the
2630 * the channel's start_xmit or ioctl routine before we proceed.
2631 */
2632 down_write(&pch->chan_sem);
2633 spin_lock_bh(&pch->downl);
2634 pch->chan = NULL;
2635 spin_unlock_bh(&pch->downl);
2636 up_write(&pch->chan_sem);
2637 ppp_disconnect_channel(pch);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002638
2639 pn = ppp_pernet(pch->chan_net);
2640 spin_lock_bh(&pn->all_channels_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 list_del(&pch->list);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002642 spin_unlock_bh(&pn->all_channels_lock);
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 pch->file.dead = 1;
2645 wake_up_interruptible(&pch->file.rwait);
2646 if (atomic_dec_and_test(&pch->file.refcnt))
2647 ppp_destroy_channel(pch);
2648}
2649
2650/*
2651 * Callback from a channel when it can accept more to transmit.
2652 * This should be called at BH/softirq level, not interrupt level.
2653 */
2654void
2655ppp_output_wakeup(struct ppp_channel *chan)
2656{
2657 struct channel *pch = chan->ppp;
2658
Joe Perchescd228d52007-11-12 18:07:31 -08002659 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 return;
2661 ppp_channel_push(pch);
2662}
2663
2664/*
2665 * Compression control.
2666 */
2667
2668/* Process the PPPIOCSCOMPRESS ioctl. */
2669static int
2670ppp_set_compress(struct ppp *ppp, unsigned long arg)
2671{
2672 int err;
2673 struct compressor *cp, *ocomp;
2674 struct ppp_option_data data;
2675 void *state, *ostate;
2676 unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
2677
2678 err = -EFAULT;
Guillaume Nault555d5b72016-02-23 13:59:43 +01002679 if (copy_from_user(&data, (void __user *) arg, sizeof(data)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 goto out;
Guillaume Nault555d5b72016-02-23 13:59:43 +01002681 if (data.length > CCP_MAX_OPTION_LENGTH)
2682 goto out;
2683 if (copy_from_user(ccp_option, (void __user *) data.ptr, data.length))
2684 goto out;
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 err = -EINVAL;
Guillaume Nault555d5b72016-02-23 13:59:43 +01002687 if (data.length < 2 || ccp_option[1] < 2 || ccp_option[1] > data.length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 goto out;
2689
Johannes Berga65e5d72008-07-09 10:28:38 +02002690 cp = try_then_request_module(
2691 find_compressor(ccp_option[0]),
2692 "ppp-compress-%d", ccp_option[0]);
Joe Perchescd228d52007-11-12 18:07:31 -08002693 if (!cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 goto out;
2695
2696 err = -ENOBUFS;
2697 if (data.transmit) {
2698 state = cp->comp_alloc(ccp_option, data.length);
Joe Perchescd228d52007-11-12 18:07:31 -08002699 if (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 ppp_xmit_lock(ppp);
2701 ppp->xstate &= ~SC_COMP_RUN;
2702 ocomp = ppp->xcomp;
2703 ostate = ppp->xc_state;
2704 ppp->xcomp = cp;
2705 ppp->xc_state = state;
2706 ppp_xmit_unlock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -08002707 if (ostate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 ocomp->comp_free(ostate);
2709 module_put(ocomp->owner);
2710 }
2711 err = 0;
2712 } else
2713 module_put(cp->owner);
2714
2715 } else {
2716 state = cp->decomp_alloc(ccp_option, data.length);
Joe Perchescd228d52007-11-12 18:07:31 -08002717 if (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 ppp_recv_lock(ppp);
2719 ppp->rstate &= ~SC_DECOMP_RUN;
2720 ocomp = ppp->rcomp;
2721 ostate = ppp->rc_state;
2722 ppp->rcomp = cp;
2723 ppp->rc_state = state;
2724 ppp_recv_unlock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -08002725 if (ostate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 ocomp->decomp_free(ostate);
2727 module_put(ocomp->owner);
2728 }
2729 err = 0;
2730 } else
2731 module_put(cp->owner);
2732 }
2733
2734 out:
2735 return err;
2736}
2737
2738/*
2739 * Look at a CCP packet and update our state accordingly.
2740 * We assume the caller has the xmit or recv path locked.
2741 */
2742static void
2743ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
2744{
2745 unsigned char *dp;
2746 int len;
2747
2748 if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
2749 return; /* no header */
2750 dp = skb->data + 2;
2751
2752 switch (CCP_CODE(dp)) {
2753 case CCP_CONFREQ:
2754
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002755 /* A ConfReq starts negotiation of compression
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 * in one direction of transmission,
2757 * and hence brings it down...but which way?
2758 *
2759 * Remember:
2760 * A ConfReq indicates what the sender would like to receive
2761 */
2762 if(inbound)
2763 /* He is proposing what I should send */
2764 ppp->xstate &= ~SC_COMP_RUN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002765 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 /* I am proposing to what he should send */
2767 ppp->rstate &= ~SC_DECOMP_RUN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002770
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 case CCP_TERMREQ:
2772 case CCP_TERMACK:
2773 /*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002774 * CCP is going down, both directions of transmission
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 */
2776 ppp->rstate &= ~SC_DECOMP_RUN;
2777 ppp->xstate &= ~SC_COMP_RUN;
2778 break;
2779
2780 case CCP_CONFACK:
2781 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
2782 break;
2783 len = CCP_LENGTH(dp);
2784 if (!pskb_may_pull(skb, len + 2))
2785 return; /* too short */
2786 dp += CCP_HDRLEN;
2787 len -= CCP_HDRLEN;
2788 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
2789 break;
2790 if (inbound) {
2791 /* we will start receiving compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002792 if (!ppp->rc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 break;
2794 if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
2795 ppp->file.index, 0, ppp->mru, ppp->debug)) {
2796 ppp->rstate |= SC_DECOMP_RUN;
2797 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
2798 }
2799 } else {
2800 /* we will soon start sending compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002801 if (!ppp->xc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 break;
2803 if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
2804 ppp->file.index, 0, ppp->debug))
2805 ppp->xstate |= SC_COMP_RUN;
2806 }
2807 break;
2808
2809 case CCP_RESETACK:
2810 /* reset the [de]compressor */
2811 if ((ppp->flags & SC_CCP_UP) == 0)
2812 break;
2813 if (inbound) {
2814 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
2815 ppp->rcomp->decomp_reset(ppp->rc_state);
2816 ppp->rstate &= ~SC_DC_ERROR;
2817 }
2818 } else {
2819 if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
2820 ppp->xcomp->comp_reset(ppp->xc_state);
2821 }
2822 break;
2823 }
2824}
2825
2826/* Free up compression resources. */
2827static void
2828ppp_ccp_closed(struct ppp *ppp)
2829{
2830 void *xstate, *rstate;
2831 struct compressor *xcomp, *rcomp;
2832
2833 ppp_lock(ppp);
2834 ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
2835 ppp->xstate = 0;
2836 xcomp = ppp->xcomp;
2837 xstate = ppp->xc_state;
2838 ppp->xc_state = NULL;
2839 ppp->rstate = 0;
2840 rcomp = ppp->rcomp;
2841 rstate = ppp->rc_state;
2842 ppp->rc_state = NULL;
2843 ppp_unlock(ppp);
2844
2845 if (xstate) {
2846 xcomp->comp_free(xstate);
2847 module_put(xcomp->owner);
2848 }
2849 if (rstate) {
2850 rcomp->decomp_free(rstate);
2851 module_put(rcomp->owner);
2852 }
2853}
2854
2855/* List of compressors. */
2856static LIST_HEAD(compressor_list);
2857static DEFINE_SPINLOCK(compressor_list_lock);
2858
2859struct compressor_entry {
2860 struct list_head list;
2861 struct compressor *comp;
2862};
2863
2864static struct compressor_entry *
2865find_comp_entry(int proto)
2866{
2867 struct compressor_entry *ce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Domen Puncer81616c52005-09-10 00:27:04 -07002869 list_for_each_entry(ce, &compressor_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 if (ce->comp->compress_proto == proto)
2871 return ce;
2872 }
2873 return NULL;
2874}
2875
2876/* Register a compressor */
2877int
2878ppp_register_compressor(struct compressor *cp)
2879{
2880 struct compressor_entry *ce;
2881 int ret;
2882 spin_lock(&compressor_list_lock);
2883 ret = -EEXIST;
Joe Perchescd228d52007-11-12 18:07:31 -08002884 if (find_comp_entry(cp->compress_proto))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 goto out;
2886 ret = -ENOMEM;
2887 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08002888 if (!ce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 goto out;
2890 ret = 0;
2891 ce->comp = cp;
2892 list_add(&ce->list, &compressor_list);
2893 out:
2894 spin_unlock(&compressor_list_lock);
2895 return ret;
2896}
2897
2898/* Unregister a compressor */
2899void
2900ppp_unregister_compressor(struct compressor *cp)
2901{
2902 struct compressor_entry *ce;
2903
2904 spin_lock(&compressor_list_lock);
2905 ce = find_comp_entry(cp->compress_proto);
Joe Perchescd228d52007-11-12 18:07:31 -08002906 if (ce && ce->comp == cp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 list_del(&ce->list);
2908 kfree(ce);
2909 }
2910 spin_unlock(&compressor_list_lock);
2911}
2912
2913/* Find a compressor. */
2914static struct compressor *
2915find_compressor(int type)
2916{
2917 struct compressor_entry *ce;
2918 struct compressor *cp = NULL;
2919
2920 spin_lock(&compressor_list_lock);
2921 ce = find_comp_entry(type);
Joe Perchescd228d52007-11-12 18:07:31 -08002922 if (ce) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 cp = ce->comp;
2924 if (!try_module_get(cp->owner))
2925 cp = NULL;
2926 }
2927 spin_unlock(&compressor_list_lock);
2928 return cp;
2929}
2930
2931/*
2932 * Miscelleneous stuff.
2933 */
2934
2935static void
2936ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
2937{
2938 struct slcompress *vj = ppp->vj;
2939
2940 memset(st, 0, sizeof(*st));
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002941 st->p.ppp_ipackets = ppp->stats64.rx_packets;
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002942 st->p.ppp_ierrors = ppp->dev->stats.rx_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002943 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
2944 st->p.ppp_opackets = ppp->stats64.tx_packets;
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002945 st->p.ppp_oerrors = ppp->dev->stats.tx_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002946 st->p.ppp_obytes = ppp->stats64.tx_bytes;
Joe Perchescd228d52007-11-12 18:07:31 -08002947 if (!vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 return;
2949 st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
2950 st->vj.vjs_compressed = vj->sls_o_compressed;
2951 st->vj.vjs_searches = vj->sls_o_searches;
2952 st->vj.vjs_misses = vj->sls_o_misses;
2953 st->vj.vjs_errorin = vj->sls_i_error;
2954 st->vj.vjs_tossed = vj->sls_i_tossed;
2955 st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
2956 st->vj.vjs_compressedin = vj->sls_i_compressed;
2957}
2958
2959/*
2960 * Stuff for handling the lists of ppp units and channels
2961 * and for initialization.
2962 */
2963
2964/*
2965 * Create a new ppp interface unit. Fails if it can't allocate memory
2966 * or if there is already a unit with the requested number.
2967 * unit == -1 means allocate a new number.
2968 */
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002969static int ppp_create_interface(struct net *net, struct file *file, int *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002971 struct ppp_config conf = {
2972 .file = file,
2973 .unit = *unit,
Guillaume Nault96d934c2016-04-28 17:55:30 +02002974 .ifname_is_set = false,
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002975 };
2976 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 struct ppp *ppp;
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002978 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Guillaume Nault69d97282015-12-11 19:54:52 +01002980 dev = alloc_netdev(sizeof(struct ppp), "", NET_NAME_ENUM, ppp_setup);
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002981 if (!dev) {
2982 err = -ENOMEM;
2983 goto err;
2984 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002985 dev_net_set(dev, net);
Guillaume Nault96d934c2016-04-28 17:55:30 +02002986 dev->rtnl_link_ops = &ppp_link_ops;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002987
Guillaume Nault58a89ec2015-09-24 12:54:01 +02002988 rtnl_lock();
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002989
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002990 err = ppp_dev_configure(net, dev, &conf);
2991 if (err < 0)
2992 goto err_dev;
2993 ppp = netdev_priv(dev);
2994 *unit = ppp->file.index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Guillaume Nault58a89ec2015-09-24 12:54:01 +02002996 rtnl_unlock();
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002997
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02002998 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02003000err_dev:
Guillaume Nault6faac632016-03-07 19:36:44 +01003001 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 free_netdev(dev);
Guillaume Nault7d9f0b42016-04-28 17:55:28 +02003003err:
3004 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005}
3006
3007/*
3008 * Initialize a ppp_file structure.
3009 */
3010static void
3011init_ppp_file(struct ppp_file *pf, int kind)
3012{
3013 pf->kind = kind;
3014 skb_queue_head_init(&pf->xq);
3015 skb_queue_head_init(&pf->rq);
3016 atomic_set(&pf->refcnt, 1);
3017 init_waitqueue_head(&pf->rwait);
3018}
3019
3020/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 * Free the memory used by a ppp unit. This is only called once
3022 * there are no channels connected to the unit and no file structs
3023 * that reference the unit.
3024 */
3025static void ppp_destroy_interface(struct ppp *ppp)
3026{
3027 atomic_dec(&ppp_unit_count);
3028
3029 if (!ppp->file.dead || ppp->n_channels) {
3030 /* "can't happen" */
David S. Millerb48f8c22011-01-20 22:44:36 -08003031 netdev_err(ppp->dev, "ppp: destroying ppp struct %p "
3032 "but dead=%d n_channels=%d !\n",
3033 ppp, ppp->file.dead, ppp->n_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return;
3035 }
3036
3037 ppp_ccp_closed(ppp);
3038 if (ppp->vj) {
3039 slhc_free(ppp->vj);
3040 ppp->vj = NULL;
3041 }
3042 skb_queue_purge(&ppp->file.xq);
3043 skb_queue_purge(&ppp->file.rq);
3044#ifdef CONFIG_PPP_MULTILINK
3045 skb_queue_purge(&ppp->mrq);
3046#endif /* CONFIG_PPP_MULTILINK */
3047#ifdef CONFIG_PPP_FILTER
Daniel Borkmann568f1942014-03-28 18:58:23 +01003048 if (ppp->pass_filter) {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07003049 bpf_prog_destroy(ppp->pass_filter);
Daniel Borkmann568f1942014-03-28 18:58:23 +01003050 ppp->pass_filter = NULL;
3051 }
3052
3053 if (ppp->active_filter) {
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07003054 bpf_prog_destroy(ppp->active_filter);
Daniel Borkmann568f1942014-03-28 18:58:23 +01003055 ppp->active_filter = NULL;
3056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057#endif /* CONFIG_PPP_FILTER */
3058
Wei Yongjun1d2f8c92009-02-25 00:16:08 +00003059 kfree_skb(ppp->xmit_pending);
G. Liakhovetski165de5b2007-03-25 19:04:09 -07003060
James Chapman739840d2008-12-17 12:02:16 +00003061 free_netdev(ppp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062}
3063
3064/*
3065 * Locate an existing ppp unit.
Arjan van de Ven8ed965d2006-03-23 03:00:21 -08003066 * The caller should have locked the all_ppp_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 */
3068static struct ppp *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003069ppp_find_unit(struct ppp_net *pn, int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070{
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003071 return unit_find(&pn->units_idr, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072}
3073
3074/*
3075 * Locate an existing ppp channel.
3076 * The caller should have locked the all_channels_lock.
3077 * First we look in the new_channels list, then in the
3078 * all_channels list. If found in the new_channels list,
3079 * we move it to the all_channels list. This is for speed
3080 * when we have a lot of channels in use.
3081 */
3082static struct channel *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003083ppp_find_channel(struct ppp_net *pn, int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 struct channel *pch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003087 list_for_each_entry(pch, &pn->new_channels, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 if (pch->file.index == unit) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003089 list_move(&pch->list, &pn->all_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 return pch;
3091 }
3092 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003093
3094 list_for_each_entry(pch, &pn->all_channels, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 if (pch->file.index == unit)
3096 return pch;
3097 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 return NULL;
3100}
3101
3102/*
3103 * Connect a PPP channel to a PPP interface unit.
3104 */
3105static int
3106ppp_connect_channel(struct channel *pch, int unit)
3107{
3108 struct ppp *ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003109 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 int ret = -ENXIO;
3111 int hdrlen;
3112
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003113 pn = ppp_pernet(pch->chan_net);
3114
3115 mutex_lock(&pn->all_ppp_mutex);
3116 ppp = ppp_find_unit(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -08003117 if (!ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 goto out;
3119 write_lock_bh(&pch->upl);
3120 ret = -EINVAL;
Joe Perchescd228d52007-11-12 18:07:31 -08003121 if (pch->ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 goto outl;
3123
3124 ppp_lock(ppp);
3125 if (pch->file.hdrlen > ppp->file.hdrlen)
3126 ppp->file.hdrlen = pch->file.hdrlen;
3127 hdrlen = pch->file.hdrlen + 2; /* for protocol bytes */
James Chapman739840d2008-12-17 12:02:16 +00003128 if (hdrlen > ppp->dev->hard_header_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 ppp->dev->hard_header_len = hdrlen;
3130 list_add_tail(&pch->clist, &ppp->channels);
3131 ++ppp->n_channels;
3132 pch->ppp = ppp;
3133 atomic_inc(&ppp->file.refcnt);
3134 ppp_unlock(ppp);
3135 ret = 0;
3136
3137 outl:
3138 write_unlock_bh(&pch->upl);
3139 out:
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003140 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 return ret;
3142}
3143
3144/*
3145 * Disconnect a channel from its ppp unit.
3146 */
3147static int
3148ppp_disconnect_channel(struct channel *pch)
3149{
3150 struct ppp *ppp;
3151 int err = -EINVAL;
3152
3153 write_lock_bh(&pch->upl);
3154 ppp = pch->ppp;
3155 pch->ppp = NULL;
3156 write_unlock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08003157 if (ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 /* remove it from the ppp unit's list */
3159 ppp_lock(ppp);
3160 list_del(&pch->clist);
3161 if (--ppp->n_channels == 0)
3162 wake_up_interruptible(&ppp->file.rwait);
3163 ppp_unlock(ppp);
3164 if (atomic_dec_and_test(&ppp->file.refcnt))
3165 ppp_destroy_interface(ppp);
3166 err = 0;
3167 }
3168 return err;
3169}
3170
3171/*
3172 * Free up the resources used by a ppp channel.
3173 */
3174static void ppp_destroy_channel(struct channel *pch)
3175{
WANG Cong205e1e22016-07-05 22:12:36 -07003176 put_net(pch->chan_net);
3177 pch->chan_net = NULL;
3178
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 atomic_dec(&channel_count);
3180
3181 if (!pch->file.dead) {
3182 /* "can't happen" */
David S. Millerb48f8c22011-01-20 22:44:36 -08003183 pr_err("ppp: destroying undead channel %p !\n", pch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 return;
3185 }
3186 skb_queue_purge(&pch->file.xq);
3187 skb_queue_purge(&pch->file.rq);
3188 kfree(pch);
3189}
3190
3191static void __exit ppp_cleanup(void)
3192{
3193 /* should never happen */
3194 if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
David S. Millerb48f8c22011-01-20 22:44:36 -08003195 pr_err("PPP: removing module but units remain!\n");
Guillaume Nault96d934c2016-04-28 17:55:30 +02003196 rtnl_link_unregister(&ppp_link_ops);
Akinobu Mita68fc4fa2007-07-19 01:47:50 -07003197 unregister_chrdev(PPP_MAJOR, "ppp");
Greg Kroah-Hartman9a6a2a52006-09-12 17:00:10 +02003198 device_destroy(ppp_class, MKDEV(PPP_MAJOR, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08003199 class_destroy(ppp_class);
Eric W. Biederman741a6fa2009-11-29 15:46:09 +00003200 unregister_pernet_device(&ppp_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202
3203/*
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003204 * Units handling. Caller must protect concurrent access
3205 * by holding all_ppp_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00003208/* associate pointer with specified number */
3209static int unit_set(struct idr *p, void *ptr, int n)
3210{
3211 int unit;
3212
Tejun Heo2fa532c2013-02-27 17:04:36 -08003213 unit = idr_alloc(p, ptr, n, n + 1, GFP_KERNEL);
3214 if (unit == -ENOSPC)
3215 unit = -EINVAL;
Cyrill Gorcunov85997572009-01-12 22:11:56 -08003216 return unit;
3217}
3218
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003219/* get new free unit number and associate pointer with it */
3220static int unit_get(struct idr *p, void *ptr)
3221{
Tejun Heo2fa532c2013-02-27 17:04:36 -08003222 return idr_alloc(p, ptr, 0, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223}
3224
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003225/* put unit number back to a pool */
3226static void unit_put(struct idr *p, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227{
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003228 idr_remove(p, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229}
3230
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003231/* get pointer associated with the number */
3232static void *unit_find(struct idr *p, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233{
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003234 return idr_find(p, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
3237/* Module/initialization stuff */
3238
3239module_init(ppp_init);
3240module_exit(ppp_cleanup);
3241
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003242EXPORT_SYMBOL(ppp_register_net_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243EXPORT_SYMBOL(ppp_register_channel);
3244EXPORT_SYMBOL(ppp_unregister_channel);
3245EXPORT_SYMBOL(ppp_channel_index);
3246EXPORT_SYMBOL(ppp_unit_number);
James Chapman63f96072010-04-02 06:18:39 +00003247EXPORT_SYMBOL(ppp_dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248EXPORT_SYMBOL(ppp_input);
3249EXPORT_SYMBOL(ppp_input_error);
3250EXPORT_SYMBOL(ppp_output_wakeup);
3251EXPORT_SYMBOL(ppp_register_compressor);
3252EXPORT_SYMBOL(ppp_unregister_compressor);
3253MODULE_LICENSE("GPL");
Kay Sievers578454f2010-05-20 18:07:20 +02003254MODULE_ALIAS_CHARDEV(PPP_MAJOR, 0);
Guillaume Nault96d934c2016-04-28 17:55:30 +02003255MODULE_ALIAS_RTNL_LINK("ppp");
Kay Sievers578454f2010-05-20 18:07:20 +02003256MODULE_ALIAS("devname:ppp");