urpf: Unicast reverse Path Forwarding (plugin)
[vpp.git] / src / plugins / urpf / urpf_api.c
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  */
33 static u32 urpf_base_msg_id;
34 #define REPLY_MSG_ID_BASE urpf_base_msg_id
35
36 #include <vlibapi/api_helper_macros.h>
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     }
49   foreach_urpf_mode
50 #undef _
51     return (VNET_API_ERROR_INVALID_VALUE);
52 }
53
54 static void
55 vl_api_urpf_update_t_handler (vl_api_urpf_update_t * mp)
56 {
57   vl_api_urpf_update_reply_t *rmp;
58   ip_address_family_t af;
59   urpf_mode_t mode;
60   int rv = 0;
61
62   VALIDATE_SW_IF_INDEX (mp);
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
77   BAD_SW_IF_INDEX_LABEL;
78 done:
79   REPLY_MACRO (VL_API_URPF_UPDATE_REPLY);
80 }
81
82 #include <urpf/urpf.api.c>
83
84 static clib_error_t *
85 urpf_api_init (vlib_main_t * vm)
86 {
87   /* Ask for a correctly-sized block of API message decode slots */
88   urpf_base_msg_id = setup_message_id_table ();
89
90   return 0;
91 }
92
93 VLIB_INIT_FUNCTION (urpf_api_init);
94
95 /* *INDENT-OFF* */
96 VLIB_PLUGIN_REGISTER () = {
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  */