blob: 87af30885c88e15d3a18c8f6225c9610d796ea8a [file] [log] [blame]
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento8fd15e62017-04-06 19:58:54 -04003 * Copyright (c) 2014-2017, 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
37NFD_LOG_INIT("UnixStreamChannel");
38
Junxiao Shi61e3cc52014-03-03 20:40:28 -070039UnixStreamChannel::UnixStreamChannel(const unix_stream::Endpoint& endpoint)
Davide Pesavento292e5e12015-03-13 02:08:33 +010040 : m_endpoint(endpoint)
41 , m_acceptor(getGlobalIoService())
42 , m_socket(getGlobalIoService())
Davide Pesaventoc19408d2017-04-08 00:42:55 -040043 , m_size(0)
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010044{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010045 setUri(FaceUri(m_endpoint));
Davide Pesavento77911cc2017-04-08 22:12:30 -040046 NFD_LOG_CHAN_INFO("Creating channel");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010047}
48
49UnixStreamChannel::~UnixStreamChannel()
50{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010051 if (isListening()) {
52 // use the non-throwing variants during destruction
53 // and ignore any errors
54 boost::system::error_code error;
55 m_acceptor.close(error);
Davide Pesavento77911cc2017-04-08 22:12:30 -040056 NFD_LOG_CHAN_DEBUG("Removing socket file");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010057 boost::filesystem::remove(m_endpoint.path(), error);
58 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010059}
60
61void
62UnixStreamChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010063 const FaceCreationFailedCallback& onAcceptFailed,
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010064 int backlog/* = acceptor::max_connections*/)
65{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010066 if (isListening()) {
Davide Pesavento77911cc2017-04-08 22:12:30 -040067 NFD_LOG_CHAN_WARN("Already listening");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010068 return;
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020069 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010070
71 namespace fs = boost::filesystem;
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020072
73 fs::path socketPath(m_endpoint.path());
74 fs::file_type type = fs::symlink_status(socketPath).type();
75
Davide Pesavento6ad890a2015-03-09 03:43:17 +010076 if (type == fs::socket_file) {
77 boost::system::error_code error;
Davide Pesavento292e5e12015-03-13 02:08:33 +010078 boost::asio::local::stream_protocol::socket socket(getGlobalIoService());
Davide Pesavento6ad890a2015-03-09 03:43:17 +010079 socket.connect(m_endpoint, error);
Davide Pesavento77911cc2017-04-08 22:12:30 -040080 NFD_LOG_CHAN_TRACE("connect() on existing socket file returned: " << error.message());
Davide Pesavento6ad890a2015-03-09 03:43:17 +010081 if (!error) {
82 // someone answered, leave the socket alone
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070083 BOOST_THROW_EXCEPTION(Error("Socket file at " + m_endpoint.path()
84 + " belongs to another NFD process"));
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020085 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010086 else if (error == boost::asio::error::connection_refused ||
87 error == boost::asio::error::timed_out) {
88 // no one is listening on the remote side,
89 // we can safely remove the stale socket
Davide Pesavento77911cc2017-04-08 22:12:30 -040090 NFD_LOG_CHAN_DEBUG("Removing stale socket file");
Davide Pesavento6ad890a2015-03-09 03:43:17 +010091 fs::remove(socketPath);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010092 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010093 }
94 else if (type != fs::file_not_found) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070095 BOOST_THROW_EXCEPTION(Error(m_endpoint.path() + " already exists and is not a socket file"));
Davide Pesavento6ad890a2015-03-09 03:43:17 +010096 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010097
Davide Pesavento6ad890a2015-03-09 03:43:17 +010098 m_acceptor.open();
99 m_acceptor.bind(m_endpoint);
100 m_acceptor.listen(backlog);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100101
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100102 if (::chmod(m_endpoint.path().c_str(), 0666) < 0) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400103 BOOST_THROW_EXCEPTION(Error("chmod(" + m_endpoint.path() + ") failed: " + std::strerror(errno)));
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100104 }
Davide Pesavento9cec8ee2014-02-19 11:21:59 +0100105
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100106 accept(onFaceCreated, onAcceptFailed);
Davide Pesavento77911cc2017-04-08 22:12:30 -0400107 NFD_LOG_CHAN_DEBUG("Started listening");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100108}
109
110void
Davide Pesavento292e5e12015-03-13 02:08:33 +0100111UnixStreamChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100112 const FaceCreationFailedCallback& onAcceptFailed)
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100113{
Davide Pesavento292e5e12015-03-13 02:08:33 +0100114 m_acceptor.async_accept(m_socket, bind(&UnixStreamChannel::handleAccept, this,
115 boost::asio::placeholders::error,
116 onFaceCreated, onAcceptFailed));
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100117}
118
119void
120UnixStreamChannel::handleAccept(const boost::system::error_code& error,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100121 const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100122 const FaceCreationFailedCallback& onAcceptFailed)
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100123{
124 if (error) {
Davide Pesavento77911cc2017-04-08 22:12:30 -0400125 if (error != boost::asio::error::operation_aborted) {
126 NFD_LOG_CHAN_DEBUG("Accept failed: " << error.message());
127 if (onAcceptFailed)
128 onAcceptFailed(500, "Accept failed: " + error.message());
129 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100130 return;
131 }
132
Davide Pesavento77911cc2017-04-08 22:12:30 -0400133 NFD_LOG_CHAN_TRACE("Incoming connection via fd " << m_socket.native_handle());
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100134
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400135 auto linkService = make_unique<GenericLinkService>();
136 auto transport = make_unique<UnixStreamTransport>(std::move(m_socket));
Junxiao Shicde37ad2015-12-24 01:02:05 -0700137 auto face = make_shared<Face>(std::move(linkService), std::move(transport));
Davide Pesaventoc19408d2017-04-08 00:42:55 -0400138
139 ++m_size;
140 connectFaceClosedSignal(*face, [this] { --m_size; });
141
Davide Pesavento292e5e12015-03-13 02:08:33 +0100142 onFaceCreated(face);
143
Davide Pesaventoe22d8c82014-04-14 04:01:52 +0200144 // prepare accepting the next connection
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100145 accept(onFaceCreated, onAcceptFailed);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100146}
147
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400148} // namespace face
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100149} // namespace nfd