FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
gbp_policy.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 <plugins/gbp/gbp.h>
17 #include <plugins/gbp/gbp_policy.h>
19 
21 
22 /* packet trace format function */
23 u8 *
24 format_gbp_policy_trace (u8 * s, va_list * args)
25 {
26  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
27  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
28  gbp_policy_trace_t *t = va_arg (*args, gbp_policy_trace_t *);
29 
30  s =
31  format (s, "scope:%d sclass:%d, dclass:%d, allowed:%d flags:%U", t->scope,
33  t->flags);
34 
35  return s;
36 }
37 
38 static clib_error_t *
40 {
42  clib_error_t *error = 0;
43 
44  /* Initialize the feature next-node indexes */
45  vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "gbp-policy-port");
47  node->index,
51 
52  node = vlib_get_node_by_name (vm, (u8 *) "gbp-policy-mac");
54  node->index,
58 
59  node = vlib_get_node_by_name (vm, (u8 *) "gbp-policy-lpm");
61  node->index,
65 
66  return error;
67 }
68 
70 
71 /*
72  * fd.io coding-style-patch-verification: ON
73  *
74  * Local Variables:
75  * eval: (c-set-style "gnu")
76  * End:
77  */
#define CLIB_UNUSED(x)
Definition: clib.h:82
char ** l2output_get_feat_names(void)
Definition: l2_output.c:39
u32 index
Definition: node.h:279
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
unsigned char u8
Definition: types.h:56
gbp_scope_t scope
Definition: gbp_policy.h:27
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
u8 * format_vxlan_gbp_header_gpflags(u8 *s, va_list *args)
per-packet trace data
Definition: gbp_policy.h:24
u32 l2_output_feat_next[GBP_N_POLICY][32]
Next nodes for L2 output features.
Definition: gbp.h:67
static clib_error_t * gbp_policy_init(vlib_main_t *vm)
Definition: gbp_policy.c:39
vlib_main_t * vm
Definition: buffer.c:312
static void feat_bitmap_init_next_nodes(vlib_main_t *vm, u32 node_index, u32 num_features, char **feat_names, u32 *next_nodes)
Initialize the feature next-node indexes of a graph node.
Definition: feat_bitmap.h:43
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
gbp_policy_main_t gbp_policy_main
Definition: gbp_policy.c:20
u8 * format_gbp_policy_trace(u8 *s, va_list *args)
Definition: gbp_policy.c:24
Grouping of global data for the GBP source EPG classification feature.
Definition: gbp.h:62