blob: b901a436ed85d6f4961d4c817818722e623007c3 [file] [log] [blame]
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2012 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
* 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
* Alexander Afanasyev <alexander.afanasyev@ucla.edu>
*/
#include "sync-ccnx-wrapper.h"
#include <poll.h>
using namespace std;
using namespace boost;
namespace Sync {
CcnxWrapper::CcnxWrapper()
: m_handle (0)
, m_keyStore (0)
, m_keyLoactor (0)
, m_running (true)
{
m_handle = ccn_create();
ccn_connect(m_handle, NULL);
initKeyStore();
createKeyLocator();
m_thread = thread (&CcnxWrapper::ccnLoop, this);
}
CcnxWrapper::~CcnxWrapper()
{
m_running = false;
m_thread.join();
ccn_disconnect (m_handle);
ccn_destroy (&m_handle);
ccn_charbuf_destroy (&m_keyLoactor);
ccn_keystore_destroy (&m_keyStore);
}
/// @cond include_hidden
void
CcnxWrapper::createKeyLocator ()
{
m_keyLoactor = ccn_charbuf_create();
ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_KeyLocator, CCN_DTAG);
ccn_charbuf_append_tt (m_keyLoactor, CCN_DTAG_Key, CCN_DTAG);
int res = ccn_append_pubkey_blob (m_keyLoactor, ccn_keystore_public_key(m_keyStore));
if (res >= 0)
{
ccn_charbuf_append_closer (m_keyLoactor); /* </Key> */
ccn_charbuf_append_closer (m_keyLoactor); /* </KeyLocator> */
}
}
const ccn_pkey*
CcnxWrapper::getPrivateKey ()
{
return ccn_keystore_private_key (m_keyStore);
}
const unsigned char*
CcnxWrapper::getPublicKeyDigest ()
{
return ccn_keystore_public_key_digest(m_keyStore);
}
ssize_t
CcnxWrapper::getPublicKeyDigestLength ()
{
return ccn_keystore_public_key_digest_length(m_keyStore);
}
void
CcnxWrapper::initKeyStore ()
{
ccn_charbuf *temp = ccn_charbuf_create ();
m_keyStore = ccn_keystore_create ();
ccn_charbuf_putf (temp, "%s/.ccnx/.ccnx_keystore", getenv("HOME"));
ccn_keystore_init (m_keyStore, ccn_charbuf_as_string(temp), (char*)"Th1s1sn0t8g00dp8ssw0rd.");
ccn_charbuf_destroy (&temp);
}
void
CcnxWrapper::ccnLoop ()
{
pollfd pfds[1];
int res = ccn_run(m_handle, 0);
pfds[0].fd = ccn_get_connection_fd(m_handle);
pfds[0].events = POLLIN;
while (m_running)
{
if (res >= 0)
{
int ret = poll(pfds, 1, 100);
if (ret >= 0)
{
recursive_mutex::scoped_lock lock(m_mutex);
res = ccn_run(m_handle, 0);
}
}
}
}
/// @endcond
int
CcnxWrapper::publishData (const string &name, const string &dataBuffer, int freshness)
{
ccn_charbuf *pname = ccn_charbuf_create();
ccn_charbuf *signed_info = ccn_charbuf_create();
ccn_charbuf *content = ccn_charbuf_create();
ccn_name_from_uri(pname, name.c_str());
ccn_signed_info_create(signed_info,
getPublicKeyDigest(),
getPublicKeyDigestLength(),
NULL,
CCN_CONTENT_DATA,
freshness,
NULL,
m_keyLoactor);
ccn_encode_ContentObject(content, pname, signed_info,
dataBuffer.c_str(), dataBuffer.length (),
NULL, getPrivateKey());
recursive_mutex::scoped_lock lock(m_mutex);
ccn_put(m_handle, content->buf, content->length);
ccn_charbuf_destroy (&pname);
ccn_charbuf_destroy (&signed_info);
ccn_charbuf_destroy (&content);
}
static ccn_upcall_res
incomingInterest(ccn_closure *selfp,
ccn_upcall_kind kind,
ccn_upcall_info *info)
{
CcnxWrapper::InterestCallback *f = static_cast<CcnxWrapper::InterestCallback*> (selfp->data);
switch (kind)
{
case CCN_UPCALL_FINAL:
delete f;
delete selfp;
return CCN_UPCALL_RESULT_OK;
case CCN_UPCALL_INTEREST:
break;
default:
return CCN_UPCALL_RESULT_OK;
}
string interest;
for (int i = 0; i < info->interest_comps->n - 1; i++)
{
char *comp;
size_t size;
interest += "/";
ccn_name_comp_get(info->interest_ccnb, info->interest_comps, i, (const unsigned char **)&comp, &size);
interest += comp;
}
(*f) (interest);
return CCN_UPCALL_RESULT_OK;
}
static ccn_upcall_res
incomingData(ccn_closure *selfp,
ccn_upcall_kind kind,
ccn_upcall_info *info)
{
CcnxWrapper::DataCallback *f = static_cast<CcnxWrapper::DataCallback*> (selfp->data);
switch (kind)
{
case CCN_UPCALL_FINAL:
delete f; // this never called in unit tests...
delete selfp;
return CCN_UPCALL_RESULT_OK;
case CCN_UPCALL_CONTENT:
break;
default:
return CCN_UPCALL_RESULT_OK;
}
char *pcontent;
size_t len;
ccn_content_get_value(info->content_ccnb, info->pco->offset[CCN_PCO_E], info->pco, (const unsigned char **)&pcontent, &len);
string name;
for (int i = 0; i < info->content_comps->n - 1; i++)
{
char *comp;
size_t size;
name += "/";
ccn_name_comp_get(info->content_ccnb, info->content_comps, i, (const unsigned char **)&comp, &size);
name += comp; // this will also crash if name doesn't have \0 ending
}
// this will crash when content doesn't have \0 ending
(*f) (name, (string)pcontent);
return CCN_UPCALL_RESULT_OK;
}
int CcnxWrapper::sendInterest (const string &strInterest, const DataCallback &dataCallback)
{
ccn_charbuf *pname = ccn_charbuf_create();
ccn_closure *dataClosure = new ccn_closure;
ccn_name_from_uri (pname, strInterest.c_str());
dataClosure->data = new DataCallback (dataCallback); // should be removed when closure is removed
dataClosure->p = &incomingData;
recursive_mutex::scoped_lock lock(m_mutex);
ccn_express_interest (m_handle, pname, dataClosure, NULL);
ccn_charbuf_destroy (&pname);
}
int CcnxWrapper::setInterestFilter (const string &prefix, const InterestCallback &interestCallback)
{
ccn_charbuf *pname = ccn_charbuf_create();
ccn_closure *interestClosure = new ccn_closure;
ccn_name_from_uri (pname, prefix.c_str());
interestClosure->data = new InterestCallback (interestCallback); // should be removed when closure is removed
interestClosure->p = &incomingInterest;
ccn_set_interest_filter (m_handle, pname, interestClosure);
ccn_charbuf_destroy(&pname);
}
}