blob: a9dfa5edcb0a4b2ea98e4735c8bd3b0d31e38d97 [file] [log] [blame]
Neale Rannscbe25aa2019-09-30 10:53:31 +00001/*
2 * Copyright (c) 2019 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#include <vnet/ip/ip.h>
17
18/**
19 * IPv6 Configuration on an interface
20 */
21
Neale Rannsec40a7d2020-04-23 07:36:12 +000022extern int ip6_link_enable (u32 sw_if_index,
23 const ip6_address_t * link_local_addr);
Neale Rannscbe25aa2019-09-30 10:53:31 +000024extern bool ip6_link_is_enabled (u32 sw_if_index);
25extern int ip6_link_disable (u32 sw_if_index);
26
27extern const ip6_address_t *ip6_get_link_local_address (u32 sw_if_index);
28
Neale Rannsec40a7d2020-04-23 07:36:12 +000029extern int ip6_link_set_local_address (u32 sw_if_index,
Neale Rannscbe25aa2019-09-30 10:53:31 +000030 const ip6_address_t * address);
31extern adj_index_t ip6_link_get_mcast_adj (u32 sw_if_index);
32
33extern int
34ip6_src_address_for_packet (u32 sw_if_index,
35 const ip6_address_t * dst, ip6_address_t * src);
36
37/**
38 * Delegates for the interfaces
39 *
40 * delegates are a means for a external component to 'extend' the config
41 * object by adding their own objects (aka delegates).
42 */
43
44/**
45 * Callback functions for handling actions on the link
46 */
47typedef void (*ip6_link_enable_fn_t) (u32 sw_if_index);
48typedef void (*ip6_link_disable_fn_t) (index_t ildi);
49typedef void (*ip6_link_ll_change_fn_t) (u32 ildi, const ip6_address_t * a);
50typedef void (*ip6_link_address_change_fn_t) (u32 ildi,
51 const ip6_address_t * a,
52 u8 address_oength);
53
54typedef struct ip6_link_delegate_vft_t_
55{
56 ip6_link_enable_fn_t ildv_enable;
57 ip6_link_disable_fn_t ildv_disable;
58 ip6_link_ll_change_fn_t ildv_ll_change;
59 ip6_link_address_change_fn_t ildv_addr_add;
60 ip6_link_address_change_fn_t ildv_addr_del;
61 format_function_t *ildv_format;
62} ip6_link_delegate_vft_t;
63
64typedef u32 ip6_link_delegate_id_t;
65
66
67extern ip6_link_delegate_id_t ip6_link_delegate_register (const
68 ip6_link_delegate_vft_t
69 * vft);
70extern index_t ip6_link_delegate_get (u32 sw_if_index,
71 ip6_link_delegate_id_t id);
72extern bool ip6_link_delegate_update (u32 sw_if_index,
73 ip6_link_delegate_id_t id, index_t ii);
74extern void ip6_link_delegate_remove (u32 sw_if_index,
75 ip6_link_delegate_id_t id, index_t ii);
76
77/*
78 * fd.io coding-style-patch-verification: ON
79 *
80 * Local Variables:
81 * eval: (c-set-style "gnu")
82 * End:
83 */