added tests to keytrans add and revoke user ID functionality
[monkeysphere.git] / src / share / keytrans
1 #!/usr/bin/perl -T
2
3 # keytrans: this is an RSA key translation utility; it is capable of
4 # transforming RSA keys (both public keys and secret keys) between
5 # several popular representations, including OpenPGP, PEM-encoded
6 # PKCS#1 DER, and OpenSSH-style public key lines.
7
8 # How it behaves depends on the name under which it is invoked.  The
9 # two implementations currently are: pem2openpgp and openpgp2ssh.
10
11
12
13 # pem2openpgp: take a PEM-encoded RSA private-key on standard input, a
14 # User ID as the first argument, and generate an OpenPGP secret key
15 # and certificate from it.
16
17 # WARNING: the secret key material *will* appear on stdout (albeit in
18 # OpenPGP form) -- if you redirect stdout to a file, make sure the
19 # permissions on that file are appropriately locked down!
20
21 # Usage:
22
23 # pem2openpgp 'ssh://'$(hostname -f) < /etc/ssh/ssh_host_rsa_key | gpg --import
24
25
26
27
28 # openpgp2ssh: take a stream of OpenPGP packets containing public or
29 # secret key material on standard input, and a Key ID (or fingerprint)
30 # as the first argument.  Find the matching key in the input stream,
31 # and emit it on stdout in an OpenSSH-compatible format.  If the input
32 # key is an OpenPGP public key (either primary or subkey), the output
33 # will be an OpenSSH single-line public key.  If the input key is an
34 # OpenPGP secret key, the output will be a PEM-encoded RSA key.
35
36 # Example usage:
37
38 # gpg --export-secret-subkeys --export-options export-reset-subkey-passwd $KEYID | \
39 #  openpgp2ssh $KEYID | ssh-add /dev/stdin
40
41
42 # Authors:
43 #  Jameson Rollins <jrollins@finestructure.net>
44 #  Daniel Kahn Gillmor <dkg@fifthhorseman.net>
45
46 # Started on: 2009-01-07 02:01:19-0500
47
48 # License: GPL v3 or later (we may need to adjust this given that this
49 # connects to OpenSSL via perl)
50
51 use strict;
52 use warnings;
53 use File::Basename;
54 use Crypt::OpenSSL::RSA;
55 use Crypt::OpenSSL::Bignum;
56 use Crypt::OpenSSL::Bignum::CTX;
57 use Digest::SHA;
58 use MIME::Base64;
59 use POSIX;
60
61 ## make sure all length() and substr() calls use bytes only:
62 use bytes;
63
64 my $old_format_packet_lengths = { one => 0,
65                                   two => 1,
66                                   four => 2,
67                                   indeterminate => 3,
68 };
69
70 # see RFC 4880 section 9.1 (ignoring deprecated algorithms for now)
71 my $asym_algos = { rsa => 1,
72                    elgamal => 16,
73                    dsa => 17,
74                    };
75
76 # see RFC 4880 section 9.2
77 my $ciphers = { plaintext => 0,
78                 idea => 1,
79                 tripledes => 2,
80                 cast5 => 3,
81                 blowfish => 4,
82                 aes128 => 7,
83                 aes192 => 8,
84                 aes256 => 9,
85                 twofish => 10,
86               };
87
88 # see RFC 4880 section 9.3
89 my $zips = { uncompressed => 0,
90              zip => 1,
91              zlib => 2,
92              bzip2 => 3,
93            };
94
95 # see RFC 4880 section 9.4
96 my $digests = { md5 => 1,
97                 sha1 => 2,
98                 ripemd160 => 3,
99                 sha256 => 8,
100                 sha384 => 9,
101                 sha512 => 10,
102                 sha224 => 11,
103               };
104
105 # see RFC 4880 section 5.2.3.21
106 my $usage_flags = { certify => 0x01,
107                     sign => 0x02,
108                     encrypt_comms => 0x04,
109                     encrypt_storage => 0x08,
110                     encrypt => 0x0c, ## both comms and storage
111                     split => 0x10, # the private key is split via secret sharing
112                     authenticate => 0x20,
113                     shared => 0x80, # more than one person holds the entire private key
114                   };
115
116 # see RFC 4880 section 4.3
117 my $packet_types = { pubkey_enc_session => 1,
118                      sig => 2,
119                      symkey_enc_session => 3,
120                      onepass_sig => 4,
121                      seckey => 5,
122                      pubkey => 6,
123                      sec_subkey => 7,
124                      compressed_data => 8,
125                      symenc_data => 9,
126                      marker => 10,
127                      literal => 11,
128                      trust => 12,
129                      uid => 13,
130                      pub_subkey => 14,
131                      uat => 17,
132                      symenc_w_integrity => 18,
133                      mdc => 19,
134                    };
135
136 # see RFC 4880 section 5.2.1
137 my $sig_types = { binary_doc => 0x00,
138                   text_doc => 0x01,
139                   standalone => 0x02,
140                   generic_certification => 0x10,
141                   persona_certification => 0x11,
142                   casual_certification => 0x12,
143                   positive_certification => 0x13,
144                   subkey_binding => 0x18,
145                   primary_key_binding => 0x19,
146                   key_signature => 0x1f,
147                   key_revocation => 0x20,
148                   subkey_revocation => 0x28,
149                   certification_revocation => 0x30,
150                   timestamp => 0x40,
151                   thirdparty => 0x50,
152                 };
153
154
155 # see RFC 4880 section 5.2.3.23
156 my $revocation_reasons = { no_reason_specified => 0,
157                            key_superseded => 1,
158                            key_compromised => 2,
159                            key_retired => 3,
160                            user_id_no_longer_valid => 32,
161                          };
162
163 # see RFC 4880 section 5.2.3.1
164 my $subpacket_types = { sig_creation_time => 2,
165                         sig_expiration_time => 3,
166                         exportable => 4,
167                         trust_sig => 5,
168                         regex => 6,
169                         revocable => 7,
170                         key_expiration_time => 9,
171                         preferred_cipher => 11,
172                         revocation_key => 12,
173                         issuer => 16,
174                         notation => 20,
175                         preferred_digest => 21,
176                         preferred_compression => 22,
177                         keyserver_prefs => 23,
178                         preferred_keyserver => 24,
179                         primary_uid => 25,
180                         policy_uri => 26,
181                         usage_flags => 27,
182                         signers_uid => 28,
183                         revocation_reason => 29,
184                         features => 30,
185                         signature_target => 31,
186                         embedded_signature => 32,
187                        };
188
189 # bitstring (see RFC 4880 section 5.2.3.24)
190 my $features = { mdc => 0x01
191                };
192
193 # bitstring (see RFC 4880 5.2.3.17)
194 my $keyserver_prefs = { nomodify => 0x80
195                       };
196
197 ###### end lookup tables ######
198
199 # FIXME: if we want to be able to interpret openpgp data as well as
200 # produce it, we need to produce key/value-swapped lookup tables as well.
201
202
203 ########### Math/Utility Functions ##############
204
205
206 # see the bottom of page 44 of RFC 4880 (http://tools.ietf.org/html/rfc4880#page-44)
207 sub simple_checksum {
208   my $bytes = shift;
209
210   return unpack("%16C*",$bytes);
211 }
212
213 # calculate the multiplicative inverse of a mod b this is euclid's
214 # extended algorithm.  For more information see:
215 # http://en.wikipedia.org/wiki/Extended_Euclidean_algorithm the
216 # arguments here should be Crypt::OpenSSL::Bignum objects.  $a should
217 # be the larger of the two values, and the two values should be
218 # coprime.
219
220 sub modular_multi_inverse {
221   my $a = shift;
222   my $b = shift;
223
224
225   my $origdivisor = $b->copy();
226
227   my $ctx = Crypt::OpenSSL::Bignum::CTX->new();
228   my $x = Crypt::OpenSSL::Bignum->zero();
229   my $y = Crypt::OpenSSL::Bignum->one();
230   my $lastx = Crypt::OpenSSL::Bignum->one();
231   my $lasty = Crypt::OpenSSL::Bignum->zero();
232
233   my $finalquotient;
234   my $finalremainder;
235
236   while (! $b->is_zero()) {
237     my ($quotient, $remainder) = $a->div($b, $ctx);
238
239     $a = $b;
240     $b = $remainder;
241
242     my $temp = $x;
243     $x = $lastx->sub($quotient->mul($x, $ctx));
244     $lastx = $temp;
245
246     $temp = $y;
247     $y = $lasty->sub($quotient->mul($y, $ctx));
248     $lasty = $temp;
249   }
250
251   if (!$a->is_one()) {
252     die "did this math wrong.\n";
253   }
254
255   # let's make sure that we return a positive value because RFC 4880,
256   # section 3.2 only allows unsigned values:
257
258   ($finalquotient, $finalremainder) = $lastx->add($origdivisor)->div($origdivisor, $ctx);
259
260   return $finalremainder;
261 }
262
263
264 ############ OpenPGP formatting functions ############
265
266 # make an old-style packet out of the given packet type and body.
267 # old-style  (see RFC 4880 section 4.2)
268 sub make_packet {
269   my $type = shift;
270   my $body = shift;
271   my $options = shift;
272
273   my $len = length($body);
274   my $pseudolen = $len;
275
276   # if the caller wants to use at least N octets of packet length,
277   # pretend that we're using that many.
278   if (defined $options && defined $options->{'packet_length'}) {
279       $pseudolen = 2**($options->{'packet_length'} * 8) - 1;
280   }
281   if ($pseudolen < $len) {
282       $pseudolen = $len;
283   }
284
285   my $lenbytes;
286   my $lencode;
287
288   if ($pseudolen < 2**8) {
289     $lenbytes = $old_format_packet_lengths->{one};
290     $lencode = 'C';
291   } elsif ($pseudolen < 2**16) {
292     $lenbytes = $old_format_packet_lengths->{two};
293     $lencode = 'n';
294   } elsif ($pseudolen < 2**31) {
295     ## not testing against full 32 bits because i don't want to deal
296     ## with potential overflow.
297     $lenbytes = $old_format_packet_lengths->{four};
298     $lencode = 'N';
299   } else {
300     ## what the hell do we do here?
301     $lenbytes = $old_format_packet_lengths->{indeterminate};
302     $lencode = '';
303   }
304
305   return pack('C'.$lencode, 0x80 + ($type * 4) + $lenbytes, $len).
306     $body;
307 }
308
309
310 # takes a Crypt::OpenSSL::Bignum, returns it formatted as OpenPGP MPI
311 # (RFC 4880 section 3.2)
312 sub mpi_pack {
313   my $num = shift;
314
315   my $val = $num->to_bin();
316   my $mpilen = length($val)*8;
317
318 # this is a kludgy way to get the number of significant bits in the
319 # first byte:
320   my $bitsinfirstbyte = length(sprintf("%b", ord($val)));
321
322   $mpilen -= (8 - $bitsinfirstbyte);
323
324   return pack('n', $mpilen).$val;
325 }
326
327 # takes a Crypt::OpenSSL::Bignum, returns an MPI packed in preparation
328 # for an OpenSSH-style public key format.  see:
329 # http://marc.info/?l=openssh-unix-dev&m=121866301718839&w=2
330 sub openssh_mpi_pack {
331   my $num = shift;
332
333   my $val = $num->to_bin();
334   my $mpilen = length($val);
335
336   my $ret = pack('N', $mpilen);
337
338   # if the first bit of the leading byte is high, we should include a
339   # 0 byte:
340   if (ord($val) & 0x80) {
341     $ret = pack('NC', $mpilen+1, 0);
342   }
343
344   return $ret.$val;
345 }
346
347 sub openssh_pubkey_pack {
348   my $key = shift;
349
350   my ($modulus, $exponent) = $key->get_key_parameters();
351
352   return openssh_mpi_pack(Crypt::OpenSSL::Bignum->new_from_bin("ssh-rsa")).
353       openssh_mpi_pack($exponent).
354         openssh_mpi_pack($modulus);
355 }
356
357 # pull an OpenPGP-specified MPI off of a given stream, returning it as
358 # a Crypt::OpenSSL::Bignum.
359 sub read_mpi {
360   my $instr = shift;
361   my $readtally = shift;
362
363   my $bitlen;
364   read($instr, $bitlen, 2) or die "could not read MPI length.\n";
365   $bitlen = unpack('n', $bitlen);
366   $$readtally += 2;
367
368   my $bytestoread = POSIX::floor(($bitlen + 7)/8);
369   my $ret;
370   read($instr, $ret, $bytestoread) or die "could not read MPI body.\n";
371   $$readtally += $bytestoread;
372   return Crypt::OpenSSL::Bignum->new_from_bin($ret);
373 }
374
375
376 # FIXME: genericize these to accept either RSA or DSA keys:
377 sub make_rsa_pub_key_body {
378   my $key = shift;
379   my $key_timestamp = shift;
380
381   my ($n, $e) = $key->get_key_parameters();
382
383   return
384     pack('CN', 4, $key_timestamp).
385       pack('C', $asym_algos->{rsa}).
386         mpi_pack($n).
387           mpi_pack($e);
388 }
389
390 sub make_rsa_sec_key_body {
391   my $key = shift;
392   my $key_timestamp = shift;
393
394   # we're not using $a and $b, but we need them to get to $c.
395   my ($n, $e, $d, $p, $q) = $key->get_key_parameters();
396
397   my $c3 = modular_multi_inverse($p, $q);
398
399   my $secret_material = mpi_pack($d).
400     mpi_pack($p).
401       mpi_pack($q).
402         mpi_pack($c3);
403
404   # according to Crypt::OpenSSL::RSA, the closest value we can get out
405   # of get_key_parameters is 1/q mod p; but according to sec 5.5.3 of
406   # RFC 4880, we're actually looking for u, the multiplicative inverse
407   # of p, mod q.  This is why we're calculating the value directly
408   # with modular_multi_inverse.
409
410   return
411     pack('CN', 4, $key_timestamp).
412       pack('C', $asym_algos->{rsa}).
413         mpi_pack($n).
414           mpi_pack($e).
415             pack('C', 0). # seckey material is not encrypted -- see RFC 4880 sec 5.5.3
416               $secret_material.
417                 pack('n', simple_checksum($secret_material));
418 }
419
420 # expects an RSA key (public or private) and a timestamp
421 sub fingerprint {
422   my $key = shift;
423   my $key_timestamp = shift;
424
425   my $rsabody = make_rsa_pub_key_body($key, $key_timestamp);
426
427   return Digest::SHA::sha1(pack('Cn', 0x99, length($rsabody)).$rsabody);
428 }
429
430
431 # FIXME: handle DSA keys as well!
432 sub makeselfsig {
433   my $rsa = shift;
434   my $uid = shift;
435   my $args = shift;
436
437   # strong assertion of identity is the default (for a self-sig):
438   if (! defined $args->{certification_type}) {
439     $args->{certification_type} = $sig_types->{positive_certification};
440   }
441
442   if (! defined $args->{sig_timestamp}) {
443     $args->{sig_timestamp} = time();
444   }
445   my $key_timestamp = $args->{key_timestamp} + 0;
446
447   # generate and aggregate subpackets:
448
449   # key usage flags:
450   my $flags = 0;
451   if (! defined $args->{usage_flags}) {
452     $flags = $usage_flags->{certify};
453   } else {
454     my @ff = split(",", $args->{usage_flags});
455     foreach my $f (@ff) {
456       if (! defined $usage_flags->{$f}) {
457         die "No such flag $f";
458       }
459       $flags |= $usage_flags->{$f};
460     }
461   }
462   my $usage_subpacket = pack('CCC', 2, $subpacket_types->{usage_flags}, $flags);
463
464   # how should we determine how far off to set the expiration date?
465   # default is no expiration.  Specify the timestamp in seconds from the
466   # key creation.
467   my $expiration_subpacket = '';
468   if (defined $args->{expiration}) {
469     my $expires_in = $args->{expiration} + 0;
470     $expiration_subpacket = pack('CCN', 5, $subpacket_types->{key_expiration_time}, $expires_in);
471   }
472
473
474   # prefer AES-256, AES-192, AES-128, CAST5, 3DES:
475   my $pref_sym_algos = pack('CCCCCCC', 6, $subpacket_types->{preferred_cipher},
476                             $ciphers->{aes256},
477                             $ciphers->{aes192},
478                             $ciphers->{aes128},
479                             $ciphers->{cast5},
480                             $ciphers->{tripledes}
481                            );
482
483   # prefer SHA-512, SHA-384, SHA-256, SHA-224, RIPE-MD/160, SHA-1
484   my $pref_hash_algos = pack('CCCCCCCC', 7, $subpacket_types->{preferred_digest},
485                              $digests->{sha512},
486                              $digests->{sha384},
487                              $digests->{sha256},
488                              $digests->{sha224},
489                              $digests->{ripemd160},
490                              $digests->{sha1}
491                             );
492
493   # prefer ZLIB, BZip2, ZIP
494   my $pref_zip_algos = pack('CCCCC', 4, $subpacket_types->{preferred_compression},
495                             $zips->{zlib},
496                             $zips->{bzip2},
497                             $zips->{zip}
498                            );
499
500   # we support the MDC feature:
501   my $feature_subpacket = pack('CCC', 2, $subpacket_types->{features},
502                                $features->{mdc});
503
504   # keyserver preference: only owner modify (???):
505   my $keyserver_pref = pack('CCC', 2, $subpacket_types->{keyserver_prefs},
506                             $keyserver_prefs->{nomodify});
507
508
509   $args->{hashed_subpackets} =
510       $usage_subpacket.
511         $expiration_subpacket.
512           $pref_sym_algos.
513             $pref_hash_algos.
514               $pref_zip_algos.
515                 $feature_subpacket.
516                   $keyserver_pref;
517
518   return gensig($rsa, $uid, $args);
519 }
520
521 # FIXME: handle non-RSA keys
522
523 # FIXME: this currently only makes self-sigs -- we should parameterize
524 # it to make certifications over keys other than the issuer.
525 sub gensig {
526   my $rsa = shift;
527   my $uid = shift;
528   my $args = shift;
529
530   # FIXME: allow signature creation using digests other than SHA256
531   $rsa->use_sha256_hash();
532
533   # see page 22 of RFC 4880 for why i think this is the right padding
534   # choice to use:
535   $rsa->use_pkcs1_padding();
536
537   if (! $rsa->check_key()) {
538     die "key does not check\n";
539   }
540
541   my $certtype = $args->{certification_type} + 0;
542
543   my $version = pack('C', 4);
544   my $sigtype = pack('C', $certtype);
545   # RSA
546   my $pubkey_algo = pack('C', $asym_algos->{rsa});
547   # SHA256 FIXME: allow signature creation using digests other than SHA256
548   my $hash_algo = pack('C', $digests->{sha256});
549
550   # FIXME: i'm worried about generating a bazillion new OpenPGP
551   # certificates from the same key, which could easily happen if you run
552   # this script more than once against the same key (because the
553   # timestamps will differ).  How can we prevent this?
554
555   # this argument (if set) overrides the current time, to
556   # be able to create a standard key.  If we read the key from a file
557   # instead of stdin, should we use the creation time on the file?
558   my $sig_timestamp = ($args->{sig_timestamp} + 0);
559   my $key_timestamp = ($args->{key_timestamp} + 0);
560
561   if ($key_timestamp > $sig_timestamp) {
562     die "key timestamp must not be later than signature timestamp\n";
563   }
564
565   my $creation_time_packet = pack('CCN', 5, $subpacket_types->{sig_creation_time}, $sig_timestamp);
566
567   my $hashed_subs = $creation_time_packet.$args->{hashed_subpackets};
568
569   my $subpacket_octets = pack('n', length($hashed_subs));
570
571   my $sig_data_to_be_hashed =
572     $version.
573       $sigtype.
574         $pubkey_algo.
575           $hash_algo.
576             $subpacket_octets.
577               $hashed_subs;
578
579   my $pubkey = make_rsa_pub_key_body($rsa, $key_timestamp);
580
581   # this is for signing.  it needs to be an old-style header with a
582   # 2-packet octet count.
583
584   my $key_data = make_packet($packet_types->{pubkey}, $pubkey, {'packet_length'=>2});
585
586   # take the last 8 bytes of the fingerprint as the keyid:
587   my $keyid = substr(fingerprint($rsa, $key_timestamp), 20 - 8, 8);
588
589   # the v4 signature trailer is:
590
591   # version number, literal 0xff, and then a 4-byte count of the
592   # signature data itself.
593   my $trailer = pack('CCN', 4, 0xff, length($sig_data_to_be_hashed));
594
595   my $uid_data =
596     pack('CN', 0xb4, length($uid)).
597       $uid;
598
599   my $datatosign =
600     $key_data.
601       $uid_data.
602         $sig_data_to_be_hashed.
603           $trailer;
604
605   # FIXME: handle signatures over digests other than SHA256:
606   my $data_hash = Digest::SHA::sha256_hex($datatosign);
607
608   my $issuer_packet = pack('CCa8', 9, $subpacket_types->{issuer}, $keyid);
609
610   my $sig = Crypt::OpenSSL::Bignum->new_from_bin($rsa->sign($datatosign));
611
612   my $sig_body =
613     $sig_data_to_be_hashed.
614       pack('n', length($issuer_packet)).
615         $issuer_packet.
616           pack('n', hex(substr($data_hash, 0, 4))).
617             mpi_pack($sig);
618
619   return make_packet($packet_types->{sig}, $sig_body);
620 }
621
622 # FIXME: switch to passing the whole packet as the arg, instead of the
623 # input stream.
624
625 # FIXME: think about native perl representation of the packets instead.
626
627 # Put a user ID into the $data
628 sub finduid {
629   my $data = shift;
630   my $instr = shift;
631   my $tag = shift;
632   my $packetlen = shift;
633
634   my $dummy;
635   ($tag == $packet_types->{uid}) or die "This should not be called on anything but a User ID packet\n";
636
637   read($instr, $dummy, $packetlen);
638   $data->{uid}->{$dummy} = {};
639   $data->{current}->{uid} = $dummy;
640 }
641
642
643 # find signatures associated with the given fingerprint and user ID.
644 sub findsig {
645   my $data = shift;
646   my $instr = shift;
647   my $tag = shift;
648   my $packetlen = shift;
649
650   ($tag == $packet_types->{sig}) or die "No calling findsig on anything other than a signature packet.\n";
651
652   my $dummy;
653   my $readbytes = 0;
654
655   read($instr, $dummy, $packetlen - $readbytes) or die "Could not read in this packet.\n";
656
657   if ((! defined $data->{key}) ||
658       (! defined $data->{uid}) ||
659       (! defined $data->{uid}->{$data->{target}->{uid}})) {
660     # the user ID we are looking for has not been found yet.
661     return;
662   }
663
664   # FIXME: if we get two primary keys on stdin, both with the same
665   # targetd user ID, we'll store signatures from both keys, which is
666   # probably wrong.
667
668   # the current ID is not what we're looking for:
669   return if ($data->{current}->{uid} ne $data->{target}->{uid});
670
671   # just storing the raw signatures for the moment:
672   push @{$data->{sigs}}, make_packet($packet_types->{sig}, $dummy);
673   return;
674
675 }
676
677 # given an input stream and data, store the found key in data and
678 # consume the rest of the stream corresponding to the packet.
679 # data contains: (fpr: fingerprint to find, key: current best guess at key)
680 sub findkey {
681   my $data = shift;
682   my $instr = shift;
683   my $tag = shift;
684   my $packetlen = shift;
685
686   my $dummy;
687   my $ver;
688   my $readbytes = 0;
689
690   read($instr, $ver, 1) or die "could not read key version\n";
691   $readbytes += 1;
692   $ver = ord($ver);
693
694   if ($ver != 4) {
695     printf(STDERR "We only work with version 4 keys.  This key appears to be version %s.\n", $ver);
696     read($instr, $dummy, $packetlen - $readbytes) or die "Could not skip past this packet.\n";
697     return;
698   }
699
700   my $key_timestamp;
701   read($instr, $key_timestamp, 4) or die "could not read key timestamp.\n";
702   $readbytes += 4;
703   $key_timestamp = unpack('N', $key_timestamp);
704
705   my $algo;
706   read($instr, $algo, 1) or die "could not read key algorithm.\n";
707   $readbytes += 1;
708   $algo = ord($algo);
709   if ($algo != $asym_algos->{rsa}) {
710     printf(STDERR "We only support RSA keys (this key used algorithm %d).\n", $algo);
711     read($instr, $dummy, $packetlen - $readbytes) or die "Could not skip past this packet.\n";
712     return;
713   }
714
715   ## we have an RSA key.
716   my $modulus = read_mpi($instr, \$readbytes);
717   my $exponent = read_mpi($instr, \$readbytes);
718
719   my $pubkey = Crypt::OpenSSL::RSA->new_key_from_parameters($modulus, $exponent);
720   my $foundfpr = fingerprint($pubkey, $key_timestamp);
721
722   my $foundfprstr = Crypt::OpenSSL::Bignum->new_from_bin($foundfpr)->to_hex();
723   # left-pad with 0's to bring up to full 40-char (160-bit) fingerprint:
724   $foundfprstr = sprintf("%040s", $foundfprstr);
725
726   # is this a match?
727   if ((!defined($data->{target}->{fpr})) ||
728       (substr($foundfprstr, -1 * length($data->{target}->{fpr})) eq $data->{target}->{fpr})) {
729     if (defined($data->{key})) {
730       die "Found two matching keys.\n";
731     }
732     $data->{key} = { 'rsa' => $pubkey,
733                      'timestamp' => $key_timestamp };
734   }
735
736   if ($tag != $packet_types->{seckey} &&
737       $tag != $packet_types->{sec_subkey}) {
738     if ($readbytes < $packetlen) {
739       read($instr, $dummy, $packetlen - $readbytes) or die "Could not skip past this packet.\n";
740     }
741     return;
742   }
743   if (!defined($data->{key})) {
744     # we don't think the public part of this key matches
745     if ($readbytes < $packetlen) {
746       read($instr, $dummy, $packetlen - $readbytes) or die "Could not skip past this packet.\n";
747     }
748     return;
749   }
750
751   my $s2k;
752   read($instr, $s2k, 1) or die "Could not read S2K octet.\n";
753   $readbytes += 1;
754   $s2k = ord($s2k);
755   if ($s2k != 0) {
756     printf(STDERR "We cannot handle encrypted secret keys.  Skipping!\n") ;
757     read($instr, $dummy, $packetlen - $readbytes) or die "Could not skip past this packet.\n";
758     return;
759   }
760
761   # secret material is unencrypted
762   # see http://tools.ietf.org/html/rfc4880#section-5.5.3
763   my $d = read_mpi($instr, \$readbytes);
764   my $p = read_mpi($instr, \$readbytes);
765   my $q = read_mpi($instr, \$readbytes);
766   my $u = read_mpi($instr, \$readbytes);
767
768   my $checksum;
769   read($instr, $checksum, 2) or die "Could not read checksum of secret key material.\n";
770   $readbytes += 2;
771   $checksum = unpack('n', $checksum);
772
773   # FIXME: compare with the checksum!  how?  the data is
774   # gone into the Crypt::OpenSSL::Bignum
775
776   $data->{key}->{rsa} = Crypt::OpenSSL::RSA->new_key_from_parameters($modulus,
777                                                                      $exponent,
778                                                                      $d,
779                                                                      $p,
780                                                                      $q);
781
782   $data->{key}->{rsa}->check_key() or die "Secret key is not a valid RSA key.\n";
783
784   if ($readbytes < $packetlen) {
785     read($instr, $dummy, $packetlen - $readbytes) or die "Could not skip past this packet.\n";
786   }
787 }
788
789 sub openpgp2rsa {
790   my $instr = shift;
791   my $fpr = shift;
792
793   if (defined $fpr) {
794     if (length($fpr) < 8) {
795       die "We need at least 8 hex digits of fingerprint.\n";
796     }
797     $fpr = uc($fpr);
798   }
799
800   my $data = { 'fpr' => $fpr};
801   my $subs = { $packet_types->{pubkey} => \&findkey,
802                $packet_types->{pub_subkey} => \&findkey,
803                $packet_types->{seckey} => \&findkey,
804                $packet_types->{sec_subkey} => \&findkey };
805
806   packetwalk($instr, $subs, $data);
807
808   return $data->{key}->{rsa};
809 }
810
811 sub adduserid {
812   my $instr = shift;
813   my $fpr = shift;
814   my $uid = shift;
815   my $args = shift;
816
817   if ((! defined $fpr) ||
818       (length($fpr) < 8)) {
819     die "We need at least 8 hex digits of fingerprint.\n";
820   }
821
822   $fpr = uc($fpr);
823
824   if (! defined $uid) {
825     die "No User ID defined.\n";
826   }
827
828   my $data = { target => { fpr => $fpr,
829                            uid => $uid,
830                          },
831              };
832   my $subs = { $packet_types->{seckey} => \&findkey,
833                $packet_types->{uid} => \&finduid,
834                $packet_types->{sig} => \&findsig,
835              };
836
837   packetwalk($instr, $subs, $data);
838
839   if ((! defined $data->{key}) ||
840       (! defined $data->{key}->{rsa}) ||
841       (! defined $data->{key}->{timestamp})) {
842     die "The key requested was not found.\n"
843   }
844
845   if (defined $data->{uid}->{$uid}) {
846     die "The requested User ID '$uid' is already associated with this key.\n";
847   }
848   $args->{key_timestamp} = $data->{key}->{timestamp};
849
850   return
851     make_packet($packet_types->{pubkey}, make_rsa_pub_key_body($data->{key}->{rsa}, $data->{key}->{timestamp})).
852       make_packet($packet_types->{uid}, $uid).
853         makeselfsig($data->{key}->{rsa},
854                     $uid,
855                     $args);
856
857 }
858
859
860 sub revokeuserid {
861   my $instr = shift;
862   my $fpr = shift;
863   my $uid = shift;
864   my $sigtime = shift;
865
866   if ((! defined $fpr) ||
867       (length($fpr) < 8)) {
868     die "We need at least 8 hex digits of fingerprint.\n";
869   }
870
871   $fpr = uc($fpr);
872
873   if (! defined $uid) {
874     die "No User ID defined.\n";
875   }
876
877   my $data = { target => { fpr => $fpr,
878                            uid => $uid,
879                          },
880              };
881   my $subs = { $packet_types->{seckey} => \&findkey,
882                $packet_types->{uid} => \&finduid,
883                $packet_types->{sig} => \&findsig,
884              };
885
886   packetwalk($instr, $subs, $data);
887
888   if ((! defined $data->{uid}) ||
889       (! defined $data->{uid}->{$uid})) {
890     die "The User ID \"$uid\" is not associated with this key";
891   }
892
893   if ((! defined $data->{key}) ||
894       (! defined $data->{key}->{rsa}) ||
895       (! defined $data->{key}->{timestamp})) {
896     die "The key requested was not found."
897   }
898
899   my $revocation_reason = 'No longer using this hostname';
900   if (defined $data->{revocation_reason}) {
901     $revocation_reason = $data->{revocation_reason};
902   }
903
904   my $rev_reason_subpkt = prefixsubpacket(pack('CC',
905                                                $subpacket_types->{revocation_reason},
906                                                $revocation_reasons->{user_id_no_longer_valid}).
907                                           $revocation_reason);
908
909   if (! defined $sigtime) {
910     $sigtime = time();
911   }
912   # what does a signature like this look like?
913   my $args = { key_timestamp => $data->{key}->{timestamp},
914                sig_timestamp => $sigtime,
915                certification_type => $sig_types->{certification_revocation},
916                hashed_subpackets => $rev_reason_subpkt,
917              };
918
919   return
920     make_packet($packet_types->{pubkey}, make_rsa_pub_key_body($data->{key}->{rsa}, $data->{key}->{timestamp})).
921       make_packet($packet_types->{uid}, $uid).
922         join('', @{$data->{sigs}}).
923           gensig($data->{key}->{rsa}, $uid, $args);
924 }
925
926
927 # see 5.2.3.1 for tips on how to calculate the length of a subpacket:
928 sub prefixsubpacket {
929   my $subpacket = shift;
930
931   my $len = length($subpacket);
932   my $prefix;
933   use bytes;
934   if ($len < 192) {
935     # one byte:
936     $prefix = pack('C', $len);
937   } elsif ($len < 16576) {
938     my $in = $len - 192;
939     my $second = $in%256;
940     my $first = ($in - $second)>>8;
941     $prefix = pack('CC', $first + 192, $second)
942   } else {
943     $prefix = pack('CN', 255, $len);
944   }
945   return $prefix.$subpacket;
946 }
947
948
949
950 sub packetwalk {
951   my $instr = shift;
952   my $subs = shift;
953   my $data = shift;
954
955   my $packettag;
956   my $dummy;
957   my $tag;
958
959   while (! eof($instr)) {
960     read($instr, $packettag, 1);
961     $packettag = ord($packettag);
962
963     my $packetlen;
964     if ( ! (0x80 & $packettag)) {
965       die "This is not an OpenPGP packet\n";
966     }
967     if (0x40 & $packettag) {
968       # this is a new-format packet.
969       $tag = (0x3f & $packettag);
970       my $nextlen = 0;
971       read($instr, $nextlen, 1);
972       $nextlen = ord($nextlen);
973       if ($nextlen < 192) {
974         $packetlen = $nextlen;
975       } elsif ($nextlen < 224) {
976         my $newoct;
977         read($instr, $newoct, 1);
978         $newoct = ord($newoct);
979         $packetlen = (($nextlen - 192) << 8) + ($newoct) + 192;
980       } elsif ($nextlen == 255) {
981         read($instr, $nextlen, 4);
982         $packetlen = unpack('N', $nextlen);
983       } else {
984         # packet length is undefined.
985       }
986     } else {
987       # this is an old-format packet.
988       my $lentype;
989       $lentype = 0x03 & $packettag;
990       $tag = ( 0x3c & $packettag ) >> 2;
991       if ($lentype == 0) {
992         read($instr, $packetlen, 1) or die "could not read packet length\n";
993         $packetlen = unpack('C', $packetlen);
994       } elsif ($lentype == 1) {
995         read($instr, $packetlen, 2) or die "could not read packet length\n";
996         $packetlen = unpack('n', $packetlen);
997       } elsif ($lentype == 2) {
998         read($instr, $packetlen, 4) or die "could not read packet length\n";
999         $packetlen = unpack('N', $packetlen);
1000       } else {
1001         # packet length is undefined.
1002       }
1003     }
1004
1005     if (! defined($packetlen)) {
1006       die "Undefined packet lengths are not supported.\n";
1007     }
1008
1009     if (defined $subs->{$tag}) {
1010       $subs->{$tag}($data, $instr, $tag, $packetlen);
1011     } else {
1012       read($instr, $dummy, $packetlen) or die "Could not skip past this packet!\n";
1013     }
1014   }
1015
1016   return $data->{key};
1017 }
1018
1019
1020 for (basename($0)) {
1021   if (/^pem2openpgp$/) {
1022     my $rsa;
1023     my $stdin;
1024
1025     my $uid = shift;
1026     defined($uid) or die "You must specify a user ID string.\n";
1027
1028     # FIXME: fail if there is no given user ID; or should we default to
1029     # hostname_long() from Sys::Hostname::Long ?
1030
1031     if (defined $ENV{PEM2OPENPGP_NEWKEY}) {
1032       $rsa = Crypt::OpenSSL::RSA->generate_key($ENV{PEM2OPENPGP_NEWKEY});
1033     } else {
1034       $stdin = do {
1035         local $/; # slurp!
1036         <STDIN>;
1037       };
1038
1039       $rsa = Crypt::OpenSSL::RSA->new_private_key($stdin);
1040     }
1041
1042     my $key_timestamp = $ENV{PEM2OPENPGP_KEY_TIMESTAMP};
1043     my $sig_timestamp = $ENV{PEM2OPENPGP_TIMESTAMP};
1044     $sig_timestamp = time() if (!defined $sig_timestamp);
1045     $key_timestamp = $sig_timestamp if (!defined $key_timestamp);
1046
1047     print
1048       make_packet($packet_types->{seckey}, make_rsa_sec_key_body($rsa, $key_timestamp)).
1049         make_packet($packet_types->{uid}, $uid).
1050           makeselfsig($rsa,
1051                       $uid,
1052                       { sig_timestamp => $sig_timestamp,
1053                         key_timestamp => $key_timestamp,
1054                         expiration => $ENV{PEM2OPENPGP_EXPIRATION},
1055                         usage_flags => $ENV{PEM2OPENPGP_USAGE_FLAGS},
1056                       }
1057                      );
1058   }
1059   elsif (/^openpgp2ssh$/) {
1060       my $fpr = shift;
1061       my $instream;
1062       open($instream,'-');
1063       binmode($instream, ":bytes");
1064       my $key = openpgp2rsa($instream, $fpr);
1065       if (defined($key)) {
1066         if ($key->is_private()) {
1067           print $key->get_private_key_string();
1068         } else {
1069           print "ssh-rsa ".encode_base64(openssh_pubkey_pack($key), '')."\n";
1070         }
1071       } else {
1072         die "No matching key found.\n";
1073       }
1074   }
1075   elsif (/^keytrans$/) {
1076     # subcommands when keytrans is invoked directly are UNSUPPORTED,
1077     # UNDOCUMENTED, and WILL NOT BE MAINTAINED.
1078     my $subcommand = shift;
1079     for ($subcommand) {
1080       if (/^revokeuserid$/) {
1081         my $fpr = shift;
1082         my $uid = shift;
1083         my $instream;
1084         open($instream,'-');
1085         binmode($instream, ":bytes");
1086
1087         my $revcert = revokeuserid($instream, $fpr, $uid, $ENV{PEM2OPENPGP_TIMESTAMP});
1088
1089         print $revcert;
1090       } elsif (/^adduserid$/) {
1091         my $fpr = shift;
1092         my $uid = shift;
1093         my $instream;
1094         open($instream,'-');
1095         binmode($instream, ":bytes");
1096         my $newuid = adduserid($instream, $fpr, $uid, 
1097                                { sig_timestamp => $ENV{PEM2OPENPGP_TIMESTAMP},
1098                                  expiration => $ENV{PEM2OPENPGP_EXPIRATION},
1099                                  usage_flags => $ENV{PEM2OPENPGP_USAGE_FLAGS},
1100                                });
1101
1102         print $newuid;
1103       } else {
1104         die "Unrecognized subcomand.  keytrans subcommands are not a stable interface!\n";
1105       }
1106     }
1107   }
1108   else {
1109     die "Unrecognized keytrans call.\n";
1110   }
1111 }
1112