ndn-fch-discovery.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2022, 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  * The University of Memphis.
10  *
11  * This file is part of NFD (Named Data Networking Forwarding Daemon).
12  * See AUTHORS.md for complete list of NFD authors and contributors.
13  *
14  * NFD is free software: you can redistribute it and/or modify it under the terms
15  * of the GNU General Public License as published by the Free Software Foundation,
16  * either version 3 of the License, or (at your option) any later version.
17  *
18  * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20  * PURPOSE. See the GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License along with
23  * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24  */
25 
26 #include "ndn-fch-discovery.hpp"
27 
28 #include <boost/algorithm/string.hpp>
29 #include <boost/asio/ip/tcp.hpp>
30 
31 #include <regex>
32 #include <sstream>
33 
34 namespace ndn::autoconfig {
35 
42 class Url
43 {
44 public:
45  Url(const std::string& url)
46  : m_isValid(false)
47  {
48  static const std::regex protocolExp("(\\w+\\d?(\\+\\w+)?)://([^/]*)(\\/[^?]*)?");
49  std::smatch protocolMatch;
50  if (!std::regex_match(url, protocolMatch, protocolExp)) {
51  return;
52  }
53  m_scheme = protocolMatch[1];
54  std::string authority = protocolMatch[3];
55  m_path = protocolMatch[4];
56 
57  // pattern for IPv6 address enclosed in [ ], with optional port number
58  static const std::regex v6Exp("^\\[([a-fA-F0-9:]+)\\](?:\\:(\\d+))?$");
59  // pattern for IPv4-mapped IPv6 address, with optional port number
60  static const std::regex v4MappedV6Exp("^\\[::ffff:(\\d+(?:\\.\\d+){3})\\](?:\\:(\\d+))?$");
61  // pattern for IPv4/hostname/fd/ifname, with optional port number
62  static const std::regex v4HostExp("^([^:]+)(?:\\:(\\d+))?$");
63 
64  if (authority.empty()) {
65  // UNIX, internal
66  }
67  else {
68  std::smatch match;
69  bool isV6 = std::regex_match(authority, match, v6Exp);
70  if (isV6 ||
71  std::regex_match(authority, match, v4MappedV6Exp) ||
72  std::regex_match(authority, match, v4HostExp)) {
73  m_host = match[1];
74  m_port = match[2];
75  }
76  else {
77  return;
78  }
79  }
80  if (m_port.empty()) {
81  m_port = "80";
82  }
83  if (m_path.empty()) {
84  m_path = "/";
85  }
86  m_isValid = true;
87  }
88 
89  bool
90  isValid() const
91  {
92  return m_isValid;
93  }
94 
95  const std::string&
96  getScheme() const
97  {
98  return m_scheme;
99  }
100 
101  const std::string&
102  getHost() const
103  {
104  return m_host;
105  }
106 
107  const std::string&
108  getPort() const
109  {
110  return m_port;
111  }
112 
113  const std::string&
114  getPath() const
115  {
116  return m_path;
117  }
118 
119 private:
120  bool m_isValid;
121  std::string m_scheme;
122  std::string m_host;
123  std::string m_port;
124  std::string m_path;
125 };
126 
127 class HttpException : public std::runtime_error
128 {
129 public:
130  using std::runtime_error::runtime_error;
131 };
132 
133 NdnFchDiscovery::NdnFchDiscovery(const std::string& url)
134  : m_url(url)
135 {
136 }
137 
138 void
139 NdnFchDiscovery::doStart()
140 {
141  try {
142  boost::asio::ip::tcp::iostream requestStream;
143 #if BOOST_VERSION >= 106700
144  requestStream.expires_after(std::chrono::seconds(3));
145 #else
146  requestStream.expires_from_now(boost::posix_time::seconds(3));
147 #endif // BOOST_VERSION >= 106700
148 
149  Url url(m_url);
150  if (!url.isValid()) {
151  NDN_THROW(HttpException("Invalid NDN-FCH URL: " + m_url));
152  }
153  if (!boost::iequals(url.getScheme(), "http")) {
154  NDN_THROW(HttpException("Only http:// NDN-FCH URLs are supported"));
155  }
156 
157  requestStream.connect(url.getHost(), url.getPort());
158  if (!requestStream) {
159  NDN_THROW(HttpException("HTTP connection error to " + m_url));
160  }
161 
162  requestStream << "GET " << url.getPath() << " HTTP/1.0\r\n";
163  requestStream << "Host: " << url.getHost() << ":" << url.getPort() << "\r\n";
164  requestStream << "Accept: */*\r\n";
165  requestStream << "Cache-Control: no-cache\r\n";
166  requestStream << "Connection: close\r\n\r\n";
167  requestStream.flush();
168 
169  std::string statusLine;
170  std::getline(requestStream, statusLine);
171  if (!requestStream) {
172  NDN_THROW(HttpException("HTTP communication error"));
173  }
174 
175  std::stringstream responseStream(statusLine);
176  std::string httpVersion;
177  responseStream >> httpVersion;
178  unsigned int statusCode;
179  responseStream >> statusCode;
180  std::string statusMessage;
181 
182  std::getline(responseStream, statusMessage);
183  if (!static_cast<bool>(requestStream) || httpVersion.substr(0, 5) != "HTTP/") {
184  NDN_THROW(HttpException("HTTP communication error"));
185  }
186  if (statusCode != 200) {
187  boost::trim(statusMessage);
188  NDN_THROW(HttpException("HTTP request failed: " + to_string(statusCode) + " " + statusMessage));
189  }
190  std::string header;
191  while (std::getline(requestStream, header) && header != "\r")
192  ;
193 
194  std::string hubHost;
195  requestStream >> hubHost;
196  if (hubHost.empty()) {
197  NDN_THROW(HttpException("NDN-FCH did not return hub host"));
198  }
199 
200  this->provideHubFaceUri("udp://" + hubHost);
201  }
202  catch (const std::runtime_error& e) {
203  this->fail(e.what());
204  }
205 }
206 
207 } // namespace ndn::autoconfig
NdnFchDiscovery(const std::string &url)
Create stage to discover NDN hub using NDN-FCH protocol.
void provideHubFaceUri(const std::string &s)
Parse HUB FaceUri from string and declare success.
Definition: stage.cpp:43
void fail(const std::string &msg)
Definition: stage.cpp:63