blob: 85416fd4e76dc6c1cf7a138929849100490039f8 [file] [log] [blame]
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Eric Newberry42602412016-08-27 09:33:18 -07003 * Copyright (c) 2014-2016, 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 {
35
36NFD_LOG_INIT("UnixStreamChannel");
37
Junxiao Shi61e3cc52014-03-03 20:40:28 -070038UnixStreamChannel::UnixStreamChannel(const unix_stream::Endpoint& endpoint)
Davide Pesavento292e5e12015-03-13 02:08:33 +010039 : m_endpoint(endpoint)
40 , m_acceptor(getGlobalIoService())
41 , m_socket(getGlobalIoService())
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010042{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010043 setUri(FaceUri(m_endpoint));
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010044}
45
46UnixStreamChannel::~UnixStreamChannel()
47{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010048 if (isListening()) {
49 // use the non-throwing variants during destruction
50 // and ignore any errors
51 boost::system::error_code error;
52 m_acceptor.close(error);
53 NFD_LOG_DEBUG("[" << m_endpoint << "] Removing socket file");
54 boost::filesystem::remove(m_endpoint.path(), error);
55 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010056}
57
58void
59UnixStreamChannel::listen(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +010060 const FaceCreationFailedCallback& onAcceptFailed,
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010061 int backlog/* = acceptor::max_connections*/)
62{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010063 if (isListening()) {
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020064 NFD_LOG_WARN("[" << m_endpoint << "] Already listening");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010065 return;
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020066 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010067
68 namespace fs = boost::filesystem;
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020069
70 fs::path socketPath(m_endpoint.path());
71 fs::file_type type = fs::symlink_status(socketPath).type();
72
Davide Pesavento6ad890a2015-03-09 03:43:17 +010073 if (type == fs::socket_file) {
74 boost::system::error_code error;
Davide Pesavento292e5e12015-03-13 02:08:33 +010075 boost::asio::local::stream_protocol::socket socket(getGlobalIoService());
Davide Pesavento6ad890a2015-03-09 03:43:17 +010076 socket.connect(m_endpoint, error);
77 NFD_LOG_TRACE("[" << m_endpoint << "] connect() on existing socket file returned: "
78 + error.message());
79 if (!error) {
80 // someone answered, leave the socket alone
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070081 BOOST_THROW_EXCEPTION(Error("Socket file at " + m_endpoint.path()
82 + " belongs to another NFD process"));
Davide Pesaventoe22d8c82014-04-14 04:01:52 +020083 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010084 else if (error == boost::asio::error::connection_refused ||
85 error == boost::asio::error::timed_out) {
86 // no one is listening on the remote side,
87 // we can safely remove the stale socket
88 NFD_LOG_DEBUG("[" << m_endpoint << "] Removing stale socket file");
89 fs::remove(socketPath);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010090 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +010091 }
92 else if (type != fs::file_not_found) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -070093 BOOST_THROW_EXCEPTION(Error(m_endpoint.path() + " already exists and is not a socket file"));
Davide Pesavento6ad890a2015-03-09 03:43:17 +010094 }
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010095
Davide Pesavento6ad890a2015-03-09 03:43:17 +010096 m_acceptor.open();
97 m_acceptor.bind(m_endpoint);
98 m_acceptor.listen(backlog);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +010099
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100100 if (::chmod(m_endpoint.path().c_str(), 0666) < 0) {
Spyridon Mastorakis149e02c2015-07-27 13:22:22 -0700101 BOOST_THROW_EXCEPTION(Error("chmod(" + m_endpoint.path() + ") failed: " +
102 std::strerror(errno)));
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100103 }
Davide Pesavento9cec8ee2014-02-19 11:21:59 +0100104
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100105 // start accepting connections
106 accept(onFaceCreated, onAcceptFailed);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100107}
108
109void
Davide Pesavento292e5e12015-03-13 02:08:33 +0100110UnixStreamChannel::accept(const FaceCreatedCallback& onFaceCreated,
Davide Pesavento47ab0292015-11-02 18:45:39 +0100111 const FaceCreationFailedCallback& onAcceptFailed)
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100112{
Davide Pesavento292e5e12015-03-13 02:08:33 +0100113 m_acceptor.async_accept(m_socket, bind(&UnixStreamChannel::handleAccept, this,
114 boost::asio::placeholders::error,
115 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 Pesavento6ad890a2015-03-09 03:43:17 +0100124 if (error == boost::asio::error::operation_aborted) // when the socket is closed by someone
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100125 return;
126
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100127 NFD_LOG_DEBUG("[" << m_endpoint << "] Accept failed: " << error.message());
128 if (onAcceptFailed)
Eric Newberry42602412016-08-27 09:33:18 -0700129 onAcceptFailed(500, "Accept failed: " + error.message());
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100130 return;
131 }
132
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100133 NFD_LOG_DEBUG("[" << m_endpoint << "] Incoming connection");
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100134
Yukai Tu74c895d2015-09-21 01:11:51 -0700135 auto linkService = make_unique<face::GenericLinkService>();
136 auto transport = make_unique<face::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 Pesavento292e5e12015-03-13 02:08:33 +0100138 onFaceCreated(face);
139
Davide Pesaventoe22d8c82014-04-14 04:01:52 +0200140 // prepare accepting the next connection
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100141 accept(onFaceCreated, onAcceptFailed);
Davide Pesaventobc4dd8c2014-02-14 20:01:01 +0100142}
143
144} // namespace nfd