FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
urpf_api.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 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 <urpf/urpf.h>
17 #include <vnet/plugin/plugin.h>
18 #include <vnet/ip/ip_types_api.h>
19 
20 #include <vpp/app/version.h>
21 
22 #include <vlibapi/api.h>
23 #include <vlibmemory/api.h>
24 
25 /* define message IDs */
26 #include <vnet/format_fns.h>
27 #include <urpf/urpf.api_enum.h>
28 #include <urpf/urpf.api_types.h>
29 
30 /**
31  * Base message ID fot the plugin
32  */
34 #define REPLY_MSG_ID_BASE urpf_base_msg_id
35 
37 
38 static int
39 urpf_mode_decode (vl_api_urpf_mode_t in, urpf_mode_t * out)
40 {
41  if (0)
42  ;
43 #define _(a,b) \
44  else if (URPF_API_MODE_##a == in) \
45  { \
46  *out = URPF_MODE_##a; \
47  return (0); \
48  }
50 #undef _
51  return (VNET_API_ERROR_INVALID_VALUE);
52 }
53 
54 static void
56 {
57  vl_api_urpf_update_reply_t *rmp;
60  int rv = 0;
61 
63 
64  rv = urpf_mode_decode (mp->mode, &mode);
65 
66  if (rv)
67  goto done;
68 
69  rv = ip_address_family_decode (mp->af, &af);
70 
71  if (rv)
72  goto done;
73 
74  urpf_update (mode, htonl (mp->sw_if_index), af,
75  (mp->is_input ? VLIB_RX : VLIB_TX));
76 
78 done:
79  REPLY_MACRO (VL_API_URPF_UPDATE_REPLY);
80 }
81 
82 #include <urpf/urpf.api.c>
83 
84 static clib_error_t *
86 {
87  /* Ask for a correctly-sized block of API message decode slots */
89 
90  return 0;
91 }
92 
94 
95 /* *INDENT-OFF* */
97  .version = VPP_BUILD_VER,
98  .description = "Unicast Reverse Path Forwarding (uRPF)",
99 };
100 /* *INDENT-ON* */
101 
102 /*
103  * fd.io coding-style-patch-verification: ON
104  *
105  * Local Variables:
106  * eval: (c-set-style "gnu")
107  * End:
108  */
int ip_address_family_decode(vl_api_address_family_t af, ip_address_family_t *out)
Conversion functions to/from (decode/encode) API types to VPP internal types.
Definition: ip_types_api.c:34
vl_api_interface_index_t sw_if_index
Definition: urpf.api:50
static u32 urpf_base_msg_id
Base message ID fot the plugin.
Definition: urpf_api.c:33
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
unsigned int u32
Definition: types.h:88
VLIB_PLUGIN_REGISTER()
static void vl_api_urpf_update_t_handler(vl_api_urpf_update_t *mp)
Definition: urpf_api.c:55
vl_api_address_family_t af
Definition: urpf.api:49
#define REPLY_MACRO(t)
vlib_main_t * vm
Definition: in2out_ed.c:1599
vl_api_tunnel_mode_t mode
Definition: gre.api:48
#define BAD_SW_IF_INDEX_LABEL
bool is_input[default=true]
Definition: urpf.api:47
Enable uRPF on a given interface in a given direction.
Definition: urpf.api:43
static clib_error_t * urpf_api_init(vlib_main_t *vm)
Definition: urpf_api.c:85
vl_api_urpf_mode_t mode
Definition: urpf.api:48
static int urpf_mode_decode(vl_api_urpf_mode_t in, urpf_mode_t *out)
Definition: urpf_api.c:39
enum ip_address_family_t_ ip_address_family_t
Definition: defs.h:47
void urpf_update(urpf_mode_t mode, u32 sw_if_index, ip_address_family_t af, vlib_dir_t dir)
Definition: urpf.c:99
static void setup_message_id_table(snat_main_t *sm, api_main_t *am)
Definition: nat_api.c:3256
Definition: defs.h:46
enum urpf_mode_t_ urpf_mode_t
#define VALIDATE_SW_IF_INDEX(mp)