blob: d5b77ef3a2100c3ce42ad75f4e1c9fe981f046e9 [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;
Christoph Schulz3916a312014-07-14 08:01:10 +0200542 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *p = code;
558 return uprog.len;
559}
560#endif /* CONFIG_PPP_FILTER */
561
Alan Coxf3ff8a42008-05-25 23:40:58 -0700562static long ppp_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 struct ppp_file *pf = file->private_data;
565 struct ppp *ppp;
566 int err = -EFAULT, val, val2, i;
567 struct ppp_idle idle;
568 struct npioctl npi;
569 int unit, cflags;
570 struct slcompress *vj;
571 void __user *argp = (void __user *)arg;
572 int __user *p = argp;
573
Joe Perchescd228d52007-11-12 18:07:31 -0800574 if (!pf)
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800575 return ppp_unattached_ioctl(current->nsproxy->net_ns,
576 pf, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (cmd == PPPIOCDETACH) {
579 /*
580 * We have to be careful here... if the file descriptor
581 * has been dup'd, we could have another process in the
582 * middle of a poll using the same file *, so we had
583 * better not free the interface data structures -
584 * instead we fail the ioctl. Even in this case, we
585 * shut down the interface if we are the owner of it.
586 * Actually, we should get rid of PPPIOCDETACH, userland
587 * (i.e. pppd) could achieve the same effect by closing
588 * this fd and reopening /dev/ppp.
589 */
590 err = -EINVAL;
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000591 mutex_lock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (pf->kind == INTERFACE) {
593 ppp = PF_TO_PPP(pf);
594 if (file == ppp->owner)
595 ppp_shutdown_interface(ppp);
596 }
Al Viro516e0cc2008-07-26 00:39:17 -0400597 if (atomic_long_read(&file->f_count) <= 2) {
Alan Coxf3ff8a42008-05-25 23:40:58 -0700598 ppp_release(NULL, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 err = 0;
600 } else
David S. Millerb48f8c22011-01-20 22:44:36 -0800601 pr_warn("PPPIOCDETACH file->f_count=%ld\n",
602 atomic_long_read(&file->f_count));
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000603 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return err;
605 }
606
607 if (pf->kind == CHANNEL) {
Alan Coxf3ff8a42008-05-25 23:40:58 -0700608 struct channel *pch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct ppp_channel *chan;
610
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000611 mutex_lock(&ppp_mutex);
Alan Coxf3ff8a42008-05-25 23:40:58 -0700612 pch = PF_TO_CHANNEL(pf);
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 switch (cmd) {
615 case PPPIOCCONNECT:
616 if (get_user(unit, p))
617 break;
618 err = ppp_connect_channel(pch, unit);
619 break;
620
621 case PPPIOCDISCONN:
622 err = ppp_disconnect_channel(pch);
623 break;
624
625 default:
626 down_read(&pch->chan_sem);
627 chan = pch->chan;
628 err = -ENOTTY;
629 if (chan && chan->ops->ioctl)
630 err = chan->ops->ioctl(chan, cmd, arg);
631 up_read(&pch->chan_sem);
632 }
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000633 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return err;
635 }
636
637 if (pf->kind != INTERFACE) {
638 /* can't happen */
David S. Millerb48f8c22011-01-20 22:44:36 -0800639 pr_err("PPP: not interface or channel??\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EINVAL;
641 }
642
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000643 mutex_lock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 ppp = PF_TO_PPP(pf);
645 switch (cmd) {
646 case PPPIOCSMRU:
647 if (get_user(val, p))
648 break;
649 ppp->mru = val;
650 err = 0;
651 break;
652
653 case PPPIOCSFLAGS:
654 if (get_user(val, p))
655 break;
656 ppp_lock(ppp);
657 cflags = ppp->flags & ~val;
658 ppp->flags = val & SC_FLAG_BITS;
659 ppp_unlock(ppp);
660 if (cflags & SC_CCP_OPEN)
661 ppp_ccp_closed(ppp);
662 err = 0;
663 break;
664
665 case PPPIOCGFLAGS:
666 val = ppp->flags | ppp->xstate | ppp->rstate;
667 if (put_user(val, p))
668 break;
669 err = 0;
670 break;
671
672 case PPPIOCSCOMPRESS:
673 err = ppp_set_compress(ppp, arg);
674 break;
675
676 case PPPIOCGUNIT:
677 if (put_user(ppp->file.index, p))
678 break;
679 err = 0;
680 break;
681
682 case PPPIOCSDEBUG:
683 if (get_user(val, p))
684 break;
685 ppp->debug = val;
686 err = 0;
687 break;
688
689 case PPPIOCGDEBUG:
690 if (put_user(ppp->debug, p))
691 break;
692 err = 0;
693 break;
694
695 case PPPIOCGIDLE:
696 idle.xmit_idle = (jiffies - ppp->last_xmit) / HZ;
697 idle.recv_idle = (jiffies - ppp->last_recv) / HZ;
698 if (copy_to_user(argp, &idle, sizeof(idle)))
699 break;
700 err = 0;
701 break;
702
703 case PPPIOCSMAXCID:
704 if (get_user(val, p))
705 break;
706 val2 = 15;
707 if ((val >> 16) != 0) {
708 val2 = val >> 16;
709 val &= 0xffff;
710 }
711 vj = slhc_init(val2+1, val+1);
Joe Perchescd228d52007-11-12 18:07:31 -0800712 if (!vj) {
David S. Millerb48f8c22011-01-20 22:44:36 -0800713 netdev_err(ppp->dev,
714 "PPP: no memory (VJ compressor)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 err = -ENOMEM;
716 break;
717 }
718 ppp_lock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -0800719 if (ppp->vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 slhc_free(ppp->vj);
721 ppp->vj = vj;
722 ppp_unlock(ppp);
723 err = 0;
724 break;
725
726 case PPPIOCGNPMODE:
727 case PPPIOCSNPMODE:
728 if (copy_from_user(&npi, argp, sizeof(npi)))
729 break;
730 err = proto_to_npindex(npi.protocol);
731 if (err < 0)
732 break;
733 i = err;
734 if (cmd == PPPIOCGNPMODE) {
735 err = -EFAULT;
736 npi.mode = ppp->npmode[i];
737 if (copy_to_user(argp, &npi, sizeof(npi)))
738 break;
739 } else {
740 ppp->npmode[i] = npi.mode;
741 /* we may be able to transmit more packets now (??) */
742 netif_wake_queue(ppp->dev);
743 }
744 err = 0;
745 break;
746
747#ifdef CONFIG_PPP_FILTER
748 case PPPIOCSPASS:
749 {
750 struct sock_filter *code;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 err = get_filter(argp, &code);
753 if (err >= 0) {
Daniel Borkmannb1fcd352014-05-23 18:43:58 +0200754 struct sock_fprog_kern fprog = {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100755 .len = err,
756 .filter = code,
757 };
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 ppp_lock(ppp);
Christoph Schulzcc25eaa2014-07-16 22:10:29 +0200760 if (ppp->pass_filter) {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100761 sk_unattached_filter_destroy(ppp->pass_filter);
Christoph Schulzcc25eaa2014-07-16 22:10:29 +0200762 ppp->pass_filter = NULL;
763 }
764 if (fprog.filter != NULL)
765 err = sk_unattached_filter_create(&ppp->pass_filter,
766 &fprog);
767 else
768 err = 0;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100769 kfree(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 ppp_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772 break;
773 }
774 case PPPIOCSACTIVE:
775 {
776 struct sock_filter *code;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 err = get_filter(argp, &code);
779 if (err >= 0) {
Daniel Borkmannb1fcd352014-05-23 18:43:58 +0200780 struct sock_fprog_kern fprog = {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100781 .len = err,
782 .filter = code,
783 };
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 ppp_lock(ppp);
Christoph Schulzcc25eaa2014-07-16 22:10:29 +0200786 if (ppp->active_filter) {
Daniel Borkmann568f1942014-03-28 18:58:23 +0100787 sk_unattached_filter_destroy(ppp->active_filter);
Christoph Schulzcc25eaa2014-07-16 22:10:29 +0200788 ppp->active_filter = NULL;
789 }
790 if (fprog.filter != NULL)
791 err = sk_unattached_filter_create(&ppp->active_filter,
792 &fprog);
793 else
794 err = 0;
Daniel Borkmann568f1942014-03-28 18:58:23 +0100795 kfree(code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 ppp_unlock(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 break;
799 }
800#endif /* CONFIG_PPP_FILTER */
801
802#ifdef CONFIG_PPP_MULTILINK
803 case PPPIOCSMRRU:
804 if (get_user(val, p))
805 break;
806 ppp_recv_lock(ppp);
807 ppp->mrru = val;
808 ppp_recv_unlock(ppp);
809 err = 0;
810 break;
811#endif /* CONFIG_PPP_MULTILINK */
812
813 default:
814 err = -ENOTTY;
815 }
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000816 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return err;
818}
819
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800820static int ppp_unattached_ioctl(struct net *net, struct ppp_file *pf,
821 struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 int unit, err = -EFAULT;
824 struct ppp *ppp;
825 struct channel *chan;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800826 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 int __user *p = (int __user *)arg;
828
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000829 mutex_lock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 switch (cmd) {
831 case PPPIOCNEWUNIT:
832 /* Create a new ppp unit */
833 if (get_user(unit, p))
834 break;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800835 ppp = ppp_create_interface(net, unit, &err);
Joe Perchescd228d52007-11-12 18:07:31 -0800836 if (!ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 break;
838 file->private_data = &ppp->file;
839 ppp->owner = file;
840 err = -EFAULT;
841 if (put_user(ppp->file.index, p))
842 break;
843 err = 0;
844 break;
845
846 case PPPIOCATTACH:
847 /* Attach to an existing ppp unit */
848 if (get_user(unit, p))
849 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 err = -ENXIO;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800851 pn = ppp_pernet(net);
852 mutex_lock(&pn->all_ppp_mutex);
853 ppp = ppp_find_unit(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -0800854 if (ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 atomic_inc(&ppp->file.refcnt);
856 file->private_data = &ppp->file;
857 err = 0;
858 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800859 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
861
862 case PPPIOCATTCHAN:
863 if (get_user(unit, p))
864 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 err = -ENXIO;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800866 pn = ppp_pernet(net);
867 spin_lock_bh(&pn->all_channels_lock);
868 chan = ppp_find_channel(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -0800869 if (chan) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 atomic_inc(&chan->file.refcnt);
871 file->private_data = &chan->file;
872 err = 0;
873 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800874 spin_unlock_bh(&pn->all_channels_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 break;
876
877 default:
878 err = -ENOTTY;
879 }
Arnd Bergmann15fd0cd2010-07-11 11:18:57 +0000880 mutex_unlock(&ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return err;
882}
883
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800884static const struct file_operations ppp_device_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 .owner = THIS_MODULE,
886 .read = ppp_read,
887 .write = ppp_write,
888 .poll = ppp_poll,
Alan Coxf3ff8a42008-05-25 23:40:58 -0700889 .unlocked_ioctl = ppp_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 .open = ppp_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200891 .release = ppp_release,
892 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893};
894
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800895static __net_init int ppp_init_net(struct net *net)
896{
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000897 struct ppp_net *pn = net_generic(net, ppp_net_id);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800898
899 idr_init(&pn->units_idr);
900 mutex_init(&pn->all_ppp_mutex);
901
902 INIT_LIST_HEAD(&pn->all_channels);
903 INIT_LIST_HEAD(&pn->new_channels);
904
905 spin_lock_init(&pn->all_channels_lock);
906
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800907 return 0;
908}
909
910static __net_exit void ppp_exit_net(struct net *net)
911{
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000912 struct ppp_net *pn = net_generic(net, ppp_net_id);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800913
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800914 idr_destroy(&pn->units_idr);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800915}
916
Alexey Dobriyan00129852009-02-09 18:05:16 -0800917static struct pernet_operations ppp_net_ops = {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800918 .init = ppp_init_net,
919 .exit = ppp_exit_net,
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000920 .id = &ppp_net_id,
921 .size = sizeof(struct ppp_net),
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800922};
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924#define PPP_MAJOR 108
925
926/* Called at boot time if ppp is compiled into the kernel,
927 or at module load time (from init_module) if compiled as a module. */
928static int __init ppp_init(void)
929{
930 int err;
931
David S. Millerb48f8c22011-01-20 22:44:36 -0800932 pr_info("PPP generic driver version " PPP_VERSION "\n");
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800933
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000934 err = register_pernet_device(&ppp_net_ops);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800935 if (err) {
David S. Millerb48f8c22011-01-20 22:44:36 -0800936 pr_err("failed to register PPP pernet device (%d)\n", err);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800937 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800940 err = register_chrdev(PPP_MAJOR, "ppp", &ppp_device_fops);
941 if (err) {
David S. Millerb48f8c22011-01-20 22:44:36 -0800942 pr_err("failed to register PPP device (%d)\n", err);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800943 goto out_net;
944 }
945
946 ppp_class = class_create(THIS_MODULE, "ppp");
947 if (IS_ERR(ppp_class)) {
948 err = PTR_ERR(ppp_class);
949 goto out_chrdev;
950 }
951
952 /* not a big deal if we fail here :-) */
953 device_create(ppp_class, NULL, MKDEV(PPP_MAJOR, 0), NULL, "ppp");
954
955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957out_chrdev:
958 unregister_chrdev(PPP_MAJOR, "ppp");
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800959out_net:
Eric W. Biederman741a6fa2009-11-29 15:46:09 +0000960 unregister_pernet_device(&ppp_net_ops);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -0800961out:
962 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
965/*
966 * Network interface unit routines.
967 */
Stephen Hemminger424efe92009-08-31 19:50:51 +0000968static netdev_tx_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969ppp_start_xmit(struct sk_buff *skb, struct net_device *dev)
970{
Wang Chenc8019bf2008-11-20 04:24:17 -0800971 struct ppp *ppp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 int npi, proto;
973 unsigned char *pp;
974
975 npi = ethertype_to_npindex(ntohs(skb->protocol));
976 if (npi < 0)
977 goto outf;
978
979 /* Drop, accept or reject the packet */
980 switch (ppp->npmode[npi]) {
981 case NPMODE_PASS:
982 break;
983 case NPMODE_QUEUE:
984 /* it would be nice to have a way to tell the network
985 system to queue this one up for later. */
986 goto outf;
987 case NPMODE_DROP:
988 case NPMODE_ERROR:
989 goto outf;
990 }
991
992 /* Put the 2-byte PPP protocol number on the front,
993 making sure there is room for the address and control fields. */
Herbert Xu7b797d52007-09-16 16:21:42 -0700994 if (skb_cow_head(skb, PPP_HDRLEN))
995 goto outf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 pp = skb_push(skb, 2);
998 proto = npindex_to_proto[npi];
Changli Gao96545ae2011-01-06 13:37:36 +0000999 put_unaligned_be16(proto, pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 skb_queue_tail(&ppp->file.xq, skb);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001002 ppp_xmit_process(ppp);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001003 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 outf:
1006 kfree_skb(skb);
Paulius Zaleckas6ceffd42009-02-23 04:59:43 +00001007 ++dev->stats.tx_dropped;
Patrick McHardy6ed10652009-06-23 06:03:08 +00001008 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011static int
1012ppp_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1013{
Wang Chenc8019bf2008-11-20 04:24:17 -08001014 struct ppp *ppp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int err = -EFAULT;
1016 void __user *addr = (void __user *) ifr->ifr_ifru.ifru_data;
1017 struct ppp_stats stats;
1018 struct ppp_comp_stats cstats;
1019 char *vers;
1020
1021 switch (cmd) {
1022 case SIOCGPPPSTATS:
1023 ppp_get_stats(ppp, &stats);
1024 if (copy_to_user(addr, &stats, sizeof(stats)))
1025 break;
1026 err = 0;
1027 break;
1028
1029 case SIOCGPPPCSTATS:
1030 memset(&cstats, 0, sizeof(cstats));
Joe Perchescd228d52007-11-12 18:07:31 -08001031 if (ppp->xc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 ppp->xcomp->comp_stat(ppp->xc_state, &cstats.c);
Joe Perchescd228d52007-11-12 18:07:31 -08001033 if (ppp->rc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 ppp->rcomp->decomp_stat(ppp->rc_state, &cstats.d);
1035 if (copy_to_user(addr, &cstats, sizeof(cstats)))
1036 break;
1037 err = 0;
1038 break;
1039
1040 case SIOCGPPPVER:
1041 vers = PPP_VERSION;
1042 if (copy_to_user(addr, vers, strlen(vers) + 1))
1043 break;
1044 err = 0;
1045 break;
1046
1047 default:
1048 err = -EINVAL;
1049 }
1050
1051 return err;
1052}
1053
stephen hemmingerb77bc202012-10-29 08:34:02 +00001054static struct rtnl_link_stats64*
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001055ppp_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats64)
1056{
1057 struct ppp *ppp = netdev_priv(dev);
1058
1059 ppp_recv_lock(ppp);
1060 stats64->rx_packets = ppp->stats64.rx_packets;
1061 stats64->rx_bytes = ppp->stats64.rx_bytes;
1062 ppp_recv_unlock(ppp);
1063
1064 ppp_xmit_lock(ppp);
1065 stats64->tx_packets = ppp->stats64.tx_packets;
1066 stats64->tx_bytes = ppp->stats64.tx_bytes;
1067 ppp_xmit_unlock(ppp);
1068
1069 stats64->rx_errors = dev->stats.rx_errors;
1070 stats64->tx_errors = dev->stats.tx_errors;
1071 stats64->rx_dropped = dev->stats.rx_dropped;
1072 stats64->tx_dropped = dev->stats.tx_dropped;
1073 stats64->rx_length_errors = dev->stats.rx_length_errors;
1074
1075 return stats64;
1076}
1077
Eric Dumazet303c07d2013-02-19 10:42:03 -08001078static struct lock_class_key ppp_tx_busylock;
1079static int ppp_dev_init(struct net_device *dev)
1080{
1081 dev->qdisc_tx_busylock = &ppp_tx_busylock;
1082 return 0;
1083}
1084
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001085static const struct net_device_ops ppp_netdev_ops = {
Eric Dumazet303c07d2013-02-19 10:42:03 -08001086 .ndo_init = ppp_dev_init,
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001087 .ndo_start_xmit = ppp_start_xmit,
1088 .ndo_do_ioctl = ppp_net_ioctl,
1089 .ndo_get_stats64 = ppp_get_stats64,
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001090};
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092static void ppp_setup(struct net_device *dev)
1093{
Stephen Hemminger52256cf2008-11-19 22:22:30 -08001094 dev->netdev_ops = &ppp_netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 dev->hard_header_len = PPP_HDRLEN;
Paul Mackerrasbf7daeb2012-03-04 12:56:04 +00001096 dev->mtu = PPP_MRU;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 dev->addr_len = 0;
1098 dev->tx_queue_len = 3;
1099 dev->type = ARPHRD_PPP;
1100 dev->flags = IFF_POINTOPOINT | IFF_NOARP | IFF_MULTICAST;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08001101 dev->features |= NETIF_F_NETNS_LOCAL;
Eric Dumazet8b2d8502009-05-19 14:24:37 -07001102 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105/*
1106 * Transmit-side routines.
1107 */
1108
1109/*
1110 * Called to do any work queued up on the transmit side
1111 * that can now be done.
1112 */
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001113static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114ppp_xmit_process(struct ppp *ppp)
1115{
1116 struct sk_buff *skb;
1117
1118 ppp_xmit_lock(ppp);
James Chapman739840d2008-12-17 12:02:16 +00001119 if (!ppp->closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 ppp_push(ppp);
Joe Perches8e95a202009-12-03 07:58:21 +00001121 while (!ppp->xmit_pending &&
1122 (skb = skb_dequeue(&ppp->file.xq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 ppp_send_frame(ppp, skb);
1124 /* If there's no work left to do, tell the core net
1125 code that we can accept some more. */
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001126 if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 netif_wake_queue(ppp->dev);
David Woodhouse9a5d2bd2012-04-08 10:01:44 +00001128 else
1129 netif_stop_queue(ppp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131 ppp_xmit_unlock(ppp);
1132}
1133
Matt Domschb3f9b922005-11-08 09:40:47 -08001134static inline struct sk_buff *
1135pad_compress_skb(struct ppp *ppp, struct sk_buff *skb)
1136{
1137 struct sk_buff *new_skb;
1138 int len;
1139 int new_skb_size = ppp->dev->mtu +
1140 ppp->xcomp->comp_extra + ppp->dev->hard_header_len;
1141 int compressor_skb_size = ppp->dev->mtu +
1142 ppp->xcomp->comp_extra + PPP_HDRLEN;
1143 new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
1144 if (!new_skb) {
1145 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001146 netdev_err(ppp->dev, "PPP: no memory (comp pkt)\n");
Matt Domschb3f9b922005-11-08 09:40:47 -08001147 return NULL;
1148 }
1149 if (ppp->dev->hard_header_len > PPP_HDRLEN)
1150 skb_reserve(new_skb,
1151 ppp->dev->hard_header_len - PPP_HDRLEN);
1152
1153 /* compressor still expects A/C bytes in hdr */
1154 len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
1155 new_skb->data, skb->len + 2,
1156 compressor_skb_size);
1157 if (len > 0 && (ppp->flags & SC_CCP_UP)) {
Eric Dumazet968d7012012-05-18 20:23:00 +00001158 consume_skb(skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001159 skb = new_skb;
1160 skb_put(skb, len);
1161 skb_pull(skb, 2); /* pull off A/C bytes */
1162 } else if (len == 0) {
1163 /* didn't compress, or CCP not up yet */
Eric Dumazet968d7012012-05-18 20:23:00 +00001164 consume_skb(new_skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001165 new_skb = skb;
1166 } else {
1167 /*
1168 * (len < 0)
1169 * MPPE requires that we do not send unencrypted
1170 * frames. The compressor will return -1 if we
1171 * should drop the frame. We cannot simply test
1172 * the compress_proto because MPPE and MPPC share
1173 * the same number.
1174 */
1175 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001176 netdev_err(ppp->dev, "ppp: compressor dropped pkt\n");
Matt Domschb3f9b922005-11-08 09:40:47 -08001177 kfree_skb(skb);
Eric Dumazet968d7012012-05-18 20:23:00 +00001178 consume_skb(new_skb);
Matt Domschb3f9b922005-11-08 09:40:47 -08001179 new_skb = NULL;
1180 }
1181 return new_skb;
1182}
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184/*
1185 * Compress and send a frame.
1186 * The caller should have locked the xmit path,
1187 * and xmit_pending should be 0.
1188 */
1189static void
1190ppp_send_frame(struct ppp *ppp, struct sk_buff *skb)
1191{
1192 int proto = PPP_PROTO(skb);
1193 struct sk_buff *new_skb;
1194 int len;
1195 unsigned char *cp;
1196
1197 if (proto < 0x8000) {
1198#ifdef CONFIG_PPP_FILTER
1199 /* check if we should pass this packet */
1200 /* the filter instructions are constructed assuming
1201 a four-byte PPP header on each packet */
1202 *skb_push(skb, 2) = 1;
Joe Perches8e95a202009-12-03 07:58:21 +00001203 if (ppp->pass_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001204 SK_RUN_FILTER(ppp->pass_filter, skb) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001206 netdev_printk(KERN_DEBUG, ppp->dev,
1207 "PPP: outbound frame "
1208 "not passed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 kfree_skb(skb);
1210 return;
1211 }
1212 /* if this packet passes the active filter, record the time */
Joe Perches8e95a202009-12-03 07:58:21 +00001213 if (!(ppp->active_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001214 SK_RUN_FILTER(ppp->active_filter, skb) == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 ppp->last_xmit = jiffies;
1216 skb_pull(skb, 2);
1217#else
1218 /* for data packets, record the time */
1219 ppp->last_xmit = jiffies;
1220#endif /* CONFIG_PPP_FILTER */
1221 }
1222
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001223 ++ppp->stats64.tx_packets;
1224 ppp->stats64.tx_bytes += skb->len - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 switch (proto) {
1227 case PPP_IP:
Joe Perchescd228d52007-11-12 18:07:31 -08001228 if (!ppp->vj || (ppp->flags & SC_COMP_TCP) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 break;
1230 /* try to do VJ TCP header compression */
1231 new_skb = alloc_skb(skb->len + ppp->dev->hard_header_len - 2,
1232 GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001233 if (!new_skb) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001234 netdev_err(ppp->dev, "PPP: no memory (VJ comp pkt)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 goto drop;
1236 }
1237 skb_reserve(new_skb, ppp->dev->hard_header_len - 2);
1238 cp = skb->data + 2;
1239 len = slhc_compress(ppp->vj, cp, skb->len - 2,
1240 new_skb->data + 2, &cp,
1241 !(ppp->flags & SC_NO_TCP_CCID));
1242 if (cp == skb->data + 2) {
1243 /* didn't compress */
Eric Dumazet968d7012012-05-18 20:23:00 +00001244 consume_skb(new_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 } else {
1246 if (cp[0] & SL_TYPE_COMPRESSED_TCP) {
1247 proto = PPP_VJC_COMP;
1248 cp[0] &= ~SL_TYPE_COMPRESSED_TCP;
1249 } else {
1250 proto = PPP_VJC_UNCOMP;
1251 cp[0] = skb->data[2];
1252 }
Eric Dumazet968d7012012-05-18 20:23:00 +00001253 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 skb = new_skb;
1255 cp = skb_put(skb, len + 2);
1256 cp[0] = 0;
1257 cp[1] = proto;
1258 }
1259 break;
1260
1261 case PPP_CCP:
1262 /* peek at outbound CCP frames */
1263 ppp_ccp_peek(ppp, skb, 0);
1264 break;
1265 }
1266
1267 /* try to do packet compression */
Joe Perches8e95a202009-12-03 07:58:21 +00001268 if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state &&
1269 proto != PPP_LCP && proto != PPP_CCP) {
Matt Domschb3f9b922005-11-08 09:40:47 -08001270 if (!(ppp->flags & SC_CCP_UP) && (ppp->flags & SC_MUST_COMP)) {
1271 if (net_ratelimit())
David S. Millerb48f8c22011-01-20 22:44:36 -08001272 netdev_err(ppp->dev,
1273 "ppp: compression required but "
1274 "down - pkt dropped.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 goto drop;
1276 }
Matt Domschb3f9b922005-11-08 09:40:47 -08001277 skb = pad_compress_skb(ppp, skb);
1278 if (!skb)
1279 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281
1282 /*
1283 * If we are waiting for traffic (demand dialling),
1284 * queue it up for pppd to receive.
1285 */
1286 if (ppp->flags & SC_LOOP_TRAFFIC) {
1287 if (ppp->file.rq.qlen > PPP_MAX_RQLEN)
1288 goto drop;
1289 skb_queue_tail(&ppp->file.rq, skb);
1290 wake_up_interruptible(&ppp->file.rwait);
1291 return;
1292 }
1293
1294 ppp->xmit_pending = skb;
1295 ppp_push(ppp);
1296 return;
1297
1298 drop:
Wei Yongjun1d2f8c92009-02-25 00:16:08 +00001299 kfree_skb(skb);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001300 ++ppp->dev->stats.tx_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303/*
1304 * Try to send the frame in xmit_pending.
1305 * The caller should have the xmit path locked.
1306 */
1307static void
1308ppp_push(struct ppp *ppp)
1309{
1310 struct list_head *list;
1311 struct channel *pch;
1312 struct sk_buff *skb = ppp->xmit_pending;
1313
Joe Perchescd228d52007-11-12 18:07:31 -08001314 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return;
1316
1317 list = &ppp->channels;
1318 if (list_empty(list)) {
1319 /* nowhere to send the packet, just drop it */
1320 ppp->xmit_pending = NULL;
1321 kfree_skb(skb);
1322 return;
1323 }
1324
1325 if ((ppp->flags & SC_MULTILINK) == 0) {
1326 /* not doing multilink: send it down the first channel */
1327 list = list->next;
1328 pch = list_entry(list, struct channel, clist);
1329
1330 spin_lock_bh(&pch->downl);
1331 if (pch->chan) {
1332 if (pch->chan->ops->start_xmit(pch->chan, skb))
1333 ppp->xmit_pending = NULL;
1334 } else {
1335 /* channel got unregistered */
1336 kfree_skb(skb);
1337 ppp->xmit_pending = NULL;
1338 }
1339 spin_unlock_bh(&pch->downl);
1340 return;
1341 }
1342
1343#ifdef CONFIG_PPP_MULTILINK
1344 /* Multilink: fragment the packet over as many links
1345 as can take the packet at the moment. */
1346 if (!ppp_mp_explode(ppp, skb))
1347 return;
1348#endif /* CONFIG_PPP_MULTILINK */
1349
1350 ppp->xmit_pending = NULL;
1351 kfree_skb(skb);
1352}
1353
1354#ifdef CONFIG_PPP_MULTILINK
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001355static bool mp_protocol_compress __read_mostly = true;
1356module_param(mp_protocol_compress, bool, S_IRUGO | S_IWUSR);
1357MODULE_PARM_DESC(mp_protocol_compress,
1358 "compress protocol id in multilink fragments");
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360/*
1361 * Divide a packet to be transmitted into fragments and
1362 * send them out the individual links.
1363 */
1364static int ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb)
1365{
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001366 int len, totlen;
1367 int i, bits, hdrlen, mtu;
1368 int flen;
1369 int navail, nfree, nzero;
1370 int nbigger;
1371 int totspeed;
1372 int totfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 unsigned char *p, *q;
1374 struct list_head *list;
1375 struct channel *pch;
1376 struct sk_buff *frag;
1377 struct ppp_channel *chan;
1378
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001379 totspeed = 0; /*total bitrate of the bundle*/
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001380 nfree = 0; /* # channels which have no packet already queued */
1381 navail = 0; /* total # of usable channels (not deregistered) */
1382 nzero = 0; /* number of channels with zero speed associated*/
1383 totfree = 0; /*total # of channels available and
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001384 *having no queued packets before
1385 *starting the fragmentation*/
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 hdrlen = (ppp->flags & SC_MP_XSHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001388 i = 0;
1389 list_for_each_entry(pch, &ppp->channels, clist) {
Dan Carpenter34297692010-09-10 01:58:10 +00001390 if (pch->chan) {
1391 pch->avail = 1;
1392 navail++;
1393 pch->speed = pch->chan->speed;
1394 } else {
1395 pch->avail = 0;
1396 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001397 if (pch->avail) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001398 if (skb_queue_empty(&pch->file.xq) ||
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001399 !pch->had_frag) {
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001400 if (pch->speed == 0)
1401 nzero++;
1402 else
1403 totspeed += pch->speed;
1404
1405 pch->avail = 2;
1406 ++nfree;
1407 ++totfree;
1408 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001409 if (!pch->had_frag && i < ppp->nxchan)
1410 ppp->nxchan = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001412 ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001414 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001415 * Don't start sending this packet unless at least half of
1416 * the channels are free. This gives much better TCP
1417 * performance if we have a lot of channels.
Paul Mackerras516cd152005-05-12 19:47:12 -04001418 */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001419 if (nfree == 0 || nfree < navail / 2)
1420 return 0; /* can't take now, leave it in xmit_pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001422 /* Do protocol field compression */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001423 p = skb->data;
1424 len = skb->len;
stephen hemmingerd39cd5e2010-12-20 17:58:33 +00001425 if (*p == 0 && mp_protocol_compress) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 ++p;
1427 --len;
1428 }
1429
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001430 totlen = len;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001431 nbigger = len % nfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001433 /* skip to the channel after the one we last used
1434 and start at that one */
Domen Puncer81616c52005-09-10 00:27:04 -07001435 list = &ppp->channels;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001436 for (i = 0; i < ppp->nxchan; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 list = list->next;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001438 if (list == &ppp->channels) {
1439 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 break;
1441 }
1442 }
1443
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001444 /* create a fragment for each channel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 bits = B;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001446 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 list = list->next;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001448 if (list == &ppp->channels) {
1449 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 continue;
1451 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001452 pch = list_entry(list, struct channel, clist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 ++i;
1454 if (!pch->avail)
1455 continue;
1456
Paul Mackerras516cd152005-05-12 19:47:12 -04001457 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001458 * Skip this channel if it has a fragment pending already and
1459 * we haven't given a fragment to all of the free channels.
Paul Mackerras516cd152005-05-12 19:47:12 -04001460 */
1461 if (pch->avail == 1) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001462 if (nfree > 0)
Paul Mackerras516cd152005-05-12 19:47:12 -04001463 continue;
1464 } else {
Paul Mackerras516cd152005-05-12 19:47:12 -04001465 pch->avail = 1;
1466 }
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 /* check the channel's mtu and whether it is still attached. */
1469 spin_lock_bh(&pch->downl);
Paul Mackerras516cd152005-05-12 19:47:12 -04001470 if (pch->chan == NULL) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001471 /* can't use this channel, it's being deregistered */
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001472 if (pch->speed == 0)
1473 nzero--;
1474 else
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001475 totspeed -= pch->speed;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 spin_unlock_bh(&pch->downl);
1478 pch->avail = 0;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001479 totlen = len;
1480 totfree--;
1481 nfree--;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001482 if (--navail == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 break;
1484 continue;
1485 }
1486
1487 /*
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001488 *if the channel speed is not set divide
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001489 *the packet evenly among the free channels;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001490 *otherwise divide it according to the speed
1491 *of the channel we are going to transmit on
1492 */
David S. Miller886f9fe2009-08-19 13:55:55 -07001493 flen = len;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001494 if (nfree > 0) {
1495 if (pch->speed == 0) {
Ben McKeegan536e00e2010-06-02 23:14:33 +00001496 flen = len/nfree;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001497 if (nbigger > 0) {
1498 flen++;
1499 nbigger--;
1500 }
1501 } else {
1502 flen = (((totfree - nzero)*(totlen + hdrlen*totfree)) /
1503 ((totspeed*totfree)/pch->speed)) - hdrlen;
1504 if (nbigger > 0) {
1505 flen += ((totfree - nzero)*pch->speed)/totspeed;
1506 nbigger -= ((totfree - nzero)*pch->speed)/
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001507 totspeed;
Ben McKeegana53a8b52009-07-28 07:43:57 +00001508 }
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001509 }
Ben McKeegana53a8b52009-07-28 07:43:57 +00001510 nfree--;
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001511 }
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001512
1513 /*
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001514 *check if we are on the last channel or
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001515 *we exceded the length of the data to
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001516 *fragment
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 */
Ben McKeegana53a8b52009-07-28 07:43:57 +00001518 if ((nfree <= 0) || (flen > len))
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001519 flen = len;
1520 /*
1521 *it is not worth to tx on slow channels:
1522 *in that case from the resulting flen according to the
1523 *above formula will be equal or less than zero.
1524 *Skip the channel in this case
1525 */
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001526 if (flen <= 0) {
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001527 pch->avail = 2;
1528 spin_unlock_bh(&pch->downl);
1529 continue;
1530 }
1531
Henry Wong22e83a22011-09-18 13:41:49 +00001532 /*
1533 * hdrlen includes the 2-byte PPP protocol field, but the
1534 * MTU counts only the payload excluding the protocol field.
1535 * (RFC1661 Section 2)
1536 */
1537 mtu = pch->chan->mtu - (hdrlen - 2);
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001538 if (mtu < 4)
1539 mtu = 4;
Paul Mackerras516cd152005-05-12 19:47:12 -04001540 if (flen > mtu)
1541 flen = mtu;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001542 if (flen == len)
1543 bits |= E;
1544 frag = alloc_skb(flen + hdrlen + (flen == 0), GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001545 if (!frag)
Paul Mackerras516cd152005-05-12 19:47:12 -04001546 goto noskb;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001547 q = skb_put(frag, flen + hdrlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001549 /* make the MP header */
Changli Gao96545ae2011-01-06 13:37:36 +00001550 put_unaligned_be16(PPP_MP, q);
Paul Mackerras516cd152005-05-12 19:47:12 -04001551 if (ppp->flags & SC_MP_XSHORTSEQ) {
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001552 q[2] = bits + ((ppp->nxseq >> 8) & 0xf);
Paul Mackerras516cd152005-05-12 19:47:12 -04001553 q[3] = ppp->nxseq;
1554 } else {
1555 q[2] = bits;
1556 q[3] = ppp->nxseq >> 16;
1557 q[4] = ppp->nxseq >> 8;
1558 q[5] = ppp->nxseq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001560
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001561 memcpy(q + hdrlen, p, flen);
Paul Mackerras516cd152005-05-12 19:47:12 -04001562
1563 /* try to send it down the channel */
1564 chan = pch->chan;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001565 if (!skb_queue_empty(&pch->file.xq) ||
Gabriele Paoloni9c705262009-03-13 16:09:12 -07001566 !chan->ops->start_xmit(chan, frag))
Paul Mackerras516cd152005-05-12 19:47:12 -04001567 skb_queue_tail(&pch->file.xq, frag);
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001568 pch->had_frag = 1;
Paul Mackerras516cd152005-05-12 19:47:12 -04001569 p += flen;
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001570 len -= flen;
Paul Mackerras516cd152005-05-12 19:47:12 -04001571 ++ppp->nxseq;
1572 bits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 spin_unlock_bh(&pch->downl);
Paul Mackerras516cd152005-05-12 19:47:12 -04001574 }
Lennart Sorensenfa44a732010-01-18 12:59:55 +00001575 ppp->nxchan = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 return 1;
1578
1579 noskb:
1580 spin_unlock_bh(&pch->downl);
1581 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001582 netdev_err(ppp->dev, "PPP: no memory (fragment)\n");
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001583 ++ppp->dev->stats.tx_errors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 ++ppp->nxseq;
1585 return 1; /* abandon the frame */
1586}
1587#endif /* CONFIG_PPP_MULTILINK */
1588
1589/*
1590 * Try to send data out on a channel.
1591 */
1592static void
1593ppp_channel_push(struct channel *pch)
1594{
1595 struct sk_buff *skb;
1596 struct ppp *ppp;
1597
1598 spin_lock_bh(&pch->downl);
Joe Perchescd228d52007-11-12 18:07:31 -08001599 if (pch->chan) {
David S. Millerb03efcf2005-07-08 14:57:23 -07001600 while (!skb_queue_empty(&pch->file.xq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 skb = skb_dequeue(&pch->file.xq);
1602 if (!pch->chan->ops->start_xmit(pch->chan, skb)) {
1603 /* put the packet back and try again later */
1604 skb_queue_head(&pch->file.xq, skb);
1605 break;
1606 }
1607 }
1608 } else {
1609 /* channel got deregistered */
1610 skb_queue_purge(&pch->file.xq);
1611 }
1612 spin_unlock_bh(&pch->downl);
1613 /* see if there is anything from the attached unit to be sent */
David S. Millerb03efcf2005-07-08 14:57:23 -07001614 if (skb_queue_empty(&pch->file.xq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 read_lock_bh(&pch->upl);
1616 ppp = pch->ppp;
Joe Perchescd228d52007-11-12 18:07:31 -08001617 if (ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 ppp_xmit_process(ppp);
1619 read_unlock_bh(&pch->upl);
1620 }
1621}
1622
1623/*
1624 * Receive-side routines.
1625 */
1626
David S. Millera00eac02010-10-05 01:36:52 -07001627struct ppp_mp_skb_parm {
1628 u32 sequence;
1629 u8 BEbits;
1630};
1631#define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633static inline void
1634ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1635{
1636 ppp_recv_lock(ppp);
James Chapman739840d2008-12-17 12:02:16 +00001637 if (!ppp->closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 ppp_receive_frame(ppp, skb, pch);
1639 else
1640 kfree_skb(skb);
1641 ppp_recv_unlock(ppp);
1642}
1643
1644void
1645ppp_input(struct ppp_channel *chan, struct sk_buff *skb)
1646{
1647 struct channel *pch = chan->ppp;
1648 int proto;
1649
Simon Arlottea8420e2010-05-03 10:19:33 +00001650 if (!pch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 kfree_skb(skb);
1652 return;
1653 }
Paul Mackerras516cd152005-05-12 19:47:12 -04001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 read_lock_bh(&pch->upl);
Simon Arlottea8420e2010-05-03 10:19:33 +00001656 if (!pskb_may_pull(skb, 2)) {
1657 kfree_skb(skb);
1658 if (pch->ppp) {
1659 ++pch->ppp->dev->stats.rx_length_errors;
1660 ppp_receive_error(pch->ppp);
1661 }
1662 goto done;
1663 }
1664
1665 proto = PPP_PROTO(skb);
Joe Perchescd228d52007-11-12 18:07:31 -08001666 if (!pch->ppp || proto >= 0xc000 || proto == PPP_CCPFRAG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 /* put it on the channel queue */
1668 skb_queue_tail(&pch->file.rq, skb);
1669 /* drop old frames if queue too long */
Joe Perches8e95a202009-12-03 07:58:21 +00001670 while (pch->file.rq.qlen > PPP_MAX_RQLEN &&
1671 (skb = skb_dequeue(&pch->file.rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 kfree_skb(skb);
1673 wake_up_interruptible(&pch->file.rwait);
1674 } else {
1675 ppp_do_recv(pch->ppp, skb, pch);
1676 }
Simon Arlottea8420e2010-05-03 10:19:33 +00001677
1678done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 read_unlock_bh(&pch->upl);
1680}
1681
1682/* Put a 0-length skb in the receive queue as an error indication */
1683void
1684ppp_input_error(struct ppp_channel *chan, int code)
1685{
1686 struct channel *pch = chan->ppp;
1687 struct sk_buff *skb;
1688
Joe Perchescd228d52007-11-12 18:07:31 -08001689 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return;
1691
1692 read_lock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08001693 if (pch->ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 skb = alloc_skb(0, GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08001695 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 skb->len = 0; /* probably unnecessary */
1697 skb->cb[0] = code;
1698 ppp_do_recv(pch->ppp, skb, pch);
1699 }
1700 }
1701 read_unlock_bh(&pch->upl);
1702}
1703
1704/*
1705 * We come in here to process a received frame.
1706 * The receive side of the ppp unit is locked.
1707 */
1708static void
1709ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1710{
Simon Arlottea8420e2010-05-03 10:19:33 +00001711 /* note: a 0-length skb is used as an error indication */
1712 if (skb->len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713#ifdef CONFIG_PPP_MULTILINK
1714 /* XXX do channel-level decompression here */
1715 if (PPP_PROTO(skb) == PPP_MP)
1716 ppp_receive_mp_frame(ppp, skb, pch);
1717 else
1718#endif /* CONFIG_PPP_MULTILINK */
1719 ppp_receive_nonmp_frame(ppp, skb);
Simon Arlottea8420e2010-05-03 10:19:33 +00001720 } else {
1721 kfree_skb(skb);
1722 ppp_receive_error(ppp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
1726static void
1727ppp_receive_error(struct ppp *ppp)
1728{
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001729 ++ppp->dev->stats.rx_errors;
Joe Perchescd228d52007-11-12 18:07:31 -08001730 if (ppp->vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 slhc_toss(ppp->vj);
1732}
1733
1734static void
1735ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb)
1736{
1737 struct sk_buff *ns;
1738 int proto, len, npi;
1739
1740 /*
1741 * Decompress the frame, if compressed.
1742 * Note that some decompressors need to see uncompressed frames
1743 * that come in as well as compressed frames.
1744 */
Joe Perches8e95a202009-12-03 07:58:21 +00001745 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN) &&
1746 (ppp->rstate & (SC_DC_FERROR | SC_DC_ERROR)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 skb = ppp_decompress_frame(ppp, skb);
1748
Matt Domschb3f9b922005-11-08 09:40:47 -08001749 if (ppp->flags & SC_MUST_COMP && ppp->rstate & SC_DC_FERROR)
1750 goto err;
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 proto = PPP_PROTO(skb);
1753 switch (proto) {
1754 case PPP_VJC_COMP:
1755 /* decompress VJ compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08001756 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 goto err;
1758
Herbert Xu2a38b772007-09-16 16:22:13 -07001759 if (skb_tailroom(skb) < 124 || skb_cloned(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 /* copy to a new sk_buff with more tailroom */
1761 ns = dev_alloc_skb(skb->len + 128);
Joe Perchescd228d52007-11-12 18:07:31 -08001762 if (!ns) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001763 netdev_err(ppp->dev, "PPP: no memory "
1764 "(VJ decomp)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 goto err;
1766 }
1767 skb_reserve(ns, 2);
1768 skb_copy_bits(skb, 0, skb_put(ns, skb->len), skb->len);
Eric Dumazet968d7012012-05-18 20:23:00 +00001769 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 skb = ns;
1771 }
Herbert Xue3f749c2006-02-05 20:23:33 -08001772 else
1773 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 len = slhc_uncompress(ppp->vj, skb->data + 2, skb->len - 2);
1776 if (len <= 0) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001777 netdev_printk(KERN_DEBUG, ppp->dev,
1778 "PPP: VJ decompression error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 goto err;
1780 }
1781 len += 2;
1782 if (len > skb->len)
1783 skb_put(skb, len - skb->len);
1784 else if (len < skb->len)
1785 skb_trim(skb, len);
1786 proto = PPP_IP;
1787 break;
1788
1789 case PPP_VJC_UNCOMP:
Joe Perchescd228d52007-11-12 18:07:31 -08001790 if (!ppp->vj || (ppp->flags & SC_REJ_COMP_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 goto err;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /* Until we fix the decompressor need to make sure
1794 * data portion is linear.
1795 */
Jeff Garzik6aa20a22006-09-13 13:24:59 -04001796 if (!pskb_may_pull(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 goto err;
1798
1799 if (slhc_remember(ppp->vj, skb->data + 2, skb->len - 2) <= 0) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001800 netdev_err(ppp->dev, "PPP: VJ uncompressed error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 goto err;
1802 }
1803 proto = PPP_IP;
1804 break;
1805
1806 case PPP_CCP:
1807 ppp_ccp_peek(ppp, skb, 1);
1808 break;
1809 }
1810
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00001811 ++ppp->stats64.rx_packets;
1812 ppp->stats64.rx_bytes += skb->len - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 npi = proto_to_npindex(proto);
1815 if (npi < 0) {
1816 /* control or unknown frame - pass it to pppd */
1817 skb_queue_tail(&ppp->file.rq, skb);
1818 /* limit queue length by dropping old frames */
Joe Perches8e95a202009-12-03 07:58:21 +00001819 while (ppp->file.rq.qlen > PPP_MAX_RQLEN &&
1820 (skb = skb_dequeue(&ppp->file.rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 kfree_skb(skb);
1822 /* wake up any process polling or blocking on read */
1823 wake_up_interruptible(&ppp->file.rwait);
1824
1825 } else {
1826 /* network protocol frame - give it to the kernel */
1827
1828#ifdef CONFIG_PPP_FILTER
1829 /* check if the packet passes the pass and active filters */
1830 /* the filter instructions are constructed assuming
1831 a four-byte PPP header on each packet */
Herbert Xu2a38b772007-09-16 16:22:13 -07001832 if (ppp->pass_filter || ppp->active_filter) {
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +00001833 if (skb_unclone(skb, GFP_ATOMIC))
Herbert Xu2a38b772007-09-16 16:22:13 -07001834 goto err;
1835
1836 *skb_push(skb, 2) = 0;
Joe Perches8e95a202009-12-03 07:58:21 +00001837 if (ppp->pass_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001838 SK_RUN_FILTER(ppp->pass_filter, skb) == 0) {
Herbert Xu2a38b772007-09-16 16:22:13 -07001839 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08001840 netdev_printk(KERN_DEBUG, ppp->dev,
1841 "PPP: inbound frame "
1842 "not passed\n");
Herbert Xu2a38b772007-09-16 16:22:13 -07001843 kfree_skb(skb);
1844 return;
1845 }
Joe Perches8e95a202009-12-03 07:58:21 +00001846 if (!(ppp->active_filter &&
Daniel Borkmann568f1942014-03-28 18:58:23 +01001847 SK_RUN_FILTER(ppp->active_filter, skb) == 0))
Herbert Xu2a38b772007-09-16 16:22:13 -07001848 ppp->last_recv = jiffies;
1849 __skb_pull(skb, 2);
1850 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851#endif /* CONFIG_PPP_FILTER */
Herbert Xu2a38b772007-09-16 16:22:13 -07001852 ppp->last_recv = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Joe Perches8e95a202009-12-03 07:58:21 +00001854 if ((ppp->dev->flags & IFF_UP) == 0 ||
1855 ppp->npmode[npi] != NPMODE_PASS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 kfree_skb(skb);
1857 } else {
Herbert Xucbb042f2006-03-20 22:43:56 -08001858 /* chop off protocol */
1859 skb_pull_rcsum(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 skb->dev = ppp->dev;
1861 skb->protocol = htons(npindex_to_ethertype[npi]);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001862 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
1865 }
1866 return;
1867
1868 err:
1869 kfree_skb(skb);
1870 ppp_receive_error(ppp);
1871}
1872
1873static struct sk_buff *
1874ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb)
1875{
1876 int proto = PPP_PROTO(skb);
1877 struct sk_buff *ns;
1878 int len;
1879
1880 /* Until we fix all the decompressor's need to make sure
1881 * data portion is linear.
1882 */
1883 if (!pskb_may_pull(skb, skb->len))
1884 goto err;
1885
1886 if (proto == PPP_COMP) {
Konstantin Sharlaimov4b2a8fb2007-06-23 23:05:54 -07001887 int obuff_size;
1888
1889 switch(ppp->rcomp->compress_proto) {
1890 case CI_MPPE:
1891 obuff_size = ppp->mru + PPP_HDRLEN + 1;
1892 break;
1893 default:
1894 obuff_size = ppp->mru + PPP_HDRLEN;
1895 break;
1896 }
1897
1898 ns = dev_alloc_skb(obuff_size);
Joe Perchescd228d52007-11-12 18:07:31 -08001899 if (!ns) {
David S. Millerb48f8c22011-01-20 22:44:36 -08001900 netdev_err(ppp->dev, "ppp_decompress_frame: "
1901 "no memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 goto err;
1903 }
1904 /* the decompressor still expects the A/C bytes in the hdr */
1905 len = ppp->rcomp->decompress(ppp->rc_state, skb->data - 2,
Konstantin Sharlaimov06c7af52007-08-21 00:12:44 -07001906 skb->len + 2, ns->data, obuff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (len < 0) {
1908 /* Pass the compressed frame to pppd as an
1909 error indication. */
1910 if (len == DECOMP_FATALERROR)
1911 ppp->rstate |= SC_DC_FERROR;
1912 kfree_skb(ns);
1913 goto err;
1914 }
1915
Eric Dumazet968d7012012-05-18 20:23:00 +00001916 consume_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 skb = ns;
1918 skb_put(skb, len);
1919 skb_pull(skb, 2); /* pull off the A/C bytes */
1920
1921 } else {
1922 /* Uncompressed frame - pass to decompressor so it
1923 can update its dictionary if necessary. */
1924 if (ppp->rcomp->incomp)
1925 ppp->rcomp->incomp(ppp->rc_state, skb->data - 2,
1926 skb->len + 2);
1927 }
1928
1929 return skb;
1930
1931 err:
1932 ppp->rstate |= SC_DC_ERROR;
1933 ppp_receive_error(ppp);
1934 return skb;
1935}
1936
1937#ifdef CONFIG_PPP_MULTILINK
1938/*
1939 * Receive a multilink frame.
1940 * We put it on the reconstruction queue and then pull off
1941 * as many completed frames as we can.
1942 */
1943static void
1944ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch)
1945{
1946 u32 mask, seq;
Domen Puncer81616c52005-09-10 00:27:04 -07001947 struct channel *ch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 int mphdrlen = (ppp->flags & SC_MP_SHORTSEQ)? MPHDRLEN_SSN: MPHDRLEN;
1949
Herbert Xu2a38b772007-09-16 16:22:13 -07001950 if (!pskb_may_pull(skb, mphdrlen + 1) || ppp->mrru == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 goto err; /* no good, throw it away */
1952
1953 /* Decode sequence number and begin/end bits */
1954 if (ppp->flags & SC_MP_SHORTSEQ) {
1955 seq = ((skb->data[2] & 0x0f) << 8) | skb->data[3];
1956 mask = 0xfff;
1957 } else {
1958 seq = (skb->data[3] << 16) | (skb->data[4] << 8)| skb->data[5];
1959 mask = 0xffffff;
1960 }
David S. Millera00eac02010-10-05 01:36:52 -07001961 PPP_MP_CB(skb)->BEbits = skb->data[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 skb_pull(skb, mphdrlen); /* pull off PPP and MP headers */
1963
1964 /*
1965 * Do protocol ID decompression on the first fragment of each packet.
1966 */
David S. Millera00eac02010-10-05 01:36:52 -07001967 if ((PPP_MP_CB(skb)->BEbits & B) && (skb->data[0] & 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 *skb_push(skb, 1) = 0;
1969
1970 /*
1971 * Expand sequence number to 32 bits, making it as close
1972 * as possible to ppp->minseq.
1973 */
1974 seq |= ppp->minseq & ~mask;
1975 if ((int)(ppp->minseq - seq) > (int)(mask >> 1))
1976 seq += mask + 1;
1977 else if ((int)(seq - ppp->minseq) > (int)(mask >> 1))
1978 seq -= mask + 1; /* should never happen */
David S. Millera00eac02010-10-05 01:36:52 -07001979 PPP_MP_CB(skb)->sequence = seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 pch->lastseq = seq;
1981
1982 /*
1983 * If this packet comes before the next one we were expecting,
1984 * drop it.
1985 */
1986 if (seq_before(seq, ppp->nextseq)) {
1987 kfree_skb(skb);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07001988 ++ppp->dev->stats.rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 ppp_receive_error(ppp);
1990 return;
1991 }
1992
1993 /*
1994 * Reevaluate minseq, the minimum over all channels of the
1995 * last sequence number received on each channel. Because of
1996 * the increasing sequence number rule, we know that any fragment
1997 * before `minseq' which hasn't arrived is never going to arrive.
1998 * The list of channels can't change because we have the receive
1999 * side of the ppp unit locked.
2000 */
Domen Puncer81616c52005-09-10 00:27:04 -07002001 list_for_each_entry(ch, &ppp->channels, clist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (seq_before(ch->lastseq, seq))
2003 seq = ch->lastseq;
2004 }
2005 if (seq_before(ppp->minseq, seq))
2006 ppp->minseq = seq;
2007
2008 /* Put the fragment on the reconstruction queue */
2009 ppp_mp_insert(ppp, skb);
2010
2011 /* If the queue is getting long, don't wait any longer for packets
2012 before the start of the queue. */
David S. Miller38ce7c72008-09-23 01:17:18 -07002013 if (skb_queue_len(&ppp->mrq) >= PPP_MP_MAX_QLEN) {
stephen hemmingerc6b20d92010-06-01 06:05:46 +00002014 struct sk_buff *mskb = skb_peek(&ppp->mrq);
David S. Millera00eac02010-10-05 01:36:52 -07002015 if (seq_before(ppp->minseq, PPP_MP_CB(mskb)->sequence))
2016 ppp->minseq = PPP_MP_CB(mskb)->sequence;
David S. Miller38ce7c72008-09-23 01:17:18 -07002017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 /* Pull completed packets off the queue and receive them. */
Ben McKeegan82b3cc12009-11-16 03:44:25 +00002020 while ((skb = ppp_mp_reconstruct(ppp))) {
2021 if (pskb_may_pull(skb, 2))
2022 ppp_receive_nonmp_frame(ppp, skb);
2023 else {
2024 ++ppp->dev->stats.rx_length_errors;
2025 kfree_skb(skb);
2026 ppp_receive_error(ppp);
2027 }
2028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 return;
2031
2032 err:
2033 kfree_skb(skb);
2034 ppp_receive_error(ppp);
2035}
2036
2037/*
2038 * Insert a fragment on the MP reconstruction queue.
2039 * The queue is ordered by increasing sequence number.
2040 */
2041static void
2042ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb)
2043{
2044 struct sk_buff *p;
2045 struct sk_buff_head *list = &ppp->mrq;
David S. Millera00eac02010-10-05 01:36:52 -07002046 u32 seq = PPP_MP_CB(skb)->sequence;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 /* N.B. we don't need to lock the list lock because we have the
2049 ppp unit receive-side lock. */
David S. Miller13c98212008-10-09 16:40:29 -07002050 skb_queue_walk(list, p) {
David S. Millera00eac02010-10-05 01:36:52 -07002051 if (seq_before(seq, PPP_MP_CB(p)->sequence))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 break;
David S. Miller13c98212008-10-09 16:40:29 -07002053 }
David S. Miller43f59c82008-09-21 21:28:51 -07002054 __skb_queue_before(list, p, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
2057/*
2058 * Reconstruct a packet from the MP fragment queue.
2059 * We go through increasing sequence numbers until we find a
2060 * complete packet, or we get to the sequence number for a fragment
2061 * which hasn't arrived but might still do so.
2062 */
Stephen Hemminger3c582b32008-01-23 20:54:07 -08002063static struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064ppp_mp_reconstruct(struct ppp *ppp)
2065{
2066 u32 seq = ppp->nextseq;
2067 u32 minseq = ppp->minseq;
2068 struct sk_buff_head *list = &ppp->mrq;
David S. Millerd52344a72011-01-20 22:52:05 -08002069 struct sk_buff *p, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 struct sk_buff *head, *tail;
2071 struct sk_buff *skb = NULL;
2072 int lost = 0, len = 0;
2073
2074 if (ppp->mrru == 0) /* do nothing until mrru is set */
2075 return NULL;
2076 head = list->next;
2077 tail = NULL;
David S. Millerd52344a72011-01-20 22:52:05 -08002078 skb_queue_walk_safe(list, p, tmp) {
2079 again:
David S. Millera00eac02010-10-05 01:36:52 -07002080 if (seq_before(PPP_MP_CB(p)->sequence, seq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 /* this can't happen, anyway ignore the skb */
David S. Millerb48f8c22011-01-20 22:44:36 -08002082 netdev_err(ppp->dev, "ppp_mp_reconstruct bad "
2083 "seq %u < %u\n",
2084 PPP_MP_CB(p)->sequence, seq);
David S. Millerd52344a72011-01-20 22:52:05 -08002085 __skb_unlink(p, list);
2086 kfree_skb(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 continue;
2088 }
David S. Millera00eac02010-10-05 01:36:52 -07002089 if (PPP_MP_CB(p)->sequence != seq) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002090 u32 oldseq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 /* Fragment `seq' is missing. If it is after
2092 minseq, it might arrive later, so stop here. */
2093 if (seq_after(seq, minseq))
2094 break;
2095 /* Fragment `seq' is lost, keep going. */
2096 lost = 1;
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002097 oldseq = seq;
David S. Millera00eac02010-10-05 01:36:52 -07002098 seq = seq_before(minseq, PPP_MP_CB(p)->sequence)?
2099 minseq + 1: PPP_MP_CB(p)->sequence;
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002100
2101 if (ppp->debug & 1)
2102 netdev_printk(KERN_DEBUG, ppp->dev,
2103 "lost frag %u..%u\n",
2104 oldseq, seq-1);
2105
David S. Millerd52344a72011-01-20 22:52:05 -08002106 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108
2109 /*
2110 * At this point we know that all the fragments from
2111 * ppp->nextseq to seq are either present or lost.
2112 * Also, there are no complete packets in the queue
2113 * that have no missing fragments and end before this
2114 * fragment.
2115 */
2116
2117 /* B bit set indicates this fragment starts a packet */
David S. Millera00eac02010-10-05 01:36:52 -07002118 if (PPP_MP_CB(p)->BEbits & B) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 head = p;
2120 lost = 0;
2121 len = 0;
2122 }
2123
2124 len += p->len;
2125
2126 /* Got a complete packet yet? */
David S. Millera00eac02010-10-05 01:36:52 -07002127 if (lost == 0 && (PPP_MP_CB(p)->BEbits & E) &&
2128 (PPP_MP_CB(head)->BEbits & B)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (len > ppp->mrru + 2) {
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002130 ++ppp->dev->stats.rx_length_errors;
David S. Millerb48f8c22011-01-20 22:44:36 -08002131 netdev_printk(KERN_DEBUG, ppp->dev,
2132 "PPP: reconstructed packet"
2133 " is too long (%d)\n", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 } else {
2135 tail = p;
2136 break;
2137 }
2138 ppp->nextseq = seq + 1;
2139 }
2140
2141 /*
2142 * If this is the ending fragment of a packet,
2143 * and we haven't found a complete valid packet yet,
2144 * we can discard up to and including this fragment.
2145 */
David S. Millerd52344a72011-01-20 22:52:05 -08002146 if (PPP_MP_CB(p)->BEbits & E) {
2147 struct sk_buff *tmp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
David S. Millerd52344a72011-01-20 22:52:05 -08002149 skb_queue_reverse_walk_from_safe(list, p, tmp2) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002150 if (ppp->debug & 1)
2151 netdev_printk(KERN_DEBUG, ppp->dev,
2152 "discarding frag %u\n",
2153 PPP_MP_CB(p)->sequence);
David S. Millerd52344a72011-01-20 22:52:05 -08002154 __skb_unlink(p, list);
2155 kfree_skb(p);
2156 }
2157 head = skb_peek(list);
2158 if (!head)
2159 break;
2160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 ++seq;
2162 }
2163
2164 /* If we have a complete packet, copy it all into one skb. */
2165 if (tail != NULL) {
2166 /* If we have discarded any fragments,
2167 signal a receive error. */
David S. Millera00eac02010-10-05 01:36:52 -07002168 if (PPP_MP_CB(head)->sequence != ppp->nextseq) {
Ben McKeegan8a49ad62012-02-24 06:33:56 +00002169 skb_queue_walk_safe(list, p, tmp) {
2170 if (p == head)
2171 break;
2172 if (ppp->debug & 1)
2173 netdev_printk(KERN_DEBUG, ppp->dev,
2174 "discarding frag %u\n",
2175 PPP_MP_CB(p)->sequence);
2176 __skb_unlink(p, list);
2177 kfree_skb(p);
2178 }
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (ppp->debug & 1)
David S. Millerb48f8c22011-01-20 22:44:36 -08002181 netdev_printk(KERN_DEBUG, ppp->dev,
2182 " missed pkts %u..%u\n",
2183 ppp->nextseq,
2184 PPP_MP_CB(head)->sequence-1);
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002185 ++ppp->dev->stats.rx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 ppp_receive_error(ppp);
2187 }
2188
David S. Miller212bfb92011-01-20 22:46:07 -08002189 skb = head;
2190 if (head != tail) {
2191 struct sk_buff **fragpp = &skb_shinfo(skb)->frag_list;
2192 p = skb_queue_next(list, head);
2193 __skb_unlink(skb, list);
2194 skb_queue_walk_from_safe(list, p, tmp) {
2195 __skb_unlink(p, list);
2196 *fragpp = p;
2197 p->next = NULL;
2198 fragpp = &p->next;
2199
2200 skb->len += p->len;
2201 skb->data_len += p->len;
Eric Dumazet19c6c8f2012-02-13 04:23:24 +00002202 skb->truesize += p->truesize;
David S. Miller212bfb92011-01-20 22:46:07 -08002203
2204 if (p == tail)
2205 break;
2206 }
2207 } else {
2208 __skb_unlink(skb, list);
2209 }
2210
David S. Millera00eac02010-10-05 01:36:52 -07002211 ppp->nextseq = PPP_MP_CB(tail)->sequence + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213
2214 return skb;
2215}
2216#endif /* CONFIG_PPP_MULTILINK */
2217
2218/*
2219 * Channel interface.
2220 */
2221
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002222/* Create a new, unattached ppp channel. */
2223int ppp_register_channel(struct ppp_channel *chan)
2224{
2225 return ppp_register_net_channel(current->nsproxy->net_ns, chan);
2226}
2227
2228/* Create a new, unattached ppp channel for specified net. */
2229int ppp_register_net_channel(struct net *net, struct ppp_channel *chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
2231 struct channel *pch;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002232 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Panagiotis Issarisd4274b52006-08-15 16:01:07 -07002234 pch = kzalloc(sizeof(struct channel), GFP_KERNEL);
Joe Perchescd228d52007-11-12 18:07:31 -08002235 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 return -ENOMEM;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002237
2238 pn = ppp_pernet(net);
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 pch->ppp = NULL;
2241 pch->chan = chan;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002242 pch->chan_net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 chan->ppp = pch;
2244 init_ppp_file(&pch->file, CHANNEL);
2245 pch->file.hdrlen = chan->hdrlen;
2246#ifdef CONFIG_PPP_MULTILINK
2247 pch->lastseq = -1;
2248#endif /* CONFIG_PPP_MULTILINK */
2249 init_rwsem(&pch->chan_sem);
2250 spin_lock_init(&pch->downl);
2251 rwlock_init(&pch->upl);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002252
2253 spin_lock_bh(&pn->all_channels_lock);
2254 pch->file.index = ++pn->last_channel_index;
2255 list_add(&pch->list, &pn->new_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 atomic_inc(&channel_count);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002257 spin_unlock_bh(&pn->all_channels_lock);
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 return 0;
2260}
2261
2262/*
2263 * Return the index of a channel.
2264 */
2265int ppp_channel_index(struct ppp_channel *chan)
2266{
2267 struct channel *pch = chan->ppp;
2268
Joe Perchescd228d52007-11-12 18:07:31 -08002269 if (pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return pch->file.index;
2271 return -1;
2272}
2273
2274/*
2275 * Return the PPP unit number to which a channel is connected.
2276 */
2277int ppp_unit_number(struct ppp_channel *chan)
2278{
2279 struct channel *pch = chan->ppp;
2280 int unit = -1;
2281
Joe Perchescd228d52007-11-12 18:07:31 -08002282 if (pch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 read_lock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08002284 if (pch->ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 unit = pch->ppp->file.index;
2286 read_unlock_bh(&pch->upl);
2287 }
2288 return unit;
2289}
2290
2291/*
James Chapman63f96072010-04-02 06:18:39 +00002292 * Return the PPP device interface name of a channel.
2293 */
2294char *ppp_dev_name(struct ppp_channel *chan)
2295{
2296 struct channel *pch = chan->ppp;
2297 char *name = NULL;
2298
2299 if (pch) {
2300 read_lock_bh(&pch->upl);
2301 if (pch->ppp && pch->ppp->dev)
2302 name = pch->ppp->dev->name;
2303 read_unlock_bh(&pch->upl);
2304 }
2305 return name;
2306}
2307
2308
2309/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 * Disconnect a channel from the generic layer.
2311 * This must be called in process context.
2312 */
2313void
2314ppp_unregister_channel(struct ppp_channel *chan)
2315{
2316 struct channel *pch = chan->ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002317 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Joe Perchescd228d52007-11-12 18:07:31 -08002319 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return; /* should never happen */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 chan->ppp = NULL;
2323
2324 /*
2325 * This ensures that we have returned from any calls into the
2326 * the channel's start_xmit or ioctl routine before we proceed.
2327 */
2328 down_write(&pch->chan_sem);
2329 spin_lock_bh(&pch->downl);
2330 pch->chan = NULL;
2331 spin_unlock_bh(&pch->downl);
2332 up_write(&pch->chan_sem);
2333 ppp_disconnect_channel(pch);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002334
2335 pn = ppp_pernet(pch->chan_net);
2336 spin_lock_bh(&pn->all_channels_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 list_del(&pch->list);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002338 spin_unlock_bh(&pn->all_channels_lock);
2339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 pch->file.dead = 1;
2341 wake_up_interruptible(&pch->file.rwait);
2342 if (atomic_dec_and_test(&pch->file.refcnt))
2343 ppp_destroy_channel(pch);
2344}
2345
2346/*
2347 * Callback from a channel when it can accept more to transmit.
2348 * This should be called at BH/softirq level, not interrupt level.
2349 */
2350void
2351ppp_output_wakeup(struct ppp_channel *chan)
2352{
2353 struct channel *pch = chan->ppp;
2354
Joe Perchescd228d52007-11-12 18:07:31 -08002355 if (!pch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 return;
2357 ppp_channel_push(pch);
2358}
2359
2360/*
2361 * Compression control.
2362 */
2363
2364/* Process the PPPIOCSCOMPRESS ioctl. */
2365static int
2366ppp_set_compress(struct ppp *ppp, unsigned long arg)
2367{
2368 int err;
2369 struct compressor *cp, *ocomp;
2370 struct ppp_option_data data;
2371 void *state, *ostate;
2372 unsigned char ccp_option[CCP_MAX_OPTION_LENGTH];
2373
2374 err = -EFAULT;
Joe Perches8e95a202009-12-03 07:58:21 +00002375 if (copy_from_user(&data, (void __user *) arg, sizeof(data)) ||
2376 (data.length <= CCP_MAX_OPTION_LENGTH &&
2377 copy_from_user(ccp_option, (void __user *) data.ptr, data.length)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 goto out;
2379 err = -EINVAL;
Joe Perches8e95a202009-12-03 07:58:21 +00002380 if (data.length > CCP_MAX_OPTION_LENGTH ||
2381 ccp_option[1] < 2 || ccp_option[1] > data.length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 goto out;
2383
Johannes Berga65e5d72008-07-09 10:28:38 +02002384 cp = try_then_request_module(
2385 find_compressor(ccp_option[0]),
2386 "ppp-compress-%d", ccp_option[0]);
Joe Perchescd228d52007-11-12 18:07:31 -08002387 if (!cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 goto out;
2389
2390 err = -ENOBUFS;
2391 if (data.transmit) {
2392 state = cp->comp_alloc(ccp_option, data.length);
Joe Perchescd228d52007-11-12 18:07:31 -08002393 if (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 ppp_xmit_lock(ppp);
2395 ppp->xstate &= ~SC_COMP_RUN;
2396 ocomp = ppp->xcomp;
2397 ostate = ppp->xc_state;
2398 ppp->xcomp = cp;
2399 ppp->xc_state = state;
2400 ppp_xmit_unlock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -08002401 if (ostate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 ocomp->comp_free(ostate);
2403 module_put(ocomp->owner);
2404 }
2405 err = 0;
2406 } else
2407 module_put(cp->owner);
2408
2409 } else {
2410 state = cp->decomp_alloc(ccp_option, data.length);
Joe Perchescd228d52007-11-12 18:07:31 -08002411 if (state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 ppp_recv_lock(ppp);
2413 ppp->rstate &= ~SC_DECOMP_RUN;
2414 ocomp = ppp->rcomp;
2415 ostate = ppp->rc_state;
2416 ppp->rcomp = cp;
2417 ppp->rc_state = state;
2418 ppp_recv_unlock(ppp);
Joe Perchescd228d52007-11-12 18:07:31 -08002419 if (ostate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 ocomp->decomp_free(ostate);
2421 module_put(ocomp->owner);
2422 }
2423 err = 0;
2424 } else
2425 module_put(cp->owner);
2426 }
2427
2428 out:
2429 return err;
2430}
2431
2432/*
2433 * Look at a CCP packet and update our state accordingly.
2434 * We assume the caller has the xmit or recv path locked.
2435 */
2436static void
2437ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound)
2438{
2439 unsigned char *dp;
2440 int len;
2441
2442 if (!pskb_may_pull(skb, CCP_HDRLEN + 2))
2443 return; /* no header */
2444 dp = skb->data + 2;
2445
2446 switch (CCP_CODE(dp)) {
2447 case CCP_CONFREQ:
2448
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002449 /* A ConfReq starts negotiation of compression
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 * in one direction of transmission,
2451 * and hence brings it down...but which way?
2452 *
2453 * Remember:
2454 * A ConfReq indicates what the sender would like to receive
2455 */
2456 if(inbound)
2457 /* He is proposing what I should send */
2458 ppp->xstate &= ~SC_COMP_RUN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002459 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 /* I am proposing to what he should send */
2461 ppp->rstate &= ~SC_DECOMP_RUN;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 break;
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 case CCP_TERMREQ:
2466 case CCP_TERMACK:
2467 /*
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002468 * CCP is going down, both directions of transmission
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 */
2470 ppp->rstate &= ~SC_DECOMP_RUN;
2471 ppp->xstate &= ~SC_COMP_RUN;
2472 break;
2473
2474 case CCP_CONFACK:
2475 if ((ppp->flags & (SC_CCP_OPEN | SC_CCP_UP)) != SC_CCP_OPEN)
2476 break;
2477 len = CCP_LENGTH(dp);
2478 if (!pskb_may_pull(skb, len + 2))
2479 return; /* too short */
2480 dp += CCP_HDRLEN;
2481 len -= CCP_HDRLEN;
2482 if (len < CCP_OPT_MINLEN || len < CCP_OPT_LENGTH(dp))
2483 break;
2484 if (inbound) {
2485 /* we will start receiving compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002486 if (!ppp->rc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 break;
2488 if (ppp->rcomp->decomp_init(ppp->rc_state, dp, len,
2489 ppp->file.index, 0, ppp->mru, ppp->debug)) {
2490 ppp->rstate |= SC_DECOMP_RUN;
2491 ppp->rstate &= ~(SC_DC_ERROR | SC_DC_FERROR);
2492 }
2493 } else {
2494 /* we will soon start sending compressed packets */
Joe Perchescd228d52007-11-12 18:07:31 -08002495 if (!ppp->xc_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 break;
2497 if (ppp->xcomp->comp_init(ppp->xc_state, dp, len,
2498 ppp->file.index, 0, ppp->debug))
2499 ppp->xstate |= SC_COMP_RUN;
2500 }
2501 break;
2502
2503 case CCP_RESETACK:
2504 /* reset the [de]compressor */
2505 if ((ppp->flags & SC_CCP_UP) == 0)
2506 break;
2507 if (inbound) {
2508 if (ppp->rc_state && (ppp->rstate & SC_DECOMP_RUN)) {
2509 ppp->rcomp->decomp_reset(ppp->rc_state);
2510 ppp->rstate &= ~SC_DC_ERROR;
2511 }
2512 } else {
2513 if (ppp->xc_state && (ppp->xstate & SC_COMP_RUN))
2514 ppp->xcomp->comp_reset(ppp->xc_state);
2515 }
2516 break;
2517 }
2518}
2519
2520/* Free up compression resources. */
2521static void
2522ppp_ccp_closed(struct ppp *ppp)
2523{
2524 void *xstate, *rstate;
2525 struct compressor *xcomp, *rcomp;
2526
2527 ppp_lock(ppp);
2528 ppp->flags &= ~(SC_CCP_OPEN | SC_CCP_UP);
2529 ppp->xstate = 0;
2530 xcomp = ppp->xcomp;
2531 xstate = ppp->xc_state;
2532 ppp->xc_state = NULL;
2533 ppp->rstate = 0;
2534 rcomp = ppp->rcomp;
2535 rstate = ppp->rc_state;
2536 ppp->rc_state = NULL;
2537 ppp_unlock(ppp);
2538
2539 if (xstate) {
2540 xcomp->comp_free(xstate);
2541 module_put(xcomp->owner);
2542 }
2543 if (rstate) {
2544 rcomp->decomp_free(rstate);
2545 module_put(rcomp->owner);
2546 }
2547}
2548
2549/* List of compressors. */
2550static LIST_HEAD(compressor_list);
2551static DEFINE_SPINLOCK(compressor_list_lock);
2552
2553struct compressor_entry {
2554 struct list_head list;
2555 struct compressor *comp;
2556};
2557
2558static struct compressor_entry *
2559find_comp_entry(int proto)
2560{
2561 struct compressor_entry *ce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Domen Puncer81616c52005-09-10 00:27:04 -07002563 list_for_each_entry(ce, &compressor_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 if (ce->comp->compress_proto == proto)
2565 return ce;
2566 }
2567 return NULL;
2568}
2569
2570/* Register a compressor */
2571int
2572ppp_register_compressor(struct compressor *cp)
2573{
2574 struct compressor_entry *ce;
2575 int ret;
2576 spin_lock(&compressor_list_lock);
2577 ret = -EEXIST;
Joe Perchescd228d52007-11-12 18:07:31 -08002578 if (find_comp_entry(cp->compress_proto))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 goto out;
2580 ret = -ENOMEM;
2581 ce = kmalloc(sizeof(struct compressor_entry), GFP_ATOMIC);
Joe Perchescd228d52007-11-12 18:07:31 -08002582 if (!ce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 goto out;
2584 ret = 0;
2585 ce->comp = cp;
2586 list_add(&ce->list, &compressor_list);
2587 out:
2588 spin_unlock(&compressor_list_lock);
2589 return ret;
2590}
2591
2592/* Unregister a compressor */
2593void
2594ppp_unregister_compressor(struct compressor *cp)
2595{
2596 struct compressor_entry *ce;
2597
2598 spin_lock(&compressor_list_lock);
2599 ce = find_comp_entry(cp->compress_proto);
Joe Perchescd228d52007-11-12 18:07:31 -08002600 if (ce && ce->comp == cp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 list_del(&ce->list);
2602 kfree(ce);
2603 }
2604 spin_unlock(&compressor_list_lock);
2605}
2606
2607/* Find a compressor. */
2608static struct compressor *
2609find_compressor(int type)
2610{
2611 struct compressor_entry *ce;
2612 struct compressor *cp = NULL;
2613
2614 spin_lock(&compressor_list_lock);
2615 ce = find_comp_entry(type);
Joe Perchescd228d52007-11-12 18:07:31 -08002616 if (ce) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 cp = ce->comp;
2618 if (!try_module_get(cp->owner))
2619 cp = NULL;
2620 }
2621 spin_unlock(&compressor_list_lock);
2622 return cp;
2623}
2624
2625/*
2626 * Miscelleneous stuff.
2627 */
2628
2629static void
2630ppp_get_stats(struct ppp *ppp, struct ppp_stats *st)
2631{
2632 struct slcompress *vj = ppp->vj;
2633
2634 memset(st, 0, sizeof(*st));
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002635 st->p.ppp_ipackets = ppp->stats64.rx_packets;
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002636 st->p.ppp_ierrors = ppp->dev->stats.rx_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002637 st->p.ppp_ibytes = ppp->stats64.rx_bytes;
2638 st->p.ppp_opackets = ppp->stats64.tx_packets;
Paulius Zaleckas8c0469c2008-04-23 18:54:01 -07002639 st->p.ppp_oerrors = ppp->dev->stats.tx_errors;
Kevin Groenevelde51f6ff2012-07-27 17:38:53 +00002640 st->p.ppp_obytes = ppp->stats64.tx_bytes;
Joe Perchescd228d52007-11-12 18:07:31 -08002641 if (!vj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 return;
2643 st->vj.vjs_packets = vj->sls_o_compressed + vj->sls_o_uncompressed;
2644 st->vj.vjs_compressed = vj->sls_o_compressed;
2645 st->vj.vjs_searches = vj->sls_o_searches;
2646 st->vj.vjs_misses = vj->sls_o_misses;
2647 st->vj.vjs_errorin = vj->sls_i_error;
2648 st->vj.vjs_tossed = vj->sls_i_tossed;
2649 st->vj.vjs_uncompressedin = vj->sls_i_uncompressed;
2650 st->vj.vjs_compressedin = vj->sls_i_compressed;
2651}
2652
2653/*
2654 * Stuff for handling the lists of ppp units and channels
2655 * and for initialization.
2656 */
2657
2658/*
2659 * Create a new ppp interface unit. Fails if it can't allocate memory
2660 * or if there is already a unit with the requested number.
2661 * unit == -1 means allocate a new number.
2662 */
2663static struct ppp *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002664ppp_create_interface(struct net *net, int unit, int *retp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 struct ppp *ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002667 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 struct net_device *dev = NULL;
2669 int ret = -ENOMEM;
2670 int i;
2671
Wang Chenc8019bf2008-11-20 04:24:17 -08002672 dev = alloc_netdev(sizeof(struct ppp), "", ppp_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 if (!dev)
2674 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002676 pn = ppp_pernet(net);
2677
Wang Chenc8019bf2008-11-20 04:24:17 -08002678 ppp = netdev_priv(dev);
2679 ppp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 ppp->mru = PPP_MRU;
2681 init_ppp_file(&ppp->file, INTERFACE);
2682 ppp->file.hdrlen = PPP_HDRLEN - 2; /* don't count proto bytes */
2683 for (i = 0; i < NUM_NP; ++i)
2684 ppp->npmode[i] = NPMODE_PASS;
2685 INIT_LIST_HEAD(&ppp->channels);
2686 spin_lock_init(&ppp->rlock);
2687 spin_lock_init(&ppp->wlock);
2688#ifdef CONFIG_PPP_MULTILINK
2689 ppp->minseq = -1;
2690 skb_queue_head_init(&ppp->mrq);
2691#endif /* CONFIG_PPP_MULTILINK */
Daniel Borkmann568f1942014-03-28 18:58:23 +01002692#ifdef CONFIG_PPP_FILTER
2693 ppp->pass_filter = NULL;
2694 ppp->active_filter = NULL;
2695#endif /* CONFIG_PPP_FILTER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002697 /*
2698 * drum roll: don't forget to set
2699 * the net device is belong to
2700 */
2701 dev_net_set(dev, net);
2702
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002703 mutex_lock(&pn->all_ppp_mutex);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002704
2705 if (unit < 0) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002706 unit = unit_get(&pn->units_idr, ppp);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002707 if (unit < 0) {
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002708 ret = unit;
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002709 goto out2;
2710 }
2711 } else {
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002712 ret = -EEXIST;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002713 if (unit_find(&pn->units_idr, unit))
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002714 goto out2; /* unit already exists */
Cyrill Gorcunov85997572009-01-12 22:11:56 -08002715 /*
2716 * if caller need a specified unit number
2717 * lets try to satisfy him, otherwise --
2718 * he should better ask us for new unit number
2719 *
2720 * NOTE: yes I know that returning EEXIST it's not
2721 * fair but at least pppd will ask us to allocate
2722 * new unit in this case so user is happy :)
2723 */
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002724 unit = unit_set(&pn->units_idr, ppp, unit);
Cyrill Gorcunov85997572009-01-12 22:11:56 -08002725 if (unit < 0)
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002726 goto out2;
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
2729 /* Initialize the new ppp unit */
2730 ppp->file.index = unit;
2731 sprintf(dev->name, "ppp%d", unit);
2732
2733 ret = register_netdev(dev);
2734 if (ret != 0) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002735 unit_put(&pn->units_idr, unit);
David S. Millerb48f8c22011-01-20 22:44:36 -08002736 netdev_err(ppp->dev, "PPP: couldn't register device %s (%d)\n",
2737 dev->name, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 goto out2;
2739 }
2740
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002741 ppp->ppp_net = net;
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 atomic_inc(&ppp_unit_count);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002744 mutex_unlock(&pn->all_ppp_mutex);
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 *retp = 0;
2747 return ppp;
2748
2749out2:
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002750 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 free_netdev(dev);
2752out1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 *retp = ret;
2754 return NULL;
2755}
2756
2757/*
2758 * Initialize a ppp_file structure.
2759 */
2760static void
2761init_ppp_file(struct ppp_file *pf, int kind)
2762{
2763 pf->kind = kind;
2764 skb_queue_head_init(&pf->xq);
2765 skb_queue_head_init(&pf->rq);
2766 atomic_set(&pf->refcnt, 1);
2767 init_waitqueue_head(&pf->rwait);
2768}
2769
2770/*
2771 * Take down a ppp interface unit - called when the owning file
2772 * (the one that created the unit) is closed or detached.
2773 */
2774static void ppp_shutdown_interface(struct ppp *ppp)
2775{
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002776 struct ppp_net *pn;
2777
2778 pn = ppp_pernet(ppp->ppp_net);
2779 mutex_lock(&pn->all_ppp_mutex);
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 /* This will call dev_close() for us. */
James Chapman739840d2008-12-17 12:02:16 +00002782 ppp_lock(ppp);
2783 if (!ppp->closing) {
2784 ppp->closing = 1;
2785 ppp_unlock(ppp);
2786 unregister_netdev(ppp->dev);
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002787 unit_put(&pn->units_idr, ppp->file.index);
James Chapman739840d2008-12-17 12:02:16 +00002788 } else
2789 ppp_unlock(ppp);
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 ppp->file.dead = 1;
2792 ppp->owner = NULL;
2793 wake_up_interruptible(&ppp->file.rwait);
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002794
2795 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796}
2797
2798/*
2799 * Free the memory used by a ppp unit. This is only called once
2800 * there are no channels connected to the unit and no file structs
2801 * that reference the unit.
2802 */
2803static void ppp_destroy_interface(struct ppp *ppp)
2804{
2805 atomic_dec(&ppp_unit_count);
2806
2807 if (!ppp->file.dead || ppp->n_channels) {
2808 /* "can't happen" */
David S. Millerb48f8c22011-01-20 22:44:36 -08002809 netdev_err(ppp->dev, "ppp: destroying ppp struct %p "
2810 "but dead=%d n_channels=%d !\n",
2811 ppp, ppp->file.dead, ppp->n_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 return;
2813 }
2814
2815 ppp_ccp_closed(ppp);
2816 if (ppp->vj) {
2817 slhc_free(ppp->vj);
2818 ppp->vj = NULL;
2819 }
2820 skb_queue_purge(&ppp->file.xq);
2821 skb_queue_purge(&ppp->file.rq);
2822#ifdef CONFIG_PPP_MULTILINK
2823 skb_queue_purge(&ppp->mrq);
2824#endif /* CONFIG_PPP_MULTILINK */
2825#ifdef CONFIG_PPP_FILTER
Daniel Borkmann568f1942014-03-28 18:58:23 +01002826 if (ppp->pass_filter) {
2827 sk_unattached_filter_destroy(ppp->pass_filter);
2828 ppp->pass_filter = NULL;
2829 }
2830
2831 if (ppp->active_filter) {
2832 sk_unattached_filter_destroy(ppp->active_filter);
2833 ppp->active_filter = NULL;
2834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835#endif /* CONFIG_PPP_FILTER */
2836
Wei Yongjun1d2f8c92009-02-25 00:16:08 +00002837 kfree_skb(ppp->xmit_pending);
G. Liakhovetski165de5b2007-03-25 19:04:09 -07002838
James Chapman739840d2008-12-17 12:02:16 +00002839 free_netdev(ppp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840}
2841
2842/*
2843 * Locate an existing ppp unit.
Arjan van de Ven8ed965d2006-03-23 03:00:21 -08002844 * The caller should have locked the all_ppp_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 */
2846static struct ppp *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002847ppp_find_unit(struct ppp_net *pn, int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002849 return unit_find(&pn->units_idr, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850}
2851
2852/*
2853 * Locate an existing ppp channel.
2854 * The caller should have locked the all_channels_lock.
2855 * First we look in the new_channels list, then in the
2856 * all_channels list. If found in the new_channels list,
2857 * we move it to the all_channels list. This is for speed
2858 * when we have a lot of channels in use.
2859 */
2860static struct channel *
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002861ppp_find_channel(struct ppp_net *pn, int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862{
2863 struct channel *pch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002865 list_for_each_entry(pch, &pn->new_channels, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 if (pch->file.index == unit) {
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002867 list_move(&pch->list, &pn->all_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return pch;
2869 }
2870 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002871
2872 list_for_each_entry(pch, &pn->all_channels, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 if (pch->file.index == unit)
2874 return pch;
2875 }
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return NULL;
2878}
2879
2880/*
2881 * Connect a PPP channel to a PPP interface unit.
2882 */
2883static int
2884ppp_connect_channel(struct channel *pch, int unit)
2885{
2886 struct ppp *ppp;
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002887 struct ppp_net *pn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 int ret = -ENXIO;
2889 int hdrlen;
2890
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002891 pn = ppp_pernet(pch->chan_net);
2892
2893 mutex_lock(&pn->all_ppp_mutex);
2894 ppp = ppp_find_unit(pn, unit);
Joe Perchescd228d52007-11-12 18:07:31 -08002895 if (!ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 goto out;
2897 write_lock_bh(&pch->upl);
2898 ret = -EINVAL;
Joe Perchescd228d52007-11-12 18:07:31 -08002899 if (pch->ppp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 goto outl;
2901
2902 ppp_lock(ppp);
2903 if (pch->file.hdrlen > ppp->file.hdrlen)
2904 ppp->file.hdrlen = pch->file.hdrlen;
2905 hdrlen = pch->file.hdrlen + 2; /* for protocol bytes */
James Chapman739840d2008-12-17 12:02:16 +00002906 if (hdrlen > ppp->dev->hard_header_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 ppp->dev->hard_header_len = hdrlen;
2908 list_add_tail(&pch->clist, &ppp->channels);
2909 ++ppp->n_channels;
2910 pch->ppp = ppp;
2911 atomic_inc(&ppp->file.refcnt);
2912 ppp_unlock(ppp);
2913 ret = 0;
2914
2915 outl:
2916 write_unlock_bh(&pch->upl);
2917 out:
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08002918 mutex_unlock(&pn->all_ppp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return ret;
2920}
2921
2922/*
2923 * Disconnect a channel from its ppp unit.
2924 */
2925static int
2926ppp_disconnect_channel(struct channel *pch)
2927{
2928 struct ppp *ppp;
2929 int err = -EINVAL;
2930
2931 write_lock_bh(&pch->upl);
2932 ppp = pch->ppp;
2933 pch->ppp = NULL;
2934 write_unlock_bh(&pch->upl);
Joe Perchescd228d52007-11-12 18:07:31 -08002935 if (ppp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 /* remove it from the ppp unit's list */
2937 ppp_lock(ppp);
2938 list_del(&pch->clist);
2939 if (--ppp->n_channels == 0)
2940 wake_up_interruptible(&ppp->file.rwait);
2941 ppp_unlock(ppp);
2942 if (atomic_dec_and_test(&ppp->file.refcnt))
2943 ppp_destroy_interface(ppp);
2944 err = 0;
2945 }
2946 return err;
2947}
2948
2949/*
2950 * Free up the resources used by a ppp channel.
2951 */
2952static void ppp_destroy_channel(struct channel *pch)
2953{
2954 atomic_dec(&channel_count);
2955
2956 if (!pch->file.dead) {
2957 /* "can't happen" */
David S. Millerb48f8c22011-01-20 22:44:36 -08002958 pr_err("ppp: destroying undead channel %p !\n", pch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return;
2960 }
2961 skb_queue_purge(&pch->file.xq);
2962 skb_queue_purge(&pch->file.rq);
2963 kfree(pch);
2964}
2965
2966static void __exit ppp_cleanup(void)
2967{
2968 /* should never happen */
2969 if (atomic_read(&ppp_unit_count) || atomic_read(&channel_count))
David S. Millerb48f8c22011-01-20 22:44:36 -08002970 pr_err("PPP: removing module but units remain!\n");
Akinobu Mita68fc4fa2007-07-19 01:47:50 -07002971 unregister_chrdev(PPP_MAJOR, "ppp");
Greg Kroah-Hartman9a6a2a52006-09-12 17:00:10 +02002972 device_destroy(ppp_class, MKDEV(PPP_MAJOR, 0));
gregkh@suse.de56b22932005-03-23 10:01:41 -08002973 class_destroy(ppp_class);
Eric W. Biederman741a6fa2009-11-29 15:46:09 +00002974 unregister_pernet_device(&ppp_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975}
2976
2977/*
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002978 * Units handling. Caller must protect concurrent access
2979 * by holding all_ppp_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Cyrill Gorcunovbcc70bb2010-11-23 11:43:44 +00002982/* associate pointer with specified number */
2983static int unit_set(struct idr *p, void *ptr, int n)
2984{
2985 int unit;
2986
Tejun Heo2fa532c2013-02-27 17:04:36 -08002987 unit = idr_alloc(p, ptr, n, n + 1, GFP_KERNEL);
2988 if (unit == -ENOSPC)
2989 unit = -EINVAL;
Cyrill Gorcunov85997572009-01-12 22:11:56 -08002990 return unit;
2991}
2992
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002993/* get new free unit number and associate pointer with it */
2994static int unit_get(struct idr *p, void *ptr)
2995{
Tejun Heo2fa532c2013-02-27 17:04:36 -08002996 return idr_alloc(p, ptr, 0, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08002999/* put unit number back to a pool */
3000static void unit_put(struct idr *p, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003002 idr_remove(p, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003}
3004
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003005/* get pointer associated with the number */
3006static void *unit_find(struct idr *p, int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
Cyrill Gorcunov7a95d262008-12-17 00:34:06 -08003008 return idr_find(p, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009}
3010
3011/* Module/initialization stuff */
3012
3013module_init(ppp_init);
3014module_exit(ppp_cleanup);
3015
Cyrill Gorcunov273ec512009-01-21 15:55:35 -08003016EXPORT_SYMBOL(ppp_register_net_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017EXPORT_SYMBOL(ppp_register_channel);
3018EXPORT_SYMBOL(ppp_unregister_channel);
3019EXPORT_SYMBOL(ppp_channel_index);
3020EXPORT_SYMBOL(ppp_unit_number);
James Chapman63f96072010-04-02 06:18:39 +00003021EXPORT_SYMBOL(ppp_dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022EXPORT_SYMBOL(ppp_input);
3023EXPORT_SYMBOL(ppp_input_error);
3024EXPORT_SYMBOL(ppp_output_wakeup);
3025EXPORT_SYMBOL(ppp_register_compressor);
3026EXPORT_SYMBOL(ppp_unregister_compressor);
3027MODULE_LICENSE("GPL");
Kay Sievers578454f2010-05-20 18:07:20 +02003028MODULE_ALIAS_CHARDEV(PPP_MAJOR, 0);
3029MODULE_ALIAS("devname:ppp");