Skip to content

Commit 6bd296b

Browse files
committed
glibc 2.38 has strlcpy and strlcat but cmake does not detect it.
1 parent ab834f3 commit 6bd296b

File tree

2 files changed

+66
-4
lines changed

2 files changed

+66
-4
lines changed

CMakeLists.txt

+26-2
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,33 @@ endif(WIN32 OR CYGWIN)
265265
# requirements
266266

267267
include(CheckSymbolExists)
268+
268269
# Some platforms provide their own strlcpy & strlcat. (BSD, MacOSX)
269-
# Others don't so we provide our own. (Most, but not all Linux)
270-
# Define the preprocessor macro so libgps does not supply its own version.
270+
# Others don't so we provide our own. (Windows, most, but not all Linux)
271+
# Here we detect whether these are provided by the OS and set a symbol
272+
# so that:
273+
# (1) libgps does not supply its own version.
274+
# (2) we know whether we need to supply our own copy.
275+
#
276+
# This was all working fine until these were added to the gnu c library 2.38.
277+
# References:
278+
* - https://www.gnu.org/software/libc/sources.html
279+
# - https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=NEWS;hb=HEAD
280+
#
281+
# This test is not detecting them for glibc 2.38 resulting in a conflict.
282+
# Why? Are they declared in a different file or in some strange way?
283+
#
284+
# This is how they are declared in include/string.h:
285+
#
286+
# extern __typeof (strlcpy) __strlcpy;
287+
# libc_hidden_proto (__strlcpy)
288+
# extern __typeof (strlcat) __strlcat;
289+
# libc_hidden_proto (__strlcat)
290+
#
291+
# Apparently cmake does not recognize this style.
292+
# Keep this here for BSD type systems where it behaves as expected.
293+
# We will need to add a hack in direwolf.h to define these if glibc version >= 2.38.
294+
271295
check_symbol_exists(strlcpy string.h HAVE_STRLCPY)
272296
if(HAVE_STRLCPY)
273297
add_compile_options(-DHAVE_STRLCPY)

src/direwolf.h

+40-2
Original file line numberDiff line numberDiff line change
@@ -278,20 +278,58 @@ typedef pthread_mutex_t dw_mutex_t;
278278
/* Platform differences for string functions. */
279279

280280

281+
// Windows is missing a few which are available on Unix/Linux platforms.
282+
// We provide our own copies when building on Windows.
281283

282284
#if __WIN32__
283285
char *strsep(char **stringp, const char *delim);
284286
char *strtok_r(char *str, const char *delim, char **saveptr);
285287
#endif
286288

287289
// Don't recall why I added this for everyone rather than only for Windows.
290+
// Potential problem if some C library declares it a little differently.
288291
char *strcasestr(const char *S, const char *FIND);
289292

290293

291-
// cmake determines whether strlcpy and strlcat are available
292-
// or if we need to supply our own.
294+
// cmake tries to determine whether strlcpy and strlcat are provided by the C runtime library.
295+
//
296+
// ../CMakeLists.txt:check_symbol_exists(strlcpy string.h HAVE_STRLCPY)
297+
//
298+
// It sets HAVE_STRLCPY and HAVE_STRLCAT if the corresponding functions are declared.
299+
// Unfortunately this does not work right for glibc 2.38 which declares the functions
300+
// like this:
301+
//
302+
// extern __typeof (strlcpy) __strlcpy;
303+
// libc_hidden_proto (__strlcpy)
304+
// extern __typeof (strlcat) __strlcat;
305+
// libc_hidden_proto (__strlcat)
306+
//
307+
// Rather than the normal way found in earlier versions:
308+
//
309+
// extern char *strcpy (char *__restrict __dest, const char *__restrict __src)
310+
//
311+
// Perhaps a later version of cmake will recognize this form but the version I'm
312+
// using does not.
313+
// So, our work around is to assume these functions are available for glibc >= 2.38.
314+
//
315+
// In theory, cmake should be able to find the version of the C runtime library,
316+
// but I could not get it to work. So we have the test here. We will still build
317+
// own library with the strl... functions but this does not cause a problem
318+
// because they have special debug names which will not cause a conflict.
319+
320+
#ifdef __GLIBC__
321+
#if (__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 38))
322+
// These functions first added in 2.38.
323+
//#warning "DEBUG - glibc >= 2.38"
324+
#define HAVE_STRLCPY 1
325+
#define HAVE_STRLCAT 1
326+
#else
327+
//#warning "DEBUG - glibc < 2.38"
328+
#endif
329+
#endif
293330

294331
#define DEBUG_STRL 1 // Extra Debug version when using our own strlcpy, strlcat.
332+
// Should be ignored if not supplying our own.
295333

296334
#ifndef HAVE_STRLCPY // Need to supply our own.
297335
#if DEBUG_STRL

0 commit comments

Comments
 (0)