3 # caff -- CA - Fire and Forget
6 # Copyright (c) 2004, 2005 Peter Palfrader <peter@palfrader.org>
10 # Redistribution and use in source and binary forms, with or without
11 # modification, are permitted provided that the following conditions
13 # 1. Redistributions of source code must retain the above copyright
14 # notice, this list of conditions and the following disclaimer.
15 # 2. Redistributions in binary form must reproduce the above copyright
16 # notice, this list of conditions and the following disclaimer in the
17 # documentation and/or other materials provided with the distribution.
18 # 3. The name of the author may not be used to endorse or promote products
19 # derived from this software without specific prior written permission.
21 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 caff -- CA - Fire and Forget
42 =item B<caff> [-u I<yourkeyid>] I<keyid> [I<keyid> ..]
48 CA Fire and Forget is a script that helps you in keysigning. It takes a list
49 of keyids on the command line, fetches them from a keyserver and calls GnuPG so
50 that you can sign it. It then mails each key to all its email addresses - only
51 including the one UID that we send to in each mail, pruned from all but self
52 sigs and sigs done by you.
58 =item B<-u> I<yourkeyid>
60 Select the key that is used for signing, in case you have more than one key.
68 =item $HOME/.caffrc - configuration file
72 =head1 CONFIGURATION FILE OPTIONS
74 The configuration file is a perl script that sets values in the hash B<%CONFIG>.
78 $CONFIG{owner} = q{Peter Palfrader};
79 $CONFIG{email} = q{peter@palfrader.org};
80 $CONFIG{keyid} = [ qw{DE7AAF6E94C09C7F 62AF4031C82E0039} ];
86 =item B<caffhome> [string]
88 Base directory for the files caff stores. Default: B<$HOME/.caff/>.
90 =item B<owner> [string]
92 Your name. B<REQUIRED>.
94 =item B<email> [string]
96 Your email address, used in From: lines. B<REQUIRED>.
98 =item B<keyid> [list of keyids]
100 A list of your keys. This is used to determine which signatures to keep
101 in the pruning step. If you select a key using B<-u> it has to be in
102 this list. B<REQUIRED>.
104 =item B<export-sig-age> [seconds]
106 Don't export UIDs by default, on which your latest signature is older
107 than this age. Default: B<24*60*60> (i.e. one day).
109 =item B<keyserver> [string]
111 Keyserver to download keys from. Default: B<subkeys.pgp.net>.
113 =item B<gpg> [string]
115 Path to the GnuPG binary. Default: B<gpg>.
117 =item B<gpg-sign> [string]
119 Path to the GnuPG binary which is used to sign keys. Default: what
122 =item B<gpg-delsig> [string]
124 Path to the GnuPG binary which is used to split off signatures. This is
125 needed while the upstream GnuPG is not fixed (there are 2 bugs in the
126 Debian Bug Tracking System). Default: what B<gpg> is set to.
128 =item B<secret-keyring> [string]
130 Path to your secret keyring. Default: B<$HOME/.gnupg/secring.gpg>.
132 =item B<also-encrypt-to> [keyid]
134 An additional keyid to encrypt messages to. Default: none.
136 =item B<no-download> [boolean]
138 If true, then skip the step of fetching keys from the keyserver.
141 =item B<no-sign> [boolean]
143 If true, then skip the signing step. Default: B<0>.
149 Peter Palfrader <peter@palfrader.org>
153 http://pgp-tools.alioth.debian.org/
161 use File
::Temp
qw{tempdir
};
165 use GnuPG
::Interface
;
168 my $REVISION = '$Rev$';
169 my ($REVISION_NUMER) = $REVISION =~ /(\d+)/;
170 my $VERSION = "0.0.0.$REVISION_NUMER";
173 my $config = $ENV{'HOME'} . '/.caffrc';
174 -f
$config or die "No file $config present. See caff(1).\n";
175 unless (scalar eval `cat $config`) {
176 die "Couldn't parse $config: $EVAL_ERROR\n" if $EVAL_ERROR;
179 $CONFIG{'caffhome'}=$ENV{'HOME'}.'/.caff' unless defined $CONFIG{'caffhome'};
180 die ("owner is not defined.\n") unless defined $CONFIG{'owner'};
181 die ("email is not defined.\n") unless defined $CONFIG{'email'};
182 die ("keyid is not defined.\n") unless defined $CONFIG{'keyid'};
183 die ("keyid is not an array ref\n") unless (ref $CONFIG{'keyid'} eq 'ARRAY');
184 for my $keyid (@
{$CONFIG{'keyid'}}) {
185 $keyid =~ /^[A-Fa-z0-9]{16}$/ or die ("key $keyid is not a long (16 digit) keyid.\n");
187 @
{$CONFIG{'keyid'}} = map { uc } @
{$CONFIG{'keyid'}};
188 $CONFIG{'export-sig-age'}= 24*60*60 unless defined $CONFIG{'export-sig-age'};
189 $CONFIG{'keyserver'} = 'subkeys.pgp.net' unless defined $CONFIG{'keyserver'};
190 $CONFIG{'gpg'} = 'gpg' unless defined $CONFIG{'gpg'};
191 $CONFIG{'gpg-sign'} = $CONFIG{'gpg'} unless defined $CONFIG{'gpg-sign'};
192 $CONFIG{'gpg-delsig'} = $CONFIG{'gpg'} unless defined $CONFIG{'gpg-delsig'};
193 $CONFIG{'secret-keyring'} = $ENV{'HOME'}.'/.gnupg/secring.gpg' unless defined $CONFIG{'secret-keyring'};
194 $CONFIG{'no-download'} = 0 unless defined $CONFIG{'no-download'};
195 $CONFIG{'no-sign'} = 0 unless defined $CONFIG{'no-sign'};
200 print "[NOTICE] $line\n";
204 print "[INFO] $line\n";
208 #print "[DEBUG] $line\n";
212 #print "[trace] $line\n";
216 #print "[trace2] $line\n";
221 stdin
=> IO
::Handle
->new(),
222 stdout
=> IO
::Handle
->new(),
223 stderr
=> IO
::Handle
->new(),
224 status
=> IO
::Handle
->new() );
225 my $handles = GnuPG
::Handles
->new( %fds );
226 return ($fds{'stdin'}, $fds{'stdout'}, $fds{'stderr'}, $fds{'status'}, $handles);
229 sub readwrite_gpg
($$$$$%) {
230 my ($in, $inputfd, $stdoutfd, $stderrfd, $statusfd, %options) = @_;
232 trace
("Entering readwrite_gpg.");
234 my ($first_line, $dummy) = split /\n/, $in;
235 debug
("readwrite_gpg sends ".(defined $first_line ?
$first_line : "<nothing>"));
237 local $INPUT_RECORD_SEPARATOR = undef;
238 my $sout = IO
::Select
->new();
239 my $sin = IO
::Select
->new();
242 trace
("input is $inputfd; output is $stdoutfd; err is $stderrfd; status is ".(defined $statusfd ?
$statusfd : 'undef').".");
244 $inputfd->blocking(0);
245 $stdoutfd->blocking(0);
246 $statusfd->blocking(0) if defined $statusfd;
247 $stderrfd->blocking(0);
248 $sout->add($stdoutfd);
249 $sout->add($stderrfd);
250 $sout->add($statusfd) if defined $statusfd;
253 my ($stdout, $stderr, $status) = ("", "", "");
254 my $exitwhenstatusmatches = $options{'exitwhenstatusmatches'};
255 trace
("doing stuff until we find $exitwhenstatusmatches") if defined $exitwhenstatusmatches;
257 my $readwrote_stuff_this_time = 0;
258 my $do_not_wait_on_select = 0;
259 my ($readyr, $readyw, $written);
260 while ($sout->count() > 0 || (defined($sin) && ($sin->count() > 0))) {
261 if (defined $exitwhenstatusmatches) {
262 if ($status =~ /$exitwhenstatusmatches/m) {
263 trace
("readwrite_gpg found match on $exitwhenstatusmatches");
264 if ($readwrote_stuff_this_time) {
265 trace
("read/write some more\n");
266 $do_not_wait_on_select = 1;
268 trace
("that's it in our while loop.\n");
274 $readwrote_stuff_this_time = 0;
275 trace
("select waiting for ".($sout->count())." fds.");
276 ($readyr, $readyw, undef) = IO
::Select
::select($sout, $sin, undef, $do_not_wait_on_select ?
0 : 1);
277 trace
("ready: write: ".(defined $readyw ?
scalar @
$readyw : 0 )."; read: ".(defined $readyr ?
scalar @
$readyr : 0));
278 for my $wfd (@
$readyw) {
279 $readwrote_stuff_this_time = 1;
280 if (length($in) != $offset) {
281 trace
("writing to $wfd.");
282 $written = $wfd->syswrite($in, length($in) - $offset, $offset);
285 if ($offset == length($in)) {
286 trace
("writing to $wfd done.");
287 unless ($options{'nocloseinput'}) {
289 trace
("$wfd closed.");
296 next unless (defined(@
$readyr)); # Wait some more.
298 for my $rfd (@
$readyr) {
299 $readwrote_stuff_this_time = 1;
301 trace
("reading from $rfd done.");
306 trace
("reading from $rfd.");
307 if ($rfd == $stdoutfd) {
309 trace2
("stdout is now $stdout\n================");
312 if (defined $statusfd && $rfd == $statusfd) {
314 trace2
("status is now $status\n================");
317 if ($rfd == $stderrfd) {
319 trace2
("stderr is now $stderr\n================");
324 trace
("readwrite_gpg done.");
325 return ($stdout, $stderr, $status);
329 my ($question, $default) = @_;
332 print $question,' ',($default ?
'[Y/n]' : '[y/N]'), ' ';
335 last if ((defined $answer) && (length $answer <= 1));
339 my $result = $default;
340 $result = 1 if $answer =~ /y/i;
341 $result = 0 if $answer =~ /n/i;
349 my $KEYEDIT_PROMPT = '^\[GNUPG:\] GET_LINE keyedit.prompt';
350 my $KEYEDIT_DELUID_PROMPT = '^\[GNUPG:\] GET_BOOL keyedit.remove.uid.okay';
351 my $KEYEDIT_DELSIG_PROMPT = '^\[GNUPG:\] GET_BOOL keyedit.delsig';
352 my $KEYEDIT_KEYEDIT_OR_DELSIG_PROMPT = '^\[GNUPG:\] (GET_BOOL keyedit.delsig|GET_LINE keyedit.prompt)';
353 my $KEYEDIT_DELSUBKEY_PROMPT = '^\[GNUPG:\] GET_BOOL keyedit.remove.subkey';
356 my $USER_AGENT = "caff $VERSION - (c) 2004, 2005 Peter Palfrader";
358 my $KEYSBASE = $CONFIG{'caffhome'}.'/keys';
359 my $GNUPGHOME = $CONFIG{'caffhome'}.'/gnupghome';
361 -d
$KEYSBASE || mkpath
($KEYSBASE , 0, 0700) or die ("Cannot create $KEYSBASE: $!\n");
362 -d
$GNUPGHOME || mkpath
($GNUPGHOME, 0, 0700) or die ("Cannot create $GNUPGHOME: $!\n");
365 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($NOW);
366 my $DATE_STRING = sprintf("%04d-%02d-%02d", $year+1900, $mon+1, $mday);
370 print STDERR
"caff $VERSION - (c) 2004, 2005 Peter Palfrader\n";
371 print STDERR
"Usage: $PROGRAM_NAME [-u <yourkeyid>] <keyid> [<keyid> ...]\n";
376 my ($gnupghome, $keyid) = @_;
378 my $gpg = GnuPG
::Interface
->new();
379 $gpg->call( $CONFIG{'gpg'} );
380 $gpg->options->hash_init(
381 'homedir' => $gnupghome,
383 $gpg->options->meta_interactive( 0 );
384 my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds
();
385 my $pid = $gpg->export_keys(handles
=> $handles, command_args
=> [ $keyid ]);
386 my ($stdout, $stderr, $status) = readwrite_gpg
('', $inputfd, $stdoutfd, $stderrfd, $statusfd);
392 #send_mail($address, $can_encrypt, $longkeyid, $uid, @attached);
393 sub send_mail
($$$@
) {
394 my ($address, $can_encrypt, $key_id, @keys) = @_;
396 my $message = "Hi,\n\n";
398 $message .= 'please find attached the user id'.(scalar @keys >= 2 ?
's' : '')."\n";
399 for my $key (@keys) {
400 $message .= "\t".$key->{'text'}."\n";
402 $message .= qq{of your key
$key_id signed by me
.
404 Note that I did
not upload your key to any keyservers
. If you want this
405 new signature to be available to others
, please upload it yourself
.
406 With GnuPG this can be done using
407 gpg
--keyserver subkeys
.pgp
.net
--send-key
$key_id
409 If you have any questions
, don
't hesitate to ask.
414 my $message_entity = MIME::Entity->build(
415 Type => "text/plain",
417 Disposition => 'inline
',
421 for my $key (@keys) {
422 $message_entity->attach(
423 Type => "application/pgp-keys",
424 Disposition => 'attachment
',
426 Description => "PGP Key 0x$key_id, uid ".($key->{'text
'}).' ('.($key->{'serial
'}).')',
427 Data => $key->{'key
'},
428 Filename => "0x$key_id.".$key->{'serial
'}.".asc");
432 my $message = $message_entity->stringify();
434 my $gpg = GnuPG::Interface->new();
435 $gpg->call( $CONFIG{'gpg
'} );
436 $gpg->options->hash_init( 'homedir
' => $GNUPGHOME,
437 'extra_args
' => '--always
-trust
',
439 $gpg->options->meta_interactive( 0 );
440 my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds();
441 $gpg->options->push_recipients( $key_id );
442 $gpg->options->push_recipients( $CONFIG{'also
-encrypt
-to
'} ) if defined $CONFIG{'also
-encrypt
-to
'};
443 my $pid = $gpg->encrypt(handles => $handles);
444 my ($stdout, $stderr, $status) = readwrite_gpg($message, $inputfd, $stdoutfd, $stderrfd, $statusfd);
447 warn ("No data from gpg for list-key $key_id\n");
452 $message_entity = MIME::Entity->build(
453 Type => 'multipart
/encrypted; protocol="application/pgp-encrypted
"');
455 $message_entity->attach(
456 Type => "application
/pgp
-encrypted
",
457 Disposition => 'attachment',
459 Data => "Version
: 1\n");
461 $message_entity->attach(
462 Type => "application
/octet
-stream
",
463 Filename => 'msg.asc',
464 Disposition => 'inline',
469 $message_entity->head->add("Subject
", "Your signed PGP key
0x
$key_id");
470 $message_entity->head->add("To
", $address);
471 $message_entity->head->add("From
", '"'.$CONFIG{'owner
'}.'" <'.$CONFIG{'email'}.'>');
472 $message_entity->head->add("User
-Agent
", $USER_AGENT);
473 $message_entity->send();
474 $message_entity->stringify();
477 sub sanitize_uid($) {
481 $good_uid =~ tr#/:\\#_#;
482 trace2("[sanitize_uid
] changed UID from
$uid to
$good_uid.\n") if $good_uid ne $uid;
489 usage() unless scalar @ARGV >= 1;
490 if ($ARGV[0] eq '-u') {
491 usage() unless scalar @ARGV >= 3;
494 unless ($USER =~ /^[A-Za-z0-9]{8,8}([A-Za-z0-9]{8})?$/) {
495 print STDERR "-u
$USER is
not a keyid
.\n";
500 for my $keyid (@ARGV) {
501 unless ($keyid =~ /^[A-Za-z0-9]{8}([A-Za-z0-9]{8})?$/) {
502 print STDERR "$keyid is
not a keyid
.\n";
505 push @KEYIDS, uc($keyid);
513 my $gpg = GnuPG::Interface->new();
514 $gpg->call( $CONFIG{'gpg'} );
515 $gpg->options->hash_init(
516 'homedir' => $GNUPGHOME,
517 'extra_args' => '--keyserver='.$CONFIG{'keyserver'} );
518 $gpg->options->meta_interactive( 0 );
519 my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds();
520 $gpg->options->hash_init( 'extra_args' => [ '--with-colons', '--fixed-list-mode' ] );
521 my $pid = $gpg->list_public_keys(handles => $handles, command_args => $CONFIG{'keyid'});
522 my ($stdout, $stderr, $status) = readwrite_gpg('', $inputfd, $stdoutfd, $stderrfd, $statusfd);
525 warn ("No data from gpg
for list
-key
\n");
529 foreach my $keyid (@{$CONFIG{'keyid'}}) {
530 unless ($stdout =~ /^pub:(?:[^:]*:){3,3}$keyid:/m) {
531 info("Importing
$keyid");
532 system "gpg
--export
$keyid | gpg
--import
--homedir
$GNUPGHOME";
536 #############################
537 # receive keys from keyserver
538 #############################
541 if ($CONFIG{'no-download'}) {
542 @keyids_ok = @KEYIDS;
544 my $gpg = GnuPG::Interface->new();
545 $gpg->call( $CONFIG{'gpg'} );
546 $gpg->options->hash_init(
547 'homedir' => $GNUPGHOME,
548 'extra_args' => '--keyserver='.$CONFIG{'keyserver'} );
549 $gpg->options->meta_interactive( 0 );
550 my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds();
552 my @local_keyids = @KEYIDS;
553 for my $keyid (@local_keyids) {
554 info ("fetching
$keyid...");
555 my $pid = $gpg->recv_keys(handles => $handles, command_args => [ $keyid ]);
556 my ($stdout, $stderr, $status) = readwrite_gpg('', $inputfd, $stdoutfd, $stderrfd, $statusfd);
559 # [GNUPG:] IMPORT_OK 0 5B00C96D5D54AEE1206BAF84DE7AAF6E94C09C7F
562 # [GNUPG:] IMPORT_OK 0 25FC1614B8F87B52FF2F99B962AF4031C82E0039
564 for my $line (split /\n/, $status) {
565 if ($line =~ /^\[GNUPG:\] IMPORT_OK/) {
566 push @keyids_ok, shift @KEYIDS;
569 } elsif ($line =~ /^\[GNUPG:\] NODATA/) {
570 push @keyids_failed, shift @KEYIDS;
576 notice ("Huh
, what
's up with $keyid?");
577 push @keyids_failed, shift @KEYIDS;
580 die ("Still keys in \@KEYIDS. This should not happen.") if scalar @KEYIDS;
581 notice ("Import failed for: ". (join ' ', @keyids_failed).".") if scalar @keyids_failed;
587 unless ($CONFIG{'no-sign
'}) {
588 info("Sign the following keys according to your policy, then exit gpg with 'save
' after signing each key");
589 for my $keyid (@keyids_ok) {
591 push @command, $CONFIG{'gpg
-sign
'};
592 push @command, '--local-user
', $USER if (defined $USER);
593 push @command, "--homedir=$GNUPGHOME";
594 push @command, '--secret
-keyring
', $CONFIG{'secret
-keyring
'};
595 push @command, '--edit
', $keyid;
596 push @command, 'sign
';
597 print join(' ', @command),"\n";
606 for my $keyid (@keyids_ok) {
609 my $gpg = GnuPG::Interface->new();
610 $gpg->call( $CONFIG{'gpg
'} );
611 $gpg->options->hash_init( 'homedir
' => $GNUPGHOME );
612 $gpg->options->meta_interactive( 0 );
613 my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds();
614 $gpg->options->hash_init( 'extra_args
' => [ '--with
-colons
', '--fixed
-list
-mode
' ] );
615 my $pid = $gpg->list_public_keys(handles => $handles, command_args => [ $keyid ]);
616 my ($stdout, $stderr, $status) = readwrite_gpg('', $inputfd, $stdoutfd, $stderrfd, $statusfd);
619 warn ("No data from gpg for list-key $keyid\n");
622 my $keyinfo = $stdout;
623 my @publine = grep { /^pub/ } (split /\n/, $stdout);
624 my ($dummy1, $dummy2, $dummy3, $dummy4, $longkeyid, $dummy6, $dummy7, $dummy8, $dummy9, $dummy10, $dummy11, $flags) = split /:/, pop @publine;
625 my $can_encrypt = $flags =~ /E/;
626 unless (defined $longkeyid) {
627 warn ("Didn't find public keyid
in edit dialog of key
$keyid.\n");
633 my $asciikey = export_key($GNUPGHOME, $keyid);
634 if ($asciikey eq '') {
635 warn ("No data from gpg
for export
$keyid\n");
642 my $this_uid_text = '';
644 debug("Doing key
$keyid, uid
$uid_number");
646 # import into temporary gpghome
647 ###############################
648 my $tempdir = tempdir( "caff
-$keyid-XXXXX
", DIR => '/tmp/', CLEANUP => 1);
649 my $gpg = GnuPG::Interface->new();
650 $gpg->call( $CONFIG{'gpg'} );
651 $gpg->options->hash_init( 'homedir' => $tempdir );
652 $gpg->options->meta_interactive( 0 );
653 my ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds();
654 my $pid = $gpg->import_keys(handles => $handles);
655 my ($stdout, $stderr, $status) = readwrite_gpg($asciikey, $inputfd, $stdoutfd, $stderrfd, $statusfd);
658 if ($status !~ /^\[GNUPG:\] IMPORT_OK/m) {
659 warn ("Could
not import
$keyid into temporary gnupg
.\n");
665 $gpg = GnuPG::Interface->new();
666 $gpg->call( $CONFIG{'gpg-delsig'} );
667 $gpg->options->hash_init(
668 'homedir' => $tempdir,
669 'extra_args' => [ '--with-colons', '--fixed-list-mode', '--command-fd=0', '--no-tty' ] );
670 ($inputfd, $stdoutfd, $stderrfd, $statusfd, $handles) = make_gpg_fds();
671 $pid = $gpg->wrap_call(
672 commands => [ '--edit' ],
673 command_args => [ $keyid ],
674 handles => $handles );
676 debug("Starting edit session
");
677 ($stdout, $stderr, $status) = readwrite_gpg('', $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_PROMPT, nocloseinput => 1);
681 my $number_of_subkeys = 0;
686 debug("Parsing stdout output
.");
687 for my $line (split /\n/, $stdout) {
688 debug("Checking line
$line");
689 my ($type, $dummy2, $dummy3, $dummy4, $dummy5, $dummy6, $dummy7, $dummy8, $dummy9, $uidtext) = split /:/, $line;
690 if ($type eq 'sub') {
691 $number_of_subkeys++;
693 next unless ($type eq 'uid' || $type eq 'uat');
694 debug("line is interesting
.");
695 if ($uid_number != $i) {
696 debug("mark
for deletion
.");
697 readwrite_gpg("$i\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_PROMPT, nocloseinput => 1);
702 $this_uid_text = ($type eq 'uid') ? $uidtext : 'attribute';
703 $is_uat = $type eq 'uat';
707 debug("Parsing stdout output done
.");
709 notice("Can
't handle attribute userid of key $keyid.");
713 debug("Uid ".($uid_number-1)." was the last, there is no $uid_number.");
714 info("key $keyid done.");
718 debug("need to delete a few uids.");
719 readwrite_gpg("deluid\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_DELUID_PROMPT, nocloseinput => 1);
720 readwrite_gpg("yes\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_PROMPT, nocloseinput => 1);
725 if ($number_of_subkeys > 0) {
726 for (my $i=1; $i<=$number_of_subkeys; $i++) {
727 readwrite_gpg("key $i\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_PROMPT, nocloseinput => 1);
729 readwrite_gpg("delkey\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_DELSUBKEY_PROMPT, nocloseinput => 1);
730 readwrite_gpg("yes\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_PROMPT, nocloseinput => 1);
735 my $signed_by_me = 0;
736 readwrite_gpg("1\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_PROMPT, nocloseinput => 1);
737 ($stdout, $stderr, $status) =
738 readwrite_gpg("delsig\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_DELSIG_PROMPT, nocloseinput => 1);
740 while($status =~ /$KEYEDIT_DELSIG_PROMPT/m) {
741 # sig:?::17:EA2199412477CAF8:1058095214:::::13x:
742 my @sigline = grep { /^sig/ } (split /\n/, $stdout);
743 $stdout =~ s/\n/\\n/g;
744 notice("[sigremoval] why are there ".(scalar @sigline)." siglines in that part of the dialog!? got: $stdout") if scalar @sigline >= 2; # XXX
745 my $line = pop @sigline;
747 if (defined $line) { # only if we found a sig here - we never remove revocation packets for instance
748 debug("[sigremoval] doing line $line.");
749 my ($dummy1, $dummy2, $dummy3, $dummy4, $signer, $created, $dummy7, $dummy8, $dummy9) = split /:/, $line;
750 if ($signer eq $longkeyid) {
751 debug("[sigremoval] selfsig ($signer).");
753 } elsif (grep { $signer eq $_ } @{$CONFIG{'keyid
'}}) {
754 debug("[sigremoval] signed by us ($signer).");
756 $signed_by_me = $signed_by_me > $created ? $signed_by_me : $created;
758 debug("[sigremoval] not interested in that sig ($signer).");
762 debug("[sigremoval] no sig line here, only got: ".$stdout);
764 ($stdout, $stderr, $status) =
765 readwrite_gpg($answer."\n", $inputfd, $stdoutfd, $stderrfd, $statusfd, exitwhenstatusmatches => $KEYEDIT_KEYEDIT_OR_DELSIG_PROMPT, nocloseinput => 1);
767 readwrite_gpg("save\n", $inputfd, $stdoutfd, $stderrfd, $statusfd);
770 my $asciikey = export_key($tempdir, $longkeyid);
771 if ($asciikey eq '') {
772 warn ("No data from gpg for export $longkeyid\n");
777 if ($NOW - $signed_by_me > $CONFIG{'export
-sig
-age
'} ) {
778 my $write = ask("Signature on $this_uid_text is old. Export?", 0);
781 my $keydir = "$KEYSBASE/$DATE_STRING";
782 -d $keydir || mkpath($keydir , 0, 0700) or die ("Cannot create $keydir $!\n");
784 my $keyfile = "$keydir/$longkeyid.key.$uid_number.".sanitize_uid($this_uid_text).".asc";
785 open (KEY, ">$keyfile") or die ("Cannot open $keyfile\n");
789 push @UIDS, { text => $this_uid_text, key => $asciikey, serial => $uid_number };
791 info("$longkeyid $uid_number $this_uid_text done.");
793 info("$longkeyid $uid_number $this_uid_text is not signed by me, not writing.");
797 if (scalar @UIDS == 0) {
798 info("found no signed uids for $keyid");
801 for my $uid (@UIDS) {
802 trace("UID: $uid->{'text
'}\n");
803 unless ($uid->{'text
'} =~ /@/) {
804 my $attach = ask("UID $uid->{'text
'} is no email address, attach it to every email sent?", 1);
805 push @attached, $uid if $attach;
809 notice("Key has no encryption capabilities, mail will be sent unencrypted") unless $can_encrypt;
810 for my $uid (@UIDS) {
811 if ($uid->{'text
'} =~ /@/) {
812 my $address = $uid->{'text
'};
813 $address =~ s/.*<(.*)>.*/$1/;
814 my $send = ask("Send mail to '$address' for $uid->{'text
'}?", 1);
816 my $mail = send_mail($address, $can_encrypt, $longkeyid, $uid, @attached);
818 my $keydir = "$KEYSBASE/$DATE_STRING";
819 my $mailfile = "$keydir/$longkeyid.mail.".$uid->{'serial
'}.".".sanitize_uid($uid->{'text
'});
820 open (KEY, ">$mailfile") or die ("Cannot open $mailfile\n");
833 ###############################################################3
834 #### old fork gpg --edit
836 my ($stdin_read, $stdin_write);
837 my ($stdout_read, $stdout_write);
838 my ($stderr_read, $stderr_write);
839 my ($status_read, $status_write);
840 pipe $stdin_read, $stdin_write;
841 pipe $stdout_read, $stdout_write;
842 pipe $stderr_read, $stderr_write;
843 pipe $status_read, $status_write;
846 unless ($pid) { # child
853 push @call, $CONFIG{'gpg
-delsig
'};
854 push @call, "--homedir=$tempdir";
855 push @call, '--with
-colons
';
856 push @call, '--fixed
-list
-mode
';
857 push @call, '--command
-fd
=0';
858 push @call, "--status-fd=".fileno($status_write);
859 push @call, "--no-tty";
860 push @call, "--edit";
866 open (STDIN, "<&".fileno($stdin_read)) or die ("Cannot reopen stdin: $!\n");
867 open (STDOUT, ">&".fileno($stdout_write)) or die ("Cannot reopen stdout: $!\n");
868 open (STDERR, ">&".fileno($stderr_write)) or die ("Cannot reopen stderr: $!\n");
870 fcntl $status_write, F_SETFD, 0;
880 $inputfd = $stdin_write;
881 $stdoutfd = $stdout_read;
882 $stderrfd = $stderr_read;
883 $statusfd = $status_read;