★ wanayoo — archive 1999 http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/monitor_wrap.cNouvelle recherche | Portail wanayoo

CVS log for src/usr.bin/ssh/monitor_wrap.c

[BACK] Up to [OpenBSD] / src / usr.bin / ssh

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.70: download - view: text, markup, annotated - select for diffs
Tue Aug 31 11:54:45 2010 UTC (7 months, 1 week ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_9_BASE, OPENBSD_4_9, HEAD
Diff to: previous 1.69: preferred, coloured
Changes since revision 1.69: +2 -1 lines
Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and
host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA offer
better performance than plain DH and DSA at the same equivalent symmetric
key length, as well as much shorter keys.

Only the mandatory sections of RFC5656 are implemented, specifically the
three REQUIRED curves nistp256, nistp384 and nistp521 and only ECDH and
ECDSA. Point compression (optional in RFC5656 is NOT implemented).

Certificate host and user keys using the new ECDSA key types are supported.

Note that this code has not been tested for interoperability and may be
subject to change.

feedback and ok markus@

Revision 1.69: download - view: text, markup, annotated - select for diffs
Sun Mar 7 11:57:13 2010 UTC (13 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Diff to: previous 1.68: preferred, coloured
Changes since revision 1.68: +1 -18 lines
Hold authentication debug messages until after successful authentication.
Fixes an info leak of environment variables specified in authorized_keys,
reported by Jacob Appelbaum.  ok djm@

Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon Jun 22 05:39:28 2009 UTC (21 months, 3 weeks ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Diff to: previous 1.67: preferred, coloured
Changes since revision 1.67: +5 -5 lines
alphabetize includes; reduces diff vs portable and style(9).  ok stevesk djm

Revision 1.67: download - view: text, markup, annotated - select for diffs
Thu May 28 16:50:16 2009 UTC (22 months, 2 weeks ago) by andreas
Branches: MAIN
Diff to: previous 1.66: preferred, coloured
Changes since revision 1.66: +8 -1 lines
Keep track of number of bytes read and written. Needed for upcoming
changes. Most code from Martin Forssen, maf at appgate dot com.
ok markus@

Revision 1.66: download - view: text, markup, annotated - select for diffs
Mon May 25 06:48:01 2009 UTC (22 months, 2 weeks ago) by andreas
Branches: MAIN
Diff to: previous 1.65: preferred, coloured
Changes since revision 1.65: +9 -8 lines
Put the globals in packet.c into a struct and don't access it directly
from other files. No functional changes.
ok markus@ djm@

Revision 1.65: download - view: text, markup, annotated - select for diffs
Thu Mar 5 07:18:19 2009 UTC (2 years, 1 month ago) by djm
Branches: MAIN
Diff to: previous 1.64: preferred, coloured
Changes since revision 1.64: +5 -4 lines
refactor the (disabled) Schnorr proof code to make it a little more
generally useful

Revision 1.64: download - view: text, markup, annotated - select for diffs
Tue Nov 4 08:22:13 2008 UTC (2 years, 5 months ago) by djm
Branches: MAIN
CVS tags: OPENBSD_4_5_BASE, OPENBSD_4_5
Diff to: previous 1.63: preferred, coloured
Changes since revision 1.63: +165 -1 lines
Add support for an experimental zero-knowledge password authentication
method using the J-PAKE protocol described in F. Hao, P. Ryan,
"Password Authenticated Key Exchange by Juggling", 16th Workshop on
Security Protocols, Cambridge, April 2008.

This method allows password-based authentication without exposing
the password to the server. Instead, the client and server exchange
cryptographic proofs to demonstrate of knowledge of the password while
revealing nothing useful to an attacker or compromised endpoint.

This is experimental, work-in-progress code and is presently
compiled-time disabled (turn on -DJPAKE in Makefile.inc).

"just commit it.  It isn't too intrusive." deraadt@

Revision 1.63: download - view: text, markup, annotated - select for diffs
Thu Jul 10 18:08:11 2008 UTC (2 years, 9 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Diff to: previous 1.62: preferred, coloured
Changes since revision 1.62: +6 -4 lines
sync v1 and v2 traffic accounting; add it to sshd, too; ok djm@, dtucker@

Revision 1.62: download - view: text, markup, annotated - select for diffs
Thu May 8 12:21:16 2008 UTC (2 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.61: preferred, coloured
Changes since revision 1.61: +18 -4 lines
Make the maximum number of sessions run-time controllable via
a sshd_config MaxSessions knob. This is useful for disabling
login/shell/subsystem access while leaving port-forwarding working
(MaxSessions 0), disabling connection multiplexing (MaxSessions 1) or
simply increasing the number of allows multiplexed sessions.

Because some bozos are sure to configure MaxSessions in excess of the
number of available file descriptors in sshd (which, at peak, might be
as many as 9*MaxSessions), audit sshd to ensure that it doesn't leak fds
on error paths, and make it fail gracefully on out-of-fd conditions -
sending channel errors instead of than exiting with fatal().

bz#1090; MaxSessions config bits and manpage from junyer AT gmail.com

ok markus@

Revision 1.61: download - view: text, markup, annotated - select for diffs
Thu May 8 12:02:23 2008 UTC (2 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.60: preferred, coloured
Changes since revision 1.60: +2 -1 lines
Implement a channel success/failure status confirmation callback
mechanism. Each channel maintains a queue of callbacks, which will
be drained in order (RFC4253 guarantees confirm messages are not
reordered within an channel).

Also includes a abandonment callback to clean up if a channel is
closed without sending confirmation messages. This probably
shouldn't happen in compliant implementations, but it could be
abused to leak memory.

ok markus@ (as part of a larger diff)

Revision 1.60: download - view: text, markup, annotated - select for diffs
Mon Oct 29 04:08:08 2007 UTC (3 years, 5 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Diff to: previous 1.59: preferred, coloured
Changes since revision 1.59: +4 -3 lines
Send config block back to slave for invalid users too so options
set by a Match block (eg Banner) behave the same for non-existent
users.  Found by and ok djm@

Revision 1.59: download - view: text, markup, annotated - select for diffs
Fri Sep 21 08:15:29 2007 UTC (3 years, 6 months ago) by djm
Branches: MAIN
Diff to: previous 1.58: preferred, coloured
Changes since revision 1.58: +1 -61 lines
unifdef -DBSD_AUTH
unifdef -USKEY

These options have been in use for some years;
ok markus@ "no objection" millert@

Revision 1.58: download - view: text, markup, annotated - select for diffs
Tue Sep 4 03:21:03 2007 UTC (3 years, 7 months ago) by djm
Branches: MAIN
Diff to: previous 1.57: preferred, coloured
Changes since revision 1.57: +4 -3 lines
make file descriptor passing code return an error rather than call fatal()
when it encounters problems, and use this to make session multiplexing
masters survive slaves failing to pass all stdio FDs; ok markus@

Revision 1.57: download - view: text, markup, annotated - select for diffs
Thu Jun 7 19:37:34 2007 UTC (3 years, 10 months ago) by pvalchev
Branches: MAIN
CVS tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Diff to: previous 1.56: preferred, coloured
Changes since revision 1.56: +2 -2 lines
Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, must
specify umac-64@openssh.com). Provides about 20% end-to-end speedup
compared to hmac-md5. Represents a different approach to message
authentication to that of HMAC that may be beneficial if HMAC based on one
of its underlying hash algorithms is found to be vulnerable to a new attack.
http://www.ietf.org/rfc/rfc4418.txt

in conjunction with and OK djm@

Revision 1.56: download - view: text, markup, annotated - select for diffs
Tue Jun 5 06:52:37 2007 UTC (3 years, 10 months ago) by djm
Branches: MAIN
Diff to: previous 1.55: preferred, coloured
Changes since revision 1.55: +2 -2 lines
Preserve MAC ctx between packets, saving 2xhash calls per-packet.
Yields around a 12-16% end-to-end speedup for arcfour256/hmac-md5

patch from markus@ tested dtucker@ and myself, ok markus@ and me (I'm
committing at his request)

Revision 1.55: download - view: text, markup, annotated - select for diffs
Mon Feb 19 10:45:58 2007 UTC (4 years, 1 month ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Diff to: previous 1.54: preferred, coloured
Changes since revision 1.54: +17 -4 lines
Teach Match how handle config directives that are used before authentication.
This allows configurations such as permitting password authentication from
the local net only while requiring pubkey from offsite.  ok djm@, man page
bits ok jmc@

Revision 1.40.2.1: download - view: text, markup, annotated - select for diffs
Fri Oct 6 03:19:32 2006 UTC (4 years, 6 months ago) by brad
Branches: OPENBSD_3_8
Diff to: previous 1.40: preferred, coloured; next MAIN 1.41: preferred, coloured
Changes since revision 1.40: +27 -24 lines
upgrade to OpenSSH 4.4

Revision 1.40.4.1: download - view: text, markup, annotated - select for diffs
Sat Sep 30 04:06:50 2006 UTC (4 years, 6 months ago) by brad
Branches: OPENBSD_3_9
Diff to: previous 1.40: preferred, coloured; next MAIN 1.41: preferred, coloured
Changes since revision 1.40: +27 -24 lines
upgrade to OpenSSH 4.4

Revision 1.54: download - view: text, markup, annotated - select for diffs
Sat Aug 12 20:46:46 2006 UTC (4 years, 8 months ago) by miod
Branches: MAIN
CVS tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Diff to: previous 1.53: preferred, coloured
Changes since revision 1.53: +2 -2 lines
Revert previous include file ordering change, for ssh to compile under gcc2
(or until openssl include files are cleaned of parameter names in function
prototypes)

Revision 1.53: download - view: text, markup, annotated - select for diffs
Sun Aug 6 01:13:32 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.52: preferred, coloured
Changes since revision 1.52: +2 -2 lines
"zlib.h" can be <zlib.h>; ok djm@ markus@

Revision 1.52: download - view: text, markup, annotated - select for diffs
Sat Aug 5 08:28:24 2006 UTC (4 years, 8 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.51: preferred, coloured
Changes since revision 1.51: +2 -3 lines
Zap unused variables in -DSKEY code.  ok djm@

Revision 1.51: download - view: text, markup, annotated - select for diffs
Sat Aug 5 07:52:52 2006 UTC (4 years, 8 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.50: preferred, coloured
Changes since revision 1.50: +3 -1 lines
Add headers required to build with KERBEROS5=no.  ok djm@

Revision 1.50: download - view: text, markup, annotated - select for diffs
Thu Aug 3 03:34:42 2006 UTC (4 years, 8 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.49: preferred, coloured
Changes since revision 1.49: +10 -11 lines
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk
makes the pain stop in one easy step

Revision 1.49: download - view: text, markup, annotated - select for diffs
Tue Aug 1 23:22:47 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.48: preferred, coloured
Changes since revision 1.48: +2 -1 lines
move #include <stdio.h> out of includes.h

Revision 1.48: download - view: text, markup, annotated - select for diffs
Sat Jul 22 20:48:23 2006 UTC (4 years, 8 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.47: preferred, coloured
Changes since revision 1.47: +2 -1 lines
move #include <string.h> out of includes.h

Revision 1.47: download - view: text, markup, annotated - select for diffs
Tue Jul 11 20:07:25 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.46: preferred, coloured
Changes since revision 1.46: +2 -1 lines
move #include <errno.h> out of includes.h; ok markus@

Revision 1.46: download - view: text, markup, annotated - select for diffs
Thu Jul 6 16:03:53 2006 UTC (4 years, 9 months ago) by stevesk
Branches: MAIN
Diff to: previous 1.45: preferred, coloured
Changes since revision 1.45: +5 -1 lines
move #include <pwd.h> out of includes.h; ok markus@

Revision 1.45: download - view: text, markup, annotated - select for diffs
Thu Mar 30 09:58:15 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.44: preferred, coloured
Changes since revision 1.44: +4 -4 lines
replace {GET,PUT}_XXBIT macros with functionally similar functions,
silencing a heap of lint warnings. also allows them to use
__bounded__ checking which can't be applied to macros; requested
by and feedback from deraadt@

Revision 1.44: download - view: text, markup, annotated - select for diffs
Sat Mar 25 13:17:02 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.43: preferred, coloured
Changes since revision 1.43: +1 -0 lines
Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that
Theo nuked - our scripts to sync -portable need them in the files

Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat Mar 25 00:05:41 2006 UTC (5 years ago) by djm
Branches: MAIN
Diff to: previous 1.42: preferred, coloured
Changes since revision 1.42: +3 -7 lines
introduce xcalloc() and xasprintf() failure-checked allocations functions
and use them throughout openssh

xcalloc is particularly important because malloc(nmemb * size) is a
dangerous idiom (subject to integer overflow) and it is time for it to
die

feedback and ok deraadt@

Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Mar 20 18:14:02 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.41: preferred, coloured
Changes since revision 1.41: +1 -1 lines
sprinkle u_int throughout pty subsystem, ok markus

Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun Mar 19 18:51:18 2006 UTC (5 years ago) by deraadt
Branches: MAIN
Diff to: previous 1.40: preferred, coloured
Changes since revision 1.40: +0 -1 lines
RCSID() can die

Revision 1.39.4.1: download - view: text, markup, annotated - select for diffs
Sun Sep 4 18:40:02 2005 UTC (5 years, 7 months ago) by brad
Branches: OPENBSD_3_7
Diff to: previous 1.39: preferred, coloured; next MAIN 1.40: preferred, coloured
Changes since revision 1.39: +8 -11 lines
upgrade to OpenSSH 4.2

Revision 1.39.2.1: download - view: text, markup, annotated - select for diffs
Fri Sep 2 03:45:00 2005 UTC (5 years, 7 months ago) by brad
Branches: OPENBSD_3_6
Diff to: previous 1.39: preferred, coloured; next MAIN 1.40: preferred, coloured
Changes since revision 1.39: +8 -11 lines
upgrade to OpenSSH 4.2

Revision 1.40: download - view: text, markup, annotated - select for diffs
Tue May 24 17:32:43 2005 UTC (5 years, 10 months ago) by avsm
Branches: MAIN
CVS tags: OPENBSD_3_9_BASE, OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_9, OPENBSD_3_8
Diff to: previous 1.39: preferred, coloured
Changes since revision 1.39: +8 -11 lines
Switch atomicio to use a simpler interface; it now returns a size_t
(containing number of bytes read/written), and indicates error by
returning 0.  EOF is signalled by errno==EPIPE.
Typical use now becomes:

if (atomicio(read, ..., len) != len)
        err(1,"read");

ok deraadt@, cloder@, djm@

Revision 1.31.2.2: download - view: text, markup, annotated - select for diffs
Thu Aug 19 22:37:31 2004 UTC (6 years, 7 months ago) by brad
Branches: OPENBSD_3_4
Diff to: previous 1.31.2.1: preferred, coloured; branchpoint 1.31: preferred, coloured; next MAIN 1.32: preferred, coloured
Changes since revision 1.31.2.1: +24 -17 lines
upgrade to OpenSSH 3.9

Revision 1.35.2.1: download - view: text, markup, annotated - select for diffs
Thu Aug 19 04:13:26 2004 UTC (6 years, 7 months ago) by brad
Branches: OPENBSD_3_5
Diff to: previous 1.35: preferred, coloured; next MAIN 1.36: preferred, coloured
Changes since revision 1.35: +24 -17 lines
upgrade to OpenSSH 3.9

Revision 1.39: download - view: text, markup, annotated - select for diffs
Sat Jul 17 05:31:41 2004 UTC (6 years, 8 months ago) by dtucker
Branches: MAIN
CVS tags: OPENBSD_3_7_BASE, OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_7, OPENBSD_3_6
Diff to: previous 1.38: preferred, coloured
Changes since revision 1.38: +7 -2 lines
Move "Last logged in at.." message generation to the monitor, right
before recording the new login.  Fixes missing lastlog message when
/var/log/lastlog is not world-readable and incorrect datestamp when
multiple sessions are used (bz #463);  much assistance & ok markus@

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat Jul 3 11:02:25 2004 UTC (6 years, 9 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.37: preferred, coloured
Changes since revision 1.37: +3 -1 lines
Put s/key functions inside #ifdef SKEY same as monitor.c,
from des@freebsd via bz #330, ok markus@

Revision 1.37: download - view: text, markup, annotated - select for diffs
Tue Jun 22 05:05:45 2004 UTC (6 years, 9 months ago) by dtucker
Branches: MAIN
Diff to: previous 1.36: preferred, coloured
Changes since revision 1.36: +3 -3 lines
Change login->username, will prevent -Wshadow errors in Portable; ok markus@

Revision 1.36: download - view: text, markup, annotated - select for diffs
Mon Jun 21 17:36:31 2004 UTC (6 years, 9 months ago) by avsm
Branches: MAIN
Diff to: previous 1.35: preferred, coloured
Changes since revision 1.35: +14 -14 lines
make ssh -Wshadow clean, no functional changes
markus@ ok

Revision 1.22.2.2: download - view: text, markup, annotated - select for diffs
Thu Mar 4 18:18:16 2004 UTC (7 years, 1 month ago) by brad
Branches: OPENBSD_3_3
Diff to: previous 1.22.2.1: preferred, coloured; branchpoint 1.22: preferred, coloured; next MAIN 1.23: preferred, coloured
Changes since revision 1.22.2.1: +41 -6 lines
upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8

Revision 1.31.2.1: download - view: text, markup, annotated - select for diffs
Sat Feb 28 03:51:33 2004 UTC (7 years, 1 month ago) by brad
Branches: OPENBSD_3_4
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +41 -6 lines
upgrade to OpenSSH 3.8

Revision 1.35: download - view: text, markup, annotated - select for diffs
Mon Nov 17 11:06:07 2003 UTC (7 years, 4 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_5_BASE
Branch point for: OPENBSD_3_5
Diff to: previous 1.34: preferred, coloured
Changes since revision 1.34: +20 -1 lines
replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; test + ok jakob.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Wed Oct 15 09:48:45 2003 UTC (7 years, 5 months ago) by markus
Branches: MAIN
Diff to: previous 1.33: preferred, coloured
Changes since revision 1.33: +2 -2 lines
check pmonitor != NULL

Revision 1.33: download - view: text, markup, annotated - select for diffs
Sat Oct 11 11:36:23 2003 UTC (7 years, 6 months ago) by markus
Branches: MAIN
Diff to: previous 1.32: preferred, coloured
Changes since revision 1.32: +10 -3 lines
return NULL for missing banner; ok djm@

Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Sep 23 20:17:11 2003 UTC (7 years, 6 months ago) by markus
Branches: MAIN
Diff to: previous 1.31: preferred, coloured
Changes since revision 1.31: +13 -4 lines
replace fatal_cleanup() and linked list of fatal callbacks with static
cleanup_exit() function.  re-refine cleanup_exit() where appropriate,
allocate sshd's authctxt eary to allow simpler cleanup in sshd.
tested by many, ok deraadt@

Revision 1.19.2.2: download - view: text, markup, annotated - select for diffs
Tue Sep 16 21:20:26 2003 UTC (7 years, 6 months ago) by brad
Branches: OPENBSD_3_2
Diff to: previous 1.19.2.1: preferred, coloured; branchpoint 1.19: preferred, coloured; next MAIN 1.20: preferred, coloured
Changes since revision 1.19.2.1: +64 -56 lines
upgrade to OpenSSH 3.7

Revision 1.22.2.1: download - view: text, markup, annotated - select for diffs
Tue Sep 16 20:50:43 2003 UTC (7 years, 6 months ago) by brad
Branches: OPENBSD_3_3
Diff to: previous 1.22: preferred, coloured
Changes since revision 1.22: +64 -56 lines
upgrade to OpenSSH 3.7

Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Aug 28 12:54:34 2003 UTC (7 years, 7 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_4_BASE
Branch point for: OPENBSD_3_4
Diff to: previous 1.30: preferred, coloured
Changes since revision 1.30: +1 -36 lines
remove kerberos support from ssh1, since it has been replaced with GSSAPI;
but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...

Revision 1.30: download - view: text, markup, annotated - select for diffs
Sun Aug 24 17:36:52 2003 UTC (7 years, 7 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.29: preferred, coloured
Changes since revision 1.29: +4 -2 lines
64 bit cleanups; markus ok

Revision 1.29: download - view: text, markup, annotated - select for diffs
Fri Aug 22 10:56:09 2003 UTC (7 years, 7 months ago) by markus
Branches: MAIN
Diff to: previous 1.28: preferred, coloured
Changes since revision 1.28: +71 -2 lines
support GSS API user authentication; patches from Simon Wilkinson,
stripped down and tested by Jakob and myself.

Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Jul 22 13:35:22 2003 UTC (7 years, 8 months ago) by markus
Branches: MAIN
Diff to: previous 1.27: preferred, coloured
Changes since revision 1.27: +1 -37 lines
remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);
test+ok henning@

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sat Jun 28 16:23:06 2003 UTC (7 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.26: preferred, coloured
Changes since revision 1.26: +3 -3 lines
deal with typing of write vs read in atomicio

Revision 1.26: download - view: text, markup, annotated - select for diffs
Mon Apr 7 08:29:57 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.25: preferred, coloured
Changes since revision 1.25: +2 -2 lines
typo: get correct counters; introduced during rekeying change.

Revision 1.5.2.5: download - view: text, markup, annotated - select for diffs
Thu Apr 3 22:35:17 2003 UTC (8 years ago) by miod
Branches: OPENBSD_3_1
Diff to: previous 1.5.2.4: preferred, coloured; branchpoint 1.5: preferred, coloured; next MAIN 1.6: preferred, coloured
Changes since revision 1.5.2.4: +22 -10 lines
Merge OpenSSH 3.6.1

Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed Apr 2 09:48:07 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.24: preferred, coloured
Changes since revision 1.24: +11 -3 lines
reapply rekeying chage, tested by henning@, ok djm@

Revision 1.24: download - view: text, markup, annotated - select for diffs
Tue Apr 1 10:22:21 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.23: preferred, coloured
Changes since revision 1.23: +3 -11 lines
backout rekeying changes (for 3.6.1)

Revision 1.23: download - view: text, markup, annotated - select for diffs
Tue Apr 1 10:10:23 2003 UTC (8 years ago) by markus
Branches: MAIN
Diff to: previous 1.22: preferred, coloured
Changes since revision 1.22: +11 -3 lines
rekeying bugfixes and automatic rekeying:

* both client and server rekey _automatically_
      (a) after 2^31 packets, because after 2^32 packets
          the sequence number for packets wraps
      (b) after 2^(blocksize_in_bits/4) blocks
  (see: http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt)
  (a) and (b) are _enabled_ by default, and only disabled for known
  openssh versions, that don't support rekeying properly.
* client option 'RekeyLimit'
* do not reply to requests during rekeying

Revision 1.19.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 1 00:12:13 2003 UTC (8 years ago) by margarida
Branches: OPENBSD_3_2
Diff to: previous 1.19: preferred, coloured
Changes since revision 1.19: +22 -10 lines
Update to OpenSSH 3.6

Revision 1.22: download - view: text, markup, annotated - select for diffs
Sun Feb 16 17:30:33 2003 UTC (8 years, 1 month ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_3_BASE
Branch point for: OPENBSD_3_3
Diff to: previous 1.21: preferred, coloured
Changes since revision 1.21: +14 -3 lines
fix permitrootlogin forced-commands-only for privsep; bux #387; ok provos@

Revision 1.21: download - view: text, markup, annotated - select for diffs
Tue Feb 4 09:33:22 2003 UTC (8 years, 2 months ago) by markus
Branches: MAIN
Diff to: previous 1.20: preferred, coloured
Changes since revision 1.20: +8 -7 lines
skey/bsdauth: use 0 to indicate failure instead of -1, because
the buffer API only supports unsigned ints.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Thu Nov 21 23:03:51 2002 UTC (8 years, 4 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.19: preferred, coloured
Changes since revision 1.19: +2 -2 lines
KNF

Revision 1.7.2.3: download - view: text, markup, annotated - select for diffs
Fri Oct 11 14:53:06 2002 UTC (8 years, 6 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.7.2.2: preferred, coloured; next MAIN 1.8: preferred, coloured
Changes since revision 1.7.2.2: +86 -16 lines
Update to OpenSSH 3.5

Revision 1.5.2.4: download - view: text, markup, annotated - select for diffs
Fri Oct 11 14:51:52 2002 UTC (8 years, 6 months ago) by miod
Branches: OPENBSD_3_1
Diff to: previous 1.5.2.3: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.3: +86 -16 lines
Update to OpenSSH 3.5

Revision 1.19: download - view: text, markup, annotated - select for diffs
Thu Sep 26 11:38:43 2002 UTC (8 years, 6 months ago) by markus
Branches: MAIN
CVS tags: OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_2
Diff to: previous 1.18: preferred, coloured
Changes since revision 1.18: +37 -1 lines
krb4 + privsep; ok dugsong@, deraadt@

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Sep 9 14:54:15 2002 UTC (8 years, 7 months ago) by markus
Branches: MAIN
Diff to: previous 1.17: preferred, coloured
Changes since revision 1.17: +2 -2 lines
signed vs unsigned from -pedantic; ok henning@

Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon Sep 9 06:48:06 2002 UTC (8 years, 7 months ago) by itojun
Branches: MAIN
Diff to: previous 1.16: preferred, coloured
Changes since revision 1.16: +36 -1 lines
kerberos support for privsep.  confirmed to work by lha@stacken.kth.se
patch from markus

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Jul 4 10:41:47 2002 UTC (8 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.15: preferred, coloured
Changes since revision 1.15: +7 -10 lines
don't allocate, copy, and discard if there is not interested in the data; ok deraadt@

Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Jul 4 04:15:33 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.14: preferred, coloured
Changes since revision 1.14: +3 -1 lines
patch memory leaks; grendel@zeitbombe.org

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sun Jun 30 21:59:45 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.13: preferred, coloured
Changes since revision 1.13: +3 -3 lines
minor KNF

Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Jun 28 01:50:37 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.12: preferred, coloured
Changes since revision 1.12: +3 -3 lines
use ssize_t

Revision 1.5.2.3: download - view: text, markup, annotated - select for diffs
Wed Jun 26 15:30:38 2002 UTC (8 years, 9 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.5.2.2: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.2: +75 -67 lines
Pull in OpenSSH-3.4

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Jun 26 15:00:32 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.11: preferred, coloured
Changes since revision 1.11: +4 -4 lines
more %u

Revision 1.7.2.2: download - view: text, markup, annotated - select for diffs
Sat Jun 22 07:23:17 2002 UTC (8 years, 9 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.7.2.1: preferred, coloured
Changes since revision 1.7.2.1: +75 -67 lines
Update OpenSSH to version 3.3 (with local changes, configuration files still
living in /etc and privsep user being nobody).

Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Jun 19 18:01:00 2002 UTC (8 years, 9 months ago) by markus
Branches: MAIN
Diff to: previous 1.10: preferred, coloured
Changes since revision 1.10: +11 -3 lines
make the monitor sync the transfer ssh1 session key;
transfer keycontext only for RC4 (this is still depends on EVP
implementation details and is broken).

Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Jun 19 00:27:55 2002 UTC (8 years, 9 months ago) by deraadt
Branches: MAIN
Diff to: previous 1.9: preferred, coloured
Changes since revision 1.9: +5 -5 lines
KNF done automatically while reading....

Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Jun 14 21:35:00 2002 UTC (8 years, 10 months ago) by todd
Branches: MAIN
Diff to: previous 1.8: preferred, coloured
Changes since revision 1.8: +2 -2 lines
spelling; from Brian Poole <raj@cerias.purdue.edu>

Revision 1.8: download - view: text, markup, annotated - select for diffs
Tue Jun 4 23:05:49 2002 UTC (8 years, 10 months ago) by markus
Branches: MAIN
Diff to: previous 1.7: preferred, coloured
Changes since revision 1.7: +62 -62 lines
__FUNCTION__ -> __func__

Revision 1.7.4.1: download - view: text, markup, annotated - select for diffs
Sun Jun 2 22:56:10 2002 UTC (8 years, 10 months ago) by miod
Branches: OPENBSD_2_9
Diff to: previous 1.7: preferred, coloured; next MAIN 1.8: preferred, coloured
Changes since revision 1.7: +1 -1 lines
Upgrade to OpenSSH 3.2.3.

Except for improbable compilation error fixes, this should be the last
commit made to the 2.9-STABLE branche. Have fun upgrading.

Revision 1.5.2.2: download - view: text, markup, annotated - select for diffs
Sat May 18 04:50:38 2002 UTC (8 years, 10 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.5.2.1: preferred, coloured; branchpoint 1.5: preferred, coloured
Changes since revision 1.5.2.1: +0 -0 lines
Update to OpenSSH-3.2.3

Revision 1.5.2.1: download - view: text, markup, annotated - select for diffs
Sat May 18 04:12:11 2002 UTC (8 years, 10 months ago) by jason
Branches: OPENBSD_3_1
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +60 -42 lines
Update to OpenSSH-3.2.2

Revision 1.7.2.1: download - view: text, markup, annotated - select for diffs
Fri May 17 00:03:23 2002 UTC (8 years, 10 months ago) by miod
Branches: OPENBSD_3_0
Diff to: previous 1.7: preferred, coloured
Changes since revision 1.7: +1 -1 lines
Update OpenSSH to version 3.2.2.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed May 15 15:47:49 2002 UTC (8 years, 11 months ago) by mouring
Branches: MAIN
Branch point for: OPENBSD_3_0, OPENBSD_2_9
Diff to: previous 1.6: preferred, coloured
Changes since revision 1.6: +44 -44 lines
'monitor' variable clashes with at least one lame platform (NeXT).  Renamed
to 'pmonitor'.  provos@

Revision 1.6: download - view: text, markup, annotated - select for diffs
Sun May 12 23:53:45 2002 UTC (8 years, 11 months ago) by djm
Branches: MAIN
Diff to: previous 1.5: preferred, coloured
Changes since revision 1.5: +19 -1 lines
Fix sshd Banner option for privsep; ok markus@ provos@

Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Mar 25 20:12:10 2002 UTC (9 years ago) by stevesk
Branches: MAIN
CVS tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Diff to: previous 1.4: preferred, coloured
Changes since revision 1.4: +3 -3 lines
ssize_t args use "%ld" and cast to (long)
size_t args use "%lu" and cast to (u_long)
ok markus@ and thanks millert@

Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Mar 19 14:27:39 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.3: preferred, coloured
Changes since revision 1.3: +1 -13 lines
make getpwnamallow() allways call pwcopy()

Revision 1.3: download - view: text, markup, annotated - select for diffs
Tue Mar 19 10:41:32 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.2: preferred, coloured
Changes since revision 1.2: +6 -6 lines
whitespace KNF

Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Mar 19 10:35:39 2002 UTC (9 years ago) by markus
Branches: MAIN
Diff to: previous 1.1: preferred, coloured
Changes since revision 1.1: +4 -4 lines
clean up prototypes

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Mar 18 17:28:37 2002 UTC (9 years ago) by provos
Branches: MAIN
implementation of the interface between privileged and unprivileged process
for ssh-privsep

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

OpenBSD CVSweb server maintained by <beck@openbsd.org>