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 | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, 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 | |
| 26 | #include "transport.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 27 | #include "face.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 29 | namespace nfd::face { |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 31 | NFD_LOG_INIT(Transport); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 32 | |
| 33 | std::ostream& |
| 34 | operator<<(std::ostream& os, TransportState state) |
| 35 | { |
| 36 | switch (state) { |
| 37 | case TransportState::UP: |
| 38 | return os << "UP"; |
| 39 | case TransportState::DOWN: |
| 40 | return os << "DOWN"; |
| 41 | case TransportState::CLOSING: |
| 42 | return os << "CLOSING"; |
| 43 | case TransportState::FAILED: |
| 44 | return os << "FAILED"; |
| 45 | case TransportState::CLOSED: |
| 46 | return os << "CLOSED"; |
| 47 | default: |
| 48 | return os << "NONE"; |
| 49 | } |
| 50 | } |
| 51 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 52 | Transport::Transport() = default; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 53 | |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 54 | Transport::~Transport() = default; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 55 | |
| 56 | void |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 57 | Transport::setFaceAndLinkService(Face& face, LinkService& service) noexcept |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 58 | { |
| 59 | BOOST_ASSERT(m_face == nullptr); |
| 60 | BOOST_ASSERT(m_service == nullptr); |
| 61 | |
| 62 | m_face = &face; |
| 63 | m_service = &service; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | void |
| 67 | Transport::close() |
| 68 | { |
| 69 | if (m_state != TransportState::UP && m_state != TransportState::DOWN) { |
| 70 | return; |
| 71 | } |
| 72 | |
| 73 | this->setState(TransportState::CLOSING); |
| 74 | this->doClose(); |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 75 | // warning: don't access any members after this: |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 76 | // the Transport may be deallocated if doClose changes state to CLOSED |
| 77 | } |
| 78 | |
| 79 | void |
Teng Liang | 13d582a | 2020-07-21 20:23:11 -0700 | [diff] [blame] | 80 | Transport::send(const Block& packet) |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 81 | { |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 82 | BOOST_ASSERT(packet.isValid()); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 83 | BOOST_ASSERT(this->getMtu() == MTU_UNLIMITED || |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 84 | packet.size() <= static_cast<size_t>(this->getMtu())); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 85 | |
| 86 | TransportState state = this->getState(); |
| 87 | if (state != TransportState::UP && state != TransportState::DOWN) { |
| 88 | NFD_LOG_FACE_TRACE("send ignored in " << state << " state"); |
| 89 | return; |
| 90 | } |
| 91 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 92 | if (state == TransportState::UP) { |
| 93 | ++this->nOutPackets; |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 94 | this->nOutBytes += packet.size(); |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 95 | } |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 96 | |
Teng Liang | 13d582a | 2020-07-21 20:23:11 -0700 | [diff] [blame] | 97 | this->doSend(packet); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 101 | Transport::receive(const Block& packet, const EndpointId& endpoint) |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 102 | { |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 103 | BOOST_ASSERT(packet.isValid()); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 104 | BOOST_ASSERT(this->getMtu() == MTU_UNLIMITED || |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 105 | packet.size() <= static_cast<size_t>(this->getMtu())); |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 106 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 107 | ++this->nInPackets; |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 108 | this->nInBytes += packet.size(); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 109 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 110 | m_service->receivePacket(packet, endpoint); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Eric Newberry | f3ee808 | 2020-01-28 13:44:18 -0800 | [diff] [blame] | 113 | void |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 114 | Transport::setMtu(ssize_t mtu) noexcept |
Eric Newberry | f3ee808 | 2020-01-28 13:44:18 -0800 | [diff] [blame] | 115 | { |
| 116 | BOOST_ASSERT(mtu == MTU_UNLIMITED || mtu >= 0); |
| 117 | |
| 118 | if (mtu == m_mtu) { |
| 119 | return; |
| 120 | } |
| 121 | |
| 122 | if (m_mtu != MTU_INVALID) { |
| 123 | NFD_LOG_FACE_INFO("setMtu " << m_mtu << " -> " << mtu); |
| 124 | } |
| 125 | |
| 126 | m_mtu = mtu; |
| 127 | } |
| 128 | |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 129 | bool |
| 130 | Transport::canChangePersistencyTo(ndn::nfd::FacePersistency newPersistency) const |
| 131 | { |
| 132 | // not changing, or setting initial persistency in subclass constructor |
| 133 | if (m_persistency == newPersistency || m_persistency == ndn::nfd::FACE_PERSISTENCY_NONE) { |
| 134 | return true; |
| 135 | } |
| 136 | |
| 137 | if (newPersistency == ndn::nfd::FACE_PERSISTENCY_NONE) { |
| 138 | NFD_LOG_FACE_TRACE("cannot change persistency to NONE"); |
| 139 | return false; |
| 140 | } |
| 141 | |
| 142 | return this->canChangePersistencyToImpl(newPersistency); |
| 143 | } |
| 144 | |
| 145 | bool |
| 146 | Transport::canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const |
| 147 | { |
| 148 | return false; |
| 149 | } |
| 150 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 151 | void |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 152 | Transport::setPersistency(ndn::nfd::FacePersistency newPersistency) |
| 153 | { |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 154 | BOOST_ASSERT(canChangePersistencyTo(newPersistency)); |
| 155 | |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 156 | if (m_persistency == newPersistency) { |
| 157 | return; |
| 158 | } |
| 159 | |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 160 | auto oldPersistency = m_persistency; |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 161 | m_persistency = newPersistency; |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 162 | |
| 163 | if (oldPersistency != ndn::nfd::FACE_PERSISTENCY_NONE) { |
| 164 | NFD_LOG_FACE_INFO("setPersistency " << oldPersistency << " -> " << newPersistency); |
| 165 | this->afterChangePersistency(oldPersistency); |
| 166 | } |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | void |
| 170 | Transport::afterChangePersistency(ndn::nfd::FacePersistency oldPersistency) |
| 171 | { |
Davide Pesavento | 8728a25 | 2015-11-06 04:01:22 +0100 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | void |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 175 | Transport::setState(TransportState newState) |
| 176 | { |
| 177 | if (m_state == newState) { |
| 178 | return; |
| 179 | } |
| 180 | |
| 181 | bool isValid = false; |
| 182 | switch (m_state) { |
| 183 | case TransportState::UP: |
| 184 | isValid = newState == TransportState::DOWN || |
| 185 | newState == TransportState::CLOSING || |
| 186 | newState == TransportState::FAILED; |
| 187 | break; |
| 188 | case TransportState::DOWN: |
| 189 | isValid = newState == TransportState::UP || |
| 190 | newState == TransportState::CLOSING || |
| 191 | newState == TransportState::FAILED; |
| 192 | break; |
| 193 | case TransportState::CLOSING: |
| 194 | case TransportState::FAILED: |
| 195 | isValid = newState == TransportState::CLOSED; |
| 196 | break; |
| 197 | default: |
| 198 | break; |
| 199 | } |
| 200 | |
| 201 | if (!isValid) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 202 | NDN_THROW(std::runtime_error("Invalid state transition")); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | NFD_LOG_FACE_INFO("setState " << m_state << " -> " << newState); |
| 206 | |
| 207 | TransportState oldState = m_state; |
| 208 | m_state = newState; |
| 209 | afterStateChange(oldState, newState); |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 210 | // warning: don't access any members after this: |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 211 | // the Transport may be deallocated in the signal handler if newState is CLOSED |
| 212 | } |
| 213 | |
| 214 | std::ostream& |
| 215 | operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh) |
| 216 | { |
| 217 | const Transport& transport = flh.obj; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 218 | const Face* face = transport.getFace(); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 219 | FaceId faceId = face == nullptr ? INVALID_FACEID : face->getId(); |
| 220 | |
| 221 | os << "[id=" << faceId << ",local=" << transport.getLocalUri() |
| 222 | << ",remote=" << transport.getRemoteUri() << "] "; |
| 223 | return os; |
| 224 | } |
| 225 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 226 | } // namespace nfd::face |