blob: 6bd99bd7901b59a607c293b3d4a8e5ec49bac249 [file] [log] [blame]
Shock Jiang698e6ed2014-11-09 11:22:24 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yumin Xia6343c5b2016-10-20 15:45:50 -07003 * Copyright (c) 2014-2016, Regents of the University of California.
Shock Jiang698e6ed2014-11-09 11:22:24 -08004 *
5 * This file is part of NDNS (Named Data Networking Domain Name Service).
6 * See AUTHORS.md for complete list of NDNS authors and contributors.
7 *
8 * NDNS is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Shock Jiang5d5928c2014-12-03 13:41:22 -080020#include "validator.hpp"
Shock Jiang698e6ed2014-11-09 11:22:24 -080021#include "iterative-query-controller.hpp"
22#include "logger.hpp"
23#include <iostream>
24
25namespace ndn {
26namespace ndns {
27NDNS_LOG_INIT("IterQueryCtr")
28
29IterativeQueryController::IterativeQueryController(const Name& dstLabel,
30 const name::Component& rrType,
31 const time::milliseconds& interestLifetime,
32 const QuerySucceedCallback& onSucceed,
33 const QueryFailCallback& onFail,
Shock Jiang5d5928c2014-12-03 13:41:22 -080034 Face& face,
35 Validator* validator)
Shock Jiang698e6ed2014-11-09 11:22:24 -080036 : QueryController(dstLabel, rrType, interestLifetime, onSucceed, onFail, face)
Shock Jiang5d5928c2014-12-03 13:41:22 -080037 , m_validator(validator)
Shock Jiang698e6ed2014-11-09 11:22:24 -080038 , m_step(QUERY_STEP_QUERY_NS)
39 , m_nFinishedComps(0)
40 , m_nTryComps(1)
41{
Shock Jiang698e6ed2014-11-09 11:22:24 -080042}
43
44void
45IterativeQueryController::onTimeout(const Interest& interest)
46{
47 NDNS_LOG_INFO("[* !! *] timeout happens: " << interest.getName());
48 NDNS_LOG_TRACE(*this);
49 this->abort();
50}
51
52void
53IterativeQueryController::abort()
54{
55 NDNS_LOG_DEBUG("abort iterative query");
56 if (m_onFail != nullptr)
57 m_onFail(0, "abort");
58 else
59 NDNS_LOG_TRACE("m_onFail is 0");
60
61}
62
63void
64IterativeQueryController::onData(const ndn::Interest& interest, const Data& data)
65{
66 NdnsType ndnsType = NDNS_RAW;
67 const Block* block = data.getMetaInfo().findAppMetaInfo(ndns::tlv::NdnsType);
68 if (block != nullptr) {
69 ndnsType = static_cast<NdnsType>(readNonNegativeInteger(*block));
70 }
71
72 NDNS_LOG_TRACE("[* -> *] get a " << ndnsType
73 << " Response: " << data.getName());
Shock Jiang5d5928c2014-12-03 13:41:22 -080074 if (m_validator == nullptr) {
75 this->onDataValidated(make_shared<Data>(data), ndnsType);
76 }
77 else {
78 m_validator->validate(data,
79 bind(&IterativeQueryController::onDataValidated, this, _1, ndnsType),
80 [this] (const shared_ptr<const Data>& data, const std::string& str) {
81 NDNS_LOG_WARN("data: " << data->getName() << " fails verification");
82 this->abort();
83 }
84 );
85 }
86}
87void
88IterativeQueryController::onDataValidated(const shared_ptr<const Data>& data, NdnsType ndnsType)
89{
Shock Jiang698e6ed2014-11-09 11:22:24 -080090 switch (m_step) {
91 case QUERY_STEP_QUERY_NS:
92 if (ndnsType == NDNS_NACK) {
Shock Jiang06cd2142014-11-23 17:36:02 -080093 m_step = QUERY_STEP_QUERY_RR;
Shock Jiang698e6ed2014-11-09 11:22:24 -080094 }
95 else if (ndnsType == NDNS_RESP) {
Yumin Xia4e561892016-10-21 10:48:01 -070096 if (m_rrType == label::NS_RR_TYPE) {
97 Link link(data->wireEncode());
98 if (link.getDelegations().empty()) {
99 m_lastLink = Block();
100 } else {
101 m_lastLink = data->wireEncode();
102 }
103 }
Shock Jiang698e6ed2014-11-09 11:22:24 -0800104 if (m_nFinishedComps + m_nTryComps == m_dstLabel.size() && m_rrType == label::NS_RR_TYPE) {
105 // NS_RR_TYPE is different, since its record is stored at higher level
106 m_step = QUERY_STEP_ANSWER_STUB;
107 }
108 else {
109 m_nFinishedComps += m_nTryComps;
110 m_nTryComps = 1;
111 }
112 }
113 else if (ndnsType == NDNS_AUTH) {
114 m_nTryComps += 1;
115 }
116 else if (ndnsType == NDNS_RAW) {
117 std::ostringstream oss;
118 oss << *this;
119 NDNS_LOG_WARN("get unexpected Response: NDNS_RAW for QUERY_NS: " << oss.str());
120 }
121 //
122 if (m_nFinishedComps + m_nTryComps > m_dstLabel.size()) {
123 if (m_rrType == label::NS_RR_TYPE) {
124 m_step = QUERY_STEP_ANSWER_STUB;
125 }
126 else
127 m_step = QUERY_STEP_QUERY_RR;
128 }
129 break;
130 case QUERY_STEP_QUERY_RR:
131 m_step = QUERY_STEP_ANSWER_STUB;
132 break;
133 default:
134 NDNS_LOG_WARN("get unexpected Response at State " << *this);
135 // throw std::runtime_error("call makeLatestInterest() unexpected: " << *this);
136 // do not throw except since it may be duplicated Data
137 m_step = QUERY_STEP_ABORT;
138 break;
139 }
140
141 if (!hasEnded())
142 this->express(this->makeLatestInterest()); // express new Expres
143 else if (m_step == QUERY_STEP_ANSWER_STUB) {
144 NDNS_LOG_TRACE("query ends: " << *this);
Shock Jiang5d5928c2014-12-03 13:41:22 -0800145 Response re = this->parseFinalResponse(*data);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800146 if (m_onSucceed != nullptr)
Shock Jiang5d5928c2014-12-03 13:41:22 -0800147 m_onSucceed(*data, re);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800148 else
149 NDNS_LOG_TRACE("succeed callback is nullptr");
150 }
151 else if (m_step == QUERY_STEP_ABORT)
152 this->abort();
153}
154
155bool
156IterativeQueryController::hasEnded()
157{
158 return (m_step != QUERY_STEP_QUERY_NS && m_step != QUERY_STEP_QUERY_RR);
159}
160
161void
162IterativeQueryController::start()
163{
Shock Jiang5d5928c2014-12-03 13:41:22 -0800164 if (m_dstLabel.size() == m_nFinishedComps)
165 m_step = QUERY_STEP_QUERY_RR;
166
Shock Jiang698e6ed2014-11-09 11:22:24 -0800167 Interest interest = this->makeLatestInterest();
168 express(interest);
169}
170
171
172void
173IterativeQueryController::express(const Interest& interest)
174{
175 NDNS_LOG_DEBUG("[* <- *] send a Query: " << interest.getName());
176 m_face.expressInterest(interest,
177 bind(&IterativeQueryController::onData, this, _1, _2),
178 bind(&IterativeQueryController::onTimeout, this, _1)
179 );
180}
181
182
183const Response
184IterativeQueryController::parseFinalResponse(const Data& data)
185{
186 Response re;
187 Name zone = m_dstLabel.getPrefix(m_nFinishedComps);
Yumin Xia6343c5b2016-10-20 15:45:50 -0700188 re.fromData(zone, data);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800189 return re;
190}
191
192const Interest
193IterativeQueryController::makeLatestInterest()
194{
195 // NDNS_LOG_TRACE("get latest Interest");
196 Query query;
197 //const Name& dstLabel = m_query.getRrLabel();
198
199 query.setZone(m_dstLabel.getPrefix(m_nFinishedComps));
200 query.setInterestLifetime(m_interestLifetime);
Yumin Xia4e561892016-10-21 10:48:01 -0700201
202 // addLink
203 if (m_lastLink.hasWire()) {
204 query.setLink(m_lastLink);
205 }
206
Shock Jiang698e6ed2014-11-09 11:22:24 -0800207 switch (m_step) {
208 case QUERY_STEP_QUERY_NS:
209 query.setQueryType(label::NDNS_ITERATIVE_QUERY);
210 query.setRrLabel(m_dstLabel.getSubName(m_nFinishedComps, m_nTryComps));
211 query.setRrType(label::NS_RR_TYPE);
212 break;
213 case QUERY_STEP_QUERY_RR:
214 if (m_rrType == label::CERT_RR_TYPE) {
215 // this only works for dsk, and ksk needs different mechanism
216 query.setQueryType(label::NDNS_CERT_QUERY);
217 }
218 else {
219 query.setQueryType(label::NDNS_ITERATIVE_QUERY);
220 }
221 query.setRrLabel(m_dstLabel.getSubName(m_nFinishedComps));
222 query.setRrType(m_rrType);
223 break;
224 default:
225 std::ostringstream oss;
226 oss << *this;
227 NDNS_LOG_WARN("unexpected state: " << oss.str());
228 throw std::runtime_error("call makeLatestInterest() unexpected: " + oss.str());
229 }
230
Shock Jiang698e6ed2014-11-09 11:22:24 -0800231 Interest interest = query.toInterest();
232 return interest;
233}
234
235std::ostream&
236operator<<(std::ostream& os, const IterativeQueryController::QueryStep step)
237{
238 switch (step) {
239 case IterativeQueryController::QUERY_STEP_QUERY_NS:
240 os << "QueryNS";
241 break;
242 case IterativeQueryController::QUERY_STEP_QUERY_RR:
243 os << "QueryRR";
244 break;
245 case IterativeQueryController::QUERY_STEP_ANSWER_STUB:
246 os << "AnswerStub";
247 break;
248 case IterativeQueryController::QUERY_STEP_ABORT:
249 os << "Abort";
250 break;
251 default:
252 os << "UNKNOW";
253 break;
254 }
255 return os;
256}
257
258std::ostream&
259operator<<(std::ostream& os, const IterativeQueryController& ctr)
260{
261 os << "InterativeQueryController: dstLabel=" << ctr.getDstLabel()
262 << " rrType=" << ctr.getRrType()
263 << " currentStep=" << ctr.getStep()
264 << " nFinishedComps=" << ctr.getNFinishedComps()
265 << " nTryComp=" << ctr.getNTryComps()
266 ;
267
268 return os;
269}
270
271} // namespace ndns
272} // namespace ndn