blob: 17ed73790cfb8b26189f60d10779a42600d81d0d [file] [log] [blame]
Pavel Kotucekd9aad292017-01-25 08:45:38 +01001/*
2 *------------------------------------------------------------------
3 * policer_api.c - policer api
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
20#include <vnet/vnet.h>
21#include <vlibmemory/api.h>
22
23#include <vnet/interface.h>
24#include <vnet/api_errno.h>
25#include <vnet/policer/policer.h>
26
27#include <vnet/vnet_msg_enum.h>
28
29#define vl_typedefs /* define message structures */
30#include <vnet/vnet_all_api_h.h>
31#undef vl_typedefs
32
33#define vl_endianfun /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_endianfun
36
37/* instantiate all the print functions we know about */
38#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39#define vl_printfun
40#include <vnet/vnet_all_api_h.h>
41#undef vl_printfun
42
43#include <vlibapi/api_helper_macros.h>
44
Brian Russell48e26362021-02-10 13:53:42 +000045#define foreach_vpe_api_msg \
46 _ (POLICER_ADD_DEL, policer_add_del) \
47 _ (POLICER_BIND, policer_bind) \
48 _ (POLICER_DUMP, policer_dump)
Pavel Kotucekd9aad292017-01-25 08:45:38 +010049
50static void
51vl_api_policer_add_del_t_handler (vl_api_policer_add_del_t * mp)
52{
53 vlib_main_t *vm = vlib_get_main ();
54 vl_api_policer_add_del_reply_t *rmp;
55 int rv = 0;
56 u8 *name = NULL;
Brian Russellc5299ff2021-02-09 10:16:58 +000057 qos_pol_cfg_params_st cfg;
Pavel Kotucekd9aad292017-01-25 08:45:38 +010058 clib_error_t *error;
59 u32 policer_index;
60
61 name = format (0, "%s", mp->name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +020062 vec_terminate_c_string (name);
Pavel Kotucekd9aad292017-01-25 08:45:38 +010063
Dave Barachb7b92992018-10-17 10:38:51 -040064 clib_memset (&cfg, 0, sizeof (cfg));
Brian Russellb2aae752021-02-09 11:36:31 +000065 cfg.rfc = (qos_policer_type_en) mp->type;
66 cfg.rnd_type = (qos_round_type_en) mp->round_type;
67 cfg.rate_type = (qos_rate_type_en) mp->rate_type;
Neale Rannsd91c1db2017-07-31 02:30:50 -070068 cfg.rb.kbps.cir_kbps = ntohl (mp->cir);
69 cfg.rb.kbps.eir_kbps = ntohl (mp->eir);
70 cfg.rb.kbps.cb_bytes = clib_net_to_host_u64 (mp->cb);
71 cfg.rb.kbps.eb_bytes = clib_net_to_host_u64 (mp->eb);
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010072 cfg.conform_action.action_type =
Brian Russellc5299ff2021-02-09 10:16:58 +000073 (qos_action_type_en) mp->conform_action.type;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010074 cfg.conform_action.dscp = mp->conform_action.dscp;
Brian Russellc5299ff2021-02-09 10:16:58 +000075 cfg.exceed_action.action_type = (qos_action_type_en) mp->exceed_action.type;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010076 cfg.exceed_action.dscp = mp->exceed_action.dscp;
77 cfg.violate_action.action_type =
Brian Russellc5299ff2021-02-09 10:16:58 +000078 (qos_action_type_en) mp->violate_action.type;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010079 cfg.violate_action.dscp = mp->violate_action.dscp;
80
Pavel Kotucekd9aad292017-01-25 08:45:38 +010081 cfg.color_aware = mp->color_aware;
82
83 error = policer_add_del (vm, name, &cfg, &policer_index, mp->is_add);
84
85 if (error)
86 rv = VNET_API_ERROR_UNSPECIFIED;
87
88 /* *INDENT-OFF* */
89 REPLY_MACRO2(VL_API_POLICER_ADD_DEL_REPLY,
90 ({
91 if (rv == 0 && mp->is_add)
92 rmp->policer_index = ntohl(policer_index);
93 else
94 rmp->policer_index = ~0;
95 }));
96 /* *INDENT-ON* */
97}
98
99static void
Brian Russell48e26362021-02-10 13:53:42 +0000100vl_api_policer_bind_t_handler (vl_api_policer_bind_t *mp)
101{
102 vl_api_policer_bind_reply_t *rmp;
103 u8 *name;
104 u32 worker_index;
105 u8 bind_enable;
106 int rv;
107
108 name = format (0, "%s", mp->name);
109 vec_terminate_c_string (name);
110
111 worker_index = ntohl (mp->worker_index);
112 bind_enable = mp->bind_enable;
113
114 rv = policer_bind_worker (name, worker_index, bind_enable);
115 vec_free (name);
116 REPLY_MACRO (VL_API_POLICER_BIND_REPLY);
117}
118
119static void
Brian Russellc5299ff2021-02-09 10:16:58 +0000120send_policer_details (u8 *name, qos_pol_cfg_params_st *config,
121 policer_read_response_type_st *templ,
122 vl_api_registration_t *reg, u32 context)
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100123{
124 vl_api_policer_details_t *mp;
125
126 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400127 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100128 mp->_vl_msg_id = ntohs (VL_API_POLICER_DETAILS);
129 mp->context = context;
130 mp->cir = htonl (config->rb.kbps.cir_kbps);
131 mp->eir = htonl (config->rb.kbps.eir_kbps);
Marek Gradzki59ed4902017-03-21 11:51:54 +0100132 mp->cb = clib_host_to_net_u64 (config->rb.kbps.cb_bytes);
133 mp->eb = clib_host_to_net_u64 (config->rb.kbps.eb_bytes);
Brian Russellb2aae752021-02-09 11:36:31 +0000134 mp->rate_type = (vl_api_sse2_qos_rate_type_t) config->rate_type;
135 mp->round_type = (vl_api_sse2_qos_round_type_t) config->rnd_type;
136 mp->type = (vl_api_sse2_qos_policer_type_t) config->rfc;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100137 mp->conform_action.type =
138 (vl_api_sse2_qos_action_type_t) config->conform_action.action_type;
139 mp->conform_action.dscp = config->conform_action.dscp;
140 mp->exceed_action.type =
141 (vl_api_sse2_qos_action_type_t) config->exceed_action.action_type;
142 mp->exceed_action.dscp = config->exceed_action.dscp;
143 mp->violate_action.type =
144 (vl_api_sse2_qos_action_type_t) config->violate_action.action_type;
145 mp->violate_action.dscp = config->violate_action.dscp;
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100146 mp->single_rate = templ->single_rate ? 1 : 0;
147 mp->color_aware = templ->color_aware ? 1 : 0;
148 mp->scale = htonl (templ->scale);
149 mp->cir_tokens_per_period = htonl (templ->cir_tokens_per_period);
150 mp->pir_tokens_per_period = htonl (templ->pir_tokens_per_period);
151 mp->current_limit = htonl (templ->current_limit);
152 mp->current_bucket = htonl (templ->current_bucket);
153 mp->extended_limit = htonl (templ->extended_limit);
154 mp->extended_bucket = htonl (templ->extended_bucket);
155 mp->last_update_time = clib_host_to_net_u64 (templ->last_update_time);
156
157 strncpy ((char *) mp->name, (char *) name, ARRAY_LEN (mp->name) - 1);
158
Florin Coras6c4dae22018-01-09 06:39:23 -0800159 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100160}
161
162static void
163vl_api_policer_dump_t_handler (vl_api_policer_dump_t * mp)
164{
Florin Coras6c4dae22018-01-09 06:39:23 -0800165 vl_api_registration_t *reg;
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100166 vnet_policer_main_t *pm = &vnet_policer_main;
167 hash_pair_t *hp;
168 uword *p;
169 u32 pool_index;
170 u8 *match_name = 0;
171 u8 *name;
Brian Russellc5299ff2021-02-09 10:16:58 +0000172 qos_pol_cfg_params_st *config;
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100173 policer_read_response_type_st *templ;
174
Florin Coras6c4dae22018-01-09 06:39:23 -0800175 reg = vl_api_client_index_to_registration (mp->client_index);
176 if (!reg)
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100177 return;
178
179 if (mp->match_name_valid)
180 {
181 match_name = format (0, "%s%c", mp->match_name, 0);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200182 vec_terminate_c_string (match_name);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100183 }
184
185 if (mp->match_name_valid)
186 {
187 p = hash_get_mem (pm->policer_config_by_name, match_name);
188 if (p)
189 {
190 pool_index = p[0];
191 config = pool_elt_at_index (pm->configs, pool_index);
192 templ = pool_elt_at_index (pm->policer_templates, pool_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800193 send_policer_details (match_name, config, templ, reg, mp->context);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100194 }
195 }
196 else
197 {
198 /* *INDENT-OFF* */
199 hash_foreach_pair (hp, pm->policer_config_by_name,
200 ({
201 name = (u8 *) hp->key;
202 pool_index = hp->value[0];
203 config = pool_elt_at_index (pm->configs, pool_index);
204 templ = pool_elt_at_index (pm->policer_templates, pool_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800205 send_policer_details(name, config, templ, reg, mp->context);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100206 }));
207 /* *INDENT-ON* */
208 }
209}
210
211/*
212 * policer_api_hookup
213 * Add vpe's API message handlers to the table.
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700214 * vlib has already mapped shared memory and
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100215 * added the client registration handlers.
216 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
217 */
218#define vl_msg_name_crc_list
219#include <vnet/vnet_all_api_h.h>
220#undef vl_msg_name_crc_list
221
222static void
223setup_message_id_table (api_main_t * am)
224{
225#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
226 foreach_vl_msg_name_crc_policer;
227#undef _
228}
229
230static clib_error_t *
231policer_api_hookup (vlib_main_t * vm)
232{
Dave Barach39d69112019-11-27 11:42:13 -0500233 api_main_t *am = vlibapi_get_main ();
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100234
235#define _(N,n) \
236 vl_msg_api_set_handlers(VL_API_##N, #n, \
237 vl_api_##n##_t_handler, \
238 vl_noop_handler, \
239 vl_api_##n##_t_endian, \
240 vl_api_##n##_t_print, \
241 sizeof(vl_api_##n##_t), 1);
242 foreach_vpe_api_msg;
243#undef _
244 /*
245 * Set up the (msg_name, crc, message-id) table
246 */
247 setup_message_id_table (am);
248
249 return 0;
250}
251
252VLIB_API_INIT_FUNCTION (policer_api_hookup);
253
254/*
255 * fd.io coding-style-patch-verification: ON
256 *
257 * Local Variables:
258 * eval: (c-set-style "gnu")
259 * End:
260 */