Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * api.h |
| 4 | * |
| 5 | * Copyright (c) 2009-2015 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 | #ifndef included_api_h |
| 21 | #define included_api_h |
| 22 | |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 23 | #include <stddef.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 24 | #include <vppinfra/error.h> |
| 25 | #include <svm/svm.h> |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 26 | #include <svm/queue.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 27 | #include <vlib/vlib.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 28 | #include <vlib/unix/unix.h> |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 29 | #include <vlibapi/api_common.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 30 | |
| 31 | /* *INDENT-OFF* */ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 32 | typedef CLIB_PACKED ( struct { |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 33 | u32 nitems; |
Ole Troan | edfe2c0 | 2019-07-30 15:38:13 +0200 | [diff] [blame] | 34 | u32 msgtbl_size; |
| 35 | u8 wrapped; |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 36 | }) vl_api_trace_file_header_t; |
| 37 | /* *INDENT-ON* */ |
| 38 | |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 39 | int vl_msg_api_trace_save (api_main_t * am, |
| 40 | vl_api_trace_which_t which, FILE * fp); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 41 | |
| 42 | #define VLIB_API_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,api_init) |
| 43 | |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 44 | /* Call given init function: used for init function dependencies. */ |
| 45 | #define vlib_call_api_init_function(vm, x) \ |
| 46 | ({ \ |
| 47 | extern vlib_init_function_t * _VLIB_INIT_FUNCTION_SYMBOL (x,api_init); \ |
| 48 | vlib_init_function_t * _f = _VLIB_INIT_FUNCTION_SYMBOL (x,api_init); \ |
| 49 | clib_error_t * _error = 0; \ |
| 50 | if (! hash_get (vm->init_functions_called, _f)) \ |
| 51 | { \ |
| 52 | hash_set1 (vm->init_functions_called, _f); \ |
| 53 | _error = _f (vm); \ |
| 54 | } \ |
| 55 | _error; \ |
| 56 | }) |
| 57 | |
Dave Barach | b64e4e2 | 2017-03-14 09:10:56 -0400 | [diff] [blame] | 58 | #define _VL_MSG_API_FUNCTION_SYMBOL(x, type) \ |
| 59 | _vl_msg_api_##type##_function_##x |
| 60 | |
| 61 | #define VL_MSG_API_FUNCTION_SYMBOL(x) \ |
| 62 | _VL_MSG_API_FUNCTION_SYMBOL(x, reaper) |
| 63 | |
| 64 | #define VLIB_DECLARE_REAPER_FUNCTION(x, tag) \ |
| 65 | vl_msg_api_init_function_t * _VL_MSG_API_FUNCTION_SYMBOL (x, tag) = x; \ |
| 66 | static void __vl_msg_api_add_##tag##_function_##x (void) \ |
| 67 | __attribute__((__constructor__)) ; \ |
| 68 | \ |
| 69 | static void __vl_msg_api_add_##tag##_function_##x (void) \ |
| 70 | { \ |
| 71 | api_main_t * am = &api_main; \ |
| 72 | static _vl_msg_api_function_list_elt_t _vl_msg_api_function; \ |
| 73 | _vl_msg_api_function.next_init_function \ |
| 74 | = am->tag##_function_registrations; \ |
| 75 | am->tag##_function_registrations = &_vl_msg_api_function; \ |
| 76 | _vl_msg_api_function.f = &x; \ |
| 77 | } |
| 78 | |
| 79 | #define VL_MSG_API_REAPER_FUNCTION(x) VLIB_DECLARE_REAPER_FUNCTION(x,reaper) |
| 80 | |
| 81 | /* Call reaper function with client index */ |
| 82 | #define vl_msg_api_call_reaper_function(ci) \ |
| 83 | ({ \ |
| 84 | extern vlib_init_function_t * VLIB_INIT_FUNCTION_SYMBOL (reaper); \ |
| 85 | vlib_init_function_t * _f = VLIB_INIT_FUNCTION_SYMBOL (reaper); \ |
| 86 | clib_error_t * _error = 0; \ |
| 87 | _error = _f (ci); \ |
| 88 | }) |
| 89 | |
Dave Barach | bfd9227 | 2017-05-12 11:59:25 -0400 | [diff] [blame] | 90 | static inline u32 |
| 91 | vl_msg_api_get_msg_length_inline (void *msg_arg) |
| 92 | { |
| 93 | u8 *msg = (u8 *) msg_arg; |
| 94 | |
| 95 | msgbuf_t *header = (msgbuf_t *) (msg - offsetof (msgbuf_t, data)); |
| 96 | |
| 97 | return clib_net_to_host_u32 (header->data_len); |
| 98 | } |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 99 | |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 100 | int vl_msg_api_rx_trace_enabled (api_main_t * am); |
| 101 | int vl_msg_api_tx_trace_enabled (api_main_t * am); |
| 102 | void vl_msg_api_trace (api_main_t * am, vl_api_trace_t * tp, void *msg); |
| 103 | int vl_msg_api_trace_onoff (api_main_t * am, vl_api_trace_which_t which, |
| 104 | int onoff); |
| 105 | int vl_msg_api_trace_free (api_main_t * am, vl_api_trace_which_t which); |
| 106 | int vl_msg_api_trace_configure (api_main_t * am, vl_api_trace_which_t which, |
| 107 | u32 nitems); |
| 108 | void vl_msg_api_handler_with_vm_node (api_main_t * am, |
| 109 | void *the_msg, vlib_main_t * vm, |
| 110 | vlib_node_runtime_t * node); |
| 111 | vl_api_trace_t *vl_msg_api_trace_get (api_main_t * am, |
| 112 | vl_api_trace_which_t which); |
| 113 | void vl_msg_api_add_msg_name_crc (api_main_t * am, const char *string, |
| 114 | u32 id); |
Dave Barach | 0d056e5 | 2017-09-28 15:11:16 -0400 | [diff] [blame] | 115 | void vl_msg_api_add_version (api_main_t * am, const char *string, |
| 116 | u32 major, u32 minor, u32 patch); |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 117 | /* node_serialize.c prototypes */ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 118 | u8 *vlib_node_serialize (vlib_main_t * vm, vlib_node_t *** node_dups, |
| 119 | u8 * vector, int include_nexts, int include_stats); |
Dave Barach | 1ddbc01 | 2018-06-13 09:26:05 -0400 | [diff] [blame] | 120 | vlib_node_t ***vlib_node_unserialize (u8 * vector); |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 121 | |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 122 | u32 vl_msg_api_get_msg_length (void *msg_arg); |
| 123 | |
| 124 | #endif /* included_api_h */ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 125 | /* |
| 126 | * fd.io coding-style-patch-verification: ON |
| 127 | * |
| 128 | * Local Variables: |
| 129 | * eval: (c-set-style "gnu") |
| 130 | * End: |
| 131 | */ |