|
| 1 | +# linux-utils: Linux system administration tools for Python. |
| 2 | +# |
| 3 | +# Author: Peter Odding <[email protected]> |
| 4 | +# Last Change: February 9, 2020 |
| 5 | +# URL: https://linux-utils.readthedocs.io |
| 6 | + |
| 7 | +""" |
| 8 | +Python API for Linux networking tools. |
| 9 | +
|
| 10 | +The functions in this module make it possible to inspect the current network |
| 11 | +configuration of a Linux system, which can provide hints about the physical |
| 12 | +location of the system. |
| 13 | +""" |
| 14 | + |
| 15 | +# Standard library modules. |
| 16 | +import logging |
| 17 | + |
| 18 | +# Modules included in our package. |
| 19 | +from linux_utils import coerce_context |
| 20 | + |
| 21 | +# Public identifiers that require documentation. |
| 22 | +__all__ = ( |
| 23 | + 'determine_network_location', |
| 24 | + 'find_gateway_ip', |
| 25 | + 'find_gateway_mac', |
| 26 | + 'find_mac_address', |
| 27 | + 'have_internet_connection', |
| 28 | + 'logger', |
| 29 | +) |
| 30 | + |
| 31 | +# Initialize a logger for this module. |
| 32 | +logger = logging.getLogger(__name__) |
| 33 | + |
| 34 | + |
| 35 | +def determine_network_location(context=None, **gateways): |
| 36 | + """ |
| 37 | + Determine the physical location of the current system. |
| 38 | +
|
| 39 | + This works by matching the MAC address of the current gateway against a set |
| 40 | + of known MAC addresses, which provides a simple but robust way to identify |
| 41 | + the current network. Because networks tend to have a physical location, |
| 42 | + identifying the current network tells us our physical location. |
| 43 | +
|
| 44 | + :param gateways: One or more keyword arguments with lists of strings |
| 45 | + containing MAC addresses of known networks. |
| 46 | + :param context: See :func:`.coerce_context()` for details. |
| 47 | + :returns: The name of the matched MAC address (a string) or :data:`None` |
| 48 | + when the MAC address of the current gateway is unknown. |
| 49 | +
|
| 50 | + Here's an example involving two networks and a physical location with |
| 51 | + multiple gateways: |
| 52 | +
|
| 53 | + .. code-block:: python |
| 54 | +
|
| 55 | + >>> determine_network_location( |
| 56 | + ... home=['84:9C:A6:76:23:8E'], |
| 57 | + ... office=['00:15:C5:5F:92:79', 'B6:25:B2:19:28:61'], |
| 58 | + ... ) |
| 59 | + 'home' |
| 60 | +
|
| 61 | + This is used to tweak my desktop environment based on the physical location |
| 62 | + of my laptop, for example at home my external monitor is to the right of my |
| 63 | + laptop whereas at work it's the other way around, so the :man:`xrandr` |
| 64 | + commands to be run differ between the two locations. |
| 65 | + """ |
| 66 | + context = coerce_context(context) |
| 67 | + current_gateway_mac = find_gateway_mac(context) |
| 68 | + if current_gateway_mac: |
| 69 | + for network_name, known_gateways in gateways.items(): |
| 70 | + if any(current_gateway_mac.upper() == gateway.upper() for gateway in known_gateways): |
| 71 | + logger.info("%s is connected to the %s network.", context, network_name) |
| 72 | + return network_name |
| 73 | + logger.info( |
| 74 | + "%s isn't connected to a known network (unknown gateway MAC address %s).", context, current_gateway_mac |
| 75 | + ) |
| 76 | + else: |
| 77 | + logger.info("Failed to determine gateway of %s, assuming network connection is down.", context) |
| 78 | + |
| 79 | + |
| 80 | +def find_gateway_ip(context=None): |
| 81 | + """ |
| 82 | + Find the IP address of the current gateway using the ``ip route show`` command. |
| 83 | +
|
| 84 | + :param context: See :func:`.coerce_context()` for details. |
| 85 | + :returns: The IP address of the gateway (a string) or :data:`None`. |
| 86 | + """ |
| 87 | + context = coerce_context(context) |
| 88 | + logger.debug("Looking for IP address of current gateway ..") |
| 89 | + for line in context.capture("ip", "route", "show").splitlines(): |
| 90 | + tokens = line.split() |
| 91 | + logger.debug("Parsing 'ip route show' output: %s", tokens) |
| 92 | + if len(tokens) >= 3 and tokens[:2] == ["default", "via"]: |
| 93 | + ip_address = tokens[2] |
| 94 | + logger.debug("Found gateway IP address: %s", ip_address) |
| 95 | + return ip_address |
| 96 | + logger.debug("Couldn't find IP address of gateway in 'ip route show' output!") |
| 97 | + |
| 98 | + |
| 99 | +def find_gateway_mac(context=None): |
| 100 | + """ |
| 101 | + Find the MAC address of the current gateway using :func:`find_gateway_ip()` and :func:`find_mac_address()`. |
| 102 | +
|
| 103 | + :param context: See :func:`.coerce_context()` for details. |
| 104 | + :returns: The MAC address of the gateway (a string) or :data:`None`. |
| 105 | + """ |
| 106 | + context = coerce_context(context) |
| 107 | + ip_address = find_gateway_ip(context) |
| 108 | + if ip_address: |
| 109 | + mac_address = find_mac_address(ip_address, context) |
| 110 | + if mac_address: |
| 111 | + logger.debug("Found gateway MAC address: %s", mac_address) |
| 112 | + return mac_address |
| 113 | + logger.debug("Couldn't find MAC address of gateway in 'arp -n' output!") |
| 114 | + |
| 115 | + |
| 116 | +def find_mac_address(ip_address, context=None): |
| 117 | + """ |
| 118 | + Determine the MAC address of an IP address using the ``arp -n`` command. |
| 119 | +
|
| 120 | + :param ip_address: The IP address we're interested in (a string). |
| 121 | + :param context: See :func:`.coerce_context()` for details. |
| 122 | + :returns: The MAC address of the IP address (a string) or :data:`None`. |
| 123 | + """ |
| 124 | + context = coerce_context(context) |
| 125 | + logger.debug("Looking for MAC address of %s ..", ip_address) |
| 126 | + for line in context.capture("arp", "-n").splitlines(): |
| 127 | + tokens = line.split() |
| 128 | + logger.debug("Parsing 'arp -n' output: %s", tokens) |
| 129 | + if len(tokens) >= 3 and tokens[0] == ip_address: |
| 130 | + mac_address = tokens[2] |
| 131 | + logger.debug("Found MAC address of %s: %s", ip_address, mac_address) |
| 132 | + return mac_address |
| 133 | + logger.debug("Couldn't find MAC address in 'arp -n' output!") |
| 134 | + |
| 135 | + |
| 136 | +def have_internet_connection(endpoint="8.8.8.8", context=None): |
| 137 | + """ |
| 138 | + Check if an internet connection is available using :man:`ping`. |
| 139 | +
|
| 140 | + :param endpoint: The public IP address to :man:`ping` (a string). |
| 141 | + :param context: See :func:`.coerce_context()` for details. |
| 142 | + :returns: :data:`True` if an internet connection is available, |
| 143 | + :data:`False` otherwise. |
| 144 | +
|
| 145 | + This works by pinging 8.8.8.8 which is one of `Google public DNS servers`_. |
| 146 | + This IP address was chosen because it is documented that Google uses |
| 147 | + anycast_ to keep this IP address available at all times. |
| 148 | +
|
| 149 | + .. _Google public DNS servers: https://developers.google.com/speed/public-dns/ |
| 150 | + .. _anycast: https://en.wikipedia.org/wiki/Anycast |
| 151 | + """ |
| 152 | + context = coerce_context(context) |
| 153 | + logger.debug("Checking if %s has internet connectivity ..", context) |
| 154 | + if context.test("ping", "-c1", "-w1", "8.8.8.8"): |
| 155 | + logger.debug("Confirmed that %s has internet connectivity.", context) |
| 156 | + return True |
| 157 | + else: |
| 158 | + logger.debug("No internet connectivity detected on %s.", context) |
| 159 | + return False |
0 commit comments