QoS recording and marking
[vpp.git] / src / vnet / qos / qos_egress_map.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 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
18 /**
19  * A QOS egress map translates from the COS bits stored in the packet's
20  * meta-data into a per-protocol COS value
21  */
22
23 #ifndef __QOS_EGRESS_MAP_H__
24 #define __QOS_EGRESS_MAP_H__
25
26 #include <vnet/qos/qos_types.h>
27 #include <vnet/dpo/dpo.h>
28
29 /**
30  * An attempt at type safety
31  */
32 typedef u32 qos_egress_map_id_t;
33
34 /**
35  * For a given output source a table maps each value of every input sorce.
36  */
37 typedef struct qos_egress_map_t_
38 {
39     /**
40      * The array of output mapped values;
41      *   output = eq_qos[input-source][input-value]
42      */
43   qos_bits_t qem_output[QOS_N_SOURCES][256];
44 } qos_egress_map_t;
45
46 extern u8 *format_qos_egress_map (u8 * s, va_list * args);
47
48 /**
49  * Add a qos-egress map to an interface. If sw_if_index = ~0
50  * then the configuration is for the 'default' table.
51  * If the table is ~0, this is a removal.
52  * the egress mapping is applied. For example, is output is MPLS then
53  * the QoS markings will occur for MPLS pakcets.
54  */
55 extern void qos_egress_map_update (qos_egress_map_id_t tid,
56                                    qos_source_t input_source,
57                                    qos_bits_t * values);
58 extern void qos_egress_map_delete (qos_egress_map_id_t tid);
59
60 /**
61  * Get the VPP QoS map index from the user's map-ID
62  */
63 extern index_t qos_egress_map_find (qos_egress_map_id_t tid);
64
65 /**
66  * Data-plane functions
67  */
68
69 /**
70  * Pool from which to allocate map
71  */
72 extern qos_egress_map_t *qem_pool;
73
74 #endif
75
76 /*
77  * fd.io coding-style-patch-verification: ON
78  *
79  * Local Variables:
80  * eval: (c-set-style "gnu")
81  * End:
82  */