blob: c498515cc1d86423b59b985a3525a6759e632184 [file] [log] [blame]
Alexander Afanasyevf278db32013-01-21 14:41:01 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
20 */
21
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -080022#include "ccnx-wrapper.h"
Zhenkai Zhu43eb2732012-12-28 00:48:26 -080023extern "C" {
24#include <ccn/fetch.h>
25}
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -080026#include <poll.h>
27#include <boost/throw_exception.hpp>
28#include <boost/date_time/posix_time/posix_time.hpp>
29#include <boost/random.hpp>
Alexander Afanasyevf278db32013-01-21 14:41:01 -080030#include <boost/make_shared.hpp>
Zhenkai Zhucbbb8882013-01-25 13:49:12 -080031#include <boost/algorithm/string.hpp>
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -080032#include <sstream>
33
Alexander Afanasyev9c9c3012013-01-25 23:44:25 -080034#include "logging.h"
35
36INIT_LOGGER ("Ccnx.Wrapper");
37
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -080038typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str;
39typedef boost::error_info<struct tag_errmsg, int> errmsg_info_int;
40
41using namespace std;
42using namespace boost;
43
44namespace Ccnx {
45
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080046// hack to enable fake signatures
47// min length for signature field is 16, as defined in ccn_buf_decoder.c:728
48const int DEFAULT_SIGNATURE_SIZE = 16;
49
50// Although ccn_buf_decoder.c:745 defines minimum length 16, something else is checking and only 32-byte fake value is accepted by ccnd
51const int PUBLISHER_KEY_SIZE = 32;
52
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080053static int
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080054ccn_encode_garbage_Signature(struct ccn_charbuf *buf)
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080055{
56 int res = 0;
57
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080058 res |= ccn_charbuf_append_tt(buf, CCN_DTAG_Signature, CCN_DTAG);
59
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080060 // Let's cheat more. Default signing algorithm in ccnd is SHA256, so we just need add 32 bytes of garbage
61 static char garbage [DEFAULT_SIGNATURE_SIZE];
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080062
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080063 // digest and witness fields are optional, so use default ones
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080064
65 res |= ccn_charbuf_append_tt(buf, CCN_DTAG_SignatureBits, CCN_DTAG);
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080066 res |= ccn_charbuf_append_tt(buf, DEFAULT_SIGNATURE_SIZE, CCN_BLOB);
67 res |= ccn_charbuf_append(buf, garbage, DEFAULT_SIGNATURE_SIZE);
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080068 res |= ccn_charbuf_append_closer(buf);
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080069
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080070 res |= ccn_charbuf_append_closer(buf);
71
72 return(res == 0 ? 0 : -1);
73}
74
75static int
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080076ccn_pack_unsigned_ContentObject(struct ccn_charbuf *buf,
77 const struct ccn_charbuf *Name,
78 const struct ccn_charbuf *SignedInfo,
79 const void *data,
80 size_t size)
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080081{
82 int res = 0;
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080083 struct ccn_charbuf *content_header;
84 size_t closer_start;
85
86 content_header = ccn_charbuf_create();
87 res |= ccn_charbuf_append_tt(content_header, CCN_DTAG_Content, CCN_DTAG);
88 if (size != 0)
89 res |= ccn_charbuf_append_tt(content_header, size, CCN_BLOB);
90 closer_start = content_header->length;
91 res |= ccn_charbuf_append_closer(content_header);
92 if (res < 0)
93 return(-1);
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080094
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080095 res |= ccn_charbuf_append_tt(buf, CCN_DTAG_ContentObject, CCN_DTAG);
96
Alexander Afanasyev848a8e42013-02-07 21:19:18 -080097 res |= ccn_encode_garbage_Signature(buf);
98
Zhenkai Zhu5acebd72013-02-07 19:59:25 -080099 res |= ccn_charbuf_append_charbuf(buf, Name);
100 res |= ccn_charbuf_append_charbuf(buf, SignedInfo);
101 res |= ccnb_append_tagged_blob(buf, CCN_DTAG_Content, data, size);
102 res |= ccn_charbuf_append_closer(buf);
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800103
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800104 ccn_charbuf_destroy(&content_header);
105 return(res == 0 ? 0 : -1);
106}
107
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800108CcnxWrapper::CcnxWrapper()
109 : m_handle (0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800110 , m_running (true)
111 , m_connected (false)
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800112 , m_executor (new Executor(1))
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800113{
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800114 start ();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800115}
116
117void
118CcnxWrapper::connectCcnd()
119{
Zhenkai Zhu3b82d432013-01-03 22:48:40 -0800120 //if (m_handle != 0) {
121 //ccn_disconnect (m_handle);
122 //ccn_destroy (&m_handle);
123 //}
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800124
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800125 m_handle = ccn_create ();
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800126 //UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800127 if (ccn_connect(m_handle, NULL) < 0)
128 {
129 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("connection to ccnd failed"));
130 }
131 m_connected = true;
132
Zhenkai Zhu3b82d432013-01-03 22:48:40 -0800133 //if (!m_registeredInterests.empty())
134 //{
135 // for (map<Name, InterestCallback>::const_iterator it = m_registeredInterests.begin(); it != m_registeredInterests.end(); ++it)
136 //{
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800137 // clearInterestFilter(it->first);
Zhenkai Zhu3b82d432013-01-03 22:48:40 -0800138 // setInterestFilter(it->first, it->second);
139 //}
140 //}
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800141}
142
143CcnxWrapper::~CcnxWrapper()
144{
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800145 shutdown ();
146}
147
148void
149CcnxWrapper::start () // called automatically in constructor
150{
151 connectCcnd();
152 m_thread = thread (&CcnxWrapper::ccnLoop, this);
153 m_executor->start();
154}
155
156void
157CcnxWrapper::shutdown () // called in destructor, but can called manually
158{
159 m_executor->shutdown();
160
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800161 {
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800162 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800163 m_running = false;
164 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800165
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800166 _LOG_DEBUG ("+++++++++SHUTDOWN+++++++");
167 if (m_connected)
168 {
169 m_thread.join ();
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800170
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800171 ccn_disconnect (m_handle);
172 //ccn_destroy (&m_handle);
173 m_connected = false;
174 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800175}
176
177void
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800178CcnxWrapper::ccnLoop ()
179{
180 static boost::mt19937 randomGenerator (static_cast<unsigned int> (std::time (0)));
181 static boost::variate_generator<boost::mt19937&, boost::uniform_int<> > rangeUniformRandom (randomGenerator, uniform_int<> (0,1000));
182
183 while (m_running)
184 {
185 try
186 {
187 int res = 0;
188 {
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800189 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800190 res = ccn_run (m_handle, 0);
191 }
192
193 if (!m_running) break;
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800194
Alexander Afanasyev9c9c3012013-01-25 23:44:25 -0800195 if (res < 0) {
196 _LOG_ERROR ("ccn_run returned negative status: " << res);
197 usleep (100000);
198 continue;
199 // BOOST_THROW_EXCEPTION (CcnxOperationException()
200 // << errmsg_info_str("ccn_run returned error"));
201 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800202
203
204 pollfd pfds[1];
205 {
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800206 UniqueRecLock lock(m_mutex);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800207
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800208 pfds[0].fd = ccn_get_connection_fd (m_handle);
209 pfds[0].events = POLLIN;
210 if (ccn_output_is_pending (m_handle))
211 pfds[0].events |= POLLOUT;
212 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800213
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800214 int ret = poll (pfds, 1, 1);
215 if (ret < 0)
216 {
217 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("ccnd socket failed (probably ccnd got stopped)"));
218 }
219 }
220 catch (CcnxOperationException &e)
221 {
222 // do not try reconnect for now
Zhenkai Zhu6e7d4d22013-01-15 18:18:18 -0800223 cout << *get_error_info<errmsg_info_str> (e) << endl;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800224 throw e;
225 /*
226 m_connected = false;
227 // probably ccnd has been stopped
228 // try reconnect with sleep
229 int interval = 1;
230 int maxInterval = 32;
231 while (m_running)
232 {
233 try
234 {
235 this_thread::sleep (boost::get_system_time () + TIME_SECONDS(interval) + TIME_MILLISECONDS (rangeUniformRandom ()));
236
237 connectCcnd();
238 _LOG_DEBUG("reconnect to ccnd succeeded");
239 break;
240 }
241 catch (CcnxOperationException &e)
242 {
243 this_thread::sleep (boost::get_system_time () + TIME_SECONDS(interval) + TIME_MILLISECONDS (rangeUniformRandom ()));
244
245 // do exponential backup for reconnect interval
246 if (interval < maxInterval)
247 {
248 interval *= 2;
249 }
250 }
251 }
252 */
253 }
254 catch (const std::exception &exc)
255 {
256 // catch anything thrown within try block that derives from std::exception
257 std::cerr << exc.what();
258 }
259 catch (...)
260 {
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800261 cout << "UNKNOWN EXCEPTION !!!" << endl;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800262 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800263 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800264}
265
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800266Bytes
Alexander Afanasyevdcfa9632013-01-07 16:38:19 -0800267CcnxWrapper::createContentObject(const Name &name, const void *buf, size_t len, int freshness)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800268{
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800269 {
270 UniqueRecLock lock(m_mutex);
271 if (!m_running || !m_connected)
272 {
273 _LOG_TRACE ("<< not running or connected");
274 return Bytes ();
275 }
276 }
277
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800278 CcnxCharbufPtr ptr = name.toCcnxCharbuf();
279 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800280 ccn_charbuf *content = ccn_charbuf_create();
281
Zhenkai Zhud9d03f62013-01-04 16:57:46 -0800282 struct ccn_signing_params sp = CCN_SIGNING_PARAMS_INIT;
283 sp.freshness = freshness;
284
285 if (ccn_sign_content(m_handle, content, pname, &sp, buf, len) != 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800286 {
Zhenkai Zhud9d03f62013-01-04 16:57:46 -0800287 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("sign content failed"));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800288 }
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800289
290 Bytes bytes;
291 readRaw(bytes, content->buf, content->length);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800292
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800293 ccn_charbuf_destroy (&content);
294
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800295 return bytes;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800296}
297
298int
Zhenkai Zhubad089c2012-12-28 10:28:27 -0800299CcnxWrapper::putToCcnd (const Bytes &contentObject)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800300{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800301 _LOG_TRACE (">> putToCcnd");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800302 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800303 if (!m_running || !m_connected)
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800304 {
305 _LOG_TRACE ("<< not running or connected");
306 return -1;
307 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800308
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800309
Zhenkai Zhu974c5a62012-12-28 14:15:30 -0800310 if (ccn_put(m_handle, head(contentObject), contentObject.size()) < 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800311 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800312 _LOG_ERROR ("ccn_put failed");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800313 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
314 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800315 else
316 {
317 _LOG_DEBUG ("<< putToCcnd");
318 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800319
320 return 0;
321}
322
323int
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800324CcnxWrapper::publishData (const Name &name, const unsigned char *buf, size_t len, int freshness)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800325{
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800326 Bytes co = createContentObject(name, buf, len, freshness);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800327 return putToCcnd(co);
328}
329
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800330int
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800331CcnxWrapper::publishData (const Name &name, const Bytes &content, int freshness)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800332{
Alexander Afanasyevdcfa9632013-01-07 16:38:19 -0800333 return publishData(name, head(content), content.size(), freshness);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800334}
335
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800336int
337CcnxWrapper::publishUnsignedData(const Name &name, const Bytes &content, int freshness)
338{
339 return publishUnsignedData(name, head(content), content.size(), freshness);
340}
341
342int
343CcnxWrapper::publishUnsignedData(const Name &name, const unsigned char *buf, size_t len, int freshness)
344{
345 {
346 UniqueRecLock lock(m_mutex);
347 if (!m_running || !m_connected)
348 {
349 _LOG_TRACE ("<< not running or connected");
350 return -1;
351 }
352 }
353
354 CcnxCharbufPtr ptr = name.toCcnxCharbuf();
355 ccn_charbuf *pname = ptr->getBuf();
356 ccn_charbuf *content = ccn_charbuf_create();
357 ccn_charbuf *signed_info = ccn_charbuf_create();
358
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800359 static char fakeKey[PUBLISHER_KEY_SIZE];
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800360
361 int res = ccn_signed_info_create(signed_info,
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800362 fakeKey, PUBLISHER_KEY_SIZE,
363 NULL,
364 CCN_CONTENT_DATA,
365 freshness,
366 NULL,
367 NULL // ccnd is happy with absent key locator and key itself... ha ha
368 );
369 ccn_pack_unsigned_ContentObject(content, pname, signed_info, buf, len);
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800370
371 Bytes bytes;
372 readRaw(bytes, content->buf, content->length);
373
374 ccn_charbuf_destroy (&content);
375 ccn_charbuf_destroy (&signed_info);
376
377 return putToCcnd (bytes);
378}
379
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800380
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800381static void
382deleterInInterestTuple (tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> *tuple)
383{
384 delete tuple->get<0> ();
385 delete tuple;
386}
387
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800388static ccn_upcall_res
389incomingInterest(ccn_closure *selfp,
390 ccn_upcall_kind kind,
391 ccn_upcall_info *info)
392{
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800393 CcnxWrapper::InterestCallback *f;
394 ExecutorPtr executor;
395 tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> *realData = reinterpret_cast< tuple<CcnxWrapper::InterestCallback *, ExecutorPtr>* > (selfp->data);
396 tie (f, executor) = *realData;
397
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800398 switch (kind)
399 {
400 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800401 // delete closure;
402 executor->execute (bind (deleterInInterestTuple, realData));
403
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800404 delete selfp;
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800405 _LOG_TRACE ("<< incomingInterest with CCN_UPCALL_FINAL");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800406 return CCN_UPCALL_RESULT_OK;
407
408 case CCN_UPCALL_INTEREST:
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800409 _LOG_TRACE (">> incomingInterest upcall: " << Name(info->interest_ccnb, info->interest_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800410 break;
411
412 default:
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800413 _LOG_TRACE ("<< incomingInterest with CCN_UPCALL_RESULT_OK: " << Name(info->interest_ccnb, info->interest_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800414 return CCN_UPCALL_RESULT_OK;
415 }
416
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800417 Name interest(info->interest_ccnb, info->interest_comps);
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800418 Selectors selectors(info->pi);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800419
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800420 executor->execute (bind (*f, interest, selectors));
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800421 // this will be run in executor
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800422 // (*f) (interest);
423 // closure->runInterestCallback(interest);
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800424
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800425 return CCN_UPCALL_RESULT_OK;
426}
427
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800428static void
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800429deleterInDataTuple (tuple<Closure *, ExecutorPtr, Selectors> *tuple)
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800430{
431 delete tuple->get<0> ();
432 delete tuple;
433}
434
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800435static ccn_upcall_res
436incomingData(ccn_closure *selfp,
437 ccn_upcall_kind kind,
438 ccn_upcall_info *info)
439{
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800440 // Closure *cp = static_cast<Closure *> (selfp->data);
441 Closure *cp;
442 ExecutorPtr executor;
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800443 Selectors selectors;
444 tuple<Closure *, ExecutorPtr, Selectors> *realData = reinterpret_cast< tuple<Closure*, ExecutorPtr, Selectors>* > (selfp->data);
445 tie (cp, executor, selectors) = *realData;
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800446
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800447 bool verified = false;
448
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800449 switch (kind)
450 {
451 case CCN_UPCALL_FINAL: // effecitve in unit tests
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800452 executor->execute (bind (deleterInDataTuple, realData));
453
Zhenkai Zhu19f81de2013-01-04 22:27:47 -0800454 cp = NULL;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800455 delete selfp;
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800456 _LOG_TRACE ("<< incomingData with CCN_UPCALL_FINAL");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800457 return CCN_UPCALL_RESULT_OK;
458
459 case CCN_UPCALL_CONTENT:
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800460 verified = true;
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800461 _LOG_TRACE (">> incomingData content upcall: " << Name (info->content_ccnb, info->content_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800462 break;
463
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800464 case CCN_UPCALL_CONTENT_UNVERIFIED:
465 _LOG_TRACE (">> incomingData content unverified upcall: " << Name (info->content_ccnb, info->content_comps));
466 break;
467
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800468 case CCN_UPCALL_INTEREST_TIMED_OUT: {
Zhenkai Zhu8339e912013-01-18 18:10:17 -0800469 if (cp != NULL)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800470 {
Zhenkai Zhu8339e912013-01-18 18:10:17 -0800471 Name interest(info->interest_ccnb, info->interest_comps);
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800472 _LOG_TRACE ("<< incomingData timeout: " << Name (info->interest_ccnb, info->interest_comps));
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800473 executor->execute (bind (&Closure::runTimeoutCallback, cp, interest, *cp, selectors));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800474 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800475 else
476 {
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800477 _LOG_TRACE ("<< incomingData timeout, but callback is not set...: " << Name (info->interest_ccnb, info->interest_comps));
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800478 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800479 return CCN_UPCALL_RESULT_OK;
480 }
481
482 default:
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800483 _LOG_TRACE(">> unknown upcall type");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800484 return CCN_UPCALL_RESULT_OK;
485 }
486
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800487 PcoPtr pco = make_shared<ParsedContentObject> (info->content_ccnb, info->pco->offset[CCN_PCO_E], verified);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800488
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800489 // this will be run in executor
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800490 executor->execute (bind (&Closure::runDataCallback, cp, pco->name (), pco));
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800491 _LOG_TRACE (">> incomingData");
492
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800493 return CCN_UPCALL_RESULT_OK;
494}
495
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -0800496int CcnxWrapper::sendInterest (const Name &interest, const Closure &closure, const Selectors &selectors)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800497{
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800498 _LOG_TRACE (">> sendInterest: " << interest);
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800499 {
500 UniqueRecLock lock(m_mutex);
501 if (!m_running || !m_connected)
Alexander Afanasyevb3d4cd52013-01-28 11:20:52 -0800502 {
503 _LOG_ERROR ("<< sendInterest: not running or connected");
504 return -1;
505 }
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800506 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800507
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800508 CcnxCharbufPtr namePtr = interest.toCcnxCharbuf();
509 ccn_charbuf *pname = namePtr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800510 ccn_closure *dataClosure = new ccn_closure;
511
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800512 // Closure *myClosure = new ExecutorClosure(closure, m_executor);
513 Closure *myClosure = closure.dup ();
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800514 dataClosure->data = new tuple<Closure*, ExecutorPtr, Selectors> (myClosure, m_executor, selectors);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800515
516 dataClosure->p = &incomingData;
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800517
518 CcnxCharbufPtr selectorsPtr = selectors.toCcnxCharbuf();
519 ccn_charbuf *templ = NULL;
Alexander Afanasyev053e5ac2013-01-22 20:59:13 -0800520 if (selectorsPtr)
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800521 {
522 templ = selectorsPtr->getBuf();
523 }
524
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800525 UniqueRecLock lock(m_mutex);
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800526 if (ccn_express_interest (m_handle, pname, dataClosure, templ) < 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800527 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800528 _LOG_ERROR ("<< sendInterest: ccn_express_interest FAILED!!!");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800529 }
530
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800531 return 0;
532}
533
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800534int CcnxWrapper::setInterestFilter (const Name &prefix, const InterestCallback &interestCallback)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800535{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800536 _LOG_TRACE (">> setInterestFilter");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800537 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800538 if (!m_running || !m_connected)
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800539 {
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800540 return -1;
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800541 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800542
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800543 CcnxCharbufPtr ptr = prefix.toCcnxCharbuf();
544 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800545 ccn_closure *interestClosure = new ccn_closure;
546
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800547 // interestClosure->data = new ExecutorInterestClosure(interestCallback, m_executor);
548
549 interestClosure->data = new tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> (new InterestCallback (interestCallback), m_executor); // should be removed when closure is removed
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800550 interestClosure->p = &incomingInterest;
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800551
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800552 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
553 if (ret < 0)
554 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800555 _LOG_ERROR ("<< setInterestFilter: ccn_set_interest_filter FAILED");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800556 }
557
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800558 m_registeredInterests.insert(pair<Name, InterestCallback>(prefix, interestCallback));
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800559
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800560 _LOG_TRACE ("<< setInterestFilter");
Alexander Afanasyevdcfa9632013-01-07 16:38:19 -0800561
562 return ret;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800563}
564
565void
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800566CcnxWrapper::clearInterestFilter (const Name &prefix)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800567{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800568 _LOG_TRACE (">> clearInterestFilter");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800569 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800570 if (!m_running || !m_connected)
571 return;
572
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800573 CcnxCharbufPtr ptr = prefix.toCcnxCharbuf();
574 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800575
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800576 int ret = ccn_set_interest_filter (m_handle, pname, 0);
577 if (ret < 0)
578 {
579 }
580
581 m_registeredInterests.erase(prefix);
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800582
583 _LOG_TRACE ("<< clearInterestFilter");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800584}
585
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800586Name
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800587CcnxWrapper::getLocalPrefix ()
588{
589 struct ccn * tmp_handle = ccn_create ();
590 int res = ccn_connect (tmp_handle, NULL);
591 if (res < 0)
592 {
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800593 return Name();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800594 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800595
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800596 string retval = "";
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800597
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800598 struct ccn_charbuf *templ = ccn_charbuf_create();
599 ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG);
600 ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG);
601 ccn_charbuf_append_closer(templ); /* </Name> */
602 // XXX - use pubid if possible
603 ccn_charbuf_append_tt(templ, CCN_DTAG_MaxSuffixComponents, CCN_DTAG);
604 ccnb_append_number(templ, 1);
605 ccn_charbuf_append_closer(templ); /* </MaxSuffixComponents> */
606 ccnb_tagged_putf(templ, CCN_DTAG_Scope, "%d", 2);
607 ccn_charbuf_append_closer(templ); /* </Interest> */
608
609 struct ccn_charbuf *name = ccn_charbuf_create ();
610 res = ccn_name_from_uri (name, "/local/ndn/prefix");
611 if (res < 0) {
612 }
613 else
614 {
615 struct ccn_fetch *fetch = ccn_fetch_new (tmp_handle);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800616
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800617 struct ccn_fetch_stream *stream = ccn_fetch_open (fetch, name, "/local/ndn/prefix",
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800618 NULL, 4, CCN_V_HIGHEST, 0);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800619 if (stream == NULL) {
620 }
621 else
622 {
623 ostringstream os;
624
625 int counter = 0;
626 char buf[256];
627 while (true) {
628 res = ccn_fetch_read (stream, buf, sizeof(buf));
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800629
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800630 if (res == 0) {
631 break;
632 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800633
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800634 if (res > 0) {
635 os << string(buf, res);
636 } else if (res == CCN_FETCH_READ_NONE) {
637 if (counter < 2)
638 {
639 ccn_run(tmp_handle, 1000);
640 counter ++;
641 }
642 else
643 {
644 break;
645 }
646 } else if (res == CCN_FETCH_READ_END) {
647 break;
648 } else if (res == CCN_FETCH_READ_TIMEOUT) {
649 break;
650 } else {
651 break;
652 }
653 }
654 retval = os.str ();
655 stream = ccn_fetch_close(stream);
656 }
657 fetch = ccn_fetch_destroy(fetch);
658 }
659
660 ccn_charbuf_destroy (&name);
661
662 ccn_disconnect (tmp_handle);
663 ccn_destroy (&tmp_handle);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800664
Zhenkai Zhucbbb8882013-01-25 13:49:12 -0800665 boost::algorithm::trim(retval);
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800666 return Name(retval);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800667}
668
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800669bool
670CcnxWrapper::verifyPco(PcoPtr &pco)
671{
Zhenkai Zhu5957c0d2013-02-08 13:47:52 -0800672 bool verified = (ccn_verify_content(m_handle, pco->msg(), (ccn_parsed_ContentObject *)pco->pco()) == 0);
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800673 pco->setVerified(verified);
674 return verified;
675}
676
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800677}