-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compile error in Alpine Linux 3.7 #150
Comments
No problem compiling 1.5 Beta2 on Raspbian Stretch which has GCC 6.3.0-18+rpi1+deb9u1 with the following support: Could you try again with the following commands: make clean --David |
I tried the commands, and got more errors...
|
Command to run alpine linux 3.7 in docker/raspbian:
My purpose to build direwolf in alpine linux is try to build a small (ideally < 50MB) image to run direwolf on any dockerized raspberry pi platform. The docker image size of rtl-sdr and direwolf based on resin/respbian > 500MB, which is too big to run smoothly on various raspberry platform. |
The traditional C library strcpy and strcat functions are very dangerous. They have no checking for buffer overflow. It is easy to write beyond the amount of allocated storage and stomp on other variables. strlcpy and strlcat have an extra argument for the destination length and perform checking to avoid buffer overflow. BSD and Mac OS X have these functions. For operating systems that don't have these functions, I provide my own. Look in direwolf.h. #if defined(OpenBSD) || defined(FreeBSD) || defined(APPLE) The solution is probably adding another symbol to the #if test condition. The compiler probably has a predefined macro to identify the target platform. Try this: gcc -E -dM - < /dev/null Do you see something resembling "alpine" or "musl" (for the C library version)? Or maybe /usr/include/string.h has some definition to indicate whether strlcpy and strlcat are provided in this version of the library. |
John, --David |
Yes, sort of. Try this: gcc -E -dM - < /dev/null If this is done on Windows (with MinGW compiler), we find these among the macros predefined: #define _WIN32 1 On Ubuntu, #define unix 1 Applications can use these to behave differently depending on the target platform. If we were to do the same thing inside of a docker container, we would get different results based on the version of the compiler installed in the docker image, not on the host system. It might be possible to use something predefined by the compiler. Alternative 2: The Makefile could be enhanced to find the OS flavor ( probably from /etc/os-release ) and add another definition to CFLAGS to indicate that the target environment already has strlcpy and strlcat. I tried running Alpine:3.7 on Ubuntu because I already had docker there. grep Alpine /etc/*/etc/issue:Welcome to Alpine Linux 3.7 Alternative 3: I noticed that Alpine Linux uses the "musl" C library. Maybe it defines some symbol that we could use. apk updateapk add build-baseNothing immediately obvious. Or maybe Makefile.linux could grep for strlcpy in /usr/include/string.h. As a temporary work-around, I changed this part of direwolf.h #if defined(OpenBSD) || defined(FreeBSD) || defined(APPLE) to be simply #if 1 We now have another roadblock. libasound2 doesn't seem to be available. |
I'm not 100% sure, but it looks like libasound2 on Alpine is called |
Now that the build system has switched to Cmake, it should be possible to add a simple check in it for the presence of We've just hit the same error in Void Linux: void-linux/void-packages#27510 |
I think I have a solution for the strlcpy/strlcat issue. |
this should allow for compilation on musl libc possibly fixes wb2osz#150
this should allow for compilation on musl libc possibly fixes wb2osz#150
this should allow for compilation on musl libc possibly fixes wb2osz#150
this should allow for compilation on musl libc possibly fixes wb2osz#150
FYI strlcat/strlcpy are available on glibc >=2.38. In case somebody has the same issue, here's a quick&dirty workaround: NixOS/nixpkgs@a099113 |
Do you have a specific fix for the dev branch that won't break other platforms? |
Not really, sorry. We're moving to glibc 2.38, so we don't have older glibc releases that don't support this. Also, I think there aren't many (widely-used) platforms left (BSDs Darwin included seem to support this for instance), right? |
|
There are multiple open cases for the same issue of building on Alpine. |
OS: Alpine Linux 3.7
gcc-6.4.0-r5
linux-headers-4.4.6-r2
alsa-lib-dev-1.1.4.1-r2
...
direwolf-1.5-beta2
Same error on both x86_64 and armv6l (raspberry pi)
The text was updated successfully, but these errors were encountered: