blob: a664ab0be76b6463e8935ea36a418293a17035f0 [file] [log] [blame]
Pavel Kotucekd9aad292017-01-25 08:45:38 +01001/*
Jakub Grajciarcd01fb42020-03-02 13:16:53 +01002 * Copyright (c) 2015-2020 Cisco and/or its affiliates.
Pavel Kotucekd9aad292017-01-25 08:45:38 +01003 * 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
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010016option version = "2.0.0";
17
Brian Russellb0468302021-02-17 15:51:45 +000018import "vnet/interface_types.api";
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010019import "vnet/policer/policer_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040020
Brian Russell48e26362021-02-10 13:53:42 +000021/** \brief policer bind: Associate/disassociate a policer with a worker thread.
22 @param client_index - opaque cookie to identify the sender
23 @param context - sender context, to match reply w/ request
24 @param name - policer name to bind
25 @param worker_index - the worker thread to bind to
26 @param bind_enable - Associate/disassociate
27*/
28autoreply define policer_bind
29{
30 u32 client_index;
31 u32 context;
32
33 string name[64];
34 u32 worker_index;
35 bool bind_enable;
36};
37
Brian Russellb0468302021-02-17 15:51:45 +000038/** \brief policer input: Apply policer as an input feature.
39 @param client_index - opaque cookie to identify the sender
40 @param context - sender context, to match reply w/ request
41 @param name - policer name
42 @param sw_if_index - interface to apply the policer
43 @param apply - Apply/remove
44*/
45autoreply define policer_input
46{
47 u32 client_index;
48 u32 context;
49
50 string name[64];
51 vl_api_interface_index_t sw_if_index;
52 bool apply;
53};
54
Pavel Kotucekd9aad292017-01-25 08:45:38 +010055/** \brief Add/del policer
56 @param client_index - opaque cookie to identify the sender
57 @param context - sender context, to match reply w/ request
58 @param is_add - add policer if non-zero, else delete
59 @param name - policer name
60 @param cir - CIR
61 @param eir - EIR
62 @param cb - Committed Burst
63 @param eb - Excess or Peak Burst
64 @param rate_type - rate type
65 @param round_type - rounding type
66 @param type - policer algorithm
67 @param color_aware - 0=color-blind, 1=color-aware
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010068 @param conform_action - conform action
69 @param exceed_action - exceed action type
70 @param violate_action - violate action type
Pavel Kotucekd9aad292017-01-25 08:45:38 +010071*/
72define policer_add_del
73{
74 u32 client_index;
75 u32 context;
76
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010077 bool is_add;
78 string name[64];
Pavel Kotucekd9aad292017-01-25 08:45:38 +010079 u32 cir;
80 u32 eir;
81 u64 cb;
82 u64 eb;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +010083 vl_api_sse2_qos_rate_type_t rate_type;
84 vl_api_sse2_qos_round_type_t round_type;
85 vl_api_sse2_qos_policer_type_t type;
86 bool color_aware;
87 vl_api_sse2_qos_action_t conform_action;
88 vl_api_sse2_qos_action_t exceed_action;
89 vl_api_sse2_qos_action_t violate_action;
Pavel Kotucekd9aad292017-01-25 08:45:38 +010090};
91
92/** \brief Add/del policer response
93 @param context - sender context, to match reply w/ request
94 @param retval - return value for request
95 @param policer_index - for add, returned index of the new policer
96*/
97define policer_add_del_reply
98{
99 u32 context;
100 i32 retval;
101 u32 policer_index;
102};
103
104/** \brief Get list of policers
105 @param client_index - opaque cookie to identify the sender
106 @param context - sender context, to match reply w/ request
107 @param match_name_valid - if 0 request all policers otherwise use match_name
108 @param match_name - policer name
109*/
110define policer_dump
111{
112 u32 client_index;
113 u32 context;
114
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100115 bool match_name_valid;
116 string match_name[64];
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100117};
118
119/** \brief Policer operational state response.
120 @param context - sender context, to match reply w/ request
121 @param name - policer name
122 @param cir - CIR
123 @param eir - EIR
124 @param cb - Committed Burst
125 @param eb - Excess or Peak Burst
126 @param rate_type - rate type
127 @param round_type - rounding type
128 @param type - policer algorithm
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100129 @param conform_action - conform action
130 @param exceed_action - exceed action
131 @param violate_action - violate action
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100132 @param single_rate - 1 = single rate policer, 0 = two rate policer
133 @param color_aware - for hierarchical policing
134 @param scale - power-of-2 shift amount for lower rates
135 @param cir_tokens_per_period - number of tokens for each period
136 @param pir_tokens_per_period - number of tokens for each period for 2-rate policer
137 @param current_limit - current limit
138 @param current_bucket - current bucket
139 @param extended_limit - extended limit
140 @param extended_bucket - extended bucket
141 @param last_update_time - last update time
142*/
143define policer_details
144{
145 u32 context;
146
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100147 string name[64];
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100148 u32 cir;
149 u32 eir;
150 u64 cb;
151 u64 eb;
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100152 vl_api_sse2_qos_rate_type_t rate_type;
153 vl_api_sse2_qos_round_type_t round_type;
154 vl_api_sse2_qos_policer_type_t type;
155 vl_api_sse2_qos_action_t conform_action;
156 vl_api_sse2_qos_action_t exceed_action;
157 vl_api_sse2_qos_action_t violate_action;
158 bool single_rate;
159 bool color_aware;
Pavel Kotucekd9aad292017-01-25 08:45:38 +0100160 u32 scale;
161 u32 cir_tokens_per_period;
162 u32 pir_tokens_per_period;
163 u32 current_limit;
164 u32 current_bucket;
165 u32 extended_limit;
166 u32 extended_bucket;
167 u64 last_update_time;
168};
169
170/*
171 * Local Variables:
172 * eval: (c-set-style "gnu")
173 * End:
174 */