]>
git.sthu.org Git - pgp-tools.git/blob - gpgsigs/gpgsigs
5 # See the pod documentation at the end of this file for author,
6 # copyright, and licence information.
9 # libintl-perl (Locale::Recode)
10 # OR libtext-iconv-perl (Text::Iconv),
11 # OR the "recode" binary
16 # * use the user's normal keyring to find signatures
17 # * support for multiple user keys
18 # * better charset conversion
20 # see the Debian changelog for further changes.
22 my $VERSION = qq$Rev$;
36 gpgsigs $VERSION- http://pgp-tools.alioth.debian.org/
37 (c) 2004 Uli Martens <uli\@youam.net>
38 (c) 2004, 2005 Peter Palfrader <peter\@palfrader.org>
39 (c) 2004, 2005 Christoph Berg <cb\@df7cb.de>
45 my ($fd, $error) = @_;
50 Usage: $PROGRAM_NAME [-r] [-t <charset>] <keyid> <keytxt> [<outfile>]
52 keyid is a long or short keyid (e.g. DE7AAF6E94C09C7F or 94C09C7F)
53 separate multiple keyids with ','
54 -r call gpg --recv-keys before proceeding
55 -f <charset> convert <keytxt> from charset
56 -t <charset> convert UIDs to charset in output
62 my ($fromcharset, $charset, $recv_keys);
63 Getopt
::Long
::config
('bundling');
65 '-f=s' => \
$fromcharset,
68 help
=> sub { usage
(*STDOUT
, 0); },
69 version
=> sub { version
(*STDOUT
); exit 0;},
70 ) or usage
(*STDERR
, 1);
74 $fromcharset ||= "ISO-8859-1";
75 $charset ||= $ENV{LC_ALL
} || $ENV{LC_CTYPE
} || $ENV{LANG
} || "ISO-8859-1";
76 $charset = "ISO-8859-1" unless $charset =~ /[\.-]/;
82 my ($text, $from, $to) = @_;
84 if (eval "require Locale::Recode") {
85 my $rt = Locale
::Recode
->new (from
=> $from, to
=> $to);
90 } elsif (eval "require Text::Iconv") {
91 my $it = Text
::Iconv
->new($from, $to);
93 my $result = $it->convert($text);
94 warn ("Could not convert '$text'\n") unless defined $result;
95 return (defined $result) ?
$result : $text
97 my $pid = open3
(\
*WTRFH
, \
*RDRFH
, \
*ERRFH
, 'recode', "utf8..$charset");
101 my $result = <RDRFH
>;
105 warn ("'recode' failed, is it installed?\n") unless defined $result;
106 return (defined $result) ?
$result : $text
112 my $mykey = uc(shift @ARGV);
113 my $keytxt = (shift @ARGV) || usage
(*STDERR
, 1);
114 my $outfile = (shift @ARGV) || '-';
116 my @mykeys = split /,/, $mykey;
117 map { s/^0x//i; } @mykeys;
119 if (!@mykeys || scalar @ARGV) {
122 foreach my $falsekey (grep { $_ !~ /^([0-9A-F]{16,16}|[0-9A-F]{8,8})$/ } @mykeys) {
123 print STDERR
"Invalid keyid $falsekey given\n";
127 -r
$keytxt or die ("$keytxt does not exist\n");
130 # get list of keys in file
132 open (TXT
, $keytxt) or die ("Cannot open $keytxt\n");
134 if ( m/^pub +(?:\d+)[DR]\/([0-9A
-F
]{8}) [0-9]{4}-[0-9]{2}-[0-9]{2} *(.*)/ ) {
141 # get all known signatures
143 print STDERR
"Requesting keys from keyserver\n";
144 system "gpg --recv-keys @keys";
147 print STDERR
"Running --list-sigs, this will take a while ";
148 open SIGS
, "gpg --fixed-list-mode --with-colons --list-sigs @keys 2>/dev/null |"
149 or die "can't get gpg listing";
151 my ($key, $uid, $sigs);
153 if ( m/^pub:(?:.*?:){3,3}([0-9A-F]{16,16}):/ ) {
158 if ( m/^uid:(?:.*?:){8,8}(.*):/s ) {
160 $uid =~ s/\\x([0-9a-f][0-9a-f])/ chr(hex($1)) /gie;
161 $uid = myrecode
($uid, "UTF-8", $charset);
164 if ( m/^sig:(?:.*?:){3,3}([0-9A-F]{8})([0-9A-F]{8}):(?:.*?:){5,5}(.*?):/ ) {
166 if ($class eq '10x') {
168 } elsif ($class eq '11x') {
170 } elsif ($class eq '12x') {
172 } elsif ($class eq '13x') {
177 # Handle the case where one UID was signed multiple times
178 # with different signature classes.
179 my $before = $sigs->{$key}->{$uid}->{$1.$2};
180 if (defined $before) {
181 if ($before eq 'S' || $before eq 's') {
182 $sigs->{$key}->{$uid}->{$1.$2} = $class;
183 } elsif ($class eq 'S' || $class eq 's') {
184 # intentionall left blank
185 } elsif ($before < $class) {
186 $sigs->{$key}->{$uid}->{$1.$2} = $class;
189 $sigs->{$key}->{$uid}->{$1.$2} .= $class;
191 $sigs->{$key}->{$uid}->{$2} = $sigs->{$key}->{$uid}->{$1.$2};
198 next if ( m/^(rev|rvk|sub|tru):/ ); # revoke/revoker/subkey/trust
199 warn "unknown value: '$_', key: ".(defined $key ?
$key :'none')."\n";
204 for my $k ( keys %{$sigs} ) {
205 if ( $k =~ m/^[0-9A-F]{8}([0-9A-F]{8})$/ ) {
206 $sigs->{$1} = $sigs->{$k};
212 open MD
, "gpg --with-colons --print-md md5 $keytxt|" or warn "can't get gpg md5\n";
215 open MD
, "gpg --with-colons --print-md sha1 $keytxt|" or warn "can't get gpg sha1\n";
219 my @MD5 = split /:/, $MD5;
220 my @SHA1 = split /:/, $SHA1;
224 $MD5 =~ s/(.{16})/$1 /;
225 $SHA1 =~ s/(.{20})/$1 /;
226 $MD5 =~ s/([0-9A-Z]{2})/$1 /ig;
227 $SHA1 =~ s/([0-9A-Z]{4})/$1 /ig;
231 my $metatxt = quotemeta($keytxt);
232 $MD5 =~ s/^$metatxt:\s*//;
233 $SHA1 =~ s/^$metatxt:\s*//;
239 my ($key, $uid) = @_;
240 if (! defined $sigs->{$key}->{$uid}) {
241 warn "uid '$uid' not found on key $key\n";
242 #for (keys %{ $sigs->{$key} }) {
243 # print STDERR "only have $_\n";
245 return '(' . (' ' x
@mykeys) . ')';
248 foreach my $mykey (@mykeys) {
249 $r .= defined $sigs->{$key}->{$uid}->{$mykey} ?
$sigs->{$key}->{$uid}->{$mykey} : ' ';
258 print STDERR
"Annotating $keytxt, writing into $outfile\n";
259 open (TXT
, $keytxt) or die ("Cannot open $keytxt\n");
260 open (WRITE
, '>'.$outfile) or die ("Cannot open $outfile for writing\n");
263 $_ = myrecode
($_, $fromcharset, $charset);
264 if (/^MD5 Checksum:/ && defined $MD5) {
265 s/[_[:xdigit:]][_ [:xdigit:]]+_/$MD5/;
267 if (/^SHA1 Checksum:/ && defined $SHA1) {
268 s/[_[:xdigit:]][_ [:xdigit:]]+_/$SHA1/;
270 if ( m/^pub +(?:\d+)[DR]\/([0-9A
-F
]{8}) [0-9]{4}-[0-9]{2}-[0-9]{2} *(.*)/ ) {
273 #if ($uid) { # in gpg 1.2, the first uid is here
274 # print WRITE print_tag($key, $uid) . " $_";
278 if ( m/^uid +(.*)$/ ) {
280 unless (defined $key) {
281 warn "key is undefined - input text is possibly malformed near line $line\n";
284 die "uid is undefined, key $key" unless defined $uid;
285 die "bad tag from $key | $uid" unless defined (print_tag
($key, $uid));
286 print WRITE print_tag
($key, $uid) . " $_";
292 print WRITE
"Legend:\n";
293 foreach my $i (0 .. @mykeys - 1) {
294 print WRITE
'('. ' 'x
$i . 'S' . ' 'x
(@mykeys-$i-1) . ") signed with $mykeys[$i]\n";
302 B<gpgsigs> - annotate list of GnuPG keys with already done signatures
306 B<gpgsigs> [-r] [-f I<charset>] [-t I<charset>] I<keyid>I<[>B<,>I<keyidI<[>B<,>I<...>I<]>>I<]> F<keytxt> [F<outfile>]
310 B<gpgsigs> was written to assist the user in signing keys during a keysigning
311 party. It takes as input a file containing keys in C<gpg --list-keys> format
312 and prepends every line with a tag indicating if the user has already signed
313 that uid. When the file contains C<MD5 Checksum:> or C<SHA1 Checksum:> lines
314 and placeholders (C<__ __>), the checksum is inserted.
322 Call I<gpg --recv-keys> before creating the output.
326 Convert F<keytxt> from I<charset>. The default is ISO-8859-1.
330 Convert UIDs to I<charset>. The default is derived from LC_ALL, LC_CTYPE, and
331 LANG, and if all these are unset, the default is ISO-8859-1.
335 Use this keyid (8 or 16 byte) for annotation. Multiple keyids can be separated
340 Read input from F<keytxt>.
344 Write output to F<outfile>. Default is stdout.
350 The following key signing parties are using B<gpgsigs>:
352 http://www.palfrader.org/ksp-lt2k4.html
354 http://www.palfrader.org/ksp-lt2k5.html
358 B<GnuPG> is known to change its output format quite often. This version has
359 been tested with gpg 1.2.5 and gpg 1.4.1. YMMV.
365 http://pgp-tools.alioth.debian.org/
367 =head1 AUTHORS AND COPYRIGHT
369 (c) 2004 Uli Martens <uli@youam.net>
371 (c) 2004, 2005 Peter Palfrader <peter@palfrader.org>
373 (c) 2004, 2005, 2006 Christoph Berg <cb@df7cb.de>
379 Redistribution and use in source and binary forms, with or without
380 modification, are permitted provided that the following conditions
383 1. Redistributions of source code must retain the above copyright
384 notice, this list of conditions and the following disclaimer.
386 2. Redistributions in binary form must reproduce the above copyright
387 notice, this list of conditions and the following disclaimer in the
388 documentation and/or other materials provided with the distribution.
390 3. The name of the author may not be used to endorse or promote products
391 derived from this software without specific prior written permission.
393 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
394 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
395 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
396 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
397 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
398 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
399 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
400 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
401 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
402 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.