mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 10:23:17 +00:00

Apply both .cdiff and .script CVD patches. Note: A script is a non-compressed and unsigned file containing cdiff commands. There is no header or footer that should be processed. This Rust-based implementation of the cdiff-apply feature includes equivalent features as found in the C-based implementation: - cdiff file signature validation against sha256 of the file contents - Gz decoding of file contents - File open command - File close command - Signature add command - Line delete command - Xchg command - Move command - Unlink command This Rust implementation adds cdiff-apply unit tests to verify correct functionality.
84 lines
2 KiB
CMake
84 lines
2 KiB
CMake
# Copyright (C) 2020-2022 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
|
|
|
if(WIN32)
|
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
|
|
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
|
|
|
# Windows compatibility headers
|
|
include_directories(${CMAKE_SOURCE_DIR}/win32/compat)
|
|
endif()
|
|
|
|
# The "common" static library.
|
|
add_library( common STATIC )
|
|
target_sources( common
|
|
PRIVATE
|
|
cert_util.c
|
|
actions.c
|
|
clamdcom.c
|
|
getopt.c
|
|
hostid.c
|
|
idmef_logging.c
|
|
misc.c
|
|
optparser.c
|
|
output.c
|
|
tar.c
|
|
PUBLIC
|
|
cert_util.h
|
|
actions.h
|
|
clamdcom.h
|
|
fdpassing.h
|
|
getopt.h
|
|
hostid.h
|
|
idmef_logging.h
|
|
misc.h
|
|
optparser.h
|
|
output.h
|
|
tar.h )
|
|
|
|
target_include_directories( common
|
|
PRIVATE ${CMAKE_BINARY_DIR}
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} )
|
|
if(FOUND_SYSTEMD)
|
|
target_include_directories( common
|
|
PRIVATE ${SYSTEMD_INCLUDE_DIRS} )
|
|
endif()
|
|
|
|
if(APPLE)
|
|
target_sources( common PRIVATE mac/cert_util_mac.m )
|
|
elseif(WIN32)
|
|
target_sources( common
|
|
PRIVATE service.c scanmem.c exescanner.c
|
|
PUBLIC service.h scanmem.h exescanner.h )
|
|
target_sources( common PRIVATE win/cert_util_win.c )
|
|
else()
|
|
target_sources( common PRIVATE linux/cert_util_linux.c )
|
|
endif()
|
|
|
|
target_link_libraries( common
|
|
PUBLIC
|
|
ClamAV::libclamav
|
|
ZLIB::ZLIB
|
|
CURL::libcurl
|
|
OpenSSL::SSL
|
|
OpenSSL::Crypto )
|
|
if(WIN32)
|
|
target_link_libraries( common
|
|
PUBLIC
|
|
crypt32
|
|
psapi)
|
|
endif()
|
|
|
|
if(HAVE_SYSTEMD)
|
|
target_link_libraries( common
|
|
PRIVATE
|
|
SYSTEMD::systemd )
|
|
endif()
|
|
|
|
set_target_properties( common PROPERTIES COMPILE_FLAGS "${WARNCFLAGS}" )
|
|
if(WIN32)
|
|
set_target_properties(common PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
endif()
|
|
|
|
add_library( ClamAV::common ALIAS common )
|