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 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
|
package x509util
import (
"bytes"
"crypto/x509"
"crypto/x509/pkix"
"encoding/asn1"
"encoding/base64"
"encoding/json"
"fmt"
"math/big"
"net"
"net/url"
"strconv"
"strings"
"time"
"github.com/pkg/errors"
"go.step.sm/crypto/internal/utils"
)
func convertName(s string) string {
return strings.ReplaceAll(strings.ToLower(s), "_", "")
}
// Names used for key usages.
const (
KeyUsageDigitalSignature = "digitalSignature"
KeyUsageContentCommitment = "contentCommitment"
KeyUsageKeyEncipherment = "keyEncipherment"
KeyUsageDataEncipherment = "dataEncipherment"
KeyUsageKeyAgreement = "keyAgreement"
KeyUsageCertSign = "certSign"
KeyUsageCRLSign = "crlSign"
KeyUsageEncipherOnly = "encipherOnly"
KeyUsageDecipherOnly = "decipherOnly"
)
// Names used for extended key usages.
const (
ExtKeyUsageAny = "any"
ExtKeyUsageServerAuth = "serverAuth"
ExtKeyUsageClientAuth = "clientAuth"
ExtKeyUsageCodeSigning = "codeSigning"
ExtKeyUsageEmailProtection = "emailProtection"
ExtKeyUsageIPSECEndSystem = "ipsecEndSystem"
ExtKeyUsageIPSECTunnel = "ipsecTunnel"
ExtKeyUsageIPSECUser = "ipsecUser"
ExtKeyUsageTimeStamping = "timeStamping"
ExtKeyUsageOCSPSigning = "ocspSigning"
ExtKeyUsageMicrosoftServerGatedCrypto = "microsoftServerGatedCrypto"
ExtKeyUsageNetscapeServerGatedCrypto = "netscapeServerGatedCrypto"
ExtKeyUsageMicrosoftCommercialCodeSigning = "microsoftCommercialCodeSigning"
ExtKeyUsageMicrosoftKernelCodeSigning = "microsoftKernelCodeSigning"
)
// Names used and SubjectAlternativeNames types.
const (
AutoType = "auto"
EmailType = "email" // also known as 'rfc822Name' in RFC 5280
DNSType = "dns"
X400AddressType = "x400Address"
DirectoryNameType = "dn"
EDIPartyNameType = "ediPartyName"
URIType = "uri"
IPType = "ip"
RegisteredIDType = "registeredID"
PermanentIdentifierType = "permanentIdentifier"
HardwareModuleNameType = "hardwareModuleName"
UserPrincipalNameType = "userPrincipalName"
)
//nolint:deadcode // ignore
const (
// These type ids are defined in RFC 5280 page 36.
nameTypeOtherName = 0
nameTypeEmail = 1
nameTypeDNS = 2
nameTypeX400 = 3
nameTypeDirectoryName = 4
nameTypeEDI = 5
nameTypeURI = 6
nameTypeIP = 7
nameTypeRegisteredID = 8
)
// sanTypeSeparator is used to set the type of otherName SANs. The format string
// is "[type:]value", printable will be used as default type if none is
// provided.
const sanTypeSeparator = ":"
// User Principal Name or UPN is a subject alternative name used for smart card
// logon. This OID is associated with Microsoft cryptography and has the
// internal name of szOID_NT_PRINCIPAL_NAME.
//
// The UPN is defined in Microsoft Open Specifications and Windows client
// documentation for IT Pros:
// - https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-wcce/ea9ef420-4cbf-44bc-b093-c4175139f90f
// - https://learn.microsoft.com/en-us/windows/security/identity-protection/smart-cards/smart-card-certificate-requirements-and-enumeration
var oidUserPrincipalName = []int{1, 3, 6, 1, 4, 1, 311, 20, 2, 3}
// RFC 4043 - https://datatracker.ietf.org/doc/html/rfc4043
var oidPermanentIdentifier = []int{1, 3, 6, 1, 5, 5, 7, 8, 3}
// RFC 4108 - https://www.rfc-editor.org/rfc/rfc4108
var oidHardwareModuleNameIdentifier = []int{1, 3, 6, 1, 5, 5, 7, 8, 4}
// RFC 5280 - https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.6
//
// OtherName ::= SEQUENCE {
// type-id OBJECT IDENTIFIER,
// value [0] EXPLICIT ANY DEFINED BY type-id }
type otherName struct {
TypeID asn1.ObjectIdentifier
Value asn1.RawValue
}
// PermanentIdentifier is defined in RFC 4043 as an optional feature that
// may be used by a CA to indicate that two or more certificates relate to the
// same entity.
//
// In device attestation this SAN will contain the UDID (Unique Device
// IDentifier) or serial number of the device.
//
// See https://tools.ietf.org/html/rfc4043
//
// PermanentIdentifier ::= SEQUENCE {
// identifierValue UTF8String OPTIONAL,
// assigner OBJECT IDENTIFIER OPTIONAL
// }
type PermanentIdentifier struct {
Identifier string `json:"identifier,omitempty"`
Assigner ObjectIdentifier `json:"assigner,omitempty"`
}
type asn1PermanentIdentifier struct {
IdentifierValue string `asn1:"utf8,optional"`
Assigner asn1.ObjectIdentifier `asn1:"optional"`
}
func (p *PermanentIdentifier) asn1Type() asn1PermanentIdentifier {
return asn1PermanentIdentifier{
IdentifierValue: p.Identifier,
Assigner: asn1.ObjectIdentifier(p.Assigner),
}
}
// HardwareModuleName is defined in RFC 4108 as an optional feature that by be
// used to identify a hardware module.
//
// The OID defined for this SAN is "1.3.6.1.5.5.7.8.4".
//
// See https://www.rfc-editor.org/rfc/rfc4108#section-5
//
// HardwareModuleName ::= SEQUENCE {
// hwType OBJECT IDENTIFIER,
// hwSerialNum OCTET STRING
// }
type HardwareModuleName struct {
Type ObjectIdentifier `json:"type"`
SerialNumber []byte `json:"serialNumber"`
}
type asn1HardwareModuleName struct {
Type asn1.ObjectIdentifier
SerialNumber []byte `asn1:"tag:4"`
}
func (h *HardwareModuleName) asn1Type() asn1HardwareModuleName {
return asn1HardwareModuleName{
Type: asn1.ObjectIdentifier(h.Type),
SerialNumber: h.SerialNumber,
}
}
// Extension is the JSON representation of a raw X.509 extensions.
type Extension struct {
ID ObjectIdentifier `json:"id"`
Critical bool `json:"critical"`
Value []byte `json:"value"`
}
// newExtension creates an Extension from a standard pkix.Extension.
func newExtension(e pkix.Extension) Extension {
return Extension{
ID: ObjectIdentifier(e.Id),
Critical: e.Critical,
Value: e.Value,
}
}
// newExtensions creates a slice of Extension from a slice of pkix.Extension.
func newExtensions(extensions []pkix.Extension) []Extension {
if extensions == nil {
return nil
}
ret := make([]Extension, len(extensions))
for i, e := range extensions {
ret[i] = newExtension(e)
}
return ret
}
// Set adds the extension to the given X509 certificate.
func (e Extension) Set(c *x509.Certificate) {
c.ExtraExtensions = append(c.ExtraExtensions, pkix.Extension{
Id: asn1.ObjectIdentifier(e.ID),
Critical: e.Critical,
Value: e.Value,
})
}
// ObjectIdentifier represents a JSON strings that unmarshals into an ASN1
// object identifier or OID.
type ObjectIdentifier asn1.ObjectIdentifier
// Equal reports whether o and v represent the same identifier.
func (o ObjectIdentifier) Equal(v ObjectIdentifier) bool {
if len(o) != len(v) {
return false
}
for i := 0; i < len(o); i++ {
if o[i] != v[i] {
return false
}
}
return true
}
// MarshalJSON implements the json.Marshaler interface and returns the string
// version of the asn1.ObjectIdentifier.
func (o ObjectIdentifier) MarshalJSON() ([]byte, error) {
return json.Marshal(asn1.ObjectIdentifier(o).String())
}
// UnmarshalJSON implements the json.Unmarshaler interface and coverts a strings
// like "2.5.29.17" into an ASN1 object identifier.
func (o *ObjectIdentifier) UnmarshalJSON(data []byte) error {
s, err := unmarshalString(data)
if err != nil {
return err
}
oid, err := parseObjectIdentifier(s)
if err != nil {
return err
}
*o = ObjectIdentifier(oid)
return nil
}
// SubjectAlternativeName represents a X.509 subject alternative name. Types
// supported are "dns", "email", "ip", "uri". A special type "auto" or "" can be
// used to try to guess the type of the value.
//
// ASN1Value can only be used for those types where the string value cannot
// contain enough information to encode the value.
type SubjectAlternativeName struct {
Type string `json:"type"`
Value string `json:"value"`
ASN1Value json.RawMessage `json:"asn1Value,omitempty"`
}
// Set sets the subject alternative name in the given x509.Certificate.
func (s SubjectAlternativeName) Set(c *x509.Certificate) {
switch strings.ToLower(s.Type) {
case DNSType:
c.DNSNames = append(c.DNSNames, s.Value)
case EmailType:
c.EmailAddresses = append(c.EmailAddresses, s.Value)
case IPType:
// The validation of the IP would happen in the unmarshaling, but just
// to be sure we are only adding valid IPs.
if ip := net.ParseIP(s.Value); ip != nil {
c.IPAddresses = append(c.IPAddresses, ip)
}
case URIType:
if u, err := url.Parse(s.Value); err == nil {
c.URIs = append(c.URIs, u)
}
case "", AutoType:
dnsNames, ips, emails, uris := SplitSANs([]string{s.Value})
c.DNSNames = append(c.DNSNames, dnsNames...)
c.IPAddresses = append(c.IPAddresses, ips...)
c.EmailAddresses = append(c.EmailAddresses, emails...)
c.URIs = append(c.URIs, uris...)
default:
panic(fmt.Sprintf("unsupported subject alternative name type %s", s.Type))
}
}
// RawValue returns the undecoded ASN.1 object for the SAN.
func (s SubjectAlternativeName) RawValue() (asn1.RawValue, error) {
var zero asn1.RawValue
switch s.Type {
case "", AutoType:
// autotype requires us to find out what the type is.
ip := net.ParseIP(s.Value)
u, err := url.Parse(s.Value)
switch {
case ip != nil:
return SubjectAlternativeName{Type: IPType, Value: s.Value}.RawValue()
case err == nil && u.Scheme != "":
return SubjectAlternativeName{Type: URIType, Value: s.Value}.RawValue()
case strings.Contains(s.Value, "@"):
return SubjectAlternativeName{Type: EmailType, Value: s.Value}.RawValue()
default:
return SubjectAlternativeName{Type: DNSType, Value: s.Value}.RawValue()
}
case EmailType:
valid := isIA5String(s.Value)
if !valid {
return zero, fmt.Errorf("error converting %q to ia5", s.Value)
}
return asn1.RawValue{Tag: nameTypeEmail, Class: asn1.ClassContextSpecific, Bytes: []byte(s.Value)}, nil
case DNSType:
// use SanitizeName for DNS types because it will do some character
// replacement and verify that its an acceptable hostname
ia5String, err := SanitizeName(s.Value)
if err != nil {
return zero, errors.Wrapf(err, "error converting %q to ia5", s.Value)
}
return asn1.RawValue{Tag: nameTypeDNS, Class: asn1.ClassContextSpecific, Bytes: []byte(ia5String)}, nil
case URIType:
valid := isIA5String(s.Value)
if !valid {
return zero, fmt.Errorf("error converting %q to ia5", s.Value)
}
return asn1.RawValue{Tag: nameTypeURI, Class: asn1.ClassContextSpecific, Bytes: []byte(s.Value)}, nil
case IPType:
rawIP := net.ParseIP(s.Value)
if rawIP == nil {
return zero, fmt.Errorf("error converting %q to IP", s.Value)
}
ip := rawIP.To4()
if ip == nil {
ip = rawIP
}
return asn1.RawValue{Tag: nameTypeIP, Class: asn1.ClassContextSpecific, Bytes: ip}, nil
case RegisteredIDType:
if s.Value == "" {
return zero, errors.New("error parsing RegisteredID SAN: empty value is not allowed")
}
oid, err := parseObjectIdentifier(s.Value)
if err != nil {
return zero, errors.Wrap(err, "error parsing OID for RegisteredID SAN")
}
rawBytes, err := asn1.MarshalWithParams(oid, "tag:8")
if err != nil {
return zero, errors.Wrap(err, "error marshaling RegisteredID SAN")
}
return asn1.RawValue{FullBytes: rawBytes}, nil
case PermanentIdentifierType:
var v PermanentIdentifier
switch {
case len(s.ASN1Value) != 0:
if err := json.Unmarshal(s.ASN1Value, &v); err != nil {
return zero, errors.Wrap(err, "error unmarshaling PermanentIdentifier SAN")
}
case s.Value != "":
v.Identifier = s.Value
default: // continue, both identifierValue and assigner are optional
}
otherName, err := marshalOtherName(oidPermanentIdentifier, v.asn1Type())
if err != nil {
return zero, errors.Wrap(err, "error marshaling PermanentIdentifier SAN")
}
return otherName, nil
case HardwareModuleNameType:
var data []byte
switch {
case len(s.ASN1Value) != 0:
data = s.ASN1Value
case s.Value != "":
data = []byte(s.Value)
default:
return zero, errors.New("error parsing HardwareModuleName SAN: empty value or asn1Value is not allowed")
}
var v HardwareModuleName
if err := json.Unmarshal(data, &v); err != nil {
return zero, errors.Wrap(err, "error unmarshaling HardwareModuleName SAN")
}
otherName, err := marshalOtherName(oidHardwareModuleNameIdentifier, v.asn1Type())
if err != nil {
return zero, errors.Wrap(err, "error marshaling HardwareModuleName SAN")
}
return otherName, nil
case DirectoryNameType:
var data []byte
switch {
case len(s.ASN1Value) != 0:
data = s.ASN1Value
case s.Value != "":
data = []byte(s.Value)
default:
return zero, errors.New("error parsing DirectoryName SAN: empty value or asn1Value is not allowed")
}
var dn Name
if err := json.Unmarshal(data, &dn); err != nil {
return zero, errors.Wrap(err, "error unmarshaling DirectoryName SAN")
}
rdn, err := asn1.Marshal(dn.goValue().ToRDNSequence())
if err != nil {
return zero, errors.Wrap(err, "error marshaling DirectoryName SAN")
}
if bytes.Equal(rdn, emptyASN1Subject) {
return zero, errors.New("error parsing DirectoryName SAN: empty or malformed asn1Value")
}
return asn1.RawValue{
Class: asn1.ClassContextSpecific,
Tag: nameTypeDirectoryName,
IsCompound: true,
Bytes: rdn,
}, nil
case UserPrincipalNameType:
if s.Value == "" {
return zero, errors.New("error parsing UserPrincipalName SAN: empty value is not allowed")
}
rawBytes, err := marshalExplicitValue(s.Value, "utf8")
if err != nil {
return zero, errors.Wrapf(err, "error marshaling ASN1 value %q", s.Value)
}
upnBytes, err := asn1.MarshalWithParams(otherName{
TypeID: oidUserPrincipalName,
Value: asn1.RawValue{FullBytes: rawBytes},
}, "tag:0")
if err != nil {
return zero, errors.Wrap(err, "error marshaling UserPrincipalName SAN")
}
return asn1.RawValue{FullBytes: upnBytes}, nil
case X400AddressType, EDIPartyNameType:
return zero, fmt.Errorf("unimplemented SAN type %s", s.Type)
default:
// Assume otherName with a valid oid in type.
oid, err := parseObjectIdentifier(s.Type)
if err != nil {
return zero, fmt.Errorf("unsupported SAN type %s", s.Type)
}
// The default type is printable, but if the value is prefixed with a
// type, use that.
value, params := s.Value, "printable"
if strings.Contains(value, sanTypeSeparator) {
params = strings.Split(value, sanTypeSeparator)[0]
value = value[len(params)+1:]
}
rawBytes, err := marshalExplicitValue(value, params)
if err != nil {
return zero, errors.Wrapf(err, "error marshaling ASN1 value %q", s.Value)
}
// use MarshalWithParams so we can set the context-specific tag - in this case 0
otherNameBytes, err := asn1.MarshalWithParams(otherName{
TypeID: oid,
Value: asn1.RawValue{FullBytes: rawBytes},
}, "tag:0")
if err != nil {
return zero, errors.Wrap(err, "error marshaling otherName SAN")
}
return asn1.RawValue{FullBytes: otherNameBytes}, nil
}
}
// marshalOtherName marshals an otherName field with the given oid and value and
// returns the raw bytes to use.
func marshalOtherName(oid asn1.ObjectIdentifier, value interface{}) (asn1.RawValue, error) {
valueBytes, err := asn1.MarshalWithParams(value, "explicit,tag:0")
if err != nil {
return asn1.RawValue{}, err
}
b, err := asn1.MarshalWithParams(otherName{
TypeID: oid,
Value: asn1.RawValue{FullBytes: valueBytes},
}, "tag:0")
if err != nil {
return asn1.RawValue{}, err
}
return asn1.RawValue{FullBytes: b}, nil
}
type asn1Params struct {
Type string
Params string
}
func parseFieldParameters(str string) (p asn1Params) {
var part string
var params []string
for str != "" {
part, str, _ = strings.Cut(str, ",")
switch part {
// string types
case "utf8", "ia5", "numeric", "printable":
p.Type = part
params = append(params, part)
// types that are parsed from the string.
// int, oid, and bool are not a type that can be set in a tag.
case "int", "oid", "bool", "boolean":
p.Type = part
// types parsed from the string as a time
case "utc", "generalized":
p.Type = part
params = append(params, part)
// base64 encoded asn1 value
case "raw":
p.Type = part
case "":
// skip
default:
params = append(params, part)
}
}
p.Params = strings.Join(params, ",")
return p
}
// marshalValue marshals the given value with the given params.
//
// The return value value can be any type depending on the OID. ASN supports a
// great number of formats, but Golang's asn1 package supports much fewer -- for
// now support anything the Golang asn1 marshaller supports.
//
// See https://www.openssl.org/docs/man1.0.2/man3/ASN1_generate_nconf.html
func marshalValue(value, params string) ([]byte, error) {
p := parseFieldParameters(params)
// Marshal types without a tag support.
switch p.Type {
case "int":
i, err := strconv.Atoi(value)
if err != nil {
return nil, errors.Wrap(err, "invalid int value")
}
return asn1.MarshalWithParams(i, p.Params)
case "oid":
oid, err := parseObjectIdentifier(value)
if err != nil {
return nil, errors.Wrap(err, "invalid oid value")
}
return asn1.MarshalWithParams(oid, p.Params)
case "raw":
// the raw type accepts a base64 encoded byte array which is passed unaltered into the ASN
// marshaller. By using this type users can add ASN1 data types manually into templates
// to support some unsupported types like BMPString, Octet String, and others
return base64.StdEncoding.DecodeString(value)
case "utf8":
if !isUTF8String(value) {
return nil, fmt.Errorf("invalid utf8 value")
}
return asn1.MarshalWithParams(value, p.Params)
case "ia5":
if !isIA5String(value) {
return nil, fmt.Errorf("invalid ia5 value")
}
return asn1.MarshalWithParams(value, p.Params)
case "numeric":
if !isNumericString(value) {
return nil, fmt.Errorf("invalid numeric value")
}
return asn1.MarshalWithParams(value, p.Params)
case "printable":
if !utils.IsPrintableString(value, true, true) {
return nil, fmt.Errorf("invalid printable value")
}
return asn1.MarshalWithParams(value, p.Params)
case "utc", "generalized":
// This is the layout of Time.String() function
const defaultLayout = "2006-01-02 15:04:05.999999999 -0700 MST"
t, err := time.Parse(defaultLayout, value)
if err != nil {
var err2 error
if t, err2 = time.Parse(time.RFC3339, value); err2 != nil {
return nil, errors.Wrapf(err, "invalid %s value", p.Type)
}
}
return asn1.MarshalWithParams(t, p.Params)
case "bool", "boolean":
b, err := strconv.ParseBool(value)
if err != nil {
return nil, errors.Wrap(err, "invalid bool value")
}
return asn1.MarshalWithParams(b, p.Params)
default: // if it's an unknown type, default to printable
if !utils.IsPrintableString(value, true, true) {
return nil, fmt.Errorf("invalid printable value")
}
return asn1.MarshalWithParams(value, p.Params)
}
}
// marshalExplicitValue marshals the given value with given type and returns the
// raw bytes to use. It will add the explicit tag to the final parameters.
func marshalExplicitValue(value, typ string) ([]byte, error) {
return marshalValue(value, "explicit,"+typ)
}
// KeyUsage type represents the JSON array used to represent the key usages of a
// X509 certificate.
type KeyUsage x509.KeyUsage
// Set sets the key usage to the given certificate.
func (k KeyUsage) Set(c *x509.Certificate) {
c.KeyUsage = x509.KeyUsage(k)
}
// UnmarshalJSON implements the json.Unmarshaler interface and coverts a string
// or a list of strings into a key usage.
func (k *KeyUsage) UnmarshalJSON(data []byte) error {
ms, err := unmarshalMultiString(data)
if err != nil {
return err
}
*k = 0
for _, s := range ms {
var ku x509.KeyUsage
switch convertName(s) {
case convertName(KeyUsageDigitalSignature):
ku = x509.KeyUsageDigitalSignature
case convertName(KeyUsageContentCommitment):
ku = x509.KeyUsageContentCommitment
case convertName(KeyUsageKeyEncipherment):
ku = x509.KeyUsageKeyEncipherment
case convertName(KeyUsageDataEncipherment):
ku = x509.KeyUsageDataEncipherment
case convertName(KeyUsageKeyAgreement):
ku = x509.KeyUsageKeyAgreement
case convertName(KeyUsageCertSign):
ku = x509.KeyUsageCertSign
case convertName(KeyUsageCRLSign):
ku = x509.KeyUsageCRLSign
case convertName(KeyUsageEncipherOnly):
ku = x509.KeyUsageEncipherOnly
case convertName(KeyUsageDecipherOnly):
ku = x509.KeyUsageDecipherOnly
default:
return errors.Errorf("unsupported keyUsage %s", s)
}
*k |= KeyUsage(ku)
}
return nil
}
// MarshalJSON implements the json.Marshaler interface and converts a key usage
// into a list of strings.
func (k KeyUsage) MarshalJSON() ([]byte, error) {
var usages []string
if x509.KeyUsage(k)&x509.KeyUsageDigitalSignature != 0 {
usages = append(usages, KeyUsageDigitalSignature)
}
if x509.KeyUsage(k)&x509.KeyUsageContentCommitment != 0 {
usages = append(usages, KeyUsageContentCommitment)
}
if x509.KeyUsage(k)&x509.KeyUsageKeyEncipherment != 0 {
usages = append(usages, KeyUsageKeyEncipherment)
}
if x509.KeyUsage(k)&x509.KeyUsageDataEncipherment != 0 {
usages = append(usages, KeyUsageDataEncipherment)
}
if x509.KeyUsage(k)&x509.KeyUsageKeyAgreement != 0 {
usages = append(usages, KeyUsageKeyAgreement)
}
if x509.KeyUsage(k)&x509.KeyUsageCertSign != 0 {
usages = append(usages, KeyUsageCertSign)
}
if x509.KeyUsage(k)&x509.KeyUsageCRLSign != 0 {
usages = append(usages, KeyUsageCRLSign)
}
if x509.KeyUsage(k)&x509.KeyUsageEncipherOnly != 0 {
usages = append(usages, KeyUsageEncipherOnly)
}
if x509.KeyUsage(k)&x509.KeyUsageDecipherOnly != 0 {
usages = append(usages, KeyUsageDecipherOnly)
}
if len(usages) == 0 && k != 0 {
return nil, fmt.Errorf("cannot marshal key usage %v", k)
}
return json.Marshal(usages)
}
// ExtKeyUsage represents a JSON array of extended key usages.
type ExtKeyUsage []x509.ExtKeyUsage
// Set sets the extended key usages in the given certificate.
func (k ExtKeyUsage) Set(c *x509.Certificate) {
c.ExtKeyUsage = []x509.ExtKeyUsage(k)
}
// UnmarshalJSON implements the json.Unmarshaler interface and coverts a string
// or a list of strings into a list of extended key usages.
func (k *ExtKeyUsage) UnmarshalJSON(data []byte) error {
ms, err := unmarshalMultiString(data)
if err != nil {
return err
}
eku := make([]x509.ExtKeyUsage, len(ms))
for i, s := range ms {
var ku x509.ExtKeyUsage
switch convertName(s) {
case convertName(ExtKeyUsageAny):
ku = x509.ExtKeyUsageAny
case convertName(ExtKeyUsageServerAuth):
ku = x509.ExtKeyUsageServerAuth
case convertName(ExtKeyUsageClientAuth):
ku = x509.ExtKeyUsageClientAuth
case convertName(ExtKeyUsageCodeSigning):
ku = x509.ExtKeyUsageCodeSigning
case convertName(ExtKeyUsageEmailProtection):
ku = x509.ExtKeyUsageEmailProtection
case convertName(ExtKeyUsageIPSECEndSystem):
ku = x509.ExtKeyUsageIPSECEndSystem
case convertName(ExtKeyUsageIPSECTunnel):
ku = x509.ExtKeyUsageIPSECTunnel
case convertName(ExtKeyUsageIPSECUser):
ku = x509.ExtKeyUsageIPSECUser
case convertName(ExtKeyUsageTimeStamping):
ku = x509.ExtKeyUsageTimeStamping
case convertName(ExtKeyUsageOCSPSigning):
ku = x509.ExtKeyUsageOCSPSigning
case convertName(ExtKeyUsageMicrosoftServerGatedCrypto):
ku = x509.ExtKeyUsageMicrosoftServerGatedCrypto
case convertName(ExtKeyUsageNetscapeServerGatedCrypto):
ku = x509.ExtKeyUsageNetscapeServerGatedCrypto
case convertName(ExtKeyUsageMicrosoftCommercialCodeSigning):
ku = x509.ExtKeyUsageMicrosoftCommercialCodeSigning
case convertName(ExtKeyUsageMicrosoftKernelCodeSigning):
ku = x509.ExtKeyUsageMicrosoftKernelCodeSigning
default:
return errors.Errorf("unsupported extKeyUsage %s", s)
}
eku[i] = ku
}
*k = ExtKeyUsage(eku)
return nil
}
// MarshalJSON implements the json.Marshaler interface and converts a list of
// extended key usages to a list of strings
func (k ExtKeyUsage) MarshalJSON() ([]byte, error) {
usages := make([]string, len(k))
for i, eku := range k {
switch eku {
case x509.ExtKeyUsageAny:
usages[i] = ExtKeyUsageAny
case x509.ExtKeyUsageServerAuth:
usages[i] = ExtKeyUsageServerAuth
case x509.ExtKeyUsageClientAuth:
usages[i] = ExtKeyUsageClientAuth
case x509.ExtKeyUsageCodeSigning:
usages[i] = ExtKeyUsageCodeSigning
case x509.ExtKeyUsageEmailProtection:
usages[i] = ExtKeyUsageEmailProtection
case x509.ExtKeyUsageIPSECEndSystem:
usages[i] = ExtKeyUsageIPSECEndSystem
case x509.ExtKeyUsageIPSECTunnel:
usages[i] = ExtKeyUsageIPSECTunnel
case x509.ExtKeyUsageIPSECUser:
usages[i] = ExtKeyUsageIPSECUser
case x509.ExtKeyUsageTimeStamping:
usages[i] = ExtKeyUsageTimeStamping
case x509.ExtKeyUsageOCSPSigning:
usages[i] = ExtKeyUsageOCSPSigning
case x509.ExtKeyUsageMicrosoftServerGatedCrypto:
usages[i] = ExtKeyUsageMicrosoftServerGatedCrypto
case x509.ExtKeyUsageNetscapeServerGatedCrypto:
usages[i] = ExtKeyUsageNetscapeServerGatedCrypto
case x509.ExtKeyUsageMicrosoftCommercialCodeSigning:
usages[i] = ExtKeyUsageMicrosoftCommercialCodeSigning
case x509.ExtKeyUsageMicrosoftKernelCodeSigning:
usages[i] = ExtKeyUsageMicrosoftKernelCodeSigning
default:
return nil, fmt.Errorf("unsupported extKeyUsage %v", eku)
}
}
return json.Marshal(usages)
}
// UnknownExtKeyUsage represents the list of OIDs of extended key usages unknown
// to crypto/x509.
type UnknownExtKeyUsage MultiObjectIdentifier
// MarshalJSON implements the json.Marshaler interface in UnknownExtKeyUsage.
func (u UnknownExtKeyUsage) MarshalJSON() ([]byte, error) {
return MultiObjectIdentifier(u).MarshalJSON()
}
// UnmarshalJSON implements the json.Unmarshaler interface in UnknownExtKeyUsage.
func (u *UnknownExtKeyUsage) UnmarshalJSON(data []byte) error {
var v MultiObjectIdentifier
if err := json.Unmarshal(data, &v); err != nil {
return errors.Wrap(err, "error unmarshaling json")
}
*u = UnknownExtKeyUsage(v)
return nil
}
// Set sets the policy identifiers to the given certificate.
func (u UnknownExtKeyUsage) Set(c *x509.Certificate) {
c.UnknownExtKeyUsage = u
}
// SubjectKeyID represents the binary value of the subject key identifier
// extension, this should be the SHA-1 hash of the public key. In JSON this
// value should be a base64-encoded string, and in most cases it should not be
// set because it will be automatically generated.
type SubjectKeyID []byte
// Set sets the subject key identifier to the given certificate.
func (id SubjectKeyID) Set(c *x509.Certificate) {
c.SubjectKeyId = id
}
// AuthorityKeyID represents the binary value of the authority key identifier
// extension. It should be the subject key identifier of the parent certificate.
// In JSON this value should be a base64-encoded string, and in most cases it
// should not be set, as it will be automatically provided.
type AuthorityKeyID []byte
// Set sets the authority key identifier to the given certificate.
func (id AuthorityKeyID) Set(c *x509.Certificate) {
c.AuthorityKeyId = id
}
// OCSPServer contains the list of OSCP servers that will be encoded in the
// authority information access extension.
type OCSPServer MultiString
// UnmarshalJSON implements the json.Unmarshaler interface in OCSPServer.
func (o *OCSPServer) UnmarshalJSON(data []byte) error {
ms, err := unmarshalMultiString(data)
if err != nil {
return err
}
*o = ms
return nil
}
// Set sets the list of OSCP servers to the given certificate.
func (o OCSPServer) Set(c *x509.Certificate) {
c.OCSPServer = o
}
// IssuingCertificateURL contains the list of the issuing certificate url that
// will be encoded in the authority information access extension.
type IssuingCertificateURL MultiString
// UnmarshalJSON implements the json.Unmarshaler interface in IssuingCertificateURL.
func (u *IssuingCertificateURL) UnmarshalJSON(data []byte) error {
ms, err := unmarshalMultiString(data)
if err != nil {
return err
}
*u = ms
return nil
}
// Set sets the list of issuing certificate urls to the given certificate.
func (u IssuingCertificateURL) Set(c *x509.Certificate) {
c.IssuingCertificateURL = u
}
// CRLDistributionPoints contains the list of CRL distribution points that will
// be encoded in the CRL distribution points extension.
type CRLDistributionPoints MultiString
// UnmarshalJSON implements the json.Unmarshaler interface in CRLDistributionPoints.
func (u *CRLDistributionPoints) UnmarshalJSON(data []byte) error {
ms, err := unmarshalMultiString(data)
if err != nil {
return err
}
*u = ms
return nil
}
// Set sets the CRL distribution points to the given certificate.
func (u CRLDistributionPoints) Set(c *x509.Certificate) {
c.CRLDistributionPoints = u
}
// PolicyIdentifiers represents the list of OIDs to set in the certificate
// policies extension.
type PolicyIdentifiers MultiOID
// MarshalJSON implements the json.Marshaler interface in PolicyIdentifiers.
func (p PolicyIdentifiers) MarshalJSON() ([]byte, error) {
return MultiOID(p).MarshalJSON()
}
// UnmarshalJSON implements the json.Unmarshaler interface in PolicyIdentifiers.
func (p *PolicyIdentifiers) UnmarshalJSON(data []byte) error {
var v MultiOID
if err := json.Unmarshal(data, &v); err != nil {
return errors.Wrap(err, "error unmarshaling json")
}
*p = PolicyIdentifiers(v)
return nil
}
// Set sets the policy identifiers to the given certificate. To ensure
// compatibility between different versions of Go, set will set
// PolicyIdentifiers and Policies with the same data.
//
// Programs using go.mod 1.24+ will only marshal the Policies field, older
// versions will only marshal PolicyIdentifiers. This can be changed with the
// GODEBUG setting "x509usepolicies".
func (p PolicyIdentifiers) Set(c *x509.Certificate) {
c.Policies = p
for _, pp := range p {
if oid, err := parseObjectIdentifier(pp.String()); err == nil {
c.PolicyIdentifiers = append(c.PolicyIdentifiers, oid)
}
}
}
// BasicConstraints represents the X509 basic constraints extension and defines
// if a certificate is a CA and then maximum depth of valid certification paths
// that include the certificate. A MaxPathLen of zero indicates that no non-
// self-issued intermediate CA certificates may follow in a valid certification
// path. To do not impose a limit the MaxPathLen should be set to -1.
type BasicConstraints struct {
IsCA bool `json:"isCA"`
MaxPathLen int `json:"maxPathLen"`
}
// Set sets the basic constraints to the given certificate.
func (b BasicConstraints) Set(c *x509.Certificate) {
c.BasicConstraintsValid = true
c.IsCA = b.IsCA
if c.IsCA {
switch {
case b.MaxPathLen == 0:
c.MaxPathLen = 0
c.MaxPathLenZero = true
case b.MaxPathLen < 0:
c.MaxPathLen = -1
c.MaxPathLenZero = false
default:
c.MaxPathLen = b.MaxPathLen
c.MaxPathLenZero = false
}
} else {
c.MaxPathLen = 0
c.MaxPathLenZero = false
}
}
// NameConstraints represents the X509 Name constraints extension and defines a
// names space within which all subject names in subsequent certificates in a
// certificate path must be located. The name constraints extension must be used
// only in a CA.
type NameConstraints struct {
Critical bool `json:"critical"`
PermittedDNSDomains MultiString `json:"permittedDNSDomains"`
ExcludedDNSDomains MultiString `json:"excludedDNSDomains"`
PermittedIPRanges MultiIPNet `json:"permittedIPRanges"`
ExcludedIPRanges MultiIPNet `json:"excludedIPRanges"`
PermittedEmailAddresses MultiString `json:"permittedEmailAddresses"`
ExcludedEmailAddresses MultiString `json:"excludedEmailAddresses"`
PermittedURIDomains MultiString `json:"permittedURIDomains"`
ExcludedURIDomains MultiString `json:"excludedURIDomains"`
}
// Set sets the name constraints in the given certificate.
func (n NameConstraints) Set(c *x509.Certificate) {
c.PermittedDNSDomainsCritical = n.Critical
c.PermittedDNSDomains = n.PermittedDNSDomains
c.ExcludedDNSDomains = n.ExcludedDNSDomains
c.PermittedIPRanges = n.PermittedIPRanges
c.ExcludedIPRanges = n.ExcludedIPRanges
c.PermittedEmailAddresses = n.PermittedEmailAddresses
c.ExcludedEmailAddresses = n.ExcludedEmailAddresses
c.PermittedURIDomains = n.PermittedURIDomains
c.ExcludedURIDomains = n.ExcludedURIDomains
}
// SerialNumber is the JSON representation of the X509 serial number.
type SerialNumber struct {
*big.Int
}
// Set sets the serial number in the given certificate.
func (s SerialNumber) Set(c *x509.Certificate) {
c.SerialNumber = s.Int
}
// MarshalJSON implements the json.Marshaler interface, and encodes a
// SerialNumber using the big.Int marshaler.
func (s *SerialNumber) MarshalJSON() ([]byte, error) {
if s == nil || s.Int == nil {
return []byte(`null`), nil
}
return s.Int.MarshalJSON()
}
// UnmarshalJSON implements the json.Unmarshal interface and unmarshals an
// integer or a string into a serial number. If a string is used, a prefix of
// “0b” or “0B” selects base 2, “0”, “0o” or “0O” selects base 8, and “0x” or
// “0X” selects base 16. Otherwise, the selected base is 10 and no prefix is
// accepted.
func (s *SerialNumber) UnmarshalJSON(data []byte) error {
if sn, ok := maybeString(data); ok {
// Using base 0 to accept prefixes 0b, 0o, 0x but defaults as base 10.
b, ok := new(big.Int).SetString(sn, 0)
if !ok {
return errors.Errorf("error unmarshaling json: serialNumber %s is not valid", sn)
}
*s = SerialNumber{
Int: b,
}
return nil
}
// Assume a number.
var i int64
if err := json.Unmarshal(data, &i); err != nil {
return errors.Wrap(err, "error unmarshaling json")
}
*s = SerialNumber{
Int: new(big.Int).SetInt64(i),
}
return nil
}
func createCertificateSubjectAltNameExtension(c Certificate, subjectIsEmpty bool) (Extension, error) {
return createSubjectAltNameExtension(c.DNSNames, c.EmailAddresses, c.IPAddresses, c.URIs, c.SANs, subjectIsEmpty)
}
func createCertificateRequestSubjectAltNameExtension(c CertificateRequest, subjectIsEmpty bool) (Extension, error) {
return createSubjectAltNameExtension(c.DNSNames, c.EmailAddresses, c.IPAddresses, c.URIs, c.SANs, subjectIsEmpty)
}
// createSubjectAltNameExtension will construct an Extension containing all
// SubjectAlternativeNames held in a Certificate. It implements more types than
// the golang x509 library, so it is used whenever OtherName or RegisteredID
// type SANs are present in the certificate.
//
// See also https://datatracker.ietf.org/doc/html/rfc5280.html#section-4.2.1.6
//
// TODO(mariano,unreality): X400Address, DirectoryName, and EDIPartyName types
// are defined in RFC5280 but are currently unimplemented
func createSubjectAltNameExtension(dnsNames, emailAddresses MultiString, ipAddresses MultiIP, uris MultiURL, sans []SubjectAlternativeName, subjectIsEmpty bool) (Extension, error) {
var zero Extension
var rawValues []asn1.RawValue
for _, dnsName := range dnsNames {
rawValue, err := SubjectAlternativeName{
Type: DNSType, Value: dnsName,
}.RawValue()
if err != nil {
return zero, err
}
rawValues = append(rawValues, rawValue)
}
for _, emailAddress := range emailAddresses {
rawValue, err := SubjectAlternativeName{
Type: EmailType, Value: emailAddress,
}.RawValue()
if err != nil {
return zero, err
}
rawValues = append(rawValues, rawValue)
}
for _, ip := range ipAddresses {
rawValue, err := SubjectAlternativeName{
Type: IPType, Value: ip.String(),
}.RawValue()
if err != nil {
return zero, err
}
rawValues = append(rawValues, rawValue)
}
for _, uri := range uris {
rawValue, err := SubjectAlternativeName{
Type: URIType, Value: uri.String(),
}.RawValue()
if err != nil {
return zero, err
}
rawValues = append(rawValues, rawValue)
}
for _, san := range sans {
rawValue, err := san.RawValue()
if err != nil {
return zero, err
}
rawValues = append(rawValues, rawValue)
}
// Now marshal the rawValues into the ASN1 sequence, and create an Extension object to hold the extension
rawBytes, err := asn1.Marshal(rawValues)
if err != nil {
return zero, errors.Wrap(err, "error marshaling SubjectAlternativeName extension to ASN1")
}
return Extension{
ID: oidExtensionSubjectAltName,
Critical: subjectIsEmpty,
Value: rawBytes,
}, nil
}
// SubjectAlternativeNames is a container for names extracted
// from the X.509 Subject Alternative Names extension.
type SubjectAlternativeNames struct {
DNSNames []string
EmailAddresses []string
IPAddresses []net.IP
URIs []*url.URL
PermanentIdentifiers []PermanentIdentifier
HardwareModuleNames []HardwareModuleName
TPMHardwareDetails TPMHardwareDetails
// OtherNames []OtherName // TODO(hs): unused at the moment; do we need it? what type definition to use?
}
// TPMHardwareDetails is a container for some details
// for TPM hardware.
type TPMHardwareDetails struct {
Manufacturer string // TODO(hs): use Manufacturer from TPM package? Need to fix import cycle, though
Model string
Version string
}
var (
oidTPMManufacturer = asn1.ObjectIdentifier{2, 23, 133, 2, 1}
oidTPMModel = asn1.ObjectIdentifier{2, 23, 133, 2, 2}
oidTPMVersion = asn1.ObjectIdentifier{2, 23, 133, 2, 3}
)
// ParseSubjectAlternativeNames parses the Subject Alternative Names
// from the X.509 certificate `c`. SAN types supported by the Go stdlib,
// including DNS names, IP addresses, email addresses and URLs, are copied
// to the result first. After that, the raw extension bytes are parsed to
// extract PermanentIdentifiers and HardwareModuleNames SANs.
func ParseSubjectAlternativeNames(c *x509.Certificate) (sans SubjectAlternativeNames, err error) {
// the Certificate c is expected to have been processed before, so the
// SANs known by the Go stdlib are expected to have been populated already.
// These SANs are copied over to the result.
sans.DNSNames = c.DNSNames
sans.IPAddresses = c.IPAddresses
sans.EmailAddresses = c.EmailAddresses
sans.URIs = c.URIs
var sanExtension pkix.Extension
for _, ext := range c.Extensions {
if ext.Id.Equal(oidExtensionSubjectAltName) {
sanExtension = ext
break
}
}
if sanExtension.Value == nil {
return
}
directoryNames, otherNames, err := parseSubjectAltName(sanExtension)
if err != nil {
return sans, fmt.Errorf("failed parsing SubjectAltName extension: %w", err)
}
for _, otherName := range otherNames {
switch {
case otherName.TypeID.Equal(oidPermanentIdentifier):
permanentIdentifier, err := parsePermanentIdentifier(otherName.Value.FullBytes)
if err != nil {
return sans, fmt.Errorf("failed parsing PermanentIdentifier: %w", err)
}
sans.PermanentIdentifiers = append(sans.PermanentIdentifiers, permanentIdentifier)
case otherName.TypeID.Equal(oidHardwareModuleNameIdentifier):
hardwareModuleName, err := parseHardwareModuleName(otherName.Value.FullBytes)
if err != nil {
return sans, fmt.Errorf("failed parsing HardwareModuleName: %w", err)
}
sans.HardwareModuleNames = append(sans.HardwareModuleNames, hardwareModuleName)
default:
// TODO(hs): handle other types; defaulting to otherName?
}
}
tpmDetails := TPMHardwareDetails{}
for _, directoryName := range directoryNames {
for _, name := range directoryName.Names {
switch {
case name.Type.Equal(oidTPMManufacturer):
tpmDetails.Manufacturer = name.Value.(string)
case name.Type.Equal(oidTPMModel):
tpmDetails.Model = name.Value.(string)
case name.Type.Equal(oidTPMVersion):
tpmDetails.Version = name.Value.(string)
default:
// TODO(hs): handle other directoryNames?
}
}
}
sans.TPMHardwareDetails = tpmDetails
return
}
// https://datatracker.ietf.org/doc/html/rfc5280#page-35
func parseSubjectAltName(ext pkix.Extension) (dirNames []pkix.Name, otherNames []otherName, err error) {
err = forEachSAN(ext.Value, func(generalName asn1.RawValue) error {
switch generalName.Tag {
case 0: // otherName
var on otherName
if _, err := asn1.UnmarshalWithParams(generalName.FullBytes, &on, "tag:0"); err != nil {
return fmt.Errorf("failed unmarshaling otherName: %w", err)
}
otherNames = append(otherNames, on)
case 4: // directoryName
var rdns pkix.RDNSequence
if _, err := asn1.Unmarshal(generalName.Bytes, &rdns); err != nil {
return fmt.Errorf("failed unmarshaling directoryName: %w", err)
}
var dirName pkix.Name
dirName.FillFromRDNSequence(&rdns)
dirNames = append(dirNames, dirName)
default:
// skipping the other tag values intentionally
}
return nil
})
return
}
func parsePermanentIdentifier(der []byte) (PermanentIdentifier, error) {
var permID asn1PermanentIdentifier
if _, err := asn1.UnmarshalWithParams(der, &permID, "explicit,tag:0"); err != nil {
return PermanentIdentifier{}, fmt.Errorf("failed unmarshaling der data: %w", err)
}
return PermanentIdentifier{Identifier: permID.IdentifierValue, Assigner: ObjectIdentifier(permID.Assigner)}, nil
}
func parseHardwareModuleName(der []byte) (HardwareModuleName, error) {
var hardwareModuleName asn1HardwareModuleName
if _, err := asn1.UnmarshalWithParams(der, &hardwareModuleName, "explicit,tag:0"); err != nil {
return HardwareModuleName{}, fmt.Errorf("failed unmarshaling der data: %w", err)
}
return HardwareModuleName{Type: ObjectIdentifier(hardwareModuleName.Type), SerialNumber: hardwareModuleName.SerialNumber}, nil
}
// Borrowed from the x509 package.
func forEachSAN(extension []byte, callback func(ext asn1.RawValue) error) error {
var seq asn1.RawValue
rest, err := asn1.Unmarshal(extension, &seq)
if err != nil {
return err
} else if len(rest) != 0 {
return errors.New("x509: trailing data after X.509 extension")
}
if !seq.IsCompound || seq.Tag != 16 || seq.Class != 0 {
return asn1.StructuralError{Msg: "bad SAN sequence"}
}
rest = seq.Bytes
for len(rest) > 0 {
var v asn1.RawValue
rest, err = asn1.Unmarshal(rest, &v)
if err != nil {
return err
}
if err := callback(v); err != nil {
return err
}
}
return nil
}
|