2 * NET3: A (fairly minimal) implementation of synchronous PPP for Linux
3 * as well as a CISCO HDLC implementation. See the copyright
4 * message below for the original source.
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 * Note however. This code is also used in a different form by FreeBSD.
12 * Therefore when making any non OS specific change please consider
13 * contributing it back to the original author under the terms
17 * Port for Linux-2.1 by Jan "Yenya" Kasprzak <kas@fi.muni.cz>
21 * Synchronous PPP/Cisco link level subroutines.
22 * Keepalive protocol implemented in both Cisco and PPP modes.
24 * Copyright (C) 1994 Cronyx Ltd.
25 * Author: Serge Vakulenko, <vak@zebub.msk.su>
27 * This software is distributed with NO WARRANTIES, not even the implied
28 * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
30 * Authors grant any other persons or organisations permission to use
31 * or modify this software as long as this message is kept with the software,
32 * all derivative works or modified versions.
34 * Version 1.9, Wed Oct 4 18:58:15 MSK 1995
36 * $Id: syncppp.c,v 1.18 2000/04/11 05:25:31 asj Exp $
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/errno.h>
43 #include <linux/init.h>
44 #include <linux/if_arp.h>
45 #include <linux/skbuff.h>
46 #include <linux/route.h>
47 #include <linux/netdevice.h>
48 #include <linux/inetdevice.h>
49 #include <linux/random.h>
50 #include <linux/pkt_sched.h>
51 #include <linux/spinlock.h>
52 #include <linux/rcupdate.h>
54 #include <net/syncppp.h>
56 #include <asm/byteorder.h>
57 #include <asm/uaccess.h>
59 #define MAXALIVECNT 6 /* max. alive packets */
61 #define PPP_ALLSTATIONS 0xff /* All-Stations broadcast address */
62 #define PPP_UI 0x03 /* Unnumbered Information */
63 #define PPP_IP 0x0021 /* Internet Protocol */
64 #define PPP_ISO 0x0023 /* ISO OSI Protocol */
65 #define PPP_XNS 0x0025 /* Xerox NS Protocol */
66 #define PPP_IPX 0x002b /* Novell IPX Protocol */
67 #define PPP_LCP 0xc021 /* Link Control Protocol */
68 #define PPP_IPCP 0x8021 /* Internet Protocol Control Protocol */
70 #define LCP_CONF_REQ 1 /* PPP LCP configure request */
71 #define LCP_CONF_ACK 2 /* PPP LCP configure acknowledge */
72 #define LCP_CONF_NAK 3 /* PPP LCP configure negative ack */
73 #define LCP_CONF_REJ 4 /* PPP LCP configure reject */
74 #define LCP_TERM_REQ 5 /* PPP LCP terminate request */
75 #define LCP_TERM_ACK 6 /* PPP LCP terminate acknowledge */
76 #define LCP_CODE_REJ 7 /* PPP LCP code reject */
77 #define LCP_PROTO_REJ 8 /* PPP LCP protocol reject */
78 #define LCP_ECHO_REQ 9 /* PPP LCP echo request */
79 #define LCP_ECHO_REPLY 10 /* PPP LCP echo reply */
80 #define LCP_DISC_REQ 11 /* PPP LCP discard request */
82 #define LCP_OPT_MRU 1 /* maximum receive unit */
83 #define LCP_OPT_ASYNC_MAP 2 /* async control character map */
84 #define LCP_OPT_AUTH_PROTO 3 /* authentication protocol */
85 #define LCP_OPT_QUAL_PROTO 4 /* quality protocol */
86 #define LCP_OPT_MAGIC 5 /* magic number */
87 #define LCP_OPT_RESERVED 6 /* reserved */
88 #define LCP_OPT_PROTO_COMP 7 /* protocol field compression */
89 #define LCP_OPT_ADDR_COMP 8 /* address/control field compression */
91 #define IPCP_CONF_REQ LCP_CONF_REQ /* PPP IPCP configure request */
92 #define IPCP_CONF_ACK LCP_CONF_ACK /* PPP IPCP configure acknowledge */
93 #define IPCP_CONF_NAK LCP_CONF_NAK /* PPP IPCP configure negative ack */
94 #define IPCP_CONF_REJ LCP_CONF_REJ /* PPP IPCP configure reject */
95 #define IPCP_TERM_REQ LCP_TERM_REQ /* PPP IPCP terminate request */
96 #define IPCP_TERM_ACK LCP_TERM_ACK /* PPP IPCP terminate acknowledge */
97 #define IPCP_CODE_REJ LCP_CODE_REJ /* PPP IPCP code reject */
99 #define CISCO_MULTICAST 0x8f /* Cisco multicast address */
100 #define CISCO_UNICAST 0x0f /* Cisco unicast address */
101 #define CISCO_KEEPALIVE 0x8035 /* Cisco keepalive protocol */
102 #define CISCO_ADDR_REQ 0 /* Cisco address request */
103 #define CISCO_ADDR_REPLY 1 /* Cisco address reply */
104 #define CISCO_KEEPALIVE_REQ 2 /* Cisco keepalive request */
111 #define PPP_HEADER_LEN sizeof (struct ppp_header)
118 #define LCP_HEADER_LEN sizeof (struct lcp_header)
120 struct cisco_packet
{
128 #define CISCO_PACKET_LEN 18
129 #define CISCO_BIG_PACKET_LEN 20
131 static struct sppp
*spppq
;
132 static struct timer_list sppp_keepalive_timer
;
133 static DEFINE_SPINLOCK(spppq_lock
);
135 /* global xmit queue for sending packets while spinlock is held */
136 static struct sk_buff_head tx_queue
;
138 static void sppp_keepalive (unsigned long dummy
);
139 static void sppp_cp_send (struct sppp
*sp
, u16 proto
, u8 type
,
140 u8 ident
, u16 len
, void *data
);
141 static void sppp_cisco_send (struct sppp
*sp
, int type
, long par1
, long par2
);
142 static void sppp_lcp_input (struct sppp
*sp
, struct sk_buff
*m
);
143 static void sppp_cisco_input (struct sppp
*sp
, struct sk_buff
*m
);
144 static void sppp_ipcp_input (struct sppp
*sp
, struct sk_buff
*m
);
145 static void sppp_lcp_open (struct sppp
*sp
);
146 static void sppp_ipcp_open (struct sppp
*sp
);
147 static int sppp_lcp_conf_parse_options (struct sppp
*sp
, struct lcp_header
*h
,
148 int len
, u32
*magic
);
149 static void sppp_cp_timeout (unsigned long arg
);
150 static char *sppp_lcp_type_name (u8 type
);
151 static char *sppp_ipcp_type_name (u8 type
);
152 static void sppp_print_bytes (u8
*p
, u16 len
);
156 /* Flush global outgoing packet queue to dev_queue_xmit().
158 * dev_queue_xmit() must be called with interrupts enabled
159 * which means it can't be called with spinlocks held.
160 * If a packet needs to be sent while a spinlock is held,
161 * then put the packet into tx_queue, and call sppp_flush_xmit()
162 * after spinlock is released.
164 static void sppp_flush_xmit(void)
167 while ((skb
= skb_dequeue(&tx_queue
)) != NULL
)
172 * Interface down stub
175 static void if_down(struct net_device
*dev
)
177 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
179 sp
->pp_link_state
=SPPP_LINK_DOWN
;
183 * Timeout routine activations.
186 static void sppp_set_timeout(struct sppp
*p
,int s
)
188 if (! (p
->pp_flags
& PP_TIMO
))
190 init_timer(&p
->pp_timer
);
191 p
->pp_timer
.function
=sppp_cp_timeout
;
192 p
->pp_timer
.expires
=jiffies
+s
*HZ
;
193 p
->pp_timer
.data
=(unsigned long)p
;
194 p
->pp_flags
|= PP_TIMO
;
195 add_timer(&p
->pp_timer
);
199 static void sppp_clear_timeout(struct sppp
*p
)
201 if (p
->pp_flags
& PP_TIMO
)
203 del_timer(&p
->pp_timer
);
204 p
->pp_flags
&= ~PP_TIMO
;
209 * sppp_input - receive and process a WAN PPP frame
210 * @skb: The buffer to process
211 * @dev: The device it arrived on
213 * This can be called directly by cards that do not have
214 * timing constraints but is normally called from the network layer
215 * after interrupt servicing to process frames queued via netif_rx().
217 * We process the options in the card. If the frame is destined for
218 * the protocol stacks then it requeues the frame for the upper level
219 * protocol. If it is a control from it is processed and discarded
223 static void sppp_input (struct net_device
*dev
, struct sk_buff
*skb
)
225 struct ppp_header
*h
;
226 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
230 skb
->mac
.raw
=skb
->data
;
232 if (dev
->flags
& IFF_RUNNING
)
234 /* Count received bytes, add FCS and one flag */
235 sp
->ibytes
+= skb
->len
+ 3;
239 if (!pskb_may_pull(skb
, PPP_HEADER_LEN
)) {
240 /* Too small packet, drop it. */
241 if (sp
->pp_flags
& PP_DEBUG
)
242 printk (KERN_DEBUG
"%s: input packet is too small, %d bytes\n",
243 dev
->name
, skb
->len
);
248 /* Get PPP header. */
249 h
= (struct ppp_header
*)skb
->data
;
250 skb_pull(skb
,sizeof(struct ppp_header
));
252 spin_lock_irqsave(&sp
->lock
, flags
);
254 switch (h
->address
) {
255 default: /* Invalid PPP packet. */
257 case PPP_ALLSTATIONS
:
258 if (h
->control
!= PPP_UI
)
260 if (sp
->pp_flags
& PP_CISCO
) {
261 if (sp
->pp_flags
& PP_DEBUG
)
262 printk (KERN_WARNING
"%s: PPP packet in Cisco mode <0x%x 0x%x 0x%x>\n",
264 h
->address
, h
->control
, ntohs (h
->protocol
));
267 switch (ntohs (h
->protocol
)) {
269 if (sp
->lcp
.state
== LCP_STATE_OPENED
)
270 sppp_cp_send (sp
, PPP_LCP
, LCP_PROTO_REJ
,
271 ++sp
->pp_seq
, skb
->len
+ 2,
273 if (sp
->pp_flags
& PP_DEBUG
)
274 printk (KERN_WARNING
"%s: invalid input protocol <0x%x 0x%x 0x%x>\n",
276 h
->address
, h
->control
, ntohs (h
->protocol
));
279 sppp_lcp_input (sp
, skb
);
282 if (sp
->lcp
.state
== LCP_STATE_OPENED
)
283 sppp_ipcp_input (sp
, skb
);
285 printk(KERN_DEBUG
"IPCP when still waiting LCP finish.\n");
288 if (sp
->ipcp
.state
== IPCP_STATE_OPENED
) {
289 if(sp
->pp_flags
&PP_DEBUG
)
290 printk(KERN_DEBUG
"Yow an IP frame.\n");
291 skb
->protocol
=htons(ETH_P_IP
);
293 dev
->last_rx
= jiffies
;
299 /* IPX IPXCP not implemented yet */
300 if (sp
->lcp
.state
== LCP_STATE_OPENED
) {
301 skb
->protocol
=htons(ETH_P_IPX
);
303 dev
->last_rx
= jiffies
;
310 case CISCO_MULTICAST
:
312 /* Don't check the control field here (RFC 1547). */
313 if (! (sp
->pp_flags
& PP_CISCO
)) {
314 if (sp
->pp_flags
& PP_DEBUG
)
315 printk (KERN_WARNING
"%s: Cisco packet in PPP mode <0x%x 0x%x 0x%x>\n",
317 h
->address
, h
->control
, ntohs (h
->protocol
));
320 switch (ntohs (h
->protocol
)) {
323 case CISCO_KEEPALIVE
:
324 sppp_cisco_input (sp
, skb
);
328 skb
->protocol
=htons(ETH_P_IP
);
330 dev
->last_rx
= jiffies
;
335 skb
->protocol
=htons(ETH_P_IPX
);
337 dev
->last_rx
= jiffies
;
346 if (sp
->pp_flags
& PP_DEBUG
)
347 printk (KERN_WARNING
"%s: invalid input packet <0x%x 0x%x 0x%x>\n",
348 dev
->name
, h
->address
, h
->control
, ntohs (h
->protocol
));
352 spin_unlock_irqrestore(&sp
->lock
, flags
);
358 * Handle transmit packets.
361 static int sppp_hard_header(struct sk_buff
*skb
, struct net_device
*dev
, __u16 type
,
362 void *daddr
, void *saddr
, unsigned int len
)
364 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
365 struct ppp_header
*h
;
366 skb_push(skb
,sizeof(struct ppp_header
));
367 h
=(struct ppp_header
*)skb
->data
;
368 if(sp
->pp_flags
&PP_CISCO
)
370 h
->address
= CISCO_UNICAST
;
375 h
->address
= PPP_ALLSTATIONS
;
378 if(sp
->pp_flags
& PP_CISCO
)
380 h
->protocol
= htons(type
);
385 h
->protocol
= htons(PPP_IP
);
388 h
->protocol
= htons(PPP_IPX
);
391 return sizeof(struct ppp_header
);
394 static int sppp_rebuild_header(struct sk_buff
*skb
)
400 * Send keepalive packets, every 10 seconds.
403 static void sppp_keepalive (unsigned long dummy
)
408 spin_lock_irqsave(&spppq_lock
, flags
);
410 for (sp
=spppq
; sp
; sp
=sp
->pp_next
)
412 struct net_device
*dev
= sp
->pp_if
;
414 /* Keepalive mode disabled or channel down? */
415 if (! (sp
->pp_flags
& PP_KEEPALIVE
) ||
416 ! (dev
->flags
& IFF_UP
))
419 spin_lock(&sp
->lock
);
421 /* No keepalive in PPP mode if LCP not opened yet. */
422 if (! (sp
->pp_flags
& PP_CISCO
) &&
423 sp
->lcp
.state
!= LCP_STATE_OPENED
) {
424 spin_unlock(&sp
->lock
);
428 if (sp
->pp_alivecnt
== MAXALIVECNT
) {
429 /* No keepalive packets got. Stop the interface. */
430 printk (KERN_WARNING
"%s: protocol down\n", dev
->name
);
432 if (! (sp
->pp_flags
& PP_CISCO
)) {
433 /* Shut down the PPP link. */
434 sp
->lcp
.magic
= jiffies
;
435 sp
->lcp
.state
= LCP_STATE_CLOSED
;
436 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
437 sppp_clear_timeout (sp
);
438 /* Initiate negotiation. */
442 if (sp
->pp_alivecnt
<= MAXALIVECNT
)
444 if (sp
->pp_flags
& PP_CISCO
)
445 sppp_cisco_send (sp
, CISCO_KEEPALIVE_REQ
, ++sp
->pp_seq
,
447 else if (sp
->lcp
.state
== LCP_STATE_OPENED
) {
448 long nmagic
= htonl (sp
->lcp
.magic
);
449 sp
->lcp
.echoid
= ++sp
->pp_seq
;
450 sppp_cp_send (sp
, PPP_LCP
, LCP_ECHO_REQ
,
451 sp
->lcp
.echoid
, 4, &nmagic
);
454 spin_unlock(&sp
->lock
);
456 spin_unlock_irqrestore(&spppq_lock
, flags
);
458 sppp_keepalive_timer
.expires
=jiffies
+10*HZ
;
459 add_timer(&sppp_keepalive_timer
);
463 * Handle incoming PPP Link Control Protocol packets.
466 static void sppp_lcp_input (struct sppp
*sp
, struct sk_buff
*skb
)
468 struct lcp_header
*h
;
469 struct net_device
*dev
= sp
->pp_if
;
474 if (!pskb_may_pull(skb
, sizeof(struct lcp_header
))) {
475 if (sp
->pp_flags
& PP_DEBUG
)
476 printk (KERN_WARNING
"%s: invalid lcp packet length: %d bytes\n",
480 h
= (struct lcp_header
*)skb
->data
;
481 skb_pull(skb
,sizeof(struct lcp_header
*));
483 if (sp
->pp_flags
& PP_DEBUG
)
486 switch (sp
->lcp
.state
) {
487 case LCP_STATE_CLOSED
: state
= 'C'; break;
488 case LCP_STATE_ACK_RCVD
: state
= 'R'; break;
489 case LCP_STATE_ACK_SENT
: state
= 'S'; break;
490 case LCP_STATE_OPENED
: state
= 'O'; break;
492 printk (KERN_WARNING
"%s: lcp input(%c): %d bytes <%s id=%xh len=%xh",
493 dev
->name
, state
, len
,
494 sppp_lcp_type_name (h
->type
), h
->ident
, ntohs (h
->len
));
496 sppp_print_bytes ((u8
*) (h
+1), len
-4);
499 if (len
> ntohs (h
->len
))
500 len
= ntohs (h
->len
);
503 /* Unknown packet type -- send Code-Reject packet. */
504 sppp_cp_send (sp
, PPP_LCP
, LCP_CODE_REJ
, ++sp
->pp_seq
,
509 if (sp
->pp_flags
& PP_DEBUG
)
510 printk (KERN_DEBUG
"%s: invalid lcp configure request packet length: %d bytes\n",
514 if (len
>4 && !sppp_lcp_conf_parse_options (sp
, h
, len
, &rmagic
))
516 if (rmagic
== sp
->lcp
.magic
) {
517 /* Local and remote magics equal -- loopback? */
518 if (sp
->pp_loopcnt
>= MAXALIVECNT
*5) {
519 printk (KERN_WARNING
"%s: loopback\n",
522 if (dev
->flags
& IFF_UP
) {
525 } else if (sp
->pp_flags
& PP_DEBUG
)
526 printk (KERN_DEBUG
"%s: conf req: magic glitch\n",
530 /* MUST send Conf-Nack packet. */
531 rmagic
= ~sp
->lcp
.magic
;
532 opt
[0] = LCP_OPT_MAGIC
;
533 opt
[1] = sizeof (opt
);
534 opt
[2] = rmagic
>> 24;
535 opt
[3] = rmagic
>> 16;
536 opt
[4] = rmagic
>> 8;
538 sppp_cp_send (sp
, PPP_LCP
, LCP_CONF_NAK
,
539 h
->ident
, sizeof (opt
), &opt
);
541 switch (sp
->lcp
.state
) {
542 case LCP_STATE_OPENED
:
543 /* Initiate renegotiation. */
545 /* fall through... */
546 case LCP_STATE_ACK_SENT
:
547 /* Go to closed state. */
548 sp
->lcp
.state
= LCP_STATE_CLOSED
;
549 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
553 /* Send Configure-Ack packet. */
555 if (sp
->lcp
.state
!= LCP_STATE_OPENED
) {
556 sppp_cp_send (sp
, PPP_LCP
, LCP_CONF_ACK
,
557 h
->ident
, len
-4, h
+1);
559 /* Change the state. */
560 switch (sp
->lcp
.state
) {
561 case LCP_STATE_CLOSED
:
562 sp
->lcp
.state
= LCP_STATE_ACK_SENT
;
564 case LCP_STATE_ACK_RCVD
:
565 sp
->lcp
.state
= LCP_STATE_OPENED
;
568 case LCP_STATE_OPENED
:
569 /* Remote magic changed -- close session. */
570 sp
->lcp
.state
= LCP_STATE_CLOSED
;
571 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
572 /* Initiate renegotiation. */
574 /* Send ACK after our REQ in attempt to break loop */
575 sppp_cp_send (sp
, PPP_LCP
, LCP_CONF_ACK
,
576 h
->ident
, len
-4, h
+1);
577 sp
->lcp
.state
= LCP_STATE_ACK_SENT
;
582 if (h
->ident
!= sp
->lcp
.confid
)
584 sppp_clear_timeout (sp
);
585 if ((sp
->pp_link_state
!= SPPP_LINK_UP
) &&
586 (dev
->flags
& IFF_UP
)) {
587 /* Coming out of loopback mode. */
588 sp
->pp_link_state
=SPPP_LINK_UP
;
589 printk (KERN_INFO
"%s: protocol up\n", dev
->name
);
591 switch (sp
->lcp
.state
) {
592 case LCP_STATE_CLOSED
:
593 sp
->lcp
.state
= LCP_STATE_ACK_RCVD
;
594 sppp_set_timeout (sp
, 5);
596 case LCP_STATE_ACK_SENT
:
597 sp
->lcp
.state
= LCP_STATE_OPENED
;
603 if (h
->ident
!= sp
->lcp
.confid
)
606 if (len
>=10 && p
[0] == LCP_OPT_MAGIC
&& p
[1] >= 4) {
607 rmagic
= (u32
)p
[2] << 24 |
608 (u32
)p
[3] << 16 | p
[4] << 8 | p
[5];
609 if (rmagic
== ~sp
->lcp
.magic
) {
611 if (sp
->pp_flags
& PP_DEBUG
)
612 printk (KERN_DEBUG
"%s: conf nak: magic glitch\n",
614 get_random_bytes(&newmagic
, sizeof(newmagic
));
615 sp
->lcp
.magic
+= newmagic
;
617 sp
->lcp
.magic
= rmagic
;
619 if (sp
->lcp
.state
!= LCP_STATE_ACK_SENT
) {
620 /* Go to closed state. */
621 sp
->lcp
.state
= LCP_STATE_CLOSED
;
622 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
624 /* The link will be renegotiated after timeout,
625 * to avoid endless req-nack loop. */
626 sppp_clear_timeout (sp
);
627 sppp_set_timeout (sp
, 2);
630 if (h
->ident
!= sp
->lcp
.confid
)
632 sppp_clear_timeout (sp
);
633 /* Initiate renegotiation. */
635 if (sp
->lcp
.state
!= LCP_STATE_ACK_SENT
) {
636 /* Go to closed state. */
637 sp
->lcp
.state
= LCP_STATE_CLOSED
;
638 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
642 sppp_clear_timeout (sp
);
643 /* Send Terminate-Ack packet. */
644 sppp_cp_send (sp
, PPP_LCP
, LCP_TERM_ACK
, h
->ident
, 0, NULL
);
645 /* Go to closed state. */
646 sp
->lcp
.state
= LCP_STATE_CLOSED
;
647 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
648 /* Initiate renegotiation. */
654 /* Ignore for now. */
657 /* Discard the packet. */
660 if (sp
->lcp
.state
!= LCP_STATE_OPENED
)
663 if (sp
->pp_flags
& PP_DEBUG
)
664 printk (KERN_WARNING
"%s: invalid lcp echo request packet length: %d bytes\n",
668 if (ntohl (*(long*)(h
+1)) == sp
->lcp
.magic
) {
669 /* Line loopback mode detected. */
670 printk (KERN_WARNING
"%s: loopback\n", dev
->name
);
673 /* Shut down the PPP link. */
674 sp
->lcp
.state
= LCP_STATE_CLOSED
;
675 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
676 sppp_clear_timeout (sp
);
677 /* Initiate negotiation. */
681 *(long*)(h
+1) = htonl (sp
->lcp
.magic
);
682 sppp_cp_send (sp
, PPP_LCP
, LCP_ECHO_REPLY
, h
->ident
, len
-4, h
+1);
685 if (h
->ident
!= sp
->lcp
.echoid
)
688 if (sp
->pp_flags
& PP_DEBUG
)
689 printk (KERN_WARNING
"%s: invalid lcp echo reply packet length: %d bytes\n",
693 if (ntohl (*(long*)(h
+1)) != sp
->lcp
.magic
)
700 * Handle incoming Cisco keepalive protocol packets.
703 static void sppp_cisco_input (struct sppp
*sp
, struct sk_buff
*skb
)
705 struct cisco_packet
*h
;
706 struct net_device
*dev
= sp
->pp_if
;
708 if (!pskb_may_pull(skb
, sizeof(struct cisco_packet
))
709 || (skb
->len
!= CISCO_PACKET_LEN
710 && skb
->len
!= CISCO_BIG_PACKET_LEN
)) {
711 if (sp
->pp_flags
& PP_DEBUG
)
712 printk (KERN_WARNING
"%s: invalid cisco packet length: %d bytes\n",
713 dev
->name
, skb
->len
);
716 h
= (struct cisco_packet
*)skb
->data
;
717 skb_pull(skb
, sizeof(struct cisco_packet
*));
718 if (sp
->pp_flags
& PP_DEBUG
)
719 printk (KERN_WARNING
"%s: cisco input: %d bytes <%xh %xh %xh %xh %xh-%xh>\n",
721 ntohl (h
->type
), h
->par1
, h
->par2
, h
->rel
,
723 switch (ntohl (h
->type
)) {
725 if (sp
->pp_flags
& PP_DEBUG
)
726 printk (KERN_WARNING
"%s: unknown cisco packet type: 0x%x\n",
727 dev
->name
, ntohl (h
->type
));
729 case CISCO_ADDR_REPLY
:
730 /* Reply on address request, ignore */
732 case CISCO_KEEPALIVE_REQ
:
734 sp
->pp_rseq
= ntohl (h
->par1
);
735 if (sp
->pp_seq
== sp
->pp_rseq
) {
736 /* Local and remote sequence numbers are equal.
737 * Probably, the line is in loopback mode. */
739 if (sp
->pp_loopcnt
>= MAXALIVECNT
) {
740 printk (KERN_WARNING
"%s: loopback\n",
743 if (dev
->flags
& IFF_UP
) {
749 /* Generate new local sequence number */
750 get_random_bytes(&newseq
, sizeof(newseq
));
751 sp
->pp_seq
^= newseq
;
755 if (sp
->pp_link_state
==SPPP_LINK_DOWN
&&
756 (dev
->flags
& IFF_UP
)) {
757 sp
->pp_link_state
=SPPP_LINK_UP
;
758 printk (KERN_INFO
"%s: protocol up\n", dev
->name
);
762 /* Stolen from net/ipv4/devinet.c -- SIOCGIFADDR ioctl */
764 struct in_device
*in_dev
;
765 struct in_ifaddr
*ifa
;
766 __be32 addr
= 0, mask
= ~0; /* FIXME: is the mask correct? */
769 if ((in_dev
= __in_dev_get_rcu(dev
)) != NULL
)
771 for (ifa
=in_dev
->ifa_list
; ifa
!= NULL
;
773 if (strcmp(dev
->name
, ifa
->ifa_label
) == 0)
775 addr
= ifa
->ifa_local
;
776 mask
= ifa
->ifa_mask
;
783 /* I hope both addr and mask are in the net order */
784 sppp_cisco_send (sp
, CISCO_ADDR_REPLY
, addr
, mask
);
792 * Send PPP LCP packet.
795 static void sppp_cp_send (struct sppp
*sp
, u16 proto
, u8 type
,
796 u8 ident
, u16 len
, void *data
)
798 struct ppp_header
*h
;
799 struct lcp_header
*lh
;
801 struct net_device
*dev
= sp
->pp_if
;
803 skb
=alloc_skb(dev
->hard_header_len
+PPP_HEADER_LEN
+LCP_HEADER_LEN
+len
,
808 skb_reserve(skb
,dev
->hard_header_len
);
810 h
= (struct ppp_header
*)skb_put(skb
, sizeof(struct ppp_header
));
811 h
->address
= PPP_ALLSTATIONS
; /* broadcast address */
812 h
->control
= PPP_UI
; /* Unnumbered Info */
813 h
->protocol
= htons (proto
); /* Link Control Protocol */
815 lh
= (struct lcp_header
*)skb_put(skb
, sizeof(struct lcp_header
));
818 lh
->len
= htons (LCP_HEADER_LEN
+ len
);
821 memcpy(skb_put(skb
,len
),data
, len
);
823 if (sp
->pp_flags
& PP_DEBUG
) {
824 printk (KERN_WARNING
"%s: %s output <%s id=%xh len=%xh",
826 proto
==PPP_LCP
? "lcp" : "ipcp",
827 proto
==PPP_LCP
? sppp_lcp_type_name (lh
->type
) :
828 sppp_ipcp_type_name (lh
->type
), lh
->ident
,
831 sppp_print_bytes ((u8
*) (lh
+1), len
);
834 sp
->obytes
+= skb
->len
;
835 /* Control is high priority so it doesn't get queued behind data */
836 skb
->priority
=TC_PRIO_CONTROL
;
838 skb_queue_tail(&tx_queue
, skb
);
842 * Send Cisco keepalive packet.
845 static void sppp_cisco_send (struct sppp
*sp
, int type
, long par1
, long par2
)
847 struct ppp_header
*h
;
848 struct cisco_packet
*ch
;
850 struct net_device
*dev
= sp
->pp_if
;
851 u32 t
= jiffies
* 1000/HZ
;
853 skb
=alloc_skb(dev
->hard_header_len
+PPP_HEADER_LEN
+CISCO_PACKET_LEN
,
859 skb_reserve(skb
, dev
->hard_header_len
);
860 h
= (struct ppp_header
*)skb_put (skb
, sizeof(struct ppp_header
));
861 h
->address
= CISCO_MULTICAST
;
863 h
->protocol
= htons (CISCO_KEEPALIVE
);
865 ch
= (struct cisco_packet
*)skb_put(skb
, CISCO_PACKET_LEN
);
866 ch
->type
= htonl (type
);
867 ch
->par1
= htonl (par1
);
868 ch
->par2
= htonl (par2
);
870 ch
->time0
= htons ((u16
) (t
>> 16));
871 ch
->time1
= htons ((u16
) t
);
873 if (sp
->pp_flags
& PP_DEBUG
)
874 printk (KERN_WARNING
"%s: cisco output: <%xh %xh %xh %xh %xh-%xh>\n",
875 dev
->name
, ntohl (ch
->type
), ch
->par1
,
876 ch
->par2
, ch
->rel
, ch
->time0
, ch
->time1
);
877 sp
->obytes
+= skb
->len
;
878 skb
->priority
=TC_PRIO_CONTROL
;
880 skb_queue_tail(&tx_queue
, skb
);
884 * sppp_close - close down a synchronous PPP or Cisco HDLC link
885 * @dev: The network device to drop the link of
887 * This drops the logical interface to the channel. It is not
888 * done politely as we assume we will also be dropping DTR. Any
889 * timeouts are killed.
892 int sppp_close (struct net_device
*dev
)
894 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
897 spin_lock_irqsave(&sp
->lock
, flags
);
898 sp
->pp_link_state
= SPPP_LINK_DOWN
;
899 sp
->lcp
.state
= LCP_STATE_CLOSED
;
900 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
901 sppp_clear_timeout (sp
);
902 spin_unlock_irqrestore(&sp
->lock
, flags
);
907 EXPORT_SYMBOL(sppp_close
);
910 * sppp_open - open a synchronous PPP or Cisco HDLC link
911 * @dev: Network device to activate
913 * Close down any existing synchronous session and commence
914 * from scratch. In the PPP case this means negotiating LCP/IPCP
915 * and friends, while for Cisco HDLC we simply need to start sending
919 int sppp_open (struct net_device
*dev
)
921 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
926 spin_lock_irqsave(&sp
->lock
, flags
);
927 if (!(sp
->pp_flags
& PP_CISCO
)) {
930 sp
->pp_link_state
= SPPP_LINK_DOWN
;
931 spin_unlock_irqrestore(&sp
->lock
, flags
);
937 EXPORT_SYMBOL(sppp_open
);
940 * sppp_reopen - notify of physical link loss
941 * @dev: Device that lost the link
943 * This function informs the synchronous protocol code that
944 * the underlying link died (for example a carrier drop on X.21)
946 * We increment the magic numbers to ensure that if the other end
947 * failed to notice we will correctly start a new session. It happens
948 * do to the nature of telco circuits is that you can lose carrier on
951 * Having done this we go back to negotiating. This function may
952 * be called from an interrupt context.
955 int sppp_reopen (struct net_device
*dev
)
957 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
962 spin_lock_irqsave(&sp
->lock
, flags
);
963 if (!(sp
->pp_flags
& PP_CISCO
))
965 sp
->lcp
.magic
= jiffies
;
967 sp
->lcp
.state
= LCP_STATE_CLOSED
;
968 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
969 /* Give it a moment for the line to settle then go */
970 sppp_set_timeout (sp
, 1);
972 sp
->pp_link_state
=SPPP_LINK_DOWN
;
973 spin_unlock_irqrestore(&sp
->lock
, flags
);
978 EXPORT_SYMBOL(sppp_reopen
);
981 * sppp_change_mtu - Change the link MTU
982 * @dev: Device to change MTU on
985 * Change the MTU on the link. This can only be called with
986 * the link down. It returns an error if the link is up or
987 * the mtu is out of range.
990 static int sppp_change_mtu(struct net_device
*dev
, int new_mtu
)
992 if(new_mtu
<128||new_mtu
>PPP_MTU
||(dev
->flags
&IFF_UP
))
999 * sppp_do_ioctl - Ioctl handler for ppp/hdlc
1000 * @dev: Device subject to ioctl
1001 * @ifr: Interface request block from the user
1002 * @cmd: Command that is being issued
1004 * This function handles the ioctls that may be issued by the user
1005 * to control the settings of a PPP/HDLC link. It does both busy
1006 * and security checks. This function is intended to be wrapped by
1007 * callers who wish to add additional ioctl calls of their own.
1010 int sppp_do_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1012 struct sppp
*sp
= (struct sppp
*)sppp_of(dev
);
1014 if(dev
->flags
&IFF_UP
)
1017 if(!capable(CAP_NET_ADMIN
))
1023 sp
->pp_flags
|=PP_CISCO
;
1024 dev
->type
= ARPHRD_HDLC
;
1027 sp
->pp_flags
&=~PP_CISCO
;
1028 dev
->type
= ARPHRD_PPP
;
1031 sp
->pp_flags
&=~PP_DEBUG
;
1033 sp
->pp_flags
|=PP_DEBUG
;
1036 if(copy_to_user(ifr
->ifr_data
, &sp
->pp_flags
, sizeof(sp
->pp_flags
)))
1040 if(copy_from_user(&sp
->pp_flags
, ifr
->ifr_data
, sizeof(sp
->pp_flags
)))
1049 EXPORT_SYMBOL(sppp_do_ioctl
);
1052 * sppp_attach - attach synchronous PPP/HDLC to a device
1053 * @pd: PPP device to initialise
1055 * This initialises the PPP/HDLC support on an interface. At the
1056 * time of calling the dev element must point to the network device
1057 * that this interface is attached to. The interface should not yet
1061 void sppp_attach(struct ppp_device
*pd
)
1063 struct net_device
*dev
= pd
->dev
;
1064 struct sppp
*sp
= &pd
->sppp
;
1065 unsigned long flags
;
1067 /* Make sure embedding is safe for sppp_of */
1068 BUG_ON(sppp_of(dev
) != sp
);
1070 spin_lock_irqsave(&spppq_lock
, flags
);
1071 /* Initialize keepalive handler. */
1074 init_timer(&sppp_keepalive_timer
);
1075 sppp_keepalive_timer
.expires
=jiffies
+10*HZ
;
1076 sppp_keepalive_timer
.function
=sppp_keepalive
;
1077 add_timer(&sppp_keepalive_timer
);
1079 /* Insert new entry into the keepalive list. */
1080 sp
->pp_next
= spppq
;
1082 spin_unlock_irqrestore(&spppq_lock
, flags
);
1085 sp
->pp_alivecnt
= 0;
1088 sp
->pp_flags
= PP_KEEPALIVE
|PP_CISCO
|debug
;/*PP_DEBUG;*/
1090 sp
->lcp
.state
= LCP_STATE_CLOSED
;
1091 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
1093 spin_lock_init(&sp
->lock
);
1096 * Device specific setup. All but interrupt handler and
1100 dev
->hard_header
= sppp_hard_header
;
1101 dev
->rebuild_header
= sppp_rebuild_header
;
1102 dev
->tx_queue_len
= 10;
1103 dev
->type
= ARPHRD_HDLC
;
1105 dev
->hard_header_len
= sizeof(struct ppp_header
);
1108 * These 4 are callers but MUST also call sppp_ functions
1110 dev
->do_ioctl
= sppp_do_ioctl
;
1112 dev
->get_stats
= NULL
; /* Let the driver override these */
1113 dev
->open
= sppp_open
;
1114 dev
->stop
= sppp_close
;
1116 dev
->change_mtu
= sppp_change_mtu
;
1117 dev
->hard_header_cache
= NULL
;
1118 dev
->header_cache_update
= NULL
;
1119 dev
->flags
= IFF_MULTICAST
|IFF_POINTOPOINT
|IFF_NOARP
;
1122 EXPORT_SYMBOL(sppp_attach
);
1125 * sppp_detach - release PPP resources from a device
1126 * @dev: Network device to release
1128 * Stop and free up any PPP/HDLC resources used by this
1129 * interface. This must be called before the device is
1133 void sppp_detach (struct net_device
*dev
)
1135 struct sppp
**q
, *p
, *sp
= (struct sppp
*)sppp_of(dev
);
1136 unsigned long flags
;
1138 spin_lock_irqsave(&spppq_lock
, flags
);
1139 /* Remove the entry from the keepalive list. */
1140 for (q
= &spppq
; (p
= *q
); q
= &p
->pp_next
)
1146 /* Stop keepalive handler. */
1148 del_timer(&sppp_keepalive_timer
);
1149 sppp_clear_timeout (sp
);
1150 spin_unlock_irqrestore(&spppq_lock
, flags
);
1153 EXPORT_SYMBOL(sppp_detach
);
1156 * Analyze the LCP Configure-Request options list
1157 * for the presence of unknown options.
1158 * If the request contains unknown options, build and
1159 * send Configure-reject packet, containing only unknown options.
1162 sppp_lcp_conf_parse_options (struct sppp
*sp
, struct lcp_header
*h
,
1163 int len
, u32
*magic
)
1169 buf
= r
= kmalloc (len
, GFP_ATOMIC
);
1174 for (rlen
=0; len
>1 && p
[1]; len
-=p
[1], p
+=p
[1]) {
1177 /* Magic number -- extract. */
1178 if (len
>= 6 && p
[1] == 6) {
1179 *magic
= (u32
)p
[2] << 24 |
1180 (u32
)p
[3] << 16 | p
[4] << 8 | p
[5];
1184 case LCP_OPT_ASYNC_MAP
:
1185 /* Async control character map -- check to be zero. */
1186 if (len
>= 6 && p
[1] == 6 && ! p
[2] && ! p
[3] &&
1191 /* Maximum receive unit -- always OK. */
1194 /* Others not supported. */
1197 /* Add the option to rejected list. */
1203 sppp_cp_send (sp
, PPP_LCP
, LCP_CONF_REJ
, h
->ident
, rlen
, buf
);
1208 static void sppp_ipcp_input (struct sppp
*sp
, struct sk_buff
*skb
)
1210 struct lcp_header
*h
;
1211 struct net_device
*dev
= sp
->pp_if
;
1214 if (!pskb_may_pull(skb
, sizeof(struct lcp_header
))) {
1215 if (sp
->pp_flags
& PP_DEBUG
)
1216 printk (KERN_WARNING
"%s: invalid ipcp packet length: %d bytes\n",
1220 h
= (struct lcp_header
*)skb
->data
;
1221 skb_pull(skb
,sizeof(struct lcp_header
));
1222 if (sp
->pp_flags
& PP_DEBUG
) {
1223 printk (KERN_WARNING
"%s: ipcp input: %d bytes <%s id=%xh len=%xh",
1225 sppp_ipcp_type_name (h
->type
), h
->ident
, ntohs (h
->len
));
1227 sppp_print_bytes ((u8
*) (h
+1), len
-4);
1230 if (len
> ntohs (h
->len
))
1231 len
= ntohs (h
->len
);
1234 /* Unknown packet type -- send Code-Reject packet. */
1235 sppp_cp_send (sp
, PPP_IPCP
, IPCP_CODE_REJ
, ++sp
->pp_seq
, len
, h
);
1239 if (sp
->pp_flags
& PP_DEBUG
)
1240 printk (KERN_WARNING
"%s: invalid ipcp configure request packet length: %d bytes\n",
1245 sppp_cp_send (sp
, PPP_IPCP
, LCP_CONF_REJ
, h
->ident
,
1248 switch (sp
->ipcp
.state
) {
1249 case IPCP_STATE_OPENED
:
1250 /* Initiate renegotiation. */
1251 sppp_ipcp_open (sp
);
1252 /* fall through... */
1253 case IPCP_STATE_ACK_SENT
:
1254 /* Go to closed state. */
1255 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
1258 /* Send Configure-Ack packet. */
1259 sppp_cp_send (sp
, PPP_IPCP
, IPCP_CONF_ACK
, h
->ident
,
1261 /* Change the state. */
1262 if (sp
->ipcp
.state
== IPCP_STATE_ACK_RCVD
)
1263 sp
->ipcp
.state
= IPCP_STATE_OPENED
;
1265 sp
->ipcp
.state
= IPCP_STATE_ACK_SENT
;
1269 if (h
->ident
!= sp
->ipcp
.confid
)
1271 sppp_clear_timeout (sp
);
1272 switch (sp
->ipcp
.state
) {
1273 case IPCP_STATE_CLOSED
:
1274 sp
->ipcp
.state
= IPCP_STATE_ACK_RCVD
;
1275 sppp_set_timeout (sp
, 5);
1277 case IPCP_STATE_ACK_SENT
:
1278 sp
->ipcp
.state
= IPCP_STATE_OPENED
;
1284 if (h
->ident
!= sp
->ipcp
.confid
)
1286 sppp_clear_timeout (sp
);
1287 /* Initiate renegotiation. */
1288 sppp_ipcp_open (sp
);
1289 if (sp
->ipcp
.state
!= IPCP_STATE_ACK_SENT
)
1290 /* Go to closed state. */
1291 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
1294 /* Send Terminate-Ack packet. */
1295 sppp_cp_send (sp
, PPP_IPCP
, IPCP_TERM_ACK
, h
->ident
, 0, NULL
);
1296 /* Go to closed state. */
1297 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
1298 /* Initiate renegotiation. */
1299 sppp_ipcp_open (sp
);
1302 /* Ignore for now. */
1304 /* Ignore for now. */
1309 static void sppp_lcp_open (struct sppp
*sp
)
1313 if (! sp
->lcp
.magic
)
1314 sp
->lcp
.magic
= jiffies
;
1315 opt
[0] = LCP_OPT_MAGIC
;
1316 opt
[1] = sizeof (opt
);
1317 opt
[2] = sp
->lcp
.magic
>> 24;
1318 opt
[3] = sp
->lcp
.magic
>> 16;
1319 opt
[4] = sp
->lcp
.magic
>> 8;
1320 opt
[5] = sp
->lcp
.magic
;
1321 sp
->lcp
.confid
= ++sp
->pp_seq
;
1322 sppp_cp_send (sp
, PPP_LCP
, LCP_CONF_REQ
, sp
->lcp
.confid
,
1323 sizeof (opt
), &opt
);
1324 sppp_set_timeout (sp
, 2);
1327 static void sppp_ipcp_open (struct sppp
*sp
)
1329 sp
->ipcp
.confid
= ++sp
->pp_seq
;
1330 sppp_cp_send (sp
, PPP_IPCP
, IPCP_CONF_REQ
, sp
->ipcp
.confid
, 0, NULL
);
1331 sppp_set_timeout (sp
, 2);
1335 * Process PPP control protocol timeouts.
1338 static void sppp_cp_timeout (unsigned long arg
)
1340 struct sppp
*sp
= (struct sppp
*) arg
;
1341 unsigned long flags
;
1343 spin_lock_irqsave(&sp
->lock
, flags
);
1345 sp
->pp_flags
&= ~PP_TIMO
;
1346 if (! (sp
->pp_if
->flags
& IFF_UP
) || (sp
->pp_flags
& PP_CISCO
)) {
1347 spin_unlock_irqrestore(&sp
->lock
, flags
);
1350 switch (sp
->lcp
.state
) {
1351 case LCP_STATE_CLOSED
:
1352 /* No ACK for Configure-Request, retry. */
1355 case LCP_STATE_ACK_RCVD
:
1356 /* ACK got, but no Configure-Request for peer, retry. */
1358 sp
->lcp
.state
= LCP_STATE_CLOSED
;
1360 case LCP_STATE_ACK_SENT
:
1361 /* ACK sent but no ACK for Configure-Request, retry. */
1364 case LCP_STATE_OPENED
:
1365 /* LCP is already OK, try IPCP. */
1366 switch (sp
->ipcp
.state
) {
1367 case IPCP_STATE_CLOSED
:
1368 /* No ACK for Configure-Request, retry. */
1369 sppp_ipcp_open (sp
);
1371 case IPCP_STATE_ACK_RCVD
:
1372 /* ACK got, but no Configure-Request for peer, retry. */
1373 sppp_ipcp_open (sp
);
1374 sp
->ipcp
.state
= IPCP_STATE_CLOSED
;
1376 case IPCP_STATE_ACK_SENT
:
1377 /* ACK sent but no ACK for Configure-Request, retry. */
1378 sppp_ipcp_open (sp
);
1380 case IPCP_STATE_OPENED
:
1386 spin_unlock_irqrestore(&sp
->lock
, flags
);
1390 static char *sppp_lcp_type_name (u8 type
)
1392 static char buf
[8];
1394 case LCP_CONF_REQ
: return ("conf-req");
1395 case LCP_CONF_ACK
: return ("conf-ack");
1396 case LCP_CONF_NAK
: return ("conf-nack");
1397 case LCP_CONF_REJ
: return ("conf-rej");
1398 case LCP_TERM_REQ
: return ("term-req");
1399 case LCP_TERM_ACK
: return ("term-ack");
1400 case LCP_CODE_REJ
: return ("code-rej");
1401 case LCP_PROTO_REJ
: return ("proto-rej");
1402 case LCP_ECHO_REQ
: return ("echo-req");
1403 case LCP_ECHO_REPLY
: return ("echo-reply");
1404 case LCP_DISC_REQ
: return ("discard-req");
1406 sprintf (buf
, "%xh", type
);
1410 static char *sppp_ipcp_type_name (u8 type
)
1412 static char buf
[8];
1414 case IPCP_CONF_REQ
: return ("conf-req");
1415 case IPCP_CONF_ACK
: return ("conf-ack");
1416 case IPCP_CONF_NAK
: return ("conf-nack");
1417 case IPCP_CONF_REJ
: return ("conf-rej");
1418 case IPCP_TERM_REQ
: return ("term-req");
1419 case IPCP_TERM_ACK
: return ("term-ack");
1420 case IPCP_CODE_REJ
: return ("code-rej");
1422 sprintf (buf
, "%xh", type
);
1426 static void sppp_print_bytes (u_char
*p
, u16 len
)
1428 printk (" %x", *p
++);
1430 printk ("-%x", *p
++);
1434 * sppp_rcv - receive and process a WAN PPP frame
1435 * @skb: The buffer to process
1436 * @dev: The device it arrived on
1440 * Protocol glue. This drives the deferred processing mode the poorer
1441 * cards use. This can be called directly by cards that do not have
1442 * timing constraints but is normally called from the network layer
1443 * after interrupt servicing to process frames queued via netif_rx.
1446 static int sppp_rcv(struct sk_buff
*skb
, struct net_device
*dev
, struct packet_type
*p
, struct net_device
*orig_dev
)
1448 if ((skb
= skb_share_check(skb
, GFP_ATOMIC
)) == NULL
)
1450 sppp_input(dev
,skb
);
1454 static struct packet_type sppp_packet_type
= {
1455 .type
= __constant_htons(ETH_P_WAN_PPP
),
1459 static char banner
[] __initdata
=
1460 KERN_INFO
"Cronyx Ltd, Synchronous PPP and CISCO HDLC (c) 1994\n"
1461 KERN_INFO
"Linux port (c) 1998 Building Number Three Ltd & "
1462 "Jan \"Yenya\" Kasprzak.\n";
1464 static int __init
sync_ppp_init(void)
1469 skb_queue_head_init(&tx_queue
);
1470 dev_add_pack(&sppp_packet_type
);
1475 static void __exit
sync_ppp_cleanup(void)
1477 dev_remove_pack(&sppp_packet_type
);
1480 module_init(sync_ppp_init
);
1481 module_exit(sync_ppp_cleanup
);
1482 module_param(debug
, int, 0);
1483 MODULE_LICENSE("GPL");