123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- #***************************************************************************
- # _ _ ____ _
- # Project ___| | | | _ \| |
- # / __| | | | |_) | |
- # | (__| |_| | _ <| |___
- # \___|\___/|_| \_\_____|
- #
- # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
- #
- # This software is licensed as described in the file COPYING, which
- # you should have received as part of this distribution. The terms
- # are also available at https://curl.se/docs/copyright.html.
- #
- # You may opt to use, copy, modify, merge, publish, distribute and/or sell
- # copies of the Software, and permit persons to whom the Software is
- # furnished to do so, under the terms of the COPYING file.
- #
- # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- # KIND, either express or implied.
- #
- # SPDX-License-Identifier: curl
- #
- ###########################################################################
- # Find the GSS Kerberos library
- #
- # Input variables:
- #
- # GSS_ROOT_DIR Set this variable to the root installation of GSS
- #
- # Result variables:
- #
- # GSS_FOUND System has the Heimdal library
- # GSS_FLAVOUR "MIT" or "Heimdal" if anything found
- # GSS_INCLUDE_DIRS The GSS include directories
- # GSS_LIBRARIES The GSS library names
- # GSS_LIBRARY_DIRS The GSS library directories
- # GSS_LDFLAGS Required linker flags
- # GSS_CFLAGS Required compiler flags
- # GSS_VERSION This is set to version advertised by pkg-config or read from manifest.
- # In case the library is found but no version info available it is set to "unknown"
- set(_mit_modname "mit-krb5-gssapi")
- set(_heimdal_modname "heimdal-gssapi")
- include(CheckIncludeFile)
- include(CheckIncludeFiles)
- include(CheckTypeSize)
- set(_gss_root_hints
- "${GSS_ROOT_DIR}"
- "$ENV{GSS_ROOT_DIR}"
- )
- # Try to find library using system pkg-config if user did not specify root dir
- if(NOT GSS_ROOT_DIR AND NOT "$ENV{GSS_ROOT_DIR}")
- if(CURL_USE_PKGCONFIG)
- find_package(PkgConfig QUIET)
- pkg_search_module(_GSS ${_mit_modname} ${_heimdal_modname})
- list(APPEND _gss_root_hints "${_GSS_PREFIX}")
- endif()
- if(WIN32)
- list(APPEND _gss_root_hints "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos;InstallDir]")
- endif()
- endif()
- if(NOT _GSS_FOUND) # Not found by pkg-config. Let us take more traditional approach.
- find_file(_gss_configure_script
- NAMES
- "krb5-config"
- HINTS
- ${_gss_root_hints}
- PATH_SUFFIXES
- "bin"
- NO_CMAKE_PATH
- NO_CMAKE_ENVIRONMENT_PATH
- )
- # If not found in user-supplied directories, maybe system knows better
- find_file(_gss_configure_script
- NAMES
- "krb5-config"
- PATH_SUFFIXES
- "bin"
- )
- if(_gss_configure_script)
- execute_process(
- COMMAND ${_gss_configure_script} "--cflags" "gssapi"
- OUTPUT_VARIABLE _GSS_CFLAGS
- RESULT_VARIABLE _gss_configure_failed
- OUTPUT_STRIP_TRAILING_WHITESPACE
- )
- message(STATUS "FindGSS CFLAGS: ${_GSS_CFLAGS}")
- if(NOT _gss_configure_failed) # 0 means success
- # Should also work in an odd case when multiple directories are given
- string(STRIP "${_GSS_CFLAGS}" _GSS_CFLAGS)
- string(REGEX REPLACE " +-I" ";" _GSS_CFLAGS "${_GSS_CFLAGS}")
- string(REGEX REPLACE " +-([^I][^ \\t;]*)" ";-\\1" _GSS_CFLAGS "${_GSS_CFLAGS}")
- foreach(_flag IN LISTS _GSS_CFLAGS)
- if(_flag MATCHES "^-I.*")
- string(REGEX REPLACE "^-I" "" _val "${_flag}")
- list(APPEND _GSS_INCLUDE_DIRS "${_val}")
- else()
- list(APPEND _GSS_CFLAGS "${_flag}")
- endif()
- endforeach()
- endif()
- execute_process(
- COMMAND ${_gss_configure_script} "--libs" "gssapi"
- OUTPUT_VARIABLE _gss_lib_flags
- RESULT_VARIABLE _gss_configure_failed
- OUTPUT_STRIP_TRAILING_WHITESPACE
- )
- message(STATUS "FindGSS LDFLAGS: ${_gss_lib_flags}")
- if(NOT _gss_configure_failed) # 0 means success
- # This script gives us libraries and link directories. Blah. We have to deal with it.
- string(STRIP "${_gss_lib_flags}" _gss_lib_flags)
- string(REGEX REPLACE " +-(L|l)" ";-\\1" _gss_lib_flags "${_gss_lib_flags}")
- string(REGEX REPLACE " +-([^Ll][^ \\t;]*)" ";-\\1" _gss_lib_flags "${_gss_lib_flags}")
- foreach(_flag IN LISTS _gss_lib_flags)
- if(_flag MATCHES "^-l.*")
- string(REGEX REPLACE "^-l" "" _val "${_flag}")
- list(APPEND _GSS_LIBRARIES "${_val}")
- elseif(_flag MATCHES "^-L.*")
- string(REGEX REPLACE "^-L" "" _val "${_flag}")
- list(APPEND _GSS_LIBRARY_DIRS "${_val}")
- else()
- list(APPEND _GSS_LDFLAGS "${_flag}")
- endif()
- endforeach()
- endif()
- execute_process(
- COMMAND ${_gss_configure_script} "--version"
- OUTPUT_VARIABLE _GSS_VERSION
- RESULT_VARIABLE _gss_configure_failed
- OUTPUT_STRIP_TRAILING_WHITESPACE
- )
- # Older versions may not have the "--version" parameter. In this case we just do not care.
- if(_gss_configure_failed)
- set(_GSS_VERSION 0)
- endif()
- execute_process(
- COMMAND ${_gss_configure_script} "--vendor"
- OUTPUT_VARIABLE _gss_vendor
- RESULT_VARIABLE _gss_configure_failed
- OUTPUT_STRIP_TRAILING_WHITESPACE
- )
- # Older versions may not have the "--vendor" parameter. In this case we just do not care.
- if(_gss_configure_failed)
- set(GSS_FLAVOUR "Heimdal") # most probably, should not really matter
- else()
- if(_gss_vendor MATCHES ".*H|heimdal.*")
- set(GSS_FLAVOUR "Heimdal")
- else()
- set(GSS_FLAVOUR "MIT")
- endif()
- endif()
- else() # Either there is no config script or we are on a platform that does not provide one (Windows?)
- find_path(_GSS_INCLUDE_DIRS NAMES "gssapi/gssapi.h"
- HINTS
- ${_gss_root_hints}
- PATH_SUFFIXES
- "include"
- "inc"
- )
- if(_GSS_INCLUDE_DIRS) # jay, we have found something
- set(CMAKE_REQUIRED_INCLUDES "${_GSS_INCLUDE_DIRS}")
- check_include_files("gssapi/gssapi_generic.h;gssapi/gssapi_krb5.h" _gss_have_mit_headers)
- if(_gss_have_mit_headers)
- set(GSS_FLAVOUR "MIT")
- else()
- # Prevent compiling the header - just check if we can include it
- list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D__ROKEN_H__")
- check_include_file("roken.h" _gss_have_roken_h)
- check_include_file("heimdal/roken.h" _gss_have_heimdal_roken_h)
- if(_gss_have_roken_h OR _gss_have_heimdal_roken_h)
- set(GSS_FLAVOUR "Heimdal")
- endif()
- list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS "-D__ROKEN_H__")
- endif()
- else()
- # I am not convinced if this is the right way but this is what autotools do at the moment
- find_path(_GSS_INCLUDE_DIRS NAMES "gssapi.h"
- HINTS
- ${_gss_root_hints}
- PATH_SUFFIXES
- "include"
- "inc"
- )
- if(_GSS_INCLUDE_DIRS)
- set(GSS_FLAVOUR "Heimdal")
- endif()
- endif()
- # If we have headers, check if we can link libraries
- if(GSS_FLAVOUR)
- set(_gss_libdir_suffixes "")
- set(_gss_libdir_hints ${_gss_root_hints})
- get_filename_component(_gss_calculated_potential_root "${_GSS_INCLUDE_DIRS}" DIRECTORY)
- list(APPEND _gss_libdir_hints ${_gss_calculated_potential_root})
- if(WIN32)
- if(CMAKE_SIZEOF_VOID_P EQUAL 8)
- list(APPEND _gss_libdir_suffixes "lib/AMD64")
- if(GSS_FLAVOUR STREQUAL "MIT")
- set(_gss_libname "gssapi64")
- else()
- set(_gss_libname "libgssapi")
- endif()
- else()
- list(APPEND _gss_libdir_suffixes "lib/i386")
- if(GSS_FLAVOUR STREQUAL "MIT")
- set(_gss_libname "gssapi32")
- else()
- set(_gss_libname "libgssapi")
- endif()
- endif()
- else()
- list(APPEND _gss_libdir_suffixes "lib;lib64") # those suffixes are not checked for HINTS
- if(GSS_FLAVOUR STREQUAL "MIT")
- set(_gss_libname "gssapi_krb5")
- else()
- set(_gss_libname "gssapi")
- endif()
- endif()
- find_library(_GSS_LIBRARIES NAMES ${_gss_libname}
- HINTS
- ${_gss_libdir_hints}
- PATH_SUFFIXES
- ${_gss_libdir_suffixes}
- )
- endif()
- endif()
- else()
- if(_GSS_MODULE_NAME STREQUAL _mit_modname OR _GSS_${_mit_modname}_VERSION) # _GSS_MODULE_NAME set since CMake 3.16
- set(GSS_FLAVOUR "MIT")
- if(NOT _GSS_VERSION) # for old CMake versions?
- set(_GSS_VERSION ${_GSS_${_mit_modname}_VERSION})
- endif()
- else()
- set(GSS_FLAVOUR "Heimdal")
- if(NOT _GSS_VERSION) # for old CMake versions?
- set(_GSS_VERSION ${_GSS_${_heimdal_modname}_VERSION})
- endif()
- endif()
- message(STATUS "Found GSS/${GSS_FLAVOUR} (via pkg-config): ${_GSS_INCLUDE_DIRS} (found version \"${_GSS_VERSION}\")")
- endif()
- set(GSS_INCLUDE_DIRS ${_GSS_INCLUDE_DIRS})
- set(GSS_LIBRARIES ${_GSS_LIBRARIES})
- set(GSS_LIBRARY_DIRS ${_GSS_LIBRARY_DIRS})
- set(GSS_LDFLAGS ${_GSS_LDFLAGS})
- set(GSS_CFLAGS ${_GSS_CFLAGS})
- set(GSS_VERSION ${_GSS_VERSION})
- if(GSS_FLAVOUR)
- if(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "Heimdal")
- if(CMAKE_SIZEOF_VOID_P EQUAL 8)
- set(_heimdal_manifest_file "Heimdal.Application.amd64.manifest")
- else()
- set(_heimdal_manifest_file "Heimdal.Application.x86.manifest")
- endif()
- if(EXISTS "${GSS_INCLUDE_DIRS}/${_heimdal_manifest_file}")
- file(STRINGS "${GSS_INCLUDE_DIRS}/${_heimdal_manifest_file}" _heimdal_version_str
- REGEX "^.*version=\"[0-9]\\.[^\"]+\".*$")
- string(REGEX MATCH "[0-9]\\.[^\"]+" GSS_VERSION "${_heimdal_version_str}")
- endif()
- if(NOT GSS_VERSION)
- set(GSS_VERSION "Heimdal Unknown")
- endif()
- elseif(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "MIT")
- get_filename_component(_mit_version "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos\\SDK\\CurrentVersion;VersionString]" NAME
- CACHE)
- if(WIN32 AND _mit_version)
- set(GSS_VERSION "${_mit_version}")
- else()
- set(GSS_VERSION "MIT Unknown")
- endif()
- endif()
- endif()
- include(FindPackageHandleStandardArgs)
- find_package_handle_standard_args(GSS
- REQUIRED_VARS
- GSS_FLAVOUR
- GSS_LIBRARIES
- VERSION_VAR
- GSS_VERSION
- FAIL_MESSAGE
- "Could NOT find GSS, try to set the path to GSS root folder in the system variable GSS_ROOT_DIR"
- )
- mark_as_advanced(
- _GSS_CFLAGS
- _GSS_FOUND
- _GSS_INCLUDE_DIRS
- _GSS_LDFLAGS
- _GSS_LIBRARIES
- _GSS_LIBRARY_DIRS
- _GSS_MODULE_NAME
- _GSS_PREFIX
- _GSS_VERSION
- )
|