2011-02-21 18:15:35 +01:00
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2011 Tomasz Sterna <tomek@xiaoka.com>
|
|
|
|
#
|
|
|
|
# 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 2
|
|
|
|
# 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.
|
|
|
|
#
|
2017-11-06 21:06:30 +01:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
# with this program; if not, see <http://www.gnu.org/licenses/>.
|
2011-02-21 18:15:35 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2017-07-12 14:10:43 +02:00
|
|
|
import datetime
|
2011-03-03 22:42:10 +01:00
|
|
|
import re
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2017-07-12 14:10:43 +02:00
|
|
|
import qubesadmin.firewall
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-06-28 12:25:28 +02:00
|
|
|
from . import ui_newfwruledlg
|
2011-02-21 18:15:35 +01:00
|
|
|
|
|
|
|
|
2017-07-12 14:10:43 +02:00
|
|
|
class FirewallModifiedOutsideError(ValueError):
|
|
|
|
pass
|
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
class QIPAddressValidator(QtGui.QValidator):
|
2011-03-03 22:42:10 +01:00
|
|
|
def __init__(self, parent = None):
|
|
|
|
super (QIPAddressValidator, self).__init__(parent)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
def validate(self, input, pos):
|
2011-03-21 22:08:51 +01:00
|
|
|
hostname = str(input)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
if len(hostname) > 255 or len(hostname) == 0:
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Intermediate, input, pos)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2011-03-21 22:08:51 +01:00
|
|
|
if hostname == "*":
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Acceptable, input, pos)
|
2011-03-21 22:08:51 +01:00
|
|
|
|
|
|
|
unmask = hostname.split("/", 1)
|
|
|
|
if len(unmask) == 2:
|
|
|
|
hostname = unmask[0]
|
|
|
|
mask = unmask[1]
|
|
|
|
if mask.isdigit() or mask == "":
|
|
|
|
if re.match("^([0-9]{1,3}\.){3}[0-9]{1,3}$", hostname) is None:
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Invalid, input, pos)
|
2011-03-21 22:08:51 +01:00
|
|
|
if mask != "":
|
|
|
|
mask = int(unmask[1])
|
|
|
|
if mask < 0 or mask > 32:
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Invalid, input, pos)
|
2011-03-21 22:08:51 +01:00
|
|
|
else:
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Invalid, input, pos)
|
2011-03-21 22:08:51 +01:00
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
if hostname[-1:] == ".":
|
|
|
|
hostname = hostname[:-1]
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
if hostname[-1:] == "-":
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Intermediate, input, pos)
|
2011-03-03 22:42:10 +01:00
|
|
|
|
|
|
|
allowed = re.compile("(?!-)[A-Z\d-]{1,63}(?<!-)$", re.IGNORECASE)
|
|
|
|
if all(allowed.match(x) for x in hostname.split(".")):
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Acceptable, input, pos)
|
2011-03-03 22:42:10 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
return (QtGui.QValidator.Invalid, input, pos)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
class NewFwRuleDlg (QtGui.QDialog, ui_newfwruledlg.Ui_NewFwRuleDlg):
|
2011-02-21 18:15:35 +01:00
|
|
|
def __init__(self, parent = None):
|
|
|
|
super (NewFwRuleDlg, self).__init__(parent)
|
|
|
|
self.setupUi(self)
|
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
self.set_ok_enabled(False)
|
2011-03-21 22:08:51 +01:00
|
|
|
self.addressComboBox.setValidator(QIPAddressValidator())
|
2017-11-06 23:18:18 +01:00
|
|
|
self.addressComboBox.editTextChanged.connect(
|
|
|
|
self.address_editing_finished)
|
|
|
|
self.serviceComboBox.setValidator(QtGui.QRegExpValidator(
|
|
|
|
QtCore.QRegExp("[a-z][a-z0-9-]+|[0-9]+(-[0-9]+)?",
|
|
|
|
QtCore.Qt.CaseInsensitive), None))
|
2012-03-04 17:36:25 +01:00
|
|
|
self.serviceComboBox.setEnabled(False)
|
2017-11-06 22:46:35 +01:00
|
|
|
self.serviceComboBox.setInsertPolicy(QtGui.QComboBox.InsertAtBottom)
|
2011-03-21 22:08:51 +01:00
|
|
|
self.populate_combos()
|
2017-11-06 22:46:35 +01:00
|
|
|
self.serviceComboBox.setInsertPolicy(QtGui.QComboBox.InsertAtTop)
|
2011-03-03 22:42:10 +01:00
|
|
|
|
2016-06-21 02:05:21 +02:00
|
|
|
def accept(self):
|
|
|
|
if self.tcp_radio.isChecked() or self.udp_radio.isChecked():
|
|
|
|
if len(self.serviceComboBox.currentText()) == 0:
|
2017-11-06 22:46:35 +01:00
|
|
|
msg = QtGui.QMessageBox()
|
2017-01-22 05:42:38 +01:00
|
|
|
msg.warning(self, self.tr("Firewall rule"),
|
2017-11-06 23:18:18 +01:00
|
|
|
self.tr("You need to fill service "
|
|
|
|
"name/port for TCP/UDP rule"))
|
2016-06-21 02:05:21 +02:00
|
|
|
return
|
2017-11-06 22:46:35 +01:00
|
|
|
QtGui.QDialog.accept(self)
|
2012-03-04 17:36:25 +01:00
|
|
|
|
2011-03-21 22:08:51 +01:00
|
|
|
def populate_combos(self):
|
|
|
|
example_addresses = [
|
|
|
|
"", "www.example.com",
|
|
|
|
"192.168.1.100", "192.168.0.0/16",
|
|
|
|
"*"
|
|
|
|
]
|
2011-03-03 22:42:10 +01:00
|
|
|
displayed_services = [
|
2011-03-21 22:08:51 +01:00
|
|
|
'',
|
2015-04-25 19:26:42 +02:00
|
|
|
'http', 'https', 'ftp', 'ftps', 'smtp',
|
|
|
|
'smtps', 'pop3', 'pop3s', 'imap', 'imaps', 'odmr',
|
|
|
|
'nntp', 'nntps', 'ssh', 'telnet', 'telnets', 'ntp',
|
|
|
|
'snmp', 'ldap', 'ldaps', 'irc', 'ircs', 'xmpp-client',
|
2011-03-03 22:42:10 +01:00
|
|
|
'syslog', 'printer', 'nfs', 'x11',
|
2012-03-04 17:36:25 +01:00
|
|
|
'1024-1234'
|
2011-03-03 22:42:10 +01:00
|
|
|
]
|
2011-03-21 22:08:51 +01:00
|
|
|
for address in example_addresses:
|
|
|
|
self.addressComboBox.addItem(address)
|
2011-03-03 22:42:10 +01:00
|
|
|
for service in displayed_services:
|
|
|
|
self.serviceComboBox.addItem(service)
|
|
|
|
|
|
|
|
def address_editing_finished(self):
|
|
|
|
self.set_ok_enabled(True)
|
|
|
|
|
|
|
|
def set_ok_enabled(self, on):
|
2017-11-06 22:46:35 +01:00
|
|
|
ok_button = self.buttonBox.button(QtGui.QDialogButtonBox.Ok)
|
2011-03-03 22:42:10 +01:00
|
|
|
if ok_button is not None:
|
|
|
|
ok_button.setEnabled(on)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2012-02-29 10:42:57 +01:00
|
|
|
def on_tcp_radio_toggled(self, checked):
|
2012-03-04 17:36:25 +01:00
|
|
|
if checked:
|
|
|
|
self.serviceComboBox.setEnabled(True)
|
2012-02-29 10:42:57 +01:00
|
|
|
|
|
|
|
def on_udp_radio_toggled(self, checked):
|
2012-03-04 17:36:25 +01:00
|
|
|
if checked:
|
|
|
|
self.serviceComboBox.setEnabled(True)
|
2012-02-29 10:42:57 +01:00
|
|
|
|
|
|
|
def on_any_radio_toggled(self, checked):
|
2012-03-04 17:36:25 +01:00
|
|
|
if checked:
|
|
|
|
self.serviceComboBox.setEnabled(False)
|
2012-02-29 10:42:57 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
class QubesFirewallRulesModel(QtCore.QAbstractItemModel):
|
2011-02-21 18:15:35 +01:00
|
|
|
def __init__(self, parent=None):
|
2017-11-06 22:46:35 +01:00
|
|
|
QtCore.QAbstractItemModel.__init__(self, parent)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2014-03-28 05:15:52 +01:00
|
|
|
self.__columnNames = {0: "Address", 1: "Service", 2: "Protocol", }
|
2011-03-03 22:42:10 +01:00
|
|
|
self.__services = list()
|
2017-11-06 23:18:18 +01:00
|
|
|
pattern = re.compile(
|
|
|
|
"(?P<name>[a-z][a-z0-9-]+)\s+(?P<port>[0-9]+)/(?P<protocol>[a-z]+)",
|
|
|
|
re.IGNORECASE)
|
2011-03-03 22:42:10 +01:00
|
|
|
f = open('/etc/services', 'r')
|
|
|
|
for line in f:
|
|
|
|
match = pattern.match(line)
|
|
|
|
if match is not None:
|
|
|
|
service = match.groupdict()
|
2017-11-06 23:18:18 +01:00
|
|
|
self.__services.append(
|
|
|
|
(service["name"], int(service["port"]),) )
|
2011-03-03 22:42:10 +01:00
|
|
|
f.close()
|
|
|
|
|
2012-03-12 15:54:16 +01:00
|
|
|
self.fw_changed = False
|
|
|
|
|
2012-02-29 10:42:57 +01:00
|
|
|
def sort(self, idx, order):
|
|
|
|
from operator import attrgetter
|
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
rev = (order == QtCore.Qt.AscendingOrder)
|
2017-10-13 18:04:49 +02:00
|
|
|
self.children.sort(key = lambda x: self.get_column_string(idx, x)
|
|
|
|
, reverse = rev)
|
|
|
|
|
2012-08-07 15:03:04 +02:00
|
|
|
index1 = self.createIndex(0, 0)
|
2017-10-13 18:04:49 +02:00
|
|
|
index2 = self.createIndex(len(self)-1, len(self.__columnNames)-1)
|
2012-08-07 15:03:04 +02:00
|
|
|
self.dataChanged.emit(index1, index2)
|
2012-02-29 10:42:57 +01:00
|
|
|
|
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
def get_service_name(self, port):
|
|
|
|
for service in self.__services:
|
2017-10-13 18:04:49 +02:00
|
|
|
if str(service[1]) == str(port):
|
2011-03-03 22:42:10 +01:00
|
|
|
return service[0]
|
|
|
|
return str(port)
|
|
|
|
|
|
|
|
def get_service_port(self, name):
|
|
|
|
for service in self.__services:
|
|
|
|
if service[0] == name:
|
|
|
|
return service[1]
|
|
|
|
return None
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
def get_column_string(self, col, rule):
|
|
|
|
# Address
|
|
|
|
if col == 0:
|
|
|
|
if rule.dsthost is None:
|
|
|
|
return "*"
|
|
|
|
else:
|
|
|
|
if rule.dsthost.type == 'dst4'\
|
|
|
|
and rule.dsthost.prefixlen == '32':
|
|
|
|
return str(rule.dsthost)[:-3]
|
|
|
|
elif rule.dsthost.type == 'dst6'\
|
|
|
|
and rule.dsthost.prefixlen == '128':
|
|
|
|
return str(rule.dsthost)[:-4]
|
|
|
|
else:
|
|
|
|
return str(rule.dsthost)
|
|
|
|
|
|
|
|
# Service
|
|
|
|
if col == 1:
|
2017-07-12 14:10:43 +02:00
|
|
|
if rule.dstports is None:
|
2017-10-13 18:04:49 +02:00
|
|
|
return "any"
|
|
|
|
elif rule.dstports.range[0] != rule.dstports.range[1]:
|
|
|
|
return str(rule.dstports)
|
|
|
|
else:
|
|
|
|
return self.get_service_name(rule.dstports)
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
# Protocol
|
|
|
|
if col == 2:
|
|
|
|
if rule.proto is None:
|
|
|
|
return "any"
|
|
|
|
else:
|
|
|
|
return str(rule.proto)
|
|
|
|
return "unknown"
|
2017-07-12 14:10:43 +02:00
|
|
|
|
|
|
|
def get_firewall_conf(self, vm):
|
|
|
|
conf = {
|
|
|
|
'allow': None,
|
2017-10-13 18:04:49 +02:00
|
|
|
'expire': 0,
|
2017-07-12 14:10:43 +02:00
|
|
|
'rules': [],
|
|
|
|
}
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
allowDns = False
|
|
|
|
allowIcmp = False
|
2017-07-12 14:10:43 +02:00
|
|
|
common_action = None
|
|
|
|
|
|
|
|
reversed_rules = list(reversed(vm.firewall.rules))
|
2017-10-13 18:04:49 +02:00
|
|
|
last_rule = reversed_rules.pop(0)
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if last_rule == qubesadmin.firewall.Rule('action=accept') \
|
|
|
|
or last_rule == qubesadmin.firewall.Rule('action=drop'):
|
|
|
|
common_action = last_rule.action
|
|
|
|
else:
|
|
|
|
FirewallModifiedOutsideError('Last rule must be either '
|
|
|
|
'drop all or accept all.')
|
|
|
|
|
|
|
|
dns_rule = qubesadmin.firewall.Rule(None,
|
|
|
|
action='accept', specialtarget='dns')
|
|
|
|
icmp_rule = qubesadmin.firewall.Rule(None,
|
|
|
|
action='accept', proto='icmp')
|
2017-07-12 14:10:43 +02:00
|
|
|
while reversed_rules:
|
2017-10-13 18:04:49 +02:00
|
|
|
rule = reversed_rules.pop(0)
|
|
|
|
|
|
|
|
if rule == dns_rule:
|
|
|
|
allowDns = True
|
2017-07-12 14:10:43 +02:00
|
|
|
continue
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if rule.proto == icmp_rule:
|
|
|
|
allowIcmp = True
|
2017-07-12 14:10:43 +02:00
|
|
|
continue
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if rule.specialtarget is not None or rule.icmptype is not None:
|
|
|
|
raise FirewallModifiedOutsideError("Rule type unknown!")
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if (rule.dsthost is not None or rule.proto is not None) \
|
|
|
|
and rule.expire is None:
|
|
|
|
if rule.action == 'accept':
|
|
|
|
conf['rules'].insert(0, rule)
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
raise FirewallModifiedOutsideError('No blacklist support.')
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if rule.expire is not None and rule.dsthost is None \
|
|
|
|
and rule.proto is None:
|
|
|
|
conf['expire'] = int(str(rule.expire))
|
|
|
|
continue
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
raise FirewallModifiedOutsideError('it does not add up.')
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
conf['allow'] = (common_action == 'accept')
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if not allowIcmp and not conf['allow']:
|
|
|
|
raise FirewallModifiedOutsideError('ICMP must be allowed.')
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if not allowDns and not conf['allow']:
|
|
|
|
raise FirewallModifiedOutsideError('DNS must be allowed')
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
return conf
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
def write_firewall_conf(self, vm, conf):
|
|
|
|
rules = []
|
2017-07-12 14:10:43 +02:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
for rule in conf['rules']:
|
|
|
|
rules.append(rule)
|
|
|
|
|
|
|
|
if not conf['allow']:
|
2017-07-12 14:10:43 +02:00
|
|
|
rules.append(qubesadmin.firewall.Rule(None,
|
|
|
|
action='accept', specialtarget='dns'))
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if not conf['allow']:
|
2017-07-12 14:10:43 +02:00
|
|
|
rules.append(qubesadmin.firewall.Rule(None,
|
|
|
|
action='accept', proto='icmp'))
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if conf['allow']:
|
2017-07-12 14:10:43 +02:00
|
|
|
rules.append(qubesadmin.firewall.Rule(None,
|
|
|
|
action='accept'))
|
2017-10-13 18:04:49 +02:00
|
|
|
else:
|
|
|
|
rules.append(qubesadmin.firewall.Rule(None,
|
|
|
|
action = 'drop'))
|
2017-07-12 14:10:43 +02:00
|
|
|
|
|
|
|
vm.firewall.rules = rules
|
|
|
|
|
2011-02-21 18:15:35 +01:00
|
|
|
def set_vm(self, vm):
|
|
|
|
self.__vm = vm
|
|
|
|
|
|
|
|
self.clearChildren()
|
|
|
|
|
2017-07-12 14:10:43 +02:00
|
|
|
conf = self.get_firewall_conf(vm)
|
2011-03-03 22:42:10 +01:00
|
|
|
|
|
|
|
self.allow = conf["allow"]
|
2017-10-13 18:04:49 +02:00
|
|
|
|
|
|
|
self.tempFullAccessExpireTime = conf['expire']
|
2011-03-03 22:42:10 +01:00
|
|
|
|
2011-03-02 15:06:39 +01:00
|
|
|
for rule in conf["rules"]:
|
2014-03-28 05:15:52 +01:00
|
|
|
self.appendChild(rule)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
def get_vm_name(self):
|
|
|
|
return self.__vm.name
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
def apply_rules(self, allow, tempFullAccess=False,
|
2014-03-28 05:19:07 +01:00
|
|
|
tempFullAccessTime=None):
|
2011-02-21 18:15:35 +01:00
|
|
|
assert self.__vm is not None
|
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
if self.allow != allow or \
|
2014-03-28 05:19:07 +01:00
|
|
|
(self.tempFullAccessExpireTime != 0) != tempFullAccess:
|
2012-03-12 15:54:16 +01:00
|
|
|
self.fw_changed = True
|
|
|
|
|
|
|
|
conf = { "allow": allow,
|
2011-03-21 22:08:39 +01:00
|
|
|
"rules": list()
|
|
|
|
}
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
conf['rules'].extend(self.children)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2014-03-28 05:19:07 +01:00
|
|
|
if tempFullAccess and not allow:
|
2017-10-13 18:04:49 +02:00
|
|
|
conf["rules"].append(qubesadmin.firewall.Rule(None,action='accept'
|
|
|
|
, expire=int(datetime.datetime.now().strftime("%s"))+\
|
|
|
|
tempFullAccessTime*60))
|
2014-03-28 05:19:07 +01:00
|
|
|
|
2012-03-12 15:54:16 +01:00
|
|
|
if self.fw_changed:
|
2017-07-12 14:10:43 +02:00
|
|
|
self.write_firewall_conf(self.__vm, conf)
|
2012-03-12 15:54:16 +01:00
|
|
|
|
2017-10-13 18:04:49 +02:00
|
|
|
def populate_edit_dialog(self, dialog, row):
|
|
|
|
address = self.get_column_string(0, self.children[row])
|
|
|
|
dialog.addressComboBox.setItemText(0, address)
|
|
|
|
dialog.addressComboBox.setCurrentIndex(0)
|
|
|
|
service = self.get_column_string(1, self.children[row])
|
|
|
|
if service == "any":
|
|
|
|
service = ""
|
|
|
|
dialog.serviceComboBox.setItemText(0, service)
|
|
|
|
dialog.serviceComboBox.setCurrentIndex(0)
|
|
|
|
protocol = self.get_column_string(2, self.children[row])
|
|
|
|
if protocol == "tcp":
|
|
|
|
dialog.tcp_radio.setChecked(True)
|
|
|
|
elif protocol == "udp":
|
|
|
|
dialog.udp_radio.setChecked(True)
|
|
|
|
else:
|
|
|
|
dialog.any_radio.setChecked(True)
|
|
|
|
|
|
|
|
def run_rule_dialog(self, dialog, row = None):
|
|
|
|
if dialog.exec_():
|
|
|
|
|
|
|
|
address = str(dialog.addressComboBox.currentText())
|
|
|
|
service = str(dialog.serviceComboBox.currentText())
|
|
|
|
|
|
|
|
rule = qubesadmin.firewall.Rule(None,action='accept')
|
|
|
|
|
|
|
|
if address is not None and address != "*":
|
|
|
|
try:
|
|
|
|
rule.dsthost = address
|
|
|
|
except ValueError:
|
2017-11-06 22:46:35 +01:00
|
|
|
QtGui.QMessageBox.warning(None, self.tr("Invalid address"),
|
2017-10-13 18:04:49 +02:00
|
|
|
self.tr("Address '{0}' is invalid.").format(address))
|
|
|
|
|
|
|
|
if dialog.tcp_radio.isChecked():
|
|
|
|
rule.proto = 'tcp'
|
|
|
|
elif dialog.udp_radio.isChecked():
|
|
|
|
rule.proto = 'udp'
|
|
|
|
|
|
|
|
if '-' in service:
|
|
|
|
try:
|
|
|
|
rule.dstports = service
|
|
|
|
except ValueError:
|
2017-11-06 23:18:18 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
|
|
|
self.tr("Invalid port or service"),
|
2017-10-13 18:04:49 +02:00
|
|
|
self.tr("Port number or service '{0}' is invalid.")
|
|
|
|
.format(service))
|
|
|
|
elif service is not None:
|
|
|
|
try:
|
|
|
|
rule.dstports = service
|
|
|
|
except (TypeError, ValueError) as ex:
|
|
|
|
if self.get_service_port(service) is not None:
|
|
|
|
rule.dstports = self.get_service_port(service)
|
|
|
|
else:
|
2017-11-06 22:46:35 +01:00
|
|
|
QtGui.QMessageBox.warning(None,
|
2017-10-13 18:04:49 +02:00
|
|
|
self.tr("Invalid port or service"),
|
|
|
|
self.tr("Port number or service '{0}' is invalid.")
|
|
|
|
.format(service))
|
|
|
|
|
|
|
|
if row is not None:
|
|
|
|
self.setChild(row, rule)
|
|
|
|
else:
|
|
|
|
self.appendChild(rule)
|
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
def index(self, row, column, parent=QtCore.QModelIndex()):
|
2011-02-21 18:15:35 +01:00
|
|
|
if not self.hasIndex(row, column, parent):
|
2017-11-06 22:46:35 +01:00
|
|
|
return QtCore.QModelIndex()
|
2011-02-21 18:15:35 +01:00
|
|
|
|
|
|
|
return self.createIndex(row, column, self.children[row])
|
|
|
|
|
|
|
|
def parent(self, child):
|
2017-11-06 22:46:35 +01:00
|
|
|
return QtCore.QModelIndex()
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
def rowCount(self, parent=QtCore.QModelIndex()):
|
2011-02-21 18:15:35 +01:00
|
|
|
return len(self)
|
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
def columnCount(self, parent=QtCore.QModelIndex()):
|
2017-10-13 18:04:49 +02:00
|
|
|
return len(self.__columnNames)
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
def hasChildren(self, index=QtCore.QModelIndex()):
|
2011-02-21 18:15:35 +01:00
|
|
|
parentItem = index.internalPointer()
|
|
|
|
if parentItem is not None:
|
2014-03-28 05:15:52 +01:00
|
|
|
return False
|
2011-02-21 18:15:35 +01:00
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
def data(self, index, role=QtCore.Qt.DisplayRole):
|
|
|
|
if index.isValid() and role == QtCore.Qt.DisplayRole:
|
2017-10-13 18:04:49 +02:00
|
|
|
return self.get_column_string(index.column()
|
|
|
|
,self.children[index.row()])
|
2011-02-21 18:15:35 +01:00
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
def headerData(self, section, orientation, role=QtCore.Qt.DisplayRole):
|
2011-02-21 18:15:35 +01:00
|
|
|
if section < len(self.__columnNames) \
|
2017-11-06 23:18:18 +01:00
|
|
|
and orientation == QtCore.Qt.Horizontal \
|
|
|
|
and role == QtCore.Qt.DisplayRole:
|
2011-02-21 18:15:35 +01:00
|
|
|
return self.__columnNames[section]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def children(self):
|
|
|
|
return self.__children
|
|
|
|
|
|
|
|
def appendChild(self, child):
|
|
|
|
row = len(self)
|
2017-11-06 22:46:35 +01:00
|
|
|
self.beginInsertRows(QtCore.QModelIndex(), row, row)
|
2011-02-21 18:15:35 +01:00
|
|
|
self.children.append(child)
|
|
|
|
self.endInsertRows()
|
|
|
|
index = self.createIndex(row, 0, child)
|
|
|
|
self.dataChanged.emit(index, index)
|
2014-03-28 05:15:52 +01:00
|
|
|
self.fw_changed = True
|
2011-02-21 18:15:35 +01:00
|
|
|
|
|
|
|
def removeChild(self, i):
|
|
|
|
if i >= len(self):
|
|
|
|
return
|
|
|
|
|
2017-11-06 22:46:35 +01:00
|
|
|
self.beginRemoveRows(QtCore.QModelIndex(), i, i)
|
2011-02-21 18:15:35 +01:00
|
|
|
del self.children[i]
|
|
|
|
self.endRemoveRows()
|
|
|
|
index = self.createIndex(i, 0)
|
|
|
|
self.dataChanged.emit(index, index)
|
2014-03-28 05:15:52 +01:00
|
|
|
self.fw_changed = True
|
2011-03-02 15:06:39 +01:00
|
|
|
|
2011-03-03 22:42:10 +01:00
|
|
|
def setChild(self, i, child):
|
|
|
|
self.children[i] = child
|
|
|
|
index = self.createIndex(i, 0, child)
|
|
|
|
self.dataChanged.emit(index, index)
|
2014-03-28 05:15:52 +01:00
|
|
|
self.fw_changed = True
|
2011-03-03 22:42:10 +01:00
|
|
|
|
2011-02-21 18:15:35 +01:00
|
|
|
def clearChildren(self):
|
|
|
|
self.__children = list()
|
|
|
|
|
|
|
|
def __len__(self):
|
|
|
|
return len(self.children)
|
2012-02-10 00:30:45 +01:00
|
|
|
|