1 #ifndef NDNPH_PACKET_INTEREST_HPP
2 #define NDNPH_PACKET_INTEREST_HPP
4 #include "../keychain/private-key.hpp"
5 #include "../keychain/public-key.hpp"
6 #include "../port/random/port.hpp"
7 #include "../port/sha256/port.hpp"
8 #include "../port/timingsafe/port.hpp"
73 return obj->canBePrefix;
77 return obj->mustBeFresh;
102 if (
obj->canBePrefix) {
103 encoder.prependTlv(TT::CanBePrefix);
107 if (
obj->mustBeFresh) {
127 for (
const auto& comp : name) {
146 if (
obj ==
nullptr) {
160 uint8_t digestComp[34];
161 if (!hash.
final(&digestComp[2])) {
170 if (posParamsDigest >= 0) {
171 auto namePrefix =
obj->name.slice(0, posParamsDigest);
172 prefix =
tlv::Value(namePrefix.value(), namePrefix.length());
173 auto nameSuffix =
obj->name.slice(posParamsDigest + 1);
174 suffix =
tlv::Value(nameSuffix.value(), nameSuffix.length());
186 template<
typename Fn>
193 const uint8_t* afterParams = encoder.
begin();
194 encodeParams(encoder);
215 m_sigInfo = std::move(sigInfo);
219 if (m_key ==
nullptr) {
226 if (posParamsDigest < 0) {
228 }
else if (
static_cast<size_t>(posParamsDigest) ==
obj->name.size() - 1) {
229 auto prefix =
obj->name.getPrefix(-1);
230 signedName =
tlv::Value(prefix.value(), prefix.length());
236 const uint8_t* afterSig = encoder.
begin();
240 const uint8_t* afterSignedPortion = encoder.
begin();
247 ssize_t sigLen = m_key->
sign({signedName, signedPortion}, sigBuf);
253 encoder.
resetFront(
const_cast<uint8_t*
>(afterSig));
259 if (room != signedPortion.
begin()) {
260 std::memmove(room, signedPortion.begin(), signedPortion.size());
266 if (room != sigBuf) {
267 std::memmove(room, sigBuf, sigLen);
286 using InterestRefBase::InterestRefBase;
293 obj->canBePrefix = v;
297 obj->mustBeFresh = v;
322 if (
obj->params ==
nullptr) {
325 return obj->params->appParameters;
333 return obj->params ==
nullptr ? nullptr : &
obj->params->sigInfo;
339 [
this](
Encoder& encoder) { encodeMiddle(encoder); });
354 template<
typename ISigPolicy>
357 if (!policy.create(region, si)) {
360 return sign(key, si);
389 template<
typename... Arg>
400 EvDecoder::def<TT::ForwardingHint>(
402 EvDecoder::defNni<TT::Nonce, tlv::NNI4>(&
obj->nonce),
403 EvDecoder::defNni<TT::InterestLifetime>(&
obj->lifetime),
404 EvDecoder::defNni<TT::HopLimit, tlv::NNI1>(&
obj->hopLimit),
406 obj->params =
regionOf(
obj).template make<detail::InterestParams>();
407 if (
obj->params ==
nullptr) {
411 return obj->params->appParameters.decodeFrom(d);
413 EvDecoder::def<TT::ISigInfo>([
this](
const Decoder::Tlv& d) {
414 return obj->params !=
nullptr &&
obj->params->sigInfo.decodeFrom(d);
416 EvDecoder::def<TT::ISigValue>([
this](
const Decoder::Tlv& d) {
417 if (
obj->params ==
nullptr) {
421 return obj->params->sigValue.decodeFrom(d);
430 template<
typename Encodable>
432 if (
obj ==
nullptr) {
436 if (!encoder.
prepend(std::forward<Encodable>(encodable))) {
452 if (
obj->params ==
nullptr) {
456 if (posParamsDigest < 0) {
463 hash.
update(
obj->params->allParams.begin(),
obj->params->allParams.size());
464 return hash.
final(digest) &&
465 port::TimingSafeEqual()(digest,
sizeof(digest), paramsDigest.
value(),
481 if (
static_cast<size_t>(posParamsDigest) !=
obj->name.size() - 1) {
484 auto signedName =
obj->name.getPrefix(-1);
486 {
tlv::Value(signedName.value(), signedName.length()),
obj->params->signedParams},
487 obj->params->sigValue.begin(),
obj->params->sigValue.size());
490 template<
typename DataT>
491 [[deprecated]]
bool match(
const DataT& data)
const {
492 return data.canSatisfy(*
this);
495 #ifdef NDNPH_PRINT_ARDUINO
500 count += p.print(
"[P]");
503 count += p.print(
"[F]");
510 #ifdef NDNPH_PRINT_OSTREAM
512 operator<<(std::ostream& os,
const Interest& interest) {
513 os << interest.getName();
514 if (interest.getCanBePrefix()) {
517 if (interest.getMustBeFresh()) {
static bool generate(uint8_t *output, size_t count)
SHA256 algorithm, implemented with BearSSL.
Definition: sha256-bearssl.hpp:11
void update(const uint8_t *chunk, size_t size)
Definition: sha256-bearssl.hpp:17
bool final(uint8_t *digest)
Definition: sha256-bearssl.hpp:21
Name component.
Definition: component.hpp:16
size_t length() const
Definition: component.hpp:145
const uint8_t * value() const
Definition: component.hpp:149
Decoded TLV.
Definition: decoder.hpp:13
const uint8_t * tlv
Definition: decoder.hpp:42
TLV decoder.
Definition: decoder.hpp:10
bool decode(T &target) const
Decode first TLV into target object.
Definition: decoder.hpp:158
TLV encoder that accepts items in reverse order.
Definition: encoder.hpp:10
const uint8_t * begin() const
Get output begin.
Definition: encoder.hpp:34
bool prepend(const First &first, const Arg &... arg)
Prepend a sequence of values.
Definition: encoder.hpp:123
void trim() const
Release unused space to the Region.
Definition: encoder.hpp:58
bool prependTypeLength(uint32_t type, size_t length)
Prepend TLV-TYPE and TLV-LENGTH.
Definition: encoder.hpp:103
void discard()
Release all space to the Region.
Definition: encoder.hpp:72
uint8_t * prependRoom(size_t size)
Make room to prepend an object.
Definition: encoder.hpp:90
bool prependTlv(uint32_t type, OmitEmptyTag omitEmpty, const Arg &... arg)
Prepend TLV, measuring TLV-LENGTH automatically.
Definition: encoder.hpp:143
void setError()
Indicate an error has occurred.
Definition: encoder.hpp:166
size_t size() const
Get output size.
Definition: encoder.hpp:44
void resetFront(uint8_t *pos)
Reset front to given position.
Definition: encoder.hpp:81
static bool decode(const Decoder::Tlv &input, std::initializer_list< uint32_t > topTypes, const E &... defs)
Decode input TLV with a sequence of element definitions.
Definition: ev-decoder.hpp:115
SignatureInfo on Interest.
Definition: sig-info.hpp:51
Base class of an object allocated in a Region.
Definition: region.hpp:202
Result of Interest::parameterize operation.
Definition: interest.hpp:346
Signed sign(const PrivateKey &key, Region ®ion, ISigPolicy &policy) const
Definition: interest.hpp:355
Signed sign(const PrivateKey &key, ISigInfo sigInfo=ISigInfo()) const
Definition: interest.hpp:350
Interest packet.
Definition: interest.hpp:284
bool decodeFrom(Encodable &&encodable)
Encode then decode as Interest packet.
Definition: interest.hpp:431
const ISigInfo * getSigInfo() const
Retrieve SignatureInfo.
Definition: interest.hpp:332
void setFwHint(const Name &v)
Definition: interest.hpp:300
Parameterized parameterize(tlv::Value appParameters) const
Add AppParameters to the packet.
Definition: interest.hpp:374
void encodeTo(Encoder &encoder) const
Encode the Interest without AppParameters.
Definition: interest.hpp:337
void setMustBeFresh(bool v)
Definition: interest.hpp:296
detail::SignedInterestRef Signed
Result of Interest::sign operation.
Definition: interest.hpp:343
void setNonce(uint32_t v)
Definition: interest.hpp:304
Signed sign(Arg &&... arg) const
Sign the packet with a private key.
Definition: interest.hpp:390
size_t printTo(::Print &p) const final
Definition: interest.hpp:496
bool checkDigest() const
Check ParametersSha256DigestComponent.
Definition: interest.hpp:451
void setLifetime(uint16_t v)
Definition: interest.hpp:308
bool verify(const PublicKey &key) const
Verify the packet with a public key.
Definition: interest.hpp:476
bool match(const DataT &data) const
Definition: interest.hpp:491
void setCanBePrefix(bool v)
Definition: interest.hpp:292
tlv::Value getAppParameters() const
Retrieve AppParameters.
Definition: interest.hpp:321
void setHopLimit(uint8_t v)
Definition: interest.hpp:312
void setName(const Name &v)
Definition: interest.hpp:288
bool decodeFrom(const Decoder::Tlv &input)
Decode packet.
Definition: interest.hpp:395
Name.
Definition: name.hpp:14
Definition: printing.hpp:22
Private key.
Definition: private-key.hpp:9
virtual void updateSigInfo(SigInfo &sigInfo) const =0
Write SigType and KeyLocator.
virtual size_t getMaxSigLen() const =0
virtual ssize_t sign(std::initializer_list< tlv::Value > chunks, uint8_t *sig) const =0
Perform signing.
Public key.
Definition: public-key.hpp:9
virtual bool verify(std::initializer_list< tlv::Value > chunks, const uint8_t *sig, size_t sigLen) const =0
Perform verification.
Base class of an object referencing an InRegion object.
Definition: region.hpp:210
ObjType * obj
Definition: region.hpp:226
friend Region & regionOf(const RefRegion< InterestObj > &ref)
Definition: region.hpp:228
RefRegion(ObjType *obj=nullptr)
Definition: region.hpp:215
Region-based memory allocator thats owns memory of NDNph objects.
Definition: region.hpp:9
Region & region
Definition: region.hpp:194
Fields in Interest or Nack.
Definition: interest.hpp:37
bool canBePrefix
Definition: interest.hpp:59
Name fwHint
Definition: interest.hpp:55
uint16_t lifetime
Definition: interest.hpp:57
uint8_t hopLimit
Definition: interest.hpp:58
uint8_t nackReason
Definition: interest.hpp:61
bool mustBeFresh
Definition: interest.hpp:60
InterestObj(Region ®ion)
Definition: interest.hpp:39
InterestParams * params
Definition: interest.hpp:53
uint32_t nonce
Definition: interest.hpp:56
@ MaxHopLimit
Definition: interest.hpp:49
@ DefaultLifetime
Definition: interest.hpp:48
Name name
Definition: interest.hpp:54
Definition: interest.hpp:64
const Name & getFwHint() const
Definition: interest.hpp:80
uint32_t getNonce() const
Definition: interest.hpp:84
bool getCanBePrefix() const
Definition: interest.hpp:72
void encodeMiddle(Encoder &encoder) const
Definition: interest.hpp:99
uint8_t getHopLimit() const
Definition: interest.hpp:92
uint16_t getLifetime() const
Definition: interest.hpp:88
~InterestRefBase()=default
bool getMustBeFresh() const
Definition: interest.hpp:76
const Name & getName() const
Definition: interest.hpp:68
static int findParamsDigest(const Name &name)
Definition: interest.hpp:125
Definition: interest.hpp:137
void encodeTo(Encoder &encoder) const
Definition: interest.hpp:145
tlv::Value m_appParameters
Definition: interest.hpp:203
ParameterizedInterestRef()=default
ParameterizedInterestRef(InterestObj *interest, tlv::Value appParameters)
Definition: interest.hpp:141
~ParameterizedInterestRef()=default
void encodeImpl(Encoder &encoder, const Fn &encodeParams) const
Definition: interest.hpp:187
void encodeAppParameters(Encoder &encoder) const
Definition: interest.hpp:182
void encodeName(Encoder &encoder, const tlv::Value ¶ms) const
Definition: interest.hpp:157
Definition: interest.hpp:206
void encodeTo(Encoder &encoder) const
Definition: interest.hpp:218
SignedInterestRef()=default
SignedInterestRef(InterestObj *interest, tlv::Value appParameters, const PrivateKey &key, ISigInfo sigInfo)
Definition: interest.hpp:210
NonNegativeInteger encoding.
Definition: nni.hpp:118
Encode to a TLV element where TLV-VALUE is a NonNegativeInteger.
Definition: nni.hpp:170
A sequence of bytes, usually TLV-VALUE.
Definition: value.hpp:11
const uint8_t * begin() const
Definition: value.hpp:38
size_t size() const
Definition: value.hpp:46
#define NDNPH_ASSERT(x)
Definition: common.hpp:30
#define NDNPH_SHA256_LEN
SHA256 digest length.
Definition: common.hpp:34
@ Interest
Definition: an.hpp:30
@ ParametersSha256DigestComponent
Definition: an.hpp:22
@ MustBeFresh
Definition: an.hpp:32
@ InterestLifetime
Definition: an.hpp:35
@ ForwardingHint
Definition: an.hpp:33
@ Nonce
Definition: an.hpp:34
@ Name
Definition: an.hpp:19
@ ISigValue
Definition: an.hpp:39
@ DSigValue
Definition: an.hpp:48
@ ISigInfo
Definition: an.hpp:38
@ AppParameters
Definition: an.hpp:37
@ HopLimit
Definition: an.hpp:36
bool input(Region ®ion, T &target, std::istream &is=std::cin)
Read and decode from input stream.
Definition: io.hpp:15
bool decodeFwHint(const Decoder::Tlv &d, Name *target)
Definition: interest.hpp:23
bool encodeFwHint(Encoder &encoder, const Name &fwHint)
Definition: interest.hpp:15
isig::Policy< isig::Nonce<>, isig::Time<> > ISigPolicy
Definition: common.hpp:73
Fields in parameterized/signed Interest.
Definition: interest.hpp:28
tlv::Value sigValue
Definition: interest.hpp:31
tlv::Value appParameters
Definition: interest.hpp:29
tlv::Value signedParams
Definition: interest.hpp:32
ISigInfo sigInfo
Definition: interest.hpp:30
tlv::Value allParams
Definition: interest.hpp:33