forked from YunoHost/moulinette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yunohost_firewall.py
401 lines (302 loc) · 11 KB
/
yunohost_firewall.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
# -*- coding: utf-8 -*-
""" License
Copyright (C) 2013 YunoHost
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
"""
""" yunohost_firewall.py
Manage firewall rules
"""
import os
import sys
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)
from yunohost import YunoHostError, win_msg
from yunohost_hook import hook_callback
def firewall_allow(protocol=None, port=None, ipv6=None, upnp=False):
"""
Allow connection port/protocol
Keyword argument:
port -- Port to open
protocol -- Protocol associated with port
upnp -- upnp
ipv6 -- ipv6
"""
if port.count(':')>0:
if port.split(':')[0]>port.split(':')[1]:
raise YunoHostError(22, _("First port must be inferior to Second port"))
else:
portstart=int(port.split(':')[0])
portend=int(port.split(':')[1])
else:
portstart = int(port)
portend = int(port)
if upnp:
add_portmapping(protocol, upnp, ipv6, 'a')
if 0 < portstart and portend < 65536:
if protocol == "Both":
update_yml(port, 'TCP', 'a', ipv6, upnp)
update_yml(port, 'UDP', 'a', ipv6, upnp)
else:
update_yml(port, protocol, 'a', ipv6, upnp)
win_msg(_("Port successfully openned"))
else:
raise YunoHostError(22, _("Port not between 1 and 65535:") + str(port))
return firewall_reload(upnp)
def firewall_disallow(protocol=None, port=None, ipv6=None, upnp=False):
"""
Disallow connection
Keyword argument:
port -- Port to open
protocol -- Protocol associated with port
upnp -- upnp
ipv6 -- ipv6
"""
if protocol == "Both":
update_yml(port, 'TCP', 'r', ipv6, upnp)
update_yml(port, 'UDP', 'r', ipv6, upnp)
else:
update_yml(port, protocol, 'r', ipv6, upnp)
win_msg(_("Port successfully closed"))
return firewall_reload(upnp)
def firewall_list():
"""
List all firewall rules
"""
with open('/etc/yunohost/firewall.yml') as f:
firewall = yaml.load(f)
return firewall
def firewall_reload(upnp=False):
"""
Reload all firewall rules
Keyword argument:
upnp -- upnp
"""
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
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")
if '22' not in firewall['ipv4']['TCP']:
update_yml('22', 'TCP', 'a', False)
if os.path.exists("/proc/net/if_inet6"):
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")
if '22' not in firewall['ipv6']['TCP']:
update_yml('22', 'TCP', 'a', False)
if upnp:
remove_portmapping()
add_portmapping('TCP', upnp, False, 'r')
add_portmapping('UDP', upnp, False, 'r')
ipv6 = False
if os.path.exists("/proc/net/if_inet6"):
add_portmapping('TCP', upnp, True, 'r')
add_portmapping('UDP', upnp, True, 'r')
ipv6 = True
hook_callback('post_iptable_rules', [upnp, ipv6])
os.system("iptables -A INPUT -i lo -j ACCEPT")
os.system("iptables -A INPUT -p icmp -j ACCEPT")
os.system("iptables -P INPUT DROP")
if os.path.exists("/proc/net/if_inet6"):
os.system("ip6tables -A INPUT -i lo -j ACCEPT")
os.system("ip6tables -A INPUT -p icmp -j ACCEPT")
os.system("ip6tables -P INPUT DROP")
os.system("service fail2ban restart")
win_msg(_("Firewall successfully reloaded"))
return firewall_list()
def update_yml(port=None, protocol=None, mode=None, ipv6=None, upnp=False):
"""
Update firewall.yml
Keyword arguments:
protocol -- Protocol used
port -- Port to open
mode -- a=append r=remove
ipv6 -- Boolean ipv6
upnp -- Boolean upnp
Return
None
"""
if ipv6:
ip = 'ipv6'
else:
ip = 'ipv4'
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
if mode == 'a':
if port not in firewall[ip][protocol]:
firewall[ip][protocol].append(port)
if not ipv6 and upnp:
firewall['UPNP']['ports'][protocol].append(port)
elif not ipv6 and upnp:
if port not in firewall['UPNP']['ports'][protocol]:
firewall['UPNP']['ports'][protocol].append(port)
else:
raise YunoHostError(22, _("Port already openned :") + port)
else:
raise YunoHostError(22, _("Port already openned :") + port)
else:
if not ipv6 and upnp:
if port in firewall['UPNP']['ports'][protocol]:
firewall['UPNP']['ports'][protocol].remove(port)
else:
raise YunoHostError(22, _("Upnp redirection already deleted :") + port)
elif not ipv6:
if port in firewall['UPNP']['ports'][protocol]:
firewall['UPNP']['ports'][protocol].remove(port)
if port in firewall[ip][protocol]:
firewall[ip][protocol].remove(port)
else:
raise YunoHostError(22, _("Port already closed :") + port)
else:
if port in firewall[ip][protocol]:
firewall[ip][protocol].remove(port)
else:
raise YunoHostError(22, _("Port already closed :") + port)
firewall[ip][protocol].sort()
firewall['UPNP']['ports'][protocol].sort()
os.system("mv /etc/yunohost/firewall.yml /etc/yunohost/firewall.yml.old")
with open('/etc/yunohost/firewall.yml', 'w') as f:
yaml.dump(firewall, f)
def add_portmapping(protocol=None, upnp=False, ipv6=None, mode=None,):
"""
Send a port mapping rules to igd device
Keyword arguments:
protocol -- Protocol used
upnp -- Boolean upnp
ipv6 -- Boolean ipv6
mode -- Add a rule (a) or reload all rules (r)
Return
None
"""
if ipv6:
os.system("ip6tables -P INPUT ACCEPT")
else:
os.system("iptables -P INPUT ACCEPT")
if upnp and not ipv6 and mode == 'a':
remove_portmapping()
if ipv6:
ip = 'ipv6'
else:
ip = 'ipv4'
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
for i, port in enumerate(firewall[ip][protocol]):
if ipv6:
if port.count(':')>0:
os.system("ip6tables -A INPUT -p " + protocol + " --sport " + port + " -j ACCEPT")
else:
os.system("ip6tables -A INPUT -p " + protocol + " --dport " + port + " -j ACCEPT")
else:
if port.count(':')>0:
os.system("iptables -A INPUT -p " + protocol + " --sport " + port + " -j ACCEPT")
else:
os.system("iptables -A INPUT -p " + protocol + " --dport " + port + " -j ACCEPT")
if upnp and not ipv6:
if port in firewall['UPNP']['ports'][protocol]:
upnpc = miniupnpc.UPnP()
upnpc.discoverdelay = 200
nbigd = upnpc.discover()
if nbigd:
upnpc.selectigd()
if port.count(':')>0:
for ports in range (port.split(':')[0],port.split(':')[1]):
upnpc.addportmapping(ports, protocol, upnpc.lanaddr, ports, 'yunohost firewall : port %u' % int(ports), '')
else:
upnpc.addportmapping(int(port), protocol, upnpc.lanaddr, int(port), 'yunohost firewall : port %u' % int(port), '')
os.system("iptables -P INPUT DROP")
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)
raise YunoHostError(167, _("No upnp devices found"))
else:
firewall_reload(False)
raise YunoHostError(22, _("Can't connect to the igd device"))
# list the redirections :
for i in xrange(100):
p = upnp.getgenericportmapping(i)
if p is None:
break
upnp.deleteportmapping(p[0], p[1])
def firewall_installupnp():
"""
Add upnp cron
"""
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
firewall['UPNP']['cron'] = True
os.system("touch /etc/cron.d/yunohost-firewall")
os.system("echo '*/50 * * * * root yunohost firewall reload -u --no-ldap >>/dev/null'>/etc/cron.d/yunohost-firewall")
win_msg(_("UPNP cron installed"))
os.system("mv /etc/yunohost/firewall.yml /etc/yunohost/firewall.yml.old")
with open('/etc/yunohost/firewall.yml', 'w') as f:
yaml.dump(firewall, f)
def firewall_removeupnp():
"""
Remove upnp cron
"""
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
firewall['UPNP']['cron'] = False
try:
os.remove("/etc/cron.d/yunohost-firewall")
except:
raise YunoHostError(167, _("UPNP cron was not installed!"))
win_msg(_("UPNP cron removed"))
os.system("mv /etc/yunohost/firewall.yml /etc/yunohost/firewall.yml.old")
with open('/etc/yunohost/firewall.yml', 'w') as f:
yaml.dump(firewall, f)
def firewall_checkupnp():
"""
check if UPNP is install or not (0 yes 1 no)
"""
with open('/etc/yunohost/firewall.yml', 'r') as f:
firewall = yaml.load(f)
if firewall['UPNP']['cron']:
win_msg(_("UPNP is activated"))
else:
raise YunoHostError(167, _("UPNP not activated!"))
def firewall_stop():
"""
Stop iptables and ip6tables
"""
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")
if(os.path.exists("/etc/cron.d/yunohost-firewall")):
firewall_removeupnp()