950085f2e135cdbbcbe378bbca9c4d8896aa3997
[vpp.git] / src / plugins / srv6-ad / ad.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * 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 #ifndef __included_srv6_ad_h__
16 #define __included_srv6_ad_h__
17
18 #include <vnet/vnet.h>
19 #include <vnet/ip/ip.h>
20 #include <vnet/srv6/sr.h>
21 #include <vnet/srv6/sr_packet.h>
22
23 #include <vppinfra/error.h>
24 #include <vppinfra/elog.h>
25
26 #define DA_IP4 4
27 #define DA_IP6 6
28
29 typedef struct
30 {
31   u16 msg_id_base;                        /**< API message ID base */
32
33   vlib_main_t *vlib_main;                 /**< [convenience] vlib main */
34   vnet_main_t *vnet_main;                 /**< [convenience] vnet main */
35
36   dpo_type_t srv6_ad_dpo_type;            /**< DPO type */
37
38   u32 srv6_localsid_behavior_id;          /**< SRv6 LocalSID behavior number */
39
40   u32 *sw_iface_localsid4;                /**< Retrieve local SID from iface */
41   u32 *sw_iface_localsid6;                /**< Retrieve local SID from iface */
42 } srv6_ad_main_t;
43
44 /*
45  * This is the memory that will be stored per each localsid
46  * the user instantiates
47  */
48 typedef struct
49 {
50   ip46_address_t nh_addr;                         /**< Proxied device address */
51   u32 sw_if_index_out;                                              /**< Outgoing iface to proxied dev. */
52   u32 nh_adj;                                                                   /**< Adjacency index for out. iface */
53   u8 ip_version;
54
55   u32 sw_if_index_in;                                               /**< Incoming iface from proxied dev. */
56   u32 rw_len;                 /**< Number of bits to be rewritten */
57   u8 *rewrite;                                                          /**< Headers to be rewritten */
58 } srv6_ad_localsid_t;
59
60 srv6_ad_main_t srv6_ad_main;
61
62 format_function_t format_srv6_ad_localsid;
63 unformat_function_t unformat_srv6_ad_localsid;
64
65 void srv6_ad_dpo_lock (dpo_id_t * dpo);
66 void srv6_ad_dpo_unlock (dpo_id_t * dpo);
67
68 extern vlib_node_registration_t srv6_ad_localsid_node;
69
70 #endif /* __included_srv6_ad_h__ */
71
72 /*
73 * fd.io coding-style-patch-verification: ON
74 *
75 * Local Variables:
76 * eval: (c-set-style "gnu")
77 * End:
78 */