]> git.proxmox.com Git - mirror_frr.git/blob - lib/mpls.h
9e7eeed34eb18551f96a94fb39654afdd7b637a6
[mirror_frr.git] / lib / mpls.h
1 /*
2 * MPLS definitions
3 * Copyright 2015 Cumulus Networks, Inc.
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _QUAGGA_MPLS_H
23 #define _QUAGGA_MPLS_H
24
25 #include <arpa/inet.h>
26
27 /* Well-known MPLS label values (RFC 3032 etc). */
28 #define MPLS_V4_EXP_NULL_LABEL 0
29 #define MPLS_RA_LABEL 1
30 #define MPLS_V6_EXP_NULL_LABEL 2
31 #define MPLS_IMP_NULL_LABEL 3
32 #define MPLS_ENTROPY_LABEL_INDICATOR 7
33 #define MPLS_GAL_LABEL 13
34 #define MPLS_OAM_ALERT_LABEL 14
35 #define MPLS_EXTENSION_LABEL 15
36
37 /* Minimum and maximum label values */
38 #define MPLS_MIN_RESERVED_LABEL 0
39 #define MPLS_MAX_RESERVED_LABEL 15
40 #define MPLS_MIN_UNRESERVED_LABEL 16
41 #define MPLS_MAX_UNRESERVED_LABEL 1048575
42
43 /* Default min and max SRGB label range */
44 #define MPLS_DEFAULT_MIN_SRGB_LABEL 10000
45 #define MPLS_DEFAULT_MAX_SRGB_LABEL 50000
46 #define MPLS_DEFAULT_MIN_SRGB_SIZE 5000
47 #define MPLS_DEFAULT_MAX_SRGB_SIZE 20000
48
49 /* Maximum # labels that can be pushed. */
50 #define MPLS_MAX_LABELS 16
51
52 #define IS_MPLS_RESERVED_LABEL(label) \
53 (label >= MPLS_MIN_RESERVED_LABEL && label <= MPLS_MAX_RESERVED_LABEL)
54
55 #define IS_MPLS_UNRESERVED_LABEL(label) \
56 (label >= MPLS_MIN_UNRESERVED_LABEL \
57 && label <= MPLS_MAX_UNRESERVED_LABEL)
58
59 /* Definitions for a MPLS label stack entry (RFC 3032). This encodes the
60 * label, EXP, BOS and TTL fields.
61 */
62 typedef unsigned int mpls_lse_t;
63
64 #define MPLS_LS_LABEL_MASK 0xFFFFF000
65 #define MPLS_LS_LABEL_SHIFT 12
66 #define MPLS_LS_EXP_MASK 0x00000E00
67 #define MPLS_LS_EXP_SHIFT 9
68 #define MPLS_LS_S_MASK 0x00000100
69 #define MPLS_LS_S_SHIFT 8
70 #define MPLS_LS_TTL_MASK 0x000000FF
71 #define MPLS_LS_TTL_SHIFT 0
72
73 #define MPLS_LABEL_VALUE(lse) \
74 ((lse & MPLS_LS_LABEL_MASK) >> MPLS_LS_LABEL_SHIFT)
75 #define MPLS_LABEL_EXP(lse) ((lse & MPLS_LS_EXP_MASK) >> MPLS_LS_EXP_SHIFT)
76 #define MPLS_LABEL_BOS(lse) ((lse & MPLS_LS_S_MASK) >> MPLS_LS_S_SHIFT)
77 #define MPLS_LABEL_TTL(lse) ((lse & MPLS_LS_TTL_MASK) >> MPLS_LS_TTL_SHIFT)
78
79 #define IS_MPLS_LABEL_BOS(ls) (MPLS_LABEL_BOS(ls) == 1)
80
81 #define MPLS_LABEL_LEN_BITS 20
82
83 /* MPLS label value as a 32-bit (mostly we only care about the label value). */
84 typedef unsigned int mpls_label_t;
85
86 /* The MPLS explicit-null label is 0 which means when you memset a mpls_label_t
87 * to zero you have set that variable to explicit-null which was probably not
88 * your intent. The work-around is to use one bit to indicate if the
89 * mpls_label_t has been set by the user. MPLS_INVALID_LABEL has this bit clear
90 * so that we can use MPLS_INVALID_LABEL to initialize mpls_label_t variables.
91 */
92 #define MPLS_INVALID_LABEL 0xFFFDFFFF
93
94 /* LSP types. */
95 enum lsp_types_t {
96 ZEBRA_LSP_NONE = 0, /* No LSP. */
97 ZEBRA_LSP_STATIC = 1, /* Static LSP. */
98 ZEBRA_LSP_LDP = 2, /* LDP LSP. */
99 ZEBRA_LSP_BGP = 3, /* BGP LSP. */
100 ZEBRA_LSP_SR = 4 /* Segment Routing LSP. */
101 };
102
103 /* Functions for basic label operations. */
104
105 /* Encode a label stack entry from fields; convert to network byte-order as
106 * the Netlink interface expects MPLS labels to be in this format.
107 */
108 static inline mpls_lse_t mpls_lse_encode(mpls_label_t label, u_int32_t ttl,
109 u_int32_t exp, u_int32_t bos)
110 {
111 mpls_lse_t lse;
112 lse = htonl((label << MPLS_LS_LABEL_SHIFT) | (exp << MPLS_LS_EXP_SHIFT)
113 | (bos ? (1 << MPLS_LS_S_SHIFT) : 0)
114 | (ttl << MPLS_LS_TTL_SHIFT));
115 return lse;
116 }
117
118 /* Extract the fields from a label stack entry after converting to host-byte
119 * order. This is expected to be called only for messages received over the
120 * Netlink interface.
121 */
122 static inline void mpls_lse_decode(mpls_lse_t lse, mpls_label_t *label,
123 u_int32_t *ttl, u_int32_t *exp,
124 u_int32_t *bos)
125 {
126 mpls_lse_t local_lse;
127
128 local_lse = ntohl(lse);
129 *label = MPLS_LABEL_VALUE(local_lse);
130 *exp = MPLS_LABEL_EXP(local_lse);
131 *bos = MPLS_LABEL_BOS(local_lse);
132 *ttl = MPLS_LABEL_TTL(local_lse);
133 }
134
135 /* Invalid label index value (when used with BGP Prefix-SID). Should
136 * match the BGP definition.
137 */
138 #define MPLS_INVALID_LABEL_INDEX 0xFFFFFFFF
139
140 /* Printable string for labels (with consideration for reserved values). */
141 static inline char *label2str(mpls_label_t label, char *buf, size_t len)
142 {
143 switch (label) {
144 case MPLS_V4_EXP_NULL_LABEL:
145 strlcpy(buf, "IPv4 Explicit Null", len);
146 return (buf);
147 case MPLS_RA_LABEL:
148 strlcpy(buf, "Router Alert", len);
149 return (buf);
150 case MPLS_V6_EXP_NULL_LABEL:
151 strlcpy(buf, "IPv6 Explict Null", len);
152 return (buf);
153 case MPLS_IMP_NULL_LABEL:
154 strlcpy(buf, "implicit-null", len);
155 return (buf);
156 case MPLS_ENTROPY_LABEL_INDICATOR:
157 strlcpy(buf, "Entropy Label Indicator", len);
158 return (buf);
159 case MPLS_GAL_LABEL:
160 strlcpy(buf, "Generic Associated Channel", len);
161 return (buf);
162 case MPLS_OAM_ALERT_LABEL:
163 strlcpy(buf, "OAM Alert", len);
164 return (buf);
165 case MPLS_EXTENSION_LABEL:
166 strlcpy(buf, "Extension", len);
167 return (buf);
168 default:
169 if (label < 16)
170 snprintf(buf, len, "Reserved (%u)", label);
171 else
172 snprintf(buf, len, "%u", label);
173 return (buf);
174 }
175 }
176
177 /* constants used by ldpd */
178 #define MPLS_LABEL_IPV4NULL 0 /* IPv4 Explicit NULL Label */
179 #define MPLS_LABEL_RTALERT 1 /* Router Alert Label */
180 #define MPLS_LABEL_IPV6NULL 2 /* IPv6 Explicit NULL Label */
181 #define MPLS_LABEL_IMPLNULL 3 /* Implicit NULL Label */
182 /* MPLS_LABEL_RESERVED 4-15 */ /* Values 4-15 are reserved */
183 #define MPLS_LABEL_RESERVED_MAX 15
184 #define MPLS_LABEL_MAX ((1 << 20) - 1)
185
186 #endif