moulinette/yunohost_firewall.py

180 lines
3.8 KiB
Python
Raw Normal View History

2012-11-16 13:16:37 +01:00
# -*- coding: utf-8 -*-
import os
import sys
try:
import yaml
except ImportError:
sys.stderr.write('Error: Yunohost CLI Require yaml lib\n')
sys.stderr.write('apt-get install python-yaml\n')
sys.exit(1)
2012-12-18 00:28:03 +01:00
from yunohost import YunoHostError, win_msg
2012-11-16 13:16:37 +01:00
2012-12-12 17:15:12 +01:00
def firewall_allow(protocol=None,port=None,ipv6=None):
"""
Allow port in iptables
2012-12-18 00:40:13 +01:00
Keyword arguments:
protocol -- Protocol used
port -- Port to open
ipv6 -- Boolean ipv6
2012-12-18 00:40:13 +01:00
Return
Dict
2012-12-18 00:40:13 +01:00
"""
port=int(port)
if port<65536 and port>0:
2012-12-18 00:40:13 +01:00
if protocol == "Both":
update_yml(port,'tcp','a',ipv6)
update_yml(port,'udp','a',ipv6)
2012-12-18 00:40:13 +01:00
else:
update_yml(port,protocol,'a',ipv6)
win_msg(_("Port successfully openned"))
else:
raise YunoHostError(22,_("Port not between 1 and 65535 : ")+port)
2012-12-18 00:28:03 +01:00
2012-12-18 22:23:17 +01:00
return firewall_reload()
2012-12-12 17:15:12 +01:00
def firewall_disallow(protocol=None,port=None,ipv6=None):
"""
Disallow port in iptables
2012-12-18 00:40:13 +01:00
Keyword arguments:
protocol -- Protocol used
port -- Port to open
ipv6 -- Boolean ipv6
2012-12-18 00:40:13 +01:00
Return
Dict
2012-12-18 00:40:13 +01:00
"""
port=int(port)
2012-12-18 00:28:03 +01:00
if protocol == "Both":
update_yml(port,'tcp','r',ipv6)
2012-12-18 00:40:13 +01:00
update_yml(port,'udp','r',ipv6)
else:
2012-12-18 00:28:03 +01:00
update_yml(port,protocol,'r',ipv6)
2012-12-13 11:25:47 +01:00
win_msg(_("Port successfully closed"))
2012-12-18 00:40:13 +01:00
2012-12-18 22:23:17 +01:00
return firewall_reload()
2012-12-12 17:15:12 +01:00
def firewall_list():
"""
Allow port in iptables
2012-12-18 00:40:13 +01:00
Keyword arguments:
None
2012-12-18 00:40:13 +01:00
Return
Dict
2012-12-18 00:40:13 +01:00
"""
with open ('firewall.yml') as f:
2012-12-12 17:15:12 +01:00
firewall = yaml.load(f)
return firewall
2012-12-12 17:15:12 +01:00
def firewall_reload():
'''
Reload iptables configuration
2012-12-18 00:28:03 +01:00
Keyword arguments:
2012-12-18 00:40:13 +01:00
None
2012-12-18 00:28:03 +01:00
Return
Dict
2012-12-12 17:15:12 +01:00
'''
with open('firewall.yml','r') as f:
firewall = yaml.load(f)
2012-12-12 17:15:12 +01:00
os.system ("iptables -P INPUT ACCEPT")
os.system ("iptables -F")
os.system ("iptables -X")
if 22 not in firewall['ipv4']['TCP']:
update_yml(22,'TCP','a',False)
2012-12-12 17:53:08 +01:00
2012-12-12 17:15:12 +01:00
os.system ("ip6tables -P INPUT ACCEPT")
os.system ("ip6tables -F")
os.system ("ip6tables -X")
if 22 not in firewall['ipv6']['TCP']:
update_yml(22,'TCP','a',True)
2012-12-12 17:15:12 +01:00
for i,port in enumerate (firewall['ipv4']['TCP']):
2012-12-12 11:50:07 +01:00
os.system ("iptables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
2012-12-18 00:40:13 +01:00
2012-12-12 17:15:12 +01:00
for i,port in enumerate (firewall['ipv4']['UDP']):
2012-12-12 11:50:07 +01:00
os.system ("iptables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
2012-12-18 00:40:13 +01:00
2012-12-12 17:15:12 +01:00
for i,port in enumerate (firewall['ipv6']['TCP']):
os.system ("ip6tables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
2012-12-18 00:40:13 +01:00
2012-12-12 17:15:12 +01:00
for i,port in enumerate (firewall['ipv6']['UDP']):
os.system ("ip6tables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
2012-12-18 00:40:13 +01:00
2012-12-12 17:15:12 +01:00
os.system ("iptables -P INPUT DROP")
os.system ("ip6tables -P INPUT DROP")
2012-12-18 00:40:13 +01:00
2012-12-13 11:25:47 +01:00
win_msg(_("Firewall successfully reloaded"))
2012-12-18 22:23:17 +01:00
return firewall_list()
2012-12-12 17:15:12 +01:00
2012-12-18 00:28:03 +01:00
def update_yml(port=None,protocol=None,mode=None,ipv6=None):
2012-12-18 00:40:13 +01:00
"""
Update firewall.yml
Keyword arguments:
protocol -- Protocol used
2012-12-18 00:40:13 +01:00
port -- Port to open
mode -- a=append r=remove
2012-12-18 00:40:13 +01:00
ipv6 -- Boolean ipv6
Return
None
"""
2012-12-18 00:28:03 +01:00
if ipv6:
ip = 'ipv6'
else:
ip = 'ipv4'
with open('firewall.yml','r') as f:
firewall = yaml.load(f)
2012-12-18 00:28:03 +01:00
if mode == 'a':
2012-12-18 00:28:03 +01:00
if port not in firewall[ip][protocol]:
firewall[ip][protocol].append(port)
else:
2012-12-19 09:19:24 +01:00
raise YunoHostError(22,_("Port already openned :")+port)
2012-12-18 00:28:03 +01:00
else:
2012-12-18 00:28:03 +01:00
if port in firewall[ip][protocol]:
firewall[ip][protocol].remove(port)
2012-12-12 17:27:26 +01:00
else:
2012-12-19 09:19:24 +01:00
raise YunoHostError(22,_("Port already closed :")+port)
2012-12-18 00:28:03 +01:00
firewall[ip][protocol].sort()
2012-12-12 17:15:12 +01:00
os.system("mv firewall.yml firewall.yml.old")
2012-12-18 22:23:17 +01:00
with open('firewall.yml','w') as f:
yaml.dump(firewall,f)