Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #include "validity-period.hpp" |
| 23 | #include "../encoding/block-helpers.hpp" |
| 24 | #include "../util/concepts.hpp" |
| 25 | |
| 26 | namespace ndn { |
| 27 | namespace security { |
| 28 | |
| 29 | BOOST_CONCEPT_ASSERT((boost::EqualityComparable<ValidityPeriod>)); |
| 30 | BOOST_CONCEPT_ASSERT((WireEncodable<ValidityPeriod>)); |
| 31 | BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<ValidityPeriod>)); |
| 32 | BOOST_CONCEPT_ASSERT((WireDecodable<ValidityPeriod>)); |
| 33 | static_assert(std::is_base_of<tlv::Error, ValidityPeriod::Error>::value, |
| 34 | "ValidityPeriod::Error must inherit from tlv::Error"); |
| 35 | |
| 36 | static const size_t ISO_DATETIME_SIZE = 15; |
| 37 | static const size_t NOT_BEFORE_OFFSET = 0; |
| 38 | static const size_t NOT_AFTER_OFFSET = 1; |
| 39 | |
| 40 | using boost::chrono::time_point_cast; |
| 41 | |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 42 | ValidityPeriod::ValidityPeriod() |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 43 | : ValidityPeriod(time::system_clock::TimePoint() + 1_ns, |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 44 | time::system_clock::TimePoint()) |
| 45 | { |
| 46 | } |
| 47 | |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 48 | ValidityPeriod::ValidityPeriod(const time::system_clock::TimePoint& notBefore, |
| 49 | const time::system_clock::TimePoint& notAfter) |
| 50 | : m_notBefore(time_point_cast<TimePoint::duration>(notBefore + TimePoint::duration(1) - |
| 51 | time::system_clock::TimePoint::duration(1))) |
| 52 | , m_notAfter(time_point_cast<TimePoint::duration>(notAfter)) |
| 53 | { |
| 54 | } |
| 55 | |
| 56 | ValidityPeriod::ValidityPeriod(const Block& block) |
| 57 | { |
| 58 | wireDecode(block); |
| 59 | } |
| 60 | |
| 61 | template<encoding::Tag TAG> |
| 62 | size_t |
| 63 | ValidityPeriod::wireEncode(EncodingImpl<TAG>& encoder) const |
| 64 | { |
| 65 | size_t totalLength = 0; |
| 66 | |
| 67 | totalLength += prependStringBlock(encoder, tlv::NotAfter, time::toIsoString(m_notAfter)); |
| 68 | totalLength += prependStringBlock(encoder, tlv::NotBefore, time::toIsoString(m_notBefore)); |
| 69 | |
| 70 | totalLength += encoder.prependVarNumber(totalLength); |
| 71 | totalLength += encoder.prependVarNumber(tlv::ValidityPeriod); |
| 72 | return totalLength; |
| 73 | } |
| 74 | |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 75 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(ValidityPeriod); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 76 | |
| 77 | const Block& |
| 78 | ValidityPeriod::wireEncode() const |
| 79 | { |
| 80 | if (m_wire.hasWire()) |
| 81 | return m_wire; |
| 82 | |
| 83 | EncodingEstimator estimator; |
| 84 | size_t estimatedSize = wireEncode(estimator); |
| 85 | |
| 86 | EncodingBuffer buffer(estimatedSize, 0); |
| 87 | wireEncode(buffer); |
| 88 | |
| 89 | m_wire = buffer.block(); |
| 90 | m_wire.parse(); |
| 91 | |
| 92 | return m_wire; |
| 93 | } |
| 94 | |
| 95 | void |
| 96 | ValidityPeriod::wireDecode(const Block& wire) |
| 97 | { |
| 98 | if (!wire.hasWire()) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 99 | BOOST_THROW_EXCEPTION(Error("The supplied block does not contain wire format")); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | m_wire = wire; |
| 103 | m_wire.parse(); |
| 104 | |
| 105 | if (m_wire.type() != tlv::ValidityPeriod) |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 106 | BOOST_THROW_EXCEPTION(Error("Unexpected TLV type when decoding ValidityPeriod")); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 107 | |
| 108 | if (m_wire.elements_size() != 2) |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 109 | BOOST_THROW_EXCEPTION(Error("Does not have two sub-TLVs")); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 110 | |
| 111 | if (m_wire.elements()[NOT_BEFORE_OFFSET].type() != tlv::NotBefore || |
| 112 | m_wire.elements()[NOT_BEFORE_OFFSET].value_size() != ISO_DATETIME_SIZE || |
| 113 | m_wire.elements()[NOT_AFTER_OFFSET].type() != tlv::NotAfter || |
| 114 | m_wire.elements()[NOT_AFTER_OFFSET].value_size() != ISO_DATETIME_SIZE) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 115 | BOOST_THROW_EXCEPTION(Error("Invalid NotBefore or NotAfter field")); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | try { |
| 119 | m_notBefore = time_point_cast<TimePoint::duration>( |
| 120 | time::fromIsoString(readString(m_wire.elements()[NOT_BEFORE_OFFSET]))); |
| 121 | m_notAfter = time_point_cast<TimePoint::duration>( |
| 122 | time::fromIsoString(readString(m_wire.elements()[NOT_AFTER_OFFSET]))); |
| 123 | } |
| 124 | catch (const std::bad_cast&) { |
Spyridon Mastorakis | 0d2ed2e | 2015-07-27 19:09:12 -0700 | [diff] [blame] | 125 | BOOST_THROW_EXCEPTION(Error("Invalid date format in NOT-BEFORE or NOT-AFTER field")); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | |
| 129 | ValidityPeriod& |
| 130 | ValidityPeriod::setPeriod(const time::system_clock::TimePoint& notBefore, |
| 131 | const time::system_clock::TimePoint& notAfter) |
| 132 | { |
| 133 | m_wire.reset(); |
| 134 | m_notBefore = time_point_cast<TimePoint::duration>(notBefore + TimePoint::duration(1) - |
| 135 | time::system_clock::TimePoint::duration(1)); |
| 136 | m_notAfter = time_point_cast<TimePoint::duration>(notAfter); |
| 137 | return *this; |
| 138 | } |
| 139 | |
| 140 | std::pair<time::system_clock::TimePoint, time::system_clock::TimePoint> |
| 141 | ValidityPeriod::getPeriod() const |
| 142 | { |
| 143 | return std::make_pair(m_notBefore, m_notAfter); |
| 144 | } |
| 145 | |
| 146 | bool |
| 147 | ValidityPeriod::isValid(const time::system_clock::TimePoint& now) const |
| 148 | { |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 149 | return m_notBefore <= now && now <= m_notAfter; |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | bool |
| 153 | ValidityPeriod::operator==(const ValidityPeriod& other) const |
| 154 | { |
| 155 | return (this->m_notBefore == other.m_notBefore && |
| 156 | this->m_notAfter == other.m_notAfter); |
| 157 | } |
| 158 | |
| 159 | bool |
| 160 | ValidityPeriod::operator!=(const ValidityPeriod& other) const |
| 161 | { |
| 162 | return !(*this == other); |
| 163 | } |
| 164 | |
| 165 | std::ostream& |
| 166 | operator<<(std::ostream& os, const ValidityPeriod& period) |
| 167 | { |
| 168 | os << "(" << time::toIsoString(period.getPeriod().first) |
| 169 | << ", " << time::toIsoString(period.getPeriod().second) << ")"; |
| 170 | return os; |
| 171 | } |
| 172 | |
| 173 | } // namespace security |
| 174 | } // namespace ndn |