[dpdk-dev] examples/flow_classify: fix fseek error handling

Message ID 1509538229-1354-1-git-send-email-bernard.iremonger@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Iremonger, Bernard Nov. 1, 2017, 12:10 p.m. UTC
  Check return value of fseek and exit if non zero.

Coverity issue: 143435

Fixes: bab16ddaf2c1 ("examples/flow_classify: add sample application")
Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
---
 examples/flow_classify/flow_classify.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
  

Comments

Jasvinder Singh Nov. 3, 2017, 12:13 p.m. UTC | #1
> -----Original Message-----
> From: Iremonger, Bernard
> Sent: Wednesday, November 1, 2017 12:10 PM
> To: dev@dpdk.org; Singh, Jasvinder <jasvinder.singh@intel.com>
> Cc: Iremonger, Bernard <bernard.iremonger@intel.com>
> Subject: [PATCH] examples/flow_classify: fix fseek error handling
> 
> Check return value of fseek and exit if non zero.
> 
> Coverity issue: 143435
> 
> Fixes: bab16ddaf2c1 ("examples/flow_classify: add sample application")
> Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
> ---
>  examples/flow_classify/flow_classify.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/examples/flow_classify/flow_classify.c
> b/examples/flow_classify/flow_classify.c
> index e4cabdb..766f1dd 100644
> --- a/examples/flow_classify/flow_classify.c
> +++ b/examples/flow_classify/flow_classify.c
> @@ -657,13 +657,17 @@ static __attribute__((noreturn)) void
>  	unsigned int i = 0;
>  	unsigned int total_num = 0;
>  	struct rte_eth_ntuple_filter ntuple_filter;
> +	int ret;
> 
>  	fh = fopen(rule_path, "rb");
>  	if (fh == NULL)
> -		rte_exit(EXIT_FAILURE, "%s: Open %s failed\n", __func__,
> +		rte_exit(EXIT_FAILURE, "%s: fopen %s failed\n", __func__,
>  			rule_path);
> 
> -	fseek(fh, 0, SEEK_SET);
> +	ret = fseek(fh, 0, SEEK_SET);
> +	if (ret)
> +		rte_exit(EXIT_FAILURE, "%s: fseek %d failed\n", __func__,
> +			ret);
> 
>  	i = 0;
>  	while (fgets(buff, LINE_MAX, fh) != NULL) {
> --
> 1.9.1

Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>
  
Ferruh Yigit Nov. 7, 2017, 8:22 a.m. UTC | #2
On 11/3/2017 5:13 AM, Singh, Jasvinder wrote:
> 
> 
>> -----Original Message-----
>> From: Iremonger, Bernard
>> Sent: Wednesday, November 1, 2017 12:10 PM
>> To: dev@dpdk.org; Singh, Jasvinder <jasvinder.singh@intel.com>
>> Cc: Iremonger, Bernard <bernard.iremonger@intel.com>
>> Subject: [PATCH] examples/flow_classify: fix fseek error handling
>>
>> Check return value of fseek and exit if non zero.
>>
>> Coverity issue: 143435
>>
>> Fixes: bab16ddaf2c1 ("examples/flow_classify: add sample application")
>> Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>

> Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>

Applied to dpdk-next-net/master, thanks.
  

Patch

diff --git a/examples/flow_classify/flow_classify.c b/examples/flow_classify/flow_classify.c
index e4cabdb..766f1dd 100644
--- a/examples/flow_classify/flow_classify.c
+++ b/examples/flow_classify/flow_classify.c
@@ -657,13 +657,17 @@  static __attribute__((noreturn)) void
 	unsigned int i = 0;
 	unsigned int total_num = 0;
 	struct rte_eth_ntuple_filter ntuple_filter;
+	int ret;
 
 	fh = fopen(rule_path, "rb");
 	if (fh == NULL)
-		rte_exit(EXIT_FAILURE, "%s: Open %s failed\n", __func__,
+		rte_exit(EXIT_FAILURE, "%s: fopen %s failed\n", __func__,
 			rule_path);
 
-	fseek(fh, 0, SEEK_SET);
+	ret = fseek(fh, 0, SEEK_SET);
+	if (ret)
+		rte_exit(EXIT_FAILURE, "%s: fseek %d failed\n", __func__,
+			ret);
 
 	i = 0;
 	while (fgets(buff, LINE_MAX, fh) != NULL) {