blob: 11921cc4a817b6b99a74c26e4f1adc2fe97da638 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi2d491752017-07-14 21:32:05 +00002/*
Davide Pesavento15b55052018-01-27 19:09:28 -05003 * Copyright (c) 2014-2018, Regents of the University of California,
Chengyu Fan4381fb62015-01-14 11:37:04 -07004 * 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.
Wentao Shang53df1632014-04-21 12:01:32 -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 */
Wentao Shang53df1632014-04-21 12:01:32 -070025
26#include "websocket-factory.hpp"
27
28namespace nfd {
Junxiao Shi3409cd32017-01-18 15:31:27 +000029namespace face {
Wentao Shang53df1632014-04-21 12:01:32 -070030
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020031namespace ip = boost::asio::ip;
Wentao Shang53df1632014-04-21 12:01:32 -070032
Davide Pesaventoa3148082018-04-12 18:21:54 -040033NFD_LOG_INIT(WebSocketFactory);
Junxiao Shib47247d2017-01-24 15:09:16 +000034NFD_REGISTER_PROTOCOL_FACTORY(WebSocketFactory);
35
36const std::string&
37WebSocketFactory::getId()
38{
39 static std::string id("websocket");
40 return id;
41}
42
Junxiao Shi0ba6d642017-07-17 00:53:22 +000043WebSocketFactory::WebSocketFactory(const CtorParams& params)
44 : ProtocolFactory(params)
45{
46}
Junxiao Shi3409cd32017-01-18 15:31:27 +000047
48void
49WebSocketFactory::processConfig(OptionalConfigSection configSection,
50 FaceSystem::ConfigContext& context)
51{
52 // websocket
53 // {
54 // listen yes
55 // port 9696
56 // enable_v4 yes
57 // enable_v6 yes
58 // }
59
60 bool wantListen = false;
61 uint16_t port = 9696;
62 bool enableV4 = true;
63 bool enableV6 = true;
64
65 if (configSection) {
66 wantListen = true;
67 for (const auto& pair : *configSection) {
68 const std::string& key = pair.first;
69
70 if (key == "listen") {
71 wantListen = ConfigFile::parseYesNo(pair, "face_system.websocket");
72 }
73 else if (key == "port") {
74 port = ConfigFile::parseNumber<uint16_t>(pair, "face_system.websocket");
75 }
76 else if (key == "enable_v4") {
77 enableV4 = ConfigFile::parseYesNo(pair, "face_system.websocket");
78 }
79 else if (key == "enable_v6") {
80 enableV6 = ConfigFile::parseYesNo(pair, "face_system.websocket");
81 }
82 else {
83 BOOST_THROW_EXCEPTION(ConfigFile::Error("Unrecognized option face_system.websocket." + key));
84 }
85 }
86 }
87
88 if (!enableV4 && !enableV6) {
89 BOOST_THROW_EXCEPTION(ConfigFile::Error(
90 "IPv4 and IPv6 WebSocket channels have been disabled. Remove face_system.websocket section "
91 "to disable WebSocket channels or enable at least one channel type."));
92 }
93
94 if (!enableV4 && enableV6) {
95 // websocketpp's IPv6 socket always accepts IPv4 connections.
96 BOOST_THROW_EXCEPTION(ConfigFile::Error("NFD does not allow pure IPv6 WebSocket channel."));
97 }
98
99 if (!context.isDryRun) {
100 if (!wantListen) {
101 if (!m_channels.empty()) {
102 NFD_LOG_WARN("Cannot close WebSocket channel after initialization");
103 }
104 return;
105 }
106
107 BOOST_ASSERT(enableV4);
108 websocket::Endpoint endpoint(enableV6 ? ip::tcp::v6() : ip::tcp::v4(), port);
109
110 auto channel = this->createChannel(endpoint);
111 if (!channel->isListening()) {
Junxiao Shi2d491752017-07-14 21:32:05 +0000112 channel->listen(this->addFace);
Junxiao Shi3409cd32017-01-18 15:31:27 +0000113 if (m_channels.size() > 1) {
114 NFD_LOG_WARN("Adding WebSocket channel for new endpoint; cannot close existing channels");
115 }
116 }
117 }
118}
119
120void
Davide Pesavento15b55052018-01-27 19:09:28 -0500121WebSocketFactory::createFace(const CreateFaceRequest& req,
Junxiao Shi3409cd32017-01-18 15:31:27 +0000122 const FaceCreatedCallback& onCreated,
123 const FaceCreationFailedCallback& onFailure)
124{
125 onFailure(406, "Unsupported protocol");
126}
127
Wentao Shang53df1632014-04-21 12:01:32 -0700128shared_ptr<WebSocketChannel>
129WebSocketFactory::createChannel(const websocket::Endpoint& endpoint)
130{
Davide Pesavento4b89a6e2017-10-07 15:29:50 -0400131 auto it = m_channels.find(endpoint);
132 if (it != m_channels.end())
133 return it->second;
Wentao Shang53df1632014-04-21 12:01:32 -0700134
Davide Pesavento4b89a6e2017-10-07 15:29:50 -0400135 auto channel = make_shared<WebSocketChannel>(endpoint);
Wentao Shang53df1632014-04-21 12:01:32 -0700136 m_channels[endpoint] = channel;
137
138 return channel;
139}
140
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200141std::vector<shared_ptr<const Channel>>
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600142WebSocketFactory::getChannels() const
143{
Junxiao Shi3409cd32017-01-18 15:31:27 +0000144 return getChannelsFromMap(m_channels);
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600145}
146
Junxiao Shi3409cd32017-01-18 15:31:27 +0000147} // namespace face
Wentao Shang53df1632014-04-21 12:01:32 -0700148} // namespace nfd