blob: 4d4a56672546b0763411fbe519405793ab7c836b [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)
Radek Krejcic5dc6702020-05-19 16:35:45 +020043set(LIBNETCONF2_MICRO_VERSION 25)
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 Vaskof4d61cf2020-05-07 11:33:32 +020051set(LIBNETCONF2_MICRO_SOVERSION 5)
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
Radek Krejciac6d3472015-10-22 15:47:18 +020055# build options
Michal Vaskofb2fb762015-10-27 11:44:32 +010056option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON)
Michal Vasko061dc802016-02-29 10:15:28 +010057option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON)
Michal Vasko3d865d22016-01-28 16:00:53 +010058option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF)
Radek Krejcic61f0b42017-06-07 13:21:41 +020059option(ENABLE_PYTHON "Include bindings for Python 3" OFF)
Michal Vaskof471fa02017-02-15 10:48:12 +010060set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived")
61set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message")
62set(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 +020063set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses")
Michal Vasko5a446472020-05-06 12:43:42 +020064set(YANG_MODULE_DIR "${CMAKE_INSTALL_PREFIX}/share/yang/modules" CACHE STRING "Directory with common YANG modules")
Michal Vasko3d865d22016-01-28 16:00:53 +010065
66if(ENABLE_DNSSEC AND NOT ENABLE_SSH)
67 message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.")
68 set(ENABLE_DNSSEC OFF)
69endif()
Radek Krejciac6d3472015-10-22 15:47:18 +020070
Jan Kundrátcf15d6c2017-10-26 18:07:56 +020071include_directories(${PROJECT_BINARY_DIR}/src)
72
Radek Krejci4f2d40d2015-10-08 12:55:01 +020073# source files
Radek Krejci183f7e72015-09-01 17:25:47 +020074set(libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010075 src/io.c
76 src/log.c
77 src/messages_client.c
78 src/messages_server.c
79 src/session.c
80 src/session_client.c
81 src/session_server.c
82 src/time.c)
Radek Krejci183f7e72015-09-01 17:25:47 +020083
Michal Vaskofb2fb762015-10-27 11:44:32 +010084if(ENABLE_SSH)
Claus Klein22091912020-01-20 13:45:47 +010085 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010086 src/session_client_ssh.c
87 src/session_server_ssh.c)
Radek Krejci53691be2016-02-22 13:58:37 +010088 set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif")
Radek Krejciac6d3472015-10-22 15:47:18 +020089endif()
90
Radek Krejci9f03b482015-10-22 16:02:10 +020091if(ENABLE_TLS)
Claus Klein22091912020-01-20 13:45:47 +010092 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010093 src/session_client_tls.c
94 src/session_server_tls.c)
Radek Krejci53691be2016-02-22 13:58:37 +010095 set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif")
Radek Krejci9f03b482015-10-22 16:02:10 +020096endif()
97
Radek Krejci183f7e72015-09-01 17:25:47 +020098set(headers
Claus Klein22091912020-01-20 13:45:47 +010099 ${PROJECT_BINARY_DIR}/src/config.h
Michal Vasko3d865d22016-01-28 16:00:53 +0100100 src/log.h
101 src/netconf.h
102 src/session.h
103 src/messages_client.h
104 src/messages_server.h
105 src/session_client.h
Michal Vasko45f298f2016-01-29 10:26:26 +0100106 src/session_client_ch.h
107 src/session_server.h
108 src/session_server_ch.h)
Radek Krejci183f7e72015-09-01 17:25:47 +0200109
Michal Vasko9e8ac262020-04-07 13:06:45 +0200110# use compat
111use_compat()
112
Claus Klein22091912020-01-20 13:45:47 +0100113# netconf2 target
Michal Vaskoa6e826a2020-04-08 08:12:29 +0200114add_library(netconf2 SHARED ${libsrc} ${headers} $<TARGET_OBJECTS:compat>)
Michal Vaskod8536552020-04-21 14:41:16 +0200115set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200116
Claus Klein22091912020-01-20 13:45:47 +0100117if((CMAKE_BUILD_TYPE STREQUAL Debug) OR (CMAKE_BUILD_TYPE STREQUAL Package))
Michal Vasko3d865d22016-01-28 16:00:53 +0100118 option(ENABLE_BUILD_TESTS "Build tests" ON)
119 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200120else()
Michal Vasko3d865d22016-01-28 16:00:53 +0100121 option(ENABLE_BUILD_TESTS "Build tests" OFF)
122 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
Radek Krejcice24ab82015-10-08 15:37:02 +0200123endif()
124
Radek Krejci32898d52016-07-14 17:37:02 +0200125# dependencies - pthread
Michal Vasko73ed9672016-01-29 13:15:15 +0100126set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
127find_package(Threads REQUIRED)
128target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT})
129
Radek Krejci28472922016-07-15 11:51:16 +0200130# check availability for some pthread functions
Radek Krejci32898d52016-07-14 17:37:02 +0200131set(CMAKE_REQUIRED_LIBRARIES pthread)
Michal Vasko7ae909a2018-11-09 09:51:42 +0100132check_include_file(stdatomic.h HAVE_STDATOMIC)
Radek Krejci28472922016-07-15 11:51:16 +0200133check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK)
Rosen Penevef2f3ac2019-07-15 18:15:28 -0700134check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP)
Radek Krejci32898d52016-07-14 17:37:02 +0200135
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200136# dependencies - openssl
Radek Krejci5c69cdf2017-05-26 16:29:29 +0200137if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH)
Michal Vasko3d865d22016-01-28 16:00:53 +0100138 find_package(OpenSSL REQUIRED)
Claus Klein22091912020-01-20 13:45:47 +0100139 if(ENABLE_TLS)
140 message(STATUS "OPENSSL found, required for TLS")
Radek Krejci53691be2016-02-22 13:58:37 +0100141 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS")
Michal Vasko3d865d22016-01-28 16:00:53 +0100142 endif()
Claus Klein22091912020-01-20 13:45:47 +0100143
Michal Vasko3d865d22016-01-28 16:00:53 +0100144 target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
145 include_directories(${OPENSSL_INCLUDE_DIR})
146endif()
147
Michal Vasko474d3732017-09-27 13:57:00 +0200148# dependencies - libssh
149if(ENABLE_SSH)
Michal Vasko71514b32020-04-07 13:36:51 +0200150 find_package(LibSSH 0.7.0 REQUIRED)
Michal Vaskoed4a4522020-05-19 16:46:12 +0200151 if(LIBSSH_VERSION VERSION_EQUAL 0.9.3 OR LIBSSH_VERSION VERSION_EQUAL 0.9.4)
152 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 +0100153 endif()
Claus Klein22091912020-01-20 13:45:47 +0100154
Michal Vaskoed4a4522020-05-19 16:46:12 +0200155 target_link_libraries(netconf2 ${LIBSSH_LIBRARIES})
156 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES})
Michal Vasko474d3732017-09-27 13:57:00 +0200157 include_directories(${LIBSSH_INCLUDE_DIRS})
Michal Vaskoed4a4522020-05-19 16:46:12 +0200158 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH")
Michal Vasko71514b32020-04-07 13:36:51 +0200159
160 # crypt
apropp-molex4e903c32020-04-20 03:06:58 -0400161 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX")
162 target_link_libraries(netconf2 -lcrypt)
163 list(APPEND CMAKE_REQUIRED_LIBRARIES crypt)
164 else()
165 target_link_libraries(netconf2 -llogin)
166 list(APPEND CMAKE_REQUIRED_LIBRARIES login)
167 endif()
Michal Vasko474d3732017-09-27 13:57:00 +0200168endif()
169
Michal Vasko73ed9672016-01-29 13:15:15 +0100170# dependencies - libval
Claus Klein22091912020-01-20 13:45:47 +0100171if(ENABLE_DNSSEC)
Michal Vasko3d865d22016-01-28 16:00:53 +0100172 find_package(LibVAL REQUIRED)
173 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC")
174 target_link_libraries(netconf2 ${LIBVAL_LIBRARIES})
175 include_directories(${LIBVAL_INCLUDE_DIRS})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200176endif()
177
178# dependencies - libyang
179find_package(LibYANG REQUIRED)
180target_link_libraries(netconf2 ${LIBYANG_LIBRARIES})
181include_directories(${LIBYANG_INCLUDE_DIRS})
182
apropp-molex4e903c32020-04-20 03:06:58 -0400183# header file compatibility - shadow.h and crypt.h
184check_include_file("shadow.h" HAVE_SHADOW)
185check_include_file("crypt.h" HAVE_CRYPT)
186
187# function compatibility - getpeereid on QNX
188if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
189 target_link_libraries(netconf2 -lsocket)
190 list(APPEND CMAKE_REQUIRED_LIBRARIES socket)
191 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread)
192 list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
193 check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID)
194 list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
195endif()
196
Michal Vasko51cda3c2016-01-29 14:41:26 +0100197# generate doxygen documentation for libnetconf2 API
198find_package(Doxygen)
199if(DOXYGEN_FOUND)
200 set(DOXYGEN_SKIP_DOT TRUE)
201 add_custom_target(doc
202 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile
203 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
204 configure_file(Doxyfile.in Doxyfile)
205endif()
206
Radek Krejcic61f0b42017-06-07 13:21:41 +0200207# Python bindings
208if(ENABLE_PYTHON)
209 add_subdirectory(python)
Claus Klein22091912020-01-20 13:45:47 +0100210endif()
Radek Krejcic61f0b42017-06-07 13:21:41 +0200211
Michal Vasko4cb2d722020-04-23 13:49:16 +0200212# packages
213add_subdirectory(packages)
214
Radek Krejci183f7e72015-09-01 17:25:47 +0200215# install library
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100216install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejci183f7e72015-09-01 17:25:47 +0200217
218# install headers
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100219install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
220install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Michal Vasko5a446472020-05-06 12:43:42 +0200221install(FILES ${headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2)
Radek Krejci14b14032015-10-21 15:19:43 +0200222
Michal Vasko6779d182016-02-17 14:36:36 +0100223# install pkg-config file
224find_package(PkgConfig)
225if(PKG_CONFIG_FOUND)
226 configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100227 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
Michal Vasko6779d182016-02-17 14:36:36 +0100228 # check that pkg-config includes the used path
229 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
230 if(RETURN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100231 string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
Michal Vasko6779d182016-02-17 14:36:36 +0100232 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
233 if(SUBSTR_LEN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100234 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 +0100235 endif()
236 endif()
237endif()
238
Radek Krejcice24ab82015-10-08 15:37:02 +0200239if(ENABLE_VALGRIND_TESTS)
Michal Vasko3d865d22016-01-28 16:00:53 +0100240 set(ENABLE_BUILD_TESTS ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200241endif()
242
243if(ENABLE_BUILD_TESTS)
Radek Krejcieaa06722016-02-26 14:27:32 +0100244 find_package(CMocka 1.0.0)
245 if(CMOCKA_FOUND)
246 enable_testing()
247 add_subdirectory(tests)
Claus Klein22091912020-01-20 13:45:47 +0100248 endif()
Radek Krejcice24ab82015-10-08 15:37:02 +0200249endif()
250
Jan Kundrátcf15d6c2017-10-26 18:07:56 +0200251configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY)
Michal Vasko1128e112015-10-26 15:34:24 +0100252configure_file(nc_client.h.in nc_client.h)
Michal Vasko086311b2016-01-08 09:53:11 +0100253configure_file(nc_server.h.in nc_server.h)
Radek Krejci14b14032015-10-21 15:19:43 +0200254
Radek Krejci183f7e72015-09-01 17:25:47 +0200255# clean cmake cache
256add_custom_target(cleancache
257 COMMAND make clean
258 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
259 COMMAND rm -rf Makefile Doxyfile
260 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
Bi-Ruei, Chiuf5faf832019-09-21 20:15:59 +0800261
262# uninstall
263add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")