]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - CMakeLists.txt
No deprecation-related warnings
[openssl-gost/engine.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
2 project(gost-engine LANGUAGES C)
3
4 include(GNUInstallDirs)
5 include(CheckLibraryExists)
6 include(CheckFunctionExists)
7 include(CheckCSourceRuns)
8
9 enable_testing()
10
11 find_package(OpenSSL 1.1.1 REQUIRED)
12 include_directories(${OPENSSL_INCLUDE_DIR})
13
14 if (CMAKE_C_COMPILER_ID MATCHES "Clang")
15  add_compile_options(-O2 -Werror -Wall -Wno-unused-parameter -Wno-unused-function -Wno-missing-braces -ggdb -Qunused-arguments)
16 elseif(CMAKE_C_COMPILER_ID MATCHES "GNU")
17  add_compile_options(-O2 -Werror -Wall -Wno-unused-parameter -Wno-unused-function -Wno-missing-braces -ggdb -Wno-error=unknown-pragmas -Wno-deprecated-declarations)
18 elseif(CMAKE_C_COMPILER_ID MATCHES "MSVC")
19  add_definitions(-D_CRT_SECURE_NO_WARNINGS)
20  add_definitions(-D_CRT_DEPRECATED_NO_WARNINGS)
21  add_definitions(-D_CRT_NONSTDC_NO_WARNINGS)
22  add_compile_options(/MP /WX /W4 /wd4100 /wd4267 /wd4206 /wd4706 /wd4244 /wd4115)
23 endif()
24
25 if (ASAN)
26   message(STATUS "address sanitizer enabled")
27   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address -g3 -fno-omit-frame-pointer")
28   set(SKIP_PERL_TESTS 1)
29 endif()
30
31 # DEPRECATEDIN_3_0 CMAC
32 set_source_files_properties(gost_omac.c PROPERTIES COMPILE_FLAGS -Wno-error=deprecated-declarations)
33 # DEPRECATEDIN_3_0 HMAC
34 set_source_files_properties(gost_keyexpimp.c PROPERTIES COMPILE_FLAGS -Wno-error=deprecated-declarations)
35
36 set(CMAKE_C_STANDARD 90)
37 CHECK_FUNCTION_EXISTS(clock_gettime HAVE_CLOCK_GETTIME_C)
38 CHECK_LIBRARY_EXISTS(rt clock_gettime "" HAVE_CLOCK_GETTIME_RT)
39 if(HAVE_CLOCK_GETTIME_RT AND NOT HAVE_CLOCK_GETTIME_C)
40   set(CLOCK_GETTIME_LIB rt)
41 endif()
42
43 include (TestBigEndian)
44 TEST_BIG_ENDIAN(IS_BIG_ENDIAN)
45 if(IS_BIG_ENDIAN)
46  message(STATUS "BIG_ENDIAN")
47 else()
48  message(STATUS "LITTLE_ENDIAN")
49  add_definitions(-DL_ENDIAN)
50 endif()
51
52 check_c_source_runs("
53   #ifdef _MSC_VER
54   # include <intrin.h>
55   #else
56   # include <x86intrin.h>
57   #endif
58   int main(void) {
59     unsigned long long x = -1, y = 1, r;
60     unsigned char cf;
61     cf = _addcarry_u64(1, x, y, &r);
62     return !(cf == 1 && r == 1);
63   }
64   " ADDCARRY_U64)
65 if (ADDCARRY_U64)
66   add_definitions(-DHAVE_ADDCARRY_U64)
67 endif()
68
69 set(BIN_DIRECTORY bin)
70
71 # Same soversion as OpenSSL
72 set(GOST_SOVERSION "${OPENSSL_VERSION_MAJOR}.${OPENSSL_VERSION_MINOR}")
73
74 set(OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${BIN_DIRECTORY})
75
76 #set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY})
77 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY})
78 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY})
79
80 # Remove when https://gitlab.kitware.com/cmake/cmake/issues/18525 is addressed
81 set(OPENSSL_ENGINES_DIR "" CACHE PATH "OpenSSL Engines Directory")
82 if ("${OPENSSL_ENGINES_DIR}" STREQUAL "")
83         include(FindPkgConfig)
84         pkg_get_variable(OPENSSL_ENGINES_DIR libcrypto enginesdir)
85         if ("${OPENSSL_ENGINES_DIR}" STREQUAL "")
86                 message( FATAL_ERROR "Unable to discover the OpenSSL engines directory. Provide the path using -DOPENSSL_ENGINES_DIR" )
87         endif()
88 endif()
89
90 set(GOST_89_SOURCE_FILES
91         gost89.c
92         gost89.h
93         )
94
95 set(GOST_HASH_SOURCE_FILES
96         gosthash.c
97         gosthash.h
98         )
99
100 set(GOST_HASH_2012_SOURCE_FILES
101         gosthash2012.c
102         gosthash2012.h
103         gosthash2012_const.h
104         gosthash2012_precalc.h
105         gosthash2012_ref.h
106         gosthash2012_sse2.h
107         )
108
109 set(GOST_GRASSHOPPER_SOURCE_FILES
110         gost_grasshopper.h
111         gost_grasshopper_core.h
112         gost_grasshopper_core.c
113         gost_grasshopper_defines.h
114         gost_grasshopper_defines.c
115         gost_grasshopper_math.h
116         gost_grasshopper_galois_precompiled.c
117         gost_grasshopper_precompiled.c
118         gost_grasshopper_cipher.h
119         gost_grasshopper_cipher.c
120         )
121
122 set(GOST_CORE_SOURCE_FILES
123         e_gost_err.c
124         e_gost_err.h
125         gost_asn1.c
126         gost_crypt.c
127         gost_ctl.c
128         gost_eng.c
129         gost_keywrap.c
130         gost_keywrap.h
131         gost_lcl.h
132         gost_params.c
133         gost_keyexpimp.c
134         )
135
136 set(GOST_EC_SOURCE_FILES
137         gost_ec_keyx.c
138         gost_ec_sign.c
139         )
140
141 set (GOST_OMAC_SOURCE_FILES
142         gost_omac.c
143         gost_omac_acpkm.c
144         )
145
146 set(GOST_LIB_SOURCE_FILES
147         ${GOST_89_SOURCE_FILES}
148         ${GOST_HASH_SOURCE_FILES}
149         ${GOST_HASH_2012_SOURCE_FILES}
150         ${GOST_GRASSHOPPER_SOURCE_FILES}
151         ${GOST_EC_SOURCE_FILES}
152         ${GOST_OMAC_SOURCE_FILES}
153         )
154
155 set(GOST_ENGINE_SOURCE_FILES
156         ${GOST_CORE_SOURCE_FILES}
157         gost_ameth.c
158         gost_md.c
159         gost_md2012.c
160         gost_pmeth.c
161         gost_omac.c
162         gost_omac_acpkm.c
163         )
164
165 add_executable(test_digest test_digest.c)
166 target_link_libraries(test_digest gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
167 add_test(NAME digest
168         COMMAND test_digest)
169
170 add_executable(test_curves test_curves.c)
171 target_link_libraries(test_curves gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
172 add_test(NAME curves
173         COMMAND test_curves)
174
175 add_executable(test_params test_params.c)
176 target_link_libraries(test_params gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
177 add_test(NAME parameters
178         COMMAND test_params)
179
180 add_executable(test_sign test_sign.c)
181 target_link_libraries(test_sign gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
182 add_test(NAME sign/verify
183         COMMAND test_sign)
184
185 add_executable(test_tls test_tls.c)
186 target_link_libraries(test_tls gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY} ${OPENSSL_SSL_LIBRARY})
187 add_test(NAME TLS
188         COMMAND test_tls)
189
190 add_executable(test_context test_context.c)
191 target_link_libraries(test_context gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
192 add_test(NAME context
193         COMMAND test_context)
194
195 add_executable(test_grasshopper test_grasshopper.c)
196 target_link_libraries(test_grasshopper gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
197 add_test(NAME grasshopper
198         COMMAND test_grasshopper)
199
200 add_executable(test_keyexpimp test_keyexpimp.c)
201 #target_compile_definitions(test_keyexpimp PUBLIC -DOPENSSL_LOAD_CONF)
202 target_link_libraries(test_keyexpimp gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
203 add_test(NAME keyexpimp
204         COMMAND test_keyexpimp)
205
206 add_executable(test_gost89 test_gost89.c)
207 target_link_libraries(test_gost89 gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
208 add_test(NAME gost89
209         COMMAND test_gost89)
210
211 if(NOT SKIP_PERL_TESTS)
212     execute_process(COMMAND perl -MTest2::V0 -e ""
213         ERROR_QUIET RESULT_VARIABLE HAVE_TEST2_V0)
214     if(NOT HAVE_TEST2_V0)
215         add_test(NAME engine
216             COMMAND perl run_tests
217             WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/test)
218         set_tests_properties(engine PROPERTIES ENVIRONMENT
219             "OPENSSL_ROOT_DIR=${OPENSSL_ROOT_DIR};OPENSSL_ENGINES=${OUTPUT_DIRECTORY};OPENSSL_CONF=${CMAKE_SOURCE_DIR}/test/empty.cnf")
220     else()
221       message(STATUS "No Test2::V0 perl module (engine tests skipped)")
222     endif()
223 endif()
224
225 add_executable(sign benchmark/sign.c)
226 target_link_libraries(sign gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY} ${CLOCK_GETTIME_LIB})
227
228 # All that may need to load just built engine will have path to it defined.
229 set(BINARY_TESTS_TARGETS
230         test_digest
231         test_curves
232         test_params
233         test_sign
234         test_context
235         test_grasshopper
236         test_keyexpimp
237         test_gost89
238         test_tls
239         )
240 set_property(TARGET ${BINARY_TESTS_TARGETS} APPEND PROPERTY COMPILE_DEFINITIONS ENGINE_DIR="${OUTPUT_DIRECTORY}")
241
242 add_library(gost_core STATIC ${GOST_LIB_SOURCE_FILES})
243 set_target_properties(gost_core PROPERTIES POSITION_INDEPENDENT_CODE ON)
244
245 add_library(gost_engine SHARED ${GOST_ENGINE_SOURCE_FILES})
246 set_target_properties(gost_engine PROPERTIES PREFIX "" OUTPUT_NAME "gost")
247 set_target_properties(gost_engine PROPERTIES VERSION ${GOST_SOVERSION} SOVERSION ${GOST_SOVERSION})
248 target_link_libraries(gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
249
250 set(GOST_SUM_SOURCE_FILES
251         gostsum.c
252         )
253
254 add_executable(gostsum ${GOST_SUM_SOURCE_FILES})
255 target_link_libraries(gostsum gost_core ${OPENSSL_CRYPTO_LIBRARY})
256
257 set(GOST_12_SUM_SOURCE_FILES
258         gost12sum.c
259         )
260
261 add_executable(gost12sum ${GOST_12_SUM_SOURCE_FILES})
262 target_link_libraries(gost12sum gost_core)
263
264 set_source_files_properties(tags PROPERTIES GENERATED true)
265 add_custom_target(tags
266     COMMAND ctags -R . ${OPENSSL_ROOT_DIR}
267     WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
268
269 add_custom_target(tcl_tests
270     COMMAND ENGINE_DIR=${OUTPUT_DIRECTORY} sh ./runtest.sh
271     WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/tcl_tests)
272
273 add_executable(test_tlstree test_tlstree.c)
274 target_link_libraries(test_tlstree PUBLIC ${OPENSSL_CRYPTO_LIBRARY})
275
276 # install
277 set(OPENSSL_MAN_INSTALL_DIR ${CMAKE_INSTALL_MANDIR}/man1)
278
279 install(TARGETS gost_engine gostsum gost12sum EXPORT GostEngineConfig
280         LIBRARY  DESTINATION ${OPENSSL_ENGINES_DIR}
281         RUNTIME  DESTINATION ${CMAKE_INSTALL_BINDIR})
282 install(FILES gostsum.1 gost12sum.1 DESTINATION ${OPENSSL_MAN_INSTALL_DIR})
283 if (MSVC)
284  install(FILES $<TARGET_PDB_FILE:gost_engine> DESTINATION ${OPENSSL_ENGINES_DIR} OPTIONAL)
285  install(FILES $<TARGET_PDB_FILE:gostsum> $<TARGET_PDB_FILE:gost12sum> DESTINATION ${CMAKE_INSTALL_BINDIR} OPTIONAL)
286 endif()