blob: 88c83f343597ad307858a52e0934d1a7c0a91af3 [file] [log] [blame]
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001#!/usr/bin/env python2
2#
3# eapol_test controller
4# Copyright (c) 2015, Jouni Malinen <j@w1.fi>
5#
6# This software may be distributed under the terms of the BSD license.
7# See README for more details.
8
9import argparse
10import logging
11import os
12import Queue
13import sys
14import threading
15
16logger = logging.getLogger()
17dir = os.path.dirname(os.path.realpath(sys.modules[__name__].__file__))
18sys.path.append(os.path.join(dir, '..', 'wpaspy'))
19import wpaspy
20wpas_ctrl = '/tmp/eapol_test'
21
22class eapol_test:
23 def __init__(self, ifname):
24 self.ifname = ifname
25 self.ctrl = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
26 if "PONG" not in self.ctrl.request("PING"):
27 raise Exception("Failed to connect to eapol_test (%s)" % ifname)
28 self.mon = wpaspy.Ctrl(os.path.join(wpas_ctrl, ifname))
29 self.mon.attach()
30
31 def add_network(self):
32 id = self.request("ADD_NETWORK")
33 if "FAIL" in id:
34 raise Exception("ADD_NETWORK failed")
35 return int(id)
36
37 def remove_network(self, id):
38 id = self.request("REMOVE_NETWORK " + str(id))
39 if "FAIL" in id:
40 raise Exception("REMOVE_NETWORK failed")
41 return None
42
43 def set_network(self, id, field, value):
44 res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
45 if "FAIL" in res:
46 raise Exception("SET_NETWORK failed")
47 return None
48
49 def set_network_quoted(self, id, field, value):
50 res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
51 if "FAIL" in res:
52 raise Exception("SET_NETWORK failed")
53 return None
54
55 def request(self, cmd, timeout=10):
56 return self.ctrl.request(cmd, timeout=timeout)
57
58 def wait_event(self, events, timeout=10):
59 start = os.times()[4]
60 while True:
61 while self.mon.pending():
62 ev = self.mon.recv()
63 logger.debug(self.ifname + ": " + ev)
64 for event in events:
65 if event in ev:
66 return ev
67 now = os.times()[4]
68 remaining = start + timeout - now
69 if remaining <= 0:
70 break
71 if not self.mon.pending(timeout=remaining):
72 break
73 return None
74
Hai Shaloma20dcd72022-02-04 13:43:00 -080075def run(ifname, count, no_fast_reauth, res, conf):
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080076 et = eapol_test(ifname)
77
78 et.request("AP_SCAN 0")
79 if no_fast_reauth:
80 et.request("SET fast_reauth 0")
81 else:
82 et.request("SET fast_reauth 1")
83 id = et.add_network()
Hai Shaloma20dcd72022-02-04 13:43:00 -080084
85 if len(conf):
86 for item in conf:
87 et.set_network(id, item, conf[item])
88 else:
89 et.set_network(id, "key_mgmt", "IEEE8021X")
90 et.set_network(id, "eapol_flags", "0")
91 et.set_network(id, "eap", "TLS")
92 et.set_network_quoted(id, "identity", "user")
93 et.set_network_quoted(id, "ca_cert", 'ca.pem')
94 et.set_network_quoted(id, "client_cert", 'client.pem')
95 et.set_network_quoted(id, "private_key", 'client.key')
96 et.set_network_quoted(id, "private_key_passwd", 'whatever')
97
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080098 et.set_network(id, "disabled", "0")
99
100 fail = False
101 for i in range(count):
102 et.request("REASSOCIATE")
103 ev = et.wait_event(["CTRL-EVENT-CONNECTED", "CTRL-EVENT-EAP-FAILURE"])
104 if ev is None or "CTRL-EVENT-CONNECTED" not in ev:
105 fail = True
106 break
107
108 et.remove_network(id)
109
110 if fail:
111 res.put("FAIL (%d OK)" % i)
112 else:
113 res.put("PASS %d" % (i + 1))
114
115def main():
116 parser = argparse.ArgumentParser(description='eapol_test controller')
117 parser.add_argument('--ctrl', help='control interface directory')
118 parser.add_argument('--num', help='number of processes')
119 parser.add_argument('--iter', help='number of iterations')
120 parser.add_argument('--no-fast-reauth', action='store_true',
121 dest='no_fast_reauth',
122 help='disable TLS session resumption')
Hai Shaloma20dcd72022-02-04 13:43:00 -0800123 parser.add_argument('--conf', help='file of network conf items')
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800124 args = parser.parse_args()
125
126 num = int(args.num)
127 iter = int(args.iter)
128 if args.ctrl:
129 global wpas_ctrl
130 wpas_ctrl = args.ctrl
131
Hai Shaloma20dcd72022-02-04 13:43:00 -0800132 conf = {}
133 if args.conf:
134 f = open(args.conf, "r")
135 for line in f:
136 confitem = line.split("=")
137 if len(confitem) == 2:
138 conf[confitem[0].strip()] = confitem[1].strip()
139 f.close()
140
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800141 t = {}
142 res = {}
143 for i in range(num):
144 res[i] = Queue.Queue()
145 t[i] = threading.Thread(target=run, args=(str(i), iter,
Hai Shaloma20dcd72022-02-04 13:43:00 -0800146 args.no_fast_reauth, res[i],
147 conf))
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800148 for i in range(num):
149 t[i].start()
150 for i in range(num):
151 t[i].join()
152 try:
153 results = res[i].get(False)
154 except:
155 results = "N/A"
Hai Shalom74f70d42019-02-11 14:42:39 -0800156 print("%d: %s" % (i, results))
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800157
158if __name__ == "__main__":
159 main()