test_ap_ciphers.py 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # Cipher suite tests
  2. # Copyright (c) 2013, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import time
  7. import logging
  8. logger = logging.getLogger()
  9. import os.path
  10. import hwsim_utils
  11. import hostapd
  12. from utils import HwsimSkip
  13. def check_cipher(dev, ap, cipher):
  14. if cipher not in dev.get_capability("pairwise"):
  15. raise HwsimSkip("Cipher %s not supported" % cipher)
  16. params = { "ssid": "test-wpa2-psk",
  17. "wpa_passphrase": "12345678",
  18. "wpa": "2",
  19. "wpa_key_mgmt": "WPA-PSK",
  20. "rsn_pairwise": cipher }
  21. hapd = hostapd.add_ap(ap['ifname'], params)
  22. dev.connect("test-wpa2-psk", psk="12345678",
  23. pairwise=cipher, group=cipher, scan_freq="2412")
  24. hwsim_utils.test_connectivity(dev, hapd)
  25. def test_ap_cipher_tkip(dev, apdev):
  26. """WPA2-PSK/TKIP connection"""
  27. check_cipher(dev[0], apdev[0], "TKIP")
  28. def test_ap_cipher_tkip_countermeasures_ap(dev, apdev):
  29. """WPA-PSK/TKIP countermeasures (detected by AP)"""
  30. testfile = "/sys/kernel/debug/ieee80211/%s/netdev:%s/tkip_mic_test" % (dev[0].get_driver_status_field("phyname"), dev[0].ifname)
  31. if not os.path.exists(testfile):
  32. raise HwsimSkip("tkip_mic_test not supported in mac80211")
  33. params = { "ssid": "tkip-countermeasures",
  34. "wpa_passphrase": "12345678",
  35. "wpa": "1",
  36. "wpa_key_mgmt": "WPA-PSK",
  37. "wpa_pairwise": "TKIP" }
  38. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  39. dev[0].connect("tkip-countermeasures", psk="12345678",
  40. pairwise="TKIP", group="TKIP", scan_freq="2412")
  41. dev[0].dump_monitor()
  42. with open(testfile, "w") as f:
  43. f.write(apdev[0]['bssid'])
  44. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=1)
  45. if ev is not None:
  46. raise Exception("Unexpected disconnection on first Michael MIC failure")
  47. with open(testfile, "w") as f:
  48. f.write("ff:ff:ff:ff:ff:ff")
  49. ev = dev[0].wait_disconnected(timeout=10,
  50. error="No disconnection after two Michael MIC failures")
  51. if "reason=14" not in ev:
  52. raise Exception("Unexpected disconnection reason: " + ev)
  53. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  54. if ev is not None:
  55. raise Exception("Unexpected connection during TKIP countermeasures")
  56. def test_ap_cipher_tkip_countermeasures_sta(dev, apdev):
  57. """WPA-PSK/TKIP countermeasures (detected by STA)"""
  58. params = { "ssid": "tkip-countermeasures",
  59. "wpa_passphrase": "12345678",
  60. "wpa": "1",
  61. "wpa_key_mgmt": "WPA-PSK",
  62. "wpa_pairwise": "TKIP" }
  63. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  64. testfile = "/sys/kernel/debug/ieee80211/%s/netdev:%s/tkip_mic_test" % (hapd.get_driver_status_field("phyname"), apdev[0]['ifname'])
  65. if not os.path.exists(testfile):
  66. raise HwsimSkip("tkip_mic_test not supported in mac80211")
  67. dev[0].connect("tkip-countermeasures", psk="12345678",
  68. pairwise="TKIP", group="TKIP", scan_freq="2412")
  69. dev[0].dump_monitor()
  70. with open(testfile, "w") as f:
  71. f.write(dev[0].p2p_dev_addr())
  72. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=1)
  73. if ev is not None:
  74. raise Exception("Unexpected disconnection on first Michael MIC failure")
  75. with open(testfile, "w") as f:
  76. f.write("ff:ff:ff:ff:ff:ff")
  77. ev = dev[0].wait_disconnected(timeout=10,
  78. error="No disconnection after two Michael MIC failures")
  79. if "reason=14 locally_generated=1" not in ev:
  80. raise Exception("Unexpected disconnection reason: " + ev)
  81. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  82. if ev is not None:
  83. raise Exception("Unexpected connection during TKIP countermeasures")
  84. def test_ap_cipher_ccmp(dev, apdev):
  85. """WPA2-PSK/CCMP connection"""
  86. check_cipher(dev[0], apdev[0], "CCMP")
  87. def test_ap_cipher_gcmp(dev, apdev):
  88. """WPA2-PSK/GCMP connection"""
  89. check_cipher(dev[0], apdev[0], "GCMP")
  90. def test_ap_cipher_ccmp_256(dev, apdev):
  91. """WPA2-PSK/CCMP-256 connection"""
  92. check_cipher(dev[0], apdev[0], "CCMP-256")
  93. def test_ap_cipher_gcmp_256(dev, apdev):
  94. """WPA2-PSK/GCMP-256 connection"""
  95. check_cipher(dev[0], apdev[0], "GCMP-256")
  96. def test_ap_cipher_mixed_wpa_wpa2(dev, apdev):
  97. """WPA2-PSK/CCMP/ and WPA-PSK/TKIP mixed configuration"""
  98. ssid = "test-wpa-wpa2-psk"
  99. passphrase = "12345678"
  100. params = { "ssid": ssid,
  101. "wpa_passphrase": passphrase,
  102. "wpa": "3",
  103. "wpa_key_mgmt": "WPA-PSK",
  104. "rsn_pairwise": "CCMP",
  105. "wpa_pairwise": "TKIP" }
  106. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  107. dev[0].connect(ssid, psk=passphrase, proto="WPA2",
  108. pairwise="CCMP", group="TKIP", scan_freq="2412")
  109. status = dev[0].get_status()
  110. if status['key_mgmt'] != 'WPA2-PSK':
  111. raise Exception("Incorrect key_mgmt reported")
  112. if status['pairwise_cipher'] != 'CCMP':
  113. raise Exception("Incorrect pairwise_cipher reported")
  114. if status['group_cipher'] != 'TKIP':
  115. raise Exception("Incorrect group_cipher reported")
  116. bss = dev[0].get_bss(apdev[0]['bssid'])
  117. if bss['ssid'] != ssid:
  118. raise Exception("Unexpected SSID in the BSS entry")
  119. if "[WPA-PSK-TKIP]" not in bss['flags']:
  120. raise Exception("Missing BSS flag WPA-PSK-TKIP")
  121. if "[WPA2-PSK-CCMP]" not in bss['flags']:
  122. raise Exception("Missing BSS flag WPA2-PSK-CCMP")
  123. hwsim_utils.test_connectivity(dev[0], hapd)
  124. dev[1].connect(ssid, psk=passphrase, proto="WPA",
  125. pairwise="TKIP", group="TKIP", scan_freq="2412")
  126. status = dev[1].get_status()
  127. if status['key_mgmt'] != 'WPA-PSK':
  128. raise Exception("Incorrect key_mgmt reported")
  129. if status['pairwise_cipher'] != 'TKIP':
  130. raise Exception("Incorrect pairwise_cipher reported")
  131. if status['group_cipher'] != 'TKIP':
  132. raise Exception("Incorrect group_cipher reported")
  133. hwsim_utils.test_connectivity(dev[1], hapd)
  134. hwsim_utils.test_connectivity(dev[0], dev[1])