Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology |
| 9 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 24 | |
| 25 | #include "face-manager.hpp" |
| 26 | |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 27 | #include "face-flags.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 28 | #include "core/logger.hpp" |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 29 | #include "core/face-uri.hpp" |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 30 | #include "core/network-interface.hpp" |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 31 | #include "fw/face-table.hpp" |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 32 | #include "face/tcp-factory.hpp" |
| 33 | #include "face/udp-factory.hpp" |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 34 | #include "mgmt/config-file.hpp" |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 35 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 36 | #ifdef HAVE_UNIX_SOCKETS |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 37 | #include "face/unix-stream-factory.hpp" |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 38 | #endif // HAVE_UNIX_SOCKETS |
| 39 | |
| 40 | #ifdef HAVE_PCAP |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 41 | #include "face/ethernet-factory.hpp" |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 42 | #endif // HAVE_PCAP |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 43 | |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 44 | #include <ndn-cpp-dev/management/nfd-face-event-notification.hpp> |
| 45 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 46 | namespace nfd { |
| 47 | |
| 48 | NFD_LOG_INIT("FaceManager"); |
| 49 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 50 | const Name FaceManager::COMMAND_PREFIX("/localhost/nfd/faces"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 51 | |
| 52 | const size_t FaceManager::COMMAND_UNSIGNED_NCOMPS = |
| 53 | FaceManager::COMMAND_PREFIX.size() + |
| 54 | 1 + // verb |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 55 | 1; // verb parameters |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 56 | |
| 57 | const size_t FaceManager::COMMAND_SIGNED_NCOMPS = |
| 58 | FaceManager::COMMAND_UNSIGNED_NCOMPS + |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 59 | 4; // (timestamp, nonce, signed info tlv, signature tlv) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 60 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 61 | const FaceManager::SignedVerbAndProcessor FaceManager::SIGNED_COMMAND_VERBS[] = |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 62 | { |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 63 | SignedVerbAndProcessor( |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 64 | Name::Component("create"), |
| 65 | &FaceManager::createFace |
| 66 | ), |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 67 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 68 | SignedVerbAndProcessor( |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 69 | Name::Component("destroy"), |
| 70 | &FaceManager::destroyFace |
| 71 | ), |
| 72 | |
| 73 | SignedVerbAndProcessor( |
| 74 | Name::Component("enable-local-control"), |
| 75 | &FaceManager::enableLocalControl |
| 76 | ), |
| 77 | |
| 78 | SignedVerbAndProcessor( |
| 79 | Name::Component("disable-local-control"), |
| 80 | &FaceManager::disableLocalControl |
| 81 | ), |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 84 | const FaceManager::UnsignedVerbAndProcessor FaceManager::UNSIGNED_COMMAND_VERBS[] = |
| 85 | { |
| 86 | UnsignedVerbAndProcessor( |
| 87 | Name::Component("list"), |
| 88 | &FaceManager::listFaces |
| 89 | ), |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 90 | |
| 91 | UnsignedVerbAndProcessor( |
| 92 | Name::Component("events"), |
| 93 | &FaceManager::ignoreUnsignedVerb |
| 94 | ), |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 95 | }; |
| 96 | |
| 97 | const Name FaceManager::LIST_COMMAND_PREFIX("/localhost/nfd/faces/list"); |
| 98 | const size_t FaceManager::LIST_COMMAND_NCOMPS = LIST_COMMAND_PREFIX.size(); |
| 99 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 100 | const Name FaceManager::EVENTS_COMMAND_PREFIX("/localhost/nfd/faces/events"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 101 | |
| 102 | FaceManager::FaceManager(FaceTable& faceTable, |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 103 | shared_ptr<InternalFace> face) |
| 104 | : ManagerBase(face, FACE_MANAGER_PRIVILEGE) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 105 | , m_faceTable(faceTable) |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 106 | , m_statusPublisher(m_faceTable, m_face, LIST_COMMAND_PREFIX) |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 107 | , m_notificationStream(m_face, EVENTS_COMMAND_PREFIX) |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 108 | , m_signedVerbDispatch(SIGNED_COMMAND_VERBS, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 109 | SIGNED_COMMAND_VERBS + |
| 110 | (sizeof(SIGNED_COMMAND_VERBS) / sizeof(SignedVerbAndProcessor))) |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 111 | , m_unsignedVerbDispatch(UNSIGNED_COMMAND_VERBS, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 112 | UNSIGNED_COMMAND_VERBS + |
| 113 | (sizeof(UNSIGNED_COMMAND_VERBS) / sizeof(UnsignedVerbAndProcessor))) |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 114 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 115 | { |
| 116 | face->setInterestFilter("/localhost/nfd/faces", |
| 117 | bind(&FaceManager::onFaceRequest, this, _2)); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 118 | |
| 119 | m_faceTable.onAdd += bind(&FaceManager::onAddFace, this, _1); |
| 120 | m_faceTable.onRemove += bind(&FaceManager::onRemoveFace, this, _1); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 123 | FaceManager::~FaceManager() |
| 124 | { |
| 125 | |
| 126 | } |
| 127 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 128 | void |
| 129 | FaceManager::setConfigFile(ConfigFile& configFile) |
| 130 | { |
| 131 | configFile.addSectionHandler("face_system", |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 132 | bind(&FaceManager::onConfig, this, _1, _2, _3)); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | |
| 136 | void |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 137 | FaceManager::onConfig(const ConfigSection& configSection, |
| 138 | bool isDryRun, |
| 139 | const std::string& filename) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 140 | { |
| 141 | bool hasSeenUnix = false; |
| 142 | bool hasSeenTcp = false; |
| 143 | bool hasSeenUdp = false; |
| 144 | bool hasSeenEther = false; |
| 145 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 146 | const std::list<shared_ptr<NetworkInterfaceInfo> > nicList(listNetworkInterfaces()); |
| 147 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 148 | for (ConfigSection::const_iterator item = configSection.begin(); |
| 149 | item != configSection.end(); |
| 150 | ++item) |
| 151 | { |
| 152 | if (item->first == "unix") |
| 153 | { |
| 154 | if (hasSeenUnix) |
| 155 | throw Error("Duplicate \"unix\" section"); |
| 156 | hasSeenUnix = true; |
| 157 | |
| 158 | processSectionUnix(item->second, isDryRun); |
| 159 | } |
| 160 | else if (item->first == "tcp") |
| 161 | { |
| 162 | if (hasSeenTcp) |
| 163 | throw Error("Duplicate \"tcp\" section"); |
| 164 | hasSeenTcp = true; |
| 165 | |
| 166 | processSectionTcp(item->second, isDryRun); |
| 167 | } |
| 168 | else if (item->first == "udp") |
| 169 | { |
| 170 | if (hasSeenUdp) |
| 171 | throw Error("Duplicate \"udp\" section"); |
| 172 | hasSeenUdp = true; |
| 173 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 174 | processSectionUdp(item->second, isDryRun, nicList); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 175 | } |
| 176 | else if (item->first == "ether") |
| 177 | { |
| 178 | if (hasSeenEther) |
| 179 | throw Error("Duplicate \"ether\" section"); |
| 180 | hasSeenEther = true; |
| 181 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 182 | processSectionEther(item->second, isDryRun, nicList); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 183 | } |
| 184 | else |
| 185 | { |
| 186 | throw Error("Unrecognized option \"" + item->first + "\""); |
| 187 | } |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | void |
| 192 | FaceManager::processSectionUnix(const ConfigSection& configSection, bool isDryRun) |
| 193 | { |
| 194 | // ; the unix section contains settings of UNIX stream faces and channels |
| 195 | // unix |
| 196 | // { |
| 197 | // listen yes ; set to 'no' to disable UNIX stream listener, default 'yes' |
| 198 | // path /var/run/nfd.sock ; UNIX stream listener path |
| 199 | // } |
| 200 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 201 | #if defined(HAVE_UNIX_SOCKETS) |
| 202 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 203 | bool needToListen = true; |
| 204 | std::string path = "/var/run/nfd.sock"; |
| 205 | |
| 206 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 207 | i != configSection.end(); |
| 208 | ++i) |
| 209 | { |
| 210 | if (i->first == "path") |
| 211 | { |
| 212 | path = i->second.get_value<std::string>(); |
| 213 | } |
| 214 | else if (i->first == "listen") |
| 215 | { |
| 216 | needToListen = parseYesNo(i, i->first, "unix"); |
| 217 | } |
| 218 | else |
| 219 | { |
| 220 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"unix\" section"); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | if (!isDryRun) |
| 225 | { |
| 226 | shared_ptr<UnixStreamFactory> factory = make_shared<UnixStreamFactory>(); |
| 227 | shared_ptr<UnixStreamChannel> unixChannel = factory->createChannel(path); |
| 228 | |
| 229 | if (needToListen) |
| 230 | { |
| 231 | // Should acceptFailed callback be used somehow? |
| 232 | unixChannel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 233 | UnixStreamChannel::ConnectFailedCallback()); |
| 234 | } |
| 235 | |
| 236 | m_factories.insert(std::make_pair("unix", factory)); |
| 237 | } |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 238 | #else |
| 239 | throw ConfigFile::Error("NFD was compiled without UNIX sockets support, cannot process \"unix\" section"); |
| 240 | #endif // HAVE_UNIX_SOCKETS |
| 241 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | void |
| 245 | FaceManager::processSectionTcp(const ConfigSection& configSection, bool isDryRun) |
| 246 | { |
| 247 | // ; the tcp section contains settings of TCP faces and channels |
| 248 | // tcp |
| 249 | // { |
| 250 | // listen yes ; set to 'no' to disable TCP listener, default 'yes' |
| 251 | // port 6363 ; TCP listener port number |
| 252 | // } |
| 253 | |
| 254 | std::string port = "6363"; |
| 255 | bool needToListen = true; |
| 256 | |
| 257 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 258 | i != configSection.end(); |
| 259 | ++i) |
| 260 | { |
| 261 | if (i->first == "port") |
| 262 | { |
| 263 | port = i->second.get_value<std::string>(); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 264 | try |
| 265 | { |
| 266 | uint16_t portNo = boost::lexical_cast<uint16_t>(port); |
| 267 | NFD_LOG_TRACE("TCP port set to " << portNo); |
| 268 | } |
| 269 | catch (const std::bad_cast& error) |
| 270 | { |
| 271 | throw ConfigFile::Error("Invalid value for option " + |
| 272 | i->first + "\" in \"udp\" section"); |
| 273 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 274 | } |
| 275 | else if (i->first == "listen") |
| 276 | { |
| 277 | needToListen = parseYesNo(i, i->first, "tcp"); |
| 278 | } |
| 279 | else |
| 280 | { |
| 281 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"tcp\" section"); |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | if (!isDryRun) |
| 286 | { |
| 287 | shared_ptr<TcpFactory> factory = make_shared<TcpFactory>(boost::cref(port)); |
| 288 | |
| 289 | using namespace boost::asio::ip; |
| 290 | |
| 291 | shared_ptr<TcpChannel> ipv4Channel = factory->createChannel("0.0.0.0", port); |
| 292 | shared_ptr<TcpChannel> ipv6Channel = factory->createChannel("::", port); |
| 293 | |
| 294 | if (needToListen) |
| 295 | { |
| 296 | // Should acceptFailed callback be used somehow? |
| 297 | |
| 298 | ipv4Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 299 | TcpChannel::ConnectFailedCallback()); |
| 300 | ipv6Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 301 | TcpChannel::ConnectFailedCallback()); |
| 302 | } |
| 303 | |
| 304 | m_factories.insert(std::make_pair("tcp", factory)); |
| 305 | m_factories.insert(std::make_pair("tcp4", factory)); |
| 306 | m_factories.insert(std::make_pair("tcp6", factory)); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | void |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 311 | FaceManager::processSectionUdp(const ConfigSection& configSection, |
| 312 | bool isDryRun, |
| 313 | const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 314 | { |
| 315 | // ; the udp section contains settings of UDP faces and channels |
| 316 | // udp |
| 317 | // { |
| 318 | // port 6363 ; UDP unicast port number |
| 319 | // idle_timeout 30 ; idle time (seconds) before closing a UDP unicast face |
| 320 | // keep_alive_interval 25; interval (seconds) between keep-alive refreshes |
| 321 | |
| 322 | // ; NFD creates one UDP multicast face per NIC |
| 323 | // mcast yes ; set to 'no' to disable UDP multicast, default 'yes' |
| 324 | // mcast_port 56363 ; UDP multicast port number |
| 325 | // mcast_group 224.0.23.170 ; UDP multicast group (IPv4 only) |
| 326 | // } |
| 327 | |
| 328 | std::string port = "6363"; |
| 329 | size_t timeout = 30; |
| 330 | size_t keepAliveInterval = 25; |
| 331 | bool useMcast = true; |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 332 | std::string mcastGroup = "224.0.23.170"; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 333 | std::string mcastPort = "56363"; |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 334 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 335 | |
| 336 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 337 | i != configSection.end(); |
| 338 | ++i) |
| 339 | { |
| 340 | if (i->first == "port") |
| 341 | { |
| 342 | port = i->second.get_value<std::string>(); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 343 | try |
| 344 | { |
| 345 | uint16_t portNo = boost::lexical_cast<uint16_t>(port); |
| 346 | NFD_LOG_TRACE("UDP port set to " << portNo); |
| 347 | } |
| 348 | catch (const std::bad_cast& error) |
| 349 | { |
| 350 | throw ConfigFile::Error("Invalid value for option " + |
| 351 | i->first + "\" in \"udp\" section"); |
| 352 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 353 | } |
| 354 | else if (i->first == "idle_timeout") |
| 355 | { |
| 356 | try |
| 357 | { |
| 358 | timeout = i->second.get_value<size_t>(); |
| 359 | } |
| 360 | catch (const std::exception& e) |
| 361 | { |
| 362 | throw ConfigFile::Error("Invalid value for option \"" + |
| 363 | i->first + "\" in \"udp\" section"); |
| 364 | } |
| 365 | } |
| 366 | else if (i->first == "keep_alive_interval") |
| 367 | { |
| 368 | try |
| 369 | { |
| 370 | keepAliveInterval = i->second.get_value<size_t>(); |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 371 | |
| 372 | /// \todo Make use of keepAliveInterval |
| 373 | (void)(keepAliveInterval); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 374 | } |
| 375 | catch (const std::exception& e) |
| 376 | { |
| 377 | throw ConfigFile::Error("Invalid value for option \"" + |
| 378 | i->first + "\" in \"udp\" section"); |
| 379 | } |
| 380 | } |
| 381 | else if (i->first == "mcast") |
| 382 | { |
| 383 | useMcast = parseYesNo(i, i->first, "udp"); |
| 384 | } |
| 385 | else if (i->first == "mcast_port") |
| 386 | { |
| 387 | mcastPort = i->second.get_value<std::string>(); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 388 | try |
| 389 | { |
| 390 | uint16_t portNo = boost::lexical_cast<uint16_t>(mcastPort); |
| 391 | NFD_LOG_TRACE("UDP multicast port set to " << portNo); |
| 392 | } |
| 393 | catch (const std::bad_cast& error) |
| 394 | { |
| 395 | throw ConfigFile::Error("Invalid value for option " + |
| 396 | i->first + "\" in \"udp\" section"); |
| 397 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 398 | } |
| 399 | else if (i->first == "mcast_group") |
| 400 | { |
| 401 | using namespace boost::asio::ip; |
| 402 | mcastGroup = i->second.get_value<std::string>(); |
| 403 | try |
| 404 | { |
| 405 | address mcastGroupTest = address::from_string(mcastGroup); |
| 406 | if (!mcastGroupTest.is_v4()) |
| 407 | { |
| 408 | throw ConfigFile::Error("Invalid value for option \"" + |
| 409 | i->first + "\" in \"udp\" section"); |
| 410 | } |
| 411 | } |
| 412 | catch(const std::runtime_error& e) |
| 413 | { |
| 414 | throw ConfigFile::Error("Invalid value for option \"" + |
| 415 | i->first + "\" in \"udp\" section"); |
| 416 | } |
| 417 | } |
| 418 | else |
| 419 | { |
| 420 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"udp\" section"); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | /// \todo what is keep alive interval used for? |
| 425 | |
| 426 | if (!isDryRun) |
| 427 | { |
| 428 | shared_ptr<UdpFactory> factory = make_shared<UdpFactory>(boost::cref(port)); |
| 429 | |
Steve DiBenedetto | b9906cf | 2014-03-27 09:18:28 -0600 | [diff] [blame] | 430 | shared_ptr<UdpChannel> v4Channel = |
| 431 | factory->createChannel("0.0.0.0", port, time::seconds(timeout)); |
| 432 | |
| 433 | shared_ptr<UdpChannel> v6Channel = |
| 434 | factory->createChannel("::", port, time::seconds(timeout)); |
| 435 | |
| 436 | v4Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 437 | UdpChannel::ConnectFailedCallback()); |
| 438 | |
| 439 | v6Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 440 | UdpChannel::ConnectFailedCallback()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 441 | |
| 442 | m_factories.insert(std::make_pair("udp", factory)); |
| 443 | m_factories.insert(std::make_pair("udp4", factory)); |
| 444 | m_factories.insert(std::make_pair("udp6", factory)); |
| 445 | |
| 446 | if (useMcast) |
| 447 | { |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 448 | for (std::list<shared_ptr<NetworkInterfaceInfo> >::const_iterator i = nicList.begin(); |
| 449 | i != nicList.end(); |
| 450 | ++i) |
| 451 | { |
| 452 | const shared_ptr<NetworkInterfaceInfo>& nic = *i; |
| 453 | if (nic->isUp() && nic->isMulticastCapable() && !nic->ipv4Addresses.empty()) |
| 454 | { |
| 455 | shared_ptr<MulticastUdpFace> newFace = |
| 456 | factory->createMulticastFace(nic->ipv4Addresses[0].to_string(), |
| 457 | mcastGroup, mcastPort); |
| 458 | |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 459 | addCreatedFaceToForwarder(newFace); |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 460 | } |
| 461 | } |
| 462 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 463 | } |
| 464 | } |
| 465 | |
| 466 | void |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 467 | FaceManager::processSectionEther(const ConfigSection& configSection, |
| 468 | bool isDryRun, |
| 469 | const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 470 | { |
| 471 | // ; the ether section contains settings of Ethernet faces and channels |
| 472 | // ether |
| 473 | // { |
| 474 | // ; NFD creates one Ethernet multicast face per NIC |
| 475 | // mcast yes ; set to 'no' to disable Ethernet multicast, default 'yes' |
| 476 | // mcast_group 01:00:5E:00:17:AA ; Ethernet multicast group |
| 477 | // } |
| 478 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 479 | #if defined(HAVE_PCAP) |
| 480 | |
| 481 | using ethernet::Address; |
| 482 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 483 | bool useMcast = true; |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 484 | Address mcastGroup(ethernet::getDefaultMulticastAddress()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 485 | |
| 486 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 487 | i != configSection.end(); |
| 488 | ++i) |
| 489 | { |
| 490 | if (i->first == "mcast") |
| 491 | { |
| 492 | useMcast = parseYesNo(i, i->first, "ether"); |
| 493 | } |
| 494 | |
| 495 | else if (i->first == "mcast_group") |
| 496 | { |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 497 | mcastGroup = Address::fromString(i->second.get_value<std::string>()); |
| 498 | if (mcastGroup.isNull()) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 499 | { |
| 500 | throw ConfigFile::Error("Invalid value for option \"" + |
| 501 | i->first + "\" in \"ether\" section"); |
| 502 | } |
| 503 | } |
| 504 | else |
| 505 | { |
| 506 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"ether\" section"); |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | if (!isDryRun) |
| 511 | { |
| 512 | shared_ptr<EthernetFactory> factory = make_shared<EthernetFactory>(); |
| 513 | m_factories.insert(std::make_pair("ether", factory)); |
| 514 | |
| 515 | if (useMcast) |
| 516 | { |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 517 | for (std::list<shared_ptr<NetworkInterfaceInfo> >::const_iterator i = nicList.begin(); |
| 518 | i != nicList.end(); |
| 519 | ++i) |
| 520 | { |
| 521 | const shared_ptr<NetworkInterfaceInfo>& nic = *i; |
| 522 | if (nic->isUp() && nic->isMulticastCapable()) |
| 523 | { |
| 524 | try |
| 525 | { |
| 526 | shared_ptr<EthernetFace> newFace = |
Davide Pesavento | b60cc12 | 2014-03-19 19:26:02 +0100 | [diff] [blame] | 527 | factory->createMulticastFace(nic, mcastGroup); |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 528 | |
| 529 | addCreatedFaceToForwarder(newFace); |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 530 | } |
| 531 | catch (const EthernetFactory::Error& factoryError) |
| 532 | { |
| 533 | NFD_LOG_ERROR(factoryError.what() << ", continuing"); |
| 534 | } |
| 535 | catch (const EthernetFace::Error& faceError) |
| 536 | { |
| 537 | NFD_LOG_ERROR(faceError.what() << ", continuing"); |
| 538 | } |
| 539 | } |
| 540 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 541 | } |
| 542 | } |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 543 | #else |
| 544 | throw ConfigFile::Error("NFD was compiled without libpcap, cannot process \"ether\" section"); |
| 545 | #endif // HAVE_PCAP |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 546 | } |
| 547 | |
| 548 | |
| 549 | void |
| 550 | FaceManager::onFaceRequest(const Interest& request) |
| 551 | { |
| 552 | const Name& command = request.getName(); |
| 553 | const size_t commandNComps = command.size(); |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 554 | const Name::Component& verb = command.get(COMMAND_PREFIX.size()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 555 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 556 | UnsignedVerbDispatchTable::const_iterator unsignedVerbProcessor = m_unsignedVerbDispatch.find(verb); |
| 557 | if (unsignedVerbProcessor != m_unsignedVerbDispatch.end()) |
| 558 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 559 | NFD_LOG_DEBUG("command result: processing verb: " << verb); |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 560 | (unsignedVerbProcessor->second)(this, boost::cref(request)); |
| 561 | } |
| 562 | else if (COMMAND_UNSIGNED_NCOMPS <= commandNComps && |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 563 | commandNComps < COMMAND_SIGNED_NCOMPS) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 564 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 565 | NFD_LOG_DEBUG("command result: unsigned verb: " << command); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 566 | sendResponse(command, 401, "Signature required"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 567 | } |
| 568 | else if (commandNComps < COMMAND_SIGNED_NCOMPS || |
| 569 | !COMMAND_PREFIX.isPrefixOf(command)) |
| 570 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 571 | NFD_LOG_DEBUG("command result: malformed"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 572 | sendResponse(command, 400, "Malformed command"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 573 | } |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 574 | else |
| 575 | { |
| 576 | validate(request, |
| 577 | bind(&FaceManager::onValidatedFaceRequest, this, _1), |
| 578 | bind(&ManagerBase::onCommandValidationFailed, this, _1, _2)); |
| 579 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | void |
| 583 | FaceManager::onValidatedFaceRequest(const shared_ptr<const Interest>& request) |
| 584 | { |
| 585 | const Name& command = request->getName(); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 586 | const Name::Component& verb = command[COMMAND_PREFIX.size()]; |
| 587 | const Name::Component& parameterComponent = command[COMMAND_PREFIX.size() + 1]; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 588 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 589 | SignedVerbDispatchTable::const_iterator signedVerbProcessor = m_signedVerbDispatch.find(verb); |
| 590 | if (signedVerbProcessor != m_signedVerbDispatch.end()) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 591 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 592 | ControlParameters parameters; |
| 593 | if (!extractParameters(parameterComponent, parameters)) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 594 | { |
| 595 | sendResponse(command, 400, "Malformed command"); |
| 596 | return; |
| 597 | } |
| 598 | |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 599 | NFD_LOG_DEBUG("command result: processing verb: " << verb); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 600 | (signedVerbProcessor->second)(this, *request, parameters); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 601 | } |
| 602 | else |
| 603 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 604 | NFD_LOG_DEBUG("command result: unsupported verb: " << verb); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 605 | sendResponse(command, 501, "Unsupported command"); |
| 606 | } |
| 607 | |
| 608 | } |
| 609 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 610 | void |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 611 | FaceManager::addCreatedFaceToForwarder(const shared_ptr<Face>& newFace) |
| 612 | { |
| 613 | m_faceTable.add(newFace); |
| 614 | |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 615 | //NFD_LOG_DEBUG("Created face " << newFace->getRemoteUri() << " ID " << newFace->getId()); |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | void |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 619 | FaceManager::onCreated(const Name& requestName, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 620 | ControlParameters& parameters, |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 621 | const shared_ptr<Face>& newFace) |
| 622 | { |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 623 | addCreatedFaceToForwarder(newFace); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 624 | parameters.setFaceId(newFace->getId()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 625 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 626 | sendResponse(requestName, 200, "Success", parameters.wireEncode()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | void |
| 630 | FaceManager::onConnectFailed(const Name& requestName, const std::string& reason) |
| 631 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 632 | NFD_LOG_DEBUG("Failed to create face: " << reason); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 633 | sendResponse(requestName, 408, reason); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 637 | FaceManager::createFace(const Interest& request, |
| 638 | ControlParameters& parameters) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 639 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 640 | const Name& requestName = request.getName(); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 641 | ndn::nfd::FaceCreateCommand command; |
| 642 | |
| 643 | if (!validateParameters(command, parameters)) |
| 644 | { |
| 645 | sendResponse(requestName, 400, "Malformed command"); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 646 | NFD_LOG_TRACE("invalid control parameters URI"); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 647 | return; |
| 648 | } |
| 649 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 650 | FaceUri uri; |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 651 | if (!uri.parse(parameters.getUri())) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 652 | { |
| 653 | sendResponse(requestName, 400, "Malformed command"); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 654 | NFD_LOG_TRACE("failed to parse URI"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 655 | return; |
| 656 | } |
| 657 | |
| 658 | FactoryMap::iterator factory = m_factories.find(uri.getScheme()); |
| 659 | if (factory == m_factories.end()) |
| 660 | { |
| 661 | sendResponse(requestName, 501, "Unsupported protocol"); |
| 662 | return; |
| 663 | } |
| 664 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 665 | try |
| 666 | { |
| 667 | factory->second->createFace(uri, |
| 668 | bind(&FaceManager::onCreated, |
| 669 | this, requestName, parameters, _1), |
| 670 | bind(&FaceManager::onConnectFailed, |
| 671 | this, requestName, _1)); |
| 672 | } |
| 673 | catch (const std::runtime_error& error) |
| 674 | { |
| 675 | std::string errorMessage = "NFD error: "; |
| 676 | errorMessage += error.what(); |
| 677 | |
| 678 | NFD_LOG_ERROR(errorMessage); |
| 679 | sendResponse(requestName, 500, errorMessage); |
| 680 | } |
| 681 | catch (const std::logic_error& error) |
| 682 | { |
| 683 | std::string errorMessage = "NFD error: "; |
| 684 | errorMessage += error.what(); |
| 685 | |
| 686 | NFD_LOG_ERROR(errorMessage); |
| 687 | sendResponse(requestName, 500, errorMessage); |
| 688 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | |
| 692 | void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 693 | FaceManager::destroyFace(const Interest& request, |
| 694 | ControlParameters& parameters) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 695 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 696 | const Name& requestName = request.getName(); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 697 | ndn::nfd::FaceDestroyCommand command; |
| 698 | |
| 699 | if (!validateParameters(command, parameters)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 700 | { |
| 701 | sendResponse(requestName, 400, "Malformed command"); |
| 702 | return; |
| 703 | } |
| 704 | |
| 705 | shared_ptr<Face> target = m_faceTable.get(parameters.getFaceId()); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 706 | if (static_cast<bool>(target)) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 707 | { |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 708 | target->close(); |
| 709 | } |
Steve DiBenedetto | ba74905 | 2014-03-22 19:54:53 -0600 | [diff] [blame] | 710 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 711 | sendResponse(requestName, 200, "Success", parameters.wireEncode()); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 712 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 715 | void |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 716 | FaceManager::onAddFace(shared_ptr<Face> face) |
| 717 | { |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 718 | ndn::nfd::FaceEventNotification notification; |
| 719 | notification.setKind(ndn::nfd::FACE_EVENT_CREATED) |
| 720 | .setFaceId(face->getId()) |
| 721 | .setRemoteUri(face->getRemoteUri().toString()) |
| 722 | .setLocalUri(face->getLocalUri().toString()) |
| 723 | .setFlags(getFaceFlags(*face)); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 724 | |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 725 | m_notificationStream.postNotification(notification); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | void |
| 729 | FaceManager::onRemoveFace(shared_ptr<Face> face) |
| 730 | { |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 731 | ndn::nfd::FaceEventNotification notification; |
| 732 | notification.setKind(ndn::nfd::FACE_EVENT_DESTROYED) |
| 733 | .setFaceId(face->getId()) |
| 734 | .setRemoteUri(face->getRemoteUri().toString()) |
| 735 | .setLocalUri(face->getLocalUri().toString()) |
| 736 | .setFlags(getFaceFlags(*face)); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 737 | |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 738 | m_notificationStream.postNotification(notification); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 742 | bool |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 743 | FaceManager::extractLocalControlParameters(const Interest& request, |
| 744 | ControlParameters& parameters, |
| 745 | ControlCommand& command, |
| 746 | shared_ptr<LocalFace>& outFace, |
| 747 | LocalControlFeature& outFeature) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 748 | { |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 749 | if (!validateParameters(command, parameters)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 750 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 751 | sendResponse(request.getName(), 400, "Malformed command"); |
| 752 | return false; |
| 753 | } |
| 754 | |
| 755 | shared_ptr<Face> face = m_faceTable.get(request.getIncomingFaceId()); |
| 756 | |
| 757 | if (!static_cast<bool>(face)) |
| 758 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 759 | NFD_LOG_DEBUG("command result: faceid " << request.getIncomingFaceId() << " not found"); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 760 | sendResponse(request.getName(), 410, "Face not found"); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 761 | return false; |
| 762 | } |
| 763 | else if (!face->isLocal()) |
| 764 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 765 | NFD_LOG_DEBUG("command result: cannot enable local control on non-local faceid " << |
| 766 | face->getId()); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 767 | sendResponse(request.getName(), 412, "Face is non-local"); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 768 | return false; |
| 769 | } |
| 770 | |
| 771 | outFace = dynamic_pointer_cast<LocalFace>(face); |
| 772 | outFeature = static_cast<LocalControlFeature>(parameters.getLocalControlFeature()); |
| 773 | |
| 774 | return true; |
| 775 | } |
| 776 | |
| 777 | void |
| 778 | FaceManager::enableLocalControl(const Interest& request, |
| 779 | ControlParameters& parameters) |
| 780 | { |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 781 | ndn::nfd::FaceEnableLocalControlCommand command; |
| 782 | |
| 783 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 784 | shared_ptr<LocalFace> face; |
| 785 | LocalControlFeature feature; |
| 786 | |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 787 | if (extractLocalControlParameters(request, parameters, command, face, feature)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 788 | { |
| 789 | face->setLocalControlHeaderFeature(feature, true); |
| 790 | sendResponse(request.getName(), 200, "Success", parameters.wireEncode()); |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | void |
| 795 | FaceManager::disableLocalControl(const Interest& request, |
| 796 | ControlParameters& parameters) |
| 797 | { |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 798 | ndn::nfd::FaceDisableLocalControlCommand command; |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 799 | shared_ptr<LocalFace> face; |
| 800 | LocalControlFeature feature; |
| 801 | |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 802 | if (extractLocalControlParameters(request, parameters, command, face, feature)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 803 | { |
| 804 | face->setLocalControlHeaderFeature(feature, false); |
| 805 | sendResponse(request.getName(), 200, "Success", parameters.wireEncode()); |
| 806 | } |
| 807 | } |
| 808 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 809 | void |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 810 | FaceManager::listFaces(const Interest& request) |
| 811 | { |
| 812 | const Name& command = request.getName(); |
| 813 | const size_t commandNComps = command.size(); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 814 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 815 | if (commandNComps < LIST_COMMAND_NCOMPS || |
| 816 | !LIST_COMMAND_PREFIX.isPrefixOf(command)) |
| 817 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 818 | NFD_LOG_DEBUG("command result: malformed"); |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 819 | sendResponse(command, 400, "Malformed command"); |
| 820 | return; |
| 821 | } |
| 822 | |
| 823 | m_statusPublisher.publish(); |
| 824 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 825 | |
| 826 | } // namespace nfd |