OpenBSD CVS

CVS log for src/usr.bin/ssh/auth2-chall.c


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.54 / (download) - annotate - [select for diffs], Sun Oct 18 11:32:01 2020 UTC (3 years, 6 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, HEAD
Changes since 1.53: +18 -19 lines
Diff to previous 1.53 (colored)

use the new variant log macros instead of prepending __func__ and
appending ssh_err(r) manually; ok markus@

Revision 1.53 / (download) - annotate - [select for diffs], Wed Feb 26 13:40:09 2020 UTC (4 years, 2 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.52: +2 -3 lines
Diff to previous 1.52 (colored)

change explicit_bzero();free() to freezero()

While freezero() returns early if the pointer is NULL the tests for
NULL in callers are left to avoid warnings about passing an
uninitialised size argument across a function boundry.

ok deraadt@ djm@

Revision 1.52 / (download) - annotate - [select for diffs], Wed Nov 13 04:47:52 2019 UTC (4 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.51: +2 -1 lines
Diff to previous 1.51 (colored)

stdarg.h required more broadly; ok djm

Revision 1.51 / (download) - annotate - [select for diffs], Fri Sep 6 04:53:27 2019 UTC (4 years, 8 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.50: +2 -1 lines
Diff to previous 1.50 (colored)

lots of things were relying on libcrypto headers to transitively
include various system headers (mostly stdlib.h); include them
explicitly

Revision 1.50 / (download) - annotate - [select for diffs], Wed Jul 11 18:55:11 2018 UTC (5 years, 10 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored)

treat ssh_packet_write_wait() errors as fatal; ok djm@

Revision 1.49 / (download) - annotate - [select for diffs], Mon Jul 9 21:35:50 2018 UTC (5 years, 10 months ago) by markus
Branch: MAIN
Changes since 1.48: +40 -29 lines
Diff to previous 1.48 (colored)

sshd: switch authentication to sshbuf API; ok djm@

Revision 1.48 / (download) - annotate - [select for diffs], Tue May 30 14:29:59 2017 UTC (6 years, 11 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.47: +17 -14 lines
Diff to previous 1.47 (colored)

switch auth2 to ssh_dispatch API; ok djm@

Revision 1.47 / (download) - annotate - [select for diffs], Tue May 30 14:23:52 2017 UTC (6 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.46: +3 -4 lines
Diff to previous 1.46 (colored)

protocol handlers all get struct ssh passed; ok djm@

Revision 1.46 / (download) - annotate - [select for diffs], Tue May 30 14:18:15 2017 UTC (6 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.45: +3 -2 lines
Diff to previous 1.45 (colored)

sshd: pass struct ssh to auth functions; ok djm@

Revision 1.45 / (download) - annotate - [select for diffs], Tue May 30 08:49:58 2017 UTC (6 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.44: +1 -2 lines
Diff to previous 1.44 (colored)

remove ssh1 references; ok djm@

Revision 1.44 / (download) - annotate - [select for diffs], Mon May 2 08:49:03 2016 UTC (8 years ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.43: +3 -3 lines
Diff to previous 1.43 (colored)

fix signed/unsigned errors reported by clang-3.7; add
sshbuf_dup_string() to replace a common idiom of
strdup(sshbuf_ptr()) with better safety checking;
feedback and ok markus@

Revision 1.43 / (download) - annotate - [select for diffs], Sat Jul 18 07:57:14 2015 UTC (8 years, 10 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.42: +8 -3 lines
Diff to previous 1.42 (colored)

only query each keyboard-interactive device once per authentication
request regardless of how many times it is listed; ok markus@

Revision 1.42 / (download) - annotate - [select for diffs], Mon Jan 19 20:07:45 2015 UTC (9 years, 3 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.41: +4 -3 lines
Diff to previous 1.41 (colored)

move dispatch to struct ssh; ok djm@

Revision 1.41 / (download) - annotate - [select for diffs], Sun Feb 2 03:44:31 2014 UTC (10 years, 3 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

convert memset of potentially-private data to explicit_bzero()

Revision 1.40 / (download) - annotate - [select for diffs], Fri Jan 31 16:39:19 2014 UTC (10 years, 3 months ago) by tedu
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

replace most bzero with explicit_bzero, except a few that cna be memset
ok djm dtucker

Revision 1.36.2.1 / (download) - annotate - [select for diffs], Fri Nov 8 05:52:21 2013 UTC (10 years, 6 months ago) by djm
Branch: OPENBSD_5_3
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored) next main 1.37 (colored)

openssh-6.4 for the 5.3 branch; reminded by deraadt@

Revision 1.38.2.1 / (download) - annotate - [select for diffs], Fri Nov 8 01:33:56 2013 UTC (10 years, 6 months ago) by djm
Branch: OPENBSD_5_4
Changes since 1.38: +2 -2 lines
Diff to previous 1.38 (colored) next main 1.39 (colored)

cherrypick commit:

date: 2013/11/08 00:39:15;  author: djm;  state: Exp;  lines: +2 -2;
use calloc for all structure allocations; from markus@

Revision 1.39 / (download) - annotate - [select for diffs], Fri Nov 8 00:39:14 2013 UTC (10 years, 6 months ago) by djm
Branch: MAIN
Changes since 1.38: +2 -2 lines
Diff to previous 1.38 (colored)

use calloc for all structure allocations; from markus@

Revision 1.38 / (download) - annotate - [select for diffs], Fri May 17 00:13:13 2013 UTC (11 years ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE
Branch point for: OPENBSD_5_4
Changes since 1.37: +12 -15 lines
Diff to previous 1.37 (colored)

bye, bye xfree(); ok markus@

Revision 1.37 / (download) - annotate - [select for diffs], Thu Mar 7 19:27:25 2013 UTC (11 years, 2 months ago) by markus
Branch: MAIN
Changes since 1.36: +8 -4 lines
Diff to previous 1.36 (colored)

add submethod support to AuthenticationMethods; ok and freedback djm@

Revision 1.36 / (download) - annotate - [select for diffs], Mon Dec 3 00:14:06 2012 UTC (11 years, 5 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE
Branch point for: OPENBSD_5_3
Changes since 1.35: +3 -2 lines
Diff to previous 1.35 (colored)

Fix compilation with -Wall -Werror (trivial type fixes)

Revision 1.35 / (download) - annotate - [select for diffs], Sun Dec 2 20:34:09 2012 UTC (11 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.34: +5 -7 lines
Diff to previous 1.34 (colored)

Fixes logging of partial authentication when privsep is enabled
Previously, we recorded "Failed xxx" since we reset authenticated before
calling auth_log() in auth2.c. This adds an explcit "Partial" state.

Add a "submethod" to auth_log() to report which submethod is used
for keyboard-interactive.

Fix multiple authentication when one of the methods is
keyboard-interactive.

ok markus@

Revision 1.34 / (download) - annotate - [select for diffs], Tue Dec 9 04:32:22 2008 UTC (15 years, 5 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.33: +3 -7 lines
Diff to previous 1.33 (colored)

replace by-hand string building with xasprinf(); ok deraadt@

Revision 1.33 / (download) - annotate - [select for diffs], Fri Sep 21 08:15:29 2007 UTC (16 years, 7 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.32: +1 -25 lines
Diff to previous 1.32 (colored)

unifdef -DBSD_AUTH
unifdef -USKEY

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

Revision 1.32 / (download) - annotate - [select for diffs], Wed Jan 3 03:01:40 2007 UTC (17 years, 4 months ago) by stevesk
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored)

spaces

Revision 1.24.2.1 / (download) - annotate - [select for diffs], Fri Oct 6 03:19:32 2006 UTC (17 years, 7 months ago) by brad
Branch: OPENBSD_3_8
Changes since 1.24: +12 -5 lines
Diff to previous 1.24 (colored) next main 1.25 (colored)

upgrade to OpenSSH 4.4

Revision 1.24.4.1 / (download) - annotate - [select for diffs], Sat Sep 30 04:06:50 2006 UTC (17 years, 7 months ago) by brad
Branch: OPENBSD_3_9
Changes since 1.24: +12 -5 lines
Diff to previous 1.24 (colored) next main 1.25 (colored)

upgrade to OpenSSH 4.4

Revision 1.31 / (download) - annotate - [select for diffs], Sat Aug 5 08:28:24 2006 UTC (17 years, 9 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.30: +3 -2 lines
Diff to previous 1.30 (colored)

Zap unused variables in -DSKEY code.  ok djm@

Revision 1.30 / (download) - annotate - [select for diffs], Thu Aug 3 03:34:41 2006 UTC (17 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.29: +6 -3 lines
Diff to previous 1.29 (colored)

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.29 / (download) - annotate - [select for diffs], Tue Aug 1 23:22:47 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.28: +2 -1 lines
Diff to previous 1.28 (colored)

move #include <stdio.h> out of includes.h

Revision 1.28 / (download) - annotate - [select for diffs], Sat Jul 22 20:48:22 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.27: +3 -1 lines
Diff to previous 1.27 (colored)

move #include <string.h> out of includes.h

Revision 1.27 / (download) - annotate - [select for diffs], Sat Mar 25 13:17:01 2006 UTC (18 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.26: +1 -0 lines
Diff to previous 1.26 (colored)

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.26 / (download) - annotate - [select for diffs], Sat Mar 25 00:05:41 2006 UTC (18 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.25: +1 -1 lines
Diff to previous 1.25 (colored)

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.25 / (download) - annotate - [select for diffs], Sun Mar 19 18:51:18 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.24: +0 -1 lines
Diff to previous 1.24 (colored)

RCSID() can die

Revision 1.22.2.1 / (download) - annotate - [select for diffs], Sun Sep 4 18:39:57 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_7
Changes since 1.22: +5 -6 lines
Diff to previous 1.22 (colored) next main 1.23 (colored)

upgrade to OpenSSH 4.2

Revision 1.21.2.2 / (download) - annotate - [select for diffs], Fri Sep 2 03:44:59 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.21.2.1: +5 -6 lines
Diff to previous 1.21.2.1 (colored) to branchpoint 1.21 (colored) next main 1.22 (colored)

upgrade to OpenSSH 4.2

Revision 1.24 / (download) - annotate - [select for diffs], Sun Jul 17 07:17:54 2005 UTC (18 years, 10 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_9, OPENBSD_3_8
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

knf says that a 2nd level indent is four (not three or five) spaces

Revision 1.23 / (download) - annotate - [select for diffs], Fri Jun 17 02:44:32 2005 UTC (18 years, 11 months ago) by djm
Branch: MAIN
Changes since 1.22: +4 -5 lines
Diff to previous 1.22 (colored)

make this -Wsign-compare clean; ok avsm@ markus@

Revision 1.20.8.2 / (download) - annotate - [select for diffs], Thu Mar 10 17:15:04 2005 UTC (19 years, 2 months ago) by brad
Branch: OPENBSD_3_5
Changes since 1.20.8.1: +3 -8 lines
Diff to previous 1.20.8.1 (colored) to branchpoint 1.20 (colored) next main 1.21 (colored)

upgrade to OpenSSH 4.0

Revision 1.21.2.1 / (download) - annotate - [select for diffs], Thu Mar 10 16:28:27 2005 UTC (19 years, 2 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.21: +3 -8 lines
Diff to previous 1.21 (colored)

upgrade to OpenSSH 4.0

Revision 1.22 / (download) - annotate - [select for diffs], Wed Jan 19 13:11:47 2005 UTC (19 years, 4 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE
Branch point for: OPENBSD_3_7
Changes since 1.21: +3 -8 lines
Diff to previous 1.21 (colored)

Have keyboard-interactive code call the drivers even for responses for
invalid logins.  This allows the drivers themselves to decide how to handle
them and prevent leaking information where possible.  Existing behaviour for
bsdauth is maintained by checking authctxt->valid in the bsdauth driver.
Note that any third-party kbdint drivers will now need to be able to handle
responses for invalid logins.  ok markus@

Revision 1.20.6.1 / (download) - annotate - [select for diffs], Thu Aug 19 22:37:30 2004 UTC (19 years, 9 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.20: +1 -2 lines
Diff to previous 1.20 (colored) next main 1.21 (colored)

upgrade to OpenSSH 3.9

Revision 1.20.8.1 / (download) - annotate - [select for diffs], Thu Aug 19 04:13:26 2004 UTC (19 years, 9 months ago) by brad
Branch: OPENBSD_3_5
Changes since 1.20: +1 -2 lines
Diff to previous 1.20 (colored)

upgrade to OpenSSH 3.9

Revision 1.21 / (download) - annotate - [select for diffs], Tue Jun 1 14:20:45 2004 UTC (19 years, 11 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_6
Changes since 1.20: +1 -2 lines
Diff to previous 1.20 (colored)

Remove redundant #include; ok markus@

Revision 1.8.2.5 / (download) - annotate - [select for diffs], Fri Oct 11 14:53:06 2002 UTC (21 years, 7 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.8.2.4: +2 -2 lines
Diff to previous 1.8.2.4 (colored) to branchpoint 1.8 (colored) next main 1.9 (colored)

Update to OpenSSH 3.5

Revision 1.17.2.2 / (download) - annotate - [select for diffs], Fri Oct 11 14:51:52 2002 UTC (21 years, 7 months ago) by miod
Branch: OPENBSD_3_1
Changes since 1.17.2.1: +2 -2 lines
Diff to previous 1.17.2.1 (colored) to branchpoint 1.17 (colored) next main 1.18 (colored)

Update to OpenSSH 3.5

Revision 1.20 / (download) - annotate - [select for diffs], Sun Jun 30 21:59:45 2002 UTC (21 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_4_BASE, OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Branch point for: OPENBSD_3_5, OPENBSD_3_4
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

minor KNF

Revision 1.8.2.4 / (download) - annotate - [select for diffs], Wed Jun 26 18:22:34 2002 UTC (21 years, 10 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.8.2.3: +12 -6 lines
Diff to previous 1.8.2.3 (colored) to branchpoint 1.8 (colored)

There was an update to OpenSSH 3.4, and people rejoiced.

Revision 1.17.2.1 / (download) - annotate - [select for diffs], Wed Jun 26 15:30:37 2002 UTC (21 years, 10 months ago) by jason
Branch: OPENBSD_3_1
Changes since 1.17: +13 -7 lines
Diff to previous 1.17 (colored)

Pull in OpenSSH-3.4

Revision 1.19 / (download) - annotate - [select for diffs], Wed Jun 26 13:55:37 2002 UTC (21 years, 10 months ago) by markus
Branch: MAIN
Changes since 1.18: +12 -6 lines
Diff to previous 1.18 (colored)

make sure # of response matches # of queries, fixes int overflow; from ISS

Revision 1.8.2.3 / (download) - annotate - [select for diffs], Sat Jun 22 07:23:16 2002 UTC (21 years, 11 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.8.2.2: +2 -2 lines
Diff to previous 1.8.2.2 (colored) to branchpoint 1.8 (colored)

Update OpenSSH to version 3.3 (with local changes, configuration files still
living in /etc and privsep user being nobody).

Revision 1.18 / (download) - annotate - [select for diffs], Wed Jun 19 00:27:55 2002 UTC (21 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

KNF done automatically while reading....

Revision 1.4.2.4 / (download) - annotate - [select for diffs], Sun Jun 2 22:56:09 2002 UTC (21 years, 11 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.4.2.3: +20 -1 lines
Diff to previous 1.4.2.3 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

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.8.2.2 / (download) - annotate - [select for diffs], Fri May 17 00:03:23 2002 UTC (22 years ago) by miod
Branch: OPENBSD_3_0
Changes since 1.8.2.1: +20 -1 lines
Diff to previous 1.8.2.1 (colored) to branchpoint 1.8 (colored)

Update OpenSSH to version 3.2.2.

Revision 1.17 / (download) - annotate - [select for diffs], Mon Mar 18 17:50:31 2002 UTC (22 years, 2 months ago) by provos
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Changes since 1.16: +20 -1 lines
Diff to previous 1.16 (colored)

integrate privilege separated openssh; its turned off by default for now.
work done by me and markus@

Revision 1.4.2.3 / (download) - annotate - [select for diffs], Sat Mar 9 00:20:43 2002 UTC (22 years, 2 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.4.2.2: +36 -31 lines
Diff to previous 1.4.2.2 (colored) to branchpoint 1.4 (colored)

Merge OpenSSH 3.1, keeping /etc as configuration files directory.
(i.e. OpenSSH 3.1 + openbsd29_3.1.patch)

Revision 1.2.2.7 / (download) - annotate - [select for diffs], Fri Mar 8 17:04:41 2002 UTC (22 years, 2 months ago) by brad
Branch: OPENBSD_2_8
Changes since 1.2.2.6: +36 -31 lines
Diff to previous 1.2.2.6 (colored) next main 1.3 (colored)

Merge OpenSSH 3.1.

Revision 1.8.2.1 / (download) - annotate - [select for diffs], Thu Mar 7 17:37:46 2002 UTC (22 years, 2 months ago) by jason
Branch: OPENBSD_3_0
Changes since 1.8: +36 -31 lines
Diff to previous 1.8 (colored)

Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.16 / (download) - annotate - [select for diffs], Sun Jan 13 17:57:37 2002 UTC (22 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.15: +12 -8 lines
Diff to previous 1.15 (colored)

use buffer API and avoid static strings of fixed size; ok provos@/mouring@

Revision 1.15 / (download) - annotate - [select for diffs], Fri Jan 11 23:02:51 2002 UTC (22 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.14: +3 -4 lines
Diff to previous 1.14 (colored)

use snprintf; mouring@

Revision 1.14 / (download) - annotate - [select for diffs], Fri Jan 11 20:14:11 2002 UTC (22 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.13: +2 -3 lines
Diff to previous 1.13 (colored)

use strlcpy not strlcat; mouring@

Revision 1.13 / (download) - annotate - [select for diffs], Fri Dec 28 15:06:00 2001 UTC (22 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

remove plen from the dispatch fn. it's no longer used.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Dec 28 12:14:27 2001 UTC (22 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

s/packet_done/packet_check_eom/ (end-of-message); ok djm@

Revision 1.11 / (download) - annotate - [select for diffs], Thu Dec 20 22:50:24 2001 UTC (22 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.10: +3 -3 lines
Diff to previous 1.10 (colored)

Conformance fix: we should send failing packet sequence number when
responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by
yakk@yakk.dot.net; ok markus@

Revision 1.10 / (download) - annotate - [select for diffs], Wed Dec 19 07:18:56 2001 UTC (22 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

basic KNF done while i was looking for something else

Revision 1.9 / (download) - annotate - [select for diffs], Sun Dec 9 18:45:56 2001 UTC (22 years, 5 months ago) by markus
Branch: MAIN
Changes since 1.8: +19 -16 lines
Diff to previous 1.8 (colored)

add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions,
fixes memleak.

Revision 1.4.2.2 / (download) - annotate - [select for diffs], Thu Nov 15 00:15:19 2001 UTC (22 years, 6 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.4.2.1: +2 -2 lines
Diff to previous 1.4.2.1 (colored) to branchpoint 1.4 (colored)

Merge OpenSSH 3.0

Revision 1.2.2.6 / (download) - annotate - [select for diffs], Thu Nov 15 00:14:59 2001 UTC (22 years, 6 months ago) by miod
Branch: OPENBSD_2_8
Changes since 1.2.2.5: +2 -2 lines
Diff to previous 1.2.2.5 (colored)

Merge OpenSSH 3.0

Revision 1.4.2.1 / (download) - annotate - [select for diffs], Thu Sep 27 19:03:54 2001 UTC (22 years, 7 months ago) by jason
Branch: OPENBSD_2_9
Changes since 1.4: +237 -42 lines
Diff to previous 1.4 (colored)

Pull in OpenSSH-2.9.9

Revision 1.8 / (download) - annotate - [select for diffs], Thu Sep 27 15:31:17 2001 UTC (22 years, 7 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

typos; from solar

Revision 1.2.2.5 / (download) - annotate - [select for diffs], Thu Sep 27 00:15:41 2001 UTC (22 years, 7 months ago) by miod
Branch: OPENBSD_2_8
Changes since 1.2.2.4: +237 -42 lines
Diff to previous 1.2.2.4 (colored)

Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.7 / (download) - annotate - [select for diffs], Sat Jun 23 15:12:17 2001 UTC (22 years, 10 months ago) by itojun
Branch: MAIN
Changes since 1.6: +8 -8 lines
Diff to previous 1.6 (colored)

more strict prototypes.  raise warning level in Makefile.inc.  markus ok'ed
TODO; cleanup headers

Revision 1.6 / (download) - annotate - [select for diffs], Sun Jun 3 20:06:11 2001 UTC (22 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

the challenge response device decides how to handle non-existing users.
-> fake challenges for skey and cryptocard

Revision 1.5 / (download) - annotate - [select for diffs], Fri May 18 14:13:28 2001 UTC (23 years ago) by markus
Branch: MAIN
Changes since 1.4: +237 -42 lines
Diff to previous 1.4 (colored)

improved kbd-interactive support. work by per@appgate.com and me

Revision 1.2.2.4 / (download) - annotate - [select for diffs], Mon May 7 21:09:26 2001 UTC (23 years ago) by jason
Branch: OPENBSD_2_8
Changes since 1.2.2.3: +5 -6 lines
Diff to previous 1.2.2.3 (colored)

Pull in OpenSSH-2.9 to 2.8 branch.

Revision 1.4 / (download) - annotate - [select for diffs], Wed Mar 28 22:43:31 2001 UTC (23 years, 1 month ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE
Branch point for: OPENBSD_2_9
Changes since 1.3: +5 -6 lines
Diff to previous 1.3 (colored)

check auth_root_allowed for kbd-int auth, too.

Revision 1.2.2.3 / (download) - annotate - [select for diffs], Wed Mar 21 19:46:22 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.2.2.2: +2 -2 lines
Diff to previous 1.2.2.2 (colored)

Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.3.2.2 / (download) - annotate - [select for diffs], Wed Mar 21 18:52:35 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.3.2.1: +2 -2 lines
Diff to previous 1.3.2.1 (colored) next main 1.4 (colored)

Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.3.2.1 / (download) - annotate - [select for diffs], Mon Mar 12 15:44:07 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.3: +1 -1 lines
Diff to previous 1.3 (colored)

OpenSSH-2.5.1 for 2.7 patch branch

Revision 1.3 / (download) - annotate - [select for diffs], Fri Mar 2 18:54:31 2001 UTC (23 years, 2 months ago) by deraadt
Branch: MAIN
Branch point for: OPENBSD_2_7
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

make copyright lines the same format

Revision 1.2.2.2 / (download) - annotate - [select for diffs], Mon Feb 19 17:18:38 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.2.2.1: +0 -0 lines
Diff to previous 1.2.2.1 (colored)

Pull in OpenSSH-2.5.1

Revision 1.2.2.1 / (download) - annotate - [select for diffs], Fri Feb 16 20:12:53 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.2: +1 -1 lines
Diff to previous 1.2 (colored)

Pull in OpenSSH 2.5.0

Revision 1.2 / (download) - annotate - [select for diffs], Sun Jan 21 19:05:43 2001 UTC (23 years, 3 months ago) by markus
Branch: MAIN
Branch point for: OPENBSD_2_8
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]

Revision 1.1 / (download) - annotate - [select for diffs], Thu Jan 18 17:12:43 2001 UTC (23 years, 4 months ago) by markus
Branch: MAIN

rename *-skey.c *-chall.c since the files are not skey specific

This form allows you to request diff's 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.