FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
dhcp6_pd_client_dp.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <vlib/vlib.h>
17 #include <dhcp/dhcp6_packet.h>
18 #include <dhcp/dhcp_proxy.h>
19 #include <vnet/mfib/mfib_table.h>
20 #include <vnet/mfib/ip6_mfib.h>
21 #include <vnet/fib/fib.h>
22 #include <vnet/adj/adj_mcast.h>
25 #include <vnet/ip/ip_types_api.h>
26 #include <vnet/ip/ip6_link.h>
27 
30 
31 static void
33 {
36  uword ni = cm->publisher_node;
37  uword et = cm->publisher_et;
38 
39  if (ni == (uword) ~ 0)
40  return;
41  prefix_report_t *q =
42  vlib_process_signal_event_data (vm, ni, et, 1, sizeof *q);
43 
44  *q = *r;
45 }
46 
47 int
49 {
50  void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
51  vl_api_rpc_call_main_thread (signal_report, (u8 *) r, sizeof *r);
52  return 0;
53 }
54 
55 void
56 dhcp6_pd_set_publisher_node (uword node_index, uword event_type)
57 {
59  cm->publisher_node = node_index;
60  cm->publisher_et = event_type;
61 }
62 
63 static void
65  dhcp6_pd_client_state_t * client_state)
66 {
67  u32 bi0;
68 
69  client_state->keep_sending_client_message = 0;
70  vec_free (client_state->params.prefixes);
71  if (client_state->buffer)
72  {
73  bi0 = vlib_get_buffer_index (vm, client_state->buffer);
74  vlib_buffer_free (vm, &bi0, 1);
75  client_state->buffer = 0;
76  adj_unlock (client_state->adj_index);
77  client_state->adj_index = ~0;
78  }
79 }
80 
81 static vlib_buffer_t *
85  * client_state, u32 type)
86 {
88  vlib_buffer_t *b;
89  u32 bi;
91  udp_header_t *udp;
92  dhcpv6_header_t *dhcp;
93  const ip6_address_t *src_addr;
94  u32 dhcp_opt_len = 0;
95  client_state->transaction_start = vlib_time_now (vm);
96  u32 n_prefixes;
97  u32 i;
98 
99  /*
100  * Note: do NOT psychoanalyze link-state here.
101  * If the interface is down, let the driver turf the packet.
102  */
103 
104  /* Get a link-local address */
105  src_addr = ip6_get_link_local_address (sw_if_index);
106 
107  if (src_addr->as_u8[0] != 0xfe)
108  {
109  clib_warning ("Could not find source address to send DHCPv6 packet");
110  return NULL;
111  }
112 
113  if (vlib_buffer_alloc (vm, &bi, 1) != 1)
114  {
115  clib_warning ("Buffer allocation failed");
116  return NULL;
117  }
118 
119  b = vlib_get_buffer (vm, bi);
120  vnet_buffer (b)->sw_if_index[VLIB_RX] = sw_if_index;
121  vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
124  sw_if_index);
125  vnet_buffer (b)->ip.adj_index[VLIB_TX] = client_state->adj_index;
126  b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
127 
129  udp = (udp_header_t *) (ip + 1);
130  dhcp = (dhcpv6_header_t *) (udp + 1);
131 
132  ip->src_address = *src_addr;
133  ip->hop_limit = 255;
135  clib_host_to_net_u32 (0x6 << 28);
136  ip->payload_length = 0;
137  ip->protocol = IP_PROTOCOL_UDP;
138 
139  udp->src_port = clib_host_to_net_u16 (DHCPV6_CLIENT_PORT);
140  udp->dst_port = clib_host_to_net_u16 (DHCPV6_SERVER_PORT);
141  udp->checksum = 0;
142  udp->length = 0;
143 
144  dhcp->msg_type = type;
145  dhcp->xid[0] = (client_state->transaction_id & 0x00ff0000) >> 16;
146  dhcp->xid[1] = (client_state->transaction_id & 0x0000ff00) >> 8;
147  dhcp->xid[2] = (client_state->transaction_id & 0x000000ff) >> 0;
148 
149  void *d = (void *) dhcp->data;
150  dhcpv6_option_t *duid;
151  dhcpv6_elapsed_t *elapsed;
152  dhcpv6_ia_header_t *ia_hdr;
153  dhcpv6_ia_opt_pd_t *opt_pd;
154  if (type == DHCPV6_MSG_SOLICIT || type == DHCPV6_MSG_REQUEST ||
155  type == DHCPV6_MSG_RENEW || type == DHCPV6_MSG_REBIND ||
156  type == DHCPV6_MSG_RELEASE)
157  {
158  duid = (dhcpv6_option_t *) d;
159  duid->option = clib_host_to_net_u16 (DHCPV6_OPTION_CLIENTID);
160  duid->length = clib_host_to_net_u16 (CLIENT_DUID_LENGTH);
162  d += sizeof (*duid) + CLIENT_DUID_LENGTH;
163 
164  if (client_state->params.server_index != ~0)
165  {
166  server_id_t *se =
167  &ccm->server_ids[client_state->params.server_index];
168 
169  duid = (dhcpv6_option_t *) d;
170  duid->option = clib_host_to_net_u16 (DHCPV6_OPTION_SERVERID);
171  duid->length = clib_host_to_net_u16 (se->len);
172  clib_memcpy (duid + 1, se->data, se->len);
173  d += sizeof (*duid) + se->len;
174  }
175 
176  elapsed = (dhcpv6_elapsed_t *) d;
177  elapsed->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_ELAPSED_TIME);
178  elapsed->opt.length =
179  clib_host_to_net_u16 (sizeof (*elapsed) - sizeof (elapsed->opt));
180  elapsed->elapsed_10ms = 0;
181  client_state->elapsed_pos =
182  (char *) &elapsed->elapsed_10ms -
183  (char *) vlib_buffer_get_current (b);
184  d += sizeof (*elapsed);
185 
186  ia_hdr = (dhcpv6_ia_header_t *) d;
187  ia_hdr->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_IA_PD);
188  ia_hdr->iaid = clib_host_to_net_u32 (DHCPV6_CLIENT_IAID);
189  ia_hdr->t1 = clib_host_to_net_u32 (client_state->params.T1);
190  ia_hdr->t2 = clib_host_to_net_u32 (client_state->params.T2);
191  d += sizeof (*ia_hdr);
192 
193  n_prefixes = vec_len (client_state->params.prefixes);
194 
195  ia_hdr->opt.length =
196  clib_host_to_net_u16 (sizeof (*ia_hdr) +
197  n_prefixes * sizeof (*opt_pd) -
198  sizeof (ia_hdr->opt));
199 
200  for (i = 0; i < n_prefixes; i++)
201  {
203  &client_state->params.prefixes[i];
204  opt_pd = (dhcpv6_ia_opt_pd_t *) d;
205  opt_pd->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_IAPREFIX);
206  opt_pd->opt.length =
207  clib_host_to_net_u16 (sizeof (*opt_pd) - sizeof (opt_pd->opt));
208  opt_pd->addr = pref->prefix;
209  opt_pd->prefix = pref->prefix_length;
210  opt_pd->valid = clib_host_to_net_u32 (pref->valid_lt);
211  opt_pd->preferred = clib_host_to_net_u32 (pref->preferred_lt);
212  d += sizeof (*opt_pd);
213  }
214  }
215  else
216  {
217  clib_warning ("State not implemented");
218  }
219 
220  dhcp_opt_len = ((u8 *) d) - dhcp->data;
221  udp->length =
222  clib_host_to_net_u16 (sizeof (*udp) + sizeof (*dhcp) + dhcp_opt_len);
223  ip->payload_length = udp->length;
224  b->current_length =
225  sizeof (*ip) + sizeof (*udp) + sizeof (*dhcp) + dhcp_opt_len;
226 
228 
229  return b;
230 }
231 
232 static inline u8
234  dhcp6_pd_client_state_t * client_state,
235  f64 current_time, f64 * due_time)
236 {
237  vlib_buffer_t *p0;
238  vlib_frame_t *f;
239  u32 *to_next;
240  u32 next_index;
241  vlib_buffer_t *c0;
242  ip6_header_t *ip;
243  udp_header_t *udp;
244  u32 ci0;
245  int bogus_length = 0;
246 
248 
249  f64 now = vlib_time_now (vm);
250 
251  if (!client_state->keep_sending_client_message)
252  return false;
253 
254  params = &client_state->params;
255 
256  if (client_state->due_time > current_time)
257  {
258  *due_time = client_state->due_time;
259  return true;
260  }
261 
262  p0 = client_state->buffer;
263 
264  next_index = ip6_rewrite_mcast_node.index;
265 
266  c0 = vlib_buffer_copy (vm, p0);
267  if (c0 == NULL)
268  return client_state->keep_sending_client_message;
269 
270  ci0 = vlib_get_buffer_index (vm, c0);
271 
273  udp = (udp_header_t *) (ip + 1);
274 
275  u16 *elapsed_field = (u16 *) ((void *) ip + client_state->elapsed_pos);
276  *elapsed_field =
277  clib_host_to_net_u16 ((u16)
278  ((now - client_state->transaction_start) * 100));
279 
280  udp->checksum = 0;
281  udp->checksum =
282  ip6_tcp_udp_icmp_compute_checksum (vm, 0, ip, &bogus_length);
283 
284  f = vlib_get_frame_to_node (vm, next_index);
285  to_next = vlib_frame_vector_args (f);
286  to_next[0] = ci0;
287  f->n_vectors = 1;
288  vlib_put_frame_to_node (vm, next_index, f);
289 
290  if (params->mrc != 0 && --client_state->n_left == 0)
291  stop_sending_client_message (vm, client_state);
292  else
293  {
294  client_state->sleep_interval =
295  (2.0 + random_f64_from_to (-0.1, 0.1)) * client_state->sleep_interval;
296  if (client_state->sleep_interval > params->mrt)
297  client_state->sleep_interval =
298  (1.0 + random_f64_from_to (-0.1, 0.1)) * params->mrt;
299 
300  client_state->due_time = current_time + client_state->sleep_interval;
301 
302  if (params->mrd != 0
303  && current_time > client_state->start_time + params->mrd)
304  stop_sending_client_message (vm, client_state);
305  else
306  *due_time = client_state->due_time;
307  }
308 
309  return client_state->keep_sending_client_message;
310 }
311 
312 static uword
314  vlib_node_runtime_t * rt,
315  vlib_frame_t * f0)
316 {
318  dhcp6_pd_client_state_t *client_state;
319  uword *event_data = 0;
320  f64 sleep_time = 1e9;
321  f64 current_time;
322  f64 due_time;
323  f64 dt = 0;
324  int i;
325 
326  while (true)
327  {
328  vlib_process_wait_for_event_or_clock (vm, sleep_time);
329  vlib_process_get_events (vm, &event_data);
330  vec_reset_length (event_data);
331 
332  current_time = vlib_time_now (vm);
333  do
334  {
335  due_time = current_time + 1e9;
336  for (i = 0; i < vec_len (cm->client_state_by_sw_if_index); i++)
337  {
338  client_state = &cm->client_state_by_sw_if_index[i];
339  if (!client_state->entry_valid)
340  continue;
342  (vm, client_state, current_time, &dt) && (dt < due_time))
343  due_time = dt;
344  }
345  current_time = vlib_time_now (vm);
346  }
347  while (due_time < current_time);
348 
349  sleep_time = due_time - current_time;
350  }
351 
352  return 0;
353 }
354 
355 /* *INDENT-OFF* */
358  .type = VLIB_NODE_TYPE_PROCESS,
359  .name = "send-dhcp6-pd-client-message-process",
360 };
361 /* *INDENT-ON* */
362 
363 void
366 {
368  dhcp6_pd_client_state_t *client_state = 0;
369  dhcp6_pd_client_state_t empty_state = {
370  0,
371  };
372 
373  ASSERT (~0 != sw_if_index);
374 
376  empty_state);
377  client_state = &cm->client_state_by_sw_if_index[sw_if_index];
378  if (!client_state->entry_valid)
379  {
380  client_state->entry_valid = 1;
381  client_state->adj_index = ~0;
382  }
383 
384  stop_sending_client_message (vm, client_state);
385 
386  if (!stop)
387  {
388  client_state->keep_sending_client_message = 1;
389  vec_free (client_state->params.prefixes);
390  client_state->params = *params;
391  client_state->params.prefixes = vec_dup (params->prefixes);
392  client_state->n_left = params->mrc;
393  client_state->start_time = vlib_time_now (vm);
394  client_state->sleep_interval =
395  (1 + random_f64_from_to (-0.1, 0.1)) * params->irt;
396  client_state->due_time = 0; /* send first packet ASAP */
397  client_state->transaction_id = random_u32 (&cm->seed) & 0x00ffffff;
398  client_state->buffer =
399  create_buffer_for_client_message (vm, sw_if_index, client_state,
400  params->msg_type);
401  if (client_state->buffer)
404  }
405 }
406 
407 static clib_error_t *
409 {
411 
412  cm->vlib_main = vm;
413  cm->vnet_main = vnet_get_main ();
414  cm->publisher_node = ~0;
415  cm->seed = (u32) clib_cpu_time_now ();
416 
417  return 0;
418 }
419 
421 
422 /*
423  * fd.io coding-style-patch-verification: ON
424  *
425  * Local Variables:
426  * eval: (c-set-style "gnu")
427  * End:
428  */
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
static clib_error_t * dhcp6_pd_client_init(vlib_main_t *vm)
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:673
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:890
dhcp6_pd_client_main_t dhcp6_pd_client_main
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
u8 as_u8[16]
Definition: ip6_packet.h:48
dhcp6_pd_client_state_t * client_state_by_sw_if_index
#define NULL
Definition: clib.h:58
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:279
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:113
static u64 clib_cpu_time_now(void)
Definition: time.h:75
dhcp6_pd_send_client_message_params_prefix_t * prefixes
int i
void dhcp6_pd_send_client_message(vlib_main_t *vm, u32 sw_if_index, u8 stop, dhcp6_pd_send_client_message_params_t *params)
#define DHCPV6_CLIENT_PORT
Definition: dhcp6_packet.h:26
int dhcp6_pd_publish_report(prefix_report_t *r)
static uword send_dhcp6_pd_client_message_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f0)
ip6_address_t src_address
Definition: ip6_packet.h:307
unsigned char u8
Definition: types.h:56
static vlib_buffer_t * vlib_buffer_copy(vlib_main_t *vm, vlib_buffer_t *b)
Definition: buffer_funcs.h:989
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
#define clib_memcpy(d, s, n)
Definition: string.h:180
vlib_node_registration_t ip6_rewrite_mcast_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_mcast_node)
Definition: ip6_forward.c:2142
vl_api_interface_index_t sw_if_index
Definition: gre.api:59
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:516
static u8 check_pd_send_client_message(vlib_main_t *vm, dhcp6_pd_client_state_t *client_state, f64 current_time, f64 *due_time)
void dhcp6_pd_set_publisher_node(uword node_index, uword event_type)
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:185
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: vlib_api.c:607
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:324
unsigned int u32
Definition: types.h:88
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
Definition: buffer_funcs.h:257
vl_api_fib_path_type_t type
Definition: fib_types.api:123
vnet_crypto_main_t * cm
Definition: quic_crypto.c:41
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:934
unsigned short u16
Definition: types.h:57
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:194
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:229
static void stop_sending_client_message(vlib_main_t *vm, dhcp6_pd_client_state_t *client_state)
dhcp6_pd_client_public_main_t dhcp6_pd_client_public_main
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:376
static void * vlib_process_signal_event_data(vlib_main_t *vm, uword node_index, uword type_opaque, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:828
vlib_main_t * vm
Definition: in2out_ed.c:1810
static vlib_buffer_t * create_buffer_for_client_message(vlib_main_t *vm, u32 sw_if_index, dhcp6_pd_client_state_t *client_state, u32 type)
dhcpv6_duid_ll_string_t client_duid
#define CLIENT_DUID_LENGTH
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u16 n_vectors
Definition: node.h:397
#define DHCPV6_CLIENT_IAID
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:342
#define clib_warning(format, args...)
Definition: error.h:59
static vlib_node_registration_t send_dhcp6_pd_client_message_process_node
(constructor) VLIB_REGISTER_NODE (send_dhcp6_pd_client_message_process_node)
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
Definition: ip6_forward.c:1021
static void signal_report(prefix_report_t *r)
#define ASSERT(truth)
u8 data[128]
Definition: ipsec_types.api:87
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
dhcp6_client_common_main_t dhcp6_client_common_main
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:294
Definition: defs.h:47
u16 payload_length
Definition: ip6_packet.h:298
vl_api_address_t ip
Definition: l2.api:490
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
#define DHCPV6_SERVER_PORT
Definition: dhcp6_packet.h:27
#define vnet_buffer(b)
Definition: buffer.h:408
static u32 random_u32(u32 *seed)
32-bit random number generator
Definition: random.h:69
adj_index_t adj_mcast_add_or_lock(fib_protocol_t proto, vnet_link_t link_type, u32 sw_if_index)
Mcast Adjacency.
Definition: adj_mcast.c:51
dhcp6_pd_send_client_message_params_t params
static const ip6_address_t all_dhcp6_relay_agents_and_servers
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:487
static u32 vlib_buffer_alloc(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Allocate buffers into supplied array.
Definition: buffer_funcs.h:630
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
Definition: defs.h:46
ip6_address_t dst_address
Definition: ip6_packet.h:307
static_always_inline f64 random_f64_from_to(f64 from, f64 to)