xref: /openbmc/linux/include/uapi/linux/seg6_local.h (revision 94604548)
1d1df6fd8SDavid Lebrun /*
2d1df6fd8SDavid Lebrun  *  SR-IPv6 implementation
3d1df6fd8SDavid Lebrun  *
4d1df6fd8SDavid Lebrun  *  Author:
5d1df6fd8SDavid Lebrun  *  David Lebrun <david.lebrun@uclouvain.be>
6d1df6fd8SDavid Lebrun  *
7d1df6fd8SDavid Lebrun  *
8d1df6fd8SDavid Lebrun  *  This program is free software; you can redistribute it and/or
9d1df6fd8SDavid Lebrun  *      modify it under the terms of the GNU General Public License
10d1df6fd8SDavid Lebrun  *      as published by the Free Software Foundation; either version
11d1df6fd8SDavid Lebrun  *      2 of the License, or (at your option) any later version.
12d1df6fd8SDavid Lebrun  */
13d1df6fd8SDavid Lebrun 
14d1df6fd8SDavid Lebrun #ifndef _UAPI_LINUX_SEG6_LOCAL_H
15d1df6fd8SDavid Lebrun #define _UAPI_LINUX_SEG6_LOCAL_H
16d1df6fd8SDavid Lebrun 
17d1df6fd8SDavid Lebrun #include <linux/seg6.h>
18d1df6fd8SDavid Lebrun 
19d1df6fd8SDavid Lebrun enum {
20d1df6fd8SDavid Lebrun 	SEG6_LOCAL_UNSPEC,
21d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION,
22d1df6fd8SDavid Lebrun 	SEG6_LOCAL_SRH,
23d1df6fd8SDavid Lebrun 	SEG6_LOCAL_TABLE,
24d1df6fd8SDavid Lebrun 	SEG6_LOCAL_NH4,
25d1df6fd8SDavid Lebrun 	SEG6_LOCAL_NH6,
26d1df6fd8SDavid Lebrun 	SEG6_LOCAL_IIF,
27d1df6fd8SDavid Lebrun 	SEG6_LOCAL_OIF,
28004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF,
29664d6f86SAndrea Mayer 	SEG6_LOCAL_VRFTABLE,
30*94604548SAndrea Mayer 	SEG6_LOCAL_COUNTERS,
31d1df6fd8SDavid Lebrun 	__SEG6_LOCAL_MAX,
32d1df6fd8SDavid Lebrun };
33d1df6fd8SDavid Lebrun #define SEG6_LOCAL_MAX (__SEG6_LOCAL_MAX - 1)
34d1df6fd8SDavid Lebrun 
35d1df6fd8SDavid Lebrun enum {
36d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_UNSPEC	= 0,
37d1df6fd8SDavid Lebrun 	/* node segment */
38d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END		= 1,
39d1df6fd8SDavid Lebrun 	/* adjacency segment (IPv6 cross-connect) */
40d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_X		= 2,
41d1df6fd8SDavid Lebrun 	/* lookup of next seg NH in table */
42d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_T		= 3,
43d1df6fd8SDavid Lebrun 	/* decap and L2 cross-connect */
44d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_DX2	= 4,
45d1df6fd8SDavid Lebrun 	/* decap and IPv6 cross-connect */
46d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_DX6	= 5,
47d1df6fd8SDavid Lebrun 	/* decap and IPv4 cross-connect */
48d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_DX4	= 6,
49d1df6fd8SDavid Lebrun 	/* decap and lookup of DA in v6 table */
50d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_DT6	= 7,
51d1df6fd8SDavid Lebrun 	/* decap and lookup of DA in v4 table */
52d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_DT4	= 8,
53d1df6fd8SDavid Lebrun 	/* binding segment with insertion */
54d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_B6	= 9,
55d1df6fd8SDavid Lebrun 	/* binding segment with encapsulation */
56d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_B6_ENCAP	= 10,
57d1df6fd8SDavid Lebrun 	/* binding segment with MPLS encap */
58d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_BM	= 11,
59d1df6fd8SDavid Lebrun 	/* lookup last seg in table */
60d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_S		= 12,
61d1df6fd8SDavid Lebrun 	/* forward to SR-unaware VNF with static proxy */
62d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_AS	= 13,
63d1df6fd8SDavid Lebrun 	/* forward to SR-unaware VNF with masquerading */
64d1df6fd8SDavid Lebrun 	SEG6_LOCAL_ACTION_END_AM	= 14,
65004d4b27SMathieu Xhonneux 	/* custom BPF action */
66004d4b27SMathieu Xhonneux 	SEG6_LOCAL_ACTION_END_BPF	= 15,
67d1df6fd8SDavid Lebrun 
68d1df6fd8SDavid Lebrun 	__SEG6_LOCAL_ACTION_MAX,
69d1df6fd8SDavid Lebrun };
70d1df6fd8SDavid Lebrun 
71d1df6fd8SDavid Lebrun #define SEG6_LOCAL_ACTION_MAX (__SEG6_LOCAL_ACTION_MAX - 1)
72d1df6fd8SDavid Lebrun 
73004d4b27SMathieu Xhonneux enum {
74004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF_PROG_UNSPEC,
75004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF_PROG,
76004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF_PROG_NAME,
77004d4b27SMathieu Xhonneux 	__SEG6_LOCAL_BPF_PROG_MAX,
78004d4b27SMathieu Xhonneux };
79004d4b27SMathieu Xhonneux 
80004d4b27SMathieu Xhonneux #define SEG6_LOCAL_BPF_PROG_MAX (__SEG6_LOCAL_BPF_PROG_MAX - 1)
81004d4b27SMathieu Xhonneux 
82*94604548SAndrea Mayer /* SRv6 Behavior counters are encoded as netlink attributes guaranteeing the
83*94604548SAndrea Mayer  * correct alignment.
84*94604548SAndrea Mayer  * Each counter is identified by a different attribute type (i.e.
85*94604548SAndrea Mayer  * SEG6_LOCAL_CNT_PACKETS).
86*94604548SAndrea Mayer  *
87*94604548SAndrea Mayer  * - SEG6_LOCAL_CNT_PACKETS: identifies a counter that counts the number of
88*94604548SAndrea Mayer  *   packets that have been CORRECTLY processed by an SRv6 Behavior instance
89*94604548SAndrea Mayer  *   (i.e., packets that generate errors or are dropped are NOT counted).
90*94604548SAndrea Mayer  *
91*94604548SAndrea Mayer  * - SEG6_LOCAL_CNT_BYTES: identifies a counter that counts the total amount
92*94604548SAndrea Mayer  *   of traffic in bytes of all packets that have been CORRECTLY processed by
93*94604548SAndrea Mayer  *   an SRv6 Behavior instance (i.e., packets that generate errors or are
94*94604548SAndrea Mayer  *   dropped are NOT counted).
95*94604548SAndrea Mayer  *
96*94604548SAndrea Mayer  * - SEG6_LOCAL_CNT_ERRORS: identifies a counter that counts the number of
97*94604548SAndrea Mayer  *   packets that have NOT been properly processed by an SRv6 Behavior instance
98*94604548SAndrea Mayer  *   (i.e., packets that generate errors or are dropped).
99*94604548SAndrea Mayer  */
100*94604548SAndrea Mayer enum {
101*94604548SAndrea Mayer 	SEG6_LOCAL_CNT_UNSPEC,
102*94604548SAndrea Mayer 	SEG6_LOCAL_CNT_PAD,		/* pad for 64 bits values */
103*94604548SAndrea Mayer 	SEG6_LOCAL_CNT_PACKETS,
104*94604548SAndrea Mayer 	SEG6_LOCAL_CNT_BYTES,
105*94604548SAndrea Mayer 	SEG6_LOCAL_CNT_ERRORS,
106*94604548SAndrea Mayer 	__SEG6_LOCAL_CNT_MAX,
107*94604548SAndrea Mayer };
108*94604548SAndrea Mayer 
109*94604548SAndrea Mayer #define SEG6_LOCAL_CNT_MAX (__SEG6_LOCAL_CNT_MAX - 1)
110*94604548SAndrea Mayer 
111d1df6fd8SDavid Lebrun #endif
112