blob: 172f797dee508532d827ea74308511bd91b20660 [file] [log] [blame]
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry0c841642018-01-17 15:01:00 -07002/*
Davide Pesavento19779d82019-02-14 13:40:04 -05003 * Copyright (c) 2014-2019, Regents of the University of California,
Davide Pesavento6ad890a2015-03-09 03:43:17 +01004 * 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/>.
Davide Pesavento6ad890a2015-03-09 03:43:17 +010024 */
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010025
26#include "unix-stream-channel.hpp"
Yukai Tu74c895d2015-09-21 01:11:51 -070027#include "generic-link-service.hpp"
Yukai Tu74c895d2015-09-21 01:11:51 -070028#include "unix-stream-transport.hpp"
Junxiao Shi61e3cc52014-03-03 20:40:28 -070029#include "core/global-io.hpp"
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010030
31#include <boost/filesystem.hpp>
Davide Pesavento9cec8ee2014-02-19 11:21:59 +010032#include <sys/stat.h> // for chmod()
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010033
34namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040035namespace face {
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010036
Davide Pesaventoa3148082018-04-12 18:21:54 -040037NFD_LOG_INIT(UnixStreamChannel);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010038
Eric Newberry0c841642018-01-17 15:01:00 -070039UnixStreamChannel::UnixStreamChannel(const unix_stream::Endpoint& endpoint,
40 bool wantCongestionMarking)
Davide Pesavento292e5e12015-03-13 02:08:33 +010041 : m_endpoint(endpoint)
42 , m_acceptor(getGlobalIoService())
43 , m_socket(getGlobalIoService())
Davide Pesaventoc19408d2017-04-08 00:42:55 -040044 , m_size(0)
Eric Newberry0c841642018-01-17 15:01:00 -070045 , m_wantCongestionMarking(wantCongestionMarking)
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010046{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010047 setUri(FaceUri(m_endpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040048 NFD_LOG_CHAN_INFO("Creating channel");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010049}
50
51UnixStreamChannel::~UnixStreamChannel()
52{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010053 if (isListening()) {
54 // use the non-throwing variants during destruction
55 // and ignore any errors
56 boost::system::error_code error;
57 m_acceptor.close(error);
Davide Pesavento77911cc2017-04-08 22:12:30 -040058 NFD_LOG_CHAN_DEBUG("Removing socket file");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010059 boost::filesystem::remove(m_endpoint.path(), error);
60 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010061}
62
63void
64UnixStreamChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010065 const FaceCreationFailedCallback& onAcceptFailed,
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010066 int backlog/* = acceptor::max_connections*/)
67{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010068 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040069 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010070 return;
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020071 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010072
73 namespace fs = boost::filesystem;
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020074
75 fs::path socketPath(m_endpoint.path());
76 fs::file_type type = fs::symlink_status(socketPath).type();
77
Davide Pesavento6ad890a2015-03-09 03:43:17 +010078 if (type == fs::socket_file) {
79 boost::system::error_code error;
Davide Pesavento292e5e12015-03-13 02:08:33 +010080 boost::asio::local::stream_protocol::socket socket(getGlobalIoService());
Davide Pesavento6ad890a2015-03-09 03:43:17 +010081 socket.connect(m_endpoint, error);
Davide Pesavento77911cc2017-04-08 22:12:30 -040082 NFD_LOG_CHAN_TRACE("connect() on existing socket file returned: " << error.message());
Davide Pesavento6ad890a2015-03-09 03:43:17 +010083 if (!error) {
84 // someone answered, leave the socket alone
Davide Pesavento19779d82019-02-14 13:40:04 -050085 NDN_THROW(Error("Socket file at " + m_endpoint.path() + " belongs to another NFD process"));
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020086 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010087 else if (error == boost::asio::error::connection_refused ||
88 error == boost::asio::error::timed_out) {
89 // no one is listening on the remote side,
90 // we can safely remove the stale socket
Davide Pesavento77911cc2017-04-08 22:12:30 -040091 NFD_LOG_CHAN_DEBUG("Removing stale socket file");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010092 fs::remove(socketPath);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010093 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010094 }
95 else if (type != fs::file_not_found) {
Davide Pesavento19779d82019-02-14 13:40:04 -050096 NDN_THROW(Error(m_endpoint.path() + " already exists and is not a socket file"));
Davide Pesavento6ad890a2015-03-09 03:43:17 +010097 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010098
Davide Pesavento6ad890a2015-03-09 03:43:17 +010099 m_acceptor.open();
100 m_acceptor.bind(m_endpoint);
101 m_acceptor.listen(backlog);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100102
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400103 if (::chmod(m_endpoint.path().data(), 0666) < 0) {
Davide Pesavento19779d82019-02-14 13:40:04 -0500104 NDN_THROW_ERRNO(Error("Failed to chmod " + m_endpoint.path()));
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100105 }
Davide Pesavento9cec8ee2014-02-19 11:21:59 +0100106
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100107 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -0400108 NFD_LOG_CHAN_DEBUG("Started listening");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100109}
110
111void
Davide Pesavento292e5e12015-03-13 02:08:33 +0100112UnixStreamChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100113 const FaceCreationFailedCallback& onAcceptFailed)
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100114{
Davide Pesaventoe4b22382018-06-10 14:37:24 -0400115 m_acceptor.async_accept(m_socket, [=] (const auto& e) { this->handleAccept(e, onFaceCreated, onAcceptFailed); });
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100116}
117
118void
119UnixStreamChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100120 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100121 const FaceCreationFailedCallback& onAcceptFailed)
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100122{
123 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400124 if (error != boost::asio::error::operation_aborted) {
125 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
126 if (onAcceptFailed)
127 onAcceptFailed(500, "Accept failed: " + error.message());
128 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100129 return;
130 }
131
Davide Pesavento77911cc2017-04-08 22:12:30 -0400132 NFD_LOG_CHAN_TRACE("Incoming connection via fd " << m_socket.native_handle());
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100133
Eric Newberry0c841642018-01-17 15:01:00 -0700134 GenericLinkService::Options options;
135 options.allowCongestionMarking = m_wantCongestionMarking;
136 auto linkService = make_unique<GenericLinkService>(options);
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400137 auto transport = make_unique<UnixStreamTransport>(std::move(m_socket));
Junxiao Shicde37ad2015-12-24 01:02:05 -0700138 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
Davide Pesaventoc19408d2017-04-08 00:42:55 -0400139
140 ++m_size;
141 connectFaceClosedSignal(*face, [this] { --m_size; });
142
Davide Pesavento292e5e12015-03-13 02:08:33 +0100143 onFaceCreated(face);
144
Davide Pesaventoe22d8c82014-04-14 04:01:52 +0200145 // prepare accepting the next connection
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100146 accept(onFaceCreated, onAcceptFailed);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100147}
148
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400149} // namespace face
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100150} // namespace nfd