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/config.h>
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28 #include <linux/kmod.h>
29 #include <linux/init.h>
30 #include <linux/list.h>
31 #include <linux/devfs_fs_kernel.h>
32 #include <linux/netdevice.h>
33 #include <linux/poll.h>
34 #include <linux/ppp_defs.h>
35 #include <linux/filter.h>
36 #include <linux/if_ppp.h>
37 #include <linux/ppp_channel.h>
38 #include <linux/ppp-comp.h>
39 #include <linux/skbuff.h>
40 #include <linux/rtnetlink.h>
41 #include <linux/if_arp.h>
43 #include <linux/tcp.h>
44 #include <linux/spinlock.h>
45 #include <linux/smp_lock.h>
46 #include <linux/rwsem.h>
47 #include <linux/stddef.h>
48 #include <linux/device.h>
49 #include <linux/mutex.h>
50 #include <net/slhc_vj.h>
51 #include <asm/atomic.h>
53 #define PPP_VERSION "2.4.2"
56 * Network protocols we support.
58 #define NP_IP 0 /* Internet Protocol V4 */
59 #define NP_IPV6 1 /* Internet Protocol V6 */
60 #define NP_IPX 2 /* IPX protocol */
61 #define NP_AT 3 /* Appletalk protocol */
62 #define NP_MPLS_UC 4 /* MPLS unicast */
63 #define NP_MPLS_MC 5 /* MPLS multicast */
64 #define NUM_NP 6 /* Number of NPs. */
66 #define MPHDRLEN 6 /* multilink protocol header length */
67 #define MPHDRLEN_SSN 4 /* ditto with short sequence numbers */
68 #define MIN_FRAG_SIZE 64
71 * An instance of /dev/ppp can be associated with either a ppp
72 * interface unit or a ppp channel. In both cases, file->private_data
73 * points to one of these.
79 struct sk_buff_head xq
; /* pppd transmit queue */
80 struct sk_buff_head rq
; /* receive queue for pppd */
81 wait_queue_head_t rwait
; /* for poll on reading /dev/ppp */
82 atomic_t refcnt
; /* # refs (incl /dev/ppp attached) */
83 int hdrlen
; /* space to leave for headers */
84 int index
; /* interface unit / channel number */
85 int dead
; /* unit/channel has been shut down */
88 #define PF_TO_X(pf, X) ((X *)((char *)(pf) - offsetof(X, file)))
90 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
91 #define PF_TO_CHANNEL(pf) PF_TO_X(pf, struct channel)
93 #define ROUNDUP(n, x) (((n) + (x) - 1) / (x))
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 #ifdef CONFIG_PPP_MULTILINK
124 int nxchan
; /* next channel to send something on */
125 u32 nxseq
; /* next sequence number to send */
126 int mrru
; /* MP: max reconst. receive unit */
127 u32 nextseq
; /* MP: seq no of next packet */
128 u32 minseq
; /* MP: min of most recent seqnos */
129 struct sk_buff_head mrq
; /* MP: receive reconstruction queue */
130 #endif /* CONFIG_PPP_MULTILINK */
131 struct net_device_stats stats
; /* statistics */
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 */
140 * Bits in flags: SC_NO_TCP_CCID, SC_CCP_OPEN, SC_CCP_UP, SC_LOOP_TRAFFIC,
141 * SC_MULTILINK, SC_MP_SHORTSEQ, SC_MP_XSHORTSEQ, SC_COMP_TCP, SC_REJ_COMP_TCP,
143 * Bits in rstate: SC_DECOMP_RUN, SC_DC_ERROR, SC_DC_FERROR.
144 * Bits in xstate: SC_COMP_RUN
146 #define SC_FLAG_BITS (SC_NO_TCP_CCID|SC_CCP_OPEN|SC_CCP_UP|SC_LOOP_TRAFFIC \
147 |SC_MULTILINK|SC_MP_SHORTSEQ|SC_MP_XSHORTSEQ \
148 |SC_COMP_TCP|SC_REJ_COMP_TCP|SC_MUST_COMP)
151 * Private data structure for each channel.
152 * This includes the data structure used for multilink.
155 struct ppp_file file
; /* stuff for read/write/poll */
156 struct list_head list
; /* link in all/new_channels list */
157 struct ppp_channel
*chan
; /* public channel data structure */
158 struct rw_semaphore chan_sem
; /* protects `chan' during chan ioctl */
159 spinlock_t downl
; /* protects `chan', file.xq dequeue */
160 struct ppp
*ppp
; /* ppp unit we're connected to */
161 struct list_head clist
; /* link in list of channels per unit */
162 rwlock_t upl
; /* protects `ppp' */
163 #ifdef CONFIG_PPP_MULTILINK
164 u8 avail
; /* flag used in multilink stuff */
165 u8 had_frag
; /* >= 1 fragments have been sent */
166 u32 lastseq
; /* MP: last sequence # received */
167 #endif /* CONFIG_PPP_MULTILINK */
171 * SMP locking issues:
172 * Both the ppp.rlock and ppp.wlock locks protect the ppp.channels
173 * list and the ppp.n_channels field, you need to take both locks
174 * before you modify them.
175 * The lock ordering is: channel.upl -> ppp.wlock -> ppp.rlock ->
180 * A cardmap represents a mapping from unsigned integers to pointers,
181 * and provides a fast "find lowest unused number" operation.
182 * It uses a broad (32-way) tree with a bitmap at each level.
183 * It is designed to be space-efficient for small numbers of entries
184 * and time-efficient for large numbers of entries.
186 #define CARDMAP_ORDER 5
187 #define CARDMAP_WIDTH (1U << CARDMAP_ORDER)
188 #define CARDMAP_MASK (CARDMAP_WIDTH - 1)
193 struct cardmap
*parent
;
194 void *ptr
[CARDMAP_WIDTH
];
196 static void *cardmap_get(struct cardmap
*map
, unsigned int nr
);
197 static void cardmap_set(struct cardmap
**map
, unsigned int nr
, void *ptr
);
198 static unsigned int cardmap_find_first_free(struct cardmap
*map
);
199 static void cardmap_destroy(struct cardmap
**map
);
202 * all_ppp_mutex protects the all_ppp_units mapping.
203 * It also ensures that finding a ppp unit in the all_ppp_units map
204 * and updating its file.refcnt field is atomic.
206 static DEFINE_MUTEX(all_ppp_mutex
);
207 static struct cardmap
*all_ppp_units
;
208 static atomic_t ppp_unit_count
= ATOMIC_INIT(0);
211 * all_channels_lock protects all_channels and last_channel_index,
212 * and the atomicity of find a channel and updating its file.refcnt
215 static DEFINE_SPINLOCK(all_channels_lock
);
216 static LIST_HEAD(all_channels
);
217 static LIST_HEAD(new_channels
);
218 static int last_channel_index
;
219 static atomic_t channel_count
= ATOMIC_INIT(0);
221 /* Get the PPP protocol number from a skb */
222 #define PPP_PROTO(skb) (((skb)->data[0] << 8) + (skb)->data[1])
224 /* We limit the length of ppp->file.rq to this (arbitrary) value */
225 #define PPP_MAX_RQLEN 32
228 * Maximum number of multilink fragments queued up.
229 * This has to be large enough to cope with the maximum latency of
230 * the slowest channel relative to the others. Strictly it should
231 * depend on the number of channels and their characteristics.
233 #define PPP_MP_MAX_QLEN 128
235 /* Multilink header bits. */
236 #define B 0x80 /* this fragment begins a packet */
237 #define E 0x40 /* this fragment ends a packet */
239 /* Compare multilink sequence numbers (assumed to be 32 bits wide) */
240 #define seq_before(a, b) ((s32)((a) - (b)) < 0)
241 #define seq_after(a, b) ((s32)((a) - (b)) > 0)
244 static int ppp_unattached_ioctl(struct ppp_file
*pf
, struct file
*file
,
245 unsigned int cmd
, unsigned long arg
);
246 static void ppp_xmit_process(struct ppp
*ppp
);
247 static void ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
248 static void ppp_push(struct ppp
*ppp
);
249 static void ppp_channel_push(struct channel
*pch
);
250 static void ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
251 struct channel
*pch
);
252 static void ppp_receive_error(struct ppp
*ppp
);
253 static void ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
);
254 static struct sk_buff
*ppp_decompress_frame(struct ppp
*ppp
,
255 struct sk_buff
*skb
);
256 #ifdef CONFIG_PPP_MULTILINK
257 static void ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
,
258 struct channel
*pch
);
259 static void ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
);
260 static struct sk_buff
*ppp_mp_reconstruct(struct ppp
*ppp
);
261 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
);
262 #endif /* CONFIG_PPP_MULTILINK */
263 static int ppp_set_compress(struct ppp
*ppp
, unsigned long arg
);
264 static void ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
);
265 static void ppp_ccp_closed(struct ppp
*ppp
);
266 static struct compressor
*find_compressor(int type
);
267 static void ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
);
268 static struct ppp
*ppp_create_interface(int unit
, int *retp
);
269 static void init_ppp_file(struct ppp_file
*pf
, int kind
);
270 static void ppp_shutdown_interface(struct ppp
*ppp
);
271 static void ppp_destroy_interface(struct ppp
*ppp
);
272 static struct ppp
*ppp_find_unit(int unit
);
273 static struct channel
*ppp_find_channel(int unit
);
274 static int ppp_connect_channel(struct channel
*pch
, int unit
);
275 static int ppp_disconnect_channel(struct channel
*pch
);
276 static void ppp_destroy_channel(struct channel
*pch
);
278 static struct class *ppp_class
;
280 /* Translates a PPP protocol number to a NP index (NP == network protocol) */
281 static inline int proto_to_npindex(int proto
)
300 /* Translates an NP index into a PPP protocol number */
301 static const int npindex_to_proto
[NUM_NP
] = {
310 /* Translates an ethertype into an NP index */
311 static inline int ethertype_to_npindex(int ethertype
)
331 /* Translates an NP index into an ethertype */
332 static const int npindex_to_ethertype
[NUM_NP
] = {
344 #define ppp_xmit_lock(ppp) spin_lock_bh(&(ppp)->wlock)
345 #define ppp_xmit_unlock(ppp) spin_unlock_bh(&(ppp)->wlock)
346 #define ppp_recv_lock(ppp) spin_lock_bh(&(ppp)->rlock)
347 #define ppp_recv_unlock(ppp) spin_unlock_bh(&(ppp)->rlock)
348 #define ppp_lock(ppp) do { ppp_xmit_lock(ppp); \
349 ppp_recv_lock(ppp); } while (0)
350 #define ppp_unlock(ppp) do { ppp_recv_unlock(ppp); \
351 ppp_xmit_unlock(ppp); } while (0)
354 * /dev/ppp device routines.
355 * The /dev/ppp device is used by pppd to control the ppp unit.
356 * It supports the read, write, ioctl and poll functions.
357 * Open instances of /dev/ppp can be in one of three states:
358 * unattached, attached to a ppp unit, or attached to a ppp channel.
360 static int ppp_open(struct inode
*inode
, struct file
*file
)
363 * This could (should?) be enforced by the permissions on /dev/ppp.
365 if (!capable(CAP_NET_ADMIN
))
370 static int ppp_release(struct inode
*inode
, struct file
*file
)
372 struct ppp_file
*pf
= file
->private_data
;
376 file
->private_data
= NULL
;
377 if (pf
->kind
== INTERFACE
) {
379 if (file
== ppp
->owner
)
380 ppp_shutdown_interface(ppp
);
382 if (atomic_dec_and_test(&pf
->refcnt
)) {
385 ppp_destroy_interface(PF_TO_PPP(pf
));
388 ppp_destroy_channel(PF_TO_CHANNEL(pf
));
396 static ssize_t
ppp_read(struct file
*file
, char __user
*buf
,
397 size_t count
, loff_t
*ppos
)
399 struct ppp_file
*pf
= file
->private_data
;
400 DECLARE_WAITQUEUE(wait
, current
);
402 struct sk_buff
*skb
= NULL
;
408 add_wait_queue(&pf
->rwait
, &wait
);
410 set_current_state(TASK_INTERRUPTIBLE
);
411 skb
= skb_dequeue(&pf
->rq
);
417 if (pf
->kind
== INTERFACE
) {
419 * Return 0 (EOF) on an interface that has no
420 * channels connected, unless it is looping
421 * network traffic (demand mode).
423 struct ppp
*ppp
= PF_TO_PPP(pf
);
424 if (ppp
->n_channels
== 0
425 && (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
429 if (file
->f_flags
& O_NONBLOCK
)
432 if (signal_pending(current
))
436 set_current_state(TASK_RUNNING
);
437 remove_wait_queue(&pf
->rwait
, &wait
);
443 if (skb
->len
> count
)
446 if (copy_to_user(buf
, skb
->data
, skb
->len
))
456 static ssize_t
ppp_write(struct file
*file
, const char __user
*buf
,
457 size_t count
, loff_t
*ppos
)
459 struct ppp_file
*pf
= file
->private_data
;
466 skb
= alloc_skb(count
+ pf
->hdrlen
, GFP_KERNEL
);
469 skb_reserve(skb
, pf
->hdrlen
);
471 if (copy_from_user(skb_put(skb
, count
), buf
, count
)) {
476 skb_queue_tail(&pf
->xq
, skb
);
480 ppp_xmit_process(PF_TO_PPP(pf
));
483 ppp_channel_push(PF_TO_CHANNEL(pf
));
493 /* No kernel lock - fine */
494 static unsigned int ppp_poll(struct file
*file
, poll_table
*wait
)
496 struct ppp_file
*pf
= file
->private_data
;
501 poll_wait(file
, &pf
->rwait
, wait
);
502 mask
= POLLOUT
| POLLWRNORM
;
503 if (skb_peek(&pf
->rq
) != 0)
504 mask
|= POLLIN
| POLLRDNORM
;
507 else if (pf
->kind
== INTERFACE
) {
508 /* see comment in ppp_read */
509 struct ppp
*ppp
= PF_TO_PPP(pf
);
510 if (ppp
->n_channels
== 0
511 && (ppp
->flags
& SC_LOOP_TRAFFIC
) == 0)
512 mask
|= POLLIN
| POLLRDNORM
;
518 #ifdef CONFIG_PPP_FILTER
519 static int get_filter(void __user
*arg
, struct sock_filter
**p
)
521 struct sock_fprog uprog
;
522 struct sock_filter
*code
= NULL
;
525 if (copy_from_user(&uprog
, arg
, sizeof(uprog
)))
533 len
= uprog
.len
* sizeof(struct sock_filter
);
534 code
= kmalloc(len
, GFP_KERNEL
);
538 if (copy_from_user(code
, uprog
.filter
, len
)) {
543 err
= sk_chk_filter(code
, uprog
.len
);
552 #endif /* CONFIG_PPP_FILTER */
554 static int ppp_ioctl(struct inode
*inode
, struct file
*file
,
555 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(pf
, file
, cmd
, arg
);
570 if (cmd
== PPPIOCDETACH
) {
572 * We have to be careful here... if the file descriptor
573 * has been dup'd, we could have another process in the
574 * middle of a poll using the same file *, so we had
575 * better not free the interface data structures -
576 * instead we fail the ioctl. Even in this case, we
577 * shut down the interface if we are the owner of it.
578 * Actually, we should get rid of PPPIOCDETACH, userland
579 * (i.e. pppd) could achieve the same effect by closing
580 * this fd and reopening /dev/ppp.
583 if (pf
->kind
== INTERFACE
) {
585 if (file
== ppp
->owner
)
586 ppp_shutdown_interface(ppp
);
588 if (atomic_read(&file
->f_count
) <= 2) {
589 ppp_release(inode
, file
);
592 printk(KERN_DEBUG
"PPPIOCDETACH file->f_count=%d\n",
593 atomic_read(&file
->f_count
));
597 if (pf
->kind
== CHANNEL
) {
598 struct channel
*pch
= PF_TO_CHANNEL(pf
);
599 struct ppp_channel
*chan
;
603 if (get_user(unit
, p
))
605 err
= ppp_connect_channel(pch
, unit
);
609 err
= ppp_disconnect_channel(pch
);
613 down_read(&pch
->chan_sem
);
616 if (chan
&& chan
->ops
->ioctl
)
617 err
= chan
->ops
->ioctl(chan
, cmd
, arg
);
618 up_read(&pch
->chan_sem
);
623 if (pf
->kind
!= INTERFACE
) {
625 printk(KERN_ERR
"PPP: not interface or channel??\n");
632 if (get_user(val
, p
))
639 if (get_user(val
, p
))
642 cflags
= ppp
->flags
& ~val
;
643 ppp
->flags
= val
& SC_FLAG_BITS
;
645 if (cflags
& SC_CCP_OPEN
)
651 val
= ppp
->flags
| ppp
->xstate
| ppp
->rstate
;
652 if (put_user(val
, p
))
657 case PPPIOCSCOMPRESS
:
658 err
= ppp_set_compress(ppp
, arg
);
662 if (put_user(ppp
->file
.index
, p
))
668 if (get_user(val
, p
))
675 if (put_user(ppp
->debug
, p
))
681 idle
.xmit_idle
= (jiffies
- ppp
->last_xmit
) / HZ
;
682 idle
.recv_idle
= (jiffies
- ppp
->last_recv
) / HZ
;
683 if (copy_to_user(argp
, &idle
, sizeof(idle
)))
689 if (get_user(val
, p
))
692 if ((val
>> 16) != 0) {
696 vj
= slhc_init(val2
+1, val
+1);
698 printk(KERN_ERR
"PPP: no memory (VJ compressor)\n");
712 if (copy_from_user(&npi
, argp
, sizeof(npi
)))
714 err
= proto_to_npindex(npi
.protocol
);
718 if (cmd
== PPPIOCGNPMODE
) {
720 npi
.mode
= ppp
->npmode
[i
];
721 if (copy_to_user(argp
, &npi
, sizeof(npi
)))
724 ppp
->npmode
[i
] = npi
.mode
;
725 /* we may be able to transmit more packets now (??) */
726 netif_wake_queue(ppp
->dev
);
731 #ifdef CONFIG_PPP_FILTER
734 struct sock_filter
*code
;
735 err
= get_filter(argp
, &code
);
738 kfree(ppp
->pass_filter
);
739 ppp
->pass_filter
= code
;
748 struct sock_filter
*code
;
749 err
= get_filter(argp
, &code
);
752 kfree(ppp
->active_filter
);
753 ppp
->active_filter
= code
;
754 ppp
->active_len
= err
;
760 #endif /* CONFIG_PPP_FILTER */
762 #ifdef CONFIG_PPP_MULTILINK
764 if (get_user(val
, p
))
768 ppp_recv_unlock(ppp
);
771 #endif /* CONFIG_PPP_MULTILINK */
780 static int ppp_unattached_ioctl(struct ppp_file
*pf
, struct file
*file
,
781 unsigned int cmd
, unsigned long arg
)
783 int unit
, err
= -EFAULT
;
785 struct channel
*chan
;
786 int __user
*p
= (int __user
*)arg
;
790 /* Create a new ppp unit */
791 if (get_user(unit
, p
))
793 ppp
= ppp_create_interface(unit
, &err
);
796 file
->private_data
= &ppp
->file
;
799 if (put_user(ppp
->file
.index
, p
))
805 /* Attach to an existing ppp unit */
806 if (get_user(unit
, p
))
808 mutex_lock(&all_ppp_mutex
);
810 ppp
= ppp_find_unit(unit
);
812 atomic_inc(&ppp
->file
.refcnt
);
813 file
->private_data
= &ppp
->file
;
816 mutex_unlock(&all_ppp_mutex
);
820 if (get_user(unit
, p
))
822 spin_lock_bh(&all_channels_lock
);
824 chan
= ppp_find_channel(unit
);
826 atomic_inc(&chan
->file
.refcnt
);
827 file
->private_data
= &chan
->file
;
830 spin_unlock_bh(&all_channels_lock
);
839 static struct file_operations ppp_device_fops
= {
840 .owner
= THIS_MODULE
,
846 .release
= ppp_release
849 #define PPP_MAJOR 108
851 /* Called at boot time if ppp is compiled into the kernel,
852 or at module load time (from init_module) if compiled as a module. */
853 static int __init
ppp_init(void)
857 printk(KERN_INFO
"PPP generic driver version " PPP_VERSION
"\n");
858 err
= register_chrdev(PPP_MAJOR
, "ppp", &ppp_device_fops
);
860 ppp_class
= class_create(THIS_MODULE
, "ppp");
861 if (IS_ERR(ppp_class
)) {
862 err
= PTR_ERR(ppp_class
);
865 class_device_create(ppp_class
, NULL
, MKDEV(PPP_MAJOR
, 0), NULL
, "ppp");
866 err
= devfs_mk_cdev(MKDEV(PPP_MAJOR
, 0),
867 S_IFCHR
|S_IRUSR
|S_IWUSR
, "ppp");
874 printk(KERN_ERR
"failed to register PPP device (%d)\n", err
);
878 class_device_destroy(ppp_class
, MKDEV(PPP_MAJOR
,0));
879 class_destroy(ppp_class
);
881 unregister_chrdev(PPP_MAJOR
, "ppp");
886 * Network interface unit routines.
889 ppp_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
891 struct ppp
*ppp
= (struct ppp
*) dev
->priv
;
895 npi
= ethertype_to_npindex(ntohs(skb
->protocol
));
899 /* Drop, accept or reject the packet */
900 switch (ppp
->npmode
[npi
]) {
904 /* it would be nice to have a way to tell the network
905 system to queue this one up for later. */
912 /* Put the 2-byte PPP protocol number on the front,
913 making sure there is room for the address and control fields. */
914 if (skb_headroom(skb
) < PPP_HDRLEN
) {
917 ns
= alloc_skb(skb
->len
+ dev
->hard_header_len
, GFP_ATOMIC
);
920 skb_reserve(ns
, dev
->hard_header_len
);
921 skb_copy_bits(skb
, 0, skb_put(ns
, skb
->len
), skb
->len
);
925 pp
= skb_push(skb
, 2);
926 proto
= npindex_to_proto
[npi
];
930 netif_stop_queue(dev
);
931 skb_queue_tail(&ppp
->file
.xq
, skb
);
932 ppp_xmit_process(ppp
);
937 ++ppp
->stats
.tx_dropped
;
941 static struct net_device_stats
*
942 ppp_net_stats(struct net_device
*dev
)
944 struct ppp
*ppp
= (struct ppp
*) dev
->priv
;
950 ppp_net_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
952 struct ppp
*ppp
= dev
->priv
;
954 void __user
*addr
= (void __user
*) ifr
->ifr_ifru
.ifru_data
;
955 struct ppp_stats stats
;
956 struct ppp_comp_stats cstats
;
961 ppp_get_stats(ppp
, &stats
);
962 if (copy_to_user(addr
, &stats
, sizeof(stats
)))
968 memset(&cstats
, 0, sizeof(cstats
));
969 if (ppp
->xc_state
!= 0)
970 ppp
->xcomp
->comp_stat(ppp
->xc_state
, &cstats
.c
);
971 if (ppp
->rc_state
!= 0)
972 ppp
->rcomp
->decomp_stat(ppp
->rc_state
, &cstats
.d
);
973 if (copy_to_user(addr
, &cstats
, sizeof(cstats
)))
980 if (copy_to_user(addr
, vers
, strlen(vers
) + 1))
992 static void ppp_setup(struct net_device
*dev
)
994 dev
->hard_header_len
= PPP_HDRLEN
;
997 dev
->tx_queue_len
= 3;
998 dev
->type
= ARPHRD_PPP
;
999 dev
->flags
= IFF_POINTOPOINT
| IFF_NOARP
| IFF_MULTICAST
;
1003 * Transmit-side routines.
1007 * Called to do any work queued up on the transmit side
1008 * that can now be done.
1011 ppp_xmit_process(struct ppp
*ppp
)
1013 struct sk_buff
*skb
;
1016 if (ppp
->dev
!= 0) {
1018 while (ppp
->xmit_pending
== 0
1019 && (skb
= skb_dequeue(&ppp
->file
.xq
)) != 0)
1020 ppp_send_frame(ppp
, skb
);
1021 /* If there's no work left to do, tell the core net
1022 code that we can accept some more. */
1023 if (ppp
->xmit_pending
== 0 && skb_peek(&ppp
->file
.xq
) == 0)
1024 netif_wake_queue(ppp
->dev
);
1026 ppp_xmit_unlock(ppp
);
1029 static inline struct sk_buff
*
1030 pad_compress_skb(struct ppp
*ppp
, struct sk_buff
*skb
)
1032 struct sk_buff
*new_skb
;
1034 int new_skb_size
= ppp
->dev
->mtu
+
1035 ppp
->xcomp
->comp_extra
+ ppp
->dev
->hard_header_len
;
1036 int compressor_skb_size
= ppp
->dev
->mtu
+
1037 ppp
->xcomp
->comp_extra
+ PPP_HDRLEN
;
1038 new_skb
= alloc_skb(new_skb_size
, GFP_ATOMIC
);
1040 if (net_ratelimit())
1041 printk(KERN_ERR
"PPP: no memory (comp pkt)\n");
1044 if (ppp
->dev
->hard_header_len
> PPP_HDRLEN
)
1045 skb_reserve(new_skb
,
1046 ppp
->dev
->hard_header_len
- PPP_HDRLEN
);
1048 /* compressor still expects A/C bytes in hdr */
1049 len
= ppp
->xcomp
->compress(ppp
->xc_state
, skb
->data
- 2,
1050 new_skb
->data
, skb
->len
+ 2,
1051 compressor_skb_size
);
1052 if (len
> 0 && (ppp
->flags
& SC_CCP_UP
)) {
1056 skb_pull(skb
, 2); /* pull off A/C bytes */
1057 } else if (len
== 0) {
1058 /* didn't compress, or CCP not up yet */
1064 * MPPE requires that we do not send unencrypted
1065 * frames. The compressor will return -1 if we
1066 * should drop the frame. We cannot simply test
1067 * the compress_proto because MPPE and MPPC share
1070 if (net_ratelimit())
1071 printk(KERN_ERR
"ppp: compressor dropped pkt\n");
1080 * Compress and send a frame.
1081 * The caller should have locked the xmit path,
1082 * and xmit_pending should be 0.
1085 ppp_send_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1087 int proto
= PPP_PROTO(skb
);
1088 struct sk_buff
*new_skb
;
1092 if (proto
< 0x8000) {
1093 #ifdef CONFIG_PPP_FILTER
1094 /* check if we should pass this packet */
1095 /* the filter instructions are constructed assuming
1096 a four-byte PPP header on each packet */
1097 *skb_push(skb
, 2) = 1;
1098 if (ppp
->pass_filter
1099 && sk_run_filter(skb
, ppp
->pass_filter
,
1100 ppp
->pass_len
) == 0) {
1102 printk(KERN_DEBUG
"PPP: outbound frame not passed\n");
1106 /* if this packet passes the active filter, record the time */
1107 if (!(ppp
->active_filter
1108 && sk_run_filter(skb
, ppp
->active_filter
,
1109 ppp
->active_len
) == 0))
1110 ppp
->last_xmit
= jiffies
;
1113 /* for data packets, record the time */
1114 ppp
->last_xmit
= jiffies
;
1115 #endif /* CONFIG_PPP_FILTER */
1118 ++ppp
->stats
.tx_packets
;
1119 ppp
->stats
.tx_bytes
+= skb
->len
- 2;
1123 if (ppp
->vj
== 0 || (ppp
->flags
& SC_COMP_TCP
) == 0)
1125 /* try to do VJ TCP header compression */
1126 new_skb
= alloc_skb(skb
->len
+ ppp
->dev
->hard_header_len
- 2,
1129 printk(KERN_ERR
"PPP: no memory (VJ comp pkt)\n");
1132 skb_reserve(new_skb
, ppp
->dev
->hard_header_len
- 2);
1134 len
= slhc_compress(ppp
->vj
, cp
, skb
->len
- 2,
1135 new_skb
->data
+ 2, &cp
,
1136 !(ppp
->flags
& SC_NO_TCP_CCID
));
1137 if (cp
== skb
->data
+ 2) {
1138 /* didn't compress */
1141 if (cp
[0] & SL_TYPE_COMPRESSED_TCP
) {
1142 proto
= PPP_VJC_COMP
;
1143 cp
[0] &= ~SL_TYPE_COMPRESSED_TCP
;
1145 proto
= PPP_VJC_UNCOMP
;
1146 cp
[0] = skb
->data
[2];
1150 cp
= skb_put(skb
, len
+ 2);
1157 /* peek at outbound CCP frames */
1158 ppp_ccp_peek(ppp
, skb
, 0);
1162 /* try to do packet compression */
1163 if ((ppp
->xstate
& SC_COMP_RUN
) && ppp
->xc_state
!= 0
1164 && proto
!= PPP_LCP
&& proto
!= PPP_CCP
) {
1165 if (!(ppp
->flags
& SC_CCP_UP
) && (ppp
->flags
& SC_MUST_COMP
)) {
1166 if (net_ratelimit())
1167 printk(KERN_ERR
"ppp: compression required but down - pkt dropped.\n");
1170 skb
= pad_compress_skb(ppp
, skb
);
1176 * If we are waiting for traffic (demand dialling),
1177 * queue it up for pppd to receive.
1179 if (ppp
->flags
& SC_LOOP_TRAFFIC
) {
1180 if (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
)
1182 skb_queue_tail(&ppp
->file
.rq
, skb
);
1183 wake_up_interruptible(&ppp
->file
.rwait
);
1187 ppp
->xmit_pending
= skb
;
1194 ++ppp
->stats
.tx_errors
;
1198 * Try to send the frame in xmit_pending.
1199 * The caller should have the xmit path locked.
1202 ppp_push(struct ppp
*ppp
)
1204 struct list_head
*list
;
1205 struct channel
*pch
;
1206 struct sk_buff
*skb
= ppp
->xmit_pending
;
1211 list
= &ppp
->channels
;
1212 if (list_empty(list
)) {
1213 /* nowhere to send the packet, just drop it */
1214 ppp
->xmit_pending
= NULL
;
1219 if ((ppp
->flags
& SC_MULTILINK
) == 0) {
1220 /* not doing multilink: send it down the first channel */
1222 pch
= list_entry(list
, struct channel
, clist
);
1224 spin_lock_bh(&pch
->downl
);
1226 if (pch
->chan
->ops
->start_xmit(pch
->chan
, skb
))
1227 ppp
->xmit_pending
= NULL
;
1229 /* channel got unregistered */
1231 ppp
->xmit_pending
= NULL
;
1233 spin_unlock_bh(&pch
->downl
);
1237 #ifdef CONFIG_PPP_MULTILINK
1238 /* Multilink: fragment the packet over as many links
1239 as can take the packet at the moment. */
1240 if (!ppp_mp_explode(ppp
, skb
))
1242 #endif /* CONFIG_PPP_MULTILINK */
1244 ppp
->xmit_pending
= NULL
;
1248 #ifdef CONFIG_PPP_MULTILINK
1250 * Divide a packet to be transmitted into fragments and
1251 * send them out the individual links.
1253 static int ppp_mp_explode(struct ppp
*ppp
, struct sk_buff
*skb
)
1256 int i
, bits
, hdrlen
, mtu
;
1260 unsigned char *p
, *q
;
1261 struct list_head
*list
;
1262 struct channel
*pch
;
1263 struct sk_buff
*frag
;
1264 struct ppp_channel
*chan
;
1266 nfree
= 0; /* # channels which have no packet already queued */
1267 navail
= 0; /* total # of usable channels (not deregistered) */
1268 hdrlen
= (ppp
->flags
& SC_MP_XSHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1270 list_for_each_entry(pch
, &ppp
->channels
, clist
) {
1271 navail
+= pch
->avail
= (pch
->chan
!= NULL
);
1273 if (skb_queue_empty(&pch
->file
.xq
) ||
1278 if (!pch
->had_frag
&& i
< ppp
->nxchan
)
1285 * Don't start sending this packet unless at least half of
1286 * the channels are free. This gives much better TCP
1287 * performance if we have a lot of channels.
1289 if (nfree
== 0 || nfree
< navail
/ 2)
1290 return 0; /* can't take now, leave it in xmit_pending */
1292 /* Do protocol field compression (XXX this should be optional) */
1301 * Decide on fragment size.
1302 * We create a fragment for each free channel regardless of
1303 * how small they are (i.e. even 0 length) in order to minimize
1304 * the time that it will take to detect when a channel drops
1309 fragsize
= ROUNDUP(fragsize
, nfree
);
1310 /* nbigger channels get fragsize bytes, the rest get fragsize-1,
1311 except if nbigger==0, then they all get fragsize. */
1312 nbigger
= len
% nfree
;
1314 /* skip to the channel after the one we last used
1315 and start at that one */
1316 list
= &ppp
->channels
;
1317 for (i
= 0; i
< ppp
->nxchan
; ++i
) {
1319 if (list
== &ppp
->channels
) {
1325 /* create a fragment for each channel */
1327 while (nfree
> 0 || len
> 0) {
1329 if (list
== &ppp
->channels
) {
1333 pch
= list_entry(list
, struct channel
, clist
);
1339 * Skip this channel if it has a fragment pending already and
1340 * we haven't given a fragment to all of the free channels.
1342 if (pch
->avail
== 1) {
1350 /* check the channel's mtu and whether it is still attached. */
1351 spin_lock_bh(&pch
->downl
);
1352 if (pch
->chan
== NULL
) {
1353 /* can't use this channel, it's being deregistered */
1354 spin_unlock_bh(&pch
->downl
);
1362 * Create a fragment for this channel of
1363 * min(max(mtu+2-hdrlen, 4), fragsize, len) bytes.
1364 * If mtu+2-hdrlen < 4, that is a ridiculously small
1365 * MTU, so we use mtu = 2 + hdrlen.
1370 mtu
= pch
->chan
->mtu
+ 2 - hdrlen
;
1375 if (flen
== len
&& nfree
== 0)
1377 frag
= alloc_skb(flen
+ hdrlen
+ (flen
== 0), GFP_ATOMIC
);
1380 q
= skb_put(frag
, flen
+ hdrlen
);
1382 /* make the MP header */
1385 if (ppp
->flags
& SC_MP_XSHORTSEQ
) {
1386 q
[2] = bits
+ ((ppp
->nxseq
>> 8) & 0xf);
1390 q
[3] = ppp
->nxseq
>> 16;
1391 q
[4] = ppp
->nxseq
>> 8;
1397 * Unfortunately there is a bug in older versions of
1398 * the Linux PPP multilink reconstruction code where it
1399 * drops 0-length fragments. Therefore we make sure the
1400 * fragment has at least one byte of data. Any bytes
1401 * we add in this situation will end up as padding on the
1402 * end of the reconstructed packet.
1405 *skb_put(frag
, 1) = 0;
1407 memcpy(q
+ hdrlen
, p
, flen
);
1409 /* try to send it down the channel */
1411 if (!skb_queue_empty(&pch
->file
.xq
) ||
1412 !chan
->ops
->start_xmit(chan
, frag
))
1413 skb_queue_tail(&pch
->file
.xq
, frag
);
1419 spin_unlock_bh(&pch
->downl
);
1421 if (--nbigger
== 0 && fragsize
> 0)
1429 spin_unlock_bh(&pch
->downl
);
1431 printk(KERN_ERR
"PPP: no memory (fragment)\n");
1432 ++ppp
->stats
.tx_errors
;
1434 return 1; /* abandon the frame */
1436 #endif /* CONFIG_PPP_MULTILINK */
1439 * Try to send data out on a channel.
1442 ppp_channel_push(struct channel
*pch
)
1444 struct sk_buff
*skb
;
1447 spin_lock_bh(&pch
->downl
);
1448 if (pch
->chan
!= 0) {
1449 while (!skb_queue_empty(&pch
->file
.xq
)) {
1450 skb
= skb_dequeue(&pch
->file
.xq
);
1451 if (!pch
->chan
->ops
->start_xmit(pch
->chan
, skb
)) {
1452 /* put the packet back and try again later */
1453 skb_queue_head(&pch
->file
.xq
, skb
);
1458 /* channel got deregistered */
1459 skb_queue_purge(&pch
->file
.xq
);
1461 spin_unlock_bh(&pch
->downl
);
1462 /* see if there is anything from the attached unit to be sent */
1463 if (skb_queue_empty(&pch
->file
.xq
)) {
1464 read_lock_bh(&pch
->upl
);
1467 ppp_xmit_process(ppp
);
1468 read_unlock_bh(&pch
->upl
);
1473 * Receive-side routines.
1476 /* misuse a few fields of the skb for MP reconstruction */
1477 #define sequence priority
1478 #define BEbits cb[0]
1481 ppp_do_recv(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1484 /* ppp->dev == 0 means interface is closing down */
1486 ppp_receive_frame(ppp
, skb
, pch
);
1489 ppp_recv_unlock(ppp
);
1493 ppp_input(struct ppp_channel
*chan
, struct sk_buff
*skb
)
1495 struct channel
*pch
= chan
->ppp
;
1498 if (pch
== 0 || skb
->len
== 0) {
1503 proto
= PPP_PROTO(skb
);
1504 read_lock_bh(&pch
->upl
);
1505 if (pch
->ppp
== 0 || proto
>= 0xc000 || proto
== PPP_CCPFRAG
) {
1506 /* put it on the channel queue */
1507 skb_queue_tail(&pch
->file
.rq
, skb
);
1508 /* drop old frames if queue too long */
1509 while (pch
->file
.rq
.qlen
> PPP_MAX_RQLEN
1510 && (skb
= skb_dequeue(&pch
->file
.rq
)) != 0)
1512 wake_up_interruptible(&pch
->file
.rwait
);
1514 ppp_do_recv(pch
->ppp
, skb
, pch
);
1516 read_unlock_bh(&pch
->upl
);
1519 /* Put a 0-length skb in the receive queue as an error indication */
1521 ppp_input_error(struct ppp_channel
*chan
, int code
)
1523 struct channel
*pch
= chan
->ppp
;
1524 struct sk_buff
*skb
;
1529 read_lock_bh(&pch
->upl
);
1530 if (pch
->ppp
!= 0) {
1531 skb
= alloc_skb(0, GFP_ATOMIC
);
1533 skb
->len
= 0; /* probably unnecessary */
1535 ppp_do_recv(pch
->ppp
, skb
, pch
);
1538 read_unlock_bh(&pch
->upl
);
1542 * We come in here to process a received frame.
1543 * The receive side of the ppp unit is locked.
1546 ppp_receive_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1548 if (skb
->len
>= 2) {
1549 #ifdef CONFIG_PPP_MULTILINK
1550 /* XXX do channel-level decompression here */
1551 if (PPP_PROTO(skb
) == PPP_MP
)
1552 ppp_receive_mp_frame(ppp
, skb
, pch
);
1554 #endif /* CONFIG_PPP_MULTILINK */
1555 ppp_receive_nonmp_frame(ppp
, skb
);
1560 /* note: a 0-length skb is used as an error indication */
1561 ++ppp
->stats
.rx_length_errors
;
1564 ppp_receive_error(ppp
);
1568 ppp_receive_error(struct ppp
*ppp
)
1570 ++ppp
->stats
.rx_errors
;
1576 ppp_receive_nonmp_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1579 int proto
, len
, npi
;
1582 * Decompress the frame, if compressed.
1583 * Note that some decompressors need to see uncompressed frames
1584 * that come in as well as compressed frames.
1586 if (ppp
->rc_state
!= 0 && (ppp
->rstate
& SC_DECOMP_RUN
)
1587 && (ppp
->rstate
& (SC_DC_FERROR
| SC_DC_ERROR
)) == 0)
1588 skb
= ppp_decompress_frame(ppp
, skb
);
1590 if (ppp
->flags
& SC_MUST_COMP
&& ppp
->rstate
& SC_DC_FERROR
)
1593 proto
= PPP_PROTO(skb
);
1596 /* decompress VJ compressed packets */
1597 if (ppp
->vj
== 0 || (ppp
->flags
& SC_REJ_COMP_TCP
))
1600 if (skb_tailroom(skb
) < 124) {
1601 /* copy to a new sk_buff with more tailroom */
1602 ns
= dev_alloc_skb(skb
->len
+ 128);
1604 printk(KERN_ERR
"PPP: no memory (VJ decomp)\n");
1608 skb_copy_bits(skb
, 0, skb_put(ns
, skb
->len
), skb
->len
);
1612 else if (!pskb_may_pull(skb
, skb
->len
))
1615 skb
->ip_summed
= CHECKSUM_NONE
;
1617 len
= slhc_uncompress(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2);
1619 printk(KERN_DEBUG
"PPP: VJ decompression error\n");
1624 skb_put(skb
, len
- skb
->len
);
1625 else if (len
< skb
->len
)
1630 case PPP_VJC_UNCOMP
:
1631 if (ppp
->vj
== 0 || (ppp
->flags
& SC_REJ_COMP_TCP
))
1634 /* Until we fix the decompressor need to make sure
1635 * data portion is linear.
1637 if (!pskb_may_pull(skb
, skb
->len
))
1640 if (slhc_remember(ppp
->vj
, skb
->data
+ 2, skb
->len
- 2) <= 0) {
1641 printk(KERN_ERR
"PPP: VJ uncompressed error\n");
1648 ppp_ccp_peek(ppp
, skb
, 1);
1652 ++ppp
->stats
.rx_packets
;
1653 ppp
->stats
.rx_bytes
+= skb
->len
- 2;
1655 npi
= proto_to_npindex(proto
);
1657 /* control or unknown frame - pass it to pppd */
1658 skb_queue_tail(&ppp
->file
.rq
, skb
);
1659 /* limit queue length by dropping old frames */
1660 while (ppp
->file
.rq
.qlen
> PPP_MAX_RQLEN
1661 && (skb
= skb_dequeue(&ppp
->file
.rq
)) != 0)
1663 /* wake up any process polling or blocking on read */
1664 wake_up_interruptible(&ppp
->file
.rwait
);
1667 /* network protocol frame - give it to the kernel */
1669 #ifdef CONFIG_PPP_FILTER
1670 /* check if the packet passes the pass and active filters */
1671 /* the filter instructions are constructed assuming
1672 a four-byte PPP header on each packet */
1673 *skb_push(skb
, 2) = 0;
1674 if (ppp
->pass_filter
1675 && sk_run_filter(skb
, ppp
->pass_filter
,
1676 ppp
->pass_len
) == 0) {
1678 printk(KERN_DEBUG
"PPP: inbound frame not passed\n");
1682 if (!(ppp
->active_filter
1683 && sk_run_filter(skb
, ppp
->active_filter
,
1684 ppp
->active_len
) == 0))
1685 ppp
->last_recv
= jiffies
;
1688 ppp
->last_recv
= jiffies
;
1689 #endif /* CONFIG_PPP_FILTER */
1691 if ((ppp
->dev
->flags
& IFF_UP
) == 0
1692 || ppp
->npmode
[npi
] != NPMODE_PASS
) {
1695 /* chop off protocol */
1696 skb_pull_rcsum(skb
, 2);
1697 skb
->dev
= ppp
->dev
;
1698 skb
->protocol
= htons(npindex_to_ethertype
[npi
]);
1699 skb
->mac
.raw
= skb
->data
;
1701 ppp
->dev
->last_rx
= jiffies
;
1708 ppp_receive_error(ppp
);
1711 static struct sk_buff
*
1712 ppp_decompress_frame(struct ppp
*ppp
, struct sk_buff
*skb
)
1714 int proto
= PPP_PROTO(skb
);
1718 /* Until we fix all the decompressor's need to make sure
1719 * data portion is linear.
1721 if (!pskb_may_pull(skb
, skb
->len
))
1724 if (proto
== PPP_COMP
) {
1725 ns
= dev_alloc_skb(ppp
->mru
+ PPP_HDRLEN
);
1727 printk(KERN_ERR
"ppp_decompress_frame: no memory\n");
1730 /* the decompressor still expects the A/C bytes in the hdr */
1731 len
= ppp
->rcomp
->decompress(ppp
->rc_state
, skb
->data
- 2,
1732 skb
->len
+ 2, ns
->data
, ppp
->mru
+ PPP_HDRLEN
);
1734 /* Pass the compressed frame to pppd as an
1735 error indication. */
1736 if (len
== DECOMP_FATALERROR
)
1737 ppp
->rstate
|= SC_DC_FERROR
;
1745 skb_pull(skb
, 2); /* pull off the A/C bytes */
1748 /* Uncompressed frame - pass to decompressor so it
1749 can update its dictionary if necessary. */
1750 if (ppp
->rcomp
->incomp
)
1751 ppp
->rcomp
->incomp(ppp
->rc_state
, skb
->data
- 2,
1758 ppp
->rstate
|= SC_DC_ERROR
;
1759 ppp_receive_error(ppp
);
1763 #ifdef CONFIG_PPP_MULTILINK
1765 * Receive a multilink frame.
1766 * We put it on the reconstruction queue and then pull off
1767 * as many completed frames as we can.
1770 ppp_receive_mp_frame(struct ppp
*ppp
, struct sk_buff
*skb
, struct channel
*pch
)
1774 int mphdrlen
= (ppp
->flags
& SC_MP_SHORTSEQ
)? MPHDRLEN_SSN
: MPHDRLEN
;
1776 if (!pskb_may_pull(skb
, mphdrlen
) || ppp
->mrru
== 0)
1777 goto err
; /* no good, throw it away */
1779 /* Decode sequence number and begin/end bits */
1780 if (ppp
->flags
& SC_MP_SHORTSEQ
) {
1781 seq
= ((skb
->data
[2] & 0x0f) << 8) | skb
->data
[3];
1784 seq
= (skb
->data
[3] << 16) | (skb
->data
[4] << 8)| skb
->data
[5];
1787 skb
->BEbits
= skb
->data
[2];
1788 skb_pull(skb
, mphdrlen
); /* pull off PPP and MP headers */
1791 * Do protocol ID decompression on the first fragment of each packet.
1793 if ((skb
->BEbits
& B
) && (skb
->data
[0] & 1))
1794 *skb_push(skb
, 1) = 0;
1797 * Expand sequence number to 32 bits, making it as close
1798 * as possible to ppp->minseq.
1800 seq
|= ppp
->minseq
& ~mask
;
1801 if ((int)(ppp
->minseq
- seq
) > (int)(mask
>> 1))
1803 else if ((int)(seq
- ppp
->minseq
) > (int)(mask
>> 1))
1804 seq
-= mask
+ 1; /* should never happen */
1805 skb
->sequence
= seq
;
1809 * If this packet comes before the next one we were expecting,
1812 if (seq_before(seq
, ppp
->nextseq
)) {
1814 ++ppp
->stats
.rx_dropped
;
1815 ppp_receive_error(ppp
);
1820 * Reevaluate minseq, the minimum over all channels of the
1821 * last sequence number received on each channel. Because of
1822 * the increasing sequence number rule, we know that any fragment
1823 * before `minseq' which hasn't arrived is never going to arrive.
1824 * The list of channels can't change because we have the receive
1825 * side of the ppp unit locked.
1827 list_for_each_entry(ch
, &ppp
->channels
, clist
) {
1828 if (seq_before(ch
->lastseq
, seq
))
1831 if (seq_before(ppp
->minseq
, seq
))
1834 /* Put the fragment on the reconstruction queue */
1835 ppp_mp_insert(ppp
, skb
);
1837 /* If the queue is getting long, don't wait any longer for packets
1838 before the start of the queue. */
1839 if (skb_queue_len(&ppp
->mrq
) >= PPP_MP_MAX_QLEN
1840 && seq_before(ppp
->minseq
, ppp
->mrq
.next
->sequence
))
1841 ppp
->minseq
= ppp
->mrq
.next
->sequence
;
1843 /* Pull completed packets off the queue and receive them. */
1844 while ((skb
= ppp_mp_reconstruct(ppp
)) != 0)
1845 ppp_receive_nonmp_frame(ppp
, skb
);
1851 ppp_receive_error(ppp
);
1855 * Insert a fragment on the MP reconstruction queue.
1856 * The queue is ordered by increasing sequence number.
1859 ppp_mp_insert(struct ppp
*ppp
, struct sk_buff
*skb
)
1862 struct sk_buff_head
*list
= &ppp
->mrq
;
1863 u32 seq
= skb
->sequence
;
1865 /* N.B. we don't need to lock the list lock because we have the
1866 ppp unit receive-side lock. */
1867 for (p
= list
->next
; p
!= (struct sk_buff
*)list
; p
= p
->next
)
1868 if (seq_before(seq
, p
->sequence
))
1870 __skb_insert(skb
, p
->prev
, p
, list
);
1874 * Reconstruct a packet from the MP fragment queue.
1875 * We go through increasing sequence numbers until we find a
1876 * complete packet, or we get to the sequence number for a fragment
1877 * which hasn't arrived but might still do so.
1880 ppp_mp_reconstruct(struct ppp
*ppp
)
1882 u32 seq
= ppp
->nextseq
;
1883 u32 minseq
= ppp
->minseq
;
1884 struct sk_buff_head
*list
= &ppp
->mrq
;
1885 struct sk_buff
*p
, *next
;
1886 struct sk_buff
*head
, *tail
;
1887 struct sk_buff
*skb
= NULL
;
1888 int lost
= 0, len
= 0;
1890 if (ppp
->mrru
== 0) /* do nothing until mrru is set */
1894 for (p
= head
; p
!= (struct sk_buff
*) list
; p
= next
) {
1896 if (seq_before(p
->sequence
, seq
)) {
1897 /* this can't happen, anyway ignore the skb */
1898 printk(KERN_ERR
"ppp_mp_reconstruct bad seq %u < %u\n",
1903 if (p
->sequence
!= seq
) {
1904 /* Fragment `seq' is missing. If it is after
1905 minseq, it might arrive later, so stop here. */
1906 if (seq_after(seq
, minseq
))
1908 /* Fragment `seq' is lost, keep going. */
1910 seq
= seq_before(minseq
, p
->sequence
)?
1911 minseq
+ 1: p
->sequence
;
1917 * At this point we know that all the fragments from
1918 * ppp->nextseq to seq are either present or lost.
1919 * Also, there are no complete packets in the queue
1920 * that have no missing fragments and end before this
1924 /* B bit set indicates this fragment starts a packet */
1925 if (p
->BEbits
& B
) {
1933 /* Got a complete packet yet? */
1934 if (lost
== 0 && (p
->BEbits
& E
) && (head
->BEbits
& B
)) {
1935 if (len
> ppp
->mrru
+ 2) {
1936 ++ppp
->stats
.rx_length_errors
;
1937 printk(KERN_DEBUG
"PPP: reconstructed packet"
1938 " is too long (%d)\n", len
);
1939 } else if (p
== head
) {
1940 /* fragment is complete packet - reuse skb */
1944 } else if ((skb
= dev_alloc_skb(len
)) == NULL
) {
1945 ++ppp
->stats
.rx_missed_errors
;
1946 printk(KERN_DEBUG
"PPP: no memory for "
1947 "reconstructed packet");
1952 ppp
->nextseq
= seq
+ 1;
1956 * If this is the ending fragment of a packet,
1957 * and we haven't found a complete valid packet yet,
1958 * we can discard up to and including this fragment.
1966 /* If we have a complete packet, copy it all into one skb. */
1968 /* If we have discarded any fragments,
1969 signal a receive error. */
1970 if (head
->sequence
!= ppp
->nextseq
) {
1972 printk(KERN_DEBUG
" missed pkts %u..%u\n",
1973 ppp
->nextseq
, head
->sequence
-1);
1974 ++ppp
->stats
.rx_dropped
;
1975 ppp_receive_error(ppp
);
1979 /* copy to a single skb */
1980 for (p
= head
; p
!= tail
->next
; p
= p
->next
)
1981 skb_copy_bits(p
, 0, skb_put(skb
, p
->len
), p
->len
);
1982 ppp
->nextseq
= tail
->sequence
+ 1;
1986 /* Discard all the skbuffs that we have copied the data out of
1987 or that we can't use. */
1988 while ((p
= list
->next
) != head
) {
1989 __skb_unlink(p
, list
);
1995 #endif /* CONFIG_PPP_MULTILINK */
1998 * Channel interface.
2002 * Create a new, unattached ppp channel.
2005 ppp_register_channel(struct ppp_channel
*chan
)
2007 struct channel
*pch
;
2009 pch
= kmalloc(sizeof(struct channel
), GFP_KERNEL
);
2012 memset(pch
, 0, sizeof(struct channel
));
2016 init_ppp_file(&pch
->file
, CHANNEL
);
2017 pch
->file
.hdrlen
= chan
->hdrlen
;
2018 #ifdef CONFIG_PPP_MULTILINK
2020 #endif /* CONFIG_PPP_MULTILINK */
2021 init_rwsem(&pch
->chan_sem
);
2022 spin_lock_init(&pch
->downl
);
2023 rwlock_init(&pch
->upl
);
2024 spin_lock_bh(&all_channels_lock
);
2025 pch
->file
.index
= ++last_channel_index
;
2026 list_add(&pch
->list
, &new_channels
);
2027 atomic_inc(&channel_count
);
2028 spin_unlock_bh(&all_channels_lock
);
2033 * Return the index of a channel.
2035 int ppp_channel_index(struct ppp_channel
*chan
)
2037 struct channel
*pch
= chan
->ppp
;
2040 return pch
->file
.index
;
2045 * Return the PPP unit number to which a channel is connected.
2047 int ppp_unit_number(struct ppp_channel
*chan
)
2049 struct channel
*pch
= chan
->ppp
;
2053 read_lock_bh(&pch
->upl
);
2055 unit
= pch
->ppp
->file
.index
;
2056 read_unlock_bh(&pch
->upl
);
2062 * Disconnect a channel from the generic layer.
2063 * This must be called in process context.
2066 ppp_unregister_channel(struct ppp_channel
*chan
)
2068 struct channel
*pch
= chan
->ppp
;
2071 return; /* should never happen */
2075 * This ensures that we have returned from any calls into the
2076 * the channel's start_xmit or ioctl routine before we proceed.
2078 down_write(&pch
->chan_sem
);
2079 spin_lock_bh(&pch
->downl
);
2081 spin_unlock_bh(&pch
->downl
);
2082 up_write(&pch
->chan_sem
);
2083 ppp_disconnect_channel(pch
);
2084 spin_lock_bh(&all_channels_lock
);
2085 list_del(&pch
->list
);
2086 spin_unlock_bh(&all_channels_lock
);
2088 wake_up_interruptible(&pch
->file
.rwait
);
2089 if (atomic_dec_and_test(&pch
->file
.refcnt
))
2090 ppp_destroy_channel(pch
);
2094 * Callback from a channel when it can accept more to transmit.
2095 * This should be called at BH/softirq level, not interrupt level.
2098 ppp_output_wakeup(struct ppp_channel
*chan
)
2100 struct channel
*pch
= chan
->ppp
;
2104 ppp_channel_push(pch
);
2108 * Compression control.
2111 /* Process the PPPIOCSCOMPRESS ioctl. */
2113 ppp_set_compress(struct ppp
*ppp
, unsigned long arg
)
2116 struct compressor
*cp
, *ocomp
;
2117 struct ppp_option_data data
;
2118 void *state
, *ostate
;
2119 unsigned char ccp_option
[CCP_MAX_OPTION_LENGTH
];
2122 if (copy_from_user(&data
, (void __user
*) arg
, sizeof(data
))
2123 || (data
.length
<= CCP_MAX_OPTION_LENGTH
2124 && copy_from_user(ccp_option
, (void __user
*) data
.ptr
, data
.length
)))
2127 if (data
.length
> CCP_MAX_OPTION_LENGTH
2128 || ccp_option
[1] < 2 || ccp_option
[1] > data
.length
)
2131 cp
= find_compressor(ccp_option
[0]);
2134 request_module("ppp-compress-%d", ccp_option
[0]);
2135 cp
= find_compressor(ccp_option
[0]);
2137 #endif /* CONFIG_KMOD */
2142 if (data
.transmit
) {
2143 state
= cp
->comp_alloc(ccp_option
, data
.length
);
2146 ppp
->xstate
&= ~SC_COMP_RUN
;
2148 ostate
= ppp
->xc_state
;
2150 ppp
->xc_state
= state
;
2151 ppp_xmit_unlock(ppp
);
2153 ocomp
->comp_free(ostate
);
2154 module_put(ocomp
->owner
);
2158 module_put(cp
->owner
);
2161 state
= cp
->decomp_alloc(ccp_option
, data
.length
);
2164 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2166 ostate
= ppp
->rc_state
;
2168 ppp
->rc_state
= state
;
2169 ppp_recv_unlock(ppp
);
2171 ocomp
->decomp_free(ostate
);
2172 module_put(ocomp
->owner
);
2176 module_put(cp
->owner
);
2184 * Look at a CCP packet and update our state accordingly.
2185 * We assume the caller has the xmit or recv path locked.
2188 ppp_ccp_peek(struct ppp
*ppp
, struct sk_buff
*skb
, int inbound
)
2193 if (!pskb_may_pull(skb
, CCP_HDRLEN
+ 2))
2194 return; /* no header */
2197 switch (CCP_CODE(dp
)) {
2200 /* A ConfReq starts negotiation of compression
2201 * in one direction of transmission,
2202 * and hence brings it down...but which way?
2205 * A ConfReq indicates what the sender would like to receive
2208 /* He is proposing what I should send */
2209 ppp
->xstate
&= ~SC_COMP_RUN
;
2211 /* I am proposing to what he should send */
2212 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2219 * CCP is going down, both directions of transmission
2221 ppp
->rstate
&= ~SC_DECOMP_RUN
;
2222 ppp
->xstate
&= ~SC_COMP_RUN
;
2226 if ((ppp
->flags
& (SC_CCP_OPEN
| SC_CCP_UP
)) != SC_CCP_OPEN
)
2228 len
= CCP_LENGTH(dp
);
2229 if (!pskb_may_pull(skb
, len
+ 2))
2230 return; /* too short */
2233 if (len
< CCP_OPT_MINLEN
|| len
< CCP_OPT_LENGTH(dp
))
2236 /* we will start receiving compressed packets */
2237 if (ppp
->rc_state
== 0)
2239 if (ppp
->rcomp
->decomp_init(ppp
->rc_state
, dp
, len
,
2240 ppp
->file
.index
, 0, ppp
->mru
, ppp
->debug
)) {
2241 ppp
->rstate
|= SC_DECOMP_RUN
;
2242 ppp
->rstate
&= ~(SC_DC_ERROR
| SC_DC_FERROR
);
2245 /* we will soon start sending compressed packets */
2246 if (ppp
->xc_state
== 0)
2248 if (ppp
->xcomp
->comp_init(ppp
->xc_state
, dp
, len
,
2249 ppp
->file
.index
, 0, ppp
->debug
))
2250 ppp
->xstate
|= SC_COMP_RUN
;
2255 /* reset the [de]compressor */
2256 if ((ppp
->flags
& SC_CCP_UP
) == 0)
2259 if (ppp
->rc_state
&& (ppp
->rstate
& SC_DECOMP_RUN
)) {
2260 ppp
->rcomp
->decomp_reset(ppp
->rc_state
);
2261 ppp
->rstate
&= ~SC_DC_ERROR
;
2264 if (ppp
->xc_state
&& (ppp
->xstate
& SC_COMP_RUN
))
2265 ppp
->xcomp
->comp_reset(ppp
->xc_state
);
2271 /* Free up compression resources. */
2273 ppp_ccp_closed(struct ppp
*ppp
)
2275 void *xstate
, *rstate
;
2276 struct compressor
*xcomp
, *rcomp
;
2279 ppp
->flags
&= ~(SC_CCP_OPEN
| SC_CCP_UP
);
2282 xstate
= ppp
->xc_state
;
2283 ppp
->xc_state
= NULL
;
2286 rstate
= ppp
->rc_state
;
2287 ppp
->rc_state
= NULL
;
2291 xcomp
->comp_free(xstate
);
2292 module_put(xcomp
->owner
);
2295 rcomp
->decomp_free(rstate
);
2296 module_put(rcomp
->owner
);
2300 /* List of compressors. */
2301 static LIST_HEAD(compressor_list
);
2302 static DEFINE_SPINLOCK(compressor_list_lock
);
2304 struct compressor_entry
{
2305 struct list_head list
;
2306 struct compressor
*comp
;
2309 static struct compressor_entry
*
2310 find_comp_entry(int proto
)
2312 struct compressor_entry
*ce
;
2314 list_for_each_entry(ce
, &compressor_list
, list
) {
2315 if (ce
->comp
->compress_proto
== proto
)
2321 /* Register a compressor */
2323 ppp_register_compressor(struct compressor
*cp
)
2325 struct compressor_entry
*ce
;
2327 spin_lock(&compressor_list_lock
);
2329 if (find_comp_entry(cp
->compress_proto
) != 0)
2332 ce
= kmalloc(sizeof(struct compressor_entry
), GFP_ATOMIC
);
2337 list_add(&ce
->list
, &compressor_list
);
2339 spin_unlock(&compressor_list_lock
);
2343 /* Unregister a compressor */
2345 ppp_unregister_compressor(struct compressor
*cp
)
2347 struct compressor_entry
*ce
;
2349 spin_lock(&compressor_list_lock
);
2350 ce
= find_comp_entry(cp
->compress_proto
);
2351 if (ce
!= 0 && ce
->comp
== cp
) {
2352 list_del(&ce
->list
);
2355 spin_unlock(&compressor_list_lock
);
2358 /* Find a compressor. */
2359 static struct compressor
*
2360 find_compressor(int type
)
2362 struct compressor_entry
*ce
;
2363 struct compressor
*cp
= NULL
;
2365 spin_lock(&compressor_list_lock
);
2366 ce
= find_comp_entry(type
);
2369 if (!try_module_get(cp
->owner
))
2372 spin_unlock(&compressor_list_lock
);
2377 * Miscelleneous stuff.
2381 ppp_get_stats(struct ppp
*ppp
, struct ppp_stats
*st
)
2383 struct slcompress
*vj
= ppp
->vj
;
2385 memset(st
, 0, sizeof(*st
));
2386 st
->p
.ppp_ipackets
= ppp
->stats
.rx_packets
;
2387 st
->p
.ppp_ierrors
= ppp
->stats
.rx_errors
;
2388 st
->p
.ppp_ibytes
= ppp
->stats
.rx_bytes
;
2389 st
->p
.ppp_opackets
= ppp
->stats
.tx_packets
;
2390 st
->p
.ppp_oerrors
= ppp
->stats
.tx_errors
;
2391 st
->p
.ppp_obytes
= ppp
->stats
.tx_bytes
;
2394 st
->vj
.vjs_packets
= vj
->sls_o_compressed
+ vj
->sls_o_uncompressed
;
2395 st
->vj
.vjs_compressed
= vj
->sls_o_compressed
;
2396 st
->vj
.vjs_searches
= vj
->sls_o_searches
;
2397 st
->vj
.vjs_misses
= vj
->sls_o_misses
;
2398 st
->vj
.vjs_errorin
= vj
->sls_i_error
;
2399 st
->vj
.vjs_tossed
= vj
->sls_i_tossed
;
2400 st
->vj
.vjs_uncompressedin
= vj
->sls_i_uncompressed
;
2401 st
->vj
.vjs_compressedin
= vj
->sls_i_compressed
;
2405 * Stuff for handling the lists of ppp units and channels
2406 * and for initialization.
2410 * Create a new ppp interface unit. Fails if it can't allocate memory
2411 * or if there is already a unit with the requested number.
2412 * unit == -1 means allocate a new number.
2415 ppp_create_interface(int unit
, int *retp
)
2418 struct net_device
*dev
= NULL
;
2422 ppp
= kmalloc(sizeof(struct ppp
), GFP_KERNEL
);
2425 dev
= alloc_netdev(0, "", ppp_setup
);
2428 memset(ppp
, 0, sizeof(struct ppp
));
2431 init_ppp_file(&ppp
->file
, INTERFACE
);
2432 ppp
->file
.hdrlen
= PPP_HDRLEN
- 2; /* don't count proto bytes */
2433 for (i
= 0; i
< NUM_NP
; ++i
)
2434 ppp
->npmode
[i
] = NPMODE_PASS
;
2435 INIT_LIST_HEAD(&ppp
->channels
);
2436 spin_lock_init(&ppp
->rlock
);
2437 spin_lock_init(&ppp
->wlock
);
2438 #ifdef CONFIG_PPP_MULTILINK
2440 skb_queue_head_init(&ppp
->mrq
);
2441 #endif /* CONFIG_PPP_MULTILINK */
2445 dev
->hard_start_xmit
= ppp_start_xmit
;
2446 dev
->get_stats
= ppp_net_stats
;
2447 dev
->do_ioctl
= ppp_net_ioctl
;
2450 mutex_lock(&all_ppp_mutex
);
2452 unit
= cardmap_find_first_free(all_ppp_units
);
2453 else if (cardmap_get(all_ppp_units
, unit
) != NULL
)
2454 goto out2
; /* unit already exists */
2456 /* Initialize the new ppp unit */
2457 ppp
->file
.index
= unit
;
2458 sprintf(dev
->name
, "ppp%d", unit
);
2460 ret
= register_netdev(dev
);
2462 printk(KERN_ERR
"PPP: couldn't register device %s (%d)\n",
2467 atomic_inc(&ppp_unit_count
);
2468 cardmap_set(&all_ppp_units
, unit
, ppp
);
2469 mutex_unlock(&all_ppp_mutex
);
2474 mutex_unlock(&all_ppp_mutex
);
2484 * Initialize a ppp_file structure.
2487 init_ppp_file(struct ppp_file
*pf
, int kind
)
2490 skb_queue_head_init(&pf
->xq
);
2491 skb_queue_head_init(&pf
->rq
);
2492 atomic_set(&pf
->refcnt
, 1);
2493 init_waitqueue_head(&pf
->rwait
);
2497 * Take down a ppp interface unit - called when the owning file
2498 * (the one that created the unit) is closed or detached.
2500 static void ppp_shutdown_interface(struct ppp
*ppp
)
2502 struct net_device
*dev
;
2504 mutex_lock(&all_ppp_mutex
);
2509 /* This will call dev_close() for us. */
2511 unregister_netdev(dev
);
2514 cardmap_set(&all_ppp_units
, ppp
->file
.index
, NULL
);
2517 wake_up_interruptible(&ppp
->file
.rwait
);
2518 mutex_unlock(&all_ppp_mutex
);
2522 * Free the memory used by a ppp unit. This is only called once
2523 * there are no channels connected to the unit and no file structs
2524 * that reference the unit.
2526 static void ppp_destroy_interface(struct ppp
*ppp
)
2528 atomic_dec(&ppp_unit_count
);
2530 if (!ppp
->file
.dead
|| ppp
->n_channels
) {
2531 /* "can't happen" */
2532 printk(KERN_ERR
"ppp: destroying ppp struct %p but dead=%d "
2533 "n_channels=%d !\n", ppp
, ppp
->file
.dead
,
2538 ppp_ccp_closed(ppp
);
2543 skb_queue_purge(&ppp
->file
.xq
);
2544 skb_queue_purge(&ppp
->file
.rq
);
2545 #ifdef CONFIG_PPP_MULTILINK
2546 skb_queue_purge(&ppp
->mrq
);
2547 #endif /* CONFIG_PPP_MULTILINK */
2548 #ifdef CONFIG_PPP_FILTER
2549 kfree(ppp
->pass_filter
);
2550 ppp
->pass_filter
= NULL
;
2551 kfree(ppp
->active_filter
);
2552 ppp
->active_filter
= NULL
;
2553 #endif /* CONFIG_PPP_FILTER */
2559 * Locate an existing ppp unit.
2560 * The caller should have locked the all_ppp_mutex.
2563 ppp_find_unit(int unit
)
2565 return cardmap_get(all_ppp_units
, unit
);
2569 * Locate an existing ppp channel.
2570 * The caller should have locked the all_channels_lock.
2571 * First we look in the new_channels list, then in the
2572 * all_channels list. If found in the new_channels list,
2573 * we move it to the all_channels list. This is for speed
2574 * when we have a lot of channels in use.
2576 static struct channel
*
2577 ppp_find_channel(int unit
)
2579 struct channel
*pch
;
2581 list_for_each_entry(pch
, &new_channels
, list
) {
2582 if (pch
->file
.index
== unit
) {
2583 list_del(&pch
->list
);
2584 list_add(&pch
->list
, &all_channels
);
2588 list_for_each_entry(pch
, &all_channels
, list
) {
2589 if (pch
->file
.index
== unit
)
2596 * Connect a PPP channel to a PPP interface unit.
2599 ppp_connect_channel(struct channel
*pch
, int unit
)
2605 mutex_lock(&all_ppp_mutex
);
2606 ppp
= ppp_find_unit(unit
);
2609 write_lock_bh(&pch
->upl
);
2615 if (pch
->file
.hdrlen
> ppp
->file
.hdrlen
)
2616 ppp
->file
.hdrlen
= pch
->file
.hdrlen
;
2617 hdrlen
= pch
->file
.hdrlen
+ 2; /* for protocol bytes */
2618 if (ppp
->dev
&& hdrlen
> ppp
->dev
->hard_header_len
)
2619 ppp
->dev
->hard_header_len
= hdrlen
;
2620 list_add_tail(&pch
->clist
, &ppp
->channels
);
2623 atomic_inc(&ppp
->file
.refcnt
);
2628 write_unlock_bh(&pch
->upl
);
2630 mutex_unlock(&all_ppp_mutex
);
2635 * Disconnect a channel from its ppp unit.
2638 ppp_disconnect_channel(struct channel
*pch
)
2643 write_lock_bh(&pch
->upl
);
2646 write_unlock_bh(&pch
->upl
);
2648 /* remove it from the ppp unit's list */
2650 list_del(&pch
->clist
);
2651 if (--ppp
->n_channels
== 0)
2652 wake_up_interruptible(&ppp
->file
.rwait
);
2654 if (atomic_dec_and_test(&ppp
->file
.refcnt
))
2655 ppp_destroy_interface(ppp
);
2662 * Free up the resources used by a ppp channel.
2664 static void ppp_destroy_channel(struct channel
*pch
)
2666 atomic_dec(&channel_count
);
2668 if (!pch
->file
.dead
) {
2669 /* "can't happen" */
2670 printk(KERN_ERR
"ppp: destroying undead channel %p !\n",
2674 skb_queue_purge(&pch
->file
.xq
);
2675 skb_queue_purge(&pch
->file
.rq
);
2679 static void __exit
ppp_cleanup(void)
2681 /* should never happen */
2682 if (atomic_read(&ppp_unit_count
) || atomic_read(&channel_count
))
2683 printk(KERN_ERR
"PPP: removing module but units remain!\n");
2684 cardmap_destroy(&all_ppp_units
);
2685 if (unregister_chrdev(PPP_MAJOR
, "ppp") != 0)
2686 printk(KERN_ERR
"PPP: failed to unregister PPP device\n");
2687 devfs_remove("ppp");
2688 class_device_destroy(ppp_class
, MKDEV(PPP_MAJOR
, 0));
2689 class_destroy(ppp_class
);
2693 * Cardmap implementation.
2695 static void *cardmap_get(struct cardmap
*map
, unsigned int nr
)
2700 for (p
= map
; p
!= NULL
; ) {
2701 if ((i
= nr
>> p
->shift
) >= CARDMAP_WIDTH
)
2705 nr
&= ~(CARDMAP_MASK
<< p
->shift
);
2711 static void cardmap_set(struct cardmap
**pmap
, unsigned int nr
, void *ptr
)
2717 if (p
== NULL
|| (nr
>> p
->shift
) >= CARDMAP_WIDTH
) {
2719 /* need a new top level */
2720 struct cardmap
*np
= kmalloc(sizeof(*np
), GFP_KERNEL
);
2721 memset(np
, 0, sizeof(*np
));
2724 np
->shift
= p
->shift
+ CARDMAP_ORDER
;
2729 } while ((nr
>> p
->shift
) >= CARDMAP_WIDTH
);
2732 while (p
->shift
> 0) {
2733 i
= (nr
>> p
->shift
) & CARDMAP_MASK
;
2734 if (p
->ptr
[i
] == NULL
) {
2735 struct cardmap
*np
= kmalloc(sizeof(*np
), GFP_KERNEL
);
2736 memset(np
, 0, sizeof(*np
));
2737 np
->shift
= p
->shift
- CARDMAP_ORDER
;
2742 clear_bit(i
, &p
->inuse
);
2745 i
= nr
& CARDMAP_MASK
;
2748 set_bit(i
, &p
->inuse
);
2750 clear_bit(i
, &p
->inuse
);
2753 static unsigned int cardmap_find_first_free(struct cardmap
*map
)
2756 unsigned int nr
= 0;
2759 if ((p
= map
) == NULL
)
2762 i
= find_first_zero_bit(&p
->inuse
, CARDMAP_WIDTH
);
2763 if (i
>= CARDMAP_WIDTH
) {
2764 if (p
->parent
== NULL
)
2765 return CARDMAP_WIDTH
<< p
->shift
;
2767 i
= (nr
>> p
->shift
) & CARDMAP_MASK
;
2768 set_bit(i
, &p
->inuse
);
2771 nr
= (nr
& (~CARDMAP_MASK
<< p
->shift
)) | (i
<< p
->shift
);
2772 if (p
->shift
== 0 || p
->ptr
[i
] == NULL
)
2778 static void cardmap_destroy(struct cardmap
**pmap
)
2780 struct cardmap
*p
, *np
;
2783 for (p
= *pmap
; p
!= NULL
; p
= np
) {
2784 if (p
->shift
!= 0) {
2785 for (i
= 0; i
< CARDMAP_WIDTH
; ++i
)
2786 if (p
->ptr
[i
] != NULL
)
2788 if (i
< CARDMAP_WIDTH
) {
2800 /* Module/initialization stuff */
2802 module_init(ppp_init
);
2803 module_exit(ppp_cleanup
);
2805 EXPORT_SYMBOL(ppp_register_channel
);
2806 EXPORT_SYMBOL(ppp_unregister_channel
);
2807 EXPORT_SYMBOL(ppp_channel_index
);
2808 EXPORT_SYMBOL(ppp_unit_number
);
2809 EXPORT_SYMBOL(ppp_input
);
2810 EXPORT_SYMBOL(ppp_input_error
);
2811 EXPORT_SYMBOL(ppp_output_wakeup
);
2812 EXPORT_SYMBOL(ppp_register_compressor
);
2813 EXPORT_SYMBOL(ppp_unregister_compressor
);
2814 MODULE_LICENSE("GPL");
2815 MODULE_ALIAS_CHARDEV_MAJOR(PPP_MAJOR
);
2816 MODULE_ALIAS("/dev/ppp");