summaryrefslogtreecommitdiffstats
path: root/crypto/openssh
Commit message (Collapse)AuthorAgeFilesLines
* Add a -x option that causes ssh-agent(1) to exit when all clients havedes2011-10-072-4/+32
| | | | | | disconnected. MFC after: 1 week
* Upgrade to OpenSSH 5.9p1.des2011-10-0586-1997/+2772
|\ | | | | | | MFC after: 3 months
* | Belatedly regenerate after application of the HPN patch.des2011-09-281-1/+4
| |
* | Remove the svn:keywords property and restore the historical $FreeBSD$ tag.des2011-09-161-1/+1
| | | | | | | | | | Approved by: re (kib) MFC after: 3 weeks
* | Fix two more $FreeBSD$ keywords.brooks2011-08-032-2/+2
| | | | | | | | | | Reported by: pluknet Approved by: re (implicit)
* | Add support for dynamically adjusted buffers to allow the full use ofbrooks2011-08-0331-43/+747
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the bandwidth of long fat pipes (i.e. 100Mbps+ trans-oceanic or trans-continental links). Bandwidth-delay products up to 64MB are supported. Also add support (not compiled by default) for the None cypher. The None cypher can only be enabled on non-interactive sessions (those without a pty where -T was not used) and must be enabled in both the client and server configuration files and on the client command line. Additionally, the None cypher will only be activated after authentication is complete. To enable the None cypher you must add -DNONE_CIPHER_ENABLED to CFLAGS via the make command line or in /etc/make.conf. This code is a style(9) compliant version of these features extracted from the patches published at: http://www.psc.edu/networking/projects/hpn-ssh/ Merging this patch has been a collaboration between me and Bjoern. Reviewed by: bz Approved by: re (kib), des (maintainer)
* | Merge two upstream patches from vendor branch. No functional changes.des2011-05-052-2/+3
| |
* | Upgrade to OpenSSH 5.8p2.des2011-05-04126-4246/+5749
|\ \ | |/
* | Upgrade to OpenSSH 5.6p1.des2010-11-1168-979/+3236
|\ \ | |/
* | Forgot to svn rm this when I imported 5.4p1.des2010-11-101-25/+0
| |
* | Remove copyright strings printed at login time via login(1) or sshd(8).emaste2010-09-281-18/+0
| | | | | | | | | | | | | | | | | | | | It is not clear to what this copyright should apply, and this is in line with what other operating systems do. For ssh specifically, printing of the copyright string is not in the upstream version so this reduces our FreeBSD-local diffs. Approved by: core, des (ssh)
* | More commasdes2010-06-012-2/+2
| |
* | Missing commasdes2010-06-0111-11/+11
| |
* | Fix .Dd line: FreeBSD's mdoc code doesn't understand OpenBSD's $Mdocdate$.cperciva2010-05-281-1/+1
| | | | | | | | MFC after: 3 days
* | Upgrade to OpenSSH 5.5p1.des2010-04-2825-88/+254
| |
* | Enhance r199804 by marking the daemonised child as immune to OOM insteadkib2010-04-081-4/+4
| | | | | | | | | | | | | | | | | | of short-living parent. Only mark the master process that accepts connections, do not protect connection handlers spawned from inetd. Submitted by: Mykola Dzham <i levsha me> Reviewed by: attilio MFC after: 1 week
* | Upgrade to OpenSSH 5.4p1.des2010-03-09124-3006/+10880
|\ \ | |/ | | | | MFC after: 1 month
* | Add a missing $FreeBSD$ string.ed2010-01-131-0/+1
| | | | | | | | | | | | | | I was requested to add this string to any file that was modified by my commit, which I forgot to do so. Requested by: des
* | Make OpenSSH work with utmpx.ed2010-01-134-27/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Partially revert r184122 (sshd.c). Our ut_host is now big enough to fit proper hostnames. - Change config.h to match reality. - defines.h requires UTMPX_FILE to be set by <utmpx.h> before it allows the utmpx code to work. This makes no sense to me. I've already mentioned this upstream. - Add our own platform-specific handling of lastlog. The version I will send to the OpenSSH folks will use proper autoconf generated definitions instead of `#if 1'.
* | Avoid sshd, cron, syslogd and inetd to be killed under high-pressure swapattilio2009-11-251-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | environments. Please note that this can't be done while such processes run in jails. Note: in future it would be interesting to find a way to do that selectively for any desired proccess (choosen by user himself), probabilly via a ptrace interface or whatever. Obtained from: Sandvine Incorporated Reviewed by: emaste, arch@ Sponsored by: Sandvine Incorporated MFC: 1 month
* | Fix globbingdes2009-11-101-0/+2
| | | | | | | | | | Noticed by: delphij, David Cornejo <dave@dogwood.com> Forgotten by: des
* | Remove dupe.des2009-10-111-1/+0
| |
* | Add more symbols that need to be masked:des2009-10-051-1/+19
| | | | | | | | | | | | | | - initialized and uninitialized data - symbols from roaming_dummy.c which end up in pam_ssh Update the command line used to generate the #defines.
* | Upgrade to OpenSSH 5.3p1.des2009-10-0173-1077/+1931
|\ \ | |/
* | Update and remove CVS-specific itemsdes2009-08-131-3/+1
| | | | | | | | Approved by: re (kib)
* | Use the closefrom(2) system call.jhb2009-06-162-2/+1
| | | | | | | | Reviewed by: des
* | Upgrade to OpenSSH 5.2p1.des2009-05-2276-4439/+3910
|\ \ | |/ | | | | MFC after: 3 months
* | At some point, construct_utmp() was changed to use realhostname() to filldes2008-10-212-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | in the struct utmp due to concerns about the length of the hostname buffer. However, this breaks the UseDNS option. There is a simpler and better solution: initialize utmp_len to the correct value (UT_HOSTSIZE instead of MAXHOSTNAMELEN) and let get_remote_name_or_ip() worry about the size of the buffer. PR: bin/97499 Submitted by: Bruce Cran <bruce@cran.org.uk> MFC after: 1 week
* | Our groff doesn't understand $Mdocdate$, so replace them with bare dates.des2008-09-2913-13/+13
| | | | | | | | MFC after: 3 days
* | MFV "xmalloc: zero size" fix.des2008-09-241-1/+2
| | | | | | | | MFC after: 1 week
* | Remove some unused files.des2008-09-012-1251/+0
| |
* | Set SIZEOF_LONG_INT and SIZEOF_LONG_LONG_INT to plausible values. Theydes2008-09-011-2/+2
| | | | | | | | aren't used for anything, but that's no excuse for being silly.
* | Use net.inet.ip.portrange.reservedhigh instead of IPPORT_RESERVED.des2008-08-201-1/+14
| | | | | | | | | | | | | | Submitted upstream, no reaction. Submitted by: delphij@ MFC after: 2 weeks
* | Upgrade to OpenSSH 5.1p1.des2008-08-01171-4658/+13145
|\ \ | |/ | | | | | | | | | | | | | | | | I have worked hard to reduce diffs against the vendor branch. One notable change in that respect is that we no longer prefer DSA over RSA - the reasons for doing so went away years ago. This may cause some surprises, as ssh will warn about unknown host keys even for hosts whose keys haven't changed. MFC after: 6 weeks
| * Properly flatten openssh/dist.des2008-07-22407-109174/+0
| |
| * Revert part of 180714 - the intent was to flatten dist, not to nuke it.des2008-07-22407-0/+109174
| |
| * Flatten the OpenSSH vendor tree for 3.x and newer.des2008-07-22407-109174/+0
| |
* | Another file with no local changes.des2008-08-011-1/+0
| | | | | | | | "This time for sure!"
* | Another file with no local changes.des2008-08-011-1/+0
| |
* | Another four files without local changes. This is driving me nuts -des2008-08-014-4/+0
| | | | | | | | every time I think I got them all, another one pops up.
* | Yet another file with no local changes.des2008-08-011-1/+0
| |
* | Accidentally mangled this one in the previous commit.des2008-08-011-1/+1
| |
* | More files which no longer have any local changes.des2008-08-018-8/+0
| |
* | These two files have no local patches except to prevent expansion of thedes2008-08-012-4/+2
| | | | | | | | | | original $FreeBSD$ keywords. Revert those changes, and simply disable keyword expansion.
* | Last remains of old OPIE patchdes2008-08-011-8/+0
| |
* | We no longer have any local changes here.des2008-08-011-1/+0
| |
* | Tag expansion is no longer needed (svn handles them correctly).des2008-08-011-8/+2
| | | | | | | | Add svn command to diff against vendor branch.
* | This is no longer needed.des2008-08-011-9/+0
| |
* | Cleanup.des2008-08-012-27/+26
| |
* | Ugh. Set svn:mergeinfo correctly.des2008-08-011-0/+1
| |
OpenPOWER on IntegriCloud