From a77ae4708906b2a7894f7ac694bf55d5f0558d5f Mon Sep 17 00:00:00 2001 From: Steven Luong Date: Sun, 14 Feb 2021 11:37:02 -0800 Subject: arping: add arping command Add linux similar arping command to VPP. syntax: arping [gratuitous]
[repeat ] [interval ] Type: feature Signed-off-by: Steven Luong Change-Id: I9267c054235207b8fae8e3f159246777eb0340dd --- src/plugins/arping/arping_api.c | 87 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/plugins/arping/arping_api.c (limited to 'src/plugins/arping/arping_api.c') diff --git a/src/plugins/arping/arping_api.c b/src/plugins/arping/arping_api.c new file mode 100644 index 00000000000..015c6148f5e --- /dev/null +++ b/src/plugins/arping/arping_api.c @@ -0,0 +1,87 @@ +/* + *------------------------------------------------------------------ + * Copyright (c) 2021 Cisco and/or its affiliates. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *------------------------------------------------------------------ + */ + +#include +#include +#include +#include +#include +#include + +#include + +#include +#include + +/* define message IDs */ +#include +#include + +#include + +static void +vl_api_arping_t_handler (vl_api_arping_t *mp) +{ + vlib_main_t *vm = vlib_get_main (); + arping_main_t *am = &arping_main; + vl_api_arping_reply_t *rmp; + arping_args_t args = { 0 }; + int rv; + + if (mp->sw_if_index != ~0) + VALIDATE_SW_IF_INDEX (mp); + + ip_address_decode2 (&mp->address, &args.address); + args.interval = clib_net_to_host_f64 (mp->interval); + args.repeat = ntohl (mp->repeat); + args.is_garp = mp->is_garp; + args.sw_if_index = ntohl (mp->sw_if_index); + args.silence = 1; + + arping_run_command (vm, &args); + rv = args.rv; + + BAD_SW_IF_INDEX_LABEL; + + REPLY_MACRO2 (VL_API_ARPING_REPLY + am->msg_id_base, + ({ rmp->reply_count = ntohl (args.reply_count); })); +} + +/* set tup the API message handling tables */ +#include +clib_error_t * +arping_plugin_api_hookup (vlib_main_t *vm) +{ + arping_main_t *am = &arping_main; + api_main_t *vam = vlibapi_get_main (); + + /* ask for a correctly-sized block of API message decode slots */ + am->msg_id_base = setup_message_id_table (); + + /* Mark API as mp safe */ + vam->is_mp_safe[am->msg_id_base + VL_API_ARPING] = 1; + + return 0; +} + +/* + * fd.io coding-style-patch-verification: ON + * + * Local Variables: + * eval: (c-set-style "gnu") + * End: + */ -- cgit 1.2.3-korg