BIER; bi-dir to/from underlay
[vpp.git] / src / vnet / bier / bier_disp_dispatch_node.c
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 #include <vnet/bier/bier_disp_entry.h>
17 #include <vnet/bier/bier_hdr_inlines.h>
18
19 /**
20  * @brief A struct to hold tracing information for the MPLS label imposition
21  * node.
22  */
23 typedef struct bier_disp_dispatch_trace_t_
24 {
25     /**
26      * BIER payload protocol used to dispatch
27      */
28     bier_hdr_proto_id_t pproto;
29
30     /**
31      * RPF-ID packet is tagged with
32      */
33     u32 rpf_id;
34 } bier_disp_dispatch_trace_t;
35
36 always_inline uword
37 bier_disp_dispatch_inline (vlib_main_t * vm,
38                          vlib_node_runtime_t * node,
39                          vlib_frame_t * from_frame)
40 {
41     u32 n_left_from, next_index, * from, * to_next;
42
43     from = vlib_frame_vector_args (from_frame);
44     n_left_from = from_frame->n_vectors;
45
46     next_index = node->cached_next_index;
47
48     while (n_left_from > 0)
49     {
50         u32 n_left_to_next;
51
52         vlib_get_next_frame(vm, node, next_index, to_next, n_left_to_next);
53
54         while (n_left_from > 0 && n_left_to_next > 0)
55         {
56             bier_hdr_proto_id_t pproto0;
57             bier_disp_entry_t *bde0;
58             u32 next0, bi0, bdei0;
59             const dpo_id_t *dpo0;
60             vlib_buffer_t * b0;
61             bier_hdr_t *hdr0;
62             u32 entropy0;
63
64             bi0 = from[0];
65             to_next[0] = bi0;
66             from += 1;
67             to_next += 1;
68             n_left_from -= 1;
69             n_left_to_next -= 1;
70
71             b0 = vlib_get_buffer (vm, bi0);
72             bdei0 = vnet_buffer(b0)->ip.adj_index[VLIB_TX];
73             hdr0 = vlib_buffer_get_current(b0);
74             bde0 = bier_disp_entry_get(bdei0);
75             vnet_buffer(b0)->ip.adj_index[VLIB_RX] = BIER_RX_ITF;
76
77             /*
78              * header is in network order - flip it, we are about to
79              * consume it anyway
80              */
81             bier_hdr_ntoh(hdr0);
82             pproto0 = bier_hdr_get_proto_id(hdr0);
83             entropy0 = bier_hdr_get_entropy(hdr0);
84
85             /*
86              * strip the header and copy the entropy value into
87              * the packets flow-hash field
88              * DSCP mumble mumble...
89              */
90             vlib_buffer_advance(b0, (vnet_buffer(b0)->mpls.bier.n_bytes +
91                                      sizeof(*hdr0)));
92             vnet_buffer(b0)->ip.flow_hash = entropy0;
93
94             /*
95              * use the payload proto to dispatch to the
96              * correct stacked DPO.
97              */
98             dpo0 = &bde0->bde_fwd[pproto0].bde_dpo;
99             next0 = dpo0->dpoi_next_node;
100             vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
101             vnet_buffer(b0)->ip.rpf_id = bde0->bde_fwd[pproto0].bde_rpf_id;
102
103             if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
104             {
105                 bier_disp_dispatch_trace_t *tr =
106                     vlib_add_trace (vm, node, b0, sizeof (*tr));
107                 tr->pproto = pproto0;
108                 tr->rpf_id = vnet_buffer(b0)->ip.rpf_id;
109             }
110
111             vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next,
112                                             n_left_to_next, bi0, next0);
113         }
114         vlib_put_next_frame (vm, node, next_index, n_left_to_next);
115     }
116     return from_frame->n_vectors;
117 }
118
119 static u8 *
120 format_bier_disp_dispatch_trace (u8 * s, va_list * args)
121 {
122     CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
123     CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
124     bier_disp_dispatch_trace_t * t;
125
126     t = va_arg (*args, bier_disp_dispatch_trace_t *);
127     s = format (s, "%U", format_bier_hdr_proto, t->pproto);
128
129     return (s);
130 }
131
132 static uword
133 bier_disp_dispatch (vlib_main_t * vm,
134                   vlib_node_runtime_t * node,
135                   vlib_frame_t * frame)
136 {
137     return (bier_disp_dispatch_inline(vm, node, frame));
138 }
139
140 VLIB_REGISTER_NODE (bier_disp_dispatch_node) = {
141     .function = bier_disp_dispatch,
142     .name = "bier-disp-dispatch",
143     .vector_size = sizeof (u32),
144
145     .format_trace = format_bier_disp_dispatch_trace,
146     .n_next_nodes = 1,
147     .next_nodes = {
148         [0] = "bier-drop",
149     }
150 };
151 VLIB_NODE_FUNCTION_MULTIARCH (bier_disp_dispatch_node, bier_disp_dispatch)