config_ssid.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. /*
  2. * WPA Supplicant / Network configuration structures
  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. #ifndef CONFIG_SSID_H
  15. #define CONFIG_SSID_H
  16. #include "defs.h"
  17. #include "eap_peer/eap_config.h"
  18. #define MAX_SSID_LEN 32
  19. #define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
  20. #define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
  21. EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
  22. #define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
  23. #define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
  24. #define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
  25. #define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | \
  26. WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40)
  27. #define DEFAULT_FRAGMENT_SIZE 1398
  28. /**
  29. * struct wpa_ssid - Network configuration data
  30. *
  31. * This structure includes all the configuration variables for a network. This
  32. * data is included in the per-interface configuration data as an element of
  33. * the network list, struct wpa_config::ssid. Each network block in the
  34. * configuration is mapped to a struct wpa_ssid instance.
  35. */
  36. struct wpa_ssid {
  37. /**
  38. * next - Next network in global list
  39. *
  40. * This pointer can be used to iterate over all networks. The head of
  41. * this list is stored in the ssid field of struct wpa_config.
  42. */
  43. struct wpa_ssid *next;
  44. /**
  45. * pnext - Next network in per-priority list
  46. *
  47. * This pointer can be used to iterate over all networks in the same
  48. * priority class. The heads of these list are stored in the pssid
  49. * fields of struct wpa_config.
  50. */
  51. struct wpa_ssid *pnext;
  52. /**
  53. * id - Unique id for the network
  54. *
  55. * This identifier is used as a unique identifier for each network
  56. * block when using the control interface. Each network is allocated an
  57. * id when it is being created, either when reading the configuration
  58. * file or when a new network is added through the control interface.
  59. */
  60. int id;
  61. /**
  62. * priority - Priority group
  63. *
  64. * By default, all networks will get same priority group (0). If some
  65. * of the networks are more desirable, this field can be used to change
  66. * the order in which wpa_supplicant goes through the networks when
  67. * selecting a BSS. The priority groups will be iterated in decreasing
  68. * priority (i.e., the larger the priority value, the sooner the
  69. * network is matched against the scan results). Within each priority
  70. * group, networks will be selected based on security policy, signal
  71. * strength, etc.
  72. *
  73. * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
  74. * not using this priority to select the order for scanning. Instead,
  75. * they try the networks in the order that used in the configuration
  76. * file.
  77. */
  78. int priority;
  79. /**
  80. * ssid - Service set identifier (network name)
  81. *
  82. * This is the SSID for the network. For wireless interfaces, this is
  83. * used to select which network will be used. If set to %NULL (or
  84. * ssid_len=0), any SSID can be used. For wired interfaces, this must
  85. * be set to %NULL. Note: SSID may contain any characters, even nul
  86. * (ASCII 0) and as such, this should not be assumed to be a nul
  87. * terminated string. ssid_len defines how many characters are valid
  88. * and the ssid field is not guaranteed to be nul terminated.
  89. */
  90. u8 *ssid;
  91. /**
  92. * ssid_len - Length of the SSID
  93. */
  94. size_t ssid_len;
  95. /**
  96. * bssid - BSSID
  97. *
  98. * If set, this network block is used only when associating with the AP
  99. * using the configured BSSID
  100. */
  101. u8 bssid[ETH_ALEN];
  102. /**
  103. * bssid_set - Whether BSSID is configured for this network
  104. */
  105. int bssid_set;
  106. /**
  107. * psk - WPA pre-shared key (256 bits)
  108. */
  109. u8 psk[32];
  110. /**
  111. * psk_set - Whether PSK field is configured
  112. */
  113. int psk_set;
  114. /**
  115. * passphrase - WPA ASCII passphrase
  116. *
  117. * If this is set, psk will be generated using the SSID and passphrase
  118. * configured for the network. ASCII passphrase must be between 8 and
  119. * 63 characters (inclusive).
  120. */
  121. char *passphrase;
  122. /**
  123. * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
  124. */
  125. int pairwise_cipher;
  126. /**
  127. * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
  128. */
  129. int group_cipher;
  130. /**
  131. * key_mgmt - Bitfield of allowed key management protocols
  132. *
  133. * WPA_KEY_MGMT_*
  134. */
  135. int key_mgmt;
  136. /**
  137. * proto - Bitfield of allowed protocols, WPA_PROTO_*
  138. */
  139. int proto;
  140. /**
  141. * auth_alg - Bitfield of allowed authentication algorithms
  142. *
  143. * WPA_AUTH_ALG_*
  144. */
  145. int auth_alg;
  146. /**
  147. * scan_ssid - Scan this SSID with Probe Requests
  148. *
  149. * scan_ssid can be used to scan for APs using hidden SSIDs.
  150. * Note: Many drivers do not support this. ap_mode=2 can be used with
  151. * such drivers to use hidden SSIDs.
  152. */
  153. int scan_ssid;
  154. #ifdef IEEE8021X_EAPOL
  155. #define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
  156. #define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
  157. /**
  158. * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
  159. */
  160. int eapol_flags;
  161. /**
  162. * eap - EAP peer configuration for this network
  163. */
  164. struct eap_peer_config eap;
  165. #endif /* IEEE8021X_EAPOL */
  166. #define NUM_WEP_KEYS 4
  167. #define MAX_WEP_KEY_LEN 16
  168. /**
  169. * wep_key - WEP keys
  170. */
  171. u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
  172. /**
  173. * wep_key_len - WEP key lengths
  174. */
  175. size_t wep_key_len[NUM_WEP_KEYS];
  176. /**
  177. * wep_tx_keyidx - Default key index for TX frames using WEP
  178. */
  179. int wep_tx_keyidx;
  180. /**
  181. * proactive_key_caching - Enable proactive key caching
  182. *
  183. * This field can be used to enable proactive key caching which is also
  184. * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
  185. * by default. Enable by setting this to 1.
  186. *
  187. * Proactive key caching is used to make supplicant assume that the APs
  188. * are using the same PMK and generate PMKSA cache entries without
  189. * doing RSN pre-authentication. This requires support from the AP side
  190. * and is normally used with wireless switches that co-locate the
  191. * authenticator.
  192. */
  193. int proactive_key_caching;
  194. /**
  195. * mixed_cell - Whether mixed cells are allowed
  196. *
  197. * This option can be used to configure whether so called mixed cells,
  198. * i.e., networks that use both plaintext and encryption in the same
  199. * SSID, are allowed. This is disabled (0) by default. Enable by
  200. * setting this to 1.
  201. */
  202. int mixed_cell;
  203. #ifdef IEEE8021X_EAPOL
  204. /**
  205. * leap - Number of EAP methods using LEAP
  206. *
  207. * This field should be set to 1 if LEAP is enabled. This is used to
  208. * select IEEE 802.11 authentication algorithm.
  209. */
  210. int leap;
  211. /**
  212. * non_leap - Number of EAP methods not using LEAP
  213. *
  214. * This field should be set to >0 if any EAP method other than LEAP is
  215. * enabled. This is used to select IEEE 802.11 authentication
  216. * algorithm.
  217. */
  218. int non_leap;
  219. /**
  220. * eap_workaround - EAP workarounds enabled
  221. *
  222. * wpa_supplicant supports number of "EAP workarounds" to work around
  223. * interoperability issues with incorrectly behaving authentication
  224. * servers. This is recommended to be enabled by default because some
  225. * of the issues are present in large number of authentication servers.
  226. *
  227. * Strict EAP conformance mode can be configured by disabling
  228. * workarounds with eap_workaround = 0.
  229. */
  230. unsigned int eap_workaround;
  231. #endif /* IEEE8021X_EAPOL */
  232. /**
  233. * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
  234. *
  235. * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
  236. *
  237. * 1 = IBSS (ad-hoc, peer-to-peer)
  238. *
  239. * 2 = AP (access point)
  240. *
  241. * Note: IBSS can only be used with key_mgmt NONE (plaintext and
  242. * static WEP) and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In
  243. * addition, ap_scan has to be set to 2 for IBSS. WPA-None requires
  244. * following network block options: proto=WPA, key_mgmt=WPA-NONE,
  245. * pairwise=NONE, group=TKIP (or CCMP, but not both), and psk must also
  246. * be set (either directly or using ASCII passphrase).
  247. */
  248. int mode;
  249. /**
  250. * disabled - Whether this network is currently disabled
  251. *
  252. * 0 = this network can be used (default).
  253. * 1 = this network block is disabled (can be enabled through
  254. * ctrl_iface, e.g., with wpa_cli or wpa_gui).
  255. */
  256. int disabled;
  257. /**
  258. * peerkey - Whether PeerKey handshake for direct links is allowed
  259. *
  260. * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
  261. * enabled.
  262. *
  263. * 0 = disabled (default)
  264. * 1 = enabled
  265. */
  266. int peerkey;
  267. /**
  268. * id_str - Network identifier string for external scripts
  269. *
  270. * This value is passed to external ctrl_iface monitors in
  271. * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
  272. * environment variable for action scripts.
  273. */
  274. char *id_str;
  275. #ifdef CONFIG_IEEE80211W
  276. /**
  277. * ieee80211w - Whether management frame protection is enabled
  278. *
  279. * This value is used to configure policy for management frame
  280. * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
  281. */
  282. enum mfp_options ieee80211w;
  283. #endif /* CONFIG_IEEE80211W */
  284. /**
  285. * frequency - Channel frequency in megahertz (MHz) for IBSS
  286. *
  287. * This value is used to configure the initial channel for IBSS (adhoc)
  288. * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
  289. * the infrastructure mode. In addition, this value is only used by the
  290. * station that creates the IBSS. If an IBSS network with the
  291. * configured SSID is already present, the frequency of the network
  292. * will be used instead of this configured value.
  293. */
  294. int frequency;
  295. /**
  296. * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
  297. *
  298. * This value can be used to enforce rekeying of PTK to mitigate some
  299. * attacks against TKIP deficiencies.
  300. */
  301. int wpa_ptk_rekey;
  302. /**
  303. * scan_freq - Array of frequencies to scan or %NULL for all
  304. *
  305. * This is an optional zero-terminated array of frequencies in
  306. * megahertz (MHz) to include in scan requests when searching for this
  307. * network. This can be used to speed up scanning when the network is
  308. * known to not use all possible channels.
  309. */
  310. int *scan_freq;
  311. /**
  312. * bgscan - Background scan and roaming parameters or %NULL if none
  313. *
  314. * This is an optional set of parameters for background scanning and
  315. * roaming within a network (ESS) in following format:
  316. * <bgscan module name>:<module parameters>
  317. */
  318. char *bgscan;
  319. };
  320. #endif /* CONFIG_SSID_H */