All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390/string: Remove strlcat() implementation
@ 2026-05-22 14:31 Heiko Carstens
  2026-05-27 12:39 ` Alexander Gordeev
  2026-05-27 13:03 ` David Laight
  0 siblings, 2 replies; 4+ messages in thread
From: Heiko Carstens @ 2026-05-22 14:31 UTC (permalink / raw)
  To: Alexander Gordeev, Sven Schnelle, Vasily Gorbik,
	Christian Borntraeger
  Cc: Manuel Ebner, Kees Cook, linux-kernel, linux-s390

strlcat() shouldn't be used anymore (see fortify-string.h), and will be
deprecated / removed sooner or later [1].

Therefore remove the s390 implementation of strlcat() in favor of the
generic variant.

[1] https://lore.kernel.org/all/20260514160719.105084-3-manuelebner@mailbox.org/

Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
---
 arch/s390/include/asm/string.h |  2 --
 arch/s390/lib/string.c         | 26 --------------------------
 2 files changed, 28 deletions(-)

diff --git a/arch/s390/include/asm/string.h b/arch/s390/include/asm/string.h
index 238e721e5a22..378f85304ef5 100644
--- a/arch/s390/include/asm/string.h
+++ b/arch/s390/include/asm/string.h
@@ -26,7 +26,6 @@ void *memmove(void *dest, const void *src, size_t n);
 #define __HAVE_ARCH_MEMSCAN	/* inline & arch function */
 #define __HAVE_ARCH_STRCAT	/* inline & arch function */
 #define __HAVE_ARCH_STRCMP	/* arch function */
-#define __HAVE_ARCH_STRLCAT	/* arch function */
 #define __HAVE_ARCH_STRLEN	/* inline & arch function */
 #define __HAVE_ARCH_STRNCAT	/* arch function */
 #define __HAVE_ARCH_STRNLEN	/* inline & arch function */
@@ -38,7 +37,6 @@ void *memmove(void *dest, const void *src, size_t n);
 /* Prototypes for non-inlined arch strings functions. */
 int memcmp(const void *s1, const void *s2, size_t n);
 int strcmp(const char *s1, const char *s2);
-size_t strlcat(char *dest, const char *src, size_t n);
 char *strncat(char *dest, const char *src, size_t n);
 char *strstr(const char *s1, const char *s2);
 #endif /* !defined(CONFIG_KASAN) && !defined(CONFIG_KMSAN) */
diff --git a/arch/s390/lib/string.c b/arch/s390/lib/string.c
index 757f58960198..a48e5bb3c15f 100644
--- a/arch/s390/lib/string.c
+++ b/arch/s390/lib/string.c
@@ -104,32 +104,6 @@ char *strcat(char *dest, const char *src)
 EXPORT_SYMBOL(strcat);
 #endif
 
-/**
- * strlcat - Append a length-limited, %NUL-terminated string to another
- * @dest: The string to be appended to
- * @src: The string to append to it
- * @n: The size of the destination buffer.
- */
-#ifdef __HAVE_ARCH_STRLCAT
-size_t strlcat(char *dest, const char *src, size_t n)
-{
-	size_t dsize = __strend(dest) - dest;
-	size_t len = __strend(src) - src;
-	size_t res = dsize + len;
-
-	if (dsize < n) {
-		dest += dsize;
-		n -= dsize;
-		if (len >= n)
-			len = n - 1;
-		dest[len] = '\0';
-		memcpy(dest, src, len);
-	}
-	return res;
-}
-EXPORT_SYMBOL(strlcat);
-#endif
-
 /**
  * strncat - Append a length-limited, %NUL-terminated string to another
  * @dest: The string to be appended to
-- 
2.51.0


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

* Re: [PATCH] s390/string: Remove strlcat() implementation
  2026-05-22 14:31 [PATCH] s390/string: Remove strlcat() implementation Heiko Carstens
@ 2026-05-27 12:39 ` Alexander Gordeev
  2026-05-27 13:03 ` David Laight
  1 sibling, 0 replies; 4+ messages in thread
From: Alexander Gordeev @ 2026-05-27 12:39 UTC (permalink / raw)
  To: Heiko Carstens
  Cc: Sven Schnelle, Vasily Gorbik, Christian Borntraeger, Manuel Ebner,
	Kees Cook, linux-kernel, linux-s390

On Fri, May 22, 2026 at 04:31:11PM +0200, Heiko Carstens wrote:
> strlcat() shouldn't be used anymore (see fortify-string.h), and will be
> deprecated / removed sooner or later [1].
> 
> Therefore remove the s390 implementation of strlcat() in favor of the
> generic variant.
> 
> [1] https://lore.kernel.org/all/20260514160719.105084-3-manuelebner@mailbox.org/
> 
> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
> ---
>  arch/s390/include/asm/string.h |  2 --
>  arch/s390/lib/string.c         | 26 --------------------------
>  2 files changed, 28 deletions(-)

Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com>

and pushed.

Thanks!

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

* Re: [PATCH] s390/string: Remove strlcat() implementation
  2026-05-22 14:31 [PATCH] s390/string: Remove strlcat() implementation Heiko Carstens
  2026-05-27 12:39 ` Alexander Gordeev
@ 2026-05-27 13:03 ` David Laight
  2026-05-27 14:08   ` Heiko Carstens
  1 sibling, 1 reply; 4+ messages in thread
From: David Laight @ 2026-05-27 13:03 UTC (permalink / raw)
  To: Heiko Carstens
  Cc: Alexander Gordeev, Sven Schnelle, Vasily Gorbik,
	Christian Borntraeger, Manuel Ebner, Kees Cook, linux-kernel,
	linux-s390

On Fri, 22 May 2026 16:31:11 +0200
Heiko Carstens <hca@linux.ibm.com> wrote:

> strlcat() shouldn't be used anymore (see fortify-string.h), and will be
> deprecated / removed sooner or later [1].
> 
....
>  #define __HAVE_ARCH_STRCAT	/* inline & arch function */
...
>  #define __HAVE_ARCH_STRNCAT	/* arch function */

Those two should probably have gone first ...

-- David

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

* Re: [PATCH] s390/string: Remove strlcat() implementation
  2026-05-27 13:03 ` David Laight
@ 2026-05-27 14:08   ` Heiko Carstens
  0 siblings, 0 replies; 4+ messages in thread
From: Heiko Carstens @ 2026-05-27 14:08 UTC (permalink / raw)
  To: David Laight
  Cc: Alexander Gordeev, Sven Schnelle, Vasily Gorbik,
	Christian Borntraeger, Manuel Ebner, Kees Cook, linux-kernel,
	linux-s390

On Wed, May 27, 2026 at 02:03:58PM +0100, David Laight wrote:
> On Fri, 22 May 2026 16:31:11 +0200
> Heiko Carstens <hca@linux.ibm.com> wrote:
> 
> > strlcat() shouldn't be used anymore (see fortify-string.h), and will be
> > deprecated / removed sooner or later [1].
> > 
> ....
> >  #define __HAVE_ARCH_STRCAT	/* inline & arch function */
> ...
> >  #define __HAVE_ARCH_STRNCAT	/* arch function */
> 
> Those two should probably have gone first ...

Yes, except that we need strcat() for the boot code - there we cannot use the
generic variant. Of course it would be possible to copy the existing strcat()
implementation to the boot code, rename it to e.g. strconcatenate(), and
strcat()/strncat() would be gone, at least grep wise :)

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

end of thread, other threads:[~2026-05-27 14:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-22 14:31 [PATCH] s390/string: Remove strlcat() implementation Heiko Carstens
2026-05-27 12:39 ` Alexander Gordeev
2026-05-27 13:03 ` David Laight
2026-05-27 14:08   ` Heiko Carstens

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.