From: Steffen Klassert <steffen.klassert@secunet.com>
To: Paolo Abeni <pabeni@redhat.com>
Cc: Daniel Yang <danielyangkang@gmail.com>,
Herbert Xu <herbert@gondor.apana.org.au>,
"David S. Miller" <davem@davemloft.net>,
"Eric Dumazet" <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Simon Horman <horms@kernel.org>,
"open list:NETWORKING [IPSEC]" <netdev@vger.kernel.org>,
open list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net] xfrm: replace deprecated strncpy with strscpy_pad
Date: Thu, 14 Nov 2024 11:37:48 +0100 [thread overview]
Message-ID: <ZzXS/A/LcKCCDYRp@gauss3.secunet.de> (raw)
In-Reply-To: <7914fb1b-8e9d-4c02-b970-b6eaaf468d05@redhat.com>
On Thu, Nov 14, 2024 at 11:34:25AM +0100, Paolo Abeni wrote:
> On 11/13/24 10:20, Daniel Yang wrote:
> > The function strncpy is deprecated since it does not guarantee the
> > destination buffer is NULL terminated. Recommended replacement is
> > strscpy. The padded version was used to remain consistent with the other
> > strscpy_pad usage in the modified function.
> >
> > Signed-off-by: Daniel Yang <danielyangkang@gmail.com>
> > ---
> > net/xfrm/xfrm_user.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c
> > index e3b8ce898..085f68e35 100644
> > --- a/net/xfrm/xfrm_user.c
> > +++ b/net/xfrm/xfrm_user.c
> > @@ -1089,7 +1089,7 @@ static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
> > if (!nla)
> > return -EMSGSIZE;
> > algo = nla_data(nla);
> > - strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
> > + strscpy_pad(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
> >
> > if (redact_secret && auth->alg_key_len)
> > memset(algo->alg_key, 0, (auth->alg_key_len + 7) / 8);
>
> @Steffen, @Herbert: I think this should go via your tree despite the
> prefix tag.
I'll take it into ipsec-next.
Thanks!
next prev parent reply other threads:[~2024-11-14 10:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-13 9:20 Daniel Yang
2024-11-14 10:34 ` Paolo Abeni
2024-11-14 10:37 ` Steffen Klassert [this message]
2024-11-15 8:08 ` Steffen Klassert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZzXS/A/LcKCCDYRp@gauss3.secunet.de \
--to=steffen.klassert@secunet.com \
--cc=danielyangkang@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=herbert@gondor.apana.org.au \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®