forked from openzfs/zfs
-
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.
libzfs: add keylocation=https://, backed by fetch(3) or libcurl
Signed-off-by: Ahelenia Ziemiańska <[email protected]> Ref: openzfs#9543 Closes openzfs#9947
- Loading branch information
1 parent
b0269cd
commit d54257a
Showing
8 changed files
with
212 additions
and
4 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,63 @@ | ||
dnl # | ||
dnl # Check for a libfetch - either fetch(3) or libcurl, to back keylocation=https://. | ||
dnl # | ||
dnl # There are two configuration dimensions: | ||
dnl # * fetch(3) vs libcurl | ||
dnl # * static vs dynamic | ||
dnl # | ||
dnl # fetch(3) is only ever dynamic, i.e. we load it via dlopen(3) by the "libfetch.so" soname. | ||
dnl # | ||
dnl # libcurl development packages include curl-config(1) – we want: | ||
dnl # * HTTPS support | ||
dnl # * major version 7 (i.e. "from this century"), for sover 4 | ||
dnl # * to decide if it's static or not | ||
dnl # | ||
AC_DEFUN([ZFS_AC_CONFIG_USER_LIBFETCH], [ | ||
AC_MSG_CHECKING([for libfetch]) | ||
LIBFETCH_LIBS="-ldl" | ||
LIBFETCH_IS_FETCH=0 | ||
LIBFETCH_IS_LIBCURL=0 | ||
LIBFETCH_DYNAMIC=0 | ||
LIBFETCH_SONAME= | ||
have_libfetch= | ||
saved_libs="$LIBS" | ||
LIBS="$LIBS -lfetch" | ||
AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <fetch.h>], [fetchGetHTTP("", "");])], [ | ||
have_libfetch=1 | ||
LIBFETCH_IS_FETCH=1 | ||
LIBFETCH_SONAME='"libfetch.so"' | ||
LIBFETCH_DYNAMIC=1 | ||
AC_MSG_RESULT([fetch(3)]) | ||
], []) | ||
LIBS="$saved_libs" | ||
if test -z "$have_libfetch"; then | ||
if curl-config --protocols 2>/dev/null | grep -q HTTPS && | ||
test "$(("0x$(curl-config --vernum)"))" -ge "$((0x070000))" && | ||
test "$(("0x$(curl-config --vernum)"))" -lt "$((0x080000))"; then | ||
have_libfetch=1 | ||
LIBFETCH_IS_LIBCURL=1 | ||
if false && test "$(curl-config --built-shared)" = "yes"; then | ||
LIBFETCH_DYNAMIC=1 | ||
LIBFETCH_SONAME='"libcurl.so.4"' | ||
else | ||
LIBFETCH_LIBS="$(curl-config --libs)" | ||
fi | ||
CCFLAGS="$CCFLAGS $(curl-config --cflags)" | ||
AC_MSG_RESULT([libcurl]) | ||
fi | ||
fi | ||
if test -z "$have_libfetch"; then | ||
AC_MSG_RESULT([none]) | ||
fi | ||
AC_SUBST([LIBFETCH_LIBS]) | ||
AC_DEFINE_UNQUOTED([LIBFETCH_IS_FETCH], [$LIBFETCH_IS_FETCH], [libfetch is fetch(3)]) | ||
AC_DEFINE_UNQUOTED([LIBFETCH_IS_LIBCURL], [$LIBFETCH_IS_LIBCURL], [libfetch is libcurl]) | ||
AC_DEFINE_UNQUOTED([LIBFETCH_DYNAMIC], [$LIBFETCH_DYNAMIC], [whether the chosen libfetch is to be loaded at run-time]) | ||
AC_DEFINE_UNQUOTED([LIBFETCH_SONAME], [$LIBFETCH_SONAME], [soname of chosen libfetch]) | ||
]) |
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
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