FD.io VPP  v19.08.1-401-g8e4ed521a
Vector Packet Processing
abf.api
Go to the documentation of this file.
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2016 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /** \file
18  This file defines the vpp control-plane API messages
19  used to control the ABF plugin
20 */
21 
22 option version = "1.0.0";
23 import "vnet/ip/ip_types.api";
24 import "vnet/fib/fib_types.api";
25 
26 /** \brief Get the plugin version
27  @param client_index - opaque cookie to identify the sender
28  @param context - sender context, to match reply w/ request
29 */
30 define abf_plugin_get_version
31 {
34 };
35 
36 /** \brief Reply to get the plugin version
37  @param context - returned sender context, to match reply w/ request
38  @param major - Incremented every time a known breaking behavior change is introduced
39  @param minor - Incremented with small changes, may be used to avoid buggy versions
40 */
41 define abf_plugin_get_version_reply
42 {
46 };
47 
48 /** \brief A description of an ABF policy
49  @param policy_id User chosen Identifier for the policy
50  @param acl_index The ACL that the policy will match against
51  @param n_paths Number of paths
52  @param paths The set of forwarding paths that are being added or removed.
53  */
54 typeonly define abf_policy
55 {
59  vl_api_fib_path_t paths[n_paths];
60 };
61 
62 /** \brief A description of an ABF policy
63  @param is_add Is this the addition or removal of paths from the policy
64  If the policy does not exist it is created. If the last path
65  Is being removed, the policy is deleted
66  @param policy The policy
67  */
68 autoreply define abf_policy_add_del
69 {
74 };
75 
76 /** \brief Policy description returned in the dump
77  */
78 define abf_policy_details
79 {
82 };
83 
84 /** \brief Dump all ABF policies
85  */
86 define abf_policy_dump
87 {
90 };
91 
92 /** \brief A description of a policy attachment to an interface
93  @param The policy ID to attach
94  @param sw_if_index The interface to attach to
95  @param priority The priority of the attachment, w.r.t. to other attachments
96  on this interface. lower value is 'better'
97  @param is_ipv6 Does this attachment apply to IPv6 packets (or IPv4)
98 */
99 typeonly define abf_itf_attach
100 {
105 };
106 
107 /** \brief Add or delete a policy attachment to an interface
108  */
109 autoreply define abf_itf_attach_add_del
110 {
115 };
116 
117 /** \brief Attachment details from a dump
118  */
119 define abf_itf_attach_details
120 {
123 };
124 
125 /** \brief Dump all the policy attachments
126  */
127 define abf_itf_attach_dump
128 {
131 };
132 
vl_api_abf_policy_t policy
Definition: abf.api:81
option version
Definition: abf.api:22
unsigned char u8
Definition: types.h:56
vl_api_abf_itf_attach_t attach
Definition: abf.api:122
unsigned int u32
Definition: types.h:88
u8 n_paths
Definition: ip.api:457
vl_api_abf_policy_t policy
Definition: abf.api:73
A description of an ABF policy.
Definition: abf.api:54
int abf_itf_attach(fib_protocol_t fproto, u32 policy_id, u32 priority, u32 sw_if_index)
vl_api_mfib_path_t paths[n_paths]
Definition: ip.api:458
A description of a policy attachment to an interface.
Definition: abf.api:99
vl_api_abf_itf_attach_t attach
Definition: abf.api:114