forked from zephyrproject-rtos/open-amp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: utils: implement internal strlcpy function
The strlcpy() function has only recently become available in glibc. To ensure compatibility with legacy libc versions, this commit implements an internal version of strlcpy(). The function has been adapted from the FreeBSD implementation to fit our needs. Signed-off-by: Arnaud Pouliquen <[email protected]> (cherry picked from commit c7c85bcfeb4f2c1be772efea8a889aa796d1a7c1) Upstream PR: OpenAMP/open-amp#620 Signed-off-by: Tomi Fontanilles <[email protected]>
- Loading branch information
Showing
4 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
* | ||
* Copyright (c) 2024, STMicroelectronics | ||
* | ||
*/ | ||
|
||
#include <string.h> | ||
|
||
size_t strlcpy(char *dest, const char *src, size_t size); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
collect (PROJECT_LIB_SOURCES string.c) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
* | ||
* Copyright (c) 2024, STMicroelectronics | ||
* | ||
*/ | ||
|
||
#include <internal/string.h> | ||
|
||
/** | ||
* @internal | ||
* | ||
* @brief Copies a string to a destination buffer with size limitation and returns the length of | ||
* the source string. | ||
* | ||
* This function copies up to `size - 1` characters from the source string `src` | ||
* to the destination buffer `dest`, ensuring that the destination buffer is | ||
* null-terminated. The function returns the length of the source string `src`. | ||
* If the length of `src` is greater than or equal to `size`, the destination | ||
* buffer will be truncated. | ||
* | ||
* @param dst Destination buffer where the string will be copied. | ||
* @param src Source string to be copied. | ||
* @param size Size of the destination buffer. | ||
* @return The length of the source string `src`. | ||
* | ||
* @note If the size of the destination buffer is 0, the function does not copy any characters and | ||
* the destination buffer is not null-terminated. | ||
* @note The function ensures that the destination buffer is always null-terminated if `size` is | ||
* greater than 0. | ||
* @note: this code is inspired from the strlcpy.c file from freeBSD . | ||
*/ | ||
|
||
size_t | ||
strlcpy(char *dst, const char *src, size_t size) | ||
{ | ||
size_t nleft = size; | ||
|
||
/* Copy as many bytes as will fit. */ | ||
if (nleft != 0) { | ||
while (--nleft != 0) { | ||
*dst = *src++; | ||
if (*dst++ == '\0') | ||
break; | ||
} | ||
} | ||
|
||
/* Not enough room in dst, add NUL and traverse rest of src. */ | ||
if (nleft == 0 && size != 0) | ||
*dst = '\0'; /* NUL-terminate dst */ | ||
|
||
return strlen(src); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters