diff options
author | Dan Williams <dcbw@redhat.com> | 2007-05-25 23:01:24 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-06-11 14:28:44 -0400 |
commit | 90a42210f275e1f828eb6c08bf8252c2d6a774e0 (patch) | |
tree | 7530def8af573622c4d2a3223eb8774ee76a0405 /drivers/net/wireless/libertas/assoc.c | |
parent | 45f43de829981e9b9de56d6098d00d511b4fb56c (diff) |
[PATCH] libertas: Make WPA work through supplicant handshake
Fix WPA so it works up through the supplicant 4-Way handshake process.
Doesn't successfully pass traffic yet; may be problems installing
the GTK to the firmware.
- RSN needs to be enabled before the association command is sent
- Use keys from the association request not the adapter structure
- cmd_act_mac_strict_protection_enable != IW_AUTH_DROP_UNENCRYPTED
- Fix network filtering logic in is_network_compatible() WPA helpers
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/assoc.c')
-rw-r--r-- | drivers/net/wireless/libertas/assoc.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index 48fc6d171d58..2ee38a25adef 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c | |||
@@ -347,7 +347,17 @@ static int assoc_helper_secinfo(wlan_private *priv, | |||
347 | sizeof(struct wlan_802_11_security)); | 347 | sizeof(struct wlan_802_11_security)); |
348 | 348 | ||
349 | ret = libertas_set_mac_packet_filter(priv); | 349 | ret = libertas_set_mac_packet_filter(priv); |
350 | if (ret) | ||
351 | goto out; | ||
350 | 352 | ||
353 | /* enable/disable RSN */ | ||
354 | ret = libertas_prepare_and_send_command(priv, | ||
355 | cmd_802_11_enable_rsn, | ||
356 | cmd_act_set, | ||
357 | cmd_option_waitforrsp, | ||
358 | 0, assoc_req); | ||
359 | |||
360 | out: | ||
351 | lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret); | 361 | lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret); |
352 | return ret; | 362 | return ret; |
353 | } | 363 | } |
@@ -360,22 +370,12 @@ static int assoc_helper_wpa_keys(wlan_private *priv, | |||
360 | 370 | ||
361 | lbs_deb_enter(LBS_DEB_ASSOC); | 371 | lbs_deb_enter(LBS_DEB_ASSOC); |
362 | 372 | ||
363 | /* enable/Disable RSN */ | ||
364 | ret = libertas_prepare_and_send_command(priv, | ||
365 | cmd_802_11_enable_rsn, | ||
366 | cmd_act_set, | ||
367 | cmd_option_waitforrsp, | ||
368 | 0, assoc_req); | ||
369 | if (ret) | ||
370 | goto out; | ||
371 | |||
372 | ret = libertas_prepare_and_send_command(priv, | 373 | ret = libertas_prepare_and_send_command(priv, |
373 | cmd_802_11_key_material, | 374 | cmd_802_11_key_material, |
374 | cmd_act_set, | 375 | cmd_act_set, |
375 | cmd_option_waitforrsp, | 376 | cmd_option_waitforrsp, |
376 | 0, assoc_req); | 377 | 0, assoc_req); |
377 | 378 | ||
378 | out: | ||
379 | lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret); | 379 | lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret); |
380 | return ret; | 380 | return ret; |
381 | } | 381 | } |