Update yunohost_firewall.py

add ipv6 support
This commit is contained in:
titoko 2012-12-12 16:27:12 +01:00
parent 8d8899b276
commit a7a3db1eaa

View file

@ -9,33 +9,48 @@ except ImportError:
sys.stderr.write('apt-get install python-yaml\n') sys.stderr.write('apt-get install python-yaml\n')
sys.exit(1) sys.exit(1)
def firewall_allow(protocol=None,port=None):
def firewall_allow(protocol=None,port=None,ip=None):
if ip == true:
ip = 'ipv6'
iptables="ip6tables"
else
ip = 'ipv4'
iptables="iptables"
if protocol == "Both": if protocol == "Both":
chaineTCP="iptables -A INPUT -p tcp -i eth0 --dport "+ port +" -j ACCEPT" TCP_rule = iptables+" -A INPUT -p tcp -i eth0 --dport "+ port +" -j ACCEPT"
chaineUDP="iptables -A INPUT -p udp -i eth0 --dport "+ port +" -j ACCEPT" UDP_rule = iptables+" -A INPUT -p udp -i eth0 --dport "+ port +" -j ACCEPT"
append_port(port,'tcp') append_remove_port(port,'tcp','a',ip)
append_port(port,'udp') append_remove_port(port,'udp','a',ip)
os.system(chaineTCP) os.system(TCP_rule)
os.system(chaineUDP) os.system(UDP_rule)
else: else:
chaine="iptables -A INPUT -p "+ protocol +" -i eth0 --dport "+ port +" -j ACCEPT" rule = iptables+" -A INPUT -p "+ protocol +" -i eth0 --dport "+ port +" -j ACCEPT"
append_port(port,protocol) append_remove_port(port,protocol,'a',ip)
os.system(chaine) os.system(rule)
def firewall_disallow(protocol=None,port=None,ip=None):
if ip == true:
ip = 'ipv6'
else
ip = 'ipv4'
def firewall_disallow(protocol=None,port=None):
if protocol == "Both": if protocol == "Both":
chaineTCP="iptables -A INPUT -p tcp -i eth0 --dport "+ port +" -j REJECT" TCP_rule = iptables+" -A INPUT -p tcp -i eth0 --dport "+ port +" -j REJECT"
chaineUDP="iptables -A INPUT -p udp -i eth0 --dport "+ port +" -j REJECT" UDP_rule = iptables+" -A INPUT -p udp -i eth0 --dport "+ port +" -j REJECT"
remove_port(port,'tcp') append_remove_port(port,'tcp','r',ip)
remove_port(port,'udp') append_remove_port(port,'udp','r',ip)
os.system(chaineTCP) os.system(TCP_rule)
os.system(chaineUDP) os.system(UDP_rule)
else: else:
chaine="iptables -A INPUT -p "+ protocol +" -i eth0 --dport "+ port +" -j REJECT" rule = iptables+" -A INPUT -p "+ protocol +" -i eth0 --dport "+ port +" -j REJECT"
os.system(chaine) append_remove_port(port,protocol,'r',ip)
remove_port(port,protocol) os.system(rule)
os.system(chaine)
def firewall_list(): def firewall_list():
''' '''
@ -43,16 +58,25 @@ def firewall_list():
''' '''
with open ('firewall.yml') as f: with open ('firewall.yml') as f:
firewall = yaml.load(f) firewall = yaml.load(f)
listPortTCP=firewall['ipv4']['TCP'] TCP_port_list_ipv4 = firewall['ipv4']['TCP']
listPortUDP=firewall['ipv4']['UDP'] UDP_port_list_ipv4 = firewall['ipv4']['UDP']
print("Port TCP OPEN :") TCP_port_list_ipv6 = firewall['ipv6']['TCP']
for i,port in enumerate (listPortTCP): UDP_port_list_ipv6 = firewall['ipv6']['UDP']
print("Port TCP Open for ipv4:")
for i,port in enumerate (TCP_port_list_ipv4):
print("-"+str(port)) print("-"+str(port))
print("Port UDP OPEN :") print("Port UDP Open for ipv4 :")
for i,port in enumerate (listPortUDP): for i,port in enumerate (UDP_port_list_ipv4):
print("-"+str(port))
print("Port TCP Open for ipv6:")
for i,port in enumerate (TCP_port_list_ipv6):
print("-"+str(port))
print("Port UDP Open for ipv6 :")
for i,port in enumerate (UDP_port_list_ipv6):
print("-"+str(port)) print("-"+str(port))
f.close() f.close()
def firewall_reload(): def firewall_reload():
''' '''
Clear filter IPTABLE's table Clear filter IPTABLE's table
@ -61,29 +85,50 @@ def firewall_reload():
Allow all port in the list Allow all port in the list
Prohibit the rest Prohibit the rest
''' '''
os.system("iptables -P INPUT ACCEPT") with open('firewall.yml','r') as f:
firewall = yaml.load(f)
TCP_port_list_ipv4 = firewall['ipv4']['TCP']
UDP_port_list_ipv4 = firewall['ipv4']['UDP']
TCP_port_list_ipv6 = firewall['ipv6']['TCP']
UDP_port_list_ipv6 = firewall['ipv6']['UDP']
f.close()
os.system ("iptables -P INPUT ACCEPT")
os.system ("iptables -F") os.system ("iptables -F")
os.system ("iptables -X") os.system ("iptables -X")
os.system ("iptables -A INPUT -p tcp -i eth0 --dport 22 -j ACCEPT") os.system ("iptables -A INPUT -p tcp -i eth0 --dport 22 -j ACCEPT")
with open('firewall.yml','r') as f: os.system ("ip6tables -P INPUT ACCEPT")
firewall = yaml.load(f) os.system ("ip6tables -F")
listPortTCP=firewall['ipv4']["TCP"] os.system ("ip6tables -X")
listPortUDP=firewall['ipv4']["UDP"] os.system ("ip6tables -A INPUT -p tcp -i eth0 --dport 22 -j ACCEPT")
for i,port in enumerate (listPortTCP):
os.system ("iptables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
for i,port in enumerate (listPortUDP):
os.system ("iptables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
os.system ("iptables -P INPUT DROP")
def append_port(port=None,protocol=None): for i,port in enumerate (TCP_port_list_ipv4):
os.system ("iptables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
for i,port in enumerate (UDP_port_list_ipv4):
os.system ("iptables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
for i,port in enumerate (TCP_port_list_ipv6):
os.system ("ip6tables -A INPUT -p tcp -i eth0 --dport "+ str(port) +" -j ACCEPT")
for i,port in enumerate (UDP_port_list_ipv6):
os.system ("ip6tables -A INPUT -p udp -i eth0 --dport "+ str(port) +" -j ACCEPT")
os.system ("iptables -P INPUT DROP")
os.system ("ip6tables -P INPUT DROP")
def append_remove_port(port=None,protocol=None,mode=None,ip=None):
''' '''
Append port in firewall.yml Append port in firewall.yml
''' '''
with open('firewall.yml','r') as f: with open('firewall.yml','r') as f:
firewall = yaml.load(f) firewall = yaml.load(f)
if port not in firewall['ipv4'][protocol]: if port not in firewall[ip][protocol]:
firewall['ipv4'][protocol].append(int(port)) if mode == 'a':
firewall['ipv4'][protocol].sort() firewall[ip][protocol].append(int(port))
else:
firewall[ip][protocol].remove(int(port))
firewall[ip][protocol].sort()
f.close f.close
os.system("mv firewall.yml firewall.yml.old") os.system("mv firewall.yml firewall.yml.old")
with open('firewall.yml','w') as f: with open('firewall.yml','w') as f:
@ -91,17 +136,4 @@ def append_port(port=None,protocol=None):
f.close f.close
def remove_port(port=None,protocol=None):
'''
Remove port from firewall.yml
'''
with open('firewall.yml','r') as f:
firewall = yaml.load(f)
if port in firewall['ipv4'][protocol]:
firewall['ipv4'][protocol].remove(int(port))
firewall['ipv4'][protocol].sort()
f.close
os.system("mv firewall.yml firewall.yml.old")
with open('firewall.yml','w') as f:
yaml.dump(firewall,f)
f.close