BIER
[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
76             /*
77              * header is in network order - flip it, we are about to
78              * consume it anyway
79              */
80             bier_hdr_ntoh(hdr0);
81             pproto0 = bier_hdr_get_proto_id(hdr0);
82             entropy0 = bier_hdr_get_entropy(hdr0);
83
84             /*
85              * strip the header and copy the entropy value into
86              * the packets flow-hash field
87              * DSCP mumble mumble...
88              */
89             vlib_buffer_advance(b0, (vnet_buffer(b0)->bier.n_bytes +
90                                      sizeof(*hdr0)));
91             vnet_buffer(b0)->ip.flow_hash = entropy0;
92
93             /*
94              * use the payload proto to dispatch to the
95              * correct stacked DPO.
96              */
97             dpo0 = &bde0->bde_fwd[pproto0].bde_dpo;
98             next0 = dpo0->dpoi_next_node;
99             vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
100             vnet_buffer(b0)->ip.rpf_id = bde0->bde_fwd[pproto0].bde_rpf_id;
101
102             if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
103             {
104                 bier_disp_dispatch_trace_t *tr =
105                     vlib_add_trace (vm, node, b0, sizeof (*tr));
106                 tr->pproto = pproto0;
107                 tr->rpf_id = vnet_buffer(b0)->ip.rpf_id;
108             }
109
110             vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next,
111                                             n_left_to_next, bi0, next0);
112         }
113         vlib_put_next_frame (vm, node, next_index, n_left_to_next);
114     }
115     return from_frame->n_vectors;
116 }
117
118 static u8 *
119 format_bier_disp_dispatch_trace (u8 * s, va_list * args)
120 {
121     CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
122     CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
123     bier_disp_dispatch_trace_t * t;
124
125     t = va_arg (*args, bier_disp_dispatch_trace_t *);
126     s = format (s, "%U", format_bier_hdr_proto, t->pproto);
127
128     return (s);
129 }
130
131 static uword
132 bier_disp_dispatch (vlib_main_t * vm,
133                   vlib_node_runtime_t * node,
134                   vlib_frame_t * frame)
135 {
136     return (bier_disp_dispatch_inline(vm, node, frame));
137 }
138
139 VLIB_REGISTER_NODE (bier_disp_dispatch_node) = {
140     .function = bier_disp_dispatch,
141     .name = "bier-disp-dispatch",
142     .vector_size = sizeof (u32),
143
144     .format_trace = format_bier_disp_dispatch_trace,
145     .n_next_nodes = 1,
146     .next_nodes = {
147         [0] = "bier-drop",
148     }
149 };
150 VLIB_NODE_FUNCTION_MULTIARCH (bier_disp_dispatch_node, bier_disp_dispatch)