Initial commit of vpp code.
[vpp.git] / vnet / vnet / ip / ip6_hop_by_hop_packet.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_ip6_hop_by_hop_packet_h__
16 #define __included_ip6_hop_by_hop_packet_h__
17
18 typedef struct {
19   /* Protocol for next header */
20   u8 protocol;
21   /*
22    * Length of hop_by_hop header in 8 octet units, 
23    * not including the first 8 octets
24    */
25   u8 length;
26 } ip6_hop_by_hop_header_t;
27
28 typedef struct {
29   /* Option Type */
30 #define HBH_OPTION_TYPE_SKIP_UNKNOWN (0x0 << 6)
31 #define HBH_OPTION_TYPE_DISCARD_UNKNOWN (0x1 << 6)
32 #define HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP (0x2 << 6)
33 #define HBH_OPTION_TYPE_DISCARD_UNKNOWN_ICMP_NOT_MCAST (0x3 << 6)
34 #define HBH_OPTION_TYPE_DATA_CHANGE_ENROUTE (1<<5)
35 #define HBH_OPTION_TYPE_MASK (0x1F)
36   u8 type;
37   /* Length in octets of the option data field */
38   u8 length;
39 } ip6_hop_by_hop_option_t;
40
41 /* $$$$ IANA banana constants */
42 #define HBH_OPTION_TYPE_IOAM_DATA_LIST 1
43 #define HBH_OPTION_TYPE_IOAM_PROOF_OF_WORK 2
44
45 typedef struct {
46   u32 ttl_node_id;
47   u16 ingress_if;
48   u16 egress_if;
49   u32 timestamp;
50   u32 app_data;
51 } ioam_data_list_element_t;
52
53 typedef CLIB_PACKED(struct {
54   ip6_hop_by_hop_option_t hdr;
55   u8 data_list_elts_left;
56   ioam_data_list_element_t elts[0];
57 }) ioam_trace_option_t;
58
59 typedef CLIB_PACKED(struct {
60   ip6_hop_by_hop_option_t hdr;
61   u8 pow_type;
62   u8 reserved;
63   u32 random[2];
64   u32 cumulative[2];
65 }) ioam_pow_option_t;
66
67 #endif /* __included_ip6_hop_by_hop_packet_h__ */