blob: 851b0b5cee3b41b5ca716e0683ed156d67f7ba1f [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
Jan Kundrátb78cdfc2016-11-04 17:11:24 +010029set(INCLUDE_INSTALL_SUBDIR ${CMAKE_INSTALL_INCLUDEDIR}/libnetconf2)
30set(DATA_INSTALL_DIR ${CMAKE_INSTALL_DATADIR}/libnetconf2)
Michal Vaskod5f09ba2016-02-23 15:44:58 +010031
Radek Krejci183f7e72015-09-01 17:25:47 +020032# set default build type if not specified by user
33if(NOT CMAKE_BUILD_TYPE)
Claus Klein22091912020-01-20 13:45:47 +010034 set(CMAKE_BUILD_TYPE Debug)
Radek Krejci183f7e72015-09-01 17:25:47 +020035endif()
36
Claus Klein22091912020-01-20 13:45:47 +010037set(CMAKE_C_STANDARD 11)
38set(CMAKE_CXX_EXTENSIONS ON)
39add_compile_options(-Wall -Wextra -fvisibility=hidden)
PavolVican384786e2017-07-12 15:31:20 +020040set(CMAKE_C_FLAGS_PACKAGE "-g -O2 -DNDEBUG")
Radek Krejci183f7e72015-09-01 17:25:47 +020041
Michal Vasko08d5cde2019-07-10 14:34:55 +020042# Version of the project
43# Generic version of not only the library. Major version is reserved for really big changes of the project,
44# minor version changes with added functionality (new tool, functionality of the tool or library, ...) and
45# micro version is changed with a set of small changes or bugfixes anywhere in the project.
46set(LIBNETCONF2_MAJOR_VERSION 1)
Michal Vasko8afb2ed2019-11-05 12:07:34 +010047set(LIBNETCONF2_MINOR_VERSION 1)
Michal Vaskoafdbe462020-04-27 15:47:47 +020048set(LIBNETCONF2_MICRO_VERSION 23)
Radek Krejci4f2d40d2015-10-08 12:55:01 +020049set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
Michal Vasko08d5cde2019-07-10 14:34:55 +020050
51# Version of the library
52# Major version is changed with every backward non-compatible API/ABI change in libyang, minor version changes
53# with backward compatible change and micro version is connected with any internal change of the library.
54set(LIBNETCONF2_MAJOR_SOVERSION 1)
Michal Vaskoee9d7402020-04-16 09:03:59 +020055set(LIBNETCONF2_MINOR_SOVERSION 3)
Michal Vaskob01d6832020-04-27 15:47:36 +020056set(LIBNETCONF2_MICRO_SOVERSION 4)
Michal Vasko08d5cde2019-07-10 14:34:55 +020057set(LIBNETCONF2_SOVERSION_FULL ${LIBNETCONF2_MAJOR_SOVERSION}.${LIBNETCONF2_MINOR_SOVERSION}.${LIBNETCONF2_MICRO_SOVERSION})
58set(LIBNETCONF2_SOVERSION ${LIBNETCONF2_MAJOR_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +020059
Radek Krejciac6d3472015-10-22 15:47:18 +020060# build options
Michal Vaskofb2fb762015-10-27 11:44:32 +010061option(ENABLE_SSH "Enable NETCONF over SSH support (via libssh)" ON)
Michal Vasko061dc802016-02-29 10:15:28 +010062option(ENABLE_TLS "Enable NETCONF over TLS support (via OpenSSL)" ON)
Michal Vasko3d865d22016-01-28 16:00:53 +010063option(ENABLE_DNSSEC "Enable support for SSHFP retrieval using DNSSEC for SSH (requires OpenSSL and libval)" OFF)
Radek Krejcic61f0b42017-06-07 13:21:41 +020064option(ENABLE_PYTHON "Include bindings for Python 3" OFF)
Michal Vaskof471fa02017-02-15 10:48:12 +010065set(READ_INACTIVE_TIMEOUT 20 CACHE STRING "Maximum number of seconds waiting for new data once some data have arrived")
66set(READ_ACTIVE_TIMEOUT 300 CACHE STRING "Maximum number of seconds for receiving a full message")
67set(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 +020068set(TIMEOUT_STEP 100 CACHE STRING "Number of microseconds tasks are repeated until timeout elapses")
Michal Vaskoff7e3562018-02-15 13:41:22 +010069set(SCHEMAS_DIR "${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR}" CACHE STRING "Directory with internal lnc2 schemas")
Michal Vasko3d865d22016-01-28 16:00:53 +010070
71if(ENABLE_DNSSEC AND NOT ENABLE_SSH)
72 message(WARNING "DNSSEC SSHFP retrieval cannot be used without SSH support.")
73 set(ENABLE_DNSSEC OFF)
74endif()
Radek Krejciac6d3472015-10-22 15:47:18 +020075
Jan Kundrátcf15d6c2017-10-26 18:07:56 +020076include_directories(${PROJECT_BINARY_DIR}/src)
77
Radek Krejci4f2d40d2015-10-08 12:55:01 +020078# source files
Radek Krejci183f7e72015-09-01 17:25:47 +020079set(libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010080 src/io.c
81 src/log.c
82 src/messages_client.c
83 src/messages_server.c
84 src/session.c
85 src/session_client.c
86 src/session_server.c
87 src/time.c)
Radek Krejci183f7e72015-09-01 17:25:47 +020088
Michal Vaskofb2fb762015-10-27 11:44:32 +010089if(ENABLE_SSH)
Claus Klein22091912020-01-20 13:45:47 +010090 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010091 src/session_client_ssh.c
92 src/session_server_ssh.c)
Radek Krejci53691be2016-02-22 13:58:37 +010093 set(SSH_MACRO "#ifndef NC_ENABLED_SSH\n#define NC_ENABLED_SSH\n#endif")
Radek Krejciac6d3472015-10-22 15:47:18 +020094endif()
95
Radek Krejci9f03b482015-10-22 16:02:10 +020096if(ENABLE_TLS)
Claus Klein22091912020-01-20 13:45:47 +010097 list(APPEND libsrc
Michal Vasko3d865d22016-01-28 16:00:53 +010098 src/session_client_tls.c
99 src/session_server_tls.c)
Radek Krejci53691be2016-02-22 13:58:37 +0100100 set(TLS_MACRO "#ifndef NC_ENABLED_TLS\n#define NC_ENABLED_TLS\n#endif")
Radek Krejci9f03b482015-10-22 16:02:10 +0200101endif()
102
Radek Krejci183f7e72015-09-01 17:25:47 +0200103set(headers
Claus Klein22091912020-01-20 13:45:47 +0100104 ${PROJECT_BINARY_DIR}/src/config.h
Michal Vasko3d865d22016-01-28 16:00:53 +0100105 src/log.h
106 src/netconf.h
107 src/session.h
108 src/messages_client.h
109 src/messages_server.h
110 src/session_client.h
Michal Vasko45f298f2016-01-29 10:26:26 +0100111 src/session_client_ch.h
112 src/session_server.h
113 src/session_server_ch.h)
Radek Krejci183f7e72015-09-01 17:25:47 +0200114
Michal Vasko9e8ac262020-04-07 13:06:45 +0200115# use compat
116use_compat()
117
Claus Klein22091912020-01-20 13:45:47 +0100118# netconf2 target
Michal Vaskoa6e826a2020-04-08 08:12:29 +0200119add_library(netconf2 SHARED ${libsrc} ${headers} $<TARGET_OBJECTS:compat>)
Michal Vaskod8536552020-04-21 14:41:16 +0200120set_target_properties(netconf2 PROPERTIES VERSION ${LIBNETCONF2_SOVERSION_FULL} SOVERSION ${LIBNETCONF2_SOVERSION})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200121
Claus Klein22091912020-01-20 13:45:47 +0100122if((CMAKE_BUILD_TYPE STREQUAL Debug) OR (CMAKE_BUILD_TYPE STREQUAL Package))
Michal Vasko3d865d22016-01-28 16:00:53 +0100123 option(ENABLE_BUILD_TESTS "Build tests" ON)
124 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200125else()
Michal Vasko3d865d22016-01-28 16:00:53 +0100126 option(ENABLE_BUILD_TESTS "Build tests" OFF)
127 option(ENABLE_VALGRIND_TESTS "Build tests with valgrind" OFF)
Radek Krejcice24ab82015-10-08 15:37:02 +0200128endif()
129
Radek Krejci32898d52016-07-14 17:37:02 +0200130# dependencies - pthread
Michal Vasko73ed9672016-01-29 13:15:15 +0100131set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
132find_package(Threads REQUIRED)
133target_link_libraries(netconf2 ${CMAKE_THREAD_LIBS_INIT})
134
Radek Krejci28472922016-07-15 11:51:16 +0200135# check availability for some pthread functions
Radek Krejci32898d52016-07-14 17:37:02 +0200136set(CMAKE_REQUIRED_LIBRARIES pthread)
Michal Vasko7ae909a2018-11-09 09:51:42 +0100137check_include_file(stdatomic.h HAVE_STDATOMIC)
Radek Krejci28472922016-07-15 11:51:16 +0200138check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK)
Rosen Penevef2f3ac2019-07-15 18:15:28 -0700139check_function_exists(pthread_rwlockattr_setkind_np HAVE_PTHREAD_RWLOCKATTR_SETKIND_NP)
Radek Krejci32898d52016-07-14 17:37:02 +0200140
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200141# dependencies - openssl
Radek Krejci5c69cdf2017-05-26 16:29:29 +0200142if(ENABLE_TLS OR ENABLE_DNSSEC OR ENABLE_SSH)
Michal Vasko3d865d22016-01-28 16:00:53 +0100143 find_package(OpenSSL REQUIRED)
Claus Klein22091912020-01-20 13:45:47 +0100144 if(ENABLE_TLS)
145 message(STATUS "OPENSSL found, required for TLS")
Radek Krejci53691be2016-02-22 13:58:37 +0100146 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_TLS")
Michal Vasko3d865d22016-01-28 16:00:53 +0100147 endif()
Claus Klein22091912020-01-20 13:45:47 +0100148
Michal Vasko3d865d22016-01-28 16:00:53 +0100149 target_link_libraries(netconf2 ${OPENSSL_LIBRARIES})
150 include_directories(${OPENSSL_INCLUDE_DIR})
151endif()
152
Michal Vasko474d3732017-09-27 13:57:00 +0200153# dependencies - libssh
154if(ENABLE_SSH)
Michal Vasko71514b32020-04-07 13:36:51 +0200155 find_package(LibSSH 0.7.0 REQUIRED)
Michal Vasko474d3732017-09-27 13:57:00 +0200156 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNC_ENABLED_SSH")
Michal Vasko71514b32020-04-07 13:36:51 +0200157 message(STATUS "LibSSH version ${LibSSH_VERSION} found")
Claus Klein22091912020-01-20 13:45:47 +0100158
Michal Vasko63067362020-04-22 15:56:02 +0200159 if(LibSSH_VERSION VERSION_EQUAL 0.9.3 OR LibSSH_VERSION VERSION_EQUAL 0.9.4)
160 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 +0100161 endif()
Claus Klein22091912020-01-20 13:45:47 +0100162
Michal Vasko71514b32020-04-07 13:36:51 +0200163 if(LibSSH_VERSION VERSION_LESS 0.8.0)
164 target_link_libraries(netconf2 "-L${LIBSSH_LIBRARY_DIR}" -lssh -lssh_threads)
165 list(APPEND CMAKE_REQUIRED_FLAGS "-L${LIBSSH_LIBRARY_DIR}")
166 list(APPEND CMAKE_REQUIRED_LIBRARIES ssh ssh_threads)
David Sedlákb3914fe2018-08-20 15:03:25 +0200167 else()
Michal Vasko71514b32020-04-07 13:36:51 +0200168 target_link_libraries(netconf2 ${LIBSSH_LIBRARIES})
169 list(APPEND CMAKE_REQUIRED_LIBRARIES ${LIBSSH_LIBRARIES})
David Sedlákb3914fe2018-08-20 15:03:25 +0200170 endif()
Michal Vasko474d3732017-09-27 13:57:00 +0200171 include_directories(${LIBSSH_INCLUDE_DIRS})
Michal Vasko71514b32020-04-07 13:36:51 +0200172
173 # crypt
apropp-molex4e903c32020-04-20 03:06:58 -0400174 if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "QNX")
175 target_link_libraries(netconf2 -lcrypt)
176 list(APPEND CMAKE_REQUIRED_LIBRARIES crypt)
177 else()
178 target_link_libraries(netconf2 -llogin)
179 list(APPEND CMAKE_REQUIRED_LIBRARIES login)
180 endif()
Michal Vasko474d3732017-09-27 13:57:00 +0200181endif()
182
Michal Vasko73ed9672016-01-29 13:15:15 +0100183# dependencies - libval
Claus Klein22091912020-01-20 13:45:47 +0100184if(ENABLE_DNSSEC)
Michal Vasko3d865d22016-01-28 16:00:53 +0100185 find_package(LibVAL REQUIRED)
186 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DENABLE_DNSSEC")
187 target_link_libraries(netconf2 ${LIBVAL_LIBRARIES})
188 include_directories(${LIBVAL_INCLUDE_DIRS})
Radek Krejci4f2d40d2015-10-08 12:55:01 +0200189endif()
190
191# dependencies - libyang
192find_package(LibYANG REQUIRED)
193target_link_libraries(netconf2 ${LIBYANG_LIBRARIES})
194include_directories(${LIBYANG_INCLUDE_DIRS})
195
apropp-molex4e903c32020-04-20 03:06:58 -0400196# header file compatibility - shadow.h and crypt.h
197check_include_file("shadow.h" HAVE_SHADOW)
198check_include_file("crypt.h" HAVE_CRYPT)
199
200# function compatibility - getpeereid on QNX
201if(${CMAKE_SYSTEM_NAME} MATCHES "QNX")
202 target_link_libraries(netconf2 -lsocket)
203 list(APPEND CMAKE_REQUIRED_LIBRARIES socket)
204 list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES pthread)
205 list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
206 check_symbol_exists(getpeereid "sys/types.h;unistd.h" HAVE_GETPEEREID)
207 list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_QNX_SOURCE)
208endif()
209
Michal Vasko51cda3c2016-01-29 14:41:26 +0100210# generate doxygen documentation for libnetconf2 API
211find_package(Doxygen)
212if(DOXYGEN_FOUND)
213 set(DOXYGEN_SKIP_DOT TRUE)
214 add_custom_target(doc
215 COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_BINARY_DIR}/Doxyfile
216 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
217 configure_file(Doxyfile.in Doxyfile)
218endif()
219
Radek Krejcic61f0b42017-06-07 13:21:41 +0200220# Python bindings
221if(ENABLE_PYTHON)
222 add_subdirectory(python)
Claus Klein22091912020-01-20 13:45:47 +0100223endif()
Radek Krejcic61f0b42017-06-07 13:21:41 +0200224
Michal Vasko4cb2d722020-04-23 13:49:16 +0200225# packages
226add_subdirectory(packages)
227
Radek Krejci183f7e72015-09-01 17:25:47 +0200228# install library
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100229install(TARGETS netconf2 DESTINATION ${CMAKE_INSTALL_LIBDIR})
Radek Krejci183f7e72015-09-01 17:25:47 +0200230
231# install headers
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100232install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_client.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
233install(FILES ${CMAKE_CURRENT_BINARY_DIR}/nc_server.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Radek Krejci183f7e72015-09-01 17:25:47 +0200234install(FILES ${headers} DESTINATION ${INCLUDE_INSTALL_SUBDIR})
235
Radek Krejci14b14032015-10-21 15:19:43 +0200236# install schemas
237install(
Michal Vasko3d865d22016-01-28 16:00:53 +0100238 CODE "file(GLOB yin_schemas \"${CMAKE_SOURCE_DIR}/schemas/*.yin\")"
Michal Vaskoed6e0d32016-02-24 13:28:58 +0100239 CODE "file(INSTALL \${yin_schemas} DESTINATION ${CMAKE_INSTALL_PREFIX}/${DATA_INSTALL_DIR})"
Radek Krejci14b14032015-10-21 15:19:43 +0200240)
241
Michal Vasko6779d182016-02-17 14:36:36 +0100242# install pkg-config file
243find_package(PkgConfig)
244if(PKG_CONFIG_FOUND)
245 configure_file("libnetconf2.pc.in" "libnetconf2.pc" @ONLY)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100246 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/libnetconf2.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
Michal Vasko6779d182016-02-17 14:36:36 +0100247 # check that pkg-config includes the used path
248 execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable pc_path pkg-config RESULT_VARIABLE RETURN OUTPUT_VARIABLE PC_PATH ERROR_QUIET)
249 if(RETURN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100250 string(REGEX MATCH "${CMAKE_INSTALL_LIBDIR}/pkgconfig" SUBSTR "${PC_PATH}")
Michal Vasko6779d182016-02-17 14:36:36 +0100251 string(LENGTH "${SUBSTR}" SUBSTR_LEN)
252 if(SUBSTR_LEN EQUAL 0)
Jan Kundrátb78cdfc2016-11-04 17:11:24 +0100253 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 +0100254 endif()
255 endif()
256endif()
257
Radek Krejcice24ab82015-10-08 15:37:02 +0200258if(ENABLE_VALGRIND_TESTS)
Michal Vasko3d865d22016-01-28 16:00:53 +0100259 set(ENABLE_BUILD_TESTS ON)
Radek Krejcice24ab82015-10-08 15:37:02 +0200260endif()
261
262if(ENABLE_BUILD_TESTS)
Radek Krejcieaa06722016-02-26 14:27:32 +0100263 find_package(CMocka 1.0.0)
264 if(CMOCKA_FOUND)
265 enable_testing()
266 add_subdirectory(tests)
Claus Klein22091912020-01-20 13:45:47 +0100267 endif()
Radek Krejcice24ab82015-10-08 15:37:02 +0200268endif()
269
Jan Kundrátcf15d6c2017-10-26 18:07:56 +0200270configure_file("${PROJECT_SOURCE_DIR}/src/config.h.in" "${PROJECT_BINARY_DIR}/src/config.h" ESCAPE_QUOTES @ONLY)
Michal Vasko1128e112015-10-26 15:34:24 +0100271configure_file(nc_client.h.in nc_client.h)
Michal Vasko086311b2016-01-08 09:53:11 +0100272configure_file(nc_server.h.in nc_server.h)
Radek Krejci14b14032015-10-21 15:19:43 +0200273
Radek Krejci183f7e72015-09-01 17:25:47 +0200274# clean cmake cache
275add_custom_target(cleancache
276 COMMAND make clean
277 COMMAND find . -iname '*cmake*' -not -name CMakeLists.txt -exec rm -rf {} +
278 COMMAND rm -rf Makefile Doxyfile
279 WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
Bi-Ruei, Chiuf5faf832019-09-21 20:15:59 +0800280
281# uninstall
282add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_MODULE_PATH}/uninstall.cmake")