23 #define dhcpv6_proxy_error(n,s) s, 25 #undef dhcpv6_proxy_error 28 #define foreach_dhcpv6_proxy_to_server_input_next \ 29 _ (DROP, "error-drop") \ 30 _ (LOOKUP, "ip6-lookup") \ 31 _ (SEND_TO_CLIENT, "dhcpv6-proxy-to-client") 35 #define _(s,n) DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_##s, 61 s =
format (s,
"DHCPV6 proxy: sent to server %U",
64 s =
format (s,
"DHCPV6 proxy: sent to client from %U",
69 s =
format (s,
" original_sw_if_index: %d, sw_if_index: %d\n",
78 u32 max_header_bytes = va_arg (*args,
u32);
81 header_bytes =
sizeof (h[0]);
82 if (max_header_bytes != 0 && header_bytes > max_header_bytes)
83 return format (s,
"dhcpv6 header truncated");
85 s =
format (s,
"DHCPV6 Proxy");
101 if ((a->
as_u8[0] & 0xe0) == 0x20 ||
102 (a->
as_u8[0] & 0xfe) == 0xfc) {
140 u32 n_left_from, next_index, * from, * to_next;
144 u32 pkts_to_server=0, pkts_to_client=0;
145 u32 pkts_no_interface_address=0, pkts_no_exceeding_max_hop=0;
146 u32 pkts_no_src_address=0;
147 u32 pkts_wrong_msg_type=0;
150 u32 fib_index=0, fib_id=0;
157 while (n_left_from > 0)
162 to_next, n_left_to_next);
164 while (n_left_from > 0 && n_left_to_next > 0)
168 u32 original_sw_if_index = 0;
178 dhcpv6_option_t *fwd_opt;
179 dhcpv6_relay_hdr_t *r1;
181 dhcpv6_int_id_t *id1;
183 dhcpv6_client_mac_t *cmac;
185 u8 client_src_mac[6];
212 u0 = (
void *)h0 -(
sizeof(*u0));
213 ip0 = (
void *)u0 -(
sizeof(*ip0));
232 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_SEND_TO_CLIENT;
238 pkts_wrong_msg_type++;
239 error0 = DHCPV6_PROXY_ERROR_WRONG_MESSAGE_TYPE;
240 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
262 fwd_opt->length = clib_host_to_net_u16(len);
271 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
272 pkts_no_exceeding_max_hop++;
283 r1->link_addr.as_u64[0] = 0;
284 r1->link_addr.as_u64[1] = 0;
285 goto link_address_set;
292 original_sw_if_index = sw_if_index =
301 error0 = DHCPV6_PROXY_ERROR_NO_INTERFACE_ADDRESS;
302 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
303 pkts_no_interface_address++;
315 error0 = DHCPV6_PROXY_ERROR_PKT_TOO_BIG;
316 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
339 id1->opt.length = clib_host_to_net_u16(
sizeof(original_sw_if_index));
340 id1->int_idx = clib_host_to_net_u32(original_sw_if_index);
347 cmac->opt.length =clib_host_to_net_u16(
sizeof(*cmac) -
350 cmac->link_type = clib_host_to_net_u16(1);
352 u1->
length +=
sizeof(*cmac);
354 if (oui1 || fib_id1) {
357 vss1->opt.length =clib_host_to_net_u16(
sizeof(*vss1) -
361 vss1->data[1] = oui1>>16 & 0xff;
362 vss1->data[2] = oui1>>8 & 0xff;
363 vss1->data[3] = oui1 & 0xff;
364 vss1->data[4] = fib_id1>>24 & 0xff;
365 vss1->data[5] = fib_id1>>16 & 0xff;
366 vss1->data[6] = fib_id1>>8 & 0xff;
367 vss1->data[7] = fib_id1 & 0xff;
368 u1->
length +=
sizeof(*vss1);
373 u1->
src_port = clib_host_to_net_u16(UDP_DST_PORT_dhcpv6_to_client);
374 u1->
dst_port = clib_host_to_net_u16(UDP_DST_PORT_dhcpv6_to_server);
377 clib_host_to_net_u16( clib_net_to_host_u16(fwd_opt->length) +
378 sizeof(*r1) +
sizeof(*fwd_opt) +
379 sizeof(*u1) +
sizeof(*id1) + u1->
length);
381 memset(ip1, 0,
sizeof(*ip1));
382 ip1->ip_version_traffic_class_and_flow_label = 0x60;
383 ip1->payload_length = u1->
length;
398 error0 = DHCPV6_PROXY_ERROR_NO_SRC_ADDRESS;
399 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_DROP;
400 pkts_no_src_address++;
409 ASSERT(bogus_length == 0);
411 next0 = DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP;
422 if (DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_LOOKUP == next0)
428 to_next, n_left_to_next,
436 DHCPV6_PROXY_ERROR_RELAY_TO_CLIENT,
439 DHCPV6_PROXY_ERROR_RELAY_TO_SERVER,
442 DHCPV6_PROXY_ERROR_NO_INTERFACE_ADDRESS,
443 pkts_no_interface_address);
445 DHCPV6_PROXY_ERROR_WRONG_MESSAGE_TYPE,
446 pkts_wrong_msg_type);
448 DHCPV6_PROXY_ERROR_NO_SRC_ADDRESS,
449 pkts_no_src_address);
451 DHCPV6_PROXY_ERROR_PKT_TOO_BIG,
458 .name =
"dhcpv6-proxy-to-server",
460 .vector_size =
sizeof (
u32),
467 #define _(s,n) [DHCPV6_PROXY_TO_SERVER_INPUT_NEXT_##s] = n, 475 .unformat_buffer = unformat_dhcpv6_proxy_header,
485 u32 n_left_from, * from;
494 while (n_left_from > 0)
499 dhcpv6_relay_hdr_t * h0;
508 u32 sw_if_index = ~0;
509 u32 original_sw_if_index = ~0;
513 dhcpv6_option_t *r0, *o;
515 u32 svr_fib_index, svr_fib_id;
528 error0 = DHCPV6_PROXY_ERROR_WRONG_MESSAGE_TYPE;
542 if (HOP_COUNT_LIMIT < h0->hop_count)
547 u0 = (
void *)h0 -(
sizeof(*u0));
548 ip0 = (
void *)u0 -(
sizeof(*ip0));
561 if (clib_net_to_host_u16(o->length) ==
sizeof(sw_if_index))
562 sw_if_index = clib_net_to_host_u32(((dhcpv6_int_id_t*)o)->int_idx);
565 o = (dhcpv6_option_t *) (((
uword) o) + clib_net_to_host_u16(o->length) +
sizeof(*o));
568 if ((
u32)~0 == sw_if_index)
570 error0 = DHCPV6_PROXY_ERROR_NO_CIRCUIT_ID_OPTION;
584 error0 = DHCPV6_PROXY_ERROR_BAD_SVR_FIB_OR_ADDRESS;
611 error0 = DHCPV6_PROXY_ERROR_NO_INTERFACE_ADDRESS;
615 len = clib_net_to_host_u16(r0->length);
616 memset(ip1, 0,
sizeof(*ip1));
619 u1->
src_port = clib_net_to_host_u16 (UDP_DST_PORT_dhcpv6_to_server);
620 u1->
dst_port = clib_net_to_host_u16 (UDP_DST_PORT_dhcpv6_to_client);
624 ip0->ip_version_traffic_class_and_flow_label &
633 ASSERT(bogus_length == 0);
647 clib_net_to_host_u16(0x8100) : clib_net_to_host_u16 (0x86dd);
651 u32 * vlan_tag = (
u32 *)(mac0+1);
653 tmp = (si0->
sub.
id << 16) | 0x0800;
654 *vlan_tag = clib_host_to_net_u32 (tmp);
683 .name =
"dhcpv6-proxy-to-client",
685 .vector_size =
sizeof (
u32),
692 .unformat_buffer = unformat_dhcpv6_proxy_header,
725 u32 fib_id,
int insert_vss,
int is_del)
743 if (addr->
as_u64[0] == 0 &&
745 return VNET_API_ERROR_INVALID_DST_ADDRESS;
747 if (src_address->
as_u64[0] == 0 &&
748 src_address->
as_u64[1] == 0)
749 return VNET_API_ERROR_INVALID_SRC_ADDRESS;
753 return VNET_API_ERROR_NO_SUCH_FIB;
768 int set_server = 0, set_src_address = 0, add_opt = 0;
777 else if (
unformat(input,
"src-address %U",
780 else if (
unformat (input,
"fib-id %d", &fib_id))
782 else if (
unformat (input,
"add-option")
783 ||
unformat (input,
"insert-option"))
785 else if (
unformat (input,
"delete") ||
792 if (is_del || (set_server && set_src_address))
816 .path =
"set dhcpv6 proxy",
817 .short_help =
"set dhcpv6 proxy server <ipv6-addr> fib-id <fib-id> src-address <ipv6-addr>",
829 s =
format (s,
"%=40s%=40s%=14s",
"Server Address",
"Source Address",
840 s =
format (s,
"%=40U%=40U%=14u",
860 .path =
"show dhcpv6 proxy",
861 .short_help =
"Display dhcpv6 proxy info",
871 u32 old_oui, old_fib_id;
880 return VNET_API_ERROR_NO_SUCH_FIB;
887 if (old_oui == oui &&
888 old_fib_id == fib_id )
895 return VNET_API_ERROR_NO_SUCH_ENTRY;
901 return VNET_API_ERROR_NO_SUCH_ENTRY;
904 memset (v, ~0,
sizeof (*v));
918 int is_del = 0, got_new_vss=0;
920 u32 fib_id=0, tbl_id=~0;
924 if (
unformat (input,
"oui %d", &oui))
926 else if (
unformat (input,
"vpn-id %d", &fib_id))
928 else if (
unformat (input,
"table %d", &tbl_id))
939 if (is_del || got_new_vss)
949 case VNET_API_ERROR_NO_SUCH_FIB:
950 return clib_error_return (0,
"vss info (oui:%d, vpn-id:%d) not found in table %d.",
951 oui, fib_id, tbl_id);
953 case VNET_API_ERROR_NO_SUCH_ENTRY:
968 .path =
"set dhcpv6 vss",
969 .short_help =
"set dhcpv6 vss table <table-id> oui <oui> vpn-idx <vpn-idx>",
989 v = pool_elt_at_index (dm->vss, index);
991 fib_id = v->vpn_id.fib_id;
992 vlib_cli_output (vm,
"%=6d%=6d%=12d",
993 tbl_id, oui, fib_id);
1000 .path =
"show dhcpv6 vss",
1001 .short_help =
"show dhcpv6 VSS",
1013 u32 sw_if_index0=0, sw_if_index;
1045 .path =
"show dhcpv6 link-address interface",
1046 .short_help =
"show dhcpv6 link-address interface <interface>",
static clib_error_t * dhcpv6_vss_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
#define VNET_SW_INTERFACE_FLAG_UNNUMBERED
#define hash_set(h, key, value)
int dhcpv6_proxy_set_server(ip6_address_t *addr, ip6_address_t *src_address, u32 fib_id, int insert_vss, int is_del)
dhcpv6_proxy_main_t dhcpv6_proxy_main
#define hash_unset(h, key)
ethernet_main_t * ethernet_get_main(vlib_main_t *vm)
u32 free_list_index
Buffer free list that this buffer was allocated from and will be freed to.
#define ethernet_buffer_header_size(b)
Determine the size of the Ethernet headers of the current frame in the buffer.
struct _vlib_node_registration vlib_node_registration_t
ip6_address_t all_dhcpv6_server_relay_agent_address
unformat_function_t unformat_vnet_sw_interface
format_function_t format_vnet_sw_if_index_name
always_inline void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
always_inline void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
vnet_main_t * vnet_get_main(void)
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
#define VLIB_INIT_FUNCTION(x)
static ip6_address_t * ip6_interface_first_address(ip6_main_t *im, u32 sw_if_index)
#define hash_foreach(key_var, value_var, h, body)
ip6_fib_t * find_ip6_fib_by_table_index_or_id(ip6_main_t *im, u32 table_index_or_id, u32 flags)
Get or create an IPv6 fib.
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
always_inline vlib_buffer_free_list_t * vlib_buffer_get_free_list(vlib_main_t *vm, u32 free_list_index)
always_inline void * vlib_frame_vector_args(vlib_frame_t *f)
ip6_address_t dhcpv6_server
#define pool_elt_at_index(p, i)
static clib_error_t * dhcpv6_link_address_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u16 current_length
Nbytes between current data and the end of this buffer.
vlib_node_registration_t dhcpv6_proxy_to_server_node
(constructor) VLIB_REGISTER_NODE (dhcpv6_proxy_to_server_node)
uword * vss_index_by_vrf_id
always_inline void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
int dhcpv6_proxy_set_vss(u32 tbl_id, u32 oui, u32 fib_id, int is_del)
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
u8 * format_dhcpv6_proxy_server(u8 *s, va_list *args)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
static uword dhcpv6_proxy_to_server_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
u8 * format_dhcpv6_proxy_header_with_length(u8 *s, va_list *args)
uword * fib_index_by_table_id
static clib_error_t * dhcpv6_proxy_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
clib_error_t * dhcpv6_proxy_init(vlib_main_t *vm)
#define clib_memcpy(a, b, c)
always_inline vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
u32 unnumbered_sw_if_index
#define VLIB_CLI_COMMAND(x,...)
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
dhcpv6_proxy_to_server_input_next_t
ip_lookup_main_t lookup_main
static clib_error_t * dhcpv6_proxy_set_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vlib_node_registration_t dhcpv6_proxy_to_client_node
(constructor) VLIB_REGISTER_NODE (dhcpv6_proxy_to_client_node)
u8 * format_dhcpv6_proxy_trace(u8 *s, va_list *args)
#define VLIB_BUFFER_IS_TRACED
#define IP6_ROUTE_FLAG_FIB_INDEX
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
always_inline void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
always_inline vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
static void copy_ip6_address(ip6_address_t *dst, ip6_address_t *src)
ip6_address_t all_dhcpv6_server_address
#define foreach_dhcpv6_proxy_to_server_input_next
always_inline void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
static char * dhcpv6_proxy_error_strings[]
#define VLIB_REGISTER_NODE(x,...)
vnet_sw_interface_type_t type
static clib_error_t * dhcpv6_vss_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
#define clib_error_return(e, args...)
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
ethernet_interface_t * interfaces
u32 flags
buffer flags: VLIB_BUFFER_IS_TRACED: trace this buffer.
ip6_address_t dhcpv6_src_address
u32 * fib_index_by_sw_if_index
always_inline vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
static ip6_address_t * ip6_interface_first_global_or_site_address(ip6_main_t *im, u32 sw_if_index)
u32 error_drop_node_index
static uword dhcpv6_proxy_to_client_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)