* [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
@ 2025-02-19 22:47 Thorsten Blum
2025-02-20 2:57 ` Kees Cook
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Thorsten Blum @ 2025-02-19 22:47 UTC (permalink / raw)
To: Allison Henderson, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Simon Horman
Cc: Thorsten Blum, linux-hardening, netdev, linux-rdma, rds-devel,
linux-kernel
strncpy() is deprecated for NUL-terminated destination buffers. Use
strscpy_pad() instead and remove the manual NUL-termination.
Compile-tested only.
Link: https://github.com/KSPP/linux/issues/90
Cc: linux-hardening@vger.kernel.org
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
net/rds/stats.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net/rds/stats.c b/net/rds/stats.c
index 9e87da43c004..cb2e3d2cdf73 100644
--- a/net/rds/stats.c
+++ b/net/rds/stats.c
@@ -89,8 +89,7 @@ void rds_stats_info_copy(struct rds_info_iterator *iter,
for (i = 0; i < nr; i++) {
BUG_ON(strlen(names[i]) >= sizeof(ctr.name));
- strncpy(ctr.name, names[i], sizeof(ctr.name) - 1);
- ctr.name[sizeof(ctr.name) - 1] = '\0';
+ strscpy_pad(ctr.name, names[i]);
ctr.value = values[i];
rds_info_copy(iter, &ctr, sizeof(ctr));
--
2.48.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
2025-02-19 22:47 [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad() Thorsten Blum
@ 2025-02-20 2:57 ` Kees Cook
2025-02-20 7:04 ` Thorsten Blum
2025-02-20 18:07 ` Allison Henderson
2025-02-22 0:10 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 7+ messages in thread
From: Kees Cook @ 2025-02-20 2:57 UTC (permalink / raw)
To: Thorsten Blum
Cc: Allison Henderson, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Simon Horman, linux-hardening, netdev, linux-rdma,
rds-devel, linux-kernel
On Wed, Feb 19, 2025 at 11:47:31PM +0100, Thorsten Blum wrote:
> strncpy() is deprecated for NUL-terminated destination buffers. Use
> strscpy_pad() instead and remove the manual NUL-termination.
When doing these conversions, please describe two aspects of
conversions:
- Why is it safe to be NUL terminated
- Why is it safe to be/not-be NUL-padded
In this case, the latter needs examination. Looking at how ctr is used,
it is memcpy()ed later, which means this string MUST be NUL padded or it
will leak stack memory contents.
So, please use strscpy_pad() here. :)
-Kees
>
> Compile-tested only.
>
> Link: https://github.com/KSPP/linux/issues/90
> Cc: linux-hardening@vger.kernel.org
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
> net/rds/stats.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/net/rds/stats.c b/net/rds/stats.c
> index 9e87da43c004..cb2e3d2cdf73 100644
> --- a/net/rds/stats.c
> +++ b/net/rds/stats.c
> @@ -89,8 +89,7 @@ void rds_stats_info_copy(struct rds_info_iterator *iter,
>
> for (i = 0; i < nr; i++) {
> BUG_ON(strlen(names[i]) >= sizeof(ctr.name));
> - strncpy(ctr.name, names[i], sizeof(ctr.name) - 1);
> - ctr.name[sizeof(ctr.name) - 1] = '\0';
> + strscpy_pad(ctr.name, names[i]);
> ctr.value = values[i];
>
> rds_info_copy(iter, &ctr, sizeof(ctr));
> --
> 2.48.1
>
>
--
Kees Cook
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
2025-02-20 2:57 ` Kees Cook
@ 2025-02-20 7:04 ` Thorsten Blum
2025-02-20 8:54 ` Kees Cook
0 siblings, 1 reply; 7+ messages in thread
From: Thorsten Blum @ 2025-02-20 7:04 UTC (permalink / raw)
To: Kees Cook
Cc: Allison Henderson, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Simon Horman, linux-hardening, netdev, linux-rdma,
rds-devel, linux-kernel
On 20. Feb 2025, at 03:57, Kees Cook wrote:
> On Wed, Feb 19, 2025 at 11:47:31PM +0100, Thorsten Blum wrote:
>> strncpy() is deprecated for NUL-terminated destination buffers. Use
>> strscpy_pad() instead and remove the manual NUL-termination.
>
> When doing these conversions, please describe two aspects of
> conversions:
>
> - Why is it safe to be NUL terminated
> - Why is it safe to be/not-be NUL-padded
>
> In this case, the latter needs examination. Looking at how ctr is used,
> it is memcpy()ed later, which means this string MUST be NUL padded or it
> will leak stack memory contents.
>
> So, please use strscpy_pad() here. :)
I am using strscpy_pad() here already because of the NUL-padding.
Did you just miss that?
Thanks,
Thorsten
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
2025-02-20 7:04 ` Thorsten Blum
@ 2025-02-20 8:54 ` Kees Cook
0 siblings, 0 replies; 7+ messages in thread
From: Kees Cook @ 2025-02-20 8:54 UTC (permalink / raw)
To: Thorsten Blum
Cc: Allison Henderson, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Simon Horman, linux-hardening, netdev, linux-rdma,
rds-devel, linux-kernel
On February 19, 2025 11:04:18 PM PST, Thorsten Blum <thorsten.blum@linux.dev> wrote:
>On 20. Feb 2025, at 03:57, Kees Cook wrote:
>> On Wed, Feb 19, 2025 at 11:47:31PM +0100, Thorsten Blum wrote:
>>> strncpy() is deprecated for NUL-terminated destination buffers. Use
>>> strscpy_pad() instead and remove the manual NUL-termination.
>>
>> When doing these conversions, please describe two aspects of
>> conversions:
>>
>> - Why is it safe to be NUL terminated
>> - Why is it safe to be/not-be NUL-padded
>>
>> In this case, the latter needs examination. Looking at how ctr is used,
>> it is memcpy()ed later, which means this string MUST be NUL padded or it
>> will leak stack memory contents.
>>
>> So, please use strscpy_pad() here. :)
>
>I am using strscpy_pad() here already because of the NUL-padding.
>
>Did you just miss that?
Well that's embarrassing. Yes, I must need stronger glasses. *sigh* Apologies for the noise!
Reviewed-by: Kees Cook <kees@kernel.org>
--
Kees Cook
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
2025-02-19 22:47 [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad() Thorsten Blum
2025-02-20 2:57 ` Kees Cook
@ 2025-02-20 18:07 ` Allison Henderson
2025-02-20 18:49 ` Allison Henderson
2025-02-22 0:10 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 7+ messages in thread
From: Allison Henderson @ 2025-02-20 18:07 UTC (permalink / raw)
To: horms@kernel.org, edumazet@google.com, davem@davemloft.net,
thorsten.blum@linux.dev, pabeni@redhat.com, kuba@kernel.org
Cc: rds-devel@oss.oracle.com, linux-hardening@vger.kernel.org,
netdev@vger.kernel.org, linux-rdma@vger.kernel.org,
linux-kernel@vger.kernel.org
On Wed, 2025-02-19 at 23:47 +0100, Thorsten Blum wrote:
> strncpy() is deprecated for NUL-terminated destination buffers. Use
> strscpy_pad() instead and remove the manual NUL-termination.
>
> Compile-tested only.
>
> Link: https://urldefense.com/v3/__https://github.com/KSPP/linux/issues/90__;!!ACWV5N9M2RV99hQ!MpqMAmj6IIyu7Vj4ddfEGJlJY4rVrJL_g8etOQsHC7pdjZO77P7aOqJe8_JTFwBzZ6tciUDrbb2CjXWJMjdEMJGtpoeBfHU8qw$
> Cc: linux-hardening@vger.kernel.org
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> ---
> net/rds/stats.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/net/rds/stats.c b/net/rds/stats.c
> index 9e87da43c004..cb2e3d2cdf73 100644
> --- a/net/rds/stats.c
> +++ b/net/rds/stats.c
> @@ -89,8 +89,7 @@ void rds_stats_info_copy(struct rds_info_iterator *iter,
>
> for (i = 0; i < nr; i++) {
> BUG_ON(strlen(names[i]) >= sizeof(ctr.name));
> - strncpy(ctr.name, names[i], sizeof(ctr.name) - 1);
> - ctr.name[sizeof(ctr.name) - 1] = '\0';
> + strscpy_pad(ctr.name, names[i]);
> ctr.value = values[i];
>
Looks ok to me. Thanks Thorsten!
Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
> rds_info_copy(iter, &ctr, sizeof(ctr));
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
2025-02-20 18:07 ` Allison Henderson
@ 2025-02-20 18:49 ` Allison Henderson
0 siblings, 0 replies; 7+ messages in thread
From: Allison Henderson @ 2025-02-20 18:49 UTC (permalink / raw)
To: horms@kernel.org, edumazet@google.com, davem@davemloft.net,
thorsten.blum@linux.dev, pabeni@redhat.com, kuba@kernel.org
Cc: rds-devel@oss.oracle.com, linux-hardening@vger.kernel.org,
netdev@vger.kernel.org, linux-rdma@vger.kernel.org,
linux-kernel@vger.kernel.org
On Thu, 2025-02-20 at 11:07 -0700, Allison Henderson wrote:
> On Wed, 2025-02-19 at 23:47 +0100, Thorsten Blum wrote:
> > strncpy() is deprecated for NUL-terminated destination buffers. Use
> > strscpy_pad() instead and remove the manual NUL-termination.
> >
> > Compile-tested only.
I went ahead and tested this for you, and it looks fine. So, you can go ahead and remove the "Compiled-tested only" and
add:
Tested-by: Allison Henderson <allison.henderson@oracle.com>
Thank you!
Allison
> >
> > Link: https://urldefense.com/v3/__https://github.com/KSPP/linux/issues/90__;!!ACWV5N9M2RV99hQ!MpqMAmj6IIyu7Vj4ddfEGJlJY4rVrJL_g8etOQsHC7pdjZO77P7aOqJe8_JTFwBzZ6tciUDrbb2CjXWJMjdEMJGtpoeBfHU8qw$
> > Cc: linux-hardening@vger.kernel.org
> > Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
> > ---
> > net/rds/stats.c | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/net/rds/stats.c b/net/rds/stats.c
> > index 9e87da43c004..cb2e3d2cdf73 100644
> > --- a/net/rds/stats.c
> > +++ b/net/rds/stats.c
> > @@ -89,8 +89,7 @@ void rds_stats_info_copy(struct rds_info_iterator *iter,
> >
> > for (i = 0; i < nr; i++) {
> > BUG_ON(strlen(names[i]) >= sizeof(ctr.name));
> > - strncpy(ctr.name, names[i], sizeof(ctr.name) - 1);
> > - ctr.name[sizeof(ctr.name) - 1] = '\0';
> > + strscpy_pad(ctr.name, names[i]);
> > ctr.value = values[i];
> >
> Looks ok to me. Thanks Thorsten!
> Reviewed-by: Allison Henderson <allison.henderson@oracle.com>
>
> > rds_info_copy(iter, &ctr, sizeof(ctr));
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
2025-02-19 22:47 [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad() Thorsten Blum
2025-02-20 2:57 ` Kees Cook
2025-02-20 18:07 ` Allison Henderson
@ 2025-02-22 0:10 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-02-22 0:10 UTC (permalink / raw)
To: Thorsten Blum
Cc: allison.henderson, davem, edumazet, kuba, pabeni, horms,
linux-hardening, netdev, linux-rdma, rds-devel, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 19 Feb 2025 23:47:31 +0100 you wrote:
> strncpy() is deprecated for NUL-terminated destination buffers. Use
> strscpy_pad() instead and remove the manual NUL-termination.
>
> Compile-tested only.
>
> Link: https://github.com/KSPP/linux/issues/90
> Cc: linux-hardening@vger.kernel.org
> Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
>
> [...]
Here is the summary with links:
- [net-next] net/rds: Replace deprecated strncpy() with strscpy_pad()
https://git.kernel.org/netdev/net-next/c/c451715d78e3
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-02-22 0:10 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-19 22:47 [PATCH net-next] net/rds: Replace deprecated strncpy() with strscpy_pad() Thorsten Blum
2025-02-20 2:57 ` Kees Cook
2025-02-20 7:04 ` Thorsten Blum
2025-02-20 8:54 ` Kees Cook
2025-02-20 18:07 ` Allison Henderson
2025-02-20 18:49 ` Allison Henderson
2025-02-22 0:10 ` patchwork-bot+netdevbpf
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).