Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / wpa / src / eap_peer / eap_config.h
blob6f1e76508f3c696d08f6d693d96e45be11151c73
1 /*
2 * EAP peer configuration data
3 * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef EAP_CONFIG_H
16 #define EAP_CONFIG_H
18 /**
19 * struct eap_peer_config - EAP peer configuration/credentials
21 struct eap_peer_config {
22 /**
23 * identity - EAP Identity
25 * This field is used to set the real user identity or NAI (for
26 * EAP-PSK/PAX/SAKE/GPSK).
28 u8 *identity;
30 /**
31 * identity_len - EAP Identity length
33 size_t identity_len;
35 /**
36 * anonymous_identity - Anonymous EAP Identity
38 * This field is used for unencrypted use with EAP types that support
39 * different tunnelled identity, e.g., EAP-TTLS, in order to reveal the
40 * real identity (identity field) only to the authentication server.
42 * If not set, the identity field will be used for both unencrypted and
43 * protected fields.
45 u8 *anonymous_identity;
47 /**
48 * anonymous_identity_len - Length of anonymous_identity
50 size_t anonymous_identity_len;
52 /**
53 * password - Password string for EAP
55 * This field can include either the plaintext password (default
56 * option) or a NtPasswordHash (16-byte MD4 hash of the unicode
57 * presentation of the password) if flags field has
58 * EAP_CONFIG_FLAGS_PASSWORD_NTHASH bit set to 1. NtPasswordHash can
59 * only be used with authentication mechanism that use this hash as the
60 * starting point for operation: MSCHAP and MSCHAPv2 (EAP-MSCHAPv2,
61 * EAP-TTLS/MSCHAPv2, EAP-TTLS/MSCHAP, LEAP).
63 * In addition, this field is used to configure a pre-shared key for
64 * EAP-PSK/PAX/SAKE/GPSK. The length of the PSK must be 16 for EAP-PSK
65 * and EAP-PAX and 32 for EAP-SAKE. EAP-GPSK can use a variable length
66 * PSK.
68 u8 *password;
70 /**
71 * password_len - Length of password field
73 size_t password_len;
75 /**
76 * ca_cert - File path to CA certificate file (PEM/DER)
78 * This file can have one or more trusted CA certificates. If ca_cert
79 * and ca_path are not included, server certificate will not be
80 * verified. This is insecure and a trusted CA certificate should
81 * always be configured when using EAP-TLS/TTLS/PEAP. Full path to the
82 * file should be used since working directory may change when
83 * wpa_supplicant is run in the background.
85 * Alternatively, a named configuration blob can be used by setting
86 * this to blob://<blob name>.
88 * On Windows, trusted CA certificates can be loaded from the system
89 * certificate store by setting this to cert_store://<name>, e.g.,
90 * ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
91 * Note that when running wpa_supplicant as an application, the user
92 * certificate store (My user account) is used, whereas computer store
93 * (Computer account) is used when running wpasvc as a service.
95 u8 *ca_cert;
97 /**
98 * ca_path - Directory path for CA certificate files (PEM)
100 * This path may contain multiple CA certificates in OpenSSL format.
101 * Common use for this is to point to system trusted CA list which is
102 * often installed into directory like /etc/ssl/certs. If configured,
103 * these certificates are added to the list of trusted CAs. ca_cert
104 * may also be included in that case, but it is not required.
106 u8 *ca_path;
109 * client_cert - File path to client certificate file (PEM/DER)
111 * This field is used with EAP method that use TLS authentication.
112 * Usually, this is only configured for EAP-TLS, even though this could
113 * in theory be used with EAP-TTLS and EAP-PEAP, too. Full path to the
114 * file should be used since working directory may change when
115 * wpa_supplicant is run in the background.
117 * Alternatively, a named configuration blob can be used by setting
118 * this to blob://<blob name>.
120 u8 *client_cert;
123 * private_key - File path to client private key file (PEM/DER/PFX)
125 * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
126 * commented out. Both the private key and certificate will be read
127 * from the PKCS#12 file in this case. Full path to the file should be
128 * used since working directory may change when wpa_supplicant is run
129 * in the background.
131 * Windows certificate store can be used by leaving client_cert out and
132 * configuring private_key in one of the following formats:
134 * cert://substring_to_match
136 * hash://certificate_thumbprint_in_hex
138 * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
140 * Note that when running wpa_supplicant as an application, the user
141 * certificate store (My user account) is used, whereas computer store
142 * (Computer account) is used when running wpasvc as a service.
144 * Alternatively, a named configuration blob can be used by setting
145 * this to blob://<blob name>.
147 u8 *private_key;
150 * private_key_passwd - Password for private key file
152 * If left out, this will be asked through control interface.
154 u8 *private_key_passwd;
157 * dh_file - File path to DH/DSA parameters file (in PEM format)
159 * This is an optional configuration file for setting parameters for an
160 * ephemeral DH key exchange. In most cases, the default RSA
161 * authentication does not use this configuration. However, it is
162 * possible setup RSA to use ephemeral DH key exchange. In addition,
163 * ciphers with DSA keys always use ephemeral DH keys. This can be used
164 * to achieve forward secrecy. If the file is in DSA parameters format,
165 * it will be automatically converted into DH params. Full path to the
166 * file should be used since working directory may change when
167 * wpa_supplicant is run in the background.
169 * Alternatively, a named configuration blob can be used by setting
170 * this to blob://<blob name>.
172 u8 *dh_file;
175 * subject_match - Constraint for server certificate subject
177 * This substring is matched against the subject of the authentication
178 * server certificate. If this string is set, the server sertificate is
179 * only accepted if it contains this string in the subject. The subject
180 * string is in following format:
182 * /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@n.example.com
184 u8 *subject_match;
187 * altsubject_match - Constraint for server certificate alt. subject
189 * Semicolon separated string of entries to be matched against the
190 * alternative subject name of the authentication server certificate.
191 * If this string is set, the server sertificate is only accepted if it
192 * contains one of the entries in an alternative subject name
193 * extension.
195 * altSubjectName string is in following format: TYPE:VALUE
197 * Example: EMAIL:server@example.com
198 * Example: DNS:server.example.com;DNS:server2.example.com
200 * Following types are supported: EMAIL, DNS, URI
202 u8 *altsubject_match;
205 * ca_cert2 - File path to CA certificate file (PEM/DER) (Phase 2)
207 * This file can have one or more trusted CA certificates. If ca_cert2
208 * and ca_path2 are not included, server certificate will not be
209 * verified. This is insecure and a trusted CA certificate should
210 * always be configured. Full path to the file should be used since
211 * working directory may change when wpa_supplicant is run in the
212 * background.
214 * This field is like ca_cert, but used for phase 2 (inside
215 * EAP-TTLS/PEAP/FAST tunnel) authentication.
217 * Alternatively, a named configuration blob can be used by setting
218 * this to blob://<blob name>.
220 u8 *ca_cert2;
223 * ca_path2 - Directory path for CA certificate files (PEM) (Phase 2)
225 * This path may contain multiple CA certificates in OpenSSL format.
226 * Common use for this is to point to system trusted CA list which is
227 * often installed into directory like /etc/ssl/certs. If configured,
228 * these certificates are added to the list of trusted CAs. ca_cert
229 * may also be included in that case, but it is not required.
231 * This field is like ca_path, but used for phase 2 (inside
232 * EAP-TTLS/PEAP/FAST tunnel) authentication.
234 u8 *ca_path2;
237 * client_cert2 - File path to client certificate file
239 * This field is like client_cert, but used for phase 2 (inside
240 * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
241 * file should be used since working directory may change when
242 * wpa_supplicant is run in the background.
244 * Alternatively, a named configuration blob can be used by setting
245 * this to blob://<blob name>.
247 u8 *client_cert2;
250 * private_key2 - File path to client private key file
252 * This field is like private_key, but used for phase 2 (inside
253 * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
254 * file should be used since working directory may change when
255 * wpa_supplicant is run in the background.
257 * Alternatively, a named configuration blob can be used by setting
258 * this to blob://<blob name>.
260 u8 *private_key2;
263 * private_key2_passwd - Password for private key file
265 * This field is like private_key_passwd, but used for phase 2 (inside
266 * EAP-TTLS/PEAP/FAST tunnel) authentication.
268 u8 *private_key2_passwd;
271 * dh_file2 - File path to DH/DSA parameters file (in PEM format)
273 * This field is like dh_file, but used for phase 2 (inside
274 * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
275 * file should be used since working directory may change when
276 * wpa_supplicant is run in the background.
278 * Alternatively, a named configuration blob can be used by setting
279 * this to blob://<blob name>.
281 u8 *dh_file2;
284 * subject_match2 - Constraint for server certificate subject
286 * This field is like subject_match, but used for phase 2 (inside
287 * EAP-TTLS/PEAP/FAST tunnel) authentication.
289 u8 *subject_match2;
292 * altsubject_match2 - Constraint for server certificate alt. subject
294 * This field is like altsubject_match, but used for phase 2 (inside
295 * EAP-TTLS/PEAP/FAST tunnel) authentication.
297 u8 *altsubject_match2;
300 * eap_methods - Allowed EAP methods
302 * (vendor=EAP_VENDOR_IETF,method=EAP_TYPE_NONE) terminated list of
303 * allowed EAP methods or %NULL if all methods are accepted.
305 struct eap_method_type *eap_methods;
308 * phase1 - Phase 1 (outer authentication) parameters
310 * String with field-value pairs, e.g., "peapver=0" or
311 * "peapver=1 peaplabel=1".
313 * 'peapver' can be used to force which PEAP version (0 or 1) is used.
315 * 'peaplabel=1' can be used to force new label, "client PEAP
316 * encryption", to be used during key derivation when PEAPv1 or newer.
318 * Most existing PEAPv1 implementation seem to be using the old label,
319 * "client EAP encryption", and wpa_supplicant is now using that as the
320 * default value.
322 * Some servers, e.g., Radiator, may require peaplabel=1 configuration
323 * to interoperate with PEAPv1; see eap_testing.txt for more details.
325 * 'peap_outer_success=0' can be used to terminate PEAP authentication
326 * on tunneled EAP-Success. This is required with some RADIUS servers
327 * that implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
328 * Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode).
330 * include_tls_length=1 can be used to force wpa_supplicant to include
331 * TLS Message Length field in all TLS messages even if they are not
332 * fragmented.
334 * sim_min_num_chal=3 can be used to configure EAP-SIM to require three
335 * challenges (by default, it accepts 2 or 3).
337 * result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
338 * protected result indication.
340 * fast_provisioning option can be used to enable in-line provisioning
341 * of EAP-FAST credentials (PAC):
342 * 0 = disabled,
343 * 1 = allow unauthenticated provisioning,
344 * 2 = allow authenticated provisioning,
345 * 3 = allow both unauthenticated and authenticated provisioning
347 * fast_max_pac_list_len=<num> option can be used to set the maximum
348 * number of PAC entries to store in a PAC list (default: 10).
350 * fast_pac_format=binary option can be used to select binary format
351 * for storing PAC entires in order to save some space (the default
352 * text format uses about 2.5 times the size of minimal binary format).
354 * crypto_binding option can be used to control PEAPv0 cryptobinding
355 * behavior:
356 * 0 = do not use cryptobinding
357 * 1 = use cryptobinding if server supports it (default)
358 * 2 = require cryptobinding
360 char *phase1;
363 * phase2 - Phase2 (inner authentication with TLS tunnel) parameters
365 * String with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
366 * "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS.
368 char *phase2;
371 * pcsc - Parameters for PC/SC smartcard interface for USIM and GSM SIM
373 * This field is used to configure PC/SC smartcard interface.
374 * Currently, the only configuration is whether this field is %NULL (do
375 * not use PC/SC) or non-NULL (e.g., "") to enable PC/SC.
377 * This field is used for EAP-SIM and EAP-AKA.
379 char *pcsc;
382 * pin - PIN for USIM, GSM SIM, and smartcards
384 * This field is used to configure PIN for SIM and smartcards for
385 * EAP-SIM and EAP-AKA. In addition, this is used with EAP-TLS if a
386 * smartcard is used for private key operations.
388 * If left out, this will be asked through control interface.
390 char *pin;
393 * engine - Enable OpenSSL engine (e.g., for smartcard access)
395 * This is used if private key operations for EAP-TLS are performed
396 * using a smartcard.
398 int engine;
401 * engine_id - Engine ID for OpenSSL engine
403 * "opensc" to select OpenSC engine or "pkcs11" to select PKCS#11
404 * engine.
406 * This is used if private key operations for EAP-TLS are performed
407 * using a smartcard.
409 char *engine_id;
412 * key_id - Key ID for OpenSSL engine
414 * This is used if private key operations for EAP-TLS are performed
415 * using a smartcard.
417 char *key_id;
420 * cert_id - Cert ID for OpenSSL engine
422 * This is used if the certificate operations for EAP-TLS are performed
423 * using a smartcard.
425 char *cert_id;
428 * ca_cert_id - CA Cert ID for OpenSSL engine
430 * This is used if the CA certificate for EAP-TLS is on a smartcard.
432 char *ca_cert_id;
435 * key2_id - Key ID for OpenSSL engine (phase2)
437 * This is used if private key operations for EAP-TLS are performed
438 * using a smartcard.
440 char *key2_id;
443 * cert2_id - Cert ID for OpenSSL engine (phase2)
445 * This is used if the certificate operations for EAP-TLS are performed
446 * using a smartcard.
448 char *cert2_id;
451 * ca_cert2_id - CA Cert ID for OpenSSL engine (phase2)
453 * This is used if the CA certificate for EAP-TLS is on a smartcard.
455 char *ca_cert2_id;
458 * otp - One-time-password
460 * This field should not be set in configuration step. It is only used
461 * internally when OTP is entered through the control interface.
463 u8 *otp;
466 * otp_len - Length of the otp field
468 size_t otp_len;
471 * pending_req_identity - Whether there is a pending identity request
473 * This field should not be set in configuration step. It is only used
474 * internally when control interface is used to request needed
475 * information.
477 int pending_req_identity;
480 * pending_req_password - Whether there is a pending password request
482 * This field should not be set in configuration step. It is only used
483 * internally when control interface is used to request needed
484 * information.
486 int pending_req_password;
489 * pending_req_pin - Whether there is a pending PIN request
491 * This field should not be set in configuration step. It is only used
492 * internally when control interface is used to request needed
493 * information.
495 int pending_req_pin;
498 * pending_req_new_password - Pending password update request
500 * This field should not be set in configuration step. It is only used
501 * internally when control interface is used to request needed
502 * information.
504 int pending_req_new_password;
507 * pending_req_passphrase - Pending passphrase request
509 * This field should not be set in configuration step. It is only used
510 * internally when control interface is used to request needed
511 * information.
513 int pending_req_passphrase;
516 * pending_req_otp - Whether there is a pending OTP request
518 * This field should not be set in configuration step. It is only used
519 * internally when control interface is used to request needed
520 * information.
522 char *pending_req_otp;
525 * pending_req_otp_len - Length of the pending OTP request
527 size_t pending_req_otp_len;
530 * pac_file - File path or blob name for the PAC entries (EAP-FAST)
532 * wpa_supplicant will need to be able to create this file and write
533 * updates to it when PAC is being provisioned or refreshed. Full path
534 * to the file should be used since working directory may change when
535 * wpa_supplicant is run in the background.
536 * Alternatively, a named configuration blob can be used by setting
537 * this to blob://<blob name>.
539 char *pac_file;
542 * mschapv2_retry - MSCHAPv2 retry in progress
544 * This field is used internally by EAP-MSCHAPv2 and should not be set
545 * as part of configuration.
547 int mschapv2_retry;
550 * new_password - New password for password update
552 * This field is used during MSCHAPv2 password update. This is normally
553 * requested from the user through the control interface and not set
554 * from configuration.
556 u8 *new_password;
559 * new_password_len - Length of new_password field
561 size_t new_password_len;
564 * fragment_size - Maximum EAP fragment size in bytes (default 1398)
566 * This value limits the fragment size for EAP methods that support
567 * fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set
568 * small enough to make the EAP messages fit in MTU of the network
569 * interface used for EAPOL. The default value is suitable for most
570 * cases.
572 int fragment_size;
574 #define EAP_CONFIG_FLAGS_PASSWORD_NTHASH BIT(0)
576 * flags - Network configuration flags (bitfield)
578 * This variable is used for internal flags to describe further details
579 * for the network parameters.
580 * bit 0 = password is represented as a 16-byte NtPasswordHash value
581 * instead of plaintext password
583 u32 flags;
588 * struct wpa_config_blob - Named configuration blob
590 * This data structure is used to provide storage for binary objects to store
591 * abstract information like certificates and private keys inlined with the
592 * configuration data.
594 struct wpa_config_blob {
596 * name - Blob name
598 char *name;
601 * data - Pointer to binary data
603 u8 *data;
606 * len - Length of binary data
608 size_t len;
611 * next - Pointer to next blob in the configuration
613 struct wpa_config_blob *next;
616 #endif /* EAP_CONFIG_H */