2019-10-30 11:09:14 +08:00
|
|
|
if(WIN32)
|
|
|
|
#
|
|
|
|
# We need 3.12 or later, so that we can set policy CMP0074; see
|
|
|
|
# below.
|
2023-02-14 04:34:42 +08:00
|
|
|
#
|
2019-10-30 11:09:14 +08:00
|
|
|
cmake_minimum_required(VERSION 3.12)
|
2023-02-15 08:07:22 +08:00
|
|
|
else(WIN32)
|
2021-01-08 17:35:31 +08:00
|
|
|
#
|
2023-01-16 06:48:59 +08:00
|
|
|
# For now, require only 2.8.12, just in case somebody is
|
2021-01-08 17:35:31 +08:00
|
|
|
# configuring with CMake on a "long-term support" version
|
|
|
|
# of some OS and that version supplies an older version of
|
|
|
|
# CMake.
|
|
|
|
#
|
|
|
|
# If this is ever updated to CMake 3.1 or later, remove the
|
|
|
|
# stuff in cmake/Modules/FindPCAP.cmake that appends subdirectories
|
|
|
|
# of directories from CMAKE_PREFIX_PATH to the PKG_CONFIG_PATH
|
|
|
|
# environment variable when running pkg-config, to make sure
|
|
|
|
# it finds any .pc file from there.
|
|
|
|
#
|
2022-11-25 22:49:52 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2023-02-15 08:07:22 +08:00
|
|
|
endif(WIN32)
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2019-10-30 09:45:43 +08:00
|
|
|
#
|
|
|
|
# We want find_path() and find_library() to honor {packagename}_ROOT,
|
|
|
|
# as that appears to be the standard way to say "hey, look here for
|
|
|
|
# this package" from the command line.
|
|
|
|
#
|
|
|
|
if(POLICY CMP0074)
|
|
|
|
cmake_policy(SET CMP0074 NEW)
|
|
|
|
endif()
|
|
|
|
|
2022-09-26 05:35:38 +08:00
|
|
|
#
|
|
|
|
# OK, this is a pain.
|
|
|
|
#
|
|
|
|
# When building on NetBSD, with a libpcap installed from pkgsrc,
|
|
|
|
# a -Wl,-rpath,/usr/pkg/lib option is added to the options when
|
|
|
|
# linking tcpdump. This puts /usr/pkg/lib into the run-time path.
|
|
|
|
#
|
|
|
|
# However, by default, CMake adds a rule to the install CMake script
|
|
|
|
# a CMake command (using an undocumented subcommand of file()) that
|
|
|
|
# strips /usr/pkg/lib *out* of the run-time path; the message in the
|
|
|
|
# output for the "install" target is
|
|
|
|
#
|
|
|
|
# -- Set runtime path of "{target-directory}/tcpdump" to ""
|
|
|
|
#
|
|
|
|
# I am not certain what the rationale is for doing this, but a
|
|
|
|
# *consequence* of this is that, when you run the installed tcpdump,
|
|
|
|
# it fails to find libpcap.so:
|
|
|
|
#
|
|
|
|
# $ {target-directory}/tcpdump -h
|
|
|
|
# {target-directory}/tcpdump: Shared object "libpcap.so.0" not found
|
|
|
|
#
|
2023-01-02 01:12:39 +08:00
|
|
|
# It also appears to be the case that, on Ubuntu 22.04, FreeBSD 12,
|
2022-09-30 14:53:20 +08:00
|
|
|
# DragonFly BSD 5.8, OpenBSD 6.6, and Solaris 11.4,
|
2022-09-26 15:40:50 +08:00
|
|
|
#
|
|
|
|
# On Ubuntu and Solaris, even if you have a libpcap in /usr/local, you
|
|
|
|
# have to provide not only -I/usr/local/include and -L/usr/local/lib,
|
|
|
|
# you also must provide -Wl,-rpath,/usr/local/lib in order to have
|
|
|
|
# the run-time linker look in /usr/local/lib for libpcap. If it's not
|
|
|
|
# specified, then, if the shared library major version number of the
|
|
|
|
# libpcap in /usr/lib is the same as the shared major version number
|
|
|
|
# of the libpcap in /usr/local/lib, the run-time linker will find the
|
|
|
|
# libpcap in /usr/lib; if the versions are different, the run-time
|
|
|
|
# linker will fail to find the libpcap in /usr/lib, so the program will
|
|
|
|
# fail to run.
|
|
|
|
#
|
2022-09-26 05:35:38 +08:00
|
|
|
# We suppress this by setting CMAKE_INSTALL_RPATH_USE_LINK_PATH to TRUE;
|
|
|
|
# as the documentation for that variable says:
|
|
|
|
#
|
|
|
|
# Add paths to linker search and installed rpath.
|
|
|
|
#
|
|
|
|
# CMAKE_INSTALL_RPATH_USE_LINK_PATH is a boolean that if set to True
|
|
|
|
# will append to the runtime search path (rpath) of installed
|
|
|
|
# binaries any directories outside the project that are in the linker
|
|
|
|
# search path or contain linked library files. The directories are
|
|
|
|
# appended after the value of the INSTALL_RPATH target property.
|
|
|
|
#
|
|
|
|
# If, for whatever reason, directories in which we search for external
|
|
|
|
# libraries, other than the standard system library directories, are
|
|
|
|
# added to the executable's rpath in the build process, we most
|
|
|
|
# defintely want them in the installed image's rpath if they are
|
|
|
|
# necessary in order to find the libraries at run time.
|
|
|
|
#
|
|
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)
|
|
|
|
|
2021-08-08 15:36:42 +08:00
|
|
|
#
|
2023-02-16 07:10:35 +08:00
|
|
|
# We explicitly indicate what languages are used in tcpdump to avoid
|
|
|
|
# checking for a C++ compiler.
|
|
|
|
#
|
|
|
|
# One reason to avoid that check is that there's no need to waste
|
|
|
|
# configuration time performing it.
|
|
|
|
#
|
|
|
|
# Another reason is that:
|
2021-08-08 15:36:42 +08:00
|
|
|
#
|
|
|
|
# CMake will try to determine the sizes of some data types, including
|
|
|
|
# void *, early in the process of configuration; apparently, it's done
|
|
|
|
# as part of processing the project() command.
|
|
|
|
#
|
|
|
|
# At least as of CMake 2.8.6, it does so by checking the size of
|
|
|
|
# "void *" in C, setting CMAKE_C_SIZEOF_DATA_PTR based on that,
|
|
|
|
# setting CMAKE_SIZEOF_VOID_P to that, and then checking the size
|
|
|
|
# of "void *" in C++, setting CMAKE_CXX_SIZEOF_DATA_PTR based on
|
|
|
|
# that, and then setting CMAKE_SIZEOF_VOID_P to *that*.
|
|
|
|
#
|
|
|
|
# The compile tests include whatever C flags may have been provided
|
|
|
|
# to CMake in the CFLAGS and CXXFLAGS environment variables.
|
|
|
|
#
|
|
|
|
# If you set an architecture flag such as -m32 or -m64 in CFLAGS
|
|
|
|
# but *not* in CXXFLAGS, the size for C++ will win, and hilarity
|
|
|
|
# will ensue.
|
|
|
|
#
|
2021-08-09 02:54:17 +08:00
|
|
|
# Or if, at least on Solaris, you have a newer version of GCC
|
|
|
|
# installed, but *not* a newer version of G++, and you have Oracle
|
|
|
|
# Studio installed, it will find GCC, which will default to building
|
|
|
|
# 64-bit, and Oracle Studio's C++ compiler, which will default to
|
|
|
|
# building 32-bit, the size for C++ will win, and, again, hilarity
|
|
|
|
# will ensue.
|
2021-08-08 15:36:42 +08:00
|
|
|
#
|
2021-08-09 02:54:17 +08:00
|
|
|
project(tcpdump C)
|
2021-08-08 15:36:42 +08:00
|
|
|
|
2019-08-10 04:41:06 +08:00
|
|
|
#
|
|
|
|
# For checking if a compiler flag works and adding it if it does.
|
|
|
|
#
|
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
macro(check_and_add_compiler_option _option)
|
|
|
|
message(STATUS "Checking C compiler flag ${_option}")
|
|
|
|
string(REPLACE "=" "-" _temp_option_variable ${_option})
|
|
|
|
string(REGEX REPLACE "^-" "" _option_variable ${_temp_option_variable})
|
|
|
|
check_c_compiler_flag("${_option}" ${_option_variable})
|
|
|
|
if(${${_option_variable}})
|
|
|
|
set(C_ADDITIONAL_FLAGS "${C_ADDITIONAL_FLAGS} ${_option}")
|
|
|
|
endif()
|
|
|
|
endmacro()
|
|
|
|
|
2018-01-23 10:57:40 +08:00
|
|
|
#
|
2019-08-10 04:19:03 +08:00
|
|
|
# If we're building with Visual Studio, we require Visual Studio 2015,
|
|
|
|
# in order to get sufficient C99 compatibility. Check for that.
|
2018-01-23 10:57:40 +08:00
|
|
|
#
|
2019-08-10 04:41:06 +08:00
|
|
|
# If not, try the appropriate flag for the compiler to enable C99
|
|
|
|
# features.
|
|
|
|
#
|
2019-08-10 05:51:07 +08:00
|
|
|
set(C_ADDITIONAL_FLAGS "")
|
2019-08-10 04:19:03 +08:00
|
|
|
if(MSVC)
|
|
|
|
if(MSVC_VERSION LESS 1900)
|
|
|
|
message(FATAL_ERROR "Visual Studio 2015 or later is required")
|
2018-03-28 04:13:30 +08:00
|
|
|
endif()
|
|
|
|
|
2019-08-16 19:52:46 +08:00
|
|
|
#
|
2019-08-10 04:19:03 +08:00
|
|
|
# Treat source files as being in UTF-8 with MSVC if it's not using
|
|
|
|
# the Clang front end.
|
|
|
|
# We assume that UTF-8 source is OK with other compilers and with
|
|
|
|
# MSVC if it's using the Clang front end.
|
2019-08-16 19:52:46 +08:00
|
|
|
#
|
2019-08-10 04:19:03 +08:00
|
|
|
if(NOT ${CMAKE_C_COMPILER} MATCHES "clang*")
|
|
|
|
set(C_ADDITIONAL_FLAGS "${C_ADDITIONAL_FLAGS} /utf-8")
|
|
|
|
endif(NOT ${CMAKE_C_COMPILER} MATCHES "clang*")
|
|
|
|
else(MSVC)
|
|
|
|
#
|
|
|
|
# Try to enable as many C99 features as we can.
|
|
|
|
# At minimum, we want C++/C99-style // comments.
|
2018-03-28 04:13:30 +08:00
|
|
|
#
|
2019-08-10 04:19:03 +08:00
|
|
|
# Newer versions of compilers might default to supporting C99, but
|
|
|
|
# older versions may require a special flag.
|
2018-03-28 04:13:30 +08:00
|
|
|
#
|
2019-08-10 04:19:03 +08:00
|
|
|
# Prior to CMake 3.1, setting CMAKE_C_STANDARD will not have any effect,
|
|
|
|
# so, unless and until we require CMake 3.1 or later, we have to do it
|
|
|
|
# ourselves on pre-3.1 CMake, so we just do it ourselves on all versions
|
|
|
|
# of CMake.
|
|
|
|
#
|
|
|
|
# Note: with CMake 3.1 through 3.5, the only compilers for which CMake
|
|
|
|
# handles CMAKE_C_STANDARD are GCC and Clang. 3.6 adds support only
|
|
|
|
# for Intel C; 3.9 adds support for PGI C, Sun C, and IBM XL C, and
|
|
|
|
# 3.10 adds support for Cray C and IAR C, but no version of CMake has
|
|
|
|
# support for HP C. Therefore, even if we use CMAKE_C_STANDARD with
|
|
|
|
# compilers for which CMake supports it, we may still have to do it
|
|
|
|
# ourselves on other compilers.
|
|
|
|
#
|
|
|
|
# See the CMake documentation for the CMAKE_<LANG>_COMPILER_ID variables
|
|
|
|
# for a list of compiler IDs.
|
|
|
|
#
|
|
|
|
# XXX - this just tests whether the option works and adds it if it does.
|
|
|
|
# We don't test whether it's necessary in order to get the C99 features
|
|
|
|
# that we use; if we ever have a user who tries to compile with a compiler
|
|
|
|
# that can't be made to support those features, we can add a test to make
|
|
|
|
# sure we actually *have* C99 support.
|
|
|
|
#
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU" OR
|
|
|
|
CMAKE_C_COMPILER_ID MATCHES "Clang")
|
|
|
|
check_and_add_compiler_option("-std=gnu99")
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "XL")
|
|
|
|
#
|
|
|
|
# We want support for extensions picked up for GNU C compatibility,
|
|
|
|
# so we use -qlanglvl=extc99.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option("-qlanglvl=extc99")
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "HP")
|
|
|
|
check_and_add_compiler_option("-AC99")
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "Sun")
|
|
|
|
check_and_add_compiler_option("-xc99")
|
|
|
|
elseif(CMAKE_C_COMPILER_ID MATCHES "Intel")
|
|
|
|
check_and_add_compiler_option("-c99")
|
|
|
|
endif()
|
|
|
|
endif(MSVC)
|
2019-04-30 04:06:31 +08:00
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
set(LIBRARY_NAME netdissect)
|
|
|
|
|
|
|
|
###################################################################
|
|
|
|
# Parameters
|
|
|
|
###################################################################
|
|
|
|
|
|
|
|
option(WITH_SMI "Build with libsmi, if available" ON)
|
2018-01-23 09:20:02 +08:00
|
|
|
option(WITH_CRYPTO "Build with OpenSSL/libressl libcrypto, if available" ON)
|
2018-01-23 10:02:25 +08:00
|
|
|
option(WITH_CAPSICUM "Build with Capsicum security functions, if available" ON)
|
2018-01-23 10:23:00 +08:00
|
|
|
option(WITH_CAP_NG "Use libcap-ng, if available" ON)
|
2021-02-06 01:01:41 +08:00
|
|
|
option(ENABLE_SMB "Build with the SMB dissector" OFF)
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2018-01-23 10:50:51 +08:00
|
|
|
#
|
|
|
|
# String parameters. Neither of them are set, initially; only if the
|
|
|
|
# user explicitly configures them are they set.
|
|
|
|
#
|
|
|
|
# WITH_CHROOT is STRING, not PATH, as the directory need not exist
|
|
|
|
# when CMake is run.
|
|
|
|
#
|
|
|
|
set(WITH_CHROOT CACHE STRING
|
|
|
|
"Directory to which to chroot when dropping privileges")
|
|
|
|
set(WITH_USER CACHE STRING
|
|
|
|
"User to whom to set the UID when dropping privileges")
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
# By default, build universal with the appropriate set of architectures
|
|
|
|
# for the OS on which we're doing the build.
|
|
|
|
#
|
|
|
|
if(APPLE AND "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "")
|
|
|
|
#
|
|
|
|
# Get the major version of Darwin.
|
|
|
|
#
|
|
|
|
string(REGEX MATCH "^([0-9]+)" SYSTEM_VERSION_MAJOR "${CMAKE_SYSTEM_VERSION}")
|
|
|
|
|
|
|
|
if(SYSTEM_VERSION_MAJOR EQUAL 9)
|
|
|
|
#
|
|
|
|
# Leopard. Build for x86 and 32-bit PowerPC, with
|
|
|
|
# x86 first. (That's what Apple does.)
|
|
|
|
#
|
|
|
|
set(CMAKE_OSX_ARCHITECTURES "i386;ppc")
|
|
|
|
elseif(SYSTEM_VERSION_MAJOR EQUAL 10)
|
|
|
|
#
|
|
|
|
# Snow Leopard. Build for x86-64 and x86, with
|
|
|
|
# x86-64 first. (That's what Apple does.)
|
|
|
|
#
|
|
|
|
set(CMAKE_OSX_ARCHITECTURES "x86_64;i386")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
###################################################################
|
|
|
|
# Versioning
|
|
|
|
###################################################################
|
|
|
|
|
|
|
|
# Get, parse, format and set tcpdump's version string from
|
|
|
|
# [tcpdump_root]/VERSION for later use.
|
2018-05-25 15:56:04 +08:00
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
# Get MAJOR, MINOR, PATCH & SUFFIX
|
|
|
|
file(STRINGS ${tcpdump_SOURCE_DIR}/VERSION
|
|
|
|
PACKAGE_VERSION
|
|
|
|
LIMIT_COUNT 1 # Read only the first line
|
|
|
|
)
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# Project settings
|
|
|
|
######################################
|
|
|
|
|
|
|
|
add_definitions(-DHAVE_CONFIG_H)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${tcpdump_SOURCE_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
add_definitions(-D__STDC__)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
if (USE_STATIC_RT)
|
|
|
|
MESSAGE(STATUS "Use STATIC runtime")
|
|
|
|
set(NAME_RT MT)
|
|
|
|
set (CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /MT")
|
|
|
|
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /MT")
|
|
|
|
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT")
|
|
|
|
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MTd")
|
|
|
|
|
|
|
|
set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} /MT")
|
|
|
|
set (CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} /MT")
|
|
|
|
set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT")
|
|
|
|
set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MTd")
|
|
|
|
else (USE_STATIC_RT)
|
|
|
|
MESSAGE(STATUS "Use DYNAMIC runtime")
|
|
|
|
set(NAME_RT MD)
|
|
|
|
set (CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /MD")
|
|
|
|
set (CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} /MD")
|
|
|
|
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MD")
|
|
|
|
set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MDd")
|
|
|
|
|
|
|
|
set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} /MD")
|
|
|
|
set (CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} /MD")
|
|
|
|
set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MD")
|
|
|
|
set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /MDd")
|
|
|
|
endif (USE_STATIC_RT)
|
|
|
|
endif(MSVC)
|
|
|
|
|
|
|
|
###################################################################
|
|
|
|
# Detect available platform features
|
|
|
|
###################################################################
|
|
|
|
|
|
|
|
include(CMakePushCheckState)
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
include(CheckIncludeFiles)
|
|
|
|
include(CheckFunctionExists)
|
2018-01-28 03:42:08 +08:00
|
|
|
include(CheckLibraryExists)
|
2018-01-22 05:22:15 +08:00
|
|
|
include(CheckSymbolExists)
|
|
|
|
include(CheckStructHasMember)
|
2018-01-28 03:34:39 +08:00
|
|
|
include(CheckVariableExists)
|
2018-01-22 05:22:15 +08:00
|
|
|
include(CheckTypeSize)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Header files.
|
|
|
|
#
|
|
|
|
check_include_file(fcntl.h HAVE_FCNTL_H)
|
|
|
|
check_include_file(rpc/rpc.h HAVE_RPC_RPC_H)
|
2018-07-13 04:01:43 +08:00
|
|
|
check_include_file(net/if.h HAVE_NET_IF_H)
|
2018-01-23 11:29:32 +08:00
|
|
|
if(HAVE_RPC_RPC_H)
|
2018-01-23 11:30:55 +08:00
|
|
|
check_include_files("rpc/rpc.h;rpc/rpcent.h" HAVE_RPC_RPCENT_H)
|
2018-01-23 11:29:32 +08:00
|
|
|
endif(HAVE_RPC_RPC_H)
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2018-01-29 05:54:22 +08:00
|
|
|
#
|
|
|
|
# Functions.
|
|
|
|
#
|
|
|
|
check_function_exists(strlcat HAVE_STRLCAT)
|
|
|
|
check_function_exists(strlcpy HAVE_STRLCPY)
|
|
|
|
check_function_exists(strsep HAVE_STRSEP)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Find library needed for gethostbyaddr.
|
|
|
|
# NOTE: if you hand check_library_exists as its last argument a variable
|
|
|
|
# that's been set, it skips the test, so we need different variables.
|
|
|
|
#
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES "")
|
2018-01-30 18:41:43 +08:00
|
|
|
if(WIN32)
|
|
|
|
#
|
|
|
|
# We need winsock2.h and ws2tcpip.h.
|
|
|
|
#
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ws2_32)
|
|
|
|
check_symbol_exists(gethostbyaddr "winsock2.h;ws2tcpip.h" LIBWS2_32_HAS_GETHOSTBYADDR)
|
|
|
|
cmake_pop_check_state()
|
|
|
|
if(LIBWS2_32_HAS_GETHOSTBYADDR)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ws2_32 ${TCPDUMP_LINK_LIBRARIES})
|
|
|
|
else(LIBWS2_32_HAS_GETHOSTBYADDR)
|
|
|
|
message(FATAL_ERROR "gethostbyaddr is required, but wasn't found")
|
|
|
|
endif(LIBWS2_32_HAS_GETHOSTBYADDR)
|
|
|
|
else(WIN32)
|
|
|
|
check_function_exists(gethostbyaddr STDLIBS_HAVE_GETHOSTBYADDR)
|
|
|
|
if(NOT STDLIBS_HAVE_GETHOSTBYADDR)
|
|
|
|
check_library_exists(socket gethostbyaddr "" LIBSOCKET_HAS_GETHOSTBYADDR)
|
|
|
|
if(LIBSOCKET_HAS_GETHOSTBYADDR)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} socket)
|
|
|
|
else(LIBSOCKET_HAS_GETHOSTBYADDR)
|
|
|
|
check_library_exists(nsl gethostbyaddr "" LIBNSL_HAS_GETHOSTBYADDR)
|
|
|
|
if(LIBNSL_HAS_GETHOSTBYADDR)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} nsl)
|
|
|
|
else(LIBNSL_HAS_GETHOSTBYADDR)
|
2023-01-14 20:57:50 +08:00
|
|
|
check_library_exists(network gethostbyaddr "" LIBNETWORK_HAS_GETHOSTBYADDR)
|
|
|
|
if(LIBNETWORK_HAS_GETHOSTBYADDR)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} network)
|
|
|
|
else(LIBNETWORK_HAS_GETHOSTBYADDR)
|
|
|
|
message(FATAL_ERROR "gethostbyaddr is required, but wasn't found")
|
|
|
|
endif(LIBNETWORK_HAS_GETHOSTBYADDR)
|
2018-01-30 18:41:43 +08:00
|
|
|
endif(LIBNSL_HAS_GETHOSTBYADDR)
|
|
|
|
endif(LIBSOCKET_HAS_GETHOSTBYADDR)
|
|
|
|
endif(NOT STDLIBS_HAVE_GETHOSTBYADDR)
|
|
|
|
endif(WIN32)
|
2018-01-29 05:54:22 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# This may require additional libraries.
|
|
|
|
#
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${TCPDUMP_LINK_LIBRARIES})
|
|
|
|
check_function_exists(getservent STDLIBS_HAVE_GETSERVENT)
|
|
|
|
if(STDLIBS_HAVE_GETSERVENT)
|
|
|
|
set(HAVE_GETSERVENT TRUE)
|
|
|
|
else(STDLIBS_HAVE_GETSERVENT)
|
|
|
|
#
|
|
|
|
# Some platforms may need -lsocket for getservent.
|
|
|
|
#
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES socket ${TCPDUMP_LINK_LIBRARIES})
|
|
|
|
check_function_exists(getservent LIBSOCKET_HAS_GETSERVENT)
|
|
|
|
if(LIBSOCKET_HAS_GETSERVENT)
|
|
|
|
set(HAVE_GETSERVENT TRUE)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES socket ${TCPDUMP_LINK_LIBRARIES})
|
|
|
|
endif(LIBSOCKET_HAS_GETSERVENT)
|
|
|
|
endif(STDLIBS_HAVE_GETSERVENT)
|
|
|
|
cmake_pop_check_state()
|
|
|
|
|
2018-01-30 07:48:55 +08:00
|
|
|
#
|
2023-02-17 16:56:15 +08:00
|
|
|
# Make sure we have snprintf(); we require it.
|
|
|
|
# We use check_symbol_exists(), as it isn't necessarily an external
|
|
|
|
# function - in Visual Studio, for example, it is an inline function
|
|
|
|
# calling an external function.
|
|
|
|
#
|
2019-08-10 02:46:19 +08:00
|
|
|
check_symbol_exists(snprintf "stdio.h" HAVE_SNPRINTF)
|
2019-08-09 13:39:54 +08:00
|
|
|
if(NOT HAVE_SNPRINTF)
|
|
|
|
message(FATAL_ERROR "snprintf() is required but wasn't found")
|
|
|
|
endif()
|
|
|
|
|
2023-01-31 04:31:20 +08:00
|
|
|
#
|
|
|
|
# Require a proof of suitable snprintf(3), same as in Autoconf.
|
|
|
|
#
|
|
|
|
include(CheckCSourceRuns)
|
|
|
|
check_c_source_runs("
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
char buf[100];
|
|
|
|
uint64_t t = (uint64_t)1 << 32;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), \"%zu\", sizeof(buf));
|
|
|
|
if (strncmp(buf, \"100\", sizeof(buf)))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), \"%zd\", -sizeof(buf));
|
|
|
|
if (strncmp(buf, \"-100\", sizeof(buf)))
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), \"%\" PRId64, -t);
|
|
|
|
if (strncmp(buf, \"-4294967296\", sizeof(buf)))
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), \"0o%\" PRIo64, t);
|
|
|
|
if (strncmp(buf, \"0o40000000000\", sizeof(buf)))
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), \"0x%\" PRIx64, t);
|
|
|
|
if (strncmp(buf, \"0x100000000\", sizeof(buf)))
|
|
|
|
return 5;
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), \"%\" PRIu64, t);
|
|
|
|
if (strncmp(buf, \"4294967296\", sizeof(buf)))
|
|
|
|
return 6;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
"
|
|
|
|
SUITABLE_SNPRINTF
|
|
|
|
)
|
|
|
|
if(NOT SUITABLE_SNPRINTF)
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"The snprintf(3) implementation in this libc is not suitable,
|
|
|
|
tcpdump would not work correctly even if it managed to compile."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2019-08-09 13:39:54 +08:00
|
|
|
check_function_exists(getopt_long HAVE_GETOPT_LONG)
|
|
|
|
check_function_exists(setlinebuf HAVE_SETLINEBUF)
|
2018-01-30 07:48:55 +08:00
|
|
|
#
|
2019-08-09 13:39:54 +08:00
|
|
|
# For Windows, don't need to waste time checking for fork() or vfork().
|
2018-01-30 07:48:55 +08:00
|
|
|
#
|
|
|
|
if(NOT WIN32)
|
2019-08-10 02:46:19 +08:00
|
|
|
check_function_exists(fork HAVE_FORK)
|
|
|
|
check_function_exists(vfork HAVE_VFORK)
|
2018-01-30 07:48:55 +08:00
|
|
|
endif(NOT WIN32)
|
2018-01-29 05:54:22 +08:00
|
|
|
|
|
|
|
#
|
2018-01-29 06:01:17 +08:00
|
|
|
# Some platforms may need -lnsl for getrpcbynumber.
|
2018-01-29 05:54:22 +08:00
|
|
|
#
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${TCPDUMP_LINK_LIBRARIES})
|
|
|
|
check_function_exists(getrpcbynumber STDLIBS_HAVE_GETRPCBYNUMBER)
|
|
|
|
if(STDLIBS_HAVE_GETRPCBYNUMBER)
|
|
|
|
set(HAVE_GETRPCBYNUMBER TRUE)
|
|
|
|
else(STDLIBS_HAVE_GETRPCBYNUMBER)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} nsl)
|
|
|
|
check_function_exists(getrpcbynumber LIBNSL_HAS_GETRPCBYNUMBER)
|
|
|
|
if(LIBNSL_HAS_GETRPCBYNUMBER)
|
|
|
|
set(HAVE_GETRPCBYNUMBER TRUE)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} nsl)
|
|
|
|
endif(LIBNSL_HAS_GETRPCBYNUMBER)
|
|
|
|
endif(STDLIBS_HAVE_GETRPCBYNUMBER)
|
|
|
|
cmake_pop_check_state()
|
|
|
|
|
2018-01-29 05:50:09 +08:00
|
|
|
#
|
|
|
|
# This requires the libraries we require, as ether_ntohost might be
|
2018-01-29 05:54:22 +08:00
|
|
|
# in one of those libraries. That means we have to do this after
|
|
|
|
# we check for those libraries.
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
# You are in a twisty little maze of UN*Xes, all different.
|
|
|
|
# Some might not have ether_ntohost().
|
|
|
|
# Some might have it and declare it in <net/ethernet.h>.
|
|
|
|
# Some might have it and declare it in <netinet/ether.h>
|
|
|
|
# Some might have it and declare it in <sys/ethernet.h>.
|
|
|
|
# Some might have it and declare it in <arpa/inet.h>.
|
|
|
|
# Some might have it and declare it in <netinet/if_ether.h>.
|
|
|
|
# Some might have it and not declare it in any header file.
|
|
|
|
#
|
|
|
|
# Before you is a C compiler.
|
|
|
|
#
|
2018-01-29 05:50:09 +08:00
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${TCPDUMP_LINK_LIBRARIES})
|
2018-01-22 05:22:15 +08:00
|
|
|
check_function_exists(ether_ntohost HAVE_ETHER_NTOHOST)
|
|
|
|
if(HAVE_ETHER_NTOHOST)
|
|
|
|
#
|
2018-01-22 18:47:50 +08:00
|
|
|
# OK, we have ether_ntohost(). We don't check whether it's buggy,
|
|
|
|
# as we assume any system that has CMake is likely to be new enough
|
2018-01-22 18:59:39 +08:00
|
|
|
# that, if it has ether_ntohost(), whatever bug is checked for in
|
|
|
|
# autotools is fixed; we just decide to use it.
|
2018-01-22 18:47:50 +08:00
|
|
|
#
|
|
|
|
set(USE_ETHER_NTOHOST TRUE)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Is it declared in <net/ethernet.h>?
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
# This test fails if we don't have <net/ethernet.h> or if we do
|
|
|
|
# but it doesn't declare ether_ntohost().
|
|
|
|
#
|
|
|
|
check_symbol_exists(ether_ntohost net/ethernet.h NET_ETHERNET_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
if(NET_ETHERNET_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# Yes - we have it declared.
|
|
|
|
#
|
|
|
|
set(HAVE_DECL_ETHER_NTOHOST TRUE)
|
|
|
|
endif()
|
|
|
|
#
|
|
|
|
# Did that succeed?
|
|
|
|
#
|
|
|
|
if(NOT HAVE_DECL_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# No - how about <netinet/ether.h>, as on Linux?
|
|
|
|
#
|
|
|
|
# This test fails if we don't have <netinet/ether.h>
|
|
|
|
# or if we do but it doesn't declare ether_ntohost().
|
|
|
|
#
|
|
|
|
check_symbol_exists(ether_ntohost netinet/ether.h NETINET_ETHER_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
if(NETINET_ETHER_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# Yes - we have it declared.
|
|
|
|
#
|
|
|
|
set(HAVE_DECL_ETHER_NTOHOST TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
#
|
|
|
|
# Did that succeed?
|
|
|
|
#
|
|
|
|
if(NOT HAVE_DECL_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# No - how about <sys/ethernet.h>, as on Solaris 10 and later?
|
|
|
|
#
|
|
|
|
# This test fails if we don't have <sys/ethernet.h>
|
|
|
|
# or if we do but it doesn't declare ether_ntohost().
|
|
|
|
#
|
|
|
|
check_symbol_exists(ether_ntohost sys/ethernet.h SYS_ETHERNET_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
if(SYS_ETHERNET_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# Yes - we have it declared.
|
|
|
|
#
|
|
|
|
set(HAVE_DECL_ETHER_NTOHOST TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
#
|
|
|
|
# Did that succeed?
|
|
|
|
#
|
|
|
|
if(NOT HAVE_DECL_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# No, how about <arpa/inet.h>, as on AIX?
|
|
|
|
#
|
|
|
|
# This test fails if we don't have <arpa/inet.h>
|
|
|
|
# or if we do but it doesn't declare ether_ntohost().
|
|
|
|
#
|
|
|
|
check_symbol_exists(ether_ntohost arpa/inet.h ARPA_INET_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
if(ARPA_INET_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# Yes - we have it declared.
|
|
|
|
#
|
|
|
|
set(HAVE_DECL_ETHER_NTOHOST TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
#
|
|
|
|
# Did that succeed?
|
|
|
|
#
|
|
|
|
if(NOT HAVE_DECL_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# No, how about <netinet/if_ether.h>?
|
|
|
|
# On some platforms, it requires <net/if.h> and
|
|
|
|
# <netinet/in.h>, and we always include it with
|
|
|
|
# both of them, so test it with both of them.
|
|
|
|
#
|
|
|
|
# This test fails if we don't have <netinet/if_ether.h>
|
|
|
|
# and the headers we include before it, or if we do but
|
|
|
|
# <netinet/if_ether.h> doesn't declare ether_ntohost().
|
|
|
|
#
|
|
|
|
check_symbol_exists(ether_ntohost "sys/types.h;sys/socket.h;net/if.h;netinet/in.h;netinet/if_ether.h" NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
if(NETINET_IF_ETHER_H_DECLARES_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# Yes - we have it declared.
|
|
|
|
#
|
|
|
|
set(HAVE_DECL_ETHER_NTOHOST TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
#
|
|
|
|
# After all that, is ether_ntohost() declared?
|
|
|
|
#
|
|
|
|
if(NOT HAVE_DECL_ETHER_NTOHOST)
|
|
|
|
#
|
|
|
|
# No, we'll have to declare it ourselves.
|
|
|
|
# Do we have "struct ether_addr" if we include<netinet/if_ether.h>?
|
|
|
|
#
|
|
|
|
check_struct_has_member("struct ether_addr" octet "sys/types.h;sys/socket.h;net/if.h;netinet/in.h;netinet/if_ether.h" HAVE_STRUCT_ETHER_ADDR)
|
|
|
|
endif()
|
|
|
|
endif()
|
2018-01-29 05:50:09 +08:00
|
|
|
cmake_pop_check_state()
|
2018-01-22 05:22:15 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Data types.
|
|
|
|
#
|
|
|
|
# XXX - there's no check_struct() macro that's like check_struct_has_member()
|
|
|
|
# except that it only checks for the existence of the structure type,
|
|
|
|
# so we use check_struct_has_member() and look for ss_family.
|
|
|
|
#
|
|
|
|
|
2018-01-22 11:12:25 +08:00
|
|
|
#
|
Detect OS IPv6 support using AF_INET6 only.
tcpdump source code has not been using struct in6_addr since commit
0c9cfdc in 2019, so lose the conditional structure declaration, which is
a no-op.
Since commit de7c619 in 2015 netdissect-stdinc.h on Windows defines
HAVE_OS_IPV6_SUPPORT if AF_INET6 if defined, which makes it equivalent
to AF_INET6. On Unix-like systems taking struct in6_addr out of scope
would make HAVE_OS_IPV6_SUPPORT equivalent to AF_INET6, thus after
removing struct in6_addr remove HAVE_OS_IPV6_SUPPORT together with
Autoconf and CMake checks that define it. Leave an unrelated CMake
workaround in place for later debugging.
On Windows do not define AF_INET6 if it is not defined, which makes
AF_INET6 a universal indicator of the OS IPv6 support on all supported
OSes. The few remaining use cases that genuinely need AF_INET6 use it
to make OS API calls, so if the macro is not defined, it most likely
means such an API call in the best case would return just a well-formed
error status. With this in mind, in win32_gethostbyaddr() and
ip6addr_string() guard all IPv6-specific code with #ifdef AF_INET6. In
tcpdump.c add a comment to note why a guard is not required for
Casper-specific conditional code that uses AF_INET6.
This way when the OS does not support IPv6, IPv6 addresses will not
resolve to names, which is expected. Other than that, tcpdump should be
able to process IPv6 addresses the usual way regardless if the OS would
be able to process the packets with these addresses.
2023-02-21 16:02:28 +08:00
|
|
|
# FIXME: This check does not influence the build logic, but without it CMake
|
|
|
|
# 3.18.4 fails trying to make the next check_type_size() check later on.
|
2018-01-22 11:12:25 +08:00
|
|
|
#
|
|
|
|
check_type_size("struct in6_addr" HAVE_STRUCT_IN6_ADDR)
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
######################################
|
|
|
|
# External dependencies
|
|
|
|
######################################
|
|
|
|
|
|
|
|
#
|
2019-04-18 15:16:11 +08:00
|
|
|
# libpcap/WinPcap/Npcap.
|
2018-01-27 01:26:17 +08:00
|
|
|
# First, find it.
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
find_package(PCAP REQUIRED)
|
2018-01-28 02:40:15 +08:00
|
|
|
include_directories(${PCAP_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
cmake_push_check_state()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Now check headers.
|
|
|
|
#
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${PCAP_INCLUDE_DIRS})
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2018-01-27 01:26:17 +08:00
|
|
|
#
|
|
|
|
# Check whether we have pcap/pcap-inttypes.h.
|
|
|
|
# If we do, we use that to get the C99 types defined.
|
|
|
|
#
|
|
|
|
check_include_file(pcap/pcap-inttypes.h HAVE_PCAP_PCAP_INTTYPES_H)
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
2019-04-18 15:16:11 +08:00
|
|
|
# Check for various functions in libpcap/WinPcap/Npcap.
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
cmake_push_check_state()
|
2018-01-25 05:00:36 +08:00
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${PCAP_LIBRARIES})
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2018-01-22 11:46:03 +08:00
|
|
|
#
|
|
|
|
# Check for "pcap_list_datalinks()" and use a substitute version if
|
|
|
|
# it's not present. If it is present, check for "pcap_free_datalinks()";
|
|
|
|
# if it's not present, we don't replace it for now. (We could do so
|
|
|
|
# on UN*X, but not on Windows, where hilarity ensues if a program
|
|
|
|
# built with one version of the MSVC support library tries to free
|
|
|
|
# something allocated by a library built with another version of
|
|
|
|
# the MSVC support library.)
|
|
|
|
#
|
2018-01-22 05:22:15 +08:00
|
|
|
check_function_exists(pcap_list_datalinks HAVE_PCAP_LIST_DATALINKS)
|
|
|
|
if(HAVE_PCAP_LIST_DATALINKS)
|
|
|
|
check_function_exists(pcap_free_datalinks HAVE_PCAP_FREE_DATALINKS)
|
|
|
|
endif(HAVE_PCAP_LIST_DATALINKS)
|
2018-01-22 11:46:03 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check for "pcap_datalink_name_to_val()", and use a substitute
|
|
|
|
# version if it's not present. If it is present, check for
|
|
|
|
# "pcap_datalink_val_to_description()", and if we don't have it,
|
|
|
|
# use a substitute version.
|
|
|
|
#
|
2018-01-22 05:22:15 +08:00
|
|
|
check_function_exists(pcap_datalink_name_to_val HAVE_PCAP_DATALINK_NAME_TO_VAL)
|
|
|
|
if(HAVE_PCAP_DATALINK_NAME_TO_VAL)
|
|
|
|
check_function_exists(pcap_datalink_val_to_description HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION)
|
|
|
|
endif(HAVE_PCAP_DATALINK_NAME_TO_VAL)
|
|
|
|
|
2018-01-22 11:46:03 +08:00
|
|
|
#
|
|
|
|
# Check for "pcap_set_datalink()"; you can't substitute for it if
|
|
|
|
# it's absent (it has hooks into libpcap), so just define the
|
|
|
|
# HAVE_ value if it's there.
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_set_datalink HAVE_PCAP_SET_DATALINK)
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
# Check for "pcap_breakloop()"; you can't substitute for it if
|
|
|
|
# it's absent (it has hooks into the live capture routines),
|
|
|
|
# so just define the HAVE_ value if it's there.
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_breakloop HAVE_PCAP_BREAKLOOP)
|
|
|
|
|
|
|
|
#
|
2018-01-22 11:29:43 +08:00
|
|
|
# Check for "pcap_dump_ftell()"; we use a substitute version
|
2018-01-22 05:22:15 +08:00
|
|
|
# if it's not present.
|
|
|
|
#
|
2018-01-22 10:29:08 +08:00
|
|
|
check_function_exists(pcap_dump_ftell HAVE_PCAP_DUMP_FTELL)
|
2018-01-22 05:22:15 +08:00
|
|
|
|
|
|
|
#
|
2018-01-29 18:04:12 +08:00
|
|
|
# Do we have the new open API? Check for pcap_create() and for
|
|
|
|
# pcap_statustostr(), and assume that, if we have both of them,
|
|
|
|
# we also have pcap_activate() and the other new routines
|
|
|
|
# introduced in libpcap 1.0.0. (We check for pcap_statustostr()
|
|
|
|
# as well, because WinPcap 4.1.3 screwed up and exported pcap_create()
|
|
|
|
# but not other routines such as pcap_statustostr(), even though it
|
|
|
|
# defined them and even though you really want pcap_statustostr() to
|
|
|
|
# get strings corresponding to some of the status returns from the
|
|
|
|
# new routines.)
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_statustostr HAVE_PCAP_STATUSTOSTR)
|
|
|
|
#
|
|
|
|
# If we don't have pcap_statustostr(), don't check for pcap_create(),
|
|
|
|
# so we pretend we don't have it.
|
|
|
|
#
|
|
|
|
if(HAVE_PCAP_STATUSTOSTR)
|
|
|
|
check_function_exists(pcap_create HAVE_PCAP_CREATE)
|
|
|
|
endif(HAVE_PCAP_STATUSTOSTR)
|
2018-01-22 05:22:15 +08:00
|
|
|
if(HAVE_PCAP_CREATE)
|
|
|
|
#
|
|
|
|
# OK, do we have pcap_set_tstamp_type? If so, assume we have
|
|
|
|
# pcap_list_tstamp_types and pcap_free_tstamp_types as well.
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_set_tstamp_type HAVE_PCAP_SET_TSTAMP_TYPE)
|
|
|
|
|
|
|
|
#
|
|
|
|
# And do we have pcap_set_tstamp_precision? If so, we assume
|
|
|
|
# we also have pcap_open_offline_with_tstamp_precision.
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_set_tstamp_precision HAVE_PCAP_SET_TSTAMP_PRECISION)
|
|
|
|
endif(HAVE_PCAP_CREATE)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check for a miscellaneous collection of functions which we use
|
|
|
|
# if we have them.
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_findalldevs HAVE_PCAP_FINDALLDEVS)
|
|
|
|
if(HAVE_PCAP_FINDALLDEVS)
|
|
|
|
#
|
|
|
|
# Check for libpcap having pcap_findalldevs() but the pcap.h header
|
|
|
|
# not having pcap_if_t; some versions of Mac OS X shipped with pcap.h
|
|
|
|
# from 0.6 and libpcap 0.8, so that libpcap had pcap_findalldevs but
|
|
|
|
# pcap.h didn't have pcap_if_t.
|
|
|
|
#
|
|
|
|
cmake_push_check_state()
|
2018-01-29 17:30:20 +08:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${PCAP_INCLUDE_DIRS})
|
2018-01-22 05:22:15 +08:00
|
|
|
set(CMAKE_EXTRA_INCLUDE_FILES pcap.h)
|
|
|
|
check_type_size(pcap_if_t PCAP_IF_T)
|
|
|
|
cmake_pop_check_state()
|
|
|
|
endif(HAVE_PCAP_FINDALLDEVS)
|
|
|
|
check_function_exists(pcap_dump_flush HAVE_PCAP_DUMP_FLUSH)
|
|
|
|
check_function_exists(pcap_lib_version HAVE_PCAP_LIB_VERSION)
|
|
|
|
if(NOT HAVE_PCAP_LIB_VERSION)
|
|
|
|
# Check for the pcap_version string variable and set HAVE_PCAP_VERSION
|
|
|
|
endif(NOT HAVE_PCAP_LIB_VERSION)
|
|
|
|
check_function_exists(pcap_setdirection HAVE_PCAP_SETDIRECTION)
|
|
|
|
check_function_exists(pcap_set_immediate_mode HAVE_PCAP_SET_IMMEDIATE_MODE)
|
|
|
|
check_function_exists(pcap_dump_ftell64 HAVE_PCAP_DUMP_FTELL64)
|
|
|
|
check_function_exists(pcap_open HAVE_PCAP_OPEN)
|
|
|
|
check_function_exists(pcap_findalldevs_ex HAVE_PCAP_FINDALLDEVS_EX)
|
|
|
|
|
2018-01-29 18:16:13 +08:00
|
|
|
#
|
|
|
|
# On Windows, check for pcap_wsockinit(); if we don't have it, check for
|
|
|
|
# wsockinit().
|
|
|
|
#
|
|
|
|
if(WIN32)
|
|
|
|
check_function_exists(pcap_wsockinit HAVE_PCAP_WSOCKINIT)
|
|
|
|
if(NOT HAVE_PCAP_WSOCKINIT)
|
|
|
|
check_function_exists(wsockinit HAVE_WSOCKINIT)
|
|
|
|
endif(NOT HAVE_PCAP_WSOCKINIT)
|
|
|
|
endif(WIN32)
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
#
|
|
|
|
# Check for special debugging functions
|
|
|
|
#
|
|
|
|
check_function_exists(pcap_set_parser_debug HAVE_PCAP_SET_PARSER_DEBUG)
|
|
|
|
if(NOT HAVE_PCAP_SET_PARSER_DEBUG)
|
|
|
|
# Check whether libpcap defines pcap_debug or yydebug
|
2018-01-28 03:34:39 +08:00
|
|
|
check_variable_exists(pcap_debug HAVE_PCAP_DEBUG)
|
|
|
|
if(NOT HAVE_PCAP_DEBUG)
|
|
|
|
check_variable_exists(yydebug HAVE_YYDEBUG)
|
|
|
|
endif(NOT HAVE_PCAP_DEBUG)
|
2018-01-22 05:22:15 +08:00
|
|
|
endif(NOT HAVE_PCAP_SET_PARSER_DEBUG)
|
|
|
|
|
|
|
|
check_function_exists(pcap_set_optimizer_debug HAVE_PCAP_SET_OPTIMIZER_DEBUG)
|
2018-01-22 10:51:16 +08:00
|
|
|
check_function_exists(bpf_dump HAVE_BPF_DUMP)
|
2018-01-22 05:22:15 +08:00
|
|
|
|
|
|
|
cmake_pop_check_state()
|
|
|
|
|
2018-01-23 09:45:49 +08:00
|
|
|
#
|
|
|
|
# We have libpcap.
|
|
|
|
#
|
|
|
|
include_directories(SYSTEM ${PCAP_INCLUDE_DIRS})
|
2018-01-25 05:00:36 +08:00
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${PCAP_LIBRARIES} ${TCPDUMP_LINK_LIBRARIES})
|
2018-01-23 09:45:49 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Optional libraries.
|
|
|
|
#
|
2018-03-28 05:18:14 +08:00
|
|
|
|
2018-01-23 09:20:02 +08:00
|
|
|
#
|
|
|
|
# libsmi.
|
|
|
|
#
|
|
|
|
if(WITH_SMI)
|
|
|
|
find_package(SMI)
|
|
|
|
if(SMI_FOUND)
|
2018-01-23 09:45:49 +08:00
|
|
|
include_directories(SYSTEM ${SMI_INCLUDE_DIRS})
|
2018-01-25 05:00:36 +08:00
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} ${SMI_LIBRARIES})
|
2018-01-23 09:20:02 +08:00
|
|
|
set(USE_LIBSMI ON)
|
|
|
|
endif(SMI_FOUND)
|
|
|
|
endif(WITH_SMI)
|
|
|
|
|
|
|
|
#
|
|
|
|
# OpenSSL/libressl libcrypto.
|
|
|
|
#
|
|
|
|
if(WITH_CRYPTO)
|
|
|
|
find_package(CRYPTO)
|
|
|
|
if(CRYPTO_FOUND)
|
|
|
|
#
|
2019-05-24 02:09:03 +08:00
|
|
|
# Check for some headers and functions.
|
2018-01-23 09:20:02 +08:00
|
|
|
#
|
2019-05-24 02:09:03 +08:00
|
|
|
check_include_file(openssl/evp.h HAVE_OPENSSL_EVP_H)
|
|
|
|
|
2018-01-23 09:20:02 +08:00
|
|
|
#
|
2019-05-24 02:09:29 +08:00
|
|
|
# 1) do we have EVP_CIPHER_CTX_new?
|
2018-01-23 09:20:02 +08:00
|
|
|
# If so, we use it to allocate an EVP_CIPHER_CTX, as
|
|
|
|
# EVP_CIPHER_CTX may be opaque; otherwise, we allocate
|
|
|
|
# it ourselves.
|
|
|
|
#
|
2020-02-05 06:42:22 +08:00
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES "${CRYPTO_LIBRARIES}")
|
|
|
|
|
2018-01-23 09:20:02 +08:00
|
|
|
check_function_exists(EVP_CIPHER_CTX_new HAVE_EVP_CIPHER_CTX_NEW)
|
|
|
|
|
|
|
|
#
|
Clean up ESP and ISAKMP decryption.
At least as I read RFC 5996 section 3.14 and RFC 4303 section 2.4, if
the cipher has a block size of which the ciphertext's size must be a
multiple, the payload must be padded to make that happen, so the
ciphertext length must be a multiple of the block size. Instead of
allocating a buffer, copying the ciphertext to it, and padding it to the
block size, fail if its size isn't a multiple of the block size.
(Note also that the old padding code added a block's worth of padding to
the end of a ciphertext block that *was* a multiple of the cipher block
size; this might have caused problems.)
Don't use the undocumented EVP_Cipher(); the lack of documentation means
a lack of information about whatever requirements it might impose. Use
EVP_DecryptUpdate() instead.
Before calling it, use EVP_CIPHER_CTX_set_padding() to say "don't do
your own padding, this block is a multiple of the cipher block size".
Instead of using EVP_CipherInit() or EVP_CipherInit_ex(), use
EVP_DecryptInit() or EVP_DecryptInit_ex(). as we're always doing
decryption and never doing encryption - the extra parameter to
EVP_CipherInit() and EVP_CipherInit_ex() is always 0.
This may address GitHub issue #814.
It may also make it a bit easier to have the code use Common Crypto on
macOS (rather than requiring that OpenSSL be installed - macOS ships
with an OpenSSL shared library for binary compatibility with older
releases, but doesn't ship with the headers, because Apple wants you
using their crypto code) and use Cryptography API: Next Generation on
Windows (Vista/Server 2008 and later) (rather than requiring a Windows
build of OpenSSL).
(Hopefully this will all work with LibreSSL.)
2020-01-06 10:37:52 +08:00
|
|
|
# 2) do we have EVP_DecryptInit_ex()?
|
2018-01-23 09:20:02 +08:00
|
|
|
# If so, we use it, because we need to be able to make two
|
|
|
|
# "initialize the cipher" calls, one with the cipher and key,
|
|
|
|
# and one with the IV, and, as of OpenSSL 1.1, You Can't Do That
|
Clean up ESP and ISAKMP decryption.
At least as I read RFC 5996 section 3.14 and RFC 4303 section 2.4, if
the cipher has a block size of which the ciphertext's size must be a
multiple, the payload must be padded to make that happen, so the
ciphertext length must be a multiple of the block size. Instead of
allocating a buffer, copying the ciphertext to it, and padding it to the
block size, fail if its size isn't a multiple of the block size.
(Note also that the old padding code added a block's worth of padding to
the end of a ciphertext block that *was* a multiple of the cipher block
size; this might have caused problems.)
Don't use the undocumented EVP_Cipher(); the lack of documentation means
a lack of information about whatever requirements it might impose. Use
EVP_DecryptUpdate() instead.
Before calling it, use EVP_CIPHER_CTX_set_padding() to say "don't do
your own padding, this block is a multiple of the cipher block size".
Instead of using EVP_CipherInit() or EVP_CipherInit_ex(), use
EVP_DecryptInit() or EVP_DecryptInit_ex(). as we're always doing
decryption and never doing encryption - the extra parameter to
EVP_CipherInit() and EVP_CipherInit_ex() is always 0.
This may address GitHub issue #814.
It may also make it a bit easier to have the code use Common Crypto on
macOS (rather than requiring that OpenSSL be installed - macOS ships
with an OpenSSL shared library for binary compatibility with older
releases, but doesn't ship with the headers, because Apple wants you
using their crypto code) and use Cryptography API: Next Generation on
Windows (Vista/Server 2008 and later) (rather than requiring a Windows
build of OpenSSL).
(Hopefully this will all work with LibreSSL.)
2020-01-06 10:37:52 +08:00
|
|
|
# with EVP_DecryptInit(), because a call to EVP_DecryptInit() will
|
2018-01-23 09:20:02 +08:00
|
|
|
# unconditionally clear the context, and if you don't supply a
|
|
|
|
# cipher, it'll clear the cipher, rendering the context unusable
|
|
|
|
# and causing a crash.
|
|
|
|
#
|
Clean up ESP and ISAKMP decryption.
At least as I read RFC 5996 section 3.14 and RFC 4303 section 2.4, if
the cipher has a block size of which the ciphertext's size must be a
multiple, the payload must be padded to make that happen, so the
ciphertext length must be a multiple of the block size. Instead of
allocating a buffer, copying the ciphertext to it, and padding it to the
block size, fail if its size isn't a multiple of the block size.
(Note also that the old padding code added a block's worth of padding to
the end of a ciphertext block that *was* a multiple of the cipher block
size; this might have caused problems.)
Don't use the undocumented EVP_Cipher(); the lack of documentation means
a lack of information about whatever requirements it might impose. Use
EVP_DecryptUpdate() instead.
Before calling it, use EVP_CIPHER_CTX_set_padding() to say "don't do
your own padding, this block is a multiple of the cipher block size".
Instead of using EVP_CipherInit() or EVP_CipherInit_ex(), use
EVP_DecryptInit() or EVP_DecryptInit_ex(). as we're always doing
decryption and never doing encryption - the extra parameter to
EVP_CipherInit() and EVP_CipherInit_ex() is always 0.
This may address GitHub issue #814.
It may also make it a bit easier to have the code use Common Crypto on
macOS (rather than requiring that OpenSSL be installed - macOS ships
with an OpenSSL shared library for binary compatibility with older
releases, but doesn't ship with the headers, because Apple wants you
using their crypto code) and use Cryptography API: Next Generation on
Windows (Vista/Server 2008 and later) (rather than requiring a Windows
build of OpenSSL).
(Hopefully this will all work with LibreSSL.)
2020-01-06 10:37:52 +08:00
|
|
|
check_function_exists(EVP_DecryptInit_ex HAVE_EVP_DECRYPTINIT_EX)
|
2018-01-23 09:20:02 +08:00
|
|
|
|
2018-01-24 04:27:16 +08:00
|
|
|
cmake_pop_check_state()
|
|
|
|
|
2018-01-23 09:20:02 +08:00
|
|
|
#
|
|
|
|
# We have libcrypto.
|
|
|
|
#
|
2018-01-23 09:45:49 +08:00
|
|
|
include_directories(SYSTEM ${CRYPTO_INCLUDE_DIRS})
|
2018-01-25 05:00:36 +08:00
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} ${CRYPTO_LIBRARIES})
|
2018-01-23 09:20:02 +08:00
|
|
|
set(HAVE_LIBCRYPTO ON)
|
|
|
|
endif(CRYPTO_FOUND)
|
|
|
|
endif(WITH_CRYPTO)
|
|
|
|
|
2018-01-23 10:02:25 +08:00
|
|
|
#
|
|
|
|
# Capsicum sandboxing.
|
|
|
|
# Some of this is in the system library, some of it is in other libraries.
|
|
|
|
#
|
|
|
|
if(WITH_CAPSICUM)
|
2018-11-10 04:00:59 +08:00
|
|
|
check_include_files("sys/capsicum.h" HAVE_SYS_CAPSICUM_H)
|
|
|
|
if(HAVE_SYS_CAPSICUM_H)
|
|
|
|
check_function_exists(cap_enter HAVE_CAP_ENTER)
|
|
|
|
check_function_exists(cap_rights_limit HAVE_CAP_RIGHTS_LIMIT)
|
|
|
|
check_function_exists(cap_ioctls_limit HAVE_CAP_IOCTLS_LIMIT)
|
|
|
|
check_function_exists(openat HAVE_OPENAT)
|
|
|
|
if(HAVE_CAP_ENTER AND HAVE_CAP_RIGHTS_LIMIT AND
|
|
|
|
HAVE_CAP_IOCTLS_LIMIT AND HAVE_OPENAT)
|
|
|
|
#
|
|
|
|
# OK, we have the functions we need to support Capsicum.
|
|
|
|
#
|
|
|
|
set(HAVE_CAPSICUM TRUE)
|
|
|
|
|
|
|
|
#
|
|
|
|
# OK, can we use Casper?
|
|
|
|
#
|
|
|
|
check_library_exists(casper cap_init "" HAVE_CAP_INIT)
|
|
|
|
if(HAVE_CAP_INIT)
|
|
|
|
cmake_push_check_state()
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES casper)
|
|
|
|
check_library_exists(cap_dns cap_gethostbyaddr "" HAVE_CAP_GETHOSTBYADDR)
|
|
|
|
cmake_pop_check_state()
|
|
|
|
if(HAVE_CAP_GETHOSTBYADDR)
|
|
|
|
set(HAVE_CASPER TRUE)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} casper cap_dns)
|
|
|
|
endif(HAVE_CAP_GETHOSTBYADDR)
|
|
|
|
endif(HAVE_CAP_INIT)
|
|
|
|
endif(HAVE_CAP_ENTER AND HAVE_CAP_RIGHTS_LIMIT AND
|
|
|
|
HAVE_CAP_IOCTLS_LIMIT AND HAVE_OPENAT)
|
|
|
|
endif(HAVE_SYS_CAPSICUM_H)
|
2018-01-23 10:02:25 +08:00
|
|
|
endif(WITH_CAPSICUM)
|
|
|
|
|
2018-01-23 10:23:00 +08:00
|
|
|
#
|
|
|
|
# libcap-ng.
|
|
|
|
#
|
|
|
|
if(WITH_CAP_NG)
|
|
|
|
check_include_file(cap-ng.h HAVE_CAP_NG_H)
|
|
|
|
check_library_exists(cap-ng capng_change_id "" HAVE_LIBCAP_NG)
|
|
|
|
if(HAVE_LIBCAP_NG)
|
|
|
|
set(TCPDUMP_LINK_LIBRARIES ${TCPDUMP_LINK_LIBRARIES} cap-ng)
|
|
|
|
endif(HAVE_LIBCAP_NG)
|
|
|
|
endif(WITH_CAP_NG)
|
|
|
|
|
2018-03-28 05:18:14 +08:00
|
|
|
###################################################################
|
|
|
|
# Warning options
|
|
|
|
###################################################################
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check and add warning options if we have a .devel file.
|
|
|
|
#
|
|
|
|
if(EXISTS ${CMAKE_SOURCE_DIR}/.devel OR EXISTS ${CMAKE_BINARY_DIR}/.devel)
|
|
|
|
#
|
|
|
|
# Warning options.
|
|
|
|
#
|
|
|
|
if(MSVC AND NOT ${CMAKE_C_COMPILER} MATCHES "clang*")
|
|
|
|
#
|
|
|
|
# MSVC, with Microsoft's front end and code generator.
|
|
|
|
# "MSVC" is also set for Microsoft's compiler with a Clang
|
|
|
|
# front end and their code generator ("Clang/C2"), so we
|
|
|
|
# check for clang.exe and treat that differently.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-Wall)
|
|
|
|
#
|
|
|
|
# Disable some pointless warnings that /Wall turns on.
|
|
|
|
#
|
|
|
|
# Unfortunately, MSVC does not appear to have an equivalent
|
|
|
|
# to "__attribute__((unused))" to mark a particular function
|
|
|
|
# parameter as being known to be unused, so that the compiler
|
|
|
|
# won't warn about it (for example, the function might have
|
|
|
|
# that parameter because a pointer to it is being used, and
|
|
|
|
# the signature of that function includes that parameter).
|
|
|
|
# C++ lets you give a parameter a type but no name, but C
|
|
|
|
# doesn't have that.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4100)
|
|
|
|
#
|
|
|
|
# In theory, we care whether somebody uses f() rather than
|
|
|
|
# f(void) to declare a function with no arguments, but, in
|
|
|
|
# practice, there are places in the Windows header files
|
|
|
|
# that appear to do that, so we squelch that warning.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4255)
|
|
|
|
#
|
|
|
|
# Windows FD_SET() generates this, so we suppress it.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4548)
|
|
|
|
#
|
|
|
|
# Perhaps testing something #defined to be 0 with #ifdef is an
|
|
|
|
# error, and it should be tested with #if, but perhaps it's
|
|
|
|
# not, and Microsoft does that in its headers, so we squelch
|
|
|
|
# that warning.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4574)
|
|
|
|
#
|
|
|
|
# The Windows headers also test not-defined values in #if, so
|
|
|
|
# we don't want warnings about that, either.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4668)
|
|
|
|
#
|
|
|
|
# We do *not* care whether some function is, or isn't, going to be
|
|
|
|
# expanded inline.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4710)
|
|
|
|
check_and_add_compiler_option(-wd4711)
|
|
|
|
#
|
|
|
|
# We do *not* care whether we're adding padding bytes after
|
|
|
|
# structure members.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4820)
|
2018-12-11 11:57:54 +08:00
|
|
|
#
|
|
|
|
# We do *not* care about every single place the compiler would
|
|
|
|
# have inserted Spectre mitigation if only we had told it to
|
|
|
|
# do so with /Qspectre. I guess the theory is that it's seeing
|
|
|
|
# bounds checks that would prevent out-of-bounds loads and that
|
|
|
|
# those out-of-bounds loads could be done speculatively and that
|
|
|
|
# the Spectre attack could detect the value of the out-of-bounds
|
|
|
|
# data *if* it's within our address space, but unless I'm
|
|
|
|
# missing something I don't see that as being any form of
|
|
|
|
# security hole.
|
|
|
|
#
|
|
|
|
# XXX - add /Qspectre if that is really worth doing.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd5045)
|
2019-04-18 15:20:24 +08:00
|
|
|
#
|
|
|
|
# We do *not* care whether a structure had padding added at
|
|
|
|
# the end because of __declspec(align) - *we* don't use
|
|
|
|
# __declspec(align), because the only structures whose layout
|
|
|
|
# we precisely specify are those that get overlayed on packet
|
|
|
|
# data, and in those every element is an array of octets so
|
|
|
|
# that we have full control over the size and aligmnet, and,
|
|
|
|
# apparently, jmp_buf has such a declaration on x86, meaning
|
|
|
|
# that everything that includes netdissect.h, i.e. almost every
|
|
|
|
# file in tcpdump, gets a warning.
|
|
|
|
#
|
|
|
|
check_and_add_compiler_option(-wd4324)
|
2018-03-28 05:18:14 +08:00
|
|
|
else()
|
|
|
|
#
|
|
|
|
# Other compilers, including MSVC with a Clang front end and
|
|
|
|
# Microsoft's code generator. We currently treat them as if
|
|
|
|
# they might support GCC-style -W options.
|
|
|
|
#
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-W)
|
2018-03-28 05:18:14 +08:00
|
|
|
check_and_add_compiler_option(-Wall)
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-Wassign-enum)
|
2018-03-28 05:18:14 +08:00
|
|
|
check_and_add_compiler_option(-Wcast-qual)
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-Wmissing-prototypes)
|
2020-05-30 05:37:36 +08:00
|
|
|
check_and_add_compiler_option(-Wmissing-variable-declarations)
|
2018-03-28 05:18:14 +08:00
|
|
|
check_and_add_compiler_option(-Wold-style-definition)
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-Wpedantic)
|
|
|
|
check_and_add_compiler_option(-Wpointer-arith)
|
2019-07-13 17:38:48 +08:00
|
|
|
check_and_add_compiler_option(-Wpointer-sign)
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-Wshadow)
|
2018-10-31 04:33:24 +08:00
|
|
|
check_and_add_compiler_option(-Wsign-compare)
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-Wstrict-prototypes)
|
2018-08-08 05:46:16 +08:00
|
|
|
check_and_add_compiler_option(-Wunreachable-code-return)
|
2018-03-28 05:18:14 +08:00
|
|
|
check_and_add_compiler_option(-Wused-but-marked-unused)
|
2018-08-08 05:36:44 +08:00
|
|
|
check_and_add_compiler_option(-Wwrite-strings)
|
2018-03-28 05:18:14 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-07-30 17:12:59 +08:00
|
|
|
#
|
|
|
|
# Extra compiler options for the build matrix scripts to request -Werror or
|
|
|
|
# its equivalent if required. The CMake variable name cannot be CFLAGS
|
|
|
|
# because that is already used for a different purpose in CMake. Example
|
|
|
|
# usage: cmake -DEXTRA_CFLAGS='-Wall -Wextra -Werror' ...
|
|
|
|
#
|
|
|
|
if(NOT "${EXTRA_CFLAGS}" STREQUAL "")
|
2021-08-01 04:35:17 +08:00
|
|
|
foreach(_extra_cflag ${EXTRA_CFLAGS})
|
2021-08-04 06:25:02 +08:00
|
|
|
check_and_add_compiler_option("${_extra_cflag}")
|
2021-08-01 04:35:17 +08:00
|
|
|
endforeach(_extra_cflag)
|
2021-07-30 17:12:59 +08:00
|
|
|
message(STATUS "Added extra compile options (${EXTRA_CFLAGS})")
|
|
|
|
endif()
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
######################################
|
|
|
|
# Input files
|
|
|
|
######################################
|
|
|
|
|
2018-01-23 11:43:26 +08:00
|
|
|
if(ENABLE_SMB)
|
|
|
|
#
|
|
|
|
# We allow the SMB dissector to be omitted.
|
|
|
|
#
|
|
|
|
set(LOCALSRC ${LOCALSRC}
|
|
|
|
print-smb.c
|
|
|
|
smbutil.c)
|
|
|
|
endif(ENABLE_SMB)
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
set(NETDISSECT_SOURCE_LIST_C
|
|
|
|
addrtoname.c
|
|
|
|
addrtostr.c
|
|
|
|
af.c
|
|
|
|
ascii_strcasecmp.c
|
|
|
|
checksum.c
|
|
|
|
cpack.c
|
|
|
|
gmpls.c
|
|
|
|
in_cksum.c
|
|
|
|
ipproto.c
|
|
|
|
l2vpn.c
|
|
|
|
machdep.c
|
2018-03-14 20:41:33 +08:00
|
|
|
netdissect.c
|
|
|
|
netdissect-alloc.c
|
2018-01-22 05:22:15 +08:00
|
|
|
nlpid.c
|
|
|
|
oui.c
|
2018-10-04 02:19:37 +08:00
|
|
|
ntp.c
|
2018-01-22 05:22:15 +08:00
|
|
|
parsenfsfh.c
|
|
|
|
print.c
|
|
|
|
print-802_11.c
|
|
|
|
print-802_15_4.c
|
|
|
|
print-ah.c
|
|
|
|
print-ahcp.c
|
|
|
|
print-aodv.c
|
|
|
|
print-aoe.c
|
|
|
|
print-ap1394.c
|
|
|
|
print-arcnet.c
|
2019-05-18 21:18:30 +08:00
|
|
|
print-arista.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-arp.c
|
|
|
|
print-ascii.c
|
|
|
|
print-atalk.c
|
|
|
|
print-atm.c
|
|
|
|
print-babel.c
|
2020-04-01 20:40:50 +08:00
|
|
|
print-bcm-li.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-beep.c
|
|
|
|
print-bfd.c
|
|
|
|
print-bgp.c
|
|
|
|
print-bootp.c
|
2019-01-19 07:24:33 +08:00
|
|
|
print-brcmtag.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-bt.c
|
|
|
|
print-calm-fast.c
|
|
|
|
print-carp.c
|
|
|
|
print-cdp.c
|
|
|
|
print-cfm.c
|
|
|
|
print-chdlc.c
|
|
|
|
print-cip.c
|
|
|
|
print-cnfp.c
|
|
|
|
print-dccp.c
|
|
|
|
print-decnet.c
|
|
|
|
print-dhcp6.c
|
|
|
|
print-domain.c
|
2019-04-06 23:16:54 +08:00
|
|
|
print-dsa.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-dtp.c
|
|
|
|
print-dvmrp.c
|
|
|
|
print-eap.c
|
|
|
|
print-egp.c
|
|
|
|
print-eigrp.c
|
|
|
|
print-enc.c
|
|
|
|
print-esp.c
|
|
|
|
print-ether.c
|
|
|
|
print-fddi.c
|
|
|
|
print-forces.c
|
|
|
|
print-fr.c
|
|
|
|
print-frag6.c
|
|
|
|
print-ftp.c
|
|
|
|
print-geneve.c
|
|
|
|
print-geonet.c
|
|
|
|
print-gre.c
|
|
|
|
print-hncp.c
|
|
|
|
print-hsrp.c
|
|
|
|
print-http.c
|
|
|
|
print-icmp.c
|
|
|
|
print-icmp6.c
|
|
|
|
print-igmp.c
|
|
|
|
print-igrp.c
|
2019-03-28 10:58:26 +08:00
|
|
|
print-ip-demux.c
|
2020-04-03 22:49:22 +08:00
|
|
|
print-ip.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-ip6.c
|
|
|
|
print-ip6opts.c
|
|
|
|
print-ipcomp.c
|
|
|
|
print-ipfc.c
|
|
|
|
print-ipnet.c
|
2019-04-17 15:44:24 +08:00
|
|
|
print-ipoib.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-ipx.c
|
|
|
|
print-isakmp.c
|
|
|
|
print-isoclns.c
|
|
|
|
print-juniper.c
|
|
|
|
print-krb.c
|
|
|
|
print-l2tp.c
|
|
|
|
print-lane.c
|
|
|
|
print-ldp.c
|
|
|
|
print-lisp.c
|
|
|
|
print-llc.c
|
|
|
|
print-lldp.c
|
|
|
|
print-lmp.c
|
|
|
|
print-loopback.c
|
|
|
|
print-lspping.c
|
|
|
|
print-lwapp.c
|
|
|
|
print-lwres.c
|
|
|
|
print-m3ua.c
|
2020-05-28 14:19:45 +08:00
|
|
|
print-macsec.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-mobile.c
|
|
|
|
print-mobility.c
|
|
|
|
print-mpcp.c
|
|
|
|
print-mpls.c
|
|
|
|
print-mptcp.c
|
|
|
|
print-msdp.c
|
|
|
|
print-msnlb.c
|
|
|
|
print-nflog.c
|
|
|
|
print-nfs.c
|
|
|
|
print-nsh.c
|
|
|
|
print-ntp.c
|
|
|
|
print-null.c
|
|
|
|
print-olsr.c
|
|
|
|
print-openflow-1.0.c
|
2020-09-28 06:17:56 +08:00
|
|
|
print-openflow-1.3.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-openflow.c
|
|
|
|
print-ospf.c
|
|
|
|
print-ospf6.c
|
|
|
|
print-otv.c
|
Handle DLT_PFLOG on all OSes.
Don't pad the pflog header with BPF_WORDALIGN(); round up to a multiple
of 4, instead, as that's what all but FreeBSD do, and FreeBSD used to do
that and should go back to doing so (kern/261566).
Don't rely on the OS's pflog include files to define direction types,
reason types, action types, or the layout of the header; instead, define
them ourselves in a header of our own, with #ifs to select the ones that
are only on some platforms. That way, it'll handle some fields and
field values (the ones common to all OSes with pflog) on all OSes, even
ones without pflog.
That also expands the set of direction, reason, and action codes to what
various *BSDs and Darwin support.
Also, handle all the different AF_INET6 values in various *BSDs and
Darwin.
2022-01-30 14:30:33 +08:00
|
|
|
print-pflog.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-pgm.c
|
|
|
|
print-pim.c
|
|
|
|
print-pktap.c
|
|
|
|
print-ppi.c
|
|
|
|
print-ppp.c
|
|
|
|
print-pppoe.c
|
|
|
|
print-pptp.c
|
2018-12-14 14:28:36 +08:00
|
|
|
print-ptp.c
|
2021-10-01 09:34:46 +08:00
|
|
|
print-quic.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-radius.c
|
|
|
|
print-raw.c
|
2022-01-23 17:46:20 +08:00
|
|
|
print-realtek.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-resp.c
|
|
|
|
print-rip.c
|
|
|
|
print-ripng.c
|
|
|
|
print-rpki-rtr.c
|
|
|
|
print-rsvp.c
|
|
|
|
print-rt6.c
|
|
|
|
print-rtsp.c
|
|
|
|
print-rx.c
|
|
|
|
print-sctp.c
|
|
|
|
print-sflow.c
|
|
|
|
print-sip.c
|
|
|
|
print-sl.c
|
|
|
|
print-sll.c
|
|
|
|
print-slow.c
|
|
|
|
print-smtp.c
|
|
|
|
print-snmp.c
|
2020-04-03 22:49:22 +08:00
|
|
|
print-someip.c
|
2018-12-23 18:38:17 +08:00
|
|
|
print-ssh.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-stp.c
|
|
|
|
print-sunatm.c
|
|
|
|
print-sunrpc.c
|
|
|
|
print-symantec.c
|
|
|
|
print-syslog.c
|
|
|
|
print-tcp.c
|
|
|
|
print-telnet.c
|
|
|
|
print-tftp.c
|
|
|
|
print-timed.c
|
|
|
|
print-tipc.c
|
|
|
|
print-token.c
|
|
|
|
print-udld.c
|
|
|
|
print-udp.c
|
2020-05-10 01:32:05 +08:00
|
|
|
print-unsupported.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-usb.c
|
|
|
|
print-vjc.c
|
|
|
|
print-vqp.c
|
|
|
|
print-vrrp.c
|
2016-06-14 22:45:44 +08:00
|
|
|
print-vsock.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-vtp.c
|
|
|
|
print-vxlan-gpe.c
|
2020-04-03 22:49:22 +08:00
|
|
|
print-vxlan.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-wb.c
|
2022-01-14 20:23:28 +08:00
|
|
|
print-whois.c
|
2018-11-18 06:34:33 +08:00
|
|
|
print-zep.c
|
2018-01-22 05:22:15 +08:00
|
|
|
print-zephyr.c
|
|
|
|
print-zeromq.c
|
2018-01-23 11:43:26 +08:00
|
|
|
${LOCALSRC}
|
2018-01-22 05:22:15 +08:00
|
|
|
signature.c
|
|
|
|
strtoaddr.c
|
|
|
|
util-print.c
|
|
|
|
)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Replace missing functions
|
|
|
|
#
|
2023-02-19 07:26:53 +08:00
|
|
|
foreach(FUNC strlcat strlcpy strsep getservent getopt_long)
|
2018-01-22 05:22:15 +08:00
|
|
|
string(TOUPPER ${FUNC} FUNC_UPPERCASE)
|
|
|
|
set(HAVE_FUNC_UPPERCASE HAVE_${FUNC_UPPERCASE})
|
|
|
|
if(NOT ${HAVE_FUNC_UPPERCASE})
|
|
|
|
set(NETDISSECT_SOURCE_LIST_C ${NETDISSECT_SOURCE_LIST_C} missing/${FUNC}.c)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
add_library(netdissect STATIC
|
|
|
|
${NETDISSECT_SOURCE_LIST_C}
|
|
|
|
)
|
2018-03-28 05:38:29 +08:00
|
|
|
if(NOT C_ADDITIONAL_FLAGS STREQUAL "")
|
|
|
|
set_target_properties(netdissect PROPERTIES COMPILE_FLAGS ${C_ADDITIONAL_FLAGS})
|
|
|
|
endif()
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2020-02-05 11:53:11 +08:00
|
|
|
set(TCPDUMP_SOURCE_LIST_C fptype.c tcpdump.c)
|
2018-01-22 05:22:15 +08:00
|
|
|
|
2018-01-22 10:51:16 +08:00
|
|
|
if(NOT HAVE_BPF_DUMP)
|
|
|
|
set(TCPDUMP_SOURCE_LIST_C ${TCPDUMP_SOURCE_LIST_C} bpf_dump.c)
|
|
|
|
endif(NOT HAVE_BPF_DUMP)
|
2018-01-22 11:29:43 +08:00
|
|
|
if(NOT HAVE_PCAP_DUMP_FTELL)
|
|
|
|
set(TCPDUMP_SOURCE_LIST_C ${TCPDUMP_SOURCE_LIST_C} missing/pcap_dump_ftell.c)
|
|
|
|
endif(NOT HAVE_PCAP_DUMP_FTELL)
|
2018-01-22 10:51:16 +08:00
|
|
|
|
2018-01-22 11:46:03 +08:00
|
|
|
if(NOT HAVE_PCAP_LIST_DATALINKS)
|
|
|
|
set(TCPDUMP_SOURCE_LIST_C ${TCPDUMP_SOURCE_LIST_C} missing/datalinks.c)
|
|
|
|
endif(NOT HAVE_PCAP_LIST_DATALINKS)
|
|
|
|
|
|
|
|
if((NOT HAVE_PCAP_DATALINK_NAME_TO_VAL) OR (NOT HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION))
|
|
|
|
set(TCPDUMP_SOURCE_LIST_C ${TCPDUMP_SOURCE_LIST_C} missing/dlnames.c)
|
|
|
|
endif((NOT HAVE_PCAP_DATALINK_NAME_TO_VAL) OR (NOT HAVE_PCAP_DATALINK_VAL_TO_DESCRIPTION))
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
set(PROJECT_SOURCE_LIST_C ${NETDISSECT_SOURCE_LIST_C} ${TCPDUMP_SOURCE_LIST_C})
|
|
|
|
|
|
|
|
file(GLOB PROJECT_SOURCE_LIST_H
|
|
|
|
*.h
|
|
|
|
)
|
|
|
|
|
2023-01-09 19:57:42 +08:00
|
|
|
#
|
|
|
|
# Assume, by default, no support for shared libraries and V7/BSD
|
|
|
|
# convention for man pages (devices in section 4, file formats in
|
|
|
|
# section 5, miscellaneous info in section 7, administrative commands
|
|
|
|
# and daemons in section 8). Individual cases can override this.
|
|
|
|
# Individual cases can override this.
|
|
|
|
#
|
|
|
|
set(MAN_FILE_FORMATS 5)
|
|
|
|
set(MAN_MISC_INFO 7)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "AIX")
|
|
|
|
# Workaround to enable certain features
|
|
|
|
set(_SUN TRUE)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME STREQUAL "HP-UX")
|
|
|
|
#
|
|
|
|
# Use System V conventions for man pages.
|
|
|
|
#
|
|
|
|
set(MAN_FILE_FORMATS 4)
|
|
|
|
set(MAN_MISC_INFO 5)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME STREQUAL "IRIX" OR CMAKE_SYSTEM_NAME STREQUAL "IRIX64")
|
|
|
|
#
|
|
|
|
# Use IRIX conventions for man pages; they're the same as the
|
|
|
|
# System V conventions, except that they use section 8 for
|
|
|
|
# administrative commands and daemons.
|
|
|
|
#
|
|
|
|
set(MAN_FILE_FORMATS 4)
|
|
|
|
set(MAN_MISC_INFO 5)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME STREQUAL "OSF1")
|
|
|
|
#
|
|
|
|
# DEC OSF/1, a/k/a Digital UNIX, a/k/a Tru64 UNIX.
|
|
|
|
# Use Tru64 UNIX conventions for man pages; they're the same as the
|
|
|
|
# System V conventions except that they use section 8 for
|
|
|
|
# administrative commands and daemons.
|
|
|
|
#
|
|
|
|
set(MAN_FILE_FORMATS 4)
|
|
|
|
set(MAN_MISC_INFO 5)
|
|
|
|
elseif(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND CMAKE_SYSTEM_VERSION MATCHES "5[.][0-9.]*")
|
|
|
|
#
|
|
|
|
# SunOS 5.x.
|
|
|
|
#
|
|
|
|
if(CMAKE_SYSTEM_VERSION STREQUAL "5.12")
|
|
|
|
else()
|
|
|
|
#
|
|
|
|
# Use System V conventions for man pages.
|
|
|
|
#
|
|
|
|
set(MAN_FILE_FORMATS 4)
|
|
|
|
set(MAN_MISC_INFO 5)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2018-01-22 05:22:15 +08:00
|
|
|
source_group("Source Files" FILES ${PROJECT_SOURCE_LIST_C})
|
|
|
|
source_group("Header Files" FILES ${PROJECT_SOURCE_LIST_H})
|
|
|
|
|
|
|
|
######################################
|
|
|
|
# Register targets
|
|
|
|
######################################
|
|
|
|
|
|
|
|
add_executable(tcpdump ${TCPDUMP_SOURCE_LIST_C})
|
2018-03-28 05:38:29 +08:00
|
|
|
if(NOT C_ADDITIONAL_FLAGS STREQUAL "")
|
|
|
|
set_target_properties(tcpdump PROPERTIES COMPILE_FLAGS ${C_ADDITIONAL_FLAGS})
|
|
|
|
endif()
|
2018-01-23 09:45:49 +08:00
|
|
|
target_link_libraries(tcpdump netdissect ${TCPDUMP_LINK_LIBRARIES})
|
2018-01-22 05:22:15 +08:00
|
|
|
|
|
|
|
######################################
|
|
|
|
# Write out the config.h file
|
|
|
|
######################################
|
|
|
|
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/cmakeconfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
2018-01-23 07:49:06 +08:00
|
|
|
|
|
|
|
######################################
|
|
|
|
# Install tcpdump and man pages
|
|
|
|
######################################
|
|
|
|
|
|
|
|
#
|
|
|
|
# "Define GNU standard installation directories", which actually
|
|
|
|
# are also defined, to some degree, by autotools, and at least
|
|
|
|
# some of which are general UN*X conventions.
|
|
|
|
#
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2018-01-23 08:51:02 +08:00
|
|
|
set(MAN1_EXPAND tcpdump.1.in)
|
2018-01-23 07:49:06 +08:00
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
# XXX TODO where to install on Windows?
|
|
|
|
else(WIN32)
|
2020-09-10 19:54:41 +08:00
|
|
|
install(TARGETS tcpdump DESTINATION bin)
|
2018-01-23 07:49:06 +08:00
|
|
|
endif(WIN32)
|
|
|
|
|
|
|
|
# On UN*X, and on Windows when not using MSVC, process man pages and
|
|
|
|
# arrange that they be installed.
|
|
|
|
if(NOT MSVC)
|
|
|
|
#
|
|
|
|
# Man pages.
|
|
|
|
#
|
2018-01-23 08:46:46 +08:00
|
|
|
# For each section of the manual for which we have man pages
|
|
|
|
# that require macro expansion, do the expansion.
|
|
|
|
#
|
|
|
|
set(MAN1 "")
|
|
|
|
foreach(TEMPLATE_MANPAGE ${MAN1_EXPAND})
|
|
|
|
string(REPLACE ".in" "" MANPAGE ${TEMPLATE_MANPAGE})
|
|
|
|
configure_file(${CMAKE_SOURCE_DIR}/${TEMPLATE_MANPAGE} ${CMAKE_CURRENT_BINARY_DIR}/${MANPAGE} @ONLY)
|
|
|
|
set(MAN1 ${MAN1} ${CMAKE_CURRENT_BINARY_DIR}/${MANPAGE})
|
|
|
|
endforeach(TEMPLATE_MANPAGE)
|
2018-01-23 07:49:06 +08:00
|
|
|
install(FILES ${MAN1} DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
|
|
|
endif(NOT MSVC)
|
|
|
|
|
|
|
|
# uninstall target
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
|
|
|
|
|
|
|
add_custom_target(uninstall
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
|
2018-03-06 11:11:09 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Tcpdump tests
|
2020-02-05 17:07:52 +08:00
|
|
|
# We try to find the Perl interpreter and, if we do, we have the check
|
|
|
|
# rule run tests/TESTrun with it, because just trying to run the TESTrun
|
|
|
|
# script as a command won't work on Windows.
|
|
|
|
#
|
|
|
|
find_program(PERL perl)
|
|
|
|
if(PERL)
|
|
|
|
message(STATUS "Found perl at ${PERL}")
|
|
|
|
add_custom_target(check
|
|
|
|
COMMAND ${PERL} ${CMAKE_SOURCE_DIR}/tests/TESTrun)
|
|
|
|
else()
|
|
|
|
message(STATUS "Didn't find perl")
|
|
|
|
endif()
|