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; |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 256 | bool enableV4 = true; |
| 257 | bool enableV6 = true; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 258 | |
| 259 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 260 | i != configSection.end(); |
| 261 | ++i) |
| 262 | { |
| 263 | if (i->first == "port") |
| 264 | { |
| 265 | port = i->second.get_value<std::string>(); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 266 | try |
| 267 | { |
| 268 | uint16_t portNo = boost::lexical_cast<uint16_t>(port); |
| 269 | NFD_LOG_TRACE("TCP port set to " << portNo); |
| 270 | } |
| 271 | catch (const std::bad_cast& error) |
| 272 | { |
| 273 | throw ConfigFile::Error("Invalid value for option " + |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 274 | i->first + "\" in \"tcp\" section"); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 275 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 276 | } |
| 277 | else if (i->first == "listen") |
| 278 | { |
| 279 | needToListen = parseYesNo(i, i->first, "tcp"); |
| 280 | } |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 281 | else if (i->first == "enable_v4") |
| 282 | { |
| 283 | enableV4 = parseYesNo(i, i->first, "tcp"); |
| 284 | } |
| 285 | else if (i->first == "enable_v6") |
| 286 | { |
| 287 | enableV6 = parseYesNo(i, i->first, "tcp"); |
| 288 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 289 | else |
| 290 | { |
| 291 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"tcp\" section"); |
| 292 | } |
| 293 | } |
| 294 | |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 295 | if (!enableV4 && !enableV6) |
| 296 | { |
| 297 | throw ConfigFile::Error("IPv4 and IPv6 channels have been disabled." |
| 298 | " Remove \"tcp\" section to disable TCP channels or" |
| 299 | " re-enable at least one channel type."); |
| 300 | } |
| 301 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 302 | if (!isDryRun) |
| 303 | { |
| 304 | shared_ptr<TcpFactory> factory = make_shared<TcpFactory>(boost::cref(port)); |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 305 | m_factories.insert(std::make_pair("tcp", factory)); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 306 | |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 307 | if (enableV4) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 308 | { |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 309 | shared_ptr<TcpChannel> ipv4Channel = factory->createChannel("0.0.0.0", port); |
| 310 | if (needToListen) |
| 311 | { |
| 312 | // Should acceptFailed callback be used somehow? |
| 313 | ipv4Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 314 | TcpChannel::ConnectFailedCallback()); |
| 315 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 316 | |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 317 | m_factories.insert(std::make_pair("tcp4", factory)); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 320 | if (enableV6) |
| 321 | { |
| 322 | shared_ptr<TcpChannel> ipv6Channel = factory->createChannel("::", port); |
| 323 | if (needToListen) |
| 324 | { |
| 325 | // Should acceptFailed callback be used somehow? |
| 326 | ipv6Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 327 | TcpChannel::ConnectFailedCallback()); |
| 328 | } |
| 329 | |
| 330 | m_factories.insert(std::make_pair("tcp6", factory)); |
| 331 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 332 | } |
| 333 | } |
| 334 | |
| 335 | void |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 336 | FaceManager::processSectionUdp(const ConfigSection& configSection, |
| 337 | bool isDryRun, |
| 338 | const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 339 | { |
| 340 | // ; the udp section contains settings of UDP faces and channels |
| 341 | // udp |
| 342 | // { |
| 343 | // port 6363 ; UDP unicast port number |
| 344 | // idle_timeout 30 ; idle time (seconds) before closing a UDP unicast face |
| 345 | // keep_alive_interval 25; interval (seconds) between keep-alive refreshes |
| 346 | |
| 347 | // ; NFD creates one UDP multicast face per NIC |
| 348 | // mcast yes ; set to 'no' to disable UDP multicast, default 'yes' |
| 349 | // mcast_port 56363 ; UDP multicast port number |
| 350 | // mcast_group 224.0.23.170 ; UDP multicast group (IPv4 only) |
| 351 | // } |
| 352 | |
| 353 | std::string port = "6363"; |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 354 | bool enableV4 = true; |
| 355 | bool enableV6 = true; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 356 | size_t timeout = 30; |
| 357 | size_t keepAliveInterval = 25; |
| 358 | bool useMcast = true; |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 359 | std::string mcastGroup = "224.0.23.170"; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 360 | std::string mcastPort = "56363"; |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 361 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 362 | |
| 363 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 364 | i != configSection.end(); |
| 365 | ++i) |
| 366 | { |
| 367 | if (i->first == "port") |
| 368 | { |
| 369 | port = i->second.get_value<std::string>(); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 370 | try |
| 371 | { |
| 372 | uint16_t portNo = boost::lexical_cast<uint16_t>(port); |
| 373 | NFD_LOG_TRACE("UDP port set to " << portNo); |
| 374 | } |
| 375 | catch (const std::bad_cast& error) |
| 376 | { |
| 377 | throw ConfigFile::Error("Invalid value for option " + |
| 378 | i->first + "\" in \"udp\" section"); |
| 379 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 380 | } |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 381 | else if (i->first == "enable_v4") |
| 382 | { |
| 383 | enableV4 = parseYesNo(i, i->first, "udp"); |
| 384 | } |
| 385 | else if (i->first == "enable_v6") |
| 386 | { |
| 387 | enableV6 = parseYesNo(i, i->first, "udp"); |
| 388 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 389 | else if (i->first == "idle_timeout") |
| 390 | { |
| 391 | try |
| 392 | { |
| 393 | timeout = i->second.get_value<size_t>(); |
| 394 | } |
| 395 | catch (const std::exception& e) |
| 396 | { |
| 397 | throw ConfigFile::Error("Invalid value for option \"" + |
| 398 | i->first + "\" in \"udp\" section"); |
| 399 | } |
| 400 | } |
| 401 | else if (i->first == "keep_alive_interval") |
| 402 | { |
| 403 | try |
| 404 | { |
| 405 | keepAliveInterval = i->second.get_value<size_t>(); |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 406 | |
| 407 | /// \todo Make use of keepAliveInterval |
| 408 | (void)(keepAliveInterval); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 409 | } |
| 410 | catch (const std::exception& e) |
| 411 | { |
| 412 | throw ConfigFile::Error("Invalid value for option \"" + |
| 413 | i->first + "\" in \"udp\" section"); |
| 414 | } |
| 415 | } |
| 416 | else if (i->first == "mcast") |
| 417 | { |
| 418 | useMcast = parseYesNo(i, i->first, "udp"); |
| 419 | } |
| 420 | else if (i->first == "mcast_port") |
| 421 | { |
| 422 | mcastPort = i->second.get_value<std::string>(); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 423 | try |
| 424 | { |
| 425 | uint16_t portNo = boost::lexical_cast<uint16_t>(mcastPort); |
| 426 | NFD_LOG_TRACE("UDP multicast port set to " << portNo); |
| 427 | } |
| 428 | catch (const std::bad_cast& error) |
| 429 | { |
| 430 | throw ConfigFile::Error("Invalid value for option " + |
| 431 | i->first + "\" in \"udp\" section"); |
| 432 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 433 | } |
| 434 | else if (i->first == "mcast_group") |
| 435 | { |
| 436 | using namespace boost::asio::ip; |
| 437 | mcastGroup = i->second.get_value<std::string>(); |
| 438 | try |
| 439 | { |
| 440 | address mcastGroupTest = address::from_string(mcastGroup); |
| 441 | if (!mcastGroupTest.is_v4()) |
| 442 | { |
| 443 | throw ConfigFile::Error("Invalid value for option \"" + |
| 444 | i->first + "\" in \"udp\" section"); |
| 445 | } |
| 446 | } |
| 447 | catch(const std::runtime_error& e) |
| 448 | { |
| 449 | throw ConfigFile::Error("Invalid value for option \"" + |
| 450 | i->first + "\" in \"udp\" section"); |
| 451 | } |
| 452 | } |
| 453 | else |
| 454 | { |
| 455 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"udp\" section"); |
| 456 | } |
| 457 | } |
| 458 | |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 459 | if (!enableV4 && !enableV6) |
| 460 | { |
| 461 | throw ConfigFile::Error("IPv4 and IPv6 channels have been disabled." |
| 462 | " Remove \"udp\" section to disable UDP channels or" |
| 463 | " re-enable at least one channel type."); |
| 464 | } |
| 465 | else if (useMcast && !enableV4) |
| 466 | { |
| 467 | throw ConfigFile::Error("IPv4 multicast requested, but IPv4 channels" |
| 468 | " have been disabled (conflicting configuration options set)"); |
| 469 | } |
| 470 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 471 | /// \todo what is keep alive interval used for? |
| 472 | |
| 473 | if (!isDryRun) |
| 474 | { |
| 475 | shared_ptr<UdpFactory> factory = make_shared<UdpFactory>(boost::cref(port)); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 476 | m_factories.insert(std::make_pair("udp", factory)); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 477 | |
Steve DiBenedetto | 9515287 | 2014-04-11 12:40:59 -0600 | [diff] [blame] | 478 | if (enableV4) |
| 479 | { |
| 480 | shared_ptr<UdpChannel> v4Channel = |
| 481 | factory->createChannel("0.0.0.0", port, time::seconds(timeout)); |
| 482 | |
| 483 | v4Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 484 | UdpChannel::ConnectFailedCallback()); |
| 485 | |
| 486 | m_factories.insert(std::make_pair("udp4", factory)); |
| 487 | } |
| 488 | |
| 489 | if (enableV6) |
| 490 | { |
| 491 | shared_ptr<UdpChannel> v6Channel = |
| 492 | factory->createChannel("::", port, time::seconds(timeout)); |
| 493 | |
| 494 | v6Channel->listen(bind(&FaceTable::add, &m_faceTable, _1), |
| 495 | UdpChannel::ConnectFailedCallback()); |
| 496 | m_factories.insert(std::make_pair("udp6", factory)); |
| 497 | } |
| 498 | |
| 499 | if (useMcast && enableV4) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 500 | { |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 501 | for (std::list<shared_ptr<NetworkInterfaceInfo> >::const_iterator i = nicList.begin(); |
| 502 | i != nicList.end(); |
| 503 | ++i) |
| 504 | { |
| 505 | const shared_ptr<NetworkInterfaceInfo>& nic = *i; |
| 506 | if (nic->isUp() && nic->isMulticastCapable() && !nic->ipv4Addresses.empty()) |
| 507 | { |
| 508 | shared_ptr<MulticastUdpFace> newFace = |
| 509 | factory->createMulticastFace(nic->ipv4Addresses[0].to_string(), |
| 510 | mcastGroup, mcastPort); |
| 511 | |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 512 | addCreatedFaceToForwarder(newFace); |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 516 | } |
| 517 | } |
| 518 | |
| 519 | void |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 520 | FaceManager::processSectionEther(const ConfigSection& configSection, |
| 521 | bool isDryRun, |
| 522 | const std::list<shared_ptr<NetworkInterfaceInfo> >& nicList) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 523 | { |
| 524 | // ; the ether section contains settings of Ethernet faces and channels |
| 525 | // ether |
| 526 | // { |
| 527 | // ; NFD creates one Ethernet multicast face per NIC |
| 528 | // mcast yes ; set to 'no' to disable Ethernet multicast, default 'yes' |
| 529 | // mcast_group 01:00:5E:00:17:AA ; Ethernet multicast group |
| 530 | // } |
| 531 | |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 532 | #if defined(HAVE_PCAP) |
| 533 | |
| 534 | using ethernet::Address; |
| 535 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 536 | bool useMcast = true; |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 537 | Address mcastGroup(ethernet::getDefaultMulticastAddress()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 538 | |
| 539 | for (ConfigSection::const_iterator i = configSection.begin(); |
| 540 | i != configSection.end(); |
| 541 | ++i) |
| 542 | { |
| 543 | if (i->first == "mcast") |
| 544 | { |
| 545 | useMcast = parseYesNo(i, i->first, "ether"); |
| 546 | } |
| 547 | |
| 548 | else if (i->first == "mcast_group") |
| 549 | { |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 550 | mcastGroup = Address::fromString(i->second.get_value<std::string>()); |
| 551 | if (mcastGroup.isNull()) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 552 | { |
| 553 | throw ConfigFile::Error("Invalid value for option \"" + |
| 554 | i->first + "\" in \"ether\" section"); |
| 555 | } |
| 556 | } |
| 557 | else |
| 558 | { |
| 559 | throw ConfigFile::Error("Unrecognized option \"" + i->first + "\" in \"ether\" section"); |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | if (!isDryRun) |
| 564 | { |
| 565 | shared_ptr<EthernetFactory> factory = make_shared<EthernetFactory>(); |
| 566 | m_factories.insert(std::make_pair("ether", factory)); |
| 567 | |
| 568 | if (useMcast) |
| 569 | { |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 570 | for (std::list<shared_ptr<NetworkInterfaceInfo> >::const_iterator i = nicList.begin(); |
| 571 | i != nicList.end(); |
| 572 | ++i) |
| 573 | { |
| 574 | const shared_ptr<NetworkInterfaceInfo>& nic = *i; |
| 575 | if (nic->isUp() && nic->isMulticastCapable()) |
| 576 | { |
| 577 | try |
| 578 | { |
| 579 | shared_ptr<EthernetFace> newFace = |
Davide Pesavento | b60cc12 | 2014-03-19 19:26:02 +0100 | [diff] [blame] | 580 | factory->createMulticastFace(nic, mcastGroup); |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 581 | |
| 582 | addCreatedFaceToForwarder(newFace); |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 583 | } |
| 584 | catch (const EthernetFactory::Error& factoryError) |
| 585 | { |
| 586 | NFD_LOG_ERROR(factoryError.what() << ", continuing"); |
| 587 | } |
| 588 | catch (const EthernetFace::Error& faceError) |
| 589 | { |
| 590 | NFD_LOG_ERROR(faceError.what() << ", continuing"); |
| 591 | } |
| 592 | } |
| 593 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 594 | } |
| 595 | } |
Steve DiBenedetto | 4aca99c | 2014-03-11 11:27:54 -0600 | [diff] [blame] | 596 | #else |
| 597 | throw ConfigFile::Error("NFD was compiled without libpcap, cannot process \"ether\" section"); |
| 598 | #endif // HAVE_PCAP |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | |
| 602 | void |
| 603 | FaceManager::onFaceRequest(const Interest& request) |
| 604 | { |
| 605 | const Name& command = request.getName(); |
| 606 | const size_t commandNComps = command.size(); |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 607 | const Name::Component& verb = command.get(COMMAND_PREFIX.size()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 608 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 609 | UnsignedVerbDispatchTable::const_iterator unsignedVerbProcessor = m_unsignedVerbDispatch.find(verb); |
| 610 | if (unsignedVerbProcessor != m_unsignedVerbDispatch.end()) |
| 611 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 612 | NFD_LOG_DEBUG("command result: processing verb: " << verb); |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 613 | (unsignedVerbProcessor->second)(this, boost::cref(request)); |
| 614 | } |
| 615 | else if (COMMAND_UNSIGNED_NCOMPS <= commandNComps && |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 616 | commandNComps < COMMAND_SIGNED_NCOMPS) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 617 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 618 | NFD_LOG_DEBUG("command result: unsigned verb: " << command); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 619 | sendResponse(command, 401, "Signature required"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 620 | } |
| 621 | else if (commandNComps < COMMAND_SIGNED_NCOMPS || |
| 622 | !COMMAND_PREFIX.isPrefixOf(command)) |
| 623 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 624 | NFD_LOG_DEBUG("command result: malformed"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 625 | sendResponse(command, 400, "Malformed command"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 626 | } |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 627 | else |
| 628 | { |
| 629 | validate(request, |
| 630 | bind(&FaceManager::onValidatedFaceRequest, this, _1), |
| 631 | bind(&ManagerBase::onCommandValidationFailed, this, _1, _2)); |
| 632 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | void |
| 636 | FaceManager::onValidatedFaceRequest(const shared_ptr<const Interest>& request) |
| 637 | { |
| 638 | const Name& command = request->getName(); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 639 | const Name::Component& verb = command[COMMAND_PREFIX.size()]; |
| 640 | const Name::Component& parameterComponent = command[COMMAND_PREFIX.size() + 1]; |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 641 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 642 | SignedVerbDispatchTable::const_iterator signedVerbProcessor = m_signedVerbDispatch.find(verb); |
| 643 | if (signedVerbProcessor != m_signedVerbDispatch.end()) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 644 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 645 | ControlParameters parameters; |
| 646 | if (!extractParameters(parameterComponent, parameters)) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 647 | { |
| 648 | sendResponse(command, 400, "Malformed command"); |
| 649 | return; |
| 650 | } |
| 651 | |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 652 | NFD_LOG_DEBUG("command result: processing verb: " << verb); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 653 | (signedVerbProcessor->second)(this, *request, parameters); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 654 | } |
| 655 | else |
| 656 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 657 | NFD_LOG_DEBUG("command result: unsupported verb: " << verb); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 658 | sendResponse(command, 501, "Unsupported command"); |
| 659 | } |
| 660 | |
| 661 | } |
| 662 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 663 | void |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 664 | FaceManager::addCreatedFaceToForwarder(const shared_ptr<Face>& newFace) |
| 665 | { |
| 666 | m_faceTable.add(newFace); |
| 667 | |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 668 | //NFD_LOG_DEBUG("Created face " << newFace->getRemoteUri() << " ID " << newFace->getId()); |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | void |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 672 | FaceManager::onCreated(const Name& requestName, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 673 | ControlParameters& parameters, |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 674 | const shared_ptr<Face>& newFace) |
| 675 | { |
Alexander Afanasyev | bbe3f0c | 2014-03-23 11:44:01 -0700 | [diff] [blame] | 676 | addCreatedFaceToForwarder(newFace); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 677 | parameters.setFaceId(newFace->getId()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 678 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 679 | sendResponse(requestName, 200, "Success", parameters.wireEncode()); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | void |
| 683 | FaceManager::onConnectFailed(const Name& requestName, const std::string& reason) |
| 684 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 685 | NFD_LOG_DEBUG("Failed to create face: " << reason); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 686 | sendResponse(requestName, 408, reason); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 690 | FaceManager::createFace(const Interest& request, |
| 691 | ControlParameters& parameters) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 692 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 693 | const Name& requestName = request.getName(); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 694 | ndn::nfd::FaceCreateCommand command; |
| 695 | |
| 696 | if (!validateParameters(command, parameters)) |
| 697 | { |
| 698 | sendResponse(requestName, 400, "Malformed command"); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 699 | NFD_LOG_TRACE("invalid control parameters URI"); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 700 | return; |
| 701 | } |
| 702 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 703 | FaceUri uri; |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 704 | if (!uri.parse(parameters.getUri())) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 705 | { |
| 706 | sendResponse(requestName, 400, "Malformed command"); |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 707 | NFD_LOG_TRACE("failed to parse URI"); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 708 | return; |
| 709 | } |
| 710 | |
| 711 | FactoryMap::iterator factory = m_factories.find(uri.getScheme()); |
| 712 | if (factory == m_factories.end()) |
| 713 | { |
| 714 | sendResponse(requestName, 501, "Unsupported protocol"); |
| 715 | return; |
| 716 | } |
| 717 | |
Steve DiBenedetto | ca53ac6 | 2014-03-27 19:58:40 -0600 | [diff] [blame] | 718 | try |
| 719 | { |
| 720 | factory->second->createFace(uri, |
| 721 | bind(&FaceManager::onCreated, |
| 722 | this, requestName, parameters, _1), |
| 723 | bind(&FaceManager::onConnectFailed, |
| 724 | this, requestName, _1)); |
| 725 | } |
| 726 | catch (const std::runtime_error& error) |
| 727 | { |
| 728 | std::string errorMessage = "NFD error: "; |
| 729 | errorMessage += error.what(); |
| 730 | |
| 731 | NFD_LOG_ERROR(errorMessage); |
| 732 | sendResponse(requestName, 500, errorMessage); |
| 733 | } |
| 734 | catch (const std::logic_error& error) |
| 735 | { |
| 736 | std::string errorMessage = "NFD error: "; |
| 737 | errorMessage += error.what(); |
| 738 | |
| 739 | NFD_LOG_ERROR(errorMessage); |
| 740 | sendResponse(requestName, 500, errorMessage); |
| 741 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | |
| 745 | void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 746 | FaceManager::destroyFace(const Interest& request, |
| 747 | ControlParameters& parameters) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 748 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 749 | const Name& requestName = request.getName(); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 750 | ndn::nfd::FaceDestroyCommand command; |
| 751 | |
| 752 | if (!validateParameters(command, parameters)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 753 | { |
| 754 | sendResponse(requestName, 400, "Malformed command"); |
| 755 | return; |
| 756 | } |
| 757 | |
| 758 | shared_ptr<Face> target = m_faceTable.get(parameters.getFaceId()); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 759 | if (static_cast<bool>(target)) |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 760 | { |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 761 | target->close(); |
| 762 | } |
Steve DiBenedetto | ba74905 | 2014-03-22 19:54:53 -0600 | [diff] [blame] | 763 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 764 | sendResponse(requestName, 200, "Success", parameters.wireEncode()); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 765 | |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 766 | } |
| 767 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 768 | void |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 769 | FaceManager::onAddFace(shared_ptr<Face> face) |
| 770 | { |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 771 | ndn::nfd::FaceEventNotification notification; |
| 772 | notification.setKind(ndn::nfd::FACE_EVENT_CREATED) |
| 773 | .setFaceId(face->getId()) |
| 774 | .setRemoteUri(face->getRemoteUri().toString()) |
| 775 | .setLocalUri(face->getLocalUri().toString()) |
| 776 | .setFlags(getFaceFlags(*face)); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 777 | |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 778 | m_notificationStream.postNotification(notification); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | void |
| 782 | FaceManager::onRemoveFace(shared_ptr<Face> face) |
| 783 | { |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 784 | ndn::nfd::FaceEventNotification notification; |
| 785 | notification.setKind(ndn::nfd::FACE_EVENT_DESTROYED) |
| 786 | .setFaceId(face->getId()) |
| 787 | .setRemoteUri(face->getRemoteUri().toString()) |
| 788 | .setLocalUri(face->getLocalUri().toString()) |
| 789 | .setFlags(getFaceFlags(*face)); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 790 | |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 791 | m_notificationStream.postNotification(notification); |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 795 | bool |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 796 | FaceManager::extractLocalControlParameters(const Interest& request, |
| 797 | ControlParameters& parameters, |
| 798 | ControlCommand& command, |
| 799 | shared_ptr<LocalFace>& outFace, |
| 800 | LocalControlFeature& outFeature) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 801 | { |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 802 | if (!validateParameters(command, parameters)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 803 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 804 | sendResponse(request.getName(), 400, "Malformed command"); |
| 805 | return false; |
| 806 | } |
| 807 | |
| 808 | shared_ptr<Face> face = m_faceTable.get(request.getIncomingFaceId()); |
| 809 | |
| 810 | if (!static_cast<bool>(face)) |
| 811 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 812 | NFD_LOG_DEBUG("command result: faceid " << request.getIncomingFaceId() << " not found"); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 813 | sendResponse(request.getName(), 410, "Face not found"); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 814 | return false; |
| 815 | } |
| 816 | else if (!face->isLocal()) |
| 817 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 818 | NFD_LOG_DEBUG("command result: cannot enable local control on non-local faceid " << |
| 819 | face->getId()); |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 820 | sendResponse(request.getName(), 412, "Face is non-local"); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 821 | return false; |
| 822 | } |
| 823 | |
| 824 | outFace = dynamic_pointer_cast<LocalFace>(face); |
| 825 | outFeature = static_cast<LocalControlFeature>(parameters.getLocalControlFeature()); |
| 826 | |
| 827 | return true; |
| 828 | } |
| 829 | |
| 830 | void |
| 831 | FaceManager::enableLocalControl(const Interest& request, |
| 832 | ControlParameters& parameters) |
| 833 | { |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 834 | ndn::nfd::FaceEnableLocalControlCommand command; |
| 835 | |
| 836 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 837 | shared_ptr<LocalFace> face; |
| 838 | LocalControlFeature feature; |
| 839 | |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 840 | if (extractLocalControlParameters(request, parameters, command, face, feature)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 841 | { |
| 842 | face->setLocalControlHeaderFeature(feature, true); |
| 843 | sendResponse(request.getName(), 200, "Success", parameters.wireEncode()); |
| 844 | } |
| 845 | } |
| 846 | |
| 847 | void |
| 848 | FaceManager::disableLocalControl(const Interest& request, |
| 849 | ControlParameters& parameters) |
| 850 | { |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 851 | ndn::nfd::FaceDisableLocalControlCommand command; |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 852 | shared_ptr<LocalFace> face; |
| 853 | LocalControlFeature feature; |
| 854 | |
Steve DiBenedetto | 51d242a | 2014-03-31 13:46:43 -0600 | [diff] [blame] | 855 | if (extractLocalControlParameters(request, parameters, command, face, feature)) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 856 | { |
| 857 | face->setLocalControlHeaderFeature(feature, false); |
| 858 | sendResponse(request.getName(), 200, "Success", parameters.wireEncode()); |
| 859 | } |
| 860 | } |
| 861 | |
Steve DiBenedetto | fbb40a8 | 2014-03-11 19:40:15 -0600 | [diff] [blame] | 862 | void |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 863 | FaceManager::listFaces(const Interest& request) |
| 864 | { |
| 865 | const Name& command = request.getName(); |
| 866 | const size_t commandNComps = command.size(); |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 867 | |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 868 | if (commandNComps < LIST_COMMAND_NCOMPS || |
| 869 | !LIST_COMMAND_PREFIX.isPrefixOf(command)) |
| 870 | { |
Alexander Afanasyev | bf9edee | 2014-03-31 23:05:27 -0700 | [diff] [blame] | 871 | NFD_LOG_DEBUG("command result: malformed"); |
Steve DiBenedetto | 9f6c364 | 2014-03-10 17:02:27 -0600 | [diff] [blame] | 872 | sendResponse(command, 400, "Malformed command"); |
| 873 | return; |
| 874 | } |
| 875 | |
| 876 | m_statusPublisher.publish(); |
| 877 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 878 | |
| 879 | } // namespace nfd |