2013-12-28 10:43:42 +01:00
|
|
|
# PeerKey tests
|
2015-08-01 21:54:07 +02:00
|
|
|
# Copyright (c) 2013-2015, Jouni Malinen <j@w1.fi>
|
2013-12-28 10:43:42 +01:00
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger()
|
|
|
|
import time
|
|
|
|
|
|
|
|
import hwsim_utils
|
|
|
|
import hostapd
|
2015-08-01 21:54:07 +02:00
|
|
|
from utils import skip_with_fips
|
2014-04-05 16:52:44 +02:00
|
|
|
from wlantest import Wlantest
|
2013-12-28 10:43:42 +01:00
|
|
|
|
|
|
|
def test_peerkey(dev, apdev):
|
|
|
|
"""RSN AP and PeerKey between two STAs"""
|
|
|
|
ssid = "test-peerkey"
|
|
|
|
passphrase = "12345678"
|
|
|
|
params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
|
|
|
|
params['peerkey'] = "1"
|
|
|
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
|
|
|
|
|
|
|
dev[0].connect(ssid, psk=passphrase, scan_freq="2412", peerkey=True)
|
|
|
|
dev[1].connect(ssid, psk=passphrase, scan_freq="2412", peerkey=True)
|
|
|
|
hwsim_utils.test_connectivity_sta(dev[0], dev[1])
|
|
|
|
|
|
|
|
dev[0].request("STKSTART " + dev[1].p2p_interface_addr())
|
|
|
|
time.sleep(0.5)
|
|
|
|
# NOTE: Actual use of the direct link (DLS) is not supported in
|
|
|
|
# mac80211_hwsim, so this operation fails at setting the keys after
|
|
|
|
# successfully completed 4-way handshake. This test case does allow the
|
|
|
|
# key negotiation part to be tested for coverage, though.
|
2014-03-14 23:47:06 +01:00
|
|
|
|
|
|
|
def test_peerkey_unknown_peer(dev, apdev):
|
|
|
|
"""RSN AP and PeerKey attempt with unknown peer"""
|
|
|
|
ssid = "test-peerkey"
|
|
|
|
passphrase = "12345678"
|
|
|
|
params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
|
|
|
|
params['peerkey'] = "1"
|
|
|
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
|
|
|
|
|
|
|
dev[0].connect(ssid, psk=passphrase, scan_freq="2412", peerkey=True)
|
|
|
|
dev[1].connect(ssid, psk=passphrase, scan_freq="2412", peerkey=True)
|
|
|
|
hwsim_utils.test_connectivity_sta(dev[0], dev[1])
|
|
|
|
|
|
|
|
dev[0].request("STKSTART " + dev[2].p2p_interface_addr())
|
|
|
|
time.sleep(0.5)
|
2014-04-05 16:52:44 +02:00
|
|
|
|
|
|
|
def test_peerkey_pairwise_mismatch(dev, apdev):
|
|
|
|
"""RSN TKIP+CCMP AP and PeerKey between two STAs using different ciphers"""
|
2015-08-01 21:54:07 +02:00
|
|
|
skip_with_fips(dev[0])
|
2014-04-05 16:52:44 +02:00
|
|
|
wt = Wlantest()
|
|
|
|
wt.flush()
|
|
|
|
wt.add_passphrase("12345678")
|
|
|
|
ssid = "test-peerkey"
|
|
|
|
passphrase = "12345678"
|
|
|
|
params = hostapd.wpa2_params(ssid=ssid, passphrase=passphrase)
|
|
|
|
params['peerkey'] = "1"
|
|
|
|
params['rsn_pairwise'] = "TKIP CCMP"
|
|
|
|
hostapd.add_ap(apdev[0]['ifname'], params)
|
|
|
|
|
|
|
|
dev[0].connect(ssid, psk=passphrase, scan_freq="2412", peerkey=True,
|
|
|
|
pairwise="CCMP")
|
|
|
|
dev[1].connect(ssid, psk=passphrase, scan_freq="2412", peerkey=True,
|
|
|
|
pairwise="TKIP")
|
|
|
|
hwsim_utils.test_connectivity_sta(dev[0], dev[1])
|
|
|
|
|
|
|
|
dev[0].request("STKSTART " + dev[1].p2p_interface_addr())
|
|
|
|
time.sleep(0.5)
|
|
|
|
dev[1].request("STKSTART " + dev[0].p2p_interface_addr())
|
|
|
|
time.sleep(0.5)
|