standard.thrift
10.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
namespace java org.p4.bmv2.thrift
/* Copyright 2013-present Barefoot Networks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Antonin Bas (antonin@barefootnetworks.com)
*
*/
namespace cpp bm_runtime.standard
namespace py bm_runtime.standard
typedef i64 BmEntryHandle
typedef list<binary> BmActionData
typedef i32 BmMemberHandle
typedef i32 BmGroupHandle
typedef i32 BmLearningListId
typedef i64 BmLearningBufferId
typedef i32 BmLearningSampleId
enum BmMatchParamType {
EXACT = 0,
LPM = 1,
TERNARY = 2,
VALID = 3
}
struct BmMatchParamExact {
1:binary key
}
struct BmMatchParamLPM {
1:binary key,
2:i32 prefix_length
}
struct BmMatchParamTernary {
1:binary key,
2:binary mask
}
struct BmMatchParamValid {
1:bool key
}
# Thrift union sucks in C++, the following is much better
struct BmMatchParam {
1:BmMatchParamType type,
2:optional BmMatchParamExact exact,
3:optional BmMatchParamLPM lpm,
4:optional BmMatchParamTernary ternary,
5:optional BmMatchParamValid valid
}
typedef list<BmMatchParam> BmMatchParams
struct BmAddEntryOptions {
1:optional i32 priority
}
struct BmCounterValue {
1:i64 bytes;
2:i64 packets;
}
struct BmMeterRateConfig {
1:double units_per_micros;
2:i32 burst_size;
}
enum TableOperationErrorCode {
TABLE_FULL = 1,
INVALID_HANDLE = 2,
EXPIRED_HANDLE = 3,
COUNTERS_DISABLED = 4,
METERS_DISABLED = 5,
AGEING_DISABLED = 6,
INVALID_TABLE_NAME = 7,
INVALID_ACTION_NAME = 8,
WRONG_TABLE_TYPE = 9,
INVALID_MBR_HANDLE = 10,
MBR_STILL_USED = 11,
MBR_ALREADY_IN_GRP = 12,
MBR_NOT_IN_GRP = 13,
INVALID_GRP_HANDLE = 14,
GRP_STILL_USED = 15,
EMPTY_GRP = 16,
DUPLICATE_ENTRY = 17,
BAD_MATCH_KEY = 18,
INVALID_METER_OPERATION = 19,
ERROR = 20,
}
exception InvalidTableOperation {
1:TableOperationErrorCode code
}
enum CounterOperationErrorCode {
INVALID_COUNTER_NAME = 1,
INVALID_INDEX = 2,
ERROR = 3,
}
exception InvalidCounterOperation {
1:CounterOperationErrorCode code
}
enum SwapOperationErrorCode {
CONFIG_SWAP_DISABLED = 1,
ONGOING_SWAP = 2,
NO_ONGOING_SWAP = 3
}
exception InvalidSwapOperation {
1:SwapOperationErrorCode code
}
enum MeterOperationErrorCode {
INVALID_INDEX = 1,
BAD_RATES_LIST = 2,
INVALID_INFO_RATE_VALUE = 3,
INVALID_BURST_SIZE_VALUE = 4,
ERROR = 5
}
exception InvalidMeterOperation {
1:MeterOperationErrorCode code
}
typedef i64 BmRegisterValue
enum RegisterOperationErrorCode {
INVALID_INDEX = 1,
ERROR = 2
}
exception InvalidRegisterOperation {
1:RegisterOperationErrorCode code
}
enum LearnOperationErrorCode {
INVALID_LIST_ID = 1,
ERROR = 2
}
exception InvalidLearnOperation {
1:LearnOperationErrorCode code
}
// TODO
enum DevMgrErrorCode {
ERROR = 1
}
exception InvalidDevMgrOperation {
1:DevMgrErrorCode code
}
struct DevMgrPortInfo {
1:i32 port_num;
2:string iface_name;
3:bool is_up;
4:map<string, string> extra;
}
service Standard {
// table operations
BmEntryHandle bm_mt_add_entry(
1:i32 cxt_id,
2:string table_name,
3:BmMatchParams match_key,
4:string action_name,
5:BmActionData action_data,
6:BmAddEntryOptions options
) throws (1:InvalidTableOperation ouch),
void bm_mt_set_default_action(
1:i32 cxt_id,
2:string table_name,
3:string action_name,
4:BmActionData action_data
) throws (1:InvalidTableOperation ouch),
void bm_mt_delete_entry(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_modify_entry(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle,
4:string action_name,
5:BmActionData action_data
) throws (1:InvalidTableOperation ouch),
void bm_mt_set_entry_ttl(
1:i32 cxt_id,
2:string table_name
3:BmEntryHandle entry_handle,
4:i32 timeout_ms
) throws (1:InvalidTableOperation ouch),
// indirect tables
BmMemberHandle bm_mt_indirect_add_member(
1:i32 cxt_id,
2:string table_name,
3:string action_name,
4:BmActionData action_data
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_delete_member(
1:i32 cxt_id,
2:string table_name,
3:BmMemberHandle mbr_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_modify_member(
1:i32 cxt_id,
2:string table_name,
3:BmMemberHandle mbr_handle,
4:string action_name,
5:BmActionData action_data
) throws (1:InvalidTableOperation ouch),
BmEntryHandle bm_mt_indirect_add_entry(
1:i32 cxt_id,
2:string table_name,
3:BmMatchParams match_key,
4:BmMemberHandle mbr_handle,
5:BmAddEntryOptions options
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_modify_entry(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle,
4:BmMemberHandle mbr_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_delete_entry(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_set_entry_ttl(
1:i32 cxt_id,
2:string table_name
3:BmEntryHandle entry_handle,
4:i32 timeout_ms
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_set_default_member(
1:i32 cxt_id,
2:string table_name,
3:BmMemberHandle mbr_handle
) throws (1:InvalidTableOperation ouch),
// indirect tables with selector
BmGroupHandle bm_mt_indirect_ws_create_group(
1:i32 cxt_id,
2:string table_name
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_ws_delete_group(
1:i32 cxt_id,
2:string table_name,
3:BmGroupHandle grp_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_ws_add_member_to_group(
1:i32 cxt_id,
2:string table_name,
3:BmMemberHandle mbr_handle,
4:BmGroupHandle grp_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_ws_remove_member_from_group(
1:i32 cxt_id,
2:string table_name,
3:BmMemberHandle mbr_handle,
4:BmGroupHandle grp_handle
) throws (1:InvalidTableOperation ouch),
BmEntryHandle bm_mt_indirect_ws_add_entry(
1:i32 cxt_id,
2:string table_name,
3:BmMatchParams match_key,
4:BmGroupHandle grp_handle
5:BmAddEntryOptions options
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_ws_modify_entry(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle,
4:BmGroupHandle grp_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_indirect_ws_set_default_group(
1:i32 cxt_id,
2:string table_name,
3:BmGroupHandle grp_handle
) throws (1:InvalidTableOperation ouch),
BmCounterValue bm_mt_read_counter(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle
) throws (1:InvalidTableOperation ouch),
void bm_mt_reset_counters(
1:i32 cxt_id,
2:string table_name
) throws (1:InvalidTableOperation ouch),
void bm_mt_write_counter(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle,
4:BmCounterValue value
) throws (1:InvalidTableOperation ouch),
void bm_mt_set_meter_rates(
1:i32 cxt_id,
2:string table_name,
3:BmEntryHandle entry_handle,
4:list<BmMeterRateConfig> rates
) throws (1:InvalidTableOperation ouch),
// indirect counters
BmCounterValue bm_counter_read(
1:i32 cxt_id,
2:string counter_name,
3:i32 index
) throws (1:InvalidCounterOperation ouch),
void bm_counter_reset_all(
1:i32 cxt_id,
2:string counter_name
) throws (1:InvalidCounterOperation ouch),
void bm_counter_write(
1:i32 cxt_id,
2:string counter_name,
3:i32 index,
4:BmCounterValue value
) throws (1:InvalidCounterOperation ouch),
// learning acks
void bm_learning_ack(
1:i32 cxt_id,
2:BmLearningListId list_id,
3:BmLearningBufferId buffer_id,
4:list<BmLearningSampleId> sample_ids
) throws (1:InvalidLearnOperation ouch),
void bm_learning_ack_buffer(
1:i32 cxt_id,
2:BmLearningListId list_id,
3:BmLearningBufferId buffer_id
) throws (1:InvalidLearnOperation ouch),
void bm_learning_set_timeout(
1:i32 cxt_id,
2:BmLearningListId list_id,
3:i32 timeout_ms
) throws (1:InvalidLearnOperation ouch),
void bm_learning_set_buffer_size(
1:i32 cxt_id,
2:BmLearningListId list_id,
3:i32 nb_samples
) throws (1:InvalidLearnOperation ouch),
// swap configs
void bm_load_new_config(
1:string config_str
) throws (1:InvalidSwapOperation ouch),
void bm_swap_configs() throws (1:InvalidSwapOperation ouch),
// meters
void bm_meter_array_set_rates(
1:i32 cxt_id,
2:string meter_array_name,
3:list<BmMeterRateConfig> rates
) throws (1:InvalidMeterOperation ouch)
void bm_meter_set_rates(
1:i32 cxt_id,
2:string meter_array_name,
3:i32 index,
4:list<BmMeterRateConfig> rates
) throws (1:InvalidMeterOperation ouch)
// registers
BmRegisterValue bm_register_read(
1:i32 cxt_id,
2:string register_array_name,
3:i32 idx
) throws (1:InvalidRegisterOperation ouch)
void bm_register_write(
1:i32 cxt_id,
2:string register_array_name,
3:i32 index,
4:BmRegisterValue value
) throws (1:InvalidRegisterOperation ouch)
void bm_register_write_range(
1:i32 cxt_id,
2:string register_array_name,
3:i32 start_index,
4:i32 end_index,
5:BmRegisterValue value
) throws (1:InvalidRegisterOperation ouch)
void bm_register_reset(
1:i32 cxt_id,
2:string register_array_name
) throws (1:InvalidRegisterOperation ouch)
// device manager
void bm_dev_mgr_add_port(
1:string iface_name,
2:i32 port_num,
3:string pcap_path // optional
) throws (1:InvalidDevMgrOperation ouch)
void bm_dev_mgr_remove_port(
1:i32 port_num
) throws (1:InvalidDevMgrOperation ouch)
list<DevMgrPortInfo> bm_dev_mgr_show_ports(
) throws (1:InvalidDevMgrOperation ouch)
// debug functions
string bm_dump_table(
1:i32 cxt_id,
2:string table_name
)
void bm_reset_state()
string bm_get_config()
string bm_get_config_md5()
string bm_serialize_state()
}