2013-03-19 00:53:09 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# wpa_supplicant/hostapd control interface using Python
|
|
|
|
# Copyright (c) 2013, Jouni Malinen <j@w1.fi>
|
|
|
|
#
|
|
|
|
# This software may be distributed under the terms of the BSD license.
|
|
|
|
# See README for more details.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import socket
|
|
|
|
import select
|
|
|
|
|
|
|
|
counter = 0
|
|
|
|
|
|
|
|
class Ctrl:
|
|
|
|
def __init__(self, path):
|
|
|
|
global counter
|
|
|
|
self.started = False
|
|
|
|
self.attached = False
|
|
|
|
self.s = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
|
|
|
|
self.dest = path
|
|
|
|
self.local = "/tmp/wpa_ctrl_" + str(os.getpid()) + '-' + str(counter)
|
|
|
|
counter += 1
|
|
|
|
self.s.bind(self.local)
|
2013-12-31 14:43:17 +01:00
|
|
|
try:
|
|
|
|
self.s.connect(self.dest)
|
|
|
|
except Exception, e:
|
|
|
|
self.s.close()
|
|
|
|
os.unlink(self.local)
|
|
|
|
raise
|
2013-03-19 00:53:09 +01:00
|
|
|
self.started = True
|
|
|
|
|
|
|
|
def __del__(self):
|
|
|
|
self.close()
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
if self.attached:
|
2013-12-30 21:23:18 +01:00
|
|
|
try:
|
|
|
|
self.detach()
|
|
|
|
except Exception, e:
|
|
|
|
# Need to ignore this allow the socket to be closed
|
|
|
|
pass
|
2013-03-19 00:53:09 +01:00
|
|
|
if self.started:
|
|
|
|
self.s.close()
|
|
|
|
os.unlink(self.local)
|
|
|
|
self.started = False
|
|
|
|
|
2014-03-12 10:42:59 +01:00
|
|
|
def request(self, cmd, timeout=10):
|
2013-03-19 00:53:09 +01:00
|
|
|
self.s.send(cmd)
|
2014-03-12 10:42:59 +01:00
|
|
|
[r, w, e] = select.select([self.s], [], [], timeout)
|
2013-03-19 00:53:09 +01:00
|
|
|
if r:
|
|
|
|
return self.s.recv(4096)
|
|
|
|
raise Exception("Timeout on waiting response")
|
|
|
|
|
|
|
|
def attach(self):
|
|
|
|
if self.attached:
|
|
|
|
return None
|
|
|
|
res = self.request("ATTACH")
|
|
|
|
if "OK" in res:
|
2013-12-30 21:23:18 +01:00
|
|
|
self.attached = True
|
2013-03-19 00:53:09 +01:00
|
|
|
return None
|
|
|
|
raise Exception("ATTACH failed")
|
|
|
|
|
|
|
|
def detach(self):
|
|
|
|
if not self.attached:
|
|
|
|
return None
|
|
|
|
res = self.request("DETACH")
|
|
|
|
if "OK" in res:
|
2013-12-30 21:23:18 +01:00
|
|
|
self.attached = False
|
2013-03-19 00:53:09 +01:00
|
|
|
return None
|
|
|
|
raise Exception("DETACH failed")
|
|
|
|
|
2014-01-05 07:46:45 +01:00
|
|
|
def pending(self, timeout=0):
|
|
|
|
[r, w, e] = select.select([self.s], [], [], timeout)
|
2013-03-19 00:53:09 +01:00
|
|
|
if r:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def recv(self):
|
|
|
|
res = self.s.recv(4096)
|
|
|
|
return res
|