Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 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. |
| 10 | * |
| 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/>. |
| 24 | */ |
| 25 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 26 | #include "face/unix-stream-channel.hpp" |
| 27 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 28 | #include "channel-fixture.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 29 | |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 30 | #include <boost/filesystem.hpp> |
| 31 | #include <fstream> |
| 32 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 33 | namespace nfd::tests { |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 34 | |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 35 | namespace fs = boost::filesystem; |
| 36 | namespace local = boost::asio::local; |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 37 | using face::UnixStreamChannel; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 38 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 39 | class UnixStreamChannelFixture : public ChannelFixture<UnixStreamChannel, unix_stream::Endpoint> |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 40 | { |
| 41 | protected: |
| 42 | UnixStreamChannelFixture() |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 43 | { |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 44 | listenerEp = unix_stream::Endpoint(socketPath.string()); |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 45 | |
| 46 | // in case an earlier test run crashed without a chance to run the destructor |
| 47 | boost::system::error_code ec; |
| 48 | fs::remove_all(testDir, ec); |
| 49 | } |
| 50 | |
| 51 | ~UnixStreamChannelFixture() override |
| 52 | { |
| 53 | // cleanup |
| 54 | boost::system::error_code ec; |
| 55 | fs::remove_all(testDir, ec); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Alexander Afanasyev | 3a2339a | 2020-05-27 23:05:06 -0400 | [diff] [blame] | 58 | shared_ptr<UnixStreamChannel> |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 59 | makeChannel() final |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 60 | { |
Alexander Afanasyev | 3a2339a | 2020-05-27 23:05:06 -0400 | [diff] [blame] | 61 | return std::make_shared<UnixStreamChannel>(listenerEp, false); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | void |
| 65 | listen() |
| 66 | { |
| 67 | listenerChannel = makeChannel(); |
| 68 | listenerChannel->listen( |
| 69 | [this] (const shared_ptr<Face>& newFace) { |
| 70 | BOOST_REQUIRE(newFace != nullptr); |
| 71 | connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); }); |
| 72 | listenerFaces.push_back(newFace); |
| 73 | limitedIo.afterOp(); |
| 74 | }, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 75 | ChannelFixture::unexpectedFailure); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 79 | clientConnect(local::stream_protocol::socket& client) |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 80 | { |
| 81 | client.async_connect(listenerEp, |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 82 | [this] (const auto& error) { |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 83 | BOOST_REQUIRE_EQUAL(error, boost::system::errc::success); |
| 84 | limitedIo.afterOp(); |
| 85 | }); |
| 86 | } |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 87 | |
| 88 | protected: |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 89 | fs::path testDir = fs::path(UNIT_TESTS_TMPDIR) / "unix-stream-channel"; |
| 90 | fs::path socketPath = testDir / "test" / "foo.sock"; |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 93 | BOOST_AUTO_TEST_SUITE(Face) |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 94 | BOOST_FIXTURE_TEST_SUITE(TestUnixStreamChannel, UnixStreamChannelFixture) |
| 95 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 96 | BOOST_AUTO_TEST_CASE(Uri) |
| 97 | { |
| 98 | auto channel = makeChannel(); |
| 99 | BOOST_CHECK_EQUAL(channel->getUri(), FaceUri(listenerEp)); |
| 100 | } |
| 101 | |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 102 | BOOST_AUTO_TEST_CASE(Listen) |
| 103 | { |
| 104 | auto channel = makeChannel(); |
| 105 | BOOST_CHECK_EQUAL(channel->isListening(), false); |
| 106 | |
| 107 | channel->listen(nullptr, nullptr); |
| 108 | BOOST_CHECK_EQUAL(channel->isListening(), true); |
| 109 | |
| 110 | // listen() is idempotent |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 111 | channel->listen(nullptr, nullptr); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 112 | BOOST_CHECK_EQUAL(channel->isListening(), true); |
| 113 | } |
| 114 | |
| 115 | BOOST_AUTO_TEST_CASE(MultipleAccepts) |
| 116 | { |
| 117 | this->listen(); |
| 118 | |
| 119 | BOOST_CHECK_EQUAL(listenerChannel->isListening(), true); |
Davide Pesavento | c19408d | 2017-04-08 00:42:55 -0400 | [diff] [blame] | 120 | BOOST_CHECK_EQUAL(listenerChannel->size(), 0); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 121 | |
| 122 | local::stream_protocol::socket client1(g_io); |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 123 | this->clientConnect(client1); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 124 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 125 | BOOST_CHECK_EQUAL(limitedIo.run(2, 1_s), LimitedIo::EXCEED_OPS); |
Davide Pesavento | c19408d | 2017-04-08 00:42:55 -0400 | [diff] [blame] | 126 | BOOST_CHECK_EQUAL(listenerChannel->size(), 1); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 127 | |
| 128 | local::stream_protocol::socket client2(g_io); |
| 129 | local::stream_protocol::socket client3(g_io); |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 130 | this->clientConnect(client2); |
| 131 | this->clientConnect(client3); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 132 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 133 | BOOST_CHECK_EQUAL(limitedIo.run(4, 1_s), LimitedIo::EXCEED_OPS); |
Davide Pesavento | c19408d | 2017-04-08 00:42:55 -0400 | [diff] [blame] | 134 | BOOST_CHECK_EQUAL(listenerChannel->size(), 3); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 135 | BOOST_CHECK_EQUAL(listenerFaces.size(), 3); |
| 136 | |
Alexander Afanasyev | 3a2339a | 2020-05-27 23:05:06 -0400 | [diff] [blame] | 137 | // check face persistency and channel association |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 138 | for (const auto& face : listenerFaces) { |
| 139 | BOOST_CHECK_EQUAL(face->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
Alexander Afanasyev | 3a2339a | 2020-05-27 23:05:06 -0400 | [diff] [blame] | 140 | BOOST_CHECK_EQUAL(face->getChannel().lock(), listenerChannel); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 141 | } |
| 142 | } |
| 143 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 144 | BOOST_AUTO_TEST_SUITE(SocketFile) |
| 145 | |
| 146 | BOOST_AUTO_TEST_CASE(CreateAndRemove) |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 147 | { |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 148 | auto channel = makeChannel(); |
| 149 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::file_not_found); |
| 150 | |
| 151 | channel->listen(nullptr, nullptr); |
| 152 | auto status = fs::symlink_status(socketPath); |
| 153 | BOOST_CHECK_EQUAL(status.type(), fs::socket_file); |
| 154 | BOOST_CHECK_EQUAL(status.permissions(), fs::owner_read | fs::group_read | fs::others_read | |
| 155 | fs::owner_write | fs::group_write | fs::others_write); |
| 156 | |
| 157 | channel.reset(); |
| 158 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::file_not_found); |
| 159 | } |
| 160 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 161 | BOOST_AUTO_TEST_CASE(InUse) |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 162 | { |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 163 | auto channel = makeChannel(); |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 164 | fs::create_directories(socketPath.parent_path()); |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 165 | |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 166 | local::stream_protocol::acceptor acceptor(g_io, listenerEp); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 167 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::socket_file); |
| 168 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 169 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 170 | return e.code() == boost::system::errc::address_in_use && |
| 171 | e.path1() == socketPath && |
| 172 | std::string_view(e.what()).find("UnixStreamChannel::listen") != std::string_view::npos; |
| 173 | }); |
| 174 | } |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 175 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 176 | BOOST_AUTO_TEST_CASE(Stale) |
| 177 | { |
| 178 | auto channel = makeChannel(); |
| 179 | fs::create_directories(socketPath.parent_path()); |
| 180 | |
| 181 | local::stream_protocol::acceptor acceptor(g_io, listenerEp); |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 182 | acceptor.close(); |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 183 | // the socket file is not removed when the acceptor is closed |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 184 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::socket_file); |
| 185 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 186 | // drop write permission from the parent directory |
| 187 | fs::permissions(socketPath.parent_path(), fs::owner_all & ~fs::owner_write); |
| 188 | // removal of the "stale" socket fails due to insufficient permissions |
| 189 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 190 | return e.code() == boost::system::errc::permission_denied && |
| 191 | e.path1() == socketPath && |
| 192 | std::string_view(e.what()).find("remove") != std::string_view::npos; |
| 193 | }); |
| 194 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::socket_file); |
| 195 | |
| 196 | // restore all permissions |
| 197 | fs::permissions(socketPath.parent_path(), fs::owner_all); |
| 198 | // the socket file should be considered "stale" and overwritten |
| 199 | channel->listen(nullptr, nullptr); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 200 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::socket_file); |
| 201 | } |
| 202 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 203 | BOOST_AUTO_TEST_CASE(NotASocket) |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 204 | { |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 205 | auto channel = makeChannel(); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 206 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 207 | fs::create_directories(socketPath); |
| 208 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::directory_file); |
| 209 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 210 | return e.code() == boost::system::errc::not_a_socket && |
| 211 | e.path1() == socketPath && |
| 212 | std::string_view(e.what()).find("UnixStreamChannel::listen") != std::string_view::npos; |
| 213 | }); |
| 214 | |
| 215 | fs::remove(socketPath); |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 216 | std::ofstream f(socketPath.string()); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 217 | f.close(); |
Davide Pesavento | 4c95771 | 2024-01-01 15:40:06 -0500 | [diff] [blame] | 218 | BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::regular_file); |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 219 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 220 | return e.code() == boost::system::errc::not_a_socket && |
| 221 | e.path1() == socketPath && |
| 222 | std::string_view(e.what()).find("UnixStreamChannel::listen") != std::string_view::npos; |
| 223 | }); |
Spencer Lee | 75142a1 | 2016-04-13 16:55:10 -0700 | [diff] [blame] | 224 | } |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 225 | |
Davide Pesavento | 4b1921f | 2024-01-12 20:25:45 -0500 | [diff] [blame] | 226 | BOOST_AUTO_TEST_CASE(ParentConflict) |
| 227 | { |
| 228 | auto channel = makeChannel(); |
| 229 | fs::create_directories(testDir); |
| 230 | |
| 231 | auto parent = socketPath.parent_path(); |
| 232 | std::ofstream f(parent.string()); |
| 233 | f.close(); |
| 234 | BOOST_CHECK_EQUAL(fs::symlink_status(parent).type(), fs::regular_file); |
| 235 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 236 | return e.code() == boost::system::errc::file_exists && |
| 237 | e.path1() == parent && |
| 238 | std::string_view(e.what()).find("create_dir") != std::string_view::npos; |
| 239 | }); |
| 240 | } |
| 241 | |
| 242 | BOOST_AUTO_TEST_CASE(PermissionDenied) |
| 243 | { |
| 244 | auto channel = makeChannel(); |
| 245 | fs::create_directories(testDir); |
| 246 | |
| 247 | fs::permissions(testDir, fs::no_perms); |
| 248 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 249 | return e.code() == boost::system::errc::permission_denied && |
| 250 | e.path1() == socketPath.parent_path() && |
| 251 | std::string_view(e.what()).find("create_dir") != std::string_view::npos; |
| 252 | }); |
| 253 | |
| 254 | fs::permissions(testDir, fs::owner_read | fs::owner_exe); |
| 255 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 256 | return e.code() == boost::system::errc::permission_denied && |
| 257 | e.path1() == socketPath.parent_path() && |
| 258 | std::string_view(e.what()).find("create_dir") != std::string_view::npos; |
| 259 | }); |
| 260 | |
| 261 | fs::permissions(testDir, fs::owner_all); |
| 262 | fs::create_directories(socketPath.parent_path()); |
| 263 | |
| 264 | fs::permissions(socketPath.parent_path(), fs::no_perms); |
| 265 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 266 | return e.code() == boost::system::errc::permission_denied && |
| 267 | e.path1() == socketPath && |
| 268 | std::string_view(e.what()).find("status") != std::string_view::npos; |
| 269 | }); |
| 270 | |
| 271 | fs::permissions(socketPath.parent_path(), fs::owner_read | fs::owner_exe); |
| 272 | BOOST_CHECK_EXCEPTION(channel->listen(nullptr, nullptr), fs::filesystem_error, [&] (const auto& e) { |
| 273 | return e.code() == boost::system::errc::permission_denied && |
| 274 | e.path1() == socketPath && |
| 275 | std::string_view(e.what()).find("bind") != std::string_view::npos; |
| 276 | }); |
| 277 | |
| 278 | fs::permissions(socketPath.parent_path(), fs::owner_all); |
| 279 | } |
| 280 | |
| 281 | BOOST_AUTO_TEST_SUITE_END() // SocketFile |
| 282 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 283 | BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamChannel |
| 284 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 285 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 286 | } // namespace nfd::tests |