]> git.proxmox.com Git - mirror_frr.git/blame - lib/mpls.h
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / lib / mpls.h
CommitLineData
acddc0ed 1// SPDX-License-Identifier: GPL-2.0-or-later
50f34207 2/*
3 * MPLS definitions
4 * Copyright 2015 Cumulus Networks, Inc.
50f34207 5 */
6
7#ifndef _QUAGGA_MPLS_H
8#define _QUAGGA_MPLS_H
9
43e52561 10#include <zebra.h>
4645cb6b 11#include <vxlan.h>
fea12efb 12#include <arpa/inet.h>
13
5e244469
RW
14#ifdef __cplusplus
15extern "C" {
16#endif
17
70e98a7f
DS
18#ifdef MPLS_LABEL_MAX
19#undef MPLS_LABEL_MAX
20#endif
21
f890b146
DS
22#define MPLS_LABEL_HELPSTR \
23 "Specify label(s) for this route\nOne or more " \
24 "labels in the range (16-1048575) separated by '/'\n"
25
50f34207 26/* Well-known MPLS label values (RFC 3032 etc). */
70e98a7f
DS
27#define MPLS_LABEL_IPV4_EXPLICIT_NULL 0 /* [RFC3032] */
28#define MPLS_LABEL_ROUTER_ALERT 1 /* [RFC3032] */
29#define MPLS_LABEL_IPV6_EXPLICIT_NULL 2 /* [RFC3032] */
30#define MPLS_LABEL_IMPLICIT_NULL 3 /* [RFC3032] */
31#define MPLS_LABEL_ELI 7 /* [RFC6790] */
32#define MPLS_LABEL_GAL 13 /* [RFC5586] */
33#define MPLS_LABEL_OAM_ALERT 14 /* [RFC3429] */
34#define MPLS_LABEL_EXTENSION 15 /* [RFC7274] */
35#define MPLS_LABEL_MAX 1048575
1b3f47d0 36#define MPLS_LABEL_VALUE_MASK 0x000FFFFF
42567e00 37#define MPLS_LABEL_NONE 0xFFFFFFFF /* for internal use only */
50f34207 38
39/* Minimum and maximum label values */
70e98a7f
DS
40#define MPLS_LABEL_RESERVED_MIN 0
41#define MPLS_LABEL_RESERVED_MAX 15
42#define MPLS_LABEL_UNRESERVED_MIN 16
43#define MPLS_LABEL_UNRESERVED_MAX 1048575
0e3b6a92 44#define MPLS_LABEL_BASE_ANY 0
50f34207 45
12929668 46/* Default min and max SRGB label range */
7726c479
OD
47/* Even if the SRGB allows to manage different Label space between routers,
48 * if an operator want to use the same SRGB for all its router, we must fix
49 * a common range. However, Cisco start its SRGB at 16000 and Juniper ends
50 * its SRGB at 16384 for OSPF. Thus, by fixing the minimum SRGB label to
51 * 8000 we could deal with both Cisco and Juniper.
52 */
53#define MPLS_DEFAULT_MIN_SRGB_LABEL 8000
cf9b9f77
OD
54#define MPLS_DEFAULT_MAX_SRGB_LABEL 50000
55#define MPLS_DEFAULT_MIN_SRGB_SIZE 5000
56#define MPLS_DEFAULT_MAX_SRGB_SIZE 20000
12929668 57
52dd3aa4
RW
58/* Maximum # labels that can be pushed. */
59#define MPLS_MAX_LABELS 16
60
95535717 61#define IS_MPLS_RESERVED_LABEL(label) (label <= MPLS_LABEL_RESERVED_MAX)
50f34207 62
d62a17ae 63#define IS_MPLS_UNRESERVED_LABEL(label) \
70e98a7f
DS
64 (label >= MPLS_LABEL_UNRESERVED_MIN \
65 && label <= MPLS_LABEL_UNRESERVED_MAX)
50f34207 66
67/* Definitions for a MPLS label stack entry (RFC 3032). This encodes the
68 * label, EXP, BOS and TTL fields.
69 */
70typedef unsigned int mpls_lse_t;
71
72#define MPLS_LS_LABEL_MASK 0xFFFFF000
73#define MPLS_LS_LABEL_SHIFT 12
74#define MPLS_LS_EXP_MASK 0x00000E00
75#define MPLS_LS_EXP_SHIFT 9
76#define MPLS_LS_S_MASK 0x00000100
77#define MPLS_LS_S_SHIFT 8
78#define MPLS_LS_TTL_MASK 0x000000FF
79#define MPLS_LS_TTL_SHIFT 0
80
d62a17ae 81#define MPLS_LABEL_VALUE(lse) \
82 ((lse & MPLS_LS_LABEL_MASK) >> MPLS_LS_LABEL_SHIFT)
83#define MPLS_LABEL_EXP(lse) ((lse & MPLS_LS_EXP_MASK) >> MPLS_LS_EXP_SHIFT)
84#define MPLS_LABEL_BOS(lse) ((lse & MPLS_LS_S_MASK) >> MPLS_LS_S_SHIFT)
85#define MPLS_LABEL_TTL(lse) ((lse & MPLS_LS_TTL_MASK) >> MPLS_LS_TTL_SHIFT)
50f34207 86
87#define IS_MPLS_LABEL_BOS(ls) (MPLS_LABEL_BOS(ls) == 1)
88
89#define MPLS_LABEL_LEN_BITS 20
90
91/* MPLS label value as a 32-bit (mostly we only care about the label value). */
92typedef unsigned int mpls_label_t;
93
8ecdb26e
DS
94struct mpls_label_stack {
95 uint8_t num_labels;
96 uint8_t reserved[3];
97 mpls_label_t label[0]; /* 1 or more labels */
98};
99
9bedbb1e
DW
100/* The MPLS explicit-null label is 0 which means when you memset a mpls_label_t
101 * to zero you have set that variable to explicit-null which was probably not
102 * your intent. The work-around is to use one bit to indicate if the
103 * mpls_label_t has been set by the user. MPLS_INVALID_LABEL has this bit clear
104 * so that we can use MPLS_INVALID_LABEL to initialize mpls_label_t variables.
105 */
106#define MPLS_INVALID_LABEL 0xFFFDFFFF
50f34207 107
ce549947 108/* LSP types. */
d62a17ae 109enum lsp_types_t {
110 ZEBRA_LSP_NONE = 0, /* No LSP. */
111 ZEBRA_LSP_STATIC = 1, /* Static LSP. */
112 ZEBRA_LSP_LDP = 2, /* LDP LSP. */
cf9b9f77 113 ZEBRA_LSP_BGP = 3, /* BGP LSP. */
635a039e 114 ZEBRA_LSP_OSPF_SR = 4,/* OSPF Segment Routing LSP. */
26f6acaf
RW
115 ZEBRA_LSP_ISIS_SR = 5,/* IS-IS Segment Routing LSP. */
116 ZEBRA_LSP_SHARP = 6, /* Identifier for test protocol */
31f937fb 117 ZEBRA_LSP_SRTE = 7, /* SR-TE LSP */
4645cb6b 118 ZEBRA_LSP_EVPN = 8, /* EVPN VNI Label */
ce549947
RW
119};
120
50f34207 121/* Functions for basic label operations. */
122
4645cb6b
SW
123static inline void vni2label(vni_t vni, mpls_label_t *label)
124{
125 uint8_t *tag = (uint8_t *)label;
126
1dd3cd10
SW
127 assert(tag);
128
4645cb6b
SW
129 tag[0] = (vni >> 16) & 0xFF;
130 tag[1] = (vni >> 8) & 0xFF;
131 tag[2] = vni & 0xFF;
132}
133
134static inline vni_t label2vni(const mpls_label_t *label)
135{
136 uint8_t *tag = (uint8_t *)label;
137 vni_t vni;
138
1dd3cd10
SW
139 assert(tag);
140
4645cb6b
SW
141 vni = ((uint32_t)*tag++ << 16);
142 vni |= (uint32_t)*tag++ << 8;
143 vni |= (uint32_t)(*tag & 0xFF);
144
145 return vni;
146}
147
50f34207 148/* Encode a label stack entry from fields; convert to network byte-order as
149 * the Netlink interface expects MPLS labels to be in this format.
150 */
d7c0a89a
QY
151static inline mpls_lse_t mpls_lse_encode(mpls_label_t label, uint32_t ttl,
152 uint32_t exp, uint32_t bos)
50f34207 153{
d62a17ae 154 mpls_lse_t lse;
155 lse = htonl((label << MPLS_LS_LABEL_SHIFT) | (exp << MPLS_LS_EXP_SHIFT)
156 | (bos ? (1 << MPLS_LS_S_SHIFT) : 0)
157 | (ttl << MPLS_LS_TTL_SHIFT));
158 return lse;
50f34207 159}
160
161/* Extract the fields from a label stack entry after converting to host-byte
162 * order. This is expected to be called only for messages received over the
163 * Netlink interface.
164 */
d62a17ae 165static inline void mpls_lse_decode(mpls_lse_t lse, mpls_label_t *label,
d7c0a89a 166 uint32_t *ttl, uint32_t *exp, uint32_t *bos)
50f34207 167{
d62a17ae 168 mpls_lse_t local_lse;
50f34207 169
d62a17ae 170 local_lse = ntohl(lse);
171 *label = MPLS_LABEL_VALUE(local_lse);
172 *exp = MPLS_LABEL_EXP(local_lse);
173 *bos = MPLS_LABEL_BOS(local_lse);
174 *ttl = MPLS_LABEL_TTL(local_lse);
50f34207 175}
176
28d58fd7
VV
177/* Invalid label index value (when used with BGP Prefix-SID). Should
178 * match the BGP definition.
179 */
180#define MPLS_INVALID_LABEL_INDEX 0xFFFFFFFF
181
50f34207 182/* Printable string for labels (with consideration for reserved values). */
4645cb6b
SW
183static inline char *label2str(mpls_label_t label, enum lsp_types_t type,
184 char *buf, size_t len)
50f34207 185{
4645cb6b
SW
186 if (type == ZEBRA_LSP_EVPN) {
187 snprintf(buf, len, "%u", label2vni(&label));
188 return (buf);
189 }
190
d62a17ae 191 switch (label) {
70e98a7f 192 case MPLS_LABEL_IPV4_EXPLICIT_NULL:
d62a17ae 193 strlcpy(buf, "IPv4 Explicit Null", len);
194 return (buf);
70e98a7f 195 case MPLS_LABEL_ROUTER_ALERT:
d62a17ae 196 strlcpy(buf, "Router Alert", len);
197 return (buf);
70e98a7f 198 case MPLS_LABEL_IPV6_EXPLICIT_NULL:
0437e105 199 strlcpy(buf, "IPv6 Explicit Null", len);
d62a17ae 200 return (buf);
70e98a7f 201 case MPLS_LABEL_IMPLICIT_NULL:
d62a17ae 202 strlcpy(buf, "implicit-null", len);
203 return (buf);
70e98a7f 204 case MPLS_LABEL_ELI:
d62a17ae 205 strlcpy(buf, "Entropy Label Indicator", len);
206 return (buf);
70e98a7f 207 case MPLS_LABEL_GAL:
d62a17ae 208 strlcpy(buf, "Generic Associated Channel", len);
209 return (buf);
70e98a7f 210 case MPLS_LABEL_OAM_ALERT:
d62a17ae 211 strlcpy(buf, "OAM Alert", len);
212 return (buf);
70e98a7f 213 case MPLS_LABEL_EXTENSION:
d62a17ae 214 strlcpy(buf, "Extension", len);
215 return (buf);
216 default:
217 if (label < 16)
218 snprintf(buf, len, "Reserved (%u)", label);
219 else
220 snprintf(buf, len, "%u", label);
d3909a21 221 return buf;
d62a17ae 222 }
50f34207 223}
224
036fdaad
DS
225/*
226 * String to label conversion, labels separated by '/'.
227 */
228int mpls_str2label(const char *label_str, uint8_t *num_labels,
229 mpls_label_t *labels);
230
e4a1ec74
MS
231/* Generic string buffer for label-stack-to-str */
232#define MPLS_LABEL_STRLEN 1024
233
036fdaad
DS
234/*
235 * Label to string conversion, labels in string separated by '/'.
236 */
e4a1ec74 237char *mpls_label2str(uint8_t num_labels, const mpls_label_t *labels, char *buf,
4645cb6b 238 int len, enum lsp_types_t type, int pretty);
eac6e3f0 239
5e244469
RW
240#ifdef __cplusplus
241}
242#endif
243
50f34207 244#endif