FD.io VPP  v21.01.1
Vector Packet Processing
dhcp6_proxy_node.c
Go to the documentation of this file.
1 /*
2  * dhcp6_proxy_node.c: dhcpv6 proxy node processing
3  *
4  * Copyright (c) 2013 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <vlib/vlib.h>
19 #include <dhcp/dhcp_proxy.h>
20 #include <dhcp/dhcp6_packet.h>
21 #include <vnet/mfib/mfib_table.h>
22 #include <vnet/mfib/ip6_mfib.h>
23 #include <vnet/fib/fib.h>
24 
25 static char *dhcpv6_proxy_error_strings[] = {
26 #define dhcpv6_proxy_error(n,s) s,
28 #undef dhcpv6_proxy_error
29 };
30 
31 #define foreach_dhcpv6_proxy_to_server_input_next \
32  _ (DROP, "error-drop") \
33  _ (LOOKUP, "ip6-lookup") \
34  _ (SEND_TO_CLIENT, "dhcpv6-proxy-to-client")
35 
36 
37 typedef enum
38 {
39 #define _(s,n) DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_##s,
41 #undef _
44 
45 typedef struct
46 {
47  /* 0 => to server, 1 => to client */
48  int which;
49  u8 packet_data[64];
54 
57 
58 /* all DHCP servers address */
59 static ip6_address_t all_dhcpv6_server_address;
61 
62 static u8 *
63 format_dhcpv6_proxy_trace (u8 * s, va_list * args)
64 {
65  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
66  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
67  dhcpv6_proxy_trace_t *t = va_arg (*args, dhcpv6_proxy_trace_t *);
68 
69  if (t->which == 0)
70  s = format (s, "DHCPV6 proxy: sent to server %U",
71  format_ip6_address, &t->packet_data, sizeof (ip6_address_t));
72  else
73  s = format (s, "DHCPV6 proxy: sent to client from %U",
74  format_ip6_address, &t->packet_data, sizeof (ip6_address_t));
75  if (t->error != (u32) ~ 0)
76  s = format (s, " error: %s\n", dhcpv6_proxy_error_strings[t->error]);
77 
78  s = format (s, " original_sw_if_index: %d, sw_if_index: %d\n",
80 
81  return s;
82 }
83 
84 static u8 *
86 {
87  dhcpv6_header_t *h = va_arg (*args, dhcpv6_header_t *);
88  u32 max_header_bytes = va_arg (*args, u32);
89  u32 header_bytes;
90 
91  header_bytes = sizeof (h[0]);
92  if (max_header_bytes != 0 && header_bytes > max_header_bytes)
93  return format (s, "dhcpv6 header truncated");
94 
95  s = format (s, "DHCPV6 Proxy");
96 
97  return s;
98 }
99 
100 /* get first interface address */
101 static ip6_address_t *
103 {
104  ip_lookup_main_t *lm = &im->lookup_main;
105  ip_interface_address_t *ia = 0;
106  ip6_address_t *result = 0;
107 
108  /* *INDENT-OFF* */
109  foreach_ip_interface_address (lm, ia, sw_if_index,
110  1 /* honor unnumbered */,
111  ({
112  ip6_address_t * a = ip_interface_address_get_address (lm, ia);
113  if ((a->as_u8[0] & 0xe0) == 0x20 ||
114  (a->as_u8[0] & 0xfe) == 0xfc) {
115  result = a;
116  break;
117  }
118  }));
119  /* *INDENT-ON* */
120  return result;
121 }
122 
123 static inline void
124 copy_ip6_address (ip6_address_t * dst, ip6_address_t * src)
125 {
126  dst->as_u64[0] = src->as_u64[0];
127  dst->as_u64[1] = src->as_u64[1];
128 }
129 
130 static uword
133  vlib_frame_t * from_frame)
134 {
135  u32 n_left_from, next_index, *from, *to_next;
137  from = vlib_frame_vector_args (from_frame);
138  n_left_from = from_frame->n_vectors;
139  u32 pkts_to_server = 0, pkts_to_client = 0, pkts_no_server = 0;
140  u32 pkts_no_interface_address = 0, pkts_no_exceeding_max_hop = 0;
141  u32 pkts_no_src_address = 0;
142  u32 pkts_wrong_msg_type = 0;
143  u32 pkts_too_big = 0;
144  ip6_main_t *im = &ip6_main;
145  ip6_address_t *src;
146  int bogus_length;
147  dhcp_proxy_t *proxy;
148  dhcp_server_t *server;
149  u32 rx_fib_idx = 0, server_fib_idx = 0;
150 
151  next_index = node->cached_next_index;
152 
153  while (n_left_from > 0)
154  {
155  u32 n_left_to_next;
156 
157  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
158 
159  while (n_left_from > 0 && n_left_to_next > 0)
160  {
161  vnet_main_t *vnm = vnet_get_main ();
162  u32 sw_if_index = 0;
163  u32 rx_sw_if_index = 0;
164  vnet_sw_interface_t *swif;
165  u32 bi0;
166  vlib_buffer_t *b0;
167  udp_header_t *u0, *u1;
168  dhcpv6_header_t *h0; // client msg hdr
169  ip6_header_t *ip0, *ip1;
170  ip6_address_t _ia0, *ia0 = &_ia0;
171  u32 next0;
172  u32 error0 = (u32) ~ 0;
173  dhcpv6_option_t *fwd_opt;
174  dhcpv6_relay_hdr_t *r1;
175  u16 len;
176  dhcpv6_int_id_t *id1;
177  dhcpv6_vss_t *vss1;
178  dhcpv6_client_mac_t *cmac; // client mac
179  ethernet_header_t *e_h0;
180  u8 client_src_mac[6];
181  dhcp_vss_t *vss;
182  u8 is_solicit = 0;
183 
184  bi0 = from[0];
185  from += 1;
186  n_left_from -= 1;
187 
188  b0 = vlib_get_buffer (vm, bi0);
189 
190  h0 = vlib_buffer_get_current (b0);
191 
192  /*
193  * udp_local hands us the DHCPV6 header.
194  */
195  u0 = (void *) h0 - (sizeof (*u0));
196  ip0 = (void *) u0 - (sizeof (*ip0));
197  e_h0 = (void *) ip0 - ethernet_buffer_header_size (b0);
198 
199  clib_memcpy (client_src_mac, e_h0->src_address, 6);
200 
201  switch (h0->msg_type)
202  {
203  case DHCPV6_MSG_SOLICIT:
204  case DHCPV6_MSG_REQUEST:
205  case DHCPV6_MSG_CONFIRM:
206  case DHCPV6_MSG_RENEW:
207  case DHCPV6_MSG_REBIND:
208  case DHCPV6_MSG_RELEASE:
209  case DHCPV6_MSG_DECLINE:
212  /* send to server */
213  break;
215  /* send to client */
216  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_SEND_TO_CLIENT;
217  error0 = 0;
218  pkts_to_client++;
219  goto do_enqueue;
220  default:
221  /* drop the packet */
222  pkts_wrong_msg_type++;
223  error0 = DHCPV6_PROXY_ERROR_WRONG_MESSAGE_TYPE;
224  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
225  goto do_trace;
226 
227  }
228 
229  /* Send to DHCPV6 server via the configured FIB */
230  rx_sw_if_index = sw_if_index =
231  vnet_buffer (b0)->sw_if_index[VLIB_RX];
232  rx_fib_idx = im->mfib_index_by_sw_if_index[rx_sw_if_index];
233  proxy = dhcp_get_proxy (dpm, rx_fib_idx, FIB_PROTOCOL_IP6);
234 
235  if (PREDICT_FALSE (NULL == proxy))
236  {
237  error0 = DHCPV6_PROXY_ERROR_NO_SERVER;
238  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
239  pkts_no_server++;
240  goto do_trace;
241  }
242 
243  server = &proxy->dhcp_servers[0];
244  server_fib_idx = server->server_fib_index;
245  vnet_buffer (b0)->sw_if_index[VLIB_TX] = server_fib_idx;
246 
247 
248  /* relay-option header pointer */
249  vlib_buffer_advance (b0, -(sizeof (*fwd_opt)));
250  fwd_opt = vlib_buffer_get_current (b0);
251  /* relay message header pointer */
252  vlib_buffer_advance (b0, -(sizeof (*r1)));
253  r1 = vlib_buffer_get_current (b0);
254 
255  vlib_buffer_advance (b0, -(sizeof (*u1)));
256  u1 = vlib_buffer_get_current (b0);
257 
258  vlib_buffer_advance (b0, -(sizeof (*ip1)));
259  ip1 = vlib_buffer_get_current (b0);
260 
261  /* fill in all that rubbish... */
262  len = clib_net_to_host_u16 (u0->length) - sizeof (udp_header_t);
263  copy_ip6_address (&r1->peer_addr, &ip0->src_address);
264 
265  r1->msg_type = DHCPV6_MSG_RELAY_FORW;
266  fwd_opt->length = clib_host_to_net_u16 (len);
267  fwd_opt->option = clib_host_to_net_u16 (DHCPV6_OPTION_RELAY_MSG);
268 
269  r1->hop_count++;
270  r1->hop_count =
271  (h0->msg_type != DHCPV6_MSG_RELAY_FORW) ? 0 : r1->hop_count;
272 
273  if (PREDICT_FALSE (r1->hop_count >= HOP_COUNT_LIMIT))
274  {
276  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
277  pkts_no_exceeding_max_hop++;
278  goto do_trace;
279  }
280 
281 
282  /* If relay-fwd and src address is site or global unicast address */
283  if (h0->msg_type == DHCPV6_MSG_RELAY_FORW &&
284  ((ip0->src_address.as_u8[0] & 0xe0) == 0x20 ||
285  (ip0->src_address.as_u8[0] & 0xfe) == 0xfc))
286  {
287  /* Set link address to zero */
288  r1->link_addr.as_u64[0] = 0;
289  r1->link_addr.as_u64[1] = 0;
290  goto link_address_set;
291  }
292 
293  /* if receiving interface is unnumbered, use receiving interface
294  * IP address as link address, otherwise use the loopback interface
295  * IP address as link address.
296  */
297 
298  swif = vnet_get_sw_interface (vnm, rx_sw_if_index);
300  sw_if_index = swif->unnumbered_sw_if_index;
301 
302  ia0 =
304  sw_if_index);
305  if (ia0 == 0)
306  {
307  error0 = DHCPV6_PROXY_ERROR_NO_INTERFACE_ADDRESS;
308  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
309  pkts_no_interface_address++;
310  goto do_trace;
311  }
312 
313  copy_ip6_address (&r1->link_addr, ia0);
314 
315  link_address_set:
316 
317  if ((b0->current_data + b0->current_length + sizeof (*id1) +
318  sizeof (*vss1) + sizeof (*cmac)) >
320  {
321  error0 = DHCPV6_PROXY_ERROR_PKT_TOO_BIG;
322  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
323  pkts_too_big++;
324  goto do_trace;
325  }
326 
327  id1 = (dhcpv6_int_id_t *) (((uword) ip1) + b0->current_length);
328  b0->current_length += (sizeof (*id1));
329 
330  id1->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_INTERFACE_ID);
331  id1->opt.length = clib_host_to_net_u16 (sizeof (rx_sw_if_index));
332  id1->int_idx = clib_host_to_net_u32 (rx_sw_if_index);
333 
334  u1->length = 0;
335  if (h0->msg_type != DHCPV6_MSG_RELAY_FORW)
336  {
337  cmac =
338  (dhcpv6_client_mac_t *) (((uword) ip1) + b0->current_length);
339  b0->current_length += (sizeof (*cmac));
340  cmac->opt.length = clib_host_to_net_u16 (sizeof (*cmac) -
341  sizeof (cmac->opt));
342  cmac->opt.option =
343  clib_host_to_net_u16
344  (DHCPV6_OPTION_CLIENT_LINK_LAYER_ADDRESS);
345  cmac->link_type = clib_host_to_net_u16 (1); /* ethernet */
346  clib_memcpy (cmac->data, client_src_mac, 6);
347  u1->length += sizeof (*cmac);
348  }
349 
350  vss = dhcp_get_vss_info (dpm, rx_fib_idx, FIB_PROTOCOL_IP6);
351 
352  if (vss)
353  {
354  u16 id_len; /* length of VPN ID */
355  u16 type_len = sizeof (vss1->vss_type);
356 
357  vss1 = (dhcpv6_vss_t *) (((uword) ip1) + b0->current_length);
358  vss1->vss_type = vss->vss_type;
359  if (vss->vss_type == VSS_TYPE_VPN_ID)
360  {
361  id_len = sizeof (vss->vpn_id); /* vpn_id is 7 bytes */
362  memcpy (vss1->data, vss->vpn_id, id_len);
363  }
364  else if (vss->vss_type == VSS_TYPE_ASCII)
365  {
366  id_len = vec_len (vss->vpn_ascii_id);
367  memcpy (vss1->data, vss->vpn_ascii_id, id_len);
368  }
369  else /* must be VSS_TYPE_DEFAULT, no VPN ID */
370  id_len = 0;
371 
372  vss1->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_VSS);
373  vss1->opt.length = clib_host_to_net_u16 (type_len + id_len);
374  u1->length += type_len + id_len + sizeof (vss1->opt);
375  b0->current_length += type_len + id_len + sizeof (vss1->opt);
376  }
377 
378  pkts_to_server++;
379  u1->checksum = 0;
380  u1->src_port = clib_host_to_net_u16 (UDP_DST_PORT_dhcpv6_to_client);
381  u1->dst_port = clib_host_to_net_u16 (UDP_DST_PORT_dhcpv6_to_server);
382 
383  u1->length =
384  clib_host_to_net_u16 (clib_net_to_host_u16 (fwd_opt->length) +
385  sizeof (*r1) + sizeof (*fwd_opt) +
386  sizeof (*u1) + sizeof (*id1) + u1->length);
387 
388  clib_memset (ip1, 0, sizeof (*ip1));
389  ip1->ip_version_traffic_class_and_flow_label = 0x60;
390  ip1->payload_length = u1->length;
391  ip1->protocol = PROTO_UDP;
392  ip1->hop_limit = HOP_COUNT_LIMIT;
393  src = ((server->dhcp_server.ip6.as_u64[0] ||
394  server->dhcp_server.ip6.as_u64[1]) ?
395  &server->dhcp_server.ip6 : &all_dhcpv6_server_address);
396  copy_ip6_address (&ip1->dst_address, src);
397 
398 
400  (&ip6_main, vnet_buffer (b0)->sw_if_index[VLIB_RX]);
401 
402  src = (proxy->dhcp_src_address.ip6.as_u64[0] ||
403  proxy->dhcp_src_address.ip6.as_u64[1]) ?
404  &proxy->dhcp_src_address.ip6 : ia0;
405  if (ia0 == 0)
406  {
407  error0 = DHCPV6_PROXY_ERROR_NO_SRC_ADDRESS;
408  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
409  pkts_no_src_address++;
410  goto do_trace;
411  }
412 
413  copy_ip6_address (&ip1->src_address, src);
414 
415 
416  u1->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip1,
417  &bogus_length);
418  ASSERT (bogus_length == 0);
419 
420  next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP;
421 
422  is_solicit = (DHCPV6_MSG_SOLICIT == h0->msg_type);
423 
424  /*
425  * If we have multiple servers configured and this is the
426  * client's discover message, then send copies to each of
427  * those servers
428  */
429  if (is_solicit && vec_len (proxy->dhcp_servers) > 1)
430  {
431  u32 ii;
432 
433  for (ii = 1; ii < vec_len (proxy->dhcp_servers); ii++)
434  {
435  vlib_buffer_t *c0;
436  u32 ci0;
437 
438  c0 = vlib_buffer_copy (vm, b0);
439  if (c0 == NULL)
440  {
442  (vm, dhcpv6_proxy_to_server_node.index,
443  DHCPV6_PROXY_ERROR_ALLOC_FAIL, 1);
444  continue;
445  }
447  ci0 = vlib_get_buffer_index (vm, c0);
448  server = &proxy->dhcp_servers[ii];
449 
450  ip0 = vlib_buffer_get_current (c0);
451 
452  src = ((server->dhcp_server.ip6.as_u64[0] ||
453  server->dhcp_server.ip6.as_u64[1]) ?
454  &server->dhcp_server.ip6 :
456  copy_ip6_address (&ip1->dst_address, src);
457 
458  to_next[0] = ci0;
459  to_next += 1;
460  n_left_to_next -= 1;
461 
462  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
463  to_next, n_left_to_next,
464  ci0, next0);
465 
466  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
467  {
469 
470  tr = vlib_add_trace (vm, node, c0, sizeof (*tr));
471  tr->which = 0; /* to server */
472  tr->error = error0;
473  tr->original_sw_if_index = rx_sw_if_index;
474  tr->sw_if_index = sw_if_index;
475  if (next0 == DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP)
476  copy_ip6_address ((ip6_address_t *) &
477  tr->packet_data[0],
478  &server->dhcp_server.ip6);
479  }
480 
481  if (PREDICT_FALSE (0 == n_left_to_next))
482  {
483  vlib_put_next_frame (vm, node, next_index,
484  n_left_to_next);
485  vlib_get_next_frame (vm, node, next_index,
486  to_next, n_left_to_next);
487  }
488  }
489  }
490 
491  do_trace:
492  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
493  {
494  dhcpv6_proxy_trace_t *tr = vlib_add_trace (vm, node,
495  b0, sizeof (*tr));
496  tr->which = 0; /* to server */
497  tr->error = error0;
498  tr->original_sw_if_index = rx_sw_if_index;
499  tr->sw_if_index = sw_if_index;
500  if (DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP == next0)
501  copy_ip6_address ((ip6_address_t *) & tr->packet_data[0],
502  &server->dhcp_server.ip6);
503  }
504 
505  do_enqueue:
506  to_next[0] = bi0;
507  to_next += 1;
508  n_left_to_next -= 1;
509 
510  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
511  to_next, n_left_to_next,
512  bi0, next0);
513  }
514 
515  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
516  }
517 
519  DHCPV6_PROXY_ERROR_RELAY_TO_CLIENT,
520  pkts_to_client);
522  DHCPV6_PROXY_ERROR_RELAY_TO_SERVER,
523  pkts_to_server);
525  DHCPV6_PROXY_ERROR_NO_INTERFACE_ADDRESS,
526  pkts_no_interface_address);
528  DHCPV6_PROXY_ERROR_WRONG_MESSAGE_TYPE,
529  pkts_wrong_msg_type);
531  DHCPV6_PROXY_ERROR_NO_SRC_ADDRESS,
532  pkts_no_src_address);
534  DHCPV6_PROXY_ERROR_PKT_TOO_BIG, pkts_too_big);
535  return from_frame->n_vectors;
536 }
537 
538 /* *INDENT-OFF* */
540  .function = dhcpv6_proxy_to_server_input,
541  .name = "dhcpv6-proxy-to-server",
542  /* Takes a vector of packets. */
543  .vector_size = sizeof (u32),
544 
545  .n_errors = DHCPV6_PROXY_N_ERROR,
546  .error_strings = dhcpv6_proxy_error_strings,
547 
548  .n_next_nodes = DHCPV6_PROXY_TO_SERVER_INPUT_N_NEXT,
549  .next_nodes = {
550 #define _(s,n) [DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_##s] = n,
552 #undef _
553  },
554 
556  .format_trace = format_dhcpv6_proxy_trace,
557 #if 0
558  .unformat_buffer = unformat_dhcpv6_proxy_header,
559 #endif
560 };
561 /* *INDENT-ON* */
562 
563 static uword
566  vlib_frame_t * from_frame)
567 {
568 
569  u32 n_left_from, *from;
572  dhcp_proxy_t *proxy;
573  dhcp_server_t *server;
574  vnet_main_t *vnm = vnet_get_main ();
575  int bogus_length;
576 
577  from = vlib_frame_vector_args (from_frame);
578  n_left_from = from_frame->n_vectors;
579 
580  while (n_left_from > 0)
581  {
582  u32 bi0;
583  vlib_buffer_t *b0;
584  udp_header_t *u0, *u1 = 0;
585  dhcpv6_relay_hdr_t *h0;
586  ip6_header_t *ip1 = 0, *ip0;
587  ip6_address_t _ia0, *ia0 = &_ia0;
588  ip6_address_t client_address;
590  ethernet_header_t *mac0;
591  vnet_hw_interface_t *hi0;
592  vlib_frame_t *f0;
593  u32 *to_next0;
594  u32 sw_if_index = ~0;
595  u32 original_sw_if_index = ~0;
596  vnet_sw_interface_t *si0;
597  u32 inner_vlan = (u32) ~ 0;
598  u32 outer_vlan = (u32) ~ 0;
599  u32 error0 = (u32) ~ 0;
600  vnet_sw_interface_t *swif;
601  dhcpv6_option_t *r0 = 0, *o;
602  u16 len = 0;
603  u8 interface_opt_flag = 0;
604  u8 relay_msg_opt_flag = 0;
605  ip6_main_t *im = &ip6_main;
606  u32 server_fib_idx, client_fib_idx;
607 
608  bi0 = from[0];
609  from += 1;
610  n_left_from -= 1;
611 
612  b0 = vlib_get_buffer (vm, bi0);
613  h0 = vlib_buffer_get_current (b0);
614 
615  if (DHCPV6_MSG_RELAY_REPL != h0->msg_type)
616  {
617  error0 = DHCPV6_PROXY_ERROR_WRONG_MESSAGE_TYPE;
618 
619  drop_packet:
621  error0, 1);
622 
624  to_next0 = vlib_frame_vector_args (f0);
625  to_next0[0] = bi0;
626  f0->n_vectors = 1;
628  goto do_trace;
629  }
630  /* hop count seems not need to be checked */
631  if (HOP_COUNT_LIMIT < h0->hop_count)
632  {
634  goto drop_packet;
635  }
636  u0 = (void *) h0 - (sizeof (*u0));
637  ip0 = (void *) u0 - (sizeof (*ip0));
638 
639  vlib_buffer_advance (b0, sizeof (*h0));
640  o = vlib_buffer_get_current (b0);
641 
642  /* Parse through TLVs looking for option 18 (DHCPV6_OPTION_INTERFACE_ID)
643  _and_ option 9 (DHCPV6_OPTION_RELAY_MSG) option which must be there.
644  Currently assuming no other options need to be processed
645  The interface-ID is the FIB number we need
646  to track down the client-facing interface */
647 
648  while ((u8 *) o < (b0->data + b0->current_data + b0->current_length))
649  {
650  if (DHCPV6_OPTION_INTERFACE_ID == clib_net_to_host_u16 (o->option))
651  {
652  interface_opt_flag = 1;
653  if (clib_net_to_host_u16 (o->length) == sizeof (sw_if_index))
654  sw_if_index =
655  clib_net_to_host_u32 (((dhcpv6_int_id_t *) o)->int_idx);
656  if (sw_if_index >= vec_len (im->fib_index_by_sw_if_index))
657  {
658  error0 = DHCPV6_PROXY_ERROR_WRONG_INTERFACE_ID_OPTION;
659  goto drop_packet;
660  }
661  }
662  if (DHCPV6_OPTION_RELAY_MSG == clib_net_to_host_u16 (o->option))
663  {
664  relay_msg_opt_flag = 1;
665  r0 = vlib_buffer_get_current (b0);
666  }
667  if ((relay_msg_opt_flag == 1) && (interface_opt_flag == 1))
668  break;
670  sizeof (*o) +
671  clib_net_to_host_u16 (o->length));
672  o =
673  (dhcpv6_option_t *) (((uword) o) +
674  clib_net_to_host_u16 (o->length) +
675  sizeof (*o));
676  }
677 
678  if ((relay_msg_opt_flag == 0) || (r0 == 0))
679  {
680  error0 = DHCPV6_PROXY_ERROR_NO_RELAY_MESSAGE_OPTION;
681  goto drop_packet;
682  }
683 
684  if ((u32) ~ 0 == sw_if_index)
685  {
686  error0 = DHCPV6_PROXY_ERROR_NO_CIRCUIT_ID_OPTION;
687  goto drop_packet;
688  }
689 
690  //Advance buffer to start of encapsulated DHCPv6 message
691  vlib_buffer_advance (b0, sizeof (*r0));
692 
693  client_fib_idx = im->mfib_index_by_sw_if_index[sw_if_index];
694  proxy = dhcp_get_proxy (dm, client_fib_idx, FIB_PROTOCOL_IP6);
695 
696  if (NULL == proxy)
697  {
698  error0 = DHCPV6_PROXY_ERROR_NO_SERVER;
699  goto drop_packet;
700  }
701 
702  server_fib_idx = im->fib_index_by_sw_if_index
703  [vnet_buffer (b0)->sw_if_index[VLIB_RX]];
704 
705  vec_foreach (server, proxy->dhcp_servers)
706  {
707  if (server_fib_idx == server->server_fib_index &&
708  ip0->src_address.as_u64[0] == server->dhcp_server.ip6.as_u64[0] &&
709  ip0->src_address.as_u64[1] == server->dhcp_server.ip6.as_u64[1])
710  {
711  goto server_found;
712  }
713  }
714 
715  //drop packet if not from server with configured address or FIB
716  error0 = DHCPV6_PROXY_ERROR_BAD_SVR_FIB_OR_ADDRESS;
717  goto drop_packet;
718 
719  server_found:
720  vnet_buffer (b0)->sw_if_index[VLIB_TX] = original_sw_if_index
721  = sw_if_index;
722 
723  swif = vnet_get_sw_interface (vnm, original_sw_if_index);
725  sw_if_index = swif->unnumbered_sw_if_index;
726 
727 
728  /*
729  * udp_local hands us the DHCPV6 header, need udp hdr,
730  * ip hdr to relay to client
731  */
732  vlib_buffer_advance (b0, -(sizeof (*u1)));
733  u1 = vlib_buffer_get_current (b0);
734 
735  vlib_buffer_advance (b0, -(sizeof (*ip1)));
736  ip1 = vlib_buffer_get_current (b0);
737 
738  copy_ip6_address (&client_address, &h0->peer_addr);
739 
740  ia0 = ip6_interface_first_address (&ip6_main, sw_if_index);
741  if (ia0 == 0)
742  {
743  error0 = DHCPV6_PROXY_ERROR_NO_INTERFACE_ADDRESS;
744  goto drop_packet;
745  }
746 
747  len = clib_net_to_host_u16 (r0->length);
748  clib_memset (ip1, 0, sizeof (*ip1));
749  copy_ip6_address (&ip1->dst_address, &client_address);
750  u1->checksum = 0;
751  u1->src_port = clib_net_to_host_u16 (UDP_DST_PORT_dhcpv6_to_server);
752  u1->dst_port = clib_net_to_host_u16 (UDP_DST_PORT_dhcpv6_to_client);
753  u1->length = clib_host_to_net_u16 (len + sizeof (udp_header_t));
754 
756  ip0->ip_version_traffic_class_and_flow_label & 0x00000fff;
757  ip1->payload_length = u1->length;
758  ip1->protocol = PROTO_UDP;
759  ip1->hop_limit = HOP_COUNT_LIMIT;
760  copy_ip6_address (&ip1->src_address, ia0);
761 
762  u1->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip1,
763  &bogus_length);
764  ASSERT (bogus_length == 0);
765 
766  vlib_buffer_advance (b0, -(sizeof (ethernet_header_t)));
767  si0 = vnet_get_sw_interface (vnm, original_sw_if_index);
768  if (si0->type == VNET_SW_INTERFACE_TYPE_SUB)
769  {
770  if (si0->sub.eth.flags.one_tag == 1)
771  {
772  vlib_buffer_advance (b0, -4 /* space for 1 VLAN tag */ );
773  outer_vlan = (si0->sub.eth.outer_vlan_id << 16) | 0x86dd;
774  }
775  else if (si0->sub.eth.flags.two_tags == 1)
776  {
777  vlib_buffer_advance (b0, -8 /* space for 2 VLAN tag */ );
778  outer_vlan = (si0->sub.eth.outer_vlan_id << 16) | 0x8100;
779  inner_vlan = (si0->sub.eth.inner_vlan_id << 16) | 0x86dd;
780  }
781  }
782 
783  mac0 = vlib_buffer_get_current (b0);
784 
785  hi0 = vnet_get_sup_hw_interface (vnm, original_sw_if_index);
786  ei0 = pool_elt_at_index (em->interfaces, hi0->hw_instance);
787  clib_memcpy (mac0->src_address, &ei0->address,
788  sizeof (mac0->src_address));
789  clib_memset (&mac0->dst_address, 0xff, sizeof (mac0->dst_address));
790 
791  if (si0->type == VNET_SW_INTERFACE_TYPE_SUB && outer_vlan != (u32) ~ 0)
792  {
793  mac0->type = (si0->sub.eth.flags.dot1ad == 1) ?
794  clib_net_to_host_u16 (0x88a8) : clib_net_to_host_u16 (0x8100);
795  u32 *vlan_tag = (u32 *) (mac0 + 1);
796  *vlan_tag = clib_host_to_net_u32 (outer_vlan);
797  if (inner_vlan != (u32) ~ 0)
798  {
799  u32 *inner_vlan_tag = (u32 *) (vlan_tag + 1);
800  *inner_vlan_tag = clib_host_to_net_u32 (inner_vlan);
801  }
802  }
803  else
804  {
805  mac0->type = clib_net_to_host_u16 (0x86dd);
806  }
807 
808  /* $$$ consider adding a dynamic next to the graph node, for performance */
810  to_next0 = vlib_frame_vector_args (f0);
811  to_next0[0] = bi0;
812  f0->n_vectors = 1;
814 
815  do_trace:
816  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
817  {
818  dhcpv6_proxy_trace_t *tr = vlib_add_trace (vm, node,
819  b0, sizeof (*tr));
820  tr->which = 1; /* to client */
821  if (ia0)
822  copy_ip6_address ((ip6_address_t *) tr->packet_data, ia0);
823  tr->error = error0;
824  tr->original_sw_if_index = original_sw_if_index;
825  tr->sw_if_index = sw_if_index;
826  }
827  }
828  return from_frame->n_vectors;
829 
830 }
831 
832 /* *INDENT-OFF* */
834  .function = dhcpv6_proxy_to_client_input,
835  .name = "dhcpv6-proxy-to-client",
836  /* Takes a vector of packets. */
837  .vector_size = sizeof (u32),
838 
839  .n_errors = DHCPV6_PROXY_N_ERROR,
840  .error_strings = dhcpv6_proxy_error_strings,
842  .format_trace = format_dhcpv6_proxy_trace,
843 #if 0
844  .unformat_buffer = unformat_dhcpv6_proxy_header,
845 #endif
846 };
847 /* *INDENT-ON* */
848 
849 static clib_error_t *
851 {
854 
855  error_drop_node = vlib_get_node_by_name (vm, (u8 *) "error-drop");
856  dm->error_drop_node_index = error_drop_node->index;
857 
858  /* RFC says this is the dhcpv6 server address */
859  all_dhcpv6_server_address.as_u64[0] =
860  clib_host_to_net_u64 (0xFF05000000000000);
861  all_dhcpv6_server_address.as_u64[1] = clib_host_to_net_u64 (0x00010003);
862 
863  /* RFC says this is the server and agent address */
865  clib_host_to_net_u64 (0xFF02000000000000);
867  clib_host_to_net_u64 (0x00010002);
868 
869  return 0;
870 }
871 
873 
874 int
875 dhcp6_proxy_set_server (ip46_address_t * addr,
876  ip46_address_t * src_addr,
877  u32 rx_table_id, u32 server_table_id, int is_del)
878 {
880  u32 rx_fib_index = 0;
881  int rc = 0;
882 
883  const mfib_prefix_t all_dhcp_servers = {
884  .fp_len = 128,
885  .fp_proto = FIB_PROTOCOL_IP6,
886  .fp_grp_addr = {
888  }
889  };
890 
891  if (ip46_address_is_zero (addr))
892  return VNET_API_ERROR_INVALID_DST_ADDRESS;
893 
894  if (ip46_address_is_zero (src_addr))
895  return VNET_API_ERROR_INVALID_SRC_ADDRESS;
896 
898  rx_table_id,
900 
901  if (is_del)
902  {
903  if (dhcp_proxy_server_del (FIB_PROTOCOL_IP6, rx_fib_index,
904  addr, server_table_id))
905  {
906  mfib_table_entry_delete (rx_fib_index,
907  &all_dhcp_servers, MFIB_SOURCE_DHCP);
908  mfib_table_unlock (rx_fib_index, FIB_PROTOCOL_IP6,
910 
911  udp_unregister_dst_port (vm, UDP_DST_PORT_dhcpv6_to_client,
912  0 /* is_ip6 */ );
913  udp_unregister_dst_port (vm, UDP_DST_PORT_dhcpv6_to_server,
914  0 /* is_ip6 */ );
915  }
916  }
917  else
918  {
919  const fib_route_path_t path_for_us = {
921  .frp_addr = zero_addr,
922  .frp_sw_if_index = 0xffffffff,
923  .frp_fib_index = ~0,
924  .frp_weight = 1,
925  .frp_flags = FIB_ROUTE_PATH_LOCAL,
926  .frp_mitf_flags = MFIB_ITF_FLAG_FORWARD,
927  };
928  if (dhcp_proxy_server_add (FIB_PROTOCOL_IP6, addr, src_addr,
929  rx_fib_index, server_table_id))
930  {
931  mfib_table_entry_path_update (rx_fib_index,
932  &all_dhcp_servers,
933  MFIB_SOURCE_DHCP, &path_for_us);
934  /*
935  * Each interface that is enabled in this table, needs to be added
936  * as an accepting interface, but this is not easily doable in VPP.
937  * So we cheat. Add a flag to the entry that indicates accept form
938  * any interface.
939  * We will still only accept on v6 enabled interfaces, since the
940  * input feature ensures this.
941  */
942  mfib_table_entry_update (rx_fib_index,
943  &all_dhcp_servers,
948 
949  udp_register_dst_port (vm, UDP_DST_PORT_dhcpv6_to_client,
951  0 /* is_ip6 */ );
952  udp_register_dst_port (vm, UDP_DST_PORT_dhcpv6_to_server,
954  0 /* is_ip6 */ );
955  }
956  }
957 
959 
960  return (rc);
961 }
962 
963 static clib_error_t *
965  unformat_input_t * input,
966  vlib_cli_command_t * cmd)
967 {
968  ip46_address_t addr, src_addr;
969  int set_server = 0, set_src_address = 0;
970  u32 rx_table_id = 0, server_table_id = 0;
971  int is_del = 0;
972 
974  {
975  if (unformat (input, "server %U", unformat_ip6_address, &addr.ip6))
976  set_server = 1;
977  else if (unformat (input, "src-address %U",
978  unformat_ip6_address, &src_addr.ip6))
979  set_src_address = 1;
980  else if (unformat (input, "server-fib-id %d", &server_table_id))
981  ;
982  else if (unformat (input, "rx-fib-id %d", &rx_table_id))
983  ;
984  else if (unformat (input, "delete") || unformat (input, "del"))
985  is_del = 1;
986  else
987  break;
988  }
989 
990  if (is_del || (set_server && set_src_address))
991  {
992  int rv;
993 
994  rv = dhcp6_proxy_set_server (&addr, &src_addr, rx_table_id,
995  server_table_id, is_del);
996 
997  //TODO: Complete the errors
998  switch (rv)
999  {
1000  case 0:
1001  return 0;
1002 
1003  case VNET_API_ERROR_INVALID_DST_ADDRESS:
1004  return clib_error_return (0, "Invalid server address");
1005 
1006  case VNET_API_ERROR_INVALID_SRC_ADDRESS:
1007  return clib_error_return (0, "Invalid src address");
1008 
1009  case VNET_API_ERROR_NO_SUCH_ENTRY:
1010  return clib_error_return
1011  (0, "Fib id %d: no per-fib DHCP server configured", rx_table_id);
1012 
1013  default:
1014  return clib_error_return (0, "BUG: rv %d", rv);
1015  }
1016  }
1017  else
1018  return clib_error_return (0, "parse error`%U'",
1019  format_unformat_error, input);
1020 }
1021 
1022 /* *INDENT-OFF* */
1023 VLIB_CLI_COMMAND (dhcpv6_proxy_set_command, static) = {
1024  .path = "set dhcpv6 proxy",
1025  .short_help = "set dhcpv6 proxy [del] server <ipv6-addr> src-address <ipv6-addr> "
1026  "[server-fib-id <fib-id>] [rx-fib-id <fib-id>] ",
1027  .function = dhcpv6_proxy_set_command_fn,
1028 };
1029 /* *INDENT-ON* */
1030 
1031 static u8 *
1032 format_dhcp6_proxy_server (u8 * s, va_list * args)
1033 {
1034  dhcp_proxy_t *proxy = va_arg (*args, dhcp_proxy_t *);
1035  fib_table_t *server_fib;
1036  dhcp_server_t *server;
1037  ip6_mfib_t *rx_fib;
1038 
1039  if (proxy == 0)
1040  {
1041  s = format (s, "%=14s%=16s%s", "RX FIB", "Src Address",
1042  "Servers FIB,Address");
1043  return s;
1044  }
1045 
1046  rx_fib = ip6_mfib_get (proxy->rx_fib_index);
1047 
1048  s = format (s, "%=14u%=16U",
1049  rx_fib->table_id,
1051 
1052  vec_foreach (server, proxy->dhcp_servers)
1053  {
1054  server_fib = fib_table_get (server->server_fib_index, FIB_PROTOCOL_IP6);
1055  s = format (s, "%u,%U ",
1056  server_fib->ft_table_id,
1058  }
1059 
1060  return s;
1061 }
1062 
1063 static int
1065 {
1066  vlib_main_t *vm = ctx;
1067 
1068  vlib_cli_output (vm, "%U", format_dhcp6_proxy_server, proxy);
1069 
1070  return (1);
1071 }
1072 
1073 static clib_error_t *
1075  unformat_input_t * input,
1076  vlib_cli_command_t * cmd)
1077 {
1079  NULL /* header line */ );
1080 
1082 
1083  return (NULL);
1084 }
1085 
1086 /* *INDENT-OFF* */
1087 VLIB_CLI_COMMAND (dhcpv6_proxy_show_command, static) = {
1088  .path = "show dhcpv6 proxy",
1089  .short_help = "Display dhcpv6 proxy info",
1090  .function = dhcpv6_proxy_show_command_fn,
1091 };
1092 /* *INDENT-ON* */
1093 
1094 static clib_error_t *
1096  unformat_input_t * input, vlib_cli_command_t * cmd)
1097 {
1098  u8 is_del = 0, vss_type = VSS_TYPE_DEFAULT;
1099  u8 *vpn_ascii_id = 0;
1100  u32 oui = 0, fib_id = 0, tbl_id = ~0;
1101 
1102  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1103  {
1104  if (unformat (input, "table %d", &tbl_id))
1105  ;
1106  else if (unformat (input, "oui %d", &oui))
1108  else if (unformat (input, "vpn-id %d", &fib_id))
1110  else if (unformat (input, "vpn-ascii-id %s", &vpn_ascii_id))
1112  else if (unformat (input, "delete") || unformat (input, "del"))
1113  is_del = 1;
1114  else
1115  break;
1116  }
1117 
1118  if (tbl_id == ~0)
1119  return clib_error_return (0, "no table ID specified.");
1120 
1121  int rv = dhcp_proxy_set_vss (FIB_PROTOCOL_IP6, tbl_id, vss_type,
1122  vpn_ascii_id, oui, fib_id, is_del);
1123  switch (rv)
1124  {
1125  case 0:
1126  return 0;
1127  case VNET_API_ERROR_NO_SUCH_ENTRY:
1128  return clib_error_return (0, "vss for table %d not found in pool.",
1129  tbl_id);
1130  default:
1131  return clib_error_return (0, "BUG: rv %d", rv);
1132  }
1133 }
1134 
1135 /* *INDENT-OFF* */
1136 VLIB_CLI_COMMAND (dhcpv6_proxy_vss_command, static) = {
1137  .path = "set dhcpv6 vss",
1138  .short_help = "set dhcpv6 vss table <table-id> [oui <n> vpn-id <n> | vpn-ascii-id <text>]",
1139  .function = dhcpv6_vss_command_fn,
1140 };
1141 /* *INDENT-ON* */
1142 
1143 static clib_error_t *
1145  unformat_input_t * input,
1146  vlib_cli_command_t * cmd)
1147 {
1149 
1150  return (NULL);
1151 }
1152 
1153 /* *INDENT-OFF* */
1154 VLIB_CLI_COMMAND (dhcpv6_proxy_vss_show_command, static) = {
1155  .path = "show dhcpv6 vss",
1156  .short_help = "show dhcpv6 VSS",
1157  .function = dhcpv6_vss_show_command_fn,
1158 };
1159 /* *INDENT-ON* */
1160 
1161 static clib_error_t *
1163  unformat_input_t * input,
1164  vlib_cli_command_t * cmd)
1165 {
1166  vnet_main_t *vnm = vnet_get_main ();
1167  u32 sw_if_index0 = 0, sw_if_index;
1168  vnet_sw_interface_t *swif;
1169  ip6_address_t *ia0;
1170 
1171  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1172  {
1173 
1174  if (unformat (input, "%U",
1175  unformat_vnet_sw_interface, vnm, &sw_if_index0))
1176  {
1177  swif = vnet_get_sw_interface (vnm, sw_if_index0);
1179  swif->unnumbered_sw_if_index : sw_if_index0;
1181  if (ia0)
1182  {
1183  vlib_cli_output (vm, "%=20s%=48s", "interface", "link-address");
1184 
1185  vlib_cli_output (vm, "%=20U%=48U",
1187  sw_if_index0, format_ip6_address, ia0);
1188  }
1189  else
1190  vlib_cli_output (vm, "%=34s%=20U",
1191  "No IPv6 address configured on",
1193  }
1194  else
1195  break;
1196  }
1197 
1198  return 0;
1199 }
1200 
1201 /* *INDENT-OFF* */
1202 VLIB_CLI_COMMAND (dhcpv6_proxy_address_show_command, static) = {
1203  .path = "show dhcpv6 link-address interface",
1204  .short_help = "show dhcpv6 link-address interface <interface>",
1206 };
1207 /* *INDENT-ON* */
1208 
1209 /*
1210  * fd.io coding-style-patch-verification: ON
1211  *
1212  * Local Variables:
1213  * eval: (c-set-style "gnu")
1214  * End:
1215  */
void udp_unregister_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u8 is_ip4)
Definition: udp_local.c:506
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
void mfib_table_entry_delete(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source)
Delete a FIB entry.
Definition: mfib_table.c:493
static ip6_address_t all_dhcpv6_server_relay_agent_address
u32 mfib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id, mfib_source_t src)
Get the index of the FIB for a Table-ID.
Definition: mfib_table.c:613
static dhcp_vss_t * dhcp_get_vss_info(dhcp_proxy_main_t *dm, u32 rx_fib_index, fib_protocol_t proto)
Get the VSS data for the FIB index.
Definition: dhcp_proxy.h:254
vss_type
Definition: dhcp.api:22
#define CLIB_UNUSED(x)
Definition: clib.h:87
a
Definition: bitmap.h:544
static u8 * format_dhcpv6_proxy_trace(u8 *s, va_list *args)
u32 * mfib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip6.h:130
A representation of a path as described by a route producer.
Definition: fib_types.h:500
static clib_error_t * dhcpv6_proxy_set_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
void dhcp_vss_walk(fib_protocol_t proto, dhcp_vss_walk_fn_t fn, void *ctx)
Walk/Visit each DHCP proxy VSS.
Definition: dhcp_proxy.c:87
dhcp_server_t * dhcp_servers
The set of DHCP servers to which messages are relayed.
Definition: dhcp_proxy.h:110
fib_node_index_t mfib_table_entry_path_update(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source, const fib_route_path_t *rpath)
Add n paths to an entry (aka route) in the FIB.
Definition: mfib_table.c:325
static u8 * format_dhcpv6_proxy_header_with_length(u8 *s, va_list *args)
void dhcp_proxy_walk(fib_protocol_t proto, dhcp_proxy_walk_fn_t fn, void *ctx)
Walk/Visit each DHCP proxy server.
Definition: dhcp_proxy.c:67
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:110
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: ip_interface.h:43
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
u32 index
Definition: node.h:280
ethernet_interface_t * interfaces
Definition: ethernet.h:304
dhcp_proxy_main_t dhcp_proxy_main
Shard 4/6 instance of DHCP main.
Definition: dhcp_proxy.c:25
static ip6_address_t all_dhcpv6_server_address
int dhcp6_proxy_set_server(ip46_address_t *addr, ip46_address_t *src_addr, u32 rx_table_id, u32 server_table_id, int is_del)
#define ethernet_buffer_header_size(b)
Determine the size of the Ethernet headers of the current frame in the buffer.
Definition: ethernet.h:463
u8 src_address[6]
Definition: packet.h:56
int dhcp_vss_show_walk(dhcp_vss_t *vss, u32 rx_table_id, void *ctx)
Show (on CLI) a VSS config during a show walk.
Definition: dhcp_proxy.c:259
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:113
ip46_address_t dhcp_src_address
The source address to use in relayed messaes.
Definition: dhcp_proxy.h:125
The Virtual Sub-net Selection information for a given RX FIB.
Definition: dhcp_proxy.h:56
static clib_error_t * dhcpv6_vss_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
ip6_address_t * ip6_interface_first_address(ip6_main_t *im, u32 sw_if_index)
get first IPv6 interface address
Definition: ip6_forward.c:279
vl_api_address_t src
Definition: gre.api:54
static vlib_node_registration_t dhcpv6_proxy_to_server_node
(constructor) VLIB_REGISTER_NODE (dhcpv6_proxy_to_server_node)
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Definition: udp_local.c:468
u32 rx_fib_index
The FIB index (not the external Table-ID) in which the client is resides.
Definition: dhcp_proxy.h:131
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
vlib_main_t * vm
Definition: in2out_ed.c:1580
fib_node_index_t mfib_table_entry_update(u32 fib_index, const mfib_prefix_t *prefix, mfib_source_t source, fib_rpf_id_t rpf_id, mfib_entry_flags_t entry_flags)
Add a new (with no replication) or lock an existing entry.
Definition: mfib_table.c:237
dpo_proto_t frp_proto
The protocol of the address below.
Definition: fib_types.h:505
unformat_function_t unformat_vnet_sw_interface
vlib_node_registration_t error_drop_node
(constructor) VLIB_REGISTER_NODE (error_drop_node)
Definition: drop.c:258
static ip6_address_t * ip6_interface_first_global_or_site_address(ip6_main_t *im, u32 sw_if_index)
u8 vss_type
VSS type as defined in RFC 6607: 0 for NVT ASCII VPN Identifier 1 for RFC 2685 VPN-ID of 7 octects - ...
Definition: dhcp_proxy.h:64
vhost_vring_addr_t addr
Definition: vhost_user.h:111
ip6_address_t src_address
Definition: ip6_packet.h:310
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
static vlib_buffer_t * vlib_buffer_copy(vlib_main_t *vm, vlib_buffer_t *b)
static clib_error_t * dhcp6_proxy_init(vlib_main_t *vm)
static char * dhcpv6_proxy_error_strings[]
#define clib_memcpy(d, s, n)
Definition: string.h:180
#define MFIB_RPF_ID_NONE
Definition: fib_types.h:423
dhcpv6_proxy_to_server_input_next_t
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
u8 dst_address[6]
Definition: packet.h:55
description fragment has unexpected format
Definition: map.api:433
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:182
static dhcp_proxy_t * dhcp_get_proxy(dhcp_proxy_main_t *dm, u32 rx_fib_index, fib_protocol_t proto)
Get the DHCP proxy server data for the FIB index.
Definition: dhcp_proxy.h:274
#define clib_error_return(e, args...)
Definition: error.h:99
#define VSS_TYPE_ASCII
Definition: dhcp_proxy.h:65
static clib_error_t * dhcpv6_vss_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
int dhcp_proxy_server_add(fib_protocol_t proto, ip46_address_t *addr, ip46_address_t *src_address, u32 rx_fib_index, u32 server_table_id)
Add a new DHCP proxy server configuration.
Definition: dhcp_proxy.c:184
unsigned int u32
Definition: types.h:88
#define VSS_TYPE_DEFAULT
Definition: dhcp_proxy.h:68
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
Definition: buffer_funcs.h:293
static vlib_node_registration_t dhcpv6_proxy_to_client_node
(constructor) VLIB_REGISTER_NODE (dhcpv6_proxy_to_client_node)
#define foreach_dhcpv6_proxy_to_server_input_next
u32 server_fib_index
The FIB index (not the external Table-ID) in which the server is reachable.
Definition: dhcp_proxy.h:94
Collection of global DHCP proxy data.
Definition: dhcp_proxy.h:139
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:546
vnet_sub_interface_t sub
Definition: interface.h:759
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
static clib_error_t * dhcpv6_proxy_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
void mfib_table_unlock(u32 fib_index, fib_protocol_t proto, mfib_source_t source)
Take a reference counting lock on the table.
Definition: mfib_table.c:777
static u8 ip46_address_is_zero(const ip46_address_t *ip46)
Definition: ip46_address.h:87
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
struct vnet_sub_interface_t::@376::@377::@379 flags
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:216
vec_header_t h
Definition: buffer.c:322
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:233
vl_api_mac_address_t src_addr
Definition: flow_types.api:64
ethernet_interface_address_t address
Definition: ethernet.h:174
#define PREDICT_FALSE(x)
Definition: clib.h:121
vnet_sw_interface_flags_t flags
Definition: interface.h:739
ip6_main_t ip6_main
Definition: ip6_forward.c:2785
#define HOP_COUNT_LIMIT
Definition: dhcp6_packet.h:28
int dhcp_proxy_set_vss(fib_protocol_t proto, u32 tbl_id, u8 vss_type, u8 *vpn_ascii_id, u32 oui, u32 vpn_index, u8 is_del)
Configure/set a new VSS info.
Definition: dhcp_proxy.c:309
void mfib_table_lock(u32 fib_index, fib_protocol_t proto, mfib_source_t source)
Release a reference counting lock on the table.
Definition: mfib_table.c:806
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:224
vl_api_address_t dst
Definition: gre.api:55
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:391
struct vnet_sub_interface_t::@376 eth
Definition: ip6.h:73
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1231
u8 len
Definition: ip_types.api:103
format_function_t format_ip46_address
Definition: ip46_address.h:50
unformat_function_t unformat_ip6_address
Definition: format.h:89
static_always_inline u32 vlib_buffer_get_default_data_size(vlib_main_t *vm)
Definition: buffer_funcs.h:96
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:170
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
u8 * vpn_ascii_id
Type 0 ASCII VPN Identifier.
Definition: dhcp_proxy.h:76
u16 n_vectors
Definition: node.h:397
u32 ft_table_id
Table ID (hash key) for this FIB.
Definition: fib_table.h:92
format_function_t format_ip6_address
Definition: format.h:91
static clib_error_t * dhcpv6_link_address_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u8 data[]
Packet data.
Definition: buffer.h:181
A representation of a single DHCP Server within a given VRF config.
Definition: dhcp_proxy.h:82
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:483
Aggregate type for a prefix.
Definition: mfib_types.h:24
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1580
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
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:1099
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:511
ip46_address_t dhcp_server
The address of the DHCP server to which to relay the client&#39;s messages.
Definition: dhcp_proxy.h:88
#define ASSERT(truth)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
ip_lookup_main_t lookup_main
Definition: ip6.h:112
u32 table_id
Definition: ip6.h:79
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:252
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
static void copy_ip6_address(ip6_address_t *dst, ip6_address_t *src)
struct _vlib_node_registration vlib_node_registration_t
A DHCP proxy representation fpr per-client VRF config.
Definition: dhcp_proxy.h:100
u32 ip_version_traffic_class_and_flow_label
Definition: ip6_packet.h:297
Definition: defs.h:47
int dhcp_proxy_server_del(fib_protocol_t proto, u32 rx_fib_index, ip46_address_t *addr, u32 server_table_id)
Delete a DHCP proxy config.
Definition: dhcp_proxy.c:144
u16 payload_length
Definition: ip6_packet.h:301
A for-us/local path.
Definition: fib_types.h:344
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u8 vpn_id[7]
Type 1 VPN-ID.
Definition: dhcp_proxy.h:72
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: ip_interface.h:57
#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
Definition: buffer.h:497
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:297
#define VSS_TYPE_VPN_ID
Definition: dhcp_proxy.h:66
fib_table_t * fib_table_get(fib_node_index_t index, fib_protocol_t proto)
Get a pointer to a FIB table.
Definition: fib_table.c:29
static ethernet_main_t * vnet_get_ethernet_main(void)
Definition: ethernet.h:582
static ip6_mfib_t * ip6_mfib_get(u32 index)
Get the FIB at the given index.
Definition: ip6_mfib.h:101
#define vnet_buffer(b)
Definition: buffer.h:417
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
vnet_sw_interface_type_t type
Definition: interface.h:737
#define vec_foreach(var, vec)
Vector iterator.
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:634
u16 fp_len
The mask length.
Definition: mfib_types.h:28
static int dhcp6_proxy_show_walk(dhcp_proxy_t *proxy, void *ctx)
u32 * fib_index_by_sw_if_index
Definition: ip6.h:127
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
static u8 * format_dhcp6_proxy_server(u8 *s, va_list *args)
const ip46_address_t zero_addr
#include <vnet/feature/feature.h>
Definition: lookup.c:180
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
Definition: defs.h:46
ip6_address_t dst_address
Definition: ip6_packet.h:310
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
A protocol Independent FIB table.
Definition: fib_table.h:71
static uword dhcpv6_proxy_to_server_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
#define PROTO_UDP
Definition: dhcp6_packet.h:25
static uword dhcpv6_proxy_to_client_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)