mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
Highlights from the release notes are reproduced below. Some security and bug fixes were previously merged into FreeBSD and have been elided. See the upstream release notes for full details (https://www.openssh.com/releasenotes.html). --- Future deprecation notice ========================= OpenSSH plans to remove support for the DSA signature algorithm in early 2025. Potentially-incompatible changes -------------------------------- * sshd(8): the server will now block client addresses that repeatedly fail authentication, repeatedly connect without ever completing authentication or that crash the server. See the discussion of PerSourcePenalties below for more information. Operators of servers that accept connections from many users, or servers that accept connections from addresses behind NAT or proxies may need to consider these settings. * sshd(8): the server has been split into a listener binary, sshd(8), and a per-session binary "sshd-session". This allows for a much smaller listener binary, as it no longer needs to support the SSH protocol. As part of this work, support for disabling privilege separation (which previously required code changes to disable) and disabling re-execution of sshd(8) has been removed. Further separation of sshd-session into additional, minimal binaries is planned for the future. * sshd(8): several log messages have changed. In particular, some log messages will be tagged with as originating from a process named "sshd-session" rather than "sshd". * ssh-keyscan(1): this tool previously emitted comment lines containing the hostname and SSH protocol banner to standard error. This release now emits them to standard output, but adds a new "-q" flag to silence them altogether. * sshd(8): (portable OpenSSH only) sshd will no longer use argv[0] as the PAM service name. A new "PAMServiceName" sshd_config(5) directive allows selecting the service name at runtime. This defaults to "sshd". bz2101 New features ------------ * sshd(8): sshd(8) will now penalise client addresses that, for various reasons, do not successfully complete authentication. This feature is controlled by a new sshd_config(5) PerSourcePenalties option and is on by default. * ssh(8): allow the HostkeyAlgorithms directive to disable the implicit fallback from certificate host key to plain host keys. Portability ----------- * sshd(8): expose SSH_AUTH_INFO_0 always to PAM auth modules unconditionally. The previous behaviour was to expose it only when particular authentication methods were in use. * ssh(1), ssh-agent(8): allow the presence of the WAYLAND_DISPLAY environment variable to enable SSH_ASKPASS, similarly to the X11 DISPLAY environment variable. GHPR479 --- Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D48914 (cherry picked from commit 0fdf8fae8b569bf9fff3b5171e669dcd7cf9c79e) (cherry picked from commit b4bb480ae9294d7e4b375f0ead9ae57517c79ef3) (cherry picked from commit e95979047aec384852102cf8bb1d55278ea77eeb) (cherry picked from commit dcb4ae528d357f34e4a4b4882c2757c67c98e395) Approved by: re (accelerated MFC)
802 lines
30 KiB
Makefile
802 lines
30 KiB
Makefile
SHELL=@SH@
|
|
|
|
AUTORECONF=autoreconf
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
bindir=@bindir@
|
|
sbindir=@sbindir@
|
|
libexecdir=@libexecdir@
|
|
datadir=@datadir@
|
|
datarootdir=@datarootdir@
|
|
mandir=@mandir@
|
|
mansubdir=@mansubdir@
|
|
sysconfdir=@sysconfdir@
|
|
piddir=@piddir@
|
|
srcdir=@srcdir@
|
|
top_srcdir=@top_srcdir@
|
|
abs_top_srcdir=@abs_top_srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
|
|
DESTDIR=
|
|
VPATH=@srcdir@
|
|
SSH_PROGRAM=@bindir@/ssh
|
|
ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
|
|
SFTP_SERVER=$(libexecdir)/sftp-server
|
|
SSH_KEYSIGN=$(libexecdir)/ssh-keysign
|
|
SSHD_SESSION=$(libexecdir)/sshd-session
|
|
SSH_PKCS11_HELPER=$(libexecdir)/ssh-pkcs11-helper
|
|
SSH_SK_HELPER=$(libexecdir)/ssh-sk-helper
|
|
PRIVSEP_PATH=@PRIVSEP_PATH@
|
|
SSH_PRIVSEP_USER=@SSH_PRIVSEP_USER@
|
|
STRIP_OPT=@STRIP_OPT@
|
|
TEST_SHELL=@TEST_SHELL@
|
|
BUILDDIR=@abs_top_builddir@
|
|
|
|
PATHS= -DSSHDIR=\"$(sysconfdir)\" \
|
|
-D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
|
|
-D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
|
|
-D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
|
|
-D_PATH_SSH_KEY_SIGN=\"$(SSH_KEYSIGN)\" \
|
|
-D_PATH_SSHD_SESSION=\"$(SSHD_SESSION)\" \
|
|
-D_PATH_SSH_PKCS11_HELPER=\"$(SSH_PKCS11_HELPER)\" \
|
|
-D_PATH_SSH_SK_HELPER=\"$(SSH_SK_HELPER)\" \
|
|
-D_PATH_SSH_PIDDIR=\"$(piddir)\" \
|
|
-D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\"
|
|
|
|
CC=@CC@
|
|
LD=@LD@
|
|
CFLAGS=@CFLAGS@
|
|
CFLAGS_NOPIE=@CFLAGS_NOPIE@
|
|
CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
|
|
PICFLAG=@PICFLAG@
|
|
LIBS=@LIBS@
|
|
CHANNELLIBS=@CHANNELLIBS@
|
|
K5LIBS=@K5LIBS@
|
|
GSSLIBS=@GSSLIBS@
|
|
SSHDLIBS=@SSHDLIBS@
|
|
LIBEDIT=@LIBEDIT@
|
|
LIBFIDO2=@LIBFIDO2@
|
|
AR=@AR@
|
|
AWK=@AWK@
|
|
RANLIB=@RANLIB@
|
|
INSTALL=@INSTALL@
|
|
SED=@SED@
|
|
XAUTH_PATH=@XAUTH_PATH@
|
|
LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
|
|
LDFLAGS_NOPIE=-L. -Lopenbsd-compat/ @LDFLAGS_NOPIE@
|
|
EXEEXT=@EXEEXT@
|
|
MANFMT=@MANFMT@
|
|
MKDIR_P=@MKDIR_P@
|
|
|
|
.SUFFIXES: .lo
|
|
|
|
TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) sshd-session$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) sftp$(EXEEXT) ssh-sk-helper$(EXEEXT)
|
|
|
|
XMSS_OBJS=\
|
|
ssh-xmss.o \
|
|
sshkey-xmss.o \
|
|
xmss_commons.o \
|
|
xmss_fast.o \
|
|
xmss_hash.o \
|
|
xmss_hash_address.o \
|
|
xmss_wots.o
|
|
|
|
LIBOPENSSH_OBJS=\
|
|
ssh_api.o \
|
|
ssherr.o \
|
|
sshbuf.o \
|
|
sshkey.o \
|
|
sshbuf-getput-basic.o \
|
|
sshbuf-misc.o \
|
|
sshbuf-getput-crypto.o \
|
|
krl.o \
|
|
bitmap.o \
|
|
${XMSS_OBJS}
|
|
|
|
LIBSSH_OBJS=${LIBOPENSSH_OBJS} \
|
|
authfd.o authfile.o \
|
|
canohost.o channels.o cipher.o cipher-aes.o cipher-aesctr.o \
|
|
cleanup.o \
|
|
compat.o fatal.o hostfile.o \
|
|
log.o match.o moduli.o nchan.o packet.o \
|
|
readpass.o ttymodes.o xmalloc.o addr.o addrmatch.o \
|
|
atomicio.o dispatch.o mac.o misc.o utf8.o \
|
|
monitor_fdpass.o rijndael.o ssh-dss.o ssh-ecdsa.o ssh-ecdsa-sk.o \
|
|
ssh-ed25519-sk.o ssh-rsa.o dh.o \
|
|
msg.o progressmeter.o dns.o entropy.o gss-genr.o umac.o umac128.o \
|
|
ssh-pkcs11.o smult_curve25519_ref.o \
|
|
poly1305.o chacha.o cipher-chachapoly.o cipher-chachapoly-libcrypto.o \
|
|
ssh-ed25519.o digest-openssl.o digest-libc.o \
|
|
hmac.o ed25519.o hash.o \
|
|
kex.o kex-names.o kexdh.o kexgex.o kexecdh.o kexc25519.o \
|
|
kexgexc.o kexgexs.o \
|
|
kexsntrup761x25519.o sntrup761.o kexgen.o \
|
|
sftp-realpath.o platform-pledge.o platform-tracing.o platform-misc.o \
|
|
sshbuf-io.o
|
|
|
|
SKOBJS= ssh-sk-client.o
|
|
|
|
SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \
|
|
sshconnect.o sshconnect2.o mux.o $(SKOBJS)
|
|
|
|
SSHDOBJS=sshd.o \
|
|
platform-listen.o \
|
|
servconf.o sshpty.o srclimit.o groupaccess.o auth2-methods.o \
|
|
dns.o fatal.o compat.o utf8.o authfd.o canohost.o \
|
|
$(SKOBJS)
|
|
|
|
SSHD_SESSION_OBJS=sshd-session.o auth-rhosts.o auth-passwd.o \
|
|
audit.o audit-bsm.o audit-linux.o platform.o \
|
|
sshpty.o sshlogin.o servconf.o serverloop.o \
|
|
auth.o auth2.o auth2-methods.o auth-options.o session.o \
|
|
auth2-chall.o groupaccess.o \
|
|
auth-bsdauth.o auth2-hostbased.o auth2-kbdint.o \
|
|
auth2-none.o auth2-passwd.o auth2-pubkey.o auth2-pubkeyfile.o \
|
|
monitor.o monitor_wrap.o auth-krb5.o \
|
|
auth2-gss.o gss-serv.o gss-serv-krb5.o \
|
|
loginrec.o auth-pam.o auth-shadow.o auth-sia.o \
|
|
sftp-server.o sftp-common.o \
|
|
sandbox-null.o sandbox-rlimit.o sandbox-systrace.o sandbox-darwin.o \
|
|
sandbox-seccomp-filter.o sandbox-capsicum.o sandbox-pledge.o \
|
|
sandbox-solaris.o uidswap.o $(SKOBJS)
|
|
|
|
SFTP_CLIENT_OBJS=sftp-common.o sftp-client.o sftp-glob.o
|
|
|
|
SCP_OBJS= scp.o progressmeter.o $(SFTP_CLIENT_OBJS)
|
|
|
|
SSHADD_OBJS= ssh-add.o $(SKOBJS)
|
|
|
|
SSHAGENT_OBJS= ssh-agent.o ssh-pkcs11-client.o $(SKOBJS)
|
|
|
|
SSHKEYGEN_OBJS= ssh-keygen.o sshsig.o $(SKOBJS)
|
|
|
|
SSHKEYSIGN_OBJS=ssh-keysign.o readconf.o uidswap.o $(SKOBJS)
|
|
|
|
P11HELPER_OBJS= ssh-pkcs11-helper.o ssh-pkcs11.o $(SKOBJS)
|
|
|
|
SKHELPER_OBJS= ssh-sk-helper.o ssh-sk.o sk-usbhid.o
|
|
|
|
SSHKEYSCAN_OBJS=ssh-keyscan.o $(SKOBJS)
|
|
|
|
SFTPSERVER_OBJS=sftp-common.o sftp-server.o sftp-server-main.o
|
|
|
|
SFTP_OBJS= sftp.o sftp-usergroup.o progressmeter.o $(SFTP_CLIENT_OBJS)
|
|
|
|
MANPAGES = moduli.5.out scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-keysign.8.out ssh-pkcs11-helper.8.out ssh-sk-helper.8.out sshd_config.5.out ssh_config.5.out
|
|
MANPAGES_IN = moduli.5 scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-keysign.8 ssh-pkcs11-helper.8 ssh-sk-helper.8 sshd_config.5 ssh_config.5
|
|
MANTYPE = @MANTYPE@
|
|
|
|
CONFIGFILES=sshd_config.out ssh_config.out moduli.out
|
|
CONFIGFILES_IN=sshd_config ssh_config moduli
|
|
|
|
PATHSUBS = \
|
|
-e 's|/etc/ssh/ssh_config|$(sysconfdir)/ssh_config|g' \
|
|
-e 's|/etc/ssh/ssh_known_hosts|$(sysconfdir)/ssh_known_hosts|g' \
|
|
-e 's|/etc/ssh/sshd_config|$(sysconfdir)/sshd_config|g' \
|
|
-e 's|/usr/libexec|$(libexecdir)|g' \
|
|
-e 's|/etc/shosts.equiv|$(sysconfdir)/shosts.equiv|g' \
|
|
-e 's|/etc/ssh/ssh_host_key|$(sysconfdir)/ssh_host_key|g' \
|
|
-e 's|/etc/ssh/ssh_host_ecdsa_key|$(sysconfdir)/ssh_host_ecdsa_key|g' \
|
|
-e 's|/etc/ssh/ssh_host_dsa_key|$(sysconfdir)/ssh_host_dsa_key|g' \
|
|
-e 's|/etc/ssh/ssh_host_rsa_key|$(sysconfdir)/ssh_host_rsa_key|g' \
|
|
-e 's|/etc/ssh/ssh_host_ed25519_key|$(sysconfdir)/ssh_host_ed25519_key|g' \
|
|
-e 's|/var/run/sshd.pid|$(piddir)/sshd.pid|g' \
|
|
-e 's|/etc/moduli|$(sysconfdir)/moduli|g' \
|
|
-e 's|/etc/ssh/moduli|$(sysconfdir)/moduli|g' \
|
|
-e 's|/etc/ssh/sshrc|$(sysconfdir)/sshrc|g' \
|
|
-e 's|/usr/X11R6/bin/xauth|$(XAUTH_PATH)|g' \
|
|
-e 's|/var/empty|$(PRIVSEP_PATH)|g' \
|
|
-e 's|/usr/bin:/bin:/usr/sbin:/sbin|@user_path@|g'
|
|
|
|
FIXPATHSCMD = $(SED) $(PATHSUBS)
|
|
FIXALGORITHMSCMD= $(SHELL) $(srcdir)/fixalgorithms $(SED) \
|
|
@UNSUPPORTED_ALGORITHMS@
|
|
|
|
all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
|
|
|
|
$(LIBSSH_OBJS): Makefile.in config.h
|
|
$(SSHOBJS): Makefile.in config.h
|
|
$(SSHDOBJS): Makefile.in config.h
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
|
|
|
|
LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
|
|
$(LIBCOMPAT): always
|
|
(cd openbsd-compat && $(MAKE))
|
|
always:
|
|
|
|
libssh.a: $(LIBSSH_OBJS)
|
|
$(AR) rv $@ $(LIBSSH_OBJS)
|
|
$(RANLIB) $@
|
|
|
|
ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
|
|
$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(GSSLIBS) $(CHANNELLIBS)
|
|
|
|
sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
|
|
$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(CHANNELLIBS)
|
|
|
|
sshd-session$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHD_SESSION_OBJS)
|
|
$(LD) -o $@ $(SSHD_SESSION_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS) $(CHANNELLIBS)
|
|
|
|
scp$(EXEEXT): $(LIBCOMPAT) libssh.a $(SCP_OBJS)
|
|
$(LD) -o $@ $(SCP_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
|
|
|
|
ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHADD_OBJS)
|
|
$(LD) -o $@ $(SSHADD_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(CHANNELLIBS)
|
|
|
|
ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHAGENT_OBJS)
|
|
$(LD) -o $@ $(SSHAGENT_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(CHANNELLIBS)
|
|
|
|
ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHKEYGEN_OBJS)
|
|
$(LD) -o $@ $(SSHKEYGEN_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(CHANNELLIBS)
|
|
|
|
ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHKEYSIGN_OBJS)
|
|
$(LD) -o $@ $(SSHKEYSIGN_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(CHANNELLIBS)
|
|
|
|
ssh-pkcs11-helper$(EXEEXT): $(LIBCOMPAT) libssh.a $(P11HELPER_OBJS)
|
|
$(LD) -o $@ $(P11HELPER_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) $(CHANNELLIBS)
|
|
|
|
ssh-sk-helper$(EXEEXT): $(LIBCOMPAT) libssh.a $(SKHELPER_OBJS)
|
|
$(LD) -o $@ $(SKHELPER_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) $(LIBFIDO2) $(CHANNELLIBS)
|
|
|
|
ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHKEYSCAN_OBJS)
|
|
$(LD) -o $@ $(SSHKEYSCAN_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS) $(CHANNELLIBS)
|
|
|
|
sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a $(SFTPSERVER_OBJS)
|
|
$(LD) -o $@ $(SFTPSERVER_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)
|
|
|
|
sftp$(EXEEXT): $(LIBCOMPAT) libssh.a $(SFTP_OBJS)
|
|
$(LD) -o $@ $(SFTP_OBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(LIBEDIT)
|
|
|
|
# test driver for the loginrec code - not built by default
|
|
logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
|
|
$(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
|
|
|
|
$(MANPAGES): $(MANPAGES_IN)
|
|
if test "$(MANTYPE)" = "cat"; then \
|
|
manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
|
|
else \
|
|
manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
|
|
fi; \
|
|
if test "$(MANTYPE)" = "man"; then \
|
|
$(FIXPATHSCMD) $${manpage} | $(FIXALGORITHMSCMD) | \
|
|
$(AWK) -f $(srcdir)/mdoc2man.awk > $@; \
|
|
else \
|
|
$(FIXPATHSCMD) $${manpage} | $(FIXALGORITHMSCMD) > $@; \
|
|
fi
|
|
|
|
$(CONFIGFILES): $(CONFIGFILES_IN)
|
|
conffile=`echo $@ | sed 's/.out$$//'`; \
|
|
$(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
|
|
|
|
# fake rule to stop make trying to compile moduli.o into a binary "moduli.o"
|
|
moduli:
|
|
echo
|
|
|
|
clean: regressclean
|
|
rm -f *.o *.lo *.a $(TARGETS) logintest config.cache config.log
|
|
rm -f *.out core survey
|
|
rm -f regress/check-perm$(EXEEXT)
|
|
rm -f regress/mkdtemp$(EXEEXT)
|
|
rm -f regress/unittests/test_helper/*.a
|
|
rm -f regress/unittests/test_helper/*.o
|
|
rm -f regress/unittests/authopt/*.o
|
|
rm -f regress/unittests/authopt/test_authopt$(EXEEXT)
|
|
rm -f regress/unittests/bitmap/*.o
|
|
rm -f regress/unittests/bitmap/test_bitmap$(EXEEXT)
|
|
rm -f regress/unittests/conversion/*.o
|
|
rm -f regress/unittests/conversion/test_conversion$(EXEEXT)
|
|
rm -f regress/unittests/hostkeys/*.o
|
|
rm -f regress/unittests/hostkeys/test_hostkeys$(EXEEXT)
|
|
rm -f regress/unittests/kex/*.o
|
|
rm -f regress/unittests/kex/test_kex$(EXEEXT)
|
|
rm -f regress/unittests/match/*.o
|
|
rm -f regress/unittests/match/test_match$(EXEEXT)
|
|
rm -f regress/unittests/misc/*.o
|
|
rm -f regress/unittests/misc/test_misc$(EXEEXT)
|
|
rm -f regress/unittests/sshbuf/*.o
|
|
rm -f regress/unittests/sshbuf/test_sshbuf$(EXEEXT)
|
|
rm -f regress/unittests/sshkey/*.o
|
|
rm -f regress/unittests/sshkey/test_sshkey$(EXEEXT)
|
|
rm -f regress/unittests/sshsig/*.o
|
|
rm -f regress/unittests/sshsig/test_sshsig$(EXEEXT)
|
|
rm -f regress/unittests/utf8/*.o
|
|
rm -f regress/unittests/utf8/test_utf8$(EXEEXT)
|
|
rm -f regress/misc/sk-dummy/*.o
|
|
rm -f regress/misc/sk-dummy/*.lo
|
|
rm -f regress/misc/sk-dummy/sk-dummy.so
|
|
(cd openbsd-compat && $(MAKE) clean)
|
|
|
|
distclean: regressclean
|
|
rm -f *.o *.a $(TARGETS) logintest config.cache config.log
|
|
rm -f *.out core opensshd.init openssh.xml
|
|
rm -f Makefile buildpkg.sh config.h config.status
|
|
rm -f survey.sh openbsd-compat/regress/Makefile *~
|
|
rm -rf autom4te.cache
|
|
rm -f regress/check-perm
|
|
rm -f regress/mkdtemp
|
|
rm -f regress/unittests/test_helper/*.a
|
|
rm -f regress/unittests/test_helper/*.o
|
|
rm -f regress/unittests/authopt/*.o
|
|
rm -f regress/unittests/authopt/test_authopt
|
|
rm -f regress/unittests/bitmap/*.o
|
|
rm -f regress/unittests/bitmap/test_bitmap
|
|
rm -f regress/unittests/conversion/*.o
|
|
rm -f regress/unittests/conversion/test_conversion
|
|
rm -f regress/unittests/hostkeys/*.o
|
|
rm -f regress/unittests/hostkeys/test_hostkeys
|
|
rm -f regress/unittests/kex/*.o
|
|
rm -f regress/unittests/kex/test_kex
|
|
rm -f regress/unittests/match/*.o
|
|
rm -f regress/unittests/match/test_match
|
|
rm -f regress/unittests/misc/*.o
|
|
rm -f regress/unittests/misc/test_misc
|
|
rm -f regress/unittests/sshbuf/*.o
|
|
rm -f regress/unittests/sshbuf/test_sshbuf
|
|
rm -f regress/unittests/sshkey/*.o
|
|
rm -f regress/unittests/sshkey/test_sshkey
|
|
rm -f regress/unittests/sshsig/*.o
|
|
rm -f regress/unittests/sshsig/test_sshsig
|
|
rm -f regress/unittests/utf8/*.o
|
|
rm -f regress/unittests/utf8/test_utf8
|
|
rm -f regress/misc/sk-dummy/*.o
|
|
rm -f regress/misc/sk-dummy/*.lo
|
|
rm -f regress/misc/sk-dummy/sk-dummy.so
|
|
(cd openbsd-compat && $(MAKE) distclean)
|
|
if test -d pkg ; then \
|
|
rm -fr pkg ; \
|
|
fi
|
|
|
|
veryclean: distclean
|
|
rm -f configure config.h.in *.0
|
|
|
|
cleandir: veryclean
|
|
|
|
mrproper: veryclean
|
|
|
|
realclean: veryclean
|
|
|
|
catman-do:
|
|
@for f in $(MANPAGES_IN) ; do \
|
|
base=`echo $$f | sed 's/\..*$$//'` ; \
|
|
echo "$$f -> $$base.0" ; \
|
|
$(MANFMT) $$f | cat -v | sed -e 's/.\^H//g' \
|
|
>$$base.0 ; \
|
|
done
|
|
|
|
depend: depend-rebuild
|
|
rm -f .depend.bak
|
|
|
|
depend-rebuild:
|
|
mv .depend .depend.old
|
|
rm -f config.h .depend
|
|
touch config.h .depend
|
|
makedepend -w1000 -Y. -f .depend *.c 2>/dev/null
|
|
(echo '# Automatically generated by makedepend.'; \
|
|
echo '# Run "make depend" to rebuild.'; sort .depend ) >.depend.tmp
|
|
mv .depend.tmp .depend
|
|
rm -f .depend.bak
|
|
mv .depend.old .depend.bak
|
|
rm -f config.h
|
|
|
|
depend-check: depend-rebuild
|
|
cmp .depend .depend.bak || (echo .depend stale && exit 1)
|
|
|
|
distprep: catman-do depend-check
|
|
$(AUTORECONF)
|
|
-rm -rf autom4te.cache .depend.bak
|
|
|
|
install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf host-key check-config
|
|
install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files install-sysconf
|
|
install-nosysconf: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
|
|
|
|
check-config:
|
|
-$(DESTDIR)$(sbindir)/sshd -t -f $(DESTDIR)$(sysconfdir)/sshd_config
|
|
|
|
install-files:
|
|
$(MKDIR_P) $(DESTDIR)$(bindir)
|
|
$(MKDIR_P) $(DESTDIR)$(sbindir)
|
|
$(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)1
|
|
$(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)5
|
|
$(MKDIR_P) $(DESTDIR)$(mandir)/$(mansubdir)8
|
|
$(MKDIR_P) $(DESTDIR)$(libexecdir)
|
|
$(MKDIR_P) -m 0755 $(DESTDIR)$(PRIVSEP_PATH)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh$(EXEEXT) $(DESTDIR)$(bindir)/ssh$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) scp$(EXEEXT) $(DESTDIR)$(bindir)/scp$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh-add$(EXEEXT) $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh-agent$(EXEEXT) $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh-keygen$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh-keyscan$(EXEEXT) $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) sshd$(EXEEXT) $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) sshd-session$(EXEEXT) $(DESTDIR)$(SSHD_SESSION)$(EXEEXT)
|
|
$(INSTALL) -m 4711 $(STRIP_OPT) ssh-keysign$(EXEEXT) $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh-pkcs11-helper$(EXEEXT) $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) ssh-sk-helper$(EXEEXT) $(DESTDIR)$(SSH_SK_HELPER)$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) sftp$(EXEEXT) $(DESTDIR)$(bindir)/sftp$(EXEEXT)
|
|
$(INSTALL) -m 0755 $(STRIP_OPT) sftp-server$(EXEEXT) $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
|
|
$(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
|
|
$(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
|
|
$(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
|
|
$(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
|
|
$(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
|
|
$(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
|
|
$(INSTALL) -m 644 moduli.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/moduli.5
|
|
$(INSTALL) -m 644 sshd_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/sshd_config.5
|
|
$(INSTALL) -m 644 ssh_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/ssh_config.5
|
|
$(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
|
|
$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
|
|
$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
|
|
$(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
|
|
$(INSTALL) -m 644 ssh-pkcs11-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
|
|
$(INSTALL) -m 644 ssh-sk-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-sk-helper.8
|
|
|
|
install-sysconf:
|
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)
|
|
@if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
|
|
$(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
|
|
else \
|
|
echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
|
|
fi
|
|
@if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
|
|
$(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
|
|
else \
|
|
echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
|
|
fi
|
|
@if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
|
|
if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
|
|
echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
|
|
mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
|
|
else \
|
|
$(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
|
|
fi ; \
|
|
else \
|
|
echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
|
|
fi
|
|
|
|
host-key: ssh-keygen$(EXEEXT)
|
|
@if [ -z "$(DESTDIR)" ] ; then \
|
|
./ssh-keygen -A; \
|
|
fi
|
|
|
|
host-key-force: ssh-keygen$(EXEEXT) ssh$(EXEEXT)
|
|
./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
|
|
./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
|
|
./ssh-keygen -t ed25519 -f $(DESTDIR)$(sysconfdir)/ssh_host_ed25519_key -N ""
|
|
if ./ssh -Q key | grep ecdsa >/dev/null ; then \
|
|
./ssh-keygen -t ecdsa -f $(DESTDIR)$(sysconfdir)/ssh_host_ecdsa_key -N ""; \
|
|
fi
|
|
|
|
uninstallall: uninstall
|
|
-rm -f $(DESTDIR)$(sysconfdir)/ssh_config
|
|
-rm -f $(DESTDIR)$(sysconfdir)/sshd_config
|
|
-rmdir $(DESTDIR)$(sysconfdir)
|
|
-rmdir $(DESTDIR)$(bindir)
|
|
-rmdir $(DESTDIR)$(sbindir)
|
|
-rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
|
|
-rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
|
|
-rmdir $(DESTDIR)$(mandir)
|
|
-rmdir $(DESTDIR)$(libexecdir)
|
|
|
|
uninstall:
|
|
-rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
|
|
-rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(SSH_PKCS11_HELPER)$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(SSH_SK_HELPER)$(EXEEXT)
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-pkcs11-helper.8
|
|
-rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-sk-helper.8
|
|
|
|
regress-prep:
|
|
$(MKDIR_P) `pwd`/regress/unittests/test_helper
|
|
$(MKDIR_P) `pwd`/regress/unittests/authopt
|
|
$(MKDIR_P) `pwd`/regress/unittests/bitmap
|
|
$(MKDIR_P) `pwd`/regress/unittests/conversion
|
|
$(MKDIR_P) `pwd`/regress/unittests/hostkeys
|
|
$(MKDIR_P) `pwd`/regress/unittests/kex
|
|
$(MKDIR_P) `pwd`/regress/unittests/match
|
|
$(MKDIR_P) `pwd`/regress/unittests/misc
|
|
$(MKDIR_P) `pwd`/regress/unittests/sshbuf
|
|
$(MKDIR_P) `pwd`/regress/unittests/sshkey
|
|
$(MKDIR_P) `pwd`/regress/unittests/sshsig
|
|
$(MKDIR_P) `pwd`/regress/unittests/utf8
|
|
$(MKDIR_P) `pwd`/regress/misc/sk-dummy
|
|
[ -f `pwd`/regress/Makefile ] || \
|
|
ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile
|
|
|
|
REGRESSLIBS=libssh.a $(LIBCOMPAT)
|
|
TESTLIBS=$(LIBS) $(CHANNELLIBS)
|
|
|
|
regress/modpipe$(EXEEXT): $(srcdir)/regress/modpipe.c $(REGRESSLIBS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/modpipe.c \
|
|
$(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
regress/timestamp$(EXEEXT): $(srcdir)/regress/timestamp.c $(REGRESSLIBS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/timestamp.c \
|
|
$(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
regress/setuid-allowed$(EXEEXT): $(srcdir)/regress/setuid-allowed.c $(REGRESSLIBS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/setuid-allowed.c \
|
|
$(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
regress/netcat$(EXEEXT): $(srcdir)/regress/netcat.c $(REGRESSLIBS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/netcat.c \
|
|
$(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
regress/check-perm$(EXEEXT): $(srcdir)/regress/check-perm.c $(REGRESSLIBS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/check-perm.c \
|
|
$(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
regress/mkdtemp$(EXEEXT): $(srcdir)/regress/mkdtemp.c $(REGRESSLIBS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(srcdir)/regress/mkdtemp.c \
|
|
$(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_HELPER_OBJS=\
|
|
regress/unittests/test_helper/test_helper.o \
|
|
regress/unittests/test_helper/fuzz.o
|
|
|
|
regress/unittests/test_helper/libtest_helper.a: ${UNITTESTS_TEST_HELPER_OBJS}
|
|
$(AR) rv $@ $(UNITTESTS_TEST_HELPER_OBJS)
|
|
$(RANLIB) $@
|
|
|
|
UNITTESTS_TEST_SSHBUF_OBJS=\
|
|
regress/unittests/sshbuf/tests.o \
|
|
regress/unittests/sshbuf/test_sshbuf.o \
|
|
regress/unittests/sshbuf/test_sshbuf_getput_basic.o \
|
|
regress/unittests/sshbuf/test_sshbuf_getput_crypto.o \
|
|
regress/unittests/sshbuf/test_sshbuf_misc.o \
|
|
regress/unittests/sshbuf/test_sshbuf_fuzz.o \
|
|
regress/unittests/sshbuf/test_sshbuf_getput_fuzz.o \
|
|
regress/unittests/sshbuf/test_sshbuf_fixed.o
|
|
|
|
regress/unittests/sshbuf/test_sshbuf$(EXEEXT): ${UNITTESTS_TEST_SSHBUF_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_SSHBUF_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_SSHKEY_OBJS=\
|
|
regress/unittests/sshkey/test_fuzz.o \
|
|
regress/unittests/sshkey/tests.o \
|
|
regress/unittests/sshkey/common.o \
|
|
regress/unittests/sshkey/test_file.o \
|
|
regress/unittests/sshkey/test_sshkey.o \
|
|
$(SKOBJS)
|
|
|
|
regress/unittests/sshkey/test_sshkey$(EXEEXT): ${UNITTESTS_TEST_SSHKEY_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_SSHKEY_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_SSHSIG_OBJS=\
|
|
sshsig.o \
|
|
regress/unittests/sshsig/tests.o \
|
|
$(SKOBJS)
|
|
|
|
regress/unittests/sshsig/test_sshsig$(EXEEXT): ${UNITTESTS_TEST_SSHSIG_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_SSHSIG_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_BITMAP_OBJS=\
|
|
regress/unittests/bitmap/tests.o
|
|
|
|
regress/unittests/bitmap/test_bitmap$(EXEEXT): ${UNITTESTS_TEST_BITMAP_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_BITMAP_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_AUTHOPT_OBJS=\
|
|
regress/unittests/authopt/tests.o \
|
|
auth-options.o \
|
|
$(SKOBJS)
|
|
|
|
regress/unittests/authopt/test_authopt$(EXEEXT): \
|
|
${UNITTESTS_TEST_AUTHOPT_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_AUTHOPT_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_CONVERSION_OBJS=\
|
|
regress/unittests/conversion/tests.o
|
|
|
|
regress/unittests/conversion/test_conversion$(EXEEXT): \
|
|
${UNITTESTS_TEST_CONVERSION_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_CONVERSION_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_KEX_OBJS=\
|
|
regress/unittests/kex/tests.o \
|
|
regress/unittests/kex/test_kex.o \
|
|
regress/unittests/kex/test_proposal.o \
|
|
$(SKOBJS)
|
|
|
|
regress/unittests/kex/test_kex$(EXEEXT): ${UNITTESTS_TEST_KEX_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_KEX_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_HOSTKEYS_OBJS=\
|
|
regress/unittests/hostkeys/tests.o \
|
|
regress/unittests/hostkeys/test_iterate.o \
|
|
$(SKOBJS)
|
|
|
|
regress/unittests/hostkeys/test_hostkeys$(EXEEXT): \
|
|
${UNITTESTS_TEST_HOSTKEYS_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_HOSTKEYS_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_MATCH_OBJS=\
|
|
regress/unittests/match/tests.o
|
|
|
|
regress/unittests/match/test_match$(EXEEXT): \
|
|
${UNITTESTS_TEST_MATCH_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_MATCH_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_MISC_OBJS=\
|
|
regress/unittests/misc/tests.o \
|
|
regress/unittests/misc/test_parse.o \
|
|
regress/unittests/misc/test_expand.o \
|
|
regress/unittests/misc/test_convtime.o \
|
|
regress/unittests/misc/test_argv.o \
|
|
regress/unittests/misc/test_strdelim.o \
|
|
regress/unittests/misc/test_hpdelim.o \
|
|
regress/unittests/misc/test_ptimeout.o
|
|
|
|
regress/unittests/misc/test_misc$(EXEEXT): \
|
|
${UNITTESTS_TEST_MISC_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_MISC_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
UNITTESTS_TEST_UTF8_OBJS=\
|
|
regress/unittests/utf8/tests.o
|
|
|
|
regress/unittests/utf8/test_utf8$(EXEEXT): \
|
|
${UNITTESTS_TEST_UTF8_OBJS} \
|
|
regress/unittests/test_helper/libtest_helper.a libssh.a
|
|
$(LD) -o $@ $(LDFLAGS) $(UNITTESTS_TEST_UTF8_OBJS) \
|
|
regress/unittests/test_helper/libtest_helper.a \
|
|
-lssh -lopenbsd-compat -lssh -lopenbsd-compat $(TESTLIBS)
|
|
|
|
# These all need to be compiled -fPIC, so they are treated differently.
|
|
SK_DUMMY_OBJS=\
|
|
regress/misc/sk-dummy/sk-dummy.lo \
|
|
regress/misc/sk-dummy/fatal.lo \
|
|
ed25519.lo hash.lo
|
|
|
|
SK_DUMMY_LIBRARY=@SK_DUMMY_LIBRARY@
|
|
|
|
.c.lo: Makefile.in config.h
|
|
$(CC) $(CFLAGS_NOPIE) $(PICFLAG) $(CPPFLAGS) -c $< -o $@
|
|
|
|
regress/misc/sk-dummy/sk-dummy.so: $(SK_DUMMY_OBJS)
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) $(PICFLAG) -shared -o $@ $(SK_DUMMY_OBJS) \
|
|
-L. -Lopenbsd-compat -lopenbsd-compat $(LDFLAGS_NOPIE) $(TESTLIBS)
|
|
|
|
regress-binaries: regress-prep $(LIBCOMPAT) \
|
|
regress/modpipe$(EXEEXT) \
|
|
regress/timestamp$(EXEEXT) \
|
|
regress/setuid-allowed$(EXEEXT) \
|
|
regress/netcat$(EXEEXT) \
|
|
regress/check-perm$(EXEEXT) \
|
|
regress/mkdtemp$(EXEEXT) \
|
|
$(SK_DUMMY_LIBRARY)
|
|
|
|
regress-unit-binaries: regress-prep $(REGRESSLIBS) \
|
|
regress/unittests/authopt/test_authopt$(EXEEXT) \
|
|
regress/unittests/bitmap/test_bitmap$(EXEEXT) \
|
|
regress/unittests/conversion/test_conversion$(EXEEXT) \
|
|
regress/unittests/hostkeys/test_hostkeys$(EXEEXT) \
|
|
regress/unittests/kex/test_kex$(EXEEXT) \
|
|
regress/unittests/match/test_match$(EXEEXT) \
|
|
regress/unittests/misc/test_misc$(EXEEXT) \
|
|
regress/unittests/sshbuf/test_sshbuf$(EXEEXT) \
|
|
regress/unittests/sshkey/test_sshkey$(EXEEXT) \
|
|
regress/unittests/sshsig/test_sshsig$(EXEEXT) \
|
|
regress/unittests/utf8/test_utf8$(EXEEXT)
|
|
|
|
tests: file-tests t-exec interop-tests extra-tests unit
|
|
echo all tests passed
|
|
|
|
unit: regress-unit-binaries
|
|
cd $(srcdir)/regress || exit $$?; \
|
|
$(MAKE) \
|
|
.CURDIR="$(abs_top_srcdir)/regress" \
|
|
.OBJDIR="$(BUILDDIR)/regress" \
|
|
OBJ="$(BUILDDIR)/regress" \
|
|
$@ && echo $@ tests passed
|
|
|
|
interop-tests t-exec file-tests extra-tests: regress-prep regress-binaries $(TARGETS)
|
|
cd $(srcdir)/regress || exit $$?; \
|
|
EGREP='@EGREP@' \
|
|
OPENSSL_BIN='@OPENSSL_BIN@' \
|
|
$(MAKE) \
|
|
.CURDIR="$(abs_top_srcdir)/regress" \
|
|
.OBJDIR="$(BUILDDIR)/regress" \
|
|
BUILDDIR="$(BUILDDIR)" \
|
|
OBJ="$(BUILDDIR)/regress" \
|
|
PATH="$(BUILDDIR):$${PATH}" \
|
|
TEST_ENV=MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \
|
|
TEST_MALLOC_OPTIONS="@TEST_MALLOC_OPTIONS@" \
|
|
TEST_SSH_SCP="$(BUILDDIR)/scp" \
|
|
TEST_SSH_SSH="$(BUILDDIR)/ssh" \
|
|
TEST_SSH_SSHD="$(BUILDDIR)/sshd" \
|
|
TEST_SSH_SSHD_SESSION="$(BUILDDIR)/sshd-session" \
|
|
TEST_SSH_SSHAGENT="$(BUILDDIR)/ssh-agent" \
|
|
TEST_SSH_SSHADD="$(BUILDDIR)/ssh-add" \
|
|
TEST_SSH_SSHKEYGEN="$(BUILDDIR)/ssh-keygen" \
|
|
TEST_SSH_SSHPKCS11HELPER="$(BUILDDIR)/ssh-pkcs11-helper" \
|
|
TEST_SSH_SSHKEYSCAN="$(BUILDDIR)/ssh-keyscan" \
|
|
TEST_SSH_SFTP="$(BUILDDIR)/sftp" \
|
|
TEST_SSH_PKCS11_HELPER="$(BUILDDIR)/ssh-pkcs11-helper" \
|
|
TEST_SSH_SK_HELPER="$(BUILDDIR)/ssh-sk-helper" \
|
|
TEST_SSH_SFTPSERVER="$(BUILDDIR)/sftp-server" \
|
|
TEST_SSH_MODULI_FILE="$(abs_top_srcdir)/moduli" \
|
|
TEST_SSH_PLINK="@PLINK@" \
|
|
TEST_SSH_PUTTYGEN="@PUTTYGEN@" \
|
|
TEST_SSH_CONCH="@CONCH@" \
|
|
TEST_SSH_DROPBEAR="@DROPBEAR@" \
|
|
TEST_SSH_DROPBEARKEY="@DROPBEARKEY@" \
|
|
TEST_SSH_DROPBEARCONVERT="@DROPBEARCONVERT@" \
|
|
TEST_SSH_DBCLIENT="@DBCLIENT@" \
|
|
TEST_SSH_IPV6="@TEST_SSH_IPV6@" \
|
|
TEST_SSH_UTF8="@TEST_SSH_UTF8@" \
|
|
TEST_SHELL="$(TEST_SHELL)" \
|
|
EXEEXT="$(EXEEXT)" \
|
|
$@ && echo all $@ passed
|
|
|
|
compat-tests: $(LIBCOMPAT)
|
|
(cd openbsd-compat/regress && $(MAKE))
|
|
|
|
regressclean:
|
|
if [ -f regress/Makefile ] && [ -r regress/Makefile ]; then \
|
|
(cd regress && $(MAKE) clean) \
|
|
fi
|
|
|
|
survey: survey.sh ssh
|
|
@$(SHELL) ./survey.sh > survey
|
|
@echo 'The survey results have been placed in the file "survey" in the'
|
|
@echo 'current directory. Please review the file then send with'
|
|
@echo '"make send-survey".'
|
|
|
|
send-survey: survey
|
|
mail portable-survey@mindrot.org <survey
|
|
|
|
package: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
|
|
if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \
|
|
sh buildpkg.sh; \
|
|
fi
|
|
|
|
# @DEPEND@
|