akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame^] | 3 | * Copyright (c) 2014-2015, The University of Memphis, |
| 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 6 | * |
| 7 | * This file is part of NLSR (Named-data Link State Routing). |
| 8 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 9 | * |
| 10 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 11 | * of the GNU General Public License as published by the Free Software Foundation, |
| 12 | * either version 3 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 15 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE. See the GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along with |
| 19 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 20 | **/ |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame^] | 21 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 22 | #include "sync-logic-handler.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 23 | |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 24 | #include "common.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 25 | #include "conf-parameter.hpp" |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 26 | #include "logger.hpp" |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 27 | #include "lsa.hpp" |
| 28 | #include "lsdb.hpp" |
| 29 | #include "sequencing-manager.hpp" |
| 30 | #include "utility/name-helper.hpp" |
| 31 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 32 | namespace nlsr { |
| 33 | |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 34 | INIT_LOGGER("SyncLogicHandler"); |
| 35 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 36 | using namespace ndn; |
| 37 | using namespace std; |
| 38 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 39 | class SyncUpdate |
| 40 | { |
| 41 | public: |
| 42 | class Error : public std::runtime_error |
| 43 | { |
| 44 | public: |
| 45 | explicit |
| 46 | Error(const std::string& what) |
| 47 | : std::runtime_error(what) |
| 48 | { |
| 49 | } |
| 50 | }; |
| 51 | |
| 52 | public: |
| 53 | SyncUpdate(const ndn::Name& name, uint64_t seqNo) |
| 54 | : m_name(name) |
| 55 | , m_seqManager(seqNo) |
| 56 | { |
| 57 | } |
| 58 | |
| 59 | const ndn::Name& |
| 60 | getName() const |
| 61 | { |
| 62 | return m_name; |
| 63 | } |
| 64 | |
| 65 | const ndn::Name |
| 66 | getOriginRouter() const |
| 67 | { |
| 68 | int32_t nlsrPosition = util::getNameComponentPosition(m_name, NLSR_COMPONENT); |
| 69 | int32_t lsaPosition = util::getNameComponentPosition(m_name, LSA_COMPONENT); |
| 70 | |
| 71 | if (nlsrPosition < 0 || lsaPosition < 0) { |
| 72 | throw Error("Cannot parse update name because expected components are missing"); |
| 73 | } |
| 74 | |
| 75 | ndn::Name networkName = m_name.getSubName(0, nlsrPosition); |
| 76 | ndn::Name routerName = m_name.getSubName(lsaPosition + 1); |
| 77 | |
| 78 | ndn::Name originRouter = networkName; |
| 79 | originRouter.append(routerName); |
| 80 | |
| 81 | return originRouter; |
| 82 | } |
| 83 | |
| 84 | uint64_t |
| 85 | getNameLsaSeqNo() const |
| 86 | { |
| 87 | return m_seqManager.getNameLsaSeq(); |
| 88 | } |
| 89 | |
| 90 | uint64_t |
| 91 | getAdjLsaSeqNo() const |
| 92 | { |
| 93 | return m_seqManager.getAdjLsaSeq(); |
| 94 | } |
| 95 | |
| 96 | uint64_t |
| 97 | getCorLsaSeqNo() const |
| 98 | { |
| 99 | return m_seqManager.getCorLsaSeq(); |
| 100 | } |
| 101 | |
| 102 | const SequencingManager& |
| 103 | getSequencingManager() const |
| 104 | { |
| 105 | return m_seqManager; |
| 106 | } |
| 107 | |
| 108 | private: |
| 109 | const ndn::Name m_name; |
| 110 | SequencingManager m_seqManager; |
| 111 | |
| 112 | static const std::string NLSR_COMPONENT; |
| 113 | static const std::string LSA_COMPONENT; |
| 114 | }; |
| 115 | |
| 116 | const std::string SyncUpdate::NLSR_COMPONENT = "NLSR"; |
| 117 | const std::string SyncUpdate::LSA_COMPONENT = "LSA"; |
| 118 | |
Alexander Afanasyev | 7c8882f | 2014-10-28 12:12:15 -0700 | [diff] [blame] | 119 | template<class T> |
| 120 | class NullDeleter |
| 121 | { |
| 122 | public: |
| 123 | void |
| 124 | operator()(T*) |
| 125 | { |
| 126 | } |
| 127 | }; |
| 128 | |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 129 | SyncLogicHandler::SyncLogicHandler(ndn::Face& face, |
| 130 | Lsdb& lsdb, ConfParameter& conf, |
| 131 | SequencingManager& seqManager) |
| 132 | : m_validator(new ndn::ValidatorNull()) |
| 133 | , m_syncFace(face) |
| 134 | , m_lsdb(lsdb) |
| 135 | , m_confParam(conf) |
| 136 | , m_sequencingManager(seqManager) |
| 137 | { |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 138 | } |
| 139 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 140 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 141 | SyncLogicHandler::createSyncSocket() |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 142 | { |
akmhoque | 674b0b1 | 2014-05-20 14:33:28 -0500 | [diff] [blame] | 143 | _LOG_DEBUG("Creating Sync socket. Sync Prefix: " << m_syncPrefix); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 144 | |
| 145 | // The face's lifetime is managed in main.cpp; SyncSocket should not manage the memory |
| 146 | // of the object |
Alexander Afanasyev | 7c8882f | 2014-10-28 12:12:15 -0700 | [diff] [blame] | 147 | ndn::shared_ptr<ndn::Face> facePtr(&m_syncFace, NullDeleter<ndn::Face>()); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 148 | |
| 149 | m_syncSocket = ndn::make_shared<Sync::SyncSocket>(m_syncPrefix, m_validator, facePtr, |
| 150 | ndn::bind(&SyncLogicHandler::onNsyncUpdate, |
| 151 | this, _1, _2), |
| 152 | ndn::bind(&SyncLogicHandler::onNsyncRemoval, |
| 153 | this, _1)); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 157 | SyncLogicHandler::onNsyncUpdate(const vector<Sync::MissingDataInfo>& v, Sync::SyncSocket* socket) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 158 | { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 159 | _LOG_DEBUG("Received Nsync update event"); |
| 160 | |
| 161 | for (size_t i = 0; i < v.size(); i++){ |
| 162 | _LOG_DEBUG("Update Name: " << v[i].prefix << " Seq no: " << v[i].high.getSeq()); |
| 163 | |
| 164 | SyncUpdate update(v[i].prefix, v[i].high.getSeq()); |
| 165 | |
| 166 | processUpdateFromSync(update); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | |
| 170 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 171 | SyncLogicHandler::onNsyncRemoval(const string& prefix) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 172 | { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 173 | _LOG_DEBUG("Received Nsync removal event"); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 177 | SyncLogicHandler::processUpdateFromSync(const SyncUpdate& update) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 178 | { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 179 | ndn::Name originRouter; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 180 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 181 | try { |
| 182 | originRouter = update.getOriginRouter(); |
| 183 | } |
| 184 | catch (std::exception& e) { |
| 185 | _LOG_WARN("Received malformed sync update"); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 186 | return; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 187 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 188 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 189 | // A router should not try to fetch its own LSA |
| 190 | if (originRouter != m_confParam.getRouterPrefix()) { |
| 191 | |
| 192 | update.getSequencingManager().writeLog(); |
| 193 | |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 194 | try { |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 195 | if (isLsaNew(originRouter, NameLsa::TYPE_STRING, update.getNameLsaSeqNo())) { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 196 | _LOG_DEBUG("Received sync update with higher Name LSA sequence number than entry in LSDB"); |
| 197 | |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 198 | expressInterestForLsa(update, NameLsa::TYPE_STRING, update.getNameLsaSeqNo()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 199 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 200 | |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 201 | if (isLsaNew(originRouter, AdjLsa::TYPE_STRING, update.getAdjLsaSeqNo())) { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 202 | _LOG_DEBUG("Received sync update with higher Adj LSA sequence number than entry in LSDB"); |
| 203 | |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 204 | expressInterestForLsa(update, AdjLsa::TYPE_STRING, update.getAdjLsaSeqNo()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 205 | } |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 206 | |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 207 | if (isLsaNew(originRouter, CoordinateLsa::TYPE_STRING, update.getCorLsaSeqNo())) { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 208 | _LOG_DEBUG("Received sync update with higher Cor LSA sequence number than entry in LSDB"); |
| 209 | |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 210 | expressInterestForLsa(update, CoordinateLsa::TYPE_STRING, update.getCorLsaSeqNo()); |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 211 | } |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 212 | } |
akmhoque | 157b0a4 | 2014-05-13 00:26:37 -0500 | [diff] [blame] | 213 | catch (std::exception& e) { |
akmhoque | 31d1d4b | 2014-05-05 22:08:14 -0500 | [diff] [blame] | 214 | std::cerr << e.what() << std::endl; |
| 215 | return; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | } |
| 219 | |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 220 | bool |
| 221 | SyncLogicHandler::isLsaNew(const ndn::Name& originRouter, const std::string& lsaType, |
| 222 | uint64_t seqNo) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 223 | { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 224 | ndn::Name lsaKey = originRouter; |
| 225 | lsaKey.append(lsaType); |
| 226 | |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 227 | if (lsaType == NameLsa::TYPE_STRING) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 228 | { |
| 229 | return m_lsdb.isNameLsaNew(lsaKey, seqNo); |
| 230 | } |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 231 | else if (lsaType == AdjLsa::TYPE_STRING) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 232 | { |
| 233 | return m_lsdb.isAdjLsaNew(lsaKey, seqNo); |
| 234 | } |
alvy | 49b1c0c | 2014-12-19 13:57:46 -0600 | [diff] [blame] | 235 | else if (lsaType == CoordinateLsa::TYPE_STRING) |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 236 | { |
| 237 | return m_lsdb.isCoordinateLsaNew(lsaKey, seqNo); |
| 238 | } |
| 239 | |
| 240 | return false; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 241 | } |
| 242 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 243 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 244 | SyncLogicHandler::expressInterestForLsa(const SyncUpdate& update, std::string lsaType, |
| 245 | uint64_t seqNo) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 246 | { |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 247 | ndn::Name interest(update.getName()); |
| 248 | interest.append(lsaType); |
| 249 | interest.appendNumber(seqNo); |
| 250 | |
| 251 | m_lsdb.expressInterest(interest, 0); |
| 252 | } |
| 253 | |
| 254 | void |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 255 | SyncLogicHandler::publishRoutingUpdate() |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 256 | { |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 257 | m_sequencingManager.writeSeqNoToFile(); |
| 258 | |
| 259 | publishSyncUpdate(m_updatePrefix, m_sequencingManager.getCombinedSeqNo()); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | void |
Vince Lehman | c11cc20 | 2015-01-20 11:41:33 -0600 | [diff] [blame] | 263 | SyncLogicHandler::buildUpdatePrefix() |
| 264 | { |
| 265 | m_updatePrefix = m_confParam.getLsaPrefix(); |
| 266 | m_updatePrefix.append(m_confParam.getSiteName()); |
| 267 | m_updatePrefix.append(m_confParam.getRouterName()); |
| 268 | } |
| 269 | |
| 270 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 271 | SyncLogicHandler::publishSyncUpdate(const ndn::Name& updatePrefix, uint64_t seqNo) |
| 272 | { |
| 273 | _LOG_DEBUG("Publishing Sync Update. Prefix: " << updatePrefix << " Seq No: " << seqNo); |
| 274 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 275 | ndn::Name updateName(updatePrefix); |
| 276 | string data("NoData"); |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 277 | |
| 278 | m_syncSocket->publishData(updateName.toUri(), 0, data.c_str(), data.size(), 1000, seqNo); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | }//namespace nlsr |