Provides the client-side API for the deputy daemon.
Signal the deputy to release a auth DHCP lease.
Signal the deputy to perform a cleanup.
Deputy daemon that provides a service via DBus for performing privileged operations.
Some operations, such as generating configuration files, sending signals to other processes etc. need certain privileges. The Deputy service runs as root and provides a very simple service over DBus.
Bases: object
Deputy DBus service
This class implements a DBus service that exposes some privileged operations
for use by the hades.agent
or the periodic systemd timer services.
For security reasons, the service doesn't accept data from the DBus clients and always queries the database itself, so that this service can't be misused.
Refresh the materialized views.
If necessary depended config files are regenerated and the corresponding services are reloaded.
The forced refresh is a little more aggressive in what it consolidates to achieve eventual consistency:
The host reservation file is regenerated regardless of whether the content
of the auth_dhcp_host
table has changed.
The radius config is regenerated regardless of whether the content
of the nas
table has changed.
The alternative DNS ipset is regenerated regardless of whether the content
of the alternative_dns
table has changed.
Instead of invalidating leases which were modified in the auth_dhcp_hosts reservation table, we invalidate every lease in auth_dhcp_leases which does not belong to a host reservation.
force -- Whether to use the forced refresh.
DBus object introspection specification
Generate the dnsmasq hosts file for authenticated users.
This file is passed toh the dnsmasq via the --dhcp-hostsfile
option.
The lines are generated by generate_dhcp_host_reservations()
.
Generate lines suitable for dnsmasq's --dhcp-hostsfile=
option.
hosts -- The MAC address-IP address pairs of the hosts
Generate an ipset
script, that replaces an existing hash:ip
ipset
with new contents.
ipset_name -- The ipset to replace
tmp_ipset_name -- Name of the temporary ipset
ips -- The new contents of the ipset
Generate the FreeRADIUS configuration for a given list of NAS clients in
the clients.conf
format.
clients -- An iterable of (Shortname, NAS-Name, NAS-Type, Port, Secret, Server, Community, Description)-tuples. Currently only shortname NAS-Name, NAS-Type and the Secret elements are used.
configuration snippets for the given NAS clients
Generate a FreeRADIUS clients.conf
file.
clients -- See generate_radius_clients()
for a description
Instruct systemd to reload a given unit.
bus -- A DBus Bus
unit -- The name of the systemd unit
timeout -- Timeout in milliseconds
Atomically replace a file with the given content.
The directory of the file must exist and must be writeable. The content may
either be a str or bytes object or an Iterable of such objects, in which
case the content will be written via io.IO.writelines()
.
Instruct systemd to restart a given unit.
bus -- A DBus Bus
unit -- The name of the systemd unit
timeout -- Timeout in milliseconds
Run the DBus HadesDeputyService
on the GLib event loop.
Bases: BigEndianStructure
Structure/Union member
Structure/Union member
Bases: BigEndianStructure
RFC 2131 DHCP packet structure
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Structure/Union member
Bases: Structure
Structure/Union member
Structure/Union member
Structure/Union member
Create a valid DHCPRELEASE packet for a given client IP address, client MAC address and server IP address.
Optionally a client identifier can be specified too. The DHCP packet will
contain the message option with the contents
b"Lease revoked administratively"
.
server_ip -- IP address of the DHCP server
client_ip -- IP address of the DHCP client
client_mac -- Ethernet MAC address of the DHCP client
client_id -- Client identifier of the DHCP client (optional)
A DHCP packet
Send a DHCPRELEASE packet to the given server_ip for lease of given client_ip and client_mac.
An optional client identifier may also be specified.
server_ip -- IP address of the DHCP server
client_ip -- IP address of the DHCP client
client_mac -- MAC address of the DHCP client
client_id -- Client identifier (optional)
from_interface -- Interface to send the packet from (optional)
from_ip -- IP address to send the packet from (optional)
ns -- the netns you want to enter before sending the packet
Send a given DHCP packet as a DHCP client (port 68) to a DHCP server (port 67).
If no interface or IP address to send the packet from is specified, the operating system will choose one.
server_ip -- IP address of server.
packet -- DHCP packet
from_interface -- Interface to send the packet from (optional)
from_ip -- IP address to send the packet from (optional)