blob: c38ee903bd593e33f8deb1aec60a3b742285aa97 [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>
27#include <linux/kmod.h>
28#include <linux/init.h>
29#include <linux/list.h>
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -080030#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/netdevice.h>
32#include <linux/poll.h>
33#include <linux/ppp_defs.h>
34#include <linux/filter.h>
Paul Mackerrasbf7daeb2012-03-04 12:56:04 +000035#include <linux/ppp-ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/ppp_channel.h>
37#include <linux/ppp-comp.h>
38#include <linux/skbuff.h>
39#include <linux/rtnetlink.h>
40#include <linux/if_arp.h>
41#include <linux/ip.h>
42#include <linux/tcp.h>
43#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/rwsem.h>
45#include <linux/stddef.h>
46#include <linux/device.h>
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080047#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Changli Gao96545ae2011-01-06 13:37:36 +000049#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <net/slhc_vj.h>
Arun Sharma600634972011-07-26 16:09:06 -070051#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Cyrill Gorcunov273ec512009-01-21 15:55:35 -080053#include <linux/nsproxy.h>
54#include <net/net_namespace.h>
55#include <net/netns/generic.h>
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define PPP_VERSION "2.4.2"
58
59/*
60 * Network protocols we support.
61 */
62#define NP_IP 0 /* Internet Protocol V4 */
63#define NP_IPV6 1 /* Internet Protocol V6 */
64#define NP_IPX 2 /* IPX protocol */
65#define NP_AT 3 /* Appletalk protocol */
66#define NP_MPLS_UC 4 /* MPLS unicast */
67#define NP_MPLS_MC 5 /* MPLS multicast */
68#define NUM_NP 6 /* Number of NPs. */
69
70#define MPHDRLEN 6 /* multilink protocol header length */
71#define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 * An instance of /dev/ppp can be associated with either a ppp
75 * interface unit or a ppp channel. In both cases, file->private_data
76 * points to one of these.
77 */
78struct ppp_file {
79 enum {
80 INTERFACE=1, CHANNEL
81 } kind;
82 struct sk_buff_head xq; /* pppd transmit queue */
83 struct sk_buff_head rq; /* receive queue for pppd */
84 wait_queue_head_t rwait; /* for poll on reading /dev/ppp */
85 atomic_t refcnt; /* # refs (incl /dev/ppp attached) */
86 int hdrlen; /* space to leave for headers */
87 int index; /* interface unit / channel number */
88 int dead; /* unit/channel has been shut down */
89};
90
Robert P. J. Dayb385a142007-02-10 01:46:25 -080091#define PF_TO_X(pf, X) container_of(pf, X, file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
94#define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +000097 * Data structure to hold primary network stats for which
98 * we want to use 64 bit storage. Other network stats
99 * are stored in dev->stats of the ppp strucute.
100 */
101struct ppp_link_stats {
102 u64 rx_packets;
103 u64 tx_packets;
104 u64 rx_bytes;
105 u64 tx_bytes;
106};
107
108/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * Data structure describing one ppp unit.
110 * A ppp unit corresponds to a ppp network interface device
111 * and represents a multilink bundle.
112 * It can have 0 or more ppp channels connected to it.
113 */
114struct ppp {
115 struct ppp_file file; /* stuff for read/write/poll 0 */
116 struct file *owner; /* file that owns this unit 48 */
117 struct list_head channels; /* list of attached channels 4c */
118 int n_channels; /* how many channels are attached 54 */
119 spinlock_t rlock; /* lock for receive side 58 */
120 spinlock_t wlock; /* lock for transmit side 5c */
121 int mru; /* max receive unit 60 */
122 unsigned int flags; /* control bits 64 */
123 unsigned int xstate; /* transmit state bits 68 */
124 unsigned int rstate; /* receive state bits 6c */
125 int debug; /* debug flags 70 */
126 struct slcompress *vj; /* state for VJ header compression */
127 enum NPmode npmode[NUM_NP]; /* what to do with each net proto 78 */
128 struct sk_buff *xmit_pending; /* a packet ready to go out 88 */
129 struct compressor *xcomp; /* transmit packet compressor 8c */
130 void *xc_state; /* its internal state 90 */
131 struct compressor *rcomp; /* receive decompressor 94 */
132 void *rc_state; /* its internal state 98 */
133 unsigned long last_xmit; /* jiffies when last pkt sent 9c */
134 unsigned long last_recv; /* jiffies when last pkt rcvd a0 */
135 struct net_device *dev; /* network interface device a4 */
James Chapman739840d2008-12-17 12:02:16 +0000136 int closing; /* is device closing down? a8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#ifdef CONFIG_PPP_MULTILINK
138 int nxchan; /* next channel to send something on */
139 u32 nxseq; /* next sequence number to send */
140 int mrru; /* MP: max reconst. receive unit */
141 u32 nextseq; /* MP: seq no of next packet */
142 u32 minseq; /* MP: min of most recent seqnos */
143 struct sk_buff_head mrq; /* MP: receive reconstruction queue */
144#endif /* CONFIG_PPP_MULTILINK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#ifdef CONFIG_PPP_FILTER
Daniel Borkmann568f1942014-03-28 18:58:23 +0100146 struct sk_filter *pass_filter; /* filter for packets to pass */
147 struct sk_filter *active_filter;/* filter for pkts to reset idle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#endif /* CONFIG_PPP_FILTER */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800149 struct net *ppp_net; /* the net we belong to */
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +0000150 struct ppp_link_stats stats64; /* 64 bit network stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
153/*
154 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
Matt Domschb3f9b922005-11-08 09:40:47 -0800155 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
156 * SC_MUST_COMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
158 * Bits in xstate: SC_COMP_RUN
159 */
160#define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
161 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
Matt Domschb3f9b922005-11-08 09:40:47 -0800162 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/*
165 * Private data structure for each channel.
166 * This includes the data structure used for multilink.
167 */
168struct channel {
169 struct ppp_file file; /* stuff for read/write/poll */
170 struct list_head list; /* link in all/new_channels list */
171 struct ppp_channel *chan; /* public channel data structure */
172 struct rw_semaphore chan_sem; /* protects `chan' during chan ioctl */
173 spinlock_t downl; /* protects `chan', file.xq dequeue */
174 struct ppp *ppp; /* ppp unit we're connected to */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800175 struct net *chan_net; /* the net channel belongs to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct list_head clist; /* link in list of channels per unit */
177 rwlock_t upl; /* protects `ppp' */
178#ifdef CONFIG_PPP_MULTILINK
179 u8 avail; /* flag used in multilink stuff */
180 u8 had_frag; /* >= 1 fragments have been sent */
181 u32 lastseq; /* MP: last sequence # received */
Lennart Sorensenfa44a732010-01-18 12:59:55 +0000182 int speed; /* speed of the corresponding ppp channel*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif /* CONFIG_PPP_MULTILINK */
184};
185
186/*
187 * SMP locking issues:
188 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
189 * list and the ppp.n_channels field, you need to take both locks
190 * before you modify them.
191 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
192 * channel.downl.
193 */
194
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000195static DEFINE_MUTEX(ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static atomic_t ppp_unit_count = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static atomic_t channel_count = ATOMIC_INIT(0);
198
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800199/* per-net private data for this module */
Eric Dumazetf99189b2009-11-17 10:42:49 +0000200static int ppp_net_id __read_mostly;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800201struct ppp_net {
202 /* units to ppp mapping */
203 struct idr units_idr;
204
205 /*
206 * all_ppp_mutex protects the units_idr mapping.
207 * It also ensures that finding a ppp unit in the units_idr
208 * map and updating its file.refcnt field is atomic.
209 */
210 struct mutex all_ppp_mutex;
211
212 /* channels */
213 struct list_head all_channels;
214 struct list_head new_channels;
215 int last_channel_index;
216
217 /*
218 * all_channels_lock protects all_channels and
219 * last_channel_index, and the atomicity of find
220 * a channel and updating its file.refcnt field.
221 */
222 spinlock_t all_channels_lock;
223};
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* Get the PPP protocol number from a skb */
Changli Gao96545ae2011-01-06 13:37:36 +0000226#define PPP_PROTO(skb) get_unaligned_be16((skb)->data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228/* We limit the length of ppp->file.rq to this (arbitrary) value */
229#define PPP_MAX_RQLEN 32
230
231/*
232 * Maximum number of multilink fragments queued up.
233 * This has to be large enough to cope with the maximum latency of
234 * the slowest channel relative to the others. Strictly it should
235 * depend on the number of channels and their characteristics.
236 */
237#define PPP_MP_MAX_QLEN 128
238
239/* Multilink header bits. */
240#define B 0x80 /* this fragment begins a packet */
241#define E 0x40 /* this fragment ends a packet */
242
243/* Compare multilink sequence numbers (assumed to be 32 bits wide) */
244#define seq_before(a, b) ((s32)((a) - (b)) < 0)
245#define seq_after(a, b) ((s32)((a) - (b)) > 0)
246
247/* Prototypes. */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800248static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
249 struct file *file, unsigned int cmd, unsigned long arg);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +0000250static void ppp_xmit_process(struct ppp *ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251static void ppp_send_frame(struct ppp *ppp, struct sk_buff *skb);
252static void ppp_push(struct ppp *ppp);
253static void ppp_channel_push(struct channel *pch);
254static void ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb,
255 struct channel *pch);
256static void ppp_receive_error(struct ppp *ppp);
257static void ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb);
258static struct sk_buff *ppp_decompress_frame(struct ppp *ppp,
259 struct sk_buff *skb);
260#ifdef CONFIG_PPP_MULTILINK
261static void ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb,
262 struct channel *pch);
263static void ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb);
264static struct sk_buff *ppp_mp_reconstruct(struct ppp *ppp);
265static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb);
266#endif /* CONFIG_PPP_MULTILINK */
267static int ppp_set_compress(struct ppp *ppp, unsigned long arg);
268static void ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound);
269static void ppp_ccp_closed(struct ppp *ppp);
270static struct compressor *find_compressor(int type);
271static void ppp_get_stats(struct ppp *ppp, struct ppp_stats *st);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800272static struct ppp *ppp_create_interface(struct net *net, int unit, int *retp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static void init_ppp_file(struct ppp_file *pf, int kind);
274static void ppp_shutdown_interface(struct ppp *ppp);
275static void ppp_destroy_interface(struct ppp *ppp);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800276static struct ppp *ppp_find_unit(struct ppp_net *pn, int unit);
277static struct channel *ppp_find_channel(struct ppp_net *pn, int unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static int ppp_connect_channel(struct channel *pch, int unit);
279static int ppp_disconnect_channel(struct channel *pch);
280static void ppp_destroy_channel(struct channel *pch);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -0800281static int unit_get(struct idr *p, void *ptr);
Cyrill Gorcunov85997572009-01-12 22:11:56 -0800282static int unit_set(struct idr *p, void *ptr, int n);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -0800283static void unit_put(struct idr *p, int n);
284static void *unit_find(struct idr *p, int n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
gregkh@suse.de56b22932005-03-23 10:01:41 -0800286static struct class *ppp_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800288/* per net-namespace data */
289static inline struct ppp_net *ppp_pernet(struct net *net)
290{
291 BUG_ON(!net);
292
293 return net_generic(net, ppp_net_id);
294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/* Translates a PPP protocol number to a NP index (NP == network protocol) */
297static inline int proto_to_npindex(int proto)
298{
299 switch (proto) {
300 case PPP_IP:
301 return NP_IP;
302 case PPP_IPV6:
303 return NP_IPV6;
304 case PPP_IPX:
305 return NP_IPX;
306 case PPP_AT:
307 return NP_AT;
308 case PPP_MPLS_UC:
309 return NP_MPLS_UC;
310 case PPP_MPLS_MC:
311 return NP_MPLS_MC;
312 }
313 return -EINVAL;
314}
315
316/* Translates an NP index into a PPP protocol number */
317static const int npindex_to_proto[NUM_NP] = {
318 PPP_IP,
319 PPP_IPV6,
320 PPP_IPX,
321 PPP_AT,
322 PPP_MPLS_UC,
323 PPP_MPLS_MC,
324};
Jeff Garzik6aa20a22006-09-13 13:24:59 -0400325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326/* Translates an ethertype into an NP index */
327static inline int ethertype_to_npindex(int ethertype)
328{
329 switch (ethertype) {
330 case ETH_P_IP:
331 return NP_IP;
332 case ETH_P_IPV6:
333 return NP_IPV6;
334 case ETH_P_IPX:
335 return NP_IPX;
336 case ETH_P_PPPTALK:
337 case ETH_P_ATALK:
338 return NP_AT;
339 case ETH_P_MPLS_UC:
340 return NP_MPLS_UC;
341 case ETH_P_MPLS_MC:
342 return NP_MPLS_MC;
343 }
344 return -1;
345}
346
347/* Translates an NP index into an ethertype */
348static const int npindex_to_ethertype[NUM_NP] = {
349 ETH_P_IP,
350 ETH_P_IPV6,
351 ETH_P_IPX,
352 ETH_P_PPPTALK,
353 ETH_P_MPLS_UC,
354 ETH_P_MPLS_MC,
355};
356
357/*
358 * Locking shorthand.
359 */
360#define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
361#define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
362#define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
363#define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
364#define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
365 ppp_recv_lock(ppp); } while (0)
366#define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
367 ppp_xmit_unlock(ppp); } while (0)
368
369/*
370 * /dev/ppp device routines.
371 * The /dev/ppp device is used by pppd to control the ppp unit.
372 * It supports the read, write, ioctl and poll functions.
373 * Open instances of /dev/ppp can be in one of three states:
374 * unattached, attached to a ppp unit, or attached to a ppp channel.
375 */
376static int ppp_open(struct inode *inode, struct file *file)
377{
378 /*
379 * This could (should?) be enforced by the permissions on /dev/ppp.
380 */
381 if (!capable(CAP_NET_ADMIN))
382 return -EPERM;
383 return 0;
384}
385
Alan Coxf3ff8a42008-05-25 23:40:58 -0700386static int ppp_release(struct inode *unused, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct ppp_file *pf = file->private_data;
389 struct ppp *ppp;
390
Joe Perchescd228d52007-11-12 18:07:31 -0800391 if (pf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 file->private_data = NULL;
393 if (pf->kind == INTERFACE) {
394 ppp = PF_TO_PPP(pf);
395 if (file == ppp->owner)
396 ppp_shutdown_interface(ppp);
397 }
398 if (atomic_dec_and_test(&pf->refcnt)) {
399 switch (pf->kind) {
400 case INTERFACE:
401 ppp_destroy_interface(PF_TO_PPP(pf));
402 break;
403 case CHANNEL:
404 ppp_destroy_channel(PF_TO_CHANNEL(pf));
405 break;
406 }
407 }
408 }
409 return 0;
410}
411
412static ssize_t ppp_read(struct file *file, char __user *buf,
413 size_t count, loff_t *ppos)
414{
415 struct ppp_file *pf = file->private_data;
416 DECLARE_WAITQUEUE(wait, current);
417 ssize_t ret;
418 struct sk_buff *skb = NULL;
Simon Arlott19937d02010-05-03 10:20:27 +0000419 struct iovec iov;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 ret = count;
422
Joe Perchescd228d52007-11-12 18:07:31 -0800423 if (!pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return -ENXIO;
425 add_wait_queue(&pf->rwait, &wait);
426 for (;;) {
427 set_current_state(TASK_INTERRUPTIBLE);
428 skb = skb_dequeue(&pf->rq);
429 if (skb)
430 break;
431 ret = 0;
432 if (pf->dead)
433 break;
434 if (pf->kind == INTERFACE) {
435 /*
436 * Return 0 (EOF) on an interface that has no
437 * channels connected, unless it is looping
438 * network traffic (demand mode).
439 */
440 struct ppp *ppp = PF_TO_PPP(pf);
Joe Perches8e95a202009-12-03 07:58:21 +0000441 if (ppp->n_channels == 0 &&
442 (ppp->flags & SC_LOOP_TRAFFIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 break;
444 }
445 ret = -EAGAIN;
446 if (file->f_flags & O_NONBLOCK)
447 break;
448 ret = -ERESTARTSYS;
449 if (signal_pending(current))
450 break;
451 schedule();
452 }
453 set_current_state(TASK_RUNNING);
454 remove_wait_queue(&pf->rwait, &wait);
455
Joe Perchescd228d52007-11-12 18:07:31 -0800456 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 goto out;
458
459 ret = -EOVERFLOW;
460 if (skb->len > count)
461 goto outf;
462 ret = -EFAULT;
Simon Arlott19937d02010-05-03 10:20:27 +0000463 iov.iov_base = buf;
464 iov.iov_len = count;
465 if (skb_copy_datagram_iovec(skb, 0, &iov, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 goto outf;
467 ret = skb->len;
468
469 outf:
470 kfree_skb(skb);
471 out:
472 return ret;
473}
474
475static ssize_t ppp_write(struct file *file, const char __user *buf,
476 size_t count, loff_t *ppos)
477{
478 struct ppp_file *pf = file->private_data;
479 struct sk_buff *skb;
480 ssize_t ret;
481
Joe Perchescd228d52007-11-12 18:07:31 -0800482 if (!pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return -ENXIO;
484 ret = -ENOMEM;
485 skb = alloc_skb(count + pf->hdrlen, GFP_KERNEL);
Joe Perchescd228d52007-11-12 18:07:31 -0800486 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto out;
488 skb_reserve(skb, pf->hdrlen);
489 ret = -EFAULT;
490 if (copy_from_user(skb_put(skb, count), buf, count)) {
491 kfree_skb(skb);
492 goto out;
493 }
494
495 skb_queue_tail(&pf->xq, skb);
496
497 switch (pf->kind) {
498 case INTERFACE:
499 ppp_xmit_process(PF_TO_PPP(pf));
500 break;
501 case CHANNEL:
502 ppp_channel_push(PF_TO_CHANNEL(pf));
503 break;
504 }
505
506 ret = count;
507
508 out:
509 return ret;
510}
511
512/* No kernel lock - fine */
513static unsigned int ppp_poll(struct file *file, poll_table *wait)
514{
515 struct ppp_file *pf = file->private_data;
516 unsigned int mask;
517
Joe Perchescd228d52007-11-12 18:07:31 -0800518 if (!pf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return 0;
520 poll_wait(file, &pf->rwait, wait);
521 mask = POLLOUT | POLLWRNORM;
Joe Perchescd228d52007-11-12 18:07:31 -0800522 if (skb_peek(&pf->rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 mask |= POLLIN | POLLRDNORM;
524 if (pf->dead)
525 mask |= POLLHUP;
526 else if (pf->kind == INTERFACE) {
527 /* see comment in ppp_read */
528 struct ppp *ppp = PF_TO_PPP(pf);
Joe Perches8e95a202009-12-03 07:58:21 +0000529 if (ppp->n_channels == 0 &&
530 (ppp->flags & SC_LOOP_TRAFFIC) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 mask |= POLLIN | POLLRDNORM;
532 }
533
534 return mask;
535}
536
537#ifdef CONFIG_PPP_FILTER
538static int get_filter(void __user *arg, struct sock_filter **p)
539{
540 struct sock_fprog uprog;
541 struct sock_filter *code = NULL;
542 int len, err;
543
544 if (copy_from_user(&uprog, arg, sizeof(uprog)))
545 return -EFAULT;
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if (!uprog.len) {
548 *p = NULL;
549 return 0;
550 }
551
552 len = uprog.len * sizeof(struct sock_filter);
Julia Lawallb23d00e2010-05-21 22:18:59 +0000553 code = memdup_user(uprog.filter, len);
554 if (IS_ERR(code))
555 return PTR_ERR(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 err = sk_chk_filter(code, uprog.len);
558 if (err) {
559 kfree(code);
560 return err;
561 }
562
563 *p = code;
564 return uprog.len;
565}
566#endif /* CONFIG_PPP_FILTER */
567
Alan Coxf3ff8a42008-05-25 23:40:58 -0700568static long ppp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 struct ppp_file *pf = file->private_data;
571 struct ppp *ppp;
572 int err = -EFAULT, val, val2, i;
573 struct ppp_idle idle;
574 struct npioctl npi;
575 int unit, cflags;
576 struct slcompress *vj;
577 void __user *argp = (void __user *)arg;
578 int __user *p = argp;
579
Joe Perchescd228d52007-11-12 18:07:31 -0800580 if (!pf)
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800581 return ppp_unattached_ioctl(current->nsproxy->net_ns,
582 pf, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (cmd == PPPIOCDETACH) {
585 /*
586 * We have to be careful here... if the file descriptor
587 * has been dup'd, we could have another process in the
588 * middle of a poll using the same file *, so we had
589 * better not free the interface data structures -
590 * instead we fail the ioctl. Even in this case, we
591 * shut down the interface if we are the owner of it.
592 * Actually, we should get rid of PPPIOCDETACH, userland
593 * (i.e. pppd) could achieve the same effect by closing
594 * this fd and reopening /dev/ppp.
595 */
596 err = -EINVAL;
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000597 mutex_lock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (pf->kind == INTERFACE) {
599 ppp = PF_TO_PPP(pf);
600 if (file == ppp->owner)
601 ppp_shutdown_interface(ppp);
602 }
Al Viro516e0cc2008-07-26 00:39:17 -0400603 if (atomic_long_read(&file->f_count) <= 2) {
Alan Coxf3ff8a42008-05-25 23:40:58 -0700604 ppp_release(NULL, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 err = 0;
606 } else
David S. Millerb48f8c22011-01-20 22:44:36 -0800607 pr_warn("PPPIOCDETACH file->f_count=%ld\n",
608 atomic_long_read(&file->f_count));
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000609 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return err;
611 }
612
613 if (pf->kind == CHANNEL) {
Alan Coxf3ff8a42008-05-25 23:40:58 -0700614 struct channel *pch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct ppp_channel *chan;
616
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000617 mutex_lock(&ppp_mutex);
Alan Coxf3ff8a42008-05-25 23:40:58 -0700618 pch = PF_TO_CHANNEL(pf);
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 switch (cmd) {
621 case PPPIOCCONNECT:
622 if (get_user(unit, p))
623 break;
624 err = ppp_connect_channel(pch, unit);
625 break;
626
627 case PPPIOCDISCONN:
628 err = ppp_disconnect_channel(pch);
629 break;
630
631 default:
632 down_read(&pch->chan_sem);
633 chan = pch->chan;
634 err = -ENOTTY;
635 if (chan && chan->ops->ioctl)
636 err = chan->ops->ioctl(chan, cmd, arg);
637 up_read(&pch->chan_sem);
638 }
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000639 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return err;
641 }
642
643 if (pf->kind != INTERFACE) {
644 /* can't happen */
David S. Millerb48f8c22011-01-20 22:44:36 -0800645 pr_err("PPP: not interface or channel??\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return -EINVAL;
647 }
648
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000649 mutex_lock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 ppp = PF_TO_PPP(pf);
651 switch (cmd) {
652 case PPPIOCSMRU:
653 if (get_user(val, p))
654 break;
655 ppp->mru = val;
656 err = 0;
657 break;
658
659 case PPPIOCSFLAGS:
660 if (get_user(val, p))
661 break;
662 ppp_lock(ppp);
663 cflags = ppp->flags & ~val;
Christoph Schulzd762d032014-07-15 11:51:03 +0200664 if (!(ppp->flags & SC_MULTILINK) && (val & SC_MULTILINK))
665 ppp->nextseq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 ppp->flags = val & SC_FLAG_BITS;
667 ppp_unlock(ppp);
668 if (cflags & SC_CCP_OPEN)
669 ppp_ccp_closed(ppp);
670 err = 0;
671 break;
672
673 case PPPIOCGFLAGS:
674 val = ppp->flags | ppp->xstate | ppp->rstate;
675 if (put_user(val, p))
676 break;
677 err = 0;
678 break;
679
680 case PPPIOCSCOMPRESS:
681 err = ppp_set_compress(ppp, arg);
682 break;
683
684 case PPPIOCGUNIT:
685 if (put_user(ppp->file.index, p))
686 break;
687 err = 0;
688 break;
689
690 case PPPIOCSDEBUG:
691 if (get_user(val, p))
692 break;
693 ppp->debug = val;
694 err = 0;
695 break;
696
697 case PPPIOCGDEBUG:
698 if (put_user(ppp->debug, p))
699 break;
700 err = 0;
701 break;
702
703 case PPPIOCGIDLE:
704 idle.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
705 idle.recv_idle = (jiffies - ppp->last_recv) / HZ;
706 if (copy_to_user(argp, &idle, sizeof(idle)))
707 break;
708 err = 0;
709 break;
710
711 case PPPIOCSMAXCID:
712 if (get_user(val, p))
713 break;
714 val2 = 15;
715 if ((val >> 16) != 0) {
716 val2 = val >> 16;
717 val &= 0xffff;
718 }
719 vj = slhc_init(val2+1, val+1);
Joe Perchescd228d52007-11-12 18:07:31 -0800720 if (!vj) {
David S. Millerb48f8c22011-01-20 22:44:36 -0800721 netdev_err(ppp->dev,
722 "PPP: no memory (VJ compressor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 err = -ENOMEM;
724 break;
725 }
726 ppp_lock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -0800727 if (ppp->vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 slhc_free(ppp->vj);
729 ppp->vj = vj;
730 ppp_unlock(ppp);
731 err = 0;
732 break;
733
734 case PPPIOCGNPMODE:
735 case PPPIOCSNPMODE:
736 if (copy_from_user(&npi, argp, sizeof(npi)))
737 break;
738 err = proto_to_npindex(npi.protocol);
739 if (err < 0)
740 break;
741 i = err;
742 if (cmd == PPPIOCGNPMODE) {
743 err = -EFAULT;
744 npi.mode = ppp->npmode[i];
745 if (copy_to_user(argp, &npi, sizeof(npi)))
746 break;
747 } else {
748 ppp->npmode[i] = npi.mode;
749 /* we may be able to transmit more packets now (??) */
750 netif_wake_queue(ppp->dev);
751 }
752 err = 0;
753 break;
754
755#ifdef CONFIG_PPP_FILTER
756 case PPPIOCSPASS:
757 {
758 struct sock_filter *code;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 err = get_filter(argp, &code);
761 if (err >= 0) {
Daniel Borkmannb1fcd352014-05-23 18:43:58 +0200762 struct sock_fprog_kern fprog = {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100763 .len = err,
764 .filter = code,
765 };
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 ppp_lock(ppp);
Daniel Borkmann568f1942014-03-28 18:58:23 +0100768 if (ppp->pass_filter)
769 sk_unattached_filter_destroy(ppp->pass_filter);
770 err = sk_unattached_filter_create(&ppp->pass_filter,
771 &fprog);
772 kfree(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 ppp_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 break;
776 }
777 case PPPIOCSACTIVE:
778 {
779 struct sock_filter *code;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 err = get_filter(argp, &code);
782 if (err >= 0) {
Daniel Borkmannb1fcd352014-05-23 18:43:58 +0200783 struct sock_fprog_kern fprog = {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100784 .len = err,
785 .filter = code,
786 };
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 ppp_lock(ppp);
Daniel Borkmann568f1942014-03-28 18:58:23 +0100789 if (ppp->active_filter)
790 sk_unattached_filter_destroy(ppp->active_filter);
791 err = sk_unattached_filter_create(&ppp->active_filter,
792 &fprog);
793 kfree(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 ppp_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796 break;
797 }
798#endif /* CONFIG_PPP_FILTER */
799
800#ifdef CONFIG_PPP_MULTILINK
801 case PPPIOCSMRRU:
802 if (get_user(val, p))
803 break;
804 ppp_recv_lock(ppp);
805 ppp->mrru = val;
806 ppp_recv_unlock(ppp);
807 err = 0;
808 break;
809#endif /* CONFIG_PPP_MULTILINK */
810
811 default:
812 err = -ENOTTY;
813 }
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000814 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return err;
816}
817
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800818static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
819 struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 int unit, err = -EFAULT;
822 struct ppp *ppp;
823 struct channel *chan;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800824 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 int __user *p = (int __user *)arg;
826
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000827 mutex_lock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 switch (cmd) {
829 case PPPIOCNEWUNIT:
830 /* Create a new ppp unit */
831 if (get_user(unit, p))
832 break;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800833 ppp = ppp_create_interface(net, unit, &err);
Joe Perchescd228d52007-11-12 18:07:31 -0800834 if (!ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
836 file->private_data = &ppp->file;
837 ppp->owner = file;
838 err = -EFAULT;
839 if (put_user(ppp->file.index, p))
840 break;
841 err = 0;
842 break;
843
844 case PPPIOCATTACH:
845 /* Attach to an existing ppp unit */
846 if (get_user(unit, p))
847 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 err = -ENXIO;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800849 pn = ppp_pernet(net);
850 mutex_lock(&pn->all_ppp_mutex);
851 ppp = ppp_find_unit(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -0800852 if (ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 atomic_inc(&ppp->file.refcnt);
854 file->private_data = &ppp->file;
855 err = 0;
856 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800857 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 break;
859
860 case PPPIOCATTCHAN:
861 if (get_user(unit, p))
862 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 err = -ENXIO;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800864 pn = ppp_pernet(net);
865 spin_lock_bh(&pn->all_channels_lock);
866 chan = ppp_find_channel(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -0800867 if (chan) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 atomic_inc(&chan->file.refcnt);
869 file->private_data = &chan->file;
870 err = 0;
871 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800872 spin_unlock_bh(&pn->all_channels_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 break;
874
875 default:
876 err = -ENOTTY;
877 }
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000878 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return err;
880}
881
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800882static const struct file_operations ppp_device_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 .owner = THIS_MODULE,
884 .read = ppp_read,
885 .write = ppp_write,
886 .poll = ppp_poll,
Alan Coxf3ff8a42008-05-25 23:40:58 -0700887 .unlocked_ioctl = ppp_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 .open = ppp_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200889 .release = ppp_release,
890 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891};
892
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800893static __net_init int ppp_init_net(struct net *net)
894{
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000895 struct ppp_net *pn = net_generic(net, ppp_net_id);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800896
897 idr_init(&pn->units_idr);
898 mutex_init(&pn->all_ppp_mutex);
899
900 INIT_LIST_HEAD(&pn->all_channels);
901 INIT_LIST_HEAD(&pn->new_channels);
902
903 spin_lock_init(&pn->all_channels_lock);
904
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800905 return 0;
906}
907
908static __net_exit void ppp_exit_net(struct net *net)
909{
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000910 struct ppp_net *pn = net_generic(net, ppp_net_id);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800911
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800912 idr_destroy(&pn->units_idr);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800913}
914
Alexey Dobriyan00129852009-02-09 18:05:16 -0800915static struct pernet_operations ppp_net_ops = {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800916 .init = ppp_init_net,
917 .exit = ppp_exit_net,
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000918 .id = &ppp_net_id,
919 .size = sizeof(struct ppp_net),
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800920};
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#define PPP_MAJOR 108
923
924/* Called at boot time if ppp is compiled into the kernel,
925 or at module load time (from init_module) if compiled as a module. */
926static int __init ppp_init(void)
927{
928 int err;
929
David S. Millerb48f8c22011-01-20 22:44:36 -0800930 pr_info("PPP generic driver version " PPP_VERSION "\n");
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800931
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000932 err = register_pernet_device(&ppp_net_ops);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800933 if (err) {
David S. Millerb48f8c22011-01-20 22:44:36 -0800934 pr_err("failed to register PPP pernet device (%d)\n", err);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800935 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800938 err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
939 if (err) {
David S. Millerb48f8c22011-01-20 22:44:36 -0800940 pr_err("failed to register PPP device (%d)\n", err);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800941 goto out_net;
942 }
943
944 ppp_class = class_create(THIS_MODULE, "ppp");
945 if (IS_ERR(ppp_class)) {
946 err = PTR_ERR(ppp_class);
947 goto out_chrdev;
948 }
949
950 /* not a big deal if we fail here :-) */
951 device_create(ppp_class, NULL, MKDEV(PPP_MAJOR, 0), NULL, "ppp");
952
953 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955out_chrdev:
956 unregister_chrdev(PPP_MAJOR, "ppp");
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800957out_net:
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000958 unregister_pernet_device(&ppp_net_ops);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800959out:
960 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963/*
964 * Network interface unit routines.
965 */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000966static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
968{
Wang Chenc8019bf2008-11-20 04:24:17 -0800969 struct ppp *ppp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int npi, proto;
971 unsigned char *pp;
972
973 npi = ethertype_to_npindex(ntohs(skb->protocol));
974 if (npi < 0)
975 goto outf;
976
977 /* Drop, accept or reject the packet */
978 switch (ppp->npmode[npi]) {
979 case NPMODE_PASS:
980 break;
981 case NPMODE_QUEUE:
982 /* it would be nice to have a way to tell the network
983 system to queue this one up for later. */
984 goto outf;
985 case NPMODE_DROP:
986 case NPMODE_ERROR:
987 goto outf;
988 }
989
990 /* Put the 2-byte PPP protocol number on the front,
991 making sure there is room for the address and control fields. */
Herbert Xu7b797d52007-09-16 16:21:42 -0700992 if (skb_cow_head(skb, PPP_HDRLEN))
993 goto outf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 pp = skb_push(skb, 2);
996 proto = npindex_to_proto[npi];
Changli Gao96545ae2011-01-06 13:37:36 +0000997 put_unaligned_be16(proto, pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 skb_queue_tail(&ppp->file.xq, skb);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001000 ppp_xmit_process(ppp);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001001 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 outf:
1004 kfree_skb(skb);
Paulius Zaleckas6ceffd42009-02-23 04:59:43 +00001005 ++dev->stats.tx_dropped;
Patrick McHardy6ed10652009-06-23 06:03:08 +00001006 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009static int
1010ppp_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1011{
Wang Chenc8019bf2008-11-20 04:24:17 -08001012 struct ppp *ppp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 int err = -EFAULT;
1014 void __user *addr = (void __user *) ifr->ifr_ifru.ifru_data;
1015 struct ppp_stats stats;
1016 struct ppp_comp_stats cstats;
1017 char *vers;
1018
1019 switch (cmd) {
1020 case SIOCGPPPSTATS:
1021 ppp_get_stats(ppp, &stats);
1022 if (copy_to_user(addr, &stats, sizeof(stats)))
1023 break;
1024 err = 0;
1025 break;
1026
1027 case SIOCGPPPCSTATS:
1028 memset(&cstats, 0, sizeof(cstats));
Joe Perchescd228d52007-11-12 18:07:31 -08001029 if (ppp->xc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
Joe Perchescd228d52007-11-12 18:07:31 -08001031 if (ppp->rc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
1033 if (copy_to_user(addr, &cstats, sizeof(cstats)))
1034 break;
1035 err = 0;
1036 break;
1037
1038 case SIOCGPPPVER:
1039 vers = PPP_VERSION;
1040 if (copy_to_user(addr, vers, strlen(vers) + 1))
1041 break;
1042 err = 0;
1043 break;
1044
1045 default:
1046 err = -EINVAL;
1047 }
1048
1049 return err;
1050}
1051
stephen hemmingerb77bc202012-10-29 08:34:02 +00001052static struct rtnl_link_stats64*
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001053ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1054{
1055 struct ppp *ppp = netdev_priv(dev);
1056
1057 ppp_recv_lock(ppp);
1058 stats64->rx_packets = ppp->stats64.rx_packets;
1059 stats64->rx_bytes = ppp->stats64.rx_bytes;
1060 ppp_recv_unlock(ppp);
1061
1062 ppp_xmit_lock(ppp);
1063 stats64->tx_packets = ppp->stats64.tx_packets;
1064 stats64->tx_bytes = ppp->stats64.tx_bytes;
1065 ppp_xmit_unlock(ppp);
1066
1067 stats64->rx_errors = dev->stats.rx_errors;
1068 stats64->tx_errors = dev->stats.tx_errors;
1069 stats64->rx_dropped = dev->stats.rx_dropped;
1070 stats64->tx_dropped = dev->stats.tx_dropped;
1071 stats64->rx_length_errors = dev->stats.rx_length_errors;
1072
1073 return stats64;
1074}
1075
Eric Dumazet303c07d2013-02-19 10:42:03 -08001076static struct lock_class_key ppp_tx_busylock;
1077static int ppp_dev_init(struct net_device *dev)
1078{
1079 dev->qdisc_tx_busylock = &ppp_tx_busylock;
1080 return 0;
1081}
1082
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001083static const struct net_device_ops ppp_netdev_ops = {
Eric Dumazet303c07d2013-02-19 10:42:03 -08001084 .ndo_init = ppp_dev_init,
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001085 .ndo_start_xmit = ppp_start_xmit,
1086 .ndo_do_ioctl = ppp_net_ioctl,
1087 .ndo_get_stats64 = ppp_get_stats64,
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001088};
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090static void ppp_setup(struct net_device *dev)
1091{
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001092 dev->netdev_ops = &ppp_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 dev->hard_header_len = PPP_HDRLEN;
Paul Mackerrasbf7daeb2012-03-04 12:56:04 +00001094 dev->mtu = PPP_MRU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 dev->addr_len = 0;
1096 dev->tx_queue_len = 3;
1097 dev->type = ARPHRD_PPP;
1098 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001099 dev->features |= NETIF_F_NETNS_LOCAL;
Eric Dumazet8b2d8502009-05-19 14:24:37 -07001100 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103/*
1104 * Transmit-side routines.
1105 */
1106
1107/*
1108 * Called to do any work queued up on the transmit side
1109 * that can now be done.
1110 */
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001111static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112ppp_xmit_process(struct ppp *ppp)
1113{
1114 struct sk_buff *skb;
1115
1116 ppp_xmit_lock(ppp);
James Chapman739840d2008-12-17 12:02:16 +00001117 if (!ppp->closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 ppp_push(ppp);
Joe Perches8e95a202009-12-03 07:58:21 +00001119 while (!ppp->xmit_pending &&
1120 (skb = skb_dequeue(&ppp->file.xq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 ppp_send_frame(ppp, skb);
1122 /* If there's no work left to do, tell the core net
1123 code that we can accept some more. */
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001124 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 netif_wake_queue(ppp->dev);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001126 else
1127 netif_stop_queue(ppp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 ppp_xmit_unlock(ppp);
1130}
1131
Matt Domschb3f9b922005-11-08 09:40:47 -08001132static inline struct sk_buff *
1133pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1134{
1135 struct sk_buff *new_skb;
1136 int len;
1137 int new_skb_size = ppp->dev->mtu +
1138 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1139 int compressor_skb_size = ppp->dev->mtu +
1140 ppp->xcomp->comp_extra + PPP_HDRLEN;
1141 new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1142 if (!new_skb) {
1143 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001144 netdev_err(ppp->dev, "PPP: no memory (comp pkt)\n");
Matt Domschb3f9b922005-11-08 09:40:47 -08001145 return NULL;
1146 }
1147 if (ppp->dev->hard_header_len > PPP_HDRLEN)
1148 skb_reserve(new_skb,
1149 ppp->dev->hard_header_len - PPP_HDRLEN);
1150
1151 /* compressor still expects A/C bytes in hdr */
1152 len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1153 new_skb->data, skb->len + 2,
1154 compressor_skb_size);
1155 if (len > 0 && (ppp->flags & SC_CCP_UP)) {
Eric Dumazet968d7012012-05-18 20:23:00 +00001156 consume_skb(skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001157 skb = new_skb;
1158 skb_put(skb, len);
1159 skb_pull(skb, 2); /* pull off A/C bytes */
1160 } else if (len == 0) {
1161 /* didn't compress, or CCP not up yet */
Eric Dumazet968d7012012-05-18 20:23:00 +00001162 consume_skb(new_skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001163 new_skb = skb;
1164 } else {
1165 /*
1166 * (len < 0)
1167 * MPPE requires that we do not send unencrypted
1168 * frames. The compressor will return -1 if we
1169 * should drop the frame. We cannot simply test
1170 * the compress_proto because MPPE and MPPC share
1171 * the same number.
1172 */
1173 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001174 netdev_err(ppp->dev, "ppp: compressor dropped pkt\n");
Matt Domschb3f9b922005-11-08 09:40:47 -08001175 kfree_skb(skb);
Eric Dumazet968d7012012-05-18 20:23:00 +00001176 consume_skb(new_skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001177 new_skb = NULL;
1178 }
1179 return new_skb;
1180}
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182/*
1183 * Compress and send a frame.
1184 * The caller should have locked the xmit path,
1185 * and xmit_pending should be 0.
1186 */
1187static void
1188ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1189{
1190 int proto = PPP_PROTO(skb);
1191 struct sk_buff *new_skb;
1192 int len;
1193 unsigned char *cp;
1194
1195 if (proto < 0x8000) {
1196#ifdef CONFIG_PPP_FILTER
1197 /* check if we should pass this packet */
1198 /* the filter instructions are constructed assuming
1199 a four-byte PPP header on each packet */
1200 *skb_push(skb, 2) = 1;
Joe Perches8e95a202009-12-03 07:58:21 +00001201 if (ppp->pass_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001202 SK_RUN_FILTER(ppp->pass_filter, skb) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001204 netdev_printk(KERN_DEBUG, ppp->dev,
1205 "PPP: outbound frame "
1206 "not passed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 kfree_skb(skb);
1208 return;
1209 }
1210 /* if this packet passes the active filter, record the time */
Joe Perches8e95a202009-12-03 07:58:21 +00001211 if (!(ppp->active_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001212 SK_RUN_FILTER(ppp->active_filter, skb) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 ppp->last_xmit = jiffies;
1214 skb_pull(skb, 2);
1215#else
1216 /* for data packets, record the time */
1217 ppp->last_xmit = jiffies;
1218#endif /* CONFIG_PPP_FILTER */
1219 }
1220
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001221 ++ppp->stats64.tx_packets;
1222 ppp->stats64.tx_bytes += skb->len - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 switch (proto) {
1225 case PPP_IP:
Joe Perchescd228d52007-11-12 18:07:31 -08001226 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228 /* try to do VJ TCP header compression */
1229 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1230 GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001231 if (!new_skb) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001232 netdev_err(ppp->dev, "PPP: no memory (VJ comp pkt)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 goto drop;
1234 }
1235 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1236 cp = skb->data + 2;
1237 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1238 new_skb->data + 2, &cp,
1239 !(ppp->flags & SC_NO_TCP_CCID));
1240 if (cp == skb->data + 2) {
1241 /* didn't compress */
Eric Dumazet968d7012012-05-18 20:23:00 +00001242 consume_skb(new_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 } else {
1244 if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1245 proto = PPP_VJC_COMP;
1246 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1247 } else {
1248 proto = PPP_VJC_UNCOMP;
1249 cp[0] = skb->data[2];
1250 }
Eric Dumazet968d7012012-05-18 20:23:00 +00001251 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 skb = new_skb;
1253 cp = skb_put(skb, len + 2);
1254 cp[0] = 0;
1255 cp[1] = proto;
1256 }
1257 break;
1258
1259 case PPP_CCP:
1260 /* peek at outbound CCP frames */
1261 ppp_ccp_peek(ppp, skb, 0);
1262 break;
1263 }
1264
1265 /* try to do packet compression */
Joe Perches8e95a202009-12-03 07:58:21 +00001266 if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state &&
1267 proto != PPP_LCP && proto != PPP_CCP) {
Matt Domschb3f9b922005-11-08 09:40:47 -08001268 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1269 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001270 netdev_err(ppp->dev,
1271 "ppp: compression required but "
1272 "down - pkt dropped.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 goto drop;
1274 }
Matt Domschb3f9b922005-11-08 09:40:47 -08001275 skb = pad_compress_skb(ppp, skb);
1276 if (!skb)
1277 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279
1280 /*
1281 * If we are waiting for traffic (demand dialling),
1282 * queue it up for pppd to receive.
1283 */
1284 if (ppp->flags & SC_LOOP_TRAFFIC) {
1285 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1286 goto drop;
1287 skb_queue_tail(&ppp->file.rq, skb);
1288 wake_up_interruptible(&ppp->file.rwait);
1289 return;
1290 }
1291
1292 ppp->xmit_pending = skb;
1293 ppp_push(ppp);
1294 return;
1295
1296 drop:
Wei Yongjun1d2f8c92009-02-25 00:16:08 +00001297 kfree_skb(skb);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001298 ++ppp->dev->stats.tx_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301/*
1302 * Try to send the frame in xmit_pending.
1303 * The caller should have the xmit path locked.
1304 */
1305static void
1306ppp_push(struct ppp *ppp)
1307{
1308 struct list_head *list;
1309 struct channel *pch;
1310 struct sk_buff *skb = ppp->xmit_pending;
1311
Joe Perchescd228d52007-11-12 18:07:31 -08001312 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return;
1314
1315 list = &ppp->channels;
1316 if (list_empty(list)) {
1317 /* nowhere to send the packet, just drop it */
1318 ppp->xmit_pending = NULL;
1319 kfree_skb(skb);
1320 return;
1321 }
1322
1323 if ((ppp->flags & SC_MULTILINK) == 0) {
1324 /* not doing multilink: send it down the first channel */
1325 list = list->next;
1326 pch = list_entry(list, struct channel, clist);
1327
1328 spin_lock_bh(&pch->downl);
1329 if (pch->chan) {
1330 if (pch->chan->ops->start_xmit(pch->chan, skb))
1331 ppp->xmit_pending = NULL;
1332 } else {
1333 /* channel got unregistered */
1334 kfree_skb(skb);
1335 ppp->xmit_pending = NULL;
1336 }
1337 spin_unlock_bh(&pch->downl);
1338 return;
1339 }
1340
1341#ifdef CONFIG_PPP_MULTILINK
1342 /* Multilink: fragment the packet over as many links
1343 as can take the packet at the moment. */
1344 if (!ppp_mp_explode(ppp, skb))
1345 return;
1346#endif /* CONFIG_PPP_MULTILINK */
1347
1348 ppp->xmit_pending = NULL;
1349 kfree_skb(skb);
1350}
1351
1352#ifdef CONFIG_PPP_MULTILINK
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001353static bool mp_protocol_compress __read_mostly = true;
1354module_param(mp_protocol_compress, bool, S_IRUGO | S_IWUSR);
1355MODULE_PARM_DESC(mp_protocol_compress,
1356 "compress protocol id in multilink fragments");
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358/*
1359 * Divide a packet to be transmitted into fragments and
1360 * send them out the individual links.
1361 */
1362static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1363{
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001364 int len, totlen;
1365 int i, bits, hdrlen, mtu;
1366 int flen;
1367 int navail, nfree, nzero;
1368 int nbigger;
1369 int totspeed;
1370 int totfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 unsigned char *p, *q;
1372 struct list_head *list;
1373 struct channel *pch;
1374 struct sk_buff *frag;
1375 struct ppp_channel *chan;
1376
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001377 totspeed = 0; /*total bitrate of the bundle*/
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001378 nfree = 0; /* # channels which have no packet already queued */
1379 navail = 0; /* total # of usable channels (not deregistered) */
1380 nzero = 0; /* number of channels with zero speed associated*/
1381 totfree = 0; /*total # of channels available and
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001382 *having no queued packets before
1383 *starting the fragmentation*/
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001386 i = 0;
1387 list_for_each_entry(pch, &ppp->channels, clist) {
Dan Carpenter34297692010-09-10 01:58:10 +00001388 if (pch->chan) {
1389 pch->avail = 1;
1390 navail++;
1391 pch->speed = pch->chan->speed;
1392 } else {
1393 pch->avail = 0;
1394 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001395 if (pch->avail) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001396 if (skb_queue_empty(&pch->file.xq) ||
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001397 !pch->had_frag) {
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001398 if (pch->speed == 0)
1399 nzero++;
1400 else
1401 totspeed += pch->speed;
1402
1403 pch->avail = 2;
1404 ++nfree;
1405 ++totfree;
1406 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001407 if (!pch->had_frag && i < ppp->nxchan)
1408 ppp->nxchan = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001410 ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001412 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001413 * Don't start sending this packet unless at least half of
1414 * the channels are free. This gives much better TCP
1415 * performance if we have a lot of channels.
Paul Mackerras516cd152005-05-12 19:47:12 -04001416 */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001417 if (nfree == 0 || nfree < navail / 2)
1418 return 0; /* can't take now, leave it in xmit_pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001420 /* Do protocol field compression */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001421 p = skb->data;
1422 len = skb->len;
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001423 if (*p == 0 && mp_protocol_compress) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 ++p;
1425 --len;
1426 }
1427
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001428 totlen = len;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001429 nbigger = len % nfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001431 /* skip to the channel after the one we last used
1432 and start at that one */
Domen Puncer81616c52005-09-10 00:27:04 -07001433 list = &ppp->channels;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001434 for (i = 0; i < ppp->nxchan; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 list = list->next;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001436 if (list == &ppp->channels) {
1437 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 break;
1439 }
1440 }
1441
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001442 /* create a fragment for each channel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 bits = B;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001444 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 list = list->next;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001446 if (list == &ppp->channels) {
1447 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 continue;
1449 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001450 pch = list_entry(list, struct channel, clist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 ++i;
1452 if (!pch->avail)
1453 continue;
1454
Paul Mackerras516cd152005-05-12 19:47:12 -04001455 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001456 * Skip this channel if it has a fragment pending already and
1457 * we haven't given a fragment to all of the free channels.
Paul Mackerras516cd152005-05-12 19:47:12 -04001458 */
1459 if (pch->avail == 1) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001460 if (nfree > 0)
Paul Mackerras516cd152005-05-12 19:47:12 -04001461 continue;
1462 } else {
Paul Mackerras516cd152005-05-12 19:47:12 -04001463 pch->avail = 1;
1464 }
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /* check the channel's mtu and whether it is still attached. */
1467 spin_lock_bh(&pch->downl);
Paul Mackerras516cd152005-05-12 19:47:12 -04001468 if (pch->chan == NULL) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001469 /* can't use this channel, it's being deregistered */
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001470 if (pch->speed == 0)
1471 nzero--;
1472 else
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001473 totspeed -= pch->speed;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 spin_unlock_bh(&pch->downl);
1476 pch->avail = 0;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001477 totlen = len;
1478 totfree--;
1479 nfree--;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001480 if (--navail == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 break;
1482 continue;
1483 }
1484
1485 /*
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001486 *if the channel speed is not set divide
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001487 *the packet evenly among the free channels;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001488 *otherwise divide it according to the speed
1489 *of the channel we are going to transmit on
1490 */
David S. Miller886f9fe2009-08-19 13:55:55 -07001491 flen = len;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001492 if (nfree > 0) {
1493 if (pch->speed == 0) {
Ben McKeegan536e00e2010-06-02 23:14:33 +00001494 flen = len/nfree;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001495 if (nbigger > 0) {
1496 flen++;
1497 nbigger--;
1498 }
1499 } else {
1500 flen = (((totfree - nzero)*(totlen + hdrlen*totfree)) /
1501 ((totspeed*totfree)/pch->speed)) - hdrlen;
1502 if (nbigger > 0) {
1503 flen += ((totfree - nzero)*pch->speed)/totspeed;
1504 nbigger -= ((totfree - nzero)*pch->speed)/
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001505 totspeed;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001506 }
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001507 }
Ben McKeegana53a8b52009-07-28 07:43:57 +00001508 nfree--;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001509 }
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001510
1511 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001512 *check if we are on the last channel or
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001513 *we exceded the length of the data to
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001514 *fragment
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 */
Ben McKeegana53a8b52009-07-28 07:43:57 +00001516 if ((nfree <= 0) || (flen > len))
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001517 flen = len;
1518 /*
1519 *it is not worth to tx on slow channels:
1520 *in that case from the resulting flen according to the
1521 *above formula will be equal or less than zero.
1522 *Skip the channel in this case
1523 */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001524 if (flen <= 0) {
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001525 pch->avail = 2;
1526 spin_unlock_bh(&pch->downl);
1527 continue;
1528 }
1529
Henry Wong22e83a22011-09-18 13:41:49 +00001530 /*
1531 * hdrlen includes the 2-byte PPP protocol field, but the
1532 * MTU counts only the payload excluding the protocol field.
1533 * (RFC1661 Section 2)
1534 */
1535 mtu = pch->chan->mtu - (hdrlen - 2);
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001536 if (mtu < 4)
1537 mtu = 4;
Paul Mackerras516cd152005-05-12 19:47:12 -04001538 if (flen > mtu)
1539 flen = mtu;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001540 if (flen == len)
1541 bits |= E;
1542 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001543 if (!frag)
Paul Mackerras516cd152005-05-12 19:47:12 -04001544 goto noskb;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001545 q = skb_put(frag, flen + hdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001547 /* make the MP header */
Changli Gao96545ae2011-01-06 13:37:36 +00001548 put_unaligned_be16(PPP_MP, q);
Paul Mackerras516cd152005-05-12 19:47:12 -04001549 if (ppp->flags & SC_MP_XSHORTSEQ) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001550 q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
Paul Mackerras516cd152005-05-12 19:47:12 -04001551 q[3] = ppp->nxseq;
1552 } else {
1553 q[2] = bits;
1554 q[3] = ppp->nxseq >> 16;
1555 q[4] = ppp->nxseq >> 8;
1556 q[5] = ppp->nxseq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001558
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001559 memcpy(q + hdrlen, p, flen);
Paul Mackerras516cd152005-05-12 19:47:12 -04001560
1561 /* try to send it down the channel */
1562 chan = pch->chan;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001563 if (!skb_queue_empty(&pch->file.xq) ||
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001564 !chan->ops->start_xmit(chan, frag))
Paul Mackerras516cd152005-05-12 19:47:12 -04001565 skb_queue_tail(&pch->file.xq, frag);
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001566 pch->had_frag = 1;
Paul Mackerras516cd152005-05-12 19:47:12 -04001567 p += flen;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001568 len -= flen;
Paul Mackerras516cd152005-05-12 19:47:12 -04001569 ++ppp->nxseq;
1570 bits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 spin_unlock_bh(&pch->downl);
Paul Mackerras516cd152005-05-12 19:47:12 -04001572 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001573 ppp->nxchan = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 return 1;
1576
1577 noskb:
1578 spin_unlock_bh(&pch->downl);
1579 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001580 netdev_err(ppp->dev, "PPP: no memory (fragment)\n");
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001581 ++ppp->dev->stats.tx_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 ++ppp->nxseq;
1583 return 1; /* abandon the frame */
1584}
1585#endif /* CONFIG_PPP_MULTILINK */
1586
1587/*
1588 * Try to send data out on a channel.
1589 */
1590static void
1591ppp_channel_push(struct channel *pch)
1592{
1593 struct sk_buff *skb;
1594 struct ppp *ppp;
1595
1596 spin_lock_bh(&pch->downl);
Joe Perchescd228d52007-11-12 18:07:31 -08001597 if (pch->chan) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001598 while (!skb_queue_empty(&pch->file.xq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 skb = skb_dequeue(&pch->file.xq);
1600 if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
1601 /* put the packet back and try again later */
1602 skb_queue_head(&pch->file.xq, skb);
1603 break;
1604 }
1605 }
1606 } else {
1607 /* channel got deregistered */
1608 skb_queue_purge(&pch->file.xq);
1609 }
1610 spin_unlock_bh(&pch->downl);
1611 /* see if there is anything from the attached unit to be sent */
David S. Millerb03efcf2005-07-08 14:57:23 -07001612 if (skb_queue_empty(&pch->file.xq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 read_lock_bh(&pch->upl);
1614 ppp = pch->ppp;
Joe Perchescd228d52007-11-12 18:07:31 -08001615 if (ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 ppp_xmit_process(ppp);
1617 read_unlock_bh(&pch->upl);
1618 }
1619}
1620
1621/*
1622 * Receive-side routines.
1623 */
1624
David S. Millera00eac02010-10-05 01:36:52 -07001625struct ppp_mp_skb_parm {
1626 u32 sequence;
1627 u8 BEbits;
1628};
1629#define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631static inline void
1632ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1633{
1634 ppp_recv_lock(ppp);
James Chapman739840d2008-12-17 12:02:16 +00001635 if (!ppp->closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 ppp_receive_frame(ppp, skb, pch);
1637 else
1638 kfree_skb(skb);
1639 ppp_recv_unlock(ppp);
1640}
1641
1642void
1643ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
1644{
1645 struct channel *pch = chan->ppp;
1646 int proto;
1647
Simon Arlottea8420e2010-05-03 10:19:33 +00001648 if (!pch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 kfree_skb(skb);
1650 return;
1651 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 read_lock_bh(&pch->upl);
Simon Arlottea8420e2010-05-03 10:19:33 +00001654 if (!pskb_may_pull(skb, 2)) {
1655 kfree_skb(skb);
1656 if (pch->ppp) {
1657 ++pch->ppp->dev->stats.rx_length_errors;
1658 ppp_receive_error(pch->ppp);
1659 }
1660 goto done;
1661 }
1662
1663 proto = PPP_PROTO(skb);
Joe Perchescd228d52007-11-12 18:07:31 -08001664 if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 /* put it on the channel queue */
1666 skb_queue_tail(&pch->file.rq, skb);
1667 /* drop old frames if queue too long */
Joe Perches8e95a202009-12-03 07:58:21 +00001668 while (pch->file.rq.qlen > PPP_MAX_RQLEN &&
1669 (skb = skb_dequeue(&pch->file.rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 kfree_skb(skb);
1671 wake_up_interruptible(&pch->file.rwait);
1672 } else {
1673 ppp_do_recv(pch->ppp, skb, pch);
1674 }
Simon Arlottea8420e2010-05-03 10:19:33 +00001675
1676done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 read_unlock_bh(&pch->upl);
1678}
1679
1680/* Put a 0-length skb in the receive queue as an error indication */
1681void
1682ppp_input_error(struct ppp_channel *chan, int code)
1683{
1684 struct channel *pch = chan->ppp;
1685 struct sk_buff *skb;
1686
Joe Perchescd228d52007-11-12 18:07:31 -08001687 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return;
1689
1690 read_lock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08001691 if (pch->ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 skb = alloc_skb(0, GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001693 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 skb->len = 0; /* probably unnecessary */
1695 skb->cb[0] = code;
1696 ppp_do_recv(pch->ppp, skb, pch);
1697 }
1698 }
1699 read_unlock_bh(&pch->upl);
1700}
1701
1702/*
1703 * We come in here to process a received frame.
1704 * The receive side of the ppp unit is locked.
1705 */
1706static void
1707ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1708{
Simon Arlottea8420e2010-05-03 10:19:33 +00001709 /* note: a 0-length skb is used as an error indication */
1710 if (skb->len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711#ifdef CONFIG_PPP_MULTILINK
1712 /* XXX do channel-level decompression here */
1713 if (PPP_PROTO(skb) == PPP_MP)
1714 ppp_receive_mp_frame(ppp, skb, pch);
1715 else
1716#endif /* CONFIG_PPP_MULTILINK */
1717 ppp_receive_nonmp_frame(ppp, skb);
Simon Arlottea8420e2010-05-03 10:19:33 +00001718 } else {
1719 kfree_skb(skb);
1720 ppp_receive_error(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724static void
1725ppp_receive_error(struct ppp *ppp)
1726{
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001727 ++ppp->dev->stats.rx_errors;
Joe Perchescd228d52007-11-12 18:07:31 -08001728 if (ppp->vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 slhc_toss(ppp->vj);
1730}
1731
1732static void
1733ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
1734{
1735 struct sk_buff *ns;
1736 int proto, len, npi;
1737
1738 /*
1739 * Decompress the frame, if compressed.
1740 * Note that some decompressors need to see uncompressed frames
1741 * that come in as well as compressed frames.
1742 */
Joe Perches8e95a202009-12-03 07:58:21 +00001743 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) &&
1744 (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 skb = ppp_decompress_frame(ppp, skb);
1746
Matt Domschb3f9b922005-11-08 09:40:47 -08001747 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
1748 goto err;
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 proto = PPP_PROTO(skb);
1751 switch (proto) {
1752 case PPP_VJC_COMP:
1753 /* decompress VJ compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08001754 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto err;
1756
Herbert Xu2a38b772007-09-16 16:22:13 -07001757 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* copy to a new sk_buff with more tailroom */
1759 ns = dev_alloc_skb(skb->len + 128);
Joe Perchescd228d52007-11-12 18:07:31 -08001760 if (!ns) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001761 netdev_err(ppp->dev, "PPP: no memory "
1762 "(VJ decomp)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 goto err;
1764 }
1765 skb_reserve(ns, 2);
1766 skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
Eric Dumazet968d7012012-05-18 20:23:00 +00001767 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 skb = ns;
1769 }
Herbert Xue3f749c2006-02-05 20:23:33 -08001770 else
1771 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
1774 if (len <= 0) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001775 netdev_printk(KERN_DEBUG, ppp->dev,
1776 "PPP: VJ decompression error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 goto err;
1778 }
1779 len += 2;
1780 if (len > skb->len)
1781 skb_put(skb, len - skb->len);
1782 else if (len < skb->len)
1783 skb_trim(skb, len);
1784 proto = PPP_IP;
1785 break;
1786
1787 case PPP_VJC_UNCOMP:
Joe Perchescd228d52007-11-12 18:07:31 -08001788 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 goto err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 /* Until we fix the decompressor need to make sure
1792 * data portion is linear.
1793 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001794 if (!pskb_may_pull(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 goto err;
1796
1797 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001798 netdev_err(ppp->dev, "PPP: VJ uncompressed error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 goto err;
1800 }
1801 proto = PPP_IP;
1802 break;
1803
1804 case PPP_CCP:
1805 ppp_ccp_peek(ppp, skb, 1);
1806 break;
1807 }
1808
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001809 ++ppp->stats64.rx_packets;
1810 ppp->stats64.rx_bytes += skb->len - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 npi = proto_to_npindex(proto);
1813 if (npi < 0) {
1814 /* control or unknown frame - pass it to pppd */
1815 skb_queue_tail(&ppp->file.rq, skb);
1816 /* limit queue length by dropping old frames */
Joe Perches8e95a202009-12-03 07:58:21 +00001817 while (ppp->file.rq.qlen > PPP_MAX_RQLEN &&
1818 (skb = skb_dequeue(&ppp->file.rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 kfree_skb(skb);
1820 /* wake up any process polling or blocking on read */
1821 wake_up_interruptible(&ppp->file.rwait);
1822
1823 } else {
1824 /* network protocol frame - give it to the kernel */
1825
1826#ifdef CONFIG_PPP_FILTER
1827 /* check if the packet passes the pass and active filters */
1828 /* the filter instructions are constructed assuming
1829 a four-byte PPP header on each packet */
Herbert Xu2a38b772007-09-16 16:22:13 -07001830 if (ppp->pass_filter || ppp->active_filter) {
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +00001831 if (skb_unclone(skb, GFP_ATOMIC))
Herbert Xu2a38b772007-09-16 16:22:13 -07001832 goto err;
1833
1834 *skb_push(skb, 2) = 0;
Joe Perches8e95a202009-12-03 07:58:21 +00001835 if (ppp->pass_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001836 SK_RUN_FILTER(ppp->pass_filter, skb) == 0) {
Herbert Xu2a38b772007-09-16 16:22:13 -07001837 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001838 netdev_printk(KERN_DEBUG, ppp->dev,
1839 "PPP: inbound frame "
1840 "not passed\n");
Herbert Xu2a38b772007-09-16 16:22:13 -07001841 kfree_skb(skb);
1842 return;
1843 }
Joe Perches8e95a202009-12-03 07:58:21 +00001844 if (!(ppp->active_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001845 SK_RUN_FILTER(ppp->active_filter, skb) == 0))
Herbert Xu2a38b772007-09-16 16:22:13 -07001846 ppp->last_recv = jiffies;
1847 __skb_pull(skb, 2);
1848 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849#endif /* CONFIG_PPP_FILTER */
Herbert Xu2a38b772007-09-16 16:22:13 -07001850 ppp->last_recv = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Joe Perches8e95a202009-12-03 07:58:21 +00001852 if ((ppp->dev->flags & IFF_UP) == 0 ||
1853 ppp->npmode[npi] != NPMODE_PASS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 kfree_skb(skb);
1855 } else {
Herbert Xucbb042f2006-03-20 22:43:56 -08001856 /* chop off protocol */
1857 skb_pull_rcsum(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 skb->dev = ppp->dev;
1859 skb->protocol = htons(npindex_to_ethertype[npi]);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001860 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863 }
1864 return;
1865
1866 err:
1867 kfree_skb(skb);
1868 ppp_receive_error(ppp);
1869}
1870
1871static struct sk_buff *
1872ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
1873{
1874 int proto = PPP_PROTO(skb);
1875 struct sk_buff *ns;
1876 int len;
1877
1878 /* Until we fix all the decompressor's need to make sure
1879 * data portion is linear.
1880 */
1881 if (!pskb_may_pull(skb, skb->len))
1882 goto err;
1883
1884 if (proto == PPP_COMP) {
Konstantin Sharlaimov4b2a8fb2007-06-23 23:05:54 -07001885 int obuff_size;
1886
1887 switch(ppp->rcomp->compress_proto) {
1888 case CI_MPPE:
1889 obuff_size = ppp->mru + PPP_HDRLEN + 1;
1890 break;
1891 default:
1892 obuff_size = ppp->mru + PPP_HDRLEN;
1893 break;
1894 }
1895
1896 ns = dev_alloc_skb(obuff_size);
Joe Perchescd228d52007-11-12 18:07:31 -08001897 if (!ns) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001898 netdev_err(ppp->dev, "ppp_decompress_frame: "
1899 "no memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 goto err;
1901 }
1902 /* the decompressor still expects the A/C bytes in the hdr */
1903 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
Konstantin Sharlaimov06c7af52007-08-21 00:12:44 -07001904 skb->len + 2, ns->data, obuff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (len < 0) {
1906 /* Pass the compressed frame to pppd as an
1907 error indication. */
1908 if (len == DECOMP_FATALERROR)
1909 ppp->rstate |= SC_DC_FERROR;
1910 kfree_skb(ns);
1911 goto err;
1912 }
1913
Eric Dumazet968d7012012-05-18 20:23:00 +00001914 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 skb = ns;
1916 skb_put(skb, len);
1917 skb_pull(skb, 2); /* pull off the A/C bytes */
1918
1919 } else {
1920 /* Uncompressed frame - pass to decompressor so it
1921 can update its dictionary if necessary. */
1922 if (ppp->rcomp->incomp)
1923 ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
1924 skb->len + 2);
1925 }
1926
1927 return skb;
1928
1929 err:
1930 ppp->rstate |= SC_DC_ERROR;
1931 ppp_receive_error(ppp);
1932 return skb;
1933}
1934
1935#ifdef CONFIG_PPP_MULTILINK
1936/*
1937 * Receive a multilink frame.
1938 * We put it on the reconstruction queue and then pull off
1939 * as many completed frames as we can.
1940 */
1941static void
1942ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1943{
1944 u32 mask, seq;
Domen Puncer81616c52005-09-10 00:27:04 -07001945 struct channel *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1947
Herbert Xu2a38b772007-09-16 16:22:13 -07001948 if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto err; /* no good, throw it away */
1950
1951 /* Decode sequence number and begin/end bits */
1952 if (ppp->flags & SC_MP_SHORTSEQ) {
1953 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
1954 mask = 0xfff;
1955 } else {
1956 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
1957 mask = 0xffffff;
1958 }
David S. Millera00eac02010-10-05 01:36:52 -07001959 PPP_MP_CB(skb)->BEbits = skb->data[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 skb_pull(skb, mphdrlen); /* pull off PPP and MP headers */
1961
1962 /*
1963 * Do protocol ID decompression on the first fragment of each packet.
1964 */
David S. Millera00eac02010-10-05 01:36:52 -07001965 if ((PPP_MP_CB(skb)->BEbits & B) && (skb->data[0] & 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 *skb_push(skb, 1) = 0;
1967
1968 /*
1969 * Expand sequence number to 32 bits, making it as close
1970 * as possible to ppp->minseq.
1971 */
1972 seq |= ppp->minseq & ~mask;
1973 if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
1974 seq += mask + 1;
1975 else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
1976 seq -= mask + 1; /* should never happen */
David S. Millera00eac02010-10-05 01:36:52 -07001977 PPP_MP_CB(skb)->sequence = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 pch->lastseq = seq;
1979
1980 /*
1981 * If this packet comes before the next one we were expecting,
1982 * drop it.
1983 */
1984 if (seq_before(seq, ppp->nextseq)) {
1985 kfree_skb(skb);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001986 ++ppp->dev->stats.rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 ppp_receive_error(ppp);
1988 return;
1989 }
1990
1991 /*
1992 * Reevaluate minseq, the minimum over all channels of the
1993 * last sequence number received on each channel. Because of
1994 * the increasing sequence number rule, we know that any fragment
1995 * before `minseq' which hasn't arrived is never going to arrive.
1996 * The list of channels can't change because we have the receive
1997 * side of the ppp unit locked.
1998 */
Domen Puncer81616c52005-09-10 00:27:04 -07001999 list_for_each_entry(ch, &ppp->channels, clist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (seq_before(ch->lastseq, seq))
2001 seq = ch->lastseq;
2002 }
2003 if (seq_before(ppp->minseq, seq))
2004 ppp->minseq = seq;
2005
2006 /* Put the fragment on the reconstruction queue */
2007 ppp_mp_insert(ppp, skb);
2008
2009 /* If the queue is getting long, don't wait any longer for packets
2010 before the start of the queue. */
David S. Miller38ce7c72008-09-23 01:17:18 -07002011 if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
stephen hemmingerc6b20d92010-06-01 06:05:46 +00002012 struct sk_buff *mskb = skb_peek(&ppp->mrq);
David S. Millera00eac02010-10-05 01:36:52 -07002013 if (seq_before(ppp->minseq, PPP_MP_CB(mskb)->sequence))
2014 ppp->minseq = PPP_MP_CB(mskb)->sequence;
David S. Miller38ce7c72008-09-23 01:17:18 -07002015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017 /* Pull completed packets off the queue and receive them. */
Ben McKeegan82b3cc12009-11-16 03:44:25 +00002018 while ((skb = ppp_mp_reconstruct(ppp))) {
2019 if (pskb_may_pull(skb, 2))
2020 ppp_receive_nonmp_frame(ppp, skb);
2021 else {
2022 ++ppp->dev->stats.rx_length_errors;
2023 kfree_skb(skb);
2024 ppp_receive_error(ppp);
2025 }
2026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 return;
2029
2030 err:
2031 kfree_skb(skb);
2032 ppp_receive_error(ppp);
2033}
2034
2035/*
2036 * Insert a fragment on the MP reconstruction queue.
2037 * The queue is ordered by increasing sequence number.
2038 */
2039static void
2040ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
2041{
2042 struct sk_buff *p;
2043 struct sk_buff_head *list = &ppp->mrq;
David S. Millera00eac02010-10-05 01:36:52 -07002044 u32 seq = PPP_MP_CB(skb)->sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 /* N.B. we don't need to lock the list lock because we have the
2047 ppp unit receive-side lock. */
David S. Miller13c98212008-10-09 16:40:29 -07002048 skb_queue_walk(list, p) {
David S. Millera00eac02010-10-05 01:36:52 -07002049 if (seq_before(seq, PPP_MP_CB(p)->sequence))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 break;
David S. Miller13c98212008-10-09 16:40:29 -07002051 }
David S. Miller43f59c82008-09-21 21:28:51 -07002052 __skb_queue_before(list, p, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055/*
2056 * Reconstruct a packet from the MP fragment queue.
2057 * We go through increasing sequence numbers until we find a
2058 * complete packet, or we get to the sequence number for a fragment
2059 * which hasn't arrived but might still do so.
2060 */
Stephen Hemminger3c582b32008-01-23 20:54:07 -08002061static struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062ppp_mp_reconstruct(struct ppp *ppp)
2063{
2064 u32 seq = ppp->nextseq;
2065 u32 minseq = ppp->minseq;
2066 struct sk_buff_head *list = &ppp->mrq;
David S. Millerd52344a72011-01-20 22:52:05 -08002067 struct sk_buff *p, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 struct sk_buff *head, *tail;
2069 struct sk_buff *skb = NULL;
2070 int lost = 0, len = 0;
2071
2072 if (ppp->mrru == 0) /* do nothing until mrru is set */
2073 return NULL;
2074 head = list->next;
2075 tail = NULL;
David S. Millerd52344a72011-01-20 22:52:05 -08002076 skb_queue_walk_safe(list, p, tmp) {
2077 again:
David S. Millera00eac02010-10-05 01:36:52 -07002078 if (seq_before(PPP_MP_CB(p)->sequence, seq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 /* this can't happen, anyway ignore the skb */
David S. Millerb48f8c22011-01-20 22:44:36 -08002080 netdev_err(ppp->dev, "ppp_mp_reconstruct bad "
2081 "seq %u < %u\n",
2082 PPP_MP_CB(p)->sequence, seq);
David S. Millerd52344a72011-01-20 22:52:05 -08002083 __skb_unlink(p, list);
2084 kfree_skb(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 continue;
2086 }
David S. Millera00eac02010-10-05 01:36:52 -07002087 if (PPP_MP_CB(p)->sequence != seq) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002088 u32 oldseq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 /* Fragment `seq' is missing. If it is after
2090 minseq, it might arrive later, so stop here. */
2091 if (seq_after(seq, minseq))
2092 break;
2093 /* Fragment `seq' is lost, keep going. */
2094 lost = 1;
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002095 oldseq = seq;
David S. Millera00eac02010-10-05 01:36:52 -07002096 seq = seq_before(minseq, PPP_MP_CB(p)->sequence)?
2097 minseq + 1: PPP_MP_CB(p)->sequence;
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002098
2099 if (ppp->debug & 1)
2100 netdev_printk(KERN_DEBUG, ppp->dev,
2101 "lost frag %u..%u\n",
2102 oldseq, seq-1);
2103
David S. Millerd52344a72011-01-20 22:52:05 -08002104 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106
2107 /*
2108 * At this point we know that all the fragments from
2109 * ppp->nextseq to seq are either present or lost.
2110 * Also, there are no complete packets in the queue
2111 * that have no missing fragments and end before this
2112 * fragment.
2113 */
2114
2115 /* B bit set indicates this fragment starts a packet */
David S. Millera00eac02010-10-05 01:36:52 -07002116 if (PPP_MP_CB(p)->BEbits & B) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 head = p;
2118 lost = 0;
2119 len = 0;
2120 }
2121
2122 len += p->len;
2123
2124 /* Got a complete packet yet? */
David S. Millera00eac02010-10-05 01:36:52 -07002125 if (lost == 0 && (PPP_MP_CB(p)->BEbits & E) &&
2126 (PPP_MP_CB(head)->BEbits & B)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (len > ppp->mrru + 2) {
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002128 ++ppp->dev->stats.rx_length_errors;
David S. Millerb48f8c22011-01-20 22:44:36 -08002129 netdev_printk(KERN_DEBUG, ppp->dev,
2130 "PPP: reconstructed packet"
2131 " is too long (%d)\n", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 } else {
2133 tail = p;
2134 break;
2135 }
2136 ppp->nextseq = seq + 1;
2137 }
2138
2139 /*
2140 * If this is the ending fragment of a packet,
2141 * and we haven't found a complete valid packet yet,
2142 * we can discard up to and including this fragment.
2143 */
David S. Millerd52344a72011-01-20 22:52:05 -08002144 if (PPP_MP_CB(p)->BEbits & E) {
2145 struct sk_buff *tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
David S. Millerd52344a72011-01-20 22:52:05 -08002147 skb_queue_reverse_walk_from_safe(list, p, tmp2) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002148 if (ppp->debug & 1)
2149 netdev_printk(KERN_DEBUG, ppp->dev,
2150 "discarding frag %u\n",
2151 PPP_MP_CB(p)->sequence);
David S. Millerd52344a72011-01-20 22:52:05 -08002152 __skb_unlink(p, list);
2153 kfree_skb(p);
2154 }
2155 head = skb_peek(list);
2156 if (!head)
2157 break;
2158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 ++seq;
2160 }
2161
2162 /* If we have a complete packet, copy it all into one skb. */
2163 if (tail != NULL) {
2164 /* If we have discarded any fragments,
2165 signal a receive error. */
David S. Millera00eac02010-10-05 01:36:52 -07002166 if (PPP_MP_CB(head)->sequence != ppp->nextseq) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002167 skb_queue_walk_safe(list, p, tmp) {
2168 if (p == head)
2169 break;
2170 if (ppp->debug & 1)
2171 netdev_printk(KERN_DEBUG, ppp->dev,
2172 "discarding frag %u\n",
2173 PPP_MP_CB(p)->sequence);
2174 __skb_unlink(p, list);
2175 kfree_skb(p);
2176 }
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08002179 netdev_printk(KERN_DEBUG, ppp->dev,
2180 " missed pkts %u..%u\n",
2181 ppp->nextseq,
2182 PPP_MP_CB(head)->sequence-1);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002183 ++ppp->dev->stats.rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 ppp_receive_error(ppp);
2185 }
2186
David S. Miller212bfb92011-01-20 22:46:07 -08002187 skb = head;
2188 if (head != tail) {
2189 struct sk_buff **fragpp = &skb_shinfo(skb)->frag_list;
2190 p = skb_queue_next(list, head);
2191 __skb_unlink(skb, list);
2192 skb_queue_walk_from_safe(list, p, tmp) {
2193 __skb_unlink(p, list);
2194 *fragpp = p;
2195 p->next = NULL;
2196 fragpp = &p->next;
2197
2198 skb->len += p->len;
2199 skb->data_len += p->len;
Eric Dumazet19c6c8f2012-02-13 04:23:24 +00002200 skb->truesize += p->truesize;
David S. Miller212bfb92011-01-20 22:46:07 -08002201
2202 if (p == tail)
2203 break;
2204 }
2205 } else {
2206 __skb_unlink(skb, list);
2207 }
2208
David S. Millera00eac02010-10-05 01:36:52 -07002209 ppp->nextseq = PPP_MP_CB(tail)->sequence + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211
2212 return skb;
2213}
2214#endif /* CONFIG_PPP_MULTILINK */
2215
2216/*
2217 * Channel interface.
2218 */
2219
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002220/* Create a new, unattached ppp channel. */
2221int ppp_register_channel(struct ppp_channel *chan)
2222{
2223 return ppp_register_net_channel(current->nsproxy->net_ns, chan);
2224}
2225
2226/* Create a new, unattached ppp channel for specified net. */
2227int ppp_register_net_channel(struct net *net, struct ppp_channel *chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228{
2229 struct channel *pch;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002230 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Panagiotis Issarisd4274b52006-08-15 16:01:07 -07002232 pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
Joe Perchescd228d52007-11-12 18:07:31 -08002233 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 return -ENOMEM;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002235
2236 pn = ppp_pernet(net);
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 pch->ppp = NULL;
2239 pch->chan = chan;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002240 pch->chan_net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 chan->ppp = pch;
2242 init_ppp_file(&pch->file, CHANNEL);
2243 pch->file.hdrlen = chan->hdrlen;
2244#ifdef CONFIG_PPP_MULTILINK
2245 pch->lastseq = -1;
2246#endif /* CONFIG_PPP_MULTILINK */
2247 init_rwsem(&pch->chan_sem);
2248 spin_lock_init(&pch->downl);
2249 rwlock_init(&pch->upl);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002250
2251 spin_lock_bh(&pn->all_channels_lock);
2252 pch->file.index = ++pn->last_channel_index;
2253 list_add(&pch->list, &pn->new_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 atomic_inc(&channel_count);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002255 spin_unlock_bh(&pn->all_channels_lock);
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return 0;
2258}
2259
2260/*
2261 * Return the index of a channel.
2262 */
2263int ppp_channel_index(struct ppp_channel *chan)
2264{
2265 struct channel *pch = chan->ppp;
2266
Joe Perchescd228d52007-11-12 18:07:31 -08002267 if (pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 return pch->file.index;
2269 return -1;
2270}
2271
2272/*
2273 * Return the PPP unit number to which a channel is connected.
2274 */
2275int ppp_unit_number(struct ppp_channel *chan)
2276{
2277 struct channel *pch = chan->ppp;
2278 int unit = -1;
2279
Joe Perchescd228d52007-11-12 18:07:31 -08002280 if (pch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 read_lock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08002282 if (pch->ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 unit = pch->ppp->file.index;
2284 read_unlock_bh(&pch->upl);
2285 }
2286 return unit;
2287}
2288
2289/*
James Chapman63f96072010-04-02 06:18:39 +00002290 * Return the PPP device interface name of a channel.
2291 */
2292char *ppp_dev_name(struct ppp_channel *chan)
2293{
2294 struct channel *pch = chan->ppp;
2295 char *name = NULL;
2296
2297 if (pch) {
2298 read_lock_bh(&pch->upl);
2299 if (pch->ppp && pch->ppp->dev)
2300 name = pch->ppp->dev->name;
2301 read_unlock_bh(&pch->upl);
2302 }
2303 return name;
2304}
2305
2306
2307/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 * Disconnect a channel from the generic layer.
2309 * This must be called in process context.
2310 */
2311void
2312ppp_unregister_channel(struct ppp_channel *chan)
2313{
2314 struct channel *pch = chan->ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002315 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Joe Perchescd228d52007-11-12 18:07:31 -08002317 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 return; /* should never happen */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 chan->ppp = NULL;
2321
2322 /*
2323 * This ensures that we have returned from any calls into the
2324 * the channel's start_xmit or ioctl routine before we proceed.
2325 */
2326 down_write(&pch->chan_sem);
2327 spin_lock_bh(&pch->downl);
2328 pch->chan = NULL;
2329 spin_unlock_bh(&pch->downl);
2330 up_write(&pch->chan_sem);
2331 ppp_disconnect_channel(pch);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002332
2333 pn = ppp_pernet(pch->chan_net);
2334 spin_lock_bh(&pn->all_channels_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 list_del(&pch->list);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002336 spin_unlock_bh(&pn->all_channels_lock);
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 pch->file.dead = 1;
2339 wake_up_interruptible(&pch->file.rwait);
2340 if (atomic_dec_and_test(&pch->file.refcnt))
2341 ppp_destroy_channel(pch);
2342}
2343
2344/*
2345 * Callback from a channel when it can accept more to transmit.
2346 * This should be called at BH/softirq level, not interrupt level.
2347 */
2348void
2349ppp_output_wakeup(struct ppp_channel *chan)
2350{
2351 struct channel *pch = chan->ppp;
2352
Joe Perchescd228d52007-11-12 18:07:31 -08002353 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 return;
2355 ppp_channel_push(pch);
2356}
2357
2358/*
2359 * Compression control.
2360 */
2361
2362/* Process the PPPIOCSCOMPRESS ioctl. */
2363static int
2364ppp_set_compress(struct ppp *ppp, unsigned long arg)
2365{
2366 int err;
2367 struct compressor *cp, *ocomp;
2368 struct ppp_option_data data;
2369 void *state, *ostate;
2370 unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
2371
2372 err = -EFAULT;
Joe Perches8e95a202009-12-03 07:58:21 +00002373 if (copy_from_user(&data, (void __user *) arg, sizeof(data)) ||
2374 (data.length <= CCP_MAX_OPTION_LENGTH &&
2375 copy_from_user(ccp_option, (void __user *) data.ptr, data.length)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 goto out;
2377 err = -EINVAL;
Joe Perches8e95a202009-12-03 07:58:21 +00002378 if (data.length > CCP_MAX_OPTION_LENGTH ||
2379 ccp_option[1] < 2 || ccp_option[1] > data.length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 goto out;
2381
Johannes Berga65e5d72008-07-09 10:28:38 +02002382 cp = try_then_request_module(
2383 find_compressor(ccp_option[0]),
2384 "ppp-compress-%d", ccp_option[0]);
Joe Perchescd228d52007-11-12 18:07:31 -08002385 if (!cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 goto out;
2387
2388 err = -ENOBUFS;
2389 if (data.transmit) {
2390 state = cp->comp_alloc(ccp_option, data.length);
Joe Perchescd228d52007-11-12 18:07:31 -08002391 if (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 ppp_xmit_lock(ppp);
2393 ppp->xstate &= ~SC_COMP_RUN;
2394 ocomp = ppp->xcomp;
2395 ostate = ppp->xc_state;
2396 ppp->xcomp = cp;
2397 ppp->xc_state = state;
2398 ppp_xmit_unlock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -08002399 if (ostate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 ocomp->comp_free(ostate);
2401 module_put(ocomp->owner);
2402 }
2403 err = 0;
2404 } else
2405 module_put(cp->owner);
2406
2407 } else {
2408 state = cp->decomp_alloc(ccp_option, data.length);
Joe Perchescd228d52007-11-12 18:07:31 -08002409 if (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 ppp_recv_lock(ppp);
2411 ppp->rstate &= ~SC_DECOMP_RUN;
2412 ocomp = ppp->rcomp;
2413 ostate = ppp->rc_state;
2414 ppp->rcomp = cp;
2415 ppp->rc_state = state;
2416 ppp_recv_unlock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -08002417 if (ostate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 ocomp->decomp_free(ostate);
2419 module_put(ocomp->owner);
2420 }
2421 err = 0;
2422 } else
2423 module_put(cp->owner);
2424 }
2425
2426 out:
2427 return err;
2428}
2429
2430/*
2431 * Look at a CCP packet and update our state accordingly.
2432 * We assume the caller has the xmit or recv path locked.
2433 */
2434static void
2435ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
2436{
2437 unsigned char *dp;
2438 int len;
2439
2440 if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
2441 return; /* no header */
2442 dp = skb->data + 2;
2443
2444 switch (CCP_CODE(dp)) {
2445 case CCP_CONFREQ:
2446
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002447 /* A ConfReq starts negotiation of compression
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 * in one direction of transmission,
2449 * and hence brings it down...but which way?
2450 *
2451 * Remember:
2452 * A ConfReq indicates what the sender would like to receive
2453 */
2454 if(inbound)
2455 /* He is proposing what I should send */
2456 ppp->xstate &= ~SC_COMP_RUN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002457 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 /* I am proposing to what he should send */
2459 ppp->rstate &= ~SC_DECOMP_RUN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 case CCP_TERMREQ:
2464 case CCP_TERMACK:
2465 /*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002466 * CCP is going down, both directions of transmission
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 */
2468 ppp->rstate &= ~SC_DECOMP_RUN;
2469 ppp->xstate &= ~SC_COMP_RUN;
2470 break;
2471
2472 case CCP_CONFACK:
2473 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
2474 break;
2475 len = CCP_LENGTH(dp);
2476 if (!pskb_may_pull(skb, len + 2))
2477 return; /* too short */
2478 dp += CCP_HDRLEN;
2479 len -= CCP_HDRLEN;
2480 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
2481 break;
2482 if (inbound) {
2483 /* we will start receiving compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002484 if (!ppp->rc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 break;
2486 if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
2487 ppp->file.index, 0, ppp->mru, ppp->debug)) {
2488 ppp->rstate |= SC_DECOMP_RUN;
2489 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
2490 }
2491 } else {
2492 /* we will soon start sending compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002493 if (!ppp->xc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 break;
2495 if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
2496 ppp->file.index, 0, ppp->debug))
2497 ppp->xstate |= SC_COMP_RUN;
2498 }
2499 break;
2500
2501 case CCP_RESETACK:
2502 /* reset the [de]compressor */
2503 if ((ppp->flags & SC_CCP_UP) == 0)
2504 break;
2505 if (inbound) {
2506 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
2507 ppp->rcomp->decomp_reset(ppp->rc_state);
2508 ppp->rstate &= ~SC_DC_ERROR;
2509 }
2510 } else {
2511 if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
2512 ppp->xcomp->comp_reset(ppp->xc_state);
2513 }
2514 break;
2515 }
2516}
2517
2518/* Free up compression resources. */
2519static void
2520ppp_ccp_closed(struct ppp *ppp)
2521{
2522 void *xstate, *rstate;
2523 struct compressor *xcomp, *rcomp;
2524
2525 ppp_lock(ppp);
2526 ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
2527 ppp->xstate = 0;
2528 xcomp = ppp->xcomp;
2529 xstate = ppp->xc_state;
2530 ppp->xc_state = NULL;
2531 ppp->rstate = 0;
2532 rcomp = ppp->rcomp;
2533 rstate = ppp->rc_state;
2534 ppp->rc_state = NULL;
2535 ppp_unlock(ppp);
2536
2537 if (xstate) {
2538 xcomp->comp_free(xstate);
2539 module_put(xcomp->owner);
2540 }
2541 if (rstate) {
2542 rcomp->decomp_free(rstate);
2543 module_put(rcomp->owner);
2544 }
2545}
2546
2547/* List of compressors. */
2548static LIST_HEAD(compressor_list);
2549static DEFINE_SPINLOCK(compressor_list_lock);
2550
2551struct compressor_entry {
2552 struct list_head list;
2553 struct compressor *comp;
2554};
2555
2556static struct compressor_entry *
2557find_comp_entry(int proto)
2558{
2559 struct compressor_entry *ce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Domen Puncer81616c52005-09-10 00:27:04 -07002561 list_for_each_entry(ce, &compressor_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (ce->comp->compress_proto == proto)
2563 return ce;
2564 }
2565 return NULL;
2566}
2567
2568/* Register a compressor */
2569int
2570ppp_register_compressor(struct compressor *cp)
2571{
2572 struct compressor_entry *ce;
2573 int ret;
2574 spin_lock(&compressor_list_lock);
2575 ret = -EEXIST;
Joe Perchescd228d52007-11-12 18:07:31 -08002576 if (find_comp_entry(cp->compress_proto))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 goto out;
2578 ret = -ENOMEM;
2579 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08002580 if (!ce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 goto out;
2582 ret = 0;
2583 ce->comp = cp;
2584 list_add(&ce->list, &compressor_list);
2585 out:
2586 spin_unlock(&compressor_list_lock);
2587 return ret;
2588}
2589
2590/* Unregister a compressor */
2591void
2592ppp_unregister_compressor(struct compressor *cp)
2593{
2594 struct compressor_entry *ce;
2595
2596 spin_lock(&compressor_list_lock);
2597 ce = find_comp_entry(cp->compress_proto);
Joe Perchescd228d52007-11-12 18:07:31 -08002598 if (ce && ce->comp == cp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 list_del(&ce->list);
2600 kfree(ce);
2601 }
2602 spin_unlock(&compressor_list_lock);
2603}
2604
2605/* Find a compressor. */
2606static struct compressor *
2607find_compressor(int type)
2608{
2609 struct compressor_entry *ce;
2610 struct compressor *cp = NULL;
2611
2612 spin_lock(&compressor_list_lock);
2613 ce = find_comp_entry(type);
Joe Perchescd228d52007-11-12 18:07:31 -08002614 if (ce) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 cp = ce->comp;
2616 if (!try_module_get(cp->owner))
2617 cp = NULL;
2618 }
2619 spin_unlock(&compressor_list_lock);
2620 return cp;
2621}
2622
2623/*
2624 * Miscelleneous stuff.
2625 */
2626
2627static void
2628ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
2629{
2630 struct slcompress *vj = ppp->vj;
2631
2632 memset(st, 0, sizeof(*st));
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002633 st->p.ppp_ipackets = ppp->stats64.rx_packets;
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002634 st->p.ppp_ierrors = ppp->dev->stats.rx_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002635 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
2636 st->p.ppp_opackets = ppp->stats64.tx_packets;
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002637 st->p.ppp_oerrors = ppp->dev->stats.tx_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002638 st->p.ppp_obytes = ppp->stats64.tx_bytes;
Joe Perchescd228d52007-11-12 18:07:31 -08002639 if (!vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 return;
2641 st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
2642 st->vj.vjs_compressed = vj->sls_o_compressed;
2643 st->vj.vjs_searches = vj->sls_o_searches;
2644 st->vj.vjs_misses = vj->sls_o_misses;
2645 st->vj.vjs_errorin = vj->sls_i_error;
2646 st->vj.vjs_tossed = vj->sls_i_tossed;
2647 st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
2648 st->vj.vjs_compressedin = vj->sls_i_compressed;
2649}
2650
2651/*
2652 * Stuff for handling the lists of ppp units and channels
2653 * and for initialization.
2654 */
2655
2656/*
2657 * Create a new ppp interface unit. Fails if it can't allocate memory
2658 * or if there is already a unit with the requested number.
2659 * unit == -1 means allocate a new number.
2660 */
2661static struct ppp *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002662ppp_create_interface(struct net *net, int unit, int *retp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
2664 struct ppp *ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002665 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 struct net_device *dev = NULL;
2667 int ret = -ENOMEM;
2668 int i;
2669
Tom Gundersenc835a672014-07-14 16:37:24 +02002670 dev = alloc_netdev(sizeof(struct ppp), "", NET_NAME_UNKNOWN,
2671 ppp_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (!dev)
2673 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002675 pn = ppp_pernet(net);
2676
Wang Chenc8019bf2008-11-20 04:24:17 -08002677 ppp = netdev_priv(dev);
2678 ppp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 ppp->mru = PPP_MRU;
2680 init_ppp_file(&ppp->file, INTERFACE);
2681 ppp->file.hdrlen = PPP_HDRLEN - 2; /* don't count proto bytes */
2682 for (i = 0; i < NUM_NP; ++i)
2683 ppp->npmode[i] = NPMODE_PASS;
2684 INIT_LIST_HEAD(&ppp->channels);
2685 spin_lock_init(&ppp->rlock);
2686 spin_lock_init(&ppp->wlock);
2687#ifdef CONFIG_PPP_MULTILINK
2688 ppp->minseq = -1;
2689 skb_queue_head_init(&ppp->mrq);
2690#endif /* CONFIG_PPP_MULTILINK */
Daniel Borkmann568f1942014-03-28 18:58:23 +01002691#ifdef CONFIG_PPP_FILTER
2692 ppp->pass_filter = NULL;
2693 ppp->active_filter = NULL;
2694#endif /* CONFIG_PPP_FILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002696 /*
2697 * drum roll: don't forget to set
2698 * the net device is belong to
2699 */
2700 dev_net_set(dev, net);
2701
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002702 mutex_lock(&pn->all_ppp_mutex);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002703
2704 if (unit < 0) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002705 unit = unit_get(&pn->units_idr, ppp);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002706 if (unit < 0) {
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002707 ret = unit;
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002708 goto out2;
2709 }
2710 } else {
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002711 ret = -EEXIST;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002712 if (unit_find(&pn->units_idr, unit))
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002713 goto out2; /* unit already exists */
Cyrill Gorcunov85997572009-01-12 22:11:56 -08002714 /*
2715 * if caller need a specified unit number
2716 * lets try to satisfy him, otherwise --
2717 * he should better ask us for new unit number
2718 *
2719 * NOTE: yes I know that returning EEXIST it's not
2720 * fair but at least pppd will ask us to allocate
2721 * new unit in this case so user is happy :)
2722 */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002723 unit = unit_set(&pn->units_idr, ppp, unit);
Cyrill Gorcunov85997572009-01-12 22:11:56 -08002724 if (unit < 0)
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002725 goto out2;
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
2728 /* Initialize the new ppp unit */
2729 ppp->file.index = unit;
2730 sprintf(dev->name, "ppp%d", unit);
2731
2732 ret = register_netdev(dev);
2733 if (ret != 0) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002734 unit_put(&pn->units_idr, unit);
David S. Millerb48f8c22011-01-20 22:44:36 -08002735 netdev_err(ppp->dev, "PPP: couldn't register device %s (%d)\n",
2736 dev->name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 goto out2;
2738 }
2739
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002740 ppp->ppp_net = net;
2741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 atomic_inc(&ppp_unit_count);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002743 mutex_unlock(&pn->all_ppp_mutex);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 *retp = 0;
2746 return ppp;
2747
2748out2:
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002749 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 free_netdev(dev);
2751out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 *retp = ret;
2753 return NULL;
2754}
2755
2756/*
2757 * Initialize a ppp_file structure.
2758 */
2759static void
2760init_ppp_file(struct ppp_file *pf, int kind)
2761{
2762 pf->kind = kind;
2763 skb_queue_head_init(&pf->xq);
2764 skb_queue_head_init(&pf->rq);
2765 atomic_set(&pf->refcnt, 1);
2766 init_waitqueue_head(&pf->rwait);
2767}
2768
2769/*
2770 * Take down a ppp interface unit - called when the owning file
2771 * (the one that created the unit) is closed or detached.
2772 */
2773static void ppp_shutdown_interface(struct ppp *ppp)
2774{
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002775 struct ppp_net *pn;
2776
2777 pn = ppp_pernet(ppp->ppp_net);
2778 mutex_lock(&pn->all_ppp_mutex);
2779
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 /* This will call dev_close() for us. */
James Chapman739840d2008-12-17 12:02:16 +00002781 ppp_lock(ppp);
2782 if (!ppp->closing) {
2783 ppp->closing = 1;
2784 ppp_unlock(ppp);
2785 unregister_netdev(ppp->dev);
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002786 unit_put(&pn->units_idr, ppp->file.index);
James Chapman739840d2008-12-17 12:02:16 +00002787 } else
2788 ppp_unlock(ppp);
2789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 ppp->file.dead = 1;
2791 ppp->owner = NULL;
2792 wake_up_interruptible(&ppp->file.rwait);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002793
2794 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}
2796
2797/*
2798 * Free the memory used by a ppp unit. This is only called once
2799 * there are no channels connected to the unit and no file structs
2800 * that reference the unit.
2801 */
2802static void ppp_destroy_interface(struct ppp *ppp)
2803{
2804 atomic_dec(&ppp_unit_count);
2805
2806 if (!ppp->file.dead || ppp->n_channels) {
2807 /* "can't happen" */
David S. Millerb48f8c22011-01-20 22:44:36 -08002808 netdev_err(ppp->dev, "ppp: destroying ppp struct %p "
2809 "but dead=%d n_channels=%d !\n",
2810 ppp, ppp->file.dead, ppp->n_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 return;
2812 }
2813
2814 ppp_ccp_closed(ppp);
2815 if (ppp->vj) {
2816 slhc_free(ppp->vj);
2817 ppp->vj = NULL;
2818 }
2819 skb_queue_purge(&ppp->file.xq);
2820 skb_queue_purge(&ppp->file.rq);
2821#ifdef CONFIG_PPP_MULTILINK
2822 skb_queue_purge(&ppp->mrq);
2823#endif /* CONFIG_PPP_MULTILINK */
2824#ifdef CONFIG_PPP_FILTER
Daniel Borkmann568f1942014-03-28 18:58:23 +01002825 if (ppp->pass_filter) {
2826 sk_unattached_filter_destroy(ppp->pass_filter);
2827 ppp->pass_filter = NULL;
2828 }
2829
2830 if (ppp->active_filter) {
2831 sk_unattached_filter_destroy(ppp->active_filter);
2832 ppp->active_filter = NULL;
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834#endif /* CONFIG_PPP_FILTER */
2835
Wei Yongjun1d2f8c92009-02-25 00:16:08 +00002836 kfree_skb(ppp->xmit_pending);
G. Liakhovetski165de5b2007-03-25 19:04:09 -07002837
James Chapman739840d2008-12-17 12:02:16 +00002838 free_netdev(ppp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839}
2840
2841/*
2842 * Locate an existing ppp unit.
Arjan van de Ven8ed965d2006-03-23 03:00:21 -08002843 * The caller should have locked the all_ppp_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 */
2845static struct ppp *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002846ppp_find_unit(struct ppp_net *pn, int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847{
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002848 return unit_find(&pn->units_idr, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849}
2850
2851/*
2852 * Locate an existing ppp channel.
2853 * The caller should have locked the all_channels_lock.
2854 * First we look in the new_channels list, then in the
2855 * all_channels list. If found in the new_channels list,
2856 * we move it to the all_channels list. This is for speed
2857 * when we have a lot of channels in use.
2858 */
2859static struct channel *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002860ppp_find_channel(struct ppp_net *pn, int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
2862 struct channel *pch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002864 list_for_each_entry(pch, &pn->new_channels, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 if (pch->file.index == unit) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002866 list_move(&pch->list, &pn->all_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return pch;
2868 }
2869 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002870
2871 list_for_each_entry(pch, &pn->all_channels, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 if (pch->file.index == unit)
2873 return pch;
2874 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 return NULL;
2877}
2878
2879/*
2880 * Connect a PPP channel to a PPP interface unit.
2881 */
2882static int
2883ppp_connect_channel(struct channel *pch, int unit)
2884{
2885 struct ppp *ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002886 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 int ret = -ENXIO;
2888 int hdrlen;
2889
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002890 pn = ppp_pernet(pch->chan_net);
2891
2892 mutex_lock(&pn->all_ppp_mutex);
2893 ppp = ppp_find_unit(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -08002894 if (!ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 goto out;
2896 write_lock_bh(&pch->upl);
2897 ret = -EINVAL;
Joe Perchescd228d52007-11-12 18:07:31 -08002898 if (pch->ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 goto outl;
2900
2901 ppp_lock(ppp);
2902 if (pch->file.hdrlen > ppp->file.hdrlen)
2903 ppp->file.hdrlen = pch->file.hdrlen;
2904 hdrlen = pch->file.hdrlen + 2; /* for protocol bytes */
James Chapman739840d2008-12-17 12:02:16 +00002905 if (hdrlen > ppp->dev->hard_header_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 ppp->dev->hard_header_len = hdrlen;
2907 list_add_tail(&pch->clist, &ppp->channels);
2908 ++ppp->n_channels;
2909 pch->ppp = ppp;
2910 atomic_inc(&ppp->file.refcnt);
2911 ppp_unlock(ppp);
2912 ret = 0;
2913
2914 outl:
2915 write_unlock_bh(&pch->upl);
2916 out:
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002917 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 return ret;
2919}
2920
2921/*
2922 * Disconnect a channel from its ppp unit.
2923 */
2924static int
2925ppp_disconnect_channel(struct channel *pch)
2926{
2927 struct ppp *ppp;
2928 int err = -EINVAL;
2929
2930 write_lock_bh(&pch->upl);
2931 ppp = pch->ppp;
2932 pch->ppp = NULL;
2933 write_unlock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08002934 if (ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 /* remove it from the ppp unit's list */
2936 ppp_lock(ppp);
2937 list_del(&pch->clist);
2938 if (--ppp->n_channels == 0)
2939 wake_up_interruptible(&ppp->file.rwait);
2940 ppp_unlock(ppp);
2941 if (atomic_dec_and_test(&ppp->file.refcnt))
2942 ppp_destroy_interface(ppp);
2943 err = 0;
2944 }
2945 return err;
2946}
2947
2948/*
2949 * Free up the resources used by a ppp channel.
2950 */
2951static void ppp_destroy_channel(struct channel *pch)
2952{
2953 atomic_dec(&channel_count);
2954
2955 if (!pch->file.dead) {
2956 /* "can't happen" */
David S. Millerb48f8c22011-01-20 22:44:36 -08002957 pr_err("ppp: destroying undead channel %p !\n", pch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 return;
2959 }
2960 skb_queue_purge(&pch->file.xq);
2961 skb_queue_purge(&pch->file.rq);
2962 kfree(pch);
2963}
2964
2965static void __exit ppp_cleanup(void)
2966{
2967 /* should never happen */
2968 if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
David S. Millerb48f8c22011-01-20 22:44:36 -08002969 pr_err("PPP: removing module but units remain!\n");
Akinobu Mita68fc4fa2007-07-19 01:47:50 -07002970 unregister_chrdev(PPP_MAJOR, "ppp");
Greg Kroah-Hartman9a6a2a52006-09-12 17:00:10 +02002971 device_destroy(ppp_class, MKDEV(PPP_MAJOR, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08002972 class_destroy(ppp_class);
Eric W. Biederman741a6fa2009-11-29 15:46:09 +00002973 unregister_pernet_device(&ppp_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
2975
2976/*
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002977 * Units handling. Caller must protect concurrent access
2978 * by holding all_ppp_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002981/* associate pointer with specified number */
2982static int unit_set(struct idr *p, void *ptr, int n)
2983{
2984 int unit;
2985
Tejun Heo2fa532c2013-02-27 17:04:36 -08002986 unit = idr_alloc(p, ptr, n, n + 1, GFP_KERNEL);
2987 if (unit == -ENOSPC)
2988 unit = -EINVAL;
Cyrill Gorcunov85997572009-01-12 22:11:56 -08002989 return unit;
2990}
2991
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002992/* get new free unit number and associate pointer with it */
2993static int unit_get(struct idr *p, void *ptr)
2994{
Tejun Heo2fa532c2013-02-27 17:04:36 -08002995 return idr_alloc(p, ptr, 0, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002998/* put unit number back to a pool */
2999static void unit_put(struct idr *p, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003001 idr_remove(p, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002}
3003
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003004/* get pointer associated with the number */
3005static void *unit_find(struct idr *p, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003007 return idr_find(p, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008}
3009
3010/* Module/initialization stuff */
3011
3012module_init(ppp_init);
3013module_exit(ppp_cleanup);
3014
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003015EXPORT_SYMBOL(ppp_register_net_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016EXPORT_SYMBOL(ppp_register_channel);
3017EXPORT_SYMBOL(ppp_unregister_channel);
3018EXPORT_SYMBOL(ppp_channel_index);
3019EXPORT_SYMBOL(ppp_unit_number);
James Chapman63f96072010-04-02 06:18:39 +00003020EXPORT_SYMBOL(ppp_dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021EXPORT_SYMBOL(ppp_input);
3022EXPORT_SYMBOL(ppp_input_error);
3023EXPORT_SYMBOL(ppp_output_wakeup);
3024EXPORT_SYMBOL(ppp_register_compressor);
3025EXPORT_SYMBOL(ppp_unregister_compressor);
3026MODULE_LICENSE("GPL");
Kay Sievers578454f2010-05-20 18:07:20 +02003027MODULE_ALIAS_CHARDEV(PPP_MAJOR, 0);
3028MODULE_ALIAS("devname:ppp");