summaryrefslogtreecommitdiffstats
path: root/bin/drakguard
blob: 27ecb5b537bddc8fd9400dd3abdb26d0c277809e (plain)
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
#!/usr/bin/perl

use lib qw(/usr/lib/libDrakX);
# i18n: IMPORTANT: to get correct namespace (drakguard instead of libDrakX)
BEGIN { unshift @::textdomains, 'drakguard' }
use strict;
use diagnostics;
use common;
use standalone;
use mygtk2;
use ugtk2 qw(:create :helpers :wrappers);
use Gtk2::SimpleList;
use interactive;
use network::shorewall;
use network::squid;
use services;

my $toolname = 'drakguard';
my $title = N("Parental Control");
my $icon = "IC-control-52";

$ugtk2::wm_icon = $icon;
my $w = ugtk2->new($title);
#- so that transient_for is defined, for wait messages and popups to be centered
$::main_window = $w->{real_window};
my $in = interactive->vnew('su');

my $shorewall = network::shorewall::read();

my $allusers_list = Gtk2::SimpleList->new(N("All users") => 'text');
$allusers_list->get_selection->set_mode('multiple');
@{$allusers_list->{data}} = sort(list_users());

my $users_list = Gtk2::SimpleList->new(N("Allowed users") => 'text');
$users_list->get_selection->set_mode('multiple');

my $whitelist = Gtk2::SimpleList->new(N("Allowed addresses") => 'text');
$whitelist->get_selection->set_mode('multiple');
my $blacklist = Gtk2::SimpleList->new(N("Forbidden addresses") => 'text');
$blacklist->get_selection->set_mode('multiple');

my ($enable, $level, $time_control, $allow_time_change);
$level ||= "Normal";


sub update_time_change {
    gtkval_modify(\$allow_time_change, $enable && $time_control);
}

$w->{ok_clicked} = \&save;
$w->{cancel_clicked} = \&quit_gui;

gtkadd($w->{window},
       gtknew('VBox', spacing => 5, children => [
           $::isEmbedded ? () : (0, Gtk2::Banner->new($icon, $title)),
           1, gtknew('Notebook', children => [
               gtknew('Label', text => N("Configuration")),
               gtknew('VBox', spacing => 5, border_width => 5, children => [
                   1, gtknew('WrappedLabel', text => N("This tool allows to configure parental control. It can block access to web sites and restrict connection during a specified timeframe.")),
                   1, gtknew('Label'),
                   0, gtknew('Title2', label => N("Main options")),
                   0, gtknew('CheckButton', text => N("Enable parental control"),
                             active_ref => \$enable, toggled => \&update_time_change),
                   0, gtknew('HBox', children_tight => [
                       gtknew('Label_Left', text_markup => N("Control level"),
                                 alignment => [ 0, 0.5 ]),
                       gtknew('ComboBox',
                                 list => [ N_("Low"), N_("Normal"), N_("High") ],
                                 text_ref => \$level,
                                 sensitive_ref => \$enable,
                                 format => \&translate),
                   ]),
                   1, gtknew('Label'),
                   0, gtknew('Title2', label => N("User access")),
                   0, gtknew('HBox', spacing => 5, children_tight => [
                       $allusers_list,
                       gtknew('VBox', spacing => 5, children_tight => [
                           gtknew('Button', text => N("Add")),
                           gtknew('Button', text => N("Remove")),
                       ]),
                       $users_list,
                   ]),
                   1, gtknew('Label'),
                   0, gtknew('Title2', label => N("Time control")),
                   0, gtknew('CheckButton', text => N("Allow connections only between these times:"),
                             active_ref => \$time_control, sensitive_ref => \$enable,
                             toggled => \&update_time_change),
                   0, gtknew('HBox', spacing => 20, children_tight => [
                       gtknew('Label', text => N("Start:")),
                       gtknew('HBox', spacing => 2, children_tight => [
                           gtknew('SpinButton', lower => 0, upper => 24, step_increment => 1, value => 18,
                                  sensitive_ref => \$allow_time_change),
                           gtknew('Label', text => ':'),
                           gtknew('SpinButton', lower => 0, upper => 60, step_increment => 1,
                                  sensitive_ref => \$allow_time_change),
                       ]),
                       gtknew('Label'),
                       gtknew('Label', text => N("End:")),
                       gtknew('HBox', spacing => 2, children_tight => [
                           gtknew('SpinButton', lower => 0, upper => 24, step_increment => 1, value => 21,
                                  sensitive_ref => \$allow_time_change),
                           gtknew('Label', text => ':'),
                           gtknew('SpinButton', lower => 0, upper => 60, step_increment => 1,
                                  sensitive_ref => \$allow_time_change),
                       ]),
                   ]),
               ]),
               gtknew('Label', text => N("Blacklist")),
               gtknew('VBox', spacing => 5, children => [
                   1, gtknew('ScrolledWindow', width => 500, height => 300, child => $blacklist),
                   0, gtknew('HButtonBox', border_width => 5, layout => 'edge', children_loose => [
                       gtknew('Button', text => N("Remove from blacklist"), clicked => sub { unblacklist(get_selected_blacklist()) }),
                   ]),
               ]),
               gtknew('Label', text => N("Whitelist")),
               gtknew('VBox', spacing => 5, children => [
                   1, gtknew('ScrolledWindow', width => 500, height => 300, child => $whitelist),
                   0, gtknew('HButtonBox', border_width => 5, layout => 'edge', children_loose => [
                       gtknew('Button', text => N("Remove from whitelist"), clicked => sub { unwhitelist(get_selected_whitelist()) }),
                   ]),
               ]),
           ]),
           0, $w->create_okcancel(
               undef, undef, undef,
               [ N("Help"), sub { run_program::raw({ detach => 1 }, 'drakhelp', '--id', $toolname) } ]),
       ]),
);

$w->show;
Gtk2->main;

ugtk2::exit(0);

sub list_remove_addr {
    my ($list, @addr) = @_;
    #- workaround buggy Gtk2::SimpleList array abstraction, it destroys references
    @$list = map { member($_->[0], @addr) ? () : [ @$_ ] } @$list;
}

sub get_selected_blacklist() {
    uniq(map { $blacklist->{data}[$_][0] } $blacklist->get_selected_indices);
}

sub blacklist {
    my @addr = @_;
}

sub unblacklist {
    my @addr = @_;
    list_remove_addr($blacklist->{data}, @addr);
}

sub get_selected_whitelist() {
    uniq(map { $whitelist->{data}[$_][0] } $whitelist->get_selected_indices);
}

sub whitelist {
    my @addr = @_;
}

sub unwhitelist {
    my @addr = @_;
    list_remove_addr($whitelist->{data}, @addr);
}

sub quit_gui() { Gtk2->main_quit }

sub save {
    my $proxy_port = 3128;
    my $proxy_user = 'squid';
    my $guardian_port = 8080;
    my $guardian_user = 'dansguardian';

    $enable &&
      $in->do_pkgs->ensure_binary_is_installed('shorewall', 'shorewall') &&
      $in->do_pkgs->ensure_is_installed('squid', '/usr/sbin/squid') &&
      $in->do_pkgs->ensure_is_installed('dansguardian', '/usr/sbin/dansguardian')
        or quit_gui();

    apply_blacklist();
    apply_whitelist();
    enable_transparent_proxy($proxy_port);
    services::set_status($_, $enable) foreach qw(squid dansguardian);

    $shorewall->{disabled} = 0 if $enable;
    $shorewall->{accept_local_user}{http} = $enable && $proxy_user;
    $shorewall->{accept_local_user}{$proxy_port} = $enable && $guardian_user;
    network::shorewall::set_redirected_ports($shorewall, 'tcp', $guardian_port, if_($enable, 'http', $proxy_port));
    network::shorewall::write($shorewall, $in);

    quit_gui();
}

sub enable_transparent_proxy {
    my ($port) = @_;
    #- FIXME: use network::squid once it is rewritten to be more gentle with the config file
    my $done;
    my $to_add = "http_port $port transparent\n";
    substInFile {
        $done = 1 if s|^\s*http_port.*\n|$to_add|;
        $_ .= $to_add if eof && !$done;
    } $network::squid::squid_conf_file;
}

sub include_guardian_file {
    my ($guardian_file, $external_file, $o_category) = @_;
    my $to_add = ".Include<$external_file>\n";
    my @all = cat_($guardian_file);
    if (!member($to_add, @all)) {
        output_p($guardian_file, @all, $to_add);
    }
    output_p($external_file, if_($o_category, qq(#listcategory: "$o_category"\n)))
      unless -f $external_file;
}

sub apply_blacklist() {
    my $blacklist_top = "/etc/dansguardian/lists/bannedsitelist";
    my $blacklist_url_file = "/etc/dansguardian/lists/blacklists/drakguard/urls";
    my $blacklist_category = "blocked by Mandriva parental control tool";
    include_guardian_file($blacklist_top, $blacklist_url_file, $blacklist_category);
}

sub apply_whitelist() {
    my $whitelist_top = "/etc/dansguardian/lists/exceptionurllist";
    my $whitelist_url_file = "/etc/dansguardian/lists/whitelists/drakguard/urls";
    include_guardian_file($whitelist_top, $whitelist_url_file);
}