2016-12-14 23:18:16 +00:00
|
|
|
#!/usr/bin/env python
|
2017-02-22 13:41:58 +00:00
|
|
|
# Python helper tool to add IPtables rule using the iptc library. This must
|
|
|
|
# of course run as root for iptc to work.
|
2016-12-14 23:18:16 +00:00
|
|
|
|
2017-03-06 15:03:57 +00:00
|
|
|
from sys import exit
|
2017-03-03 00:04:12 +00:00
|
|
|
from argparse import ArgumentParser, FileType
|
2016-12-14 23:18:16 +00:00
|
|
|
from pprint import pprint as pp
|
2017-03-03 00:04:12 +00:00
|
|
|
from configparser import RawConfigParser
|
2017-09-29 15:56:16 +00:00
|
|
|
from datetime import datetime, timedelta
|
2016-12-14 23:18:16 +00:00
|
|
|
|
2017-03-06 15:03:57 +00:00
|
|
|
import errors
|
|
|
|
from storage import StoragePostgres
|
2017-03-03 00:04:12 +00:00
|
|
|
from client import Client
|
2016-12-14 23:18:16 +00:00
|
|
|
|
2017-09-29 15:44:40 +00:00
|
|
|
|
|
|
|
# Custom defined argparse types for dates
|
|
|
|
def valid_date_type(arg_date_str):
|
|
|
|
"""custom argparse *date* type for user dates values given from the command line"""
|
|
|
|
try:
|
|
|
|
return datetime.datetime.strptime(arg_date_str, "%Y-%m-%d")
|
|
|
|
except ValueError:
|
|
|
|
msg = "Given Date ({0}) not valid! Expected format, YYYY-MM-DD!".format(arg_date_str)
|
|
|
|
raise argparse.ArgumentTypeError(msg)
|
|
|
|
|
|
|
|
|
|
|
|
def valid_datetime_type(arg_datetime_str):
|
|
|
|
"""custom argparse type for user datetime values given from the command line"""
|
|
|
|
try:
|
|
|
|
return datetime.datetime.strptime(arg_datetime_str, "%Y-%m-%d %H:%M")
|
|
|
|
except ValueError:
|
|
|
|
msg = "Given Datetime ({0}) not valid! Expected format, 'YYYY-MM-DD HH:mm'!".format(arg_datetime_str)
|
|
|
|
raise argparse.ArgumentTypeError(msg)
|
|
|
|
|
|
|
|
|
2017-03-07 16:15:39 +00:00
|
|
|
parser = ArgumentParser((
|
|
|
|
'Handle clients in the captive portal. Default mode of operation is to'
|
|
|
|
' create new clients and enable them. Other mode is to --disable the '
|
|
|
|
'client. And last mode is to --delete the client completely.'
|
|
|
|
))
|
|
|
|
|
2017-09-29 15:44:40 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--expires',
|
|
|
|
type=valid_datetime_type,
|
|
|
|
default=datetime.now() + timedelta(days=1),
|
|
|
|
help='Expiry date in format "YYYY-MM-DD HH:mm"'
|
|
|
|
)
|
|
|
|
|
2017-03-07 16:15:39 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--disable',
|
|
|
|
default=False,
|
2017-03-07 16:21:52 +00:00
|
|
|
action='store_true',
|
2017-03-07 16:15:39 +00:00
|
|
|
help='Disable the client in the DB and delete from firewall'
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument(
|
|
|
|
'--delete',
|
|
|
|
default=False,
|
2017-03-07 16:21:52 +00:00
|
|
|
action='store_true',
|
2017-03-07 16:15:39 +00:00
|
|
|
help='Delete the client from DB and firewall'
|
|
|
|
)
|
2016-12-14 23:18:16 +00:00
|
|
|
|
2017-03-03 00:04:12 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--protocol',
|
|
|
|
required=True,
|
|
|
|
choices=['tcp', 'udp'],
|
|
|
|
help='Protocol for client'
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument(
|
|
|
|
'--config',
|
|
|
|
type=FileType('r'),
|
|
|
|
required=True,
|
|
|
|
help='Configuration file'
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument(
|
|
|
|
'src_ip',
|
|
|
|
help='Client source IP to add'
|
|
|
|
)
|
2016-12-14 23:18:16 +00:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2017-03-03 00:04:12 +00:00
|
|
|
config = RawConfigParser()
|
|
|
|
config.readfp(args.config)
|
|
|
|
|
2017-03-06 15:03:57 +00:00
|
|
|
sr = StoragePostgres(config=config)
|
|
|
|
try:
|
|
|
|
client = Client(
|
|
|
|
storage=sr,
|
|
|
|
ip_address=args.src_ip,
|
|
|
|
protocol=args.protocol,
|
|
|
|
chain=config.get('iptables', 'chain')
|
|
|
|
)
|
|
|
|
except errors.StorageNotFound:
|
2017-03-07 16:15:39 +00:00
|
|
|
print('Client not found')
|
2017-03-06 15:03:57 +00:00
|
|
|
exit(1)
|
|
|
|
|
2017-03-07 16:15:39 +00:00
|
|
|
if args.disable:
|
|
|
|
# For non-existing clients this actually creates them in disabled mode.
|
|
|
|
client.enabled = False
|
|
|
|
client.commit()
|
|
|
|
elif args.delete:
|
|
|
|
client.delete()
|
|
|
|
else:
|
|
|
|
client.enabled = True
|
|
|
|
client.commit()
|