FD.io VPP  v21.01.1
Vector Packet Processing
ip6_ioam_seqno.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 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 
16 
17 #include <vlib/vlib.h>
18 #include <vnet/vnet.h>
19 #include <vppinfra/error.h>
20 
21 #include <vnet/ip/ip.h>
22 
23 #include <vppinfra/hash.h>
24 #include <vppinfra/error.h>
25 #include <vppinfra/elog.h>
26 
27 #include "ip6_ioam_seqno.h"
28 #include "ip6_ioam_e2e.h"
29 
30 
31 /*
32  * This Routine gets called from IPv6 hop-by-hop option handling.
33  * Only if we are encap node, then add PPC data.
34  * On a Transit(MID) node we dont do anything with E2E headers.
35  * On decap node decap is handled by seperate function.
36  */
37 int
40 {
41  u32 opaque_index = vnet_buffer(b)->l2_classify.opaque_index;
42  ioam_e2e_option_t * e2e;
43  int rv = 0;
45 
46  /* Bypass seqno processing */
47  if (PREDICT_FALSE(opaque_index == 0x7FFFFFFF))
48  return rv;
49 
50  data = ioam_e2ec_get_seqno_data_from_flow_ctx(opaque_index);
51  e2e = (ioam_e2e_option_t *) opt;
52  e2e->e2e_hdr.e2e_data = clib_host_to_net_u32(++data->seq_num);
53 
54  return (rv);
55 }
56 
57 /*
58  * This Routine gets called on POP/Decap node.
59  */
60 int
63 {
64  u32 opaque_index = vnet_buffer(b)->l2_classify.opaque_index;
65  ioam_e2e_option_t * e2e;
66  int rv = 0;
68 
69  data = ioam_e2ec_get_seqno_data_from_flow_ctx(opaque_index);
70  e2e = (ioam_e2e_option_t *) opt;
72  (u64) clib_net_to_host_u32(e2e->e2e_hdr.e2e_data));
73 
74  return (rv);
75 }
int ioam_seqno_encap_handler(vlib_buffer_t *b, ip6_header_t *ip, ip6_hop_by_hop_option_t *opt)
unsigned long u64
Definition: types.h:89
int ioam_seqno_decap_handler(vlib_buffer_t *b, ip6_header_t *ip, ip6_hop_by_hop_option_t *opt)
static ioam_seqno_data * ioam_e2ec_get_seqno_data_from_flow_ctx(u32 flow_ctx)
Definition: ip6_ioam_e2e.h:44
seqno_rx_info seqno_rx
u8 data[128]
Definition: ipsec_types.api:90
static void ioam_analyze_seqno(seqno_rx_info *seqno_rx, u64 seqno)
const cJSON *const b
Definition: cJSON.h:255
unsigned int u32
Definition: types.h:88
#define PREDICT_FALSE(x)
Definition: clib.h:121
The fine-grained event logger allows lightweight, thread-safe event logging at minimum cost...
vl_api_address_t ip
Definition: l2.api:501
VLIB buffer representation.
Definition: buffer.h:102
#define vnet_buffer(b)
Definition: buffer.h:417