blob: 598a2c48c7bb0851a9002ebc0dd27beebd02c48c [file] [log] [blame]
Alexander Afanasyeva9034b02014-01-26 18:32:02 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Steve DiBenedettoef04f272014-06-04 14:28:31 -06003 * 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 * The University of Memphis
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080025
Alexander Afanasyev0eb70652014-02-27 18:35:07 -080026#include "tcp-factory.hpp"
Alexander Afanasyevd6655302014-02-28 08:41:28 -080027#include "core/resolver.hpp"
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080028#include "core/logger.hpp"
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060029#include "core/network-interface.hpp"
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -080030
31NFD_LOG_INIT("TcpFactory");
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080032
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080033namespace nfd {
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080034
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080035static const boost::asio::ip::address_v4 ALL_V4_ENDPOINT(
36 boost::asio::ip::address_v4::from_string("0.0.0.0"));
37
38static const boost::asio::ip::address_v6 ALL_V6_ENDPOINT(
39 boost::asio::ip::address_v6::from_string("::"));
40
Alexander Afanasyevd6655302014-02-28 08:41:28 -080041TcpFactory::TcpFactory(const std::string& defaultPort/* = "6363"*/)
42 : m_defaultPort(defaultPort)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -080043{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060044}
45
46void
47TcpFactory::prohibitEndpoint(const tcp::Endpoint& endpoint)
48{
49 using namespace boost::asio::ip;
50
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060051 const address& address = endpoint.address();
52
53 if (address.is_v4() && address == ALL_V4_ENDPOINT)
54 {
55 prohibitAllIpv4Endpoints(endpoint.port());
56 }
57 else if (endpoint.address().is_v6() && address == ALL_V6_ENDPOINT)
58 {
59 prohibitAllIpv6Endpoints(endpoint.port());
60 }
61
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080062 NFD_LOG_TRACE("prohibiting TCP " << endpoint);
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060063
64 m_prohibitedEndpoints.insert(endpoint);
65}
66
67void
68TcpFactory::prohibitAllIpv4Endpoints(const uint16_t port)
69{
70 using namespace boost::asio::ip;
71
Davide Pesaventob499a602014-11-18 22:36:56 +010072 for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) {
73 for (const address_v4& addr : nic.ipv4Addresses) {
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080074 if (addr != ALL_V4_ENDPOINT) {
75 prohibitEndpoint(tcp::Endpoint(addr, port));
76 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060077 }
Davide Pesaventob499a602014-11-18 22:36:56 +010078 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060079}
80
81void
82TcpFactory::prohibitAllIpv6Endpoints(const uint16_t port)
83{
84 using namespace boost::asio::ip;
85
Davide Pesaventob499a602014-11-18 22:36:56 +010086 for (const NetworkInterfaceInfo& nic : listNetworkInterfaces()) {
87 for (const address_v6& addr : nic.ipv6Addresses) {
Alexander Afanasyev70aaf8a2014-12-13 00:44:22 -080088 if (addr != ALL_V6_ENDPOINT) {
89 prohibitEndpoint(tcp::Endpoint(addr, port));
90 }
Steve DiBenedettoca53ac62014-03-27 19:58:40 -060091 }
Davide Pesaventob499a602014-11-18 22:36:56 +010092 }
Alexander Afanasyevd6655302014-02-28 08:41:28 -080093}
94
95shared_ptr<TcpChannel>
96TcpFactory::createChannel(const tcp::Endpoint& endpoint)
97{
98 shared_ptr<TcpChannel> channel = findChannel(endpoint);
Davide Pesaventob499a602014-11-18 22:36:56 +010099 if (static_cast<bool>(channel))
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800100 return channel;
101
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700102 channel = make_shared<TcpChannel>(endpoint);
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800103 m_channels[endpoint] = channel;
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600104 prohibitEndpoint(endpoint);
105
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800106 NFD_LOG_DEBUG("Channel [" << endpoint << "] created");
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800107 return channel;
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800108}
109
110shared_ptr<TcpChannel>
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800111TcpFactory::createChannel(const std::string& localHost, const std::string& localPort)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800112{
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800113 return createChannel(TcpResolver::syncResolve(localHost, localPort));
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800114}
115
116shared_ptr<TcpChannel>
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800117TcpFactory::findChannel(const tcp::Endpoint& localEndpoint)
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800118{
Alexander Afanasyev8ad71ba2014-01-27 00:07:14 -0800119 ChannelMap::iterator i = m_channels.find(localEndpoint);
120 if (i != m_channels.end())
121 return i->second;
122 else
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800123 return shared_ptr<TcpChannel>();
Alexander Afanasyeva9034b02014-01-26 18:32:02 -0800124}
125
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800126void
127TcpFactory::createFace(const FaceUri& uri,
128 const FaceCreatedCallback& onCreated,
129 const FaceConnectFailedCallback& onConnectFailed)
130{
131 resolver::AddressSelector addressSelector = resolver::AnyAddress();
132 if (uri.getScheme() == "tcp4")
133 addressSelector = resolver::Ipv4Address();
134 else if (uri.getScheme() == "tcp6")
135 addressSelector = resolver::Ipv6Address();
136
Alexander Afanasyev86bc91a2014-08-28 22:29:16 -0700137 if (!uri.getPath().empty() && uri.getPath() != "/")
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600138 {
139 onConnectFailed("Invalid URI");
140 }
141
Junxiao Shi61e3cc52014-03-03 20:40:28 -0700142 TcpResolver::asyncResolve(uri.getHost(),
Alexander Afanasyev5f1ec252014-02-28 10:59:17 -0800143 uri.getPort().empty() ? m_defaultPort : uri.getPort(),
144 bind(&TcpFactory::continueCreateFaceAfterResolve, this, _1,
145 onCreated, onConnectFailed),
146 onConnectFailed,
147 addressSelector);
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800148}
149
150void
151TcpFactory::continueCreateFaceAfterResolve(const tcp::Endpoint& endpoint,
152 const FaceCreatedCallback& onCreated,
153 const FaceConnectFailedCallback& onConnectFailed)
154{
Steve DiBenedettoca53ac62014-03-27 19:58:40 -0600155 if (m_prohibitedEndpoints.find(endpoint) != m_prohibitedEndpoints.end())
156 {
157 onConnectFailed("Requested endpoint is prohibited "
158 "(reserved by this NFD or disallowed by face management protocol)");
159 return;
160 }
161
Alexander Afanasyevd6655302014-02-28 08:41:28 -0800162 // very simple logic for now
163
164 for (ChannelMap::iterator channel = m_channels.begin();
165 channel != m_channels.end();
166 ++channel)
167 {
168 if ((channel->first.address().is_v4() && endpoint.address().is_v4()) ||
169 (channel->first.address().is_v6() && endpoint.address().is_v6()))
170 {
171 channel->second->connect(endpoint, onCreated, onConnectFailed);
172 return;
173 }
174 }
175 onConnectFailed("No channels available to connect to "
176 + boost::lexical_cast<std::string>(endpoint));
177}
178
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600179std::list<shared_ptr<const Channel> >
180TcpFactory::getChannels() const
181{
182 std::list<shared_ptr<const Channel> > channels;
183 for (ChannelMap::const_iterator i = m_channels.begin(); i != m_channels.end(); ++i)
184 {
185 channels.push_back(i->second);
186 }
187
188 return channels;
189}
190
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800191} // namespace nfd