+ Made removal of nonexistent photos quiet by the use of the force option.
[pgp-tools.git] / gpgsigs / gpgsigs
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # See the pod documentation at the end of this file for author,
6 # copyright, and licence information.
7 #
8 # Depends:
9 # libintl-perl (Locale::Recode)
10 # OR libtext-iconv-perl (Text::Iconv),
11 # OR the "recode" binary
12 #
13 # Changelog:
14 # 0.1
15 # 0.2 2005-05-14 cb:
16 # * use the user's normal keyring to find signatures
17 # * support for multiple user keys
18 # * better charset conversion
19 # * pod documentation
20 # see the Debian changelog for further changes.
21
22 my $VERSION = qq$Rev$;
23 $ENV{PATH} .= ":/usr/share/signing-party";
24
25 use strict;
26 use warnings;
27 use English;
28 use IPC::Open3;
29 use Getopt::Long;
30
31
32 sub version($)
33 {
34 my ($fd) = @_;
35
36 print $fd <<EOF;
37 gpgsigs $VERSION- http://pgp-tools.alioth.debian.org/
38 (c) 2004 Uli Martens <uli\@youam.net>
39 (c) 2004, 2005 Peter Palfrader <peter\@palfrader.org>
40 (c) 2004, 2005, 2006, 2007 Christoph Berg <cb\@df7cb.de>
41 EOF
42 }
43
44 sub usage($$)
45 {
46 my ($fd, $error) = @_;
47
48 version($fd);
49 print $fd <<EOF;
50
51 Usage: $PROGRAM_NAME [-r] [-t <charset>] <keyid> <keytxt> [<outfile>]
52
53 keyid is a long or short keyid (e.g. DE7AAF6E94C09C7F or 94C09C7F)
54 separate multiple keyids with ','
55 -r call gpg --recv-keys before proceeding
56 -f <charset> convert <keytxt> from charset
57 -t <charset> convert UIDs to charset in output
58 --refresh regenerate UID lists on keys
59 --latex generate LaTeX output including photo IDs
60 EOF
61 exit $error;
62 }
63
64
65 my ($fromcharset, $charset, $recv_keys, $refresh, $latex);
66 Getopt::Long::config('bundling');
67 GetOptions(
68 '-f=s' => \$fromcharset,
69 '-t=s' => \$charset,
70 r => \$recv_keys,
71 refresh => \$refresh,
72 latex => \$latex,
73 help => sub { usage(*STDOUT, 0); },
74 version => sub { version(*STDOUT); exit 0;},
75 ) or usage(*STDERR, 1);
76
77
78 # charset conversion
79 $fromcharset ||= "ISO-8859-1";
80 $charset ||= $ENV{LC_ALL} || $ENV{LC_CTYPE} || $ENV{LANG} || "ISO-8859-1";
81 $charset = "ISO-8859-1" unless $charset =~ /[\.-]/;
82 $charset =~ s/.*\.//;
83 $charset =~ s/@.*//;
84
85
86 sub myrecode($$$) {
87 my ($text, $from, $to) = @_;
88
89 if (eval "require Locale::Recode") {
90 my $rt = Locale::Recode->new (from => $from, to => $to);
91
92 my $orig = $text;
93 $rt->recode($text);
94 return $text;
95 } elsif (eval "require Text::Iconv") {
96 my $it = Text::Iconv->new($from, $to);
97
98 my $result = $it->convert($text);
99 warn ("Could not convert '$text'\n") unless defined $result;
100 return (defined $result) ? $result : $text
101 } else {
102 my $pid = open3(\*WTRFH, \*RDRFH, \*ERRFH, 'recode', "utf8..$charset");
103 print WTRFH $text;
104 close WTRFH;
105 local $/ = undef;
106 my $result = <RDRFH>;
107 close RDRFH;
108 close ERRFH;
109 waitpid $pid, 0;
110 warn ("'recode' failed, is it installed?\n") unless defined $result;
111 return (defined $result) ? $result : $text
112 }
113 }
114
115
116 # parse options
117 my @mykeys = split /,/, uc(shift @ARGV);
118 my $keytxt = (shift @ARGV) || usage(*STDERR, 1);
119 my $outfile = (shift @ARGV) || '-';
120
121 map { s/^0x//i; } @mykeys;
122 my %uids = map { $_ => [] } @mykeys;
123
124 if (!@mykeys || scalar @ARGV) {
125 usage(*STDERR, 1);
126 }
127 foreach my $falsekey (grep { $_ !~ /^([0-9A-F]{16,16}|[0-9A-F]{8,8})$/ } @mykeys) {
128 print STDERR "Invalid keyid $falsekey given\n";
129 usage(*STDERR, 1);
130 }
131
132 -r $keytxt or die ("$keytxt does not exist\n");
133
134
135 # get list of keys in file
136 my @keys;
137 open (TXT, $keytxt) or die ("Cannot open $keytxt\n");
138 while (<TXT>) {
139 if ( m/^pub +(?:\d+)[DR]\/([0-9A-F]{8}) [0-9]{4}-[0-9]{2}-[0-9]{2} *(.*)/ ) {
140 push @keys, $1;
141 }
142 }
143 close TXT;
144
145
146 # get all known signatures
147 if ($recv_keys) {
148 print STDERR "Requesting keys from keyserver\n";
149 system "gpg --recv-keys @keys";
150 }
151
152 print STDERR "Running --list-sigs, this will take a while ";
153 open SIGS, "gpg --fixed-list-mode --with-colons --list-sigs @mykeys @keys 2>/dev/null |"
154 or die "can't get gpg listing";
155
156 my ($key, $uid, $sigs, $photocount);
157 while (<SIGS>) {
158 if ( m/^pub:(?:.*?:){3,3}([0-9A-F]{16,16}):/ ) {
159 $key = $1;
160 print STDERR ".";
161 undef $photocount;
162 next;
163 }
164 if ( m/^uid:(.):(?:.*?:){7,7}(.*):/s ) {
165 my $uidstatus = $1;
166 $uid = $2;
167 $uid =~ s/\\x([0-9a-f][0-9a-f])/ chr(hex($1)) /gie;
168 $uid = myrecode($uid, "UTF-8", $charset);
169
170 my ($shortkey) = substr $key, -8;
171 # Remember non-revoked uids
172 next if $uidstatus eq "r";
173 push @{$uids{$shortkey}}, $uid;
174 next;
175 }
176 if ( m/^uat:(.)::::[^:]+::([0-9A-F]+)::\d+ (\d+)/ ) { # uat:-::::2006-08-03::27BAEAF742BD253C2F3F03B043DC1536880193C4::1 7993:
177 my $uidstatus = $1;
178 # $2 is hash of attribute data
179 my $size = $3 - 19; # FIXME: find a nicer way to find out picture size
180 $uid = "[jpeg image of size $size]";
181 next if $uidstatus eq "r";
182 if ($latex and not $photocount) { # call once per key
183 my ($shortkey) = substr $key, -8;
184 system "rm -f $shortkey.[1-9]*.eps";
185 system "gpg --photo-viewer 'gpgsigs-eps-helper $shortkey' --list-options show-photos --list-key $key > /dev/null";
186 $photocount = 1;
187 }
188 my ($shortkey) = substr $key, -8;
189 push @{$uids{$shortkey}}, $uid;
190 next;
191 }
192 if ( m/^sig:(?:.*?:){3,3}([0-9A-F]{8})([0-9A-F]{8}):(?:.*?:){5,5}(.*?):/ ) {
193 my $class = $3;
194 if ($class eq '10x') {
195 $class = 'S';
196 } elsif ($class eq '11x') {
197 $class = '1';
198 } elsif ($class eq '12x') {
199 $class = '2';
200 } elsif ($class eq '13x') {
201 $class = '3';
202 } else {
203 $class = 's';
204 };
205 # Handle the case where one UID was signed multiple times
206 # with different signature classes.
207 my $before = $sigs->{$key}->{$uid}->{$1.$2};
208 if (defined $before) {
209 if ($before eq 'S' || $before eq 's') {
210 $sigs->{$key}->{$uid}->{$1.$2} = $class;
211 } elsif ($class eq 'S' || $class eq 's') {
212 # intentionally left blank
213 } elsif ($before < $class) {
214 $sigs->{$key}->{$uid}->{$1.$2} = $class;
215 };
216 } else {
217 $sigs->{$key}->{$uid}->{$1.$2} .= $class;
218 };
219 $sigs->{$key}->{$uid}->{$2} = $sigs->{$key}->{$uid}->{$1.$2};
220 next;
221 }
222 next if ( m/^(rev|rvk|sub|tru):/ ); # revoke/revoker/subkey/trust
223 warn "unknown value: '$_', key: ".(defined $key ? $key :'none')."\n";
224 }
225 close SIGS;
226 print STDERR "\n";
227
228 for my $k ( keys %{$sigs} ) {
229 if ( $k =~ m/^[0-9A-F]{8}([0-9A-F]{8})$/ ) {
230 $sigs->{$1} = $sigs->{$k};
231 }
232 }
233
234
235 # read checksums
236 open MD, "gpg --with-colons --print-md md5 $keytxt|" or warn "can't get gpg md5\n";
237 my $MD5 = <MD>;
238 close MD;
239 open MD, "gpg --with-colons --print-md sha1 $keytxt|" or warn "can't get gpg sha1\n";
240 my $SHA1 = <MD>;
241 close MD;
242 open MD, "gpg --with-colons --print-md sha256 $keytxt|" or warn "can't get gpg sha256\n";
243 my $SHA256 = <MD>;
244 close MD;
245 open MD, "gpg --with-colons --print-md ripemd160 $keytxt|" or warn "can't get gpg ripemd160\n";
246 my $RIPEMD160 = <MD>;
247 close MD;
248
249 my @MD5 = split /:/, $MD5;
250 my @SHA1 = split /:/, $SHA1;
251 my @SHA256 = split /:/, $SHA256;
252 my @RIPEMD160 = split /:/, $RIPEMD160;
253 $MD5 = $MD5[2];
254 $SHA1 = $SHA1[2];
255 $SHA256 = $SHA256[2];
256 $RIPEMD160 = $RIPEMD160[2];
257
258 $MD5 =~ s/(.{16})/$1 /;
259 $SHA1 =~ s/(.{20})/$1 /;
260 $SHA256 =~ s/(.{32})/$1 /;
261 $RIPEMD160 =~ s/(.{20})/$1 /;
262 $MD5 =~ s/([0-9A-Z]{2})/$1 /ig;
263 $SHA1 =~ s/([0-9A-Z]{4})/$1 /ig;
264 $SHA256 =~ s/([0-9A-Z]{4})/$1 /ig;
265 $RIPEMD160 =~ s/([0-9A-Z]{4})/$1 /ig;
266
267 chomp $MD5;
268 chomp $SHA1;
269 chomp $SHA256;
270 chomp $RIPEMD160;
271 my $metatxt = quotemeta($keytxt);
272 $MD5 =~ s/^$metatxt:\s*//;
273 $SHA1 =~ s/^$metatxt:\s*//;
274 $SHA256 =~ s/^$metatxt:\s*//;
275 $RIPEMD160 =~ s/^$metatxt:\s*//;
276
277
278 # write out result
279 sub print_tag
280 {
281 my ($key, $uid) = @_;
282 if (! defined $sigs->{$key}->{$uid}) {
283 warn "uid '$uid' not found on key $key\n";
284 #for (keys %{ $sigs->{$key} }) {
285 # print STDERR "only have $_\n";
286 #};
287 return '(' . (' ' x @mykeys) . ')';
288 }
289 my $r = '(';
290 foreach my $mykey (@mykeys) {
291 $r .= defined $sigs->{$key}->{$uid}->{$mykey} ? $sigs->{$key}->{$uid}->{$mykey} : ' ';
292 }
293 $r .= ')';
294 return $r;
295 }
296
297 $key = undef;
298 $uid = undef;
299 my $line = 0;
300 print STDERR "Annotating $keytxt, writing into $outfile\n";
301 open (TXT, $keytxt) or die ("Cannot open $keytxt\n");
302 open (WRITE, '>'.$outfile) or die ("Cannot open $outfile for writing\n");
303
304 if ($latex) {
305 print WRITE <<'EOF';
306 \documentclass{article}
307 \usepackage[margin=2cm]{geometry}
308 \usepackage{alltt}
309 \usepackage{graphicx}
310 \usepackage{grffile}
311 \begin{document}
312 \begin{alltt}
313 EOF
314 }
315
316 while (<TXT>) {
317 $line++;
318 $_ = myrecode($_, $fromcharset, $charset);
319 if (/^MD5 Checksum:/ && defined $MD5) {
320 s/[_[:xdigit:]][_ [:xdigit:]]+_/$MD5/;
321 }
322 if (/^SHA1 Checksum:/ && defined $SHA1) {
323 s/[_[:xdigit:]][_ [:xdigit:]]+_/$SHA1/;
324 }
325 if (/^SHA256 Checksum:/ && defined $SHA256) {
326 s/[_[:xdigit:]][_ [:xdigit:]]+_/$SHA256/;
327 }
328 if (/^RIPEMD160 Checksum:/ && defined $RIPEMD160) {
329 s/[_[:xdigit:]][_ [:xdigit:]]+_/$RIPEMD160/;
330 }
331 if ( m/^pub +(?:\d+)[DR]\/([0-9A-F]{8}) [0-9]{4}-[0-9]{2}-[0-9]{2} *(.*)/ ) {
332 $key = $1;
333 $uid = $2;
334 #if ($uid) { # in gpg 1.2, the first uid is here
335 # print WRITE print_tag($key, $uid) . " $_";
336 # next;
337 #}
338 print WRITE;
339 undef $photocount;
340 next;
341 }
342
343 if ( m/^ *Key fingerprint/ ) {
344 print WRITE;
345 my $inc = "";
346 foreach my $mykey (@mykeys) {
347 foreach my $myuid (@{$uids{$mykey}}) {
348 $inc .= defined $sigs->{$mykey}->{$myuid}->{$key} ? $sigs->{$mykey}->{$myuid}->{$key} : ' ';
349 }
350 }
351 print WRITE "[$inc] incoming signatures\n" if $inc =~ /\S/;
352 if ($refresh or $latex) {
353 foreach $uid (@{$uids{$key}}) {
354 print WRITE print_tag($key, $uid) . " $uid\n";
355 if ($latex and ($uid =~ /^\[jpeg image/)) {
356 $photocount++;
357 print WRITE "\\begin{flushright}\n";
358 print WRITE "\\includegraphics[height=3cm]{$key.$photocount}\n";
359 print WRITE "\\end{flushright}\n";
360 }
361 }
362 }
363 next;
364
365 }
366 if ( m/^uid +(.*)$/ ) {
367 $uid = $1;
368 next if $refresh or $latex;
369 unless (defined $key) {
370 warn "key is undefined - input text is possibly malformed near line $line\n";
371 next;
372 };
373 die "bad tag from $key | $uid" unless defined (print_tag($key, $uid));
374 print WRITE print_tag($key, $uid) . " $_";
375 next;
376 }
377 print WRITE;
378 }
379
380 print WRITE "Legend:\n";
381 my $num_myuids = 0;
382 foreach my $i (0 .. @mykeys - 1) {
383 print WRITE '(' . ' 'x$i . 'S' . ' 'x(@mykeys-$i-1) . ") signed with $mykeys[$i] $uids{$mykeys[$i]}->[0]\n";
384 $num_myuids += @{$uids{$mykeys[$i]}};
385 }
386 my $i = 0;
387 foreach my $mykey (@mykeys) {
388 foreach my $myuid (@{$uids{$mykey}}) {
389 my $inc = defined $sigs->{$mykey}->{$myuid}->{$key} ? $sigs->{$mykey}->{$myuid}->{$key} : ' ';
390 print WRITE "[" . ' 'x$i . 'S' . ' 'x($num_myuids-$i-1) . "] has signed $mykey $myuid\n";
391 $i++;
392 }
393 }
394 close TXT;
395
396 if ($latex) {
397 print WRITE <<'EOF';
398 \end{alltt}
399 \end{document}
400 EOF
401 }
402
403 close WRITE;
404
405 __END__
406
407 =head1 NAME
408
409 B<gpgsigs> - annotate list of GnuPG keys with already done signatures
410
411 =head1 SYNOPSIS
412
413 B<gpgsigs> [I<options>] I<keyid>I<[>B<,>I<keyidI<[>B<,>I<...>I<]>>I<]> F<keytxt> [F<outfile>]
414
415 =head1 DESCRIPTION
416
417 B<gpgsigs> was written to assist the user in signing keys during a keysigning
418 party. It takes as input a file containing keys in C<gpg --list-keys> format
419 and prepends every line with a tag indicating if the user has already signed
420 that uid. When the file contains C<ALGO Checksum:> lines and placeholders
421 (C<__ __>), the checksum is inserted. ALGO can be set to the following algorithms:
422 MD5 SHA1 SHA256 or RIPEMD160.
423
424 =head1 OPTIONS
425
426 =over
427
428 =item B<-r>
429
430 Call I<gpg --recv-keys> before creating the output.
431
432 =item B<-f> I<charset>
433
434 Convert F<keytxt> from I<charset>. The default is ISO-8859-1.
435
436 =item B<-t> I<charset>
437
438 Convert UIDs to I<charset>. The default is derived from LC_ALL, LC_CTYPE, and
439 LANG, and if all these are unset, the default is ISO-8859-1.
440
441 =item B<--refresh>
442
443 Refresh the UID lists per key from gpg. Useful when UIDs were added or revoked
444 since the input text was generated.
445
446 =item B<--latex>
447
448 Generate LaTeX output, including photo IDs. Implies B<--refresh>.
449 B<Note:> This writes eps files to the current directory.
450
451 =item I<keyid>
452
453 Use this keyid (8 or 16 byte) for annotation. Multiple keyids can be separated
454 by a comma (B<,>).
455
456 =item F<keytxt>
457
458 Read input from F<keytxt>.
459
460 =item F<outfile>
461
462 Write output to F<outfile>. Default is stdout.
463
464 =back
465
466 =head1 EXAMPLES
467
468 The following key signing parties are using B<gpgsigs>:
469
470 http://www.palfrader.org/ksp-lt2k4.html
471
472 http://www.palfrader.org/ksp-lt2k5.html
473
474 =head1 BUGS
475
476 B<GnuPG> is known to change its output format quite often. This version has
477 been tested with gpg 1.2.5 and gpg 1.4.1. YMMV.
478
479 =head1 SEE ALSO
480
481 gpg(1), caff(1).
482
483 http://pgp-tools.alioth.debian.org/
484
485 =head1 AUTHORS AND COPYRIGHT
486
487 (c) 2004 Uli Martens <uli@youam.net>
488
489 (c) 2004, 2005 Peter Palfrader <peter@palfrader.org>
490
491 (c) 2004, 2005, 2006, 2007 Christoph Berg <cb@df7cb.de>
492
493 =head1 LICENSE
494
495 All rights reserved.
496
497 Redistribution and use in source and binary forms, with or without
498 modification, are permitted provided that the following conditions
499 are met:
500
501 1. Redistributions of source code must retain the above copyright
502 notice, this list of conditions and the following disclaimer.
503
504 2. Redistributions in binary form must reproduce the above copyright
505 notice, this list of conditions and the following disclaimer in the
506 documentation and/or other materials provided with the distribution.
507
508 3. The name of the author may not be used to endorse or promote products
509 derived from this software without specific prior written permission.
510
511 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
512 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
513 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
514 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
515 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
516 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
517 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
518 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
519 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
520 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.