linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Remove a number of stringop-truncation warnings
@ 2018-06-05 15:30 Steve Dickson
  2018-06-05 15:30 ` [PATCH 2/2] Remove a number of stringop-overflow warnings Steve Dickson
  2018-06-05 17:22 ` [PATCH 1/2] Remove a number of stringop-truncation warnings Steve Dickson
  0 siblings, 2 replies; 4+ messages in thread
From: Steve Dickson @ 2018-06-05 15:30 UTC (permalink / raw)
  To: Linux NFS Mailing list

client.c:486:3: warning: ‘strncpy’ destination unchanged after
	copying no bytes [-Wstringop-truncation]

file.c:99:2: warning: ‘strncpy’ specified bound 4096
	equals destination size [-Wstringop-truncation]

v4root.c:95:2: warning: ‘strncpy’ specified bound 1025
	equals destination size [-Wstringop-truncation]

sm-notify.c:572:3: warning: ‘strncpy’ specified bound 1025
	equals destination size [-Wstringop-truncation]

nfs4mount.c:221:3: warning: ‘strncpy’ specified bound 1024
	equals destination size [-Wstringop-truncation]

nfsmount.c:831:2: warning: ‘strncpy’ specified bound 256
	equals destination size [-Wstringop-truncation]

Signed-off-by: Steve Dickson <steved@redhat.com>
---
 support/export/client.c | 5 +++--
 support/misc/file.c     | 2 +-
 utils/mount/nfs4mount.c | 2 +-
 utils/mount/nfsmount.c  | 2 +-
 utils/mountd/v4root.c   | 2 +-
 utils/statd/sm-notify.c | 2 +-
 6 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/support/export/client.c b/support/export/client.c
index 2346f99..baf59c8 100644
--- a/support/export/client.c
+++ b/support/export/client.c
@@ -482,8 +482,9 @@ add_name(char *old, const char *add)
 		else
 			cp = cp + strlen(cp);
 	}
-	if (old) {
-		strncpy(new, old, cp-old);
+	len = cp-old;
+	if (old && len > 0) {
+		strncpy(new, old, len);
 		new[cp-old] = 0;
 	} else {
 		new[0] = 0;
diff --git a/support/misc/file.c b/support/misc/file.c
index 63597df..4065376 100644
--- a/support/misc/file.c
+++ b/support/misc/file.c
@@ -96,7 +96,7 @@ generic_setup_basedir(const char *progname, const char *parentdir, char *base,
 	}
 
 	/* Ensure we have a clean directory pathname */
-	strncpy(buf, parentdir, sizeof(buf));
+	strncpy(buf, parentdir, sizeof(buf)-1);
 	path = dirname(buf);
 	if (*path == '.') {
 		(void)fprintf(stderr, "%s: Unusable directory %s",
diff --git a/utils/mount/nfs4mount.c b/utils/mount/nfs4mount.c
index 89629ed..3e4f1e2 100644
--- a/utils/mount/nfs4mount.c
+++ b/utils/mount/nfs4mount.c
@@ -218,7 +218,7 @@ int nfs4mount(const char *spec, const char *node, int flags,
 		goto fail;
 	}
 	if (running_bg)
-		strncpy(new_opts, old_opts, sizeof(new_opts));
+		strncpy(new_opts, old_opts, sizeof(new_opts)-1);
 	else
 		snprintf(new_opts, sizeof(new_opts), "%s%saddr=%s",
 			 old_opts, *old_opts ? "," : "", s);
diff --git a/utils/mount/nfsmount.c b/utils/mount/nfsmount.c
index ae4a3da..952a755 100644
--- a/utils/mount/nfsmount.c
+++ b/utils/mount/nfsmount.c
@@ -828,7 +828,7 @@ noauth_flavors:
 
 	data.fd = fsock;
 	memcpy((char *) &data.addr, (char *) nfs_saddr, sizeof(data.addr));
-	strncpy(data.hostname, hostname, sizeof(data.hostname));
+	strncpy(data.hostname, hostname, sizeof(data.hostname)-1);
 
  out_ok:
 	/* Ensure we have enough padding for the following strcat()s */
diff --git a/utils/mountd/v4root.c b/utils/mountd/v4root.c
index f978f4c..d735dbf 100644
--- a/utils/mountd/v4root.c
+++ b/utils/mountd/v4root.c
@@ -92,7 +92,7 @@ v4root_create(char *path, nfs_export *export)
 
 	dupexportent(&eep, &pseudo_root.m_export);
 	eep.e_hostname = curexp->e_hostname;
-	strncpy(eep.e_path, path, sizeof(eep.e_path));
+	strncpy(eep.e_path, path, sizeof(eep.e_path)-1);
 	if (strcmp(path, "/") != 0)
 		eep.e_flags &= ~NFSEXP_FSID;
 	set_pseudofs_security(&eep, curexp->e_flags);
diff --git a/utils/statd/sm-notify.c b/utils/statd/sm-notify.c
index 6d19ec1..7a48473 100644
--- a/utils/statd/sm-notify.c
+++ b/utils/statd/sm-notify.c
@@ -569,7 +569,7 @@ usage:		fprintf(stderr,
 		if (name == NULL)
 			exit(1);
 
-		strncpy(nsm_hostname, name, sizeof(nsm_hostname));
+		strncpy(nsm_hostname, name, sizeof(nsm_hostname)-1);
 		free(name);
 	}
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] Remove a number of stringop-overflow warnings
  2018-06-05 15:30 [PATCH 1/2] Remove a number of stringop-truncation warnings Steve Dickson
@ 2018-06-05 15:30 ` Steve Dickson
  2018-06-05 17:22   ` Steve Dickson
  2018-06-05 17:22 ` [PATCH 1/2] Remove a number of stringop-truncation warnings Steve Dickson
  1 sibling, 1 reply; 4+ messages in thread
From: Steve Dickson @ 2018-06-05 15:30 UTC (permalink / raw)
  To: Linux NFS Mailing list

umich_ldap.c:1128:3: warning: ‘strncat’ specified bound 128
	equals destination size [-Wstringop-overflow=]

umich_ldap.c:1130:3: warning: ‘strncat’ specified bound 128
	equals destination size [-Wstringop-overflow=]

idmapd.c:313:2: warning: ‘strncat’ specified bound 4096
	equals destination size [-Wstringop-overflow=]

Signed-off-by: Steve Dickson <steved@redhat.com>
---
 support/nfsidmap/umich_ldap.c | 4 ++--
 utils/idmapd/idmapd.c         | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/support/nfsidmap/umich_ldap.c b/support/nfsidmap/umich_ldap.c
index 0e31b1c..b661110 100644
--- a/support/nfsidmap/umich_ldap.c
+++ b/support/nfsidmap/umich_ldap.c
@@ -1125,9 +1125,9 @@ umichldap_init(void)
 
 	/* Verify required information is supplied */
 	if (server_in == NULL || strlen(server_in) == 0)
-		strncat(missing_msg, "LDAP_server ", sizeof(missing_msg));
+		strncat(missing_msg, "LDAP_server ", sizeof(missing_msg)-1);
 	if (ldap_info.base == NULL || strlen(ldap_info.base) == 0)
-		strncat(missing_msg, "LDAP_base ", sizeof(missing_msg));
+		strncat(missing_msg, "LDAP_base ", sizeof(missing_msg)-1);
 	if (strlen(missing_msg) != 0) {
 		IDMAP_LOG(0, ("umichldap_init: Missing required information: "
 			  "%s", missing_msg));
diff --git a/utils/idmapd/idmapd.c b/utils/idmapd/idmapd.c
index 2585fb2..4811e0f 100644
--- a/utils/idmapd/idmapd.c
+++ b/utils/idmapd/idmapd.c
@@ -310,7 +310,7 @@ main(int argc, char **argv)
 	if (!serverstart && !clientstart)
 		errx(1, "it is illegal to specify both -C and -S");
 
-	strncat(pipefsdir, "/nfs", sizeof(pipefsdir));
+	strncat(pipefsdir, "/nfs", sizeof(pipefsdir)-1);
 
 	daemon_init(fg);
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] Remove a number of stringop-truncation warnings
  2018-06-05 15:30 [PATCH 1/2] Remove a number of stringop-truncation warnings Steve Dickson
  2018-06-05 15:30 ` [PATCH 2/2] Remove a number of stringop-overflow warnings Steve Dickson
@ 2018-06-05 17:22 ` Steve Dickson
  1 sibling, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2018-06-05 17:22 UTC (permalink / raw)
  To: Linux NFS Mailing list



On 06/05/2018 11:30 AM, Steve Dickson wrote:
> client.c:486:3: warning: ‘strncpy’ destination unchanged after
> 	copying no bytes [-Wstringop-truncation]
> 
> file.c:99:2: warning: ‘strncpy’ specified bound 4096
> 	equals destination size [-Wstringop-truncation]
> 
> v4root.c:95:2: warning: ‘strncpy’ specified bound 1025
> 	equals destination size [-Wstringop-truncation]
> 
> sm-notify.c:572:3: warning: ‘strncpy’ specified bound 1025
> 	equals destination size [-Wstringop-truncation]
> 
> nfs4mount.c:221:3: warning: ‘strncpy’ specified bound 1024
> 	equals destination size [-Wstringop-truncation]
> 
> nfsmount.c:831:2: warning: ‘strncpy’ specified bound 256
> 	equals destination size [-Wstringop-truncation]
> 
> Signed-off-by: Steve Dickson <steved@redhat.com>
> ---
>  support/export/client.c | 5 +++--
>  support/misc/file.c     | 2 +-
>  utils/mount/nfs4mount.c | 2 +-
>  utils/mount/nfsmount.c  | 2 +-
>  utils/mountd/v4root.c   | 2 +-
>  utils/statd/sm-notify.c | 2 +-
>  6 files changed, 8 insertions(+), 7 deletions(-)
Committed... 

steved.

> 
> diff --git a/support/export/client.c b/support/export/client.c
> index 2346f99..baf59c8 100644
> --- a/support/export/client.c
> +++ b/support/export/client.c
> @@ -482,8 +482,9 @@ add_name(char *old, const char *add)
>  		else
>  			cp = cp + strlen(cp);
>  	}
> -	if (old) {
> -		strncpy(new, old, cp-old);
> +	len = cp-old;
> +	if (old && len > 0) {
> +		strncpy(new, old, len);
>  		new[cp-old] = 0;
>  	} else {
>  		new[0] = 0;
> diff --git a/support/misc/file.c b/support/misc/file.c
> index 63597df..4065376 100644
> --- a/support/misc/file.c
> +++ b/support/misc/file.c
> @@ -96,7 +96,7 @@ generic_setup_basedir(const char *progname, const char *parentdir, char *base,
>  	}
>  
>  	/* Ensure we have a clean directory pathname */
> -	strncpy(buf, parentdir, sizeof(buf));
> +	strncpy(buf, parentdir, sizeof(buf)-1);
>  	path = dirname(buf);
>  	if (*path == '.') {
>  		(void)fprintf(stderr, "%s: Unusable directory %s",
> diff --git a/utils/mount/nfs4mount.c b/utils/mount/nfs4mount.c
> index 89629ed..3e4f1e2 100644
> --- a/utils/mount/nfs4mount.c
> +++ b/utils/mount/nfs4mount.c
> @@ -218,7 +218,7 @@ int nfs4mount(const char *spec, const char *node, int flags,
>  		goto fail;
>  	}
>  	if (running_bg)
> -		strncpy(new_opts, old_opts, sizeof(new_opts));
> +		strncpy(new_opts, old_opts, sizeof(new_opts)-1);
>  	else
>  		snprintf(new_opts, sizeof(new_opts), "%s%saddr=%s",
>  			 old_opts, *old_opts ? "," : "", s);
> diff --git a/utils/mount/nfsmount.c b/utils/mount/nfsmount.c
> index ae4a3da..952a755 100644
> --- a/utils/mount/nfsmount.c
> +++ b/utils/mount/nfsmount.c
> @@ -828,7 +828,7 @@ noauth_flavors:
>  
>  	data.fd = fsock;
>  	memcpy((char *) &data.addr, (char *) nfs_saddr, sizeof(data.addr));
> -	strncpy(data.hostname, hostname, sizeof(data.hostname));
> +	strncpy(data.hostname, hostname, sizeof(data.hostname)-1);
>  
>   out_ok:
>  	/* Ensure we have enough padding for the following strcat()s */
> diff --git a/utils/mountd/v4root.c b/utils/mountd/v4root.c
> index f978f4c..d735dbf 100644
> --- a/utils/mountd/v4root.c
> +++ b/utils/mountd/v4root.c
> @@ -92,7 +92,7 @@ v4root_create(char *path, nfs_export *export)
>  
>  	dupexportent(&eep, &pseudo_root.m_export);
>  	eep.e_hostname = curexp->e_hostname;
> -	strncpy(eep.e_path, path, sizeof(eep.e_path));
> +	strncpy(eep.e_path, path, sizeof(eep.e_path)-1);
>  	if (strcmp(path, "/") != 0)
>  		eep.e_flags &= ~NFSEXP_FSID;
>  	set_pseudofs_security(&eep, curexp->e_flags);
> diff --git a/utils/statd/sm-notify.c b/utils/statd/sm-notify.c
> index 6d19ec1..7a48473 100644
> --- a/utils/statd/sm-notify.c
> +++ b/utils/statd/sm-notify.c
> @@ -569,7 +569,7 @@ usage:		fprintf(stderr,
>  		if (name == NULL)
>  			exit(1);
>  
> -		strncpy(nsm_hostname, name, sizeof(nsm_hostname));
> +		strncpy(nsm_hostname, name, sizeof(nsm_hostname)-1);
>  		free(name);
>  	}
>  
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] Remove a number of stringop-overflow warnings
  2018-06-05 15:30 ` [PATCH 2/2] Remove a number of stringop-overflow warnings Steve Dickson
@ 2018-06-05 17:22   ` Steve Dickson
  0 siblings, 0 replies; 4+ messages in thread
From: Steve Dickson @ 2018-06-05 17:22 UTC (permalink / raw)
  To: Linux NFS Mailing list



On 06/05/2018 11:30 AM, Steve Dickson wrote:
> umich_ldap.c:1128:3: warning: ‘strncat’ specified bound 128
> 	equals destination size [-Wstringop-overflow=]
> 
> umich_ldap.c:1130:3: warning: ‘strncat’ specified bound 128
> 	equals destination size [-Wstringop-overflow=]
> 
> idmapd.c:313:2: warning: ‘strncat’ specified bound 4096
> 	equals destination size [-Wstringop-overflow=]
> 
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed... 

steved.

> ---
>  support/nfsidmap/umich_ldap.c | 4 ++--
>  utils/idmapd/idmapd.c         | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/support/nfsidmap/umich_ldap.c b/support/nfsidmap/umich_ldap.c
> index 0e31b1c..b661110 100644
> --- a/support/nfsidmap/umich_ldap.c
> +++ b/support/nfsidmap/umich_ldap.c
> @@ -1125,9 +1125,9 @@ umichldap_init(void)
>  
>  	/* Verify required information is supplied */
>  	if (server_in == NULL || strlen(server_in) == 0)
> -		strncat(missing_msg, "LDAP_server ", sizeof(missing_msg));
> +		strncat(missing_msg, "LDAP_server ", sizeof(missing_msg)-1);
>  	if (ldap_info.base == NULL || strlen(ldap_info.base) == 0)
> -		strncat(missing_msg, "LDAP_base ", sizeof(missing_msg));
> +		strncat(missing_msg, "LDAP_base ", sizeof(missing_msg)-1);
>  	if (strlen(missing_msg) != 0) {
>  		IDMAP_LOG(0, ("umichldap_init: Missing required information: "
>  			  "%s", missing_msg));
> diff --git a/utils/idmapd/idmapd.c b/utils/idmapd/idmapd.c
> index 2585fb2..4811e0f 100644
> --- a/utils/idmapd/idmapd.c
> +++ b/utils/idmapd/idmapd.c
> @@ -310,7 +310,7 @@ main(int argc, char **argv)
>  	if (!serverstart && !clientstart)
>  		errx(1, "it is illegal to specify both -C and -S");
>  
> -	strncat(pipefsdir, "/nfs", sizeof(pipefsdir));
> +	strncat(pipefsdir, "/nfs", sizeof(pipefsdir)-1);
>  
>  	daemon_init(fg);
>  
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-05 17:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-05 15:30 [PATCH 1/2] Remove a number of stringop-truncation warnings Steve Dickson
2018-06-05 15:30 ` [PATCH 2/2] Remove a number of stringop-overflow warnings Steve Dickson
2018-06-05 17:22   ` Steve Dickson
2018-06-05 17:22 ` [PATCH 1/2] Remove a number of stringop-truncation warnings Steve Dickson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).