1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
#
# Copyright (c) 2002, 2007 SuSE Linux AG, Germany
#
# Author: Thorsten Kukuk <kukuk@suse.de>
#
AUTOMAKE_OPTIONS = 1.14 gnits dist-bzip2 dist-xz \
filename-length-max=99
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = $(WARN_CFLAGS)
@VALGRIND_CHECK_RULES@
TEST_EXTENSIONS = .sh
EXTRA_DIST = \
LICENSING THANKS \
crypt.h.in.in libcrypt.map.in libcrypt.minver \
gen-map.awk gen-vers.awk gen-crypt-h.awk \
gen-hashes.awk sel-hashes.awk hashes.lst
notrans_dist_man3_MANS = \
crypt.3 crypt_r.3 crypt_ra.3 crypt_rn.3 \
crypt_checksalt.3 crypt_gensalt.3 crypt_gensalt_ra.3 \
crypt_gensalt_rn.3
notrans_dist_man5_MANS = crypt.5
nodist_include_HEADERS = crypt.h
nodist_noinst_HEADERS = crypt-hashes.h crypt-symbol-vers.h
noinst_HEADERS = \
alg-des.h alg-gost3411-2012-const.h alg-gost3411-2012-core.h \
alg-gost3411-2012-hmac.h alg-gost3411-2012-precalc.h \
alg-gost3411-2012-ref.h alg-hmac-sha1.h alg-md4.h alg-md5.h \
alg-sha1.h alg-sha256.h alg-sha512.h alg-yescrypt.h \
alg-yescrypt-sysendian.h byteorder.h crypt-obsolete.h \
crypt-port.h test-des-cases.h
noinst_PROGRAMS = gen-des-tables
lib_LTLIBRARIES = libcrypt.la
libcrypt_la_SOURCES = \
alg-des.c alg-des-tables.c alg-gost3411-2012-core.c \
alg-gost3411-2012-hmac.c alg-hmac-sha1.c alg-md4.c alg-md5.c \
alg-sha1.c alg-sha256.c alg-sha512.c alg-yescrypt-opt.c \
alg-yescrypt-common.c crypt.c crypt-bcrypt.c crypt-des.c \
crypt-gensalt-static.c crypt-gensalt.c crypt-gost-yescrypt.c \
crypt-md5.c crypt-nthash.c crypt-pbkdf1-sha1.c crypt-scrypt.c \
crypt-sha256.c crypt-sha512.c crypt-static.c crypt-sunmd5.c \
crypt-yescrypt.c randombytes.c crypt-common.c
EXTRA_DIST += alg-yescrypt-platform.c
pkgconfig_DATA = libxcrypt.pc
# Install libcrypt.pc symlink to libxcrypt.pc file.
phony_targets = \
install-data-hook-pkgconfig uninstall-hook-pkgconfig
install-data-hook: install-data-hook-pkgconfig
uninstall_hook_targets = \
uninstall-hook-pkgconfig
install-data-hook-pkgconfig:
cd $(DESTDIR)$(pkgconfigdir) && \
$(LN_S) libxcrypt.pc libcrypt.pc
uninstall-hook-pkgconfig:
-rm -f $(DESTDIR)$(pkgconfigdir)/libcrypt.pc
# Build libcrypt.so.2 if obsolete APIs are excluded, libcrypt.so.1 otherwise.
if ENABLE_OBSOLETE_API
libcrypt_la_VERSION = 2:0:1
else
libcrypt_la_VERSION = 2:0:0
endif
libcrypt_la_LDFLAGS = -version-info $(libcrypt_la_VERSION)
if HAVE_VSCRIPT
libcrypt_la_LDFLAGS += $(VSCRIPT_LDFLAGS),$(builddir)/libcrypt.map
endif
libcrypt_la_LDFLAGS += $(UNDEF_FLAG) $(TEXT_RELOC_FLAG)
libcrypt_la_CPPFLAGS = $(AM_CPPFLAGS) -DIN_LIBCRYPT
CONFIG_STATUS_DEPENDENCIES = libcrypt.minver
EXTRA_libcrypt_la_DEPENDENCIES = libcrypt.map
CLEANFILES = Makefile.deps.T Makefile.deps \
libcrypt.map libcrypt.map.T \
crypt-symbol-vers.h crypt-symbol-vers.h.T \
crypt-hashes.h crypt-hashes.h.T \
crypt.h crypt.h.T *.gcda *.gcno
DISTCLEANFILES = .deps/*.Plo
# Empty target to have needed headers pre-generated before any other target.
Makefile.deps: crypt.h
$(AM_V_GEN)LC_ALL=C echo "# Deps" > Makefile.deps.T
$(AM_V_at)mv -f Makefile.deps.T Makefile.deps
libcrypt.map: libcrypt.map.in gen-map.awk Makefile
$(AM_V_GEN)LC_ALL=C $(AWK) \
-v SYMVER_MIN=$(SYMVER_MIN) \
-v SYMVER_FLOOR=$(SYMVER_FLOOR) \
-v COMPAT_ABI=$(COMPAT_ABI) \
-f $(srcdir)/gen-map.awk $(srcdir)/libcrypt.map.in > libcrypt.map.T
$(AM_V_at)mv -f libcrypt.map.T libcrypt.map
crypt-symbol-vers.h: libcrypt.map.in gen-vers.awk Makefile
$(AM_V_GEN)LC_ALL=C $(AWK) \
-v SYMVER_MIN=$(SYMVER_MIN) \
-v SYMVER_FLOOR=$(SYMVER_FLOOR) \
-v COMPAT_ABI=$(COMPAT_ABI) \
-f $(srcdir)/gen-vers.awk \
$(srcdir)/libcrypt.map.in > crypt-symbol-vers.h.T
$(AM_V_at)mv -f crypt-symbol-vers.h.T crypt-symbol-vers.h
crypt.h: crypt.h.in crypt-hashes.h crypt-symbol-vers.h gen-crypt-h.awk config.h
$(AM_V_GEN)LC_ALL=C $(AWK) \
-f $(srcdir)/gen-crypt-h.awk config.h $(builddir)/crypt.h.in \
> crypt.h.T
$(AM_V_GEN)LC_ALL=C \
$(GREP) -q "#define HASH_ALGORITHM_DEFAULT" crypt-hashes.h && \
$(SED) -i -e "s/@DEFAULT_PREFIX_ENABLED@/1/g" crypt.h.T || \
$(SED) -i -e "s/@DEFAULT_PREFIX_ENABLED@/0/g" crypt.h.T
$(AM_V_at)mv -f crypt.h.T crypt.h
crypt-hashes.h: hashes.lst gen-hashes.awk Makefile
$(AM_V_GEN)LC_ALL=C $(AWK) -f $(srcdir)/gen-hashes.awk \
-v ENABLED_HASHES=$(hashes_enabled) \
$(srcdir)/hashes.lst > crypt-hashes.h.T
$(AM_V_at)mv -f crypt-hashes.h.T crypt-hashes.h
if ENABLE_COMPAT_SUSE
# When we are being binary compatible, also install symbolic links to
# mimic SUSE's libowcrypt; any program that uses -lowcrypt in its
# build, or already has a NEEDED entry for libowcrypt.so.1, will be
# redirected to libcrypt. The OW_CRYPT_1.0 symbol versions are already
# present in libcrypt.so.1.
#
# Caution: this hardwires the expected (so)names of the shared
# libraries involved, libcrypt.so.1 and libowcrypt.so.1. (We should
# be able to get away with this because in any circumstance where the
# soname of libcrypt isn't libcrypt.so.1, ENABLE_OBSOLETE_API should
# be automatically turned off, and as best I can tell, SUSE only ever
# shipped libowcrypt.so.1.)
if ENABLE_OBSOLETE_API
if ENABLE_STATIC
phony_targets += \
install-exec-hook-libstatic uninstall-hook-libstatic
install-exec-hook: install-exec-hook-libstatic
uninstall_hook_targets += \
uninstall-hook-libstatic
install-exec-hook-libstatic:
cd $(DESTDIR)$(libdir) && \
$(LN_S) libcrypt.a libowcrypt.a
uninstall-hook-libstatic:
-rm -f $(DESTDIR)$(libdir)/libowcrypt.a
endif
if ENABLE_SHARED
phony_targets += \
install-exec-hook-libshared uninstall-hook-libshared
install-exec-hook: install-exec-hook-libshared
uninstall_hook_targets += \
uninstall-hook-libshared
install-exec-hook-libshared:
cd $(DESTDIR)$(libdir) && \
$(LN_S) libcrypt.so libowcrypt.so && \
$(LN_S) libcrypt.so.1 libowcrypt.so.1
uninstall-hook-libshared:
-rm -f $(DESTDIR)$(libdir)/libowcrypt.so \
$(DESTDIR)$(libdir)/libowcrypt.so.1
endif
endif
endif
check_PROGRAMS = \
test-alg-des test-alg-gost3411-2012 test-alg-gost3411-2012-hmac \
test-alg-hmac-sha1 test-alg-md4 test-alg-md5 \
test-alg-pbkdf-hmac-sha256 test-alg-sha1 test-alg-sha256 \
test-alg-sha512 test-checksalt test-crypt-bcrypt test-crypt-des \
test-crypt-gost-yescrypt test-crypt-md5 test-crypt-nthash \
test-crypt-pbkdf1-sha1 test-crypt-scrypt test-crypt-sha256 \
test-crypt-sha512 test-crypt-sunmd5 test-crypt-yescrypt \
test-byteorder test-badsalt test-badsetting test-gensalt \
test-crypt-badargs test-short-outbuf test-compile-strong-alias \
test-getrandom-interface test-getrandom-fallbacks
if ENABLE_OBSOLETE_API
libcrypt_la_SOURCES += crypt-des-obsolete.c
check_PROGRAMS += test-des-obsolete test-des-obsolete_r
endif
TESTS = $(check_PROGRAMS)
if ENABLE_STATIC
TESTS += test-symbols-static.sh
if HAVE_CPP_dD
TESTS += test-symbols-renames.sh
endif
endif
if ENABLE_OBSOLETE_API
TESTS += test-symbols-compat.sh
endif
EXTRA_DIST += test-symbols-static.sh test-symbols-compat.sh test-symbols-renames.sh
AM_TESTS_ENVIRONMENT = \
lib_la="./libcrypt.la"; lib_map="$(srcdir)/libcrypt.map.in"; \
CC="$(CC)"; CPP="$(CPP)"; \
CPPFLAGS="$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)"; \
CPPFLAGS="$${CPPFLAGS} $(AM_CPPFLAGS) $(CPPFLAGS)"; \
export lib_la lib_map CC CPP CPPFLAGS;
if CROSS_COMPILING
LOG_COMPILER = m4/skip-if-exec-format-error
endif
EXTRA_DIST += m4/skip-if-exec-format-error
test_crypt_bcrypt_LDADD = crypt-common.lo libcrypt.la
test_crypt_des_LDADD = crypt-common.lo libcrypt.la
test_crypt_md5_LDADD = crypt-common.lo libcrypt.la
test_crypt_nthash_LDADD = crypt-common.lo libcrypt.la
test_crypt_pbkdf1_sha1_LDADD = crypt-common.lo libcrypt.la
test_crypt_scrypt_LDADD = crypt-common.lo libcrypt.la
test_crypt_sha256_LDADD = crypt-common.lo libcrypt.la
test_crypt_sha512_LDADD = crypt-common.lo libcrypt.la
test_crypt_sunmd5_LDADD = crypt-common.lo libcrypt.la
test_crypt_yescrypt_LDADD = crypt-common.lo libcrypt.la
test_badsalt_LDADD = crypt-common.lo libcrypt.la
test_badsetting_LDADD = crypt-common.lo libcrypt.la
test_gensalt_LDADD = crypt-common.lo libcrypt.la
test_checksalt_LDADD = crypt-common.lo libcrypt.la
test_des_obsolete_LDADD = crypt-common.lo libcrypt.la
test_des_obsolete_r_LDADD = crypt-common.lo libcrypt.la
test_crypt_badargs_LDADD = crypt-common.lo libcrypt.la
test_short_outbuf_LDADD = crypt-common.lo libcrypt.la
# These tests call internal APIs that may not be accessible from the
# fully linked shared library.
test_alg_des_LDADD = alg-des.lo alg-des-tables.lo crypt-common.lo
test_alg_gost3411_2012_LDADD = alg-gost3411-2012-core.lo \
alg-gost3411-2012-hmac.lo crypt-common.lo
test_alg_gost3411_2012_hmac_LDADD = alg-gost3411-2012-core.lo \
alg-gost3411-2012-hmac.lo crypt-common.lo
test_alg_hmac_sha1_LDADD = alg-sha1.lo alg-hmac-sha1.lo crypt-common.lo
test_alg_md4_LDADD = alg-md4.lo crypt-common.lo
test_alg_md5_LDADD = alg-md5.lo crypt-common.lo
test_alg_pbkdf_hmac_sha256_LDADD = alg-sha256.lo crypt-common.lo
test_alg_sha1_LDADD = alg-sha1.lo crypt-common.lo
test_alg_sha256_LDADD = alg-sha256.lo crypt-common.lo
test_alg_sha512_LDADD = alg-sha512.lo crypt-common.lo
test_crypt_gost_yescrypt_LDADD = alg-gost3411-2012-core.lo \
alg-gost3411-2012-hmac.lo alg-sha256.lo \
alg-yescrypt-common.lo alg-yescrypt-opt.lo \
crypt-yescrypt.lo crypt-common.lo libcrypt.la
test_getrandom_interface_LDADD = crypt-common.lo randombytes.lo
test_getrandom_fallbacks_LDADD = crypt-common.lo randombytes.lo
if HAVE_LD_WRAP
test_getrandom_fallbacks_LDFLAGS = \
-Wl,--wrap,getentropy -Wl,--wrap,getrandom -Wl,--wrap,syscall \
-Wl,--wrap,open -Wl,--wrap,open64 -Wl,--wrap,read -Wl,--wrap,close
endif
# Every object file depends on crypt-symbol-vers.h and crypt-hashes.h,
# which are generated files, so automatic dependency generation is not
# sufficient.
include $(builddir)/Makefile.deps
# Add additional targets
.PHONY: $(phony_targets)
uninstall-hook: $(uninstall_hook_targets)
|