Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * api_helper_macros.h - message handler helper macros |
| 4 | * |
| 5 | * Copyright (c) 2016 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 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 20 | #ifndef __api_helper_macros_h__ |
| 21 | #define __api_helper_macros_h__ |
| 22 | |
| 23 | #define f64_endian(a) |
| 24 | #define f64_print(a,b) |
| 25 | |
Eyal Bari | 0856b97 | 2017-03-15 14:54:19 +0200 | [diff] [blame] | 26 | #ifndef REPLY_MSG_ID_BASE |
| 27 | #define REPLY_MSG_ID_BASE 0 |
| 28 | #endif |
| 29 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 30 | #define REPLY_MACRO(t) \ |
| 31 | do { \ |
| 32 | vl_api_registration_t *rp; \ |
| 33 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 34 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 35 | if (rp == 0) \ |
| 36 | return; \ |
| 37 | \ |
| 38 | rmp = vl_msg_api_alloc (sizeof (*rmp)); \ |
| 39 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 40 | rmp->context = mp->context; \ |
| 41 | rmp->retval = ntohl(rv); \ |
| 42 | \ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 43 | vl_api_send_msg (rp, (u8 *)rmp); \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 44 | } while(0); |
| 45 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 46 | #define REPLY_MACRO2(t, body) \ |
| 47 | do { \ |
| 48 | vl_api_registration_t *rp; \ |
| 49 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 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 = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 56 | rmp->context = mp->context; \ |
| 57 | rmp->retval = ntohl(rv); \ |
| 58 | do {body;} while (0); \ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 59 | vl_api_send_msg (rp, (u8 *)rmp); \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 60 | } while(0); |
| 61 | |
Paul Vinciguerra | f24de17 | 2020-01-27 18:42:25 -0500 | [diff] [blame] | 62 | #define REPLY_MACRO2_ZERO(t, body) \ |
| 63 | do { \ |
| 64 | vl_api_registration_t *rp; \ |
| 65 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 66 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 67 | if (rp == 0) \ |
| 68 | return; \ |
| 69 | \ |
| 70 | rmp = vl_msg_api_alloc_zero (sizeof (*rmp)); \ |
| 71 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 72 | rmp->context = mp->context; \ |
| 73 | rmp->retval = ntohl(rv); \ |
| 74 | do {body;} while (0); \ |
| 75 | vl_api_send_msg (rp, (u8 *)rmp); \ |
| 76 | } while(0); |
| 77 | |
Ole Troan | 2a1ca78 | 2019-09-19 01:08:30 +0200 | [diff] [blame] | 78 | #define REPLY_MACRO_DETAILS2(t, body) \ |
| 79 | do { \ |
| 80 | vl_api_registration_t *rp; \ |
| 81 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 82 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 83 | if (rp == 0) \ |
| 84 | return; \ |
| 85 | \ |
| 86 | rmp = vl_msg_api_alloc (sizeof (*rmp)); \ |
| 87 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 88 | rmp->context = mp->context; \ |
| 89 | do {body;} while (0); \ |
| 90 | vl_api_send_msg (rp, (u8 *)rmp); \ |
| 91 | } while(0); |
| 92 | |
Ole Troan | f5db371 | 2020-05-20 15:47:06 +0200 | [diff] [blame] | 93 | #define REPLY_MACRO_DETAILS4(t, rp, context, body) \ |
| 94 | do { \ |
| 95 | rmp = vl_msg_api_alloc (sizeof (*rmp)); \ |
| 96 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 97 | rmp->context = context; \ |
| 98 | do {body;} while (0); \ |
| 99 | vl_api_send_msg (rp, (u8 *)rmp); \ |
| 100 | } while(0); |
| 101 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 102 | #define REPLY_MACRO3(t, n, body) \ |
| 103 | do { \ |
| 104 | vl_api_registration_t *rp; \ |
| 105 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 106 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 107 | if (rp == 0) \ |
| 108 | return; \ |
| 109 | \ |
| 110 | rmp = vl_msg_api_alloc (sizeof (*rmp) + n); \ |
| 111 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 112 | rmp->context = mp->context; \ |
| 113 | rmp->retval = ntohl(rv); \ |
| 114 | do {body;} while (0); \ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 115 | vl_api_send_msg (rp, (u8 *)rmp); \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 116 | } while(0); |
| 117 | |
Paul Vinciguerra | f24de17 | 2020-01-27 18:42:25 -0500 | [diff] [blame] | 118 | #define REPLY_MACRO3_ZERO(t, n, body) \ |
| 119 | do { \ |
| 120 | vl_api_registration_t *rp; \ |
| 121 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 122 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 123 | if (rp == 0) \ |
| 124 | return; \ |
| 125 | \ |
| 126 | rmp = vl_msg_api_alloc_zero (sizeof (*rmp) + n); \ |
| 127 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 128 | rmp->context = mp->context; \ |
| 129 | rmp->retval = ntohl(rv); \ |
| 130 | do {body;} while (0); \ |
| 131 | vl_api_send_msg (rp, (u8 *)rmp); \ |
| 132 | } while(0); |
| 133 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 134 | #define REPLY_MACRO4(t, n, body) \ |
| 135 | do { \ |
| 136 | vl_api_registration_t *rp; \ |
| 137 | u8 is_error = 0; \ |
| 138 | rv = vl_msg_api_pd_handler (mp, rv); \ |
| 139 | \ |
| 140 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 141 | if (rp == 0) \ |
| 142 | return; \ |
| 143 | \ |
| 144 | rmp = vl_msg_api_alloc_or_null (sizeof (*rmp) + n); \ |
| 145 | if (!rmp) \ |
| 146 | { \ |
| 147 | /* if there isn't enough memory, try to allocate */ \ |
| 148 | /* some at least for returning an error */ \ |
| 149 | rmp = vl_msg_api_alloc (sizeof (*rmp)); \ |
| 150 | if (!rmp) \ |
| 151 | return; \ |
| 152 | \ |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 153 | clib_memset (rmp, 0, sizeof (*rmp)); \ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 154 | rv = VNET_API_ERROR_TABLE_TOO_BIG; \ |
| 155 | is_error = 1; \ |
| 156 | } \ |
| 157 | rmp->_vl_msg_id = htons((t)+(REPLY_MSG_ID_BASE)); \ |
| 158 | rmp->context = mp->context; \ |
| 159 | rmp->retval = ntohl(rv); \ |
| 160 | if (!is_error) \ |
| 161 | do {body;} while (0); \ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 162 | vl_api_send_msg (rp, (u8 *)rmp); \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 163 | } while(0); |
| 164 | |
Ole Troan | f5db371 | 2020-05-20 15:47:06 +0200 | [diff] [blame] | 165 | #define REPLY_AND_DETAILS_MACRO(t, p, body) \ |
| 166 | do { \ |
| 167 | vl_api_registration_t *rp; \ |
| 168 | rp = vl_api_client_index_to_registration (mp->client_index); \ |
| 169 | if (rp == 0) \ |
| 170 | return; \ |
| 171 | u32 cursor = clib_net_to_host_u32 (mp->cursor); \ |
| 172 | vlib_main_t *vm = vlib_get_main (); \ |
| 173 | f64 start = vlib_time_now (vm); \ |
| 174 | if (pool_is_free_index (p, cursor)) { \ |
| 175 | cursor = pool_next_index (p, cursor); \ |
| 176 | if (cursor == ~0) \ |
| 177 | rv = VNET_API_ERROR_INVALID_VALUE; \ |
| 178 | } \ |
| 179 | while (cursor != ~0) { \ |
| 180 | do {body;} while (0); \ |
| 181 | cursor = pool_next_index (p, cursor); \ |
| 182 | if (vl_api_process_may_suspend (vm, rp, start)) { \ |
| 183 | if (cursor != ~0) \ |
| 184 | rv = VNET_API_ERROR_EAGAIN; \ |
| 185 | break; \ |
| 186 | } \ |
| 187 | } \ |
| 188 | REPLY_MACRO2 (t, ({ \ |
| 189 | rmp->cursor = clib_host_to_net_u32 (cursor); \ |
| 190 | })); \ |
| 191 | } while(0); |
| 192 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 193 | /* "trust, but verify" */ |
| 194 | |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 195 | static inline uword |
| 196 | vnet_sw_if_index_is_api_valid (u32 sw_if_index) |
| 197 | { |
| 198 | return vnet_sw_interface_is_api_valid (vnet_get_main (), sw_if_index); |
| 199 | } |
| 200 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 201 | #define VALIDATE_SW_IF_INDEX(mp) \ |
Neale Ranns | 947ea62 | 2018-06-07 23:48:20 -0700 | [diff] [blame] | 202 | do { u32 __sw_if_index = ntohl((mp)->sw_if_index); \ |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 203 | if (!vnet_sw_if_index_is_api_valid(__sw_if_index)) { \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 204 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; \ |
| 205 | goto bad_sw_if_index; \ |
| 206 | } \ |
| 207 | } while(0); |
| 208 | |
| 209 | #define BAD_SW_IF_INDEX_LABEL \ |
| 210 | do { \ |
| 211 | bad_sw_if_index: \ |
| 212 | ; \ |
| 213 | } while (0); |
| 214 | |
| 215 | #define VALIDATE_RX_SW_IF_INDEX(mp) \ |
Neale Ranns | 947ea62 | 2018-06-07 23:48:20 -0700 | [diff] [blame] | 216 | do { u32 __rx_sw_if_index = ntohl((mp)->rx_sw_if_index); \ |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 217 | if (!vnet_sw_if_index_is_api_valid(__rx_sw_if_index)) { \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 218 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; \ |
| 219 | goto bad_rx_sw_if_index; \ |
| 220 | } \ |
| 221 | } while(0); |
| 222 | |
| 223 | #define BAD_RX_SW_IF_INDEX_LABEL \ |
| 224 | do { \ |
| 225 | bad_rx_sw_if_index: \ |
| 226 | ; \ |
| 227 | } while (0); |
| 228 | |
| 229 | #define VALIDATE_TX_SW_IF_INDEX(mp) \ |
| 230 | do { u32 __tx_sw_if_index = ntohl(mp->tx_sw_if_index); \ |
Eyal Bari | 1c82cd4 | 2017-03-14 14:39:51 +0200 | [diff] [blame] | 231 | if (!vnet_sw_if_index_is_api_valid(__tx_sw_if_index)) { \ |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 232 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; \ |
| 233 | goto bad_tx_sw_if_index; \ |
| 234 | } \ |
| 235 | } while(0); |
| 236 | |
| 237 | #define BAD_TX_SW_IF_INDEX_LABEL \ |
| 238 | do { \ |
| 239 | bad_tx_sw_if_index: \ |
| 240 | ; \ |
| 241 | } while (0); |
| 242 | |
John Lo | 9793477 | 2017-05-18 22:26:47 -0400 | [diff] [blame] | 243 | #define VALIDATE_BD_ID(mp) \ |
| 244 | do { u32 __rx_bd_id = ntohl(mp->bd_id); \ |
| 245 | if (__rx_bd_id > L2_BD_ID_MAX) { \ |
| 246 | rv = VNET_API_ERROR_BD_ID_EXCEED_MAX; \ |
| 247 | goto bad_bd_id; \ |
| 248 | } \ |
| 249 | } while(0); |
| 250 | |
| 251 | #define BAD_BD_ID_LABEL \ |
| 252 | do { \ |
| 253 | bad_bd_id: \ |
| 254 | ; \ |
| 255 | } while (0); |
| 256 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 257 | #define pub_sub_handler(lca,UCA) \ |
| 258 | static void vl_api_want_##lca##_t_handler ( \ |
| 259 | vl_api_want_##lca##_t *mp) \ |
| 260 | { \ |
| 261 | vpe_api_main_t *vam = &vpe_api_main; \ |
| 262 | vpe_client_registration_t *rp; \ |
| 263 | vl_api_want_##lca##_reply_t *rmp; \ |
| 264 | uword *p; \ |
| 265 | i32 rv = 0; \ |
| 266 | \ |
| 267 | p = hash_get (vam->lca##_registration_hash, mp->client_index); \ |
| 268 | if (p) { \ |
| 269 | if (mp->enable_disable) { \ |
Ole Troan | 32ef137 | 2019-01-07 22:17:31 +0100 | [diff] [blame] | 270 | clib_warning ("pid %d: already enabled...", ntohl(mp->pid)); \ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 271 | rv = VNET_API_ERROR_INVALID_REGISTRATION; \ |
| 272 | goto reply; \ |
| 273 | } else { \ |
| 274 | rp = pool_elt_at_index (vam->lca##_registrations, p[0]); \ |
| 275 | pool_put (vam->lca##_registrations, rp); \ |
| 276 | hash_unset (vam->lca##_registration_hash, \ |
| 277 | mp->client_index); \ |
| 278 | goto reply; \ |
| 279 | } \ |
| 280 | } \ |
| 281 | if (mp->enable_disable == 0) { \ |
| 282 | clib_warning ("pid %d: already disabled...", mp->pid); \ |
| 283 | rv = VNET_API_ERROR_INVALID_REGISTRATION; \ |
| 284 | goto reply; \ |
| 285 | } \ |
| 286 | pool_get (vam->lca##_registrations, rp); \ |
| 287 | rp->client_index = mp->client_index; \ |
| 288 | rp->client_pid = mp->pid; \ |
| 289 | hash_set (vam->lca##_registration_hash, rp->client_index, \ |
| 290 | rp - vam->lca##_registrations); \ |
| 291 | \ |
| 292 | reply: \ |
| 293 | REPLY_MACRO (VL_API_WANT_##UCA##_REPLY); \ |
Neale Ranns | f12dad6 | 2018-06-04 18:41:24 -0700 | [diff] [blame] | 294 | } \ |
| 295 | \ |
| 296 | static clib_error_t * vl_api_want_##lca##_t_reaper (u32 client_index) \ |
| 297 | { \ |
| 298 | vpe_api_main_t *vam = &vpe_api_main; \ |
| 299 | vpe_client_registration_t *rp; \ |
| 300 | uword *p; \ |
| 301 | \ |
Matthew Smith | d465631 | 2018-06-14 11:40:49 -0500 | [diff] [blame] | 302 | p = hash_get (vam->lca##_registration_hash, client_index); \ |
Neale Ranns | f12dad6 | 2018-06-04 18:41:24 -0700 | [diff] [blame] | 303 | if (p) \ |
| 304 | { \ |
| 305 | rp = pool_elt_at_index (vam->lca##_registrations, p[0]); \ |
| 306 | pool_put (vam->lca##_registrations, rp); \ |
| 307 | hash_unset (vam->lca##_registration_hash, client_index); \ |
| 308 | } \ |
| 309 | return (NULL); \ |
| 310 | } \ |
| 311 | \ |
| 312 | VL_MSG_API_REAPER_FUNCTION (vl_api_want_##lca##_t_reaper); \ |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 313 | |
| 314 | #define foreach_registration_hash \ |
| 315 | _(interface_events) \ |
| 316 | _(to_netconf_server) \ |
| 317 | _(from_netconf_server) \ |
| 318 | _(to_netconf_client) \ |
| 319 | _(from_netconf_client) \ |
Klement Sekera | 0e3c0de | 2016-09-29 14:43:44 +0200 | [diff] [blame] | 320 | _(oam_events) \ |
Eyal Bari | 2019748 | 2017-09-13 12:29:08 +0300 | [diff] [blame] | 321 | _(bfd_events) \ |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 322 | _(l2_arp_term_events) \ |
Juraj Sloboda | 81119e8 | 2018-05-25 14:02:20 +0200 | [diff] [blame] | 323 | _(ip6_ra_events) \ |
Juraj Sloboda | dd3b8f7 | 2018-05-04 14:20:06 +0200 | [diff] [blame] | 324 | _(dhcp6_pd_reply_events) \ |
| 325 | _(dhcp6_reply_events) |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 326 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 327 | typedef struct |
| 328 | { |
| 329 | u32 client_index; /* in memclnt registration pool */ |
| 330 | u32 client_pid; |
| 331 | } vpe_client_registration_t; |
| 332 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 333 | typedef struct |
| 334 | { |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 335 | #define _(a) \ |
| 336 | uword *a##_registration_hash; \ |
| 337 | vpe_client_registration_t * a##_registrations; |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 338 | foreach_registration_hash |
| 339 | #undef _ |
| 340 | /* notifications happen really early in the game */ |
| 341 | u8 link_state_process_up; |
| 342 | |
Dave Barach | 6d963c2 | 2016-12-05 09:50:05 -0500 | [diff] [blame] | 343 | /* convenience */ |
| 344 | vlib_main_t *vlib_main; |
| 345 | vnet_main_t *vnet_main; |
| 346 | } vpe_api_main_t; |
| 347 | |
| 348 | extern vpe_api_main_t vpe_api_main; |
| 349 | |
Dave Barach | aff7077 | 2016-10-31 11:59:07 -0400 | [diff] [blame] | 350 | #endif /* __api_helper_macros_h__ */ |
| 351 | |
| 352 | /* |
| 353 | * fd.io coding-style-patch-verification: ON |
| 354 | * |
| 355 | * Local Variables: |
| 356 | * eval: (c-set-style "gnu") |
| 357 | * End: |
| 358 | */ |