Imported Upstream version 3.3.1
[debian/amanda] / common-src / amcryptsimple.pl
1 #!@PERL@ -w
2 #
3 # Copyright (c) 2007,2008 Zmanda, Inc.  All Rights Reserved.
4 #
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 as published
7 # by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 # for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with this program; if not, write to the Free Software Foundation, Inc.,
16 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # Contact information: Zmanda Inc, 465 S. Mathilda Ave., Suite 300
19 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
20 #
21
22
23
24 # Run perl.
25 eval '(exit $?0)' && eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
26          & eval 'exec /usr/bin/perl -S $0 $argv:q'
27                 if 0;
28
29 use Time::Local;
30
31 my $AMANDA='@CLIENT_LOGIN@';
32
33 my $ddebug = 1;   # set to 1 to print signal debug to stderr
34
35 my $sigint_seen   = 0;
36 my $sigpipe_seen  = 0;
37 my $sighup_seen   = 0;
38 my $sigill_seen   = 0;
39 my $sigterm_seen  = 0;
40 my $sigsegv_seen  = 0;
41 my $sigquit_seen  = 0;
42 my $sigfpe_seen   = 0;
43
44 $AMANDA_HOME = (getpwnam($AMANDA) )[7] || die "Cannot find $AMANDA home directory\n" ;
45 $AM_PASS = "$AMANDA_HOME/.am_passphrase";
46
47 unless ( -e $AM_PASS ) {
48   die "secret key $AM_PASS not found\n";
49 }
50
51
52 $ENV{'PATH'} = '/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/csw/bin';
53
54 $ENV{'GNUPGHOME'} = "$AMANDA_HOME/.gnupg";
55
56 sub do_gpg_agent() {
57     my $path=`which gpg-agent 2>/dev/null`;
58     chomp $path;
59     if (-x $path) {
60         return "gpg-agent --daemon --";
61     }
62     return ""
63 }
64
65 sub encrypt() {
66     my $gpg_agent_cmd = do_gpg_agent();
67     system "$gpg_agent_cmd gpg --batch --no-secmem-warning --disable-mdc --symmetric --cipher-algo AES256 --passphrase-fd 3  3<$AM_PASS";
68     if ($? == -1) {
69         print STDERR "failed to execute gpg: $!\n";
70         exit (1);
71     } elsif ($? & 127) {
72         printf STDERR "gpg died with signal %d\n", ($? & 127);
73         exit ($?);
74     } elsif ($? >> 8) {
75         printf STDERR "gpg exited with value %d\n", ($? >> 8);
76         exit ($? >> 8);
77     }
78 }
79
80 sub decrypt() {
81     my $gpg_agent_cmd = do_gpg_agent();
82     system "$gpg_agent_cmd gpg --batch --quiet --no-mdc-warning --decrypt --passphrase-fd 3  3<$AM_PASS";
83     if ($? == -1) {
84         print STDERR "failed to execute gpg: $!\n";
85         exit (1);
86     } elsif ($? & 127) {
87         printf STDERR "gpg died with signal %d\n", ($? & 127);
88         exit ($?);
89     } elsif ($? >> 8) {
90         printf STDERR "gpg exited with value %d\n", ($? >> 8);
91         exit ($? >> 8);
92     }
93 }
94
95 sub int_catcher {
96     $sigint_seen = 1;
97 }
98
99 sub pipe_catcher {
100     $sigpipe_seen = 1;
101 }
102
103 sub hup_catcher {
104     $sighup_seen = 1;
105 }
106
107 sub ill_catcher {
108     $sigill_seen = 1;
109 }
110
111 sub term_catcher {
112     $sigterm_seen = 1;
113 }
114
115 sub segv_catcher {
116     $sigsegv_seen = 1;
117 }
118
119 sub quit_catcher {
120     $sigquit_seen = 1;
121 }
122
123 sub fpe_catcher {
124     $sigfpe_seen = 1;
125 }
126
127 #main
128
129 $SIG{'INT'}   = 'int_catcher';
130 $SIG{'PIPE'}  = 'pipe_catcher';
131 $SIG{'HUP'}   = 'hup_catcher';
132 $SIG{'ILL'}   = 'ill_catcher';
133 $SIG{'TERM'}  = 'term_catcher';
134 $SIG{'SEGV'}  = 'segv_catcher';
135 $SIG{'QUIT'}  = 'quit_catcher';
136 $SIG{'FPE'}   = 'FPE_catcher';
137
138
139 if ( $#ARGV > 0 ) {
140      die "Usage: $0 [-d]\n";
141 }
142
143 if ( $#ARGV==0 && $ARGV[0] eq "-d" ) {
144     decrypt();
145 }
146 else {
147     encrypt();
148 }
149
150 if ( $ddebug  ) {
151     if ( $sigint_seen )  { print STDERR "strange sigint seen = $sigint_seen\n"; }
152     if ( $sigpipe_seen ) { print STDERR "strange sigpipe seen = $sigpipe_seen\n"; }
153     if ( $sighup_seen )  { print STDERR "strange sighup seen = $sighup_seen\n"; }
154     if ( $sigill_seen )  { print STDERR "strange sigill seen = $sigill_seen\n"; }
155     
156     if ( $sigterm_seen ) { print STDERR "strange sigterm seen = $sigterm_seen\n"; }
157     if ( $sigsegv_seen ) { print STDERR "strange sigsegv seen = $sigsegv_seen\n"; }
158     if ( $sigquit_seen ) { print STDERR "strange sigquit seen = $sigquit_seen\n"; }
159     if ( $sigfpe_seen )  { print STDERR "strange sigfpe seen = $sigfpe_seen\n"; }
160     
161 }
162
163 $SIG{'INT'}  = 'DEFAULT';
164 $SIG{'PIPE'} = 'DEFAULT';
165 $SIG{'HUP'}  = 'DEFAULT';
166 $SIG{'ILL'}  = 'DEFAULT';
167 $SIG{'TERM'} = 'DEFAULT';
168 $SIG{'SEGV'} = 'DEFAULT';
169 $SIG{'QUIT'} = 'DEFAULT';
170 $SIG{'FPE'}  = 'DEFAULT';
171