summaryrefslogtreecommitdiffstats
path: root/secure/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* For users of FreeBSD <= 6.2 we recommend during the x.org 7.x upgradekris2008-03-051-1/+10
| | | | | | | | | | | | | | | | | | | | | that they add X11BASE=${LOCALBASE} to /etc/make.conf since X11BASE was hard-wired to the now-wrong location in old releases. However, both X11BASE and LOCALBASE have moved out of scope of src/ into ports/ now, which causes problems for upgraded users who have old make.conf files still containing the above setting. X11BASE becomes null and we instruct ssh and sshd to look for xauth in /bin/xauth where it is unlikely to be found. Instead, provide a copy of the default LOCALBASE?=/usr/local setting here. We also have to deal with the case where the user only overrides LOCALBASE and doesn't set an explicit X11BASE (in ports it will be set implicitly but not here), which will also move the location of xauth. MFC after: 3 days Reported by: rwatson
* getopt(3) returns -1, not EOF.ru2008-02-191-1/+1
|
* Upgrade to OpenSSL 0.9.8e.simon2007-03-1538-83/+85
|
* Fix static compilation.ru2006-10-071-2/+2
|
* Upgrade to OpenSSL 0.9.8d.simon2006-10-0138-43/+80
|
* Upgrade to OpenSSL 0.9.8b.simon2006-07-2940-102/+1666
|
* Add a manual dependency on ssh_namespace.h.des2006-05-137-0/+14
| | | | Discussed with: ru
* Introduce a namespace munging hack inspired by NetBSD to avoid pollutingdes2006-05-137-7/+7
| | | | | | | | the namespace of applications which inadvertantly link in libssh (usually through pam_ssh) Suggested by: lukem@netbsd.org MFC after: 6 weeks
* Reimplementation of world/kernel build options. For details, see:ru2006-03-172-3/+7
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Add a new extensible GSS-API layer which can support GSS-API plugins,dfr2005-12-291-3/+3
| | | | | | | | | similar the the Solaris implementation. Repackage the krb5 GSS mechanism as a plugin library for the new implementation. This also includes a comprehensive set of manpages for the GSS-API functions with text mostly taken from the RFC. Reviewed by: Love Hörnquist Åstrand <lha@it.su.se>, ru (build system), des (openssh parts)
* Revert the commits that made libssh an INTERNALLIB; they caused too muchdes2005-06-077-22/+10
| | | | | | trouble, especially on amd64. Requested by: ru
* Make libssh an INTERNALLIB like it is in {Net,Open}BSD.des2005-06-067-10/+22
|
* Update for OpenSSH 4.1p1.des2005-06-052-3/+3
|
* Update OpenSSL 0.9.7d -> 0.9.7e.nectar2005-02-2536-1638/+1778
|
* Sync program's usage() with manpage's SYNOPSIS.ru2005-02-101-1/+1
|
* Correctly hide the command arguments.dds2005-01-171-15/+2
| | | | | PR: bin/76374 MFC after: 2 weeks
* Update for 3.8p1, including workaround for a bug in gss-genr.c.des2004-02-262-2/+3
|
* style.Makefile(5):johan2004-02-231-1/+1
| | | | Use WARNS?= instead of WARNS=.
* Fixed static linkage.ru2004-01-081-2/+5
| | | | Reviewed by: des
* Enable GSSAPI support. [1]des2004-01-081-4/+4
| | | | | | Also remove some duplicates from ssh's SRCS. Submitted by: [1] Björn Grönvall <bg@sics.se>
* Update Makefiles for OpenSSH 3.7.1p2.des2004-01-077-14/+14
|
* Explicitly add libz and libcrypto to LDADD for any ssh utilities missinggordon2003-08-195-10/+10
| | | | | | | | | | | | it. While not strictly required, it unbreaks the cross-build world that is resulting from moving the libraries around. I have a more permanent solution to this problem in the works, but I asked des for permission to commit this to get the ball rolling. This also makes the ssh build more along the lines of what the openssh-portable and OpenBSD openssh Makefile glue does. Reviewed by: des
* Very big makeover in the way telnet, telnetd and libtelnet are built.markm2003-07-162-24/+0
| | | | | | | | | | | | | | | | | | | | | | | Previously, there were two copies of telnet; a non-crypto version that lived in the usual places, and a crypto version that lived in crypto/telnet/. The latter was built in a broken manner somewhat akin to other "contribified" sources. This meant that there were 4 telnets competing with each other at build time - KerberosIV, Kerberos5, plain-old-secure and base. KerberosIV is no longer in the running, but the other three took it in turns to jump all over each other during a "make buildworld". As the crypto issue has been clarified, and crypto _calls_ are not a problem, crypto/telnet has been repo-copied to contrib/telnet, and with this commit, all telnets are now "contribified". The contrib path was chosen to not destroy history in the repository, and differs from other contrib/ entries in that it may be worked on as "normal" BSD code. There is no dangerous crypto in these sources, only a very weak system less strong than enigma(1). Kerberos5 telnet and Secure telnet are now selected by using the usual macros in /etc/make.conf, and the build process is unsurprising and less treacherous.
* Fixed "make checkdpadd".ru2003-07-021-2/+2
| | | | OK'ed by: markm
* Fix for the NO_OPENSSL case.markm2003-06-081-2/+2
| | | | Reported by: Marius Strobl <marius@alchemy.franken.de>
* Modernise. Use libcrypto instead of libcipher for DES.markm2003-06-023-382/+427
|
* Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extramarkm2003-05-052-2/+2
| | | | | cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked.
* We no longer have a separate kerberos distribution. Its now justmarkm2003-04-301-1/+0
| | | | part of the regular security dist.
* The including makefile's directory is tried first for .include "...".ru2003-04-301-1/+1
|
* Most things depend on !defined(NO_OPENSSL); make it look so.ru2003-04-301-3/+3
|
* NOSECURE is implied by NOCRYPT, meaning if the latter is definedru2003-04-301-1/+1
| | | | we won't be here.
* Remove Kerberos IV shims.des2003-04-231-1/+1
|
* Update for 3.6.1p1; also remove Kerberos IV shims.des2003-04-231-7/+0
|
* The .Nm utilitycharnier2003-03-241-4/+6
|
* Fix mixed up arguments passed to a locally defined err(int, char *)mtm2003-03-071-4/+4
| | | | | | | | function. Approved by: markm (mentor) Submitted by: till toenges <tt@mail.isis.de> PR: bin/48963
* Handle includes the normal way.ru2003-02-271-4/+1
| | | | | Reviewed by: markm Approved by: nectar
* Regenerate man pages after import of OpenSSL 0.9.7a.nectar2003-02-1933-69/+153
|
* Install the OpenSSL man pages in /usr/share/openssl/mannectar2003-02-1035-114/+144
| | | | and remove the WANT_OPENSSL_MANPAGES knob.
* Update for OpenSSL 0.9.7. No assembler code at the moment. Thismarkm2003-01-2835-17/+11334
| | | | will follow.
* Remove myself as maintainer of openssl; I no longer have enough time tokris2002-11-211-2/+0
| | | | devote to it.
* Update for OpenSSH 3.5p1.des2002-10-291-1/+1
|
* ssh-keysign(8) belongs in /usr/libexec, not in /usr/bin, and needs to bedes2002-07-053-16/+1
| | | | | | | setuid so ssh(1) doesn't have to be. Pointy hat to: des Submitted by: Katsuyuki TATEISHI <katsu@iec.hiroshima-u.ac.jp>
* No guts, no glory. Switch to OpenSSH-portable.des2002-06-258-1/+9
| | | | Sponsored by: DARPA, NAI Labs
* My previous style commits weren't entirely right. Fix some bugs Ides2002-06-247-23/+11
| | | | | | introduced, and a few more I hadn't yet fixed. Submitted by: bde
* Previous commit made no sense.des2002-06-241-1/+2
|
* Fix style and unbreal static build.des2002-06-245-11/+10
|
* Install the new man pages.des2002-06-231-1/+1
|
* Update Makefiles for OpenSSH 3.3.des2002-06-232-1/+14
|
* Build using pregenerated manpages; don't use perl to translate .pod's.markm2002-05-141-8/+1
| | | | The translated .pod's have already been committed.
* Milestone #1 in cross-arch make releases.ru2002-04-261-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not install games and profiled libraries to the ${CHROOTDIR} with the initial installworld. Eliminate the need in the second installworld. For that, make sure _everything_ is built in the "world" environment, using the right tool chain. Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the buildworld process into stages, and skip some stages when SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5 dists). Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running makewhatis(1) at the end of installworld (used when making crypto, krb4, and krb5 dists). In release/scripts/doFS.sh, ensure that the correct boot blocks are used. Moved the creation of the "crypto" dist from release.5 to release.2. In release.3 and doMFSKERN, build kernels in the "world" environment. KERNELS now means "additional" kernels, GENERIC is always built. Ensure we build crunched binaries in the "world" environment. Obfuscate release/Makefile some more (WMAKEENV) to achieve this. Inline createBOOTMFS target. Use already built GENERIC kernel modules to augment mfsfd's /stand/modules. GC doMODULES as such. Assorted fixes: Get rid of the "afterdistribute" target by moving the single use of it from sys/Makefile to etc/Makefile's "distribute". Makefile.inc1: apparently "etc" no longer needs to be last for "distribute" to succeed. gnu/usr.bin/perl/library/Makefile.inc: do not override the "install" and "distribute" targets, do it the "canonical" way. release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and catpages appear in the right dists. Note that because Perl does not respect the MANBUILDCAT (and NOMAN), this results in a loss of /usr/share/perl/man/cat* empty directories. This will be fixed soon. Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it means "make KerberosIV"), as documented in the make.conf(5) manpage. Most of the userland makefiles did not test it for "YES" anyway. XXX Should specialized kerberized libpam versions be included into the krb4 and krb5 dists? (libpam.a would be incorrect anyway if both krb4 and krb5 dists were choosen.) Make sure "games" dist is made before "catpages", otherwise games catpages settle in the wrong dist. Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
OpenPOWER on IntegriCloud