xref: /386bsd/usr/src/usr.sbin/pppd/fsm.h (revision a2142627)
1 /*
2  * fsm.h - {Link, IP} Control Protocol Finite State Machine definitions.
3  *
4  * Copyright (c) 1989 Carnegie Mellon University.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted
8  * provided that the above copyright notice and this paragraph are
9  * duplicated in all such forms and that any documentation,
10  * advertising materials, and other materials related to such
11  * distribution and use acknowledge that the software was developed
12  * by Carnegie Mellon University.  The name of the
13  * University may not be used to endorse or promote products derived
14  * from this software without specific prior written permission.
15  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  * $Id: fsm.h,v 1.2 1994/04/11 07:18:35 paulus Exp $
20  */
21 
22 /*
23  * Packet header = Code, id, length.
24  */
25 #define HEADERLEN	(sizeof (u_char) + sizeof (u_char) + sizeof (u_short))
26 
27 
28 /*
29  *  CP (LCP, IPCP, etc.) codes.
30  */
31 #define CONFREQ		1	/* Configuration Request */
32 #define CONFACK		2	/* Configuration Ack */
33 #define CONFNAK		3	/* Configuration Nak */
34 #define CONFREJ		4	/* Configuration Reject */
35 #define TERMREQ		5	/* Termination Request */
36 #define TERMACK		6	/* Termination Ack */
37 #define CODEREJ		7	/* Code Reject */
38 
39 
40 /*
41  * Each FSM is described by a fsm_callbacks and a fsm structure.
42  */
43 typedef struct fsm_callbacks {
44     void (*resetci)();		/* Reset our Configuration Information */
45     int  (*cilen)();		/* Length of our Configuration Information */
46     void (*addci)();		/* Add our Configuration Information */
47     int  (*ackci)();		/* ACK our Configuration Information */
48     int  (*nakci)();		/* NAK our Configuration Information */
49     int  (*rejci)();		/* Reject our Configuration Information */
50     int  (*reqci)();		/* Request peer's Configuration Information */
51     void (*up)();		/* Called when fsm reaches OPENED state */
52     void (*down)();		/* Called when fsm leaves OPENED state */
53     void (*starting)();		/* Called when we want the lower layer */
54     void (*finished)();		/* Called when we don't want the lower layer */
55     void (*protreject)();	/* Called when Protocol-Reject received */
56     void (*retransmit)();	/* Retransmission is necessary */
57     int  (*extcode)();		/* Called when unknown code received */
58     char *proto_name;		/* String name for protocol (for messages) */
59 } fsm_callbacks;
60 
61 
62 typedef struct fsm {
63     int unit;			/* Interface unit number */
64     int protocol;		/* Data Link Layer Protocol field value */
65     int state;			/* State */
66     int flags;			/* Contains option bits */
67     u_char id;			/* Current id */
68     u_char reqid;		/* Current request id */
69     int timeouttime;		/* Timeout time in milliseconds */
70     int maxconfreqtransmits;	/* Maximum Configure-Request transmissions */
71     int retransmits;		/* Number of retransmissions left */
72     int maxtermtransmits;	/* Maximum Terminate-Request transmissions */
73     int nakloops;		/* Number of nak loops since last ack */
74     int maxnakloops;		/* Maximum number of nak loops tolerated */
75     fsm_callbacks *callbacks;	/* Callback routines */
76 } fsm;
77 
78 
79 /*
80  * Link states.
81  */
82 #define INITIAL		0	/* Down, hasn't been opened */
83 #define STARTING	1	/* Down, been opened */
84 #define CLOSED		2	/* Up, hasn't been opened */
85 #define STOPPED		3	/* Open, waiting for down event */
86 #define CLOSING		4	/* Terminating the connection, not open */
87 #define STOPPING	5	/* Terminating, but open */
88 #define REQSENT		6	/* We've sent a Config Request */
89 #define ACKRCVD		7	/* We've received a Config Ack */
90 #define ACKSENT		8	/* We've sent a Config Ack */
91 #define OPENED		9	/* Connection available */
92 
93 
94 /*
95  * Flags - indicate options controlling FSM operation
96  */
97 #define OPT_PASSIVE	1	/* Don't die if we don't get a response */
98 #define OPT_RESTART	2	/* Treat 2nd OPEN as DOWN, UP */
99 #define OPT_SILENT	4	/* Wait for peer to speak first */
100 
101 
102 /*
103  * Timeouts.
104  */
105 #define DEFTIMEOUT	3	/* Timeout time in seconds */
106 #define DEFMAXTERMREQS	2	/* Maximum Terminate-Request transmissions */
107 #define DEFMAXCONFREQS	10	/* Maximum Configure-Request transmissions */
108 #define DEFMAXNAKLOOPS	10	/* Maximum number of nak loops */
109 
110 
111 /*
112  * Prototypes
113  */
114 void fsm_init __ARGS((fsm *));
115 void fsm_lowerup __ARGS((fsm *));
116 void fsm_lowerdown __ARGS((fsm *));
117 void fsm_open __ARGS((fsm *));
118 void fsm_close __ARGS((fsm *));
119 void fsm_input __ARGS((fsm *, u_char *, int));
120 void fsm_protreject __ARGS((fsm *));
121 void fsm_sdata __ARGS((fsm *, int, int, u_char *, int));
122 
123 
124 /*
125  * Variables
126  */
127 extern int peer_mru[];		/* currently negotiated peer MRU (per unit) */
128