Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp1450008ybv; Thu, 13 Feb 2020 23:40:32 -0800 (PST) X-Google-Smtp-Source: APXvYqyVdt4zop0OHNdGYbE7DE41E/uP//vFlianC/9puFGiuWKb2+LWgI70MPLA7YTlC0+YUmWn X-Received: by 2002:a05:6830:1689:: with SMTP id k9mr1247518otr.311.1581666032310; Thu, 13 Feb 2020 23:40:32 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1581666032; cv=none; d=google.com; s=arc-20160816; b=tPiB6nTHFVIg5NHwysGdncwtbJdwVwyCMbl9DLlcaiX0uwn2Zywcn6QE8VI5o5DOvA Zf1ZYpAErR1YypP7UG1Jc/4Qj4wDWDLa6/p881BKJGdmmNOYQmH/sa+Pw8FKgIKAfk3Z KP5S0cBmmmC/TH0idXsNmHI3gfcupir+1NJtLq+t4AuCRVo6mT2+E2r7uTwvbhLdQ8hZ 399m9+dOZGOZpRz9bmqMmmoPOoWxXSSHQZso47Ai8pOdIY5w0gQXgbbTXwLWYPtSwvg3 dVO1T4eEA3hwcAbO6sh5KMp9ifZ6RpmFvDer7fbDsqn8NHAorhrK6SpLk6t6EC2+Ei9x iiBg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:to:from; bh=Lhb2o3QHP/8fSRC3KErxzrJUWxSonKW6gx1oHlkPFf4=; b=F2bCJ9B7g+v7kSmdGf4MsDRYHbu7EJGiDtlSkIL6IK7KGWV+wjpdKGmAuWtk6jPIGO T65kGGb6IBYrNnxPt2Ge6s1BOg7kldJ+FLD0fg278E3HUEaQcwH2JXt8T8q/rJCT+Vmf f3HHwmVkmo2+grluannqn23gBlE0Uj/046UFr90R6tyo9Cj9UmOnjPKJ6H9ioF+Rj3TX 8w4gKFSrSH38MevKqiBx0C4CEbyzD05Yb5zW+ehRBsVnWl58yzpTHlbDXCEpxMDHOnIX MM8T6SW+uJJxqaLBnkBY6MYhCmcwjmFqgqPBVLwBkZeeaMUusqmlRNm/tOysiwqXMv88 bcFA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b5si1671192ots.78.2020.02.13.23.40.19; Thu, 13 Feb 2020 23:40:32 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728932AbgBNHjB (ORCPT + 99 others); Fri, 14 Feb 2020 02:39:01 -0500 Received: from mail.windriver.com ([147.11.1.11]:49580 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728773AbgBNHjB (ORCPT ); Fri, 14 Feb 2020 02:39:01 -0500 Received: from ALA-HCB.corp.ad.wrs.com (ala-hcb.corp.ad.wrs.com [147.11.189.41]) by mail.windriver.com (8.15.2/8.15.2) with ESMTPS id 01E7VTAM010691 (version=TLSv1 cipher=AES256-SHA bits=256 verify=FAIL); Thu, 13 Feb 2020 23:31:29 -0800 (PST) Received: from pek-lpg-core2.corp.ad.wrs.com (128.224.153.41) by ALA-HCB.corp.ad.wrs.com (147.11.189.41) with Microsoft SMTP Server id 14.3.468.0; Thu, 13 Feb 2020 23:31:28 -0800 From: To: , , , , , Subject: [PATCH] tools lib traceevent: Take care of return value of asprintf Date: Fri, 14 Feb 2020 15:31:26 +0800 Message-ID: <1581665486-20386-1-git-send-email-zhe.he@windriver.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: He Zhe According to the API, if memory allocation wasn't possible, or some other error occurs, asprintf will return -1, and the contents of strp below are undefined. int asprintf(char **strp, const char *fmt, ...); This patch takes care of return value of asprintf to make it less error prone and prevent the following build warning. ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result] Signed-off-by: He Zhe --- tools/lib/traceevent/parse-filter.c | 42 +++++++++++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/tools/lib/traceevent/parse-filter.c b/tools/lib/traceevent/parse-filter.c index 20eed71..279b572 100644 --- a/tools/lib/traceevent/parse-filter.c +++ b/tools/lib/traceevent/parse-filter.c @@ -1912,6 +1912,7 @@ static char *op_to_str(struct tep_event_filter *filter, struct tep_filter_arg *a int left_val = -1; int right_val = -1; int val; + int ret; switch (arg->op.type) { case TEP_FILTER_OP_AND: @@ -1958,7 +1959,9 @@ static char *op_to_str(struct tep_event_filter *filter, struct tep_filter_arg *a default: break; } - asprintf(&str, val ? "TRUE" : "FALSE"); + ret = asprintf(&str, val ? "TRUE" : "FALSE"); + if (ret < 0) + str = NULL; break; } } @@ -1976,7 +1979,9 @@ static char *op_to_str(struct tep_event_filter *filter, struct tep_filter_arg *a break; } - asprintf(&str, "(%s) %s (%s)", left, op, right); + ret = asprintf(&str, "(%s) %s (%s)", left, op, right); + if (ret < 0) + str = NULL; break; case TEP_FILTER_OP_NOT: @@ -1992,10 +1997,14 @@ static char *op_to_str(struct tep_event_filter *filter, struct tep_filter_arg *a right_val = 0; if (right_val >= 0) { /* just return the opposite */ - asprintf(&str, right_val ? "FALSE" : "TRUE"); + ret = asprintf(&str, right_val ? "FALSE" : "TRUE"); + if (ret < 0) + str = NULL; break; } - asprintf(&str, "%s(%s)", op, right); + ret = asprintf(&str, "%s(%s)", op, right); + if (ret < 0) + str = NULL; break; default: @@ -2010,8 +2019,11 @@ static char *op_to_str(struct tep_event_filter *filter, struct tep_filter_arg *a static char *val_to_str(struct tep_event_filter *filter, struct tep_filter_arg *arg) { char *str = NULL; + int ret; - asprintf(&str, "%lld", arg->value.val); + ret = asprintf(&str, "%lld", arg->value.val); + if (ret < 0) + str = NULL; return str; } @@ -2027,6 +2039,7 @@ static char *exp_to_str(struct tep_event_filter *filter, struct tep_filter_arg * char *rstr; char *op; char *str = NULL; + int ret; lstr = arg_to_str(filter, arg->exp.left); rstr = arg_to_str(filter, arg->exp.right); @@ -2069,7 +2082,9 @@ static char *exp_to_str(struct tep_event_filter *filter, struct tep_filter_arg * break; } - asprintf(&str, "%s %s %s", lstr, op, rstr); + ret = asprintf(&str, "%s %s %s", lstr, op, rstr); + if (ret < 0) + str = NULL; out: free(lstr); free(rstr); @@ -2083,6 +2098,7 @@ static char *num_to_str(struct tep_event_filter *filter, struct tep_filter_arg * char *rstr; char *str = NULL; char *op = NULL; + int ret; lstr = arg_to_str(filter, arg->num.left); rstr = arg_to_str(filter, arg->num.right); @@ -2113,7 +2129,9 @@ static char *num_to_str(struct tep_event_filter *filter, struct tep_filter_arg * if (!op) op = "<="; - asprintf(&str, "%s %s %s", lstr, op, rstr); + ret = asprintf(&str, "%s %s %s", lstr, op, rstr); + if (ret < 0) + str = NULL; break; default: @@ -2131,6 +2149,7 @@ static char *str_to_str(struct tep_event_filter *filter, struct tep_filter_arg * { char *str = NULL; char *op = NULL; + int ret; switch (arg->str.type) { case TEP_FILTER_CMP_MATCH: @@ -2148,8 +2167,10 @@ static char *str_to_str(struct tep_event_filter *filter, struct tep_filter_arg * if (!op) op = "!~"; - asprintf(&str, "%s %s \"%s\"", + ret = asprintf(&str, "%s %s \"%s\"", arg->str.field->name, op, arg->str.val); + if (ret < 0) + str = NULL; break; default: @@ -2162,10 +2183,13 @@ static char *str_to_str(struct tep_event_filter *filter, struct tep_filter_arg * static char *arg_to_str(struct tep_event_filter *filter, struct tep_filter_arg *arg) { char *str = NULL; + int ret; switch (arg->type) { case TEP_FILTER_ARG_BOOLEAN: - asprintf(&str, arg->boolean.value ? "TRUE" : "FALSE"); + ret = asprintf(&str, arg->boolean.value ? "TRUE" : "FALSE"); + if (ret < 0) + str = NULL; return str; case TEP_FILTER_ARG_OP: -- 2.7.4