aboutsummaryrefslogtreecommitdiffstats
path: root/libtransport/src/io_modules/hicn-light/hicn_forwarder_module.cc
blob: 98bd42fb5f61c037916a9622357558de9a3dd490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*
 * Copyright (c) 2021-2023 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <core/udp_connector.h>
#include <hicn/transport/utils/uri.h>
#include <io_modules/hicn-light/hicn_forwarder_module.h>

extern "C" {
#include <hicn/ctrl/hicn-light.h>
}

namespace transport {

namespace core {

HicnForwarderModule::ForwarderUrlInitializer
    HicnForwarderModule::forwarder_url_initializer_;

HicnForwarderModule::HicnForwarderModule()
    : IoModule(), connector_(nullptr), seq_(0) {}

HicnForwarderModule::~HicnForwarderModule() {}

void HicnForwarderModule::connect(bool is_consumer) {
  if (!connector_->isConnected()) {
    // Parse forwarder URI
    utils::Uri uri;
    uri.parse(forwarder_url_initializer_.getForwarderUrl());

    // Safechecks
    CHECK(uri.getProtocol() == "hicn")
        << "The protocol of the forwarder url should be hicn";
    uint16_t port_min = (1 << 10);
    uint16_t port_max = (1 << 16) - 1;

    uint16_t port = std::stoul(uri.getPort());

    CHECK(port > port_min && port < port_max)
        << "The port should be between " << port_min << " and " << port_max;

    VLOG(1) << "Connecting to " << uri.getLocator() << ":" << uri.getPort();

    connector_->connect(uri.getLocator(), port);
    connector_->setRole(is_consumer ? Connector::Role::CONSUMER
                                    : Connector::Role::PRODUCER);
  }
}

bool HicnForwarderModule::isConnected() { return connector_->isConnected(); }

void HicnForwarderModule::send(Packet &packet) {
  IoModule::send(packet);
  packet.setChecksum();
  connector_->send(packet);
}

void HicnForwarderModule::send(const utils::MemBuf::Ptr &packet) {
  counters_.tx_packets++;
  counters_.tx_bytes += packet->length();

  // Perfect forwarding
  connector_->send(packet);
}

void HicnForwarderModule::registerRoute(const Prefix &prefix) {
  auto command = createCommandRoute(prefix.toSockaddr(),
                                    (uint8_t)prefix.getPrefixLength());
  if (!command) {
    // TODO error
    return;
  }
  send(command);
}

void HicnForwarderModule::sendMapme() {
  auto command = createCommandMapmeSendUpdate();
  if (!command) {
    // TODO error
    return;
  }
  send(command);
}

void HicnForwarderModule::setForwardingStrategy(const Prefix &prefix,
                                                std::string &strategy) {
  auto command = createCommandSetForwardingStrategy(
      prefix.toSockaddr(), (uint8_t)prefix.getPrefixLength(), strategy);
  if (!command) {
    // TODO error
    return;
  }
  send(command);
}

void HicnForwarderModule::closeConnection() {
  auto command = createCommandDeleteConnection();
  if (!command) {
    // TODO error
    return;
  }

  connector_->setSentCallback([](Connector *c, const std::error_code &ec) {
    if (!ec) {
      c->close();
    }
  });

  send(command);
}

void HicnForwarderModule::init(
    Connector::PacketReceivedCallback &&receive_callback,
    Connector::PacketSentCallback &&sent_callback,
    Connector::OnCloseCallback &&close_callback,
    Connector::OnReconnectCallback &&reconnect_callback,
    asio::io_service &io_service, const std::string &app_name) {
  if (!connector_) {
    connector_.reset(new UdpTunnelConnector(
        io_service, std::move(receive_callback), std::move(sent_callback),
        std::move(close_callback), std::move(reconnect_callback)));
  }
}

void HicnForwarderModule::processControlMessageReply(
    utils::MemBuf &packet_buffer) {
  if (packet_buffer.data()[0] == NACK_LIGHT) {
    throw errors::RuntimeException(
        "Received Nack message from hicn light forwarder.");
  }
}

std::uint32_t HicnForwarderModule::getMtu() { return interface_mtu; }

bool HicnForwarderModule::isControlMessage(utils::MemBuf &packet_buffer) {
  return packet_buffer.data()[0] == ACK_LIGHT ||
         packet_buffer.data()[0] == NACK_LIGHT;
}

/**
 * @return A valid msg_route_add_t structure if the command was successful, or
 * with .command_id == COMMAND_TYPE_UNDEFINED in case of error.
 */
utils::MemBuf::Ptr HicnForwarderModule::createCommandRoute(
    std::unique_ptr<sockaddr> &&addr, uint8_t prefix_length) {
  auto ret = PacketManager<>::getInstance().getMemBuf();
  auto command = reinterpret_cast<msg_route_add_t *>(ret->writableData());
  ret->append(sizeof(msg_route_add_t));
  std::memset(command, 0, sizeof(*command));

  if (!IS_VALID_FAMILY(addr->sa_family)) return nullptr;

  *command = {
      .header =
          {
              .message_type = REQUEST_LIGHT,
              .command_id = COMMAND_TYPE_ROUTE_ADD,
              .length = 1,
              .seq_num = 0,
          },
      .payload =
          {
              .cost = 1,
              .family = (uint8_t)addr->sa_family,
              .len = prefix_length,
          },
  };

  switch (addr->sa_family) {
    case AF_INET:
      command->payload.address.v4.as_inaddr =
          ((sockaddr_in *)addr.get())->sin_addr;
      break;
    case AF_INET6:
      command->payload.address.v6.as_in6addr =
          ((sockaddr_in6 *)addr.get())->sin6_addr;
      break;
  }
  snprintf(command->payload.symbolic_or_connid, SYMBOLIC_NAME_LEN, "%s",
           "SELF");

  return ret;
}

utils::MemBuf::Ptr HicnForwarderModule::createCommandDeleteConnection() {
  auto ret = PacketManager<>::getInstance().getMemBuf();
  auto command =
      reinterpret_cast<msg_connection_remove_t *>(ret->writableData());
  ret->append(sizeof(msg_connection_remove_t));
  std::memset(command, 0, sizeof(*command));

  *command = {
      .header =
          {
              .message_type = REQUEST_LIGHT,
              .command_id = COMMAND_TYPE_CONNECTION_REMOVE,
              .length = 1,
              .seq_num = 0,
          },
  };

  snprintf(command->payload.symbolic_or_connid, SYMBOLIC_NAME_LEN, "%s",
           "SELF");

  return ret;
}

utils::MemBuf::Ptr HicnForwarderModule::createCommandMapmeSendUpdate() {
  auto ret = PacketManager<>::getInstance().getMemBuf();
  auto command = reinterpret_cast<msg_mapme_add_t *>(ret->writableData());
  ret->append(sizeof(msg_mapme_add_t));
  std::memset(command, 0, sizeof(*command));

  *command = {.header = {
                  .message_type = REQUEST_LIGHT,
                  .command_id = COMMAND_TYPE_MAPME_ADD,
                  .length = 1,
                  .seq_num = seq_++,
              }};

  return ret;
}

utils::MemBuf::Ptr HicnForwarderModule::createCommandSetForwardingStrategy(
    std::unique_ptr<sockaddr> &&addr, uint32_t prefix_len,
    std::string strategy) {
  auto ret = PacketManager<>::getInstance().getMemBuf();
  auto command = reinterpret_cast<msg_strategy_set_t *>(ret->writableData());
  ret->append(sizeof(msg_strategy_set_t));
  std::memset(command, 0, sizeof(*command));

  if (!IS_VALID_FAMILY(addr->sa_family)) return nullptr;

  strategy_type_t strategy_type = strategy_type_from_str(strategy.c_str());
  if (strategy_type == STRATEGY_TYPE_UNDEFINED) return nullptr;

  *command = {
      .header =
          {
              .message_type = REQUEST_LIGHT,
              .command_id = COMMAND_TYPE_STRATEGY_SET,
              .length = 1,
              .seq_num = seq_++,
          },
      .payload =
          {
              .family = (uint8_t)addr->sa_family,
              .len = (uint8_t)prefix_len,
              .type = (uint8_t)strategy_type,
          },
  };

  switch (addr->sa_family) {
    case AF_INET:
      command->payload.address.v4.as_inaddr =
          ((sockaddr_in *)addr.get())->sin_addr;
      break;
    case AF_INET6:
      command->payload.address.v6.as_in6addr =
          ((sockaddr_in6 *)addr.get())->sin6_addr;
      break;
  }

  return ret;
}

extern "C" IoModule *create_module(void) { return new HicnForwarderModule(); }

}  // namespace core

}  // namespace transport