diff options
author | Dexter Morgan <dmorgan@mageia.org> | 2011-06-02 20:51:35 +0000 |
---|---|---|
committer | Dexter Morgan <dmorgan@mageia.org> | 2011-06-02 20:51:35 +0000 |
commit | a9b2bdafaf625d10aef2f476aa4014fd36c846bc (patch) | |
tree | 2364afc0ee6739b59a25c44d68c9f003bcaf03d9 /perl-install/standalone/draksec | |
download | drakx-a9b2bdafaf625d10aef2f476aa4014fd36c846bc.tar drakx-a9b2bdafaf625d10aef2f476aa4014fd36c846bc.tar.gz drakx-a9b2bdafaf625d10aef2f476aa4014fd36c846bc.tar.bz2 drakx-a9b2bdafaf625d10aef2f476aa4014fd36c846bc.tar.xz drakx-a9b2bdafaf625d10aef2f476aa4014fd36c846bc.zip |
Branch for updates
Diffstat (limited to 'perl-install/standalone/draksec')
-rwxr-xr-x | perl-install/standalone/draksec | 236 |
1 files changed, 236 insertions, 0 deletions
diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec new file mode 100755 index 000000000..96ce4b3df --- /dev/null +++ b/perl-install/standalone/draksec @@ -0,0 +1,236 @@ +#!/usr/bin/perl +#***************************************************************************** +# +# Copyright (c) 2002-2008 Christian Belisle +# Thierry Vignaud <tvignaud@mandriva.com> +# Eugeni Dodonov <eugeni@andriva.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2, as +# published by the Free Software Foundation. +# +# 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 +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +#***************************************************************************** + +use strict; +use lib qw(/usr/lib/libDrakX); +use common; +use standalone; +use vars qw($MODE %options); +use interactive; +use mygtk2 qw(gtknew gtkset); +use ugtk2 qw(:helpers :wrappers :ask :create); +use run_program; +use security::level; +use security::msec; +use security::help; +use security::l10n; + +#$MODE = 'basic'; +#$0 =~ /draksec-firewall$/ and $MODE = 'firewall'; +#$0 =~ /draksec-perms$/ and $MODE = 'perms'; + +#/^-?-(\S+)$/ and $options{$1} = 1 foreach @ARGV; + + +my $in = 'interactive'->vnew('su'); + +$ugtk2::wm_icon = "/usr/share/mcc/themes/default/draksec-mdk.png"; +my ($w, %fields); + +############################ I18N ################################### + +my @help; + +my %translations = ( + 'ALL' => N("ALL"), + 'LOCAL' => N("LOCAL"), + 'NONE' => N("NONE"), + 'default' => N("Default"), + 'ignore' => N("Ignore"), + 'no' => N("No"), + 'yes' => N("Yes"), +); +my %inv_translations = reverse %translations; + +sub to_i18n { map { $translations{$_} || $_ } @_ } +sub from_i18n { $inv_translations{$_[0]} || $_[0] } +sub resize { gtkset($_[0], width => 50) } + +%fields = security::l10n::fields(); +my %inv_fields = reverse %fields; + +# factorize this with rpmdrake and harddrake2 +sub wait_msg { + my $mainw = ugtk2->new(N("Please wait"), (modal => 1, transient => $w->{real_window})); + $mainw->{window}->add(gtknew('WrappedLabel', text => $_[0])); + $mainw->{rwindow}->show_all; + gtkset_mousecursor_wait($mainw->{rwindow}->window); + # ugly workaround for gtk+ not displaying subdialog contents: + Glib::Timeout->add(300, sub { Gtk2->main_quit; 0 }); + Gtk2->main; + $mainw; +} + +sub remove_wait_msg { $_[0]->destroy } + +sub new_nonedit_combo { + my ($string_list, $o_default_value) = @_; + gtknew('ComboBox', text => to_i18n($o_default_value), list => [ to_i18n(@$string_list) ]); +} + +my $msec = new security::msec; +$w = ugtk2->new(N("Security Level and Checks")); +my $window = $w->{window}; + + +############################ MAIN WINDOW ################################### +# Set different options to Gtk2::Window +unless ($::isEmbedded) { + $w->{rwindow}->set_position('center'); + $w->{rwindow}->set_title("DrakSec"); + $window->set_size_request(598, 520); +} + +# Connect the signals +$window->signal_connect('delete_event', sub { $window->destroy }); +$window->signal_connect('destroy', sub { ugtk2->exit }); + +$window->add(my $vbox = gtkshow(gtknew('VBox'))); + +my $common_opts = { col_spacings => 10, row_spacings => 5, mcc => 1 }; + +######################## AUTH ################################### +my %progs; + +my $auth_string = N("Configure authentication required to access %s tools"); + +my %auth = ( + no_passwd => N("No password"), + root_passwd => N("Root password"), + user_passwd => N("User password"), +); + +sub default_auth_value { + my ($prog) = @_; + my $link = readlink("/etc/pam.d/$prog"); + if ($link =~ /mageia-console-auth/) { + return $auth{no_passwd}; + } elsif ($link =~ /mageia-simple-auth/) { + my ($user) = cat_("/etc/security/console.apps/$prog") =~ /USER=(.*)/; + return $auth{root_passwd} if $user eq 'root'; + return $auth{user_passwd} if $user eq '<user>'; + } +} + +sub set_auth_value { + my ($prog, $auth) = @_; + if ($auth eq 'no_passwd') { + symlinkf('../../etc/pam.d/mageia-console-auth', "/etc/pam.d/$prog"); + } else { + symlinkf('../../etc/pam.d/mageia-simple-auth', "/etc/pam.d/$prog"); + my $value = $auth eq 'user_passwd' ? '<user>' : 'root'; + substInFile { + s/^USER=.*/USER=$value/; + } "/etc/security/console.apps/$prog"; + } +} + +my %descr = ( + + rpmdrake => N("Software Management"), + mageiaupdate => N("%s Update"), + 'drakrpm-edit-media' => N("Software Media Manager"), + drak3d => N("Configure 3D Desktop effects"), + xfdrake => N("Graphical Server Configuration"), + drakmouse => N("Mouse Configuration"), + drakkeyboard => N("Keyboard Configuration"), + drakups => N("UPS Configuration"), + drakconnect => N("Network Configuration"), + drakhosts => N("Hosts definitions"), + draknetcenter => N("Network Center"), + drakroam => N("Wireless Network Roaming"), + drakvpn => N("VPN"), + drakproxy => N("Proxy Configuration"), + drakgw => N("Connection Sharing"), + drakauth => N("Authentication"), + drakbackup => N("Backups"), + drakfont => N("Import fonts"), + draklog => N("Logs"), + drakxservices => N("Services"), + userdrake => N("Users"), + drakclock => N("Date, Clock & Time Zone Settings"), + drakboot => N("Boot Configuration"), +); + + + + + +####################### OK CANCEL BUTTONS ################################## +gtkpack_($vbox, + 0, gtkshow(gtknew('VBox', spacing => 5, children => [ + if_(!$::isEmbedded, 0, Gtk2::Banner->new('/usr/share/mcc/themes/default/drakperm-mdk.png', N("Permissions"))), + 0, gtknew('Label', text => $auth_string, alignment => [ 0.5, 0]) + ])), + 1, gtkshow(create_scrolled_window( + gtknew('VBox', children => [ + 1, create_packtable( + $common_opts, + map { + my ($title, $progs) = @$_; + ([ gtknew('Title2', label => $title), '' ], + map { + [ + gtkshow(gtknew('Label_Left', line_wrap => 1, text => $descr{$_} || $_)), + $progs{$_} = new_nonedit_combo([ + @auth{qw(user_passwd root_passwd no_passwd)} + ], + default_auth_value($_) + #$msec->get_check_value($opt) + ) + ]; + } split(' ', $progs) + ); + } ( + [ N("Software Management"), 'rpmdrake mageiaupdate drakrpm-edit-media' ], + [ N("Hardware"), 'drak3d xfdrake drakmouse drakkeyboard drakups' ], + [ N("Network"), 'drakconnect drakhosts draknetcenter drakroam drakvpn drakproxy drakgw' ], + [ N("System"), 'drakauth drakbackup drakfont draklog drakxservices userdrake drakclock' ], + [ N("Boot"), 'drakboot' ], + ) + ) + ]))), + + 0, create_okcancel(my $oc = + { + cancel_clicked => sub { ugtk2->exit(0) }, + ok_clicked => sub { + log::explanations("Setting up right delegation"); + my %rev_auth = reverse %auth; + foreach my $key (keys %progs) { + my $value = $progs{$key}->get_text; + set_auth_value($key, $rev_auth{$value}); + } + + remove_wait_msg($w); + ugtk2->exit(0); + } + }, + undef, undef, '' + ), + ); + +$oc->{cancel}->can_default(1); +$oc->{cancel}->grab_default; + +$w->main; +ugtk2->exit(0); |