-
-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib/gis: Add portable G_strlcpy function (#4101)
This commit introduces a new G_strlcpy function in lib/gis, inspired by G_asprintf. G_strlcpy provides a safer alternative to strcpy and strncpy, with consistent behavior across different systems. Key points: - Implements strlcpy functionality, available natively on BSD systems - Portable implementation for non-BSD systems (excluding Linux with libbsd) - Based on FreeBSD's implementation: https://github.com/freebsd/freebsd-src/blob/98dd639c94f716858ae29958f484729b1d2fd387/sys/libkern/strlcpy.c#L28 - Designed to replace unsafe uses of strcpy and strncpy throughout the project The function is implemented to use the native strlcpy where available, falling back to our portable version on systems without it. This ensures optimal performance on BSD systems while maintaining compatibility across different platforms. By providing G_strlcpy, we aim to improve the overall safety and consistency of string operations in our codebase.
- Loading branch information
1 parent
3aa7d1e
commit 84db88a
Showing
5 changed files
with
94 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
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
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
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
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,76 @@ | ||
/*! | ||
* \file lib/gis/strlcpy.c | ||
* | ||
* \brief GIS Library - GRASS implementation of strlcpy(). | ||
* | ||
* Loïc Bartoletti - 2024-07-25 | ||
* | ||
* Copyright (c) 1998, 2015 Todd C. Miller <[email protected]> | ||
* | ||
* Permission to use, copy, modify, and distribute this software for any | ||
* purpose with or without fee is hereby granted, provided that the above | ||
* copyright notice and this permission notice appear in all copies. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
|
||
#include <stddef.h> | ||
|
||
/** | ||
* \brief Safe string copy function. | ||
* | ||
* Copy string src to buffer dst of size dsize. At most dsize-1 | ||
* characters will be copied. Always NUL terminates (unless dsize == 0). | ||
* This function is a safer alternative to strncpy. | ||
* | ||
* \param[out] dst Pointer to the destination buffer. | ||
* \param[in] src Pointer to the source string. Must be a NUL-terminated C | ||
* string. | ||
* \param[in] dsize The size of the destination buffer. | ||
* | ||
* \return The total length of the string src (not including the terminating | ||
* NUL character). If the return value is >= dsize, truncation occurred. | ||
* | ||
* \note If truncation occurred, the return value is the length of the string | ||
* that would have been created if enough space had been available. | ||
* | ||
* \warning This function does not pad the destination buffer with NUL bytes | ||
* if the source string is shorter than dsize-1 bytes, unlike strncpy. | ||
* | ||
* \warning The src string must be a valid NUL-terminated C string. Passing an | ||
* unterminated string may result in buffer overrun. | ||
*/ | ||
|
||
size_t G_strlcpy(char *restrict dst, const char *restrict src, size_t dsize) | ||
{ | ||
#ifdef HAVE_STRLCPY | ||
return strlcpy(dst, src, dsize); | ||
#else | ||
const char *osrc = src; | ||
size_t nleft = dsize; | ||
|
||
/* Copy as many bytes as will fit. */ | ||
if (nleft != 0) { | ||
while (--nleft != 0) { | ||
if ((*dst++ = *src++) == '\0') | ||
break; | ||
} | ||
} | ||
|
||
/* Not enough room in dst, add NUL and traverse rest of src. */ | ||
if (nleft == 0) { | ||
if (dsize != 0) | ||
*dst = '\0'; /* NUL-terminate dst */ | ||
while (*src++) | ||
; | ||
} | ||
|
||
return (src - osrc - 1); /* count does not include NUL */ | ||
#endif | ||
} |