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/spinlock.h>
44 #include <linux/rwsem.h>
45 #include <linux/stddef.h>
46 #include <linux/device.h>
47 #include <linux/mutex.h>
48 #include <linux/slab.h>
49 #include <net/slhc_vj.h>
50 #include <asm/atomic.h>
52 #include <linux/nsproxy.h>
53 #include <net/net_namespace.h>
54 #include <net/netns/generic.h>
56 #define PPP_VERSION "2.4.2"
59 * Network protocols we support.
61 #define NP_IP 0 /* Internet Protocol V4 */
62 #define NP_IPV6 1 /* Internet Protocol V6 */
63 #define NP_IPX 2 /* IPX protocol */
64 #define NP_AT 3 /* Appletalk protocol */
65 #define NP_MPLS_UC 4 /* MPLS unicast */
66 #define NP_MPLS_MC 5 /* MPLS multicast */
67 #define NUM_NP 6 /* Number of NPs. */
69 #define MPHDRLEN 6 /* multilink protocol header length */
70 #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
73 * An instance of /dev/ppp can be associated with either a ppp
74 * interface unit or a ppp channel. In both cases, file->private_data
75 * points to one of these.
81 struct sk_buff_head xq
; /* pppd transmit queue */
82 struct sk_buff_head rq
; /* receive queue for pppd */
83 wait_queue_head_t rwait
; /* for poll on reading /dev/ppp */
84 atomic_t refcnt
; /* # refs (incl /dev/ppp attached) */
85 int hdrlen
; /* space to leave for headers */
86 int index
; /* interface unit / channel number */
87 int dead
; /* unit/channel has been shut down */
90 #define PF_TO_X(pf, X) container_of(pf, X, file)
92 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
93 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
96 * Data structure describing one ppp unit.
97 * A ppp unit corresponds to a ppp network interface device
98 * and represents a multilink bundle.
99 * It can have 0 or more ppp channels connected to it.
102 struct ppp_file file
; /* stuff for read/write/poll 0 */
103 struct file
*owner
; /* file that owns this unit 48 */
104 struct list_head channels
; /* list of attached channels 4c */
105 int n_channels
; /* how many channels are attached 54 */
106 spinlock_t rlock
; /* lock for receive side 58 */
107 spinlock_t wlock
; /* lock for transmit side 5c */
108 int mru
; /* max receive unit 60 */
109 unsigned int flags
; /* control bits 64 */
110 unsigned int xstate
; /* transmit state bits 68 */
111 unsigned int rstate
; /* receive state bits 6c */
112 int debug
; /* debug flags 70 */
113 struct slcompress
*vj
; /* state for VJ header compression */
114 enum NPmode npmode
[NUM_NP
]; /* what to do with each net proto 78 */
115 struct sk_buff
*xmit_pending
; /* a packet ready to go out 88 */
116 struct compressor
*xcomp
; /* transmit packet compressor 8c */
117 void *xc_state
; /* its internal state 90 */
118 struct compressor
*rcomp
; /* receive decompressor 94 */
119 void *rc_state
; /* its internal state 98 */
120 unsigned long last_xmit
; /* jiffies when last pkt sent 9c */
121 unsigned long last_recv
; /* jiffies when last pkt rcvd a0 */
122 struct net_device
*dev
; /* network interface device a4 */
123 int closing
; /* is device closing down? a8 */
124 #ifdef CONFIG_PPP_MULTILINK
125 int nxchan
; /* next channel to send something on */
126 u32 nxseq
; /* next sequence number to send */
127 int mrru
; /* MP: max reconst. receive unit */
128 u32 nextseq
; /* MP: seq no of next packet */
129 u32 minseq
; /* MP: min of most recent seqnos */
130 struct sk_buff_head mrq
; /* MP: receive reconstruction queue */
131 #endif /* CONFIG_PPP_MULTILINK */
132 #ifdef CONFIG_PPP_FILTER
133 struct sock_filter
*pass_filter
; /* filter for packets to pass */
134 struct sock_filter
*active_filter
;/* filter for pkts to reset idle */
135 unsigned pass_len
, active_len
;
136 #endif /* CONFIG_PPP_FILTER */
137 struct net
*ppp_net
; /* the net we belong to */
141 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
142 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
144 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
145 * Bits in xstate: SC_COMP_RUN
147 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
148 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
149 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
152 * Private data structure for each channel.
153 * This includes the data structure used for multilink.
156 struct ppp_file file
; /* stuff for read/write/poll */
157 struct list_head list
; /* link in all/new_channels list */
158 struct ppp_channel
*chan
; /* public channel data structure */
159 struct rw_semaphore chan_sem
; /* protects `chan' during chan ioctl */
160 spinlock_t downl
; /* protects `chan', file.xq dequeue */
161 struct ppp
*ppp
; /* ppp unit we're connected to */
162 struct net
*chan_net
; /* the net channel belongs to */
163 struct list_head clist
; /* link in list of channels per unit */
164 rwlock_t upl
; /* protects `ppp' */
165 #ifdef CONFIG_PPP_MULTILINK
166 u8 avail
; /* flag used in multilink stuff */
167 u8 had_frag
; /* >= 1 fragments have been sent */
168 u32 lastseq
; /* MP: last sequence # received */
169 int speed
; /* speed of the corresponding ppp channel*/
170 #endif /* CONFIG_PPP_MULTILINK */
174 * SMP locking issues:
175 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
176 * list and the ppp.n_channels field, you need to take both locks
177 * before you modify them.
178 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
182 static DEFINE_MUTEX(ppp_mutex
);
183 static atomic_t ppp_unit_count
= ATOMIC_INIT(0);
184 static atomic_t channel_count
= ATOMIC_INIT(0);
186 /* per-net private data for this module */
187 static int ppp_net_id __read_mostly
;
189 /* units to ppp mapping */
190 struct idr units_idr
;
193 * all_ppp_mutex protects the units_idr mapping.
194 * It also ensures that finding a ppp unit in the units_idr
195 * map and updating its file.refcnt field is atomic.
197 struct mutex all_ppp_mutex
;
200 struct list_head all_channels
;
201 struct list_head new_channels
;
202 int last_channel_index
;
205 * all_channels_lock protects all_channels and
206 * last_channel_index, and the atomicity of find
207 * a channel and updating its file.refcnt field.
209 spinlock_t all_channels_lock
;
212 /* Get the PPP protocol number from a skb */
213 #define PPP_PROTO(skb) (((skb)->data[0] << 8) + (skb)->data[1])
215 /* We limit the length of ppp->file.rq to this (arbitrary) value */
216 #define PPP_MAX_RQLEN 32
219 * Maximum number of multilink fragments queued up.
220 * This has to be large enough to cope with the maximum latency of
221 * the slowest channel relative to the others. Strictly it should
222 * depend on the number of channels and their characteristics.
224 #define PPP_MP_MAX_QLEN 128
226 /* Multilink header bits. */
227 #define B 0x80 /* this fragment begins a packet */
228 #define E 0x40 /* this fragment ends a packet */
230 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
231 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
232 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
235 static int ppp_unattached_ioctl(struct net
*net
, struct ppp_file
*pf
,
236 struct file
*file
, unsigned int cmd
, unsigned long arg
);
237 static void ppp_xmit_process(struct ppp
*ppp
);
238 static void ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
239 static void ppp_push(struct ppp
*ppp
);
240 static void ppp_channel_push(struct channel
*pch
);
241 static void ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
242 struct channel
*pch
);
243 static void ppp_receive_error(struct ppp
*ppp
);
244 static void ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
245 static struct sk_buff
*ppp_decompress_frame(struct ppp
*ppp
,
246 struct sk_buff
*skb
);
247 #ifdef CONFIG_PPP_MULTILINK
248 static void ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
249 struct channel
*pch
);
250 static void ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
);
251 static struct sk_buff
*ppp_mp_reconstruct(struct ppp
*ppp
);
252 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
);
253 #endif /* CONFIG_PPP_MULTILINK */
254 static int ppp_set_compress(struct ppp
*ppp
, unsigned long arg
);
255 static void ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
);
256 static void ppp_ccp_closed(struct ppp
*ppp
);
257 static struct compressor
*find_compressor(int type
);
258 static void ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
);
259 static struct ppp
*ppp_create_interface(struct net
*net
, int unit
, int *retp
);
260 static void init_ppp_file(struct ppp_file
*pf
, int kind
);
261 static void ppp_shutdown_interface(struct ppp
*ppp
);
262 static void ppp_destroy_interface(struct ppp
*ppp
);
263 static struct ppp
*ppp_find_unit(struct ppp_net
*pn
, int unit
);
264 static struct channel
*ppp_find_channel(struct ppp_net
*pn
, int unit
);
265 static int ppp_connect_channel(struct channel
*pch
, int unit
);
266 static int ppp_disconnect_channel(struct channel
*pch
);
267 static void ppp_destroy_channel(struct channel
*pch
);
268 static int unit_get(struct idr
*p
, void *ptr
);
269 static int unit_set(struct idr
*p
, void *ptr
, int n
);
270 static void unit_put(struct idr
*p
, int n
);
271 static void *unit_find(struct idr
*p
, int n
);
273 static struct class *ppp_class
;
275 /* per net-namespace data */
276 static inline struct ppp_net
*ppp_pernet(struct net
*net
)
280 return net_generic(net
, ppp_net_id
);
283 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
284 static inline int proto_to_npindex(int proto
)
303 /* Translates an NP index into a PPP protocol number */
304 static const int npindex_to_proto
[NUM_NP
] = {
313 /* Translates an ethertype into an NP index */
314 static inline int ethertype_to_npindex(int ethertype
)
334 /* Translates an NP index into an ethertype */
335 static const int npindex_to_ethertype
[NUM_NP
] = {
347 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
348 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
349 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
350 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
351 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
352 ppp_recv_lock(ppp); } while (0)
353 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
354 ppp_xmit_unlock(ppp); } while (0)
357 * /dev/ppp device routines.
358 * The /dev/ppp device is used by pppd to control the ppp unit.
359 * It supports the read, write, ioctl and poll functions.
360 * Open instances of /dev/ppp can be in one of three states:
361 * unattached, attached to a ppp unit, or attached to a ppp channel.
363 static int ppp_open(struct inode
*inode
, struct file
*file
)
366 * This could (should?) be enforced by the permissions on /dev/ppp.
368 if (!capable(CAP_NET_ADMIN
))
373 static int ppp_release(struct inode
*unused
, struct file
*file
)
375 struct ppp_file
*pf
= file
->private_data
;
379 file
->private_data
= NULL
;
380 if (pf
->kind
== INTERFACE
) {
382 if (file
== ppp
->owner
)
383 ppp_shutdown_interface(ppp
);
385 if (atomic_dec_and_test(&pf
->refcnt
)) {
388 ppp_destroy_interface(PF_TO_PPP(pf
));
391 ppp_destroy_channel(PF_TO_CHANNEL(pf
));
399 static ssize_t
ppp_read(struct file
*file
, char __user
*buf
,
400 size_t count
, loff_t
*ppos
)
402 struct ppp_file
*pf
= file
->private_data
;
403 DECLARE_WAITQUEUE(wait
, current
);
405 struct sk_buff
*skb
= NULL
;
412 add_wait_queue(&pf
->rwait
, &wait
);
414 set_current_state(TASK_INTERRUPTIBLE
);
415 skb
= skb_dequeue(&pf
->rq
);
421 if (pf
->kind
== INTERFACE
) {
423 * Return 0 (EOF) on an interface that has no
424 * channels connected, unless it is looping
425 * network traffic (demand mode).
427 struct ppp
*ppp
= PF_TO_PPP(pf
);
428 if (ppp
->n_channels
== 0 &&
429 (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
433 if (file
->f_flags
& O_NONBLOCK
)
436 if (signal_pending(current
))
440 set_current_state(TASK_RUNNING
);
441 remove_wait_queue(&pf
->rwait
, &wait
);
447 if (skb
->len
> count
)
452 if (skb_copy_datagram_iovec(skb
, 0, &iov
, skb
->len
))
462 static ssize_t
ppp_write(struct file
*file
, const char __user
*buf
,
463 size_t count
, loff_t
*ppos
)
465 struct ppp_file
*pf
= file
->private_data
;
472 skb
= alloc_skb(count
+ pf
->hdrlen
, GFP_KERNEL
);
475 skb_reserve(skb
, pf
->hdrlen
);
477 if (copy_from_user(skb_put(skb
, count
), buf
, count
)) {
482 skb_queue_tail(&pf
->xq
, skb
);
486 ppp_xmit_process(PF_TO_PPP(pf
));
489 ppp_channel_push(PF_TO_CHANNEL(pf
));
499 /* No kernel lock - fine */
500 static unsigned int ppp_poll(struct file
*file
, poll_table
*wait
)
502 struct ppp_file
*pf
= file
->private_data
;
507 poll_wait(file
, &pf
->rwait
, wait
);
508 mask
= POLLOUT
| POLLWRNORM
;
509 if (skb_peek(&pf
->rq
))
510 mask
|= POLLIN
| POLLRDNORM
;
513 else if (pf
->kind
== INTERFACE
) {
514 /* see comment in ppp_read */
515 struct ppp
*ppp
= PF_TO_PPP(pf
);
516 if (ppp
->n_channels
== 0 &&
517 (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
518 mask
|= POLLIN
| POLLRDNORM
;
524 #ifdef CONFIG_PPP_FILTER
525 static int get_filter(void __user
*arg
, struct sock_filter
**p
)
527 struct sock_fprog uprog
;
528 struct sock_filter
*code
= NULL
;
531 if (copy_from_user(&uprog
, arg
, sizeof(uprog
)))
539 len
= uprog
.len
* sizeof(struct sock_filter
);
540 code
= memdup_user(uprog
.filter
, len
);
542 return PTR_ERR(code
);
544 err
= sk_chk_filter(code
, uprog
.len
);
553 #endif /* CONFIG_PPP_FILTER */
555 static long ppp_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
557 struct ppp_file
*pf
= file
->private_data
;
559 int err
= -EFAULT
, val
, val2
, i
;
560 struct ppp_idle idle
;
563 struct slcompress
*vj
;
564 void __user
*argp
= (void __user
*)arg
;
565 int __user
*p
= argp
;
568 return ppp_unattached_ioctl(current
->nsproxy
->net_ns
,
571 if (cmd
== PPPIOCDETACH
) {
573 * We have to be careful here... if the file descriptor
574 * has been dup'd, we could have another process in the
575 * middle of a poll using the same file *, so we had
576 * better not free the interface data structures -
577 * instead we fail the ioctl. Even in this case, we
578 * shut down the interface if we are the owner of it.
579 * Actually, we should get rid of PPPIOCDETACH, userland
580 * (i.e. pppd) could achieve the same effect by closing
581 * this fd and reopening /dev/ppp.
584 mutex_lock(&ppp_mutex
);
585 if (pf
->kind
== INTERFACE
) {
587 if (file
== ppp
->owner
)
588 ppp_shutdown_interface(ppp
);
590 if (atomic_long_read(&file
->f_count
) <= 2) {
591 ppp_release(NULL
, file
);
594 printk(KERN_DEBUG
"PPPIOCDETACH file->f_count=%ld\n",
595 atomic_long_read(&file
->f_count
));
596 mutex_unlock(&ppp_mutex
);
600 if (pf
->kind
== CHANNEL
) {
602 struct ppp_channel
*chan
;
604 mutex_lock(&ppp_mutex
);
605 pch
= PF_TO_CHANNEL(pf
);
609 if (get_user(unit
, p
))
611 err
= ppp_connect_channel(pch
, unit
);
615 err
= ppp_disconnect_channel(pch
);
619 down_read(&pch
->chan_sem
);
622 if (chan
&& chan
->ops
->ioctl
)
623 err
= chan
->ops
->ioctl(chan
, cmd
, arg
);
624 up_read(&pch
->chan_sem
);
626 mutex_unlock(&ppp_mutex
);
630 if (pf
->kind
!= INTERFACE
) {
632 printk(KERN_ERR
"PPP: not interface or channel??\n");
636 mutex_lock(&ppp_mutex
);
640 if (get_user(val
, p
))
647 if (get_user(val
, p
))
650 cflags
= ppp
->flags
& ~val
;
651 ppp
->flags
= val
& SC_FLAG_BITS
;
653 if (cflags
& SC_CCP_OPEN
)
659 val
= ppp
->flags
| ppp
->xstate
| ppp
->rstate
;
660 if (put_user(val
, p
))
665 case PPPIOCSCOMPRESS
:
666 err
= ppp_set_compress(ppp
, arg
);
670 if (put_user(ppp
->file
.index
, p
))
676 if (get_user(val
, p
))
683 if (put_user(ppp
->debug
, p
))
689 idle
.xmit_idle
= (jiffies
- ppp
->last_xmit
) / HZ
;
690 idle
.recv_idle
= (jiffies
- ppp
->last_recv
) / HZ
;
691 if (copy_to_user(argp
, &idle
, sizeof(idle
)))
697 if (get_user(val
, p
))
700 if ((val
>> 16) != 0) {
704 vj
= slhc_init(val2
+1, val
+1);
706 printk(KERN_ERR
"PPP: no memory (VJ compressor)\n");
720 if (copy_from_user(&npi
, argp
, sizeof(npi
)))
722 err
= proto_to_npindex(npi
.protocol
);
726 if (cmd
== PPPIOCGNPMODE
) {
728 npi
.mode
= ppp
->npmode
[i
];
729 if (copy_to_user(argp
, &npi
, sizeof(npi
)))
732 ppp
->npmode
[i
] = npi
.mode
;
733 /* we may be able to transmit more packets now (??) */
734 netif_wake_queue(ppp
->dev
);
739 #ifdef CONFIG_PPP_FILTER
742 struct sock_filter
*code
;
743 err
= get_filter(argp
, &code
);
746 kfree(ppp
->pass_filter
);
747 ppp
->pass_filter
= code
;
756 struct sock_filter
*code
;
757 err
= get_filter(argp
, &code
);
760 kfree(ppp
->active_filter
);
761 ppp
->active_filter
= code
;
762 ppp
->active_len
= err
;
768 #endif /* CONFIG_PPP_FILTER */
770 #ifdef CONFIG_PPP_MULTILINK
772 if (get_user(val
, p
))
776 ppp_recv_unlock(ppp
);
779 #endif /* CONFIG_PPP_MULTILINK */
784 mutex_unlock(&ppp_mutex
);
788 static int ppp_unattached_ioctl(struct net
*net
, struct ppp_file
*pf
,
789 struct file
*file
, unsigned int cmd
, unsigned long arg
)
791 int unit
, err
= -EFAULT
;
793 struct channel
*chan
;
795 int __user
*p
= (int __user
*)arg
;
797 mutex_lock(&ppp_mutex
);
800 /* Create a new ppp unit */
801 if (get_user(unit
, p
))
803 ppp
= ppp_create_interface(net
, unit
, &err
);
806 file
->private_data
= &ppp
->file
;
809 if (put_user(ppp
->file
.index
, p
))
815 /* Attach to an existing ppp unit */
816 if (get_user(unit
, p
))
819 pn
= ppp_pernet(net
);
820 mutex_lock(&pn
->all_ppp_mutex
);
821 ppp
= ppp_find_unit(pn
, unit
);
823 atomic_inc(&ppp
->file
.refcnt
);
824 file
->private_data
= &ppp
->file
;
827 mutex_unlock(&pn
->all_ppp_mutex
);
831 if (get_user(unit
, p
))
834 pn
= ppp_pernet(net
);
835 spin_lock_bh(&pn
->all_channels_lock
);
836 chan
= ppp_find_channel(pn
, unit
);
838 atomic_inc(&chan
->file
.refcnt
);
839 file
->private_data
= &chan
->file
;
842 spin_unlock_bh(&pn
->all_channels_lock
);
848 mutex_unlock(&ppp_mutex
);
852 static const struct file_operations ppp_device_fops
= {
853 .owner
= THIS_MODULE
,
857 .unlocked_ioctl
= ppp_ioctl
,
859 .release
= ppp_release
,
860 .llseek
= noop_llseek
,
863 static __net_init
int ppp_init_net(struct net
*net
)
865 struct ppp_net
*pn
= net_generic(net
, ppp_net_id
);
867 idr_init(&pn
->units_idr
);
868 mutex_init(&pn
->all_ppp_mutex
);
870 INIT_LIST_HEAD(&pn
->all_channels
);
871 INIT_LIST_HEAD(&pn
->new_channels
);
873 spin_lock_init(&pn
->all_channels_lock
);
878 static __net_exit
void ppp_exit_net(struct net
*net
)
880 struct ppp_net
*pn
= net_generic(net
, ppp_net_id
);
882 idr_destroy(&pn
->units_idr
);
885 static struct pernet_operations ppp_net_ops
= {
886 .init
= ppp_init_net
,
887 .exit
= ppp_exit_net
,
889 .size
= sizeof(struct ppp_net
),
892 #define PPP_MAJOR 108
894 /* Called at boot time if ppp is compiled into the kernel,
895 or at module load time (from init_module) if compiled as a module. */
896 static int __init
ppp_init(void)
900 printk(KERN_INFO
"PPP generic driver version " PPP_VERSION
"\n");
902 err
= register_pernet_device(&ppp_net_ops
);
904 printk(KERN_ERR
"failed to register PPP pernet device (%d)\n", err
);
908 err
= register_chrdev(PPP_MAJOR
, "ppp", &ppp_device_fops
);
910 printk(KERN_ERR
"failed to register PPP device (%d)\n", err
);
914 ppp_class
= class_create(THIS_MODULE
, "ppp");
915 if (IS_ERR(ppp_class
)) {
916 err
= PTR_ERR(ppp_class
);
920 /* not a big deal if we fail here :-) */
921 device_create(ppp_class
, NULL
, MKDEV(PPP_MAJOR
, 0), NULL
, "ppp");
926 unregister_chrdev(PPP_MAJOR
, "ppp");
928 unregister_pernet_device(&ppp_net_ops
);
934 * Network interface unit routines.
937 ppp_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
939 struct ppp
*ppp
= netdev_priv(dev
);
943 npi
= ethertype_to_npindex(ntohs(skb
->protocol
));
947 /* Drop, accept or reject the packet */
948 switch (ppp
->npmode
[npi
]) {
952 /* it would be nice to have a way to tell the network
953 system to queue this one up for later. */
960 /* Put the 2-byte PPP protocol number on the front,
961 making sure there is room for the address and control fields. */
962 if (skb_cow_head(skb
, PPP_HDRLEN
))
965 pp
= skb_push(skb
, 2);
966 proto
= npindex_to_proto
[npi
];
970 netif_stop_queue(dev
);
971 skb_queue_tail(&ppp
->file
.xq
, skb
);
972 ppp_xmit_process(ppp
);
977 ++dev
->stats
.tx_dropped
;
982 ppp_net_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
984 struct ppp
*ppp
= netdev_priv(dev
);
986 void __user
*addr
= (void __user
*) ifr
->ifr_ifru
.ifru_data
;
987 struct ppp_stats stats
;
988 struct ppp_comp_stats cstats
;
993 ppp_get_stats(ppp
, &stats
);
994 if (copy_to_user(addr
, &stats
, sizeof(stats
)))
1000 memset(&cstats
, 0, sizeof(cstats
));
1002 ppp
->xcomp
->comp_stat(ppp
->xc_state
, &cstats
.c
);
1004 ppp
->rcomp
->decomp_stat(ppp
->rc_state
, &cstats
.d
);
1005 if (copy_to_user(addr
, &cstats
, sizeof(cstats
)))
1012 if (copy_to_user(addr
, vers
, strlen(vers
) + 1))
1024 static const struct net_device_ops ppp_netdev_ops
= {
1025 .ndo_start_xmit
= ppp_start_xmit
,
1026 .ndo_do_ioctl
= ppp_net_ioctl
,
1029 static void ppp_setup(struct net_device
*dev
)
1031 dev
->netdev_ops
= &ppp_netdev_ops
;
1032 dev
->hard_header_len
= PPP_HDRLEN
;
1035 dev
->tx_queue_len
= 3;
1036 dev
->type
= ARPHRD_PPP
;
1037 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
1038 dev
->features
|= NETIF_F_NETNS_LOCAL
;
1039 dev
->priv_flags
&= ~IFF_XMIT_DST_RELEASE
;
1043 * Transmit-side routines.
1047 * Called to do any work queued up on the transmit side
1048 * that can now be done.
1051 ppp_xmit_process(struct ppp
*ppp
)
1053 struct sk_buff
*skb
;
1056 if (!ppp
->closing
) {
1058 while (!ppp
->xmit_pending
&&
1059 (skb
= skb_dequeue(&ppp
->file
.xq
)))
1060 ppp_send_frame(ppp
, skb
);
1061 /* If there's no work left to do, tell the core net
1062 code that we can accept some more. */
1063 if (!ppp
->xmit_pending
&& !skb_peek(&ppp
->file
.xq
))
1064 netif_wake_queue(ppp
->dev
);
1066 ppp_xmit_unlock(ppp
);
1069 static inline struct sk_buff
*
1070 pad_compress_skb(struct ppp
*ppp
, struct sk_buff
*skb
)
1072 struct sk_buff
*new_skb
;
1074 int new_skb_size
= ppp
->dev
->mtu
+
1075 ppp
->xcomp
->comp_extra
+ ppp
->dev
->hard_header_len
;
1076 int compressor_skb_size
= ppp
->dev
->mtu
+
1077 ppp
->xcomp
->comp_extra
+ PPP_HDRLEN
;
1078 new_skb
= alloc_skb(new_skb_size
, GFP_ATOMIC
);
1080 if (net_ratelimit())
1081 printk(KERN_ERR
"PPP: no memory (comp pkt)\n");
1084 if (ppp
->dev
->hard_header_len
> PPP_HDRLEN
)
1085 skb_reserve(new_skb
,
1086 ppp
->dev
->hard_header_len
- PPP_HDRLEN
);
1088 /* compressor still expects A/C bytes in hdr */
1089 len
= ppp
->xcomp
->compress(ppp
->xc_state
, skb
->data
- 2,
1090 new_skb
->data
, skb
->len
+ 2,
1091 compressor_skb_size
);
1092 if (len
> 0 && (ppp
->flags
& SC_CCP_UP
)) {
1096 skb_pull(skb
, 2); /* pull off A/C bytes */
1097 } else if (len
== 0) {
1098 /* didn't compress, or CCP not up yet */
1104 * MPPE requires that we do not send unencrypted
1105 * frames. The compressor will return -1 if we
1106 * should drop the frame. We cannot simply test
1107 * the compress_proto because MPPE and MPPC share
1110 if (net_ratelimit())
1111 printk(KERN_ERR
"ppp: compressor dropped pkt\n");
1120 * Compress and send a frame.
1121 * The caller should have locked the xmit path,
1122 * and xmit_pending should be 0.
1125 ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1127 int proto
= PPP_PROTO(skb
);
1128 struct sk_buff
*new_skb
;
1132 if (proto
< 0x8000) {
1133 #ifdef CONFIG_PPP_FILTER
1134 /* check if we should pass this packet */
1135 /* the filter instructions are constructed assuming
1136 a four-byte PPP header on each packet */
1137 *skb_push(skb
, 2) = 1;
1138 if (ppp
->pass_filter
&&
1139 sk_run_filter(skb
, ppp
->pass_filter
,
1140 ppp
->pass_len
) == 0) {
1142 printk(KERN_DEBUG
"PPP: outbound frame not passed\n");
1146 /* if this packet passes the active filter, record the time */
1147 if (!(ppp
->active_filter
&&
1148 sk_run_filter(skb
, ppp
->active_filter
,
1149 ppp
->active_len
) == 0))
1150 ppp
->last_xmit
= jiffies
;
1153 /* for data packets, record the time */
1154 ppp
->last_xmit
= jiffies
;
1155 #endif /* CONFIG_PPP_FILTER */
1158 ++ppp
->dev
->stats
.tx_packets
;
1159 ppp
->dev
->stats
.tx_bytes
+= skb
->len
- 2;
1163 if (!ppp
->vj
|| (ppp
->flags
& SC_COMP_TCP
) == 0)
1165 /* try to do VJ TCP header compression */
1166 new_skb
= alloc_skb(skb
->len
+ ppp
->dev
->hard_header_len
- 2,
1169 printk(KERN_ERR
"PPP: no memory (VJ comp pkt)\n");
1172 skb_reserve(new_skb
, ppp
->dev
->hard_header_len
- 2);
1174 len
= slhc_compress(ppp
->vj
, cp
, skb
->len
- 2,
1175 new_skb
->data
+ 2, &cp
,
1176 !(ppp
->flags
& SC_NO_TCP_CCID
));
1177 if (cp
== skb
->data
+ 2) {
1178 /* didn't compress */
1181 if (cp
[0] & SL_TYPE_COMPRESSED_TCP
) {
1182 proto
= PPP_VJC_COMP
;
1183 cp
[0] &= ~SL_TYPE_COMPRESSED_TCP
;
1185 proto
= PPP_VJC_UNCOMP
;
1186 cp
[0] = skb
->data
[2];
1190 cp
= skb_put(skb
, len
+ 2);
1197 /* peek at outbound CCP frames */
1198 ppp_ccp_peek(ppp
, skb
, 0);
1202 /* try to do packet compression */
1203 if ((ppp
->xstate
& SC_COMP_RUN
) && ppp
->xc_state
&&
1204 proto
!= PPP_LCP
&& proto
!= PPP_CCP
) {
1205 if (!(ppp
->flags
& SC_CCP_UP
) && (ppp
->flags
& SC_MUST_COMP
)) {
1206 if (net_ratelimit())
1207 printk(KERN_ERR
"ppp: compression required but down - pkt dropped.\n");
1210 skb
= pad_compress_skb(ppp
, skb
);
1216 * If we are waiting for traffic (demand dialling),
1217 * queue it up for pppd to receive.
1219 if (ppp
->flags
& SC_LOOP_TRAFFIC
) {
1220 if (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
)
1222 skb_queue_tail(&ppp
->file
.rq
, skb
);
1223 wake_up_interruptible(&ppp
->file
.rwait
);
1227 ppp
->xmit_pending
= skb
;
1233 ++ppp
->dev
->stats
.tx_errors
;
1237 * Try to send the frame in xmit_pending.
1238 * The caller should have the xmit path locked.
1241 ppp_push(struct ppp
*ppp
)
1243 struct list_head
*list
;
1244 struct channel
*pch
;
1245 struct sk_buff
*skb
= ppp
->xmit_pending
;
1250 list
= &ppp
->channels
;
1251 if (list_empty(list
)) {
1252 /* nowhere to send the packet, just drop it */
1253 ppp
->xmit_pending
= NULL
;
1258 if ((ppp
->flags
& SC_MULTILINK
) == 0) {
1259 /* not doing multilink: send it down the first channel */
1261 pch
= list_entry(list
, struct channel
, clist
);
1263 spin_lock_bh(&pch
->downl
);
1265 if (pch
->chan
->ops
->start_xmit(pch
->chan
, skb
))
1266 ppp
->xmit_pending
= NULL
;
1268 /* channel got unregistered */
1270 ppp
->xmit_pending
= NULL
;
1272 spin_unlock_bh(&pch
->downl
);
1276 #ifdef CONFIG_PPP_MULTILINK
1277 /* Multilink: fragment the packet over as many links
1278 as can take the packet at the moment. */
1279 if (!ppp_mp_explode(ppp
, skb
))
1281 #endif /* CONFIG_PPP_MULTILINK */
1283 ppp
->xmit_pending
= NULL
;
1287 #ifdef CONFIG_PPP_MULTILINK
1289 * Divide a packet to be transmitted into fragments and
1290 * send them out the individual links.
1292 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
)
1295 int i
, bits
, hdrlen
, mtu
;
1297 int navail
, nfree
, nzero
;
1301 unsigned char *p
, *q
;
1302 struct list_head
*list
;
1303 struct channel
*pch
;
1304 struct sk_buff
*frag
;
1305 struct ppp_channel
*chan
;
1307 totspeed
= 0; /*total bitrate of the bundle*/
1308 nfree
= 0; /* # channels which have no packet already queued */
1309 navail
= 0; /* total # of usable channels (not deregistered) */
1310 nzero
= 0; /* number of channels with zero speed associated*/
1311 totfree
= 0; /*total # of channels available and
1312 *having no queued packets before
1313 *starting the fragmentation*/
1315 hdrlen
= (ppp
->flags
& SC_MP_XSHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1317 list_for_each_entry(pch
, &ppp
->channels
, clist
) {
1321 pch
->speed
= pch
->chan
->speed
;
1326 if (skb_queue_empty(&pch
->file
.xq
) ||
1328 if (pch
->speed
== 0)
1331 totspeed
+= pch
->speed
;
1337 if (!pch
->had_frag
&& i
< ppp
->nxchan
)
1343 * Don't start sending this packet unless at least half of
1344 * the channels are free. This gives much better TCP
1345 * performance if we have a lot of channels.
1347 if (nfree
== 0 || nfree
< navail
/ 2)
1348 return 0; /* can't take now, leave it in xmit_pending */
1350 /* Do protocol field compression (XXX this should be optional) */
1359 nbigger
= len
% nfree
;
1361 /* skip to the channel after the one we last used
1362 and start at that one */
1363 list
= &ppp
->channels
;
1364 for (i
= 0; i
< ppp
->nxchan
; ++i
) {
1366 if (list
== &ppp
->channels
) {
1372 /* create a fragment for each channel */
1376 if (list
== &ppp
->channels
) {
1380 pch
= list_entry(list
, struct channel
, clist
);
1386 * Skip this channel if it has a fragment pending already and
1387 * we haven't given a fragment to all of the free channels.
1389 if (pch
->avail
== 1) {
1396 /* check the channel's mtu and whether it is still attached. */
1397 spin_lock_bh(&pch
->downl
);
1398 if (pch
->chan
== NULL
) {
1399 /* can't use this channel, it's being deregistered */
1400 if (pch
->speed
== 0)
1403 totspeed
-= pch
->speed
;
1405 spin_unlock_bh(&pch
->downl
);
1416 *if the channel speed is not set divide
1417 *the packet evenly among the free channels;
1418 *otherwise divide it according to the speed
1419 *of the channel we are going to transmit on
1423 if (pch
->speed
== 0) {
1430 flen
= (((totfree
- nzero
)*(totlen
+ hdrlen
*totfree
)) /
1431 ((totspeed
*totfree
)/pch
->speed
)) - hdrlen
;
1433 flen
+= ((totfree
- nzero
)*pch
->speed
)/totspeed
;
1434 nbigger
-= ((totfree
- nzero
)*pch
->speed
)/
1442 *check if we are on the last channel or
1443 *we exceded the lenght of the data to
1446 if ((nfree
<= 0) || (flen
> len
))
1449 *it is not worth to tx on slow channels:
1450 *in that case from the resulting flen according to the
1451 *above formula will be equal or less than zero.
1452 *Skip the channel in this case
1456 spin_unlock_bh(&pch
->downl
);
1460 mtu
= pch
->chan
->mtu
- hdrlen
;
1467 frag
= alloc_skb(flen
+ hdrlen
+ (flen
== 0), GFP_ATOMIC
);
1470 q
= skb_put(frag
, flen
+ hdrlen
);
1472 /* make the MP header */
1475 if (ppp
->flags
& SC_MP_XSHORTSEQ
) {
1476 q
[2] = bits
+ ((ppp
->nxseq
>> 8) & 0xf);
1480 q
[3] = ppp
->nxseq
>> 16;
1481 q
[4] = ppp
->nxseq
>> 8;
1485 memcpy(q
+ hdrlen
, p
, flen
);
1487 /* try to send it down the channel */
1489 if (!skb_queue_empty(&pch
->file
.xq
) ||
1490 !chan
->ops
->start_xmit(chan
, frag
))
1491 skb_queue_tail(&pch
->file
.xq
, frag
);
1497 spin_unlock_bh(&pch
->downl
);
1504 spin_unlock_bh(&pch
->downl
);
1506 printk(KERN_ERR
"PPP: no memory (fragment)\n");
1507 ++ppp
->dev
->stats
.tx_errors
;
1509 return 1; /* abandon the frame */
1511 #endif /* CONFIG_PPP_MULTILINK */
1514 * Try to send data out on a channel.
1517 ppp_channel_push(struct channel
*pch
)
1519 struct sk_buff
*skb
;
1522 spin_lock_bh(&pch
->downl
);
1524 while (!skb_queue_empty(&pch
->file
.xq
)) {
1525 skb
= skb_dequeue(&pch
->file
.xq
);
1526 if (!pch
->chan
->ops
->start_xmit(pch
->chan
, skb
)) {
1527 /* put the packet back and try again later */
1528 skb_queue_head(&pch
->file
.xq
, skb
);
1533 /* channel got deregistered */
1534 skb_queue_purge(&pch
->file
.xq
);
1536 spin_unlock_bh(&pch
->downl
);
1537 /* see if there is anything from the attached unit to be sent */
1538 if (skb_queue_empty(&pch
->file
.xq
)) {
1539 read_lock_bh(&pch
->upl
);
1542 ppp_xmit_process(ppp
);
1543 read_unlock_bh(&pch
->upl
);
1548 * Receive-side routines.
1551 struct ppp_mp_skb_parm
{
1555 #define PPP_MP_CB(skb) ((struct ppp_mp_skb_parm *)((skb)->cb))
1558 ppp_do_recv(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1562 ppp_receive_frame(ppp
, skb
, pch
);
1565 ppp_recv_unlock(ppp
);
1569 ppp_input(struct ppp_channel
*chan
, struct sk_buff
*skb
)
1571 struct channel
*pch
= chan
->ppp
;
1579 read_lock_bh(&pch
->upl
);
1580 if (!pskb_may_pull(skb
, 2)) {
1583 ++pch
->ppp
->dev
->stats
.rx_length_errors
;
1584 ppp_receive_error(pch
->ppp
);
1589 proto
= PPP_PROTO(skb
);
1590 if (!pch
->ppp
|| proto
>= 0xc000 || proto
== PPP_CCPFRAG
) {
1591 /* put it on the channel queue */
1592 skb_queue_tail(&pch
->file
.rq
, skb
);
1593 /* drop old frames if queue too long */
1594 while (pch
->file
.rq
.qlen
> PPP_MAX_RQLEN
&&
1595 (skb
= skb_dequeue(&pch
->file
.rq
)))
1597 wake_up_interruptible(&pch
->file
.rwait
);
1599 ppp_do_recv(pch
->ppp
, skb
, pch
);
1603 read_unlock_bh(&pch
->upl
);
1606 /* Put a 0-length skb in the receive queue as an error indication */
1608 ppp_input_error(struct ppp_channel
*chan
, int code
)
1610 struct channel
*pch
= chan
->ppp
;
1611 struct sk_buff
*skb
;
1616 read_lock_bh(&pch
->upl
);
1618 skb
= alloc_skb(0, GFP_ATOMIC
);
1620 skb
->len
= 0; /* probably unnecessary */
1622 ppp_do_recv(pch
->ppp
, skb
, pch
);
1625 read_unlock_bh(&pch
->upl
);
1629 * We come in here to process a received frame.
1630 * The receive side of the ppp unit is locked.
1633 ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1635 /* note: a 0-length skb is used as an error indication */
1637 #ifdef CONFIG_PPP_MULTILINK
1638 /* XXX do channel-level decompression here */
1639 if (PPP_PROTO(skb
) == PPP_MP
)
1640 ppp_receive_mp_frame(ppp
, skb
, pch
);
1642 #endif /* CONFIG_PPP_MULTILINK */
1643 ppp_receive_nonmp_frame(ppp
, skb
);
1646 ppp_receive_error(ppp
);
1651 ppp_receive_error(struct ppp
*ppp
)
1653 ++ppp
->dev
->stats
.rx_errors
;
1659 ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1662 int proto
, len
, npi
;
1665 * Decompress the frame, if compressed.
1666 * Note that some decompressors need to see uncompressed frames
1667 * that come in as well as compressed frames.
1669 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
) &&
1670 (ppp
->rstate
& (SC_DC_FERROR
| SC_DC_ERROR
)) == 0)
1671 skb
= ppp_decompress_frame(ppp
, skb
);
1673 if (ppp
->flags
& SC_MUST_COMP
&& ppp
->rstate
& SC_DC_FERROR
)
1676 proto
= PPP_PROTO(skb
);
1679 /* decompress VJ compressed packets */
1680 if (!ppp
->vj
|| (ppp
->flags
& SC_REJ_COMP_TCP
))
1683 if (skb_tailroom(skb
) < 124 || skb_cloned(skb
)) {
1684 /* copy to a new sk_buff with more tailroom */
1685 ns
= dev_alloc_skb(skb
->len
+ 128);
1687 printk(KERN_ERR
"PPP: no memory (VJ decomp)\n");
1691 skb_copy_bits(skb
, 0, skb_put(ns
, skb
->len
), skb
->len
);
1696 skb
->ip_summed
= CHECKSUM_NONE
;
1698 len
= slhc_uncompress(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2);
1700 printk(KERN_DEBUG
"PPP: VJ decompression error\n");
1705 skb_put(skb
, len
- skb
->len
);
1706 else if (len
< skb
->len
)
1711 case PPP_VJC_UNCOMP
:
1712 if (!ppp
->vj
|| (ppp
->flags
& SC_REJ_COMP_TCP
))
1715 /* Until we fix the decompressor need to make sure
1716 * data portion is linear.
1718 if (!pskb_may_pull(skb
, skb
->len
))
1721 if (slhc_remember(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2) <= 0) {
1722 printk(KERN_ERR
"PPP: VJ uncompressed error\n");
1729 ppp_ccp_peek(ppp
, skb
, 1);
1733 ++ppp
->dev
->stats
.rx_packets
;
1734 ppp
->dev
->stats
.rx_bytes
+= skb
->len
- 2;
1736 npi
= proto_to_npindex(proto
);
1738 /* control or unknown frame - pass it to pppd */
1739 skb_queue_tail(&ppp
->file
.rq
, skb
);
1740 /* limit queue length by dropping old frames */
1741 while (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
&&
1742 (skb
= skb_dequeue(&ppp
->file
.rq
)))
1744 /* wake up any process polling or blocking on read */
1745 wake_up_interruptible(&ppp
->file
.rwait
);
1748 /* network protocol frame - give it to the kernel */
1750 #ifdef CONFIG_PPP_FILTER
1751 /* check if the packet passes the pass and active filters */
1752 /* the filter instructions are constructed assuming
1753 a four-byte PPP header on each packet */
1754 if (ppp
->pass_filter
|| ppp
->active_filter
) {
1755 if (skb_cloned(skb
) &&
1756 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
1759 *skb_push(skb
, 2) = 0;
1760 if (ppp
->pass_filter
&&
1761 sk_run_filter(skb
, ppp
->pass_filter
,
1762 ppp
->pass_len
) == 0) {
1764 printk(KERN_DEBUG
"PPP: inbound frame "
1769 if (!(ppp
->active_filter
&&
1770 sk_run_filter(skb
, ppp
->active_filter
,
1771 ppp
->active_len
) == 0))
1772 ppp
->last_recv
= jiffies
;
1775 #endif /* CONFIG_PPP_FILTER */
1776 ppp
->last_recv
= jiffies
;
1778 if ((ppp
->dev
->flags
& IFF_UP
) == 0 ||
1779 ppp
->npmode
[npi
] != NPMODE_PASS
) {
1782 /* chop off protocol */
1783 skb_pull_rcsum(skb
, 2);
1784 skb
->dev
= ppp
->dev
;
1785 skb
->protocol
= htons(npindex_to_ethertype
[npi
]);
1786 skb_reset_mac_header(skb
);
1794 ppp_receive_error(ppp
);
1797 static struct sk_buff
*
1798 ppp_decompress_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1800 int proto
= PPP_PROTO(skb
);
1804 /* Until we fix all the decompressor's need to make sure
1805 * data portion is linear.
1807 if (!pskb_may_pull(skb
, skb
->len
))
1810 if (proto
== PPP_COMP
) {
1813 switch(ppp
->rcomp
->compress_proto
) {
1815 obuff_size
= ppp
->mru
+ PPP_HDRLEN
+ 1;
1818 obuff_size
= ppp
->mru
+ PPP_HDRLEN
;
1822 ns
= dev_alloc_skb(obuff_size
);
1824 printk(KERN_ERR
"ppp_decompress_frame: no memory\n");
1827 /* the decompressor still expects the A/C bytes in the hdr */
1828 len
= ppp
->rcomp
->decompress(ppp
->rc_state
, skb
->data
- 2,
1829 skb
->len
+ 2, ns
->data
, obuff_size
);
1831 /* Pass the compressed frame to pppd as an
1832 error indication. */
1833 if (len
== DECOMP_FATALERROR
)
1834 ppp
->rstate
|= SC_DC_FERROR
;
1842 skb_pull(skb
, 2); /* pull off the A/C bytes */
1845 /* Uncompressed frame - pass to decompressor so it
1846 can update its dictionary if necessary. */
1847 if (ppp
->rcomp
->incomp
)
1848 ppp
->rcomp
->incomp(ppp
->rc_state
, skb
->data
- 2,
1855 ppp
->rstate
|= SC_DC_ERROR
;
1856 ppp_receive_error(ppp
);
1860 #ifdef CONFIG_PPP_MULTILINK
1862 * Receive a multilink frame.
1863 * We put it on the reconstruction queue and then pull off
1864 * as many completed frames as we can.
1867 ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1871 int mphdrlen
= (ppp
->flags
& SC_MP_SHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1873 if (!pskb_may_pull(skb
, mphdrlen
+ 1) || ppp
->mrru
== 0)
1874 goto err
; /* no good, throw it away */
1876 /* Decode sequence number and begin/end bits */
1877 if (ppp
->flags
& SC_MP_SHORTSEQ
) {
1878 seq
= ((skb
->data
[2] & 0x0f) << 8) | skb
->data
[3];
1881 seq
= (skb
->data
[3] << 16) | (skb
->data
[4] << 8)| skb
->data
[5];
1884 PPP_MP_CB(skb
)->BEbits
= skb
->data
[2];
1885 skb_pull(skb
, mphdrlen
); /* pull off PPP and MP headers */
1888 * Do protocol ID decompression on the first fragment of each packet.
1890 if ((PPP_MP_CB(skb
)->BEbits
& B
) && (skb
->data
[0] & 1))
1891 *skb_push(skb
, 1) = 0;
1894 * Expand sequence number to 32 bits, making it as close
1895 * as possible to ppp->minseq.
1897 seq
|= ppp
->minseq
& ~mask
;
1898 if ((int)(ppp
->minseq
- seq
) > (int)(mask
>> 1))
1900 else if ((int)(seq
- ppp
->minseq
) > (int)(mask
>> 1))
1901 seq
-= mask
+ 1; /* should never happen */
1902 PPP_MP_CB(skb
)->sequence
= seq
;
1906 * If this packet comes before the next one we were expecting,
1909 if (seq_before(seq
, ppp
->nextseq
)) {
1911 ++ppp
->dev
->stats
.rx_dropped
;
1912 ppp_receive_error(ppp
);
1917 * Reevaluate minseq, the minimum over all channels of the
1918 * last sequence number received on each channel. Because of
1919 * the increasing sequence number rule, we know that any fragment
1920 * before `minseq' which hasn't arrived is never going to arrive.
1921 * The list of channels can't change because we have the receive
1922 * side of the ppp unit locked.
1924 list_for_each_entry(ch
, &ppp
->channels
, clist
) {
1925 if (seq_before(ch
->lastseq
, seq
))
1928 if (seq_before(ppp
->minseq
, seq
))
1931 /* Put the fragment on the reconstruction queue */
1932 ppp_mp_insert(ppp
, skb
);
1934 /* If the queue is getting long, don't wait any longer for packets
1935 before the start of the queue. */
1936 if (skb_queue_len(&ppp
->mrq
) >= PPP_MP_MAX_QLEN
) {
1937 struct sk_buff
*mskb
= skb_peek(&ppp
->mrq
);
1938 if (seq_before(ppp
->minseq
, PPP_MP_CB(mskb
)->sequence
))
1939 ppp
->minseq
= PPP_MP_CB(mskb
)->sequence
;
1942 /* Pull completed packets off the queue and receive them. */
1943 while ((skb
= ppp_mp_reconstruct(ppp
))) {
1944 if (pskb_may_pull(skb
, 2))
1945 ppp_receive_nonmp_frame(ppp
, skb
);
1947 ++ppp
->dev
->stats
.rx_length_errors
;
1949 ppp_receive_error(ppp
);
1957 ppp_receive_error(ppp
);
1961 * Insert a fragment on the MP reconstruction queue.
1962 * The queue is ordered by increasing sequence number.
1965 ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
)
1968 struct sk_buff_head
*list
= &ppp
->mrq
;
1969 u32 seq
= PPP_MP_CB(skb
)->sequence
;
1971 /* N.B. we don't need to lock the list lock because we have the
1972 ppp unit receive-side lock. */
1973 skb_queue_walk(list
, p
) {
1974 if (seq_before(seq
, PPP_MP_CB(p
)->sequence
))
1977 __skb_queue_before(list
, p
, skb
);
1981 * Reconstruct a packet from the MP fragment queue.
1982 * We go through increasing sequence numbers until we find a
1983 * complete packet, or we get to the sequence number for a fragment
1984 * which hasn't arrived but might still do so.
1986 static struct sk_buff
*
1987 ppp_mp_reconstruct(struct ppp
*ppp
)
1989 u32 seq
= ppp
->nextseq
;
1990 u32 minseq
= ppp
->minseq
;
1991 struct sk_buff_head
*list
= &ppp
->mrq
;
1992 struct sk_buff
*p
, *next
;
1993 struct sk_buff
*head
, *tail
;
1994 struct sk_buff
*skb
= NULL
;
1995 int lost
= 0, len
= 0;
1997 if (ppp
->mrru
== 0) /* do nothing until mrru is set */
2001 for (p
= head
; p
!= (struct sk_buff
*) list
; p
= next
) {
2003 if (seq_before(PPP_MP_CB(p
)->sequence
, seq
)) {
2004 /* this can't happen, anyway ignore the skb */
2005 printk(KERN_ERR
"ppp_mp_reconstruct bad seq %u < %u\n",
2006 PPP_MP_CB(p
)->sequence
, seq
);
2010 if (PPP_MP_CB(p
)->sequence
!= seq
) {
2011 /* Fragment `seq' is missing. If it is after
2012 minseq, it might arrive later, so stop here. */
2013 if (seq_after(seq
, minseq
))
2015 /* Fragment `seq' is lost, keep going. */
2017 seq
= seq_before(minseq
, PPP_MP_CB(p
)->sequence
)?
2018 minseq
+ 1: PPP_MP_CB(p
)->sequence
;
2024 * At this point we know that all the fragments from
2025 * ppp->nextseq to seq are either present or lost.
2026 * Also, there are no complete packets in the queue
2027 * that have no missing fragments and end before this
2031 /* B bit set indicates this fragment starts a packet */
2032 if (PPP_MP_CB(p
)->BEbits
& B
) {
2040 /* Got a complete packet yet? */
2041 if (lost
== 0 && (PPP_MP_CB(p
)->BEbits
& E
) &&
2042 (PPP_MP_CB(head
)->BEbits
& B
)) {
2043 if (len
> ppp
->mrru
+ 2) {
2044 ++ppp
->dev
->stats
.rx_length_errors
;
2045 printk(KERN_DEBUG
"PPP: reconstructed packet"
2046 " is too long (%d)\n", len
);
2047 } else if (p
== head
) {
2048 /* fragment is complete packet - reuse skb */
2052 } else if ((skb
= dev_alloc_skb(len
)) == NULL
) {
2053 ++ppp
->dev
->stats
.rx_missed_errors
;
2054 printk(KERN_DEBUG
"PPP: no memory for "
2055 "reconstructed packet");
2060 ppp
->nextseq
= seq
+ 1;
2064 * If this is the ending fragment of a packet,
2065 * and we haven't found a complete valid packet yet,
2066 * we can discard up to and including this fragment.
2068 if (PPP_MP_CB(p
)->BEbits
& E
)
2074 /* If we have a complete packet, copy it all into one skb. */
2076 /* If we have discarded any fragments,
2077 signal a receive error. */
2078 if (PPP_MP_CB(head
)->sequence
!= ppp
->nextseq
) {
2080 printk(KERN_DEBUG
" missed pkts %u..%u\n",
2082 PPP_MP_CB(head
)->sequence
-1);
2083 ++ppp
->dev
->stats
.rx_dropped
;
2084 ppp_receive_error(ppp
);
2088 /* copy to a single skb */
2089 for (p
= head
; p
!= tail
->next
; p
= p
->next
)
2090 skb_copy_bits(p
, 0, skb_put(skb
, p
->len
), p
->len
);
2091 ppp
->nextseq
= PPP_MP_CB(tail
)->sequence
+ 1;
2095 /* Discard all the skbuffs that we have copied the data out of
2096 or that we can't use. */
2097 while ((p
= list
->next
) != head
) {
2098 __skb_unlink(p
, list
);
2104 #endif /* CONFIG_PPP_MULTILINK */
2107 * Channel interface.
2110 /* Create a new, unattached ppp channel. */
2111 int ppp_register_channel(struct ppp_channel
*chan
)
2113 return ppp_register_net_channel(current
->nsproxy
->net_ns
, chan
);
2116 /* Create a new, unattached ppp channel for specified net. */
2117 int ppp_register_net_channel(struct net
*net
, struct ppp_channel
*chan
)
2119 struct channel
*pch
;
2122 pch
= kzalloc(sizeof(struct channel
), GFP_KERNEL
);
2126 pn
= ppp_pernet(net
);
2130 pch
->chan_net
= net
;
2132 init_ppp_file(&pch
->file
, CHANNEL
);
2133 pch
->file
.hdrlen
= chan
->hdrlen
;
2134 #ifdef CONFIG_PPP_MULTILINK
2136 #endif /* CONFIG_PPP_MULTILINK */
2137 init_rwsem(&pch
->chan_sem
);
2138 spin_lock_init(&pch
->downl
);
2139 rwlock_init(&pch
->upl
);
2141 spin_lock_bh(&pn
->all_channels_lock
);
2142 pch
->file
.index
= ++pn
->last_channel_index
;
2143 list_add(&pch
->list
, &pn
->new_channels
);
2144 atomic_inc(&channel_count
);
2145 spin_unlock_bh(&pn
->all_channels_lock
);
2151 * Return the index of a channel.
2153 int ppp_channel_index(struct ppp_channel
*chan
)
2155 struct channel
*pch
= chan
->ppp
;
2158 return pch
->file
.index
;
2163 * Return the PPP unit number to which a channel is connected.
2165 int ppp_unit_number(struct ppp_channel
*chan
)
2167 struct channel
*pch
= chan
->ppp
;
2171 read_lock_bh(&pch
->upl
);
2173 unit
= pch
->ppp
->file
.index
;
2174 read_unlock_bh(&pch
->upl
);
2180 * Return the PPP device interface name of a channel.
2182 char *ppp_dev_name(struct ppp_channel
*chan
)
2184 struct channel
*pch
= chan
->ppp
;
2188 read_lock_bh(&pch
->upl
);
2189 if (pch
->ppp
&& pch
->ppp
->dev
)
2190 name
= pch
->ppp
->dev
->name
;
2191 read_unlock_bh(&pch
->upl
);
2198 * Disconnect a channel from the generic layer.
2199 * This must be called in process context.
2202 ppp_unregister_channel(struct ppp_channel
*chan
)
2204 struct channel
*pch
= chan
->ppp
;
2208 return; /* should never happen */
2213 * This ensures that we have returned from any calls into the
2214 * the channel's start_xmit or ioctl routine before we proceed.
2216 down_write(&pch
->chan_sem
);
2217 spin_lock_bh(&pch
->downl
);
2219 spin_unlock_bh(&pch
->downl
);
2220 up_write(&pch
->chan_sem
);
2221 ppp_disconnect_channel(pch
);
2223 pn
= ppp_pernet(pch
->chan_net
);
2224 spin_lock_bh(&pn
->all_channels_lock
);
2225 list_del(&pch
->list
);
2226 spin_unlock_bh(&pn
->all_channels_lock
);
2229 wake_up_interruptible(&pch
->file
.rwait
);
2230 if (atomic_dec_and_test(&pch
->file
.refcnt
))
2231 ppp_destroy_channel(pch
);
2235 * Callback from a channel when it can accept more to transmit.
2236 * This should be called at BH/softirq level, not interrupt level.
2239 ppp_output_wakeup(struct ppp_channel
*chan
)
2241 struct channel
*pch
= chan
->ppp
;
2245 ppp_channel_push(pch
);
2249 * Compression control.
2252 /* Process the PPPIOCSCOMPRESS ioctl. */
2254 ppp_set_compress(struct ppp
*ppp
, unsigned long arg
)
2257 struct compressor
*cp
, *ocomp
;
2258 struct ppp_option_data data
;
2259 void *state
, *ostate
;
2260 unsigned char ccp_option
[CCP_MAX_OPTION_LENGTH
];
2263 if (copy_from_user(&data
, (void __user
*) arg
, sizeof(data
)) ||
2264 (data
.length
<= CCP_MAX_OPTION_LENGTH
&&
2265 copy_from_user(ccp_option
, (void __user
*) data
.ptr
, data
.length
)))
2268 if (data
.length
> CCP_MAX_OPTION_LENGTH
||
2269 ccp_option
[1] < 2 || ccp_option
[1] > data
.length
)
2272 cp
= try_then_request_module(
2273 find_compressor(ccp_option
[0]),
2274 "ppp-compress-%d", ccp_option
[0]);
2279 if (data
.transmit
) {
2280 state
= cp
->comp_alloc(ccp_option
, data
.length
);
2283 ppp
->xstate
&= ~SC_COMP_RUN
;
2285 ostate
= ppp
->xc_state
;
2287 ppp
->xc_state
= state
;
2288 ppp_xmit_unlock(ppp
);
2290 ocomp
->comp_free(ostate
);
2291 module_put(ocomp
->owner
);
2295 module_put(cp
->owner
);
2298 state
= cp
->decomp_alloc(ccp_option
, data
.length
);
2301 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2303 ostate
= ppp
->rc_state
;
2305 ppp
->rc_state
= state
;
2306 ppp_recv_unlock(ppp
);
2308 ocomp
->decomp_free(ostate
);
2309 module_put(ocomp
->owner
);
2313 module_put(cp
->owner
);
2321 * Look at a CCP packet and update our state accordingly.
2322 * We assume the caller has the xmit or recv path locked.
2325 ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
)
2330 if (!pskb_may_pull(skb
, CCP_HDRLEN
+ 2))
2331 return; /* no header */
2334 switch (CCP_CODE(dp
)) {
2337 /* A ConfReq starts negotiation of compression
2338 * in one direction of transmission,
2339 * and hence brings it down...but which way?
2342 * A ConfReq indicates what the sender would like to receive
2345 /* He is proposing what I should send */
2346 ppp
->xstate
&= ~SC_COMP_RUN
;
2348 /* I am proposing to what he should send */
2349 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2356 * CCP is going down, both directions of transmission
2358 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2359 ppp
->xstate
&= ~SC_COMP_RUN
;
2363 if ((ppp
->flags
& (SC_CCP_OPEN
| SC_CCP_UP
)) != SC_CCP_OPEN
)
2365 len
= CCP_LENGTH(dp
);
2366 if (!pskb_may_pull(skb
, len
+ 2))
2367 return; /* too short */
2370 if (len
< CCP_OPT_MINLEN
|| len
< CCP_OPT_LENGTH(dp
))
2373 /* we will start receiving compressed packets */
2376 if (ppp
->rcomp
->decomp_init(ppp
->rc_state
, dp
, len
,
2377 ppp
->file
.index
, 0, ppp
->mru
, ppp
->debug
)) {
2378 ppp
->rstate
|= SC_DECOMP_RUN
;
2379 ppp
->rstate
&= ~(SC_DC_ERROR
| SC_DC_FERROR
);
2382 /* we will soon start sending compressed packets */
2385 if (ppp
->xcomp
->comp_init(ppp
->xc_state
, dp
, len
,
2386 ppp
->file
.index
, 0, ppp
->debug
))
2387 ppp
->xstate
|= SC_COMP_RUN
;
2392 /* reset the [de]compressor */
2393 if ((ppp
->flags
& SC_CCP_UP
) == 0)
2396 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
)) {
2397 ppp
->rcomp
->decomp_reset(ppp
->rc_state
);
2398 ppp
->rstate
&= ~SC_DC_ERROR
;
2401 if (ppp
->xc_state
&& (ppp
->xstate
& SC_COMP_RUN
))
2402 ppp
->xcomp
->comp_reset(ppp
->xc_state
);
2408 /* Free up compression resources. */
2410 ppp_ccp_closed(struct ppp
*ppp
)
2412 void *xstate
, *rstate
;
2413 struct compressor
*xcomp
, *rcomp
;
2416 ppp
->flags
&= ~(SC_CCP_OPEN
| SC_CCP_UP
);
2419 xstate
= ppp
->xc_state
;
2420 ppp
->xc_state
= NULL
;
2423 rstate
= ppp
->rc_state
;
2424 ppp
->rc_state
= NULL
;
2428 xcomp
->comp_free(xstate
);
2429 module_put(xcomp
->owner
);
2432 rcomp
->decomp_free(rstate
);
2433 module_put(rcomp
->owner
);
2437 /* List of compressors. */
2438 static LIST_HEAD(compressor_list
);
2439 static DEFINE_SPINLOCK(compressor_list_lock
);
2441 struct compressor_entry
{
2442 struct list_head list
;
2443 struct compressor
*comp
;
2446 static struct compressor_entry
*
2447 find_comp_entry(int proto
)
2449 struct compressor_entry
*ce
;
2451 list_for_each_entry(ce
, &compressor_list
, list
) {
2452 if (ce
->comp
->compress_proto
== proto
)
2458 /* Register a compressor */
2460 ppp_register_compressor(struct compressor
*cp
)
2462 struct compressor_entry
*ce
;
2464 spin_lock(&compressor_list_lock
);
2466 if (find_comp_entry(cp
->compress_proto
))
2469 ce
= kmalloc(sizeof(struct compressor_entry
), GFP_ATOMIC
);
2474 list_add(&ce
->list
, &compressor_list
);
2476 spin_unlock(&compressor_list_lock
);
2480 /* Unregister a compressor */
2482 ppp_unregister_compressor(struct compressor
*cp
)
2484 struct compressor_entry
*ce
;
2486 spin_lock(&compressor_list_lock
);
2487 ce
= find_comp_entry(cp
->compress_proto
);
2488 if (ce
&& ce
->comp
== cp
) {
2489 list_del(&ce
->list
);
2492 spin_unlock(&compressor_list_lock
);
2495 /* Find a compressor. */
2496 static struct compressor
*
2497 find_compressor(int type
)
2499 struct compressor_entry
*ce
;
2500 struct compressor
*cp
= NULL
;
2502 spin_lock(&compressor_list_lock
);
2503 ce
= find_comp_entry(type
);
2506 if (!try_module_get(cp
->owner
))
2509 spin_unlock(&compressor_list_lock
);
2514 * Miscelleneous stuff.
2518 ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
)
2520 struct slcompress
*vj
= ppp
->vj
;
2522 memset(st
, 0, sizeof(*st
));
2523 st
->p
.ppp_ipackets
= ppp
->dev
->stats
.rx_packets
;
2524 st
->p
.ppp_ierrors
= ppp
->dev
->stats
.rx_errors
;
2525 st
->p
.ppp_ibytes
= ppp
->dev
->stats
.rx_bytes
;
2526 st
->p
.ppp_opackets
= ppp
->dev
->stats
.tx_packets
;
2527 st
->p
.ppp_oerrors
= ppp
->dev
->stats
.tx_errors
;
2528 st
->p
.ppp_obytes
= ppp
->dev
->stats
.tx_bytes
;
2531 st
->vj
.vjs_packets
= vj
->sls_o_compressed
+ vj
->sls_o_uncompressed
;
2532 st
->vj
.vjs_compressed
= vj
->sls_o_compressed
;
2533 st
->vj
.vjs_searches
= vj
->sls_o_searches
;
2534 st
->vj
.vjs_misses
= vj
->sls_o_misses
;
2535 st
->vj
.vjs_errorin
= vj
->sls_i_error
;
2536 st
->vj
.vjs_tossed
= vj
->sls_i_tossed
;
2537 st
->vj
.vjs_uncompressedin
= vj
->sls_i_uncompressed
;
2538 st
->vj
.vjs_compressedin
= vj
->sls_i_compressed
;
2542 * Stuff for handling the lists of ppp units and channels
2543 * and for initialization.
2547 * Create a new ppp interface unit. Fails if it can't allocate memory
2548 * or if there is already a unit with the requested number.
2549 * unit == -1 means allocate a new number.
2552 ppp_create_interface(struct net
*net
, int unit
, int *retp
)
2556 struct net_device
*dev
= NULL
;
2560 dev
= alloc_netdev(sizeof(struct ppp
), "", ppp_setup
);
2564 pn
= ppp_pernet(net
);
2566 ppp
= netdev_priv(dev
);
2569 init_ppp_file(&ppp
->file
, INTERFACE
);
2570 ppp
->file
.hdrlen
= PPP_HDRLEN
- 2; /* don't count proto bytes */
2571 for (i
= 0; i
< NUM_NP
; ++i
)
2572 ppp
->npmode
[i
] = NPMODE_PASS
;
2573 INIT_LIST_HEAD(&ppp
->channels
);
2574 spin_lock_init(&ppp
->rlock
);
2575 spin_lock_init(&ppp
->wlock
);
2576 #ifdef CONFIG_PPP_MULTILINK
2578 skb_queue_head_init(&ppp
->mrq
);
2579 #endif /* CONFIG_PPP_MULTILINK */
2582 * drum roll: don't forget to set
2583 * the net device is belong to
2585 dev_net_set(dev
, net
);
2587 mutex_lock(&pn
->all_ppp_mutex
);
2590 unit
= unit_get(&pn
->units_idr
, ppp
);
2597 if (unit_find(&pn
->units_idr
, unit
))
2598 goto out2
; /* unit already exists */
2600 * if caller need a specified unit number
2601 * lets try to satisfy him, otherwise --
2602 * he should better ask us for new unit number
2604 * NOTE: yes I know that returning EEXIST it's not
2605 * fair but at least pppd will ask us to allocate
2606 * new unit in this case so user is happy :)
2608 unit
= unit_set(&pn
->units_idr
, ppp
, unit
);
2613 /* Initialize the new ppp unit */
2614 ppp
->file
.index
= unit
;
2615 sprintf(dev
->name
, "ppp%d", unit
);
2617 ret
= register_netdev(dev
);
2619 unit_put(&pn
->units_idr
, unit
);
2620 printk(KERN_ERR
"PPP: couldn't register device %s (%d)\n",
2627 atomic_inc(&ppp_unit_count
);
2628 mutex_unlock(&pn
->all_ppp_mutex
);
2634 mutex_unlock(&pn
->all_ppp_mutex
);
2642 * Initialize a ppp_file structure.
2645 init_ppp_file(struct ppp_file
*pf
, int kind
)
2648 skb_queue_head_init(&pf
->xq
);
2649 skb_queue_head_init(&pf
->rq
);
2650 atomic_set(&pf
->refcnt
, 1);
2651 init_waitqueue_head(&pf
->rwait
);
2655 * Take down a ppp interface unit - called when the owning file
2656 * (the one that created the unit) is closed or detached.
2658 static void ppp_shutdown_interface(struct ppp
*ppp
)
2662 pn
= ppp_pernet(ppp
->ppp_net
);
2663 mutex_lock(&pn
->all_ppp_mutex
);
2665 /* This will call dev_close() for us. */
2667 if (!ppp
->closing
) {
2670 unregister_netdev(ppp
->dev
);
2671 unit_put(&pn
->units_idr
, ppp
->file
.index
);
2677 wake_up_interruptible(&ppp
->file
.rwait
);
2679 mutex_unlock(&pn
->all_ppp_mutex
);
2683 * Free the memory used by a ppp unit. This is only called once
2684 * there are no channels connected to the unit and no file structs
2685 * that reference the unit.
2687 static void ppp_destroy_interface(struct ppp
*ppp
)
2689 atomic_dec(&ppp_unit_count
);
2691 if (!ppp
->file
.dead
|| ppp
->n_channels
) {
2692 /* "can't happen" */
2693 printk(KERN_ERR
"ppp: destroying ppp struct %p but dead=%d "
2694 "n_channels=%d !\n", ppp
, ppp
->file
.dead
,
2699 ppp_ccp_closed(ppp
);
2704 skb_queue_purge(&ppp
->file
.xq
);
2705 skb_queue_purge(&ppp
->file
.rq
);
2706 #ifdef CONFIG_PPP_MULTILINK
2707 skb_queue_purge(&ppp
->mrq
);
2708 #endif /* CONFIG_PPP_MULTILINK */
2709 #ifdef CONFIG_PPP_FILTER
2710 kfree(ppp
->pass_filter
);
2711 ppp
->pass_filter
= NULL
;
2712 kfree(ppp
->active_filter
);
2713 ppp
->active_filter
= NULL
;
2714 #endif /* CONFIG_PPP_FILTER */
2716 kfree_skb(ppp
->xmit_pending
);
2718 free_netdev(ppp
->dev
);
2722 * Locate an existing ppp unit.
2723 * The caller should have locked the all_ppp_mutex.
2726 ppp_find_unit(struct ppp_net
*pn
, int unit
)
2728 return unit_find(&pn
->units_idr
, unit
);
2732 * Locate an existing ppp channel.
2733 * The caller should have locked the all_channels_lock.
2734 * First we look in the new_channels list, then in the
2735 * all_channels list. If found in the new_channels list,
2736 * we move it to the all_channels list. This is for speed
2737 * when we have a lot of channels in use.
2739 static struct channel
*
2740 ppp_find_channel(struct ppp_net
*pn
, int unit
)
2742 struct channel
*pch
;
2744 list_for_each_entry(pch
, &pn
->new_channels
, list
) {
2745 if (pch
->file
.index
== unit
) {
2746 list_move(&pch
->list
, &pn
->all_channels
);
2751 list_for_each_entry(pch
, &pn
->all_channels
, list
) {
2752 if (pch
->file
.index
== unit
)
2760 * Connect a PPP channel to a PPP interface unit.
2763 ppp_connect_channel(struct channel
*pch
, int unit
)
2770 pn
= ppp_pernet(pch
->chan_net
);
2772 mutex_lock(&pn
->all_ppp_mutex
);
2773 ppp
= ppp_find_unit(pn
, unit
);
2776 write_lock_bh(&pch
->upl
);
2782 if (pch
->file
.hdrlen
> ppp
->file
.hdrlen
)
2783 ppp
->file
.hdrlen
= pch
->file
.hdrlen
;
2784 hdrlen
= pch
->file
.hdrlen
+ 2; /* for protocol bytes */
2785 if (hdrlen
> ppp
->dev
->hard_header_len
)
2786 ppp
->dev
->hard_header_len
= hdrlen
;
2787 list_add_tail(&pch
->clist
, &ppp
->channels
);
2790 atomic_inc(&ppp
->file
.refcnt
);
2795 write_unlock_bh(&pch
->upl
);
2797 mutex_unlock(&pn
->all_ppp_mutex
);
2802 * Disconnect a channel from its ppp unit.
2805 ppp_disconnect_channel(struct channel
*pch
)
2810 write_lock_bh(&pch
->upl
);
2813 write_unlock_bh(&pch
->upl
);
2815 /* remove it from the ppp unit's list */
2817 list_del(&pch
->clist
);
2818 if (--ppp
->n_channels
== 0)
2819 wake_up_interruptible(&ppp
->file
.rwait
);
2821 if (atomic_dec_and_test(&ppp
->file
.refcnt
))
2822 ppp_destroy_interface(ppp
);
2829 * Free up the resources used by a ppp channel.
2831 static void ppp_destroy_channel(struct channel
*pch
)
2833 atomic_dec(&channel_count
);
2835 if (!pch
->file
.dead
) {
2836 /* "can't happen" */
2837 printk(KERN_ERR
"ppp: destroying undead channel %p !\n",
2841 skb_queue_purge(&pch
->file
.xq
);
2842 skb_queue_purge(&pch
->file
.rq
);
2846 static void __exit
ppp_cleanup(void)
2848 /* should never happen */
2849 if (atomic_read(&ppp_unit_count
) || atomic_read(&channel_count
))
2850 printk(KERN_ERR
"PPP: removing module but units remain!\n");
2851 unregister_chrdev(PPP_MAJOR
, "ppp");
2852 device_destroy(ppp_class
, MKDEV(PPP_MAJOR
, 0));
2853 class_destroy(ppp_class
);
2854 unregister_pernet_device(&ppp_net_ops
);
2858 * Units handling. Caller must protect concurrent access
2859 * by holding all_ppp_mutex
2862 static int __unit_alloc(struct idr
*p
, void *ptr
, int n
)
2867 if (!idr_pre_get(p
, GFP_KERNEL
)) {
2868 printk(KERN_ERR
"PPP: No free memory for idr\n");
2872 err
= idr_get_new_above(p
, ptr
, n
, &unit
);
2882 /* associate pointer with specified number */
2883 static int unit_set(struct idr
*p
, void *ptr
, int n
)
2887 unit
= __unit_alloc(p
, ptr
, n
);
2890 else if (unit
!= n
) {
2891 idr_remove(p
, unit
);
2898 /* get new free unit number and associate pointer with it */
2899 static int unit_get(struct idr
*p
, void *ptr
)
2901 return __unit_alloc(p
, ptr
, 0);
2904 /* put unit number back to a pool */
2905 static void unit_put(struct idr
*p
, int n
)
2910 /* get pointer associated with the number */
2911 static void *unit_find(struct idr
*p
, int n
)
2913 return idr_find(p
, n
);
2916 /* Module/initialization stuff */
2918 module_init(ppp_init
);
2919 module_exit(ppp_cleanup
);
2921 EXPORT_SYMBOL(ppp_register_net_channel
);
2922 EXPORT_SYMBOL(ppp_register_channel
);
2923 EXPORT_SYMBOL(ppp_unregister_channel
);
2924 EXPORT_SYMBOL(ppp_channel_index
);
2925 EXPORT_SYMBOL(ppp_unit_number
);
2926 EXPORT_SYMBOL(ppp_dev_name
);
2927 EXPORT_SYMBOL(ppp_input
);
2928 EXPORT_SYMBOL(ppp_input_error
);
2929 EXPORT_SYMBOL(ppp_output_wakeup
);
2930 EXPORT_SYMBOL(ppp_register_compressor
);
2931 EXPORT_SYMBOL(ppp_unregister_compressor
);
2932 MODULE_LICENSE("GPL");
2933 MODULE_ALIAS_CHARDEV(PPP_MAJOR
, 0);
2934 MODULE_ALIAS("devname:ppp");