mpls.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef _UAPI_MPLS_H
  2. #define _UAPI_MPLS_H
  3. #include <linux/types.h>
  4. #include <asm/byteorder.h>
  5. /* Reference: RFC 5462, RFC 3032
  6. *
  7. * 0 1 2 3
  8. * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  9. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  10. * | Label | TC |S| TTL |
  11. * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  12. *
  13. * Label: Label Value, 20 bits
  14. * TC: Traffic Class field, 3 bits
  15. * S: Bottom of Stack, 1 bit
  16. * TTL: Time to Live, 8 bits
  17. */
  18. struct mpls_label {
  19. __be32 entry;
  20. };
  21. #define MPLS_LS_LABEL_MASK 0xFFFFF000
  22. #define MPLS_LS_LABEL_SHIFT 12
  23. #define MPLS_LS_TC_MASK 0x00000E00
  24. #define MPLS_LS_TC_SHIFT 9
  25. #define MPLS_LS_S_MASK 0x00000100
  26. #define MPLS_LS_S_SHIFT 8
  27. #define MPLS_LS_TTL_MASK 0x000000FF
  28. #define MPLS_LS_TTL_SHIFT 0
  29. /* Reserved labels */
  30. #define MPLS_LABEL_IPV4NULL 0 /* RFC3032 */
  31. #define MPLS_LABEL_RTALERT 1 /* RFC3032 */
  32. #define MPLS_LABEL_IPV6NULL 2 /* RFC3032 */
  33. #define MPLS_LABEL_IMPLNULL 3 /* RFC3032 */
  34. #define MPLS_LABEL_ENTROPY 7 /* RFC6790 */
  35. #define MPLS_LABEL_GAL 13 /* RFC5586 */
  36. #define MPLS_LABEL_OAMALERT 14 /* RFC3429 */
  37. #define MPLS_LABEL_EXTENSION 15 /* RFC7274 */
  38. #define MPLS_LABEL_FIRST_UNRESERVED 16 /* RFC3032 */
  39. #endif /* _UAPI_MPLS_H */