aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVratko Polak <vrpolak@cisco.com>2019-04-17 20:02:56 +0200
committerPaul Vinciguerra <pvinci@vinciconsulting.com>2019-04-17 18:48:54 +0000
commit4a72406360270a4ff0197c9c8cca43366f515aa8 (patch)
tree7bea27431c6bb5c02313aa0456959996479c33fc /src
parent317b8e08367c769b90463613231b9fcfad486098 (diff)
Make sw_interface_dump more compatible with 2.2.0
+ As old PAPI clients are likely to put zero as the value for sw_if_index, the behavior should not perform index filtering at least when name filtering is enabled (valid). + interface.api version set to 2.3.0, as the new behavior is backward compatible (at least for PAPI with name filter enabled), but not forward compatible. + Minor whitespace cleanup. Change-Id: I315a0eae4004f9d9b6c5f9ecf0f179e669729118 Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'src')
-rw-r--r--src/vnet/interface.api11
-rw-r--r--src/vnet/interface_api.c4
2 files changed, 6 insertions, 9 deletions
diff --git a/src/vnet/interface.api b/src/vnet/interface.api
index 0cebd001426..d8d9198cda7 100644
--- a/src/vnet/interface.api
+++ b/src/vnet/interface.api
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-option version = "2.2.1";
+option version = "2.3.0";
import "vnet/interface_types.api";
@@ -77,7 +77,6 @@ autoreply define sw_interface_set_ip_directed_broadcast
u8 enable;
};
-
/** \brief Interface Event generated by want_interface_events
@param client_index - opaque cookie to identify the sender
@param pid - client pid registered to receive notification
@@ -112,7 +111,7 @@ autoreply define want_interface_events
/** \brief Interface details structure (fix this)
@param sw_if_index - index of the interface
- @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index
+ @param sup_sw_if_index - index of parent interface if any, else same as sw_if_index
@param l2_address_length - length of the interface's l2 address
@param pid - the interface's l2 address
@param interface_name - name of the interface
@@ -194,7 +193,7 @@ define sw_interface_details
u32 vtr_tag1; // first pushed tag
u32 vtr_tag2; // second pushed tag
u8 tag[64];
-
+
/* pbb tag rewrite info */
u16 outer_tag;
u8 b_dmac[6];
@@ -206,11 +205,11 @@ define sw_interface_details
/** \brief Request all or filtered subset of sw_interface_details
@param client_index - opaque cookie to identify the sender
@param context - sender context, to match reply w/ request
- @param sw_if_index - ~0 if ignore, index of the interface to filter on
+ @param sw_if_index - index of the interface to dump info on, ~0 if on all
@param name_filter_valid - 1 if requesting a filtered subset of records else 0
+ if name filter is valid, sw_if_index value is effectively set to ~0
@param name_filter - interface name substring filter. Eg. loop1 returns [loop1, loop10]
*/
-
define sw_interface_dump
{
u32 client_index;
diff --git a/src/vnet/interface_api.c b/src/vnet/interface_api.c
index 993d12c0617..8b0cd8e4a33 100644
--- a/src/vnet/interface_api.c
+++ b/src/vnet/interface_api.c
@@ -308,7 +308,7 @@ vl_api_sw_interface_dump_t_handler (vl_api_sw_interface_dump_t * mp)
u8 *filter = 0, *name = 0;
sw_if_index = ntohl (mp->sw_if_index);
- if (sw_if_index != ~0)
+ if (!mp->name_filter_valid && sw_if_index != ~0)
{
/* is it a valid sw_if_index/ */
if (vec_len (im->sw_interfaces) <= sw_if_index)
@@ -316,8 +316,6 @@ vl_api_sw_interface_dump_t_handler (vl_api_sw_interface_dump_t * mp)
swif = vec_elt_at_index (im->sw_interfaces, sw_if_index);
- /* If we have a sw_if_index, ignore the name filter. */
- mp->name_filter_valid = 0;
vec_reset_length (name);
name =
format (name, "%U%c", format_vnet_sw_interface_name, am->vnet_main,
lt;vnet/ethernet/ethernet.h> #include <vnet/ethernet/packet.h> #include <vnet/ip/ip_packet.h> #include <vnet/ip/ip4_packet.h> #include <vnet/ip/ip6_packet.h> #include <vlib/cli.h> #include <vnet/l2/l2_input.h> #include <vnet/l2/l2_output.h> #include <vnet/l2/feat_bitmap.h> #include <vppinfra/error.h> #include <vppinfra/hash.h> #include <vppinfra/cache.h> #include <vnet/classify/vnet_classify.h> typedef enum { L2_INPUT_CLASSIFY_NEXT_DROP, L2_INPUT_CLASSIFY_NEXT_ETHERNET_INPUT, L2_INPUT_CLASSIFY_NEXT_IP4_INPUT, L2_INPUT_CLASSIFY_NEXT_IP6_INPUT, L2_INPUT_CLASSIFY_NEXT_LI, L2_INPUT_CLASSIFY_N_NEXT, } l2_input_classify_next_t; typedef enum { L2_INPUT_CLASSIFY_TABLE_IP4, L2_INPUT_CLASSIFY_TABLE_IP6, L2_INPUT_CLASSIFY_TABLE_OTHER, L2_INPUT_CLASSIFY_N_TABLES, } l2_input_classify_table_id_t; typedef enum { L2_OUTPUT_CLASSIFY_NEXT_DROP, L2_OUTPUT_CLASSIFY_N_NEXT, } l2_output_classify_next_t; typedef enum { L2_OUTPUT_CLASSIFY_TABLE_IP4, L2_OUTPUT_CLASSIFY_TABLE_IP6, L2_OUTPUT_CLASSIFY_TABLE_OTHER, L2_OUTPUT_CLASSIFY_N_TABLES, } l2_output_classify_table_id_t; typedef struct _l2_classify_main { /* Next nodes for L2 input and output features */ u32 l2_inp_feat_next[32]; u32 l2_out_feat_next[32]; /* Per-address-family classifier table vectors */ u32 *classify_table_index_by_sw_if_index[L2_INPUT_CLASSIFY_N_TABLES]; /* convenience variables */ vlib_main_t *vlib_main; vnet_main_t *vnet_main; vnet_classify_main_t *vnet_classify_main; } l2_input_classify_main_t; typedef struct _l2_classify_main l2_output_classify_main_t; extern l2_input_classify_main_t l2_input_classify_main; extern vlib_node_registration_t l2_input_classify_node; extern l2_output_classify_main_t l2_output_classify_main; extern vlib_node_registration_t l2_output_classify_node; void vnet_l2_input_classify_enable_disable (u32 sw_if_index, int enable_disable); int vnet_l2_input_classify_set_tables (u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 other_table_index); void vnet_l2_output_classify_enable_disable (u32 sw_if_index, int enable_disable); int vnet_l2_output_classify_set_tables (u32 sw_if_index, u32 ip4_table_index, u32 ip6_table_index, u32 other_table_index); #endif /* __included_vnet_l2_input_classify_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */