vlib: improvement to automatic core pinning
[vpp.git] / src / plugins / abf / abf.api
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 import "vnet/interface_types.api";
26
27 /** \brief Get the plugin version
28     @param client_index - opaque cookie to identify the sender
29     @param context - sender context, to match reply w/ request
30 */
31 define abf_plugin_get_version
32 {
33   option status="in_progress";
34   u32 client_index;
35   u32 context;
36 };
37
38 /** \brief Reply to get the plugin version
39     @param context - returned sender context, to match reply w/ request
40     @param major - Incremented every time a known breaking behavior change is introduced
41     @param minor - Incremented with small changes, may be used to avoid buggy versions
42 */
43 define abf_plugin_get_version_reply
44 {
45   option status="in_progress";
46   u32 context;
47   u32 major;
48   u32 minor;
49 };
50
51 /** \brief A description of an ABF policy
52     @param policy_id User chosen Identifier for the policy
53     @param acl_index The ACL that the policy will match against
54     @param n_paths Number of paths, 1..255
55     @param paths The set of forwarding paths that are being added or removed.
56  */
57 typedef abf_policy
58 {
59   u32 policy_id;
60   u32 acl_index;
61   u8 n_paths;
62   vl_api_fib_path_t paths[n_paths];
63 };
64
65 /** \brief A description of an ABF policy
66     @param is_add Is this the addition or removal of paths from the policy
67            If the policy does not exist it is created. If the last path
68            Is being removed, the policy is deleted
69     @param policy The policy
70  */
71 autoreply define abf_policy_add_del
72 {
73   option status="in_progress";
74   u32 client_index;
75   u32 context;
76   bool is_add;
77   vl_api_abf_policy_t policy;
78 };
79
80 /** \brief Policy description returned in the dump
81  */
82 define abf_policy_details
83 {
84   option status="in_progress";
85   u32 context;
86   vl_api_abf_policy_t policy;
87 };
88
89 /** \brief Dump all ABF policies
90  */
91 define abf_policy_dump
92 {
93   option status="in_progress";
94   u32 client_index;
95   u32 context;
96 };
97
98 /** \brief A description of a policy attachment to an interface
99     @param The policy ID to attach
100     @param sw_if_index The interface to attach to
101     @param priority The priority of the attachment, w.r.t. to other attachments
102               on this interface. lower value is 'better'
103     @param is_ipv6 Does this attachment apply to IPv6 packets (or IPv4)
104 */
105 typedef abf_itf_attach
106 {
107   u32 policy_id;
108   vl_api_interface_index_t sw_if_index;
109   u32 priority;
110   bool is_ipv6;
111 };
112
113 /** \brief Add or delete a policy attachment to an interface
114  */
115 autoreply define abf_itf_attach_add_del
116 {
117   option status="in_progress";
118   u32 client_index;
119   u32 context;
120   bool is_add;
121   vl_api_abf_itf_attach_t attach;
122 };
123
124 /** \brief Attachment details from a dump
125  */
126 define abf_itf_attach_details
127 {
128   option status="in_progress";
129   u32 context;
130   vl_api_abf_itf_attach_t attach;
131 };
132
133 /** \brief Dump all the policy attachments
134  */
135 define abf_itf_attach_dump
136 {
137   option status="in_progress";
138   u32 client_index;
139   u32 context;
140 };
141