xref: /openbmc/linux/include/uapi/linux/seg6_local.h (revision 8b532109)
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,
3094604548SAndrea 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,
67*8b532109SAndrea Mayer 	/* decap and lookup of DA in v4 or v6 table */
68*8b532109SAndrea Mayer 	SEG6_LOCAL_ACTION_END_DT46	= 16,
69d1df6fd8SDavid Lebrun 
70d1df6fd8SDavid Lebrun 	__SEG6_LOCAL_ACTION_MAX,
71d1df6fd8SDavid Lebrun };
72d1df6fd8SDavid Lebrun 
73d1df6fd8SDavid Lebrun #define SEG6_LOCAL_ACTION_MAX (__SEG6_LOCAL_ACTION_MAX - 1)
74d1df6fd8SDavid Lebrun 
75004d4b27SMathieu Xhonneux enum {
76004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF_PROG_UNSPEC,
77004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF_PROG,
78004d4b27SMathieu Xhonneux 	SEG6_LOCAL_BPF_PROG_NAME,
79004d4b27SMathieu Xhonneux 	__SEG6_LOCAL_BPF_PROG_MAX,
80004d4b27SMathieu Xhonneux };
81004d4b27SMathieu Xhonneux 
82004d4b27SMathieu Xhonneux #define SEG6_LOCAL_BPF_PROG_MAX (__SEG6_LOCAL_BPF_PROG_MAX - 1)
83004d4b27SMathieu Xhonneux 
8494604548SAndrea Mayer /* SRv6 Behavior counters are encoded as netlink attributes guaranteeing the
8594604548SAndrea Mayer  * correct alignment.
8694604548SAndrea Mayer  * Each counter is identified by a different attribute type (i.e.
8794604548SAndrea Mayer  * SEG6_LOCAL_CNT_PACKETS).
8894604548SAndrea Mayer  *
8994604548SAndrea Mayer  * - SEG6_LOCAL_CNT_PACKETS: identifies a counter that counts the number of
9094604548SAndrea Mayer  *   packets that have been CORRECTLY processed by an SRv6 Behavior instance
9194604548SAndrea Mayer  *   (i.e., packets that generate errors or are dropped are NOT counted).
9294604548SAndrea Mayer  *
9394604548SAndrea Mayer  * - SEG6_LOCAL_CNT_BYTES: identifies a counter that counts the total amount
9494604548SAndrea Mayer  *   of traffic in bytes of all packets that have been CORRECTLY processed by
9594604548SAndrea Mayer  *   an SRv6 Behavior instance (i.e., packets that generate errors or are
9694604548SAndrea Mayer  *   dropped are NOT counted).
9794604548SAndrea Mayer  *
9894604548SAndrea Mayer  * - SEG6_LOCAL_CNT_ERRORS: identifies a counter that counts the number of
9994604548SAndrea Mayer  *   packets that have NOT been properly processed by an SRv6 Behavior instance
10094604548SAndrea Mayer  *   (i.e., packets that generate errors or are dropped).
10194604548SAndrea Mayer  */
10294604548SAndrea Mayer enum {
10394604548SAndrea Mayer 	SEG6_LOCAL_CNT_UNSPEC,
10494604548SAndrea Mayer 	SEG6_LOCAL_CNT_PAD,		/* pad for 64 bits values */
10594604548SAndrea Mayer 	SEG6_LOCAL_CNT_PACKETS,
10694604548SAndrea Mayer 	SEG6_LOCAL_CNT_BYTES,
10794604548SAndrea Mayer 	SEG6_LOCAL_CNT_ERRORS,
10894604548SAndrea Mayer 	__SEG6_LOCAL_CNT_MAX,
10994604548SAndrea Mayer };
11094604548SAndrea Mayer 
11194604548SAndrea Mayer #define SEG6_LOCAL_CNT_MAX (__SEG6_LOCAL_CNT_MAX - 1)
11294604548SAndrea Mayer 
113d1df6fd8SDavid Lebrun #endif
114