moulinette/yunohost_firewall.py

350 lines
8.4 KiB
Python
Raw Normal View History

2012-11-16 13:16:37 +01:00
# -*- coding: utf-8 -*-
import os
import sys
2013-03-03 01:18:28 +01:00
try:
import miniupnpc
except ImportError:
sys.stderr.write('Error: Yunohost CLI Require miniupnpc lib\n')
sys.exit(1)
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
2013-03-09 13:01:54 +01:00
def firewall_allow(protocol=None, port=None, ipv6=None, upnp=False):
"""
Allow port in iptables
2012-12-18 00:40:13 +01:00
Keyword arguments:
protocol -- Protocol used
2013-03-09 13:01:54 +01:00
port -- Port to open
ipv6 -- Boolean ipv6
upnp -- Boolean upnp
Return
Dict
2012-12-18 00:40:13 +01:00
"""
2013-03-09 13:01:54 +01:00
port = int(port)
if (upnp):
2013-06-24 19:25:01 +02:00
add_portmapping(protocol, upnp, ipv6, 'a')
2013-03-09 13:01:54 +01:00
if 0 < port < 65536:
2012-12-18 00:40:13 +01:00
if protocol == "Both":
2013-03-09 13:01:54 +01:00
update_yml(port, 'TCP', 'a', ipv6)
update_yml(port, 'UDP', 'a', ipv6)
2012-12-18 00:40:13 +01:00
else:
2013-03-09 13:01:54 +01:00
update_yml(port, protocol, 'a', ipv6)
2012-12-18 00:40:13 +01:00
win_msg(_("Port successfully openned"))
else:
2013-06-24 19:25:01 +02:00
raise YunoHostError(22, _("Port not between 1 and 65535:") + str(port))
2012-12-18 00:28:03 +01:00
2013-02-11 14:13:36 +01:00
return firewall_reload(upnp)
2013-03-09 13:01:54 +01:00
def firewall_disallow(protocol=None, port=None, ipv6=None, upnp=False):
"""
Disallow port in iptables
2012-12-18 00:40:13 +01:00
Keyword arguments:
protocol -- Protocol used
2013-03-09 13:01:54 +01:00
port -- Port to open
ipv6 -- Boolean ipv6
upnp -- Boolan upnp
2012-12-18 00:40:13 +01:00
Return
Dict
2012-12-18 00:40:13 +01:00
"""
2013-03-09 13:01:54 +01:00
port = int(port)
if protocol == "Both":
update_yml(port, 'TCP', 'r', ipv6)
update_yml(port, 'UDP', 'r', ipv6)
else:
2013-03-09 13:01:54 +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
2013-02-11 14:13:36 +01:00
return firewall_reload(upnp)
2013-03-09 13:01:54 +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
"""
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml') as f:
2012-12-12 17:15:12 +01:00
firewall = yaml.load(f)
return firewall
2013-06-24 19:25:01 +02:00
def firewall_reload(upnp=False):
'''
Reload iptables configuration
2012-12-18 00:28:03 +01:00
Keyword arguments:
2013-03-09 13:01:54 +01:00
upnp -- Boolean upnp
2012-12-18 00:28:03 +01:00
Return
Dict
2012-12-12 17:15:12 +01:00
'''
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
2012-12-12 17:15:12 +01:00
2013-06-24 19:25:01 +02:00
os.system("iptables -P INPUT ACCEPT")
os.system("iptables -F")
os.system("iptables -X")
os.system("iptables -A INPUT -m state --state ESTABLISHED -j ACCEPT")
2013-03-09 13:01:54 +01:00
if 22 not in firewall['ipv4']['TCP']:
2013-03-09 13:01:54 +01:00
update_yml(22, 'TCP', 'a', False)
2012-12-12 17:53:08 +01:00
2013-04-13 12:21:49 +02:00
if(os.path.exists("/proc/net/if_inet6")):
2013-06-24 19:25:01 +02:00
os.system("ip6tables -P INPUT ACCEPT")
os.system("ip6tables -F")
os.system("ip6tables -X")
os.system("ip6tables -A INPUT -m state --state ESTABLISHED -j ACCEPT")
2013-03-09 13:01:54 +01:00
if 22 not in firewall['ipv6']['TCP']:
update_yml(22, 'TCP', 'a', False)
2012-12-18 00:40:13 +01:00
2013-04-13 12:21:49 +02:00
if upnp:
remove_portmapping()
2013-06-24 19:25:01 +02:00
add_portmapping('TCP', upnp, False, 'r')
add_portmapping('UDP', upnp, False, 'r')
2013-04-13 12:21:49 +02:00
if(os.path.exists("/proc/net/if_inet6")):
2013-06-24 19:25:01 +02:00
add_portmapping('TCP', upnp, True, 'r')
add_portmapping('UDP', upnp, True, 'r')
os.system("iptables -A INPUT -i lo -j ACCEPT")
os.system("iptables -A INPUT -p icmp -j ACCEPT")
os.system("iptables -P INPUT DROP")
2012-12-12 17:15:12 +01:00
2013-04-13 12:21:49 +02:00
if(os.path.exists("/proc/net/if_inet6")):
2013-06-24 19:25:01 +02:00
os.system("ip6tables -A INPUT -i lo -j ACCEPT")
os.system("ip6tables -A INPUT -p icmp -j ACCEPT")
os.system("ip6tables -P INPUT DROP")
2012-12-18 00:40:13 +01:00
2013-04-13 12:21:49 +02:00
os.system("service fail2ban restart")
2012-12-13 11:25:47 +01:00
win_msg(_("Firewall successfully reloaded"))
2012-12-18 22:23:17 +01:00
2013-03-05 14:06:15 +01:00
return firewall_list()
2012-12-12 17:15:12 +01:00
2013-03-09 13:01:54 +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
"""
2013-06-24 19:25:01 +02:00
if ipv6:
ip = 'ipv6'
else:
ip = 'ipv4'
2012-12-18 00:28:03 +01:00
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/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:
2013-06-24 19:25:01 +02:00
raise YunoHostError(22, _("Port already openned :") + str(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:
2013-06-24 19:25:01 +02:00
raise YunoHostError(22, _("Port already closed :") + str(port))
2012-12-18 00:28:03 +01:00
firewall[ip][protocol].sort()
2012-12-12 17:15:12 +01:00
2013-06-24 19:25:01 +02:00
os.system("mv /etc/yunohost/firewall.yml /etc/yunohost/firewall.yml.old")
2012-12-18 22:23:17 +01:00
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'w') as f:
2013-03-09 13:01:54 +01:00
yaml.dump(firewall, f)
2013-06-24 19:25:01 +02:00
def add_portmapping(protocol=None, upnp=False, ipv6=None, mode=None,):
2013-03-09 13:01:54 +01:00
"""
2013-02-11 14:13:36 +01:00
Send a port mapping rules to igd device
Keyword arguments:
protocol -- Protocol used
2013-04-13 12:21:49 +02:00
upnp -- Boolean upnp
ipv6 -- Boolean ipv6
mode -- Add a rule (a) or reload all rules (r)
2013-02-11 14:13:36 +01:00
Return
None
"""
2013-04-10 13:46:41 +02:00
if ipv6:
2013-06-24 19:59:01 +02:00
os.system("ip6tables -P INPUT ACCEPT")
2013-04-10 13:46:41 +02:00
else:
2013-06-24 19:59:01 +02:00
os.system("iptables -P INPUT ACCEPT")
2013-04-10 13:46:41 +02:00
2013-06-24 19:25:01 +02:00
if upnp and mode == 'a':
2013-04-13 12:21:49 +02:00
remove_portmapping()
2013-06-24 19:25:01 +02:00
if ipv6:
ip = 'ipv6'
else:
ip = 'ipv4'
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
2013-06-24 19:25:01 +02:00
for i, port in enumerate(firewall[ip][protocol]):
2013-04-10 13:46:41 +02:00
if ipv6:
2013-06-24 19:25:01 +02:00
os.system("ip6tables -A INPUT -p " + protocol + " -i eth0 --dport " + str(port) + " -j ACCEPT")
2013-04-10 13:46:41 +02:00
else:
2013-06-24 19:25:01 +02:00
os.system("iptables -A INPUT -p " + protocol + " -i eth0 --dport " + str(port) + " -j ACCEPT")
if upnp:
2013-04-13 12:21:49 +02:00
upnpc = miniupnpc.UPnP()
upnpc.discoverdelay = 200
nbigd = upnpc.discover()
if nbigd:
upnpc.selectigd()
upnpc.addportmapping(port, protocol, upnpc.lanaddr, port, 'yunohost firewall : port %u' % port, '')
2013-02-11 14:13:36 +01:00
2013-06-24 19:25:01 +02:00
os.system("iptables -P INPUT DROP")
2013-03-11 23:07:16 +01:00
2013-04-13 12:21:49 +02:00
def remove_portmapping():
"""
Remove all portmapping rules in the igd device
Keyword arguments:
None
Return
None
"""
upnp = miniupnpc.UPnP()
upnp.discoverdelay = 200
nbigd = upnp.discover()
if nbigd:
try:
upnp.selectigd()
except:
firewall_reload(False)
2013-06-24 19:25:01 +02:00
raise YunoHostError(167, _("No upnp devices found"))
2013-04-13 12:21:49 +02:00
else:
firewall_reload(False)
2013-06-24 19:25:01 +02:00
raise YunoHostError(22, _("Can't connect to the igd device"))
2013-04-13 12:21:49 +02:00
# list the redirections :
for i in xrange(100):
p = upnp.getgenericportmapping(i)
2013-06-24 19:25:01 +02:00
if p is None:
break
2013-04-13 12:21:49 +02:00
upnp.deleteportmapping(p[0], p[1])
2013-06-24 19:25:01 +02:00
2013-03-11 23:07:16 +01:00
def firewall_installupnp():
"""
Add upnp cron
Keyword arguments:
None
Return
None
"""
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'r') as f:
2013-04-09 22:25:43 +02:00
firewall = yaml.load(f)
2013-06-24 19:25:01 +02:00
firewall['UPNP'] = True
2013-04-09 22:25:43 +02:00
2013-03-11 23:07:16 +01:00
os.system("touch /etc/cron.d/yunohost-firewall")
os.system("echo '*/50 * * * * root yunohost firewall reload -u>>/dev/null'>/etc/cron.d/yunohost-firewall")
2013-03-13 13:32:40 +01:00
win_msg(_("UPNP cron installed"))
2013-03-13 09:34:29 +01:00
2013-06-24 19:25:01 +02:00
os.system("mv /etc/yunohost/firewall.yml /etc/yunohost/firewall.yml.old")
2013-04-09 22:25:43 +02:00
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'w') as f:
2013-04-09 22:25:43 +02:00
yaml.dump(firewall, f)
2013-03-11 23:07:16 +01:00
def firewall_removeupnp():
2013-03-15 14:28:52 +01:00
"""
Remove upnp cron
Keyword arguments:
None
Return
None
"""
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'r') as f:
2013-04-09 22:25:43 +02:00
firewall = yaml.load(f)
2013-06-24 19:25:01 +02:00
firewall['UPNP'] = False
2013-03-15 14:28:52 +01:00
2013-03-13 13:32:40 +01:00
try:
os.remove("/etc/cron.d/yunohost-firewall")
except:
2013-06-24 19:25:01 +02:00
raise YunoHostError(167, _("UPNP cron was not installed!"))
2013-04-09 22:25:43 +02:00
2013-03-13 13:32:40 +01:00
win_msg(_("UPNP cron removed"))
2013-03-15 14:18:30 +01:00
2013-06-24 19:25:01 +02:00
os.system("mv /etc/yunohost/firewall.yml /etc/yunohost/firewall.yml.old")
2013-04-09 22:25:43 +02:00
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'w') as f:
2013-04-09 22:25:43 +02:00
yaml.dump(firewall, f)
2013-06-24 19:25:01 +02:00
2013-04-09 22:34:33 +02:00
def firewall_checkupnp():
2013-04-09 22:25:43 +02:00
"""
Check if UPNP is installed
Keyword arguments:
None
Return
0 if installed
1 if not
"""
2013-06-24 19:25:01 +02:00
with open('/etc/yunohost/firewall.yml', 'r') as f:
2013-04-09 22:25:43 +02:00
firewall = yaml.load(f)
2013-06-24 19:25:01 +02:00
2013-04-09 22:25:43 +02:00
if firewall['UPNP']:
win_msg(_("UPNP is activated"))
else:
2013-06-24 19:25:01 +02:00
raise YunoHostError(167, _("UPNP not activated!"))
2013-03-15 14:18:30 +01:00
def firewall_stop():
2013-03-15 14:28:52 +01:00
"""
Stop firewall
Keyword arguments:
None
Return
None
"""
2013-03-15 14:18:30 +01:00
2013-06-24 19:25:01 +02:00
os.system("iptables -P INPUT ACCEPT")
os.system("iptables -F")
os.system("iptables -X")
os.system("ip6tables -P INPUT ACCEPT")
os.system("ip6tables -F")
os.system("ip6tables -X")
2013-04-09 22:25:43 +02:00
if(os.path.exists("/etc/cron.d/yunohost-firewall")):
firewall_removeupnp()