Fixed a typo
[libeap.git] / src / eap_peer / eap_config.h
1 /*
2  * EAP peer configuration data
3  * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
4  *
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.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #ifndef EAP_CONFIG_H
16 #define EAP_CONFIG_H
17
18 /**
19  * struct eap_peer_config - EAP peer configuration/credentials
20  */
21 struct eap_peer_config {
22         /**
23          * identity - EAP Identity
24          *
25          * This field is used to set the real user identity or NAI (for
26          * EAP-PSK/PAX/SAKE/GPSK).
27          */
28         u8 *identity;
29
30         /**
31          * identity_len - EAP Identity length
32          */
33         size_t identity_len;
34
35         /**
36          * anonymous_identity -  Anonymous EAP Identity
37          *
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.
41          *
42          * If not set, the identity field will be used for both unencrypted and
43          * protected fields.
44          */
45         u8 *anonymous_identity;
46
47         /**
48          * anonymous_identity_len - Length of anonymous_identity
49          */
50         size_t anonymous_identity_len;
51
52         /**
53          * password - Password string for EAP
54          *
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).
62          *
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.
67          */
68         u8 *password;
69
70         /**
71          * password_len - Length of password field
72          */
73         size_t password_len;
74
75         /**
76          * ca_cert - File path to CA certificate file (PEM/DER)
77          *
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.
84          *
85          * Alternatively, a named configuration blob can be used by setting
86          * this to blob://<blob name>.
87          *
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.
94          */
95         u8 *ca_cert;
96
97         /**
98          * ca_path - Directory path for CA certificate files (PEM)
99          *
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.
105          */
106         u8 *ca_path;
107
108         /**
109          * client_cert - File path to client certificate file (PEM/DER)
110          *
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.
116          *
117          * Alternatively, a named configuration blob can be used by setting
118          * this to blob://<blob name>.
119          */
120         u8 *client_cert;
121
122         /**
123          * private_key - File path to client private key file (PEM/DER/PFX)
124          *
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.
130          *
131          * Windows certificate store can be used by leaving client_cert out and
132          * configuring private_key in one of the following formats:
133          *
134          * cert://substring_to_match
135          *
136          * hash://certificate_thumbprint_in_hex
137          *
138          * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
139          *
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.
143          *
144          * Alternatively, a named configuration blob can be used by setting
145          * this to blob://<blob name>.
146          */
147         u8 *private_key;
148
149         /**
150          * private_key_passwd - Password for private key file
151          *
152          * If left out, this will be asked through control interface.
153          */
154         u8 *private_key_passwd;
155
156         /**
157          * dh_file - File path to DH/DSA parameters file (in PEM format)
158          *
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.
168          *
169          * Alternatively, a named configuration blob can be used by setting
170          * this to blob://<blob name>.
171          */
172         u8 *dh_file;
173
174         /**
175          * subject_match - Constraint for server certificate subject
176          *
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:
181          *
182          * /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@n.example.com
183          */
184         u8 *subject_match;
185
186         /**
187          * altsubject_match - Constraint for server certificate alt. subject
188          *
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.
194          *
195          * altSubjectName string is in following format: TYPE:VALUE
196          *
197          * Example: EMAIL:server@example.com
198          * Example: DNS:server.example.com;DNS:server2.example.com
199          *
200          * Following types are supported: EMAIL, DNS, URI
201          */
202         u8 *altsubject_match;
203
204         /**
205          * ca_cert2 - File path to CA certificate file (PEM/DER) (Phase 2)
206          *
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.
213          *
214          * This field is like ca_cert, but used for phase 2 (inside
215          * EAP-TTLS/PEAP/FAST tunnel) authentication.
216          *
217          * Alternatively, a named configuration blob can be used by setting
218          * this to blob://<blob name>.
219          */
220         u8 *ca_cert2;
221
222         /**
223          * ca_path2 - Directory path for CA certificate files (PEM) (Phase 2)
224          *
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.
230          *
231          * This field is like ca_path, but used for phase 2 (inside
232          * EAP-TTLS/PEAP/FAST tunnel) authentication.
233          */
234         u8 *ca_path2;
235
236         /**
237          * client_cert2 - File path to client certificate file
238          *
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.
243          *
244          * Alternatively, a named configuration blob can be used by setting
245          * this to blob://<blob name>.
246          */
247         u8 *client_cert2;
248
249         /**
250          * private_key2 - File path to client private key file
251          *
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.
256          *
257          * Alternatively, a named configuration blob can be used by setting
258          * this to blob://<blob name>.
259          */
260         u8 *private_key2;
261
262         /**
263          * private_key2_passwd -  Password for private key file
264          *
265          * This field is like private_key_passwd, but used for phase 2 (inside
266          * EAP-TTLS/PEAP/FAST tunnel) authentication.
267          */
268         u8 *private_key2_passwd;
269
270         /**
271          * dh_file2 - File path to DH/DSA parameters file (in PEM format)
272          *
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.
277          *
278          * Alternatively, a named configuration blob can be used by setting
279          * this to blob://<blob name>.
280          */
281         u8 *dh_file2;
282
283         /**
284          * subject_match2 - Constraint for server certificate subject
285          *
286          * This field is like subject_match, but used for phase 2 (inside
287          * EAP-TTLS/PEAP/FAST tunnel) authentication.
288          */
289         u8 *subject_match2;
290
291         /**
292          * altsubject_match2 - Constraint for server certificate alt. subject
293          *
294          * This field is like altsubject_match, but used for phase 2 (inside
295          * EAP-TTLS/PEAP/FAST tunnel) authentication.
296          */
297         u8 *altsubject_match2;
298
299         /**
300          * eap_methods - Allowed EAP methods
301          *
302          * (vendor=EAP_VENDOR_IETF,method=EAP_TYPE_NONE) terminated list of
303          * allowed EAP methods or %NULL if all methods are accepted.
304          */
305         struct eap_method_type *eap_methods;
306
307         /**
308          * phase1 - Phase 1 (outer authentication) parameters
309          *
310          * String with field-value pairs, e.g., "peapver=0" or
311          * "peapver=1 peaplabel=1".
312          *
313          * 'peapver' can be used to force which PEAP version (0 or 1) is used.
314          *
315          * 'peaplabel=1' can be used to force new label, "client PEAP
316          * encryption", to be used during key derivation when PEAPv1 or newer.
317          *
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.
321          *
322          * Some servers, e.g., Radiator, may require peaplabel=1 configuration
323          * to interoperate with PEAPv1; see eap_testing.txt for more details.
324          *
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).
329          *
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.
333          *
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).
336          *
337          * result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
338          * protected result indication.
339          *
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
346          *
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).
349          *
350          * fast_pac_format=binary option can be used to select binary format
351          * for storing PAC entries in order to save some space (the default
352          * text format uses about 2.5 times the size of minimal binary format).
353          *
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
359          */
360         char *phase1;
361
362         /**
363          * phase2 - Phase2 (inner authentication with TLS tunnel) parameters
364          *
365          * String with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
366          * "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS.
367          */
368         char *phase2;
369
370         /**
371          * pcsc - Parameters for PC/SC smartcard interface for USIM and GSM SIM
372          *
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.
376          *
377          * This field is used for EAP-SIM and EAP-AKA.
378          */
379         char *pcsc;
380
381         /**
382          * pin - PIN for USIM, GSM SIM, and smartcards
383          *
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.
387          *
388          * If left out, this will be asked through control interface.
389          */
390         char *pin;
391
392         /**
393          * engine - Enable OpenSSL engine (e.g., for smartcard access)
394          *
395          * This is used if private key operations for EAP-TLS are performed
396          * using a smartcard.
397          */
398         int engine;
399
400         /**
401          * engine_id - Engine ID for OpenSSL engine
402          *
403          * "opensc" to select OpenSC engine or "pkcs11" to select PKCS#11
404          * engine.
405          *
406          * This is used if private key operations for EAP-TLS are performed
407          * using a smartcard.
408          */
409         char *engine_id;
410
411         /**
412          * key_id - Key ID for OpenSSL engine
413          *
414          * This is used if private key operations for EAP-TLS are performed
415          * using a smartcard.
416          */
417         char *key_id;
418
419         /**
420          * cert_id - Cert ID for OpenSSL engine
421          *
422          * This is used if the certificate operations for EAP-TLS are performed
423          * using a smartcard.
424          */
425         char *cert_id;
426
427         /**
428          * ca_cert_id - CA Cert ID for OpenSSL engine
429          *
430          * This is used if the CA certificate for EAP-TLS is on a smartcard.
431          */
432         char *ca_cert_id;
433
434         /**
435          * key2_id - Key ID for OpenSSL engine (phase2)
436          *
437          * This is used if private key operations for EAP-TLS are performed
438          * using a smartcard.
439          */
440         char *key2_id;
441
442         /**
443          * cert2_id - Cert ID for OpenSSL engine (phase2)
444          *
445          * This is used if the certificate operations for EAP-TLS are performed
446          * using a smartcard.
447          */
448         char *cert2_id;
449
450         /**
451          * ca_cert2_id - CA Cert ID for OpenSSL engine (phase2)
452          *
453          * This is used if the CA certificate for EAP-TLS is on a smartcard.
454          */
455         char *ca_cert2_id;
456
457         /**
458          * otp - One-time-password
459          *
460          * This field should not be set in configuration step. It is only used
461          * internally when OTP is entered through the control interface.
462          */
463         u8 *otp;
464
465         /**
466          * otp_len - Length of the otp field
467          */
468         size_t otp_len;
469
470         /**
471          * pending_req_identity - Whether there is a pending identity request
472          *
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.
476          */
477         int pending_req_identity;
478
479         /**
480          * pending_req_password - Whether there is a pending password request
481          *
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.
485          */
486         int pending_req_password;
487
488         /**
489          * pending_req_pin - Whether there is a pending PIN request
490          *
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.
494          */
495         int pending_req_pin;
496
497         /**
498          * pending_req_new_password - Pending password update request
499          *
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.
503          */
504         int pending_req_new_password;
505
506         /**
507          * pending_req_passphrase - Pending passphrase request
508          *
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.
512          */
513         int pending_req_passphrase;
514
515         /**
516          * pending_req_otp - Whether there is a pending OTP request
517          *
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.
521          */
522         char *pending_req_otp;
523
524         /**
525          * pending_req_otp_len - Length of the pending OTP request
526          */
527         size_t pending_req_otp_len;
528
529         /**
530          * pac_file - File path or blob name for the PAC entries (EAP-FAST)
531          *
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>.
538          */
539         char *pac_file;
540
541         /**
542          * mschapv2_retry - MSCHAPv2 retry in progress
543          *
544          * This field is used internally by EAP-MSCHAPv2 and should not be set
545          * as part of configuration.
546          */
547         int mschapv2_retry;
548
549         /**
550          * new_password - New password for password update
551          *
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.
555          */
556         u8 *new_password;
557
558         /**
559          * new_password_len - Length of new_password field
560          */
561         size_t new_password_len;
562
563         /**
564          * fragment_size - Maximum EAP fragment size in bytes (default 1398)
565          *
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.
571          */
572         int fragment_size;
573
574 #define EAP_CONFIG_FLAGS_PASSWORD_NTHASH BIT(0)
575         /**
576          * flags - Network configuration flags (bitfield)
577          *
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
582          */
583         u32 flags;
584 };
585
586
587 /**
588  * struct wpa_config_blob - Named configuration blob
589  *
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.
593  */
594 struct wpa_config_blob {
595         /**
596          * name - Blob name
597          */
598         char *name;
599
600         /**
601          * data - Pointer to binary data
602          */
603         u8 *data;
604
605         /**
606          * len - Length of binary data
607          */
608         size_t len;
609
610         /**
611          * next - Pointer to next blob in the configuration
612          */
613         struct wpa_config_blob *next;
614 };
615
616 #endif /* EAP_CONFIG_H */