David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 1 | /* |
| 2 | * SR-IPv6 implementation |
| 3 | * |
| 4 | * Author: |
| 5 | * David Lebrun <david.lebrun@uclouvain.be> |
| 6 | * |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * as published by the Free Software Foundation; either version |
| 11 | * 2 of the License, or (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #ifndef _UAPI_LINUX_SEG6_H |
| 15 | #define _UAPI_LINUX_SEG6_H |
| 16 | |
David Lebrun | a50a05f | 2017-01-15 15:26:16 +0100 | [diff] [blame] | 17 | #include <linux/types.h> |
Dmitry V. Levin | ea3ebc7 | 2017-02-23 14:30:34 +0300 | [diff] [blame] | 18 | #include <linux/in6.h> /* For struct in6_addr. */ |
David Lebrun | a50a05f | 2017-01-15 15:26:16 +0100 | [diff] [blame] | 19 | |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 20 | /* |
| 21 | * SRH |
| 22 | */ |
| 23 | struct ipv6_sr_hdr { |
| 24 | __u8 nexthdr; |
| 25 | __u8 hdrlen; |
| 26 | __u8 type; |
| 27 | __u8 segments_left; |
| 28 | __u8 first_segment; |
David Lebrun | 013e816 | 2017-02-02 11:29:38 +0100 | [diff] [blame] | 29 | __u8 flags; |
| 30 | __u16 reserved; |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 31 | |
| 32 | struct in6_addr segments[0]; |
| 33 | }; |
| 34 | |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 35 | #define SR6_FLAG1_PROTECTED (1 << 6) |
| 36 | #define SR6_FLAG1_OAM (1 << 5) |
| 37 | #define SR6_FLAG1_ALERT (1 << 4) |
| 38 | #define SR6_FLAG1_HMAC (1 << 3) |
| 39 | |
| 40 | #define SR6_TLV_INGRESS 1 |
| 41 | #define SR6_TLV_EGRESS 2 |
| 42 | #define SR6_TLV_OPAQUE 3 |
| 43 | #define SR6_TLV_PADDING 4 |
| 44 | #define SR6_TLV_HMAC 5 |
| 45 | |
David Lebrun | 013e816 | 2017-02-02 11:29:38 +0100 | [diff] [blame] | 46 | #define sr_has_hmac(srh) ((srh)->flags & SR6_FLAG1_HMAC) |
David Lebrun | 1ababeb | 2016-11-08 14:57:39 +0100 | [diff] [blame] | 47 | |
| 48 | struct sr6_tlv { |
| 49 | __u8 type; |
| 50 | __u8 len; |
| 51 | __u8 data[0]; |
| 52 | }; |
| 53 | |
| 54 | #endif |