summaryrefslogtreecommitdiff
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* upstream: Rework logging for the regression tests.dtucker@openbsd.org2023-03-011-0/+5
| | | | | | | | | | | | | | | | | | Previously we would log to ssh.log and sshd.log, but that is insufficient for tests that have more than one concurent ssh/sshd. Instead, we'll log to separate datestamped files in a $OBJ/log/ and leave a symlink at the previous location pointing at the most recent instance with an entry in regress.log showing which files were created at each point. This should be sufficient to reconstruct what happened even for tests that use multiple instances of each program. If the test fails, tar up all of the logs for later analysis. This will let us also capture the output from some of the other tools which was previously sent to /dev/null although most of those will be in future commits. OpenBSD-Regress-ID: f802aa9e7fa51d1a01225c05fb0412d015c33e24
* adapt compat_kex_proposal() test to portableDamien Miller2023-02-021-0/+1
|
* upstream: update OpenSSH's Ed25519 code to the last version of SUPERCOPdjm@openbsd.org2023-01-161-2/+2
| | | | | | | | | | (20221122) and change the import approach to the same one we use for Streamlined NTRUPrime: use a shell script to extract the bits we need from SUPERCOP, make some minor adjustments and squish them all into a single file. ok tb@ tobhe@ OpenBSD-Commit-ID: 1bc0fd624cb6af440905b8ba74ac7c03311b8e3b
* Set OPENSSL_BIN from OpenSSL directory.Darren Tucker2023-01-061-0/+1
|
* upstream: unit tests for misc.c:ptimeout_* APIdjm@openbsd.org2023-01-061-1/+2
| | | | OpenBSD-Regress-ID: 01f8fb12d08e5aaadd4bd4e71f456b6588be9a94
* upstream: use users-groups-by-id@openssh.com sftp-server extensiondjm@openbsd.org2022-09-191-1/+1
| | | | | | | (when available) to fill in user/group names for directory listings. Implement a client-side cache of see uid/gid=>user/group names. ok markus@ OpenBSD-Commit-ID: f239aeeadfa925a37ceee36ee8b256b8ccf4466e
* Move stale-configure check as early as possible.Darren Tucker2022-07-271-6/+1
| | | | | | | We added a check in Makefile to catch the case where configure needs to be rebuilt, however this did not happen until a build was attempted in which case all of the work done by configure was wasted. Move this check to the start of configure to catch it as early as possible. ok djm@
* Move libcrypto into CHANNELLIBS.Darren Tucker2022-07-271-21/+22
| | | | | This will result in sftp, sftp-server and scp no longer being linked against libcrypto. ok djm@
* Do not link scp, sftp and sftp-server w/ zlib.Darren Tucker2022-07-271-5/+6
| | | | | | | | Some of our binaries (eg sftp, sftp-server, scp) do not interact with the channels code and thus do use libraries such as zlib and libcrypto although they are linked with them. This adds a CHANNELLIBS and starts by moving zlib into it, which means the aformentioned binaries are no longer linked against zlib. ok djm@
* Remove workarounds for OpenSSL missing AES-CTR.Darren Tucker2022-07-251-1/+1
| | | | | | | We have some compatibility hacks that were added to support OpenSSL versions that do not support AES CTR mode. Since that time, however, the minimum OpenSSL version that we support has moved to 1.0.1 which *does* have CTR, so this is no longer needed. ok djm@
* upstream: split the low-level file handling functions out fromdjm@openbsd.org2022-05-271-1/+1
| | | | | | | | | | | | auth2-pubkey.c Put them in a new auth2-pubkeyfile.c to make it easier to refer to them (e.g. in unit/fuzz tests) without having to refer to everything else pubkey auth brings in. ok dtucker@ OpenBSD-Commit-ID: 3fdca2c61ad97dc1b8d4a7346816f83dc4ce2217
* Set Makefile SHELL as determined by configure.Darren Tucker2022-04-011-2/+1
| | | | | | | This should improve compatibility for users with non-POSIX shells. If using Makefile.in directly (eg make -f Makefile.in distprep) then SHELL will need to be specified on the command line (along with MANFMT in that particular case). ok djm@
* Use PICFLAG instead of hard coding -fPIC.Darren Tucker2022-02-251-1/+1
|
* upstream: Add unit tests for hpdelim.dtucker@openbsd.org2022-02-101-1/+2
| | | | OpenBSD-Regress-ID: be97b85c19895e6a1ce13c639765a3b48fd95018
* remove built-in support for md5crypt()Damien Miller2021-10-281-1/+1
| | | | | | | | Users of MD5-hashed password should arrange for ./configure to link against libxcrypt or similar. Though it would be better to avoid use of MD5 password hashing entirely, it's arguably worse than DEScrypt. feedback and ok dtucker@
* clean regress/misc/sk-dummy in cleandir targetDamien Miller2021-10-061-0/+3
|
* Remove TEST_SSH_ECC.Darren Tucker2021-09-291-1/+0
| | | | Convert the only remaining user of it to runtime detection using ssh -Q.
* Expand TEST_SHELL consistently with other vars.Darren Tucker2021-09-291-1/+1
|
* Replace `pwd` with make variable in regress cmd.Darren Tucker2021-09-291-3/+3
|
* Get BUILDDIR from autoconf.Darren Tucker2021-09-291-20/+20
| | | | Use this to replace `pwd`s in regress test command line.
* Remove trailing backslash on regress-unit-binariesDarren Tucker2021-08-171-1/+1
|
* upstream: support for using the SFTP protocol for file transfers indjm@openbsd.org2021-08-031-2/+4
| | | | | | | | | | | | | scp, via a new "-M sftp" option. Marked as experimental for now. Some corner-cases exist, in particular there is no attempt to provide bug-compatibility with scp's weird "double shell" quoting rules. Mostly by Jakub Jelen in GHPR#194 with some tweaks by me. ok markus@ Thanks jmc@ for improving the scp.1 bits. OpenBSD-Commit-ID: 6ce4c9157ff17b650ace571c9f7793d92874051c
* Put second -lssh in link line for sftp-server.Darren Tucker2021-06-181-1/+1
| | | | | | | When building --without-openssl the recent port-prngd.c change adds a dependency on atomicio, but since nothing else in sftp-server uses it, the linker may not find it. Add a second -lssh similar to other binaries.
* upstream: unit test for misc.c:strdelim() that mostly servces todjm@openbsd.org2021-06-011-1/+2
| | | | | | highlight its inconsistencies OpenBSD-Regress-ID: 8d2bf970fcc01ccc6e36a5065f89b9c7fa934195
* Pass OBJ to unit test make invocation.Darren Tucker2021-04-081-0/+1
| | | | At least the Valgrind unit tests uses $OBJ.
* enable authopt and misc unit testsDamien Miller2021-04-031-18/+56
| | | | | Neither were wired into the build, both required some build adaptations for -portable
* Point TEST_SSH_MODULI_FILE at our own moduli.Darren Tucker2021-03-131-0/+2
| | | | | This will allow the test to run without requiring a moduli file installed at the configured default path.
* upstream: remove this KEX fuzzer; it's awkward to use and doesn't playdjm@openbsd.org2021-02-261-14/+0
| | | | | | | nice with popular fuzzing drivers like libfuzzer. AFAIK nobody has used it but me. OpenBSD-Regress-ID: cad919522b3ce90c147c95abaf81b0492ac296c9
* upstream: Add PerSourceMaxStartups and PerSourceNetBlockSizedtucker@openbsd.org2021-01-111-1/+1
| | | | | | | options which provide more fine grained MaxStartups limits. Man page help jmc@, feedback & ok djm@ OpenBSD-Commit-ID: e2f68664e3d02c0895b35aa751c48a2af622047b
* upstream: Move address handling functions out into their own filedtucker@openbsd.org2021-01-111-1/+1
| | | | | | | | in order to reuse them for per-source maxstartups limiting. Supplement with some additional functions from djm's flowtools that we'll also need. ok djm@ (as part of a larger diff). OpenBSD-Commit-ID: e3e7d9ccc6c9b82e25cfef0ec83598e8e2327cbf
* upstream: Update/replace the experimental post-quantim hybrid keydjm@openbsd.org2020-12-291-1/+1
| | | | | | | | | | | | | | | | | | | | exchange method based on Streamlined NTRU Prime (coupled with X25519). The previous sntrup4591761x25519-sha512@tinyssh.org method is replaced with sntrup761x25519-sha512@openssh.com. Per the authors, sntrup4591761 was replaced almost two years ago by sntrup761. The sntrup761 implementaion, like sntrup4591761 before it, is public domain code extracted from the SUPERCOP cryptography benchmark suite (https://bench.cr.yp.to/supercop.html). Thanks for Daniel J Bernstein for guidance on algorithm selection. Patch from Tobias Heider; feedback & ok markus@ and myself (note this both the updated method and the one that it replaced are disabled by default) OpenBSD-Commit-ID: 2bf582b772d81ee24e911bb6f4b2aecfd39338ae
* Move the local m4 macrosSebastian Andrzej Siewior2020-09-111-1/+1
| | | | | | | | | | | | | The `aclocal' step is skipped during `autoreconf' because aclocal.m4 is present. Move the current aclocal.m4 which contains local macros into the m4/ folder. With this change the aclocal.m4 will be re-created during changes to the m4/ macro. This is needed so the `aclocal' can fetch m4 macros from the system if they are references in the configure script. This is a prerequisite to use PKG_CHECK_MODULES. Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
* Remove check for 'ent' command.Darren Tucker2020-08-211-1/+0
| | | | | It was added in 8d1fd57a9 for measuring entropy of ssh_prng_cmds which has long since been removed and there are no other references to it.
* upstream: avoid spurious error message when ssh-keygen creates filesdjm@openbsd.org2020-06-261-2/+1
| | | | | | outside ~/.ssh; with dtucker@ OpenBSD-Commit-ID: ac0c662d44607e00ec78c266ee60752beb1c7e08
* Hook sshsig tests up to Portable Makefiles.Darren Tucker2020-06-191-0/+17
|
* Skip building sk-dummy library if no SK support.Darren Tucker2020-05-131-1/+3
|
* explicitly manage .depend and .depend.bakDamien Miller2020-05-131-1/+4
| | | | | | | Bring back removal of .depend to give the file a known state before running makedepend, but manually move aside the current .depend file and restore it as .depend.bak afterwards so the stale .depend check works as expected.
* revert removal of .depend before makedependDamien Miller2020-05-131-1/+1
| | | | | | | | | Commit 83657eac4 started removing .depend before running makedepend to reset the contents of .depend to a known state. Unfortunately this broke the depend-check step as now .depend.bak would only ever be created as an empty file. ok dtucker
* Remove use of tail for 'make depend'.Darren Tucker2020-05-021-3/+4
| | | | | Not every tail supports +N and we can do with out it so just remove it. Prompted by mforney at mforney.org.
* Put the values from env vars back.Darren Tucker2020-04-221-18/+18
| | | | | This merges the values from the recently removed environment into make's command line arguments since we actually need those.
* Pass configure's egrep through to test-exec.sh.Darren Tucker2020-04-221-0/+1
| | | | | | Use it to create a wrapper function to call it from tests. Fixes the keygen-comment test on platforms with impoverished default egrep (eg Solaris).
* Remove unneeded env vars from t-exec invocation.Darren Tucker2020-04-221-20/+0
|
* prefer libcrypto chacha20-poly1305 where possibleDamien Miller2020-04-031-1/+1
|
* upstream: factor out reading/writing sshbufs to dedicateddjm@openbsd.org2020-01-261-1/+2
| | | | | | functions; feedback and ok markus@ OpenBSD-Commit-ID: dc09e5f1950b7acc91b8fdf8015347782d2ecd3d
* only link ssh-sk-helper against libfido2Damien Miller2019-12-141-1/+1
|
* adapt Makefile to ssh-sk-client everywhereDamien Miller2019-12-141-27/+52
|
* Sort .depend when rebuilding.Darren Tucker2019-12-111-0/+2
| | | | This makes diffs more stable between makedepend implementations.
* compile sk-dummy.so with no-PIE version of LDFLAGSDamien Miller2019-11-291-1/+2
| | | | This lets it pick up the -L path to libcrypto for example.
* (yet) another x-platform fix for sk-dummy.soDamien Miller2019-11-291-1/+3
| | | | | | | | Check for -fPIC support from compiler Compile libopenbsd-compat -fPIC Don't mix -fPIE and -fPIC when compiling
* another attempt at sk-dummy.so working x-platformDamien Miller2019-11-291-2/+4
| | | | | | | | include a fatal() implementation to satisfy libopenbsd-compat clean up .lo and .so files .gitignore .lo and .so files