eap_config.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /*
  2. * EAP peer configuration data
  3. * Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef EAP_CONFIG_H
  9. #define EAP_CONFIG_H
  10. /**
  11. * struct eap_peer_config - EAP peer configuration/credentials
  12. */
  13. struct eap_peer_config {
  14. /**
  15. * identity - EAP Identity
  16. *
  17. * This field is used to set the real user identity or NAI (for
  18. * EAP-PSK/PAX/SAKE/GPSK).
  19. */
  20. u8 *identity;
  21. /**
  22. * identity_len - EAP Identity length
  23. */
  24. size_t identity_len;
  25. /**
  26. * anonymous_identity - Anonymous EAP Identity
  27. *
  28. * This field is used for unencrypted use with EAP types that support
  29. * different tunnelled identity, e.g., EAP-TTLS, in order to reveal the
  30. * real identity (identity field) only to the authentication server.
  31. *
  32. * If not set, the identity field will be used for both unencrypted and
  33. * protected fields.
  34. *
  35. * This field can also be used with EAP-SIM/AKA/AKA' to store the
  36. * pseudonym identity.
  37. */
  38. u8 *anonymous_identity;
  39. /**
  40. * anonymous_identity_len - Length of anonymous_identity
  41. */
  42. size_t anonymous_identity_len;
  43. /**
  44. * password - Password string for EAP
  45. *
  46. * This field can include either the plaintext password (default
  47. * option) or a NtPasswordHash (16-byte MD4 hash of the unicode
  48. * presentation of the password) if flags field has
  49. * EAP_CONFIG_FLAGS_PASSWORD_NTHASH bit set to 1. NtPasswordHash can
  50. * only be used with authentication mechanism that use this hash as the
  51. * starting point for operation: MSCHAP and MSCHAPv2 (EAP-MSCHAPv2,
  52. * EAP-TTLS/MSCHAPv2, EAP-TTLS/MSCHAP, LEAP).
  53. *
  54. * In addition, this field is used to configure a pre-shared key for
  55. * EAP-PSK/PAX/SAKE/GPSK. The length of the PSK must be 16 for EAP-PSK
  56. * and EAP-PAX and 32 for EAP-SAKE. EAP-GPSK can use a variable length
  57. * PSK.
  58. */
  59. u8 *password;
  60. /**
  61. * password_len - Length of password field
  62. */
  63. size_t password_len;
  64. /**
  65. * ca_cert - File path to CA certificate file (PEM/DER)
  66. *
  67. * This file can have one or more trusted CA certificates. If ca_cert
  68. * and ca_path are not included, server certificate will not be
  69. * verified. This is insecure and a trusted CA certificate should
  70. * always be configured when using EAP-TLS/TTLS/PEAP. Full path to the
  71. * file should be used since working directory may change when
  72. * wpa_supplicant is run in the background.
  73. *
  74. * Alternatively, a named configuration blob can be used by setting
  75. * this to blob://blob_name.
  76. *
  77. * Alternatively, this can be used to only perform matching of the
  78. * server certificate (SHA-256 hash of the DER encoded X.509
  79. * certificate). In this case, the possible CA certificates in the
  80. * server certificate chain are ignored and only the server certificate
  81. * is verified. This is configured with the following format:
  82. * hash:://server/sha256/cert_hash_in_hex
  83. * For example: "hash://server/sha256/
  84. * 5a1bc1296205e6fdbe3979728efe3920798885c1c4590b5f90f43222d239ca6a"
  85. *
  86. * On Windows, trusted CA certificates can be loaded from the system
  87. * certificate store by setting this to cert_store://name, e.g.,
  88. * ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT".
  89. * Note that when running wpa_supplicant as an application, the user
  90. * certificate store (My user account) is used, whereas computer store
  91. * (Computer account) is used when running wpasvc as a service.
  92. */
  93. u8 *ca_cert;
  94. /**
  95. * ca_path - Directory path for CA certificate files (PEM)
  96. *
  97. * This path may contain multiple CA certificates in OpenSSL format.
  98. * Common use for this is to point to system trusted CA list which is
  99. * often installed into directory like /etc/ssl/certs. If configured,
  100. * these certificates are added to the list of trusted CAs. ca_cert
  101. * may also be included in that case, but it is not required.
  102. */
  103. u8 *ca_path;
  104. /**
  105. * client_cert - File path to client certificate file (PEM/DER)
  106. *
  107. * This field is used with EAP method that use TLS authentication.
  108. * Usually, this is only configured for EAP-TLS, even though this could
  109. * in theory be used with EAP-TTLS and EAP-PEAP, too. Full path to the
  110. * file should be used since working directory may change when
  111. * wpa_supplicant is run in the background.
  112. *
  113. * Alternatively, a named configuration blob can be used by setting
  114. * this to blob://blob_name.
  115. */
  116. u8 *client_cert;
  117. /**
  118. * private_key - File path to client private key file (PEM/DER/PFX)
  119. *
  120. * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
  121. * commented out. Both the private key and certificate will be read
  122. * from the PKCS#12 file in this case. Full path to the file should be
  123. * used since working directory may change when wpa_supplicant is run
  124. * in the background.
  125. *
  126. * Windows certificate store can be used by leaving client_cert out and
  127. * configuring private_key in one of the following formats:
  128. *
  129. * cert://substring_to_match
  130. *
  131. * hash://certificate_thumbprint_in_hex
  132. *
  133. * For example: private_key="hash://63093aa9c47f56ae88334c7b65a4"
  134. *
  135. * Note that when running wpa_supplicant as an application, the user
  136. * certificate store (My user account) is used, whereas computer store
  137. * (Computer account) is used when running wpasvc as a service.
  138. *
  139. * Alternatively, a named configuration blob can be used by setting
  140. * this to blob://blob_name.
  141. */
  142. u8 *private_key;
  143. /**
  144. * private_key_passwd - Password for private key file
  145. *
  146. * If left out, this will be asked through control interface.
  147. */
  148. u8 *private_key_passwd;
  149. /**
  150. * dh_file - File path to DH/DSA parameters file (in PEM format)
  151. *
  152. * This is an optional configuration file for setting parameters for an
  153. * ephemeral DH key exchange. In most cases, the default RSA
  154. * authentication does not use this configuration. However, it is
  155. * possible setup RSA to use ephemeral DH key exchange. In addition,
  156. * ciphers with DSA keys always use ephemeral DH keys. This can be used
  157. * to achieve forward secrecy. If the file is in DSA parameters format,
  158. * it will be automatically converted into DH params. Full path to the
  159. * file should be used since working directory may change when
  160. * wpa_supplicant is run in the background.
  161. *
  162. * Alternatively, a named configuration blob can be used by setting
  163. * this to blob://blob_name.
  164. */
  165. u8 *dh_file;
  166. /**
  167. * subject_match - Constraint for server certificate subject
  168. *
  169. * This substring is matched against the subject of the authentication
  170. * server certificate. If this string is set, the server sertificate is
  171. * only accepted if it contains this string in the subject. The subject
  172. * string is in following format:
  173. *
  174. * /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@n.example.com
  175. */
  176. u8 *subject_match;
  177. /**
  178. * altsubject_match - Constraint for server certificate alt. subject
  179. *
  180. * Semicolon separated string of entries to be matched against the
  181. * alternative subject name of the authentication server certificate.
  182. * If this string is set, the server sertificate is only accepted if it
  183. * contains one of the entries in an alternative subject name
  184. * extension.
  185. *
  186. * altSubjectName string is in following format: TYPE:VALUE
  187. *
  188. * Example: EMAIL:server@example.com
  189. * Example: DNS:server.example.com;DNS:server2.example.com
  190. *
  191. * Following types are supported: EMAIL, DNS, URI
  192. */
  193. u8 *altsubject_match;
  194. /**
  195. * domain_suffix_match - Constraint for server domain name
  196. *
  197. * If set, this FQDN is used as a suffix match requirement for the
  198. * server certificate in SubjectAltName dNSName element(s). If a
  199. * matching dNSName is found, this constraint is met. If no dNSName
  200. * values are present, this constraint is matched against SubjetName CN
  201. * using same suffix match comparison. Suffix match here means that the
  202. * host/domain name is compared one label at a time starting from the
  203. * top-level domain and all the labels in domain_suffix_match shall be
  204. * included in the certificate. The certificate may include additional
  205. * sub-level labels in addition to the required labels.
  206. *
  207. * For example, domain_suffix_match=example.com would match
  208. * test.example.com but would not match test-example.com.
  209. */
  210. char *domain_suffix_match;
  211. /**
  212. * ca_cert2 - File path to CA certificate file (PEM/DER) (Phase 2)
  213. *
  214. * This file can have one or more trusted CA certificates. If ca_cert2
  215. * and ca_path2 are not included, server certificate will not be
  216. * verified. This is insecure and a trusted CA certificate should
  217. * always be configured. Full path to the file should be used since
  218. * working directory may change when wpa_supplicant is run in the
  219. * background.
  220. *
  221. * This field is like ca_cert, but used for phase 2 (inside
  222. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  223. *
  224. * Alternatively, a named configuration blob can be used by setting
  225. * this to blob://blob_name.
  226. */
  227. u8 *ca_cert2;
  228. /**
  229. * ca_path2 - Directory path for CA certificate files (PEM) (Phase 2)
  230. *
  231. * This path may contain multiple CA certificates in OpenSSL format.
  232. * Common use for this is to point to system trusted CA list which is
  233. * often installed into directory like /etc/ssl/certs. If configured,
  234. * these certificates are added to the list of trusted CAs. ca_cert
  235. * may also be included in that case, but it is not required.
  236. *
  237. * This field is like ca_path, but used for phase 2 (inside
  238. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  239. */
  240. u8 *ca_path2;
  241. /**
  242. * client_cert2 - File path to client certificate file
  243. *
  244. * This field is like client_cert, but used for phase 2 (inside
  245. * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
  246. * file should be used since working directory may change when
  247. * wpa_supplicant is run in the background.
  248. *
  249. * Alternatively, a named configuration blob can be used by setting
  250. * this to blob://blob_name.
  251. */
  252. u8 *client_cert2;
  253. /**
  254. * private_key2 - File path to client private key file
  255. *
  256. * This field is like private_key, but used for phase 2 (inside
  257. * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
  258. * file should be used since working directory may change when
  259. * wpa_supplicant is run in the background.
  260. *
  261. * Alternatively, a named configuration blob can be used by setting
  262. * this to blob://blob_name.
  263. */
  264. u8 *private_key2;
  265. /**
  266. * private_key2_passwd - Password for private key file
  267. *
  268. * This field is like private_key_passwd, but used for phase 2 (inside
  269. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  270. */
  271. u8 *private_key2_passwd;
  272. /**
  273. * dh_file2 - File path to DH/DSA parameters file (in PEM format)
  274. *
  275. * This field is like dh_file, but used for phase 2 (inside
  276. * EAP-TTLS/PEAP/FAST tunnel) authentication. Full path to the
  277. * file should be used since working directory may change when
  278. * wpa_supplicant is run in the background.
  279. *
  280. * Alternatively, a named configuration blob can be used by setting
  281. * this to blob://blob_name.
  282. */
  283. u8 *dh_file2;
  284. /**
  285. * subject_match2 - Constraint for server certificate subject
  286. *
  287. * This field is like subject_match, but used for phase 2 (inside
  288. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  289. */
  290. u8 *subject_match2;
  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. * domain_suffix_match2 - Constraint for server domain name
  300. *
  301. * This field is like domain_suffix_match, but used for phase 2 (inside
  302. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  303. */
  304. char *domain_suffix_match2;
  305. /**
  306. * eap_methods - Allowed EAP methods
  307. *
  308. * (vendor=EAP_VENDOR_IETF,method=EAP_TYPE_NONE) terminated list of
  309. * allowed EAP methods or %NULL if all methods are accepted.
  310. */
  311. struct eap_method_type *eap_methods;
  312. /**
  313. * phase1 - Phase 1 (outer authentication) parameters
  314. *
  315. * String with field-value pairs, e.g., "peapver=0" or
  316. * "peapver=1 peaplabel=1".
  317. *
  318. * 'peapver' can be used to force which PEAP version (0 or 1) is used.
  319. *
  320. * 'peaplabel=1' can be used to force new label, "client PEAP
  321. * encryption", to be used during key derivation when PEAPv1 or newer.
  322. *
  323. * Most existing PEAPv1 implementation seem to be using the old label,
  324. * "client EAP encryption", and wpa_supplicant is now using that as the
  325. * default value.
  326. *
  327. * Some servers, e.g., Radiator, may require peaplabel=1 configuration
  328. * to interoperate with PEAPv1; see eap_testing.txt for more details.
  329. *
  330. * 'peap_outer_success=0' can be used to terminate PEAP authentication
  331. * on tunneled EAP-Success. This is required with some RADIUS servers
  332. * that implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g.,
  333. * Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode).
  334. *
  335. * include_tls_length=1 can be used to force wpa_supplicant to include
  336. * TLS Message Length field in all TLS messages even if they are not
  337. * fragmented.
  338. *
  339. * sim_min_num_chal=3 can be used to configure EAP-SIM to require three
  340. * challenges (by default, it accepts 2 or 3).
  341. *
  342. * result_ind=1 can be used to enable EAP-SIM and EAP-AKA to use
  343. * protected result indication.
  344. *
  345. * fast_provisioning option can be used to enable in-line provisioning
  346. * of EAP-FAST credentials (PAC):
  347. * 0 = disabled,
  348. * 1 = allow unauthenticated provisioning,
  349. * 2 = allow authenticated provisioning,
  350. * 3 = allow both unauthenticated and authenticated provisioning
  351. *
  352. * fast_max_pac_list_len=num option can be used to set the maximum
  353. * number of PAC entries to store in a PAC list (default: 10).
  354. *
  355. * fast_pac_format=binary option can be used to select binary format
  356. * for storing PAC entries in order to save some space (the default
  357. * text format uses about 2.5 times the size of minimal binary format).
  358. *
  359. * crypto_binding option can be used to control PEAPv0 cryptobinding
  360. * behavior:
  361. * 0 = do not use cryptobinding (default)
  362. * 1 = use cryptobinding if server supports it
  363. * 2 = require cryptobinding
  364. *
  365. * EAP-WSC (WPS) uses following options: pin=Device_Password and
  366. * uuid=Device_UUID
  367. */
  368. char *phase1;
  369. /**
  370. * phase2 - Phase2 (inner authentication with TLS tunnel) parameters
  371. *
  372. * String with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or
  373. * "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS.
  374. */
  375. char *phase2;
  376. /**
  377. * pcsc - Parameters for PC/SC smartcard interface for USIM and GSM SIM
  378. *
  379. * This field is used to configure PC/SC smartcard interface.
  380. * Currently, the only configuration is whether this field is %NULL (do
  381. * not use PC/SC) or non-NULL (e.g., "") to enable PC/SC.
  382. *
  383. * This field is used for EAP-SIM and EAP-AKA.
  384. */
  385. char *pcsc;
  386. /**
  387. * pin - PIN for USIM, GSM SIM, and smartcards
  388. *
  389. * This field is used to configure PIN for SIM and smartcards for
  390. * EAP-SIM and EAP-AKA. In addition, this is used with EAP-TLS if a
  391. * smartcard is used for private key operations.
  392. *
  393. * If left out, this will be asked through control interface.
  394. */
  395. char *pin;
  396. /**
  397. * engine - Enable OpenSSL engine (e.g., for smartcard access)
  398. *
  399. * This is used if private key operations for EAP-TLS are performed
  400. * using a smartcard.
  401. */
  402. int engine;
  403. /**
  404. * engine_id - Engine ID for OpenSSL engine
  405. *
  406. * "opensc" to select OpenSC engine or "pkcs11" to select PKCS#11
  407. * engine.
  408. *
  409. * This is used if private key operations for EAP-TLS are performed
  410. * using a smartcard.
  411. */
  412. char *engine_id;
  413. /**
  414. * engine2 - Enable OpenSSL engine (e.g., for smartcard) (Phase 2)
  415. *
  416. * This is used if private key operations for EAP-TLS are performed
  417. * using a smartcard.
  418. *
  419. * This field is like engine, but used for phase 2 (inside
  420. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  421. */
  422. int engine2;
  423. /**
  424. * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2)
  425. *
  426. * This field is used to configure PIN for SIM and smartcards for
  427. * EAP-SIM and EAP-AKA. In addition, this is used with EAP-TLS if a
  428. * smartcard is used for private key operations.
  429. *
  430. * This field is like pin2, but used for phase 2 (inside
  431. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  432. *
  433. * If left out, this will be asked through control interface.
  434. */
  435. char *pin2;
  436. /**
  437. * engine2_id - Engine ID for OpenSSL engine (Phase 2)
  438. *
  439. * "opensc" to select OpenSC engine or "pkcs11" to select PKCS#11
  440. * engine.
  441. *
  442. * This is used if private key operations for EAP-TLS are performed
  443. * using a smartcard.
  444. *
  445. * This field is like engine_id, but used for phase 2 (inside
  446. * EAP-TTLS/PEAP/FAST tunnel) authentication.
  447. */
  448. char *engine2_id;
  449. /**
  450. * key_id - Key ID for OpenSSL engine
  451. *
  452. * This is used if private key operations for EAP-TLS are performed
  453. * using a smartcard.
  454. */
  455. char *key_id;
  456. /**
  457. * cert_id - Cert ID for OpenSSL engine
  458. *
  459. * This is used if the certificate operations for EAP-TLS are performed
  460. * using a smartcard.
  461. */
  462. char *cert_id;
  463. /**
  464. * ca_cert_id - CA Cert ID for OpenSSL engine
  465. *
  466. * This is used if the CA certificate for EAP-TLS is on a smartcard.
  467. */
  468. char *ca_cert_id;
  469. /**
  470. * key2_id - Key ID for OpenSSL engine (phase2)
  471. *
  472. * This is used if private key operations for EAP-TLS are performed
  473. * using a smartcard.
  474. */
  475. char *key2_id;
  476. /**
  477. * cert2_id - Cert ID for OpenSSL engine (phase2)
  478. *
  479. * This is used if the certificate operations for EAP-TLS are performed
  480. * using a smartcard.
  481. */
  482. char *cert2_id;
  483. /**
  484. * ca_cert2_id - CA Cert ID for OpenSSL engine (phase2)
  485. *
  486. * This is used if the CA certificate for EAP-TLS is on a smartcard.
  487. */
  488. char *ca_cert2_id;
  489. /**
  490. * otp - One-time-password
  491. *
  492. * This field should not be set in configuration step. It is only used
  493. * internally when OTP is entered through the control interface.
  494. */
  495. u8 *otp;
  496. /**
  497. * otp_len - Length of the otp field
  498. */
  499. size_t otp_len;
  500. /**
  501. * pending_req_identity - Whether there is a pending identity request
  502. *
  503. * This field should not be set in configuration step. It is only used
  504. * internally when control interface is used to request needed
  505. * information.
  506. */
  507. int pending_req_identity;
  508. /**
  509. * pending_req_password - Whether there is a pending password request
  510. *
  511. * This field should not be set in configuration step. It is only used
  512. * internally when control interface is used to request needed
  513. * information.
  514. */
  515. int pending_req_password;
  516. /**
  517. * pending_req_pin - Whether there is a pending PIN request
  518. *
  519. * This field should not be set in configuration step. It is only used
  520. * internally when control interface is used to request needed
  521. * information.
  522. */
  523. int pending_req_pin;
  524. /**
  525. * pending_req_new_password - Pending password update request
  526. *
  527. * This field should not be set in configuration step. It is only used
  528. * internally when control interface is used to request needed
  529. * information.
  530. */
  531. int pending_req_new_password;
  532. /**
  533. * pending_req_passphrase - Pending passphrase request
  534. *
  535. * This field should not be set in configuration step. It is only used
  536. * internally when control interface is used to request needed
  537. * information.
  538. */
  539. int pending_req_passphrase;
  540. /**
  541. * pending_req_otp - Whether there is a pending OTP request
  542. *
  543. * This field should not be set in configuration step. It is only used
  544. * internally when control interface is used to request needed
  545. * information.
  546. */
  547. char *pending_req_otp;
  548. /**
  549. * pending_req_otp_len - Length of the pending OTP request
  550. */
  551. size_t pending_req_otp_len;
  552. /**
  553. * pac_file - File path or blob name for the PAC entries (EAP-FAST)
  554. *
  555. * wpa_supplicant will need to be able to create this file and write
  556. * updates to it when PAC is being provisioned or refreshed. Full path
  557. * to the file should be used since working directory may change when
  558. * wpa_supplicant is run in the background.
  559. * Alternatively, a named configuration blob can be used by setting
  560. * this to blob://blob_name.
  561. */
  562. char *pac_file;
  563. /**
  564. * mschapv2_retry - MSCHAPv2 retry in progress
  565. *
  566. * This field is used internally by EAP-MSCHAPv2 and should not be set
  567. * as part of configuration.
  568. */
  569. int mschapv2_retry;
  570. /**
  571. * new_password - New password for password update
  572. *
  573. * This field is used during MSCHAPv2 password update. This is normally
  574. * requested from the user through the control interface and not set
  575. * from configuration.
  576. */
  577. u8 *new_password;
  578. /**
  579. * new_password_len - Length of new_password field
  580. */
  581. size_t new_password_len;
  582. /**
  583. * fragment_size - Maximum EAP fragment size in bytes (default 1398)
  584. *
  585. * This value limits the fragment size for EAP methods that support
  586. * fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set
  587. * small enough to make the EAP messages fit in MTU of the network
  588. * interface used for EAPOL. The default value is suitable for most
  589. * cases.
  590. */
  591. int fragment_size;
  592. #define EAP_CONFIG_FLAGS_PASSWORD_NTHASH BIT(0)
  593. #define EAP_CONFIG_FLAGS_EXT_PASSWORD BIT(1)
  594. /**
  595. * flags - Network configuration flags (bitfield)
  596. *
  597. * This variable is used for internal flags to describe further details
  598. * for the network parameters.
  599. * bit 0 = password is represented as a 16-byte NtPasswordHash value
  600. * instead of plaintext password
  601. * bit 1 = password is stored in external storage; the value in the
  602. * password field is the name of that external entry
  603. */
  604. u32 flags;
  605. /**
  606. * ocsp - Whether to use/require OCSP to check server certificate
  607. *
  608. * 0 = do not use OCSP stapling (TLS certificate status extension)
  609. * 1 = try to use OCSP stapling, but not require response
  610. * 2 = require valid OCSP stapling response
  611. */
  612. int ocsp;
  613. /**
  614. * external_sim_resp - Response from external SIM processing
  615. *
  616. * This field should not be set in configuration step. It is only used
  617. * internally when control interface is used to request external
  618. * SIM/USIM processing.
  619. */
  620. char *external_sim_resp;
  621. /**
  622. * sim_num - User selected SIM identifier
  623. *
  624. * This variable is used for identifying which SIM is used if the system
  625. * has more than one.
  626. */
  627. int sim_num;
  628. };
  629. /**
  630. * struct wpa_config_blob - Named configuration blob
  631. *
  632. * This data structure is used to provide storage for binary objects to store
  633. * abstract information like certificates and private keys inlined with the
  634. * configuration data.
  635. */
  636. struct wpa_config_blob {
  637. /**
  638. * name - Blob name
  639. */
  640. char *name;
  641. /**
  642. * data - Pointer to binary data
  643. */
  644. u8 *data;
  645. /**
  646. * len - Length of binary data
  647. */
  648. size_t len;
  649. /**
  650. * next - Pointer to next blob in the configuration
  651. */
  652. struct wpa_config_blob *next;
  653. };
  654. #endif /* EAP_CONFIG_H */