summaryrefslogtreecommitdiffstats
path: root/hicn-plugin/src/faces/udp/dpo_udp.h
blob: fdde4192b042693b3440654f2c74d8cfddf6cd04 (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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
 * 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.
 */

#ifndef __HICN_DPO_UDP_H__
#define __HICN_DPO_UDP_H__

#include <vnet/adj/adj_types.h>
#include <vnet/ip/ip4_packet.h>
#include <vnet/ip/ip6_packet.h>

#include "face_udp.h"
#include "../face.h"
#include "../../error.h"


/**
 * @brief Initialize the internal structures of the dpo udp face module.
 */
void hicn_dpo_udp_module_init (void);

/**
 * @brief Create a udp face and its corresponding dpo. Meant to be used for the
 * control plane.
 *
 * @param dpo: Data plane object that point to the face created.
 * @param local_addr: Local address of the UDP tunnel
 * @param remote_addr: Remote address of the UDP tunnel
 * @param local_port: Local port of the UDP tunnel
 * @param remote_port: Remote port of the UDP tunnel
 * @param adj: Ip adjacency corresponding to the remote address in the face
 * @param node_index: vlib edge index to use in the packet processing
 * @param flags: Flags of the face
 * @param face_id: Identifier for the face (dpoi_index)
 * @return HICN_ERROR_FACE_ALREADY_CREATED if the face exists, otherwise HICN_ERROR_NONE
 */
int
hicn_dpo_udp4_create (dpo_id_t * dpo,
		      const ip4_address_t * local_addr,
		      const ip4_address_t * remote_addr,
		      u16 local_port, u16 remote_port,
		      u32 sw_if,
		      adj_index_t adj,
		      u32 node_index,
		      hicn_face_flags_t flags, hicn_face_id_t * face_id);

/**
 * @brief Retrieve a face using the face identifier, i.e., the  quadruplet (local_addr, remote_addr,
 * local_port, remote_port). This method adds a lock on the face state.
 *
 * @param dpo: Result of the lookup. If the face doesn't exist dpo = NULL
 * @param local_addr: Local address of the UDP tunnel
 * @param remote_addr: Remote address of the UDP tunnel
 * @param local_port: Local port of the UDP tunnel
 * @param remote_port: Remote port of the UDP tunnel
 * @param is_appface: Boolean that indicates whether the face is an application
 * face or not. (Currently only IP faces can be appface)
 *
 * @result HICN_ERROR_FACE_NOT_FOUND if the face does not exist, otherwise HICN_ERROR_NONE.
 */
always_inline int
hicn_dpo_udp4_lock (dpo_id_t * dpo,
		    const ip4_address_t * local_addr,
		    const ip4_address_t * remote_addr,
		    u16 local_port, u16 remote_port, u8 * is_appface)
{
  hicn_face_t *face =
    hicn_face_udp4_get (local_addr, remote_addr, local_port, remote_port);

  if (PREDICT_FALSE (face == NULL))
    return HICN_ERROR_FACE_NOT_FOUND;

  index_t dpoi_index = hicn_dpoi_get_index (face);
  dpo_set (dpo, hicn_face_udp_type, DPO_PROTO_IP4, dpoi_index);
  dpo->dpoi_next_node = ~0;
  dpo_lock (dpo);

  *is_appface = 0;

  return HICN_ERROR_NONE;
}

/**
 * @brief Retrieve, or create if it doesn't exist, a face from the face
 * identifier (local_addr, remote_addr, local_port, remote_port) and returns its
 * dpo. This method adds a lock on the face state.
 *
 * @param dpo: Result of the lookup
 * @param local_addr: Local address of the UDP tunnel
 * @param remote_addr: Remote address of the UDP tunnel
 * @param local_port: Local port of the UDP tunnel
 * @param remote_port: Remote port of the UDP tunnel
 * @param is_appface: Boolean that indicates whether the face is an application
 * face or not. (Currently only IP faces can be appface)
 * @param node_index: vlib edge index to use in the packet processing
 */
always_inline void
hicn_dpo_udp4_add_and_lock (dpo_id_t * dpo,
			    const ip4_address_t * local_addr,
			    const ip4_address_t * remote_addr,
			    u16 local_port, u16 remote_port,
			    u32 node_index, u8 * is_appface)
{
  hicn_face_t *face =
    hicn_face_udp4_get (local_addr, remote_addr, local_port, remote_port);

  if (face == NULL)
    {
      pool_get (hicn_dpoi_face_pool, face);

      hicn_face_udp_t *udp_face = (hicn_face_udp_t *) face->data;

      clib_memcpy (&(udp_face->hdrs.ip4.ip), &ip4_header_skl,
		   sizeof (ip4_header_t));
      clib_memcpy (&(udp_face->hdrs.ip4.ip.src_address), local_addr,
		   sizeof (ip4_address_t));
      clib_memcpy (&(udp_face->hdrs.ip4.ip.dst_address), remote_addr,
		   sizeof (ip4_address_t));

      udp_face->hdrs.ip4.udp.src_port = local_port;
      udp_face->hdrs.ip4.udp.dst_port = remote_port;

      face->shared.adj = ADJ_INDEX_INVALID;
      face->shared.pl_id = (u16) 0;
      face->shared.face_type = hicn_face_udp_type;
      face->shared.flags = HICN_FACE_FLAGS_IFACE;
      face->shared.locks = 0;

      hicn_face_udp_key_t key;
      hicn_face_udp4_get_key (local_addr, remote_addr, local_port,
			      remote_port, &key);
      hicn_face_id_t dpoi_index = hicn_dpoi_get_index (face);

      mhash_set_mem (&hicn_face_udp_hashtb, &key, (uword *) & dpoi_index, 0);
      face = face;

      *is_appface = 0;
      dpo_set (dpo, hicn_face_udp_type, DPO_PROTO_IP4, dpoi_index);
      dpo->dpoi_next_node = node_index;
      dpo_lock (dpo);

      return;
    }

  *is_appface = 0;

  hicn_face_id_t dpoi_index = hicn_dpoi_get_index (face);
  dpo_set (dpo, hicn_face_udp_type, DPO_PROTO_IP4, dpoi_index);
  dpo->dpoi_next_node = node_index;
  dpo_lock (dpo);
}

/**
 * @brief Create a udp face and its corresponding dpo. Meant to be used for the
 * control plane.
 *
 * @param dpo: Data plane object that point to the face created.
 * @param local_addr: Local address of the UDP tunnel
 * @param remote_addr: Remote address of the UDP tunnel
 * @param local_port: Local port of the UDP tunnel
 * @param remote_port: Remote port of the UDP tunnel
 * @param adj: Ip adjacency corresponding to the remote address in the face
 * @param node_index: vlib edge index to use in the packet processing
 * @param flags: Flags of the face
 * @param face_id: Identifier for the face (dpoi_index)
 * @return HICN_ERROR_FACE_ALREADY_CREATED if the face exists, otherwise HICN_ERROR_NONE
 */
int
hicn_dpo_udp6_create (dpo_id_t * dpo,
		      const ip6_address_t * local_addr,
		      const ip6_address_t * remote_addr,
		      u16 local_port, u16 remote_port,
		      u32 sw_if,
		      adj_index_t adj,
		      u32 node_index,
		      hicn_face_flags_t flags, hicn_face_id_t * face_id);


/**
 * @brief Retrieve a face using the face identifier, i.e., the  quadruplet (local_addr, remote_addr,
 * local_port, remote_port). This method adds a lock on the face state.
 *
 * @param dpo: Result of the lookup. If the face doesn't exist dpo = NULL
 * @param local_addr: Local address of the UDP tunnel
 * @param remote_addr: Remote address of the UDP tunnel
 * @param local_port: Local port of the UDP tunnel
 * @param remote_port: Remote port of the UDP tunnel
 * @param is_appface: Boolean that indicates whether the face is an application
 * face or not. (Currently only IP faces can be appface)
 *
 * @result HICN_ERROR_FACE_NOT_FOUND if the face does not exist, otherwise HICN_ERROR_NONE.
 */
always_inline int
hicn_dpo_udp6_lock (dpo_id_t * dpo,
		    const ip6_address_t * local_addr,
		    const ip6_address_t * remote_addr,
		    u16 local_port, u16 remote_port, u8 * is_appface)
{
  hicn_face_t *face =
    hicn_face_udp6_get (local_addr, remote_addr, local_port, remote_port);


  if (PREDICT_FALSE (face == NULL))
    return HICN_ERROR_FACE_NOT_FOUND;

  hicn_face_id_t dpoi_index = hicn_dpoi_get_index (face);
  dpo_set (dpo, hicn_face_udp_type, DPO_PROTO_IP4, dpoi_index);
  dpo->dpoi_next_node = ~0;
  dpo_lock (dpo);
  *is_appface = 0;

  return HICN_ERROR_NONE;
}

/**
 * @brief Retrieve, or create if it doesn't exist, a face from the face
 * identifier (local_addr, remote_addr, local_port, remote_port) and returns its
 * dpo. This method adds a lock on the face state.
 *
 * @param dpo: Result of the lookup
 * @param local_addr: Local address of the UDP tunnel
 * @param remote_addr: Remote address of the UDP tunnel
 * @param local_port: Local port of the UDP tunnel
 * @param remote_port: Remote port of the UDP tunnel
 * @param is_appface: Boolean that indicates whether the face is an application
 * face or not. (Currently only IP faces can be appface)
 * @param node_index: vlib edge index to use in the packet processing
 */
always_inline void
hicn_dpo_udp6_add_and_lock (dpo_id_t * dpo,
			    const ip6_address_t * local_addr,
			    const ip6_address_t * remote_addr,
			    u16 local_port, u16 remote_port,
			    u32 node_index, u8 * is_appface)
{
  hicn_face_t *face =
    hicn_face_udp6_get (local_addr, remote_addr, local_port, remote_port);

  if (face == NULL)
    {
      pool_get (hicn_dpoi_face_pool, face);

      hicn_face_udp_t *udp_face = (hicn_face_udp_t *) face->data;

      clib_memcpy (&(udp_face->hdrs.ip6.ip), &ip6_header_skl,
		   sizeof (ip6_header_t));
      clib_memcpy (&(udp_face->hdrs.ip6.ip.src_address), local_addr,
		   sizeof (ip6_address_t));
      clib_memcpy (&(udp_face->hdrs.ip6.ip.dst_address), remote_addr,
		   sizeof (ip6_address_t));

      udp_face->hdrs.ip6.udp.src_port = local_port;
      udp_face->hdrs.ip6.udp.dst_port = remote_port;

      face->shared.adj = ADJ_INDEX_INVALID;
      face->shared.pl_id = (u16) 0;
      face->shared.face_type = hicn_face_udp_type;
      face->shared.flags = HICN_FACE_FLAGS_IFACE;
      face->shared.locks = 0;

      hicn_face_udp_key_t key;
      hicn_face_udp6_get_key (local_addr, remote_addr, local_port,
			      remote_port, &key);
      hicn_face_id_t dpoi_index = hicn_dpoi_get_index (face);

      mhash_set_mem (&hicn_face_udp_hashtb, &key, (uword *) & dpoi_index, 0);

      *is_appface = 0;
      dpo_set (dpo, hicn_face_udp_type, DPO_PROTO_IP6, dpoi_index);
      dpo->dpoi_next_node = node_index;
      dpo_lock (dpo);

      return;
    }

  *is_appface = 0;

  hicn_face_id_t dpoi_index = hicn_dpoi_get_index (face);
  dpo_set (dpo, hicn_face_udp_type, DPO_PROTO_IP6, dpoi_index);
  dpo->dpoi_next_node = node_index;
  dpo_lock (dpo);
}

/**
 * @brief Create a dpo from a udp face
 *
 * @param face Face from which to create the dpo
 * @return the dpo
 */
void hicn_dpo_udp_create_from_face (hicn_face_t * face, dpo_id_t * dpo,
				    u16 dpoi_next_node);

#endif // __HICN_DPO_UDP_H__

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */