Blame SOURCES/0018-conntrack-fix-compiler-warnings.patch

d202f6
From 6dda36aceaedf88b33e5a2cf216bbd3b047611a6 Mon Sep 17 00:00:00 2001
d202f6
From: Florian Westphal <fw@strlen.de>
d202f6
Date: Mon, 17 Jan 2022 16:42:52 +0100
d202f6
Subject: [PATCH] conntrack: fix compiler warnings
d202f6
d202f6
.... those do not indicate bugs, but they are distracting.
d202f6
d202f6
'exp_filter_add' at filter.c:513:2:
d202f6
__builtin_strncpy specified bound 16 equals destination size [-Wstringop-truncation]
d202f6
d202f6
This warning is because the size argument passed to strncpy() is
d202f6
identical to buffer size, i.e. if hit the resulting string is not
d202f6
0-terminated.
d202f6
d202f6
read_config_yy.y:1625: warning: '__builtin_snprintf' output may be truncated before the last format character [-Wformat-truncation=]
d202f6
 1625 |         snprintf(policy->name, CTD_HELPER_NAME_LEN, "%s", $2);
d202f6
read_config_yy.y:1399: warning: '__builtin_snprintf' output may be ...
d202f6
 1399 |         snprintf(conf.stats.logfile, FILENAME_MAXLEN, "%s", $2);
d202f6
read_config_yy.y:707: warning: '__builtin_snprintf' output may be ...
d202f6
  707 |         snprintf(conf.local.path, UNIX_PATH_MAX, "%s", $2);
d202f6
read_config_yy.y:179: warning: '__builtin_snprintf' output may be ...
d202f6
  179 |         snprintf(conf.lockfile, FILENAME_MAXLEN, "%s", $2);
d202f6
read_config_yy.y:124: warning: '__builtin_snprintf' output may be ...
d202f6
  124 |         snprintf(conf.logfile, FILENAME_MAXLEN, "%s", $2);
d202f6
d202f6
... its because the _MAXLEN constants are one less than the output
d202f6
buffer size, i.e. could use either .._MAXLEN + 1 or sizeof, this uses
d202f6
sizeof().
d202f6
d202f6
Signed-off-by: Florian Westphal <fw@strlen.de>
d202f6
(cherry picked from commit 5f15bb47bbcdb7581c80c5e488cd109450494ec2)
d202f6
---
d202f6
 src/filter.c         |  2 +-
d202f6
 src/read_config_yy.y | 10 +++++-----
d202f6
 2 files changed, 6 insertions(+), 6 deletions(-)
d202f6
d202f6
diff --git a/src/filter.c b/src/filter.c
d202f6
index 00a5e96ecc248..9f961b1fe5b1b 100644
d202f6
--- a/src/filter.c
d202f6
+++ b/src/filter.c
d202f6
@@ -470,7 +470,7 @@ struct exp_filter *exp_filter_create(void)
d202f6
 
d202f6
 struct exp_filter_item {
d202f6
 	struct list_head	head;
d202f6
-	char			helper_name[NFCT_HELPER_NAME_MAX];
d202f6
+	char			helper_name[NFCT_HELPER_NAME_MAX + 1];
d202f6
 };
d202f6
 
d202f6
 /* this is ugly, but it simplifies read_config_yy.y */
d202f6
diff --git a/src/read_config_yy.y b/src/read_config_yy.y
d202f6
index d963c494be1fc..401a1575014d0 100644
d202f6
--- a/src/read_config_yy.y
d202f6
+++ b/src/read_config_yy.y
d202f6
@@ -121,7 +121,7 @@ logfile_path : T_LOG T_PATH_VAL
d202f6
 		     FILENAME_MAXLEN);
d202f6
 		exit(EXIT_FAILURE);
d202f6
 	}
d202f6
-	snprintf(conf.logfile, FILENAME_MAXLEN, "%s", $2);
d202f6
+	snprintf(conf.logfile, sizeof(conf.logfile), "%s", $2);
d202f6
 	free($2);
d202f6
 };
d202f6
 
d202f6
@@ -176,7 +176,7 @@ lock : T_LOCK T_PATH_VAL
d202f6
 		     FILENAME_MAXLEN);
d202f6
 		exit(EXIT_FAILURE);
d202f6
 	}
d202f6
-	snprintf(conf.lockfile, FILENAME_MAXLEN, "%s", $2);
d202f6
+	snprintf(conf.lockfile, sizeof(conf.lockfile), "%s", $2);
d202f6
 	free($2);
d202f6
 };
d202f6
 
d202f6
@@ -704,7 +704,7 @@ unix_option : T_PATH T_PATH_VAL
d202f6
 		     UNIX_PATH_MAX);
d202f6
 		exit(EXIT_FAILURE);
d202f6
 	}
d202f6
-	snprintf(conf.local.path, UNIX_PATH_MAX, "%s", $2);
d202f6
+	snprintf(conf.local.path, sizeof(conf.local.path), "%s", $2);
d202f6
 	free($2);
d202f6
 };
d202f6
 
d202f6
@@ -1396,7 +1396,7 @@ stat_logfile_path : T_LOG T_PATH_VAL
d202f6
 		     FILENAME_MAXLEN);
d202f6
 		exit(EXIT_FAILURE);
d202f6
 	}
d202f6
-	snprintf(conf.stats.logfile, FILENAME_MAXLEN, "%s", $2);
d202f6
+	snprintf(conf.stats.logfile, sizeof(conf.stats.logfile), "%s", $2);
d202f6
 	free($2);
d202f6
 };
d202f6
 
d202f6
@@ -1611,7 +1611,7 @@ helper_type: T_HELPER_POLICY T_STRING '{' helper_policy_list '}'
d202f6
 	}
d202f6
 
d202f6
 	policy = (struct ctd_helper_policy *) &e->data;
d202f6
-	snprintf(policy->name, CTD_HELPER_NAME_LEN, "%s", $2);
d202f6
+	snprintf(policy->name, sizeof(policy->name), "%s", $2);
d202f6
 	free($2);
d202f6
 	/* Now object is complete. */
d202f6
 	e->type = SYMBOL_HELPER_POLICY_EXPECT_ROOT;
d202f6
-- 
d202f6
2.34.1
d202f6