aboutsummaryrefslogtreecommitdiffstats
path: root/libtransport/src/hicn/transport/core/prefix.cc
blob: 648c0a67bca1c9b35b4c0f0fb03dfee7d8983956 (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
/*
 * Copyright (c) 2017-2019 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 <hicn/transport/core/prefix.h>
#include <hicn/transport/errors/errors.h>
#include <hicn/transport/utils/string_tokenizer.h>

#ifndef _WIN32
extern "C" {
#include <arpa/inet.h>
}
#else
#include <hicn/transport/portability/win_portability.h>
#endif

#include <cstring>
#include <memory>
#include <random>

namespace transport {

namespace core {

Prefix::Prefix() { std::memset(&ip_prefix_, 0, sizeof(ip_prefix_t)); }

Prefix::Prefix(const char *prefix) : Prefix(std::string(prefix)) {}

Prefix::Prefix(std::string &&prefix) : Prefix(prefix) {}

Prefix::Prefix(const std::string &prefix) {
  utils::StringTokenizer st(prefix, "/");

  std::string ip_address = st.nextToken();
  int family = get_addr_family(ip_address.c_str());

  std::string prefix_length = family == AF_INET6 ? "128" : "32";

  if (st.hasMoreTokens()) {
    prefix_length = st.nextToken();
  }

  buildPrefix(ip_address, uint16_t(atoi(prefix_length.c_str())), family);
}

Prefix::Prefix(std::string &prefix, uint16_t prefix_length) {
  int family = get_addr_family(prefix.c_str());
  buildPrefix(prefix, prefix_length, family);
}

Prefix::Prefix(const core::Name &content_name, uint16_t prefix_length) {
  int family = content_name.getAddressFamily();

  if (!checkPrefixLengthAndAddressFamily(prefix_length, family)) {
    throw errors::InvalidIpAddressException();
  }

  ip_prefix_ = content_name.toIpAddress();
  ip_prefix_.len = prefix_length;
  ip_prefix_.family = family;
}

void Prefix::buildPrefix(std::string &prefix, uint16_t prefix_length,
                         int family) {
  if (!checkPrefixLengthAndAddressFamily(prefix_length, family)) {
    throw errors::InvalidIpAddressException();
  }

  int ret;
  switch (family) {
    case AF_INET:
        ret = inet_pton(AF_INET, prefix.c_str(), ip_prefix_.address.v4.buffer);
        break;
    case AF_INET6:
        ret = inet_pton(AF_INET6, prefix.c_str(), ip_prefix_.address.v6.buffer);
        break;
    default:
      throw errors::InvalidIpAddressException();
  }

  if (ret != 1) {
    throw errors::InvalidIpAddressException();
  }

  ip_prefix_.len = prefix_length;
  ip_prefix_.family = family;
}

std::unique_ptr<Sockaddr> Prefix::toSockaddr() {
  Sockaddr *ret = nullptr;

  switch (ip_prefix_.family) {
    case AF_INET6:
      ret = (Sockaddr *)new Sockaddr6;
      break;
    case AF_INET:
      ret = (Sockaddr *)new Sockaddr4;
      break;
    default:
      throw errors::InvalidIpAddressException();
  }

  if (ip_prefix_to_sockaddr(&ip_prefix_, ret) < 0) {
    throw errors::InvalidIpAddressException();
  }

  return std::unique_ptr<Sockaddr>(ret);
}

uint16_t Prefix::getPrefixLength() { return ip_prefix_.len; }

Prefix &Prefix::setPrefixLength(uint16_t prefix_length) {
  ip_prefix_.len = prefix_length;
  return *this;
}

int Prefix::getAddressFamily() { return ip_prefix_.family; }

Prefix &Prefix::setAddressFamily(int address_family) {
  ip_prefix_.family = address_family;
  return *this;
}

std::string Prefix::getNetwork() const {
  if (!checkPrefixLengthAndAddressFamily(ip_prefix_.len,
                                         ip_prefix_.family)) {
    throw errors::InvalidIpAddressException();
  }

  std::size_t size =
      ip_prefix_.family == 4 + AF_INET ? INET_ADDRSTRLEN : INET6_ADDRSTRLEN;

  std::string network(size, 0);

  if (ip_prefix_ntop_short(&ip_prefix_, (char *)network.c_str(), size) < 0) {
    throw errors::RuntimeException(
        "Impossible to retrieve network from ip address.");
  }

  return network;
}

Name Prefix::getName() const {
  std::string s(getNetwork());
  return Name(s);
}

Prefix &Prefix::setNetwork(std::string &network) {
  if (!inet_pton(AF_INET6, network.c_str(), ip_prefix_.address.v6.buffer)) {
    throw errors::RuntimeException("The network name is not valid.");
  }

  return *this;
}

Name Prefix::makeRandomName() const {
  srand((unsigned int)time(nullptr));

  if (ip_prefix_.family == AF_INET6) {
    std::default_random_engine eng((std::random_device())());
    std::uniform_int_distribution<uint32_t> idis(
        0, std::numeric_limits<uint32_t>::max());
    uint64_t random_number = idis(eng);

    uint32_t hash_size_bits = IPV6_ADDR_LEN_BITS - ip_prefix_.len;
    uint64_t ip_address[2];
    memcpy(ip_address, ip_prefix_.address.v6.buffer, sizeof(uint64_t));
    memcpy(ip_address + 1, ip_prefix_.address.v6.buffer + 8, sizeof(uint64_t));
    std::string network(IPV6_ADDR_LEN * 3, 0);

    // Let's do the magic ;)
    int shift_size = hash_size_bits > sizeof(random_number) * 8
                         ? sizeof(random_number) * 8
                         : hash_size_bits;

    ip_address[1] >>= shift_size;
    ip_address[1] <<= shift_size;

    ip_address[1] |= random_number >> (sizeof(uint64_t) * 8 - shift_size);

    if (!inet_ntop(ip_prefix_.family, ip_address, (char *)network.c_str(),
                   IPV6_ADDR_LEN * 3)) {
      throw errors::RuntimeException(
          "Impossible to retrieve network from ip address.");
    }

    return Name(network);
  }

  return Name();
}

bool Prefix::checkPrefixLengthAndAddressFamily(uint16_t prefix_length,
                                               int family) {
  // First check the family
  if (family != AF_INET6 && family != AF_INET) {
    return false;
  }

  int max_addr_len_bits =
      family == AF_INET6 ? IPV6_ADDR_LEN_BITS : IPV4_ADDR_LEN_BITS;

  if (prefix_length > max_addr_len_bits) {
    return false;
  }

  return true;
}

ip_prefix_t &Prefix::toIpPrefixStruct() { return ip_prefix_; }

}  // namespace core

}  // namespace transport