/usr/bin/gpgsigs is in signing-party 1.1.10-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | #!/usr/bin/perl
# $Id: gpgsigs 709 2014-09-13 18:01:36Z guilhem-guest $
# See the pod documentation at the end of this file for author,
# copyright, and licence information.
#
# Changelog:
# 0.1
# 0.2 2005-05-14 cb:
# * use the user's normal keyring to find signatures
# * support for multiple user keys
# * better charset conversion
# * pod documentation
# see the Debian changelog for further changes.
my $VERSION = qq$Rev: 709 $;
use strict;
use warnings;
use Encode ();
use I18N::Langinfo 'langinfo';
use English '-no_match_vars';
use IPC::Open3;
use Getopt::Long;
use File::Temp;
use IO::Handle;
use IO::Select;
use GnuPG::Interface;
sub version($)
{
my ($fd) = @_;
print $fd <<EOF;
gpgsigs $VERSION- http://pgp-tools.alioth.debian.org/
(c) 2004 Uli Martens <uli\@youam.net>
(c) 2004, 2005 Peter Palfrader <peter\@palfrader.org>
(c) 2004, 2005, 2006, 2007 Christoph Berg <cb\@df7cb.de>
(c) 2014 Guilhem Moulin <guilhem\@guilhem.org>
EOF
}
sub usage($$)
{
my ($fd, $error) = @_;
version($fd);
print $fd <<EOF;
Usage: $PROGRAM_NAME [-r] [-t <charset>] <keyid> <keytxt> [<outfile>]
keyid is a long or short keyid (e.g. DE7AAF6E94C09C7F or 94C09C7F) or a
key fingerprint
separate multiple keyids with ','
-r call gpg --recv-keys before proceeding
-f <charset> convert <keytxt> from charset
-t <charset> convert UIDs to charset in output
--refresh regenerate UID lists on keys
--latex generate LaTeX output including photo IDs
EOF
exit $error;
}
my ($fromcharset, $charset, $recv_keys, $refresh, $latex);
Getopt::Long::config('bundling');
GetOptions(
'-f=s' => \$fromcharset,
'-t=s' => \$charset,
r => \$recv_keys,
refresh => \$refresh,
latex => \$latex,
help => sub { usage(*STDOUT, 0); },
version => sub { version(*STDOUT); exit 0;},
) or usage(*STDERR, 1);
# charset conversion
$fromcharset //= langinfo(I18N::Langinfo::CODESET());
$charset //= langinfo(I18N::Langinfo::CODESET());
my $locale = Encode::find_encoding($charset);
# parse options
my @mykeys = split /,/, uc(shift @ARGV);
my $keytxt = (shift @ARGV) || usage(*STDERR, 1);
my $outfile = (shift @ARGV) || '-';
map { y/ //d if /^(?:[0-9A-F]{4} ){5}(?: [0-9A-F]{4}){5}$/; # remove spaces in fprs
/^[0-9A-F]{40}$/ ? s/.{24}// : s/^0x//i;
} @mykeys;
if (!@mykeys || scalar @ARGV) {
usage(*STDERR, 1);
}
foreach my $falsekey (grep { $_ !~ /^([0-9A-F]{16,16}|[0-9A-F]{8,8})$/ } @mykeys) {
print STDERR "Invalid keyid $falsekey given\n";
usage(*STDERR, 1);
}
-r $keytxt or die ("$keytxt does not exist\n");
# get list of keys in file (from fingerprints if available)
my (@keys, @shortkeys);
open (TXT, '<', $keytxt) or die ("Cannot open $keytxt\n");
while (<TXT>) {
if ( m/^pub +(?:\d+)[DR]\/(?:0x)?([0-9A-F]{8}|[0-9A-F]{16}) [0-9]{4}-[0-9]{2}-[0-9]{2}/ ) {
push @shortkeys, $1;
} elsif ( m/^\s+Key fingerprint = ((?:[0-9A-F]{4} ){5}(?: [0-9A-F]{4}){5}|[0-9A-F]{40})$/ ) {
push @keys, substr ($1 =~ y/ //dr, -16);
}
}
close TXT;
@keys = @shortkeys unless @keys;
# get all known signatures
if ($recv_keys) {
print STDERR "Requesting keys from keyserver\n";
system qw/gpg --recv-keys/, @keys;
}
my $now = time;
print STDERR "Running --list-sigs, this may take a while ";
my $photos = $latex ? File::Temp::->new(TMPDIR => 1) : '/dev/null';
my $gpg = GnuPG::Interface::->new();
$gpg->call( 'gpg' );
# we need --attribute-{fd,file} and --status-{fd,file} to get the
# correct attribute size
$gpg->options->hash_init( 'extra_args' => [ '--attribute-file', $photos,
qw/ --list-options show-sig-subpackets
--fixed-list-mode --with-colons/ ]
, 'meta_interactive' => 0 );
my $stdout = IO::Handle::->new();
my $status = IO::Handle::->new();
my $handles = GnuPG::Handles::->new( stdout => $stdout, status => $status );
my $pid = $gpg->list_sigs( handles => $handles, command_args => [ @mykeys, @keys ] );
$_->blocking(0) for ($stdout, $status);
my $output = IO::Select::->new();
$output->add($stdout, $status);
my (%keys, %uids, @photos, %sigs, %revs);
my ($key, $uid, $sig); # current context
my ($oldstdout, $oldstatus) = ('', '');
while ($output->count() > 0) {
foreach my $fd (@{(IO::Select::select($output))[0]}) { # reader
if ($fd->eof) {
$output->remove($fd);
close $fd;
next;
}
if ($fd == $stdout) {
while (<$fd>) {
if ($oldstdout) { # prepend unfinished output
$_ = $oldstdout . $_;
$oldstdout = '';
}
if (!/\n\z/) { # there is more coming
$oldstdout = $_;
next;
}
chomp;
undef $sig unless /^spk:/;
if (/^pub:([^:]+):(?:[^:]*:){2}([0-9A-F]{16}):(?:[^:]*:){6}([^:]+)/) {
undef $key;
if ($1 =~ /[eir]/ or $3 =~ /D/ ) {
warn "Ignoring unusable key $2.\n";
last;
}
$key = $2;
$keys{$key} = [];
print STDERR '.';
next;
}
next unless $key; # nothing to do on revoked keys
if (/^(uid|uat):([^:]+):(?:[^:]*:){5}([0-9A-F]{40}):[^:]*:([^:]+)/) {
undef $uid;
next if $2 =~ /[er]/;
$uid = $3; # use the SHA1 to have proper distinction between UIDs/UATs
if ($1 eq 'uid') {
my $text = $4;
$text =~ s/\\x(\p{AHex}{2})/ chr(hex($1)) /ge;
# --with-colons always outputs UTF-8
$uids{$key}->{$uid} = { type => 'uid', text => $locale->encode(Encode::decode_utf8($text)) };
}
else {
# we can't rely on $4 for the size: get it from
# the status fd instead
$uids{$key}->{$uid} = { type => 'uat' };
}
push @{$keys{$key}}, $uid; # preserve order
next;
}
next unless $uid; # nothing to do on revoked uids
if (/^sig:(?:[^:]*:){3}([0-9A-F]{16}):(\d+):(\d*):(?:[^:]*:){3}(1[0-3][lx])(?::.*)?$/) {
if (!grep { /(?:$1|$key)$/ } @mykeys) {
$sig = []; # $key is not ours, and the signer isn't us: don't waste resources
} else {
$sigs{$key}->{$uid}->{$1} //= [];
$sig = $sigs{$key}->{$uid}->{$1};
push @$sig, { created => $2, expiring => $3, class => $4, revocable => 1 };
}
next;
}
if (/^spk:7:1:1:%0([01])$/ and @$sig) {
# mark the last sig as revocable (1) or not (0)
$sig->[$#$sig]->{revocable} = $1;
next;
}
if (/^rev:(?:[^:]*:){3}([0-9A-F]{16}):(\d+):(?:[^:]*:){4}30x(?::.*)?$/) {
$revs{$key}->{$uid}->{$1} = $2 # keep only the most recent revocation cert
unless defined $revs{$key}->{$uid}->{$1} and $revs{$key}->{$uid}->{$1} > $2;
next;
}
if (/^sub:/) {
undef $uid;
next;
}
if (!/^(?:rvk|tru|fpr|spk):/) { # revoke/revoker/trust/fpr
warn "Unknown value: '$_', key: ".($key // 'none')."\n";
}
}
}
elsif ($fd == $status) {
while (<$fd>) {
if ($oldstatus) { # prepend unfinished output
$_ = $oldstatus . $_;
$oldstatus = '';
}
if (!/\n\z/) { # there is more coming
$oldstatus = $_;
next;
}
chomp;
# see /usr/share/doc/gnupg2/DETAILS.gz
if (/^\[GNUPG:\] ATTRIBUTE [0-9A-F]{24}([0-9A-F]{16}) (\d+) 1 1 1 \d+ \d+ (\d+)$/) {
push @photos, {key => $1, size => $2, revoked => $3 & 0x02};
next;
}
if (!/^\[GNUPG:\] (?:KEYEXPIRED \d+|SIGEXPIRED deprecated-use-keyexpired-instead)$/) {
warn "Unknown value: '$_'";
}
}
}
}
}
warn "Parsing gpg's output went wrong.\n" if $oldstdout or $oldstatus;
waitpid $pid, 0;
close $_ for ($stdout, $status);
my $photosfd;
if ($latex) {
open $photosfd, '<:raw', $photos or die "Couldn't open: $!";
}
# get photo sizes and split $photos if $latex
foreach my $photo (@photos) {
my $chunk;
if ($latex) {
my $got = read $photosfd, $chunk, $photo->{size} or die "Couldn't read: $!";
warn "Read $photo->{size} bytes but got $got bytes.\n" if $got != $photo->{size};
}
next if $photo->{revoked}; # ignore revoked attributes
my $key = $photo->{key};
my @uats = grep { $uids{$key}->{$_}->{type} eq 'uat' } @{$keys{$key}};
my @found = grep { !defined $uids{$key}->{$_}->{text} } @uats;
my $size = $photo->{size} - 16; # remove the header part
unless (@found) {
warn "No more UAT was found on $key, but there is an image of size $size that belongs to that key.\n";
next;
}
my $uat = $uids{$key}->{shift @found};
$uat->{text} = "[jpeg image of size $size]";
if ($latex) {
$uat->{file} = "${key}_".($#uats - $#found).".jpg";
open my $pic, '>:raw', $uat->{file} or die "Couldn't open: $!";
print $pic (substr $chunk, 16);
close $pic;
}
}
close $photosfd if $latex;
# collapse sigs following RFC 4880
while (my ($key, $uids) = each %sigs) {
while (my ($uid, $signers) = each %$uids) {
while (my ($signer, $sigs) = each %$signers) {
my $lastrev = $revs{$key}->{$uid}->{$signer};
my $class;
my @sigs;
# remove expired signatures
@sigs = grep {!$_->{expiring} or $now < $_->{expiring}} @$sigs;
$class = 'X' if !$class and !@sigs; # eXpired
# remove revoked signatures (but keep signatures issued after the last revocation cert)
@sigs = grep {!$_->{revocable} or $lastrev < $_->{created}} @sigs if $lastrev;
$class = 'R' if !$class and !@sigs; # Revoked
unless ($class) {
# only non-expired, non-revoked sigs are left in @sigs.
@sigs = grep { $_->{class} =~ /x$/ } @sigs; # grep for exportable sigs
if (@sigs) {
# we take the one with the best level
@sigs = sort { $a->{class} cmp $b->{class} } @sigs;
$class = (pop @sigs)->{class};
$class =~ s/1([0-3])./$1/;
$class ||= 'S';
} else {
# XXX add an option to mark local sigs as exportable ones
$class = 's';
}
}
undef $sigs;
$signers->{$signer} = $class;
}
}
}
sub getChecksum ($$) {
my ($algo, $infile) = @_;
open MD, '-|', qw/gpg --with-colons --print-md/, $algo, $infile or warn "Can't get gpg $algo digest\n";
my $digest = <MD>;
close MD;
return $1 if $digest and $digest =~ /:([0-9A-F]+):[^:]*$/;
}
# write out result
sub print_tag {
my ($key, $uid) = @_;
my $r = '(';
$r .= $sigs{$key}->{$uid}->{$_} // ' ' for @mykeys;
$r .= ')';
return $r;
}
$key = undef;
$uid = undef;
my $line = 0;
my $keys = 0;
print STDERR "\nAnnotating $keytxt, writing into $outfile\n";
open (TXT, '<', $keytxt) or die ("Cannot open $keytxt\n");
$outfile eq '-' ? *WRITE = *STDOUT :
open (WRITE, '>', $outfile) or die ("Cannot open $outfile for writing\n");
if ($latex) {
print WRITE <<'EOF';
\documentclass{article}
\usepackage[margin=2cm]{geometry}
\usepackage{alltt}
\usepackage{graphicx}
\usepackage{ifluatex,ifxetex}
\ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0
\usepackage[utf8x]{inputenc}
\else
\usepackage[log-declarations=false]{xparse}
\usepackage{fontspec}
\setmonofont{Droid Sans Mono}
\ifxetex
\usepackage[quiet]{xeCJK}
\CJKfontspec{Droid Sans Fallback}
\fi
\fi
\begin{document}
\begin{alltt}
EOF
}
while (<TXT>) {
$line++;
if (/^(\S+) Checksum:/) {
my $md = getChecksum(uc $1, $keytxt);
if ($md) {
my $r = $_;
while ( /^(?:.*_)?$/ ) {
$line++;
$_ = <TXT>;
$r .= $_;
}
$r =~ s/_/%c/g;
print WRITE sprintf ($r, unpack ("C*", $md));
next;
}
}
if ( m/^[0-9]+\s+\[ \] Fingerprint OK/ ){
if ($latex) {
if ($keys > 0) {
print WRITE "\\end{samepage}\n";
}
print WRITE "\\begin{samepage}\n";
++$keys;
}
print WRITE;
next;
}
if ( m/^pub +(?:\d+)[DR]\/(?:0x)?([0-9A-F]{8}|[0-9A-F]{16}) [0-9]{4}-[0-9]{2}-[0-9]{2}/ ) {
$key = $1;
print WRITE;
next;
}
if ( m/^\s+Key fingerprint = ((?:[0-9A-F]{4} ){5}(?: [0-9A-F]{4}){5}|[0-9A-F]{40})$/ ) {
# derive the keyid from the fingerprint if available
$key = substr $1 =~ y/ //dr, -16;
print WRITE;
my $inc = "";
foreach my $mykey (@mykeys) {
foreach my $myuid (@{$keys{$mykey}}) {
$inc .= $sigs{$mykey}->{$myuid}->{$key} // ' ';
}
}
print WRITE "[$inc] incoming signatures\n" if $inc =~ /\S/;
if ($refresh or $latex) {
foreach my $uid (@{$keys{$key}}) {
my $tag = print_tag($key, $uid);
if (!$latex) {
print WRITE $tag .' '. $uids{$key}->{$uid}->{text},"\n";
} else {
for (my $i = 0; $i < length $uids{$key}->{$uid}->{text}; $i+=78) {
print WRITE ($i ? ' ' x length $tag : $tag ), ' ',
substr ($uids{$key}->{$uid}->{text}, $i, 78), "\n";
}
}
if ($latex and $uids{$key}->{$uid}->{type} eq 'uat') {
print WRITE "\\begin{flushright}\n";
print WRITE "\\includegraphics[height=3cm]{$uids{$key}->{$uid}->{file}}\n";
print WRITE "\\end{flushright}\n";
}
}
}
next;
}
if ( m/^uid +(.*)$/ ) {
next if $refresh or $latex;
my $uid = $locale->encode( Encode::decode($fromcharset, $1) );
unless (defined $key) {
warn "key is undefined - input text is possibly malformed near line $line\n";
next;
};
my @h = grep { $uids{$key}->{$_}->{text} eq $uid } @{$keys{$key}};
if (@h) {
# if there are multiple matches we can't distinguish them
print WRITE print_tag($key, pop @h)." $uid\n";
} else {
warn "uid '$uid' not found on key $key\n";
print WRITE "(" . (' ' x @mykeys) . ") $uid\n";
}
next;
}
if ( /^(?:-+|_+)$/ and $latex ) {
$_ = "\n\\hrule\n";
}
print WRITE;
}
if ($latex and $keys > 0) {
print WRITE "\\end{samepage}\n";
}
print WRITE "Legend:\n";
my $num_myuids = 0;
foreach my $i (0 .. $#mykeys) {
print WRITE '(' . ' 'x$i . 'S' . ' 'x(@mykeys-$i-1) . ") signed with $mykeys[$i] $uids{$mykeys[$i]}->{$keys{$mykeys[$i]}->[0]}->{text}\n";
$num_myuids += @{$keys{$mykeys[$i]}};
}
my $i = 0;
foreach my $mykey (@mykeys) {
foreach my $myuid (@{$keys{$mykey}}) {
print WRITE "[" . ' 'x$i . 'S' . ' 'x($num_myuids-$i-1) . "] has signed $mykey $uids{$mykey}->{$myuid}->{text}\n";
$i++;
}
}
close TXT;
if ($latex) {
print WRITE <<'EOF';
\end{alltt}
\end{document}
EOF
}
close WRITE;
__END__
=head1 NAME
B<gpgsigs> - annotate list of GnuPG keys with already done signatures
=head1 SYNOPSIS
B<gpgsigs> [I<options>] I<keyid>I<[>B<,>I<keyidI<[>B<,>I<...>I<]>>I<]> F<keytxt> [F<outfile>]
=head1 DESCRIPTION
B<gpgsigs> was written to assist the user in signing keys during a keysigning
party. It takes as input a file containing keys in C<gpg --list-keys> format
and prepends every line with a tag indicating if the user has already signed
that uid. When the file contains C<ALGO Checksum:> lines and placeholders
(C<__ __>), the checksum is inserted. ALGO can be set to the following algorithms:
MD5 SHA1 SHA256 or RIPEMD160.
=head1 OPTIONS
=over
=item B<-r>
Call I<gpg --recv-keys> before creating the output.
=item B<-f> I<charset>
Convert F<keytxt> from I<charset>. The default is ISO-8859-1.
=item B<-t> I<charset>
Convert UIDs to I<charset>. The default is derived from LC_ALL, LC_CTYPE, and
LANG, and if all these are unset, the default is ISO-8859-1.
=item B<--refresh>
Refresh the UID lists per key from gpg. Useful when UIDs were added or revoked
since the input text was generated.
=item B<--latex>
Generate LaTeX output, including photo IDs. Implies B<--refresh>.
B<Note:> This writes jpg files to the current directory.
=item I<keyid>
Use this keyid (8 or 16 bytes, or full fingerprint) for annotation.
Multiple keyids can be separated by a comma (B<,>).
=item F<keytxt>
Read input from F<keytxt>.
=item F<outfile>
Write output to F<outfile>. Default is stdout.
=back
=head1 EXAMPLES
The following key signing parties are using B<gpgsigs>:
http://www.palfrader.org/ksp-lt2k4.html
http://www.palfrader.org/ksp-lt2k5.html
=head1 BUGS
B<GnuPG> is known to change its output format quite often. This version has
been tested with gpg 1.2.5 and gpg 1.4.1. YMMV.
=head1 SEE ALSO
gpg(1), caff(1).
http://pgp-tools.alioth.debian.org/
=head1 AUTHORS AND COPYRIGHT
(c) 2004 Uli Martens <uli@youam.net>
(c) 2004, 2005 Peter Palfrader <peter@palfrader.org>
(c) 2004, 2005, 2006, 2007 Christoph Berg <cb@df7cb.de>
(c) 2014 Guilhem Moulin <guilhem@guilhem.org>
=head1 LICENSE
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|