2021-09-06 21:54:24 +05:30
|
|
|
# This file is part of naxalnet.
|
2021-07-12 20:20:50 +05:30
|
|
|
# Copyright (C) 2021 The naxalnet Authors
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-08-14 22:00:07 +05:30
|
|
|
"""
|
|
|
|
iwd.py
|
|
|
|
------
|
|
|
|
|
|
|
|
This file contains methods to communicate with iwd via
|
|
|
|
its D-Bus API and control WiFi adapters.
|
|
|
|
|
|
|
|
Some terms used here, such as device and adapter might
|
|
|
|
confuse you if you haven't used iwctl before.
|
|
|
|
Just as a quick reference, here is a list of terms
|
|
|
|
and what they mean:
|
|
|
|
|
|
|
|
- ad-hoc: a mode supported by some WiFi adapters to
|
|
|
|
start a decentralised network, where there
|
|
|
|
is no central point of failure.
|
|
|
|
|
|
|
|
- ap: a mode used to start a central access point
|
|
|
|
so that other machines without naxalnet can
|
|
|
|
connect to the mesh. AP is also known as
|
|
|
|
WiFi hotspot.
|
|
|
|
|
|
|
|
- station: this is the mode most WiFi adapters use
|
|
|
|
by default. This mode is used to connect to
|
|
|
|
an ap. naxalnet DOES NOT use this mode.
|
|
|
|
|
|
|
|
- adapter: a physical WiFi chip or something similar
|
|
|
|
that is present inside most laptops and phones
|
|
|
|
or can be connected via USB to a machine.
|
|
|
|
|
|
|
|
- device: an interface provided by the kernel to control
|
|
|
|
an adapter. Some adapters can have multiple
|
|
|
|
devices so that you can start an ap on one device
|
|
|
|
and an ad-hoc on the other. By default, iwd starts
|
|
|
|
only one device each for one adapter.
|
|
|
|
|
|
|
|
- machine: Since iwd uses the term device for a
|
|
|
|
WiFi interface, we use the word machine to
|
|
|
|
refer to a computer, or a laptop, or a phone.
|
|
|
|
|
|
|
|
- node: a machine that runs naxalnet and is therefore
|
|
|
|
connected to the mesh.
|
|
|
|
"""
|
2021-09-06 14:57:54 +05:30
|
|
|
|
2021-09-07 18:45:11 +05:30
|
|
|
from dasbus.connection import SystemMessageBus
|
|
|
|
from naxalnet.log import logger
|
2021-06-30 21:50:39 +05:30
|
|
|
|
|
|
|
IWD_BUS = "net.connman.iwd"
|
|
|
|
IWD_ROOT_PATH = "/"
|
2021-07-01 12:18:44 +05:30
|
|
|
IWD_DEVICE_INTERFACE = "net.connman.iwd.Device"
|
|
|
|
IWD_ADAPTER_INTERFACE = "net.connman.iwd.Adapter"
|
2021-06-30 21:50:39 +05:30
|
|
|
|
|
|
|
# If you are new to D-Bus, you might want to use a program
|
|
|
|
# such as D-Feet (https://wiki.gnome.org/Apps/DFeet) for reference.
|
2021-08-14 22:00:07 +05:30
|
|
|
# And try out iwctl to understand iwd's bus objects.
|
2021-06-30 21:50:39 +05:30
|
|
|
|
2021-06-27 14:25:36 +05:30
|
|
|
|
|
|
|
class IWD:
|
|
|
|
"""Manage iwd via dbus"""
|
|
|
|
|
2021-06-30 21:50:39 +05:30
|
|
|
def __init__(self, bus=SystemMessageBus()):
|
2021-07-07 14:08:05 +05:30
|
|
|
# self._bus and self._proxy are meant for use only in this file
|
2021-06-30 21:50:39 +05:30
|
|
|
self._bus = bus
|
2021-07-07 14:08:05 +05:30
|
|
|
self.reload()
|
|
|
|
|
|
|
|
def reload(self):
|
|
|
|
"""reload the proxy"""
|
2021-06-30 21:50:39 +05:30
|
|
|
self._proxy = self._bus.get_proxy(IWD_BUS, IWD_ROOT_PATH)
|
|
|
|
|
|
|
|
def get_name_from_path(self, path: str) -> str:
|
2021-07-12 20:17:33 +05:30
|
|
|
"""
|
|
|
|
returns device or adapter name when d-bus path is given as arg
|
|
|
|
"""
|
2021-07-01 12:18:44 +05:30
|
|
|
proxy = self._bus.get_proxy(IWD_BUS, path)
|
|
|
|
return proxy.Name
|
2021-06-30 21:50:39 +05:30
|
|
|
|
|
|
|
def get_device_path_from_name(self, name: str) -> str:
|
|
|
|
"""returns path of device as str"""
|
2021-07-01 12:18:44 +05:30
|
|
|
device_paths = self.get_all_device_paths()
|
|
|
|
for i in device_paths:
|
|
|
|
proxy = self._bus.get_proxy(IWD_BUS, i)
|
|
|
|
if proxy.Name == name:
|
|
|
|
return i
|
2021-07-12 20:17:33 +05:30
|
|
|
# If no devices were found, return None
|
2021-07-01 12:18:44 +05:30
|
|
|
return None
|
2021-06-30 21:50:39 +05:30
|
|
|
|
|
|
|
def get_adapter_path_from_name(self, name: str) -> str:
|
|
|
|
"""returns path of adapter as str"""
|
2021-07-01 12:18:44 +05:30
|
|
|
adapter_paths = self.get_all_adapter_paths()
|
|
|
|
for i in adapter_paths:
|
|
|
|
proxy = self._bus.get_proxy(IWD_BUS, i)
|
|
|
|
if proxy.Name == name:
|
|
|
|
return i
|
2021-07-12 20:17:33 +05:30
|
|
|
# If no adapters were found
|
2021-07-01 12:18:44 +05:30
|
|
|
return None
|
2021-06-27 14:25:36 +05:30
|
|
|
|
2021-06-30 21:50:39 +05:30
|
|
|
def get_all_device_paths(self) -> list:
|
|
|
|
"""returns list of paths of all devices"""
|
2021-07-01 12:18:44 +05:30
|
|
|
objects = self._proxy.GetManagedObjects()
|
|
|
|
paths = []
|
|
|
|
for key, value in objects.items():
|
|
|
|
# if value is a device, add its path to paths
|
|
|
|
if IWD_DEVICE_INTERFACE in value:
|
|
|
|
paths.append(key)
|
|
|
|
return paths
|
2021-06-30 21:50:39 +05:30
|
|
|
|
|
|
|
def get_all_adapter_paths(self) -> list:
|
|
|
|
"""returns list of paths of all adapters"""
|
2021-07-01 12:18:44 +05:30
|
|
|
objects = self._proxy.GetManagedObjects()
|
|
|
|
paths = []
|
|
|
|
|
|
|
|
for key, value in objects.items():
|
|
|
|
# if value is an adapter, add its path to paths
|
|
|
|
if IWD_ADAPTER_INTERFACE in value:
|
|
|
|
paths.append(key)
|
|
|
|
return paths
|
2021-06-30 21:50:39 +05:30
|
|
|
|
|
|
|
def get_devices(self) -> list:
|
2021-06-27 14:25:36 +05:30
|
|
|
"""
|
|
|
|
returns list of device names as str
|
|
|
|
example: ["wlan0", "wlan1"]
|
|
|
|
"""
|
2021-07-01 12:18:44 +05:30
|
|
|
devices = []
|
|
|
|
device_paths = self.get_all_device_paths()
|
|
|
|
|
|
|
|
for i in device_paths:
|
|
|
|
name = self.get_name_from_path(i)
|
|
|
|
devices.append(name)
|
|
|
|
return devices
|
2021-06-27 14:25:36 +05:30
|
|
|
|
2021-06-30 21:50:39 +05:30
|
|
|
def get_adapters(self) -> list:
|
2021-06-27 14:25:36 +05:30
|
|
|
"""
|
|
|
|
returns list of adapters
|
|
|
|
example: ["phy0","phy1"]
|
|
|
|
"""
|
2021-07-01 12:18:44 +05:30
|
|
|
adapters = []
|
|
|
|
adapter_paths = self.get_all_adapter_paths()
|
|
|
|
|
|
|
|
for i in adapter_paths:
|
|
|
|
name = self.get_name_from_path(i)
|
|
|
|
adapters.append(name)
|
|
|
|
return adapters
|
2021-06-27 14:25:36 +05:30
|
|
|
|
|
|
|
|
|
|
|
class Device:
|
2021-07-07 14:08:05 +05:30
|
|
|
"""
|
|
|
|
control devices with iwd
|
2021-07-12 20:17:33 +05:30
|
|
|
name: name of device (str)
|
2021-07-07 14:08:05 +05:30
|
|
|
adapter: name of adapter (str)
|
|
|
|
"""
|
2021-06-27 14:25:36 +05:30
|
|
|
|
2021-08-25 15:52:46 +05:30
|
|
|
def __init__(self, name: str):
|
|
|
|
self._iwd = IWD()
|
2021-06-30 21:50:39 +05:30
|
|
|
self._bus = self._iwd._bus
|
2021-07-01 12:18:44 +05:30
|
|
|
self._path = self._iwd.get_device_path_from_name(name)
|
2021-07-07 14:08:05 +05:30
|
|
|
self.reload()
|
2021-06-30 21:50:39 +05:30
|
|
|
|
2021-07-18 14:07:16 +05:30
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2021-07-12 20:17:33 +05:30
|
|
|
def is_powered_on(self) -> bool:
|
|
|
|
"""returns True if devie is powered on"""
|
|
|
|
return self._proxy.Powered
|
|
|
|
|
|
|
|
def power_on(self):
|
|
|
|
"""Turn on the device and reload the proxy"""
|
|
|
|
self._proxy.Powered = True
|
2021-08-25 15:52:46 +05:30
|
|
|
logger.debug("Powered on %s", self.name)
|
2021-07-12 20:17:33 +05:30
|
|
|
self.reload()
|
|
|
|
|
|
|
|
def power_off(self):
|
|
|
|
"""Turn off the device and reload the proxy"""
|
|
|
|
self._proxy.Powered = False
|
2021-08-25 15:52:46 +05:30
|
|
|
logger.debug("Powered off %s", self.name)
|
2021-07-12 20:17:33 +05:30
|
|
|
self.reload()
|
|
|
|
|
2021-07-07 14:08:05 +05:30
|
|
|
def reload(self):
|
|
|
|
"""reload the proxy after changing mode"""
|
|
|
|
self._proxy = self._bus.get_proxy(IWD_BUS, self._path)
|
2021-07-19 14:11:43 +05:30
|
|
|
self.name = self._proxy.Name
|
|
|
|
adapter_path = self._proxy.Adapter
|
|
|
|
# name of adapter ('phy0' for example)
|
|
|
|
self.adapter = self._iwd.get_name_from_path(adapter_path)
|
2021-07-07 14:08:05 +05:30
|
|
|
|
2021-08-14 22:00:07 +05:30
|
|
|
def is_adhoc_started(self) -> bool:
|
2021-07-12 20:17:33 +05:30
|
|
|
"""
|
|
|
|
Returns True if an adhoc network is started on this device.
|
2021-08-14 22:00:07 +05:30
|
|
|
Returns False if the network is in staring stage, device
|
|
|
|
is not powered on or not in ad-hoc mode.
|
2021-07-12 20:17:33 +05:30
|
|
|
"""
|
|
|
|
if self.is_powered_on() and self.get_mode() == "ad-hoc":
|
|
|
|
return self._proxy.Started
|
2021-08-14 22:00:07 +05:30
|
|
|
# If above condition is not true, return False
|
|
|
|
return False
|
2021-07-12 20:17:33 +05:30
|
|
|
|
2021-08-14 22:00:07 +05:30
|
|
|
def is_ap_started(self) -> bool:
|
2021-07-12 20:17:33 +05:30
|
|
|
"""
|
|
|
|
Same as is_adhoc_started(), but for ap
|
|
|
|
"""
|
2021-07-17 13:34:06 +05:30
|
|
|
if self.is_powered_on() and self.get_mode() == "ap":
|
2021-07-12 20:17:33 +05:30
|
|
|
return self._proxy.Started
|
2021-08-14 22:00:07 +05:30
|
|
|
return False
|
2021-07-12 20:17:33 +05:30
|
|
|
|
2021-06-30 21:50:39 +05:30
|
|
|
def get_mode(self) -> str:
|
|
|
|
"""
|
|
|
|
returns the mode in which the device is in
|
|
|
|
example: "ap"
|
|
|
|
"""
|
|
|
|
return self._proxy.Mode
|
2021-07-07 14:08:05 +05:30
|
|
|
|
|
|
|
def set_mode(self, mode: str):
|
|
|
|
"""change the device mode to mode"""
|
|
|
|
self._proxy.Mode = mode
|
2021-08-25 15:52:46 +05:30
|
|
|
logger.debug("Set mode on %s to %s", self.name, mode)
|
2021-07-07 14:08:05 +05:30
|
|
|
self.reload()
|
|
|
|
|
2021-07-12 20:17:33 +05:30
|
|
|
def start_adhoc_open(self, name: str):
|
|
|
|
"""
|
|
|
|
Create ad-hoc network with name, changing mode to ad-hoc
|
2021-07-21 14:36:23 +05:30
|
|
|
if it isn't already on ad-hoc and power onn the device
|
|
|
|
if it is off
|
2021-07-12 20:17:33 +05:30
|
|
|
"""
|
2021-09-07 18:45:11 +05:30
|
|
|
print("Starting adhoc", name)
|
2021-07-07 14:08:05 +05:30
|
|
|
if self.get_mode() != "ad-hoc":
|
|
|
|
self.set_mode("ad-hoc")
|
2021-07-12 20:17:33 +05:30
|
|
|
|
|
|
|
if not self.is_powered_on():
|
|
|
|
self.power_on()
|
|
|
|
|
2021-07-21 14:36:23 +05:30
|
|
|
# Stop adhoc if already started
|
|
|
|
self.stop_adhoc()
|
2021-07-19 14:11:43 +05:30
|
|
|
|
2021-08-25 15:52:46 +05:30
|
|
|
logger.debug("Starting ad-hoc on %s", self.name)
|
2021-07-12 20:17:33 +05:30
|
|
|
self._proxy.StartOpen(name)
|
2021-07-18 14:07:16 +05:30
|
|
|
|
2021-07-19 14:11:43 +05:30
|
|
|
def stop_adhoc(self):
|
|
|
|
"""stop adhoc if adhoc is started"""
|
|
|
|
if self.is_adhoc_started():
|
2021-08-25 15:52:46 +05:30
|
|
|
logger.debug("Stopping ad-hoc on %s", self.name)
|
2021-07-19 14:11:43 +05:30
|
|
|
self._proxy.Stop()
|
|
|
|
self.reload()
|
|
|
|
|
2021-07-21 14:36:23 +05:30
|
|
|
def start_ap(self, ssid, passwd):
|
|
|
|
"""
|
|
|
|
Create ap network, changing mode to ap
|
|
|
|
if it isn't already on ap and turning
|
|
|
|
on the device if it is off
|
|
|
|
"""
|
|
|
|
if self.get_mode() != "ap":
|
|
|
|
self.set_mode("ap")
|
|
|
|
|
|
|
|
if not self.is_powered_on():
|
|
|
|
self.power_on()
|
|
|
|
|
|
|
|
# Stop ap if already started
|
|
|
|
self.stop_ap()
|
|
|
|
|
2021-09-07 18:45:11 +05:30
|
|
|
logger.debug("Starting ap on %s with ssid %s", self.name, ssid)
|
2021-07-21 14:36:23 +05:30
|
|
|
self._proxy.Start(ssid, passwd)
|
|
|
|
|
|
|
|
def stop_ap(self):
|
|
|
|
"""stop ap if an ap is started"""
|
|
|
|
if self.is_ap_started():
|
2021-09-04 14:24:53 +05:30
|
|
|
logger.debug("Stopping ap on %s", self.name)
|
2021-07-21 14:36:23 +05:30
|
|
|
self._proxy.Stop()
|
|
|
|
self.reload()
|
|
|
|
|
2021-07-18 14:07:16 +05:30
|
|
|
|
2021-07-18 14:24:27 +05:30
|
|
|
class Adapter:
|
|
|
|
"""represents an adapter as a python object"""
|
|
|
|
|
2021-08-25 15:52:46 +05:30
|
|
|
def __init__(self, name: str):
|
|
|
|
self._iwd = IWD()
|
2021-07-18 14:24:27 +05:30
|
|
|
self._bus = self._iwd._bus
|
|
|
|
self._path = self._iwd.get_adapter_path_from_name(name)
|
|
|
|
# Initialise self._proxy
|
|
|
|
self.reload()
|
|
|
|
|
2021-07-19 14:11:43 +05:30
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2021-07-18 14:24:27 +05:30
|
|
|
def reload(self):
|
|
|
|
"""reload the proxy after changing mode"""
|
|
|
|
self._proxy = self._bus.get_proxy(IWD_BUS, self._path)
|
2021-07-19 14:11:43 +05:30
|
|
|
self.name = self._proxy.Name
|
|
|
|
self.supported_modes = self._proxy.SupportedModes
|
|
|
|
|
|
|
|
def is_powered_on(self) -> bool:
|
|
|
|
"""returns True if adapter is powered on, False otherwise"""
|
|
|
|
return self._proxy.Powered
|
|
|
|
|
|
|
|
def power_on(self):
|
|
|
|
"""power on the adapter"""
|
|
|
|
self._proxy.Powered = True
|
2021-09-04 14:24:53 +05:30
|
|
|
logger.debug("Powered on adapter %s", self.name)
|
2021-09-06 12:23:07 +05:30
|
|
|
self.reload()
|
2021-07-19 14:11:43 +05:30
|
|
|
|
|
|
|
def power_off(self):
|
|
|
|
"""power off the adapter"""
|
|
|
|
self._proxy.Powered = False
|
2021-09-04 14:24:53 +05:30
|
|
|
logger.debug("Powered off adapter %s", self.name)
|
2021-09-06 12:23:07 +05:30
|
|
|
self.reload()
|
2021-07-19 14:11:43 +05:30
|
|
|
|
|
|
|
def supports_mode(self, mode: str) -> bool:
|
|
|
|
"""
|
2021-07-21 14:36:23 +05:30
|
|
|
Returns True if the adapter supports the mode.
|
2021-07-19 14:11:43 +05:30
|
|
|
mode can be "ad-hoc", "ap" or "station"
|
|
|
|
"""
|
|
|
|
return mode in self.supported_modes
|