blob: be7cfbf2f24fe6ad88c83de2be17211a9e5f502a [file] [log] [blame]
Michal Vasko8e08c962016-02-09 14:09:11 +01001cmake_minimum_required(VERSION 2.6)
Claus Klein22091912020-01-20 13:45:47 +01002
Michal Vaskodf67eb42020-02-06 16:22:07 +01003project(libnetconf2 C)
Michal Vasko4cb2d722020-04-23 13:49:16 +02004set(LIBNETCONF2_DESC "NETCONF library in C providing API for both clients and servers.")
Claus Klein22091912020-01-20 13:45:47 +01005
Michal Vasko9e8ac262020-04-07 13:06:45 +02006# include custom Modules
7list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMakeModules/")
8
Jan Kundrátb78cdfc2016-11-04 17:11:24 +01009include(GNUInstallDirs)
Michal Vasko9aa3c6a2018-11-12 08:50:10 +010010include(CheckFunctionExists)
Michal Vasko32af6142019-01-23 09:30:42 +010011include(CheckCSourceCompiles)
Michal Vasko352c3902018-11-12 09:16:59 +010012include(CheckIncludeFile)
Michal Vasko9e8ac262020-04-07 13:06:45 +020013include(UseCompat)
Claus Klein22091912020-01-20 13:45:47 +010014
Michal Vaskod6123692019-07-16 16:04:16 +020015if(POLICY CMP0075)
16 cmake_policy(SET CMP0075 NEW)
17endif()
Radek Krejci183f7e72015-09-01 17:25:47 +020018
Michal Vasko6779d182016-02-17 14:36:36 +010019set(LIBNETCONF2_DESCRIPTION "NETCONF server and client library in C.")
Radek Krejci183f7e72015-09-01 17:25:47 +020020
21# check the supported platform
22if(NOT UNIX)
Michal Vasko3d865d22016-01-28 16:00:53 +010023 message(FATAL_ERROR "Only *nix like systems are supported.")
Radek Krejci183f7e72015-09-01 17:25:47 +020024endif()
25
Michal Vasko63b52fc2018-02-16 10:08:17 +010026# osx specific
27set(CMAKE_MACOSX_RPATH TRUE)
28
Radek Krejci183f7e72015-09-01 17:25:47 +020029# set default build type if not specified by user
30if(NOT CMAKE_BUILD_TYPE)
Claus Klein22091912020-01-20 13:45:47 +010031 set(CMAKE_BUILD_TYPE Debug)
Radek Krejci183f7e72015-09-01 17:25:47 +020032endif()
33
Michal Vasko89fff912020-05-27 08:29:11 +020034add_compile_options(-Wall -Wextra -fvisibility=hidden -std=gnu99)
PavolVican384786e2017-07-12 15:31:20 +020035set(CMAKE_C_FLAGS_PACKAGE "-g -O2 -DNDEBUG")
Radek Krejci183f7e72015-09-01 17:25:47 +020036
Michal Vasko08d5cde2019-07-10 14:34:55 +020037# Version of the project
38# Generic version of not only the library. Major version is reserved for really big changes of the project,
39# minor version changes with added functionality (new tool, functionality of the tool or library, ...) and
40# micro version is changed with a set of small changes or bugfixes anywhere in the project.
41set(LIBNETCONF2_MAJOR_VERSION 1)
Michal Vasko8afb2ed2019-11-05 12:07:34 +010042set(LIBNETCONF2_MINOR_VERSION 1)
Michal Vasko3bcb8ee2020-08-27 08:33:00 +020043set(LIBNETCONF2_MICRO_VERSION 31)
Radek Krejci4f2d40d2015-10-08 12:55:01 +020044set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
Michal Vasko08d5cde2019-07-10 14:34:55 +020045
46# Version of the library
47# Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes
48# with backward compatible change and micro version is connected with any internal change of the library.
49set(LIBNETCONF2_MAJOR_SOVERSION 1)
Michal Vaskoee9d7402020-04-16 09:03:59 +020050set(LIBNETCONF2_MINOR_SOVERSION 3)
Michal Vaskoa03235c2020-09-07 13:24:12 +020051set(LIBNETCONF2_MICRO_SOVERSION 11)
Michal Vasko08d5cde2019-07-10 14:34:55 +020052set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION})
53set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +020054
Michal Vasko819598b2020-07-29 10:05:11 +020055# libyang SO version required
56set(LIBYANG_DEP_SOVERSION_MAJOR 1)
57
Radek Krejciac6d3472015-10-22 15:47:18 +020058# build options
Michal Vaskofb2fb762015-10-27 11:44:32 +010059option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON)
Michal Vasko061dc802016-02-29 10:15:28 +010060option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON)
Michal Vasko3d865d22016-01-28 16:00:53 +010061option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF)
Radek Krejcic61f0b42017-06-07 13:21:41 +020062option(ENABLE_PYTHON "Include bindings for Python 3" OFF)
Michal Vaskof471fa02017-02-15 10:48:12 +010063set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived")
64set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message")
65set(MAX_PSPOLL_THREAD_COUNT 6 CACHE STRING "Maximum number of threads that could simultaneously access a ps_poll structure")
Michal Vasko5a9bd9c2019-08-16 15:50:09 +020066set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses")
Michal Vasko5a446472020-05-06 12:43:42 +020067set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/share/yang/modules" CACHE STRING "Directory with common YANG modules")
Michal Vasko3d865d22016-01-28 16:00:53 +010068
69if(ENABLE_DNSSEC AND NOT ENABLE_SSH)
70 message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.")
71 set(ENABLE_DNSSEC OFF)
72endif()
Radek Krejciac6d3472015-10-22 15:47:18 +020073
Jan Kundrátcf15d6c2017-10-26 18:07:56 +020074include_directories(${PROJECT_BINARY_DIR}/src)
75
Radek Krejci4f2d40d2015-10-08 12:55:01 +020076# source files
Radek Krejci183f7e72015-09-01 17:25:47 +020077set(libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010078 src/io.c
79 src/log.c
80 src/messages_client.c
81 src/messages_server.c
82 src/session.c
83 src/session_client.c
84 src/session_server.c
85 src/time.c)
Radek Krejci183f7e72015-09-01 17:25:47 +020086
Michal Vaskofb2fb762015-10-27 11:44:32 +010087if(ENABLE_SSH)
Claus Klein22091912020-01-20 13:45:47 +010088 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010089 src/session_client_ssh.c
90 src/session_server_ssh.c)
Radek Krejci53691be2016-02-22 13:58:37 +010091 set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif")
Radek Krejciac6d3472015-10-22 15:47:18 +020092endif()
93
Radek Krejci9f03b482015-10-22 16:02:10 +020094if(ENABLE_TLS)
Claus Klein22091912020-01-20 13:45:47 +010095 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010096 src/session_client_tls.c
97 src/session_server_tls.c)
Radek Krejci53691be2016-02-22 13:58:37 +010098 set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif")
Radek Krejci9f03b482015-10-22 16:02:10 +020099endif()
100
Radek Krejci183f7e72015-09-01 17:25:47 +0200101set(headers
Claus Klein22091912020-01-20 13:45:47 +0100102 ${PROJECT_BINARY_DIR}/src/config.h
Michal Vasko3d865d22016-01-28 16:00:53 +0100103 src/log.h
104 src/netconf.h
105 src/session.h
106 src/messages_client.h
107 src/messages_server.h
108 src/session_client.h
Michal Vasko45f298f2016-01-29 10:26:26 +0100109 src/session_client_ch.h
110 src/session_server.h
111 src/session_server_ch.h)
Radek Krejci183f7e72015-09-01 17:25:47 +0200112
Michal Vasko9e8ac262020-04-07 13:06:45 +0200113# use compat
114use_compat()
115
Claus Klein22091912020-01-20 13:45:47 +0100116# netconf2 target
Michal Vaskoa6e826a2020-04-08 08:12:29 +0200117add_library(netconf2 SHARED ${libsrc} ${headers} $<TARGET_OBJECTS:compat>)
Michal Vaskod8536552020-04-21 14:41:16 +0200118set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200119
Claus Klein22091912020-01-20 13:45:47 +0100120if((CMAKE_BUILD_TYPE STREQUAL Debug) OR (CMAKE_BUILD_TYPE STREQUAL Package))
Michal Vasko3d865d22016-01-28 16:00:53 +0100121 option(ENABLE_BUILD_TESTS "Build tests" ON)
122 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200123else()
Michal Vasko3d865d22016-01-28 16:00:53 +0100124 option(ENABLE_BUILD_TESTS "Build tests" OFF)
125 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
Radek Krejcice24ab82015-10-08 15:37:02 +0200126endif()
127
Radek Krejci32898d52016-07-14 17:37:02 +0200128# dependencies - pthread
Michal Vasko73ed9672016-01-29 13:15:15 +0100129set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
130find_package(Threads REQUIRED)
131target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT})
132
Radek Krejci28472922016-07-15 11:51:16 +0200133# check availability for some pthread functions
Radek Krejci32898d52016-07-14 17:37:02 +0200134set(CMAKE_REQUIRED_LIBRARIES pthread)
Michal Vasko7ae909a2018-11-09 09:51:42 +0100135check_include_file(stdatomic.h HAVE_STDATOMIC)
Radek Krejci28472922016-07-15 11:51:16 +0200136check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK)
Rosen Penevef2f3ac2019-07-15 18:15:28 -0700137check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP)
Radek Krejci32898d52016-07-14 17:37:02 +0200138
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200139# dependencies - openssl
Radek Krejci5c69cdf2017-05-26 16:29:29 +0200140if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH)
Michal Vasko3d865d22016-01-28 16:00:53 +0100141 find_package(OpenSSL REQUIRED)
Claus Klein22091912020-01-20 13:45:47 +0100142 if(ENABLE_TLS)
143 message(STATUS "OPENSSL found, required for TLS")
Radek Krejci53691be2016-02-22 13:58:37 +0100144 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS")
Michal Vasko3d865d22016-01-28 16:00:53 +0100145 endif()
Claus Klein22091912020-01-20 13:45:47 +0100146
Michal Vasko3d865d22016-01-28 16:00:53 +0100147 target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
148 include_directories(${OPENSSL_INCLUDE_DIR})
149endif()
150
Michal Vasko474d3732017-09-27 13:57:00 +0200151# dependencies - libssh
152if(ENABLE_SSH)
Michal Vasko819598b2020-07-29 10:05:11 +0200153 find_package(LibSSH 0.7.1 REQUIRED)
Michal Vaskoed4a4522020-05-19 16:46:12 +0200154 if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4)
155 message(FATAL_ERROR "LibSSH ${LIBSSH_VERSION} includes regression bugs and libnetconf2 will NOT work properly, try to use another version")
Michal Vasko899760c2020-01-03 10:13:11 +0100156 endif()
Claus Klein22091912020-01-20 13:45:47 +0100157
Michal Vaskoed4a4522020-05-19 16:46:12 +0200158 target_link_libraries(netconf2 ${LIBSSH_LIBRARIES})
159 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES})
Michal Vasko474d3732017-09-27 13:57:00 +0200160 include_directories(${LIBSSH_INCLUDE_DIRS})
Michal Vaskoed4a4522020-05-19 16:46:12 +0200161 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH")
Michal Vasko71514b32020-04-07 13:36:51 +0200162
163 # crypt
apropp-molex4e903c32020-04-20 03:06:58 -0400164 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX")
165 target_link_libraries(netconf2 -lcrypt)
166 list(APPEND CMAKE_REQUIRED_LIBRARIES crypt)
167 else()
168 target_link_libraries(netconf2 -llogin)
169 list(APPEND CMAKE_REQUIRED_LIBRARIES login)
170 endif()
Michal Vasko474d3732017-09-27 13:57:00 +0200171endif()
172
Michal Vasko73ed9672016-01-29 13:15:15 +0100173# dependencies - libval
Claus Klein22091912020-01-20 13:45:47 +0100174if(ENABLE_DNSSEC)
Michal Vasko3d865d22016-01-28 16:00:53 +0100175 find_package(LibVAL REQUIRED)
176 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC")
177 target_link_libraries(netconf2 ${LIBVAL_LIBRARIES})
178 include_directories(${LIBVAL_INCLUDE_DIRS})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200179endif()
180
181# dependencies - libyang
182find_package(LibYANG REQUIRED)
183target_link_libraries(netconf2 ${LIBYANG_LIBRARIES})
184include_directories(${LIBYANG_INCLUDE_DIRS})
185
apropp-molex4e903c32020-04-20 03:06:58 -0400186# header file compatibility - shadow.h and crypt.h
187check_include_file("shadow.h" HAVE_SHADOW)
188check_include_file("crypt.h" HAVE_CRYPT)
189
190# function compatibility - getpeereid on QNX
191if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
192 target_link_libraries(netconf2 -lsocket)
193 list(APPEND CMAKE_REQUIRED_LIBRARIES socket)
194 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread)
195 list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
196 check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID)
197 list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
198endif()
199
Michal Vasko51cda3c2016-01-29 14:41:26 +0100200# generate doxygen documentation for libnetconf2 API
201find_package(Doxygen)
202if(DOXYGEN_FOUND)
203 set(DOXYGEN_SKIP_DOT TRUE)
204 add_custom_target(doc
205 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile
206 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
207 configure_file(Doxyfile.in Doxyfile)
208endif()
209
Radek Krejcic61f0b42017-06-07 13:21:41 +0200210# Python bindings
211if(ENABLE_PYTHON)
212 add_subdirectory(python)
Claus Klein22091912020-01-20 13:45:47 +0100213endif()
Radek Krejcic61f0b42017-06-07 13:21:41 +0200214
Michal Vasko4cb2d722020-04-23 13:49:16 +0200215# packages
216add_subdirectory(packages)
217
Radek Krejci183f7e72015-09-01 17:25:47 +0200218# install library
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100219install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejci183f7e72015-09-01 17:25:47 +0200220
221# install headers
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100222install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
223install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Michal Vasko5a446472020-05-06 12:43:42 +0200224install(FILES ${headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2)
Radek Krejci14b14032015-10-21 15:19:43 +0200225
Michal Vasko6779d182016-02-17 14:36:36 +0100226# install pkg-config file
227find_package(PkgConfig)
228if(PKG_CONFIG_FOUND)
229 configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100230 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
Michal Vasko6779d182016-02-17 14:36:36 +0100231 # check that pkg-config includes the used path
232 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
233 if(RETURN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100234 string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
Michal Vasko6779d182016-02-17 14:36:36 +0100235 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
236 if(SUBSTR_LEN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100237 message(WARNING "pkg-config will not detect the new package after installation, adjust PKG_CONFIG_PATH using \"export PKG_CONFIG_PATH=\${PKG_CONFIG_PATH}:${CMAKE_INSTALL_LIBDIR}/pkgconfig\".")
Michal Vasko6779d182016-02-17 14:36:36 +0100238 endif()
239 endif()
240endif()
241
Radek Krejcice24ab82015-10-08 15:37:02 +0200242if(ENABLE_VALGRIND_TESTS)
Michal Vasko3d865d22016-01-28 16:00:53 +0100243 set(ENABLE_BUILD_TESTS ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200244endif()
245
246if(ENABLE_BUILD_TESTS)
Radek Krejcieaa06722016-02-26 14:27:32 +0100247 find_package(CMocka 1.0.0)
248 if(CMOCKA_FOUND)
249 enable_testing()
250 add_subdirectory(tests)
Claus Klein22091912020-01-20 13:45:47 +0100251 endif()
Radek Krejcice24ab82015-10-08 15:37:02 +0200252endif()
253
Jan Kundrátcf15d6c2017-10-26 18:07:56 +0200254configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY)
Michal Vasko1128e112015-10-26 15:34:24 +0100255configure_file(nc_client.h.in nc_client.h)
Michal Vasko086311b2016-01-08 09:53:11 +0100256configure_file(nc_server.h.in nc_server.h)
Radek Krejci14b14032015-10-21 15:19:43 +0200257
Radek Krejci183f7e72015-09-01 17:25:47 +0200258# clean cmake cache
259add_custom_target(cleancache
260 COMMAND make clean
261 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
262 COMMAND rm -rf Makefile Doxyfile
263 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
Bi-Ruei, Chiuf5faf832019-09-21 20:15:59 +0800264
265# uninstall
266add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")