From patchwork Thu Jan 26 14:12:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 122559 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4DD3442492; Thu, 26 Jan 2023 15:35:45 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7445442D8B; Thu, 26 Jan 2023 15:35:02 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 2D50842D7D for ; Thu, 26 Jan 2023 15:34:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1674743697; x=1706279697; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=v3yW2NWvIyiQd3mzTjm+kFOX98TbGEQPHvDPAgYxeYM=; b=nsgMHwBvf0vmzpD7qL5SHZ3fLv8K87hxHKw2KNxRICP0c296BWbhLdps b++r76cpC2MCsfr0o+1TMijMyCblpGh2iR321hhMULAeRNMQXfeyIlW9K +cRRtIQs3v2rxL2N8B7sNdvmhjyynomltvuX0VwI6NCMJ1Mm2pF5zgdtf PV1keRg1JPjvs9ZWNUVouCEMxQqUSqjvEB8cpialK8dauO86TJ4ulrHOB f/ue8cXKQ0grrESUhvZ3mWq0ruG4I0tGE+GK1SB9+ecqktnnlYuGjC0Y8 OA2+mLCAL1A80M4mAGKq7ImFIFp9EuX0IIRzX0X1NsnsJQLYLelJiPKk7 Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10602"; a="328081277" X-IronPort-AV: E=Sophos;i="5.97,248,1669104000"; d="scan'208";a="328081277" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jan 2023 06:13:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10602"; a="664856517" X-IronPort-AV: E=Sophos;i="5.97,248,1669104000"; d="scan'208";a="664856517" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.222.53]) by fmsmga007.fm.intel.com with ESMTP; 26 Jan 2023 06:13:09 -0800 From: Cristian Dumitrescu To: dev@dpdk.org Cc: Kamalakannan R Subject: [PATCH V6 10/11] examples/pipeline: add block enable/disable CLI commands Date: Thu, 26 Jan 2023 14:12:55 +0000 Message-Id: <20230126141256.380415-11-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230126141256.380415-1-cristian.dumitrescu@intel.com> References: <20230111205608.87953-1-cristian.dumitrescu@intel.com> <20230126141256.380415-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add CLI commands to enable/disable block execution on data plane threads. Signed-off-by: Cristian Dumitrescu Signed-off-by: Kamalakannan R --- examples/pipeline/cli.c | 154 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) diff --git a/examples/pipeline/cli.c b/examples/pipeline/cli.c index d9c325c89c..87f9c0370d 100644 --- a/examples/pipeline/cli.c +++ b/examples/pipeline/cli.c @@ -3253,6 +3253,134 @@ cmd_pipeline_disable(char **tokens, pipeline_disable(p); } +static const char cmd_block_enable_help[] = +"block type instance enable thread \n"; + +static void +cmd_block_enable(char **tokens, + uint32_t n_tokens, + char *out, + size_t out_size, + void *obj __rte_unused) +{ + char *block_type, *block_name; + block_run_f block_func = NULL; + void *block = NULL; + uint32_t thread_id; + int status; + + if (n_tokens != 8) { + snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]); + return; + } + + if (strcmp(tokens[1], "type") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "type"); + return; + } + + block_type = tokens[2]; + + if (strcmp(tokens[3], "instance") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "instance"); + return; + } + + block_name = tokens[4]; + + if (strcmp(tokens[5], "enable") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "enable"); + return; + } + + if (strcmp(tokens[6], "thread") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "thread"); + return; + } + + if (parser_read_uint32(&thread_id, tokens[7]) != 0) { + snprintf(out, out_size, MSG_ARG_INVALID, "thread_id"); + return; + } + + if (!strcmp(block_type, "ipsec")) { + struct rte_swx_ipsec *ipsec; + + ipsec = rte_swx_ipsec_find(block_name); + if (!ipsec) { + snprintf(out, out_size, MSG_ARG_INVALID, "block_name"); + return; + } + + block_func = (block_run_f)rte_swx_ipsec_run; + block = (void *)ipsec; + } else { + snprintf(out, out_size, MSG_ARG_INVALID, "block_type"); + return; + } + + status = block_enable(block_func, block, thread_id); + if (status) { + snprintf(out, out_size, MSG_CMD_FAIL, "block enable"); + return; + } +} + +static const char cmd_block_disable_help[] = +"block type instance disable\n"; + +static void +cmd_block_disable(char **tokens, + uint32_t n_tokens, + char *out, + size_t out_size, + void *obj __rte_unused) +{ + char *block_type, *block_name; + void *block = NULL; + + if (n_tokens != 6) { + snprintf(out, out_size, MSG_ARG_MISMATCH, tokens[0]); + return; + } + + if (strcmp(tokens[1], "type") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "type"); + return; + } + + block_type = tokens[2]; + + if (strcmp(tokens[3], "instance") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "instance"); + return; + } + + block_name = tokens[4]; + + if (strcmp(tokens[5], "disable") != 0) { + snprintf(out, out_size, MSG_ARG_NOT_FOUND, "disable"); + return; + } + + if (!strcmp(block_type, "ipsec")) { + struct rte_swx_ipsec *ipsec; + + ipsec = rte_swx_ipsec_find(block_name); + if (!ipsec) { + snprintf(out, out_size, MSG_ARG_INVALID, "block_name"); + return; + } + + block = (void *)ipsec; + } else { + snprintf(out, out_size, MSG_ARG_INVALID, "block_type"); + return; + } + + block_disable(block); +} + static void cmd_help(char **tokens, uint32_t n_tokens, @@ -3301,6 +3429,8 @@ cmd_help(char **tokens, "\tipsec create\n" "\tipsec sa add\n" "\tipsec sa delete\n" + "\tblock enable\n" + "\tblock disable\n" ); return; } @@ -3556,6 +3686,18 @@ cmd_help(char **tokens, return; } + if (!strcmp(tokens[0], "block") && + (n_tokens == 2) && !strcmp(tokens[1], "enable")) { + snprintf(out, out_size, "\n%s\n", cmd_block_enable_help); + return; + } + + if (!strcmp(tokens[0], "block") && + (n_tokens == 2) && !strcmp(tokens[1], "disable")) { + snprintf(out, out_size, "\n%s\n", cmd_block_disable_help); + return; + } + snprintf(out, out_size, "Invalid command\n"); } @@ -3815,6 +3957,18 @@ cli_process(char *in, char *out, size_t out_size, void *obj) } } + if (!strcmp(tokens[0], "block")) { + if (n_tokens >= 6 && !strcmp(tokens[5], "enable")) { + cmd_block_enable(tokens, n_tokens, out, out_size, obj); + return; + } + + if (n_tokens >= 6 && !strcmp(tokens[5], "disable")) { + cmd_block_disable(tokens, n_tokens, out, out_size, obj); + return; + } + } + snprintf(out, out_size, MSG_CMD_UNKNOWN, tokens[0]); }