FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
dhcp6_ia_na_client_dp.h
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
#ifndef included_vnet_dhcp6_client_dp_h
17
#define included_vnet_dhcp6_client_dp_h
18
19
#include <stdbool.h>
20
21
#include <
dhcp/dhcp6_client_common_dp.h
>
22
23
typedef
struct
24
{
25
u32
preferred_lt
;
26
u32
valid_lt
;
27
ip6_address_t
address
;
28
}
dhcp6_send_client_message_params_address_t
;
29
30
typedef
struct
31
{
32
u32
sw_if_index
;
33
u32
server_index
;
34
u32
irt
;
35
u32
mrt
;
36
u32
mrc
;
37
u32
mrd
;
38
u8
msg_type
;
39
u32
T1
;
40
u32
T2
;
41
dhcp6_send_client_message_params_address_t
*
addresses
;
42
}
dhcp6_send_client_message_params_t
;
43
44
typedef
struct
45
{
46
u8
entry_valid
;
47
u8
keep_sending_client_message
;
/* when true then next fields are valid */
48
dhcp6_send_client_message_params_t
params
;
49
f64
transaction_start
;
50
f64
sleep_interval
;
51
f64
due_time
;
52
u32
n_left
;
53
f64
start_time
;
54
u32
transaction_id
;
55
vlib_buffer_t
*
buffer
;
56
u32
elapsed_pos
;
57
u32
adj_index
;
58
}
dhcp6_ia_na_client_state_t
;
59
60
typedef
struct
61
{
62
dhcp6_ia_na_client_state_t
*
client_state_by_sw_if_index
;
63
64
uword
publisher_node
;
65
uword
publisher_et
;
66
67
u32
seed
;
68
69
/* convenience */
70
vlib_main_t
*
vlib_main
;
71
vnet_main_t
*
vnet_main
;
72
}
dhcp6_ia_na_client_main_t
;
73
74
extern
dhcp6_ia_na_client_main_t
dhcp6_ia_na_client_main
;
75
76
typedef
struct
77
{
78
ip6_address_t
address
;
79
u32
valid_time
;
80
u32
preferred_time
;
81
u16
status_code
;
82
}
dhcp6_address_info_t
;
83
84
typedef
struct
85
{
86
dhcp6_report_common_t
body
;
87
u32
n_addresses
;
88
dhcp6_address_info_t
*
addresses
;
89
}
address_report_t
;
90
91
void
dhcp6_send_client_message
(
vlib_main_t
*
vm
,
u32
sw_if_index
,
u8
stop,
92
dhcp6_send_client_message_params_t
* params);
93
void
dhcp6_set_publisher_node
(
uword
node_index
,
uword
event_type);
94
int
dhcp6_publish_report
(
address_report_t
*
r
);
95
int
dhcp6_client_enable_disable
(
u32
sw_if_index
,
u8
enable);
96
97
extern
vlib_node_registration_t
dhcp6_reply_process_node
;
98
99
enum
100
{
DHCP6_DP_REPLY_REPORT
,
DHCP6_DP_REPORT_MAX
};
101
102
#include <dhcp/dhcp.api_types.h>
103
104
typedef
struct
_vnet_dhcp6_reply_function_list_elt
105
{
106
struct
_vnet_dhcp6_reply_function_list_elt *next_dhcp6_reply_event_function;
107
clib_error_t
*(*fp) (
vl_api_dhcp6_reply_event_t
* mp);
108
} _vnet_dhcp6_reply_event_function_list_elt_t;
109
110
typedef
struct
111
{
112
_vnet_dhcp6_reply_event_function_list_elt_t *
functions
;
113
}
dhcp6_ia_na_client_public_main_t
;
114
115
extern
dhcp6_ia_na_client_public_main_t
dhcp6_ia_na_client_public_main
;
116
117
#define VNET_DHCP6_REPLY_EVENT_FUNCTION(f) \
118
\
119
static void __vnet_dhcp6_reply_event_function_init_##f (void) \
120
__attribute__((__constructor__)) ; \
121
\
122
static void __vnet_dhcp6_reply_event_function_init_##f (void) \
123
{ \
124
dhcp6_ia_na_client_public_main_t * nm = &dhcp6_ia_na_client_public_main; \
125
static _vnet_dhcp6_reply_event_function_list_elt_t init_function; \
126
init_function.next_dhcp6_reply_event_function = nm->functions; \
127
nm->functions = &init_function; \
128
init_function.fp = (void *) &f; \
129
} \
130
\
131
static void __vnet_dhcp6_reply_event_function_deinit_##f (void) \
132
__attribute__((__destructor__)) ; \
133
\
134
static void __vnet_dhcp6_reply_event_function_deinit_##f (void) \
135
{ \
136
dhcp6_ia_na_client_public_main_t * nm = &dhcp6_ia_na_client_public_main; \
137
_vnet_dhcp6_reply_event_function_list_elt_t *next; \
138
if (nm->functions->fp == (void *) &f) \
139
{ \
140
nm->functions = \
141
nm->functions->next_dhcp6_reply_event_function; \
142
return; \
143
} \
144
next = nm->functions; \
145
while (next->next_dhcp6_reply_event_function) \
146
{ \
147
if (next->next_dhcp6_reply_event_function->fp == (void *) &f) \
148
{ \
149
next->next_dhcp6_reply_event_function = \
150
next->next_dhcp6_reply_event_function->next_dhcp6_reply_event_function; \
151
return; \
152
} \
153
next = next->next_dhcp6_reply_event_function; \
154
} \
155
}
156
157
#endif
/* included_vnet_dhcp6_client_dp_h */
158
159
/*
160
* fd.io coding-style-patch-verification: ON
161
*
162
* Local Variables:
163
* eval: (c-set-style "gnu")
164
* End:
165
*/
dhcp6_ia_na_client_state_t::params
dhcp6_send_client_message_params_t params
Definition:
dhcp6_ia_na_client_dp.h:48
dhcp6_ia_na_client_public_main_t
Definition:
dhcp6_ia_na_client_dp.h:110
dhcp6_address_info_t::status_code
u16 status_code
Definition:
dhcp6_ia_na_client_dp.h:81
dhcp6_ia_na_client_state_t::entry_valid
u8 entry_valid
Definition:
dhcp6_ia_na_client_dp.h:46
dhcp6_send_client_message_params_address_t::valid_lt
u32 valid_lt
Definition:
dhcp6_ia_na_client_dp.h:26
dhcp6_ia_na_client_state_t::sleep_interval
f64 sleep_interval
Definition:
dhcp6_ia_na_client_dp.h:50
dhcp6_send_client_message_params_t::sw_if_index
u32 sw_if_index
Definition:
dhcp6_ia_na_client_dp.h:32
dhcp6_send_client_message_params_address_t::address
ip6_address_t address
Definition:
dhcp6_ia_na_client_dp.h:27
dhcp6_send_client_message_params_t::msg_type
u8 msg_type
Definition:
dhcp6_ia_na_client_dp.h:38
dhcp6_send_client_message_params_t::mrd
u32 mrd
Definition:
dhcp6_ia_na_client_dp.h:37
dhcp6_ia_na_client_state_t::transaction_id
u32 transaction_id
Definition:
dhcp6_ia_na_client_dp.h:54
dhcp6_reply_process_node
vlib_node_registration_t dhcp6_reply_process_node
(constructor) VLIB_REGISTER_NODE (dhcp6_reply_process_node)
Definition:
dhcp_api.c:731
dhcp6_ia_na_client_state_t::adj_index
u32 adj_index
Definition:
dhcp6_ia_na_client_dp.h:57
dhcp6_ia_na_client_state_t::n_left
u32 n_left
Definition:
dhcp6_ia_na_client_dp.h:52
u16
unsigned short u16
Definition:
types.h:57
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition:
nat44_ei.c:3047
node_index
node node_index
Definition:
interface_output.c:420
dhcp6_publish_report
int dhcp6_publish_report(address_report_t *r)
Definition:
dhcp6_ia_na_client_dp.c:48
dhcp6_address_info_t
Definition:
dhcp6_ia_na_client_dp.h:76
r
vnet_hw_if_output_node_runtime_t * r
Definition:
interface_output.c:1071
dhcp6_send_client_message_params_t::addresses
dhcp6_send_client_message_params_address_t * addresses
Definition:
dhcp6_ia_na_client_dp.h:41
dhcp6_set_publisher_node
void dhcp6_set_publisher_node(uword node_index, uword event_type)
Definition:
dhcp6_ia_na_client_dp.c:56
dhcp6_ia_na_client_state_t::due_time
f64 due_time
Definition:
dhcp6_ia_na_client_dp.h:51
dhcp6_send_client_message_params_t::T2
u32 T2
Definition:
dhcp6_ia_na_client_dp.h:40
dhcp6_ia_na_client_state_t
Definition:
dhcp6_ia_na_client_dp.h:44
DHCP6_DP_REPLY_REPORT
@ DHCP6_DP_REPLY_REPORT
Definition:
dhcp6_ia_na_client_dp.h:100
dhcp6_send_client_message_params_address_t
Definition:
dhcp6_ia_na_client_dp.h:23
vl_api_dhcp6_reply_event_t
Tell client about a DHCPv6 server reply event.
Definition:
dhcp.api:459
dhcp6_ia_na_client_state_t::transaction_start
f64 transaction_start
Definition:
dhcp6_ia_na_client_dp.h:49
uword
u64 uword
Definition:
types.h:112
dhcp6_ia_na_client_state_t::keep_sending_client_message
u8 keep_sending_client_message
Definition:
dhcp6_ia_na_client_dp.h:47
dhcp6_send_client_message_params_t::mrt
u32 mrt
Definition:
dhcp6_ia_na_client_dp.h:35
dhcp6_ia_na_client_main_t::seed
u32 seed
Definition:
dhcp6_ia_na_client_dp.h:67
f64
double f64
Definition:
types.h:142
dhcp6_ia_na_client_public_main_t::functions
_vnet_dhcp6_reply_event_function_list_elt_t * functions
Definition:
dhcp6_ia_na_client_dp.h:112
dhcp6_ia_na_client_main_t::vnet_main
vnet_main_t * vnet_main
Definition:
dhcp6_ia_na_client_dp.h:71
dhcp6_address_info_t::valid_time
u32 valid_time
Definition:
dhcp6_ia_na_client_dp.h:79
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
dhcp6_ia_na_client_state_t::buffer
vlib_buffer_t * buffer
Definition:
dhcp6_ia_na_client_dp.h:55
dhcp6_report_common_t
Definition:
dhcp6_client_common_dp.h:22
dhcp6_address_info_t::address
ip6_address_t address
Definition:
dhcp6_ia_na_client_dp.h:78
address_report_t::addresses
dhcp6_address_info_t * addresses
Definition:
dhcp6_ia_na_client_dp.h:88
dhcp6_send_client_message_params_t
Definition:
dhcp6_ia_na_client_dp.h:30
dhcp6_send_client_message_params_address_t::preferred_lt
u32 preferred_lt
Definition:
dhcp6_ia_na_client_dp.h:25
vnet_main_t
Definition:
vnet.h:76
dhcp6_ia_na_client_main_t::publisher_et
uword publisher_et
Definition:
dhcp6_ia_na_client_dp.h:65
dhcp6_ia_na_client_main_t::client_state_by_sw_if_index
dhcp6_ia_na_client_state_t * client_state_by_sw_if_index
Definition:
dhcp6_ia_na_client_dp.h:62
dhcp6_client_common_dp.h
u32
unsigned int u32
Definition:
types.h:88
address_report_t::body
dhcp6_report_common_t body
Definition:
dhcp6_ia_na_client_dp.h:86
dhcp6_ia_na_client_state_t::elapsed_pos
u32 elapsed_pos
Definition:
dhcp6_ia_na_client_dp.h:56
dhcp6_ia_na_client_main_t::vlib_main
vlib_main_t * vlib_main
Definition:
dhcp6_ia_na_client_dp.h:70
dhcp6_ia_na_client_main_t
Definition:
dhcp6_ia_na_client_dp.h:60
dhcp6_client_enable_disable
int dhcp6_client_enable_disable(u32 sw_if_index, u8 enable)
Definition:
dhcp6_ia_na_client_cp.c:614
dhcp6_ia_na_client_main
dhcp6_ia_na_client_main_t dhcp6_ia_na_client_main
Definition:
dhcp6_ia_na_client_dp.c:28
vlib_main_t
Definition:
main.h:102
dhcp6_send_client_message_params_t::irt
u32 irt
Definition:
dhcp6_ia_na_client_dp.h:34
u8
unsigned char u8
Definition:
types.h:56
clib_error_t
Definition:
clib_error.h:21
address_report_t::n_addresses
u32 n_addresses
Definition:
dhcp6_ia_na_client_dp.h:87
dhcp6_ia_na_client_main_t::publisher_node
uword publisher_node
Definition:
dhcp6_ia_na_client_dp.h:64
address_report_t
Definition:
dhcp6_ia_na_client_dp.h:84
sw_if_index
vl_api_interface_index_t sw_if_index
Definition:
wireguard.api:34
dhcp6_address_info_t::preferred_time
u32 preferred_time
Definition:
dhcp6_ia_na_client_dp.h:80
dhcp6_ia_na_client_state_t::start_time
f64 start_time
Definition:
dhcp6_ia_na_client_dp.h:53
dhcp6_send_client_message_params_t::T1
u32 T1
Definition:
dhcp6_ia_na_client_dp.h:39
dhcp6_send_client_message_params_t::server_index
u32 server_index
Definition:
dhcp6_ia_na_client_dp.h:33
DHCP6_DP_REPORT_MAX
@ DHCP6_DP_REPORT_MAX
Definition:
dhcp6_ia_na_client_dp.h:100
dhcp6_send_client_message
void dhcp6_send_client_message(vlib_main_t *vm, u32 sw_if_index, u8 stop, dhcp6_send_client_message_params_t *params)
Definition:
dhcp6_ia_na_client_dp.c:358
dhcp6_send_client_message_params_t::mrc
u32 mrc
Definition:
dhcp6_ia_na_client_dp.h:36
vlib_buffer_t
VLIB buffer representation.
Definition:
buffer.h:111
dhcp6_ia_na_client_public_main
dhcp6_ia_na_client_public_main_t dhcp6_ia_na_client_public_main
Definition:
dhcp6_ia_na_client_dp.c:29
src
plugins
dhcp
dhcp6_ia_na_client_dp.h
Generated on Sat Jan 8 2022 10:03:44 for FD.io VPP by
1.8.17