From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5D147427E1; Mon, 20 Mar 2023 13:18:44 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3B60640A7F; Mon, 20 Mar 2023 13:18:44 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id C7687406BC for ; Mon, 20 Mar 2023 13:18:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1679314721; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fz6hNnXj9C3Cu5ssoTocpQjua8vohDOM+z3yZOsXk1g=; b=TpUsfdPu7um1oJE/McH5+tm8IB5jByVjRf3h4g5cULied6K58JY3+DckRs3m7YL3wUs1Jg JnT1Zdrc565mI4N7eRn2jqtVGcKlYaSBev9WEpatkOX/K5eBm7tvSBOD6RYe7V4TtahzIw VHyiqDlxFWoOGCwfFXo0vAiK3M6sp8g= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-300-uG6f5y2vOqSu66hiSn8-_A-1; Mon, 20 Mar 2023 08:18:40 -0400 X-MC-Unique: uG6f5y2vOqSu66hiSn8-_A-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A90B196DC81; Mon, 20 Mar 2023 12:18:39 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.224.63]) by smtp.corp.redhat.com (Postfix) with ESMTP id E8300C2120; Mon, 20 Mar 2023 12:18:38 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Srikanth Yalavarthi , Anup Prabhu Subject: [PATCH v2 1/2] app/mldev: fix build with debug Date: Mon, 20 Mar 2023 13:18:32 +0100 Message-Id: <20230320121833.1385859-1-david.marchand@redhat.com> In-Reply-To: <20230320102624.1258816-1-david.marchand@redhat.com> References: <20230320102624.1258816-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.5 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Compiling with -O0 and -g triggers these warnings: ../app/test-mldev/test_inference_common.c: In function ‘ml_request_finish’: ../app/test-mldev/test_inference_common.c:946:51: error: ‘.q.’ directive output may be truncated writing 3 bytes into a region of size between 0 and 4095 [-Werror=format-truncation=] 946 | snprintf(str, sizeof(str) - 1, "%s.q.%d", | ^~~ t->cmn.opt->filelist[req->fid].output, obj_idx); ../app/test-mldev/test_inference_common.c:946:48: note: using the range [-2147483648, 2147483647] for directive argument 946 | snprintf(str, sizeof(str) - 1, "%s.q.%d", | ^~~~~~~~~ t->cmn.opt->filelist[req->fid].output, obj_idx); ../app/test-mldev/test_inference_common.c:946:17: note: ‘snprintf’ output between 5 and 4110 bytes into a destination of size 4095 946 | snprintf(str, sizeof(str) - 1, "%s.q.%d", | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ t->cmn.opt->filelist[req->fid].output, obj_idx); ../app/test-mldev/test_inference_common.c:952:51: error: ‘.’ directive output may be truncated writing 1 byte into a region of size between 0 and 4095 [-Werror=format-truncation=] 952 | snprintf(str, sizeof(str) - 1, "%s.%d", | ^ t->cmn.opt->filelist[req->fid].output, obj_idx); ../app/test-mldev/test_inference_common.c:952:48: note: using the range [-2147483648, 2147483647] for directive argument 952 | snprintf(str, sizeof(str) - 1, "%s.%d", | ^~~~~~~ t->cmn.opt->filelist[req->fid].output, obj_idx); ../app/test-mldev/test_inference_common.c:952:17: note: ‘snprintf’ output between 3 and 4108 bytes into a destination of size 4095 952 | snprintf(str, sizeof(str) - 1, "%s.%d", | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ t->cmn.opt->filelist[req->fid].output, obj_idx); ../app/test-mldev/test_inference_common.c:929:51: error: ‘.q’ directive output may be truncated writing 2 bytes into a region of size between 0 and 4095 [-Werror=format-truncation=] 929 | snprintf(str, sizeof(str) - 1, "%s.q", | ^~ t->cmn.opt->filelist[req->fid].output); ../app/test-mldev/test_inference_common.c:929:17: note: ‘snprintf’ output between 3 and 4098 bytes into a destination of size 4095 929 | snprintf(str, sizeof(str) - 1, "%s.q", | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ t->cmn.opt->filelist[req->fid].output); ../app/test-mldev/test_inference_common.c:935:51: error: ‘snprintf’ output may be truncated before the last format character [-Werror=format-truncation=] 935 | snprintf(str, sizeof(str) - 1, "%s", | ^ t->cmn.opt->filelist[req->fid].output); ../app/test-mldev/test_inference_common.c:935:17: note: ‘snprintf’ output between 1 and 4096 bytes into a destination of size 4095 935 | snprintf(str, sizeof(str) - 1, "%s", | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ t->cmn.opt->filelist[req->fid].output); Fix unsigned integer format, and switch to dynamic allocations. Fixes: da6793390596 ("app/mldev: support inference validation") Signed-off-by: David Marchand Acked-by: Srikanth Yalavarthi --- Changes since v1: - updated integer format as mentionned in v1 commitlog, --- app/test-mldev/test_inference_common.c | 29 ++++++++++++++++++-------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/app/test-mldev/test_inference_common.c b/app/test-mldev/test_inference_common.c index e85f32be60..eba37c50e9 100644 --- a/app/test-mldev/test_inference_common.c +++ b/app/test-mldev/test_inference_common.c @@ -3,6 +3,7 @@ */ #include +#include #include #include @@ -901,8 +902,8 @@ ml_request_finish(struct rte_mempool *mp, void *opaque, void *obj, unsigned int struct test_inference *t = ml_test_priv((struct ml_test *)opaque); struct ml_request *req = (struct ml_request *)obj; struct ml_model *model = &t->model[req->fid]; - char str[PATH_MAX]; bool error = false; + char *dump_path; RTE_SET_USED(mp); @@ -926,14 +927,18 @@ ml_request_finish(struct rte_mempool *mp, void *opaque, void *obj, unsigned int dump_output_pass: if (obj_idx == 0) { /* write quantized output */ - snprintf(str, PATH_MAX, "%s.q", t->cmn.opt->filelist[req->fid].output); - ML_OPEN_WRITE_GET_ERR(str, req->output, model->out_qsize, error); + if (asprintf(&dump_path, "%s.q", t->cmn.opt->filelist[req->fid].output) == -1) + return; + ML_OPEN_WRITE_GET_ERR(dump_path, req->output, model->out_qsize, error); + free(dump_path); if (error) return; /* write dequantized output */ - snprintf(str, PATH_MAX, "%s", t->cmn.opt->filelist[req->fid].output); - ML_OPEN_WRITE_GET_ERR(str, model->output, model->out_dsize, error); + if (asprintf(&dump_path, "%s", t->cmn.opt->filelist[req->fid].output) == -1) + return; + ML_OPEN_WRITE_GET_ERR(dump_path, model->output, model->out_dsize, error); + free(dump_path); if (error) return; } @@ -943,14 +948,20 @@ ml_request_finish(struct rte_mempool *mp, void *opaque, void *obj, unsigned int dump_output_fail: if (t->cmn.opt->debug) { /* dump quantized output buffer */ - snprintf(str, PATH_MAX, "%s.q.%d", t->cmn.opt->filelist[req->fid].output, obj_idx); - ML_OPEN_WRITE_GET_ERR(str, req->output, model->out_qsize, error); + if (asprintf(&dump_path, "%s.q.%u", t->cmn.opt->filelist[req->fid].output, + obj_idx) == -1) + return; + ML_OPEN_WRITE_GET_ERR(dump_path, req->output, model->out_qsize, error); + free(dump_path); if (error) return; /* dump dequantized output buffer */ - snprintf(str, PATH_MAX, "%s.%d", t->cmn.opt->filelist[req->fid].output, obj_idx); - ML_OPEN_WRITE_GET_ERR(str, model->output, model->out_dsize, error); + if (asprintf(&dump_path, "%s.%u", t->cmn.opt->filelist[req->fid].output, + obj_idx) == -1) + return; + ML_OPEN_WRITE_GET_ERR(dump_path, model->output, model->out_dsize, error); + free(dump_path); if (error) return; } -- 2.39.2