blob: cc87710a21330968b5c2a4315dbe65a72d77db2b [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
Zhenkai Zhu589be8e2013-02-24 20:51:12 -0800264CcnxWrapper::createContentObject(const Name &name, const void *buf, size_t len, int freshness, const Name &keyName)
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
Zhenkai Zhu589be8e2013-02-24 20:51:12 -0800282 if (keyName.size() > 0)
283 {
284 if (sp.template_ccnb == NULL)
285 {
286 sp.template_ccnb = ccn_charbuf_create();
287 ccn_charbuf_append_tt(sp.template_ccnb, CCN_DTAG_SignedInfo, CCN_DTAG);
288 }
289 // no idea what the following 3 lines do, but it was there
290 else if (sp.template_ccnb->length > 0) {
291 sp.template_ccnb->length--;
292 }
293 ccn_charbuf_append_tt(sp.template_ccnb, CCN_DTAG_KeyLocator, CCN_DTAG);
294 ccn_charbuf_append_tt(sp.template_ccnb, CCN_DTAG_KeyName, CCN_DTAG);
295 CcnxCharbufPtr keyPtr = keyName.toCcnxCharbuf();
296 ccn_charbuf *keyBuf = keyPtr->getBuf();
297 ccn_charbuf_append(sp.template_ccnb, keyBuf->buf, keyBuf->length);
298 ccn_charbuf_append_closer(sp.template_ccnb); // </KeyName>
299 ccn_charbuf_append_closer(sp.template_ccnb); // </KeyLocator>
300 sp.sp_flags |= CCN_SP_TEMPL_KEY_LOCATOR;
301 ccn_charbuf_append_closer(sp.template_ccnb); // </SignedInfo>
302 }
303
Zhenkai Zhud9d03f62013-01-04 16:57:46 -0800304 if (ccn_sign_content(m_handle, content, pname, &sp, buf, len) != 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800305 {
Zhenkai Zhud9d03f62013-01-04 16:57:46 -0800306 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("sign content failed"));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800307 }
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800308
309 Bytes bytes;
310 readRaw(bytes, content->buf, content->length);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800311
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800312 ccn_charbuf_destroy (&content);
Zhenkai Zhu589be8e2013-02-24 20:51:12 -0800313 if (sp.template_ccnb != NULL)
314 {
315 ccn_charbuf_destroy (&sp.template_ccnb);
316 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800317
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800318 return bytes;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800319}
320
321int
Zhenkai Zhubad089c2012-12-28 10:28:27 -0800322CcnxWrapper::putToCcnd (const Bytes &contentObject)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800323{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800324 _LOG_TRACE (">> putToCcnd");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800325 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800326 if (!m_running || !m_connected)
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800327 {
328 _LOG_TRACE ("<< not running or connected");
329 return -1;
330 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800331
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800332
Zhenkai Zhu974c5a62012-12-28 14:15:30 -0800333 if (ccn_put(m_handle, head(contentObject), contentObject.size()) < 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800334 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800335 _LOG_ERROR ("ccn_put failed");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800336 // BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
337 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800338 else
339 {
340 _LOG_DEBUG ("<< putToCcnd");
341 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800342
343 return 0;
344}
345
346int
Zhenkai Zhu589be8e2013-02-24 20:51:12 -0800347CcnxWrapper::publishData (const Name &name, const unsigned char *buf, size_t len, int freshness, const Name &keyName)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800348{
Zhenkai Zhu589be8e2013-02-24 20:51:12 -0800349 Bytes co = createContentObject(name, buf, len, freshness, keyName);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800350 return putToCcnd(co);
351}
352
Zhenkai Zhu43eb2732012-12-28 00:48:26 -0800353int
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800354CcnxWrapper::publishUnsignedData(const Name &name, const unsigned char *buf, size_t len, int freshness)
355{
356 {
357 UniqueRecLock lock(m_mutex);
358 if (!m_running || !m_connected)
359 {
360 _LOG_TRACE ("<< not running or connected");
361 return -1;
362 }
363 }
364
365 CcnxCharbufPtr ptr = name.toCcnxCharbuf();
366 ccn_charbuf *pname = ptr->getBuf();
367 ccn_charbuf *content = ccn_charbuf_create();
368 ccn_charbuf *signed_info = ccn_charbuf_create();
369
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800370 static char fakeKey[PUBLISHER_KEY_SIZE];
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800371
372 int res = ccn_signed_info_create(signed_info,
Alexander Afanasyev848a8e42013-02-07 21:19:18 -0800373 fakeKey, PUBLISHER_KEY_SIZE,
374 NULL,
375 CCN_CONTENT_DATA,
376 freshness,
377 NULL,
378 NULL // ccnd is happy with absent key locator and key itself... ha ha
379 );
380 ccn_pack_unsigned_ContentObject(content, pname, signed_info, buf, len);
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800381
382 Bytes bytes;
383 readRaw(bytes, content->buf, content->length);
384
385 ccn_charbuf_destroy (&content);
386 ccn_charbuf_destroy (&signed_info);
387
388 return putToCcnd (bytes);
389}
390
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800391
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800392static void
393deleterInInterestTuple (tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> *tuple)
394{
395 delete tuple->get<0> ();
396 delete tuple;
397}
398
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800399static ccn_upcall_res
400incomingInterest(ccn_closure *selfp,
401 ccn_upcall_kind kind,
402 ccn_upcall_info *info)
403{
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800404 CcnxWrapper::InterestCallback *f;
405 ExecutorPtr executor;
406 tuple<CcnxWrapper::InterestCallback *, ExecutorPtr> *realData = reinterpret_cast< tuple<CcnxWrapper::InterestCallback *, ExecutorPtr>* > (selfp->data);
407 tie (f, executor) = *realData;
408
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800409 switch (kind)
410 {
411 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800412 // delete closure;
413 executor->execute (bind (deleterInInterestTuple, realData));
414
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800415 delete selfp;
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800416 _LOG_TRACE ("<< incomingInterest with CCN_UPCALL_FINAL");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800417 return CCN_UPCALL_RESULT_OK;
418
419 case CCN_UPCALL_INTEREST:
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800420 _LOG_TRACE (">> incomingInterest upcall: " << Name(info->interest_ccnb, info->interest_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800421 break;
422
423 default:
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800424 _LOG_TRACE ("<< incomingInterest with CCN_UPCALL_RESULT_OK: " << Name(info->interest_ccnb, info->interest_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800425 return CCN_UPCALL_RESULT_OK;
426 }
427
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800428 Name interest(info->interest_ccnb, info->interest_comps);
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800429 Selectors selectors(info->pi);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800430
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800431 executor->execute (bind (*f, interest, selectors));
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800432 // this will be run in executor
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800433 // (*f) (interest);
434 // closure->runInterestCallback(interest);
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800435
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800436 return CCN_UPCALL_RESULT_OK;
437}
438
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800439static void
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800440deleterInDataTuple (tuple<Closure *, ExecutorPtr, Selectors> *tuple)
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800441{
442 delete tuple->get<0> ();
443 delete tuple;
444}
445
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800446static ccn_upcall_res
447incomingData(ccn_closure *selfp,
448 ccn_upcall_kind kind,
449 ccn_upcall_info *info)
450{
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800451 // Closure *cp = static_cast<Closure *> (selfp->data);
452 Closure *cp;
453 ExecutorPtr executor;
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800454 Selectors selectors;
455 tuple<Closure *, ExecutorPtr, Selectors> *realData = reinterpret_cast< tuple<Closure*, ExecutorPtr, Selectors>* > (selfp->data);
456 tie (cp, executor, selectors) = *realData;
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800457
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800458 bool verified = false;
459
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800460 switch (kind)
461 {
462 case CCN_UPCALL_FINAL: // effecitve in unit tests
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800463 executor->execute (bind (deleterInDataTuple, realData));
464
Zhenkai Zhu19f81de2013-01-04 22:27:47 -0800465 cp = NULL;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800466 delete selfp;
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800467 _LOG_TRACE ("<< incomingData with CCN_UPCALL_FINAL");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800468 return CCN_UPCALL_RESULT_OK;
469
470 case CCN_UPCALL_CONTENT:
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800471 verified = true;
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800472 _LOG_TRACE (">> incomingData content upcall: " << Name (info->content_ccnb, info->content_comps));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800473 break;
474
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800475 case CCN_UPCALL_CONTENT_UNVERIFIED:
476 _LOG_TRACE (">> incomingData content unverified upcall: " << Name (info->content_ccnb, info->content_comps));
477 break;
478
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800479 case CCN_UPCALL_INTEREST_TIMED_OUT: {
Zhenkai Zhu8339e912013-01-18 18:10:17 -0800480 if (cp != NULL)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800481 {
Zhenkai Zhu8339e912013-01-18 18:10:17 -0800482 Name interest(info->interest_ccnb, info->interest_comps);
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800483 _LOG_TRACE ("<< incomingData timeout: " << Name (info->interest_ccnb, info->interest_comps));
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800484 executor->execute (bind (&Closure::runTimeoutCallback, cp, interest, *cp, selectors));
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800485 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800486 else
487 {
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800488 _LOG_TRACE ("<< incomingData timeout, but callback is not set...: " << Name (info->interest_ccnb, info->interest_comps));
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800489 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800490 return CCN_UPCALL_RESULT_OK;
491 }
492
493 default:
Zhenkai Zhu5acebd72013-02-07 19:59:25 -0800494 _LOG_TRACE(">> unknown upcall type");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800495 return CCN_UPCALL_RESULT_OK;
496 }
497
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800498 PcoPtr pco = make_shared<ParsedContentObject> (info->content_ccnb, info->pco->offset[CCN_PCO_E], verified);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800499
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800500 // this will be run in executor
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800501 executor->execute (bind (&Closure::runDataCallback, cp, pco->name (), pco));
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800502 _LOG_TRACE (">> incomingData");
503
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800504 return CCN_UPCALL_RESULT_OK;
505}
506
Alexander Afanasyevd6c2a902013-01-19 21:24:30 -0800507int CcnxWrapper::sendInterest (const Name &interest, const Closure &closure, const Selectors &selectors)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800508{
Alexander Afanasyev6aec3bf2013-02-05 11:25:52 -0800509 _LOG_TRACE (">> sendInterest: " << interest);
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800510 {
511 UniqueRecLock lock(m_mutex);
512 if (!m_running || !m_connected)
Alexander Afanasyevb3d4cd52013-01-28 11:20:52 -0800513 {
514 _LOG_ERROR ("<< sendInterest: not running or connected");
515 return -1;
516 }
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800517 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800518
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800519 CcnxCharbufPtr namePtr = interest.toCcnxCharbuf();
520 ccn_charbuf *pname = namePtr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800521 ccn_closure *dataClosure = new ccn_closure;
522
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800523 // Closure *myClosure = new ExecutorClosure(closure, m_executor);
524 Closure *myClosure = closure.dup ();
Zhenkai Zhuff4fa8a2013-01-28 22:02:40 -0800525 dataClosure->data = new tuple<Closure*, ExecutorPtr, Selectors> (myClosure, m_executor, selectors);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800526
527 dataClosure->p = &incomingData;
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800528
529 CcnxCharbufPtr selectorsPtr = selectors.toCcnxCharbuf();
530 ccn_charbuf *templ = NULL;
Alexander Afanasyev053e5ac2013-01-22 20:59:13 -0800531 if (selectorsPtr)
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800532 {
533 templ = selectorsPtr->getBuf();
534 }
535
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800536 UniqueRecLock lock(m_mutex);
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800537 if (ccn_express_interest (m_handle, pname, dataClosure, templ) < 0)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800538 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800539 _LOG_ERROR ("<< sendInterest: ccn_express_interest FAILED!!!");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800540 }
541
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800542 return 0;
543}
544
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800545int CcnxWrapper::setInterestFilter (const Name &prefix, const InterestCallback &interestCallback, bool record/* = true*/)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800546{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800547 _LOG_TRACE (">> setInterestFilter");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800548 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800549 if (!m_running || !m_connected)
Zhenkai Zhu1888f742013-01-28 12:47:33 -0800550 {
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800551 return -1;
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800552 }
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800553
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800554 CcnxCharbufPtr ptr = prefix.toCcnxCharbuf();
555 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800556 ccn_closure *interestClosure = new ccn_closure;
557
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800558 // interestClosure->data = new ExecutorInterestClosure(interestCallback, m_executor);
559
560 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 -0800561 interestClosure->p = &incomingInterest;
Zhenkai Zhu7599db42013-01-28 10:32:53 -0800562
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800563 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
564 if (ret < 0)
565 {
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800566 _LOG_ERROR ("<< setInterestFilter: ccn_set_interest_filter FAILED");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800567 }
568
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800569 if (record)
570 {
571 m_registeredInterests.insert(pair<Name, InterestCallback>(prefix, interestCallback));
572 }
Alexander Afanasyev816251e2013-01-28 16:16:49 -0800573
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800574 _LOG_TRACE ("<< setInterestFilter");
Alexander Afanasyevdcfa9632013-01-07 16:38:19 -0800575
576 return ret;
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800577}
578
579void
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800580CcnxWrapper::clearInterestFilter (const Name &prefix, bool record/* = true*/)
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800581{
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800582 _LOG_TRACE (">> clearInterestFilter");
Alexander Afanasyev20bc8e22013-01-17 10:56:04 -0800583 UniqueRecLock lock(m_mutex);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800584 if (!m_running || !m_connected)
585 return;
586
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800587 CcnxCharbufPtr ptr = prefix.toCcnxCharbuf();
588 ccn_charbuf *pname = ptr->getBuf();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800589
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800590 int ret = ccn_set_interest_filter (m_handle, pname, 0);
591 if (ret < 0)
592 {
593 }
594
Alexander Afanasyev17ae9e32013-02-19 18:09:08 -0800595 if (record)
596 {
597 m_registeredInterests.erase(prefix);
598 }
Alexander Afanasyevd9826662013-01-28 11:18:06 -0800599
600 _LOG_TRACE ("<< clearInterestFilter");
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800601}
602
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800603Name
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800604CcnxWrapper::getLocalPrefix ()
605{
606 struct ccn * tmp_handle = ccn_create ();
607 int res = ccn_connect (tmp_handle, NULL);
608 if (res < 0)
609 {
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800610 return Name();
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800611 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800612
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800613 string retval = "";
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800614
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800615 struct ccn_charbuf *templ = ccn_charbuf_create();
616 ccn_charbuf_append_tt(templ, CCN_DTAG_Interest, CCN_DTAG);
617 ccn_charbuf_append_tt(templ, CCN_DTAG_Name, CCN_DTAG);
618 ccn_charbuf_append_closer(templ); /* </Name> */
619 // XXX - use pubid if possible
620 ccn_charbuf_append_tt(templ, CCN_DTAG_MaxSuffixComponents, CCN_DTAG);
621 ccnb_append_number(templ, 1);
622 ccn_charbuf_append_closer(templ); /* </MaxSuffixComponents> */
623 ccnb_tagged_putf(templ, CCN_DTAG_Scope, "%d", 2);
624 ccn_charbuf_append_closer(templ); /* </Interest> */
625
626 struct ccn_charbuf *name = ccn_charbuf_create ();
627 res = ccn_name_from_uri (name, "/local/ndn/prefix");
628 if (res < 0) {
629 }
630 else
631 {
632 struct ccn_fetch *fetch = ccn_fetch_new (tmp_handle);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800633
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800634 struct ccn_fetch_stream *stream = ccn_fetch_open (fetch, name, "/local/ndn/prefix",
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800635 NULL, 4, CCN_V_HIGHEST, 0);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800636 if (stream == NULL) {
637 }
638 else
639 {
640 ostringstream os;
641
642 int counter = 0;
643 char buf[256];
644 while (true) {
645 res = ccn_fetch_read (stream, buf, sizeof(buf));
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800646
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800647 if (res == 0) {
648 break;
649 }
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800650
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800651 if (res > 0) {
652 os << string(buf, res);
653 } else if (res == CCN_FETCH_READ_NONE) {
654 if (counter < 2)
655 {
656 ccn_run(tmp_handle, 1000);
657 counter ++;
658 }
659 else
660 {
661 break;
662 }
663 } else if (res == CCN_FETCH_READ_END) {
664 break;
665 } else if (res == CCN_FETCH_READ_TIMEOUT) {
666 break;
667 } else {
668 break;
669 }
670 }
671 retval = os.str ();
672 stream = ccn_fetch_close(stream);
673 }
674 fetch = ccn_fetch_destroy(fetch);
675 }
676
677 ccn_charbuf_destroy (&name);
678
679 ccn_disconnect (tmp_handle);
680 ccn_destroy (&tmp_handle);
Zhenkai Zhu0d8f5d52012-12-30 12:54:07 -0800681
Zhenkai Zhucbbb8882013-01-25 13:49:12 -0800682 boost::algorithm::trim(retval);
Zhenkai Zhucb2d0dd2013-01-03 14:10:48 -0800683 return Name(retval);
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800684}
685
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800686bool
687CcnxWrapper::verifyPco(PcoPtr &pco)
688{
Zhenkai Zhu5957c0d2013-02-08 13:47:52 -0800689 bool verified = (ccn_verify_content(m_handle, pco->msg(), (ccn_parsed_ContentObject *)pco->pco()) == 0);
Zhenkai Zhu79264a42013-02-07 21:49:42 -0800690 pco->setVerified(verified);
691 return verified;
692}
693
Jared Lindblomf83ff942013-03-01 00:01:49 -0800694// This is needed just for get function implementation
695struct GetState
696{
697 GetState (double maxWait)
698 {
699 double intPart, fraction;
700 fraction = modf (std::abs(maxWait), &intPart);
701
702 m_maxWait = date_time::second_clock<boost::posix_time::ptime>::universal_time()
703 + boost::posix_time::seconds (intPart)
704 + boost::posix_time::microseconds (fraction * 1000000);
705 }
706
707 PcoPtr
708 WaitForResult ()
709 {
710 boost::unique_lock<boost::mutex> lock (m_mutex);
711 m_cond.timed_wait (lock, m_maxWait);
712
713 return m_retval;
714 }
715
716 void
717 DataCallback (Name name, PcoPtr pco)
718 {
719 m_retval = pco;
720
721 boost::unique_lock<boost::mutex> lock (m_mutex);
722 m_cond.notify_one ();
723 }
724
725 void
726 TimeoutCallback (Name name)
727 {
728 boost::unique_lock<boost::mutex> lock (m_mutex);
729 m_cond.notify_one ();
730 }
731
732private:
733 boost::posix_time::ptime m_maxWait;
734
735 boost::mutex m_mutex;
736 boost::condition_variable m_cond;
737
738 PcoPtr m_retval;
739};
740
741
742PcoPtr
743CcnxWrapper::get(const Name &interest, const Selectors &selectors, double maxWait/* = 4.0*/)
744{
745 _LOG_TRACE (">> get: " << interest);
746 {
747 UniqueRecLock lock(m_mutex);
748 if (!m_running || !m_connected)
749 {
750 _LOG_ERROR ("<< get: not running or connected");
751 return PcoPtr ();
752 }
753 }
754
755 GetState state (maxWait);
756 this->sendInterest (interest, Closure (boost::bind (&GetState::DataCallback, &state, _1, _2),
757 boost::bind (&GetState::TimeoutCallback, &state, _1)),
758 selectors);
759 return state.WaitForResult ();
760}
761
Zhenkai Zhu1ddeb6f2012-12-27 14:04:18 -0800762}