tools/fakeroot: fix check for whether to wrap time64 functions
authorMichael Pratt <mcpratt@pm.me>
Sat, 22 Jun 2024 04:58:39 +0000 (00:58 -0400)
committerRobert Marko <robimarko@gmail.com>
Sat, 22 Jun 2024 18:42:45 +0000 (20:42 +0200)
commitf864b83b1dffaf4e4fcba4abf0142146975af4a9
treeb87abcd87c73b0c55d6f6bbe72e47d25bc6fc223
parent832e2f6dd0ca356c2b349e3384979602ef76f927
tools/fakeroot: fix check for whether to wrap time64 functions

Fakeroot uses an egrep configure check to look for the string "time64"
within a preprocessed include of the sys/stat.h header
in order to decide whether or not to create declarations
and internal functions used for wrapping the native functions
stat64_time64 fstat64_time64 lstat64_time64 and fstatat64_time64.

On specific older versions of glibc these functions are not included,
but there are some references to "time64" unrelated to functions,
like aliasing the time64_t typedef to the standard time_t typedef
when the size of a word is 64 bits or defining it if not.

In this case, a grep for "stat64"
of the preprocessed sys/stat.h header matches nothing,
however, the grep for "time64" in the configure check
of the preprocessed sys/stat.h header matches a line
that has nothing to do with the functions
that will be wrapped as a result of successful matching.

  __extension__ typedef __int64_t __time64_t;

This causes the attempt to wrap the functions to occur,
which fails due to some of the corresponding macros being empty
since the native declarations they are based on do not exist,
causing a common error claiming that a part of the syntax is missing.

  error: expected '=', ',', ';', 'asm' or '__attribute__' before ...

Fix this by making the testing regular expression more complex
in order to match actual function names ending in "_time64"
with or without a set of preceding underscores, but none after.

Signed-off-by: Michael Pratt <mcpratt@pm.me>
Link: https://github.com/openwrt/openwrt/pull/15773
Signed-off-by: Robert Marko <robimarko@gmail.com>
tools/fakeroot/patches/300-time64-hack.patch [new file with mode: 0644]