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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftCertificates open source project
//
// Copyright (c) 2022 Apple Inc. and the SwiftCertificates project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftCertificates project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import SwiftASN1
extension RelativeDistinguishedName {
/// A single attribute of a ``RelativeDistinguishedName``.
///
/// A ``RelativeDistinguishedName`` is made up of one or more attributes that represent the same
/// node in the hierarchical ``DistinguishedName`` representation. In almost all cases there is
/// only one ``Attribute`` in a given ``RelativeDistinguishedName``.
///
/// These attributes are a key-value type, with the type of the node being identified by
/// ``type`` and the value being stored in ``value``. In the vast majority of cases the ``value``
/// of the node will be an `ASN1PrintableString` or `ASN1UTF8String`, but the value can only
/// be derived by inspection.
public struct Attribute {
public struct Value: Hashable, Sendable {
@usableFromInline
enum Storage: Sendable {
/// ``ASN1PrintableString``
case printable(String)
/// ``ASN1UTF8String``
case utf8(String)
/// `.any` can still contain bytes which are equal to the DER representation of `.printable` or `.utf8`
/// the custom `Hashable` conformance takes care of this and treats them as equal.
case any(ASN1Any)
}
@usableFromInline
var storage: Storage
@inlinable
init(storage: Storage) {
self.storage = storage
}
}
/// The type of this attribute.
///
/// Common types can be found in `ASN1ObjectIdentifier.RDNAttributeType`.
public var type: ASN1ObjectIdentifier
/// The value of this attribute.
public var value: Attribute.Value
/// Create a new attribute from a given type and value.
///
/// - Parameter type: The type of the attribute.
/// - Parameter value: The value of the attribute.
@inlinable
public init(type: ASN1ObjectIdentifier, value: Attribute.Value) {
self.type = type
self.value = value
}
}
}
extension RelativeDistinguishedName.Attribute.Value.Storage: Hashable {
@inlinable
static func == (lhs: Self, rhs: Self) -> Bool {
switch (lhs, rhs) {
case let (.printable(lhs), .printable(rhs)):
return lhs == rhs
case let (.utf8(lhs), .utf8(rhs)):
return lhs == rhs
case (.printable, .utf8), (.utf8, .printable):
return false
default:
return ASN1Any(lhs) == ASN1Any(rhs)
}
}
@inlinable
func hash(into hasher: inout Hasher) {
switch self {
case .printable(let string):
hasher.combine(String.ASN1TaggedStringView(printable: string))
case .utf8(let string):
hasher.combine(String.ASN1TaggedStringView(utf8: string))
case .any(let asn1Any):
hasher.combine(asn1Any)
}
}
}
extension String {
@usableFromInline
struct ASN1TaggedStringView {
@usableFromInline
let tag: UInt8
@usableFromInline
let string: String
@usableFromInline
let length: ASN1Length
@usableFromInline
let count: Int
@inlinable
init(tag: UInt8, string: String) {
self.tag = tag
self.string = string
let utf8Count = self.string.utf8.count
self.length = ASN1Length(length: utf8Count)
// tag + utf8 bytes length + utf8 bytes
self.count = 1 + self.length.count + utf8Count
}
@inlinable
init(utf8 string: String) {
// This tag represents a UTF8STRING.
self.init(tag: 0x0c, string: string)
}
@inlinable
init(printable string: String) {
// This tag represents a PRINTABLE STRING.
self.init(tag: 0x13, string: string)
}
}
}
extension String.ASN1TaggedStringView: RandomAccessCollection {
@inlinable
var startIndex: Int {
0
}
@inlinable
var endIndex: Int {
count
}
@inlinable
subscript(position: Int) -> UInt8 {
switch position {
case 0:
return self.tag
case 1...self.length.endIndex:
// after the tag comes the length of the string
return self.length[position &- 1]
default:
// and at the end the utf8 encoded string
let index = self.string.utf8.index(self.string.utf8.startIndex, offsetBy: position - 1 - length.endIndex)
return self.string.utf8[index]
}
}
}
extension String.ASN1TaggedStringView: Hashable {
@inlinable
func hash(into hasher: inout Hasher) {
hasher.combine(self.count)
for byte in self {
hasher.combine(byte)
}
}
}
@usableFromInline
struct ASN1Length: Hashable {
@usableFromInline
var length: Int
@usableFromInline
var count: Int
@inlinable
init(length: Int) {
self.length = length
// ASN.1 lengths are in two forms. If we can store the length in 7 bits, we should:
// that requires only one byte. Otherwise, we need multiple bytes: work out how many,
// plus one for the length of the length bytes.
if self.length <= 0x7F {
self.count = 1
} else {
// We need to work out how many bytes we need. There are many fancy bit-twiddling
// ways of doing this, but honestly we don't do this enough to need them, so we'll
// do it the easy way. This math is done on UInt because it makes the shift semantics clean.
// We save a branch here because we can never overflow this addition.
let neededBits = self.length.bitWidth - self.length.leadingZeroBitCount
let neededBytes = (neededBits &+ 7) / 8
self.count = neededBytes &+ 1
}
}
}
extension ASN1Length: RandomAccessCollection {
@inlinable
var startIndex: Int {
0
}
@inlinable
var endIndex: Int {
count
}
@inlinable
subscript(position: Int) -> UInt8 {
precondition(position >= 0 && position < self.count)
guard self.length <= 0x7F else {
guard position == 0 else {
//Then we write the bytes of the length.
let integerBytesCollection = IntegerBytesCollection(self.length)
let index = integerBytesCollection.index(integerBytesCollection.startIndex, offsetBy: position &- 1)
return integerBytesCollection[index]
}
// We first write the number of length bytes
// we needed, setting the high bit.
return 0b1000_0000 | UInt8(self.count &- 1)
}
return UInt8(truncatingIfNeeded: self.length)
}
}
extension ASN1Any {
@inlinable
init(_ storage: RelativeDistinguishedName.Attribute.Value.Storage) {
switch storage {
case .printable(let printableString):
// force try is safe because we verify in the initialiser that it is valid
self = try! .init(erasing: ASN1PrintableString(printableString))
case .utf8(let utf8String):
// force try is safe because we verify in the initialiser that it is valid
self = try! .init(erasing: ASN1UTF8String(utf8String))
case .any(let any):
self = any
}
}
}
extension ASN1Any {
@inlinable
init(_ value: RelativeDistinguishedName.Attribute.Value) {
self = ASN1Any(value.storage)
}
}
extension RelativeDistinguishedName.Attribute.Value {
/// A helper constructor to construct a ``RelativeDistinguishedName/Attribute/Value`` with an `ASN1UTF8String`.
/// - Parameter utf8String: The value of the attribute.
@inlinable
public init(utf8String: String) {
self.storage = .utf8(utf8String)
}
/// A helper constructor to construct a ``RelativeDistinguishedName/Attribute/Value`` with an `ASN1PrintableString`.
/// - Parameter printableString: The value of the attribute.
@inlinable
public init(printableString: String) throws {
// verify that it is indeed a printable string
_ = try ASN1PrintableString(printableString)
self.storage = .printable(printableString)
}
@inlinable
public init(asn1Any: ASN1Any) {
self.storage = .any(asn1Any)
}
}
extension RelativeDistinguishedName.Attribute.Value: CustomStringConvertible {
@inlinable
public var description: String {
let text: String
switch storage {
case .printable(let string), .utf8(let string):
text = string
case .any(let any):
do {
text = try String(ASN1PrintableString(asn1Any: any))
} catch {
do {
text = try String(ASN1UTF8String(asn1Any: any))
} catch {
text = String(describing: any)
}
}
}
// This is a very slow way to do this, but until we have any evidence that
// this is hot code I'm happy to do it slowly.
let unescapedBytes = Array(text.utf8)
let charsToEscape: [UInt8] = [
UInt8(ascii: ","), UInt8(ascii: "+"), UInt8(ascii: "\""), UInt8(ascii: "\\"),
UInt8(ascii: "<"), UInt8(ascii: ">"), UInt8(ascii: ";"),
]
let leadingBytesToEscape = unescapedBytes.prefix(while: {
$0 == UInt8(ascii: " ") || $0 == UInt8(ascii: "#")
})
// We don't want these ranges to overlap.
let trailingBytesToEscape = unescapedBytes.dropFirst(leadingBytesToEscape.count).suffix(while: {
$0 == UInt8(ascii: " ")
})
let middleBytes = unescapedBytes[leadingBytesToEscape.endIndex..<trailingBytesToEscape.startIndex]
var escapedBytes = leadingBytesToEscape.flatMap { [UInt8(ascii: "\\"), $0] }
escapedBytes += middleBytes.flatMap {
guard charsToEscape.contains($0) else {
return [$0]
}
return [UInt8(ascii: "\\"), $0]
}
escapedBytes += trailingBytesToEscape.flatMap { [UInt8(ascii: "\\"), $0] }
let escapedString = String(decoding: escapedBytes, as: UTF8.self)
return escapedString
}
}
extension RelativeDistinguishedName.Attribute.Value: CustomDebugStringConvertible {
public var debugDescription: String {
String(reflecting: String(describing: self))
}
}
extension RelativeDistinguishedName.Attribute: Hashable {}
extension RelativeDistinguishedName.Attribute: Sendable {}
extension RelativeDistinguishedName.Attribute: CustomStringConvertible {
@inlinable
public var description: String {
let attributeKey: String
switch self.type {
case .RDNAttributeType.commonName:
attributeKey = "CN"
case .RDNAttributeType.countryName:
attributeKey = "C"
case .RDNAttributeType.localityName:
attributeKey = "L"
case .RDNAttributeType.stateOrProvinceName:
attributeKey = "ST"
case .RDNAttributeType.organizationName:
attributeKey = "O"
case .RDNAttributeType.organizationalUnitName:
attributeKey = "OU"
case .RDNAttributeType.streetAddress:
attributeKey = "STREET"
case let type:
attributeKey = String(describing: type)
}
return "\(attributeKey)=\(value)"
}
}
extension RelativeDistinguishedName.Attribute: DERImplicitlyTaggable {
@inlinable
public static var defaultIdentifier: ASN1Identifier {
.sequence
}
@inlinable
public init(derEncoded rootNode: ASN1Node, withIdentifier identifier: ASN1Identifier) throws {
self = try DER.sequence(rootNode, identifier: identifier) { nodes in
let type = try ASN1ObjectIdentifier(derEncoded: &nodes)
guard let valueNode = nodes.next() else {
throw ASN1Error.invalidASN1Object(reason: "RelativeDistinguishedName.Attribute.Value is missing")
}
let value: Value
switch type {
/// ```
/// id-at-commonName AttributeType ::= { id-at 3 }
///
/// -- Naming attributes of type X520CommonName:
/// -- X520CommonName ::= DirectoryName (SIZE (1..ub-common-name))
/// --
/// -- Expanded to avoid parameterized type:
/// X520CommonName ::= CHOICE {
/// teletexString TeletexString (SIZE (1..ub-common-name)),
/// printableString PrintableString (SIZE (1..ub-common-name)),
/// universalString UniversalString (SIZE (1..ub-common-name)),
/// utf8String UTF8String (SIZE (1..ub-common-name)),
/// bmpString BMPString (SIZE (1..ub-common-name)) }
///
///
/// -- Naming attributes of type X520LocalityName
///
/// id-at-localityName AttributeType ::= { id-at 7 }
///
/// -- Naming attributes of type X520LocalityName:
/// -- X520LocalityName ::= DirectoryName (SIZE (1..ub-locality-name))
/// --
/// -- Expanded to avoid parameterized type:
/// X520LocalityName ::= CHOICE {
/// teletexString TeletexString (SIZE (1..ub-locality-name)),
/// printableString PrintableString (SIZE (1..ub-locality-name)),
/// universalString UniversalString (SIZE (1..ub-locality-name)),
/// utf8String UTF8String (SIZE (1..ub-locality-name)),
/// bmpString BMPString (SIZE (1..ub-locality-
///
/// id-at-stateOrProvinceName AttributeType ::= { id-at 8 }
///
///
/// -- Naming attributes of type X520StateOrProvinceName:
/// -- X520StateOrProvinceName ::= DirectoryName (SIZE (1..ub-state-name))
/// --
/// -- Expanded to avoid parameterized type:
/// X520StateOrProvinceName ::= CHOICE {
/// teletexString TeletexString (SIZE (1..ub-state-name)),
/// printableString PrintableString (SIZE (1..ub-state-name)),
/// universalString UniversalString (SIZE (1..ub-state-name)),
/// utf8String UTF8String (SIZE (1..ub-state-name)),
/// bmpString BMPString (SIZE (1..ub-state-name)) }
///
///
/// -- Naming attributes of type X520OrganizationName
///
/// id-at-organizationName AttributeType ::= { id-at 10 }
///
/// -- Naming attributes of type X520OrganizationName:
/// -- X520OrganizationName ::=
/// -- DirectoryName (SIZE (1..ub-organization-name))
/// --
/// -- Expanded to avoid parameterized type:
/// X520OrganizationName ::= CHOICE {
/// teletexString TeletexString
/// (SIZE (1..ub-organization-name)),
/// printableString PrintableString
/// (SIZE (1..ub-organization-name)),
/// universalString UniversalString
/// (SIZE (1..ub-organization-name)),
/// utf8String UTF8String
/// (SIZE (1..ub-organization-name)),
/// bmpString BMPString
/// (SIZE (1..ub-organization-name)) }
///
///
/// id-at-organizationalUnitName AttributeType ::= { id-at 11 }
///
/// -- Naming attributes of type X520OrganizationalUnitName:
/// -- X520OrganizationalUnitName ::=
/// -- DirectoryName (SIZE (1..ub-organizational-unit-name))
/// --
/// -- Expanded to avoid parameterized type:
/// X520OrganizationalUnitName ::= CHOICE {
/// teletexString TeletexString
/// (SIZE (1..ub-organizational-unit-name)),
/// printableString PrintableString
/// (SIZE (1..ub-organizational-unit-name)),
/// universalString UniversalString
/// (SIZE (1..ub-organizational-unit-name)),
/// utf8String UTF8String
/// (SIZE (1..ub-organizational-unit-name)),
/// bmpString BMPString
/// (SIZE (1..ub-organizational-unit-name)) }
/// ```
case .RDNAttributeType.commonName,
.RDNAttributeType.localityName,
.RDNAttributeType.stateOrProvinceName,
.RDNAttributeType.organizationName,
.RDNAttributeType.organizationalUnitName:
switch valueNode.identifier {
case ASN1UTF8String.defaultIdentifier:
value = try .init(utf8String: String(ASN1UTF8String(derEncoded: valueNode)))
case ASN1PrintableString.defaultIdentifier:
value = try .init(printableString: String(ASN1PrintableString(derEncoded: valueNode)))
default:
value = .init(storage: .any(ASN1Any(derEncoded: valueNode)))
}
/// ```
/// -- Naming attributes of type X520countryName (digraph from IS 3166)
///
/// id-at-countryName AttributeType ::= { id-at 6 }
///
/// X520countryName ::= PrintableString (SIZE (2))
/// ```
case .RDNAttributeType.countryName:
switch valueNode.identifier {
case ASN1PrintableString.defaultIdentifier:
value = try .init(printableString: String(ASN1PrintableString(derEncoded: valueNode)))
default:
value = .init(storage: .any(ASN1Any(derEncoded: valueNode)))
}
default:
value = .init(storage: .any(ASN1Any(derEncoded: valueNode)))
}
return .init(type: type, value: value)
}
}
@inlinable
public func serialize(into coder: inout DER.Serializer, withIdentifier identifier: ASN1Identifier) throws {
try coder.appendConstructedNode(identifier: identifier) { coder in
try coder.serialize(self.type)
try coder.serialize(ASN1Any(self.value))
}
}
}
extension RelativeDistinguishedName.Attribute {
/// A helper constructor to construct a ``RelativeDistinguishedName/Attribute`` whose
/// value is an `ASN1UTF8String`.
///
/// - Parameter type: The type of the attribute.
/// - Parameter utf8String: The value of the attribute.
@inlinable
public init(type: ASN1ObjectIdentifier, utf8String: String) {
self.type = type
self.value = .init(utf8String: utf8String)
}
/// A helper constructor to construct a ``RelativeDistinguishedName/Attribute`` whose
/// value is an `ASN1PrintableString`.
///
/// - Parameter type: The type of the attribute.
/// - Parameter printableString: The value of the attribute.
@inlinable
public init(type: ASN1ObjectIdentifier, printableString: String) throws {
self.type = type
self.value = try .init(printableString: printableString)
}
/// Create a new attribute from a given type and value.
///
/// - Parameter type: The type of the attribute.
/// - Parameter value: The value of the attribute, wrapped in ``ASN1Any``.
@inlinable
public init(type: ASN1ObjectIdentifier, value: ASN1Any) {
self.type = type
self.value = .init(asn1Any: value)
}
}
extension ASN1ObjectIdentifier {
/// Common object identifiers used within ``RelativeDistinguishedName/Attribute``s.
public enum RDNAttributeType {
/// The 'countryName' attribute type contains a two-letter
/// ISO 3166 country code.
public static let countryName: ASN1ObjectIdentifier = [2, 5, 4, 6]
/// The 'commonName' attribute type contains names of an
/// object.
public static let commonName: ASN1ObjectIdentifier = [2, 5, 4, 3]
/// The 'localityName' attribute type contains names of a
/// locality or place, such as a city, county, or other geographic
/// region.
public static let localityName: ASN1ObjectIdentifier = [2, 5, 4, 7]
/// The 'stateOrProvinceName' attribute type contains the
/// full names of states or provinces.
public static let stateOrProvinceName: ASN1ObjectIdentifier = [2, 5, 4, 8]
/// The 'organizationName' attribute type contains the
/// names of an organization.
public static let organizationName: ASN1ObjectIdentifier = [2, 5, 4, 10]
/// The 'organizationalUnitName' attribute type contains
/// the names of an organizational unit.
public static let organizationalUnitName: ASN1ObjectIdentifier = [2, 5, 4, 11]
/// The 'streetAddress' attribute type contains site
/// information from a postal address (i.e., the street name, place,
/// avenue, and the house number).
public static let streetAddress: ASN1ObjectIdentifier = [2, 5, 4, 9]
}
}
extension RandomAccessCollection {
@inlinable
func suffix(while predicate: (Element) -> Bool) -> SubSequence {
var index = self.endIndex
if index == self.startIndex {
return self[...]
}
repeat {
self.formIndex(before: &index)
if !predicate(self[index]) {
self.formIndex(after: &index)
break
}
} while index != self.startIndex
return self[index..<self.endIndex]
}
}
|