api: refactor to use REPLY_MSG_ID_BASE #define
[vpp.git] / src / plugins / abf / abf_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 <stddef.h>
17
18 #include <vnet/vnet.h>
19 #include <vnet/plugin/plugin.h>
20 #include <abf/abf_policy.h>
21 #include <abf/abf_itf_attach.h>
22 #include <vnet/mpls/mpls_types.h>
23 #include <vnet/fib/fib_path_list.h>
24 #include <vnet/fib/fib_api.h>
25
26 #include <vpp/app/version.h>
27
28 #include <vlibapi/api.h>
29 #include <vlibmemory/api.h>
30
31 /* define message IDs */
32 #include <vnet/format_fns.h>
33 #include <abf/abf.api_enum.h>
34 #include <abf/abf.api_types.h>
35
36 /**
37  * Base message ID for the plugin
38  */
39 static u32 abf_base_msg_id;
40
41 #define REPLY_MSG_ID_BASE (abf_base_msg_id)
42 #include <vlibapi/api_helper_macros.h>
43
44 static void
45 vl_api_abf_plugin_get_version_t_handler (vl_api_abf_plugin_get_version_t * mp)
46 {
47   vl_api_abf_plugin_get_version_reply_t *rmp;
48   vl_api_registration_t *rp;
49
50   rp = vl_api_client_index_to_registration (mp->client_index);
51   if (rp == 0)
52     return;
53
54   rmp = vl_msg_api_alloc (sizeof (*rmp));
55   rmp->_vl_msg_id =
56     ntohs (VL_API_ABF_PLUGIN_GET_VERSION_REPLY + abf_base_msg_id);
57   rmp->context = mp->context;
58   rmp->major = htonl (ABF_PLUGIN_VERSION_MAJOR);
59   rmp->minor = htonl (ABF_PLUGIN_VERSION_MINOR);
60
61   vl_api_send_msg (rp, (u8 *) rmp);
62 }
63
64 static void
65 vl_api_abf_policy_add_del_t_handler (vl_api_abf_policy_add_del_t * mp)
66 {
67   vl_api_abf_policy_add_del_reply_t *rmp;
68   fib_route_path_t *paths = NULL, *path;
69   int rv = 0;
70   u8 pi;
71
72   vec_validate (paths, mp->policy.n_paths - 1);
73
74   for (pi = 0; pi < mp->policy.n_paths; pi++)
75     {
76       path = &paths[pi];
77       rv = fib_api_path_decode (&mp->policy.paths[pi], path);
78
79       if (0 != rv)
80         {
81           goto done;
82         }
83     }
84
85   if (mp->is_add)
86     {
87       rv = abf_policy_update (ntohl (mp->policy.policy_id),
88                               ntohl (mp->policy.acl_index), paths);
89     }
90   else
91     {
92       rv = abf_policy_delete (ntohl (mp->policy.policy_id), paths);
93     }
94 done:
95   vec_free (paths);
96
97   REPLY_MACRO (VL_API_ABF_POLICY_ADD_DEL_REPLY);
98 }
99
100 static void
101 vl_api_abf_itf_attach_add_del_t_handler (vl_api_abf_itf_attach_add_del_t * mp)
102 {
103   vl_api_abf_itf_attach_add_del_reply_t *rmp;
104   fib_protocol_t fproto = (mp->attach.is_ipv6 ?
105                            FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4);
106   int rv = 0;
107
108   if (mp->is_add)
109     {
110       abf_itf_attach (fproto,
111                       ntohl (mp->attach.policy_id),
112                       ntohl (mp->attach.priority),
113                       ntohl (mp->attach.sw_if_index));
114     }
115   else
116     {
117       abf_itf_detach (fproto,
118                       ntohl (mp->attach.policy_id),
119                       ntohl (mp->attach.sw_if_index));
120     }
121
122   REPLY_MACRO (VL_API_ABF_ITF_ATTACH_ADD_DEL_REPLY);
123 }
124
125 typedef struct abf_dump_walk_ctx_t_
126 {
127   vl_api_registration_t *rp;
128   u32 context;
129 } abf_dump_walk_ctx_t;
130
131 static int
132 abf_policy_send_details (u32 api, void *args)
133 {
134   fib_path_encode_ctx_t walk_ctx = {
135     .rpaths = NULL,
136   };
137   vl_api_abf_policy_details_t *mp;
138   abf_dump_walk_ctx_t *ctx;
139   fib_route_path_t *rpath;
140   vl_api_fib_path_t *fp;
141   size_t msg_size;
142   abf_policy_t *ap;
143   u8 n_paths;
144
145   ctx = args;
146   ap = abf_policy_get (api);
147   n_paths = fib_path_list_get_n_paths (ap->ap_pl);
148   msg_size = sizeof (*mp) + sizeof (mp->policy.paths[0]) * n_paths;
149
150   mp = vl_msg_api_alloc (msg_size);
151   clib_memset (mp, 0, msg_size);
152   mp->_vl_msg_id = ntohs (VL_API_ABF_POLICY_DETAILS + abf_base_msg_id);
153
154   /* fill in the message */
155   mp->context = ctx->context;
156   mp->policy.n_paths = n_paths;
157   mp->policy.acl_index = htonl (ap->ap_acl);
158   mp->policy.policy_id = htonl (ap->ap_id);
159
160   fib_path_list_walk_w_ext (ap->ap_pl, NULL, fib_path_encode, &walk_ctx);
161
162   fp = mp->policy.paths;
163   vec_foreach (rpath, walk_ctx.rpaths)
164   {
165     fib_api_path_encode (rpath, fp);
166     fp++;
167   }
168
169   vl_api_send_msg (ctx->rp, (u8 *) mp);
170
171   vec_free (walk_ctx.rpaths);
172
173   return (1);
174 }
175
176 static void
177 vl_api_abf_policy_dump_t_handler (vl_api_abf_policy_dump_t * mp)
178 {
179   vl_api_registration_t *rp;
180
181   rp = vl_api_client_index_to_registration (mp->client_index);
182   if (rp == 0)
183     return;
184
185   abf_dump_walk_ctx_t ctx = {
186     .rp = rp,
187     .context = mp->context,
188   };
189
190   abf_policy_walk (abf_policy_send_details, &ctx);
191 }
192
193 static int
194 abf_itf_attach_send_details (u32 aiai, void *args)
195 {
196   vl_api_abf_itf_attach_details_t *mp;
197   abf_dump_walk_ctx_t *ctx;
198   abf_itf_attach_t *aia;
199   abf_policy_t *ap;
200
201   ctx = args;
202   aia = abf_itf_attach_get (aiai);
203   ap = abf_policy_get (aia->aia_abf);
204
205   mp = vl_msg_api_alloc (sizeof (*mp));
206   mp->_vl_msg_id = ntohs (VL_API_ABF_ITF_ATTACH_DETAILS + abf_base_msg_id);
207
208   mp->context = ctx->context;
209   mp->attach.policy_id = htonl (ap->ap_id);
210   mp->attach.sw_if_index = htonl (aia->aia_sw_if_index);
211   mp->attach.priority = htonl (aia->aia_prio);
212   mp->attach.is_ipv6 = (aia->aia_proto == FIB_PROTOCOL_IP6);
213
214   vl_api_send_msg (ctx->rp, (u8 *) mp);
215
216   return (1);
217 }
218
219 static void
220 vl_api_abf_itf_attach_dump_t_handler (vl_api_abf_itf_attach_dump_t * mp)
221 {
222   vl_api_registration_t *rp;
223
224   rp = vl_api_client_index_to_registration (mp->client_index);
225   if (rp == 0)
226     return;
227
228   abf_dump_walk_ctx_t ctx = {
229     .rp = rp,
230     .context = mp->context,
231   };
232
233   abf_itf_attach_walk (abf_itf_attach_send_details, &ctx);
234 }
235
236 #include <abf/abf.api.c>
237
238 static clib_error_t *
239 abf_api_init (vlib_main_t * vm)
240 {
241   /* Ask for a correctly-sized block of API message decode slots */
242   abf_base_msg_id = setup_message_id_table ();
243
244   return 0;
245 }
246
247 VLIB_INIT_FUNCTION (abf_api_init);
248
249 /* *INDENT-OFF* */
250 VLIB_PLUGIN_REGISTER () = {
251     .version = VPP_BUILD_VER,
252     .description = "Access Control List (ACL) Based Forwarding",
253 };
254 /* *INDENT-ON* */
255
256 /*
257  * fd.io coding-style-patch-verification: ON
258  *
259  * Local Variables:
260  * eval: (c-set-style "gnu")
261  * End:
262  */