blob: b543a3c2e0ecb89d38390873fd8eb435063155d6 [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
45#define foreach_vpe_api_msg \
46_(POLICER_ADD_DEL, policer_add_del) \
47_(POLICER_DUMP, policer_dump)
48
49static void
50vl_api_policer_add_del_t_handler (vl_api_policer_add_del_t * mp)
51{
52 vlib_main_t *vm = vlib_get_main ();
53 vl_api_policer_add_del_reply_t *rmp;
54 int rv = 0;
55 u8 *name = NULL;
56 sse2_qos_pol_cfg_params_st cfg;
57 clib_error_t *error;
58 u32 policer_index;
59
60 name = format (0, "%s", mp->name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +020061 vec_terminate_c_string (name);
Pavel Kotucekd9aad292017-01-25 08:45:38 +010062
Dave Barachb7b92992018-10-17 10:38:51 -040063 clib_memset (&cfg, 0, sizeof (cfg));
Pavel Kotucekd9aad292017-01-25 08:45:38 +010064 cfg.rfc = mp->type;
65 cfg.rnd_type = mp->round_type;
66 cfg.rate_type = mp->rate_type;
Neale Rannsd91c1db2017-07-31 02:30:50 -070067 cfg.rb.kbps.cir_kbps = ntohl (mp->cir);
68 cfg.rb.kbps.eir_kbps = ntohl (mp->eir);
69 cfg.rb.kbps.cb_bytes = clib_net_to_host_u64 (mp->cb);
70 cfg.rb.kbps.eb_bytes = clib_net_to_host_u64 (mp->eb);
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010071 cfg.conform_action.action_type =
72 (sse2_qos_action_type_en) mp->conform_action.type;
73 cfg.conform_action.dscp = mp->conform_action.dscp;
74 cfg.exceed_action.action_type =
75 (sse2_qos_action_type_en) mp->exceed_action.type;
76 cfg.exceed_action.dscp = mp->exceed_action.dscp;
77 cfg.violate_action.action_type =
78 (sse2_qos_action_type_en) mp->violate_action.type;
79 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
100send_policer_details (u8 * name,
101 sse2_qos_pol_cfg_params_st * config,
102 policer_read_response_type_st * templ,
Florin Coras6c4dae22018-01-09 06:39:23 -0800103 vl_api_registration_t * reg, u32 context)
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100104{
105 vl_api_policer_details_t *mp;
106
107 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400108 clib_memset (mp, 0, sizeof (*mp));
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100109 mp->_vl_msg_id = ntohs (VL_API_POLICER_DETAILS);
110 mp->context = context;
111 mp->cir = htonl (config->rb.kbps.cir_kbps);
112 mp->eir = htonl (config->rb.kbps.eir_kbps);
Marek Gradzki59ed4902017-03-21 11:51:54 +0100113 mp->cb = clib_host_to_net_u64 (config->rb.kbps.cb_bytes);
114 mp->eb = clib_host_to_net_u64 (config->rb.kbps.eb_bytes);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100115 mp->rate_type = config->rate_type;
116 mp->round_type = config->rnd_type;
117 mp->type = config->rfc;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100118 mp->conform_action.type =
119 (vl_api_sse2_qos_action_type_t) config->conform_action.action_type;
120 mp->conform_action.dscp = config->conform_action.dscp;
121 mp->exceed_action.type =
122 (vl_api_sse2_qos_action_type_t) config->exceed_action.action_type;
123 mp->exceed_action.dscp = config->exceed_action.dscp;
124 mp->violate_action.type =
125 (vl_api_sse2_qos_action_type_t) config->violate_action.action_type;
126 mp->violate_action.dscp = config->violate_action.dscp;
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100127 mp->single_rate = templ->single_rate ? 1 : 0;
128 mp->color_aware = templ->color_aware ? 1 : 0;
129 mp->scale = htonl (templ->scale);
130 mp->cir_tokens_per_period = htonl (templ->cir_tokens_per_period);
131 mp->pir_tokens_per_period = htonl (templ->pir_tokens_per_period);
132 mp->current_limit = htonl (templ->current_limit);
133 mp->current_bucket = htonl (templ->current_bucket);
134 mp->extended_limit = htonl (templ->extended_limit);
135 mp->extended_bucket = htonl (templ->extended_bucket);
136 mp->last_update_time = clib_host_to_net_u64 (templ->last_update_time);
137
138 strncpy ((char *) mp->name, (char *) name, ARRAY_LEN (mp->name) - 1);
139
Florin Coras6c4dae22018-01-09 06:39:23 -0800140 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100141}
142
143static void
144vl_api_policer_dump_t_handler (vl_api_policer_dump_t * mp)
145{
Florin Coras6c4dae22018-01-09 06:39:23 -0800146 vl_api_registration_t *reg;
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100147 vnet_policer_main_t *pm = &vnet_policer_main;
148 hash_pair_t *hp;
149 uword *p;
150 u32 pool_index;
151 u8 *match_name = 0;
152 u8 *name;
153 sse2_qos_pol_cfg_params_st *config;
154 policer_read_response_type_st *templ;
155
Florin Coras6c4dae22018-01-09 06:39:23 -0800156 reg = vl_api_client_index_to_registration (mp->client_index);
157 if (!reg)
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100158 return;
159
160 if (mp->match_name_valid)
161 {
162 match_name = format (0, "%s%c", mp->match_name, 0);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200163 vec_terminate_c_string (match_name);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100164 }
165
166 if (mp->match_name_valid)
167 {
168 p = hash_get_mem (pm->policer_config_by_name, match_name);
169 if (p)
170 {
171 pool_index = p[0];
172 config = pool_elt_at_index (pm->configs, pool_index);
173 templ = pool_elt_at_index (pm->policer_templates, pool_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800174 send_policer_details (match_name, config, templ, reg, mp->context);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100175 }
176 }
177 else
178 {
179 /* *INDENT-OFF* */
180 hash_foreach_pair (hp, pm->policer_config_by_name,
181 ({
182 name = (u8 *) hp->key;
183 pool_index = hp->value[0];
184 config = pool_elt_at_index (pm->configs, pool_index);
185 templ = pool_elt_at_index (pm->policer_templates, pool_index);
Florin Coras6c4dae22018-01-09 06:39:23 -0800186 send_policer_details(name, config, templ, reg, mp->context);
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100187 }));
188 /* *INDENT-ON* */
189 }
190}
191
192/*
193 * policer_api_hookup
194 * Add vpe's API message handlers to the table.
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700195 * vlib has already mapped shared memory and
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100196 * added the client registration handlers.
197 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
198 */
199#define vl_msg_name_crc_list
200#include <vnet/vnet_all_api_h.h>
201#undef vl_msg_name_crc_list
202
203static void
204setup_message_id_table (api_main_t * am)
205{
206#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
207 foreach_vl_msg_name_crc_policer;
208#undef _
209}
210
211static clib_error_t *
212policer_api_hookup (vlib_main_t * vm)
213{
Dave Barach39d69112019-11-27 11:42:13 -0500214 api_main_t *am = vlibapi_get_main ();
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100215
216#define _(N,n) \
217 vl_msg_api_set_handlers(VL_API_##N, #n, \
218 vl_api_##n##_t_handler, \
219 vl_noop_handler, \
220 vl_api_##n##_t_endian, \
221 vl_api_##n##_t_print, \
222 sizeof(vl_api_##n##_t), 1);
223 foreach_vpe_api_msg;
224#undef _
225 /*
226 * Set up the (msg_name, crc, message-id) table
227 */
228 setup_message_id_table (am);
229
230 return 0;
231}
232
233VLIB_API_INIT_FUNCTION (policer_api_hookup);
234
235/*
236 * fd.io coding-style-patch-verification: ON
237 *
238 * Local Variables:
239 * eval: (c-set-style "gnu")
240 * End:
241 */