[PATCH v2 net-next] net: ipconfig: replace strncpy with strscpy

Pranav Tyagi posted 1 patch 4 months ago
net/ipv4/ipconfig.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH v2 net-next] net: ipconfig: replace strncpy with strscpy
Posted by Pranav Tyagi 4 months ago
Replace the deprecated strncpy() with strscpy() as the destination
buffer is NUL-terminated and does not require any
trailing NUL-padding. Also increase the length to 252
as NUL-termination is guaranteed.

Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
---
 net/ipv4/ipconfig.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
index c56b6fe6f0d7..eb9b32214e60 100644
--- a/net/ipv4/ipconfig.c
+++ b/net/ipv4/ipconfig.c
@@ -1690,7 +1690,7 @@ static int __init ic_proto_name(char *name)
 			*v = 0;
 			if (kstrtou8(client_id, 0, dhcp_client_identifier))
 				pr_debug("DHCP: Invalid client identifier type\n");
-			strncpy(dhcp_client_identifier + 1, v + 1, 251);
+			strscpy(dhcp_client_identifier + 1, v + 1, 252);
 			*v = ',';
 		}
 		return 1;
-- 
2.49.0
Re: [PATCH v2 net-next] net: ipconfig: replace strncpy with strscpy
Posted by Jakub Kicinski 3 months, 4 weeks ago
On Thu, 12 Jun 2025 17:18:59 +0530 Pranav Tyagi wrote:
> Replace the deprecated strncpy() with strscpy() as the destination
> buffer is NUL-terminated and does not require any
> trailing NUL-padding. Also increase the length to 252
> as NUL-termination is guaranteed.

Petr is making functional changes to this code:
https://lore.kernel.org/all/20250610143504.731114-1-petr.zejdl@cern.ch/
Please repost once his work is merged to avoid unnecessary conflicts
-- 
pw-bot: defer
Re: [PATCH v2 net-next] net: ipconfig: replace strncpy with strscpy
Posted by Pranav Tyagi 3 months, 1 week ago
On Sat, Jun 14, 2025 at 6:46 AM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Thu, 12 Jun 2025 17:18:59 +0530 Pranav Tyagi wrote:
> > Replace the deprecated strncpy() with strscpy() as the destination
> > buffer is NUL-terminated and does not require any
> > trailing NUL-padding. Also increase the length to 252
> > as NUL-termination is guaranteed.
>
> Petr is making functional changes to this code:
> https://lore.kernel.org/all/20250610143504.731114-1-petr.zejdl@cern.ch/
> Please repost once his work is merged to avoid unnecessary conflicts
> --
> pw-bot: defer

Hi,

I hope you're doing well.

I noticed that Petr’s patch has not seen any updates for some time now.
I wanted to kindly ask if it would be appropriate to repost my patch
at this point
or if I should continue to wait until his changes are merged.

Thank you for your time and guidance.

Regards
Pranav Tyagi
Re: [PATCH v2 net-next] net: ipconfig: replace strncpy with strscpy
Posted by Simon Horman 3 months, 4 weeks ago
On Thu, Jun 12, 2025 at 05:18:59PM +0530, Pranav Tyagi wrote:
> Replace the deprecated strncpy() with strscpy() as the destination
> buffer is NUL-terminated and does not require any
> trailing NUL-padding. Also increase the length to 252
> as NUL-termination is guaranteed.
> 
> Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>

Hi Pranav,

Thanks for the updated patch.

I agree with your analysis above and that this patch is correct.

Reviewed-by: Simon Horman <horms@kernel.org>