blob: 8b582a36d8f05b255fcca3605532a28f490d4bac [file] [log] [blame]
Shock Jiang698e6ed2014-11-09 11:22:24 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yumin Xia2c509c22017-02-09 14:37:36 -08002/*
3 * Copyright (c) 2014-2017, 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
20#include "iterative-query-controller.hpp"
21#include "logger.hpp"
22#include <iostream>
23
24namespace ndn {
25namespace ndns {
26NDNS_LOG_INIT("IterQueryCtr")
27
28IterativeQueryController::IterativeQueryController(const Name& dstLabel,
29 const name::Component& rrType,
30 const time::milliseconds& interestLifetime,
31 const QuerySucceedCallback& onSucceed,
32 const QueryFailCallback& onFail,
Shock Jiang5d5928c2014-12-03 13:41:22 -080033 Face& face,
Yumin Xiad8b75fc2017-04-05 15:00:21 -070034 security::v2::Validator* validator,
35 ndn::InMemoryStorage* cache)
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)
Yumin Xiad8b75fc2017-04-05 15:00:21 -070041 , m_nsCache(cache)
Shock Jiang698e6ed2014-11-09 11:22:24 -080042{
Shock Jiang698e6ed2014-11-09 11:22:24 -080043}
44
45void
46IterativeQueryController::onTimeout(const Interest& interest)
47{
48 NDNS_LOG_INFO("[* !! *] timeout happens: " << interest.getName());
49 NDNS_LOG_TRACE(*this);
50 this->abort();
51}
52
53void
54IterativeQueryController::abort()
55{
56 NDNS_LOG_DEBUG("abort iterative query");
57 if (m_onFail != nullptr)
58 m_onFail(0, "abort");
59 else
60 NDNS_LOG_TRACE("m_onFail is 0");
61
62}
63
64void
65IterativeQueryController::onData(const ndn::Interest& interest, const Data& data)
66{
Yumin Xiaa484ba72016-11-10 20:40:12 -080067 NdnsContentType contentType = NdnsContentType(data.getContentType());
Shock Jiang698e6ed2014-11-09 11:22:24 -080068
Yumin Xiaa484ba72016-11-10 20:40:12 -080069 NDNS_LOG_TRACE("[* -> *] get a " << contentType
Shock Jiang698e6ed2014-11-09 11:22:24 -080070 << " Response: " << data.getName());
Shock Jiang5d5928c2014-12-03 13:41:22 -080071 if (m_validator == nullptr) {
Yumin Xia2c509c22017-02-09 14:37:36 -080072 this->onDataValidated(data, contentType);
Shock Jiang5d5928c2014-12-03 13:41:22 -080073 }
74 else {
75 m_validator->validate(data,
Yumin Xiaa484ba72016-11-10 20:40:12 -080076 bind(&IterativeQueryController::onDataValidated, this, _1, contentType),
Yumin Xia2c509c22017-02-09 14:37:36 -080077 [this] (const Data& data, const security::v2::ValidationError& err) {
78 NDNS_LOG_WARN("data: " << data.getName() << " fails verification");
Shock Jiang5d5928c2014-12-03 13:41:22 -080079 this->abort();
80 }
81 );
82 }
83}
84void
Yumin Xia2c509c22017-02-09 14:37:36 -080085IterativeQueryController::onDataValidated(const Data& data, NdnsContentType contentType)
Shock Jiang5d5928c2014-12-03 13:41:22 -080086{
Yumin Xiad8b75fc2017-04-05 15:00:21 -070087 if (m_nsCache != nullptr && contentType == NDNS_LINK) {
88 m_nsCache->insert(data);
89 }
90
Shock Jiang698e6ed2014-11-09 11:22:24 -080091 switch (m_step) {
92 case QUERY_STEP_QUERY_NS:
Yumin Xiaa484ba72016-11-10 20:40:12 -080093 if (contentType == NDNS_NACK) {
Shock Jiang06cd2142014-11-23 17:36:02 -080094 m_step = QUERY_STEP_QUERY_RR;
Shock Jiang698e6ed2014-11-09 11:22:24 -080095 }
Yumin Xiaa484ba72016-11-10 20:40:12 -080096 else if (contentType == NDNS_LINK) {
Yumin Xia2c509c22017-02-09 14:37:36 -080097 Link link(data.wireEncode());
98 if (link.getDelegationList().empty()) {
Yumin Xiaa484ba72016-11-10 20:40:12 -080099 m_lastLink = Block();
Yumin Xia2c509c22017-02-09 14:37:36 -0800100 }
101 else {
102 m_lastLink = data.wireEncode();
Yumin Xia4e561892016-10-21 10:48:01 -0700103 }
Yumin Xiaa484ba72016-11-10 20:40:12 -0800104
105 // for NS query, if already received, just return, instead of more queries until NACK
Shock Jiang698e6ed2014-11-09 11:22:24 -0800106 if (m_nFinishedComps + m_nTryComps == m_dstLabel.size() && m_rrType == label::NS_RR_TYPE) {
107 // NS_RR_TYPE is different, since its record is stored at higher level
108 m_step = QUERY_STEP_ANSWER_STUB;
109 }
110 else {
111 m_nFinishedComps += m_nTryComps;
112 m_nTryComps = 1;
113 }
114 }
Yumin Xiaa484ba72016-11-10 20:40:12 -0800115 else if (contentType == NDNS_AUTH) {
Shock Jiang698e6ed2014-11-09 11:22:24 -0800116 m_nTryComps += 1;
117 }
Yumin Xiaa484ba72016-11-10 20:40:12 -0800118 else if (contentType == NDNS_BLOB) {
Shock Jiang698e6ed2014-11-09 11:22:24 -0800119 std::ostringstream oss;
120 oss << *this;
Yumin Xiaa484ba72016-11-10 20:40:12 -0800121 NDNS_LOG_WARN("get unexpected Response: NDNS_BLOB for QUERY_NS: " << oss.str());
Yumin Xia2c509c22017-02-09 14:37:36 -0800122 }
123 else {
Yumin Xiaa484ba72016-11-10 20:40:12 -0800124 std::ostringstream oss;
125 oss << *this;
126 NDNS_LOG_WARN("get unexpected Response for QUERY_NS: " << oss.str());
Shock Jiang698e6ed2014-11-09 11:22:24 -0800127 }
128 //
129 if (m_nFinishedComps + m_nTryComps > m_dstLabel.size()) {
130 if (m_rrType == label::NS_RR_TYPE) {
131 m_step = QUERY_STEP_ANSWER_STUB;
132 }
133 else
134 m_step = QUERY_STEP_QUERY_RR;
135 }
136 break;
137 case QUERY_STEP_QUERY_RR:
138 m_step = QUERY_STEP_ANSWER_STUB;
139 break;
140 default:
141 NDNS_LOG_WARN("get unexpected Response at State " << *this);
142 // throw std::runtime_error("call makeLatestInterest() unexpected: " << *this);
143 // do not throw except since it may be duplicated Data
144 m_step = QUERY_STEP_ABORT;
145 break;
146 }
147
148 if (!hasEnded())
149 this->express(this->makeLatestInterest()); // express new Expres
150 else if (m_step == QUERY_STEP_ANSWER_STUB) {
151 NDNS_LOG_TRACE("query ends: " << *this);
Yumin Xia2c509c22017-02-09 14:37:36 -0800152 Response re = this->parseFinalResponse(data);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800153 if (m_onSucceed != nullptr)
Yumin Xia2c509c22017-02-09 14:37:36 -0800154 m_onSucceed(data, re);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800155 else
156 NDNS_LOG_TRACE("succeed callback is nullptr");
157 }
158 else if (m_step == QUERY_STEP_ABORT)
159 this->abort();
160}
161
162bool
163IterativeQueryController::hasEnded()
164{
165 return (m_step != QUERY_STEP_QUERY_NS && m_step != QUERY_STEP_QUERY_RR);
166}
167
168void
169IterativeQueryController::start()
170{
Shock Jiang5d5928c2014-12-03 13:41:22 -0800171 if (m_dstLabel.size() == m_nFinishedComps)
172 m_step = QUERY_STEP_QUERY_RR;
173
Shock Jiang698e6ed2014-11-09 11:22:24 -0800174 Interest interest = this->makeLatestInterest();
175 express(interest);
176}
177
178
179void
180IterativeQueryController::express(const Interest& interest)
181{
Yumin Xiad8b75fc2017-04-05 15:00:21 -0700182 if (m_nsCache != nullptr) {
183 shared_ptr<const Data> cachedData = m_nsCache->find(interest);
184 if (cachedData != nullptr) {
185 NDNS_LOG_DEBUG("[* cached *] NS record has been cached before: "
186 << interest.getName());
187 onData(interest, *cachedData);
188 return ;
189 }
190 }
191
Shock Jiang698e6ed2014-11-09 11:22:24 -0800192 NDNS_LOG_DEBUG("[* <- *] send a Query: " << interest.getName());
193 m_face.expressInterest(interest,
194 bind(&IterativeQueryController::onData, this, _1, _2),
Alexander Afanasyevf4193ea2017-06-12 15:35:13 -0700195 bind(&IterativeQueryController::onTimeout, this, _1), // nack
Shock Jiang698e6ed2014-11-09 11:22:24 -0800196 bind(&IterativeQueryController::onTimeout, this, _1)
197 );
198}
199
200
201const Response
202IterativeQueryController::parseFinalResponse(const Data& data)
203{
204 Response re;
205 Name zone = m_dstLabel.getPrefix(m_nFinishedComps);
Yumin Xia6343c5b2016-10-20 15:45:50 -0700206 re.fromData(zone, data);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800207 return re;
208}
209
210const Interest
211IterativeQueryController::makeLatestInterest()
212{
213 // NDNS_LOG_TRACE("get latest Interest");
214 Query query;
215 //const Name& dstLabel = m_query.getRrLabel();
216
217 query.setZone(m_dstLabel.getPrefix(m_nFinishedComps));
218 query.setInterestLifetime(m_interestLifetime);
Yumin Xia4e561892016-10-21 10:48:01 -0700219
220 // addLink
221 if (m_lastLink.hasWire()) {
Yumin Xia2c509c22017-02-09 14:37:36 -0800222 query.setDelegationListFromLink(Link(m_lastLink));
Yumin Xia4e561892016-10-21 10:48:01 -0700223 }
224
Shock Jiang698e6ed2014-11-09 11:22:24 -0800225 switch (m_step) {
226 case QUERY_STEP_QUERY_NS:
227 query.setQueryType(label::NDNS_ITERATIVE_QUERY);
228 query.setRrLabel(m_dstLabel.getSubName(m_nFinishedComps, m_nTryComps));
229 query.setRrType(label::NS_RR_TYPE);
230 break;
231 case QUERY_STEP_QUERY_RR:
Yumin Xia918343d2017-03-17 19:04:55 -0700232 query.setQueryType(label::NDNS_ITERATIVE_QUERY);
Shock Jiang698e6ed2014-11-09 11:22:24 -0800233 query.setRrLabel(m_dstLabel.getSubName(m_nFinishedComps));
234 query.setRrType(m_rrType);
235 break;
236 default:
237 std::ostringstream oss;
238 oss << *this;
239 NDNS_LOG_WARN("unexpected state: " << oss.str());
Yumin Xia2c509c22017-02-09 14:37:36 -0800240 BOOST_THROW_EXCEPTION(std::runtime_error("call makeLatestInterest() unexpected: "
241 + oss.str()));
Shock Jiang698e6ed2014-11-09 11:22:24 -0800242 }
243
Shock Jiang698e6ed2014-11-09 11:22:24 -0800244 Interest interest = query.toInterest();
245 return interest;
246}
247
248std::ostream&
249operator<<(std::ostream& os, const IterativeQueryController::QueryStep step)
250{
251 switch (step) {
252 case IterativeQueryController::QUERY_STEP_QUERY_NS:
253 os << "QueryNS";
254 break;
255 case IterativeQueryController::QUERY_STEP_QUERY_RR:
256 os << "QueryRR";
257 break;
258 case IterativeQueryController::QUERY_STEP_ANSWER_STUB:
259 os << "AnswerStub";
260 break;
261 case IterativeQueryController::QUERY_STEP_ABORT:
262 os << "Abort";
263 break;
264 default:
265 os << "UNKNOW";
266 break;
267 }
268 return os;
269}
270
271std::ostream&
272operator<<(std::ostream& os, const IterativeQueryController& ctr)
273{
274 os << "InterativeQueryController: dstLabel=" << ctr.getDstLabel()
275 << " rrType=" << ctr.getRrType()
276 << " currentStep=" << ctr.getStep()
277 << " nFinishedComps=" << ctr.getNFinishedComps()
278 << " nTryComp=" << ctr.getNTryComps()
279 ;
280
281 return os;
282}
283
284} // namespace ndns
285} // namespace ndn