Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 1 | /* -*- Mode: C32++; 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: Yingdi Yu <yingdi@cs.ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #include "sync-socket.h" |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 22 | #include "sync-logging.h" |
| 23 | |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 24 | using namespace std; |
| 25 | using namespace ndn; |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 26 | using namespace ndn::ptr_lib; |
| 27 | |
| 28 | INIT_LOGGER ("SyncSocket"); |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 29 | |
| 30 | namespace Sync { |
| 31 | |
| 32 | SyncSocket::SyncSocket (const string &syncPrefix, |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 33 | shared_ptr<SecPolicySync> policy, |
Yingdi Yu | 6e235db | 2013-12-27 08:40:53 +0800 | [diff] [blame] | 34 | shared_ptr<Face> face, |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 35 | NewDataCallback dataCallback, |
| 36 | RemoveCallback rmCallback ) |
| 37 | : m_newDataCallback(dataCallback) |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 38 | , m_policy(policy) |
| 39 | , m_verifier(new Verifier(policy)) |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 40 | , m_keyChain(new KeyChain()) |
Yingdi Yu | 6e235db | 2013-12-27 08:40:53 +0800 | [diff] [blame] | 41 | , m_face(face) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 42 | , m_syncLogic (syncPrefix, |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 43 | policy, |
Yingdi Yu | 6e235db | 2013-12-27 08:40:53 +0800 | [diff] [blame] | 44 | face, |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 45 | bind(&SyncSocket::passCallback, this, _1), |
| 46 | rmCallback) |
| 47 | { |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 48 | m_verifier->setFace(face); |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | SyncSocket::~SyncSocket() |
Yingdi Yu | 479e117 | 2013-11-06 16:36:19 -0800 | [diff] [blame] | 52 | { |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 53 | } |
| 54 | |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 55 | bool |
| 56 | SyncSocket::publishData(const std::string &prefix, uint32_t session, const char *buf, size_t len, int freshness) |
| 57 | { |
| 58 | uint32_t sequence = getNextSeq(prefix, session); |
| 59 | ostringstream contentNameWithSeqno; |
| 60 | contentNameWithSeqno << prefix << "/" << session << "/" << sequence; |
| 61 | |
| 62 | Name dataName(contentNameWithSeqno.str ()); |
Yingdi Yu | 5e0af3e | 2014-01-15 19:33:25 -0800 | [diff] [blame^] | 63 | Name signingIdentity = m_policy->inferSigningIdentity(dataName); |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 64 | |
| 65 | shared_ptr<Data> data = make_shared<Data>(dataName); |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 66 | data->setContent(reinterpret_cast<const uint8_t*>(buf), len); |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 67 | |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 68 | Name certificateName = m_keyChain->getDefaultCertificateNameForIdentity(signingIdentity); |
| 69 | m_keyChain->sign(*data, certificateName); |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 70 | |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 71 | m_face->put(*data); |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 72 | |
| 73 | SeqNo s(session, sequence + 1); |
| 74 | m_sequenceLog[prefix] = s; |
| 75 | m_syncLogic.addLocalNames (prefix, session, sequence); |
| 76 | return true; |
| 77 | } |
| 78 | |
| 79 | void |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 80 | SyncSocket::fetchData(const string &prefix, const SeqNo &seq, const OnVerified& onVerified, int retry) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 81 | { |
| 82 | ostringstream interestName; |
| 83 | interestName << prefix << "/" << seq.getSession() << "/" << seq.getSeq(); |
| 84 | //std::cout << "Socket " << this << " Send Interest <" << interestName.str() << "> for raw data " << endl; |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 85 | |
| 86 | const OnVerifyFailed& onVerifyFailed = bind(&SyncSocket::onChatDataVerifyFailed, this, _1); |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 87 | |
| 88 | |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 89 | shared_ptr<ndn::Interest> interest = make_shared<ndn::Interest>(interestName.str()); |
| 90 | m_face->expressInterest(*interest, |
| 91 | bind(&SyncSocket::onChatData, this, _1, _2, onVerified, onVerifyFailed), |
| 92 | bind(&SyncSocket::onChatDataTimeout, this, _1, retry, onVerified, onVerifyFailed)); |
| 93 | |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | void |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 97 | SyncSocket::onChatData(const shared_ptr<const ndn::Interest>& interest, |
| 98 | const shared_ptr<Data>& data, |
| 99 | const OnVerified& onVerified, |
| 100 | const OnVerifyFailed& onVerifyFailed) |
| 101 | { |
Yingdi Yu | 0cb0f2b | 2014-01-09 13:51:16 -0800 | [diff] [blame] | 102 | m_verifier->verifyData(data, onVerified, onVerifyFailed); |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void |
| 106 | SyncSocket::onChatDataTimeout(const shared_ptr<const ndn::Interest>& interest, |
| 107 | int retry, |
| 108 | const OnVerified& onVerified, |
| 109 | const OnVerifyFailed& onVerifyFailed) |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 110 | { |
| 111 | if(retry > 0) |
| 112 | { |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 113 | m_face->expressInterest(*interest, |
| 114 | bind(&SyncSocket::onChatData, |
| 115 | this, |
| 116 | _1, |
| 117 | _2, |
| 118 | onVerified, |
| 119 | onVerifyFailed), |
| 120 | bind(&SyncSocket::onChatDataTimeout, |
| 121 | this, |
| 122 | _1, |
| 123 | retry - 1, |
| 124 | onVerified, |
| 125 | onVerifyFailed)); |
| 126 | |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 127 | } |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 128 | else |
| 129 | _LOG_DEBUG("Chat interest eventually time out!"); |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | void |
Yingdi Yu | 46c9f1a | 2013-12-18 15:15:46 +0800 | [diff] [blame] | 133 | SyncSocket::onChatDataVerifyFailed(const shared_ptr<Data>& data) |
| 134 | { |
| 135 | _LOG_DEBUG("Chat data cannot be verified!"); |
| 136 | } |
Yingdi Yu | 43e7161 | 2013-10-30 22:19:31 -0700 | [diff] [blame] | 137 | |
| 138 | |
| 139 | uint32_t |
| 140 | SyncSocket::getNextSeq (const string &prefix, uint32_t session) |
| 141 | { |
| 142 | SequenceLog::iterator i = m_sequenceLog.find (prefix); |
| 143 | |
| 144 | if (i != m_sequenceLog.end ()) |
| 145 | { |
| 146 | SeqNo s = i->second; |
| 147 | if (s.getSession() == session) |
| 148 | return s.getSeq(); |
| 149 | } |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | }//Sync |