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
|
# -*- coding: utf-8 -*-
# manager.py
# Copyright (C) 2015 LEAP
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# alng with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Firewall Manager
"""
import commands
import subprocess
from leap.bitmask.vpn.constants import IS_MAC
class FirewallManager(object):
"""
Firewall manager that blocks/unblocks all the internet traffic with some
exceptions.
This allows us to achieve fail close on a vpn connection.
"""
# FIXME -- get the path
BITMASK_ROOT = "/usr/local/sbin/bitmask-root"
def __init__(self, remotes):
"""
Initialize the firewall manager with a set of remotes that we won't
block.
:param remotes: the gateway(s) that we will allow
:type remotes: list
"""
self.status = 'OFF'
self._remotes = remotes
def start(self, restart=False):
"""
Launch the firewall using the privileged wrapper.
:returns: True if the exitcode of calling the root helper in a
subprocess is 0.
:rtype: bool
"""
gateways = [gateway for gateway, port in self._remotes]
# XXX check for wrapper existence, check it's root owned etc.
# XXX check that the iptables rules are in place.
cmd = ["pkexec", self.BITMASK_ROOT, "firewall", "start"]
if restart:
cmd.append("restart")
# FIXME -- use a processprotocol
exitCode = subprocess.call(cmd + gateways)
if exitCode == 0:
self.status = 'ON'
return True
else:
self.status = 'OFF'
return False
# def tear_down_firewall(self):
def stop(self):
"""
Tear the firewall down using the privileged wrapper.
"""
if IS_MAC:
# We don't support Mac so far
return True
exitCode = subprocess.call(["pkexec", self.BITMASK_ROOT,
"firewall", "stop"])
if exitCode == 0:
self.status = 'OFF'
return True
else:
self.status = 'ON'
return False
def is_up(self):
"""
Return whether the firewall is up or not.
:rtype: bool
"""
# TODO test this, refactored from is_fw_down
cmd = "pkexec {0} firewall isup".format(self.BITMASK_ROOT)
output = commands.getstatusoutput(cmd)[0]
return output != 256
|