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
|
#
# firewall_gui.py: firewall setup screen
#
# Copyright 2001-2004 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import checklist
import gtk
import gui
from iw_gui import *
from isys import *
from rhpl.translate import _, N_
from flags import flags
from constants import *
selopts = [ N_("Disabled"), N_("Warn"), N_("Active") ]
class FirewallWindow (InstallWindow):
windowTitle = N_("Firewall")
htmlTag = "securitylevel"
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
def getNext (self):
self.security.setSELinux(self.selinux_combo.get_active())
if self.disabled_radio.get_active ():
rc2 = self.intf.messageWindow(_("Warning - No Firewall"),
_("If this system is attached directly to the Internet or "
"is on a large public network, it is recommended that a "
"firewall be configured to help prevent unauthorized "
"access. However, you have selected not to "
"configure a firewall. Choose \"Proceed\" to continue "
"without a firewall."),
type="custom", custom_icon="warning",
custom_buttons=[_("_Configure Firewall"), _("_Proceed")])
if rc2 == 0:
raise gui.StayOnScreen
self.firewall.enabled = 0
else:
self.firewall.enabled = 1
count = 0
for service in self.firewall.services:
val = self.incoming.get_active(count)
service.set_enabled(val)
count = count + 1
def activate_firewall (self, widget):
if self.disabled_radio.get_active ():
self.table.set_sensitive(False)
else:
self.table.set_sensitive(True)
def getScreen (self, intf, network, firewall, security):
self.firewall = firewall
self.security = security
self.network = network
self.intf = intf
self.devices = self.network.available().keys()
self.devices.sort()
self.netCBs = {}
box = gtk.VBox (False, 5)
box.set_border_width (5)
label = gui.WrappingLabel (_("A firewall can help prevent "
"unauthorized access to your computer "
"from the outside world. Would you like "
"to enable a firewall?"))
label.set_alignment (0.0, 0)
label.set_size_request(450, -1)
box.pack_start(label, False)
vbox = gtk.VBox (False)
self.disabled_radio = gtk.RadioButton (None, (_("N_o firewall")))
self.enabled_radio = gtk.RadioButton (self.disabled_radio,
(_("_Enable firewall")))
self.disabled_radio.connect("clicked", self.activate_firewall)
self.enabled_radio.connect("clicked", self.activate_firewall)
vbox.pack_start (self.disabled_radio)
vbox.pack_start (self.enabled_radio)
a = gtk.Alignment ()
a.add (vbox)
a.set (0.3, 0, 0.7, 1.0)
box.pack_start (a, False, 5)
self.table = gtk.Table (2, 8)
box.pack_start (self.table, False, 5)
y = 0
label = gui.WrappingLabel (_("You can use a firewall to allow "
"access to specific services on your "
"computer from other computers. Which "
"services, if any, do you wish to "
"allow access to ?"))
label.set_size_request(400, -1)
label.set_alignment(0.0, 0.0)
self.table.attach(label, 0, 2, y, y + 1, gtk.EXPAND | gtk.FILL, gtk.FILL, 5, 5)
y = y + 1
hbox = gtk.HBox(False, 10)
self.incoming = checklist.CheckList(1)
self.incoming.set_size_request(-1, 125)
incomingSW = gtk.ScrolledWindow()
incomingSW.set_border_width(5)
incomingSW.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
incomingSW.set_shadow_type(gtk.SHADOW_IN)
incomingSW.add(self.incoming)
for serv in self.firewall.services:
self.incoming.append_row ( (_(serv.get_name()), serv),
serv.get_enabled() )
self.table.attach (incomingSW, 0, 2, y, y + 1, gtk.EXPAND|gtk.FILL, gtk.FILL, 5, 5)
if self.firewall.enabled == 0:
self.disabled_radio.set_active (True)
else:
self.enabled_radio.set_active(True)
self.activate_firewall(None)
# SELinux widgets
selbox = gtk.VBox()
selbox.set_spacing(8)
l = gui.WrappingLabel(_("Security Enhanced Linux (SELinux) "
"provides finer-grained "
"security controls than those available "
"in a traditional Linux system. It can "
"be set up in a disabled state, a state "
"which only warns about things which would "
"be denied, or a fully active state."))
l.set_size_request(400, -1)
l.set_alignment(0.0, 0.0)
selbox.pack_start(l, False)
label = gtk.Label(_("Enable _SELinux?:"))
label.set_use_underline(True)
self.selinux_combo = gtk.combo_box_new_text()
label.set_mnemonic_widget(self.selinux_combo)
for i in selopts:
self.selinux_combo.append_text(_(i))
self.selinux_combo.set_active(self.security.getSELinux())
hbox = gtk.HBox()
hbox.set_spacing(8)
hbox.pack_start(label, False)
hbox.pack_start(self.selinux_combo, False)
selbox.pack_start(hbox)
if flags.selinux == 0:
selbox.set_sensitive(False)
if (SELINUX_DEFAULT == 1) or flags.selinux:
box.pack_start (gtk.HSeparator(), False)
box.pack_start(selbox, False)
return box
|