blob: 7ce7fc79d47b40d528f111a50265587ea4ed5edd [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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#ifndef __included_policer_h__
16#define __included_policer_h__
17
Brian Russell48e26362021-02-10 13:53:42 +000018#include <stdbool.h>
19
Ed Warnickecb9cada2015-12-08 15:45:58 -070020#include <vlib/vlib.h>
21#include <vnet/vnet.h>
22
23#include <vnet/policer/xlate.h>
24#include <vnet/policer/police.h>
25
Damjan Marion3891cd82016-10-27 10:27:00 +020026typedef struct
27{
Ed Warnickecb9cada2015-12-08 15:45:58 -070028 /* policer pool, aligned */
Brian Russell54be0cc2021-02-15 11:49:42 +000029 policer_t *policers;
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
31 /* config + template h/w policer instance parallel pools */
Brian Russellc5299ff2021-02-09 10:16:58 +000032 qos_pol_cfg_params_st *configs;
Brian Russell54be0cc2021-02-15 11:49:42 +000033 policer_t *policer_templates;
Damjan Marion3891cd82016-10-27 10:27:00 +020034
Maxime Peim2d1a62b2023-01-06 11:57:38 +000035 /* Config by policer name hash */
Damjan Marion3891cd82016-10-27 10:27:00 +020036 uword *policer_config_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -070037
Matus Fabian70e6a8d2016-06-20 08:10:42 -070038 /* Policer by name hash */
Damjan Marion3891cd82016-10-27 10:27:00 +020039 uword *policer_index_by_name;
Matus Fabian70e6a8d2016-06-20 08:10:42 -070040
Ed Warnickecb9cada2015-12-08 15:45:58 -070041 /* Policer by sw_if_index vector */
Stanislav Zaikine5a3ae02022-04-05 19:23:12 +020042 u32 *policer_index_by_sw_if_index[VLIB_N_RX_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
44 /* convenience */
Damjan Marion3891cd82016-10-27 10:27:00 +020045 vlib_main_t *vlib_main;
46 vnet_main_t *vnet_main;
Brian Russellbbccdc52021-02-10 18:34:48 +000047
48 vlib_log_class_t log_class;
Brian Russell1aa99122021-02-18 11:00:38 +000049
50 /* frame queue for thread handoff */
Stanislav Zaikine5a3ae02022-04-05 19:23:12 +020051 u32 fq_index[VLIB_N_RX_TX];
Filip Tehlar102e8a52021-06-22 08:37:26 +000052
53 u16 msg_id_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054} vnet_policer_main_t;
55
Dave Wallace71612d62017-10-24 01:32:41 -040056extern vnet_policer_main_t vnet_policer_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057
Brian Russella71ed782021-01-27 11:34:33 +000058extern vlib_combined_counter_main_t policer_counters[];
59
Brian Russell1aa99122021-02-18 11:00:38 +000060extern vlib_node_registration_t policer_input_node;
Stanislav Zaikine5a3ae02022-04-05 19:23:12 +020061extern vlib_node_registration_t policer_output_node;
Brian Russell1aa99122021-02-18 11:00:38 +000062
Damjan Marion3891cd82016-10-27 10:27:00 +020063typedef enum
64{
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 VNET_POLICER_NEXT_DROP,
Brian Russell1aa99122021-02-18 11:00:38 +000066 VNET_POLICER_NEXT_HANDOFF,
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 VNET_POLICER_N_NEXT,
68} vnet_policer_next_t;
69
Damjan Marion3891cd82016-10-27 10:27:00 +020070u8 *format_policer_instance (u8 * s, va_list * va);
Maxime Peim2d1a62b2023-01-06 11:57:38 +000071int policer_add (vlib_main_t *vm, const u8 *name,
72 const qos_pol_cfg_params_st *cfg, u32 *policer_index);
73
74int policer_update (vlib_main_t *vm, u32 policer_index,
75 const qos_pol_cfg_params_st *cfg);
76int policer_del (vlib_main_t *vm, u32 policer_index);
77int policer_reset (vlib_main_t *vm, u32 policer_index);
78int policer_bind_worker (u32 policer_index, u32 worker, bool bind);
79int policer_input (u32 policer_index, u32 sw_if_index, vlib_dir_t dir,
80 bool apply);
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
82#endif /* __included_policer_h__ */
Damjan Marion3891cd82016-10-27 10:27:00 +020083
84/*
85 * fd.io coding-style-patch-verification: ON
86 *
87 * Local Variables:
88 * eval: (c-set-style "gnu")
89 * End:
90 */