blob: 0fdff743c9ab3aae6f909a2984f08ba2ec48930b [file] [log] [blame]
Zhenkai Zhu6cc2c812012-03-05 19:48:46 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 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 * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
20 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080022
23#include "sync-ccnx-wrapper.h"
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070024#include "sync-log.h"
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080025#include <poll.h>
Zhenkai Zhu009ff792012-03-09 12:37:52 -080026#include <boost/throw_exception.hpp>
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070027#include <boost/date_time/posix_time/posix_time.hpp>
28
Chaoyi Bian95a58c32012-03-09 15:43:59 -080029typedef boost::error_info<struct tag_errmsg, std::string> errmsg_info_str;
Alexander Afanasyev387ac952012-03-11 23:49:27 -070030typedef boost::error_info<struct tag_errmsg, int> errmsg_info_int;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080031
32using namespace std;
33using namespace boost;
34
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -070035INIT_LOGGER ("CcnxWrapper");
36
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080037namespace Sync {
38
Alexander Afanasyev2247b302012-03-14 14:11:54 -070039#ifdef _DEBUG_WRAPPER_
40CcnxWrapper::CcnxWrapper(char c)
41#else
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080042CcnxWrapper::CcnxWrapper()
Alexander Afanasyev2247b302012-03-14 14:11:54 -070043#endif
Alexander Afanasyev1285b382012-03-08 16:40:27 -080044 : m_handle (0)
45 , m_keyStore (0)
46 , m_keyLoactor (0)
47 , m_running (true)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080048{
Alexander Afanasyev2247b302012-03-14 14:11:54 -070049#ifdef _DEBUG_WRAPPER_
50 m_c = c;
51#endif
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070052 m_handle = ccn_create ();
Alexander Afanasyev2c180772012-03-13 23:58:46 -070053 initKeyStore ();
54 createKeyLocator ();
Chaoyi Bian95a58c32012-03-09 15:43:59 -080055 if (ccn_connect(m_handle, NULL) < 0)
56 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("connection to ccnd failed"));
Alexander Afanasyev1285b382012-03-08 16:40:27 -080057 m_thread = thread (&CcnxWrapper::ccnLoop, this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080058}
59
60CcnxWrapper::~CcnxWrapper()
61{
Alexander Afanasyev1b449c42012-03-13 20:24:07 -070062 // std::cout << "CcnxWrapper::~CcnxWrapper()" << std::endl;
63 {
64 recursive_mutex::scoped_lock lock(m_mutex);
65 m_running = false;
66 }
67
68 m_thread.join ();
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080069 ccn_disconnect (m_handle);
Alexander Afanasyev2c180772012-03-13 23:58:46 -070070 ccn_destroy (&m_handle);
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080071 ccn_charbuf_destroy (&m_keyLoactor);
72 ccn_keystore_destroy (&m_keyStore);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080073}
74
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080075/// @cond include_hidden
76
77void
78CcnxWrapper::createKeyLocator ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080079{
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080080 m_keyLoactor = ccn_charbuf_create();
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080081 ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_KeyLocator, CCN_DTAG);
82 ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_Key, CCN_DTAG);
83 int res = ccn_append_pubkey_blob (m_keyLoactor, ccn_keystore_public_key(m_keyStore));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080084 if (res >= 0)
Alexander Afanasyev1285b382012-03-08 16:40:27 -080085 {
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080086 ccn_charbuf_append_closer (m_keyLoactor); /* </Key> */
87 ccn_charbuf_append_closer (m_keyLoactor); /* </KeyLocator> */
Alexander Afanasyev1285b382012-03-08 16:40:27 -080088 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080089}
90
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080091const ccn_pkey*
92CcnxWrapper::getPrivateKey ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080093{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080094 return ccn_keystore_private_key (m_keyStore);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080095}
96
Alexander Afanasyev172d2b72012-03-08 23:43:39 -080097const unsigned char*
98CcnxWrapper::getPublicKeyDigest ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080099{
100 return ccn_keystore_public_key_digest(m_keyStore);
101}
102
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800103ssize_t
104CcnxWrapper::getPublicKeyDigestLength ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800105{
106 return ccn_keystore_public_key_digest_length(m_keyStore);
107}
108
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800109void
110CcnxWrapper::initKeyStore ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800111{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800112 m_keyStore = ccn_keystore_create ();
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800113 string keyStoreFile = string(getenv("HOME")) + string("/.ccnx/.ccnx_keystore");
114 if (ccn_keystore_init (m_keyStore, (char *)keyStoreFile.c_str(), (char*)"Th1s1sn0t8g00dp8ssw0rd.") < 0)
115 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str(keyStoreFile.c_str()));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800116}
117
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800118void
119CcnxWrapper::ccnLoop ()
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800120{
Alexander Afanasyev4f9ea482012-03-15 11:57:29 -0700121 _LOG_FUNCTION (this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800122
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800123 while (m_running)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800124 {
Alexander Afanasyev2247b302012-03-14 14:11:54 -0700125#ifdef _DEBUG_WRAPPER_
126 std::cout << m_c << flush;
127#endif
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700128 int res = 0;
129 {
130 recursive_mutex::scoped_lock lock (m_mutex);
131 res = ccn_run (m_handle, 0);
Alexander Afanasyev2247b302012-03-14 14:11:54 -0700132
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700133 }
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700134
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700135 if (!m_running) break;
136
137 if (res < 0)
138 BOOST_THROW_EXCEPTION (CcnxOperationException()
139 << errmsg_info_str("ccn_run returned error"));
140
Alexander Afanasyev2247b302012-03-14 14:11:54 -0700141
142 pollfd pfds[1];
143 {
144 recursive_mutex::scoped_lock lock (m_mutex);
145
146 pfds[0].fd = ccn_get_connection_fd (m_handle);
147 pfds[0].events = POLLIN;
148 if (ccn_output_is_pending (m_handle))
149 pfds[0].events |= POLLOUT;
150 }
151
152 int ret = poll (pfds, 1, 1);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700153 if (ret < 0)
154 {
155 BOOST_THROW_EXCEPTION (CcnxOperationException() << errmsg_info_str("ccnd socket failed (probably ccnd got stopped)"));
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800156 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800157 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800158}
159
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800160/// @endcond
161
162int
163CcnxWrapper::publishData (const string &name, const string &dataBuffer, int freshness)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800164{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700165 recursive_mutex::scoped_lock lock(m_mutex);
166 if (!m_running)
167 return -1;
168
Alexander Afanasyev45fba082012-03-12 18:05:24 -0700169 // cout << "Publish: " << name << endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800170 ccn_charbuf *pname = ccn_charbuf_create();
171 ccn_charbuf *signed_info = ccn_charbuf_create();
172 ccn_charbuf *content = ccn_charbuf_create();
173
174 ccn_name_from_uri(pname, name.c_str());
175 ccn_signed_info_create(signed_info,
176 getPublicKeyDigest(),
177 getPublicKeyDigestLength(),
178 NULL,
179 CCN_CONTENT_DATA,
180 freshness,
181 NULL,
182 m_keyLoactor);
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800183 if(ccn_encode_ContentObject(content, pname, signed_info,
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800184 dataBuffer.c_str(), dataBuffer.length (),
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800185 NULL, getPrivateKey()) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800186 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("encode content failed"));
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800187
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800188 if (ccn_put(m_handle, content->buf, content->length) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800189 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("ccnput failed"));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800190
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800191 ccn_charbuf_destroy (&pname);
192 ccn_charbuf_destroy (&signed_info);
193 ccn_charbuf_destroy (&content);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700194 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800195}
196
197
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800198static ccn_upcall_res
199incomingInterest(ccn_closure *selfp,
200 ccn_upcall_kind kind,
201 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800202{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800203 CcnxWrapper::InterestCallback *f = static_cast<CcnxWrapper::InterestCallback*> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800204
205 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800206 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800207 case CCN_UPCALL_FINAL: // effective in unit tests
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800208 delete f;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800209 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800210 return CCN_UPCALL_RESULT_OK;
211
212 case CCN_UPCALL_INTEREST:
213 break;
214
215 default:
216 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800217 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800218
Chaoyi Bian93d43102012-03-07 14:28:56 -0800219 string interest;
Chaoyi Bian02dba3c2012-03-07 21:45:22 -0800220 for (int i = 0; i < info->interest_comps->n - 1; i++)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800221 {
222 char *comp;
223 size_t size;
224 interest += "/";
225 ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800226 string compStr(comp, size);
227 interest += compStr;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800228 }
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800229 (*f) (interest);
Chaoyi Bian93d43102012-03-07 14:28:56 -0800230 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800231}
232
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800233static ccn_upcall_res
234incomingData(ccn_closure *selfp,
235 ccn_upcall_kind kind,
236 ccn_upcall_info *info)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800237{
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800238 CcnxWrapper::DataCallback *f = static_cast<CcnxWrapper::DataCallback*> (selfp->data);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800239
240 switch (kind)
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800241 {
Zhenkai Zhucd747592012-03-09 12:08:17 -0800242 case CCN_UPCALL_FINAL: // effecitve in unit tests
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800243 delete f;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800244 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800245 return CCN_UPCALL_RESULT_OK;
246
247 case CCN_UPCALL_CONTENT:
248 break;
249
250 default:
251 return CCN_UPCALL_RESULT_OK;
Alexander Afanasyev1285b382012-03-08 16:40:27 -0800252 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800253
254 char *pcontent;
255 size_t len;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800256 if (ccn_content_get_value(info->content_ccnb, info->pco->offset[CCN_PCO_E], info->pco, (const unsigned char **)&pcontent, &len) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800257 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("decode ContentObject failed"));
258 string content(pcontent, len);
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800259
Chaoyi Bian4194b742012-03-08 17:21:35 -0800260 string name;
261 for (int i = 0; i < info->content_comps->n - 1; i++)
262 {
263 char *comp;
264 size_t size;
265 name += "/";
266 ccn_name_comp_get(info->content_ccnb, info->content_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800267 string compStr(comp, size);
268 name += compStr;
Chaoyi Bian4194b742012-03-08 17:21:35 -0800269 }
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800270 (*f) (name, content);
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800271 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800272}
273
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800274int CcnxWrapper::sendInterest (const string &strInterest, const DataCallback &dataCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800275{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700276 recursive_mutex::scoped_lock lock(m_mutex);
277 if (!m_running)
278 return -1;
279
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700280 // std::cout << "Send interests for " << strInterest << std::endl;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800281 ccn_charbuf *pname = ccn_charbuf_create();
282 ccn_closure *dataClosure = new ccn_closure;
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800283
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800284 ccn_name_from_uri (pname, strInterest.c_str());
285 dataClosure->data = new DataCallback (dataCallback); // should be removed when closure is removed
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800286
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800287 dataClosure->p = &incomingData;
Zhenkai Zhu009ff792012-03-09 12:37:52 -0800288 if (ccn_express_interest (m_handle, pname, dataClosure, NULL) < 0)
Chaoyi Bian95a58c32012-03-09 15:43:59 -0800289 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("express interest failed"));
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800290
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800291 ccn_charbuf_destroy (&pname);
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700292 return 0;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800293}
294
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800295int CcnxWrapper::setInterestFilter (const string &prefix, const InterestCallback &interestCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800296{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700297 recursive_mutex::scoped_lock lock(m_mutex);
298 if (!m_running)
299 return -1;
300
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800301 ccn_charbuf *pname = ccn_charbuf_create();
302 ccn_closure *interestClosure = new ccn_closure;
303
Alexander Afanasyev172d2b72012-03-08 23:43:39 -0800304 ccn_name_from_uri (pname, prefix.c_str());
305 interestClosure->data = new InterestCallback (interestCallback); // should be removed when closure is removed
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800306 interestClosure->p = &incomingInterest;
Alexander Afanasyev387ac952012-03-11 23:49:27 -0700307 int ret = ccn_set_interest_filter (m_handle, pname, interestClosure);
308 if (ret < 0)
309 {
310 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
311 }
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800312
313 ccn_charbuf_destroy(&pname);
314}
315
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700316void
317CcnxWrapper::clearInterestFilter (const std::string &prefix)
318{
Alexander Afanasyev2c180772012-03-13 23:58:46 -0700319 recursive_mutex::scoped_lock lock(m_mutex);
320 if (!m_running)
321 return;
322
Alexander Afanasyev1b449c42012-03-13 20:24:07 -0700323 std::cout << "clearInterestFilter" << std::endl;
324 ccn_charbuf *pname = ccn_charbuf_create();
325
326 ccn_name_from_uri (pname, prefix.c_str());
327 int ret = ccn_set_interest_filter (m_handle, pname, 0);
328 if (ret < 0)
329 {
330 BOOST_THROW_EXCEPTION(CcnxOperationException() << errmsg_info_str("set interest filter failed") << errmsg_info_int (ret));
331 }
332
333 ccn_charbuf_destroy(&pname);
334}
335
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800336}