]> andersk Git - openssh.git/blob - ChangeLog
50c6c213b2555a630c4b24a446737776c7648541
[openssh.git] / ChangeLog
1 20040123 
2  - (djm) Do pam_session processing for systems with HAVE_LOGIN_CAP; from 
3    ralf.hack AT pipex.net; ok dtucker@
4  - (djm) Bug #776: Update contrib/redhat/openssh.spec to dynamically detect
5    Kerberos location (and thus work with Fedora Core 1);
6    from jason AT devrandom.org
7  - (dtucker) [configure.ac] Bug #788: Test for zlib.h presence and for
8    zlib >= 1.1.4.  Partly from jbasney at ncsa.uiuc.edu.  ok djm@
9
10 20040122
11  - (dtucker) [configure.ac] Use krb5-config where available for Kerberos/
12    GSSAPI detection, libs and includes.  ok djm@
13  - (dtucker) [session.c] Enable AFS support in conjunction with KRB5 not
14    just HEIMDAL.
15  - (tim) [contrib/solaris/buildpkg.sh] Allow for the possibility of
16    /usr/local being a symbolic link. Fixes problem reported by Henry Grebler.
17
18 20040121
19  - (djm) OpenBSD CVS Sync
20    - djm@cvs.openbsd.org 2004/01/13 09:25:05
21      [sftp-int.c sftp.1 sftp.c]
22      Tidy sftp batchmode handling, eliminate junk to stderr (bugzilla #754) and
23      enable use of "-b -" to accept batchfile from stdin; ok markus@
24    - jmc@cvs.openbsd.org 2004/01/13 12:17:33
25      [sftp.1]
26      remove unnecessary Ic's;
27      kill whitespace at EOL;
28      ok djm@
29    - markus@cvs.openbsd.org 2004/01/13 19:23:15
30      [compress.c session.c]
31      -Wall; ok henning
32    - markus@cvs.openbsd.org 2004/01/13 19:45:15
33      [compress.c]
34      cast for portability; millert@
35    - markus@cvs.openbsd.org 2004/01/19 09:24:21
36      [channels.c]
37      fake consumption for half closed channels since the peer is waiting for
38      window adjust messages; bugzilla #790 Matthew Dillon; test + ok dtucker@
39      reproduce with sh -c 'ulimit -f 10; ssh host -n od /bsd | cat > foo'
40    - markus@cvs.openbsd.org 2004/01/19 21:25:15
41      [auth2-hostbased.c auth2-pubkey.c serverloop.c ssh-keysign.c sshconnect2.c]
42      fix mem leaks; some fixes from Pete Flugstad; tested dtucker@
43    - djm@cvs.openbsd.org 2004/01/21 03:07:59
44      [sftp.c]
45      initialise infile in main, rather than statically - from portable
46    - deraadt@cvs.openbsd.org 2004/01/11 21:55:06
47      [sshpty.c]
48      for pty opening, only use the openpty() path.  the other stuff only needs
49      to be in openssh-p; markus ok
50  - (djm) [openbsd-compat/bsd-openpty.c] Rework old sshpty.c code into an
51    openpty() replacement
52
53 20040114
54  - (dtucker) [auth-pam.c] Have monitor die if PAM authentication thread exits
55    unexpectedly.  with & ok djm@
56  - (dtucker) [auth-pam.c] Reset signal handler in pthread_cancel too, add
57    test for case where cleanup has already run.
58  - (dtucker) [auth-pam.c] Add minor debugging.
59
60 20040113
61  - (dtucker) [auth-pam.c] Relocate struct pam_ctxt and prototypes.  No
62    functional changes.
63
64 20040108
65  - (dtucker) [auth-pam.c defines.h] Bug #783: move __unused to defines.h and
66    only define if not already.  From des at freebsd.org.
67  - (dtucker) [configure.ac] Remove extra (typo) comma.
68
69 20040105
70  - (dtucker) [contrib/ssh-copy-id] Bug #781: exit if ssh fails.  Patch from
71    cjwatson at debian.org.
72  - (dtucker) [acconfig.h configure.ac includes.h servconf.c session.c]
73    Only enable KerberosGetAFSToken if Heimdal's libkafs is found.  with jakob@
74
75 20040102
76  - (djm) OSX/Darwin needs BIND_8_COMPAT to build getrrsetbyname. Report from
77    jakob@
78  - (djm) Remove useless DNS support configure summary message. from jakob@
79  - (djm) OSX/Darwin put the PAM headers in a different place, detect this.
80    Report from jakob@
81
82 20031231
83  - (dtucker) OpenBSD CVS Sync
84    - djm@cvs.openbsd.org 2003/12/22 09:16:58
85      [moduli.c ssh-keygen.1 ssh-keygen.c]
86      tidy up moduli generation debugging, add -v (verbose/debug) option to
87      ssh-keygen; ok markus@
88    - markus@cvs.openbsd.org 2003/12/22 20:29:55
89      [cipher-3des1.c]
90      EVP_CIPHER_CTX_cleanup() for the des contexts; pruiksma@freesurf.fr
91    - jakob@cvs.openbsd.org 2003/12/23 16:12:10
92      [servconf.c servconf.h session.c sshd_config]
93      implement KerberosGetAFSToken server option. ok markus@, beck@
94    - millert@cvs.openbsd.org 2003/12/29 16:39:50
95      [sshd_config]
96      KeepAlive has been obsoleted, use TCPKeepAlive instead; markus@ OK
97    - dtucker@cvs.openbsd.org 2003/12/31 00:24:50
98      [auth2-passwd.c]
99      Ignore password change request during password auth (which we currently
100      don't support) and discard proposed new password.  corrections/ok markus@
101  - (dtucker) [configure.ac] Only test setresuid and setresgid if they exist.
102
103 20031219
104  - (dtucker) [defines.h] Bug #458: Define SIZE_T_MAX as UINT_MAX if we
105    typedef size_t ourselves.
106
107 20031218
108  - (dtucker) [configure.ac] Don't use setre[ug]id on DG-UX, from Tom Orban.
109  - (dtucker) [auth-pam.c] Do PAM chauthtok during SSH2 keyboard-interactive
110    authentication.  Partially fixes bug #423.  Feedback & ok djm@
111
112 20031217
113  - (djm) OpenBSD CVS Sync
114    - markus@cvs.openbsd.org 2003/12/09 15:28:43
115      [serverloop.c]
116      make ClientKeepAlive work for ssh -N, too (no login shell requested).
117      1) send a bogus channel request if we find a channel
118      2) send a bogus global request if we don't have a channel
119      ok + test beck@
120    - markus@cvs.openbsd.org 2003/12/09 17:29:04
121      [sshd.c]
122      fix -o and HUP; ok henning@
123    - markus@cvs.openbsd.org 2003/12/09 17:30:05
124      [ssh.c]
125      don't modify argv for ssh -o; similar to sshd.c 1.283
126    - markus@cvs.openbsd.org 2003/12/09 21:53:37
127      [readconf.c readconf.h scp.1 servconf.c servconf.h sftp.1 ssh.1]
128      [ssh_config.5 sshconnect.c sshd.c sshd_config.5]
129      rename keepalive to tcpkeepalive; the old name causes too much
130      confusion; ok djm, dtucker; with help from jmc@
131    - dtucker@cvs.openbsd.org 2003/12/09 23:45:32
132      [clientloop.c]
133      Clear exit code when ssh -N is terminated with a SIGTERM.  ok markus@
134    - markus@cvs.openbsd.org 2003/12/14 12:37:21
135      [ssh_config.5]
136      we don't support GSS KEX; from Simon Wilkinson
137    - markus@cvs.openbsd.org 2003/12/16 15:49:51
138      [clientloop.c clientloop.h readconf.c readconf.h scp.1 sftp.1 ssh.1]
139      [ssh.c ssh_config.5]
140      application layer keep alive (ServerAliveInterval ServerAliveCountMax)
141      for ssh(1), similar to the sshd(8) option; ok beck@; with help from
142      jmc and dtucker@
143    - markus@cvs.openbsd.org 2003/12/16 15:51:54
144      [dh.c]
145      use <= instead of < in dh_estimate; ok provos/hshoexer; 
146      do not return < DH_GRP_MIN
147  - (dtucker) [acconfig.h configure.ac uidswap.c] Bug #645: Check for
148    setres[ug]id() present but not implemented (eg some Linux/glibc
149    combinations).
150  - (bal) [openbsd-compat/bsd-misc.c] unset 'signal' defined if we are
151    using a real 'signal()' (Noticed by a NeXT Compile)
152
153 20031209
154  - (dtucker) OpenBSD CVS Sync
155    - matthieu@cvs.openbsd.org 2003/11/25 23:10:08
156      [ssh-add.1]
157      ssh-add doesn't need to be a descendant of ssh-agent. Ok markus@, jmc@.
158    - djm@cvs.openbsd.org 2003/11/26 21:44:29
159      [cipher-aes.c]
160      fix #ifdef before #define; ok markus@
161      (RCS ID sync only, Portable already had this)
162    - markus@cvs.openbsd.org 2003/12/02 12:15:10
163      [progressmeter.c]
164      improvments from andreas@:
165      * saner speed estimate for transfers that takes less than a second by
166        rounding the time to 1 second.
167      * when the transfer is finished calculate the actual total speed
168        rather than the current speed which is given during the transfer
169    - markus@cvs.openbsd.org 2003/12/02 17:01:15
170      [channels.c session.c ssh-agent.c ssh.h sshd.c]
171      use SSH_LISTEN_BACKLOG (=128) in listen(2).
172    - djm@cvs.openbsd.org 2003/12/07 06:34:18
173      [moduli.c]
174      remove unused debugging #define templates
175    - markus@cvs.openbsd.org 2003/12/08 11:00:47
176      [kexgexc.c]
177      print requested group size in debug; ok djm
178    - dtucker@cvs.openbsd.org 2003/12/09 13:52:55
179      [moduli.c]
180      Prevent ssh-keygen -T from outputting moduli with a generator of 0, since
181      they can't be used for Diffie-Hellman.  Assistance and ok djm@
182  - (dtucker) [ssh-keyscan.c] Sync RCSIDs, missed in SSH_SSFDMAX change below.
183
184 20031208
185  - (tim) [configure.ac] Bug 770. Fix --without-rpath.
186
187 20031123
188  - (djm) [canohost.c] Move IPv4inV6 mapped address normalisation to its own
189    function and call it unconditionally
190  - (djm) OpenBSD CVS Sync
191    - djm@cvs.openbsd.org 2003/11/23 23:17:34
192      [ssh-keyscan.c]
193      from portable - use sysconf to detect fd limit; ok markus@
194      (tidy diff by adding SSH_SSFDMAX macro to defines.h)
195    - djm@cvs.openbsd.org 2003/11/23 23:18:45
196      [ssh-keygen.c]
197      consistency PATH_MAX -> MAXPATHLEN; ok markus@
198      (RCS ID sync only)
199    - djm@cvs.openbsd.org 2003/11/23 23:21:21
200      [scp.c]
201      from portable: rename clashing variable limit-> limit_rate; ok markus@
202      (RCS ID sync only)
203    - dtucker@cvs.openbsd.org 2003/11/24 00:16:35
204      [ssh.1 ssh.c]
205      Make ssh -k mean GSSAPIDelegateCredentials=no. Suggestion & ok markus@
206  - (djm) Annotate OpenBSD-derived files in openbsd-compat/ with original 
207    source file path (in OpenBSD tree).
208
209 20031122
210  - (dtucker) [channels.c] Make AIX write limit code clearer.  Suggested by djm@
211  - (dtucker) [auth-passwd.c openbsd-compat/port-aix.c openbsd-compat/port-aix.h]
212    Move AIX specific password authentication code to port-aix.c, call
213    authenticate() until reenter flag is clear.
214  - (dtucker) [auth-sia.c configure.ac] Tru64 update from cmadams at hiwaay.net.
215    Use permanently_set_uid for SIA, only define DISABLE_FD_PASSING when SIA
216    is enabled, rely on SIA to check for locked accounts if enabled.  ok djm@
217  - (djm) [scp.c] Rename limitbw -> limit_rate to match upstreamed patch
218  - (djm) [sftp-int.c] Remove duplicated code from bogus sync
219  - (djm) [packet.c] Shuffle #ifdef to reduce conditionally compiled code
220
221 20031121
222  - (djm) OpenBSD CVS Sync
223    - markus@cvs.openbsd.org 2003/11/20 11:39:28
224      [progressmeter.c]
225      fix rounding errors; from andreas@
226    - djm@cvs.openbsd.org 2003/11/21 11:57:03
227      [everything]
228      unexpand and delete whitespace at EOL; ok markus@
229      (done locally and RCS IDs synced)
230
231 20031118
232  - (djm) Fix early exit for root auth success when UsePAM=yes and 
233    PermitRootLogin=no
234  - (dtucker) [auth-pam.c] Convert chauthtok_conv into a generic tty_conv,
235    and use it for do_pam_session.  Fixes problems like pam_motd not
236    displaying anything.  ok djm@
237  - (dtucker) [auth-pam.c] Only use pam_putenv if our platform has it. ok djm@
238  - (djm) OpenBSD CVS Sync
239    - dtucker@cvs.openbsd.org 2003/11/18 00:40:05
240      [serverloop.c]
241      Correct check for authctxt->valid.  ok djm@
242    - djm@cvs.openbsd.org 2003/11/18 10:53:07
243      [monitor.c]
244      unbreak fake authloop for non-existent users (my screwup). Spotted and
245      tested by dtucker@; ok markus@
246
247 20031117
248  - (djm) OpenBSD CVS Sync
249    - djm@cvs.openbsd.org 2003/11/03 09:03:37
250      [auth-chall.c]
251      make this a little more idiot-proof; ok markus@
252      (includes portable-specific changes)
253    - jakob@cvs.openbsd.org 2003/11/03 09:09:41
254      [sshconnect.c]
255      move changed key warning into warn_changed_key(). ok markus@
256    - jakob@cvs.openbsd.org 2003/11/03 09:37:32
257      [sshconnect.c]
258      do not free static type pointer in warn_changed_key()
259    - djm@cvs.openbsd.org 2003/11/04 08:54:09
260      [auth1.c auth2.c auth2-pubkey.c auth.h auth-krb5.c auth-passwd.c]
261      [auth-rhosts.c auth-rh-rsa.c auth-rsa.c monitor.c serverloop.c]
262      [session.c]
263      standardise arguments to auth methods - they should all take authctxt.
264      check authctxt->valid rather then pw != NULL; ok markus@
265    - jakob@cvs.openbsd.org 2003/11/08 16:02:40
266      [auth1.c]
267      remove unused variable (pw). ok djm@
268      (id sync only - still used in portable)
269    - jmc@cvs.openbsd.org 2003/11/08 19:17:29
270      [sftp-int.c]
271      typos from Jonathon Gray;
272    - jakob@cvs.openbsd.org 2003/11/10 16:23:41
273      [bufaux.c bufaux.h cipher.c cipher.h hostfile.c hostfile.h key.c]
274      [key.h sftp-common.c sftp-common.h sftp-server.c sshconnect.c sshd.c]
275      [ssh-dss.c ssh-rsa.c uuencode.c uuencode.h]
276      constify. ok markus@ & djm@
277    - dtucker@cvs.openbsd.org 2003/11/12 10:12:15
278      [scp.c]
279      When called with -q, pass -q to ssh; suppresses SSH2 banner.  ok markus@
280    - jakob@cvs.openbsd.org 2003/11/12 16:39:58
281      [dns.c dns.h readconf.c ssh_config.5 sshconnect.c]
282      update SSHFP validation. ok markus@
283    - jmc@cvs.openbsd.org 2003/11/12 20:14:51
284      [ssh_config.5]
285      make verb agree with subject, and kill some whitespace;
286    - markus@cvs.openbsd.org 2003/11/14 13:19:09
287      [sshconnect2.c]
288      cleanup and minor fixes for the client code; from Simon Wilkinson
289    - djm@cvs.openbsd.org 2003/11/17 09:45:39
290      [msg.c msg.h sshconnect2.c ssh-keysign.c]
291      return error on msg send/receive failure (rather than fatal); ok markus@
292    - markus@cvs.openbsd.org 2003/11/17 11:06:07
293      [auth2-gss.c gss-genr.c gss-serv.c monitor.c monitor.h monitor_wrap.c]
294      [monitor_wrap.h sshconnect2.c ssh-gss.h]
295      replace "gssapi" with "gssapi-with-mic"; from Simon Wilkinson; 
296      test + ok jakob.
297  - (djm) Bug #632: Don't call pam_end indirectly from within kbd-int
298    conversation function
299  - (djm) Export environment variables from authentication subprocess to 
300    parent. Part of Bug #717
301
302 20031115
303  - (dtucker) [regress/agent-ptrace.sh] Test for GDB output from Solaris and
304    HP-UX, skip test on AIX.
305
306 20031113
307  - (dtucker) [auth-pam.c] Append newlines to lines output by the
308    pam_chauthtok_conv().
309  - (dtucker) [README ssh-host-config ssh-user-config Makefile] (All
310    contrib/cygwin).  Major update from vinschen at redhat.com.
311    - Makefile provides a `cygwin-postinstall' target to run right after
312      `make install'.
313    - Better support for Windows 2003 Server.
314    - Try to get permissions as correct as possible.
315    - New command line options to allow full automated host configuration.
316    - Create configs from skeletons in /etc/defaults/etc.
317    - Use /bin/bash, allows reading user input with readline support.
318    - Remove really old configs from /usr/local.
319  - (dtucker) [auth-pam.c] Add newline to accumulated PAM_TEXT_INFO and
320    PAM_ERROR_MSG messages.
321
322 20031106
323  - (djm) Clarify UsePAM consequences a little more
324
325 20031103
326  - (dtucker) [contrib/cygwin/ssh-host-config] Ensure entries in /etc/services
327    are created correctly with CRLF line terminations.  Patch from vinschen at
328    redhat.com.
329  - (dtucker) OpenBSD CVS Sync
330    - markus@cvs.openbsd.org 2003/10/15 09:48:45
331      [monitor_wrap.c]
332      check pmonitor != NULL
333    - markus@cvs.openbsd.org 2003/10/21 09:50:06
334      [auth2-gss.c]
335      make sure the doid is larger than 2
336    - avsm@cvs.openbsd.org 2003/10/26 16:57:43
337      [sshconnect2.c]
338      rename 'supported' static var in userauth_gssapi() to 'gss_supported'
339      to avoid shadowing the global version.  markus@ ok
340    - markus@cvs.openbsd.org 2003/10/28 09:08:06
341      [misc.c]
342      error->debug for getsockopt+TCP_NODELAY; several requests
343    - markus@cvs.openbsd.org 2003/11/02 11:01:03
344      [auth2-gss.c compat.c compat.h sshconnect2.c]
345      remove support for SSH_BUG_GSSAPI_BER; simon@sxw.org.uk
346  - (dtucker) [regress/agent-ptrace.sh] Use numeric uid and gid.
347
348 20031021
349  - (dtucker) [INSTALL] Some system crypt() functions support MD5 passwords
350    directly.  Noted by Darren.Moffat at sun.com.
351  - (dtucker) [regress/agent-ptrace.sh] Skip agent-test unless SUDO is set,
352    make agent setgid during test.
353
354 20031017
355  - (dtucker) [INSTALL] Note that --with-md5 is now required on platforms with
356    MD5 passwords even if PAM support is enabled.  From steev at detritus.net.
357
358 20031015
359  - (dtucker) OpenBSD CVS Sync
360    - jmc@cvs.openbsd.org 2003/10/08 08:27:36
361      [scp.1 scp.c sftp-server.8 sftp.1 sftp.c ssh.1 sshd.8]
362      scp and sftp: add options list and sort options. options list requested
363      by deraadt@
364      sshd: use same format as ssh
365      ssh: remove wrong option from list
366      sftp-server: Subsystem is documented in ssh_config(5), not sshd(8)
367      ok deraadt@ markus@
368    - markus@cvs.openbsd.org 2003/10/08 15:21:24
369      [readconf.c ssh_config.5]
370      default GSS API to no in client, too; ok jakob, deraadt@
371    - markus@cvs.openbsd.org 2003/10/11 08:24:08
372      [readconf.c readconf.h ssh.1 ssh.c ssh_config.5]
373      remote x11 clients are now untrusted by default, uses xauth(8) to generate
374      untrusted cookies; ForwardX11Trusted=yes restores old behaviour.
375      ok deraadt; feedback and ok djm/fries
376    - markus@cvs.openbsd.org 2003/10/11 08:26:43
377      [sshconnect2.c]
378      search keys in reverse order; fixes #684
379    - markus@cvs.openbsd.org 2003/10/11 11:36:23
380      [monitor_wrap.c]
381      return NULL for missing banner; ok djm@
382    - jmc@cvs.openbsd.org 2003/10/12 13:12:13
383      [ssh_config.5]
384      note that EnableSSHKeySign should be in the non-hostspecific section;
385      remove unnecessary .Pp;
386      ok markus@
387    - markus@cvs.openbsd.org 2003/10/13 08:22:25
388      [scp.1 sftp.1]
389      don't refer to options related to forwarding; ok jmc@
390    - jakob@cvs.openbsd.org 2003/10/14 19:42:10
391      [dns.c dns.h readconf.c ssh-keygen.c sshconnect.c]
392      include SSHFP lookup code (not enabled by default). ok markus@
393    - jakob@cvs.openbsd.org 2003/10/14 19:43:23
394      [README.dns]
395      update
396    - markus@cvs.openbsd.org 2003/10/14 19:54:39
397      [session.c ssh-agent.c]
398      10X for mkdtemp; djm@
399  - (dtucker) [acconfig.h configure.ac dns.c openbsd-compat/getrrsetbyname.c
400    openbsd-compat/getrrsetbyname.h] DNS fingerprint support is now always
401    compiled in but disabled in config.
402  - (dtucker) [auth.c] Check for disabled password expiry on HP-UX Trusted Mode.
403  - (tim) [regress/banner.sh] portability fix.
404
405 20031009
406  - (dtucker) [sshd_config.5] UsePAM defaults to "no".  ok djm@
407
408 20031008
409  - (dtucker) OpenBSD CVS Sync
410    - dtucker@cvs.openbsd.org 2003/10/07 01:47:27
411      [sshconnect2.c]
412      Don't use logit for banner, since it truncates to MSGBUFSIZ; bz #668 &
413      #707.  ok markus@
414    - djm@cvs.openbsd.org 2003/10/07 07:04:16
415      [sftp-int.c]
416      sftp quoting fix from admorten AT umich.edu; ok markus@
417    - deraadt@cvs.openbsd.org 2003/10/07 21:58:28
418      [sshconnect2.c]
419      set ptr to NULL after free
420    - dtucker@cvs.openbsd.org 2003/10/07 01:52:13
421      [regress/Makefile regress/banner.sh]
422      Test SSH2 banner.  ok markus@
423    - djm@cvs.openbsd.org 2003/10/07 07:04:52
424      [regress/sftp-cmds.sh]
425      more sftp quoting regress tests; ok markus
426
427 20031007
428  - (djm) Delete autom4te.cache after autoreconf
429  - (dtucker) [auth-pam.c auth-pam.h session.c] Make PAM use the new static
430    cleanup functions.  With & ok djm@
431  - (dtucker) [contrib/redhat/openssh.spec] Bug #714: Now that UsePAM is a
432    run-time switch, always build --with-md5-passwords.
433  - (dtucker) [configure.ac openbsd-compat/Makefile.in openbsd-compat/strtoul.c]
434    Bug #670: add strtoul() to openbsd-compat for platforms lacking it.  ok djm@
435  - (dtucker) [configure.ac] Bug #715: Set BROKEN_SETREUID and BROKEN_SETREGID
436    on Reliant Unix.  Patch from Robert.Dahlem at siemens.com.
437  - (dtucker) [configure.ac] Bug #710: Check for dlsym() in libdl on
438    Reliant Unix.  Based on patch from Robert.Dahlem at siemens.com.
439
440 20031003
441  - (dtucker) OpenBSD CVS Sync
442    - markus@cvs.openbsd.org 2003/10/02 10:41:59
443      [sshd.c]
444      print openssl version, too, several requests; ok henning/djm.
445    - markus@cvs.openbsd.org 2003/10/02 08:26:53
446      [ssh-gss.h]
447      missing $OpenBSD:; dtucker
448  - (tim) [contrib/caldera/openssh.spec] Remove obsolete --with-ipv4-default
449    option.
450
451 20031002
452  - (dtucker) OpenBSD CVS Sync
453    - markus@cvs.openbsd.org 2003/09/23 20:17:11
454      [Makefile.in auth1.c auth2.c auth.c auth.h auth-krb5.c canohost.c
455      cleanup.c clientloop.c fatal.c gss-serv.c log.c log.h monitor.c monitor.h
456      monitor_wrap.c monitor_wrap.h packet.c serverloop.c session.c session.h
457      ssh-agent.c sshd.c]
458      replace fatal_cleanup() and linked list of fatal callbacks with static
459      cleanup_exit() function.  re-refine cleanup_exit() where appropriate,
460      allocate sshd's authctxt eary to allow simpler cleanup in sshd.
461      tested by many, ok deraadt@
462    - markus@cvs.openbsd.org 2003/09/23 20:18:52
463      [progressmeter.c]
464      don't print trailing \0; bug #709; Robert.Dahlem@siemens.com
465      ok millert/deraadt@
466    - markus@cvs.openbsd.org 2003/09/23 20:41:11
467      [channels.c channels.h clientloop.c]
468      move client only agent code to clientloop.c
469    - markus@cvs.openbsd.org 2003/09/26 08:19:29
470      [sshd.c]
471      no need to set the listen sockets to non-block; ok deraadt@
472    - jmc@cvs.openbsd.org 2003/09/29 11:40:51
473      [ssh.1]
474      - add list of options to -o and .Xr ssh_config(5)
475      - some other cleanup
476      requested by deraadt@;
477      ok deraadt@ markus@
478    - markus@cvs.openbsd.org 2003/09/29 20:19:57
479      [servconf.c sshd_config]
480      GSSAPICleanupCreds -> GSSAPICleanupCredentials
481  - (dtucker) [configure.ac] Don't set DISABLE_SHADOW when configuring
482    --with-pam.  ok djm@
483  - (dtucker) [ssh-gss.h] Prototype change missed in sync.
484  - (dtucker) [session.c] Fix bus errors on some 64-bit Solaris configurations.
485    Based on patches by Matthias Koeppe and Thomas Baden.  ok djm@
486
487 20030930
488  - (bal) Fix issues in openbsd-compat/realpath.c
489
490 20030925
491  - (dtucker) [configure.ac openbsd-compat/xcrypt.c] Bug #633: Remove
492    DISABLE_SHADOW for HP-UX, use getspnam instead of getprpwnam.  Patch from
493    michael_steffens at hp.com, ok djm@
494  - (tim) [sshd_config] UsePAM defaults to no.
495
496 20030924
497  - (djm) Update version.h and spec files for HEAD
498  - (dtucker) [configure.ac] IRIX5 needs the same setre[ug]id defines as IRIX6.
499
500 20030923
501  - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree
502    builds.  Portability corrections from tim@.
503  - (dtucker) [configure.ac] Bug #665: uid swapping issues on Mac OS X.
504    Patch from max at quendi.de.
505  - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi.
506  - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64.
507  - (dtucker) [configure.ac] Bug #693: uid swapping issues on NCR MP-RAS.
508    Patch from david.haughton at ncr.com
509  - (dtucker) [configure.ac] Bug #659: uid swapping issues on IRIX 6.
510    Part of patch supplied by bugzilla-openssh at thewrittenword.com
511  - (dtucker) [configure.ac openbsd-compat/fake-rfc2553.c
512    openbsd-compat/fake-rfc2553.h] Bug #659: Test for and handle systems with
513    where gai_strerror is defined as "const char *".  Part of patch supplied
514    by bugzilla-openssh at thewrittenword.com
515  - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config] Update
516    ssh-host-config to match current defaults, bump README version.  Patch from
517    vinschen at redhat.com.
518  - (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the
519    OS does not support permanently dropping privileges.  Patch from
520    vinschen at redhat.com.
521  - (dtucker) [openbsd-compat/port-aix.c] Use correct include for xmalloc.h,
522    add canohost.h to stop warning.  Based on patch from openssh-unix-dev at
523    thewrittenword.com
524  - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or
525    higher.
526  - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/
527  - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN.
528    Report by distler AT golem ph utexas edu.
529  - (dtucker) [contrib/aix/pam.conf] Include example pam.conf for AIX from
530    article by genty at austin.ibm.com, included with the author's permission.
531  - (dtucker) OpenBSD CVS Sync
532    - markus@cvs.openbsd.org 2003/09/18 07:52:54
533      [sshconnect.c]
534      missing {}; bug #656; jclonguet at free.fr
535    - markus@cvs.openbsd.org 2003/09/18 07:54:48
536      [buffer.c]
537      protect against double free; #660;  zardoz at users.sf.net
538    - markus@cvs.openbsd.org 2003/09/18 07:56:05
539      [authfile.c]
540      missing  buffer_free(&encrypted); #662; zardoz at users.sf.net
541    - markus@cvs.openbsd.org 2003/09/18 08:49:45
542      [deattack.c misc.c session.c ssh-agent.c]
543      more buffer allocation fixes; from Solar Designer; CAN-2003-0682;
544      ok millert@
545    - miod@cvs.openbsd.org 2003/09/18 13:02:21
546      [authfd.c bufaux.c dh.c mac.c ssh-keygen.c]
547      A few signedness fixes for harmless situations; markus@ ok
548    - markus@cvs.openbsd.org 2003/09/19 09:02:02
549      [packet.c]
550      buffer_dump only if PACKET_DEBUG is defined; Jedi/Sector One; pr 3471
551    - markus@cvs.openbsd.org 2003/09/19 09:03:00
552      [buffer.c]
553      sign fix in buffer_dump; Jedi/Sector One; pr 3473
554    - markus@cvs.openbsd.org 2003/09/19 11:29:40
555      [ssh-agent.c]
556      provide a ssh-agent specific fatal() function; ok deraadt
557    - markus@cvs.openbsd.org 2003/09/19 11:30:39
558      [ssh-keyscan.c]
559      avoid fatal_cleanup, just call exit(); ok deraadt
560    - markus@cvs.openbsd.org 2003/09/19 11:31:33
561      [channels.c]
562      do not call channel_free_all on fatal; ok deraadt
563    - markus@cvs.openbsd.org 2003/09/19 11:33:09
564      [packet.c sshd.c]
565      do not call packet_close on fatal; ok deraadt
566    - markus@cvs.openbsd.org 2003/09/19 17:40:20
567      [scp.c]
568      error handling for remote-remote copy; #638; report Harald Koenig;
569      ok millert, fgs, henning, deraadt
570    - markus@cvs.openbsd.org 2003/09/19 17:43:35
571      [clientloop.c sshtty.c sshtty.h]
572      remove fatal callbacks from client code; ok deraadt
573  - (bal) "extration" -> "extraction" in ssh-rand-helper.c; repoted by john
574         on #unixhelp@efnet
575  - (tim) [configure.ac] add --disable-etc-default-login option. ok djm
576  - (djm) Sync with V_3_7 branch:
577    - (djm) Fix SSH1 challenge kludge
578    - (djm) Bug #671: Fix builds on OpenBSD
579    - (djm) Bug #676: Fix PAM stack corruption
580    - (djm) Fix bad free() in PAM code
581    - (djm) Don't call pam_end before pam_init
582    - (djm) Enable build with old OpenSSL again
583    - (djm) Trim deprecated options from INSTALL. Mention UsePAM
584    - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
585
586 20030919
587  - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
588    djast AT cs.toronto.edu
589  - (djm) Bug #661: Remove duplicate check for basename; from 
590    bugzilla-openssh AT thewrittenword.com
591  - (djm) Bug #641: Allow RedHat RPM building without GTK-2; Patch from
592    jason AT devrandom.org
593  - (djm) Bug #646: Fix location of x11-ssh-askpass; Jim
594  - (dtucker) [openbsd-compat/port-aix.h] Bug #640: Don't include audit.h
595    unless required.  Reorder to reduce warnings.
596  - (dtucker) [session.c] Bug #643: Fix size_t -> u_int and fix null deref
597    when /etc/default/login doesn't exist or isn't readable.  Fixes from
598    jparsons-lists at saffron.net and georg.oppenberg at deu mci com.
599  - (dtucker) [acconfig.h] Updated basename test needs HAVE_BASENAME
600
601 20030918
602  - (djm) Bug #652: Fix empty password auth
603
604 20030917
605  - (djm) Sync with V_3_7 branch
606  - (djm) OpenBSD Sync
607    - markus@cvs.openbsd.org 2003/09/16 21:02:40
608      [buffer.c channels.c version.h]
609      more malloc/fatal fixes; ok millert/deraadt; ghudson at MIT.EDU
610  - (djm) Crank RPM spec file versions
611  - (tim) [openbsd-compat/inet_ntoa.c] 20030917 "Sync with V_3_7 branch" undid
612    20030916 "Missed dead header in inet_ntoa.c"
613  
614 20030916
615  - (dtucker) [acconfig.h configure.ac defines.h session.c] Bug #252: Retrieve
616    PATH (or SUPATH) and UMASK from /etc/default/login on platforms that have it
617    (eg Solaris, Reliant Unix).  Patch from Robert.Dahlem at siemens.com.  
618    ok djm@
619  - (bal) OpenBSD Sync
620    - deraadt@cvs.openbsd.org 2003/09/16 03:03:47
621      [buffer.c]
622      do not expand buffer before attempting to reallocate it; markus ok
623  - (tim) [configure.ac] Fix portability issues.
624  - (bal) Missed dead header in inet_ntoa.c
625
626 20030914
627  - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
628    the regression tests from running with Solaris' make.  Patch from Brian
629    Poole (raj at cerias.purdue.edu).
630  - (dtucker) [regress/Makefile] AIX's make doesn't like " +=", so replace
631    with vanilla "=".
632
633 20030913
634  - (dtucker) [regress/agent-timeout.sh] Timeout of 5 sec is borderline for
635    slower hosts, increase to 10 sec.
636  - (dtucker) [auth-passwd.c] On AIX, call setauthdb() before loginsuccess(),
637    required to correctly reset failed login count when using a password
638    registry other than "files" (eg LDAP, see bug #543).
639  - (tim) [configure.ac] define WITH_ABBREV_NO_TTY for SCO.
640    Report by Roger Cornelius.
641  - (dtucker) [auth-pam.c] Use SSHD_PAM_SERVICE for PAM service name, patch
642    from cjwatson at debian.org.
643
644 20030912
645  - (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
646  - (tim) [Makefile.in] only mkdir regress if it does not exist.
647  - (tim) [regress/yes-head.sh] shell portability fix.
648
649 20030911
650  - (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
651    the dirname test, to allow a broken dirname to be detected correctly.
652    Based partially on patch supplied by alex.kiernan at thus.net.  ok djm@
653  - (tim) [configure.ac] Move libgen tests to before libwrap to unbreak
654    UnixWare 2.03 using --with-tcp-wrappers.
655  - (tim) [configure.ac] Prefer setuid/setgid on UnixWare and Open Server.
656  - (tim) [regress/agent-ptrace.sh regress/dynamic-forward.sh
657    regress/sftp-cmds.sh regress/stderr-after-eof.sh regress/test-exec.sh]
658    no longer depends on which(1). patch by dtucker@
659
660 20030910
661  - (dtucker) [configure.ac] Bug #636: Add support for Cray's new X1 machine.
662    Patch from wendyp at cray.com.
663  - (dtucker) [configure.ac] Part of bug #615: tcsendbreak might be a macro.
664  - (dtucker) [regressh/yes-head.sh] Some platforms (eg Solaris) don't have
665    "yes".
666
667 20030909
668  - (tim) [regress/Makefile] Fixes for building outside of a read-only
669    source tree.
670  - (tim) [regress/agent-timeout.sh] s/TIMEOUT/SSHAGENT_TIMEOUT/ Fixes conflict
671    with shell read-only variable.
672  - (tim) [regress/sftp-badcmds.sh regress/sftp-cmds.sh] Fix errors like
673    UX:rm: ERROR: Cannot remove '.' or '..'
674
675 20030908
676  - (tim) [configure.ac openbsd-compat/getrrsetbyname.c] wrap _getshort and
677    _getlong in #ifndef
678  - (tim) [configure.ac acconfig.h openbsd-compat/getrrsetbyname.c] test for
679    HEADER.ad in arpa/nameser.h
680  - (tim) [ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@
681
682 20030907
683  - (dtucker) [agent-ptrace.sh dynamic-forward.sh (all regress/)]
684    Put "which" inside quotes.
685  - (dtucker) [dynamic-forward.sh forwarding.sh sftp-batch.sh (all regress/)]
686    Add ${EXEEXT}: required to work on Cygwin.
687  - (dtucker) [regress/sftp-batch.sh] Make temporary batch file name more
688    distinctive, so "rm ${BATCH}.*" doesn't match the script itself.
689  - (dtucker) [regress/sftp-cmds.sh] Skip quoted file test on Cygwin.
690  - (dtucker) [openbsd-compat/xcrypt.c] #elsif -> #elif
691  - (dtucker) [acconfig.h] Typo.
692  - (dtucker) [CREDITS Makefile.in configure.ac mdoc2man.awk mdoc2man.pl]
693    Replace mdoc2man.pl with mdoc2man.awk, provided by Peter Stuge.
694
695 20030906
696  - (dtucker) [acconfig.h configure.ac uidswap.c] Prefer setuid/setgid on AIX.
697
698 20030905
699  - (dtucker) [Makefile.in] Add distclean target for regress/, fix clean target.
700
701 20030904
702  - (dtucker) Portablize regression tests.  Parts contributed by Roumen
703    Petrov, David M. Williams and Corinna Vinschen.
704    - [Makefile.in] Add "make tests" target and "make clean" hooks.
705    - [regress/agent-getpeereid.sh] Skip test on platforms that don't support
706      getpeereid.
707    - [regress/agent-ptrace.sh] Skip tests if platform doesn't support it or
708      gdb cannot be found.
709    - [regress/reconfigure/sh] Make path to sshd fully qualified if required.
710    - [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
711      it).  The sparse file will take less disk space too.
712    - [regress/sftp-cmds.sh] Ensure files used for test are readable.
713    - [regress/stderr-after-eof.sh] Search for a usable checksum program.
714    - [regress/sftp-badcmds.sh regress/sftp-cmds.sh regress/sftp.sh
715      regress/ssh-com-client.sh regress/ssh-com-sftp.sh regress/stderr-data.sh
716      regress/transfer.sh] Use ${EXEEXT} where appropriate.
717    - [regress/sftp.sh regress/ssh-com-sftp.sh] Remove dependency on /dev/stdin.
718    - [regress/agent-ptrace.sh regress/agent-timeout.sh]
719      "grep -q" -> "grep >/dev/null"
720    - [regress/agent.sh regress/proto-version.sh regress/ssh-com.sh
721      regress/test-exec.sh] Handle different ways of echoing without newlines.
722    - [regress/dynamic-forward.sh] Some "which" programs output on stderr.
723    - [regress/sftp-cmds.sh] Use portable "test" option.
724    - [regress/test-exec.sh] Use sudo, search for "whoami" equivalent, always
725      use Strictmodes no, wait longer for sshd startup.
726    - [regress/Makefile] Remove BSDisms.
727    - [regress/README.regress] Add a basic readme.
728    - [Makefile.in regress/agent-getpeereid.sh] config.h is now in $BUILDDIR
729      not $OBJ.
730    - [Makefile.in regress/agent-ptrace] Fix minor regress issues on Cygwin.
731
732 20030903
733  - (djm) OpenBSD CVS Sync
734    - markus@cvs.openbsd.org 2003/08/26 09:58:43
735      [auth-passwd.c auth.c auth.h auth1.c auth2-none.c auth2-passwd.c]
736      [auth2.c monitor.c]
737      fix passwd auth for 'username leaks via timing'; with djm@, original 
738      patches from solar
739    - markus@cvs.openbsd.org 2003/08/28 12:54:34
740      [auth.h]
741      remove kerberos support from ssh1, since it has been replaced with GSSAPI;
742      but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
743    - markus@cvs.openbsd.org 2003/09/02 16:40:29
744      [version.h]
745      enter 3.7
746    - jmc@cvs.openbsd.org 2003/09/02 18:50:06
747      [sftp.1 ssh_config.5]
748      escape punctuation;
749      ok deraadt@
750
751 20030902
752  - (djm) OpenBSD CVS Sync
753    - deraadt@cvs.openbsd.org 2003/08/24 17:36:51
754      [auth2-gss.c]
755      64 bit cleanups; markus ok
756    - markus@cvs.openbsd.org 2003/08/28 12:54:34
757      [auth-krb5.c auth.h auth1.c monitor.c monitor.h monitor_wrap.c]
758      [monitor_wrap.h readconf.c servconf.c session.c ssh_config.5]
759      [sshconnect1.c sshd.c sshd_config sshd_config.5]
760      remove kerberos support from ssh1, since it has been replaced with GSSAPI;
761      but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
762    - markus@cvs.openbsd.org 2003/08/29 10:03:15
763      [compat.c compat.h]
764      SSH_BUG_K5USER is unused; ok henning@
765    - markus@cvs.openbsd.org 2003/08/29 10:04:36
766      [channels.c nchan.c]
767      be less chatty; debug -> debug2, cleanup; ok henning@
768    - markus@cvs.openbsd.org 2003/08/31 10:26:04
769      [progressmeter.c]
770      pass file_size + 1 to snprintf: fixes printing of truncated
771      file names; fix based on patch/report from sturm@;
772    - markus@cvs.openbsd.org 2003/08/31 12:14:22
773      [progressmeter.c]
774      do write to buf[-1]
775    - markus@cvs.openbsd.org 2003/08/31 13:29:05
776      [session.c]
777      call ssh_gssapi_storecreds conditionally from do_exec(); 
778      with sxw@inf.ed.ac.uk
779    - markus@cvs.openbsd.org 2003/08/31 13:30:18
780      [gss-serv.c]
781      correct string termination in parse_ename(); sxw@inf.ed.ac.uk
782    - markus@cvs.openbsd.org 2003/08/31 13:31:57
783      [gss-serv.c]
784      whitspace KNF
785    - markus@cvs.openbsd.org 2003/09/01 09:50:04
786      [sshd_config.5]
787      gss kex is not supported; sxw@inf.ed.ac.uk
788    - markus@cvs.openbsd.org 2003/09/01 12:50:46
789      [readconf.c]
790      rm gssapidelegatecreds alias; never supported before
791    - markus@cvs.openbsd.org 2003/09/01 13:52:18
792      [ssh.h]
793      rm whitespace
794    - markus@cvs.openbsd.org 2003/09/01 18:15:50
795      [readconf.c readconf.h servconf.c servconf.h ssh.c]
796      remove unused kerberos code; ok henning@
797    - markus@cvs.openbsd.org 2003/09/01 20:44:54
798      [auth2-gss.c]
799      fix leak
800  - (djm) Don't initialise pam_conv structures inline. Avoids HP/UX compiler
801    error. Part of Bug #423, patch from  michael_steffens AT hp.com
802  - (djm) Bug #423: reorder setting of PAM_TTY and calling of PAM session 
803    management (now done in do_setusercontext). Largely from 
804    michael_steffens AT hp.com
805  - (djm) Fix openbsd-compat/ again - remove references to strl(cpy|cat).h 
806  
807 20030829
808  - (bal) openbsd-compat/ clean up.  Considate headers, add in Id on our
809    files, and added missing license to header.
810
811 20030826
812  - (djm) Bug #629: Mark ssh_config option "pamauthenticationviakbdint"
813    as deprecated. Remove mention from README.privsep. Patch from 
814    aet AT cc.hut.fi
815  - (dtucker) OpenBSD CVS Sync
816    - markus@cvs.openbsd.org 2003/08/22 10:56:09
817      [auth2.c auth2-gss.c auth.h compat.c compat.h gss-genr.c gss-serv-krb5.c
818      gss-serv.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h readconf.c
819      readconf.h servconf.c servconf.h session.c session.h ssh-gss.h
820      ssh_config.5 sshconnect2.c sshd_config sshd_config.5]
821      support GSS API user authentication; patches from Simon Wilkinson,
822      stripped down and tested by Jakob and myself.
823    - markus@cvs.openbsd.org 2003/08/22 13:20:03
824      [sshconnect2.c]
825      remove support for "kerberos-2@ssh.com"
826    - markus@cvs.openbsd.org 2003/08/22 13:22:27
827      [auth2.c] (auth2-krb5.c removed)
828      nuke "kerberos-2@ssh.com"
829    - markus@cvs.openbsd.org 2003/08/22 20:55:06
830      [LICENCE]
831      add Simon Wilkinson
832    - deraadt@cvs.openbsd.org 2003/08/24 17:36:52
833      [monitor.c monitor_wrap.c sshconnect2.c]
834      64 bit cleanups; markus ok
835    - fgsch@cvs.openbsd.org 2003/08/25 08:13:09
836      [sftp-int.c]
837      fix div by zero when listing for filename lengths longer than width.
838      markus@ ok.
839    - djm@cvs.openbsd.org 2003/08/25 10:33:33
840      [sshconnect2.c]
841      fprintf->logit to silence login banner with "ssh -q"; ok markus@
842  - (dtucker) [Makefile.in acconfig.h auth-krb5.c auth-pam.c auth-pam.h
843    configure.ac defines.h gss-serv-krb5.c session.c ssh-gss.h sshconnect1.c
844    sshconnect2.c] Add Portable GSSAPI support, patch by Simon Wilkinson.
845  - (dtucker) [Makefile.in] Remove auth2-krb5.
846  - (dtucker) [contrib/aix/inventory.sh] Add public domain notice.  ok mouring@
847    (the original author)
848  - (dtucker) [auth.c] Do not check for locked accounts when PAM is enabled.
849
850 20030825
851  - (djm) Bug #621: Select OpenSC keys by usage attributes. Patch from 
852    larsch@trustcenter.de
853  - (bal) openbsd-compat/ OpenBSD updates.  Mostly licensing, ansifications
854    and minor fixes. OK djm@
855  - (bal) redo how we handle 'mysignal()'.  Move it to 
856    openbsd-compat/bsd-misc.c, s/mysignal/signal/ and #define signal to
857    be our 'mysignal' by default.  OK djm@
858  - (dtucker) [acconfig.h auth.c configure.ac sshd.8] Bug #422 again: deny
859    any access to locked accounts.  ok djm@
860  - (djm) Bug #564: Perform PAM account checks for all authentications when
861    UsePAM=yes; ok dtucker
862  - (dtucker) [configure.ac] Bug #533, #551: define BROKEN_GETADDRINFO on
863    Tru64, solves getnameinfo and "bad addr or host" errors.  ok djm@
864  - (dtucker) [README buildbff.sh inventory.sh] (all in contrib/aix)
865    Update package builder: correctly handle config variables, use lsuser
866    rather than /etc/passwd, fix typos, add Id's.
867
868 20030822
869  - (djm) s/get_progname/ssh_get_progname/g to avoid conflict with Heimdal 
870    -lbroken; ok dtucker 
871  - (dtucker) [contrib/cygwin/ssh-user-config] Put keys in authorized_keys
872    rather that authorized_keys2.  Patch from vinschen@redhat.com.
873
874 20030821
875  - (dtucker) OpenBSD CVS Sync
876    - markus@cvs.openbsd.org 2003/08/14 16:08:58
877      [ssh-keygen.c]
878      exit after primetest, ok djm@
879  - (dtucker) [defines.h] Put CMSG_DATA, CMSG_FIRSTHDR with other CMSG* macros,
880    change CMSG_DATA to use __CMSG_ALIGN (and thus work properly), reformat for
881    consistency.
882  - (dtucker) [configure.ac] Move openpty/ctty test outside of case statement
883    and after normal openpty test.
884
885 20030813
886  - (dtucker) [session.c] Remove #ifdef TIOCSBRK kludge.
887  - (dtucker) OpenBSD CVS Sync
888    - markus@cvs.openbsd.org 2003/08/13 08:33:02
889      [session.c]
890      use more portable tcsendbreak(3) and ignore break_length;
891      ok deraadt, millert
892    - markus@cvs.openbsd.org 2003/08/13 08:46:31
893      [auth1.c readconf.c readconf.h servconf.c servconf.h ssh.c ssh_config
894      ssh_config.5 sshconnect1.c sshd.8 sshd.c sshd_config sshd_config.5]
895      remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,
896      fgsch@, miod@, henning@, jakob@ and others
897    - markus@cvs.openbsd.org 2003/08/13 09:07:10
898      [readconf.c ssh.c]
899      socks4->socks, since with support both 4 and 5; dtucker@zip.com.au
900  - (dtucker) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
901    Add a tcsendbreak function for platforms that don't have one, based on the
902    one from OpenBSD.
903
904 20030811
905  - (dtucker) OpenBSD CVS Sync
906    (thanks to Simon Wilkinson for help with this -dt)
907    - markus@cvs.openbsd.org 2003/07/16 15:02:06
908      [auth-krb5.c]
909      mcc -> fcc; from Love Hörnquist Ã…strand <lha@it.su.se>
910      otherwise the kerberos credentinal is stored in a memory cache
911      in the privileged sshd. ok jabob@, hin@ (some time ago)
912  - (dtucker) [openbsd-compat/xcrypt.c] Remove Cygwin #ifdef block (duplicate
913    in bsd-cygwin_util.h).
914
915 20030808
916  - (dtucker) [openbsd-compat/fake-rfc2553.h] Older Linuxes have AI_PASSIVE and
917    AI_CANONNAME in netdb.h but not AI_NUMERICHOST, so check each definition
918    separately before defining them.
919  - (dtucker) [auth-pam.c] Don't set PAM_TTY if tty is null.  ok djm@
920
921 20030807
922  - (dtucker) [session.c] Have session_break_req not attempt to send a break
923    if TIOCSBRK and TIOCCBRK are not defined (eg Cygwin).
924  - (dtucker) [canohost.c] Bug #336: Only check ip options if IP_OPTIONS is
925    defined (fixes compile error on really old Linuxes).
926  - (dtucker) [defines.h] Bug #336: Add CMSG_DATA and CMSG_FIRSTHDR macros if
927    not already defined (eg Linux with some versions of libc5), based on those
928    from OpenBSD.
929  - (dtucker) [openbsd-compat/bsd-cygwin_util.c openbsd-compat/bsd-cygwin_util.h]
930    Remove incorrect filenames from comments (file names are in Id tags).
931  - (dtucker) [session.c openbsd-compat/bsd-cygwin_util.h] Move Cygwin
932    specific defines and includes to bsd-cygwin_util.h.  Fixes build error too.
933
934 20030802
935  - (dtucker) [monitor.h monitor_wrap.h] Remove excess ident tags.
936  - (dtucker) OpenBSD CVS Sync
937    - markus@cvs.openbsd.org 2003/07/22 13:35:22
938      [auth1.c auth.h auth-passwd.c monitor.c monitor.h monitor_wrap.c
939      monitor_wrap.h readconf.c readconf.h servconf.c servconf.h session.c ssh.1
940      ssh.c ssh_config.5 sshconnect1.c sshd.c sshd_config.5 ssh.h]
941      remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);
942      test+ok henning@
943  - (dtucker) [Makefile.in acconfig.h configure.ac] Remove KRB4/AFS support.
944  - (dtucker) [auth-krb4.c radix.c radix.h] Remove KRB4/AFS specific files.
945  - (dtucker) OpenBSD CVS Sync
946    - markus@cvs.openbsd.org 2003/07/23 07:42:43
947      [sshd_config]
948      remove AFS; itojun@
949    - djm@cvs.openbsd.org 2003/07/28 09:49:56
950      [ssh-keygen.1 ssh-keygen.c]
951      Support for generating Diffie-Hellman groups (/etc/moduli) from ssh-keygen.
952      Based on code from Phil Karn, William Allen Simpson and Niels Provos.
953      ok markus@, thanks jmc@
954    - markus@cvs.openbsd.org 2003/07/29 18:24:00
955      [LICENCE progressmeter.c]
956      replace 4 clause BSD licensed progressmeter code with a replacement
957      from Nils Nordman and myself; ok deraadt@
958      (copied from OpenBSD an re-applied portable changes)
959    - markus@cvs.openbsd.org 2003/07/29 18:26:46
960      [progressmeter.c]
961      fix length for "- stalled -" (included with previous import)
962    - markus@cvs.openbsd.org 2003/07/30 07:44:14
963      [progressmeter.c]
964      use only 4 digits in format_size (included with previous import)
965    - markus@cvs.openbsd.org 2003/07/30 07:53:27
966      [progressmeter.c]
967      whitespace (included with previous import)
968    - markus@cvs.openbsd.org 2003/07/31 09:21:02
969      [auth2-none.c]
970      check whether passwd auth is allowd, similar to proto 1; rob@pitman.co.za
971      ok henning
972    - avsm@cvs.openbsd.org 2003/07/31 15:50:16
973      [atomicio.c]
974      correct comment: atomicio takes vwrite, not write; deraadt@ ok
975    - markus@cvs.openbsd.org 2003/07/31 22:34:03
976      [progressmeter.c]
977      print rate similar old version; round instead truncate;
978      (included in previous progressmeter.c commit)
979  - (dtucker) [openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
980    Add a tcgetpgrp function.
981  - (dtucker) [Makefile.in moduli.c moduli.h] Add new files and to Makefile.
982  - (dtucker) [openbsd-compat/bsd-misc.c] Fix cut-and-paste bug in tcgetpgrp.
983
984 20030730
985  - (djm) [auth-pam.c] Don't use crappy APIs like sprintf. Thanks bal
986
987 20030726
988  - (dtucker) [openbsd-compat/xcrypt.c] Fix typo: DISABLED_SHADOW ->
989    DISABLE_SHADOW.  Fixes HP-UX compile error.
990
991 20030724
992  - (bal) [auth-passwd.c openbsd-compat/Makefile.in openbsd-compat/xcrypt.c 
993     openbsd-compat/xcrypt.h] Split off encryption into xcrypt() interface,
994     and isolate shadow password functions.  Tested in Solaris, but should
995     not break other platforms too badly (except maybe HP =).  Also brings
996     auth-passwd.c into full sync with OpenBSD tree.
997
998 20030723
999  - (dtucker) [configure.ac] Back out change for bug #620.
1000
1001 20030719
1002  - (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for
1003    Solaris/x86.  Patch from jrhett at isite.net.
1004  - (dtucker) OpenBSD CVS Sync
1005    - markus@cvs.openbsd.org 2003/07/14 12:36:37
1006      [sshd.c]
1007      remove undocumented -V option. would be only useful if openssh is used
1008      as ssh v1 server for ssh.com's ssh v2.
1009    - markus@cvs.openbsd.org 2003/07/16 10:34:53
1010      [ssh.c sshd.c]
1011      don't exit on multiple -v or -d; ok deraadt@
1012    - markus@cvs.openbsd.org 2003/07/16 10:36:28
1013      [sshtty.c]
1014      clear IUCLC in enter_raw_mode; from rob@pitman.co.za; ok deraadt@, fgs@
1015    - deraadt@cvs.openbsd.org 2003/07/18 01:54:25
1016      [scp.c]
1017      userid is unsigned, but well, force it anyways; andrushock@korovino.net
1018    - djm@cvs.openbsd.org 2003/07/19 00:45:53
1019      [sftp-int.c]
1020      fix sftp filename parsing for arguments with escaped quotes. bz #517;
1021      ok markus
1022    - djm@cvs.openbsd.org 2003/07/19 00:46:31
1023      [regress/sftp-cmds.sh]
1024      regress test for sftp arguments with escaped quotes; ok markus
1025
1026 20030714
1027  - (dtucker) [acconfig.h configure.ac port-aix.c] Older AIXes don't declare
1028    loginfailed at all, so assume 3-arg loginfailed if not declared.
1029  - (dtucker) [port-aix.h] Work around name collision on AIX for r_type by
1030    undef'ing it.
1031  - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h]
1032    Call setauthdb() before loginfailed(), which may load password registry-
1033    specific functions.  Based on patch by cawlfiel at us.ibm.com.
1034  - (dtucker) [port-aix.h] Fix prototypes.
1035  - (dtucker) OpenBSD CVS Sync
1036    - avsm@cvs.openbsd.org 2003/07/09 13:58:19
1037      [key.c]
1038      minor tweak: when generating the hex fingerprint, give strlcat the full
1039      bound to the buffer, and add a comment below explaining why the
1040      zero-termination is one less than the bound.  markus@ ok
1041    - markus@cvs.openbsd.org 2003/07/10 14:42:28
1042      [packet.c]
1043      the 2^(blocksize*2) rekeying limit is too expensive for 3DES,
1044      blowfish, etc, so enforce a 1GB limit for small blocksizes.
1045    - markus@cvs.openbsd.org 2003/07/10 20:05:55
1046      [sftp.c]
1047      sync usage with manpage, add missing -R
1048
1049 20030708
1050  - (dtucker) [acconfig.h auth-passwd.c configure.ac session.c port-aix.[ch]]
1051    Include AIX headers for authentication functions and make calls match
1052    prototypes.  Test for and handle 3-arg and 4-arg variants of loginfailed.
1053  - (dtucker) [session.c] Check return value of setpcred().
1054  - (dtucker) [auth-passwd.c auth.c session.c sshd.c port-aix.c port-aix.h]
1055    Convert aixloginmsg into platform-independant Buffer loginmsg.
1056
1057 20030707
1058  - (dtucker) [configure.ac] Bug #600: Check that getrusage is declared before
1059    searching libraries for it.  Fixes build errors on NCR MP-RAS.
1060
1061 20030706
1062  - (dtucker) [ssh-rand-helper.c loginrec.c]
1063    Apply atomicio typing change to these too.
1064
1065 20030703
1066  - (dtucker) OpenBSD CVS Sync
1067    - djm@cvs.openbsd.org 2003/06/28 07:48:10
1068      [sshd.c]
1069      report pidfile creation errors, based on patch from Roumen Petrov;
1070      ok markus@
1071    - deraadt@cvs.openbsd.org 2003/06/28 16:23:06
1072      [atomicio.c atomicio.h authfd.c clientloop.c monitor_wrap.c msg.c
1073      progressmeter.c scp.c sftp-client.c ssh-keyscan.c ssh.h sshconnect.c
1074      sshd.c]
1075      deal with typing of write vs read in atomicio
1076    - markus@cvs.openbsd.org 2003/06/29 12:44:38
1077      [sshconnect.c]
1078      memset 0, not \0; andrushock@korovino.net
1079    - markus@cvs.openbsd.org 2003/07/02 12:56:34
1080      [channels.c]
1081      deny dynamic forwarding with -R for v1, too; ok djm@
1082    - markus@cvs.openbsd.org 2003/07/02 14:51:16
1083      [channels.c ssh.1 ssh_config.5]
1084      (re)add socks5 suppport to -D; ok djm@
1085      now ssh(1) can act both as a socks 4 and socks 5 server and
1086      dynamically forward ports.
1087    - markus@cvs.openbsd.org 2003/07/02 20:37:48
1088      [ssh.c]
1089      convert hostkeyalias to lowercase, otherwise uppercase aliases will
1090      not match at all; ok henning@
1091    - markus@cvs.openbsd.org 2003/07/03 08:21:46
1092      [regress/dynamic-forward.sh]
1093      add socks5; speedup; reformat; based on patch from dtucker@zip.com.au
1094    - markus@cvs.openbsd.org 2003/07/03 08:24:13
1095      [regress/Makefile]
1096      enable tests for dynamic fwd via socks (-D), uses nc(1)
1097    - djm@cvs.openbsd.org 2003/07/03 08:09:06
1098      [readconf.c readconf.h ssh-keysign.c ssh.c]
1099      fix AddressFamily option in config file, from brent@graveland.net;
1100      ok markus@
1101
1102 20030630
1103  - (djm) Search for support functions necessary to build our 
1104    getrrsetbyname() replacement. Patch from Roumen Petrov 
1105
1106 20030629
1107  - (dtucker) [includes.h] Bug #602: move #include of netdb.h to after in.h
1108    (fixes compiler warnings on Solaris 2.5.1).
1109  - (dtucker) [configure.ac] Add sanity test after system-dependant compiler
1110    flag modifications.
1111    
1112 20030628
1113  - (djm) Bug #591: use PKCS#15 private key label as a comment in case 
1114    of OpenSC. Report and patch from larsch@trustcenter.de
1115  - (djm) Bug #593: Sanity check OpenSC card reader number; patch from 
1116    aj@dungeon.inka.de
1117  - (dtucker) OpenBSD CVS Sync
1118    - markus@cvs.openbsd.org 2003/06/23 09:02:44
1119      [ssh_config.5]
1120      document EnableSSHKeysign; bugzilla #599; ok deraadt@, jmc@
1121    - markus@cvs.openbsd.org 2003/06/24 08:23:46
1122      [auth2-hostbased.c auth2-pubkey.c auth2.c channels.c key.c key.h
1123       monitor.c packet.c packet.h serverloop.c sshconnect2.c sshd.c]
1124      int -> u_int; ok djm@, deraadt@, mouring@
1125    - miod@cvs.openbsd.org 2003/06/25 22:39:36
1126      [sftp-server.c]
1127      Typo police: attribute is better written with an 'r'.
1128    - markus@cvs.openbsd.org 2003/06/26 20:08:33
1129      [readconf.c]
1130      do not dump core for 'ssh -o proxycommand host'; ok deraadt@
1131  - (dtucker) [regress/dynamic-forward.sh] Import new regression test.
1132  - (dtucker) [configure.ac] Bug #570: Have ./configure --enable-FEATURE 
1133    actually enable the feature, for those normally disabled.  Patch by
1134    openssh (at) roumenpetrov.info.
1135
1136 20030624
1137  - (dtucker) Have configure refer the user to config.log and
1138    contrib/findssl.sh for OpenSSL header/library mismatches.
1139
1140 20030622
1141  - (dtucker) OpenBSD CVS Sync
1142    - markus@cvs.openbsd.org 2003/06/21 09:14:05
1143      [regress/reconfigure.sh]
1144      missing $SUDO; from dtucker@zip.com.au
1145    - markus@cvs.openbsd.org 2003/06/18 11:28:11
1146      [ssh-rsa.c]
1147      backout last change, since it violates pkcs#1
1148      switch to share/misc/license.template
1149    - djm@cvs.openbsd.org 2003/06/20 05:47:58
1150      [sshd_config.5]
1151      sync description of protocol 2 cipher proposal; ok markus
1152    - djm@cvs.openbsd.org 2003/06/20 05:48:21
1153      [sshd_config]
1154      sync some implemented options; ok markus@
1155  - (dtucker) [regress/authorized_keys_root] Remove temp data file from CVS.
1156  - (dtucker) [openbsd-compat/setproctitle.c] Ensure SPT_TYPE is defined before
1157    testing its value.
1158
1159 20030618
1160  - (djm) OpenBSD CVS Sync
1161    - markus@cvs.openbsd.org 2003/06/12 07:57:38
1162      [monitor.c sshlogin.c sshpty.c]
1163      typos; dtucker at zip.com.au
1164    - djm@cvs.openbsd.org 2003/06/12 12:22:47
1165      [LICENCE]
1166      mention more copyright holders; ok markus@
1167    - nino@cvs.openbsd.org 2003/06/12 15:34:09
1168      [scp.c]
1169      Typo. Ok markus@.
1170    - markus@cvs.openbsd.org 2003/06/12 19:12:03
1171      [scard.c scard.h ssh-agent.c ssh.c]
1172      add sc_get_key_label; larsch at trustcenter.de; bugzilla#591
1173    - markus@cvs.openbsd.org 2003/06/16 08:22:35
1174      [ssh-rsa.c]
1175      make sure the signature has at least the expected length (don't
1176      insist on len == hlen + oidlen, since this breaks some smartcards)
1177      bugzilla #592; ok djm@
1178    - markus@cvs.openbsd.org 2003/06/16 10:22:45
1179      [ssh-add.c]
1180      print out key comment on each prompt; make ssh-askpass more useable; ok djm@
1181    - markus@cvs.openbsd.org 2003/06/17 18:14:23
1182      [cipher-ctr.c]
1183      use license from /usr/share/misc/license.template for new code
1184  - (dtucker) [reconfigure.sh rekey.sh sftp-badcmds.sh]
1185    Import new regression tests from OpenBSD
1186  - (dtucker) [regress/copy.1 regress/copy.2] Remove temp data files from CVS.
1187  - (dtucker) OpenBSD CVS Sync (regress/)
1188    - markus@cvs.openbsd.org 2003/04/02 12:21:13
1189      [Makefile]
1190      enable rekey test
1191    - djm@cvs.openbsd.org 2003/04/04 09:34:22
1192      [Makefile sftp-cmds.sh]
1193      More regression tests, including recent directory rename bug; ok markus@
1194    - markus@cvs.openbsd.org 2003/05/14 22:08:27
1195      [ssh-com-client.sh ssh-com-keygen.sh ssh-com-sftp.sh ssh-com.sh]
1196      test against some new commerical versions
1197    - mouring@cvs.openbsd.org 2003/05/15 04:07:12
1198      [sftp-cmds.sh]
1199      Advanced put/get testing for sftp.  OK @djm
1200    - markus@cvs.openbsd.org 2003/06/12 15:40:01
1201      [try-ciphers.sh]
1202      add ctr
1203    - markus@cvs.openbsd.org 2003/06/12 15:43:32
1204      [Makefile]
1205      test -HUP; dtucker at zip.com.au
1206
1207 20030614
1208  - (djm) Update license on fake-rfc2553.[ch]; ok itojun@
1209
1210 20030611
1211  - (djm) Mention portable copyright holders in LICENSE
1212  - (djm) Put licenses on substantial header files
1213  - (djm) Sync LICENSE against OpenBSD
1214  - (djm) OpenBSD CVS Sync
1215    - jmc@cvs.openbsd.org 2003/06/10 09:12:11
1216      [scp.1 sftp-server.8 ssh.1 ssh-add.1 ssh-agent.1 ssh_config.5]
1217      [sshd.8 sshd_config.5 ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8]
1218      - section reorder
1219      - COMPATIBILITY merge
1220      - macro cleanup
1221      - kill whitespace at EOL
1222      - new sentence, new line
1223      ssh pages ok markus@
1224    - deraadt@cvs.openbsd.org 2003/06/10 22:20:52
1225      [packet.c progressmeter.c]
1226      mostly ansi cleanup; pval ok
1227    - jakob@cvs.openbsd.org 2003/06/11 10:16:16
1228      [sshconnect.c]
1229      clean up check_host_key() and improve SSHFP feedback. ok markus@
1230    - jakob@cvs.openbsd.org 2003/06/11 10:18:47
1231      [dns.c]
1232      sync with check_host_key() change
1233    - djm@cvs.openbsd.org 2003/06/11 11:18:38
1234      [authfd.c authfd.h ssh-add.c ssh-agent.c]
1235      make agent constraints (lifetime, confirm) work with smartcard keys; 
1236      ok markus@
1237
1238
1239 20030609
1240  - (djm) Sync README.smartcard with OpenBSD -current
1241  - (djm) Re-merge OpenSC info into README.smartcard
1242
1243 20030606
1244  - (dtucker) [uidswap.c] Fix setreuid and add missing args to fatal(). ok djm@
1245
1246 20030605
1247  - (djm) Support AI_NUMERICHOST in fake-getaddrinfo.c. Needed for recent
1248    canohost.c changes.
1249  - (djm) Implement paranoid priv dropping checks, based on:
1250    "SetUID demystified" - Hao Chen, David Wagner and Drew Dean
1251    Proceedings of USENIX Security Symposium 2002
1252  - (djm) Don't use xmalloc() or pull in toplevel headers in fake-* code
1253  - (djm) Merge all the openbsd/fake-* into fake-rfc2553.[ch]
1254  - (djm) Bug #588 - Add scard-opensc.o back to Makefile.in
1255    Patch from larsch@trustcenter.de
1256  - (djm) Bug #589 - scard-opensc: load only keys with a private keys
1257    Patch from larsch@trustcenter.de
1258  - (dtucker) Add includes.h to fake-rfc2553.c so it will build.
1259  - (dtucker) Define EAI_NONAME in fake-rfc2553.h (used by fake-rfc2553.c).
1260
1261 20030604
1262  - (djm) Bug #573 - Remove unneeded Krb headers and compat goop. Patch from
1263    simon@sxw.org.uk (Also matches a change in OpenBSD a while ago)
1264  - (djm) Bug #577 - wrong flag in scard-opensc.c sc_private_decrypt. 
1265    Patch from larsch@trustcenter.de; ok markus@
1266  - (djm) Bug #584: scard-opensc.c doesn't work without PIN. Patch from 
1267    larsch@trustcenter.de; ok markus@
1268  - (djm) OpenBSD CVS Sync
1269    - djm@cvs.openbsd.org 2003/06/04 08:25:18
1270      [sshconnect.c]
1271      disable challenge/response and keyboard-interactive auth methods 
1272      upon hostkey mismatch. based on patch from fcusack AT fcusack.com. 
1273      bz #580; ok markus@
1274    - djm@cvs.openbsd.org 2003/06/04 10:23:48
1275      [sshd.c]
1276      remove duplicated group-dropping code; ok markus@
1277    - djm@cvs.openbsd.org 2003/06/04 12:03:59
1278      [serverloop.c]
1279      remove bitrotten commet; ok markus@
1280    - djm@cvs.openbsd.org 2003/06/04 12:18:49
1281      [scp.c]
1282      ansify; ok markus@
1283    - djm@cvs.openbsd.org 2003/06/04 12:40:39
1284      [scp.c]
1285      kill ssh process upon receipt of signal, bz #241.
1286      based on patch from esb AT hawaii.edu; ok markus@
1287    - djm@cvs.openbsd.org 2003/06/04 12:41:22
1288      [sftp.c]
1289      kill ssh process on receipt of signal; ok markus@
1290  - (djm) Update to fix of bug #584: lock card before return. 
1291    From larsch@trustcenter.de
1292  - (djm) Always use mysignal() for SIGALRM
1293
1294 20030603
1295  - (djm) Replace setproctitle replacement with code derived from 
1296    UCB sendmail
1297  - (djm) OpenBSD CVS Sync
1298    - markus@cvs.openbsd.org 2003/06/02 09:17:34
1299      [auth2-hostbased.c auth.c auth-options.c auth-rhosts.c auth-rh-rsa.c]
1300      [canohost.c monitor.c servconf.c servconf.h session.c sshd_config]
1301      [sshd_config.5]
1302      deprecate VerifyReverseMapping since it's dangerous if combined
1303      with IP based access control as noted by Mike Harding; replace with
1304      a UseDNS option, UseDNS is on by default and includes the
1305      VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@
1306      ok deraadt@, djm@
1307    - millert@cvs.openbsd.org 2003/06/03 02:56:16
1308      [scp.c]
1309      Remove the advertising clause in the UCB license which Berkeley
1310      rescinded 22 July 1999.  Proofed by myself and Theo.
1311  - (djm) Fix portable-specific uses of verify_reverse_mapping too
1312  - (djm) Sync openbsd-compat with OpenBSD CVS. 
1313     - No more 4-term BSD licenses in linked code
1314  - (dtucker) [port-aix.c bsd-cray.c] Fix uses of verify_reverse_mapping.
1315
1316 20030602
1317  - (djm) Fix segv from bad reordering in auth-pam.c
1318  - (djm) Always use saved_argv in sshd.c as compat_init_setproctitle may 
1319    clobber
1320  - (tim) openbsd-compat/xmmap.[ch] License clarifications. Add missing
1321    CVS ID.
1322  - (djm) Remove "noip6" option from RedHat spec file. This may now be 
1323    set at runtime using AddressFamily option.
1324  - (djm) Fix use of macro before #define in cipher-aes.c
1325  - (djm) Sync license on openbsd-compat/bindresvport.c with OpenBSD CVS
1326  - (djm) OpenBSD CVS Sync
1327    - djm@cvs.openbsd.org 2003/05/26 12:54:40
1328      [sshconnect.c]
1329      fix format strings; ok markus@
1330    - deraadt@cvs.openbsd.org 2003/05/29 16:58:45
1331      [sshd.c uidswap.c]
1332      seteuid and setegid; markus ok
1333    - jakob@cvs.openbsd.org 2003/06/02 08:31:10
1334      [ssh_config.5]
1335      VerifyHostKeyDNS is v2 only. ok markus@
1336
1337 20030530
1338  - (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
1339    roumenpetrov.info
1340  - (dtucker) Define SSHD_ACQUIRES_CTTY for NCR MP-RAS and Reliant Unix.
1341
1342 20030526
1343  - (djm) Avoid auth2-chall.c warning when compiling without 
1344    PAM, BSD_AUTH and SKEY
1345
1346 20030525
1347 - (djm) OpenBSD CVS Sync
1348    - djm@cvs.openbsd.org 2003/05/24 09:02:22
1349      [log.c]
1350      pass logged data through strnvis; ok markus
1351    - djm@cvs.openbsd.org 2003/05/24 09:30:40
1352      [authfile.c monitor.c sftp-common.c sshpty.c]
1353      cast some types for printing; ok markus@
1354
1355 20030524
1356  - (dtucker) Correct --osfsia in INSTALL.  Patch by skeleten at shillest.net
1357
1358 20030523
1359  - (djm) Use VIS_SAFE on logged strings rather than default strnvis 
1360    encoding (which encodes many more characters)
1361  - OpenBSD CVS Sync
1362    - jmc@cvs.openbsd.org 2003/05/20 12:03:35
1363      [sftp.1]
1364      - new sentence, new line
1365      - added .Xr's
1366      - typos
1367      ok djm@
1368    - jmc@cvs.openbsd.org 2003/05/20 12:09:31
1369      [ssh.1 ssh_config.5 sshd.8 sshd_config.5 ssh-keygen.1]
1370      new sentence, new line
1371    - djm@cvs.openbsd.org 2003/05/23 08:29:30
1372      [sshconnect.c]
1373      fix leak; ok markus@
1374
1375 20030520
1376  - (djm) OpenBSD CVS Sync
1377    - deraadt@cvs.openbsd.org 2003/05/18 23:22:01
1378      [log.c]
1379      use syslog_r() in a signal handler called place; markus ok
1380  - (djm) Configure logic to detect syslog_r and friends
1381
1382 20030519
1383  - (djm) Sync auth-pam.h with what we actually implement
1384
1385 20030518
1386  - (djm) Return of the dreaded PAM_TTY_KLUDGE, which went missing in 
1387    recent merge
1388  - (djm) OpenBSD CVS Sync
1389    - djm@cvs.openbsd.org 2003/05/16 03:27:12
1390      [readconf.c ssh_config ssh_config.5 ssh-keysign.c]
1391      add AddressFamily option to ssh_config (like -4, -6 on commandline).
1392      Portable bug #534; ok markus@
1393    - itojun@cvs.openbsd.org 2003/05/17 03:25:58
1394      [auth-rhosts.c]
1395      just in case, put numbers to sscanf %s arg.
1396    - markus@cvs.openbsd.org 2003/05/17 04:27:52
1397      [cipher.c cipher-ctr.c myproposal.h]
1398      experimental support for aes-ctr modes from
1399      http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt
1400      ok djm@
1401  - (djm) Remove IPv4 by default hack now that we can specify AF in config
1402  - (djm) Tidy and trim TODO
1403  - (djm) Sync openbsd-compat/ with OpenBSD CVS head
1404  - (djm) Big KNF on openbsd-compat/
1405  - (djm) KNF on md5crypt.[ch]
1406  - (djm) KNF on auth-sia.[ch]
1407
1408 20030517
1409  - (bal) strcat -> strlcat on openbsd-compat/realpath.c (rev 1.8 OpenBSD)
1410
1411 20030516
1412  - (djm) OpenBSD CVS Sync
1413    - djm@cvs.openbsd.org 2003/05/15 13:52:10
1414      [ssh.c]
1415      Make "ssh -V" print the OpenSSL version in a human readable form. Patch
1416      from Craig Leres (mindrot at ee.lbl.gov); ok markus@
1417    - jakob@cvs.openbsd.org 2003/05/15 14:02:47
1418      [readconf.c servconf.c]
1419      warn for unsupported config option. ok markus@
1420    - markus@cvs.openbsd.org 2003/05/15 14:09:21
1421      [auth2-krb5.c]
1422      fix 64bit issue; report itojun@
1423    - djm@cvs.openbsd.org 2003/05/15 14:55:25
1424      [readconf.c readconf.h ssh_config ssh_config.5 sshconnect.c]
1425      add a ConnectTimeout option to ssh, based on patch from
1426      Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@
1427  - (djm) Add warning for UsePAM when built without PAM support
1428  - (djm) A few type mismatch fixes from Bug #565
1429  - (djm) Guard free_pam_environment against NULL argument. Works around
1430    HP/UX PAM problems debugged by dtucker
1431
1432 20030515
1433  - (djm) OpenBSD CVS Sync
1434    - jmc@cvs.openbsd.org 2003/05/14 13:11:56
1435      [ssh-agent.1]
1436      setup -> set up;
1437      from wiz@netbsd
1438    - jakob@cvs.openbsd.org 2003/05/14 18:16:20
1439      [key.c key.h readconf.c readconf.h ssh_config.5 sshconnect.c]
1440      [dns.c dns.h README.dns ssh-keygen.1 ssh-keygen.c]
1441      add experimental support for verifying hos keys using DNS as described
1442      in draft-ietf-secsh-dns-xx.txt. more information in README.dns.
1443      ok markus@ and henning@
1444    - markus@cvs.openbsd.org 2003/05/14 22:24:42
1445      [clientloop.c session.c ssh.1]
1446      allow to send a BREAK to the remote system; ok various
1447    - markus@cvs.openbsd.org 2003/05/15 00:28:28
1448      [sshconnect2.c]
1449      cleanup unregister of per-method packet handlers; ok djm@
1450    - jakob@cvs.openbsd.org 2003/05/15 01:48:10
1451      [readconf.c readconf.h servconf.c servconf.h]
1452      always parse kerberos options. ok djm@ markus@
1453    - jakob@cvs.openbsd.org 2003/05/15 02:27:15
1454      [dns.c]
1455      add missing freerrset
1456    - markus@cvs.openbsd.org 2003/05/15 03:08:29
1457      [cipher.c cipher-bf1.c cipher-aes.c cipher-3des1.c]
1458      split out custom EVP ciphers
1459    - djm@cvs.openbsd.org 2003/05/15 03:10:52
1460      [ssh-keygen.c]
1461      avoid warning; ok jakob@
1462    - mouring@cvs.openbsd.org 2003/05/15 03:39:07
1463      [sftp-int.c]
1464      Make put/get (globed and nonglobed) code more consistant. OK djm@
1465    - mouring@cvs.openbsd.org 2003/05/15 03:43:59
1466      [sftp-int.c sftp.c]
1467      Teach ls how to display multiple column display and allow users 
1468      to return to single column format via 'ls -1'.  OK @djm
1469    - jakob@cvs.openbsd.org 2003/05/15 04:08:44
1470      [readconf.c servconf.c]
1471      disable kerberos when not supported. ok markus@
1472    - markus@cvs.openbsd.org 2003/05/15 04:08:41
1473      [ssh.1]
1474      ~B is ssh2 only
1475  - (djm) Always parse UsePAM
1476  - (djm) Configure glue for DNS support (code doesn't work in portable yet)
1477  - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
1478  - (djm) Tidy Makefile clean targets
1479  - (djm) Adapt README.dns for portable
1480  - (djm) Avoid uuencode.c warnings
1481  - (djm) Enable UsePAM when built --with-pam
1482  - (djm) Only build getrrsetbyname replacement when using --with-dns
1483  - (djm) Bug #529: sshd doesn't work correctly after SIGHUP (copy argv 
1484          correctly)
1485  - (djm) Bug #444: Wrong paths after reconfigure
1486  - (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK
1487
1488 20030514
1489  - (djm) Bug #117: Don't lie to PAM about username
1490  - (djm) RCSID sync w/ OpenBSD
1491  - (djm) OpenBSD CVS Sync
1492    - djm@cvs.openbsd.org 2003/04/09 12:00:37
1493      [readconf.c]
1494      strip trailing whitespace from config lines before parsing. 
1495      Fixes bz 528; ok markus@
1496    - markus@cvs.openbsd.org 2003/04/12 10:13:57
1497      [cipher.c]
1498      hide cipher details; ok djm@
1499    - markus@cvs.openbsd.org 2003/04/12 10:15:36
1500      [misc.c]
1501      debug->debug2
1502    - naddy@cvs.openbsd.org 2003/04/12 11:40:15
1503      [ssh.1]
1504      document -V switch, fix wording; ok markus@
1505    - markus@cvs.openbsd.org 2003/04/14 14:17:50
1506      [channels.c sshconnect.c sshd.c ssh-keyscan.c]
1507      avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTP
1508    - mouring@cvs.openbsd.org 2003/04/14 21:31:27
1509      [sftp-int.c]
1510      Missing globfree(&g) in process_put() spotted by Vince Brimhall
1511      <VBrimhall@novell.com>.  ok@ Theo
1512    - markus@cvs.openbsd.org 2003/04/16 14:35:27
1513      [auth.h]
1514      document struct Authctxt; with solar
1515    - deraadt@cvs.openbsd.org 2003/04/26 04:29:49
1516      [ssh-keyscan.c]
1517      -t in usage(); rogier@quaak.org
1518    - mouring@cvs.openbsd.org 2003/04/30 01:16:20
1519      [sshd.8 sshd_config.5]
1520      Escape ?, * and ! in .Ql for nroff compatibility.  OpenSSH Portable 
1521      Bug #550 and * escaping suggested by jmc@.
1522    - david@cvs.openbsd.org 2003/04/30 20:41:07
1523      [sshd.8]
1524      fix invalid .Pf macro usage introduced in previous commit
1525      ok jmc@ mouring@
1526    - markus@cvs.openbsd.org 2003/05/11 16:56:48
1527      [authfile.c ssh-keygen.c]
1528      change key_load_public to try to read a public from:
1529      rsa1 private or rsa1 public and ssh2 keys.
1530      this makes ssh-keygen -e fail for ssh1 keys more gracefully
1531      for example; report from itojun (netbsd pr 20550).
1532    - markus@cvs.openbsd.org 2003/05/11 20:30:25
1533      [channels.c clientloop.c serverloop.c session.c ssh.c]
1534      make channel_new() strdup the 'remote_name' (not the caller); ok theo
1535    - markus@cvs.openbsd.org 2003/05/12 16:55:37
1536      [sshconnect2.c]
1537      for pubkey authentication try the user keys in the following order:
1538         1. agent keys that are found in the config file
1539         2. other agent keys
1540         3. keys that are only listed in the config file
1541      this helps when an agent has many keys, where the server might
1542      close the connection before the correct key is used. report & ok pb@
1543    - markus@cvs.openbsd.org 2003/05/12 18:35:18
1544      [ssh-keyscan.1]
1545      typo: DSA keys are of type ssh-dss; Brian Poole
1546    - markus@cvs.openbsd.org 2003/05/14 00:52:59
1547      [ssh2.h]
1548      ranges for per auth method messages
1549    - djm@cvs.openbsd.org 2003/05/14 01:00:44
1550      [sftp.1]
1551      emphasise the batchmode functionality and make reference to pubkey auth,
1552      both of which are FAQs; ok markus@
1553    - markus@cvs.openbsd.org 2003/05/14 02:15:47
1554      [auth2.c monitor.c sshconnect2.c auth2-krb5.c]
1555      implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@
1556      server interops with commercial client; ok jakob@ djm@
1557    - jmc@cvs.openbsd.org 2003/05/14 08:25:39
1558      [sftp.1]
1559      - better formatting in SYNOPSIS
1560      - whitespace at EOL
1561      ok djm@
1562    - markus@cvs.openbsd.org 2003/05/14 08:57:49
1563      [monitor.c]
1564      http://bugzilla.mindrot.org/show_bug.cgi?id=560
1565      Privsep child continues to run after monitor killed.
1566      Pass monitor signals through to child; Darren Tucker
1567  - (djm) Make portable build with MIT krb5 (some issues remain)
1568  - (djm) Add new UsePAM configuration directive to allow runtime control
1569    over usage of PAM. This allows non-root use of sshd when built with
1570    --with-pam
1571  - (djm) Die screaming if start_pam() is called when UsePAM=no
1572  - (djm) Avoid KrbV leak for MIT Kerberos
1573  - (dtucker) Set ai_socktype and ai_protocol in fake-getaddrinfo.c. ok djm@
1574  - (djm) Bug #258: sscanf("[0-9]") -> sscanf("[0123456789]") for portability
1575
1576 20030512
1577  - (djm) Redhat spec: Don't install profile.d scripts when not 
1578    building with GNOME/GTK askpass (patch from bet@rahul.net)
1579
1580 20030510
1581  - (dtucker) Bug #318: Create ssh_prng_cmds.out during "make" rather than
1582    "make install".  Patch by roth@feep.net.
1583  - (dtucker) Bug #536: Test for and work around openpty/controlling tty
1584    problem on Linux (fixes "could not set controlling tty" errors).
1585  - (djm) Merge FreeBSD PAM code: replaces PAM password auth kludge with 
1586    proper challenge-response module
1587  - (djm) 2-clause license on loginrec.c, with permission from
1588    andre@ae-35.com
1589
1590 20030504
1591  - (dtucker) Bug #497: Move #include of bsd-cygwin_util.h to openbsd-compat.h.
1592    Patch from vinschen@redhat.com.
1593
1594 20030503
1595  - (dtucker) Add missing "void" to record_failed_login in bsd-cray.c.  Noted
1596    by wendyp@cray.com.
1597
1598 20030502
1599  - (dtucker) Bug #544: ignore invalid cmsg_type on Linux 2.0 kernels,
1600    privsep should now work.
1601  - (dtucker) Move handling of bad password authentications into a platform
1602    specific record_failed_login() function (affects AIX & Unicos). ok mouring@
1603
1604 20030429
1605  - (djm) Add back radix.o (used by AFS support), after it went missing from
1606    Makefile many moons ago
1607  - (djm) Apply "owl-always-auth" patch from Openwall/Solar Designer
1608  - (djm) Fix blibpath specification for AIX/gcc
1609  - (djm) Some systems have basename in -lgen. Fix from ayamura@ayamura.org
1610
1611 20030428
1612  - (bal) [defines.h progressmeter.c scp.c] Some more culling of non 64bit 
1613    hacked code.
1614
1615 20030427
1616  - (bal) Bug #541: return; was dropped by mistake.  Reported by 
1617    furrier@iglou.com
1618  - (bal) Since we don't support platforms lacking u_int_64.  We may
1619    as well clean out some of those evil #ifdefs
1620  - (bal) auth1.c minor resync while looking at the code.
1621  - (bal) auth2.c same changed as above.
1622
1623 20030409
1624  - (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report 
1625    from matth@eecs.berkeley.edu
1626  - (djm) Make the spec work with Redhat 9.0 (which renames sharutils)
1627  - (djm) OpenBSD CVS Sync
1628    - markus@cvs.openbsd.org 2003/04/02 09:48:07
1629      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1630      [readconf.h serverloop.c sshconnect2.c]
1631      reapply rekeying chage, tested by henning@, ok djm@
1632    - markus@cvs.openbsd.org 2003/04/02 14:36:26
1633      [ssh-keysign.c]
1634      potential segfault if KEY_UNSPEC; cjwatson@debian.org; bug #526
1635    - itojun@cvs.openbsd.org 2003/04/03 07:25:27
1636      [progressmeter.c]
1637      $OpenBSD$
1638    - itojun@cvs.openbsd.org 2003/04/03 10:17:35
1639      [progressmeter.c]
1640      remove $OpenBSD$, as other *.c does not have it.
1641    - markus@cvs.openbsd.org 2003/04/07 08:29:57
1642      [monitor_wrap.c]
1643      typo: get correct counters; introduced during rekeying change.
1644    - millert@cvs.openbsd.org 2003/04/07 21:58:05
1645      [progressmeter.c]
1646      The UCB copyright here is incorrect.  This code did not originate
1647      at UCB, it was written by Luke Mewburn.  Updated the copyright at
1648      the author's request.  markus@ OK
1649    - itojun@cvs.openbsd.org 2003/04/08 20:21:29
1650      [*.c *.h]
1651      rename log() into logit() to avoid name conflict.  markus ok, from
1652      netbsd
1653      - (djm) XXX - Performed locally using:
1654        "perl -p -i -e 's/(\s|^)log\(/$1logit\(/g' *.c *.h"
1655    - hin@cvs.openbsd.org 2003/04/09 08:23:52
1656      [servconf.c]
1657      Don't include <krb.h> when compiling with Kerberos 5 support
1658    - (djm) Fix up missing include for packet.c
1659    - (djm) Fix missed log => logit occurance (reference by function pointer)
1660
1661 20030402
1662  - (bal) if IP_TOS is not found or broken don't try to compile in
1663    packet_set_tos() function call.  bug #527
1664
1665 20030401
1666  - (djm) OpenBSD CVS Sync
1667    - jmc@cvs.openbsd.org 2003/03/28 10:11:43
1668      [scp.1 sftp.1 ssh.1 ssh-add.1 ssh-agent.1 ssh_config.5 sshd_config.5]
1669      [ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8]
1670      - killed whitespace
1671      - new sentence new line
1672      - .Bk for arguments
1673      ok markus@
1674    - markus@cvs.openbsd.org 2003/04/01 10:10:23
1675      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1676      [readconf.h serverloop.c sshconnect2.c]
1677      rekeying bugfixes and automatic rekeying:
1678      * both client and server rekey _automatically_
1679            (a) after 2^31 packets, because after 2^32 packets
1680                the sequence number for packets wraps
1681            (b) after 2^(blocksize_in_bits/4) blocks
1682        (see: draft-ietf-secsh-newmodes-00.txt)
1683        (a) and (b) are _enabled_ by default, and only disabled for known
1684        openssh versions, that don't support rekeying properly.
1685      * client option 'RekeyLimit'
1686      * do not reply to requests during rekeying
1687    - markus@cvs.openbsd.org 2003/04/01 10:22:21
1688      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1689      [readconf.h serverloop.c sshconnect2.c]
1690      backout rekeying changes (for 3.6.1)
1691    - markus@cvs.openbsd.org 2003/04/01 10:31:26
1692      [compat.c compat.h kex.c]
1693      bugfix causes stalled connections for ssh.com < 3.0; noticed by ho@; 
1694      tested by ho@ and myself
1695    - markus@cvs.openbsd.org 2003/04/01 10:56:46
1696      [version.h]
1697      3.6.1
1698  - (djm) Crank spec file versions
1699  - (djm) Release 3.6.1p1
1700
1701 20030326
1702  - (djm) OpenBSD CVS Sync
1703    - deraadt@cvs.openbsd.org 2003/03/26 04:02:51
1704      [sftp-server.c]
1705      one last fix to the tree: race fix broke stuff; pr 3169; 
1706      srp@srparish.net, help from djm
1707
1708 20030325
1709  - (djm) Fix getpeerid support for 64 bit BE systems. From 
1710     Arnd Bergmann <arndb@de.ibm.com>
1711
1712 20030324
1713  - (djm) OpenBSD CVS Sync
1714    - markus@cvs.openbsd.org 2003/03/23 19:02:00
1715      [monitor.c]
1716      unbreak rekeying for privsep; ok millert@
1717  - Release 3.6p1
1718  - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1719    Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1720
1721 $Id$
This page took 0.186284 seconds and 3 git commands to generate.