ChangeLog 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. ChangeLog for hostapd
  2. ????-??-?? - v0.7.0
  3. * increased hostapd_cli ping interval to 5 seconds and made this
  4. configurable with a new command line options (-G<seconds>)
  5. * driver_nl80211: use Linux socket filter to improve performance
  6. * added support for external Registrars with WPS (UPnP transport)
  7. * 802.11n: scan for overlapping BSSes before starting 20/40 MHz channel
  8. * driver_nl80211: fixed STA accounting data collection (TX/RX bytes
  9. reported correctly; TX/RX packets not yet available from kernel)
  10. * added support for WPS USBA out-of-band mechanism with USB Flash
  11. Drives (UFD) (CONFIG_WPS_UFD=y)
  12. * fixed EAPOL/EAP reauthentication when using an external RADIUS
  13. authentication server
  14. 2009-01-06 - v0.6.7
  15. * added support for Wi-Fi Protected Setup (WPS)
  16. (hostapd can now be configured to act as an integrated WPS Registrar
  17. and provision credentials for WPS Enrollees using PIN and PBC
  18. methods; external wireless Registrar can configure the AP, but
  19. external WLAN Manager Registrars are not supported); WPS support can
  20. be enabled by adding CONFIG_WPS=y into .config and setting the
  21. runtime configuration variables in hostapd.conf (see WPS section in
  22. the example configuration file); new hostapd_cli commands wps_pin and
  23. wps_pbc are used to configure WPS negotiation; see README-WPS for
  24. more details
  25. * added IEEE 802.11n HT capability configuration (ht_capab)
  26. * added support for generating Country IE based on nl80211 regulatory
  27. information (added if ieee80211d=1 in configuration)
  28. * fixed WEP authentication (both Open System and Shared Key) with
  29. mac80211
  30. * added support for EAP-AKA' (draft-arkko-eap-aka-kdf)
  31. * added support for using driver_test over UDP socket
  32. * changed EAP-GPSK to use the IANA assigned EAP method type 51
  33. * updated management frame protection to use IEEE 802.11w/D7.0
  34. * fixed retransmission of EAP requests if no response is received
  35. 2008-11-23 - v0.6.6
  36. * added a new configuration option, wpa_ptk_rekey, that can be used to
  37. enforce frequent PTK rekeying, e.g., to mitigate some attacks against
  38. TKIP deficiencies
  39. * updated OpenSSL code for EAP-FAST to use an updated version of the
  40. session ticket overriding API that was included into the upstream
  41. OpenSSL 0.9.9 tree on 2008-11-15 (no additional OpenSSL patch is
  42. needed with that version anymore)
  43. * changed channel flags configuration to read the information from
  44. the driver (e.g., via driver_nl80211 when using mac80211) instead of
  45. using hostapd as the source of the regulatory information (i.e.,
  46. information from CRDA is now used with mac80211); this allows 5 GHz
  47. channels to be used with hostapd (if allowed in the current
  48. regulatory domain)
  49. * fixed EAP-TLS message processing for the last TLS message if it is
  50. large enough to require fragmentation (e.g., if a large Session
  51. Ticket data is included)
  52. * fixed listen interval configuration for nl80211 drivers
  53. 2008-11-01 - v0.6.5
  54. * added support for SHA-256 as X.509 certificate digest when using the
  55. internal X.509/TLSv1 implementation
  56. * fixed EAP-FAST PAC-Opaque padding (0.6.4 broke this for some peer
  57. identity lengths)
  58. * fixed internal TLSv1 implementation for abbreviated handshake (used
  59. by EAP-FAST server)
  60. * added support for setting VLAN ID for STAs based on local MAC ACL
  61. (accept_mac_file) as an alternative for RADIUS server-based
  62. configuration
  63. * updated management frame protection to use IEEE 802.11w/D6.0
  64. (adds a new association ping to protect against unauthenticated
  65. authenticate or (re)associate request frames dropping association)
  66. * added support for using SHA256-based stronger key derivation for WPA2
  67. (IEEE 802.11w)
  68. * added new "driver wrapper" for RADIUS-only configuration
  69. (driver=none in hostapd.conf; CONFIG_DRIVER_NONE=y in .config)
  70. * fixed WPA/RSN IE validation to verify that the proto (WPA vs. WPA2)
  71. is enabled in configuration
  72. * changed EAP-FAST configuration to use separate fields for A-ID and
  73. A-ID-Info (eap_fast_a_id_info) to allow A-ID to be set to a fixed
  74. 16-octet len binary value for better interoperability with some peer
  75. implementations; eap_fast_a_id is now configured as a hex string
  76. * driver_nl80211: Updated to match the current Linux mac80211 AP mode
  77. configuration (wireless-testing.git and Linux kernel releases
  78. starting from 2.6.29)
  79. 2008-08-10 - v0.6.4
  80. * added peer identity into EAP-FAST PAC-Opaque and skip Phase 2
  81. Identity Request if identity is already known
  82. * added support for EAP Sequences in EAP-FAST Phase 2
  83. * added support for EAP-TNC (Trusted Network Connect)
  84. (this version implements the EAP-TNC method and EAP-TTLS/EAP-FAST
  85. changes needed to run two methods in sequence (IF-T) and the IF-IMV
  86. and IF-TNCCS interfaces from TNCS)
  87. * added support for optional cryptobinding with PEAPv0
  88. * added fragmentation support for EAP-TNC
  89. * added support for fragmenting EAP-TTLS/PEAP/FAST Phase 2 (tunneled)
  90. data
  91. * added support for opportunistic key caching (OKC)
  92. 2008-02-22 - v0.6.3
  93. * fixed Reassociation Response callback processing when using internal
  94. MLME (driver_{hostap,nl80211,test}.c)
  95. * updated FT support to use the latest draft, IEEE 802.11r/D9.0
  96. * copy optional Proxy-State attributes into RADIUS response when acting
  97. as a RADIUS authentication server
  98. * fixed EAPOL state machine to handle a case in which no response is
  99. received from the RADIUS authentication server; previous version
  100. could have triggered a crash in some cases after a timeout
  101. * fixed EAP-SIM/AKA realm processing to allow decorated usernames to
  102. be used
  103. * added a workaround for EAP-SIM/AKA peers that include incorrect null
  104. termination in the username
  105. * fixed EAP-SIM/AKA protected result indication to include AT_COUNTER
  106. attribute in notification messages only when using fast
  107. reauthentication
  108. * fixed EAP-SIM Start response processing for fast reauthentication
  109. case
  110. * added support for pending EAP processing in EAP-{PEAP,TTLS,FAST}
  111. phase 2 to allow EAP-SIM and EAP-AKA to be used as the Phase 2 method
  112. 2008-01-01 - v0.6.2
  113. * fixed EAP-SIM and EAP-AKA message parser to validate attribute
  114. lengths properly to avoid potential crash caused by invalid messages
  115. * added data structure for storing allocated buffers (struct wpabuf);
  116. this does not affect hostapd usage, but many of the APIs changed
  117. and various interfaces (e.g., EAP) is not compatible with old
  118. versions
  119. * added support for protecting EAP-AKA/Identity messages with
  120. AT_CHECKCODE (optional feature in RFC 4187)
  121. * added support for protected result indication with AT_RESULT_IND for
  122. EAP-SIM and EAP-AKA (eap_sim_aka_result_ind=1)
  123. * added support for configuring EAP-TTLS phase 2 non-EAP methods in
  124. EAP server configuration; previously all four were enabled for every
  125. phase 2 user, now all four are disabled by default and need to be
  126. enabled with new method names TTLS-PAP, TTLS-CHAP, TTLS-MSCHAP,
  127. TTLS-MSCHAPV2
  128. * removed old debug printing mechanism and the related 'debug'
  129. parameter in the configuration file; debug verbosity is now set with
  130. -d (or -dd) command line arguments
  131. * added support for EAP-IKEv2 (draft-tschofenig-eap-ikev2-15.txt);
  132. only shared key/password authentication is supported in this version
  133. 2007-11-24 - v0.6.1
  134. * added experimental, integrated TLSv1 server implementation with the
  135. needed X.509/ASN.1/RSA/bignum processing (this can be enabled by
  136. setting CONFIG_TLS=internal and CONFIG_INTERNAL_LIBTOMMATH=y in
  137. .config); this can be useful, e.g., if the target system does not
  138. have a suitable TLS library and a minimal code size is required
  139. * added support for EAP-FAST server method to the integrated EAP
  140. server
  141. * updated EAP Generalized Pre-Shared Key (EAP-GPSK) to use the latest
  142. draft (draft-ietf-emu-eap-gpsk-07.txt)
  143. * added a new configuration parameter, rsn_pairwise, to allow different
  144. pairwise cipher suites to be enabled for WPA and RSN/WPA2
  145. (note: if wpa_pairwise differs from rsn_pairwise, the driver will
  146. either need to support this or will have to use the WPA/RSN IEs from
  147. hostapd; currently, the included madwifi and bsd driver interfaces do
  148. not have support for this)
  149. * updated FT support to use the latest draft, IEEE 802.11r/D8.0
  150. 2007-05-28 - v0.6.0
  151. * added experimental IEEE 802.11r/D6.0 support
  152. * updated EAP-SAKE to RFC 4763 and the IANA-allocated EAP type 48
  153. * updated EAP-PSK to use the IANA-allocated EAP type 47
  154. * fixed EAP-PSK bit ordering of the Flags field
  155. * fixed configuration reloading (SIGHUP) to re-initialize WPA PSKs
  156. by reading wpa_psk_file [Bug 181]
  157. * fixed EAP-TTLS AVP parser processing for too short AVP lengths
  158. * fixed IPv6 connection to RADIUS accounting server
  159. * updated EAP Generalized Pre-Shared Key (EAP-GPSK) to use the latest
  160. draft (draft-ietf-emu-eap-gpsk-04.txt)
  161. * hlr_auc_gw: read GSM triplet file into memory and rotate through the
  162. entries instead of only using the same three triplets every time
  163. (this does not work properly with tests using multiple clients, but
  164. provides bit better triplet data for testing a single client; anyway,
  165. if a better quality triplets are needed, GSM-Milenage should be used
  166. instead of hardcoded triplet file)
  167. * fixed EAP-MSCHAPv2 server to use a space between S and M parameters
  168. in Success Request [Bug 203]
  169. * added support for sending EAP-AKA Notifications in error cases
  170. * updated to use IEEE 802.11w/D2.0 for management frame protection
  171. (still experimental)
  172. * RADIUS server: added support for processing duplicate messages
  173. (retransmissions from RADIUS client) by replying with the previous
  174. reply
  175. 2006-11-24 - v0.5.6
  176. * added support for configuring and controlling multiple BSSes per
  177. radio interface (bss=<ifname> in hostapd.conf); this is only
  178. available with Devicescape and test driver interfaces
  179. * fixed PMKSA cache update in the end of successful RSN
  180. pre-authentication
  181. * added support for dynamic VLAN configuration (i.e., selecting VLAN-ID
  182. for each STA based on RADIUS Access-Accept attributes); this requires
  183. VLAN support from the kernel driver/802.11 stack and this is
  184. currently only available with Devicescape and test driver interfaces
  185. * driver_madwifi: fixed configuration of unencrypted modes (plaintext
  186. and IEEE 802.1X without WEP)
  187. * removed STAKey handshake since PeerKey handshake has replaced it in
  188. IEEE 802.11ma and there are no known deployments of STAKey
  189. * updated EAP Generalized Pre-Shared Key (EAP-GPSK) to use the latest
  190. draft (draft-ietf-emu-eap-gpsk-01.txt)
  191. * added preliminary implementation of IEEE 802.11w/D1.0 (management
  192. frame protection)
  193. (Note: this requires driver support to work properly.)
  194. (Note2: IEEE 802.11w is an unapproved draft and subject to change.)
  195. * hlr_auc_gw: added support for GSM-Milenage (for EAP-SIM)
  196. * hlr_auc_gw: added support for reading per-IMSI Milenage keys and
  197. parameters from a text file to make it possible to implement proper
  198. GSM/UMTS authentication server for multiple SIM/USIM cards using
  199. EAP-SIM/EAP-AKA
  200. * fixed session timeout processing with drivers that do not use
  201. ieee802_11.c (e.g., madwifi)
  202. 2006-08-27 - v0.5.5
  203. * added 'hostapd_cli new_sta <addr>' command for adding a new STA into
  204. hostapd (e.g., to initialize wired network authentication based on an
  205. external signal)
  206. * fixed hostapd to add PMKID KDE into 4-Way Handshake Message 1 when
  207. using WPA2 even if PMKSA caching is not used
  208. * added -P<pid file> argument for hostapd to write the current process
  209. id into a file
  210. * added support for RADIUS Authentication Server MIB (RFC 2619)
  211. 2006-06-20 - v0.5.4
  212. * fixed nt_password_hash build [Bug 144]
  213. * added PeerKey handshake implementation for IEEE 802.11e
  214. direct link setup (DLS) to replace STAKey handshake
  215. * added support for EAP Generalized Pre-Shared Key (EAP-GPSK,
  216. draft-clancy-emu-eap-shared-secret-00.txt)
  217. * fixed a segmentation fault when RSN pre-authentication was completed
  218. successfully [Bug 152]
  219. 2006-04-27 - v0.5.3
  220. * do not build nt_password_hash and hlr_auc_gw by default to avoid
  221. requiring a TLS library for a successful build; these programs can be
  222. build with 'make nt_password_hash' and 'make hlr_auc_gw'
  223. * added a new configuration option, eapol_version, that can be used to
  224. set EAPOL version to 1 (default is 2) to work around broken client
  225. implementations that drop EAPOL frames which use version number 2
  226. [Bug 89]
  227. * added support for EAP-SAKE (no EAP method number allocated yet, so
  228. this is using the same experimental type 255 as EAP-PSK)
  229. * fixed EAP-MSCHAPv2 message length validation
  230. 2006-03-19 - v0.5.2
  231. * fixed stdarg use in hostapd_logger(): if both stdout and syslog
  232. logging was enabled, hostapd could trigger a segmentation fault in
  233. vsyslog on some CPU -- C library combinations
  234. * moved HLR/AuC gateway implementation for EAP-SIM/AKA into an external
  235. program to make it easier to use for implementing real SS7 gateway;
  236. eap_sim_db is not anymore used as a file name for GSM authentication
  237. triplets; instead, it is path to UNIX domain socket that will be used
  238. to communicate with the external gateway program (e.g., hlr_auc_gw)
  239. * added example HLR/AuC gateway implementation, hlr_auc_gw, that uses
  240. local information (GSM authentication triplets from a text file and
  241. hardcoded AKA authentication data); this can be used to test EAP-SIM
  242. and EAP-AKA
  243. * added Milenage algorithm (example 3GPP AKA algorithm) to hlr_auc_gw
  244. to make it possible to test EAP-AKA with real USIM cards (this is
  245. disabled by default; define AKA_USE_MILENAGE when building hlr_auc_gw
  246. to enable this)
  247. * driver_madwifi: added support for getting station RSN IE from
  248. madwifi-ng svn r1453 and newer; this fixes RSN that was apparently
  249. broken with earlier change (r1357) in the driver
  250. * changed EAP method registration to use a dynamic list of methods
  251. instead of a static list generated at build time
  252. * fixed WPA message 3/4 not to encrypt Key Data field (WPA IE)
  253. [Bug 125]
  254. * added ap_max_inactivity configuration parameter
  255. 2006-01-29 - v0.5.1
  256. * driver_test: added better support for multiple APs and STAs by using
  257. a directory with sockets that include MAC address for each device in
  258. the name (test_socket=DIR:/tmp/test)
  259. * added support for EAP expanded type (vendor specific EAP methods)
  260. 2005-12-18 - v0.5.0 (beginning of 0.5.x development releases)
  261. * added experimental STAKey handshake implementation for IEEE 802.11e
  262. direct link setup (DLS); note: this is disabled by default in both
  263. build and runtime configuration (can be enabled with CONFIG_STAKEY=y
  264. and stakey=1)
  265. * added support for EAP methods to use callbacks to external programs
  266. by buffering a pending request and processing it after the EAP method
  267. is ready to continue
  268. * improved EAP-SIM database interface to allow external request to GSM
  269. HLR/AuC without blocking hostapd process
  270. * added support for using EAP-SIM pseudonyms and fast re-authentication
  271. * added support for EAP-AKA in the integrated EAP authenticator
  272. * added support for matching EAP identity prefixes (e.g., "1"*) in EAP
  273. user database to allow EAP-SIM/AKA selection without extra roundtrip
  274. for EAP-Nak negotiation
  275. * added support for storing EAP user password as NtPasswordHash instead
  276. of plaintext password when using MSCHAP or MSCHAPv2 for
  277. authentication (hash:<16-octet hex value>); added nt_password_hash
  278. tool for hashing password to generate NtPasswordHash
  279. 2005-11-20 - v0.4.7 (beginning of 0.4.x stable releases)
  280. * driver_wired: fixed EAPOL sending to optionally use PAE group address
  281. as the destination instead of supplicant MAC address; this is
  282. disabled by default, but should be enabled with use_pae_group_addr=1
  283. in configuration file if the wired interface is used by only one
  284. device at the time (common switch configuration)
  285. * driver_madwifi: configure driver to use TKIP countermeasures in order
  286. to get correct behavior (IEEE 802.11 association failing; previously,
  287. association succeeded, but hostpad forced disassociation immediately)
  288. * driver_madwifi: added support for madwifi-ng
  289. 2005-10-27 - v0.4.6
  290. * added support for replacing user identity from EAP with RADIUS
  291. User-Name attribute from Access-Accept message, if that is included,
  292. for the RADIUS accounting messages (e.g., for EAP-PEAP/TTLS to get
  293. tunneled identity into accounting messages when the RADIUS server
  294. does not support better way of doing this with Class attribute)
  295. * driver_madwifi: fixed EAPOL packet receive for configuration where
  296. ath# is part of a bridge interface
  297. * added a configuration file and log analyzer script for logwatch
  298. * fixed EAPOL state machine step function to process all state
  299. transitions before processing new events; this resolves a race
  300. condition in which EAPOL-Start message could trigger hostapd to send
  301. two EAP-Response/Identity frames to the authentication server
  302. 2005-09-25 - v0.4.5
  303. * added client CA list to the TLS certificate request in order to make
  304. it easier for the client to select which certificate to use
  305. * added experimental support for EAP-PSK
  306. * added support for WE-19 (hostap, madwifi)
  307. 2005-08-21 - v0.4.4
  308. * fixed build without CONFIG_RSN_PREAUTH
  309. * fixed FreeBSD build
  310. 2005-06-26 - v0.4.3
  311. * fixed PMKSA caching to copy User-Name and Class attributes so that
  312. RADIUS accounting gets correct information
  313. * start RADIUS accounting only after successful completion of WPA
  314. 4-Way Handshake if WPA-PSK is used
  315. * fixed PMKSA caching for the case where STA (re)associates without
  316. first disassociating
  317. 2005-06-12 - v0.4.2
  318. * EAP-PAX is now registered as EAP type 46
  319. * fixed EAP-PAX MAC calculation
  320. * fixed EAP-PAX CK and ICK key derivation
  321. * renamed eap_authenticator configuration variable to eap_server to
  322. better match with RFC 3748 (EAP) terminology
  323. * driver_test: added support for testing hostapd with wpa_supplicant
  324. by using test driver interface without any kernel drivers or network
  325. cards
  326. 2005-05-22 - v0.4.1
  327. * fixed RADIUS server initialization when only auth or acct server
  328. is configured and the other one is left empty
  329. * driver_madwifi: added support for RADIUS accounting
  330. * driver_madwifi: added preliminary support for compiling against 'BSD'
  331. branch of madwifi CVS tree
  332. * driver_madwifi: fixed pairwise key removal to allow WPA reauth
  333. without disassociation
  334. * added support for reading additional certificates from PKCS#12 files
  335. and adding them to the certificate chain
  336. * fixed RADIUS Class attribute processing to only use Access-Accept
  337. packets to update Class; previously, other RADIUS authentication
  338. packets could have cleared Class attribute
  339. * added support for more than one Class attribute in RADIUS packets
  340. * added support for verifying certificate revocation list (CRL) when
  341. using integrated EAP authenticator for EAP-TLS; new hostapd.conf
  342. options 'check_crl'; CRL must be included in the ca_cert file for now
  343. 2005-04-25 - v0.4.0 (beginning of 0.4.x development releases)
  344. * added support for including network information into
  345. EAP-Request/Identity message (ASCII-0 (nul) in eap_message)
  346. (e.g., to implement draft-adrange-eap-network-discovery-07.txt)
  347. * fixed a bug which caused some RSN pre-authentication cases to use
  348. freed memory and potentially crash hostapd
  349. * fixed private key loading for cases where passphrase is not set
  350. * added support for sending TLS alerts and aborting authentication
  351. when receiving a TLS alert
  352. * fixed WPA2 to add PMKSA cache entry when using integrated EAP
  353. authenticator
  354. * fixed PMKSA caching (EAP authentication was not skipped correctly
  355. with the new state machine changes from IEEE 802.1X draft)
  356. * added support for RADIUS over IPv6; own_ip_addr, auth_server_addr,
  357. and acct_server_addr can now be IPv6 addresses (CONFIG_IPV6=y needs
  358. to be added to .config to include IPv6 support); for RADIUS server,
  359. radius_server_ipv6=1 needs to be set in hostapd.conf and addresses
  360. in RADIUS clients file can then use IPv6 format
  361. * added experimental support for EAP-PAX
  362. * replaced hostapd control interface library (hostapd_ctrl.[ch]) with
  363. the same implementation that wpa_supplicant is using (wpa_ctrl.[ch])
  364. 2005-02-12 - v0.3.7 (beginning of 0.3.x stable releases)
  365. 2005-01-23 - v0.3.5
  366. * added support for configuring a forced PEAP version based on the
  367. Phase 1 identity
  368. * fixed PEAPv1 to use tunneled EAP-Success/Failure instead of EAP-TLV
  369. to terminate authentication
  370. * fixed EAP identifier duplicate processing with the new IEEE 802.1X
  371. draft
  372. * clear accounting data in the driver when starting a new accounting
  373. session
  374. * driver_madwifi: filter wireless events based on ifindex to allow more
  375. than one network interface to be used
  376. * fixed WPA message 2/4 processing not to cancel timeout for TimeoutEvt
  377. setting if the packet does not pass MIC verification (e.g., due to
  378. incorrect PSK); previously, message 1/4 was not tried again if an
  379. invalid message 2/4 was received
  380. * fixed reconfiguration of RADIUS client retransmission timer when
  381. adding a new message to the pending list; previously, timer was not
  382. updated at this point and if there was a pending message with long
  383. time for the next retry, the new message needed to wait that long for
  384. its first retry, too
  385. 2005-01-09 - v0.3.4
  386. * added support for configuring multiple allowed EAP types for Phase 2
  387. authentication (EAP-PEAP, EAP-TTLS)
  388. * fixed EAPOL-Start processing to trigger WPA reauthentication
  389. (previously, only EAPOL authentication was done)
  390. 2005-01-02 - v0.3.3
  391. * added support for EAP-PEAP in the integrated EAP authenticator
  392. * added support for EAP-GTC in the integrated EAP authenticator
  393. * added support for configuring list of EAP methods for Phase 1 so that
  394. the integrated EAP authenticator can, e.g., use the wildcard entry
  395. for EAP-TLS and EAP-PEAP
  396. * added support for EAP-TTLS in the integrated EAP authenticator
  397. * added support for EAP-SIM in the integrated EAP authenticator
  398. * added support for using hostapd as a RADIUS authentication server
  399. with the integrated EAP authenticator taking care of EAP
  400. authentication (new hostapd.conf options: radius_server_clients and
  401. radius_server_auth_port); this is not included in default build; use
  402. CONFIG_RADIUS_SERVER=y in .config to include
  403. 2004-12-19 - v0.3.2
  404. * removed 'daemonize' configuration file option since it has not really
  405. been used at all for more than year
  406. * driver_madwifi: fixed group key setup and added get_ssid method
  407. * added support for EAP-MSCHAPv2 in the integrated EAP authenticator
  408. 2004-12-12 - v0.3.1
  409. * added support for integrated EAP-TLS authentication (new hostapd.conf
  410. variables: ca_cert, server_cert, private_key, private_key_passwd);
  411. this enabled dynamic keying (WPA2/WPA/IEEE 802.1X/WEP) without
  412. external RADIUS server
  413. * added support for reading PKCS#12 (PFX) files (as a replacement for
  414. PEM/DER) to get certificate and private key (CONFIG_PKCS12)
  415. 2004-12-05 - v0.3.0 (beginning of 0.3.x development releases)
  416. * added support for Acct-{Input,Output}-Gigawords
  417. * added support for Event-Timestamp (in RADIUS Accounting-Requests)
  418. * added support for RADIUS Authentication Client MIB (RFC2618)
  419. * added support for RADIUS Accounting Client MIB (RFC2620)
  420. * made EAP re-authentication period configurable (eap_reauth_period)
  421. * fixed EAPOL reauthentication to trigger WPA/WPA2 reauthentication
  422. * fixed EAPOL state machine to stop if STA is removed during
  423. eapol_sm_step(); this fixes at least one segfault triggering bug with
  424. IEEE 802.11i pre-authentication
  425. * added support for multiple WPA pre-shared keys (e.g., one for each
  426. client MAC address or keys shared by a group of clients);
  427. new hostapd.conf field wpa_psk_file for setting path to a text file
  428. containing PSKs, see hostapd.wpa_psk for an example
  429. * added support for multiple driver interfaces to allow hostapd to be
  430. used with other drivers
  431. * added wired authenticator driver interface (driver=wired in
  432. hostapd.conf, see wired.conf for example configuration)
  433. * added madwifi driver interface (driver=madwifi in hostapd.conf, see
  434. madwifi.conf for example configuration; Note: include files from
  435. madwifi project is needed for building and a configuration file,
  436. .config, needs to be created in hostapd directory with
  437. CONFIG_DRIVER_MADWIFI=y to include this driver interface in hostapd
  438. build)
  439. * fixed an alignment issue that could cause SHA-1 to fail on some
  440. platforms (e.g., Intel ixp425 with a compiler that does not 32-bit
  441. align variables)
  442. * fixed RADIUS reconnection after an error in sending interim
  443. accounting packets
  444. * added hostapd control interface for external programs and an example
  445. CLI, hostapd_cli (like wpa_cli for wpa_supplicant)
  446. * started adding dot11, dot1x, radius MIBs ('hostapd_cli mib',
  447. 'hostapd_cli sta <addr>')
  448. * finished update from IEEE 802.1X-2001 to IEEE 802.1X-REV (now d11)
  449. * added support for strict GTK rekeying (wpa_strict_rekey in
  450. hostapd.conf)
  451. * updated IAPP to use UDP port 3517 and multicast address 224.0.1.178
  452. (instead of broadcast) for IAPP ADD-notify (moved from draft 3 to
  453. IEEE 802.11F-2003)
  454. * added Prism54 driver interface (driver=prism54 in hostapd.conf;
  455. note: .config needs to be created in hostapd directory with
  456. CONFIG_DRIVER_PRISM54=y to include this driver interface in hostapd
  457. build)
  458. * dual-licensed hostapd (GPLv2 and BSD licenses)
  459. * fixed RADIUS accounting to generate a new session id for cases where
  460. a station reassociates without first being complete deauthenticated
  461. * fixed STA disassociation handler to mark next timeout state to
  462. deauthenticate the station, i.e., skip long wait for inactivity poll
  463. and extra disassociation, if the STA disassociates without
  464. deauthenticating
  465. * added integrated EAP authenticator that can be used instead of
  466. external RADIUS authentication server; currently, only EAP-MD5 is
  467. supported, so this cannot yet be used for key distribution; the EAP
  468. method interface is generic, though, so adding new EAP methods should
  469. be straightforward; new hostapd.conf variables: 'eap_authenticator'
  470. and 'eap_user_file'; this obsoletes "minimal authentication server"
  471. ('minimal_eap' in hostapd.conf) which is now removed
  472. * added support for FreeBSD and driver interface for the BSD net80211
  473. layer (driver=bsd in hostapd.conf and CONFIG_DRIVER_BSD=y in
  474. .config); please note that some of the required kernel mods have not
  475. yet been committed
  476. 2004-07-17 - v0.2.4 (beginning of 0.2.x stable releases)
  477. * fixed some accounting cases where Accounting-Start was sent when
  478. IEEE 802.1X port was being deauthorized
  479. 2004-06-20 - v0.2.3
  480. * modified RADIUS client to re-connect the socket in case of certain
  481. error codes that are generated when a network interface state is
  482. changes (e.g., when IP address changes or the interface is set UP)
  483. * fixed couple of cases where EAPOL state for a station was freed
  484. twice causing a segfault for hostapd
  485. * fixed couple of bugs in processing WPA deauthentication (freed data
  486. was used)
  487. 2004-05-31 - v0.2.2
  488. * fixed WPA/WPA2 group rekeying to use key index correctly (GN/GM)
  489. * fixed group rekeying to send zero TSC in EAPOL-Key messages to fix
  490. cases where STAs dropped multicast frames as replay attacks
  491. * added support for copying RADIUS Attribute 'Class' from
  492. authentication messages into accounting messages
  493. * send canned EAP failure if RADIUS server sends Access-Reject without
  494. EAP message (previously, Supplicant was not notified in this case)
  495. * fixed mixed WPA-PSK and WPA-EAP mode to work with WPA-PSK (i.e., do
  496. not start EAPOL state machines if the STA selected to use WPA-PSK)
  497. 2004-05-06 - v0.2.1
  498. * added WPA and IEEE 802.11i/RSN (WPA2) Authenticator functionality
  499. - based on IEEE 802.11i/D10.0 but modified to interoperate with WPA
  500. (i.e., IEEE 802.11i/D3.0)
  501. - supports WPA-only, RSN-only, and mixed WPA/RSN mode
  502. - both WPA-PSK and WPA-RADIUS/EAP are supported
  503. - PMKSA caching and pre-authentication
  504. - new hostapd.conf variables: wpa, wpa_psk, wpa_passphrase,
  505. wpa_key_mgmt, wpa_pairwise, wpa_group_rekey, wpa_gmk_rekey,
  506. rsn_preauth, rsn_preauth_interfaces
  507. * fixed interim accounting to remove any pending accounting messages
  508. to the STA before sending a new one
  509. 2004-02-15 - v0.2.0
  510. * added support for Acct-Interim-Interval:
  511. - draft-ietf-radius-acct-interim-01.txt
  512. - use Acct-Interim-Interval attribute from Access-Accept if local
  513. 'radius_acct_interim_interval' is not set
  514. - allow different update intervals for each STA
  515. * fixed event loop to call signal handlers only after returning from
  516. the real signal handler
  517. * reset sta->timeout_next after successful association to make sure
  518. that the previously registered inactivity timer will not remove the
  519. STA immediately (e.g., if STA deauthenticates and re-associates
  520. before the timer is triggered).
  521. * added new hostapd.conf variable, nas_identifier, that can be used to
  522. add an optional RADIUS Attribute, NAS-Identifier, into authentication
  523. and accounting messages
  524. * added support for Accounting-On and Accounting-Off messages
  525. * fixed accounting session handling to send Accounting-Start only once
  526. per session and not to send Accounting-Stop if the session was not
  527. initialized properly
  528. * fixed Accounting-Stop statistics in cases where the message was
  529. previously sent after the kernel entry for the STA (and/or IEEE
  530. 802.1X data) was removed
  531. Note:
  532. Older changes up to and including v0.1.0 are included in the ChangeLog
  533. of the Host AP driver.