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 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
|
// Copyright (c) 2020, Control Command Inc. All rights reserved.
// Copyright (c) 2018-2022, Sylabs Inc. All rights reserved.
// Copyright (c) Contributors to the Apptainer project, established as
// Apptainer a Series of LF Projects LLC.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
// Package sypgp implements the openpgp integration into the singularity project.
package sypgp
import (
"bytes"
"context"
"crypto"
"encoding/hex"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"os"
"path/filepath"
"regexp"
"strconv"
"strings"
"syscall"
"text/tabwriter"
"time"
"github.com/ProtonMail/go-crypto/openpgp"
"github.com/ProtonMail/go-crypto/openpgp/armor"
"github.com/ProtonMail/go-crypto/openpgp/packet"
"github.com/sylabs/scs-key-client/client"
"github.com/sylabs/singularity/v4/internal/pkg/util/fs"
"github.com/sylabs/singularity/v4/internal/pkg/util/interactive"
"github.com/sylabs/singularity/v4/pkg/syfs"
"github.com/sylabs/singularity/v4/pkg/sylog"
)
const (
helpAuth = `Access token is expired or missing. To update or obtain a token:
1) View configured remotes using "singularity remote list"
2) Identify default remote. It will be listed with square brackets.
3) Login to default remote with "singularity remote login <RemoteName>"
`
helpPush = ` 4) Push key using "singularity key push %[1]X"
`
)
var (
errNotEncrypted = errors.New("key is not encrypted")
// ErrEmptyKeyring is the error when the public, or private keyring
// empty.
ErrEmptyKeyring = errors.New("keyring is empty")
)
// KeyExistsError is a type representing an error associated to a specific key.
type KeyExistsError struct {
fingerprint []byte
}
// HandleOpt is a type representing option which can be passed to NewHandle.
type HandleOpt func(*Handle)
// GlobalHandleOpt is the option to set a keyring as global.
func GlobalHandleOpt() HandleOpt {
return func(h *Handle) {
h.global = true
}
}
// Handle is a structure representing a keyring
type Handle struct {
path string
global bool
}
// GenKeyPairOptions parameters needed for generating new key pair.
type GenKeyPairOptions struct {
Name string
Email string
Comment string
Password string
KeyLength int
}
func (e *KeyExistsError) Error() string {
return fmt.Sprintf("the key with fingerprint %X already belongs to the keyring", e.fingerprint)
}
// GetTokenFile returns a string describing the path to the stored token file
func GetTokenFile() string {
return filepath.Join(syfs.ConfigDir(), "sylabs-token")
}
// dirPath returns a string describing the path to the sypgp home folder
func dirPath() string {
sypgpDir := os.Getenv("SINGULARITY_SYPGPDIR")
if sypgpDir == "" {
return filepath.Join(syfs.ConfigDir(), "sypgp")
}
return sypgpDir
}
// NewHandle initializes a new keyring in path.
func NewHandle(path string, opts ...HandleOpt) *Handle {
newHandle := new(Handle)
newHandle.path = path
for _, opt := range opts {
opt(newHandle)
}
if newHandle.path == "" {
if newHandle.global {
panic("global public keyring requires a path")
}
newHandle.path = dirPath()
}
return newHandle
}
// SecretPath returns a string describing the path to the private keys store
func (keyring *Handle) SecretPath() string {
return filepath.Join(keyring.path, "pgp-secret")
}
// PublicPath returns a string describing the path to the public keys store
func (keyring *Handle) PublicPath() string {
if keyring.global {
return filepath.Join(keyring.path, "global-pgp-public")
}
return filepath.Join(keyring.path, "pgp-public")
}
// ensureDirPrivate makes sure that the file system mode for the named
// directory does not allow other users access to it (neither read nor
// write).
//
// TODO(mem): move this function to a common location
func ensureDirPrivate(dn string) error {
mode := os.FileMode(0o700)
oldumask := syscall.Umask(0o077)
err := os.MkdirAll(dn, mode)
// restore umask...
syscall.Umask(oldumask)
// ... and check if there was an error in the os.MkdirAll call
if err != nil {
return err
}
dirinfo, err := os.Stat(dn)
if err != nil {
return err
}
if currentMode := dirinfo.Mode(); currentMode != os.ModeDir|mode {
sylog.Warningf("Directory mode (%o) on %s needs to be %o, fixing that...", currentMode & ^os.ModeDir, dn, mode)
if err := os.Chmod(dn, mode); err != nil {
return err
}
}
return nil
}
// createOrAppendFile creates the named filename or open it in append mode,
// making sure it has the provided file permissions.
func createOrAppendFile(fn string, mode os.FileMode) (*os.File, error) {
oldumask := syscall.Umask(0)
defer syscall.Umask(oldumask)
f, err := os.OpenFile(fn, os.O_APPEND|os.O_CREATE|os.O_WRONLY, mode)
if err != nil {
return nil, err
}
return f, f.Chmod(mode)
}
// createOrTruncateFile creates the named filename or truncate it,
// making sure it has the provided file permissions.
func createOrTruncateFile(fn string, mode os.FileMode) (*os.File, error) {
oldumask := syscall.Umask(0)
defer syscall.Umask(oldumask)
f, err := os.OpenFile(fn, os.O_TRUNC|os.O_CREATE|os.O_WRONLY, mode)
if err != nil {
return nil, err
}
return f, f.Chmod(mode)
}
// PathsCheck creates the sypgp home folder, secret and public keyring files
// for non global keyring.
func (keyring *Handle) PathsCheck() error {
// global keyring is expected to have the parent directory created
// and accessible by all users, it also doesn't use private keys, the
// permission enforcement for the global keyring is deferred to
// createOrAppendFile and createOrTruncateFile functions
if keyring.global {
return nil
}
if err := ensureDirPrivate(keyring.path); err != nil {
return err
}
if err := fs.EnsureFileWithPermission(keyring.SecretPath(), 0o600); err != nil {
return err
}
return fs.EnsureFileWithPermission(keyring.PublicPath(), 0o600)
}
func loadKeyring(fn string) (openpgp.EntityList, error) {
f, err := os.Open(fn)
if err != nil {
if os.IsNotExist(err) {
return openpgp.EntityList{}, nil
}
return nil, err
}
defer f.Close()
return openpgp.ReadKeyRing(f)
}
// LoadPrivKeyring loads the private keys from local store into an EntityList
func (keyring *Handle) LoadPrivKeyring() (openpgp.EntityList, error) {
if keyring.global {
return nil, fmt.Errorf("global keyring doesn't contain private keys")
}
if err := keyring.PathsCheck(); err != nil {
return nil, err
}
return loadKeyring(keyring.SecretPath())
}
// LoadPubKeyring loads the public keys from local store into an EntityList
func (keyring *Handle) LoadPubKeyring() (openpgp.EntityList, error) {
if err := keyring.PathsCheck(); err != nil {
return nil, err
}
return loadKeyring(keyring.PublicPath())
}
// loadKeysFromFile loads one or more keys from the specified file.
//
// The key can be either a public or private key, and the file might be
// in binary or ascii armored format.
func loadKeysFromFile(fn string) (openpgp.EntityList, error) {
// use an intermediary bytes.Reader to support key import from
// stdin for the seek operation below
data, err := os.ReadFile(fn)
if err != nil {
return nil, err
}
buf := bytes.NewReader(data)
if entities, err := openpgp.ReadKeyRing(buf); err == nil {
return entities, nil
}
// cannot load keys from file, perhaps it's ascii armored?
// rewind and try again
if _, err := buf.Seek(0, io.SeekStart); err != nil {
return nil, err
}
return openpgp.ReadArmoredKeyRing(buf)
}
// printEntity pretty prints an entity entry to w
func printEntity(w io.Writer, index int, e *openpgp.Entity) {
tw := tabwriter.NewWriter(w, 0, 0, 2, ' ', 0)
fmt.Fprintf(tw, "%d)", index)
for _, v := range e.Identities {
fmt.Fprintf(tw, "\tUser:\t%s (%s) <%s>\n", v.UserId.Name, v.UserId.Comment, v.UserId.Email)
}
fmt.Fprintf(tw, "\tCreation time:\t%s\n", e.PrimaryKey.CreationTime)
fmt.Fprintf(tw, "\tFingerprint:\t%0X\n", e.PrimaryKey.Fingerprint)
bits, _ := e.PrimaryKey.BitLength()
fmt.Fprintf(tw, "\tLength (in bits):\t%d\n", bits)
tw.Flush()
fmt.Fprintln(w)
}
func printEntities(w io.Writer, entities openpgp.EntityList) {
for i, e := range entities {
printEntity(w, i, e)
}
}
// PrintEntity pretty prints an entity entry
func PrintEntity(index int, e *openpgp.Entity) {
printEntity(os.Stdout, index, e)
}
// PrintPubKeyring prints the public keyring read from the public local store
func (keyring *Handle) PrintPubKeyring() error {
pubEntlist, err := keyring.LoadPubKeyring()
if err != nil {
return err
}
printEntities(os.Stdout, pubEntlist)
return nil
}
// PrintPrivKeyring prints the secret keyring read from the public local store
func (keyring *Handle) PrintPrivKeyring() error {
privEntlist, err := keyring.LoadPrivKeyring()
if err != nil {
return err
}
printEntities(os.Stdout, privEntlist)
return nil
}
// storePrivKeys writes all the private keys in list to the writer w.
func storePrivKeys(w io.Writer, list openpgp.EntityList) error {
for _, e := range list {
if err := e.SerializePrivateWithoutSigning(w, nil); err != nil {
return err
}
}
return nil
}
// appendPrivateKey appends a private key entity to the local keyring
func (keyring *Handle) appendPrivateKey(e *openpgp.Entity) error {
if keyring.global {
return fmt.Errorf("global keyring can't contain private keys")
}
f, err := createOrAppendFile(keyring.SecretPath(), 0o600)
if err != nil {
return err
}
defer f.Close()
return storePrivKeys(f, openpgp.EntityList{e})
}
// storePubKeys writes all the public keys in list to the writer w.
func storePubKeys(w io.Writer, list openpgp.EntityList) error {
for _, e := range list {
if err := e.Serialize(w); err != nil {
return err
}
}
return nil
}
// appendPubKey appends a public key entity to the local keyring
func (keyring *Handle) appendPubKey(e *openpgp.Entity) error {
mode := os.FileMode(0o600)
if keyring.global {
mode = os.FileMode(0o644)
}
f, err := createOrAppendFile(keyring.PublicPath(), mode)
if err != nil {
return err
}
defer f.Close()
return storePubKeys(f, openpgp.EntityList{e})
}
// storePrivKeyring overwrites the private keyring with the listed keys
func (keyring *Handle) storePrivKeyring(keys openpgp.EntityList) error {
if keyring.global {
return fmt.Errorf("private keys cannot be stored in global keyring")
}
mode := os.FileMode(0o600)
f, err := createOrTruncateFile(keyring.SecretPath(), mode)
if err != nil {
return err
}
defer f.Close()
for _, k := range keys {
if err := k.Serialize(f); err != nil {
return fmt.Errorf("could not store private key: %s", err)
}
}
return nil
}
// storePubKeyring overwrites the public keyring with the listed keys
func (keyring *Handle) storePubKeyring(keys openpgp.EntityList) error {
mode := os.FileMode(0o600)
if keyring.global {
mode = os.FileMode(0o644)
}
f, err := createOrTruncateFile(keyring.PublicPath(), mode)
if err != nil {
return err
}
defer f.Close()
for _, k := range keys {
if err := k.Serialize(f); err != nil {
return fmt.Errorf("could not store public key: %s", err)
}
}
return nil
}
// compareKeyEntity compares a key ID with a string, returning true if the
// key and oldToken match.
func compareKeyEntity(e *openpgp.Entity, oldToken string) bool {
// TODO: there must be a better way to do this...
return fmt.Sprintf("%X", e.PrimaryKey.Fingerprint) == oldToken
}
func findKeyByFingerprint(entities openpgp.EntityList, fingerprint string) *openpgp.Entity {
// Strip any `0x` prefix off the front of the fingerprint we are looking for
// to match with or without `0x` passed in
fingerprint = strings.TrimPrefix(fingerprint, "0x")
for _, e := range entities {
if compareKeyEntity(e, fingerprint) {
return e
}
}
return nil
}
// CheckLocalPubKey will check if we have a local public key matching ckey string
// returns true if there's a match.
func (keyring *Handle) CheckLocalPubKey(ckey string) (bool, error) {
// read all the local public keys
elist, err := loadKeyring(keyring.PublicPath())
switch {
case os.IsNotExist(err):
return false, nil
case err != nil:
return false, fmt.Errorf("unable to load local keyring: %v", err)
}
return findKeyByFingerprint(elist, ckey) != nil, nil
}
// removeKey removes one key identified by fingerprint from list.
//
// removeKey returns a new list with the key removed, or nil if the key
// was not found. The elements of the new list are the _same_ pointers
// found in the original list.
func removeKey(list openpgp.EntityList, fingerprint string) openpgp.EntityList {
// Strip any `0x` prefix off the front of the fingerprint we are looking for
// to match with or without `0x` passed in
fingerprint = strings.TrimPrefix(fingerprint, "0x")
for idx, e := range list {
if compareKeyEntity(e, fingerprint) {
newList := make(openpgp.EntityList, len(list)-1)
copy(newList, list[:idx])
copy(newList[idx:], list[idx+1:])
return newList
}
}
return nil
}
// RemovePrivKey will delete a secret key matching toDelete
func (keyring *Handle) RemovePrivKey(toDelete string) error {
if keyring.global {
return fmt.Errorf("global keyring only holds public keys")
}
// read all the local private keys
elist, err := loadKeyring(keyring.SecretPath())
switch {
case os.IsNotExist(err):
return nil
case err != nil:
return fmt.Errorf("unable to list local keyring: %v", err)
}
newKeyList := removeKey(elist, toDelete)
if newKeyList == nil {
return fmt.Errorf("no key matching given fingerprint found")
}
sylog.Verbosef("Updating local keyring: %v", keyring.SecretPath())
return keyring.storePrivKeyring(newKeyList)
}
// RemovePubKey will delete a public key matching toDelete
func (keyring *Handle) RemovePubKey(toDelete string) error {
// read all the local public keys
elist, err := loadKeyring(keyring.PublicPath())
switch {
case os.IsNotExist(err):
return nil
case err != nil:
return fmt.Errorf("unable to list local keyring: %v", err)
}
newKeyList := removeKey(elist, toDelete)
if newKeyList == nil {
return fmt.Errorf("no key matching given fingerprint found")
}
sylog.Verbosef("Updating local keyring: %v", keyring.PublicPath())
return keyring.storePubKeyring(newKeyList)
}
func (keyring *Handle) genKeyPair(opts GenKeyPairOptions) (*openpgp.Entity, error) {
conf := &packet.Config{RSABits: opts.KeyLength, DefaultHash: crypto.SHA384}
entity, err := openpgp.NewEntity(opts.Name, opts.Comment, opts.Email, conf)
if err != nil {
return nil, err
}
if opts.Password != "" {
// Encrypt private key
if err = EncryptKey(entity, opts.Password); err != nil {
return nil, err
}
}
// Store key parts in local key caches
if err = keyring.appendPrivateKey(entity); err != nil {
return nil, err
}
if err = keyring.appendPubKey(entity); err != nil {
return nil, err
}
return entity, nil
}
// GenKeyPair generates an PGP key pair and store them in the sypgp home folder
func (keyring *Handle) GenKeyPair(opts GenKeyPairOptions) (*openpgp.Entity, error) {
if keyring.global {
return nil, fmt.Errorf("operation not supported for global keyring")
}
if err := keyring.PathsCheck(); err != nil {
return nil, err
}
entity, err := keyring.genKeyPair(opts)
if err != nil {
// Print the missing newline if there’s an error
fmt.Printf("\n")
return nil, err
}
return entity, nil
}
// DecryptKey decrypts a private key provided a pass phrase.
func DecryptKey(k *openpgp.Entity, message string) error {
if message == "" {
message = "Enter key passphrase : "
}
pass, err := interactive.AskQuestionNoEcho(message)
if err != nil {
return err
}
return k.PrivateKey.Decrypt([]byte(pass))
}
// EncryptKey encrypts a private key using a pass phrase
func EncryptKey(k *openpgp.Entity, pass string) error {
if k.PrivateKey.Encrypted {
return fmt.Errorf("key already encrypted")
}
return k.PrivateKey.Encrypt([]byte(pass))
}
// selectPubKey prints a public key list to user and returns the choice
func selectPubKey(el openpgp.EntityList) (*openpgp.Entity, error) {
if len(el) == 0 {
return nil, ErrEmptyKeyring
}
printEntities(os.Stdout, el)
n, err := interactive.AskNumberInRange(0, len(el)-1, "Enter # of public key to use : ")
if err != nil {
return nil, err
}
return el[n], nil
}
// SelectPrivKey prints a secret key list to user and returns the choice
func SelectPrivKey(el openpgp.EntityList) (*openpgp.Entity, error) {
if len(el) == 0 {
return nil, ErrEmptyKeyring
}
printEntities(os.Stdout, el)
n, err := interactive.AskNumberInRange(0, len(el)-1, "Enter # of private key to use : ")
if err != nil {
return nil, err
}
return el[n], nil
}
// formatMROutput formats the key search output that is in machine readable
// format into something readable by people. If longOutput is set, more
// detail is included. See the input format in:
// https://tools.ietf.org/html/draft-shaw-openpgp-hkp-00#section-5.2
// Returns the number of keys(int), the formated string
// in []bytes, and an error if one occurs.
func formatMROutput(mrString string, longOutput bool) (int, []byte, error) {
count := 0
numKeys := 0
longFmt := "%s\t%s\t%s\t%s\t%s\t%s\t"
shortFmt := "%s\t%s\t"
nameFmt := "%s\n"
retList := bytes.NewBuffer(nil)
tw := tabwriter.NewWriter(retList, 0, 0, 2, ' ', 0)
if longOutput {
fmt.Fprintf(tw, longFmt, "FINGERPRINT", "ALGORITHM", "BITS", "CREATION DATE", "EXPIRATION DATE", "STATUS")
} else {
fmt.Fprintf(tw, shortFmt, "KEY ID", "BITS")
}
fmt.Fprintf(tw, nameFmt, "NAME/EMAIL")
lines := strings.Split(mrString, "\n")
first := true
gotName := false
for _, l := range lines {
fields := strings.Split(strings.TrimSpace(l), ":")
if fields[0] == "info" {
var err error
numKeys, err = strconv.Atoi(fields[2])
if err != nil {
return -1, nil, fmt.Errorf("unable to check number of keys")
}
} else if fields[0] == "pub" {
if !first {
if !gotName {
// there was a pub without uid; end line
fmt.Fprintf(tw, "\n")
}
// put a blank line between each key
fmt.Fprintf(tw, "\n")
}
first = false
gotName = false
keyFingerprint := fields[1]
keyBits := fields[3]
if longOutput {
keyType, err := getEncryptionAlgorithmName(fields[2])
if err != nil {
return -1, nil, err
}
keyDateCreated := date(fields[4])
keyDateExpired := date(fields[5])
keyStatus := ""
if fields[6] == "r" {
keyStatus = "[revoked]"
} else if fields[6] == "d" {
keyStatus = "[disabled]"
} else if fields[6] == "e" {
keyStatus = "[expired]"
} else {
keyStatus = "[enabled]"
}
fmt.Fprintf(tw, longFmt, keyFingerprint, keyType, keyBits, keyDateCreated, keyDateExpired, keyStatus)
} else {
// Short output
// take only last 8 chars of fingerprint
fmt.Fprintf(tw, shortFmt, keyFingerprint[len(fields[1])-8:], keyBits)
}
count++
} else if fields[0] == "uid" {
// And the key name/email is on fields[1]
// There may be more than one of these for each pub
if !gotName {
gotName = true
} else {
// indent as far as the pub line
if longOutput {
fmt.Fprintf(tw, longFmt, "", "", "", "", "", "")
} else {
fmt.Fprintf(tw, shortFmt, "", "")
}
}
name, err := url.QueryUnescape(fields[1])
if err != nil {
sylog.Debugf("using undecoded name because url decode didn't work: %v", err)
name = fields[1]
}
fmt.Fprintf(tw, nameFmt, name)
}
}
if numKeys > 0 && !gotName {
// no name was printed with last key
fmt.Fprintf(tw, "\n")
}
tw.Flush()
sylog.Debugf("key count=%d; expect=%d\n", count, numKeys)
// Simple check to ensure the conversion was successful
if count != numKeys {
sylog.Debugf("expecting %d, got %d\n", numKeys, count)
return -1, retList.Bytes(), fmt.Errorf("failed to convert machine readable to human readable output correctly")
}
return count, retList.Bytes(), nil
}
// SearchPubkey connects to a key server and searches for a specific key
func SearchPubkey(ctx context.Context, search string, longOutput bool, opts ...client.Option) error {
// If the search term is 8+ hex chars then it's a fingerprint, and
// we need to prefix with 0x for the search.
IsFingerprint := regexp.MustCompile(`^[0-9A-F]{8,}$`).MatchString
if IsFingerprint(search) {
search = "0x" + search
}
// Get a Key Service client.
c, err := client.NewClient(opts...)
if err != nil {
return err
}
// the max entities to print.
pd := client.PageDetails{
// still will only print 100 entities
Size: 256,
}
// set the machine readable output on
options := []string{client.OptionMachineReadable}
// Retrieve first page of search results from Key Service.
keyText, err := c.PKSLookup(ctx, &pd, search, client.OperationIndex, true, false, options)
if err != nil {
var httpError *client.HTTPError
if ok := errors.As(err, &httpError); ok && httpError.Code() == http.StatusUnauthorized {
// The request failed with HTTP code unauthorized. Guide user to fix that.
sylog.Infof(helpAuth)
return fmt.Errorf("unauthorized or missing token")
} else if ok && httpError.Code() == http.StatusNotFound {
return fmt.Errorf("no matching keys found for fingerprint")
} else {
return fmt.Errorf("failed to get key: %v", err)
}
}
kcount, keyList, err := formatMROutput(keyText, longOutput)
fmt.Printf("Showing %d results\n\n%s", kcount, keyList)
if err != nil {
return err
}
return nil
}
// getEncryptionAlgorithmName obtains the algorithm name for key encryption
func getEncryptionAlgorithmName(n string) (string, error) {
algorithmName := ""
code, err := strconv.ParseInt(n, 10, 64)
if err != nil {
return "", err
}
switch code {
case 1, 2, 3:
algorithmName = "RSA"
case 16:
algorithmName = "Elgamal"
case 17:
algorithmName = "DSA"
case 18:
algorithmName = "Elliptic Curve"
case 19:
algorithmName = "ECDSA"
case 20:
algorithmName = "Reserved"
case 21:
algorithmName = "Diffie-Hellman"
default:
algorithmName = "unknown"
}
return algorithmName, nil
}
// function to obtain a date format from linux epoch time
func date(s string) string {
if s == "" {
return "[ultimate]"
}
if s == "none" {
return s
}
c, _ := strconv.ParseInt(s, 10, 64)
ret := time.Unix(c, 0).String()
return ret
}
// FetchPubkey pulls a public key from the Key Service.
func FetchPubkey(ctx context.Context, fingerprint string, opts ...client.Option) (openpgp.EntityList, error) {
// Decode fingerprint and ensure proper length.
var fp []byte
fp, err := hex.DecodeString(fingerprint)
if err != nil {
return nil, fmt.Errorf("failed to decode fingerprint: %v", err)
}
// theres probably a better way to do this
if len(fp) != 4 && len(fp) != 20 {
return nil, fmt.Errorf("not a valid key lenth: only accepts 8, or 40 chars")
}
// Get a Key Service client.
c, err := client.NewClient(opts...)
if err != nil {
return nil, err
}
// Pull key from Key Service.
keyText, err := c.GetKey(ctx, fp)
if err != nil {
var httpError *client.HTTPError
if ok := errors.As(err, &httpError); ok && httpError.Code() == http.StatusUnauthorized {
// The request failed with HTTP code unauthorized. Guide user to fix that.
sylog.Infof(helpAuth)
return nil, fmt.Errorf("unauthorized or missing token")
} else if ok && httpError.Code() == http.StatusNotFound {
return nil, fmt.Errorf("no matching keys found for fingerprint")
} else {
return nil, fmt.Errorf("failed to get key: %v", err)
}
}
el, err := openpgp.ReadArmoredKeyRing(strings.NewReader(keyText))
if err != nil {
return nil, err
}
if len(el) == 0 {
return nil, fmt.Errorf("no keys in keyring")
}
if len(el) > 1 {
return nil, fmt.Errorf("server returned more than one key for unique fingerprint")
}
return el, nil
}
func serializeEntity(e *openpgp.Entity, blockType string) (string, error) {
w := bytes.NewBuffer(nil)
wr, err := armor.Encode(w, blockType, nil)
if err != nil {
return "", err
}
if err = e.Serialize(wr); err != nil {
wr.Close()
return "", err
}
wr.Close()
return w.String(), nil
}
func serializePrivateEntity(e *openpgp.Entity, blockType string) (string, error) {
w := bytes.NewBuffer(nil)
wr, err := armor.Encode(w, blockType, nil)
if err != nil {
return "", err
}
if err = e.SerializePrivateWithoutSigning(wr, nil); err != nil {
wr.Close()
return "", err
}
wr.Close()
return w.String(), nil
}
// RecryptKey Will decrypt a entity, then recrypt it with the same password.
// This function seems pritty usless, but its not!
func RecryptKey(k *openpgp.Entity, passphrase []byte) error {
if !k.PrivateKey.Encrypted {
return errNotEncrypted
}
if err := k.PrivateKey.Decrypt(passphrase); err != nil {
return err
}
return k.PrivateKey.Encrypt(passphrase)
}
// ExportPrivateKey Will export a private key into a file (kpath).
func (keyring *Handle) ExportPrivateKey(kpath string, armor bool) error {
if err := keyring.PathsCheck(); err != nil {
return err
}
localEntityList, err := loadKeyring(keyring.SecretPath())
if err != nil {
return fmt.Errorf("unable to load private keyring: %v", err)
}
// Get a entity to export
entityToExport, err := SelectPrivKey(localEntityList)
if err != nil {
return err
}
if entityToExport.PrivateKey.Encrypted {
pass, err := interactive.AskQuestionNoEcho("Enter key passphrase : ")
if err != nil {
return err
}
err = RecryptKey(entityToExport, []byte(pass))
if err != nil {
return err
}
}
// Create the file that we will be exporting to
file, err := os.Create(kpath)
if err != nil {
return err
}
defer file.Close()
if !armor {
// Export the key to the file
err = entityToExport.SerializePrivateWithoutSigning(file, nil)
} else {
var keyText string
keyText, err = serializePrivateEntity(entityToExport, openpgp.PrivateKeyType)
if err != nil {
return fmt.Errorf("failed to read ASCII key format: %s", err)
}
file.WriteString(keyText)
}
if err != nil {
return fmt.Errorf("unable to serialize private key: %v", err)
}
fmt.Printf("Private key with fingerprint %X correctly exported to file: %s\n", entityToExport.PrimaryKey.Fingerprint, kpath)
return nil
}
// ExportPubKey Will export a public key into a file (kpath).
func (keyring *Handle) ExportPubKey(kpath string, armor bool) error {
if err := keyring.PathsCheck(); err != nil {
return err
}
localEntityList, err := loadKeyring(keyring.PublicPath())
if err != nil {
return fmt.Errorf("unable to open local keyring: %v", err)
}
entityToExport, err := selectPubKey(localEntityList)
if err != nil {
return err
}
file, err := os.Create(kpath)
if err != nil {
return fmt.Errorf("unable to create file: %v", err)
}
defer file.Close()
if armor {
var keyText string
keyText, err = serializeEntity(entityToExport, openpgp.PublicKeyType)
file.WriteString(keyText)
} else {
err = entityToExport.Serialize(file)
}
if err != nil {
return fmt.Errorf("unable to serialize public key: %v", err)
}
fmt.Printf("Public key with fingerprint %X correctly exported to file: %s\n", entityToExport.PrimaryKey.Fingerprint, kpath)
return nil
}
func findEntityByFingerprint(entities openpgp.EntityList, fingerprint []byte) *openpgp.Entity {
for _, entity := range entities {
if bytes.Equal(entity.PrimaryKey.Fingerprint, fingerprint) {
return entity
}
}
return nil
}
// importPrivateKey imports the specified openpgp Entity, which should
// represent a private key. The entity is added to the private keyring.
func (keyring *Handle) importPrivateKey(entity *openpgp.Entity, setNewPassword bool) error {
if entity.PrivateKey == nil {
return fmt.Errorf("corrupted key, unable to recover data")
}
// Load the local private keys as entitylist
privateEntityList, err := keyring.LoadPrivKeyring()
if err != nil {
return err
}
if findEntityByFingerprint(privateEntityList, entity.PrimaryKey.Fingerprint) != nil {
return &KeyExistsError{fingerprint: entity.PrivateKey.Fingerprint}
}
newEntity := *entity
var password string
if entity.PrivateKey.Encrypted {
password, err = interactive.AskQuestionNoEcho("Enter your key password : ")
if err != nil {
return err
}
if err := newEntity.PrivateKey.Decrypt([]byte(password)); err != nil {
return err
}
}
if setNewPassword {
// Get a new password for the key
password, err = interactive.GetPassphrase("Enter a new password for this key : ", 3)
if err != nil {
return err
}
}
if password != "" {
if err := newEntity.PrivateKey.Encrypt([]byte(password)); err != nil {
return err
}
}
// Store the private key
return keyring.appendPrivateKey(&newEntity)
}
// importPublicKey imports the specified openpgp Entity, which should
// represent a public key. The entity is added to the public keyring.
func (keyring *Handle) importPublicKey(entity *openpgp.Entity) error {
// Load the local public keys as entitylist
publicEntityList, err := keyring.LoadPubKeyring()
if err != nil {
return err
}
if findEntityByFingerprint(publicEntityList, entity.PrimaryKey.Fingerprint) != nil {
return &KeyExistsError{fingerprint: entity.PrimaryKey.Fingerprint}
}
return keyring.appendPubKey(entity)
}
// ImportKey imports one or more keys from the specified file. The keys
// can be either a public or private keys, and the file can be either in
// binary or ascii-armored format.
func (keyring *Handle) ImportKey(kpath string, setNewPassword bool) error {
// Load the private key as an entitylist
pathEntityList, err := loadKeysFromFile(kpath)
if err != nil {
return fmt.Errorf("unable to get entity from: %s: %v", kpath, err)
}
for _, pathEntity := range pathEntityList {
if pathEntity.PrivateKey != nil {
// We have a private key
err := keyring.importPrivateKey(pathEntity, setNewPassword)
if err != nil {
return err
}
fmt.Printf("Key with fingerprint %X successfully added to the private keyring\n",
pathEntity.PrivateKey.Fingerprint)
}
// There's no else here because a single entity can have
// both a private and public keys
if pathEntity.PrimaryKey != nil {
// We have a public key
err := keyring.importPublicKey(pathEntity)
if err != nil {
return err
}
fmt.Printf("Key with fingerprint %X successfully added to the public keyring\n",
pathEntity.PrimaryKey.Fingerprint)
}
}
return nil
}
// PushPubkey pushes a public key to the Key Service.
func PushPubkey(ctx context.Context, e *openpgp.Entity, opts ...client.Option) error {
keyText, err := serializeEntity(e, openpgp.PublicKeyType)
if err != nil {
return err
}
// Get a Key Service client.
c, err := client.NewClient(opts...)
if err != nil {
return err
}
// Push key to Key Service.
if err := c.PKSAdd(ctx, keyText); err != nil {
var httpError *client.HTTPError
if errors.As(err, &httpError) && httpError.Code() == http.StatusUnauthorized {
// The request failed with HTTP code unauthorized. Guide user to fix that.
sylog.Infof(helpAuth+helpPush, e.PrimaryKey.Fingerprint)
return fmt.Errorf("unauthorized or missing token")
}
return fmt.Errorf("key server did not accept PGP key: %v", err)
}
return nil
}
|