The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] NFS: nfsroot: replace strlcat() with snprintf()
@ 2026-08-14  7:28 Mariia Nikitash
  2026-08-17 20:33 ` Justin Stitt
  2026-08-18  8:55 ` David Laight
  0 siblings, 2 replies; 6+ messages in thread
From: Mariia Nikitash @ 2026-08-14  7:28 UTC (permalink / raw)
  To: trondmy, anna
  Cc: keescook, justinstitt, linux-hardening, linux-nfs, linux-kernel,
	nikitash.mariiaw, Mariia Nikitash

In preparation for removing the deprecated strlcat() API[1], replace its
uses in root_nfs_cat() with snprintf().

Build the separator and source string in a single call using the
remaining space in the destination buffer. snprintf() returns the length
it would have written excluding the terminating NUL, so comparing the
return value against the remaining buffer space preserves the existing
truncation check.

Link: https://github.com/KSPP/linux/issues/370 [1]
Signed-off-by: Mariia Nikitash <mariianikitash@google.com>
---
 fs/nfs/nfsroot.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
index 432612d22437..e951fe731679 100644
--- a/fs/nfs/nfsroot.c
+++ b/fs/nfs/nfsroot.c
@@ -173,12 +173,12 @@ static int __init root_nfs_cat(char *dest, const char *src,
 			       const size_t destlen)
 {
 	size_t len = strlen(dest);
+	size_t remaining = destlen - len;
+	const char *sep = "";
 
 	if (len && dest[len - 1] != ',')
-		if (strlcat(dest, ",", destlen) >= destlen)
-			return -1;
-
-	if (strlcat(dest, src, destlen) >= destlen)
+		sep = ",";
+	if (snprintf(dest + len, remaining, "%s%s", sep, src) >= remaining)
 		return -1;
 	return 0;
 }
-- 
2.55.0.679.g6767b8d81c-goog


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

* Re: [PATCH] NFS: nfsroot: replace strlcat() with snprintf()
  2026-08-14  7:28 [PATCH] NFS: nfsroot: replace strlcat() with snprintf() Mariia Nikitash
@ 2026-08-17 20:33 ` Justin Stitt
  2026-08-17 20:51   ` Bill Wendling
  2026-08-18  8:55 ` David Laight
  1 sibling, 1 reply; 6+ messages in thread
From: Justin Stitt @ 2026-08-17 20:33 UTC (permalink / raw)
  To: Mariia Nikitash
  Cc: trondmy, anna, keescook, linux-hardening, linux-nfs, linux-kernel,
	nikitash.mariiaw

Hi,

On Fri, Aug 14, 2026 at 12:28:45AM -0700, Mariia Nikitash wrote:
> In preparation for removing the deprecated strlcat() API[1], replace its
> uses in root_nfs_cat() with snprintf().
> 
> Build the separator and source string in a single call using the
> remaining space in the destination buffer. snprintf() returns the length
> it would have written excluding the terminating NUL, so comparing the
> return value against the remaining buffer space preserves the existing
> truncation check.
> 
> Link: https://github.com/KSPP/linux/issues/370 [1]
> Signed-off-by: Mariia Nikitash <mariianikitash@google.com>


Reviewed-by: Justin Stitt <justinstitt@google.com>

> ---
>  fs/nfs/nfsroot.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
> index 432612d22437..e951fe731679 100644
> --- a/fs/nfs/nfsroot.c
> +++ b/fs/nfs/nfsroot.c
> @@ -173,12 +173,12 @@ static int __init root_nfs_cat(char *dest, const char *src,
>  			       const size_t destlen)
>  {
>  	size_t len = strlen(dest);
> +	size_t remaining = destlen - len;
> +	const char *sep = "";
>  
>  	if (len && dest[len - 1] != ',')
> -		if (strlcat(dest, ",", destlen) >= destlen)
> -			return -1;
> -
> -	if (strlcat(dest, src, destlen) >= destlen)
> +		sep = ",";
> +	if (snprintf(dest + len, remaining, "%s%s", sep, src) >= remaining)
>  		return -1;
>  	return 0;
>  }
> -- 
> 2.55.0.679.g6767b8d81c-goog
> 
>

Thanks
Justin

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

* Re: [PATCH] NFS: nfsroot: replace strlcat() with snprintf()
  2026-08-17 20:33 ` Justin Stitt
@ 2026-08-17 20:51   ` Bill Wendling
  0 siblings, 0 replies; 6+ messages in thread
From: Bill Wendling @ 2026-08-17 20:51 UTC (permalink / raw)
  To: Justin Stitt
  Cc: Mariia Nikitash, trondmy, anna, keescook, linux-hardening,
	linux-nfs, linux-kernel, nikitash.mariiaw

On Mon, Aug 17, 2026 at 1:33 PM Justin Stitt <justinstitt@google.com> wrote:
>
> Hi,
>
> On Fri, Aug 14, 2026 at 12:28:45AM -0700, Mariia Nikitash wrote:
> > In preparation for removing the deprecated strlcat() API[1], replace its
> > uses in root_nfs_cat() with snprintf().
> >
> > Build the separator and source string in a single call using the
> > remaining space in the destination buffer. snprintf() returns the length
> > it would have written excluding the terminating NUL, so comparing the
> > return value against the remaining buffer space preserves the existing
> > truncation check.
> >
> > Link: https://github.com/KSPP/linux/issues/370 [1]
> > Signed-off-by: Mariia Nikitash <mariianikitash@google.com>
>
>
> Reviewed-by: Justin Stitt <justinstitt@google.com>
>
Acked-by: Bill Wendling <morbo@google.com>

> > ---
> >  fs/nfs/nfsroot.c | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
> > index 432612d22437..e951fe731679 100644
> > --- a/fs/nfs/nfsroot.c
> > +++ b/fs/nfs/nfsroot.c
> > @@ -173,12 +173,12 @@ static int __init root_nfs_cat(char *dest, const char *src,
> >                              const size_t destlen)
> >  {
> >       size_t len = strlen(dest);
> > +     size_t remaining = destlen - len;
> > +     const char *sep = "";
> >
> >       if (len && dest[len - 1] != ',')
> > -             if (strlcat(dest, ",", destlen) >= destlen)
> > -                     return -1;
> > -
> > -     if (strlcat(dest, src, destlen) >= destlen)
> > +             sep = ",";
> > +     if (snprintf(dest + len, remaining, "%s%s", sep, src) >= remaining)
> >               return -1;
> >       return 0;
> >  }
> > --
> > 2.55.0.679.g6767b8d81c-goog
> >
> >
>
> Thanks
> Justin
>

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

* Re: [PATCH] NFS: nfsroot: replace strlcat() with snprintf()
  2026-08-14  7:28 [PATCH] NFS: nfsroot: replace strlcat() with snprintf() Mariia Nikitash
  2026-08-17 20:33 ` Justin Stitt
@ 2026-08-18  8:55 ` David Laight
  2026-08-18 17:42   ` Kees Cook
  1 sibling, 1 reply; 6+ messages in thread
From: David Laight @ 2026-08-18  8:55 UTC (permalink / raw)
  To: Mariia Nikitash
  Cc: trondmy, anna, keescook, justinstitt, linux-hardening, linux-nfs,
	linux-kernel, nikitash.mariiaw

On Fri, 14 Aug 2026 00:28:45 -0700
Mariia Nikitash <mariianikitash@google.com> wrote:

> In preparation for removing the deprecated strlcat() API[1], replace its
> uses in root_nfs_cat() with snprintf().
> 
> Build the separator and source string in a single call using the
> remaining space in the destination buffer. snprintf() returns the length
> it would have written excluding the terminating NUL, so comparing the
> return value against the remaining buffer space preserves the existing
> truncation check.
> 
> Link: https://github.com/KSPP/linux/issues/370 [1]
> Signed-off-by: Mariia Nikitash <mariianikitash@google.com>
> ---
>  fs/nfs/nfsroot.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
> index 432612d22437..e951fe731679 100644
> --- a/fs/nfs/nfsroot.c
> +++ b/fs/nfs/nfsroot.c
> @@ -173,12 +173,12 @@ static int __init root_nfs_cat(char *dest, const char *src,
>  			       const size_t destlen)
>  {
>  	size_t len = strlen(dest);
> +	size_t remaining = destlen - len;
> +	const char *sep = "";
>  
>  	if (len && dest[len - 1] != ',')
> -		if (strlcat(dest, ",", destlen) >= destlen)
> -			return -1;
> -
> -	if (strlcat(dest, src, destlen) >= destlen)
> +		sep = ",";
> +	if (snprintf(dest + len, remaining, "%s%s", sep, src) >= remaining)
>  		return -1;

I think I'd have gone for:
	size_t len = strlen(dest);
	if (len && dest[len - 1] != ',' && ++len < destlen)
		dest[len - 1] = ',';
	if (strscpy(dest + len, src, destlen - len) < 0)
		return -1;

Although it would be better as an 'add_option()' function.
I suspect the it used to be just strcat().
(similarly for root_nfs_copy() which is a pointless wrapper on strscpy()).

Much more worth while would be fixing the sprintf() for NFS_ROOT.

David

>  	return 0;
>  }


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

* Re: [PATCH] NFS: nfsroot: replace strlcat() with snprintf()
  2026-08-18  8:55 ` David Laight
@ 2026-08-18 17:42   ` Kees Cook
  2026-08-18 18:44     ` Mariia Nikitash
  0 siblings, 1 reply; 6+ messages in thread
From: Kees Cook @ 2026-08-18 17:42 UTC (permalink / raw)
  To: David Laight
  Cc: Mariia Nikitash, trondmy, anna, justinstitt, linux-hardening,
	linux-nfs, linux-kernel, nikitash.mariiaw

On Tue, Aug 18, 2026 at 09:55:48AM +0100, David Laight wrote:
> On Fri, 14 Aug 2026 00:28:45 -0700
> Mariia Nikitash <mariianikitash@google.com> wrote:
> 
> > In preparation for removing the deprecated strlcat() API[1], replace its
> > uses in root_nfs_cat() with snprintf().
> > 
> > Build the separator and source string in a single call using the
> > remaining space in the destination buffer. snprintf() returns the length
> > it would have written excluding the terminating NUL, so comparing the
> > return value against the remaining buffer space preserves the existing
> > truncation check.
> > 
> > Link: https://github.com/KSPP/linux/issues/370 [1]
> > Signed-off-by: Mariia Nikitash <mariianikitash@google.com>
> > ---
> >  fs/nfs/nfsroot.c | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
> > index 432612d22437..e951fe731679 100644
> > --- a/fs/nfs/nfsroot.c
> > +++ b/fs/nfs/nfsroot.c
> > @@ -173,12 +173,12 @@ static int __init root_nfs_cat(char *dest, const char *src,
> >  			       const size_t destlen)
> >  {
> >  	size_t len = strlen(dest);
> > +	size_t remaining = destlen - len;
> > +	const char *sep = "";
> >  
> >  	if (len && dest[len - 1] != ',')
> > -		if (strlcat(dest, ",", destlen) >= destlen)
> > -			return -1;
> > -
> > -	if (strlcat(dest, src, destlen) >= destlen)
> > +		sep = ",";
> > +	if (snprintf(dest + len, remaining, "%s%s", sep, src) >= remaining)
> >  		return -1;
> 
> I think I'd have gone for:
> 	size_t len = strlen(dest);
> 	if (len && dest[len - 1] != ',' && ++len < destlen)
> 		dest[len - 1] = ',';
> 	if (strscpy(dest + len, src, destlen - len) < 0)
> 		return -1;

This is valid, but I just feel like %s%s is more readable for what it
does. You've open-coded the first %s, and the ++len's interaction
between the logic and the argument to strscpy is subtle. Since this
isn't fast-path, let's use what Mariia has proposed.

> 
> Although it would be better as an 'add_option()' function.

If this were done in more places, I'd agree, but as-is it's pretty
limited.

Reviewed-by: Kees Cook <kees@kernel.org>


-- 
Kees Cook

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

* Re: [PATCH] NFS: nfsroot: replace strlcat() with snprintf()
  2026-08-18 17:42   ` Kees Cook
@ 2026-08-18 18:44     ` Mariia Nikitash
  0 siblings, 0 replies; 6+ messages in thread
From: Mariia Nikitash @ 2026-08-18 18:44 UTC (permalink / raw)
  To: Kees Cook
  Cc: David Laight, trondmy, anna, justinstitt, linux-hardening,
	linux-nfs, linux-kernel, nikitash.mariiaw

Hi,



On Tue, Aug 18, 2026 at 10:42 AM Kees Cook <kees@kernel.org> wrote:
>
> On Tue, Aug 18, 2026 at 09:55:48AM +0100, David Laight wrote:
> > On Fri, 14 Aug 2026 00:28:45 -0700
> > Mariia Nikitash <mariianikitash@google.com> wrote:
> >
> > > In preparation for removing the deprecated strlcat() API[1], replace its
> > > uses in root_nfs_cat() with snprintf().
> > >
> > > Build the separator and source string in a single call using the
> > > remaining space in the destination buffer. snprintf() returns the length
> > > it would have written excluding the terminating NUL, so comparing the
> > > return value against the remaining buffer space preserves the existing
> > > truncation check.
> > >
> > > Link: https://github.com/KSPP/linux/issues/370 [1]
> > > Signed-off-by: Mariia Nikitash <mariianikitash@google.com>
> > > ---
> > >  fs/nfs/nfsroot.c | 8 ++++----
> > >  1 file changed, 4 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
> > > index 432612d22437..e951fe731679 100644
> > > --- a/fs/nfs/nfsroot.c
> > > +++ b/fs/nfs/nfsroot.c
> > > @@ -173,12 +173,12 @@ static int __init root_nfs_cat(char *dest, const char *src,
> > >                            const size_t destlen)
> > >  {
> > >     size_t len = strlen(dest);
> > > +   size_t remaining = destlen - len;
> > > +   const char *sep = "";
> > >
> > >     if (len && dest[len - 1] != ',')
> > > -           if (strlcat(dest, ",", destlen) >= destlen)
> > > -                   return -1;
> > > -
> > > -   if (strlcat(dest, src, destlen) >= destlen)
> > > +           sep = ",";
> > > +   if (snprintf(dest + len, remaining, "%s%s", sep, src) >= remaining)
> > >             return -1;
> >
> > I think I'd have gone for:
> >       size_t len = strlen(dest);
> >       if (len && dest[len - 1] != ',' && ++len < destlen)
> >               dest[len - 1] = ',';
> >       if (strscpy(dest + len, src, destlen - len) < 0)
> >               return -1;
>
> This is valid, but I just feel like %s%s is more readable for what it
> does. You've open-coded the first %s, and the ++len's interaction
> between the logic and the argument to strscpy is subtle. Since this
> isn't fast-path, let's use what Mariia has proposed.

I had also considered similar approach to what David suggested, I am
open to any path forward based on what maintainers want.

>
> >
> > Although it would be better as an 'add_option()' function.
>
> If this were done in more places, I'd agree, but as-is it's pretty
> limited.
>
> Reviewed-by: Kees Cook <kees@kernel.org>

Thanks for the review!

>
>
> --
> Kees Cook


Mariia

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

end of thread, other threads:[~2026-08-18 18:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-14  7:28 [PATCH] NFS: nfsroot: replace strlcat() with snprintf() Mariia Nikitash
2026-08-17 20:33 ` Justin Stitt
2026-08-17 20:51   ` Bill Wendling
2026-08-18  8:55 ` David Laight
2026-08-18 17:42   ` Kees Cook
2026-08-18 18:44     ` Mariia Nikitash

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox