blob: 9c1f0de0f088ae09b0bee0416f25f8b2faa1439e [file] [log] [blame]
Yingdi Yu4a557052014-07-09 16:40:37 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev74633892015-02-08 18:08:46 -08003 * Copyright (c) 2013-2015 Regents of the University of California.
Yingdi Yu4a557052014-07-09 16:40:37 -07004 *
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 Afanasyev15f67312014-07-22 15:11:09 -070023#include "encoding/block-helpers.hpp"
Junxiao Shic2b8d242014-11-04 08:35:29 -070024#include "util/concepts.hpp"
Alexander Afanasyev15f67312014-07-22 15:11:09 -070025
Alexander Afanasyev1c6976d2014-07-13 11:40:50 -070026#include <boost/lexical_cast.hpp>
Yingdi Yu4a557052014-07-09 16:40:37 -070027
28namespace ndn {
29
Junxiao Shic2b8d242014-11-04 08:35:29 -070030BOOST_CONCEPT_ASSERT((boost::EqualityComparable<SignatureInfo>));
31BOOST_CONCEPT_ASSERT((WireEncodable<SignatureInfo>));
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -070032BOOST_CONCEPT_ASSERT((WireEncodableWithEncodingBuffer<SignatureInfo>));
Junxiao Shic2b8d242014-11-04 08:35:29 -070033BOOST_CONCEPT_ASSERT((WireDecodable<SignatureInfo>));
34static_assert(std::is_base_of<tlv::Error, SignatureInfo::Error>::value,
35 "SignatureInfo::Error must inherit from tlv::Error");
36
Yingdi Yu4a557052014-07-09 16:40:37 -070037SignatureInfo::SignatureInfo()
38 : m_type(-1)
39 , m_hasKeyLocator(false)
40{
41}
42
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060043SignatureInfo::SignatureInfo(tlv::SignatureTypeValue type)
Yingdi Yu4a557052014-07-09 16:40:37 -070044 : m_type(type)
45 , m_hasKeyLocator(false)
46{
47}
48
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060049SignatureInfo::SignatureInfo(tlv::SignatureTypeValue type, const KeyLocator& keyLocator)
Yingdi Yu4a557052014-07-09 16:40:37 -070050 : m_type(type)
51 , m_hasKeyLocator(true)
52 , m_keyLocator(keyLocator)
53{
54}
55
56SignatureInfo::SignatureInfo(const Block& block)
57{
58 wireDecode(block);
59}
60
61void
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060062SignatureInfo::setSignatureType(tlv::SignatureTypeValue type)
Yingdi Yu4a557052014-07-09 16:40:37 -070063{
64 m_wire.reset();
65 m_type = type;
66}
67
68void
69SignatureInfo::setKeyLocator(const KeyLocator& keyLocator)
70{
71 m_wire.reset();
72 m_keyLocator = keyLocator;
73 m_hasKeyLocator = true;
74}
75
Alexander Afanasyeva7c7f9d2014-07-13 11:51:52 -070076void
77SignatureInfo::unsetKeyLocator()
78{
79 m_wire.reset();
80 m_keyLocator = KeyLocator();
81 m_hasKeyLocator = false;
82}
83
Yingdi Yu4a557052014-07-09 16:40:37 -070084const KeyLocator&
85SignatureInfo::getKeyLocator() const
86{
87 if (m_hasKeyLocator)
88 return m_keyLocator;
89 else
90 throw Error("KeyLocator does not exist");
91}
92
93void
94SignatureInfo::appendTypeSpecificTlv(const Block& block)
95{
96 m_otherTlvs.push_back(block);
97}
98
99
100const Block&
101SignatureInfo::getTypeSpecificTlv(uint32_t type) const
102{
103 for (std::list<Block>::const_iterator i = m_otherTlvs.begin();
104 i != m_otherTlvs.end(); i++) {
105 if (i->type() == type)
106 return *i;
107 }
108
109 throw Error("(SignatureInfo::getTypeSpecificTlv) Requested a non-existed type [" +
110 boost::lexical_cast<std::string>(type) + "] from SignatureInfo");
111}
112
Alexander Afanasyev74633892015-02-08 18:08:46 -0800113template<encoding::Tag TAG>
Yingdi Yu4a557052014-07-09 16:40:37 -0700114size_t
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700115SignatureInfo::wireEncode(EncodingImpl<TAG>& encoder) const
Yingdi Yu4a557052014-07-09 16:40:37 -0700116{
117 size_t totalLength = 0;
118
119 for (std::list<Block>::const_reverse_iterator i = m_otherTlvs.rbegin();
120 i != m_otherTlvs.rend(); i++) {
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700121 totalLength += encoder.appendBlock(*i);
Yingdi Yu4a557052014-07-09 16:40:37 -0700122 }
123
124 if (m_hasKeyLocator)
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700125 totalLength += m_keyLocator.wireEncode(encoder);
Yingdi Yu4a557052014-07-09 16:40:37 -0700126
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700127 totalLength += prependNonNegativeIntegerBlock(encoder, tlv::SignatureType, m_type);
Yingdi Yu4a557052014-07-09 16:40:37 -0700128
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700129 totalLength += encoder.prependVarNumber(totalLength);
130 totalLength += encoder.prependVarNumber(tlv::SignatureInfo);
Yingdi Yu4a557052014-07-09 16:40:37 -0700131 return totalLength;
132}
133
134template size_t
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700135SignatureInfo::wireEncode<encoding::EncoderTag>(EncodingImpl<encoding::EncoderTag>& encoder) const;
Yingdi Yu4a557052014-07-09 16:40:37 -0700136
137template size_t
Alexander Afanasyevd5c48e02015-06-24 11:58:14 -0700138SignatureInfo::wireEncode<encoding::EstimatorTag>(EncodingImpl<encoding::EstimatorTag>& encoder) const;
Yingdi Yu4a557052014-07-09 16:40:37 -0700139
140
141const Block&
142SignatureInfo::wireEncode() const
143{
144 if (m_wire.hasWire())
145 return m_wire;
146
147 EncodingEstimator estimator;
148 size_t estimatedSize = wireEncode(estimator);
149
150 EncodingBuffer buffer(estimatedSize, 0);
151 wireEncode(buffer);
152
153 m_wire = buffer.block();
154 return m_wire;
155}
156
157void
158SignatureInfo::wireDecode(const Block& wire)
159{
160 if (!wire.hasWire()) {
161 throw Error("The supplied block does not contain wire format");
162 }
163
164 m_hasKeyLocator = false;
165
166 m_wire = wire;
167 m_wire.parse();
168
Steve DiBenedetto54ce6682014-07-22 13:22:57 -0600169 if (m_wire.type() != tlv::SignatureInfo)
170 throw tlv::Error("Unexpected TLV type when decoding Name");
Yingdi Yu4a557052014-07-09 16:40:37 -0700171
172 Block::element_const_iterator it = m_wire.elements_begin();
173
174 // the first block must be SignatureType
Steve DiBenedetto54ce6682014-07-22 13:22:57 -0600175 if (it != m_wire.elements_end() && it->type() == tlv::SignatureType) {
Yingdi Yu4a557052014-07-09 16:40:37 -0700176 m_type = readNonNegativeInteger(*it);
177 it++;
178 }
179 else
180 throw Error("SignatureInfo does not have sub-TLV or the first sub-TLV is not SignatureType");
181
182 // the second block could be KeyLocator
Steve DiBenedetto54ce6682014-07-22 13:22:57 -0600183 if (it != m_wire.elements_end() && it->type() == tlv::KeyLocator) {
Yingdi Yu4a557052014-07-09 16:40:37 -0700184 m_keyLocator.wireDecode(*it);
185 m_hasKeyLocator = true;
186 it++;
187 }
188
189 // Decode the rest of type-specific TLVs, if any
190 while (it != m_wire.elements_end()) {
191 appendTypeSpecificTlv(*it);
192 it++;
193 }
194}
195
196bool
197SignatureInfo::operator==(const SignatureInfo& rhs) const
198{
199 return (m_type == rhs.m_type &&
200 m_hasKeyLocator == rhs.m_hasKeyLocator &&
201 m_keyLocator == rhs.m_keyLocator &&
202 m_otherTlvs == rhs.m_otherTlvs);
203}
204
205} // namespace ndn