Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 2 | /* |
Alexander Afanasyev | 4146975 | 2017-01-10 21:51:55 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -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 "signature-info.hpp" |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 23 | #include "encoding/block-helpers.hpp" |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 24 | #include "util/concepts.hpp" |
Alexander Afanasyev | 15f6731 | 2014-07-22 15:11:09 -0700 | [diff] [blame] | 25 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 26 | namespace ndn { |
| 27 | |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 28 | BOOST_CONCEPT_ASSERT((boost::EqualityComparable<SignatureInfo>)); |
| 29 | BOOST_CONCEPT_ASSERT((WireEncodable<SignatureInfo>)); |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 30 | BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<SignatureInfo>)); |
Junxiao Shi | c2b8d24 | 2014-11-04 08:35:29 -0700 | [diff] [blame] | 31 | BOOST_CONCEPT_ASSERT((WireDecodable<SignatureInfo>)); |
| 32 | static_assert(std::is_base_of<tlv::Error, SignatureInfo::Error>::value, |
| 33 | "SignatureInfo::Error must inherit from tlv::Error"); |
| 34 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 35 | SignatureInfo::SignatureInfo() |
| 36 | : m_type(-1) |
| 37 | , m_hasKeyLocator(false) |
| 38 | { |
| 39 | } |
| 40 | |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 41 | SignatureInfo::SignatureInfo(tlv::SignatureTypeValue type) |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 42 | : m_type(type) |
| 43 | , m_hasKeyLocator(false) |
| 44 | { |
| 45 | } |
| 46 | |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 47 | SignatureInfo::SignatureInfo(tlv::SignatureTypeValue type, const KeyLocator& keyLocator) |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 48 | : m_type(type) |
| 49 | , m_hasKeyLocator(true) |
| 50 | , m_keyLocator(keyLocator) |
| 51 | { |
| 52 | } |
| 53 | |
| 54 | SignatureInfo::SignatureInfo(const Block& block) |
| 55 | { |
| 56 | wireDecode(block); |
| 57 | } |
| 58 | |
Alexander Afanasyev | 7463389 | 2015-02-08 18:08:46 -0800 | [diff] [blame] | 59 | template<encoding::Tag TAG> |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 60 | size_t |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 61 | SignatureInfo::wireEncode(EncodingImpl<TAG>& encoder) const |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 62 | { |
Junxiao Shi | 605671d | 2017-08-26 13:41:06 +0000 | [diff] [blame] | 63 | if (m_type == -1) { |
| 64 | BOOST_THROW_EXCEPTION(Error("Cannot encode invalid SignatureInfo")); |
| 65 | } |
| 66 | |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 67 | // SignatureInfo ::= SIGNATURE-INFO-TLV TLV-LENGTH |
| 68 | // SignatureType |
| 69 | // KeyLocator? |
| 70 | // ValidityPeriod? (if present, stored as first item of m_otherTlvs) |
| 71 | // other SignatureType-specific sub-elements* |
| 72 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 73 | size_t totalLength = 0; |
| 74 | |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 75 | for (auto i = m_otherTlvs.rbegin(); i != m_otherTlvs.rend(); i++) { |
Alexander Afanasyev | 4146975 | 2017-01-10 21:51:55 -0800 | [diff] [blame] | 76 | totalLength += encoder.prependBlock(*i); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | if (m_hasKeyLocator) |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 80 | totalLength += m_keyLocator.wireEncode(encoder); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 81 | |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 82 | totalLength += prependNonNegativeIntegerBlock(encoder, tlv::SignatureType, |
| 83 | static_cast<uint64_t>(m_type)); |
Alexander Afanasyev | d5c48e0 | 2015-06-24 11:58:14 -0700 | [diff] [blame] | 84 | totalLength += encoder.prependVarNumber(totalLength); |
| 85 | totalLength += encoder.prependVarNumber(tlv::SignatureInfo); |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 86 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 87 | return totalLength; |
| 88 | } |
| 89 | |
Davide Pesavento | 88a0d81 | 2017-08-19 21:31:42 -0400 | [diff] [blame] | 90 | NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS(SignatureInfo); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 91 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 92 | const Block& |
| 93 | SignatureInfo::wireEncode() const |
| 94 | { |
| 95 | if (m_wire.hasWire()) |
| 96 | return m_wire; |
| 97 | |
| 98 | EncodingEstimator estimator; |
| 99 | size_t estimatedSize = wireEncode(estimator); |
| 100 | |
| 101 | EncodingBuffer buffer(estimatedSize, 0); |
| 102 | wireEncode(buffer); |
| 103 | |
| 104 | m_wire = buffer.block(); |
| 105 | return m_wire; |
| 106 | } |
| 107 | |
| 108 | void |
| 109 | SignatureInfo::wireDecode(const Block& wire) |
| 110 | { |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 111 | m_type = -1; |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 112 | m_hasKeyLocator = false; |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 113 | m_otherTlvs.clear(); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 114 | |
| 115 | m_wire = wire; |
| 116 | m_wire.parse(); |
| 117 | |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 118 | if (m_wire.type() != tlv::SignatureInfo) |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 119 | BOOST_THROW_EXCEPTION(Error("Decoding SignatureInfo, but TLV-TYPE is " + to_string(m_wire.type()))); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 120 | |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 121 | auto it = m_wire.elements_begin(); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 122 | |
Junxiao Shi | 605671d | 2017-08-26 13:41:06 +0000 | [diff] [blame] | 123 | // the first sub-element must be SignatureType |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 124 | if (it == m_wire.elements_end() || it->type() != tlv::SignatureType) |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 125 | BOOST_THROW_EXCEPTION(Error("Missing SignatureType in SignatureInfo")); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 126 | |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 127 | m_type = readNonNegativeIntegerAs<tlv::SignatureTypeValue>(*it); |
| 128 | ++it; |
| 129 | |
Junxiao Shi | 605671d | 2017-08-26 13:41:06 +0000 | [diff] [blame] | 130 | // the second sub-element could be KeyLocator |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame] | 131 | if (it != m_wire.elements_end() && it->type() == tlv::KeyLocator) { |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 132 | m_keyLocator.wireDecode(*it); |
| 133 | m_hasKeyLocator = true; |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 134 | ++it; |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 137 | // store SignatureType-specific sub-elements, if any |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 138 | while (it != m_wire.elements_end()) { |
Zhiyi Zhang | 387e57b | 2016-08-01 18:50:00 -0700 | [diff] [blame] | 139 | m_otherTlvs.push_back(*it); |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 140 | ++it; |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 141 | } |
| 142 | } |
| 143 | |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 144 | void |
| 145 | SignatureInfo::setSignatureType(tlv::SignatureTypeValue type) |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 146 | { |
Junxiao Shi | a9181d7 | 2017-08-13 16:47:45 +0000 | [diff] [blame] | 147 | m_wire.reset(); |
| 148 | m_type = type; |
| 149 | } |
| 150 | |
| 151 | const KeyLocator& |
| 152 | SignatureInfo::getKeyLocator() const |
| 153 | { |
| 154 | if (m_hasKeyLocator) |
| 155 | return m_keyLocator; |
| 156 | else |
| 157 | BOOST_THROW_EXCEPTION(Error("KeyLocator does not exist in SignatureInfo")); |
| 158 | } |
| 159 | |
| 160 | void |
| 161 | SignatureInfo::setKeyLocator(const KeyLocator& keyLocator) |
| 162 | { |
| 163 | m_wire.reset(); |
| 164 | m_keyLocator = keyLocator; |
| 165 | m_hasKeyLocator = true; |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | SignatureInfo::unsetKeyLocator() |
| 170 | { |
| 171 | m_wire.reset(); |
| 172 | m_keyLocator = KeyLocator(); |
| 173 | m_hasKeyLocator = false; |
| 174 | } |
| 175 | |
| 176 | security::ValidityPeriod |
| 177 | SignatureInfo::getValidityPeriod() const |
| 178 | { |
| 179 | if (m_otherTlvs.empty() || m_otherTlvs.front().type() != tlv::ValidityPeriod) { |
| 180 | BOOST_THROW_EXCEPTION(Error("ValidityPeriod does not exist in SignatureInfo")); |
| 181 | } |
| 182 | |
| 183 | return security::ValidityPeriod(m_otherTlvs.front()); |
| 184 | } |
| 185 | |
| 186 | void |
| 187 | SignatureInfo::setValidityPeriod(const security::ValidityPeriod& validityPeriod) |
| 188 | { |
| 189 | unsetValidityPeriod(); |
| 190 | m_otherTlvs.push_front(validityPeriod.wireEncode()); |
| 191 | } |
| 192 | |
| 193 | void |
| 194 | SignatureInfo::unsetValidityPeriod() |
| 195 | { |
| 196 | if (!m_otherTlvs.empty() && m_otherTlvs.front().type() == tlv::ValidityPeriod) { |
| 197 | m_otherTlvs.pop_front(); |
| 198 | m_wire.reset(); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | const Block& |
| 203 | SignatureInfo::getTypeSpecificTlv(uint32_t type) const |
| 204 | { |
| 205 | for (const Block& block : m_otherTlvs) { |
| 206 | if (block.type() == type) |
| 207 | return block; |
| 208 | } |
| 209 | |
| 210 | BOOST_THROW_EXCEPTION(Error("TLV-TYPE " + to_string(type) + " sub-element does not exist in SignatureInfo")); |
| 211 | } |
| 212 | |
| 213 | void |
| 214 | SignatureInfo::appendTypeSpecificTlv(const Block& block) |
| 215 | { |
| 216 | m_wire.reset(); |
| 217 | m_otherTlvs.push_back(block); |
| 218 | } |
| 219 | |
| 220 | bool |
| 221 | operator==(const SignatureInfo& lhs, const SignatureInfo& rhs) |
| 222 | { |
| 223 | return lhs.m_type == rhs.m_type && |
| 224 | lhs.m_hasKeyLocator == rhs.m_hasKeyLocator && |
| 225 | lhs.m_keyLocator == rhs.m_keyLocator && |
| 226 | lhs.m_otherTlvs == rhs.m_otherTlvs; |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 227 | } |
| 228 | |
Alexander Afanasyev | 4146975 | 2017-01-10 21:51:55 -0800 | [diff] [blame] | 229 | std::ostream& |
| 230 | operator<<(std::ostream& os, const SignatureInfo& info) |
| 231 | { |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 232 | if (info.getSignatureType() == -1) |
| 233 | return os << "Invalid SignatureInfo"; |
| 234 | |
Alexander Afanasyev | 4146975 | 2017-01-10 21:51:55 -0800 | [diff] [blame] | 235 | os << static_cast<tlv::SignatureTypeValue>(info.getSignatureType()); |
| 236 | if (info.hasKeyLocator()) { |
| 237 | os << " " << info.getKeyLocator(); |
| 238 | } |
| 239 | if (!info.m_otherTlvs.empty()) { |
| 240 | os << " { "; |
| 241 | for (const auto& block : info.m_otherTlvs) { |
| 242 | os << block.type() << " "; |
| 243 | } |
| 244 | os << "}"; |
| 245 | } |
Davide Pesavento | 7e6f6f8 | 2017-10-31 18:05:28 -0400 | [diff] [blame] | 246 | |
Alexander Afanasyev | 4146975 | 2017-01-10 21:51:55 -0800 | [diff] [blame] | 247 | return os; |
| 248 | } |
| 249 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 250 | } // namespace ndn |