FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
vxlan_gbp_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * vxlan_gbp_api.c - vxlan gbp api
4  *
5  * Copyright (c) 2018 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 
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22 
23 #include <vnet/interface.h>
24 #include <vnet/api_errno.h>
25 #include <vnet/feature/feature.h>
27 #include <vnet/fib/fib_table.h>
28 #include <vnet/ip/ip_types_api.h>
29 #include <vnet/format_fns.h>
30 
31 #include <vxlan-gbp/vxlan_gbp.api_enum.h>
32 #include <vxlan-gbp/vxlan_gbp.api_types.h>
33 
34 #define REPLY_MSG_ID_BASE msg_id_base
36 
38 
39 static void
42 {
43  vl_api_sw_interface_set_vxlan_gbp_bypass_reply_t *rmp;
44  int rv = 0;
45  u32 sw_if_index = ntohl (mp->sw_if_index);
46 
48 
51 
52  REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_GBP_BYPASS_REPLY);
53 }
54 
55 static int
56 vxlan_gbp_tunnel_mode_decode (vl_api_vxlan_gbp_api_tunnel_mode_t in,
58 {
59  in = clib_net_to_host_u32 (in);
60 
61  switch (in)
62  {
65  return (0);
68  return (0);
69  }
70  return (VNET_API_ERROR_INVALID_VALUE);
71 }
72 
75 {
78  ip46_address_t src, dst;
79  ip46_type_t itype;
80  int rv = 0;
81  u32 sw_if_index = ~0;
82  u32 fib_index;
83 
84  itype = ip_address_decode (&mp->tunnel.src, &src);
85  itype = ip_address_decode (&mp->tunnel.dst, &dst);
86 
87  fib_index = fib_table_find (fib_proto_from_ip46 (itype),
88  ntohl (mp->tunnel.encap_table_id));
89  if (fib_index == ~0)
90  {
91  rv = VNET_API_ERROR_NO_SUCH_FIB;
92  goto out;
93  }
94 
96 
97  if (rv)
98  goto out;
99 
101  .is_add = mp->is_add,
102  .is_ip6 = (itype == IP46_TYPE_IP6),
103  .instance = ntohl (mp->tunnel.instance),
104  .mcast_sw_if_index = ntohl (mp->tunnel.mcast_sw_if_index),
105  .encap_fib_index = fib_index,
106  .vni = ntohl (mp->tunnel.vni),
107  .dst = dst,
108  .src = src,
109  .mode = mode,
110  };
111 
112  /* Check src & dst are different */
113  if (ip46_address_cmp (&a.dst, &a.src) == 0)
114  {
115  rv = VNET_API_ERROR_SAME_SRC_DST;
116  goto out;
117  }
118  if (ip46_address_is_multicast (&a.dst) &&
119  !vnet_sw_if_index_is_api_valid (a.mcast_sw_if_index))
120  {
121  rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
122  goto out;
123  }
124 
126 
127 out:
128  /* *INDENT-OFF* */
129  REPLY_MACRO2(VL_API_VXLAN_GBP_TUNNEL_ADD_DEL_REPLY,
130  ({
131  rmp->sw_if_index = ntohl (sw_if_index);
132  }));
133  /* *INDENT-ON* */
134 }
135 
138 {
140  ip46_type_t itype = (ip46_address_is_ip4 (&t->dst) ?
142 
143  rmp = vl_msg_api_alloc (sizeof (*rmp));
144  clib_memset (rmp, 0, sizeof (*rmp));
145  rmp->_vl_msg_id =
146  ntohs (VL_API_VXLAN_GBP_TUNNEL_DETAILS + REPLY_MSG_ID_BASE);
147 
148  ip_address_encode (&t->src, itype, &rmp->tunnel.src);
149  ip_address_encode (&t->dst, itype, &rmp->tunnel.dst);
150  rmp->tunnel.encap_table_id =
152 
153  rmp->tunnel.instance = htonl (t->user_instance);
154  rmp->tunnel.mcast_sw_if_index = htonl (t->mcast_sw_if_index);
155  rmp->tunnel.vni = htonl (t->vni);
156  rmp->tunnel.sw_if_index = htonl (t->sw_if_index);
157  rmp->context = context;
158 
159  vl_api_send_msg (reg, (u8 *) rmp);
160 }
161 
164 {
169 
171  if (!reg)
172  return;
173 
174  sw_if_index = ntohl (mp->sw_if_index);
175 
176  if (~0 == sw_if_index)
177  {
178  /* *INDENT-OFF* */
179  pool_foreach (t, vxm->tunnels)
180  {
182  }
183  /* *INDENT-ON* */
184  }
185  else
186  {
189  {
190  return;
191  }
194  }
195 }
196 
197 #include <vxlan-gbp/vxlan_gbp.api.c>
198 static clib_error_t *
200 {
201  /*
202  * Set up the (msg_name, crc, message-id) table
203  */
205 
206  return 0;
207 }
208 
210 
211 /*
212  * fd.io coding-style-patch-verification: ON
213  *
214  * Local Variables:
215  * eval: (c-set-style "gnu")
216  * End:
217  */
vnet_int_vxlan_gbp_bypass_mode
void vnet_int_vxlan_gbp_bypass_mode(u32 sw_if_index, u8 is_ip6, u8 is_enable)
Definition: vxlan_gbp.c:971
fib_proto_from_ip46
fib_protocol_t fib_proto_from_ip46(ip46_type_t iproto)
Convert from ip46_type to fib_protocol.
Definition: fib_types.c:409
VALIDATE_SW_IF_INDEX
#define VALIDATE_SW_IF_INDEX(mp)
Definition: api_helper_macros.h:281
vl_api_client_index_to_registration
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
api.h
ntohs
#define ntohs(x)
Definition: af_xdp.bpf.c:29
vl_api_vxlan_gbp_tunnel_details_t::context
u32 context
Definition: vxlan_gbp.api:80
vl_api_vxlan_gbp_tunnel_add_del_t::tunnel
vl_api_vxlan_gbp_tunnel_t tunnel
Definition: vxlan_gbp.api:58
REPLY_MACRO2
#define REPLY_MACRO2(t, body)
Definition: api_helper_macros.h:65
vl_api_vxlan_gbp_tunnel_details_t
Definition: vxlan_gbp.api:78
fib_table_get_table_id
u32 fib_table_get_table_id(u32 fib_index, fib_protocol_t proto)
Get the Table-ID of the FIB from protocol and index.
Definition: fib_table.c:1100
vl_api_send_msg
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:35
ip46_address_is_multicast
static uword ip46_address_is_multicast(const ip46_address_t *a)
Definition: ip46_address.h:154
vxlan_gbp_main_t::tunnels
vxlan_gbp_tunnel_t * tunnels
Definition: vxlan_gbp.h:168
VXLAN_GBP_TUNNEL_MODE_L2
@ VXLAN_GBP_TUNNEL_MODE_L2
Definition: vxlan_gbp.h:65
VXLAN_GBP_API_TUNNEL_MODE_L3
@ VXLAN_GBP_API_TUNNEL_MODE_L3
Definition: vxlan_gbp.api:24
ip46_address_cmp
static int ip46_address_cmp(const ip46_address_t *ip46_1, const ip46_address_t *ip46_2)
Definition: ip46_address.h:80
ip46_address_is_ip4
static u8 ip46_address_is_ip4(const ip46_address_t *ip46)
Definition: ip46_address.h:55
IP46_TYPE_IP4
@ IP46_TYPE_IP4
Definition: ip46_address.h:26
vl_api_vxlan_gbp_tunnel_dump_t_handler
static void vl_api_vxlan_gbp_tunnel_dump_t_handler(vl_api_vxlan_gbp_tunnel_dump_t *mp)
Definition: vxlan_gbp_api.c:163
fib_table.h
vl_api_vxlan_gbp_tunnel_add_del_t
Create or delete a VXLAN-GBP tunnel.
Definition: vxlan_gbp.api:53
u16
unsigned short u16
Definition: types.h:57
mode
vl_api_tunnel_mode_t mode
Definition: gre.api:48
vxlan_gbp_tunnel_t::vni
u32 vni
Definition: vxlan_gbp.h:83
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vl_api_vxlan_gbp_tunnel_add_del_t::is_add
bool is_add[default=true]
Definition: vxlan_gbp.api:57
vl_api_vxlan_gbp_tunnel_dump_t
Definition: vxlan_gbp.api:70
vxlan_gbp_tunnel_mode_t
enum vxlan_gbp_tunnel_mode_t_ vxlan_gbp_tunnel_mode_t
VXLAN_GBP_TUNNEL_MODE_L3
@ VXLAN_GBP_TUNNEL_MODE_L3
Definition: vxlan_gbp.h:66
vl_api_sw_interface_set_vxlan_gbp_bypass_t::enable
bool enable[default=true]
Definition: vxlan_gbp.api:98
vxlan_gbp_tunnel_mode_decode
static int vxlan_gbp_tunnel_mode_decode(vl_api_vxlan_gbp_api_tunnel_mode_t in, vxlan_gbp_tunnel_mode_t *out)
Definition: vxlan_gbp_api.c:56
vxlan_gbp_tunnel_t::mcast_sw_if_index
u32 mcast_sw_if_index
Definition: vxlan_gbp.h:90
msg_id_base
static u16 msg_id_base
Definition: vxlan_gbp_api.c:37
ip_address_decode
ip46_type_t ip_address_decode(const vl_api_address_t *in, ip46_address_t *out)
Decode/Encode for struct/union types.
Definition: ip_types_api.c:172
vl_api_vxlan_gbp_tunnel_add_del_reply_t
Definition: vxlan_gbp.api:62
vl_api_vxlan_gbp_tunnel_dump_t::context
u32 context
Definition: vxlan_gbp.api:73
pool_foreach
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
vxlan_gbp_tunnel_t::encap_fib_index
u32 encap_fib_index
Definition: vxlan_gbp.h:93
vxlan_gbp_api_hookup
static clib_error_t * vxlan_gbp_api_hookup(vlib_main_t *vm)
Definition: vxlan_gbp_api.c:199
feature.h
vl_api_registration_
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
REPLY_MACRO
#define REPLY_MACRO(t)
Definition: api_helper_macros.h:30
setup_message_id_table
static void setup_message_id_table(api_main_t *am)
Definition: sr_mpls_api.c:174
vxlan_gbp_tunnel_t::dst
ip46_address_t dst
Definition: vxlan_gbp.h:87
vl_api_vxlan_gbp_tunnel_add_del_t_handler
static void vl_api_vxlan_gbp_tunnel_add_del_t_handler(vl_api_vxlan_gbp_tunnel_add_del_t *mp)
Definition: vxlan_gbp_api.c:74
send_vxlan_gbp_tunnel_details
static void send_vxlan_gbp_tunnel_details(vxlan_gbp_tunnel_t *t, vl_api_registration_t *reg, u32 context)
Definition: vxlan_gbp_api.c:137
interface.h
vl_api_vxlan_gbp_tunnel_dump_t::sw_if_index
vl_api_interface_index_t sw_if_index[default=0xffffffff]
Definition: vxlan_gbp.api:74
VLIB_API_INIT_FUNCTION
VLIB_API_INIT_FUNCTION(vxlan_gbp_api_hookup)
src
vl_api_address_t src
Definition: gre.api:54
IP46_TYPE_IP6
@ IP46_TYPE_IP6
Definition: ip46_address.h:27
vxlan_gbp_tunnel_t::sw_if_index
u32 sw_if_index
Definition: vxlan_gbp.h:96
BAD_SW_IF_INDEX_LABEL
#define BAD_SW_IF_INDEX_LABEL
Definition: api_helper_macros.h:289
vnet_vxlan_gbp_tunnel_add_del_args_t
Definition: vxlan_gbp.h:212
vl_api_sw_interface_set_vxlan_gbp_bypass_t
Interface set vxlan-bypass request.
Definition: vxlan_gbp.api:92
vnet_sw_if_index_is_api_valid
static uword vnet_sw_if_index_is_api_valid(u32 sw_if_index)
Definition: api_helper_macros.h:276
vxlan_gbp_tunnel_t
Definition: vxlan_gbp.h:71
vxlan_gbp_main_t
Definition: vxlan_gbp.h:165
format_fns.h
u32
unsigned int u32
Definition: types.h:88
vxlan_gbp_main_t::tunnel_index_by_sw_if_index
u32 * tunnel_index_by_sw_if_index
Definition: vxlan_gbp.h:183
vl_api_vxlan_gbp_tunnel_details_t::tunnel
vl_api_vxlan_gbp_tunnel_t tunnel
Definition: vxlan_gbp.api:81
dst
vl_api_ip4_address_t dst
Definition: pnat.api:41
api_helper_macros.h
instance
u32 instance
Definition: gre.api:51
vnet_vxlan_gbp_tunnel_add_del
int vnet_vxlan_gbp_tunnel_add_del(vnet_vxlan_gbp_tunnel_add_del_args_t *a, u32 *sw_if_indexp)
Definition: vxlan_gbp.c:385
vl_api_vxlan_gbp_tunnel_dump_t::client_index
u32 client_index
Definition: vxlan_gbp.api:72
clib_memset
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
vlib_main_t
Definition: main.h:102
ip_address_encode
void ip_address_encode(const ip46_address_t *in, ip46_type_t type, vl_api_address_t *out)
Definition: ip_types_api.c:206
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
a
a
Definition: bitmap.h:525
vl_api_sw_interface_set_vxlan_gbp_bypass_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition: vxlan_gbp.api:96
ip46_type_t
ip46_type_t
Definition: ip46_address.h:22
REPLY_MSG_ID_BASE
#define REPLY_MSG_ID_BASE
Definition: vxlan_gbp_api.c:34
context
u32 context
Definition: ip.api:852
rv
int __clib_unused rv
Definition: application.c:491
vxlan_gbp_tunnel_t::user_instance
u32 user_instance
Definition: vxlan_gbp.h:129
VXLAN_GBP_API_TUNNEL_MODE_L2
@ VXLAN_GBP_API_TUNNEL_MODE_L2
Definition: vxlan_gbp.api:23
vnet.h
api_errno.h
vxlan_gbp_tunnel_t::src
ip46_address_t src
Definition: vxlan_gbp.h:86
fib_table_find
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1111
vl_api_sw_interface_set_vxlan_gbp_bypass_t::is_ipv6
bool is_ipv6
Definition: vxlan_gbp.api:97
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
vl_api_vxlan_gbp_tunnel_add_del_reply_t::sw_if_index
vl_api_interface_index_t sw_if_index
Definition: vxlan_gbp.api:66
ip_types_api.h
vxlan_gbp_main
vxlan_gbp_main_t vxlan_gbp_main
Definition: vxlan_gbp.c:35
vxlan_gbp.h
vl_api_sw_interface_set_vxlan_gbp_bypass_t_handler
static void vl_api_sw_interface_set_vxlan_gbp_bypass_t_handler(vl_api_sw_interface_set_vxlan_gbp_bypass_t *mp)
Definition: vxlan_gbp_api.c:41
vl_msg_api_alloc
void * vl_msg_api_alloc(int nbytes)
Definition: memory_shared.c:199