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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftASN1 open source project
//
// Copyright (c) 2022 Apple Inc. and the SwiftASN1 project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftASN1 project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
@usableFromInline
enum TimeUtilities {
@inlinable
static func generalizedTimeFromBytes(_ bytes: ArraySlice<UInt8>) throws -> GeneralizedTime {
var bytes = bytes
// First, there must always be a calendar date. No separators, 4
// digits for the year, 2 digits for the month, 2 digits for the day.
guard let rawYear = bytes._readFourDigitDecimalInteger(),
let rawMonth = bytes._readTwoDigitDecimalInteger(),
let rawDay = bytes._readTwoDigitDecimalInteger()
else {
throw ASN1Error.invalidASN1Object(reason: "Unable to load year, month, and day for GeneralizedTime")
}
// Next there must be a _time_. Per DER rules, this time must always go
// to at least seconds, there are no separators, there is no time-zone (but there must be a 'Z'),
// and there may be fractional seconds but they must not have trailing zeros.
guard let rawHour = bytes._readTwoDigitDecimalInteger(),
let rawMinutes = bytes._readTwoDigitDecimalInteger(),
let rawSeconds = bytes._readTwoDigitDecimalInteger()
else {
throw ASN1Error.invalidASN1Object(reason: "Unable to load hour, minutes, and seconds for GeneralizedTime")
}
// There may be some fractional seconds.
var fractionalSeconds: Double = 0
if bytes.first == UInt8(ascii: ".") {
fractionalSeconds = try bytes._readFractionalSeconds()
}
// The next character _must_ be Z, or the encoding is invalid.
guard bytes.popFirst() == UInt8(ascii: "Z") else {
throw ASN1Error.invalidASN1Object(reason: "Invalid time zone in GeneralizedTime")
}
// Great! There better not be anything left.
guard bytes.count == 0 else {
throw ASN1Error.invalidASN1Object(reason: "Trailing bytes in GeneralizedTime")
}
return try GeneralizedTime(
year: rawYear,
month: rawMonth,
day: rawDay,
hours: rawHour,
minutes: rawMinutes,
seconds: rawSeconds,
fractionalSeconds: fractionalSeconds
)
}
@inlinable
static func utcTimeFromBytes(_ bytes: ArraySlice<UInt8>) throws -> UTCTime {
var bytes = bytes
// First, there must always be a calendar date. No separators, 2
// digits for the year, 2 digits for the month, 2 digits for the day.
guard let rawYear = bytes._readTwoDigitDecimalInteger(),
let rawMonth = bytes._readTwoDigitDecimalInteger(),
let rawDay = bytes._readTwoDigitDecimalInteger()
else {
throw ASN1Error.invalidASN1Object(reason: "Unable to load year, month, and day for UTCTime")
}
// Next there must be a _time_. Per DER rules, this time must always go
// to at least seconds, there are no separators, there is no time-zone (but there must be a 'Z').
guard let rawHour = bytes._readTwoDigitDecimalInteger(),
let rawMinutes = bytes._readTwoDigitDecimalInteger(),
let rawSeconds = bytes._readTwoDigitDecimalInteger()
else {
throw ASN1Error.invalidASN1Object(reason: "Unable to load hour, minutes, and seconds for UTCTime")
}
// The next character _must_ be Z, or the encoding is invalid.
guard bytes.popFirst() == UInt8(ascii: "Z") else {
throw ASN1Error.invalidASN1Object(reason: "Invalid time zone in UTCTime")
}
// Great! There better not be anything left.
guard bytes.count == 0 else {
throw ASN1Error.invalidASN1Object(reason: "Trailing bytes in UTCTime")
}
let actualYear = rawYear < 50 ? rawYear &+ 2000 : rawYear &+ 1900
return try UTCTime(
year: actualYear,
month: rawMonth,
day: rawDay,
hours: rawHour,
minutes: rawMinutes,
seconds: rawSeconds
)
}
@inlinable
static func daysInMonth(_ month: Int, ofYear year: Int) -> Int? {
switch month {
case 1:
return 31
case 2:
// This one has a dependency on the year!
// A leap year occurs in any year divisible by 4, except when that year is divisible by 100,
// unless the year is divisible by 400.
let isLeapYear = (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0))
return isLeapYear ? 29 : 28
case 3:
return 31
case 4:
return 30
case 5:
return 31
case 6:
return 30
case 7:
return 31
case 8:
return 31
case 9:
return 30
case 10:
return 31
case 11:
return 30
case 12:
return 31
default:
return nil
}
}
}
extension ArraySlice where Element == UInt8 {
@inlinable
mutating func _readFourDigitDecimalInteger() -> Int? {
guard let first = self._readTwoDigitDecimalInteger(),
let second = self._readTwoDigitDecimalInteger()
else {
return nil
}
// Unchecked math is still safe here: we're in Int32 space, and this number cannot
// get any larger than 9999.
return (first &* 100) &+ second
}
@inlinable
mutating func _readTwoDigitDecimalInteger() -> Int? {
guard let firstASCII = self.popFirst(),
let secondASCII = self.popFirst()
else {
return nil
}
guard let first = Int(fromDecimalASCII: firstASCII),
let second = Int(fromDecimalASCII: secondASCII)
else {
return nil
}
// Unchecked math is safe here: we're in Int32 space at the very least, and this number cannot
// possibly be smaller than zero or larger than 99.
return (first &* 10) &+ (second)
}
/// This may only be called if there's a leading period: we precondition on this fact.
@inlinable
mutating func _readFractionalSeconds() throws -> Double {
precondition(self.popFirst() == UInt8(ascii: "."))
var numerator = 0
var denominator = 1
while let nextASCII = self.first, let next = Int(fromDecimalASCII: nextASCII) {
self = self.dropFirst()
let (newNumerator, multiplyOverflow) = numerator.multipliedReportingOverflow(by: 10)
let (newDenominator, secondMultiplyOverflow) = denominator.multipliedReportingOverflow(by: 10)
let (newNumeratorWithAdded, addingOverflow) = newNumerator.addingReportingOverflow(next)
// If the new denominator overflows, we just cap to the old value.
if !secondMultiplyOverflow {
denominator = newDenominator
}
// If the numerator overflows, we don't support the result.
if multiplyOverflow || addingOverflow {
throw ASN1Error.invalidASN1Object(reason: "Numerator overflow when calculating fractional seconds")
}
numerator = newNumeratorWithAdded
}
// Ok, we're either at the end or the next character is a Z. One final check: there may not have
// been any trailing zeros here. This means the number may not be 0 mod 10.
if numerator % 10 == 0 {
throw ASN1Error.invalidASN1Object(reason: "Trailing zeros in fractional seconds")
}
return Double(numerator) / Double(denominator)
}
}
extension Array where Element == UInt8 {
@inlinable
mutating func append(_ generalizedTime: GeneralizedTime) {
self._appendFourDigitDecimal(generalizedTime.year)
self._appendTwoDigitDecimal(generalizedTime.month)
self._appendTwoDigitDecimal(generalizedTime.day)
self._appendTwoDigitDecimal(generalizedTime.hours)
self._appendTwoDigitDecimal(generalizedTime.minutes)
self._appendTwoDigitDecimal(generalizedTime.seconds)
// Ok, tricky moment here. Is the fractional part non-zero? If it is, we need to write it out as well.
if generalizedTime.fractionalSeconds != 0 {
let stringified = String(generalizedTime.fractionalSeconds)
assert(stringified.starts(with: "0."))
self.append(contentsOf: stringified.utf8.dropFirst(1))
// Remove any trailing zeros from self, they are forbidden.
while self.last == 0 {
self = self.dropLast()
}
}
self.append(UInt8(ascii: "Z"))
}
@inlinable
mutating func append(_ utcTime: UTCTime) {
precondition((1950..<2050).contains(utcTime.year))
if utcTime.year >= 2000 {
self._appendTwoDigitDecimal(utcTime.year &- 2000)
} else {
self._appendTwoDigitDecimal(utcTime.year &- 1900)
}
self._appendTwoDigitDecimal(utcTime.month)
self._appendTwoDigitDecimal(utcTime.day)
self._appendTwoDigitDecimal(utcTime.hours)
self._appendTwoDigitDecimal(utcTime.minutes)
self._appendTwoDigitDecimal(utcTime.seconds)
self.append(UInt8(ascii: "Z"))
}
@inlinable
mutating func _appendFourDigitDecimal(_ number: Int) {
assert(number >= 0 && number <= 9999)
// Each digit can be isolated by dividing by the place and then taking the result modulo 10.
// This is annoyingly division heavy. There may be a better algorithm floating around.
// Unchecked math is fine, there cannot be an overflow here.
let asciiZero = UInt8(ascii: "0")
self.append(UInt8(truncatingIfNeeded: (number / 1000) % 10) &+ asciiZero)
self.append(UInt8(truncatingIfNeeded: (number / 100) % 10) &+ asciiZero)
self.append(UInt8(truncatingIfNeeded: (number / 10) % 10) &+ asciiZero)
self.append(UInt8(truncatingIfNeeded: number % 10) &+ asciiZero)
}
@inlinable
mutating func _appendTwoDigitDecimal(_ number: Int) {
assert(number >= 0 && number <= 99)
// Each digit can be isolated by dividing by the place and then taking the result modulo 10.
// This is annoyingly division heavy. There may be a better algorithm floating around.
// Unchecked math is fine, there cannot be an overflow here.
let asciiZero = UInt8(ascii: "0")
self.append(UInt8(truncatingIfNeeded: (number / 10) % 10) &+ asciiZero)
self.append(UInt8(truncatingIfNeeded: number % 10) &+ asciiZero)
}
}
extension Int {
@inlinable
init?(fromDecimalASCII ascii: UInt8) {
let asciiZero = UInt8(ascii: "0")
let zeroToNine = 0...9
// These are all coming from UInt8space, the subtraction cannot overflow.
let converted = Int(ascii) &- Int(asciiZero)
guard zeroToNine.contains(converted) else {
return nil
}
self = converted
}
}
|