2 * Generic PPP layer for Linux.
4 * Copyright 1999-2002 Paul Mackerras.
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.
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
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.
22 * ==FILEVERSION 20041108==
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/kmod.h>
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/idr.h>
31 #include <linux/netdevice.h>
32 #include <linux/poll.h>
33 #include <linux/ppp_defs.h>
34 #include <linux/filter.h>
35 #include <linux/if_ppp.h>
36 #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>
42 #include <linux/tcp.h>
43 #include <linux/smp_lock.h>
44 #include <linux/spinlock.h>
45 #include <linux/rwsem.h>
46 #include <linux/stddef.h>
47 #include <linux/device.h>
48 #include <linux/mutex.h>
49 #include <linux/slab.h>
50 #include <net/slhc_vj.h>
51 #include <asm/atomic.h>
53 #include <linux/nsproxy.h>
54 #include <net/net_namespace.h>
55 #include <net/netns/generic.h>
57 #define PPP_VERSION "2.4.2"
60 * Network protocols we support.
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. */
70 #define MPHDRLEN 6 /* multilink protocol header length */
71 #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
72 #define MIN_FRAG_SIZE 64
75 * An instance of /dev/ppp can be associated with either a ppp
76 * interface unit or a ppp channel. In both cases, file->private_data
77 * points to one of these.
83 struct sk_buff_head xq
; /* pppd transmit queue */
84 struct sk_buff_head rq
; /* receive queue for pppd */
85 wait_queue_head_t rwait
; /* for poll on reading /dev/ppp */
86 atomic_t refcnt
; /* # refs (incl /dev/ppp attached) */
87 int hdrlen
; /* space to leave for headers */
88 int index
; /* interface unit / channel number */
89 int dead
; /* unit/channel has been shut down */
92 #define PF_TO_X(pf, X) container_of(pf, X, file)
94 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
95 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
98 * Data structure describing one ppp unit.
99 * A ppp unit corresponds to a ppp network interface device
100 * and represents a multilink bundle.
101 * It can have 0 or more ppp channels connected to it.
104 struct ppp_file file
; /* stuff for read/write/poll 0 */
105 struct file
*owner
; /* file that owns this unit 48 */
106 struct list_head channels
; /* list of attached channels 4c */
107 int n_channels
; /* how many channels are attached 54 */
108 spinlock_t rlock
; /* lock for receive side 58 */
109 spinlock_t wlock
; /* lock for transmit side 5c */
110 int mru
; /* max receive unit 60 */
111 unsigned int flags
; /* control bits 64 */
112 unsigned int xstate
; /* transmit state bits 68 */
113 unsigned int rstate
; /* receive state bits 6c */
114 int debug
; /* debug flags 70 */
115 struct slcompress
*vj
; /* state for VJ header compression */
116 enum NPmode npmode
[NUM_NP
]; /* what to do with each net proto 78 */
117 struct sk_buff
*xmit_pending
; /* a packet ready to go out 88 */
118 struct compressor
*xcomp
; /* transmit packet compressor 8c */
119 void *xc_state
; /* its internal state 90 */
120 struct compressor
*rcomp
; /* receive decompressor 94 */
121 void *rc_state
; /* its internal state 98 */
122 unsigned long last_xmit
; /* jiffies when last pkt sent 9c */
123 unsigned long last_recv
; /* jiffies when last pkt rcvd a0 */
124 struct net_device
*dev
; /* network interface device a4 */
125 int closing
; /* is device closing down? a8 */
126 #ifdef CONFIG_PPP_MULTILINK
127 int nxchan
; /* next channel to send something on */
128 u32 nxseq
; /* next sequence number to send */
129 int mrru
; /* MP: max reconst. receive unit */
130 u32 nextseq
; /* MP: seq no of next packet */
131 u32 minseq
; /* MP: min of most recent seqnos */
132 struct sk_buff_head mrq
; /* MP: receive reconstruction queue */
133 #endif /* CONFIG_PPP_MULTILINK */
134 #ifdef CONFIG_PPP_FILTER
135 struct sock_filter
*pass_filter
; /* filter for packets to pass */
136 struct sock_filter
*active_filter
;/* filter for pkts to reset idle */
137 unsigned pass_len
, active_len
;
138 #endif /* CONFIG_PPP_FILTER */
139 struct net
*ppp_net
; /* the net we belong to */
143 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
144 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
146 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
147 * Bits in xstate: SC_COMP_RUN
149 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
150 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
151 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
154 * Private data structure for each channel.
155 * This includes the data structure used for multilink.
158 struct ppp_file file
; /* stuff for read/write/poll */
159 struct list_head list
; /* link in all/new_channels list */
160 struct ppp_channel
*chan
; /* public channel data structure */
161 struct rw_semaphore chan_sem
; /* protects `chan' during chan ioctl */
162 spinlock_t downl
; /* protects `chan', file.xq dequeue */
163 struct ppp
*ppp
; /* ppp unit we're connected to */
164 struct net
*chan_net
; /* the net channel belongs to */
165 struct list_head clist
; /* link in list of channels per unit */
166 rwlock_t upl
; /* protects `ppp' */
167 #ifdef CONFIG_PPP_MULTILINK
168 u8 avail
; /* flag used in multilink stuff */
169 u8 had_frag
; /* >= 1 fragments have been sent */
170 u32 lastseq
; /* MP: last sequence # received */
171 int speed
; /* speed of the corresponding ppp channel*/
172 #endif /* CONFIG_PPP_MULTILINK */
176 * SMP locking issues:
177 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
178 * list and the ppp.n_channels field, you need to take both locks
179 * before you modify them.
180 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
184 static atomic_t ppp_unit_count
= ATOMIC_INIT(0);
185 static atomic_t channel_count
= ATOMIC_INIT(0);
187 /* per-net private data for this module */
188 static int ppp_net_id __read_mostly
;
190 /* units to ppp mapping */
191 struct idr units_idr
;
194 * all_ppp_mutex protects the units_idr mapping.
195 * It also ensures that finding a ppp unit in the units_idr
196 * map and updating its file.refcnt field is atomic.
198 struct mutex all_ppp_mutex
;
201 struct list_head all_channels
;
202 struct list_head new_channels
;
203 int last_channel_index
;
206 * all_channels_lock protects all_channels and
207 * last_channel_index, and the atomicity of find
208 * a channel and updating its file.refcnt field.
210 spinlock_t all_channels_lock
;
213 /* Get the PPP protocol number from a skb */
214 #define PPP_PROTO(skb) (((skb)->data[0] << 8) + (skb)->data[1])
216 /* We limit the length of ppp->file.rq to this (arbitrary) value */
217 #define PPP_MAX_RQLEN 32
220 * Maximum number of multilink fragments queued up.
221 * This has to be large enough to cope with the maximum latency of
222 * the slowest channel relative to the others. Strictly it should
223 * depend on the number of channels and their characteristics.
225 #define PPP_MP_MAX_QLEN 128
227 /* Multilink header bits. */
228 #define B 0x80 /* this fragment begins a packet */
229 #define E 0x40 /* this fragment ends a packet */
231 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
232 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
233 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
236 static int ppp_unattached_ioctl(struct net
*net
, struct ppp_file
*pf
,
237 struct file
*file
, unsigned int cmd
, unsigned long arg
);
238 static void ppp_xmit_process(struct ppp
*ppp
);
239 static void ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
240 static void ppp_push(struct ppp
*ppp
);
241 static void ppp_channel_push(struct channel
*pch
);
242 static void ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
243 struct channel
*pch
);
244 static void ppp_receive_error(struct ppp
*ppp
);
245 static void ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
246 static struct sk_buff
*ppp_decompress_frame(struct ppp
*ppp
,
247 struct sk_buff
*skb
);
248 #ifdef CONFIG_PPP_MULTILINK
249 static void ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
250 struct channel
*pch
);
251 static void ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
);
252 static struct sk_buff
*ppp_mp_reconstruct(struct ppp
*ppp
);
253 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
);
254 #endif /* CONFIG_PPP_MULTILINK */
255 static int ppp_set_compress(struct ppp
*ppp
, unsigned long arg
);
256 static void ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
);
257 static void ppp_ccp_closed(struct ppp
*ppp
);
258 static struct compressor
*find_compressor(int type
);
259 static void ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
);
260 static struct ppp
*ppp_create_interface(struct net
*net
, int unit
, int *retp
);
261 static void init_ppp_file(struct ppp_file
*pf
, int kind
);
262 static void ppp_shutdown_interface(struct ppp
*ppp
);
263 static void ppp_destroy_interface(struct ppp
*ppp
);
264 static struct ppp
*ppp_find_unit(struct ppp_net
*pn
, int unit
);
265 static struct channel
*ppp_find_channel(struct ppp_net
*pn
, int unit
);
266 static int ppp_connect_channel(struct channel
*pch
, int unit
);
267 static int ppp_disconnect_channel(struct channel
*pch
);
268 static void ppp_destroy_channel(struct channel
*pch
);
269 static int unit_get(struct idr
*p
, void *ptr
);
270 static int unit_set(struct idr
*p
, void *ptr
, int n
);
271 static void unit_put(struct idr
*p
, int n
);
272 static void *unit_find(struct idr
*p
, int n
);
274 static struct class *ppp_class
;
276 /* per net-namespace data */
277 static inline struct ppp_net
*ppp_pernet(struct net
*net
)
281 return net_generic(net
, ppp_net_id
);
284 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
285 static inline int proto_to_npindex(int proto
)
304 /* Translates an NP index into a PPP protocol number */
305 static const int npindex_to_proto
[NUM_NP
] = {
314 /* Translates an ethertype into an NP index */
315 static inline int ethertype_to_npindex(int ethertype
)
335 /* Translates an NP index into an ethertype */
336 static const int npindex_to_ethertype
[NUM_NP
] = {
348 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
349 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
350 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
351 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
352 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
353 ppp_recv_lock(ppp); } while (0)
354 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
355 ppp_xmit_unlock(ppp); } while (0)
358 * /dev/ppp device routines.
359 * The /dev/ppp device is used by pppd to control the ppp unit.
360 * It supports the read, write, ioctl and poll functions.
361 * Open instances of /dev/ppp can be in one of three states:
362 * unattached, attached to a ppp unit, or attached to a ppp channel.
364 static int ppp_open(struct inode
*inode
, struct file
*file
)
368 * This could (should?) be enforced by the permissions on /dev/ppp.
370 if (!capable(CAP_NET_ADMIN
))
375 static int ppp_release(struct inode
*unused
, struct file
*file
)
377 struct ppp_file
*pf
= file
->private_data
;
381 file
->private_data
= NULL
;
382 if (pf
->kind
== INTERFACE
) {
384 if (file
== ppp
->owner
)
385 ppp_shutdown_interface(ppp
);
387 if (atomic_dec_and_test(&pf
->refcnt
)) {
390 ppp_destroy_interface(PF_TO_PPP(pf
));
393 ppp_destroy_channel(PF_TO_CHANNEL(pf
));
401 static ssize_t
ppp_read(struct file
*file
, char __user
*buf
,
402 size_t count
, loff_t
*ppos
)
404 struct ppp_file
*pf
= file
->private_data
;
405 DECLARE_WAITQUEUE(wait
, current
);
407 struct sk_buff
*skb
= NULL
;
414 add_wait_queue(&pf
->rwait
, &wait
);
416 set_current_state(TASK_INTERRUPTIBLE
);
417 skb
= skb_dequeue(&pf
->rq
);
423 if (pf
->kind
== INTERFACE
) {
425 * Return 0 (EOF) on an interface that has no
426 * channels connected, unless it is looping
427 * network traffic (demand mode).
429 struct ppp
*ppp
= PF_TO_PPP(pf
);
430 if (ppp
->n_channels
== 0 &&
431 (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
435 if (file
->f_flags
& O_NONBLOCK
)
438 if (signal_pending(current
))
442 set_current_state(TASK_RUNNING
);
443 remove_wait_queue(&pf
->rwait
, &wait
);
449 if (skb
->len
> count
)
454 if (skb_copy_datagram_iovec(skb
, 0, &iov
, skb
->len
))
464 static ssize_t
ppp_write(struct file
*file
, const char __user
*buf
,
465 size_t count
, loff_t
*ppos
)
467 struct ppp_file
*pf
= file
->private_data
;
474 skb
= alloc_skb(count
+ pf
->hdrlen
, GFP_KERNEL
);
477 skb_reserve(skb
, pf
->hdrlen
);
479 if (copy_from_user(skb_put(skb
, count
), buf
, count
)) {
484 skb_queue_tail(&pf
->xq
, skb
);
488 ppp_xmit_process(PF_TO_PPP(pf
));
491 ppp_channel_push(PF_TO_CHANNEL(pf
));
501 /* No kernel lock - fine */
502 static unsigned int ppp_poll(struct file
*file
, poll_table
*wait
)
504 struct ppp_file
*pf
= file
->private_data
;
509 poll_wait(file
, &pf
->rwait
, wait
);
510 mask
= POLLOUT
| POLLWRNORM
;
511 if (skb_peek(&pf
->rq
))
512 mask
|= POLLIN
| POLLRDNORM
;
515 else if (pf
->kind
== INTERFACE
) {
516 /* see comment in ppp_read */
517 struct ppp
*ppp
= PF_TO_PPP(pf
);
518 if (ppp
->n_channels
== 0 &&
519 (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
520 mask
|= POLLIN
| POLLRDNORM
;
526 #ifdef CONFIG_PPP_FILTER
527 static int get_filter(void __user
*arg
, struct sock_filter
**p
)
529 struct sock_fprog uprog
;
530 struct sock_filter
*code
= NULL
;
533 if (copy_from_user(&uprog
, arg
, sizeof(uprog
)))
541 len
= uprog
.len
* sizeof(struct sock_filter
);
542 code
= kmalloc(len
, GFP_KERNEL
);
546 if (copy_from_user(code
, uprog
.filter
, len
)) {
551 err
= sk_chk_filter(code
, uprog
.len
);
560 #endif /* CONFIG_PPP_FILTER */
562 static long ppp_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
564 struct ppp_file
*pf
= file
->private_data
;
566 int err
= -EFAULT
, val
, val2
, i
;
567 struct ppp_idle idle
;
570 struct slcompress
*vj
;
571 void __user
*argp
= (void __user
*)arg
;
572 int __user
*p
= argp
;
575 return ppp_unattached_ioctl(current
->nsproxy
->net_ns
,
578 if (cmd
== PPPIOCDETACH
) {
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.
592 if (pf
->kind
== INTERFACE
) {
594 if (file
== ppp
->owner
)
595 ppp_shutdown_interface(ppp
);
597 if (atomic_long_read(&file
->f_count
) <= 2) {
598 ppp_release(NULL
, file
);
601 printk(KERN_DEBUG
"PPPIOCDETACH file->f_count=%ld\n",
602 atomic_long_read(&file
->f_count
));
607 if (pf
->kind
== CHANNEL
) {
609 struct ppp_channel
*chan
;
612 pch
= PF_TO_CHANNEL(pf
);
616 if (get_user(unit
, p
))
618 err
= ppp_connect_channel(pch
, unit
);
622 err
= ppp_disconnect_channel(pch
);
626 down_read(&pch
->chan_sem
);
629 if (chan
&& chan
->ops
->ioctl
)
630 err
= chan
->ops
->ioctl(chan
, cmd
, arg
);
631 up_read(&pch
->chan_sem
);
637 if (pf
->kind
!= INTERFACE
) {
639 printk(KERN_ERR
"PPP: not interface or channel??\n");
647 if (get_user(val
, p
))
654 if (get_user(val
, p
))
657 cflags
= ppp
->flags
& ~val
;
658 ppp
->flags
= val
& SC_FLAG_BITS
;
660 if (cflags
& SC_CCP_OPEN
)
666 val
= ppp
->flags
| ppp
->xstate
| ppp
->rstate
;
667 if (put_user(val
, p
))
672 case PPPIOCSCOMPRESS
:
673 err
= ppp_set_compress(ppp
, arg
);
677 if (put_user(ppp
->file
.index
, p
))
683 if (get_user(val
, p
))
690 if (put_user(ppp
->debug
, p
))
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
)))
704 if (get_user(val
, p
))
707 if ((val
>> 16) != 0) {
711 vj
= slhc_init(val2
+1, val
+1);
713 printk(KERN_ERR
"PPP: no memory (VJ compressor)\n");
727 if (copy_from_user(&npi
, argp
, sizeof(npi
)))
729 err
= proto_to_npindex(npi
.protocol
);
733 if (cmd
== PPPIOCGNPMODE
) {
735 npi
.mode
= ppp
->npmode
[i
];
736 if (copy_to_user(argp
, &npi
, sizeof(npi
)))
739 ppp
->npmode
[i
] = npi
.mode
;
740 /* we may be able to transmit more packets now (??) */
741 netif_wake_queue(ppp
->dev
);
746 #ifdef CONFIG_PPP_FILTER
749 struct sock_filter
*code
;
750 err
= get_filter(argp
, &code
);
753 kfree(ppp
->pass_filter
);
754 ppp
->pass_filter
= code
;
763 struct sock_filter
*code
;
764 err
= get_filter(argp
, &code
);
767 kfree(ppp
->active_filter
);
768 ppp
->active_filter
= code
;
769 ppp
->active_len
= err
;
775 #endif /* CONFIG_PPP_FILTER */
777 #ifdef CONFIG_PPP_MULTILINK
779 if (get_user(val
, p
))
783 ppp_recv_unlock(ppp
);
786 #endif /* CONFIG_PPP_MULTILINK */
795 static int ppp_unattached_ioctl(struct net
*net
, struct ppp_file
*pf
,
796 struct file
*file
, unsigned int cmd
, unsigned long arg
)
798 int unit
, err
= -EFAULT
;
800 struct channel
*chan
;
802 int __user
*p
= (int __user
*)arg
;
807 /* Create a new ppp unit */
808 if (get_user(unit
, p
))
810 ppp
= ppp_create_interface(net
, unit
, &err
);
813 file
->private_data
= &ppp
->file
;
816 if (put_user(ppp
->file
.index
, p
))
822 /* Attach to an existing ppp unit */
823 if (get_user(unit
, p
))
826 pn
= ppp_pernet(net
);
827 mutex_lock(&pn
->all_ppp_mutex
);
828 ppp
= ppp_find_unit(pn
, unit
);
830 atomic_inc(&ppp
->file
.refcnt
);
831 file
->private_data
= &ppp
->file
;
834 mutex_unlock(&pn
->all_ppp_mutex
);
838 if (get_user(unit
, p
))
841 pn
= ppp_pernet(net
);
842 spin_lock_bh(&pn
->all_channels_lock
);
843 chan
= ppp_find_channel(pn
, unit
);
845 atomic_inc(&chan
->file
.refcnt
);
846 file
->private_data
= &chan
->file
;
849 spin_unlock_bh(&pn
->all_channels_lock
);
859 static const struct file_operations ppp_device_fops
= {
860 .owner
= THIS_MODULE
,
864 .unlocked_ioctl
= ppp_ioctl
,
866 .release
= ppp_release
869 static __net_init
int ppp_init_net(struct net
*net
)
871 struct ppp_net
*pn
= net_generic(net
, ppp_net_id
);
873 idr_init(&pn
->units_idr
);
874 mutex_init(&pn
->all_ppp_mutex
);
876 INIT_LIST_HEAD(&pn
->all_channels
);
877 INIT_LIST_HEAD(&pn
->new_channels
);
879 spin_lock_init(&pn
->all_channels_lock
);
884 static __net_exit
void ppp_exit_net(struct net
*net
)
886 struct ppp_net
*pn
= net_generic(net
, ppp_net_id
);
888 idr_destroy(&pn
->units_idr
);
891 static struct pernet_operations ppp_net_ops
= {
892 .init
= ppp_init_net
,
893 .exit
= ppp_exit_net
,
895 .size
= sizeof(struct ppp_net
),
898 #define PPP_MAJOR 108
900 /* Called at boot time if ppp is compiled into the kernel,
901 or at module load time (from init_module) if compiled as a module. */
902 static int __init
ppp_init(void)
906 printk(KERN_INFO
"PPP generic driver version " PPP_VERSION
"\n");
908 err
= register_pernet_device(&ppp_net_ops
);
910 printk(KERN_ERR
"failed to register PPP pernet device (%d)\n", err
);
914 err
= register_chrdev(PPP_MAJOR
, "ppp", &ppp_device_fops
);
916 printk(KERN_ERR
"failed to register PPP device (%d)\n", err
);
920 ppp_class
= class_create(THIS_MODULE
, "ppp");
921 if (IS_ERR(ppp_class
)) {
922 err
= PTR_ERR(ppp_class
);
926 /* not a big deal if we fail here :-) */
927 device_create(ppp_class
, NULL
, MKDEV(PPP_MAJOR
, 0), NULL
, "ppp");
932 unregister_chrdev(PPP_MAJOR
, "ppp");
934 unregister_pernet_device(&ppp_net_ops
);
940 * Network interface unit routines.
943 ppp_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
945 struct ppp
*ppp
= netdev_priv(dev
);
949 npi
= ethertype_to_npindex(ntohs(skb
->protocol
));
953 /* Drop, accept or reject the packet */
954 switch (ppp
->npmode
[npi
]) {
958 /* it would be nice to have a way to tell the network
959 system to queue this one up for later. */
966 /* Put the 2-byte PPP protocol number on the front,
967 making sure there is room for the address and control fields. */
968 if (skb_cow_head(skb
, PPP_HDRLEN
))
971 pp
= skb_push(skb
, 2);
972 proto
= npindex_to_proto
[npi
];
976 netif_stop_queue(dev
);
977 skb_queue_tail(&ppp
->file
.xq
, skb
);
978 ppp_xmit_process(ppp
);
983 ++dev
->stats
.tx_dropped
;
988 ppp_net_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
990 struct ppp
*ppp
= netdev_priv(dev
);
992 void __user
*addr
= (void __user
*) ifr
->ifr_ifru
.ifru_data
;
993 struct ppp_stats stats
;
994 struct ppp_comp_stats cstats
;
999 ppp_get_stats(ppp
, &stats
);
1000 if (copy_to_user(addr
, &stats
, sizeof(stats
)))
1005 case SIOCGPPPCSTATS
:
1006 memset(&cstats
, 0, sizeof(cstats
));
1008 ppp
->xcomp
->comp_stat(ppp
->xc_state
, &cstats
.c
);
1010 ppp
->rcomp
->decomp_stat(ppp
->rc_state
, &cstats
.d
);
1011 if (copy_to_user(addr
, &cstats
, sizeof(cstats
)))
1018 if (copy_to_user(addr
, vers
, strlen(vers
) + 1))
1030 static const struct net_device_ops ppp_netdev_ops
= {
1031 .ndo_start_xmit
= ppp_start_xmit
,
1032 .ndo_do_ioctl
= ppp_net_ioctl
,
1035 static void ppp_setup(struct net_device
*dev
)
1037 dev
->netdev_ops
= &ppp_netdev_ops
;
1038 dev
->hard_header_len
= PPP_HDRLEN
;
1041 dev
->tx_queue_len
= 3;
1042 dev
->type
= ARPHRD_PPP
;
1043 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
1044 dev
->features
|= NETIF_F_NETNS_LOCAL
;
1045 dev
->priv_flags
&= ~IFF_XMIT_DST_RELEASE
;
1049 * Transmit-side routines.
1053 * Called to do any work queued up on the transmit side
1054 * that can now be done.
1057 ppp_xmit_process(struct ppp
*ppp
)
1059 struct sk_buff
*skb
;
1062 if (!ppp
->closing
) {
1064 while (!ppp
->xmit_pending
&&
1065 (skb
= skb_dequeue(&ppp
->file
.xq
)))
1066 ppp_send_frame(ppp
, skb
);
1067 /* If there's no work left to do, tell the core net
1068 code that we can accept some more. */
1069 if (!ppp
->xmit_pending
&& !skb_peek(&ppp
->file
.xq
))
1070 netif_wake_queue(ppp
->dev
);
1072 ppp_xmit_unlock(ppp
);
1075 static inline struct sk_buff
*
1076 pad_compress_skb(struct ppp
*ppp
, struct sk_buff
*skb
)
1078 struct sk_buff
*new_skb
;
1080 int new_skb_size
= ppp
->dev
->mtu
+
1081 ppp
->xcomp
->comp_extra
+ ppp
->dev
->hard_header_len
;
1082 int compressor_skb_size
= ppp
->dev
->mtu
+
1083 ppp
->xcomp
->comp_extra
+ PPP_HDRLEN
;
1084 new_skb
= alloc_skb(new_skb_size
, GFP_ATOMIC
);
1086 if (net_ratelimit())
1087 printk(KERN_ERR
"PPP: no memory (comp pkt)\n");
1090 if (ppp
->dev
->hard_header_len
> PPP_HDRLEN
)
1091 skb_reserve(new_skb
,
1092 ppp
->dev
->hard_header_len
- PPP_HDRLEN
);
1094 /* compressor still expects A/C bytes in hdr */
1095 len
= ppp
->xcomp
->compress(ppp
->xc_state
, skb
->data
- 2,
1096 new_skb
->data
, skb
->len
+ 2,
1097 compressor_skb_size
);
1098 if (len
> 0 && (ppp
->flags
& SC_CCP_UP
)) {
1102 skb_pull(skb
, 2); /* pull off A/C bytes */
1103 } else if (len
== 0) {
1104 /* didn't compress, or CCP not up yet */
1110 * MPPE requires that we do not send unencrypted
1111 * frames. The compressor will return -1 if we
1112 * should drop the frame. We cannot simply test
1113 * the compress_proto because MPPE and MPPC share
1116 if (net_ratelimit())
1117 printk(KERN_ERR
"ppp: compressor dropped pkt\n");
1126 * Compress and send a frame.
1127 * The caller should have locked the xmit path,
1128 * and xmit_pending should be 0.
1131 ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1133 int proto
= PPP_PROTO(skb
);
1134 struct sk_buff
*new_skb
;
1138 if (proto
< 0x8000) {
1139 #ifdef CONFIG_PPP_FILTER
1140 /* check if we should pass this packet */
1141 /* the filter instructions are constructed assuming
1142 a four-byte PPP header on each packet */
1143 *skb_push(skb
, 2) = 1;
1144 if (ppp
->pass_filter
&&
1145 sk_run_filter(skb
, ppp
->pass_filter
,
1146 ppp
->pass_len
) == 0) {
1148 printk(KERN_DEBUG
"PPP: outbound frame not passed\n");
1152 /* if this packet passes the active filter, record the time */
1153 if (!(ppp
->active_filter
&&
1154 sk_run_filter(skb
, ppp
->active_filter
,
1155 ppp
->active_len
) == 0))
1156 ppp
->last_xmit
= jiffies
;
1159 /* for data packets, record the time */
1160 ppp
->last_xmit
= jiffies
;
1161 #endif /* CONFIG_PPP_FILTER */
1164 ++ppp
->dev
->stats
.tx_packets
;
1165 ppp
->dev
->stats
.tx_bytes
+= skb
->len
- 2;
1169 if (!ppp
->vj
|| (ppp
->flags
& SC_COMP_TCP
) == 0)
1171 /* try to do VJ TCP header compression */
1172 new_skb
= alloc_skb(skb
->len
+ ppp
->dev
->hard_header_len
- 2,
1175 printk(KERN_ERR
"PPP: no memory (VJ comp pkt)\n");
1178 skb_reserve(new_skb
, ppp
->dev
->hard_header_len
- 2);
1180 len
= slhc_compress(ppp
->vj
, cp
, skb
->len
- 2,
1181 new_skb
->data
+ 2, &cp
,
1182 !(ppp
->flags
& SC_NO_TCP_CCID
));
1183 if (cp
== skb
->data
+ 2) {
1184 /* didn't compress */
1187 if (cp
[0] & SL_TYPE_COMPRESSED_TCP
) {
1188 proto
= PPP_VJC_COMP
;
1189 cp
[0] &= ~SL_TYPE_COMPRESSED_TCP
;
1191 proto
= PPP_VJC_UNCOMP
;
1192 cp
[0] = skb
->data
[2];
1196 cp
= skb_put(skb
, len
+ 2);
1203 /* peek at outbound CCP frames */
1204 ppp_ccp_peek(ppp
, skb
, 0);
1208 /* try to do packet compression */
1209 if ((ppp
->xstate
& SC_COMP_RUN
) && ppp
->xc_state
&&
1210 proto
!= PPP_LCP
&& proto
!= PPP_CCP
) {
1211 if (!(ppp
->flags
& SC_CCP_UP
) && (ppp
->flags
& SC_MUST_COMP
)) {
1212 if (net_ratelimit())
1213 printk(KERN_ERR
"ppp: compression required but down - pkt dropped.\n");
1216 skb
= pad_compress_skb(ppp
, skb
);
1222 * If we are waiting for traffic (demand dialling),
1223 * queue it up for pppd to receive.
1225 if (ppp
->flags
& SC_LOOP_TRAFFIC
) {
1226 if (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
)
1228 skb_queue_tail(&ppp
->file
.rq
, skb
);
1229 wake_up_interruptible(&ppp
->file
.rwait
);
1233 ppp
->xmit_pending
= skb
;
1239 ++ppp
->dev
->stats
.tx_errors
;
1243 * Try to send the frame in xmit_pending.
1244 * The caller should have the xmit path locked.
1247 ppp_push(struct ppp
*ppp
)
1249 struct list_head
*list
;
1250 struct channel
*pch
;
1251 struct sk_buff
*skb
= ppp
->xmit_pending
;
1256 list
= &ppp
->channels
;
1257 if (list_empty(list
)) {
1258 /* nowhere to send the packet, just drop it */
1259 ppp
->xmit_pending
= NULL
;
1264 if ((ppp
->flags
& SC_MULTILINK
) == 0) {
1265 /* not doing multilink: send it down the first channel */
1267 pch
= list_entry(list
, struct channel
, clist
);
1269 spin_lock_bh(&pch
->downl
);
1271 if (pch
->chan
->ops
->start_xmit(pch
->chan
, skb
))
1272 ppp
->xmit_pending
= NULL
;
1274 /* channel got unregistered */
1276 ppp
->xmit_pending
= NULL
;
1278 spin_unlock_bh(&pch
->downl
);
1282 #ifdef CONFIG_PPP_MULTILINK
1283 /* Multilink: fragment the packet over as many links
1284 as can take the packet at the moment. */
1285 if (!ppp_mp_explode(ppp
, skb
))
1287 #endif /* CONFIG_PPP_MULTILINK */
1289 ppp
->xmit_pending
= NULL
;
1293 #ifdef CONFIG_PPP_MULTILINK
1295 * Divide a packet to be transmitted into fragments and
1296 * send them out the individual links.
1298 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
)
1301 int i
, bits
, hdrlen
, mtu
;
1303 int navail
, nfree
, nzero
;
1307 unsigned char *p
, *q
;
1308 struct list_head
*list
;
1309 struct channel
*pch
;
1310 struct sk_buff
*frag
;
1311 struct ppp_channel
*chan
;
1313 totspeed
= 0; /*total bitrate of the bundle*/
1314 nfree
= 0; /* # channels which have no packet already queued */
1315 navail
= 0; /* total # of usable channels (not deregistered) */
1316 nzero
= 0; /* number of channels with zero speed associated*/
1317 totfree
= 0; /*total # of channels available and
1318 *having no queued packets before
1319 *starting the fragmentation*/
1321 hdrlen
= (ppp
->flags
& SC_MP_XSHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1323 list_for_each_entry(pch
, &ppp
->channels
, clist
) {
1324 navail
+= pch
->avail
= (pch
->chan
!= NULL
);
1325 pch
->speed
= pch
->chan
->speed
;
1327 if (skb_queue_empty(&pch
->file
.xq
) ||
1329 if (pch
->speed
== 0)
1332 totspeed
+= pch
->speed
;
1338 if (!pch
->had_frag
&& i
< ppp
->nxchan
)
1344 * Don't start sending this packet unless at least half of
1345 * the channels are free. This gives much better TCP
1346 * performance if we have a lot of channels.
1348 if (nfree
== 0 || nfree
< navail
/ 2)
1349 return 0; /* can't take now, leave it in xmit_pending */
1351 /* Do protocol field compression (XXX this should be optional) */
1360 nbigger
= len
% nfree
;
1362 /* skip to the channel after the one we last used
1363 and start at that one */
1364 list
= &ppp
->channels
;
1365 for (i
= 0; i
< ppp
->nxchan
; ++i
) {
1367 if (list
== &ppp
->channels
) {
1373 /* create a fragment for each channel */
1377 if (list
== &ppp
->channels
) {
1381 pch
= list_entry(list
, struct channel
, clist
);
1387 * Skip this channel if it has a fragment pending already and
1388 * we haven't given a fragment to all of the free channels.
1390 if (pch
->avail
== 1) {
1397 /* check the channel's mtu and whether it is still attached. */
1398 spin_lock_bh(&pch
->downl
);
1399 if (pch
->chan
== NULL
) {
1400 /* can't use this channel, it's being deregistered */
1401 if (pch
->speed
== 0)
1404 totspeed
-= pch
->speed
;
1406 spin_unlock_bh(&pch
->downl
);
1417 *if the channel speed is not set divide
1418 *the packet evenly among the free channels;
1419 *otherwise divide it according to the speed
1420 *of the channel we are going to transmit on
1424 if (pch
->speed
== 0) {
1431 flen
= (((totfree
- nzero
)*(totlen
+ hdrlen
*totfree
)) /
1432 ((totspeed
*totfree
)/pch
->speed
)) - hdrlen
;
1434 flen
+= ((totfree
- nzero
)*pch
->speed
)/totspeed
;
1435 nbigger
-= ((totfree
- nzero
)*pch
->speed
)/
1443 *check if we are on the last channel or
1444 *we exceded the lenght of the data to
1447 if ((nfree
<= 0) || (flen
> len
))
1450 *it is not worth to tx on slow channels:
1451 *in that case from the resulting flen according to the
1452 *above formula will be equal or less than zero.
1453 *Skip the channel in this case
1457 spin_unlock_bh(&pch
->downl
);
1461 mtu
= pch
->chan
->mtu
- hdrlen
;
1468 frag
= alloc_skb(flen
+ hdrlen
+ (flen
== 0), GFP_ATOMIC
);
1471 q
= skb_put(frag
, flen
+ hdrlen
);
1473 /* make the MP header */
1476 if (ppp
->flags
& SC_MP_XSHORTSEQ
) {
1477 q
[2] = bits
+ ((ppp
->nxseq
>> 8) & 0xf);
1481 q
[3] = ppp
->nxseq
>> 16;
1482 q
[4] = ppp
->nxseq
>> 8;
1486 memcpy(q
+ hdrlen
, p
, flen
);
1488 /* try to send it down the channel */
1490 if (!skb_queue_empty(&pch
->file
.xq
) ||
1491 !chan
->ops
->start_xmit(chan
, frag
))
1492 skb_queue_tail(&pch
->file
.xq
, frag
);
1498 spin_unlock_bh(&pch
->downl
);
1505 spin_unlock_bh(&pch
->downl
);
1507 printk(KERN_ERR
"PPP: no memory (fragment)\n");
1508 ++ppp
->dev
->stats
.tx_errors
;
1510 return 1; /* abandon the frame */
1512 #endif /* CONFIG_PPP_MULTILINK */
1515 * Try to send data out on a channel.
1518 ppp_channel_push(struct channel
*pch
)
1520 struct sk_buff
*skb
;
1523 spin_lock_bh(&pch
->downl
);
1525 while (!skb_queue_empty(&pch
->file
.xq
)) {
1526 skb
= skb_dequeue(&pch
->file
.xq
);
1527 if (!pch
->chan
->ops
->start_xmit(pch
->chan
, skb
)) {
1528 /* put the packet back and try again later */
1529 skb_queue_head(&pch
->file
.xq
, skb
);
1534 /* channel got deregistered */
1535 skb_queue_purge(&pch
->file
.xq
);
1537 spin_unlock_bh(&pch
->downl
);
1538 /* see if there is anything from the attached unit to be sent */
1539 if (skb_queue_empty(&pch
->file
.xq
)) {
1540 read_lock_bh(&pch
->upl
);
1543 ppp_xmit_process(ppp
);
1544 read_unlock_bh(&pch
->upl
);
1549 * Receive-side routines.
1552 /* misuse a few fields of the skb for MP reconstruction */
1553 #define sequence priority
1554 #define BEbits cb[0]
1557 ppp_do_recv(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1561 ppp_receive_frame(ppp
, skb
, pch
);
1564 ppp_recv_unlock(ppp
);
1568 ppp_input(struct ppp_channel
*chan
, struct sk_buff
*skb
)
1570 struct channel
*pch
= chan
->ppp
;
1578 read_lock_bh(&pch
->upl
);
1579 if (!pskb_may_pull(skb
, 2)) {
1582 ++pch
->ppp
->dev
->stats
.rx_length_errors
;
1583 ppp_receive_error(pch
->ppp
);
1588 proto
= PPP_PROTO(skb
);
1589 if (!pch
->ppp
|| proto
>= 0xc000 || proto
== PPP_CCPFRAG
) {
1590 /* put it on the channel queue */
1591 skb_queue_tail(&pch
->file
.rq
, skb
);
1592 /* drop old frames if queue too long */
1593 while (pch
->file
.rq
.qlen
> PPP_MAX_RQLEN
&&
1594 (skb
= skb_dequeue(&pch
->file
.rq
)))
1596 wake_up_interruptible(&pch
->file
.rwait
);
1598 ppp_do_recv(pch
->ppp
, skb
, pch
);
1602 read_unlock_bh(&pch
->upl
);
1605 /* Put a 0-length skb in the receive queue as an error indication */
1607 ppp_input_error(struct ppp_channel
*chan
, int code
)
1609 struct channel
*pch
= chan
->ppp
;
1610 struct sk_buff
*skb
;
1615 read_lock_bh(&pch
->upl
);
1617 skb
= alloc_skb(0, GFP_ATOMIC
);
1619 skb
->len
= 0; /* probably unnecessary */
1621 ppp_do_recv(pch
->ppp
, skb
, pch
);
1624 read_unlock_bh(&pch
->upl
);
1628 * We come in here to process a received frame.
1629 * The receive side of the ppp unit is locked.
1632 ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1634 /* note: a 0-length skb is used as an error indication */
1636 #ifdef CONFIG_PPP_MULTILINK
1637 /* XXX do channel-level decompression here */
1638 if (PPP_PROTO(skb
) == PPP_MP
)
1639 ppp_receive_mp_frame(ppp
, skb
, pch
);
1641 #endif /* CONFIG_PPP_MULTILINK */
1642 ppp_receive_nonmp_frame(ppp
, skb
);
1645 ppp_receive_error(ppp
);
1650 ppp_receive_error(struct ppp
*ppp
)
1652 ++ppp
->dev
->stats
.rx_errors
;
1658 ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1661 int proto
, len
, npi
;
1664 * Decompress the frame, if compressed.
1665 * Note that some decompressors need to see uncompressed frames
1666 * that come in as well as compressed frames.
1668 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
) &&
1669 (ppp
->rstate
& (SC_DC_FERROR
| SC_DC_ERROR
)) == 0)
1670 skb
= ppp_decompress_frame(ppp
, skb
);
1672 if (ppp
->flags
& SC_MUST_COMP
&& ppp
->rstate
& SC_DC_FERROR
)
1675 proto
= PPP_PROTO(skb
);
1678 /* decompress VJ compressed packets */
1679 if (!ppp
->vj
|| (ppp
->flags
& SC_REJ_COMP_TCP
))
1682 if (skb_tailroom(skb
) < 124 || skb_cloned(skb
)) {
1683 /* copy to a new sk_buff with more tailroom */
1684 ns
= dev_alloc_skb(skb
->len
+ 128);
1686 printk(KERN_ERR
"PPP: no memory (VJ decomp)\n");
1690 skb_copy_bits(skb
, 0, skb_put(ns
, skb
->len
), skb
->len
);
1695 skb
->ip_summed
= CHECKSUM_NONE
;
1697 len
= slhc_uncompress(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2);
1699 printk(KERN_DEBUG
"PPP: VJ decompression error\n");
1704 skb_put(skb
, len
- skb
->len
);
1705 else if (len
< skb
->len
)
1710 case PPP_VJC_UNCOMP
:
1711 if (!ppp
->vj
|| (ppp
->flags
& SC_REJ_COMP_TCP
))
1714 /* Until we fix the decompressor need to make sure
1715 * data portion is linear.
1717 if (!pskb_may_pull(skb
, skb
->len
))
1720 if (slhc_remember(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2) <= 0) {
1721 printk(KERN_ERR
"PPP: VJ uncompressed error\n");
1728 ppp_ccp_peek(ppp
, skb
, 1);
1732 ++ppp
->dev
->stats
.rx_packets
;
1733 ppp
->dev
->stats
.rx_bytes
+= skb
->len
- 2;
1735 npi
= proto_to_npindex(proto
);
1737 /* control or unknown frame - pass it to pppd */
1738 skb_queue_tail(&ppp
->file
.rq
, skb
);
1739 /* limit queue length by dropping old frames */
1740 while (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
&&
1741 (skb
= skb_dequeue(&ppp
->file
.rq
)))
1743 /* wake up any process polling or blocking on read */
1744 wake_up_interruptible(&ppp
->file
.rwait
);
1747 /* network protocol frame - give it to the kernel */
1749 #ifdef CONFIG_PPP_FILTER
1750 /* check if the packet passes the pass and active filters */
1751 /* the filter instructions are constructed assuming
1752 a four-byte PPP header on each packet */
1753 if (ppp
->pass_filter
|| ppp
->active_filter
) {
1754 if (skb_cloned(skb
) &&
1755 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
1758 *skb_push(skb
, 2) = 0;
1759 if (ppp
->pass_filter
&&
1760 sk_run_filter(skb
, ppp
->pass_filter
,
1761 ppp
->pass_len
) == 0) {
1763 printk(KERN_DEBUG
"PPP: inbound frame "
1768 if (!(ppp
->active_filter
&&
1769 sk_run_filter(skb
, ppp
->active_filter
,
1770 ppp
->active_len
) == 0))
1771 ppp
->last_recv
= jiffies
;
1774 #endif /* CONFIG_PPP_FILTER */
1775 ppp
->last_recv
= jiffies
;
1777 if ((ppp
->dev
->flags
& IFF_UP
) == 0 ||
1778 ppp
->npmode
[npi
] != NPMODE_PASS
) {
1781 /* chop off protocol */
1782 skb_pull_rcsum(skb
, 2);
1783 skb
->dev
= ppp
->dev
;
1784 skb
->protocol
= htons(npindex_to_ethertype
[npi
]);
1785 skb_reset_mac_header(skb
);
1793 ppp_receive_error(ppp
);
1796 static struct sk_buff
*
1797 ppp_decompress_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1799 int proto
= PPP_PROTO(skb
);
1803 /* Until we fix all the decompressor's need to make sure
1804 * data portion is linear.
1806 if (!pskb_may_pull(skb
, skb
->len
))
1809 if (proto
== PPP_COMP
) {
1812 switch(ppp
->rcomp
->compress_proto
) {
1814 obuff_size
= ppp
->mru
+ PPP_HDRLEN
+ 1;
1817 obuff_size
= ppp
->mru
+ PPP_HDRLEN
;
1821 ns
= dev_alloc_skb(obuff_size
);
1823 printk(KERN_ERR
"ppp_decompress_frame: no memory\n");
1826 /* the decompressor still expects the A/C bytes in the hdr */
1827 len
= ppp
->rcomp
->decompress(ppp
->rc_state
, skb
->data
- 2,
1828 skb
->len
+ 2, ns
->data
, obuff_size
);
1830 /* Pass the compressed frame to pppd as an
1831 error indication. */
1832 if (len
== DECOMP_FATALERROR
)
1833 ppp
->rstate
|= SC_DC_FERROR
;
1841 skb_pull(skb
, 2); /* pull off the A/C bytes */
1844 /* Uncompressed frame - pass to decompressor so it
1845 can update its dictionary if necessary. */
1846 if (ppp
->rcomp
->incomp
)
1847 ppp
->rcomp
->incomp(ppp
->rc_state
, skb
->data
- 2,
1854 ppp
->rstate
|= SC_DC_ERROR
;
1855 ppp_receive_error(ppp
);
1859 #ifdef CONFIG_PPP_MULTILINK
1861 * Receive a multilink frame.
1862 * We put it on the reconstruction queue and then pull off
1863 * as many completed frames as we can.
1866 ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1870 int mphdrlen
= (ppp
->flags
& SC_MP_SHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1872 if (!pskb_may_pull(skb
, mphdrlen
+ 1) || ppp
->mrru
== 0)
1873 goto err
; /* no good, throw it away */
1875 /* Decode sequence number and begin/end bits */
1876 if (ppp
->flags
& SC_MP_SHORTSEQ
) {
1877 seq
= ((skb
->data
[2] & 0x0f) << 8) | skb
->data
[3];
1880 seq
= (skb
->data
[3] << 16) | (skb
->data
[4] << 8)| skb
->data
[5];
1883 skb
->BEbits
= skb
->data
[2];
1884 skb_pull(skb
, mphdrlen
); /* pull off PPP and MP headers */
1887 * Do protocol ID decompression on the first fragment of each packet.
1889 if ((skb
->BEbits
& B
) && (skb
->data
[0] & 1))
1890 *skb_push(skb
, 1) = 0;
1893 * Expand sequence number to 32 bits, making it as close
1894 * as possible to ppp->minseq.
1896 seq
|= ppp
->minseq
& ~mask
;
1897 if ((int)(ppp
->minseq
- seq
) > (int)(mask
>> 1))
1899 else if ((int)(seq
- ppp
->minseq
) > (int)(mask
>> 1))
1900 seq
-= mask
+ 1; /* should never happen */
1901 skb
->sequence
= seq
;
1905 * If this packet comes before the next one we were expecting,
1908 if (seq_before(seq
, ppp
->nextseq
)) {
1910 ++ppp
->dev
->stats
.rx_dropped
;
1911 ppp_receive_error(ppp
);
1916 * Reevaluate minseq, the minimum over all channels of the
1917 * last sequence number received on each channel. Because of
1918 * the increasing sequence number rule, we know that any fragment
1919 * before `minseq' which hasn't arrived is never going to arrive.
1920 * The list of channels can't change because we have the receive
1921 * side of the ppp unit locked.
1923 list_for_each_entry(ch
, &ppp
->channels
, clist
) {
1924 if (seq_before(ch
->lastseq
, seq
))
1927 if (seq_before(ppp
->minseq
, seq
))
1930 /* Put the fragment on the reconstruction queue */
1931 ppp_mp_insert(ppp
, skb
);
1933 /* If the queue is getting long, don't wait any longer for packets
1934 before the start of the queue. */
1935 if (skb_queue_len(&ppp
->mrq
) >= PPP_MP_MAX_QLEN
) {
1936 struct sk_buff
*skb
= skb_peek(&ppp
->mrq
);
1937 if (seq_before(ppp
->minseq
, skb
->sequence
))
1938 ppp
->minseq
= skb
->sequence
;
1941 /* Pull completed packets off the queue and receive them. */
1942 while ((skb
= ppp_mp_reconstruct(ppp
))) {
1943 if (pskb_may_pull(skb
, 2))
1944 ppp_receive_nonmp_frame(ppp
, skb
);
1946 ++ppp
->dev
->stats
.rx_length_errors
;
1948 ppp_receive_error(ppp
);
1956 ppp_receive_error(ppp
);
1960 * Insert a fragment on the MP reconstruction queue.
1961 * The queue is ordered by increasing sequence number.
1964 ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
)
1967 struct sk_buff_head
*list
= &ppp
->mrq
;
1968 u32 seq
= skb
->sequence
;
1970 /* N.B. we don't need to lock the list lock because we have the
1971 ppp unit receive-side lock. */
1972 skb_queue_walk(list
, p
) {
1973 if (seq_before(seq
, p
->sequence
))
1976 __skb_queue_before(list
, p
, skb
);
1980 * Reconstruct a packet from the MP fragment queue.
1981 * We go through increasing sequence numbers until we find a
1982 * complete packet, or we get to the sequence number for a fragment
1983 * which hasn't arrived but might still do so.
1985 static struct sk_buff
*
1986 ppp_mp_reconstruct(struct ppp
*ppp
)
1988 u32 seq
= ppp
->nextseq
;
1989 u32 minseq
= ppp
->minseq
;
1990 struct sk_buff_head
*list
= &ppp
->mrq
;
1991 struct sk_buff
*p
, *next
;
1992 struct sk_buff
*head
, *tail
;
1993 struct sk_buff
*skb
= NULL
;
1994 int lost
= 0, len
= 0;
1996 if (ppp
->mrru
== 0) /* do nothing until mrru is set */
2000 for (p
= head
; p
!= (struct sk_buff
*) list
; p
= next
) {
2002 if (seq_before(p
->sequence
, seq
)) {
2003 /* this can't happen, anyway ignore the skb */
2004 printk(KERN_ERR
"ppp_mp_reconstruct bad seq %u < %u\n",
2009 if (p
->sequence
!= seq
) {
2010 /* Fragment `seq' is missing. If it is after
2011 minseq, it might arrive later, so stop here. */
2012 if (seq_after(seq
, minseq
))
2014 /* Fragment `seq' is lost, keep going. */
2016 seq
= seq_before(minseq
, p
->sequence
)?
2017 minseq
+ 1: p
->sequence
;
2023 * At this point we know that all the fragments from
2024 * ppp->nextseq to seq are either present or lost.
2025 * Also, there are no complete packets in the queue
2026 * that have no missing fragments and end before this
2030 /* B bit set indicates this fragment starts a packet */
2031 if (p
->BEbits
& B
) {
2039 /* Got a complete packet yet? */
2040 if (lost
== 0 && (p
->BEbits
& E
) && (head
->BEbits
& B
)) {
2041 if (len
> ppp
->mrru
+ 2) {
2042 ++ppp
->dev
->stats
.rx_length_errors
;
2043 printk(KERN_DEBUG
"PPP: reconstructed packet"
2044 " is too long (%d)\n", len
);
2045 } else if (p
== head
) {
2046 /* fragment is complete packet - reuse skb */
2050 } else if ((skb
= dev_alloc_skb(len
)) == NULL
) {
2051 ++ppp
->dev
->stats
.rx_missed_errors
;
2052 printk(KERN_DEBUG
"PPP: no memory for "
2053 "reconstructed packet");
2058 ppp
->nextseq
= seq
+ 1;
2062 * If this is the ending fragment of a packet,
2063 * and we haven't found a complete valid packet yet,
2064 * we can discard up to and including this fragment.
2072 /* If we have a complete packet, copy it all into one skb. */
2074 /* If we have discarded any fragments,
2075 signal a receive error. */
2076 if (head
->sequence
!= ppp
->nextseq
) {
2078 printk(KERN_DEBUG
" missed pkts %u..%u\n",
2079 ppp
->nextseq
, head
->sequence
-1);
2080 ++ppp
->dev
->stats
.rx_dropped
;
2081 ppp_receive_error(ppp
);
2085 /* copy to a single skb */
2086 for (p
= head
; p
!= tail
->next
; p
= p
->next
)
2087 skb_copy_bits(p
, 0, skb_put(skb
, p
->len
), p
->len
);
2088 ppp
->nextseq
= tail
->sequence
+ 1;
2092 /* Discard all the skbuffs that we have copied the data out of
2093 or that we can't use. */
2094 while ((p
= list
->next
) != head
) {
2095 __skb_unlink(p
, list
);
2101 #endif /* CONFIG_PPP_MULTILINK */
2104 * Channel interface.
2107 /* Create a new, unattached ppp channel. */
2108 int ppp_register_channel(struct ppp_channel
*chan
)
2110 return ppp_register_net_channel(current
->nsproxy
->net_ns
, chan
);
2113 /* Create a new, unattached ppp channel for specified net. */
2114 int ppp_register_net_channel(struct net
*net
, struct ppp_channel
*chan
)
2116 struct channel
*pch
;
2119 pch
= kzalloc(sizeof(struct channel
), GFP_KERNEL
);
2123 pn
= ppp_pernet(net
);
2127 pch
->chan_net
= net
;
2129 init_ppp_file(&pch
->file
, CHANNEL
);
2130 pch
->file
.hdrlen
= chan
->hdrlen
;
2131 #ifdef CONFIG_PPP_MULTILINK
2133 #endif /* CONFIG_PPP_MULTILINK */
2134 init_rwsem(&pch
->chan_sem
);
2135 spin_lock_init(&pch
->downl
);
2136 rwlock_init(&pch
->upl
);
2138 spin_lock_bh(&pn
->all_channels_lock
);
2139 pch
->file
.index
= ++pn
->last_channel_index
;
2140 list_add(&pch
->list
, &pn
->new_channels
);
2141 atomic_inc(&channel_count
);
2142 spin_unlock_bh(&pn
->all_channels_lock
);
2148 * Return the index of a channel.
2150 int ppp_channel_index(struct ppp_channel
*chan
)
2152 struct channel
*pch
= chan
->ppp
;
2155 return pch
->file
.index
;
2160 * Return the PPP unit number to which a channel is connected.
2162 int ppp_unit_number(struct ppp_channel
*chan
)
2164 struct channel
*pch
= chan
->ppp
;
2168 read_lock_bh(&pch
->upl
);
2170 unit
= pch
->ppp
->file
.index
;
2171 read_unlock_bh(&pch
->upl
);
2177 * Return the PPP device interface name of a channel.
2179 char *ppp_dev_name(struct ppp_channel
*chan
)
2181 struct channel
*pch
= chan
->ppp
;
2185 read_lock_bh(&pch
->upl
);
2186 if (pch
->ppp
&& pch
->ppp
->dev
)
2187 name
= pch
->ppp
->dev
->name
;
2188 read_unlock_bh(&pch
->upl
);
2195 * Disconnect a channel from the generic layer.
2196 * This must be called in process context.
2199 ppp_unregister_channel(struct ppp_channel
*chan
)
2201 struct channel
*pch
= chan
->ppp
;
2205 return; /* should never happen */
2210 * This ensures that we have returned from any calls into the
2211 * the channel's start_xmit or ioctl routine before we proceed.
2213 down_write(&pch
->chan_sem
);
2214 spin_lock_bh(&pch
->downl
);
2216 spin_unlock_bh(&pch
->downl
);
2217 up_write(&pch
->chan_sem
);
2218 ppp_disconnect_channel(pch
);
2220 pn
= ppp_pernet(pch
->chan_net
);
2221 spin_lock_bh(&pn
->all_channels_lock
);
2222 list_del(&pch
->list
);
2223 spin_unlock_bh(&pn
->all_channels_lock
);
2226 wake_up_interruptible(&pch
->file
.rwait
);
2227 if (atomic_dec_and_test(&pch
->file
.refcnt
))
2228 ppp_destroy_channel(pch
);
2232 * Callback from a channel when it can accept more to transmit.
2233 * This should be called at BH/softirq level, not interrupt level.
2236 ppp_output_wakeup(struct ppp_channel
*chan
)
2238 struct channel
*pch
= chan
->ppp
;
2242 ppp_channel_push(pch
);
2246 * Compression control.
2249 /* Process the PPPIOCSCOMPRESS ioctl. */
2251 ppp_set_compress(struct ppp
*ppp
, unsigned long arg
)
2254 struct compressor
*cp
, *ocomp
;
2255 struct ppp_option_data data
;
2256 void *state
, *ostate
;
2257 unsigned char ccp_option
[CCP_MAX_OPTION_LENGTH
];
2260 if (copy_from_user(&data
, (void __user
*) arg
, sizeof(data
)) ||
2261 (data
.length
<= CCP_MAX_OPTION_LENGTH
&&
2262 copy_from_user(ccp_option
, (void __user
*) data
.ptr
, data
.length
)))
2265 if (data
.length
> CCP_MAX_OPTION_LENGTH
||
2266 ccp_option
[1] < 2 || ccp_option
[1] > data
.length
)
2269 cp
= try_then_request_module(
2270 find_compressor(ccp_option
[0]),
2271 "ppp-compress-%d", ccp_option
[0]);
2276 if (data
.transmit
) {
2277 state
= cp
->comp_alloc(ccp_option
, data
.length
);
2280 ppp
->xstate
&= ~SC_COMP_RUN
;
2282 ostate
= ppp
->xc_state
;
2284 ppp
->xc_state
= state
;
2285 ppp_xmit_unlock(ppp
);
2287 ocomp
->comp_free(ostate
);
2288 module_put(ocomp
->owner
);
2292 module_put(cp
->owner
);
2295 state
= cp
->decomp_alloc(ccp_option
, data
.length
);
2298 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2300 ostate
= ppp
->rc_state
;
2302 ppp
->rc_state
= state
;
2303 ppp_recv_unlock(ppp
);
2305 ocomp
->decomp_free(ostate
);
2306 module_put(ocomp
->owner
);
2310 module_put(cp
->owner
);
2318 * Look at a CCP packet and update our state accordingly.
2319 * We assume the caller has the xmit or recv path locked.
2322 ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
)
2327 if (!pskb_may_pull(skb
, CCP_HDRLEN
+ 2))
2328 return; /* no header */
2331 switch (CCP_CODE(dp
)) {
2334 /* A ConfReq starts negotiation of compression
2335 * in one direction of transmission,
2336 * and hence brings it down...but which way?
2339 * A ConfReq indicates what the sender would like to receive
2342 /* He is proposing what I should send */
2343 ppp
->xstate
&= ~SC_COMP_RUN
;
2345 /* I am proposing to what he should send */
2346 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2353 * CCP is going down, both directions of transmission
2355 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2356 ppp
->xstate
&= ~SC_COMP_RUN
;
2360 if ((ppp
->flags
& (SC_CCP_OPEN
| SC_CCP_UP
)) != SC_CCP_OPEN
)
2362 len
= CCP_LENGTH(dp
);
2363 if (!pskb_may_pull(skb
, len
+ 2))
2364 return; /* too short */
2367 if (len
< CCP_OPT_MINLEN
|| len
< CCP_OPT_LENGTH(dp
))
2370 /* we will start receiving compressed packets */
2373 if (ppp
->rcomp
->decomp_init(ppp
->rc_state
, dp
, len
,
2374 ppp
->file
.index
, 0, ppp
->mru
, ppp
->debug
)) {
2375 ppp
->rstate
|= SC_DECOMP_RUN
;
2376 ppp
->rstate
&= ~(SC_DC_ERROR
| SC_DC_FERROR
);
2379 /* we will soon start sending compressed packets */
2382 if (ppp
->xcomp
->comp_init(ppp
->xc_state
, dp
, len
,
2383 ppp
->file
.index
, 0, ppp
->debug
))
2384 ppp
->xstate
|= SC_COMP_RUN
;
2389 /* reset the [de]compressor */
2390 if ((ppp
->flags
& SC_CCP_UP
) == 0)
2393 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
)) {
2394 ppp
->rcomp
->decomp_reset(ppp
->rc_state
);
2395 ppp
->rstate
&= ~SC_DC_ERROR
;
2398 if (ppp
->xc_state
&& (ppp
->xstate
& SC_COMP_RUN
))
2399 ppp
->xcomp
->comp_reset(ppp
->xc_state
);
2405 /* Free up compression resources. */
2407 ppp_ccp_closed(struct ppp
*ppp
)
2409 void *xstate
, *rstate
;
2410 struct compressor
*xcomp
, *rcomp
;
2413 ppp
->flags
&= ~(SC_CCP_OPEN
| SC_CCP_UP
);
2416 xstate
= ppp
->xc_state
;
2417 ppp
->xc_state
= NULL
;
2420 rstate
= ppp
->rc_state
;
2421 ppp
->rc_state
= NULL
;
2425 xcomp
->comp_free(xstate
);
2426 module_put(xcomp
->owner
);
2429 rcomp
->decomp_free(rstate
);
2430 module_put(rcomp
->owner
);
2434 /* List of compressors. */
2435 static LIST_HEAD(compressor_list
);
2436 static DEFINE_SPINLOCK(compressor_list_lock
);
2438 struct compressor_entry
{
2439 struct list_head list
;
2440 struct compressor
*comp
;
2443 static struct compressor_entry
*
2444 find_comp_entry(int proto
)
2446 struct compressor_entry
*ce
;
2448 list_for_each_entry(ce
, &compressor_list
, list
) {
2449 if (ce
->comp
->compress_proto
== proto
)
2455 /* Register a compressor */
2457 ppp_register_compressor(struct compressor
*cp
)
2459 struct compressor_entry
*ce
;
2461 spin_lock(&compressor_list_lock
);
2463 if (find_comp_entry(cp
->compress_proto
))
2466 ce
= kmalloc(sizeof(struct compressor_entry
), GFP_ATOMIC
);
2471 list_add(&ce
->list
, &compressor_list
);
2473 spin_unlock(&compressor_list_lock
);
2477 /* Unregister a compressor */
2479 ppp_unregister_compressor(struct compressor
*cp
)
2481 struct compressor_entry
*ce
;
2483 spin_lock(&compressor_list_lock
);
2484 ce
= find_comp_entry(cp
->compress_proto
);
2485 if (ce
&& ce
->comp
== cp
) {
2486 list_del(&ce
->list
);
2489 spin_unlock(&compressor_list_lock
);
2492 /* Find a compressor. */
2493 static struct compressor
*
2494 find_compressor(int type
)
2496 struct compressor_entry
*ce
;
2497 struct compressor
*cp
= NULL
;
2499 spin_lock(&compressor_list_lock
);
2500 ce
= find_comp_entry(type
);
2503 if (!try_module_get(cp
->owner
))
2506 spin_unlock(&compressor_list_lock
);
2511 * Miscelleneous stuff.
2515 ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
)
2517 struct slcompress
*vj
= ppp
->vj
;
2519 memset(st
, 0, sizeof(*st
));
2520 st
->p
.ppp_ipackets
= ppp
->dev
->stats
.rx_packets
;
2521 st
->p
.ppp_ierrors
= ppp
->dev
->stats
.rx_errors
;
2522 st
->p
.ppp_ibytes
= ppp
->dev
->stats
.rx_bytes
;
2523 st
->p
.ppp_opackets
= ppp
->dev
->stats
.tx_packets
;
2524 st
->p
.ppp_oerrors
= ppp
->dev
->stats
.tx_errors
;
2525 st
->p
.ppp_obytes
= ppp
->dev
->stats
.tx_bytes
;
2528 st
->vj
.vjs_packets
= vj
->sls_o_compressed
+ vj
->sls_o_uncompressed
;
2529 st
->vj
.vjs_compressed
= vj
->sls_o_compressed
;
2530 st
->vj
.vjs_searches
= vj
->sls_o_searches
;
2531 st
->vj
.vjs_misses
= vj
->sls_o_misses
;
2532 st
->vj
.vjs_errorin
= vj
->sls_i_error
;
2533 st
->vj
.vjs_tossed
= vj
->sls_i_tossed
;
2534 st
->vj
.vjs_uncompressedin
= vj
->sls_i_uncompressed
;
2535 st
->vj
.vjs_compressedin
= vj
->sls_i_compressed
;
2539 * Stuff for handling the lists of ppp units and channels
2540 * and for initialization.
2544 * Create a new ppp interface unit. Fails if it can't allocate memory
2545 * or if there is already a unit with the requested number.
2546 * unit == -1 means allocate a new number.
2549 ppp_create_interface(struct net
*net
, int unit
, int *retp
)
2553 struct net_device
*dev
= NULL
;
2557 dev
= alloc_netdev(sizeof(struct ppp
), "", ppp_setup
);
2561 pn
= ppp_pernet(net
);
2563 ppp
= netdev_priv(dev
);
2566 init_ppp_file(&ppp
->file
, INTERFACE
);
2567 ppp
->file
.hdrlen
= PPP_HDRLEN
- 2; /* don't count proto bytes */
2568 for (i
= 0; i
< NUM_NP
; ++i
)
2569 ppp
->npmode
[i
] = NPMODE_PASS
;
2570 INIT_LIST_HEAD(&ppp
->channels
);
2571 spin_lock_init(&ppp
->rlock
);
2572 spin_lock_init(&ppp
->wlock
);
2573 #ifdef CONFIG_PPP_MULTILINK
2575 skb_queue_head_init(&ppp
->mrq
);
2576 #endif /* CONFIG_PPP_MULTILINK */
2579 * drum roll: don't forget to set
2580 * the net device is belong to
2582 dev_net_set(dev
, net
);
2585 mutex_lock(&pn
->all_ppp_mutex
);
2588 unit
= unit_get(&pn
->units_idr
, ppp
);
2594 if (unit_find(&pn
->units_idr
, unit
))
2595 goto out2
; /* unit already exists */
2597 * if caller need a specified unit number
2598 * lets try to satisfy him, otherwise --
2599 * he should better ask us for new unit number
2601 * NOTE: yes I know that returning EEXIST it's not
2602 * fair but at least pppd will ask us to allocate
2603 * new unit in this case so user is happy :)
2605 unit
= unit_set(&pn
->units_idr
, ppp
, unit
);
2610 /* Initialize the new ppp unit */
2611 ppp
->file
.index
= unit
;
2612 sprintf(dev
->name
, "ppp%d", unit
);
2614 ret
= register_netdev(dev
);
2616 unit_put(&pn
->units_idr
, unit
);
2617 printk(KERN_ERR
"PPP: couldn't register device %s (%d)\n",
2624 atomic_inc(&ppp_unit_count
);
2625 mutex_unlock(&pn
->all_ppp_mutex
);
2631 mutex_unlock(&pn
->all_ppp_mutex
);
2639 * Initialize a ppp_file structure.
2642 init_ppp_file(struct ppp_file
*pf
, int kind
)
2645 skb_queue_head_init(&pf
->xq
);
2646 skb_queue_head_init(&pf
->rq
);
2647 atomic_set(&pf
->refcnt
, 1);
2648 init_waitqueue_head(&pf
->rwait
);
2652 * Take down a ppp interface unit - called when the owning file
2653 * (the one that created the unit) is closed or detached.
2655 static void ppp_shutdown_interface(struct ppp
*ppp
)
2659 pn
= ppp_pernet(ppp
->ppp_net
);
2660 mutex_lock(&pn
->all_ppp_mutex
);
2662 /* This will call dev_close() for us. */
2664 if (!ppp
->closing
) {
2667 unregister_netdev(ppp
->dev
);
2671 unit_put(&pn
->units_idr
, ppp
->file
.index
);
2674 wake_up_interruptible(&ppp
->file
.rwait
);
2676 mutex_unlock(&pn
->all_ppp_mutex
);
2680 * Free the memory used by a ppp unit. This is only called once
2681 * there are no channels connected to the unit and no file structs
2682 * that reference the unit.
2684 static void ppp_destroy_interface(struct ppp
*ppp
)
2686 atomic_dec(&ppp_unit_count
);
2688 if (!ppp
->file
.dead
|| ppp
->n_channels
) {
2689 /* "can't happen" */
2690 printk(KERN_ERR
"ppp: destroying ppp struct %p but dead=%d "
2691 "n_channels=%d !\n", ppp
, ppp
->file
.dead
,
2696 ppp_ccp_closed(ppp
);
2701 skb_queue_purge(&ppp
->file
.xq
);
2702 skb_queue_purge(&ppp
->file
.rq
);
2703 #ifdef CONFIG_PPP_MULTILINK
2704 skb_queue_purge(&ppp
->mrq
);
2705 #endif /* CONFIG_PPP_MULTILINK */
2706 #ifdef CONFIG_PPP_FILTER
2707 kfree(ppp
->pass_filter
);
2708 ppp
->pass_filter
= NULL
;
2709 kfree(ppp
->active_filter
);
2710 ppp
->active_filter
= NULL
;
2711 #endif /* CONFIG_PPP_FILTER */
2713 kfree_skb(ppp
->xmit_pending
);
2715 free_netdev(ppp
->dev
);
2719 * Locate an existing ppp unit.
2720 * The caller should have locked the all_ppp_mutex.
2723 ppp_find_unit(struct ppp_net
*pn
, int unit
)
2725 return unit_find(&pn
->units_idr
, unit
);
2729 * Locate an existing ppp channel.
2730 * The caller should have locked the all_channels_lock.
2731 * First we look in the new_channels list, then in the
2732 * all_channels list. If found in the new_channels list,
2733 * we move it to the all_channels list. This is for speed
2734 * when we have a lot of channels in use.
2736 static struct channel
*
2737 ppp_find_channel(struct ppp_net
*pn
, int unit
)
2739 struct channel
*pch
;
2741 list_for_each_entry(pch
, &pn
->new_channels
, list
) {
2742 if (pch
->file
.index
== unit
) {
2743 list_move(&pch
->list
, &pn
->all_channels
);
2748 list_for_each_entry(pch
, &pn
->all_channels
, list
) {
2749 if (pch
->file
.index
== unit
)
2757 * Connect a PPP channel to a PPP interface unit.
2760 ppp_connect_channel(struct channel
*pch
, int unit
)
2767 pn
= ppp_pernet(pch
->chan_net
);
2769 mutex_lock(&pn
->all_ppp_mutex
);
2770 ppp
= ppp_find_unit(pn
, unit
);
2773 write_lock_bh(&pch
->upl
);
2779 if (pch
->file
.hdrlen
> ppp
->file
.hdrlen
)
2780 ppp
->file
.hdrlen
= pch
->file
.hdrlen
;
2781 hdrlen
= pch
->file
.hdrlen
+ 2; /* for protocol bytes */
2782 if (hdrlen
> ppp
->dev
->hard_header_len
)
2783 ppp
->dev
->hard_header_len
= hdrlen
;
2784 list_add_tail(&pch
->clist
, &ppp
->channels
);
2787 atomic_inc(&ppp
->file
.refcnt
);
2792 write_unlock_bh(&pch
->upl
);
2794 mutex_unlock(&pn
->all_ppp_mutex
);
2799 * Disconnect a channel from its ppp unit.
2802 ppp_disconnect_channel(struct channel
*pch
)
2807 write_lock_bh(&pch
->upl
);
2810 write_unlock_bh(&pch
->upl
);
2812 /* remove it from the ppp unit's list */
2814 list_del(&pch
->clist
);
2815 if (--ppp
->n_channels
== 0)
2816 wake_up_interruptible(&ppp
->file
.rwait
);
2818 if (atomic_dec_and_test(&ppp
->file
.refcnt
))
2819 ppp_destroy_interface(ppp
);
2826 * Free up the resources used by a ppp channel.
2828 static void ppp_destroy_channel(struct channel
*pch
)
2830 atomic_dec(&channel_count
);
2832 if (!pch
->file
.dead
) {
2833 /* "can't happen" */
2834 printk(KERN_ERR
"ppp: destroying undead channel %p !\n",
2838 skb_queue_purge(&pch
->file
.xq
);
2839 skb_queue_purge(&pch
->file
.rq
);
2843 static void __exit
ppp_cleanup(void)
2845 /* should never happen */
2846 if (atomic_read(&ppp_unit_count
) || atomic_read(&channel_count
))
2847 printk(KERN_ERR
"PPP: removing module but units remain!\n");
2848 unregister_chrdev(PPP_MAJOR
, "ppp");
2849 device_destroy(ppp_class
, MKDEV(PPP_MAJOR
, 0));
2850 class_destroy(ppp_class
);
2851 unregister_pernet_device(&ppp_net_ops
);
2855 * Units handling. Caller must protect concurrent access
2856 * by holding all_ppp_mutex
2859 /* associate pointer with specified number */
2860 static int unit_set(struct idr
*p
, void *ptr
, int n
)
2865 if (!idr_pre_get(p
, GFP_KERNEL
)) {
2866 printk(KERN_ERR
"PPP: No free memory for idr\n");
2870 err
= idr_get_new_above(p
, ptr
, n
, &unit
);
2875 idr_remove(p
, unit
);
2882 /* get new free unit number and associate pointer with it */
2883 static int unit_get(struct idr
*p
, void *ptr
)
2888 if (!idr_pre_get(p
, GFP_KERNEL
)) {
2889 printk(KERN_ERR
"PPP: No free memory for idr\n");
2893 err
= idr_get_new_above(p
, ptr
, 0, &unit
);
2900 /* put unit number back to a pool */
2901 static void unit_put(struct idr
*p
, int n
)
2906 /* get pointer associated with the number */
2907 static void *unit_find(struct idr
*p
, int n
)
2909 return idr_find(p
, n
);
2912 /* Module/initialization stuff */
2914 module_init(ppp_init
);
2915 module_exit(ppp_cleanup
);
2917 EXPORT_SYMBOL(ppp_register_net_channel
);
2918 EXPORT_SYMBOL(ppp_register_channel
);
2919 EXPORT_SYMBOL(ppp_unregister_channel
);
2920 EXPORT_SYMBOL(ppp_channel_index
);
2921 EXPORT_SYMBOL(ppp_unit_number
);
2922 EXPORT_SYMBOL(ppp_dev_name
);
2923 EXPORT_SYMBOL(ppp_input
);
2924 EXPORT_SYMBOL(ppp_input_error
);
2925 EXPORT_SYMBOL(ppp_output_wakeup
);
2926 EXPORT_SYMBOL(ppp_register_compressor
);
2927 EXPORT_SYMBOL(ppp_unregister_compressor
);
2928 MODULE_LICENSE("GPL");
2929 MODULE_ALIAS_CHARDEV(PPP_MAJOR
, 0);
2930 MODULE_ALIAS("devname:ppp");