3256ba77da49b65105495429979084a87ece539f
[vpp.git] / src / vnet / ip / ip6_neighbor.h
1 /*
2  *
3  * ip6_neighboor.h: ip6 neighbor structures
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #ifndef included_ip6_neighbor_h
20 #define included_ip6_neighbor_h
21
22 #include <vnet/fib/fib_types.h>
23
24 typedef struct
25 {
26   ip6_address_t ip6_address;
27   u32 sw_if_index;
28   u32 pad;
29 } ip6_neighbor_key_t;
30
31 typedef enum ip6_neighbor_flags_t_
32 {
33   IP6_NEIGHBOR_FLAG_STATIC = (1 << 0),
34   IP6_NEIGHBOR_FLAG_DYNAMIC = (1 << 1),
35   IP6_NEIGHBOR_FLAG_NO_FIB_ENTRY = (1 << 2),
36 } __attribute__ ((packed)) ip6_neighbor_flags_t;
37
38 typedef struct
39 {
40   ip6_neighbor_key_t key;
41   u8 link_layer_address[8];
42   ip6_neighbor_flags_t flags;
43   f64 time_last_updated;
44   fib_node_index_t fib_entry_index;
45 } ip6_neighbor_t;
46
47 extern ip6_address_t ip6_neighbor_get_link_local_address (u32 sw_if_index);
48
49 extern ip6_neighbor_t *ip6_neighbors_pool (void);
50
51 extern ip6_neighbor_t *ip6_neighbors_entries (u32 sw_if_index);
52
53 extern int ip6_neighbor_ra_config (vlib_main_t * vm, u32 sw_if_index,
54                                    u8 suppress, u8 managed, u8 other,
55                                    u8 ll_option, u8 send_unicast, u8 cease,
56                                    u8 use_lifetime, u32 lifetime,
57                                    u32 initial_count, u32 initial_interval,
58                                    u32 max_interval, u32 min_interval,
59                                    u8 is_no);
60
61 extern int ip6_neighbor_ra_prefix (vlib_main_t * vm, u32 sw_if_index,
62                                    ip6_address_t * prefix_addr, u8 prefix_len,
63                                    u8 use_default, u32 val_lifetime,
64                                    u32 pref_lifetime, u8 no_advertise,
65                                    u8 off_link, u8 no_autoconfig,
66                                    u8 no_onlink, u8 is_no);
67
68 extern clib_error_t *ip6_set_neighbor_limit (u32 neighbor_limit);
69
70 extern void vnet_register_ip6_neighbor_resolution_event (vnet_main_t * vnm,
71                                                          void *address_arg,
72                                                          uword node_index,
73                                                          uword type_opaque,
74                                                          uword data);
75
76 extern int vnet_set_ip6_ethernet_neighbor (vlib_main_t * vm,
77                                            u32 sw_if_index,
78                                            const ip6_address_t * a,
79                                            const u8 * link_layer_address,
80                                            uword n_bytes_link_layer_address,
81                                            int is_static,
82                                            int is_no_fib_entry);
83
84 extern int vnet_unset_ip6_ethernet_neighbor (vlib_main_t * vm,
85                                              u32 sw_if_index,
86                                              const ip6_address_t * a);
87
88 extern int ip6_neighbor_proxy_add_del (u32 sw_if_index,
89                                        ip6_address_t * addr, u8 is_add);
90
91 u32 ip6_neighbor_sw_interface_add_del (vnet_main_t * vnm, u32 sw_if_index,
92                                        u32 is_add);
93 typedef struct
94 {
95   u32 sw_if_index;
96   ip6_address_t ip6;
97   u8 mac[6];
98 } wc_nd_report_t;
99
100 void wc_nd_set_publisher_node (uword node_index, uword event_type);
101
102 typedef struct
103 {
104   u32 irt;
105   u32 mrt;
106   u32 mrc;
107   u32 mrd;
108 } icmp6_send_router_solicitation_params_t;
109
110 void icmp6_send_router_solicitation (vlib_main_t * vm, u32 sw_if_index,
111                                      u8 stop,
112                                      icmp6_send_router_solicitation_params_t *
113                                      params);
114
115 typedef struct
116 {
117   ip6_address_t dst_address;
118   u8 dst_address_length;
119   u8 flags;
120   u32 valid_time;
121   u32 preferred_time;
122 } ra_report_prefix_info_t;
123
124 typedef struct
125 {
126   u32 sw_if_index;
127   u8 router_address[16];
128   u8 current_hop_limit;
129   u8 flags;
130   u16 router_lifetime_in_sec;
131   u32 neighbor_reachable_time_in_msec;
132   u32 time_in_msec_between_retransmitted_neighbor_solicitations;
133   u8 slla[6];
134   u32 mtu;
135   ra_report_prefix_info_t *prefixes;
136 } ra_report_t;
137
138 void ra_set_publisher_node (uword node_index, uword event_type);
139
140 typedef struct _vnet_ip6_neighbor_function_list_elt
141 {
142   struct _vnet_ip6_neighbor_function_list_elt *next_ip6_neighbor_function;
143   clib_error_t *(*fp) (void *data);
144 } _vnet_ip6_neighbor_function_list_elt_t;
145
146 typedef struct
147 {
148   _vnet_ip6_neighbor_function_list_elt_t *ra_report_functions;
149 } ip6_neighbor_public_main_t;
150
151 extern ip6_neighbor_public_main_t ip6_neighbor_public_main;
152
153 #define _VNET_IP6_NEIGHBOR_FUNCTION_DECL(f,tag)                           \
154                                                                           \
155 static void __vnet_ip6_neighbor_function_init_##tag##_##f (void)          \
156     __attribute__((__constructor__)) ;                                    \
157                                                                           \
158 static void __vnet_ip6_neighbor_function_init_##tag##_##f (void)          \
159 {                                                                         \
160  ip6_neighbor_public_main_t * nm = &ip6_neighbor_public_main;             \
161  static _vnet_ip6_neighbor_function_list_elt_t init_function;             \
162  init_function.next_ip6_neighbor_function = nm->tag##_functions;          \
163  nm->tag##_functions = &init_function;                                    \
164  init_function.fp = (void *) &f;                                          \
165 }                                                                         \
166                                                                           \
167 static void __vnet_ip6_neighbor_function_deinit_##tag##_##f (void)        \
168     __attribute__((__destructor__)) ;                                     \
169                                                                           \
170 static void __vnet_ip6_neighbor_function_deinit_##tag##_##f (void)        \
171 {                                                                         \
172  ip6_neighbor_public_main_t * nm = &ip6_neighbor_public_main;             \
173  _vnet_ip6_neighbor_function_list_elt_t *next;                            \
174  if (nm->tag##_functions->fp == (void *) &f)                              \
175     {                                                                     \
176       nm->tag##_functions =                                               \
177         nm->tag##_functions->next_ip6_neighbor_function;                  \
178       return;                                                             \
179     }                                                                     \
180   next = nm->tag##_functions;                                             \
181   while (next->next_ip6_neighbor_function)                                \
182     {                                                                     \
183       if (next->next_ip6_neighbor_function->fp == (void *) &f)            \
184         {                                                                 \
185           next->next_ip6_neighbor_function =                              \
186             next->next_ip6_neighbor_function->next_ip6_neighbor_function; \
187           return;                                                         \
188         }                                                                 \
189       next = next->next_ip6_neighbor_function;                            \
190     }                                                                     \
191 }
192
193 #define VNET_IP6_NEIGHBOR_RA_FUNCTION(f) \
194   _VNET_IP6_NEIGHBOR_FUNCTION_DECL(f,ra_report)
195
196 clib_error_t *call_ip6_neighbor_callbacks (void *data,
197                                            _vnet_ip6_neighbor_function_list_elt_t
198                                            * elt);
199
200 #endif /* included_ip6_neighbor_h */
201
202 /*
203  * fd.io coding-style-patch-verification: ON
204  *
205  * Local Variables:
206  * eval: (c-set-style "gnu")
207  * End:
208  */