39 if (ni == (
uword) ~ 0)
101 if (src_addr->
as_u8[0] != 0xfe)
103 clib_warning (
"Could not find source address to send DHCPv6 packet");
120 b->
flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
129 clib_host_to_net_u32 (0x6 << 28);
143 void *d = (
void *) dhcp->
data;
144 dhcpv6_option_t *duid;
145 dhcpv6_elapsed_t *elapsed;
146 dhcpv6_ia_header_t *ia_hdr;
147 dhcpv6_ia_opt_addr_t *opt_addr;
152 duid = (dhcpv6_option_t *) d;
153 duid->option = clib_host_to_net_u16 (DHCPV6_OPTION_CLIENTID);
163 duid = (dhcpv6_option_t *) d;
164 duid->option = clib_host_to_net_u16 (DHCPV6_OPTION_SERVERID);
165 duid->length = clib_host_to_net_u16 (se->
len);
167 d +=
sizeof (*duid) + se->
len;
170 elapsed = (dhcpv6_elapsed_t *) d;
171 elapsed->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_ELAPSED_TIME);
172 elapsed->opt.length =
173 clib_host_to_net_u16 (
sizeof (*elapsed) -
sizeof (elapsed->opt));
174 elapsed->elapsed_10ms = 0;
176 (
char *) &elapsed->elapsed_10ms -
178 d +=
sizeof (*elapsed);
180 ia_hdr = (dhcpv6_ia_header_t *) d;
181 ia_hdr->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_IA_NA);
183 ia_hdr->t1 = clib_host_to_net_u32 (client_state->
params.
T1);
184 ia_hdr->t2 = clib_host_to_net_u32 (client_state->
params.
T2);
185 d +=
sizeof (*ia_hdr);
190 clib_host_to_net_u16 (
sizeof (*ia_hdr) +
191 n_addresses *
sizeof (*opt_addr) -
192 sizeof (ia_hdr->opt));
194 for (i = 0; i < n_addresses; i++)
198 opt_addr = (dhcpv6_ia_opt_addr_t *) d;
199 opt_addr->opt.option = clib_host_to_net_u16 (DHCPV6_OPTION_IAADDR);
200 opt_addr->opt.length =
201 clib_host_to_net_u16 (
sizeof (*opt_addr) -
202 sizeof (opt_addr->opt));
203 opt_addr->addr = addr->
address;
204 opt_addr->valid = clib_host_to_net_u32 (addr->
valid_lt);
205 opt_addr->preferred = clib_host_to_net_u32 (addr->
preferred_lt);
206 d +=
sizeof (*opt_addr);
214 dhcp_opt_len = ((
u8 *) d) - dhcp->
data;
216 clib_host_to_net_u16 (
sizeof (*udp) +
sizeof (*dhcp) + dhcp_opt_len);
219 sizeof (*ip) +
sizeof (*udp) +
sizeof (*dhcp) + dhcp_opt_len;
229 f64 current_time,
f64 * due_time)
239 int bogus_length = 0;
248 params = &client_state->
params;
250 if (client_state->
due_time > current_time)
256 p0 = client_state->
buffer;
271 clib_host_to_net_u16 ((
u16)
284 if (params->
mrc != 0 && --client_state->
n_left == 0)
313 uword *event_data = 0;
314 f64 sleep_time = 1e9;
329 due_time = current_time + 1e9;
336 (vm, client_state, current_time, &dt) && (dt < due_time))
341 while (due_time < current_time);
343 sleep_time = due_time - current_time;
353 .name =
"send-dhcp6-client-message-process",
365 ASSERT (~0 != sw_if_index);
382 client_state->
params = *params;
393 if (!client_state->
buffer)
412 cm->
seed = 0xdeaccabe;
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
static void signal_report(address_report_t *r)
static vlib_buffer_t * create_buffer_for_client_message(vlib_main_t *vm, u32 sw_if_index, dhcp6_ia_na_client_state_t *client_state, u32 type)
static clib_error_t * dhcp6_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...
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
static void stop_sending_client_message(vlib_main_t *vm, dhcp6_ia_na_client_state_t *client_state)
vnet_main_t * vnet_get_main(void)
static f64 vlib_time_now(vlib_main_t *vm)
u8 keep_sending_client_message
u16 current_length
Nbytes between current data and the end of this buffer.
#define DHCPV6_CLIENT_PORT
static vlib_buffer_t * vlib_buffer_copy(vlib_main_t *vm, vlib_buffer_t *b)
void dhcp6_set_publisher_node(uword node_index, uword event_type)
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
#define clib_memcpy(d, s, n)
vlib_node_registration_t ip6_rewrite_mcast_node
(constructor) VLIB_REGISTER_NODE (ip6_rewrite_mcast_node)
vl_api_interface_index_t sw_if_index
#define VLIB_INIT_FUNCTION(x)
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...
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
vl_api_fib_path_type_t type
dhcp6_ia_na_client_main_t dhcp6_ia_na_client_main
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
#define vec_dup(V)
Return copy of vector (no header, no alignment)
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)
dhcp6_ia_na_client_state_t * client_state_by_sw_if_index
dhcpv6_duid_ll_string_t client_duid
dhcp6_ia_na_client_public_main_t dhcp6_ia_na_client_public_main
#define CLIENT_DUID_LENGTH
#define VLIB_REGISTER_NODE(x,...)
#define DHCPV6_CLIENT_IAID
dhcp6_send_client_message_params_address_t * addresses
#define vec_free(V)
Free vector's memory (no header).
#define clib_warning(format, args...)
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
dhcp6_send_client_message_params_t params
void dhcp6_send_client_message(vlib_main_t *vm, u32 sw_if_index, u8 stop, dhcp6_send_client_message_params_t *params)
static vlib_main_t * vlib_get_main(void)
dhcp6_client_common_main_t dhcp6_client_common_main
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
const ip6_address_t * ip6_get_link_local_address(u32 sw_if_index)
int dhcp6_publish_report(address_report_t *r)
VLIB buffer representation.
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
static vlib_node_registration_t send_dhcp6_client_message_process_node
(constructor) VLIB_REGISTER_NODE (send_dhcp6_client_message_process_node)
static u8 check_send_client_message(vlib_main_t *vm, dhcp6_ia_na_client_state_t *client_state, f64 current_time, f64 *due_time)
#define DHCPV6_SERVER_PORT
static uword send_dhcp6_client_message_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f0)
static u32 random_u32(u32 *seed)
32-bit random number generator
adj_index_t adj_mcast_add_or_lock(fib_protocol_t proto, vnet_link_t link_type, u32 sw_if_index)
Mcast Adjacency.
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)
static u32 vlib_buffer_alloc(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Allocate buffers into supplied array.
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
static_always_inline f64 random_f64_from_to(f64 from, f64 to)