mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-07-22 11:59:33 +00:00
Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
99 lines
2.9 KiB
Python
Executable File
99 lines
2.9 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# This file is part of FreedomBox.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
"""
|
|
Configuration helper for WireGuard.
|
|
"""
|
|
|
|
import argparse
|
|
import json
|
|
import subprocess
|
|
|
|
SERVER_INTERFACE = 'wg0'
|
|
|
|
|
|
def parse_arguments():
|
|
"""Return parsed command line arguments as dictionary."""
|
|
parser = argparse.ArgumentParser()
|
|
subparsers = parser.add_subparsers(dest='subcommand', help='Sub command')
|
|
|
|
subparsers.add_parser('setup', help='Setup WireGuard')
|
|
subparsers.add_parser('list-clients', help='List all clients')
|
|
|
|
add_client = subparsers.add_parser('add-client', help='Add a client')
|
|
add_client.add_argument('publickey', help='Public key for the client')
|
|
|
|
remove_client = subparsers.add_parser('remove-client',
|
|
help='Remove a client')
|
|
remove_client.add_argument('publickey', help='Public key for the client')
|
|
|
|
subparsers.required = True
|
|
return parser.parse_args()
|
|
|
|
|
|
def subcommand_setup(_):
|
|
"""Setup WireGuard."""
|
|
subprocess.run(
|
|
['ip', 'link', 'add', 'dev', SERVER_INTERFACE, 'type', 'wireguard'],
|
|
check=True)
|
|
|
|
|
|
def subcommand_list_clients(_):
|
|
"""List all clients."""
|
|
clients = []
|
|
output = subprocess.check_output(
|
|
['wg', 'show', SERVER_INTERFACE, 'latest-handshakes']).decode().strip()
|
|
for client_info in output.split('\n'):
|
|
try:
|
|
public_key, latest_handshake = client_info.split()
|
|
except ValueError:
|
|
continue
|
|
|
|
clients.append({
|
|
'public_key': public_key,
|
|
'latest_handshake': latest_handshake,
|
|
})
|
|
|
|
print(json.dumps(clients))
|
|
|
|
|
|
def subcommand_add_client(arguments):
|
|
"""Add a client."""
|
|
subprocess.run(
|
|
['wg', 'set', SERVER_INTERFACE, 'peer', arguments.publickey],
|
|
check=True)
|
|
|
|
|
|
def subcommand_remove_client(arguments):
|
|
"""Remove a client."""
|
|
subprocess.run(
|
|
['wg', 'set', SERVER_INTERFACE, 'peer', arguments.publickey, 'remove'],
|
|
check=True)
|
|
|
|
|
|
def main():
|
|
"""Parse arguments and perform all duties."""
|
|
arguments = parse_arguments()
|
|
|
|
subcommand = arguments.subcommand.replace('-', '_')
|
|
subcommand_method = globals()['subcommand_' + subcommand]
|
|
subcommand_method(arguments)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|