]> www.wagner.pp.ru Git - openssl-gost/engine.git/blob - CMakeLists.txt
Cleanup source organisation, and make 'gost' an actual module
[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 3.0 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 -Wno-deprecated-declarations)
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-error=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 check_c_source_runs("
70   int main(void) {
71     char buf[16] = { 0, 1, 2 };
72     int *p = (int *)(buf + 1);
73     int *q = (int *)(buf + 2);
74     return (*p == *q);
75   }
76   " RELAXED_ALIGNMENT)
77 if (NOT RELAXED_ALIGNMENT)
78   add_definitions(-DSTRICT_ALIGNMENT)
79 endif()
80
81 set(BIN_DIRECTORY bin)
82
83 set(OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${BIN_DIRECTORY})
84
85 #set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY})
86 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY})
87 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${OUTPUT_DIRECTORY})
88
89 # Remove when https://gitlab.kitware.com/cmake/cmake/issues/18525 is addressed
90 set(OPENSSL_ENGINES_DIR "" CACHE PATH "OpenSSL Engines Directory")
91 if ("${OPENSSL_ENGINES_DIR}" STREQUAL "")
92         include(FindPkgConfig)
93         pkg_get_variable(OPENSSL_ENGINES_DIR libcrypto enginesdir)
94         if ("${OPENSSL_ENGINES_DIR}" STREQUAL "")
95                 message( FATAL_ERROR "Unable to discover the OpenSSL engines directory. Provide the path using -DOPENSSL_ENGINES_DIR" )
96         endif()
97 endif()
98
99 set(GOST_89_SOURCE_FILES
100         gost89.c
101         gost89.h
102         )
103
104 set(GOST_HASH_SOURCE_FILES
105         gosthash.c
106         gosthash.h
107         )
108
109 set(GOST_HASH_2012_SOURCE_FILES
110         gosthash2012.c
111         gosthash2012.h
112         gosthash2012_const.h
113         gosthash2012_precalc.h
114         gosthash2012_ref.h
115         gosthash2012_sse2.h
116         )
117
118 set(GOST_GRASSHOPPER_SOURCE_FILES
119         gost_grasshopper.h
120         gost_grasshopper_core.h
121         gost_grasshopper_core.c
122         gost_grasshopper_defines.h
123         gost_grasshopper_defines.c
124         gost_grasshopper_math.h
125         gost_grasshopper_galois_precompiled.c
126         gost_grasshopper_precompiled.c
127         gost_grasshopper_cipher.h
128         gost_grasshopper_cipher.c
129         )
130
131 set(GOST_CORE_SOURCE_FILES
132         e_gost_err.c
133         e_gost_err.h
134         gost_ameth.c
135         gost_pmeth.c
136         gost_ctl.c
137         gost_asn1.c
138         gost_crypt.c
139         gost_keywrap.c
140         gost_keywrap.h
141         gost_md.c
142         gost_md2012.c
143         gost_omac.c
144         gost_omac_acpkm.c
145         gost_gost2015.c
146         gost_lcl.h
147         gost_params.c
148         gost_keyexpimp.c
149         )
150
151 set(GOST_EC_SOURCE_FILES
152         gost_ec_keyx.c
153         gost_ec_sign.c
154         ecp_id_GostR3410_2001_CryptoPro_A_ParamSet.c
155         ecp_id_GostR3410_2001_CryptoPro_B_ParamSet.c
156         ecp_id_GostR3410_2001_CryptoPro_C_ParamSet.c
157         ecp_id_GostR3410_2001_TestParamSet.c
158         ecp_id_tc26_gost_3410_2012_256_paramSetA.c
159         ecp_id_tc26_gost_3410_2012_512_paramSetA.c
160         ecp_id_tc26_gost_3410_2012_512_paramSetB.c
161         ecp_id_tc26_gost_3410_2012_512_paramSetC.c
162         )
163
164 set (GOST_OMAC_SOURCE_FILES
165         gost_omac.c
166         gost_omac_acpkm.c
167         )
168
169 set(GOST_LIB_SOURCE_FILES
170         ${GOST_CORE_SOURCE_FILES}
171         ${GOST_89_SOURCE_FILES}
172         ${GOST_HASH_SOURCE_FILES}
173         ${GOST_HASH_2012_SOURCE_FILES}
174         ${GOST_GRASSHOPPER_SOURCE_FILES}
175         ${GOST_EC_SOURCE_FILES}
176         ${GOST_OMAC_SOURCE_FILES}
177         )
178
179 set(GOST_ENGINE_SOURCE_FILES
180         gost_eng.c
181         )
182
183 add_executable(test_digest test_digest.c)
184 target_link_libraries(test_digest gost_core ${OPENSSL_CRYPTO_LIBRARY})
185 add_test(NAME digest
186         COMMAND test_digest)
187
188 add_executable(test_ciphers test_ciphers.c)
189 target_link_libraries(test_ciphers gost_core ${OPENSSL_CRYPTO_LIBRARY})
190 add_test(NAME ciphers
191         COMMAND test_ciphers)
192
193 add_executable(test_curves test_curves.c)
194 target_link_libraries(test_curves gost_core ${OPENSSL_CRYPTO_LIBRARY})
195 add_test(NAME curves
196         COMMAND test_curves)
197
198 add_executable(test_params test_params.c)
199 target_link_libraries(test_params gost_core ${OPENSSL_CRYPTO_LIBRARY})
200 add_test(NAME parameters
201         COMMAND test_params)
202
203 add_executable(test_derive test_derive.c)
204 target_link_libraries(test_derive gost_core ${OPENSSL_CRYPTO_LIBRARY})
205 add_test(NAME derive
206         COMMAND test_derive)
207
208 add_executable(test_sign test_sign.c)
209 target_link_libraries(test_sign gost_core ${OPENSSL_CRYPTO_LIBRARY})
210 add_test(NAME sign/verify
211         COMMAND test_sign)
212
213 add_executable(test_tls test_tls.c)
214 target_link_libraries(test_tls gost_core ${OPENSSL_CRYPTO_LIBRARY} ${OPENSSL_SSL_LIBRARY})
215 add_test(NAME TLS
216         COMMAND test_tls)
217
218 add_executable(test_context test_context.c)
219 target_link_libraries(test_context gost_core ${OPENSSL_CRYPTO_LIBRARY})
220 add_test(NAME context
221         COMMAND test_context)
222
223 add_executable(test_keyexpimp test_keyexpimp.c)
224 #target_compile_definitions(test_keyexpimp PUBLIC -DOPENSSL_LOAD_CONF)
225 target_link_libraries(test_keyexpimp gost_core ${OPENSSL_CRYPTO_LIBRARY})
226 add_test(NAME keyexpimp
227         COMMAND test_keyexpimp)
228
229 add_executable(test_gost89 test_gost89.c)
230 target_link_libraries(test_gost89 gost_core ${OPENSSL_CRYPTO_LIBRARY})
231 add_test(NAME gost89
232         COMMAND test_gost89)
233
234 if(NOT SKIP_PERL_TESTS)
235     execute_process(COMMAND perl -MTest2::V0 -e ""
236         ERROR_QUIET RESULT_VARIABLE HAVE_TEST2_V0)
237     if(NOT HAVE_TEST2_V0)
238         add_test(NAME engine
239             COMMAND perl run_tests
240             WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/test)
241         set_tests_properties(engine PROPERTIES ENVIRONMENT
242             "OPENSSL_ROOT_DIR=${OPENSSL_ROOT_DIR};OPENSSL_ENGINES=${OUTPUT_DIRECTORY};OPENSSL_CONF=${CMAKE_SOURCE_DIR}/test/empty.cnf")
243     else()
244       message(STATUS "No Test2::V0 perl module (engine tests skipped)")
245     endif()
246 endif()
247
248 add_executable(sign benchmark/sign.c)
249 target_link_libraries(sign gost_core ${OPENSSL_CRYPTO_LIBRARY} ${CLOCK_GETTIME_LIB})
250
251 # All that may need to load just built engine will have path to it defined.
252 set(BINARY_TESTS_TARGETS
253         test_digest
254         test_ciphers
255         test_curves
256         test_params
257         test_derive
258         test_sign
259         test_context
260         test_keyexpimp
261         test_gost89
262         test_tls
263         )
264 set_property(TARGET ${BINARY_TESTS_TARGETS} APPEND PROPERTY COMPILE_DEFINITIONS ENGINE_DIR="${OUTPUT_DIRECTORY}")
265
266 add_library(gost_core STATIC ${GOST_LIB_SOURCE_FILES})
267 set_target_properties(gost_core PROPERTIES POSITION_INDEPENDENT_CODE ON)
268
269 add_library(gost_engine MODULE ${GOST_ENGINE_SOURCE_FILES})
270 set_target_properties(gost_engine PROPERTIES PREFIX "" OUTPUT_NAME "gost")
271 target_link_libraries(gost_engine gost_core ${OPENSSL_CRYPTO_LIBRARY})
272
273 set(GOST_SUM_SOURCE_FILES
274         gostsum.c
275         )
276
277 add_executable(gostsum ${GOST_SUM_SOURCE_FILES})
278 target_link_libraries(gostsum gost_core ${OPENSSL_CRYPTO_LIBRARY})
279
280 set(GOST_12_SUM_SOURCE_FILES
281         gost12sum.c
282         )
283
284 add_executable(gost12sum ${GOST_12_SUM_SOURCE_FILES})
285 target_link_libraries(gost12sum gost_core)
286
287 set_source_files_properties(tags PROPERTIES GENERATED true)
288 add_custom_target(tags
289     COMMAND ctags -R . ${OPENSSL_ROOT_DIR}
290     WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
291
292 add_custom_target(tcl_tests
293     COMMAND ENGINE_DIR=${OUTPUT_DIRECTORY} sh ./runtest.sh
294     WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/tcl_tests)
295
296 add_executable(test_tlstree test_tlstree.c)
297 target_link_libraries(test_tlstree PUBLIC ${OPENSSL_CRYPTO_LIBRARY})
298
299 # install
300 set(OPENSSL_MAN_INSTALL_DIR ${CMAKE_INSTALL_MANDIR}/man1)
301
302 install(TARGETS gost_engine gostsum gost12sum EXPORT GostEngineConfig
303         LIBRARY  DESTINATION ${OPENSSL_ENGINES_DIR}
304         RUNTIME  DESTINATION ${CMAKE_INSTALL_BINDIR})
305 install(FILES gostsum.1 gost12sum.1 DESTINATION ${OPENSSL_MAN_INSTALL_DIR})
306 if (MSVC)
307  install(FILES $<TARGET_PDB_FILE:gost_engine> DESTINATION ${OPENSSL_ENGINES_DIR} OPTIONAL)
308  install(FILES $<TARGET_PDB_FILE:gostsum> $<TARGET_PDB_FILE:gost12sum> DESTINATION ${CMAKE_INSTALL_BINDIR} OPTIONAL)
309 endif()