blob: 54f93af5e0f9323b3194e18641780eecb95d14c2 [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{
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800120 if (m_handle != 0) {
121 ccn_disconnect (m_handle);
Zhenkai Zhu3b82d432013-01-03 22:48:40 -0800122 //ccn_destroy (&m_handle);
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800123 }
124 else
125 {
126 m_handle = ccn_create ();
127 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800128
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800129 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800130 if (ccn_connect(m_handle, NULL) < 0)
131 {
132 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("connection to ccnd failed"));
133 }
134 m_connected = true;
135
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800136 if (!m_registeredInterests.empty())
137 {
138 for (map<Name, InterestCallback>::const_iterator it = m_registeredInterests.begin(); it != m_registeredInterests.end(); ++it)
139 {
140 clearInterestFilter(it->first, false);
141 setInterestFilter(it->first, it->second, false);
142 }
143 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800144}
145
146CcnxWrapper::~CcnxWrapper()
147{
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800148 shutdown ();
149}
150
151void
152CcnxWrapper::start () // called automatically in constructor
153{
154 connectCcnd();
155 m_thread = thread (&CcnxWrapper::ccnLoop, this);
156 m_executor->start();
157}
158
159void
160CcnxWrapper::shutdown () // called in destructor, but can called manually
161{
162 m_executor->shutdown();
163
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800164 {
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800165 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800166 m_running = false;
167 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800168
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800169 _LOG_DEBUG ("+++++++++SHUTDOWN+++++++");
170 if (m_connected)
171 {
172 m_thread.join ();
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800173
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800174 ccn_disconnect (m_handle);
175 //ccn_destroy (&m_handle);
176 m_connected = false;
177 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800178}
179
180void
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800181CcnxWrapper::ccnLoop ()
182{
183 static boost::mt19937 randomGenerator (static_cast<unsigned int> (std::time (0)));
184 static boost::variate_generator<boost::mt19937&, boost::uniform_int<> > rangeUniformRandom (randomGenerator, uniform_int<> (0,1000));
185
186 while (m_running)
187 {
188 try
189 {
190 int res = 0;
191 {
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800192 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800193 res = ccn_run (m_handle, 0);
194 }
195
196 if (!m_running) break;
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800197
Alexander Afanasyev9c9c3012013-01-25 23:44:25 -0800198 if (res < 0) {
199 _LOG_ERROR ("ccn_run returned negative status: " << res);
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800200
201 BOOST_THROW_EXCEPTION (CcnxOperationException()
202 << errmsg_info_str("ccn_run returned error"));
Alexander Afanasyev9c9c3012013-01-25 23:44:25 -0800203 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800204
205
206 pollfd pfds[1];
207 {
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800208 UniqueRecLock lock(m_mutex);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800209
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800210 pfds[0].fd = ccn_get_connection_fd (m_handle);
211 pfds[0].events = POLLIN;
212 if (ccn_output_is_pending (m_handle))
213 pfds[0].events |= POLLOUT;
214 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800215
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800216 int ret = poll (pfds, 1, 1);
217 if (ret < 0)
218 {
219 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("ccnd socket failed (probably ccnd got stopped)"));
220 }
221 }
222 catch (CcnxOperationException &e)
223 {
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800224 m_connected = false;
225 // probably ccnd has been stopped
226 // try reconnect with sleep
227 int interval = 1;
228 int maxInterval = 32;
229 while (m_running)
230 {
231 try
232 {
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800233 this_thread::sleep (boost::get_system_time () + boost::posix_time::seconds (interval) + boost::posix_time::milliseconds (rangeUniformRandom ()));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800234
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800235 connectCcnd ();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800236 _LOG_DEBUG("reconnect to ccnd succeeded");
237 break;
238 }
239 catch (CcnxOperationException &e)
240 {
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800241 this_thread::sleep (boost::get_system_time () + boost::posix_time::seconds (interval) + boost::posix_time::milliseconds (rangeUniformRandom ()));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800242
243 // do exponential backup for reconnect interval
244 if (interval < maxInterval)
245 {
246 interval *= 2;
247 }
248 }
249 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800250 }
251 catch (const std::exception &exc)
252 {
253 // catch anything thrown within try block that derives from std::exception
254 std::cerr << exc.what();
255 }
256 catch (...)
257 {
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800258 cout << "UNKNOWN EXCEPTION !!!" << endl;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800259 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800260 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800261}
262
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800263Bytes
Alexander Afanasyevdcfa9632013-01-07 16:38:19 -0800264CcnxWrapper::createContentObject(const Name &name, const void *buf, size_t len, int freshness)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800265{
Alexander Afanasyev1d1cc832013-02-05 20:03:36 -0800266 {
267 UniqueRecLock lock(m_mutex);
268 if (!m_running || !m_connected)
269 {
270 _LOG_TRACE ("<< not running or connected");
271 return Bytes ();
272 }
273 }
274
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800275 CcnxCharbufPtr ptr = name.toCcnxCharbuf();
276 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800277 ccn_charbuf *content = ccn_charbuf_create();
278
Zhenkai Zhud9d03f62013-01-04 16:57:46 -0800279 struct ccn_signing_params sp = CCN_SIGNING_PARAMS_INIT;
280 sp.freshness = freshness;
281
282 if (ccn_sign_content(m_handle, content, pname, &sp, buf, len) != 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800283 {
Zhenkai Zhud9d03f62013-01-04 16:57:46 -0800284 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("sign content failed"));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800285 }
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800286
287 Bytes bytes;
288 readRaw(bytes, content->buf, content->length);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800289
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800290 ccn_charbuf_destroy (&content);
291
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800292 return bytes;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800293}
294
295int
Zhenkai Zhubad089c2012-12-28 10:28:27 -0800296CcnxWrapper::putToCcnd (const Bytes &contentObject)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800297{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800298 _LOG_TRACE (">> putToCcnd");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800299 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800300 if (!m_running || !m_connected)
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800301 {
302 _LOG_TRACE ("<< not running or connected");
303 return -1;
304 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800305
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800306
Zhenkai Zhu974c5a62012-12-28 14:15:30 -0800307 if (ccn_put(m_handle, head(contentObject), contentObject.size()) < 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800308 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800309 _LOG_ERROR ("ccn_put failed");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800310 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
311 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800312 else
313 {
314 _LOG_DEBUG ("<< putToCcnd");
315 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800316
317 return 0;
318}
319
320int
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800321CcnxWrapper::publishData (const Name &name, const unsigned char *buf, size_t len, int freshness)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800322{
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800323 Bytes co = createContentObject(name, buf, len, freshness);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800324 return putToCcnd(co);
325}
326
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800327int
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800328CcnxWrapper::publishData (const Name &name, const Bytes &content, int freshness)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800329{
Alexander Afanasyevdcfa9632013-01-07 16:38:19 -0800330 return publishData(name, head(content), content.size(), freshness);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800331}
332
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800333int
334CcnxWrapper::publishUnsignedData(const Name &name, const Bytes &content, int freshness)
335{
336 return publishUnsignedData(name, head(content), content.size(), freshness);
337}
338
339int
340CcnxWrapper::publishUnsignedData(const Name &name, const unsigned char *buf, size_t len, int freshness)
341{
342 {
343 UniqueRecLock lock(m_mutex);
344 if (!m_running || !m_connected)
345 {
346 _LOG_TRACE ("<< not running or connected");
347 return -1;
348 }
349 }
350
351 CcnxCharbufPtr ptr = name.toCcnxCharbuf();
352 ccn_charbuf *pname = ptr->getBuf();
353 ccn_charbuf *content = ccn_charbuf_create();
354 ccn_charbuf *signed_info = ccn_charbuf_create();
355
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800356 static char fakeKey[PUBLISHER_KEY_SIZE];
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800357
358 int res = ccn_signed_info_create(signed_info,
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800359 fakeKey, PUBLISHER_KEY_SIZE,
360 NULL,
361 CCN_CONTENT_DATA,
362 freshness,
363 NULL,
364 NULL // ccnd is happy with absent key locator and key itself... ha ha
365 );
366 ccn_pack_unsigned_ContentObject(content, pname, signed_info, buf, len);
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800367
368 Bytes bytes;
369 readRaw(bytes, content->buf, content->length);
370
371 ccn_charbuf_destroy (&content);
372 ccn_charbuf_destroy (&signed_info);
373
374 return putToCcnd (bytes);
375}
376
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800377
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800378static void
379deleterInInterestTuple (tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> *tuple)
380{
381 delete tuple->get<0> ();
382 delete tuple;
383}
384
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800385static ccn_upcall_res
386incomingInterest(ccn_closure *selfp,
387 ccn_upcall_kind kind,
388 ccn_upcall_info *info)
389{
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800390 CcnxWrapper::InterestCallback *f;
391 ExecutorPtr executor;
392 tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> *realData = reinterpret_cast< tuple<CcnxWrapper::InterestCallback *, ExecutorPtr>* > (selfp->data);
393 tie (f, executor) = *realData;
394
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800395 switch (kind)
396 {
397 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800398 // delete closure;
399 executor->execute (bind (deleterInInterestTuple, realData));
400
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800401 delete selfp;
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800402 _LOG_TRACE ("<< incomingInterest with CCN_UPCALL_FINAL");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800403 return CCN_UPCALL_RESULT_OK;
404
405 case CCN_UPCALL_INTEREST:
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800406 _LOG_TRACE (">> incomingInterest upcall: " << Name(info->interest_ccnb, info->interest_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800407 break;
408
409 default:
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800410 _LOG_TRACE ("<< incomingInterest with CCN_UPCALL_RESULT_OK: " << Name(info->interest_ccnb, info->interest_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800411 return CCN_UPCALL_RESULT_OK;
412 }
413
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800414 Name interest(info->interest_ccnb, info->interest_comps);
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800415 Selectors selectors(info->pi);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800416
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800417 executor->execute (bind (*f, interest, selectors));
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800418 // this will be run in executor
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800419 // (*f) (interest);
420 // closure->runInterestCallback(interest);
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800421
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800422 return CCN_UPCALL_RESULT_OK;
423}
424
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800425static void
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800426deleterInDataTuple (tuple<Closure *, ExecutorPtr, Selectors> *tuple)
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800427{
428 delete tuple->get<0> ();
429 delete tuple;
430}
431
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800432static ccn_upcall_res
433incomingData(ccn_closure *selfp,
434 ccn_upcall_kind kind,
435 ccn_upcall_info *info)
436{
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800437 // Closure *cp = static_cast<Closure *> (selfp->data);
438 Closure *cp;
439 ExecutorPtr executor;
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800440 Selectors selectors;
441 tuple<Closure *, ExecutorPtr, Selectors> *realData = reinterpret_cast< tuple<Closure*, ExecutorPtr, Selectors>* > (selfp->data);
442 tie (cp, executor, selectors) = *realData;
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800443
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800444 bool verified = false;
445
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800446 switch (kind)
447 {
448 case CCN_UPCALL_FINAL: // effecitve in unit tests
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800449 executor->execute (bind (deleterInDataTuple, realData));
450
Zhenkai Zhu19f81de2013-01-04 22:27:47 -0800451 cp = NULL;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800452 delete selfp;
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800453 _LOG_TRACE ("<< incomingData with CCN_UPCALL_FINAL");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800454 return CCN_UPCALL_RESULT_OK;
455
456 case CCN_UPCALL_CONTENT:
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800457 verified = true;
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800458 _LOG_TRACE (">> incomingData content upcall: " << Name (info->content_ccnb, info->content_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800459 break;
460
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800461 case CCN_UPCALL_CONTENT_UNVERIFIED:
462 _LOG_TRACE (">> incomingData content unverified upcall: " << Name (info->content_ccnb, info->content_comps));
463 break;
464
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800465 case CCN_UPCALL_INTEREST_TIMED_OUT: {
Zhenkai Zhu8339e912013-01-18 18:10:17 -0800466 if (cp != NULL)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800467 {
Zhenkai Zhu8339e912013-01-18 18:10:17 -0800468 Name interest(info->interest_ccnb, info->interest_comps);
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800469 _LOG_TRACE ("<< incomingData timeout: " << Name (info->interest_ccnb, info->interest_comps));
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800470 executor->execute (bind (&Closure::runTimeoutCallback, cp, interest, *cp, selectors));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800471 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800472 else
473 {
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800474 _LOG_TRACE ("<< incomingData timeout, but callback is not set...: " << Name (info->interest_ccnb, info->interest_comps));
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800475 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800476 return CCN_UPCALL_RESULT_OK;
477 }
478
479 default:
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800480 _LOG_TRACE(">> unknown upcall type");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800481 return CCN_UPCALL_RESULT_OK;
482 }
483
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800484 PcoPtr pco = make_shared<ParsedContentObject> (info->content_ccnb, info->pco->offset[CCN_PCO_E], verified);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800485
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800486 // this will be run in executor
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800487 executor->execute (bind (&Closure::runDataCallback, cp, pco->name (), pco));
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800488 _LOG_TRACE (">> incomingData");
489
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800490 return CCN_UPCALL_RESULT_OK;
491}
492
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -0800493int CcnxWrapper::sendInterest (const Name &interest, const Closure &closure, const Selectors &selectors)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800494{
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800495 _LOG_TRACE (">> sendInterest: " << interest);
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800496 {
497 UniqueRecLock lock(m_mutex);
498 if (!m_running || !m_connected)
Alexander Afanasyevb3d4cd52013-01-28 11:20:52 -0800499 {
500 _LOG_ERROR ("<< sendInterest: not running or connected");
501 return -1;
502 }
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800503 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800504
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800505 CcnxCharbufPtr namePtr = interest.toCcnxCharbuf();
506 ccn_charbuf *pname = namePtr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800507 ccn_closure *dataClosure = new ccn_closure;
508
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800509 // Closure *myClosure = new ExecutorClosure(closure, m_executor);
510 Closure *myClosure = closure.dup ();
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800511 dataClosure->data = new tuple<Closure*, ExecutorPtr, Selectors> (myClosure, m_executor, selectors);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800512
513 dataClosure->p = &incomingData;
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800514
515 CcnxCharbufPtr selectorsPtr = selectors.toCcnxCharbuf();
516 ccn_charbuf *templ = NULL;
Alexander Afanasyev053e5ac2013-01-22 20:59:13 -0800517 if (selectorsPtr)
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800518 {
519 templ = selectorsPtr->getBuf();
520 }
521
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800522 UniqueRecLock lock(m_mutex);
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800523 if (ccn_express_interest (m_handle, pname, dataClosure, templ) < 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800524 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800525 _LOG_ERROR ("<< sendInterest: ccn_express_interest FAILED!!!");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800526 }
527
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800528 return 0;
529}
530
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800531int CcnxWrapper::setInterestFilter (const Name &prefix, const InterestCallback &interestCallback, bool record/* = true*/)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800532{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800533 _LOG_TRACE (">> setInterestFilter");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800534 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800535 if (!m_running || !m_connected)
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800536 {
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800537 return -1;
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800538 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800539
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800540 CcnxCharbufPtr ptr = prefix.toCcnxCharbuf();
541 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800542 ccn_closure *interestClosure = new ccn_closure;
543
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800544 // interestClosure->data = new ExecutorInterestClosure(interestCallback, m_executor);
545
546 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 -0800547 interestClosure->p = &incomingInterest;
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800548
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800549 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
550 if (ret < 0)
551 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800552 _LOG_ERROR ("<< setInterestFilter: ccn_set_interest_filter FAILED");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800553 }
554
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800555 if (record)
556 {
557 m_registeredInterests.insert(pair<Name, InterestCallback>(prefix, interestCallback));
558 }
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
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800566CcnxWrapper::clearInterestFilter (const Name &prefix, bool record/* = true*/)
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
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800581 if (record)
582 {
583 m_registeredInterests.erase(prefix);
584 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800585
586 _LOG_TRACE ("<< clearInterestFilter");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800587}
588
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800589Name
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800590CcnxWrapper::getLocalPrefix ()
591{
592 struct ccn * tmp_handle = ccn_create ();
593 int res = ccn_connect (tmp_handle, NULL);
594 if (res < 0)
595 {
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800596 return Name();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800597 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800598
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800599 string retval = "";
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800600
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800601 struct ccn_charbuf *templ = ccn_charbuf_create();
602 ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG);
603 ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG);
604 ccn_charbuf_append_closer(templ); /* </Name> */
605 // XXX - use pubid if possible
606 ccn_charbuf_append_tt(templ, CCN_DTAG_MaxSuffixComponents, CCN_DTAG);
607 ccnb_append_number(templ, 1);
608 ccn_charbuf_append_closer(templ); /* </MaxSuffixComponents> */
609 ccnb_tagged_putf(templ, CCN_DTAG_Scope, "%d", 2);
610 ccn_charbuf_append_closer(templ); /* </Interest> */
611
612 struct ccn_charbuf *name = ccn_charbuf_create ();
613 res = ccn_name_from_uri (name, "/local/ndn/prefix");
614 if (res < 0) {
615 }
616 else
617 {
618 struct ccn_fetch *fetch = ccn_fetch_new (tmp_handle);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800619
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800620 struct ccn_fetch_stream *stream = ccn_fetch_open (fetch, name, "/local/ndn/prefix",
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800621 NULL, 4, CCN_V_HIGHEST, 0);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800622 if (stream == NULL) {
623 }
624 else
625 {
626 ostringstream os;
627
628 int counter = 0;
629 char buf[256];
630 while (true) {
631 res = ccn_fetch_read (stream, buf, sizeof(buf));
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800632
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800633 if (res == 0) {
634 break;
635 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800636
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800637 if (res > 0) {
638 os << string(buf, res);
639 } else if (res == CCN_FETCH_READ_NONE) {
640 if (counter < 2)
641 {
642 ccn_run(tmp_handle, 1000);
643 counter ++;
644 }
645 else
646 {
647 break;
648 }
649 } else if (res == CCN_FETCH_READ_END) {
650 break;
651 } else if (res == CCN_FETCH_READ_TIMEOUT) {
652 break;
653 } else {
654 break;
655 }
656 }
657 retval = os.str ();
658 stream = ccn_fetch_close(stream);
659 }
660 fetch = ccn_fetch_destroy(fetch);
661 }
662
663 ccn_charbuf_destroy (&name);
664
665 ccn_disconnect (tmp_handle);
666 ccn_destroy (&tmp_handle);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800667
Zhenkai Zhucbbb8882013-01-25 13:49:12 -0800668 boost::algorithm::trim(retval);
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800669 return Name(retval);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800670}
671
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800672bool
673CcnxWrapper::verifyPco(PcoPtr &pco)
674{
Zhenkai Zhu5957c0d2013-02-08 13:47:52 -0800675 bool verified = (ccn_verify_content(m_handle, pco->msg(), (ccn_parsed_ContentObject *)pco->pco()) == 0);
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800676 pco->setVerified(verified);
677 return verified;
678}
679
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800680}