test_ap_ciphers.py 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 subprocess
  8. import logging
  9. logger = logging.getLogger()
  10. import os.path
  11. import hwsim_utils
  12. import hostapd
  13. def check_cipher(dev, ap, cipher):
  14. if cipher not in dev.get_capability("pairwise"):
  15. return "skip"
  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. return 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. return "skip"
  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. cmd = subprocess.Popen(["sudo", "tee", testfile],
  43. stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  44. cmd.stdin.write(apdev[0]['bssid'])
  45. cmd.stdin.close()
  46. cmd.stdout.read()
  47. cmd.stdout.close()
  48. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=1)
  49. if ev is not None:
  50. raise Exception("Unexpected disconnection on first Michael MIC failure")
  51. cmd = subprocess.Popen(["sudo", "tee", testfile],
  52. stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  53. cmd.stdin.write("ff:ff:ff:ff:ff:ff")
  54. cmd.stdin.close()
  55. cmd.stdout.read()
  56. cmd.stdout.close()
  57. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=10)
  58. if ev is None:
  59. raise Exception("No disconnection after two Michael MIC failures")
  60. if "reason=14" not in ev:
  61. raise Exception("Unexpected disconnection reason: " + ev)
  62. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  63. if ev is not None:
  64. raise Exception("Unexpected connection during TKIP countermeasures")
  65. def test_ap_cipher_tkip_countermeasures_sta(dev, apdev):
  66. """WPA-PSK/TKIP countermeasures (detected by STA)"""
  67. params = { "ssid": "tkip-countermeasures",
  68. "wpa_passphrase": "12345678",
  69. "wpa": "1",
  70. "wpa_key_mgmt": "WPA-PSK",
  71. "wpa_pairwise": "TKIP" }
  72. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  73. testfile = "/sys/kernel/debug/ieee80211/%s/netdev:%s/tkip_mic_test" % (hapd.get_driver_status_field("phyname"), apdev[0]['ifname'])
  74. if not os.path.exists(testfile):
  75. return "skip"
  76. dev[0].connect("tkip-countermeasures", psk="12345678",
  77. pairwise="TKIP", group="TKIP", scan_freq="2412")
  78. dev[0].dump_monitor()
  79. cmd = subprocess.Popen(["sudo", "tee", testfile],
  80. stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  81. cmd.stdin.write(dev[0].p2p_dev_addr())
  82. cmd.stdin.close()
  83. cmd.stdout.read()
  84. cmd.stdout.close()
  85. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=1)
  86. if ev is not None:
  87. raise Exception("Unexpected disconnection on first Michael MIC failure")
  88. cmd = subprocess.Popen(["sudo", "tee", testfile],
  89. stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  90. cmd.stdin.write("ff:ff:ff:ff:ff:ff")
  91. cmd.stdin.close()
  92. cmd.stdout.read()
  93. cmd.stdout.close()
  94. ev = dev[0].wait_event(["CTRL-EVENT-DISCONNECTED"], timeout=10)
  95. if ev is None:
  96. raise Exception("No disconnection after two Michael MIC failures")
  97. if "reason=14 locally_generated=1" not in ev:
  98. raise Exception("Unexpected disconnection reason: " + ev)
  99. ev = dev[0].wait_event(["CTRL-EVENT-CONNECTED"], timeout=1)
  100. if ev is not None:
  101. raise Exception("Unexpected connection during TKIP countermeasures")
  102. def test_ap_cipher_ccmp(dev, apdev):
  103. """WPA2-PSK/CCMP connection"""
  104. return check_cipher(dev[0], apdev[0], "CCMP")
  105. def test_ap_cipher_gcmp(dev, apdev):
  106. """WPA2-PSK/GCMP connection"""
  107. return check_cipher(dev[0], apdev[0], "GCMP")
  108. def test_ap_cipher_ccmp_256(dev, apdev):
  109. """WPA2-PSK/CCMP-256 connection"""
  110. return check_cipher(dev[0], apdev[0], "CCMP-256")
  111. def test_ap_cipher_gcmp_256(dev, apdev):
  112. """WPA2-PSK/GCMP-256 connection"""
  113. return check_cipher(dev[0], apdev[0], "GCMP-256")
  114. def test_ap_cipher_mixed_wpa_wpa2(dev, apdev):
  115. """WPA2-PSK/CCMP/ and WPA-PSK/TKIP mixed configuration"""
  116. ssid = "test-wpa-wpa2-psk"
  117. passphrase = "12345678"
  118. params = { "ssid": ssid,
  119. "wpa_passphrase": passphrase,
  120. "wpa": "3",
  121. "wpa_key_mgmt": "WPA-PSK",
  122. "rsn_pairwise": "CCMP",
  123. "wpa_pairwise": "TKIP" }
  124. hapd = hostapd.add_ap(apdev[0]['ifname'], params)
  125. dev[0].connect(ssid, psk=passphrase, proto="WPA2",
  126. pairwise="CCMP", group="TKIP", scan_freq="2412")
  127. status = dev[0].get_status()
  128. if status['key_mgmt'] != 'WPA2-PSK':
  129. raise Exception("Incorrect key_mgmt reported")
  130. if status['pairwise_cipher'] != 'CCMP':
  131. raise Exception("Incorrect pairwise_cipher reported")
  132. if status['group_cipher'] != 'TKIP':
  133. raise Exception("Incorrect group_cipher reported")
  134. bss = dev[0].get_bss(apdev[0]['bssid'])
  135. if bss['ssid'] != ssid:
  136. raise Exception("Unexpected SSID in the BSS entry")
  137. if "[WPA-PSK-TKIP]" not in bss['flags']:
  138. raise Exception("Missing BSS flag WPA-PSK-TKIP")
  139. if "[WPA2-PSK-CCMP]" not in bss['flags']:
  140. raise Exception("Missing BSS flag WPA2-PSK-CCMP")
  141. hwsim_utils.test_connectivity(dev[0], hapd)
  142. dev[1].connect(ssid, psk=passphrase, proto="WPA",
  143. pairwise="TKIP", group="TKIP", scan_freq="2412")
  144. status = dev[1].get_status()
  145. if status['key_mgmt'] != 'WPA-PSK':
  146. raise Exception("Incorrect key_mgmt reported")
  147. if status['pairwise_cipher'] != 'TKIP':
  148. raise Exception("Incorrect pairwise_cipher reported")
  149. if status['group_cipher'] != 'TKIP':
  150. raise Exception("Incorrect group_cipher reported")
  151. hwsim_utils.test_connectivity(dev[1], hapd)
  152. hwsim_utils.test_connectivity(dev[0], dev[1])