2 * eap.h - Extensible Authentication Protocol for PPP (RFC 2284)
4 * Copyright (c) 2001 by Sun Microsystems, Inc.
7 * Non-exclusive rights to redistribute, modify, translate, and use
8 * this software in source and binary forms, in whole or in part, is
9 * hereby granted, provided that the above copyright notice is
10 * duplicated in any source form, and that neither the name of the
11 * copyright holder nor the author is used to endorse or promote
12 * products derived from this software.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 * Original version by James Carlson
20 * $Id: eap.h,v 1.2 2003/06/11 23:56:26 paulus Exp $
23 #include "netif/ppp/ppp_opts.h"
24 #if PPP_SUPPORT && EAP_SUPPORT /* don't build if not configured for use in lwipopts.h */
36 * Packet header = Code, id, length.
38 #define EAP_HEADERLEN 4
41 /* EAP message codes. */
43 #define EAP_RESPONSE 2
48 #define EAPT_IDENTITY 1
49 #define EAPT_NOTIFICATION 2
50 #define EAPT_NAK 3 /* (response only) */
51 #define EAPT_MD5CHAP 4
52 #define EAPT_OTP 5 /* One-Time Password; RFC 1938 */
53 #define EAPT_TOKEN 6 /* Generic Token Card */
54 /* 7 and 8 are unassigned. */
55 #define EAPT_RSA 9 /* RSA Public Key Authentication */
56 #define EAPT_DSS 10 /* DSS Unilateral */
57 #define EAPT_KEA 11 /* KEA */
58 #define EAPT_KEA_VALIDATE 12 /* KEA-VALIDATE */
59 #define EAPT_TLS 13 /* EAP-TLS */
60 #define EAPT_DEFENDER 14 /* Defender Token (AXENT) */
61 #define EAPT_W2K 15 /* Windows 2000 EAP */
62 #define EAPT_ARCOT 16 /* Arcot Systems */
63 #define EAPT_CISCOWIRELESS 17 /* Cisco Wireless */
64 #define EAPT_NOKIACARD 18 /* Nokia IP smart card */
65 #define EAPT_SRP 19 /* Secure Remote Password */
66 /* 20 is deprecated */
68 /* EAP SRP-SHA1 Subtypes */
69 #define EAPSRP_CHALLENGE 1 /* Request 1 - Challenge */
70 #define EAPSRP_CKEY 1 /* Response 1 - Client Key */
71 #define EAPSRP_SKEY 2 /* Request 2 - Server Key */
72 #define EAPSRP_CVALIDATOR 2 /* Response 2 - Client Validator */
73 #define EAPSRP_SVALIDATOR 3 /* Request 3 - Server Validator */
74 #define EAPSRP_ACK 3 /* Response 3 - final ack */
75 #define EAPSRP_LWRECHALLENGE 4 /* Req/resp 4 - Lightweight rechal */
77 #define SRPVAL_EBIT 0x00000001 /* Use shared key for ECP */
79 #define SRP_PSEUDO_ID "pseudo_"
80 #define SRP_PSEUDO_LEN 7
82 #define MD5_SIGNATURE_SIZE 16
83 #define EAP_MIN_CHALLENGE_LENGTH 17
84 #define EAP_MAX_CHALLENGE_LENGTH 24
85 #define EAP_MIN_MAX_POWER_OF_TWO_CHALLENGE_LENGTH 3 /* 2^3-1 = 7, 17+7 = 24 */
88 "Initial", "Pending", "Closed", "Listen", "Identify", \
89 "SRP1", "SRP2", "SRP3", "MD5Chall", "Open", "SRP4", "BadAuth"
91 #define eap_client_active(pcb) ((pcb)->eap.es_client.ea_state == eapListen)
93 #define eap_server_active(pcb) \
94 ((pcb)->eap.es_server.ea_state >= eapIdentify && \
95 (pcb)->eap.es_server.ea_state <= eapMD5Chall)
96 #endif /* PPP_SERVER */
99 * Complete EAP state for one PPP session.
101 enum eap_state_code
{
102 eapInitial
= 0, /* No EAP authentication yet requested */
103 eapPending
, /* Waiting for LCP (no timer) */
104 eapClosed
, /* Authentication not in use */
105 eapListen
, /* Client ready (and timer running) */
106 eapIdentify
, /* EAP Identify sent */
107 eapSRP1
, /* Sent EAP SRP-SHA1 Subtype 1 */
108 eapSRP2
, /* Sent EAP SRP-SHA1 Subtype 2 */
109 eapSRP3
, /* Sent EAP SRP-SHA1 Subtype 3 */
110 eapMD5Chall
, /* Sent MD5-Challenge */
111 eapOpen
, /* Completed authentication */
112 eapSRP4
, /* Sent EAP SRP-SHA1 Subtype 4 */
113 eapBadAuth
/* Failed authentication */
117 const char *ea_name
; /* Our name */
118 char ea_peer
[MAXNAMELEN
+1]; /* Peer's name */
119 void *ea_session
; /* Authentication library linkage */
120 u_char
*ea_skey
; /* Shared encryption key */
121 u_short ea_namelen
; /* Length of our name */
122 u_short ea_peerlen
; /* Length of peer's name */
123 enum eap_state_code ea_state
;
124 u_char ea_id
; /* Current id */
125 u_char ea_requests
; /* Number of Requests sent/received */
126 u_char ea_responses
; /* Number of Responses */
127 u_char ea_type
; /* One of EAPT_* */
128 u32_t ea_keyflags
; /* SRP shared key usage flags */
131 #ifndef EAP_MAX_CHALLENGE_LENGTH
132 #define EAP_MAX_CHALLENGE_LENGTH 24
134 typedef struct eap_state
{
135 struct eap_auth es_client
; /* Client (authenticatee) data */
137 struct eap_auth es_server
; /* Server (authenticator) data */
138 #endif /* PPP_SERVER */
139 int es_savedtime
; /* Saved timeout */
140 int es_rechallenge
; /* EAP rechallenge interval */
141 int es_lwrechallenge
; /* SRP lightweight rechallenge inter */
142 u8_t es_usepseudo
; /* Use SRP Pseudonym if offered one */
143 int es_usedpseudo
; /* Set if we already sent PN */
144 int es_challen
; /* Length of challenge string */
145 u_char es_challenge
[EAP_MAX_CHALLENGE_LENGTH
];
151 #if 0 /* moved to ppp_opts.h */
152 #define EAP_DEFTIMEOUT 3 /* Timeout (seconds) for rexmit */
153 #define EAP_DEFTRANSMITS 10 /* max # times to transmit */
154 #define EAP_DEFREQTIME 20 /* Time to wait for peer request */
155 #define EAP_DEFALLOWREQ 20 /* max # times to accept requests */
156 #endif /* moved to ppp_opts.h */
158 void eap_authwithpeer(ppp_pcb
*pcb
, const char *localname
);
159 void eap_authpeer(ppp_pcb
*pcb
, const char *localname
);
161 extern const struct protent eap_protent
;
167 #endif /* PPP_EAP_H */
169 #endif /* PPP_SUPPORT && EAP_SUPPORT */