uringmachine 0.15 → 0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +3 -0
- data/.gitmodules +4 -0
- data/CHANGELOG.md +12 -0
- data/TODO.md +12 -3
- data/examples/bm_send.rb +86 -0
- data/ext/um/um.c +28 -1
- data/ext/um/um.h +3 -0
- data/ext/um/um_class.c +17 -0
- data/ext/um/um_stream_class.c +0 -1
- data/ext/um/um_utils.c +38 -15
- data/lib/uringmachine/version.rb +1 -1
- data/lib/uringmachine.rb +4 -3
- data/test/test_um.rb +76 -0
- data/vendor/libressl/.github/scripts/changelog.sh +74 -0
- data/vendor/libressl/.github/workflows/android.yml +35 -0
- data/vendor/libressl/.github/workflows/cifuzz.yml +33 -0
- data/vendor/libressl/.github/workflows/cmake-config.yml +98 -0
- data/vendor/libressl/.github/workflows/coverity.yml +69 -0
- data/vendor/libressl/.github/workflows/emscripten.yml +71 -0
- data/vendor/libressl/.github/workflows/fedora-rawhide.yml +39 -0
- data/vendor/libressl/.github/workflows/freebsd.yml +71 -0
- data/vendor/libressl/.github/workflows/linux.yml +71 -0
- data/vendor/libressl/.github/workflows/macos.yml +37 -0
- data/vendor/libressl/.github/workflows/release.yml +81 -0
- data/vendor/libressl/.github/workflows/rust-openssl.yml +47 -0
- data/vendor/libressl/.github/workflows/solaris.yml +37 -0
- data/vendor/libressl/.github/workflows/windows.yml +70 -0
- data/vendor/libressl/.gitignore +333 -0
- data/vendor/libressl/CMakeLists.txt +581 -0
- data/vendor/libressl/COPYING +133 -0
- data/vendor/libressl/ChangeLog +3280 -0
- data/vendor/libressl/FindLibreSSL.cmake +232 -0
- data/vendor/libressl/LibreSSLConfig.cmake.in +36 -0
- data/vendor/libressl/Makefile.am +60 -0
- data/vendor/libressl/Makefile.am.common +20 -0
- data/vendor/libressl/OPENBSD_BRANCH +1 -0
- data/vendor/libressl/README.md +238 -0
- data/vendor/libressl/README.mingw.md +43 -0
- data/vendor/libressl/apps/CMakeLists.txt +18 -0
- data/vendor/libressl/apps/Makefile.am +5 -0
- data/vendor/libressl/apps/nc/CMakeLists.txt +67 -0
- data/vendor/libressl/apps/nc/Makefile.am +64 -0
- data/vendor/libressl/apps/nc/compat/accept4.c +17 -0
- data/vendor/libressl/apps/nc/compat/readpassphrase.c +205 -0
- data/vendor/libressl/apps/nc/compat/socket.c +29 -0
- data/vendor/libressl/apps/nc/compat/sys/socket.h +30 -0
- data/vendor/libressl/apps/ocspcheck/CMakeLists.txt +44 -0
- data/vendor/libressl/apps/ocspcheck/Makefile.am +45 -0
- data/vendor/libressl/apps/ocspcheck/compat/.gitignore +0 -0
- data/vendor/libressl/apps/openssl/CMakeLists.txt +97 -0
- data/vendor/libressl/apps/openssl/Makefile.am +108 -0
- data/vendor/libressl/apps/openssl/apps_win.c +138 -0
- data/vendor/libressl/apps/openssl/certhash_win.c +13 -0
- data/vendor/libressl/apps/openssl/compat/clock_gettime_osx.c +26 -0
- data/vendor/libressl/apps/openssl/compat/poll_win.c +329 -0
- data/vendor/libressl/appveyor.yml +53 -0
- data/vendor/libressl/autogen.sh +15 -0
- data/vendor/libressl/check-release.sh +86 -0
- data/vendor/libressl/cmake_export_symbol.cmake +71 -0
- data/vendor/libressl/cmake_uninstall.cmake.in +36 -0
- data/vendor/libressl/config +17 -0
- data/vendor/libressl/configure.ac +165 -0
- data/vendor/libressl/crypto/CMakeLists.txt +863 -0
- data/vendor/libressl/crypto/Makefile.am +962 -0
- data/vendor/libressl/crypto/Makefile.am.arc4random +46 -0
- data/vendor/libressl/crypto/Makefile.am.elf-mips +14 -0
- data/vendor/libressl/crypto/Makefile.am.elf-mips64 +14 -0
- data/vendor/libressl/crypto/Makefile.am.elf-x86_64 +35 -0
- data/vendor/libressl/crypto/Makefile.am.macosx-x86_64 +35 -0
- data/vendor/libressl/crypto/Makefile.am.masm-x86_64 +22 -0
- data/vendor/libressl/crypto/Makefile.am.mingw64-x86_64 +23 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_darwin.c +60 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_linux.c +62 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_none.c +26 -0
- data/vendor/libressl/crypto/arch/aarch64/crypto_cpu_caps_windows.c +36 -0
- data/vendor/libressl/crypto/arch/loongarch64/crypto_arch.h +21 -0
- data/vendor/libressl/crypto/arch/mips/crypto_arch.h +21 -0
- data/vendor/libressl/crypto/bn/arch/loongarch64/bn_arch.h +23 -0
- data/vendor/libressl/crypto/bn/arch/mips/bn_arch.h +24 -0
- data/vendor/libressl/crypto/compat/.gitignore +31 -0
- data/vendor/libressl/crypto/compat/arc4random.h +41 -0
- data/vendor/libressl/crypto/compat/b_win.c +55 -0
- data/vendor/libressl/crypto/compat/bsd-asprintf.c +96 -0
- data/vendor/libressl/crypto/compat/crypto_lock_win.c +56 -0
- data/vendor/libressl/crypto/compat/explicit_bzero_win.c +13 -0
- data/vendor/libressl/crypto/compat/freezero.c +32 -0
- data/vendor/libressl/crypto/compat/getdelim.c +78 -0
- data/vendor/libressl/crypto/compat/getline.c +40 -0
- data/vendor/libressl/crypto/compat/getopt_long.c +528 -0
- data/vendor/libressl/crypto/compat/getpagesize.c +18 -0
- data/vendor/libressl/crypto/compat/getprogname_linux.c +23 -0
- data/vendor/libressl/crypto/compat/getprogname_unimpl.c +7 -0
- data/vendor/libressl/crypto/compat/getprogname_windows.c +13 -0
- data/vendor/libressl/crypto/compat/posix_win.c +296 -0
- data/vendor/libressl/crypto/compat/syslog_r.c +19 -0
- data/vendor/libressl/crypto/compat/ui_openssl_win.c +334 -0
- data/vendor/libressl/dist.sh +22 -0
- data/vendor/libressl/gen-coverage-report.sh +58 -0
- data/vendor/libressl/gen-openbsd-tags.sh +20 -0
- data/vendor/libressl/include/CMakeLists.txt +61 -0
- data/vendor/libressl/include/Makefile.am +79 -0
- data/vendor/libressl/include/arch/loongarch64/opensslconf.h +150 -0
- data/vendor/libressl/include/arch/mips/opensslconf.h +150 -0
- data/vendor/libressl/include/compat/arpa/inet.h +15 -0
- data/vendor/libressl/include/compat/arpa/nameser.h +25 -0
- data/vendor/libressl/include/compat/cet.h +19 -0
- data/vendor/libressl/include/compat/dirent.h +17 -0
- data/vendor/libressl/include/compat/dirent_msvc.h +611 -0
- data/vendor/libressl/include/compat/endian.h +161 -0
- data/vendor/libressl/include/compat/err.h +95 -0
- data/vendor/libressl/include/compat/fcntl.h +32 -0
- data/vendor/libressl/include/compat/getopt.h +50 -0
- data/vendor/libressl/include/compat/limits.h +25 -0
- data/vendor/libressl/include/compat/netdb.h +10 -0
- data/vendor/libressl/include/compat/netinet/in.h +19 -0
- data/vendor/libressl/include/compat/netinet/ip.h +49 -0
- data/vendor/libressl/include/compat/netinet/tcp.h +10 -0
- data/vendor/libressl/include/compat/poll.h +63 -0
- data/vendor/libressl/include/compat/pthread.h +122 -0
- data/vendor/libressl/include/compat/readpassphrase.h +44 -0
- data/vendor/libressl/include/compat/resolv.h +24 -0
- data/vendor/libressl/include/compat/stdint.h +31 -0
- data/vendor/libressl/include/compat/stdio.h +65 -0
- data/vendor/libressl/include/compat/stdlib.h +57 -0
- data/vendor/libressl/include/compat/string.h +98 -0
- data/vendor/libressl/include/compat/sys/_null.h +18 -0
- data/vendor/libressl/include/compat/sys/ioctl.h +11 -0
- data/vendor/libressl/include/compat/sys/mman.h +19 -0
- data/vendor/libressl/include/compat/sys/param.h +15 -0
- data/vendor/libressl/include/compat/sys/queue.h +536 -0
- data/vendor/libressl/include/compat/sys/select.h +10 -0
- data/vendor/libressl/include/compat/sys/socket.h +18 -0
- data/vendor/libressl/include/compat/sys/stat.h +129 -0
- data/vendor/libressl/include/compat/sys/time.h +37 -0
- data/vendor/libressl/include/compat/sys/tree.h +1006 -0
- data/vendor/libressl/include/compat/sys/types.h +69 -0
- data/vendor/libressl/include/compat/sys/uio.h +17 -0
- data/vendor/libressl/include/compat/syslog.h +38 -0
- data/vendor/libressl/include/compat/time.h +59 -0
- data/vendor/libressl/include/compat/unistd.h +83 -0
- data/vendor/libressl/include/compat/win32netcompat.h +57 -0
- data/vendor/libressl/include/openssl/Makefile.am.tpl +45 -0
- data/vendor/libressl/libcrypto.pc.in +28 -0
- data/vendor/libressl/libressl.pub +2 -0
- data/vendor/libressl/libssl.pc.in +28 -0
- data/vendor/libressl/libtls.pc.in +28 -0
- data/vendor/libressl/m4/ax_add_fortify_source.m4 +80 -0
- data/vendor/libressl/m4/ax_check_compile_flag.m4 +53 -0
- data/vendor/libressl/m4/check-hardening-options.m4 +110 -0
- data/vendor/libressl/m4/check-libc.m4 +189 -0
- data/vendor/libressl/m4/check-os-options.m4 +181 -0
- data/vendor/libressl/m4/disable-compiler-warnings.m4 +44 -0
- data/vendor/libressl/man/CMakeLists.txt +26 -0
- data/vendor/libressl/man/links +2780 -0
- data/vendor/libressl/man/update_links.sh +25 -0
- data/vendor/libressl/openssl.pc.in +11 -0
- data/vendor/libressl/patches/bn_shift.patch +34 -0
- data/vendor/libressl/patches/crypto_arch.h.patch +34 -0
- data/vendor/libressl/patches/crypto_namespace.h.patch +22 -0
- data/vendor/libressl/patches/netcat.c.patch +178 -0
- data/vendor/libressl/patches/openssl.c.patch +12 -0
- data/vendor/libressl/patches/opensslfeatures.h.patch +49 -0
- data/vendor/libressl/patches/patch-amd64-crypto-cpu-caps.c.patch +20 -0
- data/vendor/libressl/patches/patch-i386-crypto-cpu-caps.c.patch +20 -0
- data/vendor/libressl/patches/speed.c.patch +114 -0
- data/vendor/libressl/patches/ssl_namespace.h.patch +21 -0
- data/vendor/libressl/patches/tls.h.patch +16 -0
- data/vendor/libressl/patches/tls_config.c.patch +15 -0
- data/vendor/libressl/patches/win32_amd64_bn_arch.h.patch +28 -0
- data/vendor/libressl/patches/windows_headers.patch +80 -0
- data/vendor/libressl/scripts/config.guess +1774 -0
- data/vendor/libressl/scripts/config.sub +1907 -0
- data/vendor/libressl/scripts/i686-w64-mingw32.cmake +9 -0
- data/vendor/libressl/scripts/test +210 -0
- data/vendor/libressl/scripts/wrap-compiler-for-flag-check +31 -0
- data/vendor/libressl/scripts/x86_64-w64-mingw32.cmake +9 -0
- data/vendor/libressl/ssl/CMakeLists.txt +183 -0
- data/vendor/libressl/ssl/Makefile.am +187 -0
- data/vendor/libressl/tests/CMakeLists.txt +970 -0
- data/vendor/libressl/tests/Makefile.am +944 -0
- data/vendor/libressl/tests/aeadtest.sh +30 -0
- data/vendor/libressl/tests/arc4randomforktest.sh +21 -0
- data/vendor/libressl/tests/asn1time_small.test +10 -0
- data/vendor/libressl/tests/cmake/CMakeLists.txt +52 -0
- data/vendor/libressl/tests/cmake/crypto.c +7 -0
- data/vendor/libressl/tests/cmake/ssl.c +6 -0
- data/vendor/libressl/tests/cmake/tls.c +6 -0
- data/vendor/libressl/tests/compat/pipe2.c +186 -0
- data/vendor/libressl/tests/dtlstest.sh +28 -0
- data/vendor/libressl/tests/evptest.sh +22 -0
- data/vendor/libressl/tests/keypairtest.sh +27 -0
- data/vendor/libressl/tests/mlkem_tests.sh +39 -0
- data/vendor/libressl/tests/ocsptest.bat +25 -0
- data/vendor/libressl/tests/ocsptest.sh +23 -0
- data/vendor/libressl/tests/openssl.cnf +29 -0
- data/vendor/libressl/tests/optionstest.c +381 -0
- data/vendor/libressl/tests/pidwraptest.c +85 -0
- data/vendor/libressl/tests/pidwraptest.sh +26 -0
- data/vendor/libressl/tests/quictest.bat +27 -0
- data/vendor/libressl/tests/quictest.sh +30 -0
- data/vendor/libressl/tests/renegotiation_test.bat +27 -0
- data/vendor/libressl/tests/renegotiation_test.sh +30 -0
- data/vendor/libressl/tests/rfc5280time_small.test +10 -0
- data/vendor/libressl/tests/servertest.bat +27 -0
- data/vendor/libressl/tests/servertest.sh +30 -0
- data/vendor/libressl/tests/shutdowntest.bat +27 -0
- data/vendor/libressl/tests/shutdowntest.sh +30 -0
- data/vendor/libressl/tests/ssltest.bat +32 -0
- data/vendor/libressl/tests/ssltest.sh +48 -0
- data/vendor/libressl/tests/testdsa.bat +47 -0
- data/vendor/libressl/tests/testdsa.sh +57 -0
- data/vendor/libressl/tests/testenc.bat +85 -0
- data/vendor/libressl/tests/testenc.sh +93 -0
- data/vendor/libressl/tests/testrsa.bat +47 -0
- data/vendor/libressl/tests/testrsa.sh +57 -0
- data/vendor/libressl/tests/testssl.bat +171 -0
- data/vendor/libressl/tests/tlstest.bat +27 -0
- data/vendor/libressl/tests/tlstest.sh +28 -0
- data/vendor/libressl/tls/CMakeLists.txt +125 -0
- data/vendor/libressl/tls/Makefile.am +76 -0
- data/vendor/libressl/tls/compat/ftruncate.c +17 -0
- data/vendor/libressl/tls/compat/pread.c +29 -0
- data/vendor/libressl/tls/compat/pwrite.c +29 -0
- data/vendor/libressl/update.sh +460 -0
- data/vendor/liburing/.github/workflows/ci.yml +8 -0
- data/vendor/liburing/configure +23 -2
- data/vendor/liburing/examples/helpers.c +1 -1
- data/vendor/liburing/examples/helpers.h +1 -1
- data/vendor/liburing/examples/reg-wait.c +3 -3
- data/vendor/liburing/examples/zcrx.c +5 -5
- data/vendor/liburing/liburing.spec +1 -1
- data/vendor/liburing/src/include/liburing/io_uring.h +16 -0
- data/vendor/liburing/src/include/liburing.h +20 -4
- data/vendor/liburing/src/lib.h +2 -4
- data/vendor/liburing/src/liburing-ffi.map +7 -0
- data/vendor/liburing/src/liburing.map +7 -0
- data/vendor/liburing/src/register.c +5 -0
- data/vendor/liburing/src/sanitize.c +5 -4
- data/vendor/liburing/src/setup.c +43 -28
- data/vendor/liburing/test/Makefile +7 -0
- data/vendor/liburing/test/cmd-discard.c +2 -2
- data/vendor/liburing/test/evfd-short-read.c +84 -0
- data/vendor/liburing/test/fdinfo-sqpoll.c +117 -0
- data/vendor/liburing/test/fdinfo.c +1 -1
- data/vendor/liburing/test/fixed-buf-merge.c +2 -2
- data/vendor/liburing/test/futex-kill.c +135 -0
- data/vendor/liburing/test/helpers.c +1 -1
- data/vendor/liburing/test/helpers.h +1 -1
- data/vendor/liburing/test/init-mem.c +50 -12
- data/vendor/liburing/test/io_uring_passthrough.c +25 -6
- data/vendor/liburing/test/msg-ring.c +123 -9
- data/vendor/liburing/test/recv-bundle-short-ooo.c +16 -1
- data/vendor/liburing/test/recv-inc-ooo.c +411 -0
- data/vendor/liburing/test/recv-mshot-fair.c +513 -0
- data/vendor/liburing/test/reg-wait.c +14 -14
- data/vendor/liburing/test/send-zerocopy.c +4 -4
- data/vendor/liburing/test/timerfd-short-read.c +81 -0
- data/vendor/liburing/test/timestamp.c +382 -0
- data/vendor/liburing/test/zcrx.c +22 -22
- metadata +222 -2
@@ -0,0 +1,67 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2016 Kinichiro Inoguchi
|
3
|
+
#
|
4
|
+
# Permission to use, copy, modify, and distribute this software for any
|
5
|
+
# purpose with or without fee is hereby granted, provided that the above
|
6
|
+
# copyright notice and this permission notice appear in all copies.
|
7
|
+
#
|
8
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
|
16
|
+
if(BUILD_NC)
|
17
|
+
|
18
|
+
set(
|
19
|
+
NC_SRC
|
20
|
+
atomicio.c
|
21
|
+
netcat.c
|
22
|
+
socks.c
|
23
|
+
compat/socket.c
|
24
|
+
)
|
25
|
+
|
26
|
+
check_function_exists(b64_ntop HAVE_B64_NTOP)
|
27
|
+
if(HAVE_B64_NTOP)
|
28
|
+
add_definitions(-DHAVE_B64_NTOP)
|
29
|
+
else()
|
30
|
+
set(NC_SRC ${NC_SRC} compat/base64.c)
|
31
|
+
endif()
|
32
|
+
|
33
|
+
check_function_exists(accept4 HAVE_ACCEPT4)
|
34
|
+
if(HAVE_ACCEPT4)
|
35
|
+
add_definitions(-DHAVE_ACCEPT4)
|
36
|
+
else()
|
37
|
+
set(NC_SRC ${NC_SRC} compat/accept4.c)
|
38
|
+
endif()
|
39
|
+
|
40
|
+
check_symbol_exists(readpassphrase "readpassphrase.h" HAVE_READPASSPHRASE)
|
41
|
+
if(HAVE_READPASSPHRASE)
|
42
|
+
add_definitions(-DHAVE_READPASSPHRASE)
|
43
|
+
else()
|
44
|
+
set(NC_SRC ${NC_SRC} compat/readpassphrase.c)
|
45
|
+
endif()
|
46
|
+
|
47
|
+
add_definitions(-DDEFAULT_CA_FILE=\"${OPENSSLDIR}/cert.pem\")
|
48
|
+
|
49
|
+
add_executable(nc ${NC_SRC})
|
50
|
+
target_include_directories(nc
|
51
|
+
PRIVATE
|
52
|
+
.
|
53
|
+
./compat
|
54
|
+
../../include/compat
|
55
|
+
PUBLIC
|
56
|
+
../../include
|
57
|
+
${CMAKE_BINARY_DIR}/include)
|
58
|
+
target_link_libraries(nc ${LIBTLS_LIBS} compat_obj)
|
59
|
+
|
60
|
+
if(ENABLE_NC)
|
61
|
+
if(ENABLE_LIBRESSL_INSTALL)
|
62
|
+
install(TARGETS nc DESTINATION ${CMAKE_INSTALL_BINDIR})
|
63
|
+
install(FILES nc.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
64
|
+
endif(ENABLE_LIBRESSL_INSTALL)
|
65
|
+
endif()
|
66
|
+
|
67
|
+
endif()
|
@@ -0,0 +1,64 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2015 Brent Cook
|
3
|
+
#
|
4
|
+
# Permission to use, copy, modify, and distribute this software for any
|
5
|
+
# purpose with or without fee is hereby granted, provided that the above
|
6
|
+
# copyright notice and this permission notice appear in all copies.
|
7
|
+
#
|
8
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
|
16
|
+
include $(top_srcdir)/Makefile.am.common
|
17
|
+
|
18
|
+
-include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk
|
19
|
+
-include $(abs_top_builddir)/ssl/libssl_la_objects.mk
|
20
|
+
-include $(abs_top_builddir)/tls/libtls_la_objects.mk
|
21
|
+
|
22
|
+
if BUILD_NC
|
23
|
+
|
24
|
+
if ENABLE_NC
|
25
|
+
bin_PROGRAMS = nc
|
26
|
+
dist_man_MANS = nc.1
|
27
|
+
else
|
28
|
+
noinst_PROGRAMS = nc
|
29
|
+
endif
|
30
|
+
|
31
|
+
EXTRA_DIST = nc.1
|
32
|
+
EXTRA_DIST += CMakeLists.txt
|
33
|
+
|
34
|
+
nc_LDADD = $(libcrypto_la_objects)
|
35
|
+
nc_LDADD += $(libcompat_la_objects)
|
36
|
+
nc_LDADD += $(libcompatnoopt_la_objects)
|
37
|
+
nc_LDADD += $(libssl_la_objects)
|
38
|
+
nc_LDADD += $(libtls_la_objects)
|
39
|
+
|
40
|
+
nc_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
|
41
|
+
|
42
|
+
AM_CPPFLAGS += -I$(top_srcdir)/apps/nc/compat
|
43
|
+
|
44
|
+
nc_SOURCES = atomicio.c
|
45
|
+
nc_SOURCES += netcat.c
|
46
|
+
nc_SOURCES += socks.c
|
47
|
+
noinst_HEADERS = atomicio.h
|
48
|
+
noinst_HEADERS += compat/sys/socket.h
|
49
|
+
|
50
|
+
nc_SOURCES += compat/socket.c
|
51
|
+
|
52
|
+
if !HAVE_B64_NTOP
|
53
|
+
nc_SOURCES += compat/base64.c
|
54
|
+
endif
|
55
|
+
|
56
|
+
if !HAVE_ACCEPT4
|
57
|
+
nc_SOURCES += compat/accept4.c
|
58
|
+
endif
|
59
|
+
|
60
|
+
if !HAVE_READPASSPHRASE
|
61
|
+
nc_SOURCES += compat/readpassphrase.c
|
62
|
+
endif
|
63
|
+
|
64
|
+
endif
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#include <sys/socket.h>
|
2
|
+
#include <fcntl.h>
|
3
|
+
|
4
|
+
int
|
5
|
+
accept4(int s, struct sockaddr *addr, socklen_t *addrlen, int flags)
|
6
|
+
{
|
7
|
+
int rets = accept(s, addr, addrlen);
|
8
|
+
if (rets == -1)
|
9
|
+
return s;
|
10
|
+
|
11
|
+
if (flags & SOCK_CLOEXEC) {
|
12
|
+
flags = fcntl(s, F_GETFD);
|
13
|
+
fcntl(rets, F_SETFD, flags | FD_CLOEXEC);
|
14
|
+
}
|
15
|
+
|
16
|
+
return rets;
|
17
|
+
}
|
@@ -0,0 +1,205 @@
|
|
1
|
+
/* $OpenBSD: readpassphrase.c,v 1.22 2010/01/13 10:20:54 dtucker Exp $ */
|
2
|
+
|
3
|
+
/*
|
4
|
+
* Copyright (c) 2000-2002, 2007 Todd C. Miller <Todd.Miller@courtesan.com>
|
5
|
+
*
|
6
|
+
* Permission to use, copy, modify, and distribute this software for any
|
7
|
+
* purpose with or without fee is hereby granted, provided that the above
|
8
|
+
* copyright notice and this permission notice appear in all copies.
|
9
|
+
*
|
10
|
+
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
11
|
+
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
12
|
+
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
13
|
+
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
14
|
+
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
15
|
+
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
16
|
+
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
17
|
+
*
|
18
|
+
* Sponsored in part by the Defense Advanced Research Projects
|
19
|
+
* Agency (DARPA) and Air Force Research Laboratory, Air Force
|
20
|
+
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
|
21
|
+
*/
|
22
|
+
|
23
|
+
/* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */
|
24
|
+
|
25
|
+
#include <termios.h>
|
26
|
+
#include <signal.h>
|
27
|
+
#include <ctype.h>
|
28
|
+
#include <fcntl.h>
|
29
|
+
#include <errno.h>
|
30
|
+
#include <string.h>
|
31
|
+
#include <unistd.h>
|
32
|
+
|
33
|
+
#include <readpassphrase.h>
|
34
|
+
|
35
|
+
#ifndef _PATH_TTY
|
36
|
+
# define _PATH_TTY "/dev/tty"
|
37
|
+
#endif
|
38
|
+
|
39
|
+
#ifdef TCSASOFT
|
40
|
+
# define _T_FLUSH (TCSAFLUSH|TCSASOFT)
|
41
|
+
#else
|
42
|
+
# define _T_FLUSH (TCSAFLUSH)
|
43
|
+
#endif
|
44
|
+
|
45
|
+
/* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */
|
46
|
+
#if !defined(_POSIX_VDISABLE) && defined(VDISABLE)
|
47
|
+
# define _POSIX_VDISABLE VDISABLE
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#ifndef _NSIG
|
51
|
+
# ifdef NSIG
|
52
|
+
# define _NSIG NSIG
|
53
|
+
# else
|
54
|
+
# define _NSIG 128
|
55
|
+
# endif
|
56
|
+
#endif
|
57
|
+
|
58
|
+
static volatile sig_atomic_t signo[_NSIG];
|
59
|
+
|
60
|
+
static void handler(int);
|
61
|
+
|
62
|
+
char *
|
63
|
+
readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
|
64
|
+
{
|
65
|
+
ssize_t bytes_written = 0;
|
66
|
+
ssize_t nr;
|
67
|
+
int input, output, save_errno, i, need_restart;
|
68
|
+
char ch, *p, *end;
|
69
|
+
struct termios term, oterm;
|
70
|
+
struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
|
71
|
+
struct sigaction savetstp, savettin, savettou, savepipe;
|
72
|
+
|
73
|
+
/* I suppose we could alloc on demand in this case (XXX). */
|
74
|
+
if (bufsiz == 0) {
|
75
|
+
errno = EINVAL;
|
76
|
+
return(NULL);
|
77
|
+
}
|
78
|
+
|
79
|
+
restart:
|
80
|
+
for (i = 0; i < _NSIG; i++)
|
81
|
+
signo[i] = 0;
|
82
|
+
nr = -1;
|
83
|
+
save_errno = 0;
|
84
|
+
need_restart = 0;
|
85
|
+
/*
|
86
|
+
* Read and write to /dev/tty if available. If not, read from
|
87
|
+
* stdin and write to stderr unless a tty is required.
|
88
|
+
*/
|
89
|
+
if ((flags & RPP_STDIN) ||
|
90
|
+
(input = output = open(_PATH_TTY, O_RDWR)) == -1) {
|
91
|
+
if (flags & RPP_REQUIRE_TTY) {
|
92
|
+
errno = ENOTTY;
|
93
|
+
return(NULL);
|
94
|
+
}
|
95
|
+
input = STDIN_FILENO;
|
96
|
+
output = STDERR_FILENO;
|
97
|
+
}
|
98
|
+
|
99
|
+
/*
|
100
|
+
* Catch signals that would otherwise cause the user to end
|
101
|
+
* up with echo turned off in the shell. Don't worry about
|
102
|
+
* things like SIGXCPU and SIGVTALRM for now.
|
103
|
+
*/
|
104
|
+
sigemptyset(&sa.sa_mask);
|
105
|
+
sa.sa_flags = 0; /* don't restart system calls */
|
106
|
+
sa.sa_handler = handler;
|
107
|
+
(void)sigaction(SIGALRM, &sa, &savealrm);
|
108
|
+
(void)sigaction(SIGHUP, &sa, &savehup);
|
109
|
+
(void)sigaction(SIGINT, &sa, &saveint);
|
110
|
+
(void)sigaction(SIGPIPE, &sa, &savepipe);
|
111
|
+
(void)sigaction(SIGQUIT, &sa, &savequit);
|
112
|
+
(void)sigaction(SIGTERM, &sa, &saveterm);
|
113
|
+
(void)sigaction(SIGTSTP, &sa, &savetstp);
|
114
|
+
(void)sigaction(SIGTTIN, &sa, &savettin);
|
115
|
+
(void)sigaction(SIGTTOU, &sa, &savettou);
|
116
|
+
|
117
|
+
/* Turn off echo if possible. */
|
118
|
+
if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) {
|
119
|
+
memcpy(&term, &oterm, sizeof(term));
|
120
|
+
if (!(flags & RPP_ECHO_ON))
|
121
|
+
term.c_lflag &= ~(ECHO | ECHONL);
|
122
|
+
#ifdef VSTATUS
|
123
|
+
if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
|
124
|
+
term.c_cc[VSTATUS] = _POSIX_VDISABLE;
|
125
|
+
#endif
|
126
|
+
(void)tcsetattr(input, _T_FLUSH, &term);
|
127
|
+
} else {
|
128
|
+
memset(&term, 0, sizeof(term));
|
129
|
+
term.c_lflag |= ECHO;
|
130
|
+
memset(&oterm, 0, sizeof(oterm));
|
131
|
+
oterm.c_lflag |= ECHO;
|
132
|
+
}
|
133
|
+
|
134
|
+
/* No I/O if we are already backgrounded. */
|
135
|
+
if (signo[SIGTTOU] != 1 && signo[SIGTTIN] != 1) {
|
136
|
+
if (!(flags & RPP_STDIN))
|
137
|
+
bytes_written = write(output, prompt, strlen(prompt));
|
138
|
+
end = buf + bufsiz - 1;
|
139
|
+
p = buf;
|
140
|
+
while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') {
|
141
|
+
if (p < end) {
|
142
|
+
if ((flags & RPP_SEVENBIT))
|
143
|
+
ch &= 0x7f;
|
144
|
+
if (isalpha((unsigned char)ch)) {
|
145
|
+
if ((flags & RPP_FORCELOWER))
|
146
|
+
ch = (char)tolower((unsigned char)ch);
|
147
|
+
if ((flags & RPP_FORCEUPPER))
|
148
|
+
ch = (char)toupper((unsigned char)ch);
|
149
|
+
}
|
150
|
+
*p++ = ch;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
*p = '\0';
|
154
|
+
save_errno = errno;
|
155
|
+
if (!(term.c_lflag & ECHO))
|
156
|
+
bytes_written = write(output, "\n", 1);
|
157
|
+
}
|
158
|
+
|
159
|
+
(void) bytes_written;
|
160
|
+
|
161
|
+
/* Restore old terminal settings and signals. */
|
162
|
+
if (memcmp(&term, &oterm, sizeof(term)) != 0) {
|
163
|
+
while (tcsetattr(input, _T_FLUSH, &oterm) == -1 &&
|
164
|
+
errno == EINTR)
|
165
|
+
continue;
|
166
|
+
}
|
167
|
+
(void)sigaction(SIGALRM, &savealrm, NULL);
|
168
|
+
(void)sigaction(SIGHUP, &savehup, NULL);
|
169
|
+
(void)sigaction(SIGINT, &saveint, NULL);
|
170
|
+
(void)sigaction(SIGQUIT, &savequit, NULL);
|
171
|
+
(void)sigaction(SIGPIPE, &savepipe, NULL);
|
172
|
+
(void)sigaction(SIGTERM, &saveterm, NULL);
|
173
|
+
(void)sigaction(SIGTSTP, &savetstp, NULL);
|
174
|
+
(void)sigaction(SIGTTIN, &savettin, NULL);
|
175
|
+
(void)sigaction(SIGTTOU, &savettou, NULL);
|
176
|
+
if (input != STDIN_FILENO)
|
177
|
+
(void)close(input);
|
178
|
+
|
179
|
+
/*
|
180
|
+
* If we were interrupted by a signal, resend it to ourselves
|
181
|
+
* now that we have restored the signal handlers.
|
182
|
+
*/
|
183
|
+
for (i = 0; i < _NSIG; i++) {
|
184
|
+
if (signo[i]) {
|
185
|
+
kill(getpid(), i);
|
186
|
+
switch (i) {
|
187
|
+
case SIGTSTP:
|
188
|
+
case SIGTTIN:
|
189
|
+
case SIGTTOU:
|
190
|
+
need_restart = 1;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
}
|
194
|
+
if (need_restart)
|
195
|
+
goto restart;
|
196
|
+
|
197
|
+
if (save_errno)
|
198
|
+
errno = save_errno;
|
199
|
+
return(nr == -1 ? NULL : buf);
|
200
|
+
}
|
201
|
+
|
202
|
+
static void handler(int s)
|
203
|
+
{
|
204
|
+
signo[s] = 1;
|
205
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#define SOCKET_FLAGS_PRIV
|
2
|
+
|
3
|
+
#include <sys/socket.h>
|
4
|
+
|
5
|
+
#ifdef NEED_SOCKET_FLAGS
|
6
|
+
|
7
|
+
#include <fcntl.h>
|
8
|
+
|
9
|
+
int
|
10
|
+
_socket(int domain, int type, int protocol)
|
11
|
+
{
|
12
|
+
int s = socket(domain, type & ~(SOCK_CLOEXEC | SOCK_NONBLOCK), protocol);
|
13
|
+
int flags;
|
14
|
+
if (s == -1)
|
15
|
+
return s;
|
16
|
+
|
17
|
+
if (type & SOCK_CLOEXEC) {
|
18
|
+
flags = fcntl(s, F_GETFD);
|
19
|
+
fcntl(s, F_SETFD, flags | FD_CLOEXEC);
|
20
|
+
}
|
21
|
+
|
22
|
+
if (type & SOCK_NONBLOCK) {
|
23
|
+
flags = fcntl(s, F_GETFL);
|
24
|
+
fcntl(s, F_SETFL, flags | O_NONBLOCK);
|
25
|
+
}
|
26
|
+
return s;
|
27
|
+
}
|
28
|
+
|
29
|
+
#endif
|
@@ -0,0 +1,30 @@
|
|
1
|
+
/*
|
2
|
+
* Public domain
|
3
|
+
* sys/socket.h compatibility shim
|
4
|
+
*/
|
5
|
+
|
6
|
+
#ifndef _WIN32
|
7
|
+
#include_next <sys/socket.h>
|
8
|
+
|
9
|
+
#if defined(NEED_SOCKET_FLAGS)
|
10
|
+
int _socket(int domain, int type, int protocol);
|
11
|
+
#ifndef SOCKET_FLAGS_PRIV
|
12
|
+
#define socket(d, t, p) _socket(d, t, p)
|
13
|
+
#endif
|
14
|
+
#endif
|
15
|
+
|
16
|
+
#ifndef SOCK_NONBLOCK
|
17
|
+
#define SOCK_NONBLOCK 0x4000 /* set O_NONBLOCK */
|
18
|
+
#endif
|
19
|
+
|
20
|
+
#ifndef SOCK_CLOEXEC
|
21
|
+
#define SOCK_CLOEXEC 0x8000 /* set FD_CLOEXEC */
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#ifndef HAVE_ACCEPT4
|
25
|
+
int accept4(int s, struct sockaddr *addr, socklen_t *addrlen, int flags);
|
26
|
+
#endif
|
27
|
+
|
28
|
+
#else
|
29
|
+
#include <win32netcompat.h>
|
30
|
+
#endif
|
@@ -0,0 +1,44 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2017 Brent Cook
|
3
|
+
#
|
4
|
+
# Permission to use, copy, modify, and distribute this software for any
|
5
|
+
# purpose with or without fee is hereby granted, provided that the above
|
6
|
+
# copyright notice and this permission notice appear in all copies.
|
7
|
+
#
|
8
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
|
16
|
+
set(
|
17
|
+
OCSPCHECK_SRC
|
18
|
+
http.c
|
19
|
+
ocspcheck.c
|
20
|
+
)
|
21
|
+
|
22
|
+
check_function_exists(memmem HAVE_MEMMEM)
|
23
|
+
if(HAVE_MEMMEM)
|
24
|
+
add_definitions(-DHAVE_MEMMEM)
|
25
|
+
else()
|
26
|
+
set(OCSPCHECK_SRC ${OCSPCHECK_SRC} compat/memmem.c)
|
27
|
+
endif()
|
28
|
+
|
29
|
+
add_definitions(-DDEFAULT_CA_FILE=\"${OPENSSLDIR}/cert.pem\")
|
30
|
+
|
31
|
+
add_executable(ocspcheck ${OCSPCHECK_SRC})
|
32
|
+
target_include_directories(ocspcheck
|
33
|
+
PRIVATE
|
34
|
+
../../include/compat
|
35
|
+
PUBLIC
|
36
|
+
../../include
|
37
|
+
${CMAKE_BINARY_DIR}/include)
|
38
|
+
target_link_libraries(ocspcheck tls ${OPENSSL_LIBS} compat_obj tls_compat_obj)
|
39
|
+
|
40
|
+
if(ENABLE_LIBRESSL_INSTALL)
|
41
|
+
install(TARGETS ocspcheck DESTINATION ${CMAKE_INSTALL_BINDIR})
|
42
|
+
install(FILES ocspcheck.8 DESTINATION ${CMAKE_INSTALL_MANDIR}/man8)
|
43
|
+
|
44
|
+
endif(ENABLE_LIBRESSL_INSTALL)
|
@@ -0,0 +1,45 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2017 Brent Cook
|
3
|
+
#
|
4
|
+
# Permission to use, copy, modify, and distribute this software for any
|
5
|
+
# purpose with or without fee is hereby granted, provided that the above
|
6
|
+
# copyright notice and this permission notice appear in all copies.
|
7
|
+
#
|
8
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
|
16
|
+
include $(top_srcdir)/Makefile.am.common
|
17
|
+
|
18
|
+
-include $(abs_top_builddir)/crypto/libcrypto_la_objects.mk
|
19
|
+
-include $(abs_top_builddir)/ssl/libssl_la_objects.mk
|
20
|
+
-include $(abs_top_builddir)/tls/libtls_la_objects.mk
|
21
|
+
|
22
|
+
if !ENABLE_LIBTLS_ONLY
|
23
|
+
bin_PROGRAMS = ocspcheck
|
24
|
+
dist_man_MANS = ocspcheck.8
|
25
|
+
else
|
26
|
+
noinst_PROGRAMS = ocspcheck
|
27
|
+
endif
|
28
|
+
|
29
|
+
EXTRA_DIST = ocspcheck.8
|
30
|
+
EXTRA_DIST += CMakeLists.txt
|
31
|
+
|
32
|
+
ocspcheck_LDADD = $(libcrypto_la_objects)
|
33
|
+
ocspcheck_LDADD += $(libcompat_la_objects)
|
34
|
+
ocspcheck_LDADD += $(libcompatnoopt_la_objects)
|
35
|
+
ocspcheck_LDADD += $(libssl_la_objects)
|
36
|
+
ocspcheck_LDADD += $(libtls_la_objects)
|
37
|
+
ocspcheck_LDADD += $(PLATFORM_LDADD) $(PROG_LDADD)
|
38
|
+
|
39
|
+
ocspcheck_SOURCES = http.c
|
40
|
+
ocspcheck_SOURCES += ocspcheck.c
|
41
|
+
noinst_HEADERS = http.h
|
42
|
+
|
43
|
+
if !HAVE_MEMMEM
|
44
|
+
ocspcheck_SOURCES += compat/memmem.c
|
45
|
+
endif
|
File without changes
|
@@ -0,0 +1,97 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2016 Kinichiro Inoguchi
|
3
|
+
#
|
4
|
+
# Permission to use, copy, modify, and distribute this software for any
|
5
|
+
# purpose with or without fee is hereby granted, provided that the above
|
6
|
+
# copyright notice and this permission notice appear in all copies.
|
7
|
+
#
|
8
|
+
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
9
|
+
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
10
|
+
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
11
|
+
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
12
|
+
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
13
|
+
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
14
|
+
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
15
|
+
|
16
|
+
set(
|
17
|
+
OPENSSL_SRC
|
18
|
+
apps.c
|
19
|
+
asn1pars.c
|
20
|
+
ca.c
|
21
|
+
ciphers.c
|
22
|
+
crl.c
|
23
|
+
crl2p7.c
|
24
|
+
cms.c
|
25
|
+
dgst.c
|
26
|
+
dh.c
|
27
|
+
dhparam.c
|
28
|
+
dsa.c
|
29
|
+
dsaparam.c
|
30
|
+
ec.c
|
31
|
+
ecparam.c
|
32
|
+
enc.c
|
33
|
+
errstr.c
|
34
|
+
gendh.c
|
35
|
+
gendsa.c
|
36
|
+
genpkey.c
|
37
|
+
genrsa.c
|
38
|
+
ocsp.c
|
39
|
+
openssl.c
|
40
|
+
passwd.c
|
41
|
+
pkcs12.c
|
42
|
+
pkcs7.c
|
43
|
+
pkcs8.c
|
44
|
+
pkey.c
|
45
|
+
pkeyparam.c
|
46
|
+
pkeyutl.c
|
47
|
+
prime.c
|
48
|
+
rand.c
|
49
|
+
req.c
|
50
|
+
rsa.c
|
51
|
+
rsautl.c
|
52
|
+
s_cb.c
|
53
|
+
s_client.c
|
54
|
+
s_server.c
|
55
|
+
s_socket.c
|
56
|
+
s_time.c
|
57
|
+
sess_id.c
|
58
|
+
smime.c
|
59
|
+
speed.c
|
60
|
+
ts.c
|
61
|
+
verify.c
|
62
|
+
version.c
|
63
|
+
x509.c
|
64
|
+
)
|
65
|
+
|
66
|
+
if(UNIX)
|
67
|
+
set(OPENSSL_SRC ${OPENSSL_SRC} apps_posix.c)
|
68
|
+
set(OPENSSL_SRC ${OPENSSL_SRC} certhash.c)
|
69
|
+
endif()
|
70
|
+
|
71
|
+
if(WIN32)
|
72
|
+
set(OPENSSL_SRC ${OPENSSL_SRC} apps_win.c)
|
73
|
+
set(OPENSSL_SRC ${OPENSSL_SRC} certhash_win.c)
|
74
|
+
set(OPENSSL_SRC ${OPENSSL_SRC} compat/poll_win.c)
|
75
|
+
endif()
|
76
|
+
|
77
|
+
if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
78
|
+
check_function_exists(clock_gettime HAVE_CLOCK_GETTIME)
|
79
|
+
if(NOT HAVE_CLOCK_GETTIME)
|
80
|
+
set(OPENSSL_SRC ${OPENSSL_SRC} compat/clock_gettime_osx.c)
|
81
|
+
endif()
|
82
|
+
endif()
|
83
|
+
|
84
|
+
add_executable(openssl ${OPENSSL_SRC})
|
85
|
+
target_include_directories(openssl
|
86
|
+
PRIVATE
|
87
|
+
.
|
88
|
+
../../include/compat
|
89
|
+
PUBLIC
|
90
|
+
../../include
|
91
|
+
${CMAKE_BINARY_DIR}/include)
|
92
|
+
target_link_libraries(openssl ${OPENSSL_LIBS} compat_obj)
|
93
|
+
|
94
|
+
if(ENABLE_LIBRESSL_INSTALL)
|
95
|
+
install(TARGETS openssl DESTINATION ${CMAKE_INSTALL_BINDIR})
|
96
|
+
install(FILES openssl.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
97
|
+
endif(ENABLE_LIBRESSL_INSTALL)
|