summaryrefslogtreecommitdiffstats
path: root/secure/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Adjust for OpenSSH 3.1.des2002-03-182-2/+2
| | | | Sponsored by: DARPA, NAI Labs
* Now that cross-tools ld(1) has been fixed to look for dynamicru2002-02-086-12/+12
| | | | | | | | | | dependencies in the correct place, record the fact that -lssh depends on -lcrypto and -lz. Removed false dependencies on -lz (except ssh(1) and sshd(8)). Removed false dependencies on -lcrypto and -lutil for scp(1). Reviewed by: markm
* Add pam_ssh support to the static PAM library, libpam.a:ru2002-01-237-12/+12
| | | | | | | | | | | - Spam /usr/lib some more by making libssh a standard library. - Tweak ${LIBPAM} and ${MINUSLPAM}. - Garbage collect unused libssh_pic.a. - Add fake -lz dependency to secure/ makefiles needed for dynamic linkage with -lssh. Reviewed by: des, markm Approved by: markm
* Clean up makefiles, and turn on WARNS=2. Take into account the telnetmarkm2001-11-301-7/+9
| | | | #if cleanup.
* Diff reduce all the crypto telnet Makefiles.markm2001-08-201-1/+1
|
* Link to libcipher in the usual way. `bdes' depended on a nonexistentbde2001-08-031-10/+2
| | | | | | | library. This only worked because of the undocmented feature of make(1) that targets named foo.a are always up to date. Fixed some style bugs.
* Revamp and diff-reduce the various secure telnets. Make sure thatmarkm2001-08-031-3/+3
| | | | | Kerberos5 has _a_ telnet (which is not currently K5 enabled). Incorporate BDE's static linking fixes.
* Fixed world breakage when NOSHARED=yes. libmp now depends on libcrypto,bde2001-07-301-2/+2
| | | | so it must be linked before libcrypto to work right.
* Added missing DPADD and CLEANFILES.ru2001-07-121-0/+3
|
* Fixed world breakage in previous commit. -lpam must never be usedbde2001-05-091-4/+4
| | | | | | | | | directly (except in the definition of MINUSLPAM in bsd.libnames.mk) since it doesn't give all the libraries necessary for static linkage. Fixed missing ${LIBPAM} in DPADD. Fixed some style bugs in DPADD and LDADD.
* Add PAM support to SRA authentication. Cribbed mostly from ftpd. Thisnsayer2001-05-071-1/+1
| | | | | doesn't solve the problem of root being allowed to log in, but that sort of thing is something PAM should be doing anyway.
* Follow the OpenSSH 2.9 upgrade with the infrastructure. Two newgreen2001-05-048-12/+37
| | | | programs are now included: sftp(1) and ssh-keyscan(1).
* Bye-bye /usr/lib/libtelnet.a. This should fix ``make release'' brokeness.ru2001-03-281-1/+1
| | | | Approved by: markm
* secure/ build fixes:ru2001-03-268-54/+22
| | | | | | | | | | | | | | | | | | | | - TELNETOBJDIR is gone. `buildworld' already installs libtelnet.a in ${WORLDTMP}/usr/lib, and we have LIBRARY_PATH pointing there. - SSHDIR (formerly SSHSRC) is now shared between all SSH modules. New LIBSSH is introduced for libssh.a (an internal static lib). Previously, build without prior `obj' was broken; SSH modules always looked for libssh.a in ${.OBJDIR}. Also, the dependancies on the libssh.a were missing. - libtelnet/ did not install the crypto version of telnet.h into /usr/include/arpa. - Removed BINOWN, BINMODE, BINDIR and SRCS with default values. Reviewed by: markm - MAN[1-9] -> MAN.
* man(7) -> mdoc(7).ru2001-01-161-140/+173
|
* Disable /usr/bin/ssh being setuid root by default. Let the variablegreen2000-11-141-0/+2
| | | | | | | | | | ENABLE_SUID_SSH being defined reenable it for those that want it. This follows discussion favoring the change from September. It is not usually necessary to be setuid root, possibly less safe, and less convenient (cannot use $HOSTALIASES, for example). Submitted by: jedgar
* Update for OpenSSL 0.9.6kris2000-11-131-5/+6
|
OpenPOWER on IntegriCloud