blob: 741a1439116609a6cebcd15bd9b3b9a8e7869229 [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"
24#include <poll.h>
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080025
26using namespace std;
27using namespace boost;
28
29namespace Sync {
30
31CcnxWrapper::CcnxWrapper()
32{
33 m_handle = ccn_create();
34 ccn_connect(m_handle, NULL);
35 initKeyStore();
36 createKeyLocator();
Chaoyi Bian49d46752012-03-07 10:35:21 -080037 m_thread = thread(&CcnxWrapper::ccnLoop, this);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -080038}
39
40CcnxWrapper::~CcnxWrapper()
41{
42 running = false;
43 m_thread.join();
44 ccn_disconnect(m_handle);
45 ccn_destroy(&m_handle);
46 ccn_charbuf_destroy(&m_keyLoactor);
47 ccn_keystore_destroy(&m_keyStore);
48}
49
50void CcnxWrapper::createKeyLocator()
51{
52 int res;
53
54 m_keyLoactor = ccn_charbuf_create();
55 ccn_charbuf_append_tt(m_keyLoactor, CCN_DTAG_KeyLocator, CCN_DTAG);
56 ccn_charbuf_append_tt(m_keyLoactor, CCN_DTAG_Key, CCN_DTAG);
57 res = ccn_append_pubkey_blob(m_keyLoactor, ccn_keystore_public_key(m_keyStore));
58 if (res >= 0)
59 {
60 ccn_charbuf_append_closer(m_keyLoactor); /* </Key> */
61 ccn_charbuf_append_closer(m_keyLoactor); /* </KeyLocator> */
62 }
63}
64
65const ccn_pkey* CcnxWrapper::getPrivateKey()
66{
67 return ccn_keystore_private_key(m_keyStore);
68}
69
70const unsigned char* CcnxWrapper::getPublicKeyDigest()
71{
72 return ccn_keystore_public_key_digest(m_keyStore);
73}
74
75ssize_t CcnxWrapper::getPublicKeyDigestLength()
76{
77 return ccn_keystore_public_key_digest_length(m_keyStore);
78}
79
80void CcnxWrapper::initKeyStore()
81{
82 ccn_charbuf *temp = ccn_charbuf_create();
83 m_keyStore = ccn_keystore_create();
84 ccn_charbuf_putf(temp, "%s/.ccnx/.ccnx_keystore", getenv("HOME"));
85 ccn_keystore_init(m_keyStore, ccn_charbuf_as_string(temp), (char*)"Th1s1sn0t8g00dp8ssw0rd.");
86 ccn_charbuf_destroy(&temp);
87}
88
89void CcnxWrapper::ccnLoop()
90{
91 pollfd pfds[1];
92 int res = ccn_run(m_handle, 0);
93
94 pfds[0].fd = ccn_get_connection_fd(m_handle);
95 pfds[0].events = POLLIN;
96
97 while (running)
98 {
99 if (res >= 0)
100 {
101 int ret = poll(pfds, 1, 100);
102 if (ret >= 0)
103 {
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800104 recursive_mutex::scoped_lock lock(m_mutex);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800105 res = ccn_run(m_handle, 0);
106 }
107 }
108 }
109}
110
Chaoyi Bian93d43102012-03-07 14:28:56 -0800111int CcnxWrapper::publishData(string name, string dataBuffer, int freshness)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800112{
113 ccn_charbuf *pname = ccn_charbuf_create();
114 ccn_charbuf *signed_info = ccn_charbuf_create();
115 ccn_charbuf *content = ccn_charbuf_create();
116
117 ccn_name_from_uri(pname, name.c_str());
118 ccn_signed_info_create(signed_info,
119 getPublicKeyDigest(),
120 getPublicKeyDigestLength(),
121 NULL,
122 CCN_CONTENT_DATA,
123 freshness,
124 NULL,
125 m_keyLoactor);
126 ccn_encode_ContentObject(content, pname, signed_info,
Chaoyi Bian93d43102012-03-07 14:28:56 -0800127 dataBuffer.c_str(), dataBuffer.length(),
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800128 NULL, getPrivateKey());
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800129 recursive_mutex::scoped_lock lock(m_mutex);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800130 ccn_put(m_handle, content->buf, content->length);
131
132 ccn_charbuf_destroy(&pname);
133 ccn_charbuf_destroy(&signed_info);
134 ccn_charbuf_destroy(&content);
135}
136
137
138static ccn_upcall_res incomingInterest(
139 ccn_closure *selfp,
140 ccn_upcall_kind kind,
141 ccn_upcall_info *info)
142{
Chaoyi Bian49d46752012-03-07 10:35:21 -0800143 function<void (string)> f = *(function<void (string)> *)selfp->data;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800144
145 switch (kind)
146 {
147 case CCN_UPCALL_FINAL:
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800148 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800149 return CCN_UPCALL_RESULT_OK;
150
151 case CCN_UPCALL_INTEREST:
152 break;
153
154 default:
155 return CCN_UPCALL_RESULT_OK;
156 }
157
Chaoyi Bian93d43102012-03-07 14:28:56 -0800158 string interest;
Chaoyi Bian02dba3c2012-03-07 21:45:22 -0800159 for (int i = 0; i < info->interest_comps->n - 1; i++)
Chaoyi Bian93d43102012-03-07 14:28:56 -0800160 {
161 char *comp;
162 size_t size;
Chaoyi Bianbc527522012-03-07 21:50:11 -0800163 interest += "/";
Chaoyi Bian02dba3c2012-03-07 21:45:22 -0800164 ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
Chaoyi Bian93d43102012-03-07 14:28:56 -0800165 interest += comp;
166 }
167 f(interest);
168 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800169}
170
171static ccn_upcall_res incomingData(
172 ccn_closure *selfp,
173 ccn_upcall_kind kind,
174 ccn_upcall_info *info)
175{
Chaoyi Bian93d43102012-03-07 14:28:56 -0800176 function<void (string)> f = *(function<void (string)> *)selfp->data;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800177
178 switch (kind)
179 {
180 case CCN_UPCALL_FINAL:
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800181 delete selfp;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800182 return CCN_UPCALL_RESULT_OK;
183
184 case CCN_UPCALL_CONTENT:
185 break;
186
187 default:
188 return CCN_UPCALL_RESULT_OK;
189 }
190
191 char *pcontent;
192 size_t len;
193 ccn_content_get_value(info->content_ccnb, info->pco->offset[CCN_PCO_E], info->pco, (const unsigned char **)&pcontent, &len);
Chaoyi Bian93d43102012-03-07 14:28:56 -0800194 f((string)pcontent);
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800195 return CCN_UPCALL_RESULT_OK;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800196}
197
Chaoyi Bian93d43102012-03-07 14:28:56 -0800198int CcnxWrapper::sendInterest(string strInterest, function<void (string)> dataCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800199{
200 ccn_charbuf *pname = ccn_charbuf_create();
201 ccn_closure *dataClosure = new ccn_closure;
Chaoyi Bian93d43102012-03-07 14:28:56 -0800202 function<void (string)> *f = new function<void (string)>(dataCallback);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800203
204 ccn_name_from_uri(pname, strInterest.c_str());
Chaoyi Bian49d46752012-03-07 10:35:21 -0800205 dataClosure->data = f;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800206 dataClosure->p = &incomingData;
Chaoyi Bian11f294f2012-03-08 14:28:06 -0800207 recursive_mutex::scoped_lock lock(m_mutex);
208 ccn_express_interest(m_handle, pname, dataClosure, NULL);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800209
210 ccn_charbuf_destroy(&pname);
211}
212
Chaoyi Bian93d43102012-03-07 14:28:56 -0800213int CcnxWrapper::setInterestFilter(string prefix, function<void (string)> interestCallback)
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800214{
215 ccn_charbuf *pname = ccn_charbuf_create();
216 ccn_closure *interestClosure = new ccn_closure;
Chaoyi Bian49d46752012-03-07 10:35:21 -0800217 function<void (string)> *f = new function<void (string)>(interestCallback);
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800218
219 ccn_name_from_uri(pname, prefix.c_str());
Chaoyi Bian49d46752012-03-07 10:35:21 -0800220 interestClosure->data = f;
Chaoyi Bian3e6e5142012-03-06 22:32:19 -0800221 interestClosure->p = &incomingInterest;
222 ccn_set_interest_filter(m_handle, pname, interestClosure);
223
224 ccn_charbuf_destroy(&pname);
225}
226
227}