]> andersk Git - openssh.git/blob - ChangeLog
- pvalchev@cvs.openbsd.org 2001/06/05 05:05:39
[openssh.git] / ChangeLog
1 20010609
2  - OpenBSD CVS Sync
3    - markus@cvs.openbsd.org 2001/05/30 12:55:13
4      [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c 
5       packet.c serverloop.c session.c ssh.c ssh1.h]
6      channel layer cleanup: merge header files and split .c files
7    - markus@cvs.openbsd.org 2001/05/30 15:20:10
8      [ssh.c]
9      merge functions, simplify.
10    - markus@cvs.openbsd.org 2001/05/31 10:30:17
11      [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c 
12       packet.c serverloop.c session.c ssh.c]
13      undo the .c file split, just merge the header and keep the cvs 
14      history
15  - (bal) Channels.c and Channels.h -- "Merge Functions, simplify" (draged 
16    out of ssh Attic)
17  - (bal) Ooops.. nchan.c (and remove nchan.h) resync from OpenBSD ssh 
18    Attic.
19  - OpenBSD CVS Sync
20    - markus@cvs.openbsd.org 2001/05/31 13:08:04
21      [sshd_config]
22      group options and add some more comments
23    - markus@cvs.openbsd.org 2001/06/03 14:55:39
24      [channels.c channels.h session.c]
25      use fatal_register_cleanup instead of atexit, sync with x11 authdir 
26      handling
27    - markus@cvs.openbsd.org 2001/06/03 19:36:44
28      [ssh-keygen.1]
29      1-2 bits of entrophy per character (not per word), ok stevesk@
30    - markus@cvs.openbsd.org 2001/06/03 19:38:42
31      [scp.c]
32      pass -v to ssh; from slade@shore.net
33    - markus@cvs.openbsd.org 2001/06/03 20:06:11
34      [auth2-chall.c]
35      the challenge response device decides how to handle non-existing 
36      users.
37      -> fake challenges for skey and cryptocard
38    - markus@cvs.openbsd.org 2001/06/04 21:59:43
39      [channels.c channels.h session.c]
40      switch uid when cleaning up tmp files and sockets; reported by 
41      zen-parse@gmx.net on bugtraq
42    - markus@cvs.openbsd.org 2001/06/04 23:07:21
43      [clientloop.c serverloop.c sshd.c]
44      set flags in the signal handlers, do real work in the main loop, 
45      ok provos@
46    - markus@cvs.openbsd.org 2001/06/04 23:16:16
47      [session.c]
48      merge ssh1/2 x11-fwd setup, create listener after tmp-dir
49    - pvalchev@cvs.openbsd.org 2001/06/05 05:05:39
50      [ssh-keyscan.1 ssh-keyscan.c]
51      License clarification from David Mazieres, ok deraadt@
52
53 20010606
54  - OpenBSD CVS Sync
55    - markus@cvs.openbsd.org 2001/05/17 21:34:15 
56      [ssh.1]
57      no spaces in PreferredAuthentications; 
58      meixner@rbg.informatik.tu-darmstadt.de
59    - markus@cvs.openbsd.org 2001/05/18 14:13:29
60      [auth-chall.c auth.h auth1.c auth2-chall.c auth2.c readconf.c 
61       readconf.h servconf.c servconf.h sshconnect1.c sshconnect2.c sshd.c]
62      improved kbd-interactive support. work by per@appgate.com and me
63    - djm@cvs.openbsd.org 2001/05/19 00:36:40
64      [session.c]
65      Disable X11 forwarding if xauth binary is not found. Patch from Nalin
66      Dahyabhai <nalin@redhat.com>; ok markus@
67    - markus@cvs.openbsd.org 2001/05/19 16:05:41           
68      [scp.c]                                              
69      ftruncate() instead of open()+O_TRUNC like rcp.c does
70      allows scp /path/to/file localhost:/path/to/file     
71    - markus@cvs.openbsd.org 2001/05/19 16:08:43 
72      [sshd.8]                                   
73      sort options; Matthew.Stier@fnc.fujitsu.com
74    - markus@cvs.openbsd.org 2001/05/19 16:32:16            
75      [ssh.1 sshconnect2.c]                                 
76      change preferredauthentication order to               
77         publickey,hostbased,password,keyboard-interactive  
78      document that hostbased defaults to no, document order
79    - markus@cvs.openbsd.org 2001/05/19 16:46:19
80      [ssh.1 sshd.8]                            
81      document MACs defaults with .Dq           
82    - stevesk@cvs.openbsd.org 2001/05/19 19:43:57                          
83      [misc.c misc.h servconf.c sshd.8 sshd.c]                             
84      sshd command-line arguments and configuration file options that      
85      specify time may be expressed using a sequence of the form:          
86      time[qualifier], where time is a positive integer value and qualifier
87      is one of the following:                                             
88          <none>,s,m,h,d,w                                                 
89      Examples:                                                            
90          600     600 seconds (10 minutes)                                 
91          10m     10 minutes                                               
92          1h30m   1 hour 30 minutes (90 minutes)                           
93      ok markus@                                                           
94    - stevesk@cvs.openbsd.org 2001/05/19 19:57:09
95      [channels.c]                               
96      typo in error message                      
97    - markus@cvs.openbsd.org 2001/05/20 17:20:36
98      [auth-rsa.c auth.c auth.h auth2.c servconf.c servconf.h sshd.8
99       sshd_config]
100      configurable authorized_keys{,2} location; originally from peter@; 
101      ok djm@ 
102    - markus@cvs.openbsd.org 2001/05/24 11:12:42
103      [auth.c]                                  
104      fix comment; from jakob@                  
105    - stevesk@cvs.openbsd.org 2001/05/24 18:57:53                         
106      [clientloop.c readconf.c ssh.c ssh.h]                               
107      don't perform escape processing when ``EscapeChar none''; ok markus@
108    - markus@cvs.openbsd.org 2001/05/25 14:37:32
109      [ssh-keygen.c]                            
110      use -P for -e and -y, too.                
111    - markus@cvs.openbsd.org 2001/05/28 08:04:39
112      [ssh.c]                                   
113      fix usage()                               
114    - markus@cvs.openbsd.org 2001/05/28 10:08:55            
115      [authfile.c]                                          
116      key_load_private: set comment to filename for PEM keys
117    - markus@cvs.openbsd.org 2001/05/28 22:51:11
118      [cipher.c cipher.h]                       
119      simpler 3des for ssh1                     
120    - markus@cvs.openbsd.org 2001/05/28 23:14:49            
121      [channels.c channels.h nchan.c]                       
122      undo broken channel fix and try a different one. there
123      should be still some select errors...                 
124    - markus@cvs.openbsd.org 2001/05/28 23:25:24 
125      [channels.c]                               
126      cleanup, typo                              
127    - markus@cvs.openbsd.org 2001/05/28 23:58:35
128      [packet.c packet.h sshconnect.c sshd.c]   
129      remove some lines, simplify.              
130    - markus@cvs.openbsd.org 2001/05/29 12:31:27
131      [authfile.c]                              
132      typo                                      
133
134 20010528
135  - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c
136    Patch by Corinna Vinschen <vinschen@redhat.com>
137
138 20010517
139  - OpenBSD CVS Sync
140    - markus@cvs.openbsd.org 2001/05/12 19:53:13
141      [sftp-server.c]
142      readlink does not NULL-terminate; mhe@home.se
143    - deraadt@cvs.openbsd.org 2001/05/15 22:04:01
144      [ssh.1]
145      X11 forwarding details improved
146    - markus@cvs.openbsd.org 2001/05/16 20:51:57
147      [authfile.c]
148      return comments for private pem files, too; report from nolan@naic.edu
149    - markus@cvs.openbsd.org 2001/05/16 21:53:53
150      [clientloop.c]
151      check for open sessions before we call select(); fixes the x11 client
152      bug reported by bowman@math.ualberta.ca
153    - markus@cvs.openbsd.org 2001/05/16 22:09:21
154      [channels.c nchan.c]
155      more select() error fixes (don't set rfd/wfd to -1).
156  - (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
157  - (bal) Corrected on_exit() emulation via atexit().  
158
159 20010512
160  - OpenBSD CVS Sync
161    - markus@cvs.openbsd.org 2001/05/11 14:59:56
162      [clientloop.c misc.c misc.h]
163      add unset_nonblock for stdout/err flushing in client_loop().
164  - (bal) Patch to partial sync up contrib/solaris/ packaging software.
165    Patch by pete <ninjaz@webexpress.com>
166
167 20010511
168  - OpenBSD CVS Sync
169    - markus@cvs.openbsd.org 2001/05/09 22:51:57
170      [channels.c]
171      fix -R for protocol 2, noticed by greg@nest.cx.
172      bug was introduced with experimental dynamic forwarding.
173    - markus@cvs.openbsd.org 2001/05/09 23:01:31
174      [rijndael.h]
175      fix prototype; J.S.Peatfield@damtp.cam.ac.uk
176
177 20010509
178   - OpenBSD CVS Sync
179    - markus@cvs.openbsd.org 2001/05/06 21:23:31
180      [cli.c]
181      cli_read() fails to catch SIGINT + overflow; from obdb@zzlevo.net
182    - markus@cvs.openbsd.org 2001/05/08 19:17:31
183      [channels.c serverloop.c clientloop.c]
184      adds correct error reporting to async connect()s
185      fixes the server-discards-data-before-connected-bug found by 
186      onoe@sm.sony.co.jp
187    - mouring@cvs.openbsd.org 2001/05/08 19:45:25
188      [misc.c misc.h scp.c sftp.c]
189      Use addargs() in sftp plus some clean up of addargs().  OK Markus
190    - markus@cvs.openbsd.org 2001/05/06 21:45:14
191      [clientloop.c]
192      use atomicio for flushing stdout/stderr bufs. thanks to 
193      jbw@izanami.cee.hw.ac.uk
194    - markus@cvs.openbsd.org 2001/05/08 22:48:07
195      [atomicio.c]
196      no need for xmalloc.h, thanks to espie@
197  - (bal) UseLogin patch for Solaris/UNICOS.  Patch by Wayne Davison 
198    <wayne@blorf.net>
199  - (bal) ./configure support to disable SIA on OSF1.  Patch by
200    Chris Adams <cmadams@hiwaay.net>
201  - (bal) Updates from the Sony NEWS-OS platform by NAKAJI Hiroyuki 
202    <nakaji@tutrp.tut.ac.jp>
203
204 20010508
205  - (bal) Fixed configure test for USE_SIA.  
206
207 20010506
208  - (djm) Update config.guess and config.sub with latest versions (from
209    ftp://ftp.gnu.org/gnu/config/) to allow configure on ia64-hpux.
210    Suggested by Jason Mader <jason@ncac.gwu.edu>
211  - (bal) White Space and #ifdef sync with OpenBSD
212  - (bal) Add 'seed_rng()' to ssh-add.c
213  - (bal) CVS ID updates for readpass.c, readpass.h, cli.c, and cli.h
214  - OpenBSD CVS Sync
215    - stevesk@cvs.openbsd.org 2001/05/05 13:42:52
216      [sftp.1 ssh-add.1 ssh-keygen.1]
217      typos, grammar
218
219 20010505
220  - OpenBSD CVS Sync
221    - stevesk@cvs.openbsd.org 2001/05/04 14:21:56
222      [ssh.1 sshd.8]
223      typos
224    - markus@cvs.openbsd.org 2001/05/04 14:34:34
225      [channels.c]
226      channel_new() reallocs channels[], we cannot use Channel *c after
227      calling channel_new(), XXX fix this in the future...
228    - markus@cvs.openbsd.org 2001/05/04 23:47:34
229      [channels.c channels.h clientloop.c nchan.c nchan.h serverloop.c ssh.c]
230      move to Channel **channels (instead of Channel *channels), fixes realloc 
231      problems.  channel_new now returns a Channel *, favour Channel * over 
232      channel id.  remove old channel_allocate interface.
233
234 20010504
235  - OpenBSD CVS Sync
236    - stevesk@cvs.openbsd.org 2001/05/03 15:07:39
237      [channels.c]
238      typo in debug() string
239    - markus@cvs.openbsd.org 2001/05/03 15:45:15
240      [session.c]
241      exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au
242    - stevesk@cvs.openbsd.org 2001/05/03 21:43:01
243      [servconf.c]
244      remove "\n" from fatal()
245    - mouring@cvs.openbsd.org 2001/05/03 23:09:53
246      [misc.c misc.h scp.c sftp.c]
247      Move colon() and cleanhost() to misc.c where I should I have put it in
248      the first place
249  - (bal) Updated Cygwin README by Corinna Vinschen <vinschen@redhat.com>
250  - (bal) Avoid socket file security issues in ssh-agent for Cygwin.
251    Patch by Egor Duda <deo@logos-m.ru>
252
253 20010503
254  - OpenBSD CVS Sync
255    - markus@cvs.openbsd.org 2001/05/02 16:41:20
256      [ssh-add.c]
257      fix prompt for ssh-add.
258
259 20010502
260  - OpenBSD CVS Sync
261    - mouring@cvs.openbsd.org 2001/05/02 01:25:39
262      [readpass.c]
263      Put the 'const' back into ssh_askpass() function.  Pointed out
264      by Mark Miller <markm@swoon.net>.  OK Markus
265
266 20010501
267  - OpenBSD CVS Sync
268    - markus@cvs.openbsd.org 2001/04/30 11:18:52
269      [readconf.c readconf.h ssh.1 ssh.c sshconnect.c]
270      implement 'ssh -b bind_address' like 'telnet -b'
271    - markus@cvs.openbsd.org 2001/04/30 15:50:46
272      [compat.c compat.h kex.c]
273      allow interop with weaker key generation used by ssh-2.0.x, x < 10
274    - markus@cvs.openbsd.org 2001/04/30 16:02:49
275      [compat.c]
276      ssh-2.0.10 has the weak-key-bug, too.
277  - (tim) [contrib/caldera/openssh.spec] add Requires line for Caldera 3.1
278
279 20010430
280  - OpenBSD CVS Sync
281    - markus@cvs.openbsd.org 2001/04/29 18:32:52
282      [serverloop.c]
283      fix whitespace
284    - markus@cvs.openbsd.org 2001/04/29 19:16:52
285      [channels.c clientloop.c compat.c compat.h serverloop.c]
286      more ssh.com-2.0.x bug-compat; from per@appgate.com
287  - (tim) New version of mdoc2man.pl from Mark D. Roth <roth+openssh@feep.net>
288  - (djm) Add .cvsignore files, suggested by Wayne Davison <wayne@blorf.net>
289
290 20010429
291  - (bal) Updated INSTALL.  PCRE moved to a new place.
292  - (djm) Release OpenSSH-2.9p1
293
294 20010427
295  - (bal) Fixed uidswap.c so it should work on non-posix complient systems.
296    patch based on 2.5.2 version by djm.
297  - (bal) Build manpages and config files once unless changed.  Patch by
298    Carson Gaspar <carson@taltos.org>
299  - (bal) arpa/nameser.h does not exist on Cygwin.  Patch by Corinna 
300    Vinschen <vinschen@redhat.com>
301  - (bal) Add /etc/sysconfig/sshd support to redhat's sshd.init. Patch by
302    Pekka Savola <pekkas@netcore.fi>
303  - (bal) Cygwin lacks setgroups() API.  Patch by Corinna Vinschen 
304    <vinschen@redhat.com>
305  - (bal) version.h synced, RPM specs updated for 2.9
306  - (tim) update contrib/caldera files with what Caldera is using.
307    <sps@caldera.de>
308
309 20010425
310  - OpenBSD CVS Sync
311    - markus@cvs.openbsd.org 2001/04/23 21:57:07
312      [ssh-keygen.1 ssh-keygen.c]
313      allow public key for -e, too
314    - markus@cvs.openbsd.org 2001/04/23 22:14:13
315      [ssh-keygen.c]
316      remove debug
317  - (bal) Whitespace resync w/ OpenBSD for uidswap.c
318  - (djm) Add new server configuration directive 'PAMAuthenticationViaKbdInt'
319    (default: off), implies KbdInteractiveAuthentication. Suggestion from 
320    markus@
321  - (djm) Include crypt.h if available in auth-passwd.c
322  - tim@mindrot.org 2001/04/25 21:38:01 [configure.in]
323    man page detection fixes for SCO
324
325 20010424
326  - OpenBSD CVS Sync
327    - markus@cvs.openbsd.org 2001/04/22 23:58:36
328      [ssh-keygen.1 ssh.1 sshd.8]
329      document hostbased and other cleanup
330  - (stevesk) start_pam() doesn't use DNS now for sshd -u0.
331  - (stevesk) auth-pam.c: use PERMIT_NO_PASSWD
332  - (bal) sys/queue.h is bogus for NCR platform.  Patch by Daniel Carroll 
333    <dan@mesastate.edu>
334  - (bal) Fixed contrib/postinstall.in.  Patch by wsanders@wsanders.net
335
336 20010422
337  - OpenBSD CVS Sync
338    - markus@cvs.openbsd.org 2001/04/20 16:32:22
339      [uidswap.c]
340      set non-privileged gid before uid; tholo@ and deraadt@
341    - mouring@cvs.openbsd.org 2001/04/21 00:55:57
342      [sftp.1]
343      Spelling
344    - djm@cvs.openbsd.org 2001/04/22 08:13:30
345      [ssh.1]
346      typos spotted by stevesk@; ok deraadt@
347    - markus@cvs.openbsd.org 2001/04/22 12:34:05
348      [scp.c]
349      scp > 2GB; niles@scyld.com; ok deraadt@, djm@
350    - markus@cvs.openbsd.org 2001/04/22 13:25:37
351      [ssh-keygen.1 ssh-keygen.c]
352      rename arguments -x -> -e (export key), -X -> -i (import key)
353      xref draft-ietf-secsh-publickeyfile-01.txt
354    - markus@cvs.openbsd.org 2001/04/22 13:32:27
355      [sftp-server.8 sftp.1 ssh.1 sshd.8]
356      xref draft-ietf-secsh-*
357    - markus@cvs.openbsd.org 2001/04/22 13:41:02
358      [ssh-keygen.1 ssh-keygen.c]
359      style, noted by stevesk; sort flags in usage
360
361 20010421
362  - OpenBSD CVS Sync
363    - djm@cvs.openbsd.org 2001/04/20 07:17:51
364      [clientloop.c ssh.1]
365      Split out and improve escape character documentation, mention ~R in
366      ~? help text; ok markus@
367  - Update RPM spec files for CVS version.h
368  - (stevesk) set the default PAM service name to __progname instead
369    of the hard-coded value "sshd"; from Mark D. Roth <roth@feep.net>
370  - (stevesk) document PAM service name change in INSTALL
371  - tim@mindrot.org 2001/04/21 14:25:57 [Makefile.in configure.in]
372    fix perl test, fix nroff test, fix Makefile to build outside source tree
373
374 20010420
375  - OpenBSD CVS Sync                         
376    - ian@cvs.openbsd.org 2001/04/18 16:21:05
377      [ssh-keyscan.1]                        
378      Fix typo reported in PR/1779           
379    - markus@cvs.openbsd.org 2001/04/18 21:57:42                            
380      [readpass.c ssh-add.c]                                                
381      call askpass from ssh, too, based on work by roth@feep.net, ok deraadt
382    - markus@cvs.openbsd.org 2001/04/18 22:03:45                           
383      [auth2.c sshconnect2.c]                                              
384      use FDQN with trailing dot in the hostbased auth packets, ok deraadt@
385    - markus@cvs.openbsd.org 2001/04/18 22:48:26
386      [auth2.c]                                 
387      no longer const                           
388    - markus@cvs.openbsd.org 2001/04/18 23:43:26                          
389      [auth2.c compat.c sshconnect2.c]                                    
390      more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works now      
391      (however the 2.1.0 server seems to work only if debug is enabled...)
392    - markus@cvs.openbsd.org 2001/04/18 23:44:51
393      [authfile.c] 
394      error->debug; noted by fries@ 
395    - markus@cvs.openbsd.org 2001/04/19 00:05:11       
396      [auth2.c]                                        
397      use local variable, no function call needed.     
398      (btw, hostbased works now with ssh.com >= 2.0.13)
399   - (bal) Put scp-common.h back into scp.c (it exists in the upstream
400     tree) pointed out by Tom Holroyd <tomh@po.crl.go.jp>
401
402 20010418
403   - OpenBSD CVS Sync                            
404    - markus@cvs.openbsd.org 2001/04/17 19:34:25
405      [session.c]
406      move auth_approval to do_authenticated().
407      do_child(): nuke hostkeys from memory
408      don't source .ssh/rc for subsystems.
409    - markus@cvs.openbsd.org 2001/04/18 14:15:00
410      [canohost.c]
411      debug->debug3
412   - (bal) renabled 'catman-do:' and fixed it.  So now catman pages should
413     be working again.
414   - (bal) Makfile day... Cleaned up multiple mantype support (Patch by
415     Mark D. Roth <roth+openssh@feep.net>), and fixed PIDDIR support.
416
417 20010417
418   - (bal) Add perl5 check for HP/UX, Removed GNUness from Makefile.in
419     and temporary commented out 'catman-do:' since it is broken.  Patches
420     for the first two by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
421   - OpenBSD CVS Sync
422    - deraadt@cvs.openbsd.org 2001/04/16 08:26:04
423      [key.c]
424      better safe than sorry in later mods; yongari@kt-is.co.kr
425    - markus@cvs.openbsd.org 2001/04/17 08:14:01
426      [sshconnect1.c]
427      check for key!=NULL, thanks to costa
428    - markus@cvs.openbsd.org 2001/04/17 09:52:48
429      [clientloop.c]
430      handle EINTR/EAGAIN on read; ok deraadt@
431    - markus@cvs.openbsd.org 2001/04/17 10:53:26
432      [key.c key.h readconf.c readconf.h ssh.1 sshconnect2.c]
433      add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@
434    - markus@cvs.openbsd.org 2001/04/17 12:55:04
435      [channels.c ssh.c]
436      undo socks5 and https support since they are not really used and
437      only bloat ssh.  remove -D from usage(), since '-D' is experimental.
438
439 20010416
440   - OpenBSD CVS Sync
441    - stevesk@cvs.openbsd.org 2001/04/15 01:35:22
442      [ttymodes.c]
443      fix comments
444    - markus@cvs.openbsd.org 2001/04/15 08:43:47
445      [dh.c sftp-glob.c sftp-glob.h sftp-int.c sshconnect2.c sshd.c]
446      some unused variable and typos; from tomh@po.crl.go.jp
447    - markus@cvs.openbsd.org 2001/04/15 16:58:03
448      [authfile.c ssh-keygen.c sshd.c]
449      don't use errno for key_{load,save}_private; discussion w/ solar@openwall
450    - markus@cvs.openbsd.org 2001/04/15 17:16:00
451      [clientloop.c]
452      set stdin/out/err to nonblocking in SSH proto 1, too. suggested by ho@
453      should fix some of the blocking problems for rsync over SSH-1
454    - stevesk@cvs.openbsd.org 2001/04/15 19:41:21
455      [sshd.8]
456      some ClientAlive cleanup; ok markus@
457    - stevesk@cvs.openbsd.org 2001/04/15 21:28:35
458      [readconf.c servconf.c]
459      use fatal() or error() vs. fprintf(); ok markus@
460  - (djm) Convert mandoc manpages to man automatically. Patch from Mark D.
461    Roth <roth+openssh@feep.net>
462  - (bal) CVS ID fix up and slight manpage fix from OpenBSD tree.
463   - (djm) OpenBSD CVS Sync
464    - mouring@cvs.openbsd.org 2001/04/16 02:31:44
465      [scp.c sftp.c]
466      IPv6 support for sftp (which I bungled in my last patch) which is
467      borrowed from scp.c.  Thanks to Markus@ for pointing it out.
468    - deraadt@cvs.openbsd.org 2001/04/16 08:05:34
469      [xmalloc.c]
470      xrealloc dealing with ptr == nULL; mouring
471    - djm@cvs.openbsd.org 2001/04/16 08:19:31
472      [session.c]
473      Split motd and hushlogin checks into seperate functions, helps for 
474      portable. From Chris Adams <cmadams@hiwaay.net>; ok markus@
475  - Fix OSF SIA support displaying too much information for quiet 
476    logins and logins where access was denied by SIA. Patch from Chris Adams 
477    <cmadams@hiwaay.net>
478
479 20010415
480  - OpenBSD CVS Sync
481    - deraadt@cvs.openbsd.org 2001/04/14 04:31:01
482      [ssh-add.c]
483      do not double free
484    - markus@cvs.openbsd.org 2001/04/14 16:17:14
485      [channels.c]
486      remove some channels that are not appropriate for keepalive.
487    - markus@cvs.openbsd.org 2001/04/14 16:27:57
488      [ssh-add.c]
489      use clear_pass instead of xfree()
490    - stevesk@cvs.openbsd.org 2001/04/14 16:33:20
491      [clientloop.c packet.h session.c ssh.c ttymodes.c ttymodes.h]
492      protocol 2 tty modes support; ok markus@
493    - stevesk@cvs.openbsd.org 2001/04/14 17:04:42
494      [scp.c]
495      'T' handling rcp/scp sync; ok markus@
496  - Missed sshtty.[ch] in Sync.
497
498 20010414
499  - Sync with OpenBSD glob.c, strlcat.c and vis.c changes
500  - Cygwin sftp/sftp-server binary mode patch from Corinna Vinschen 
501    <vinschen@redhat.com>
502  - OpenBSD CVS Sync
503    - beck@cvs.openbsd.org 2001/04/13 22:46:54
504      [channels.c channels.h servconf.c servconf.h serverloop.c sshd.8]
505      Add options ClientAliveInterval and ClientAliveCountMax to sshd.
506      This gives the ability to do a "keepalive" via the encrypted channel
507      which can't be spoofed (unlike TCP keepalives). Useful for when you want
508      to use ssh connections to authenticate people for something, and know
509      relatively quickly when they are no longer authenticated. Disabled
510      by default (of course). ok markus@
511
512 20010413
513  - OpenBSD CVS Sync                                                           
514    - markus@cvs.openbsd.org 2001/04/12 14:29:09 
515      [ssh.c]                                                
516      show debug output during option processing, report from 
517      pekkas@netcore.fi
518    - markus@cvs.openbsd.org 2001/04/12 19:15:26
519      [auth-rhosts.c auth.h auth2.c buffer.c canohost.c canohost.h 
520       compat.c compat.h hostfile.c pathnames.h readconf.c readconf.h 
521       servconf.c servconf.h ssh.c sshconnect.c sshconnect.h sshconnect1.c 
522       sshconnect2.c sshd_config]
523      implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
524      similar to RhostRSAAuthentication unless you enable (the experimental)
525      HostbasedUsesNameFromPacketOnly option.  please test. :)
526    - markus@cvs.openbsd.org 2001/04/12 19:39:27
527      [readconf.c]
528      typo
529    - stevesk@cvs.openbsd.org 2001/04/12 20:09:38
530      [misc.c misc.h readconf.c servconf.c ssh.c sshd.c]
531      robust port validation; ok markus@ jakob@
532    - mouring@cvs.openbsd.org 2001/04/12 23:17:54
533      [sftp-int.c sftp-int.h sftp.1 sftp.c]
534      Add support for:
535         sftp [user@]host[:file [file]]  - Fetch remote file(s)
536         sftp [user@]host[:dir[/]]       - Start in remote dir/
537      OK deraadt@
538    - stevesk@cvs.openbsd.org 2001/04/13 01:26:17
539      [ssh.c]
540      missing \n in error message
541  - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
542    lack it.
543
544 20010412
545  - OpenBSD CVS Sync                            
546    - markus@cvs.openbsd.org 2001/04/10 07:46:58
547      [channels.c]                              
548      cleanup socks4 handling                   
549    - itojun@cvs.openbsd.org 2001/04/10 09:13:22       
550      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
551      document id_rsa{.pub,}.  markus ok               
552    - markus@cvs.openbsd.org 2001/04/10 12:15:23
553      [channels.c]                              
554      debug cleanup                             
555    - djm@cvs.openbsd.org 2001/04/11 07:06:22
556      [sftp-int.c]
557      'mget' and 'mput' aliases; ok markus@
558    - markus@cvs.openbsd.org 2001/04/11 10:59:01
559      [ssh.c]
560      use strtol() for ports, thanks jakob@
561    - markus@cvs.openbsd.org 2001/04/11 13:56:13
562      [channels.c ssh.c]
563      https-connect and socks5 support. i feel so bad.
564    - lebel@cvs.openbsd.org 2001/04/11 16:25:30
565      [sshd.8 sshd.c]
566      implement the -e option into sshd:
567       -e      When this option is specified, sshd will send the output to the
568               standard error instead of the system log.
569      markus@ OK.
570
571 20010410
572  - OpenBSD CVS Sync
573    - deraadt@cvs.openbsd.org 2001/04/08 20:52:55
574      [sftp.c]
575      do not modify an actual argv[] entry
576    - stevesk@cvs.openbsd.org 2001/04/08 23:28:27
577      [sshd.8]
578      spelling
579    - stevesk@cvs.openbsd.org 2001/04/09 00:42:05
580      [sftp.1]
581      spelling
582    - markus@cvs.openbsd.org 2001/04/09 15:12:23
583      [ssh-add.c]
584      passphrase caching: ssh-add tries last passphrase, clears passphrase if
585      not successful and after last try.
586      based on discussions with espie@, jakob@, ... and code from jakob@ and
587      wolfgang@wsrcc.com
588    - markus@cvs.openbsd.org 2001/04/09 15:19:49
589      [ssh-add.1]
590      ssh-add retries the last passphrase...
591    - stevesk@cvs.openbsd.org 2001/04/09 18:00:15
592      [sshd.8]
593      ListenAddress mandoc from aaron@
594
595 20010409
596  - (stevesk) use setresgid() for setegid() if needed
597  - (stevesk) configure.in: typo
598  - OpenBSD CVS Sync
599    - stevesk@cvs.openbsd.org 2001/04/08 16:01:36
600      [sshd.8]
601      document ListenAddress addr:port
602    - markus@cvs.openbsd.org 2001/04/08 13:03:00
603      [ssh-add.c]
604      init pointers with NULL, thanks to danimal@danimal.org
605    - markus@cvs.openbsd.org 2001/04/08 11:27:33
606      [clientloop.c]
607      leave_raw_mode if ssh2 "session" is closed
608    - markus@cvs.openbsd.org 2001/04/06 21:00:17
609      [auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth2.c channels.c session.c
610       ssh.c sshconnect.c sshconnect.h uidswap.c uidswap.h]
611      do gid/groups-swap in addition to uid-swap, should help if /home/group
612      is chmod 750 + chgrp grp /home/group/, work be deraadt and me, thanks
613      to olar@openwall.com is comments.  we had many requests for this.
614    - markus@cvs.openbsd.org 2001/04/07 08:55:18
615      [buffer.c channels.c channels.h readconf.c ssh.c]
616      allow the ssh client act as a SOCKS4 proxy (dynamic local 
617      portforwarding).  work by Dan Kaminsky <dankamin@cisco.com> and me. 
618      thanks to Dan for this great patch: use 'ssh -D 1080 host' and make 
619      netscape use localhost:1080 as a socks proxy.
620    - markus@cvs.openbsd.org 2001/04/08 11:24:33
621      [uidswap.c]
622      KNF
623
624 20010408
625  - OpenBSD CVS Sync
626    - stevesk@cvs.openbsd.org 2001/04/06 22:12:47
627      [hostfile.c]
628      unused; typo in comment
629    - stevesk@cvs.openbsd.org 2001/04/06 22:25:25
630      [servconf.c]
631      in addition to:
632      ListenAddress host|ipv4_addr|ipv6_addr
633      permit:
634      ListenAddress [host|ipv4_addr|ipv6_addr]:port
635      ListenAddress host|ipv4_addr:port
636      sshd.8 updates coming.  ok markus@
637
638 20010407
639  - (bal) CVS ID Resync of version.h
640  - OpenBSD CVS Sync
641    - markus@cvs.openbsd.org 2001/04/05 23:39:20
642      [serverloop.c]
643      keep the ssh session even if there is no active channel.
644      this is more in line with the protocol spec and makes
645         ssh -N -L 1234:server:110 host
646      more useful.
647      based on discussion with <mats@mindbright.se> long time ago
648      and recent mail from <res@shore.net>
649    - deraadt@cvs.openbsd.org 2001/04/06 16:46:59
650      [scp.c]
651      remove trailing / from source paths; fixes pr#1756
652  
653 20010406
654  - (stevesk) logintest.c: fix for systems without __progname
655  - (stevesk) Makefile.in: log.o is in libssh.a
656  - OpenBSD CVS Sync
657    - markus@cvs.openbsd.org 2001/04/05 10:00:06
658      [compat.c]
659      2.3.x does old  GEX, too; report jakob@
660    - markus@cvs.openbsd.org 2001/04/05 10:39:03
661      [compress.c compress.h packet.c]
662      reset compress state per direction when rekeying.
663    - markus@cvs.openbsd.org 2001/04/05 10:39:48
664      [version.h]
665      temporary version 2.5.4 (supports rekeying).
666      this is not an official release.
667    - markus@cvs.openbsd.org 2001/04/05 10:42:57
668      [auth-chall.c authfd.c channels.c clientloop.c kex.c kexgex.c key.c 
669       mac.c packet.c serverloop.c sftp-client.c sftp-client.h sftp-glob.c 
670       sftp-glob.h sftp-int.c sftp-server.c sftp.c ssh-keygen.c sshconnect.c 
671       sshconnect2.c sshd.c]
672      fix whitespace: unexpand + trailing spaces.
673    - markus@cvs.openbsd.org 2001/04/05 11:09:17
674      [clientloop.c compat.c compat.h]
675      add SSH_BUG_NOREKEY and detect broken (=all old) openssh versions.
676    - markus@cvs.openbsd.org 2001/04/05 15:45:43
677      [ssh.1]
678      ssh defaults to protocol v2; from quisar@quisar.ambre.net
679    - stevesk@cvs.openbsd.org 2001/04/05 15:48:18
680      [canohost.c canohost.h session.c]
681      move get_remote_name_or_ip() to canohost.[ch]; for portable.  ok markus@
682    - markus@cvs.openbsd.org 2001/04/05 20:01:10
683      [clientloop.c]
684      for ~R print message if server does not support rekeying. (and fix ~R).
685    - markus@cvs.openbsd.org 2001/04/05 21:02:46
686      [buffer.c]
687      better error message
688    - markus@cvs.openbsd.org 2001/04/05 21:05:24
689      [clientloop.c ssh.c]
690      don't request a session for 'ssh -N', pointed out slade@shore.net
691
692 20010405
693  - OpenBSD CVS Sync                                              
694    - markus@cvs.openbsd.org 2001/04/04 09:48:35                  
695      [kex.c kex.h kexdh.c kexgex.c packet.c sshconnect2.c sshd.c]
696      don't sent multiple kexinit-requests.                       
697      send newkeys, block while waiting for newkeys.              
698      fix comments.                                               
699    - markus@cvs.openbsd.org 2001/04/04 14:34:58                         
700      [clientloop.c kex.c kex.h serverloop.c sshconnect2.c sshd.c]       
701      enable server side rekeying + some rekey related clientup.         
702      todo: we should not send any non-KEX messages after we send KEXINIT
703    - markus@cvs.openbsd.org 2001/04/04 15:50:55
704      [compat.c]
705      f-secure 1.3.2 does not handle IGNORE; from milliondl@ornl.gov
706    - markus@cvs.openbsd.org 2001/04/04 20:25:38
707      [channels.c channels.h clientloop.c kex.c kex.h serverloop.c 
708       sshconnect2.c sshd.c]
709      more robust rekeying
710      don't send channel data after rekeying is started.
711    - markus@cvs.openbsd.org 2001/04/04 20:32:56
712      [auth2.c]
713      we don't care about missing bannerfiles; from tsoome@ut.ee, ok deraadt@
714    - markus@cvs.openbsd.org 2001/04/04 22:04:35
715      [kex.c kexgex.c serverloop.c]
716      parse full kexinit packet.
717      make server-side more robust, too.
718    - markus@cvs.openbsd.org 2001/04/04 23:09:18
719      [dh.c kex.c packet.c]
720      clear+free keys,iv for rekeying.
721      + fix DH mem leaks. ok niels@
722  - (stevesk) don't use vhangup() if defined(HAVE_DEV_PTMX); also removes
723     BROKEN_VHANGUP
724
725 20010404
726  - OpenBSD CVS Sync
727    - deraadt@cvs.openbsd.org 2001/04/02 17:32:23
728      [ssh-agent.1]
729      grammar; slade@shore.net
730    - stevesk@cvs.openbsd.org 2001/04/03 13:56:11
731      [sftp-glob.c ssh-agent.c ssh-keygen.c]
732      free() -> xfree()
733    - markus@cvs.openbsd.org 2001/04/03 19:53:29
734      [dh.c dh.h kex.c kex.h sshconnect2.c sshd.c]
735      move kex to kex*.c, used dispatch_set() callbacks for kex. should
736      make rekeying easier.
737    - todd@cvs.openbsd.org 2001/04/03 21:19:38
738      [ssh_config]
739      id_rsa1/2 -> id_rsa; ok markus@
740    - markus@cvs.openbsd.org 2001/04/03 23:32:12
741      [kex.c kex.h packet.c sshconnect2.c sshd.c]
742      undo parts of recent my changes: main part of keyexchange does not
743      need dispatch-callbacks, since application data is delayed until
744      the keyexchange completes (if i understand the drafts correctly).
745      add some infrastructure for re-keying.
746    - markus@cvs.openbsd.org 2001/04/04 00:06:54
747      [clientloop.c sshconnect2.c]
748      enable client rekeying
749         (1) force rekeying with ~R, or
750         (2) if the server requests rekeying.
751      works against ssh-2.0.12/2.0.13/2.1.0/2.2.0/2.3.0/2.3.1/2.4.0
752  - (bal) Oops.. Missed including kexdh.c and kexgex.c in OpenBSD sync.
753
754 20010403
755  - OpenBSD CVS Sync
756    - stevesk@cvs.openbsd.org 2001/04/02 14:15:31
757      [sshd.8]
758      typo; ok markus@
759    - stevesk@cvs.openbsd.org 2001/04/02 14:20:23
760      [readconf.c servconf.c]
761      correct comment; ok markus@
762  - (stevesk) nchan.c: remove ostate checks and add EINVAL to
763     shutdown(SHUT_RD) error() bypass for HP-UX.
764
765 20010402
766  - (stevesk) log.c openbsd sync; missing newlines
767  - (stevesk) sshpty.h openbsd sync; PTY_H -> SSHPTY_H
768
769 20010330
770  - (djm) Another openbsd-compat/glob.c sync
771  - (djm) OpenBSD CVS Sync
772    - provos@cvs.openbsd.org 2001/03/28 21:59:41
773      [kex.c kex.h sshconnect2.c sshd.c]
774      forgot to include min and max params in hash, okay markus@
775    - provos@cvs.openbsd.org 2001/03/28 22:04:57
776      [dh.c]
777      more sanity checking on primes file
778    - markus@cvs.openbsd.org 2001/03/28 22:43:31
779      [auth.h auth2.c auth2-chall.c]
780      check auth_root_allowed for kbd-int auth, too.
781    - provos@cvs.openbsd.org 2001/03/29 14:24:59
782      [sshconnect2.c]
783      use recommended defaults
784    - stevesk@cvs.openbsd.org 2001/03/29 21:06:21
785      [sshconnect2.c sshd.c]
786      need to set both STOC and CTOS for SSH_BUG_BIGENDIANAES; ok markus@
787    - markus@cvs.openbsd.org 2001/03/29 21:17:40
788      [dh.c dh.h kex.c kex.h]
789      prepare for rekeying: move DH code to dh.c
790    - djm@cvs.openbsd.org 2001/03/29 23:42:01
791      [sshd.c]
792      Protocol 1 key regeneration log => verbose, some KNF; ok markus@
793
794 20010329
795  - OpenBSD CVS Sync
796    - stevesk@cvs.openbsd.org 2001/03/26 15:47:59
797      [ssh.1]
798      document more defaults; misc. cleanup.  ok markus@
799    - markus@cvs.openbsd.org 2001/03/26 23:12:42
800      [authfile.c]
801      KNF
802    - markus@cvs.openbsd.org 2001/03/26 23:23:24
803      [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
804      try to read private f-secure ssh v2 rsa keys.
805    - markus@cvs.openbsd.org 2001/03/27 10:34:08
806      [ssh-rsa.c sshd.c]
807      use EVP_get_digestbynid, reorder some calls and fix missing free.
808    - markus@cvs.openbsd.org 2001/03/27 10:57:00
809      [compat.c compat.h ssh-rsa.c]
810      some older systems use NID_md5 instead of NID_sha1 for RSASSA-PKCS1-v1_5
811      signatures in SSH protocol 2, ok djm@
812    - provos@cvs.openbsd.org 2001/03/27 17:46:50
813      [compat.c compat.h dh.c dh.h ssh2.h sshconnect2.c sshd.c version.h]
814      make dh group exchange more flexible, allow min and max group size,
815      okay markus@, deraadt@
816    - stevesk@cvs.openbsd.org 2001/03/28 19:56:23
817      [scp.c]
818      start to sync scp closer to rcp; ok markus@
819    - stevesk@cvs.openbsd.org 2001/03/28 20:04:38
820      [scp.c]
821      usage more like rcp and add missing -B to usage; ok markus@
822    - markus@cvs.openbsd.org 2001/03/28 20:50:45
823      [sshd.c]
824      call refuse() before close(); from olemx@ans.pl
825
826 20010328
827  - (djm) Reorder tests and library inclusion for Krb4/AFS to try to 
828    resolve linking conflicts with libcrypto. Report and suggested fix 
829    from Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
830  - (djm) Work around Solaris' broken struct dirent. Diagnosis and suggested
831    fix from Philippe Levan <levan@epix.net>
832  - (djm) Rework krbIV tests to get us closer to building on Redhat. Still
833    doesn't work because of conflicts between krbIV's and OpenSSL's des.h
834  - (djm) Sync openbsd-compat/glob.c
835
836 20010327
837  - Attempt sync with sshlogin.c w/ OpenBSD (mainly CVS ID)
838  - Fix pointer issues in waitpid() and wait() replaces.  Patch by Lutz 
839    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
840  - OpenBSD CVS Sync
841    - djm@cvs.openbsd.org 2001/03/25 00:01:34
842      [session.c]
843      shorten; ok markus@
844    - stevesk@cvs.openbsd.org 2001/03/25 13:16:11
845      [servconf.c servconf.h session.c sshd.8 sshd_config]
846      PrintLastLog option; from chip@valinux.com with some minor
847      changes by me.  ok markus@
848    - markus@cvs.openbsd.org 2001/03/26 08:07:09
849      [authfile.c authfile.h ssh-add.c ssh-keygen.c ssh.c sshconnect.c 
850       sshconnect.h sshconnect1.c sshconnect2.c sshd.c]
851      simpler key load/save interface, see authfile.h
852  - (djm) Reestablish PAM credentials (which can be supplemental group 
853    memberships) after initgroups() blows them away. Report and suggested
854    fix from Nalin Dahyabhai <nalin@redhat.com>
855
856 20010324
857  - Fixed permissions ssh-keyscan.  Thanks to Christopher Linn <celinn@mtu.edu>.
858  - OpenBSD CVS Sync
859    - djm@cvs.openbsd.org 2001/03/23 11:04:07
860      [compat.c compat.h sshconnect2.c sshd.c]
861      Compat for OpenSSH with broken Rijndael/AES. ok markus@
862    - markus@cvs.openbsd.org 2001/03/23 12:02:49
863      [auth1.c]
864      authctxt is now passed to do_authenticated
865    - markus@cvs.openbsd.org 2001/03/23 13:10:57
866      [sftp-int.c]
867      fix put, upload to _absolute_ path, ok djm@
868    - markus@cvs.openbsd.org 2001/03/23 14:28:32
869      [session.c sshd.c]
870      ignore SIGPIPE, restore in child, fixes x11-fwd crashes; with djm@
871  - (djm) Pull out our own SIGPIPE hacks
872
873 20010323
874  - OpenBSD CVS Sync                             
875    - deraadt@cvs.openbsd.org 2001/03/22 20:22:55
876      [sshd.c]                                   
877      do not place linefeeds in buffer           
878
879 20010322
880  - (djm) Better AIX no tty fix, spotted by Gert Doering <gert@greenie.muc.de>
881  - (bal) version.c CVS ID resync
882  - (bal) auth-chall.c auth-passwd.c auth.h auth1.c auth2.c session.c CVS ID
883    resync
884  - (bal) scp.c CVS ID resync
885  - OpenBSD CVS Sync
886    - markus@cvs.openbsd.org 2001/03/20 19:10:16
887      [readconf.c]
888      default to SSH protocol version 2
889    - markus@cvs.openbsd.org 2001/03/20 19:21:21
890      [session.c]
891      remove unused arg
892    - markus@cvs.openbsd.org 2001/03/20 19:21:21
893      [session.c]
894      remove unused arg
895    - markus@cvs.openbsd.org 2001/03/21 11:43:45
896      [auth1.c auth2.c session.c session.h]
897      merge common ssh v1/2 code
898    - jakob@cvs.openbsd.org 2001/03/21 14:20:45
899      [ssh-keygen.c]
900      add -B flag to usage
901    - markus@cvs.openbsd.org 2001/03/21 21:06:30
902      [session.c]
903      missing init; from mib@unimelb.edu.au
904
905 20010321
906  - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve 
907    VanDevender <stevev@darkwing.uoregon.edu>
908  - (djm) Make sure pam_retval is initialised on call to pam_end. Patch
909    from Solar Designer <solar@openwall.com>
910  - (djm) Don't loop forever when changing password via PAM. Patch
911    from Solar Designer <solar@openwall.com>
912  - (djm) Generate config files before build
913  - (djm) Correctly handle SIA and AIX when no tty present. Spotted and
914    suggested fix from Mike Battersby <mib@unimelb.edu.au>
915
916 20010320
917  - (bal) glob.c update to added GLOB_LIMITS (OpenBSD CVS).
918  - (bal) glob.c update to set gl_pathv to NULL (OpenBSD CVS).
919  - (bal) Oops.  Missed globc.h change (OpenBSD CVS).
920  - (djm) OpenBSD CVS Sync
921    - markus@cvs.openbsd.org 2001/03/19 17:07:23
922      [auth.c readconf.c]
923      undo /etc/shell and proto 2,1 change for openssh-2.5.2
924    - markus@cvs.openbsd.org 2001/03/19 17:12:10
925      [version.h]
926      version 2.5.2
927  - (djm) Update RPM spec version
928  - (djm) Release 2.5.2p1
929 - tim@mindrot.org 2001/03/19 18:33:47 [defines.h]
930   change S_ISLNK macro to work for UnixWare 2.03
931 - tim@mindrot.org 2001/03/19 20:45:11 [openbsd-compat/glob.c]
932   add get_arg_max(). Use sysconf() if ARG_MAX is not defined
933
934 20010319
935  - (djm) Seed PRNG at startup, rather than waiting for arc4random calls to 
936    do it implicitly.
937  - (djm) Add getusershell() functions from OpenBSD CVS
938  - OpenBSD CVS Sync
939    - markus@cvs.openbsd.org 2001/03/18 12:07:52
940      [auth-options.c]
941      ignore permitopen="host:port" if AllowTcpForwarding==no
942  - (djm) Make scp work on systems without 64-bit ints
943  - tim@mindrot.org 2001/03/18 18:28:39 [defines.h]
944    move HAVE_LONG_LONG_INT where it works
945  - (bal) Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix
946    stuff.  Change suggested by Mark Miller <markm@swoon.net>
947  - (bal) Small fix to scp.  %lu vs %ld
948  - (bal) NeXTStep lacks S_ISLNK.  Plus split up S_IS* 
949  - (djm) OpenBSD CVS Sync
950    - djm@cvs.openbsd.org     2001/03/19 03:52:51
951      [sftp-client.c]
952      Report ssh connection closing correctly; ok deraadt@
953    - deraadt@cvs.openbsd.org 2001/03/18 23:30:55
954      [compat.c compat.h sshd.c]
955      specifically version match on ssh scanners.  do not log scan 
956      information to the console
957    - djm@cvs.openbsd.org      2001/03/19 12:10:17
958      [sshd.8]
959      Document permitopen authorized_keys option; ok markus@
960    - djm@cvs.openbsd.org     2001/03/19 05:49:52
961      [ssh.1]
962      document PreferredAuthentications option; ok markus@
963  - (bal) Minor NeXT fixed.  Forgot to #undef NGROUPS_MAX
964
965 20010318
966  - (bal) Fixed scp type casing issue which causes "scp: protocol error: 
967    size not delimited" fatal errors when tranfering.
968  - OpenBSD CVS Sync
969    - markus@cvs.openbsd.org 2001/03/17 17:27:59
970      [auth.c]
971      check /etc/shells, too
972  - tim@mindrot.org 2001/03/17 18:45:25 [compat.c]
973      openbsd-compat/fake-regex.h
974
975 20010317
976  - Support usrinfo() on AIX. Based on patch from Gert Doering 
977    <gert@greenie.muc.de>
978  - OpenBSD CVS Sync
979    - markus@cvs.openbsd.org 2001/03/15 15:05:59
980      [scp.c]
981      use %lld in printf, ok millert@/deraadt@; report from ssh@client.fi
982    - markus@cvs.openbsd.org 2001/03/15 22:07:08
983      [session.c]
984      pass Session to do_child + KNF
985    - djm@cvs.openbsd.org 2001/03/16 08:16:18
986      [sftp-client.c sftp-client.h sftp-glob.c sftp-int.c]
987      Revise globbing for get/put to be more shell-like. In particular,
988      "get/put file* directory/" now works. ok markus@
989    - markus@cvs.openbsd.org 2001/03/16 09:55:53
990      [sftp-int.c]
991      fix memset and whitespace
992    - markus@cvs.openbsd.org 2001/03/16 13:44:24
993      [sftp-int.c]
994      discourage strcat/strcpy
995    - markus@cvs.openbsd.org 2001/03/16 19:06:30
996      [auth-options.c channels.c channels.h serverloop.c session.c]
997      implement "permitopen" key option, restricts -L style forwarding to
998      to specified host:port pairs. based on work by harlan@genua.de
999  - Check for gl_matchc support in glob_t and fall back to the 
1000    openbsd-compat/glob.[ch] support if it does not exist.
1001
1002 20010315
1003  - OpenBSD CVS Sync
1004    - markus@cvs.openbsd.org 2001/03/14 08:57:14
1005      [sftp-client.c]
1006      Wall
1007    - markus@cvs.openbsd.org 2001/03/14 15:15:58
1008      [sftp-int.c]
1009      add version command
1010    - deraadt@cvs.openbsd.org 2001/03/14 22:50:25
1011      [sftp-server.c]
1012      note no getopt()
1013  - (stevesk) ssh-keyscan.c: specify "openbsd-compat/fake-queue.h"
1014  - (bal) Cygwin README change by Corinna Vinschen <vinschen@redhat.com> 
1015
1016 20010314
1017  - OpenBSD CVS Sync
1018    - markus@cvs.openbsd.org 2001/03/13 17:34:42
1019      [auth-options.c]
1020      missing xfree, deny key on parse error; ok stevesk@
1021    - djm@cvs.openbsd.org 2001/03/13 22:42:54
1022      [sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c]
1023      sftp client filename globbing for get, put, ch{mod,grp,own}. ok markus@
1024  - (bal) Fix strerror() in bsd-misc.c
1025  - (djm) Add replacement glob() from OpenBSD libc if the system glob is
1026    missing or lacks the GLOB_ALTDIRFUNC extension
1027  - (djm) Remove -I$(srcdir)/openbsd-compat from CFLAGS, refer to headers 
1028    relatively. Avoids conflict between glob.h and /usr/include/glob.h
1029
1030 20010313
1031  - OpenBSD CVS Sync
1032    - markus@cvs.openbsd.org 2001/03/12 22:02:02
1033      [key.c key.h ssh-add.c ssh-keygen.c sshconnect.c sshconnect2.c]
1034      remove old key_fingerprint interface, s/_ex//
1035
1036 20010312
1037  - OpenBSD CVS Sync
1038    - markus@cvs.openbsd.org 2001/03/11 13:25:36
1039      [auth2.c key.c]
1040      debug
1041    - jakob@cvs.openbsd.org 2001/03/11 15:03:16
1042      [key.c key.h]
1043      add improved fingerprint functions. based on work by Carsten
1044      Raskgaard <cara@int.tele.dk> and modified by me. ok markus@.
1045    - jakob@cvs.openbsd.org 2001/03/11 15:04:16
1046      [ssh-keygen.1 ssh-keygen.c]
1047      print both md5, sha1 and bubblebabble fingerprints when using
1048      ssh-keygen -l -v. ok markus@.
1049    - jakob@cvs.openbsd.org 2001/03/11 15:13:09
1050      [key.c]
1051      cleanup & shorten some var names key_fingerprint_bubblebabble.
1052    - deraadt@cvs.openbsd.org 2001/03/11 16:39:03
1053      [ssh-keygen.c]
1054      KNF, and SHA1 binary output is just creeping featurism
1055  - tim@mindrot.org 2001/03/11 17:29:32 [configure.in]
1056    test if snprintf() supports %ll
1057    add /dev to search path for PRNGD/EGD socket
1058    fix my mistake in USER_PATH test program
1059  - OpenBSD CVS Sync
1060    - markus@cvs.openbsd.org 2001/03/11 18:29:51
1061      [key.c]
1062      style+cleanup
1063    - markus@cvs.openbsd.org 2001/03/11 22:33:24
1064      [ssh-keygen.1 ssh-keygen.c]
1065      remove -v again. use -B instead for bubblebabble. make -B consistent
1066      with -l and make -B work with /path/to/known_hosts. ok deraadt@
1067  - (djm) Bump portable version number for generating test RPMs
1068  - (djm) Add "static_openssl" RPM build option, remove rsh build dependency
1069  - (bal) Reorder includes in Makefile. 
1070
1071 20010311
1072  - OpenBSD CVS Sync
1073    - markus@cvs.openbsd.org 2001/03/10 12:48:27
1074      [sshconnect2.c]
1075      ignore nonexisting private keys; report rjmooney@mediaone.net
1076    - deraadt@cvs.openbsd.org 2001/03/10 12:53:51
1077      [readconf.c ssh_config]
1078      default to SSH2, now that m68k runs fast
1079    - stevesk@cvs.openbsd.org 2001/03/10 15:02:05
1080      [ttymodes.c ttymodes.h]
1081      remove unused sgtty macros; ok markus@
1082    - deraadt@cvs.openbsd.org 2001/03/10 15:31:00
1083      [compat.c compat.h sshconnect.c]
1084      all known netscreen ssh versions, and older versions of OSU ssh cannot
1085      handle password padding (newer OSU is fixed)
1086  - tim@mindrot.org 2001/03/10 16:33:42 [configure.in Makefile.in sshd_config]
1087    make sure $bindir is in USER_PATH so scp will work
1088  - OpenBSD CVS Sync
1089    - markus@cvs.openbsd.org 2001/03/10 17:51:04
1090      [kex.c match.c match.h readconf.c readconf.h sshconnect2.c]
1091      add PreferredAuthentications
1092
1093 20010310
1094  - OpenBSD CVS Sync
1095    - deraadt@cvs.openbsd.org 2001/03/09 03:14:39
1096      [ssh-keygen.c]
1097      create *.pub files with umask 0644, so that you can mv them to 
1098      authorized_keys
1099    - deraadt@cvs.openbsd.org 2001/03/09 12:30:29
1100      [sshd.c]
1101      typo; slade@shore.net
1102  - Removed log.o from sftp client.  Not needed.
1103
1104 20010309
1105  - OpenBSD CVS Sync
1106    - stevesk@cvs.openbsd.org 2001/03/08 18:47:12
1107      [auth1.c]
1108      unused; ok markus@
1109    - stevesk@cvs.openbsd.org 2001/03/08 20:44:48
1110      [sftp.1]
1111      spelling, cleanup; ok deraadt@
1112    - markus@cvs.openbsd.org 2001/03/08 21:42:33
1113      [compat.c compat.h readconf.h ssh.c sshconnect1.c sshconnect2.c]
1114      implement client side of SSH2_MSG_USERAUTH_PK_OK (test public key ->
1115      no need to do enter passphrase or do expensive sign operations if the
1116      server does not accept key).
1117
1118 20010308
1119  - OpenBSD CVS Sync
1120    - djm@cvs.openbsd.org 2001/03/07 10:11:23
1121      [sftp-client.c sftp-client.h sftp-int.c sftp-server.c sftp.1 sftp.c sftp.h]
1122      Support for new draft (draft-ietf-secsh-filexfer-01). New symlink handling
1123      functions and small protocol change.
1124    - markus@cvs.openbsd.org 2001/03/08 00:15:48
1125      [readconf.c ssh.1]
1126      turn off useprivilegedports by default. only rhost-auth needs
1127      this. older sshd's may need this, too.
1128  - (stevesk) Reliant Unix (SNI) needs HAVE_BOGUS_SYS_QUEUE_H;
1129    Dirk Markwardt <D.Markwardt@tu-bs.de>
1130
1131 20010307
1132  - (bal) OpenBSD CVS Sync
1133    - deraadt@cvs.openbsd.org 2001/03/06 06:11:18
1134      [ssh-keyscan.c]
1135      appease gcc
1136    - deraadt@cvs.openbsd.org 2001/03/06 06:11:44
1137      [sftp-int.c sftp.1 sftp.c]
1138      sftp -b batchfile; mouring@etoh.eviladmin.org
1139    - deraadt@cvs.openbsd.org 2001/03/06 15:10:42
1140      [sftp.1]
1141      order things
1142    - deraadt@cvs.openbsd.org 2001/03/07 01:19:06
1143      [ssh.1 sshd.8]
1144      the name "secure shell" is boring, noone ever uses it
1145    - deraadt@cvs.openbsd.org 2001/03/07 04:05:58
1146      [ssh.1]
1147      removed dated comment
1148  - Cygwin contrib improvements from Corinna Vinschen <vinschen@redhat.com>
1149
1150 20010306
1151  - (bal) OpenBSD CVS Sync
1152    - deraadt@cvs.openbsd.org 2001/03/05 14:28:47
1153      [sshd.8]
1154      alpha order; jcs@rt.fm
1155    - stevesk@cvs.openbsd.org 2001/03/05 15:44:51
1156      [servconf.c]
1157      sync error message; ok markus@
1158    - deraadt@cvs.openbsd.org 2001/03/05 15:56:16
1159      [myproposal.h ssh.1]
1160      switch to aes128-cbc/hmac-md5 by default in SSH2 -- faster;
1161      provos & markus ok
1162    - deraadt@cvs.openbsd.org 2001/03/05 16:07:15
1163      [sshd.8]
1164      detail default hmac setup too
1165    - markus@cvs.openbsd.org 2001/03/05 17:17:21
1166      [kex.c kex.h sshconnect2.c sshd.c]
1167      generate a 2*need size (~300 instead of 1024/2048) random private
1168      exponent during the DH key agreement. according to Niels (the great
1169      german advisor) this is safe since /etc/primes contains strong
1170      primes only.
1171
1172      References:
1173              P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key
1174              agreement with short exponents, In Advances in Cryptology
1175              - EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343.
1176    - stevesk@cvs.openbsd.org 2001/03/05 17:40:48
1177      [ssh.1]
1178      more ssh_known_hosts2 documentation; ok markus@
1179    - stevesk@cvs.openbsd.org 2001/03/05 17:58:22
1180      [dh.c]
1181      spelling
1182    - deraadt@cvs.openbsd.org 2001/03/06 00:33:04
1183      [authfd.c cli.c ssh-agent.c]
1184      EINTR/EAGAIN handling is required in more cases
1185    - millert@cvs.openbsd.org 2001/03/06 01:06:03
1186      [ssh-keyscan.c]
1187      Don't assume we wil get the version string all in one read().
1188      deraadt@ OK'd
1189    - millert@cvs.openbsd.org 2001/03/06 01:08:27
1190      [clientloop.c]
1191      If read() fails with EINTR deal with it the same way we treat EAGAIN
1192
1193 20010305
1194  - (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
1195  - (bal) CVS ID touch up on sftp-int.c 
1196  - (bal) CVS ID touch up on uuencode.c
1197  - (bal) CVS ID touch up on auth2.c, serverloop.c, session.c & sshd.c
1198  - (bal) OpenBSD CVS Sync
1199    - deraadt@cvs.openbsd.org 2001/02/17 23:48:48
1200      [sshd.8]
1201      it's the OpenSSH one
1202    - deraadt@cvs.openbsd.org 2001/02/21 07:37:04
1203      [ssh-keyscan.c]
1204      inline -> __inline__, and some indent
1205    - deraadt@cvs.openbsd.org 2001/02/21 09:05:54
1206      [authfile.c]
1207      improve fd handling
1208    - deraadt@cvs.openbsd.org 2001/02/21 09:12:56
1209      [sftp-server.c]
1210      careful with & and &&; markus ok
1211    - stevesk@cvs.openbsd.org 2001/02/21 21:14:04
1212      [ssh.c]
1213      -i supports DSA identities now; ok markus@
1214    - deraadt@cvs.openbsd.org 2001/02/22 04:29:37
1215      [servconf.c]
1216      grammar; slade@shore.net
1217    - deraadt@cvs.openbsd.org 2001/02/22 06:43:55
1218      [ssh-keygen.1 ssh-keygen.c]
1219      document -d, and -t defaults to rsa1
1220    - deraadt@cvs.openbsd.org 2001/02/22 08:03:51
1221      [ssh-keygen.1 ssh-keygen.c]
1222      bye bye -d
1223    - deraadt@cvs.openbsd.org 2001/02/22 18:09:06
1224      [sshd_config]
1225      activate RSA 2 key
1226    - markus@cvs.openbsd.org 2001/02/22 21:57:27
1227      [ssh.1 sshd.8]
1228      typos/grammar from matt@anzen.com
1229    - markus@cvs.openbsd.org 2001/02/22 21:59:44
1230      [auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c]
1231      use pwcopy in ssh.c, too
1232    - markus@cvs.openbsd.org 2001/02/23 15:34:53
1233      [serverloop.c]
1234      debug2->3
1235    - markus@cvs.openbsd.org 2001/02/23 18:15:13
1236      [sshd.c]
1237      the random session key depends now on the session_key_int
1238      sent by the 'attacker'
1239              dig1 = md5(cookie|session_key_int);
1240              dig2 = md5(dig1|cookie|session_key_int);
1241              fake_session_key = dig1|dig2;
1242      this change is caused by a mail from anakin@pobox.com
1243      patch based on discussions with my german advisor niels@openbsd.org
1244    - deraadt@cvs.openbsd.org 2001/02/24 10:37:55
1245      [readconf.c]
1246      look for id_rsa by default, before id_dsa
1247    - deraadt@cvs.openbsd.org 2001/02/24 10:37:26
1248      [sshd_config]
1249      ssh2 rsa key before dsa key
1250    - markus@cvs.openbsd.org 2001/02/27 10:35:27
1251      [packet.c]
1252      fix random padding
1253    - markus@cvs.openbsd.org 2001/02/27 11:00:11
1254      [compat.c]
1255      support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
1256    - deraadt@cvs.openbsd.org 2001/02/28 05:34:28
1257      [misc.c]
1258      pull in protos
1259    - deraadt@cvs.openbsd.org 2001/02/28 05:36:28
1260      [sftp.c]
1261      do not kill the subprocess on termination (we will see if this helps
1262      things or hurts things)
1263    - markus@cvs.openbsd.org 2001/02/28 08:45:39
1264      [clientloop.c]
1265      fix byte counts for ssh protocol v1
1266    - markus@cvs.openbsd.org 2001/02/28 08:54:55
1267      [channels.c nchan.c nchan.h]
1268      make sure remote stderr does not get truncated.
1269      remove closed fd's from the select mask.
1270    - markus@cvs.openbsd.org 2001/02/28 09:57:07
1271      [packet.c packet.h sshconnect2.c]
1272      in ssh protocol v2 use ignore messages for padding (instead of
1273      trailing \0).
1274    - markus@cvs.openbsd.org 2001/02/28 12:55:07
1275      [channels.c]
1276      unify debug messages
1277    - deraadt@cvs.openbsd.org 2001/02/28 17:52:54
1278      [misc.c]
1279      for completeness, copy pw_gecos too
1280    - markus@cvs.openbsd.org 2001/02/28 21:21:41
1281      [sshd.c]
1282      generate a fake session id, too
1283    - markus@cvs.openbsd.org 2001/02/28 21:27:48
1284      [channels.c packet.c packet.h serverloop.c]
1285      use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message
1286      use random content in ignore messages.
1287    - markus@cvs.openbsd.org 2001/02/28 21:31:32
1288      [channels.c]
1289      typo
1290    - deraadt@cvs.openbsd.org 2001/03/01 02:11:25
1291      [authfd.c]
1292      split line so that p will have an easier time next time around
1293    - deraadt@cvs.openbsd.org 2001/03/01 02:29:04
1294      [ssh.c]
1295      shorten usage by a line
1296    - deraadt@cvs.openbsd.org 2001/03/01 02:45:10
1297      [auth-rsa.c auth2.c deattack.c packet.c]
1298      KNF
1299    - deraadt@cvs.openbsd.org 2001/03/01 03:38:33
1300      [cli.c cli.h rijndael.h ssh-keyscan.1]
1301      copyright notices on all source files
1302    - markus@cvs.openbsd.org 2001/03/01 22:46:37
1303      [ssh.c]
1304      don't truncate remote ssh-2 commands; from mkubita@securities.cz
1305      use min, not max for logging, fixes overflow.
1306    - deraadt@cvs.openbsd.org 2001/03/02 06:21:01
1307      [sshd.8]
1308      explain SIGHUP better
1309    - deraadt@cvs.openbsd.org 2001/03/02 09:42:49
1310      [sshd.8]
1311      doc the dsa/rsa key pair files
1312    - deraadt@cvs.openbsd.org 2001/03/02 18:54:31
1313      [atomicio.c atomicio.h auth-chall.c auth.c auth2-chall.c crc32.h
1314       scp.c serverloop.c session.c sftp-server.8 sftp.1 ssh-add.1 ssh-add.c
1315       ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh.1 sshd.8]
1316      make copyright lines the same format
1317    - deraadt@cvs.openbsd.org 2001/03/03 06:53:12
1318      [ssh-keyscan.c]
1319      standard theo sweep
1320    - millert@cvs.openbsd.org 2001/03/03 21:19:41
1321      [ssh-keyscan.c]
1322      Dynamically allocate read_wait and its copies.  Since maxfd is
1323      based on resource limits it is often (usually?) larger than FD_SETSIZE.
1324    - millert@cvs.openbsd.org 2001/03/03 21:40:30
1325      [sftp-server.c]
1326      Dynamically allocate fd_set; deraadt@ OK
1327    - millert@cvs.openbsd.org 2001/03/03 21:41:07
1328      [packet.c]
1329      Dynamically allocate fd_set; deraadt@ OK
1330    - deraadt@cvs.openbsd.org 2001/03/03 22:07:50
1331      [sftp-server.c]
1332      KNF
1333    - markus@cvs.openbsd.org 2001/03/03 23:52:22
1334      [sftp.c]
1335      clean up arg processing. based on work by Christophe_Moret@hp.com
1336    - markus@cvs.openbsd.org 2001/03/03 23:59:34
1337      [log.c ssh.c]
1338      log*.c -> log.c
1339    - markus@cvs.openbsd.org 2001/03/04 00:03:59
1340      [channels.c]
1341      debug1->2
1342    - stevesk@cvs.openbsd.org 2001/03/04 10:57:53
1343      [ssh.c]
1344      add -m to usage; ok markus@
1345    - stevesk@cvs.openbsd.org 2001/03/04 11:04:41
1346      [sshd.8]
1347      small cleanup and clarify for PermitRootLogin; ok markus@
1348    - stevesk@cvs.openbsd.org 2001/03/04 11:16:06
1349      [servconf.c sshd.8]
1350      kill obsolete RandomSeed; ok markus@ deraadt@
1351    - stevesk@cvs.openbsd.org 2001/03/04 12:54:04
1352      [sshd.8]
1353      spelling
1354    - millert@cvs.openbsd.org 2001/03/04 17:42:28
1355      [authfd.c channels.c dh.c log.c readconf.c servconf.c sftp-int.c
1356       ssh.c sshconnect.c sshd.c]
1357      log functions should not be passed strings that end in newline as they
1358      get passed on to syslog() and when logging to stderr, do_log() appends
1359      its own newline.
1360    - deraadt@cvs.openbsd.org 2001/03/04 18:21:28
1361      [sshd.8]
1362      list SSH2 ciphers
1363  - (bal) Put HAVE_PW_CLASS_IN_PASSWD back into pwcopy()
1364  - (bal) Fix up logging since it changed.  removed log-*.c
1365  - (djm) Fix up LOG_AUTHPRIV for systems that have it
1366  - (stevesk) OpenBSD sync:
1367    - deraadt@cvs.openbsd.org 2001/03/05 08:37:27
1368      [ssh-keyscan.c]
1369      skip inlining, why bother
1370  - (stevesk) sftp.c: handle __progname
1371
1372 20010304
1373  - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
1374  - (bal) Updated contrib/README to remove 'make-ssh-known-hosts' and
1375    give Mark Roth credit for mdoc2man.pl
1376
1377 20010303
1378  - (djm) Remove make-ssh-known-hosts.pl, ssh-keyscan is better.
1379  - (djm) Document PAM ChallengeResponseAuthentication in sshd.8
1380  - (djm) Disable and comment ChallengeResponseAuthentication in sshd_config
1381  - (djm) Allow PRNGd entropy collection from localhost TCP socket. Replace
1382    "--with-egd-pool" configure option with "--with-prngd-socket" and 
1383    "--with-prngd-port" options. Debugged and improved by Lutz Jaenicke
1384    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
1385
1386 20010301
1387  - (djm) Properly add -lcrypt if needed. 
1388  - (djm) Force standard PAM conversation function in a few more places.
1389    Patch from Redhat 2.5.1p1-2 RPM, probably Nalin Dahyabhai 
1390    <nalin@redhat.com>
1391  - (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen 
1392    <vinschen@redhat.com>
1393  - (djm) Released 2.5.1p2
1394
1395 20010228
1396  - (djm) Detect endianness in configure and use it in rijndael.c. Fixes
1397    "Bad packet length" bugs.
1398  - (djm) Fully revert PAM session patch (again). All PAM session init is 
1399    now done before the final fork().
1400  - (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
1401  - (djm) Remove /tmp from EGD socket search list
1402
1403 20010227
1404  - (bal) Applied shutdown() patch for sftp.c by  Corinna Vinschen 
1405    <vinschen@redhat.com>
1406  - (bal) OpenBSD Sync
1407    - markus@cvs.openbsd.org 2001/02/23 15:37:45
1408      [session.c]
1409      handle SSH_PROTOFLAG_SCREEN_NUMBER for buggy clients
1410  - (bal) sshd.init support for all Redhat release.  Patch by Jim Knoble 
1411    <jmknoble@jmknoble.cx>
1412  - (djm) Fix up POSIX saved uid support. Report from Mark Miller 
1413    <markm@swoon.net>
1414  - (djm) Search for -lcrypt on FreeBSD too
1415  - (djm) fatal() on OpenSSL version mismatch
1416  - (djm) Move PAM init to after fork for non-Solaris derived PAMs
1417  - (djm) Warning fix on entropy.c saved uid stuff. Patch from Mark Miller
1418    <markm@swoon.net>
1419  - (djm) Fix PAM fix
1420  - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This
1421    change is being made as 2.5.x configfiles are not back-compatible with
1422    2.3.x.
1423  - (djm) Avoid warnings for missing broken IP_TOS. Patch from Mark Miller
1424    <markm@swoon.net>
1425  - (djm) Open Server 5 doesn't need BROKEN_SAVED_UIDS. Patch from Tim Rice 
1426    <tim@multitalents.net>
1427  - (djm) Avoid multiple definition of _PATH_LS. Patch from Tim Rice 
1428    <tim@multitalents.net>
1429
1430 20010226
1431  - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
1432  - (djm) Some systems (SCO3, NeXT) have weird saved uid semantics. 
1433    Based on patch from Tim Rice <tim@multitalents.net>
1434
1435 20010225
1436  - (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
1437    Patch from Adrian Ho <lexfiend@usa.net>
1438  - (bal) Replace 'unsigned long long' to 'u_int64_t' since not every
1439    platform defines u_int64_t as being that.
1440
1441 20010224
1442  - (bal) Missed part of the UNIX sockets patch.  Patch by Corinna 
1443    Vinschen <vinschen@redhat.com>
1444  - (bal) Reorder where 'strftime' is detected to resolve linking
1445    issues on SCO.  Patch by Tim Rice <tim@multitalents.net>
1446
1447 20010224
1448  - (bal) pam_stack fix to correctly detect between RH7 and older RHs.
1449    Patch by Pekka Savola <pekkas@netcore.fi>
1450  - (bal) Renamed sigaction.[ch] to sigact.[ch].  Causes problems with
1451    some platforms.
1452  - (bal) Generalize lack of UNIX sockets since this also effects Cray
1453    not just Cygwin.  Based on patch by Wendy Palm <wendyp@cray.com>
1454
1455 20010223
1456  - (bal) Fix --define rh7 in openssh.spec file.  Patch by Steve Tell
1457    <tell@telltronics.org>
1458  - (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
1459    that it was compiled against.  Patch by Pekka Savola <pekkas@netcore.fi>
1460  - (bal) Double -I for OpenSSL on SCO.  Patch by Tim Rice 
1461    <tim@multitalents.net>
1462
1463 20010222                                                             
1464  - (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
1465  - (bal) Added mdoc2man.pl from Mark Roth <roth@feep.net>
1466  - (bal) Removed reference to liblogin from contrib/README.  It was
1467    integrated into OpenSSH a long while ago.
1468  - (stevesk) remove erroneous #ifdef sgi code.
1469    Michael Stone <mstone@cs.loyola.edu>
1470
1471 20010221
1472  - (bal) Removed -L/usr/ucblib -R/usr/ucblib for Solaris platform.
1473  - (bal) Fixed OpenSSL rework to use $saved_*.  Patch by Tim Rice 
1474    <tim@multitalents.net>
1475  - (bal) Reverted out of 2001/02/15 patch by djm below because it
1476    breaks Solaris.
1477         - (djm) Move PAM session setup back to before setuid to user.
1478           fixes problems on Solaris-drived PAMs.
1479  - (stevesk) session.c: back out to where we were before:
1480     - (djm) Move PAM session initialisation until after fork in sshd. Patch 
1481       from Nalin Dahyabhai <nalin@redhat.com>
1482
1483 20010220
1484  - (bal) Fix mixed up params to memmove() from Jan 5th in setenv.c and
1485    getcwd.c.
1486  - (bal) OpenBSD CVS Sync:
1487    - deraadt@cvs.openbsd.org 2001/02/19 23:09:05
1488      [sshd.c]
1489      clarify message to make it not mention "ident"
1490
1491 20010219
1492  - (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
1493    pty.[ch] -> sshpty.[ch]
1494  - (djm) Rework search for OpenSSL location. Skip directories which don't
1495    exist, don't add -L$ssldir/lib if it doesn't exist. Should help SCO
1496    with its limit of 6 -L options.
1497  - OpenBSD CVS Sync:
1498    - reinhard@cvs.openbsd.org        2001/02/17 08:24:40
1499      [sftp.1]
1500      typo
1501    - deraadt@cvs.openbsd.org 2001/02/17 16:28:58
1502      [ssh.c]
1503      cleanup -V output; noted by millert
1504    - deraadt@cvs.openbsd.org 2001/02/17 16:48:48
1505      [sshd.8]
1506      it's the OpenSSH one
1507    - markus@cvs.openbsd.org  2001/02/18 11:33:54
1508      [dispatch.c]
1509      typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi
1510    - markus@cvs.openbsd.org  2001/02/19 02:53:32
1511      [compat.c compat.h serverloop.c]
1512      ssh-1.2.{18-22} has broken handling of ignore messages; report from
1513      itojun@
1514    - markus@cvs.openbsd.org  2001/02/19 03:35:23
1515      [version.h]
1516      OpenSSH_2.5.1 adds bug compat with 1.2.{18-22}
1517    - deraadt@cvs.openbsd.org 2001/02/19 03:36:25
1518      [scp.c]
1519      np is changed by recursion; vinschen@redhat.com
1520  - Update versions in RPM spec files
1521  - Release 2.5.1p1
1522
1523 20010218
1524  - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice 
1525    <tim@multitalents.net> 
1526  - (Bal) Patch for lack of RA_RESTART in misc.c for mysignal by
1527    stevesk
1528  - (djm) Fix my breaking of cygwin builds, Patch from Corinna Vinschen 
1529    <vinschen@redhat.com> and myself.
1530  - (djm) Close listen_sock on bind() failures. Patch from Arkadiusz
1531    Miskiewicz <misiek@pld.ORG.PL>
1532  - (djm) Robustify EGD/PRNGd code in face of socket closures. Patch from
1533    Todd C. Miller <Todd.Miller@courtesan.com>
1534  - (djm) Use ttyname() to determine name of tty returned by openpty() 
1535    rather then risking overflow. Patch from Marek Michalkiewicz 
1536    <marekm@amelek.gda.pl>
1537  - (djm) Swapped tests for no_libsocket and no_libnsl in configure.in. 
1538    Patch from Marek Michalkiewicz <marekm@amelek.gda.pl>
1539  - (djm) Doc fixes from Pekka Savola <pekkas@netcore.fi>
1540  - (djm) Use SA_INTERRUPT along SA_RESTART if present (equivalent for 
1541    SunOS)
1542  - (djm) SCO needs librpc for libwrap. Patch from Tim Rice 
1543    <tim@multitalents.net>
1544  - (stevesk) misc.c: cpp rework of SA_(INTERRUPT|RESTART) handling.
1545  - (stevesk) scp.c: use mysignal() for updateprogressmeter() handler.
1546  - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for 
1547    SIGALRM.
1548  - (djm) Move entropy.c over to mysignal()
1549  - (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has 
1550    a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C. 
1551    Miller <Todd.Miller@courtesan.com>
1552  - (djm) Update RPM spec files for 2.5.0p1
1553  - (djm) Merge BSD_AUTH support from Markus Friedl and David J. MacKenzie
1554    enable with --with-bsd-auth.
1555  - (stevesk) entropy.c: typo; should be SIGPIPE
1556
1557 20010217
1558  - (bal) OpenBSD Sync:
1559    - markus@cvs.openbsd.org 2001/02/16 13:38:18
1560      [channel.c]                               
1561      remove debug                              
1562    - markus@cvs.openbsd.org 2001/02/16 14:03:43
1563      [session.c]
1564      proper payload-length check for x11 w/o screen-number
1565
1566 20010216
1567  - (bal) added '--with-prce'  to allow overriding of system regex when
1568    required (tested by David Dulek <ddulek@fastenal.com>)
1569  - (bal) Added DG/UX case and set that they have a broken IPTOS.
1570  - (djm) Mini-configure reorder patch from Tim Rice <tim@multitalents.net>
1571    Fixes linking on SCO.
1572  - (djm) Make gnome-ssh-askpass handle multi-line prompts. Patch from 
1573    Nalin Dahyabhai <nalin@redhat.com>
1574  - (djm) BSD license for gnome-ssh-askpass (was X11)
1575  - (djm) KNF on gnome-ssh-askpass
1576  - (djm) USE_PIPES for a few more sysv platforms
1577  - (djm) Cleanup configure.in a little
1578  - (djm) Ask users to check config.log when we can't find necessary libs
1579  - (djm) Set "login ID" on systems with setluid. Only enabled for SCO
1580    OpenServer for now. Based on patch from svaughan <svaughan@asterion.com>
1581  - (djm) OpenBSD CVS:
1582    - markus@cvs.openbsd.org  2001/02/15 16:19:59
1583      [channels.c channels.h serverloop.c sshconnect.c sshconnect.h]
1584      [sshconnect1.c sshconnect2.c]
1585      genericize password padding function for SSH1 and SSH2.
1586      add stylized echo to 2, too.
1587  - (djm) Add roundup() macro to defines.h
1588  - (stevesk) set SA_RESTART flag in mysignal() for SIGCHLD;
1589    needed on Unixware 2.x.
1590
1591 20010215
1592  - (djm) Move PAM session setup back to before setuid to user. Fixes 
1593    problems on Solaris-derived PAMs.
1594  - (djm) Clean up PAM namespace. Suggested by Darren Moffat
1595    <Darren.Moffat@eng.sun.com>
1596  - (bal) Sync w/ OpenSSH for new release
1597    - markus@cvs.openbsd.org 2001/02/12 12:45:06
1598      [sshconnect1.c]
1599      fix xmalloc(0), ok dugsong@
1600    - markus@cvs.openbsd.org 2001/02/11 12:59:25
1601      [Makefile.in sshd.8 sshconnect2.c readconf.h readconf.c packet.c
1602       sshd.c ssh.c ssh.1 servconf.h servconf.c myproposal.h kex.h kex.c]
1603      1) clean up the MAC support for SSH-2
1604      2) allow you to specify the MAC with 'ssh -m'
1605      3) or the 'MACs' keyword in ssh(d)_config
1606      4) add hmac-{md5,sha1}-96
1607              ok stevesk@, provos@
1608    - markus@cvs.openbsd.org 2001/02/12 16:16:23
1609      [auth-passwd.c auth.c auth.h auth1.c auth2.c servconf.c servconf.h
1610       ssh-keygen.c sshd.8]
1611      PermitRootLogin={yes,without-password,forced-commands-only,no}
1612      (before this change, root could login even if PermitRootLogin==no)
1613    - deraadt@cvs.openbsd.org 2001/02/12 22:56:09
1614      [clientloop.c packet.c ssh-keyscan.c]
1615      deal with EAGAIN/EINTR selects which were skipped
1616    - markus@cvs.openssh.org 2001/02/13 22:49:40
1617      [auth1.c auth2.c]
1618      setproctitle(user) only if getpwnam succeeds
1619    - markus@cvs.openbsd.org 2001/02/12 23:26:20
1620      [sshd.c]
1621      missing memset; from solar@openwall.com
1622    - stevesk@cvs.openbsd.org 2001/02/12 20:53:33
1623      [sftp-int.c]
1624      lumask now works with 1 numeric arg; ok markus@, djm@
1625    - djm@cvs.openbsd.org 2001/02/14 9:46:03
1626      [sftp-client.c sftp-int.c sftp.1]
1627      Fix and document 'preserve modes & times' option ('-p' flag in sftp);
1628      ok markus@
1629  - (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
1630  - (djm) Move to Jim's 1.2.0 X11 askpass program
1631  - (stevesk) OpenBSD sync:
1632    - deraadt@cvs.openbsd.org 2001/02/15 01:38:04
1633      [serverloop.c]
1634      indent
1635
1636 20010214
1637  - (djm) Don't try to close PAM session or delete credentials if the
1638    session has not been open or credentials not set. Based on patch from 
1639    Andrew Bartlett <abartlet@pcug.org.au>
1640  - (djm) Move PAM session initialisation until after fork in sshd. Patch 
1641    from Nalin Dahyabhai <nalin@redhat.com>
1642  - (bal) Missing function prototype in bsd-snprintf.c patch by
1643    Mark Miller <markm@swoon.net>
1644  - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams
1645    <cmadams@hiwaay.net> with a little modification and KNF.
1646  - (stevesk) fix for SIA patch, misplaced session_setup_sia()
1647
1648 20010213
1649  - (djm) Only test -S potential EGD sockets if they exist and are readable.
1650  - (bal) Cleaned out bsd-snprintf.c.  VARARGS have been banished and
1651    I did a base KNF over the whe whole file to make it more acceptable.
1652    (backed out of original patch and removed it from ChangeLog)
1653  - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by
1654    Tim Rice <tim@multitalents.net>
1655  - (stevesk) auth1.c: fix PAM passwordless check.
1656
1657 20010212
1658  - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1", 
1659    --define "skip_gnome_askpass 1", --define "rh7 1" and make the 
1660    implicit rpm-3.0.5 dependancy explicit. Patch and suggestions from 
1661    Pekka Savola <pekkas@netcore.fi>
1662  - (djm) Clean up PCRE text in INSTALL
1663  - (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby 
1664    <mib@unimelb.edu.au>
1665  - (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
1666  - (stevesk) session.c: remove debugging code.
1667
1668 20010211
1669  - (bal) OpenBSD Sync
1670    - markus@cvs.openbsd.org 2001/02/07 22:35:46
1671      [auth1.c auth2.c sshd.c]
1672      move k_setpag() to a central place; ok dugsong@
1673    - markus@cvs.openbsd.org 2001/02/10 12:52:02
1674      [auth2.c]
1675      offer passwd before s/key
1676    - markus@cvs.openbsd.org 2001/02/8 22:37:10
1677      [canohost.c]
1678      remove last call to sprintf; ok deraadt@
1679    - markus@cvs.openbsd.org 2001/02/10 1:33:32
1680      [canohost.c]
1681      add debug message, since sshd blocks here if DNS is not available
1682    - markus@cvs.openbsd.org 2001/02/10 12:44:02
1683      [cli.c]
1684      don't call vis() for \r
1685    - danh@cvs.openbsd.org 2001/02/10 0:12:43
1686      [scp.c]
1687      revert a small change to allow -r option to work again; ok deraadt@
1688    - danh@cvs.openbsd.org 2001/02/10 15:14:11
1689      [scp.c]
1690      fix memory leak; ok markus@
1691    - djm@cvs.openbsd.org 2001/02/10 0:45:52
1692      [scp.1]
1693      Mention that you can quote pathnames with spaces in them
1694    - markus@cvs.openbsd.org 2001/02/10 1:46:28
1695      [ssh.c]
1696      remove mapping of argv[0] -> hostname
1697    - markus@cvs.openbsd.org 2001/02/06 22:26:17
1698      [sshconnect2.c]
1699      do not ask for passphrase in batch mode; report from ejb@ql.org
1700    - itojun@cvs.opebsd.org 2001/02/08 10:47:05
1701      [sshconnect.c sshconnect1.c sshconnect2.c]
1702      %.30s is too short for IPv6 numeric address.  use %.128s for now.  
1703      markus ok
1704    - markus@cvs.openbsd.org 2001/02/09 12:28:35
1705      [sshconnect2.c]
1706      do not free twice, thanks to /etc/malloc.conf
1707    - markus@cvs.openbsd.org 2001/02/09 17:10:53
1708      [sshconnect2.c]
1709      partial success: debug->log; "Permission denied" if no more auth methods
1710    - markus@cvs.openbsd.org 2001/02/10 12:09:21
1711      [sshconnect2.c]
1712      remove some lines
1713    - markus@cvs.openbsd.org 2001/02/09 13:38:07
1714      [auth-options.c]
1715      reset options if no option is given; from han.holl@prismant.nl
1716    - markus@cvs.openbsd.org 2001/02/08 21:58:28
1717      [channels.c]
1718      nuke sprintf, ok deraadt@
1719    - markus@cvs.openbsd.org 2001/02/08 21:58:28
1720      [channels.c]
1721      nuke sprintf, ok deraadt@
1722    - markus@cvs.openbsd.org 2001/02/06 22:43:02
1723      [clientloop.h]
1724      remove confusing callback code
1725    - deraadt@cvs.openbsd.org 2001/02/08 14:39:36
1726      [readconf.c]
1727      snprintf
1728    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
1729      sync with netbsd tree changes.
1730      - more strict prototypes, include necessary headers
1731      - use paths.h/pathnames.h decls
1732      - size_t typecase to int -> u_long
1733    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
1734      [ssh-keyscan.c]
1735      fix size_t -> int cast (use u_long).  markus ok
1736    - markus@cvs.openbsd.org 2001/02/07 22:43:16
1737      [ssh-keyscan.c]
1738      s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
1739    - itojun@cvs.openbsd.org 2001/02/09 9:04:59
1740      [ssh-keyscan.c]
1741      do not assume malloc() returns zero-filled region.  found by 
1742      malloc.conf=AJ.
1743    - markus@cvs.openbsd.org 2001/02/08 22:35:30
1744      [sshconnect.c]
1745      don't connect if batch_mode is true and stricthostkeychecking set to 
1746     'ask'
1747    - djm@cvs.openbsd.org 2001/02/04 21:26:07
1748      [sshd_config]
1749      type: ok markus@
1750    - deraadt@cvs.openbsd.org 2001/02/06 22:07:50
1751      [sshd_config]
1752      enable sftp-server by default
1753    - deraadt 2001/02/07 8:57:26
1754      [xmalloc.c]
1755      deal with new ANSI malloc stuff
1756    - markus@cvs.openbsd.org 2001/02/07 16:46:08
1757      [xmalloc.c]
1758      typo in fatal()
1759    - itojun@cvs.openbsd.org 2001/02/07 18:04:50
1760      [xmalloc.c]
1761      fix size_t -> int cast (use u_long).  markus ok
1762    - 1.47 Thu Feb 8 23:11:42 GMT 2001 by dugsong
1763      [serverloop.c sshconnect1.c]
1764      mitigate SSH1 traffic analysis - from Solar Designer 
1765      <solar@openwall.com>, ok provos@
1766  - (bal) fixed sftp-client.c.  Return 'status' instead of '0'  
1767    (from the OpenBSD tree)
1768  - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
1769  - (bal) sftp-sever.c  '%8lld' to '%8llu' (OpenBSD Sync)
1770  - (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
1771  - (bal) A bit more whitespace cleanup
1772  - (djm) Set PAM_RHOST earlier, patch from Andrew Bartlett 
1773    <abartlet@pcug.org.au>
1774  - (stevesk) misc.c: ssh.h not needed.
1775  - (stevesk) compat.c: more friendly cpp error
1776  - (stevesk) OpenBSD sync:
1777    - stevesk@cvs.openbsd.org 2001/02/11 06:15:57
1778      [LICENSE]
1779      typos and small cleanup; ok deraadt@
1780
1781 20010210
1782  - (djm) Sync sftp and scp stuff from OpenBSD:
1783    - djm@cvs.openbsd.org     2001/02/07 03:55:13
1784      [sftp-client.c]
1785      Don't free handles before we are done with them. Based on work from
1786      Corinna Vinschen <vinschen@redhat.com>. ok markus@
1787    - djm@cvs.openbsd.org     2001/02/06 22:32:53
1788      [sftp.1]
1789      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
1790    - deraadt@cvs.openbsd.org 2001/02/07 04:07:29
1791      [sftp.1]
1792      pretty up significantly
1793    - itojun@cvs.openbsd.org  2001/02/07 06:49:42
1794      [sftp.1]
1795      .Bl-.El mismatch.  markus ok
1796    - djm@cvs.openbsd.org     2001/02/07 06:12:30
1797      [sftp-int.c]
1798      Check that target is a directory before doing ls; ok markus@
1799    - itojun@cvs.openbsd.org  2001/02/07 11:01:18
1800      [scp.c sftp-client.c sftp-server.c]
1801      unsigned long long -> %llu, not %qu.  markus ok
1802    - stevesk@cvs.openbsd.org 2001/02/07 11:10:39
1803      [sftp.1 sftp-int.c]
1804      more man page cleanup and sync of help text with man page; ok markus@
1805    - markus@cvs.openbsd.org  2001/02/07 14:58:34
1806      [sftp-client.c]
1807      older servers reply with SSH2_FXP_NAME + count==0 instead of EOF
1808    - djm@cvs.openbsd.org     2001/02/07 15:27:19
1809      [sftp.c]
1810      Don't forward agent and X11 in sftp. Suggestion from Roumen Petrov
1811      <roumen.petrov@skalasoft.com>
1812    - stevesk@cvs.openbsd.org 2001/02/07 15:36:04
1813      [sftp-int.c]
1814      portable; ok markus@
1815    - stevesk@cvs.openbsd.org 2001/02/07 15:55:47
1816      [sftp-int.c]
1817      lowercase cmds[].c also; ok markus@
1818    - markus@cvs.openbsd.org  2001/02/07 17:04:52
1819      [pathnames.h sftp.c]
1820      allow sftp over ssh protocol 1; ok djm@
1821    - deraadt@cvs.openbsd.org 2001/02/08 07:38:55
1822      [scp.c]
1823      memory leak fix, and snprintf throughout
1824    - deraadt@cvs.openbsd.org 2001/02/08 08:02:02
1825      [sftp-int.c]
1826      plug a memory leak
1827    - stevesk@cvs.openbsd.org 2001/02/08 10:11:23
1828      [session.c sftp-client.c]
1829      %i -> %d
1830    - stevesk@cvs.openbsd.org 2001/02/08 10:57:59
1831      [sftp-int.c]
1832      typo
1833    - stevesk@cvs.openbsd.org 2001/02/08 15:28:07
1834      [sftp-int.c pathnames.h]
1835      _PATH_LS; ok markus@
1836    - djm@cvs.openbsd.org     2001/02/09 04:46:25
1837      [sftp-int.c]
1838      Check for NULL attribs for chown, chmod & chgrp operations, only send
1839      relevant attribs back to server; ok markus@
1840    - djm@cvs.openbsd.org     2001/02/06 15:05:25
1841      [sftp.c]
1842      Use getopt to process commandline arguments
1843    - djm@cvs.openbsd.org     2001/02/06 15:06:21
1844      [sftp.c ]
1845      Wait for ssh subprocess at exit
1846    - djm@cvs.openbsd.org     2001/02/06 15:18:16
1847      [sftp-int.c]
1848      stat target for remote chdir before doing chdir
1849    - djm@cvs.openbsd.org     2001/02/06 15:32:54
1850      [sftp.1]
1851      Punctuation fix from Pekka Savola <pekkas@netcore.fi>
1852    - provos@cvs.openbsd.org  2001/02/05 22:22:02
1853      [sftp-int.c]
1854      cleanup get_pathname, fix pwd after failed cd. okay djm@
1855  - (djm) Update makefile.in for _PATH_SFTP_SERVER
1856  - (bal) sftp-client.c replace NULL w/ 0 in do_ls() (pending in OpenBSD tree)
1857
1858 20010209
1859  - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney 
1860    <rjmooney@mediaone.net>
1861  - (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
1862    main tree while porting forward.  Pointed out by Lutz Jaenicke 
1863    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
1864  - (bal) double entry in configure.in.  Pointed out by Lutz Jaenicke
1865    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
1866  - (stevesk) OpenBSD sync:
1867    - markus@cvs.openbsd.org  2001/02/08 11:20:01
1868      [auth2.c]
1869      strict checking
1870    - markus@cvs.openbsd.org  2001/02/08 11:15:22
1871      [version.h]
1872      update to 2.3.2
1873    - markus@cvs.openbsd.org  2001/02/08 11:12:30
1874      [auth2.c]
1875      fix typo
1876  - (djm) Update spec files
1877  - (bal) OpenBSD sync:
1878    - deraadt@cvs.openbsd.org 2001/02/08 14:38:54
1879      [scp.c]
1880      memory leak fix, and snprintf throughout
1881    - markus@cvs.openbsd.org 2001/02/06 22:43:02
1882      [clientloop.c]
1883      remove confusing callback code
1884  - (djm) Add CVS Id's to files that we have missed
1885  - (bal) OpenBSD Sync (more):
1886    - itojun@cvs.openbsd.org 2001/02/08 19:30:52
1887      sync with netbsd tree changes.
1888      - more strict prototypes, include necessary headers
1889      - use paths.h/pathnames.h decls
1890      - size_t typecase to int -> u_long
1891    - markus@cvs.openbsd.org 2001/02/06 22:07:42
1892      [ssh.c]
1893      fatal() if subsystem fails
1894    - markus@cvs.openbsd.org 2001/02/06 22:43:02
1895      [ssh.c]
1896      remove confusing callback code
1897    - jakob@cvs.openbsd.org 2001/02/06 23:03:24
1898      [ssh.c]
1899      add -1 option (force protocol version 1). ok markus@
1900    - jakob@cvs.openbsd.org 2001/02/06 23:06:21
1901      [ssh.c]
1902      reorder -{1,2,4,6} options. ok markus@
1903  - (bal) Missing 'const' in readpass.h
1904  - (bal) OpenBSD Sync (so at least the thing compiles for 2.3.2 =)
1905    - djm@cvs.openbsd.org 2001/02/06 23:30:28
1906      [sftp-client.c]
1907      replace arc4random with counter for request ids; ok markus@
1908  - (djm) Define _PATH_TTY for systems that don't. Report from Lutz 
1909    Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
1910
1911 20010208
1912  - (djm) Don't delete external askpass program in make uninstall target.
1913    Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com>
1914  - (djm) Fix linking of sftp, don't need arc4random any more.
1915  - (djm) Try to use shell that supports "test -S" for EGD socket search.
1916    Based on patch from Tim Rice <tim@multitalents.net>
1917
1918 20010207
1919  - (bal) Save the whole path to AR in configure.  Some Solaris 2.7 installs
1920    seem lose track of it while in openbsd-compat/  (two confirmed reports)
1921  - (djm) Much KNF on PAM code
1922  - (djm) Revise auth-pam.c conversation function to be a little more
1923    readable.
1924  - (djm) Revise kbd-int PAM conversation function to fold all text messages
1925    to before first prompt. Fixes hangs if last pam_message did not require
1926    a reply.
1927  - (djm) Fix password changing when using PAM kbd-int authentication
1928
1929 20010205
1930  - (bal) Disable groupaccess by setting NGROUPS_MAX to 0 for platforms
1931    that don't have NGROUPS_MAX.
1932  - (bal) AIX patch for auth1.c by William L. Jones <jones@hpc.utexas.edu>
1933  - (stevesk) OpenBSD sync:
1934    - stevesk@cvs.openbsd.org 2001/02/04 08:32:27
1935      [many files; did this manually to our top-level source dir]
1936      unexpand and remove end-of-line whitespace; ok markus@
1937    - stevesk@cvs.openbsd.org 2001/02/04 15:21:19
1938      [sftp-server.c]
1939      SSH2_FILEXFER_ATTR_UIDGID support; ok markus@
1940    - deraadt@cvs.openbsd.org 2001/02/04 17:02:32
1941      [sftp-int.c]
1942      ? == help
1943    - deraadt@cvs.openbsd.org 2001/02/04 16:47:46
1944      [sftp-int.c]
1945      sort commands, so that abbreviations work as expected
1946    - stevesk@cvs.openbsd.org 2001/02/04 15:17:52
1947      [sftp-int.c]
1948      debugging sftp: precedence and missing break.  chmod, chown, chgrp
1949      seem to be working now.
1950    - markus@cvs.openbsd.org 2001/02/04 14:41:21
1951      [sftp-int.c]
1952      use base 8 for umask/chmod
1953    - markus@cvs.openbsd.org 2001/02/04 11:11:54
1954      [sftp-int.c]
1955      fix LCD
1956    - markus@cvs.openbsd.org  2001/02/04 08:10:44
1957      [ssh.1]
1958      typo; dpo@club-internet.fr
1959    - stevesk@cvs.openbsd.org 2001/02/04 06:30:12
1960      [auth2.c authfd.c packet.c]
1961      remove duplicate #include's; ok markus@
1962    - deraadt@cvs.openbsd.org 2001/02/04 16:56:23
1963      [scp.c sshd.c]
1964      alpha happiness
1965    - stevesk@cvs.openbsd.org 2001/02/04 15:12:17
1966      [sshd.c]
1967      precedence; ok markus@
1968    - deraadt@cvs.openbsd.org 2001/02/04 08:14:15
1969      [ssh.c sshd.c]
1970      make the alpha happy
1971    - markus@cvs.openbsd.org  2001/01/31 13:37:24
1972      [channels.c channels.h serverloop.c ssh.c]
1973      do not disconnect if local port forwarding fails, e.g. if port is 
1974      already in use
1975    - markus@cvs.openbsd.org  2001/02/01 14:58:09
1976      [channels.c]
1977      use ipaddr in channel messages, ietf-secsh wants this
1978    - markus@cvs.openbsd.org  2001/01/31 12:26:20
1979      [channels.c]
1980      ssh.com-2.0.1x does not send additional info in CHANNEL_OPEN_FAILURE 
1981      messages; bug report from edmundo@rano.org
1982    - markus@cvs.openbsd.org  2001/01/31 13:48:09
1983      [sshconnect2.c]
1984      unused
1985    - deraadt@cvs.openbsd.org 2001/02/04 08:23:08
1986      [sftp-client.c sftp-server.c]
1987      make gcc on the alpha even happier
1988
1989 20010204
1990  - (bal) I think this is the last of the bsd-*.h that don't belong.
1991  - (bal) Minor Makefile fix
1992  - (bal) openbsd-compat/Makefile minor fix.  Ensure dependancies are done
1993    right.
1994  - (bal) Changed order of LIB="" in -with-skey due to library resolving.
1995  - (bal) next-posix.h changed to bsd-nextstep.h
1996  - (djm) OpenBSD CVS sync:
1997    - markus@cvs.openbsd.org  2001/02/03 03:08:38
1998      [auth-options.c auth-rh-rsa.c auth-rhosts.c auth.c canohost.c]
1999      [canohost.h servconf.c servconf.h session.c sshconnect1.c sshd.8]
2000      [sshd_config]
2001      make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@
2002    - markus@cvs.openbsd.org  2001/02/03 03:19:51
2003      [ssh.1 sshd.8 sshd_config]
2004      Skey is now called ChallengeResponse
2005    - markus@cvs.openbsd.org  2001/02/03 03:43:09
2006      [sshd.8]
2007      use no-pty option in .ssh/authorized_keys* if you need a 8-bit clean
2008      channel. note from Erik.Anggard@cygate.se (pr/1659)
2009    - stevesk@cvs.openbsd.org 2001/02/03 10:03:06
2010      [ssh.1]
2011      typos; ok markus@
2012    - djm@cvs.openbsd.org     2001/02/04 04:11:56
2013      [scp.1 sftp-server.c ssh.1 sshd.8 sftp-client.c sftp-client.h]
2014      [sftp-common.c sftp-common.h sftp-int.c sftp-int.h sftp.1 sftp.c]
2015      Basic interactive sftp client; ok theo@
2016  - (djm) Update RPM specs for new sftp binary
2017  - (djm) Update several bits for new optional reverse lookup stuff. I 
2018    think I got them all.
2019  - (djm) Makefile.in fixes
2020  - (stevesk) add mysignal() wrapper and use it for the protocol 2
2021    SIGCHLD handler.
2022  - (djm) Use setvbuf() instead of setlinebuf(). Suggest from stevesk@
2023
2024 20010203
2025  - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com>
2026  - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD
2027    based file) to ensure #include space does not get confused.
2028  - (bal) Minor Makefile.in tweak.  dirname may not exist on some
2029    platforms so builds fail.  (NeXT being a well known one)
2030
2031 20010202
2032  - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
2033    <vinschen@redhat.com>
2034  - (bal) Makefile fix to use $(MAKE) instead of 'make'  for platforms
2035    that use 'gmake'.   Patch by Tim Rice <tim@multitalents.net>
2036
2037 20010201
2038  - (bal) Minor fix to Makefile to stop rebuilding executables if no
2039    changes have occured to any of the supporting code.  Patch by
2040    Roumen Petrov <roumen.petrov@skalasoft.com>
2041
2042 20010131
2043  - (djm) OpenBSD CVS Sync:
2044    - djm@cvs.openbsd.org     2001/01/30 15:48:53
2045      [sshconnect.c]
2046      Make warning message a little more consistent. ok markus@
2047  - (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
2048    Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
2049    respectively.
2050  - (djm) Don't log SSH2 PAM KbdInt responses to debug, they may contain
2051    passwords.
2052  - (bal) Reorder.  Move all bsd-*, fake-*, next-*, and cygwin* stuff to
2053    openbsd-compat/.  And resolve all ./configure and Makefile.in issues
2054    assocated.
2055
2056 20010130
2057  - (djm) OpenBSD CVS Sync:
2058    - markus@cvs.openbsd.org  2001/01/29 09:55:37
2059      [channels.c channels.h clientloop.c serverloop.c]
2060      fix select overflow; ok deraadt@ and stevesk@
2061    - markus@cvs.openbsd.org  2001/01/29 12:42:35
2062      [canohost.c canohost.h channels.c clientloop.c]
2063      add get_peer_ipaddr(socket), x11-fwd in ssh2 requires ipaddr, not DNS
2064    - markus@cvs.openbsd.org  2001/01/29 12:47:32
2065      [rsa.c rsa.h ssh-agent.c sshconnect1.c sshd.c]
2066      handle rsa_private_decrypt failures; helps against the Bleichenbacher
2067      pkcs#1 attack
2068    - djm@cvs.openbsd.org     2001/01/29 05:36:11
2069      [ssh.1 ssh.c]
2070      Allow invocation of sybsystem by commandline (-s); ok markus@
2071  - (stevesk) configure.in: remove duplicate PROG_LS
2072
2073 20010129
2074  - (stevesk) sftp-server.c: use %lld vs. %qd
2075
2076 20010128
2077  - (bal) Put USE_PIPES back into sco3.2v5
2078  - (bal) OpenBSD Sync
2079    - markus@cvs.openbsd.org 2001/01/28 10:15:34
2080      [dispatch.c]
2081      re-keying is not supported; ok deraadt@
2082    - markus@cvs.openbsd.org 2001/01/28 10:24:04
2083      [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
2084      cleanup AUTHORS sections
2085    - markus@cvs.openbsd.org 2001/01/28 10:37:26
2086      [sshd.c sshd.8]
2087      remove -Q, no longer needed
2088    - stevesk@cvs.openbsd.org 2001/01/28 20:36:16
2089      [readconf.c ssh.1]
2090      ``StrictHostKeyChecking ask'' documentation and small cleanup.
2091      ok markus@
2092    - stevesk@cvs.openbsd.org 2001/01/28 20:43:25
2093      [sshd.8]
2094      spelling.  ok markus@
2095    - stevesk@cvs.openbsd.org 2001/01/28 20:53:21
2096      [xmalloc.c]
2097      use size_t for strlen() return.  ok markus@
2098    - stevesk@cvs.openbsd.org 2001/01/28 22:27:05
2099      [authfile.c]
2100      spelling.  use sizeof vs. strlen().  ok markus@
2101    - niklas@cvs.openbsd.org 2001/01/29 1:59:14
2102      [atomicio.h canohost.h clientloop.h deattack.h dh.h dispatch.h
2103       groupaccess.c groupaccess.h hmac.h hostfile.h includes.h kex.h
2104       key.h log.h login.h match.h misc.h myproposal.h nchan.ms pathnames.h
2105       radix.h readpass.h rijndael.h serverloop.h session.h sftp.h ssh-add.1
2106       ssh-dss.h ssh-keygen.1 ssh-keyscan.1 ssh-rsa.h ssh1.h ssh_config
2107       sshconnect.h sshd_config tildexpand.h uidswap.h uuencode.h]
2108      $OpenBSD$
2109   - (bal) Minor auth2.c resync.  Whitespace and moving of an #include.
2110
2111 20010126
2112  - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
2113    Petrov <roumen.petrov@skalasoft.com>
2114  - (bal) OpenBSD Sync
2115    - deraadt@cvs.openbsd.org 2001/01/25 8:06:33
2116      [ssh-agent.c]
2117      call _exit() in signal handler
2118
2119 20010125
2120  - (djm) Sync bsd-* support files:
2121    - deraadt@cvs.openbsd.org 2000/01/26 03:43:20
2122      [rresvport.c bindresvport.c]
2123      new bindresvport() semantics that itojun, shin, jean-luc and i have
2124      agreed on, which will be happy for the future. bindresvport_sa() for
2125      sockaddr *, too.  docs later..
2126    - deraadt@cvs.openbsd.org 2000/01/24 02:24:21
2127      [bindresvport.c]
2128      in bindresvport(), if sin is non-NULL, example sin->sin_family for
2129      the actual family being processed
2130  - (djm) Mention PRNGd in documentation, it is nicer than EGD
2131  - (djm) Automatically search for "well-known" EGD/PRNGd sockets in autoconf
2132  - (bal) AC_FUNC_STRFTIME added to autoconf
2133  - (bal) OpenBSD Resync
2134    - stevesk@cvs.openbsd.org 2001/01/24 21:03:50
2135      [channels.c]
2136      missing freeaddrinfo(); ok markus@
2137
2138 20010124
2139  - (bal) OpenBSD Resync
2140    - markus@cvs.openbsd.org 2001/01/23 10:45:10
2141      [ssh.h]
2142      nuke comment
2143  - (bal) no 64bit support patch from Tim Rice <tim@multitalents.net>
2144  - (bal) #ifdef around S_IFSOCK if platform does not support it.
2145    patch by Tim Rice <tim@multitalents.net>
2146  - (bal) fake-regex.h cleanup based on Tim Rice's patch.
2147  - (stevesk) sftp-server.c: fix chmod() mode mask
2148
2149 20010123
2150  - (bal) regexp.h typo in configure.in.  Should have been regex.h
2151  - (bal) SSH_USER_DIR to _PATH_SSH_USER_DIR patch by stevesk@
2152  - (bal) SSH_ASKPASS_DEFAULT to _PATH_SSH_ASKPASS_DEFAULT
2153  - (bal) OpenBSD Resync
2154    - markus@cvs.openbsd.org 2001/01/22 8:15:00
2155      [auth-krb4.c sshconnect1.c]
2156      only AFS needs radix.[ch]
2157    - markus@cvs.openbsd.org 2001/01/22 8:32:53
2158      [auth2.c]
2159      no need to include; from mouring@etoh.eviladmin.org
2160    - stevesk@cvs.openbsd.org 2001/01/22 16:55:21
2161      [key.c]
2162      free() -> xfree(); ok markus@
2163    - stevesk@cvs.openbsd.org 2001/01/22 17:22:28
2164      [sshconnect2.c sshd.c]
2165      fix memory leaks in SSH2 key exchange; ok markus@
2166    - markus@cvs.openbsd.org 2001/01/22 23:06:39
2167      [auth1.c auth2.c readconf.c readconf.h servconf.c servconf.h
2168       sshconnect1.c sshconnect2.c sshd.c]
2169      rename skey -> challenge response.
2170      auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled.
2171
2172
2173 20010122
2174  - (bal) OpenBSD Resync
2175    - markus@cvs.openbsd.org 2001/01/19 12:45:26 GMT 2001 by markus
2176      [servconf.c ssh.h sshd.c]
2177      only auth-chall.c needs #ifdef SKEY
2178    - markus@cvs.openbsd.org 2001/01/19 15:55:10 GMT 2001 by markus
2179      [auth-krb4.c auth-options.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
2180       auth1.c auth2.c channels.c clientloop.c dh.c dispatch.c nchan.c
2181       packet.c pathname.h readconf.c scp.c servconf.c serverloop.c
2182       session.c ssh-add.c ssh-keygen.c ssh-keyscan.c ssh.c ssh.h
2183       ssh1.h sshconnect1.c sshd.c ttymodes.c]
2184      move ssh1 definitions to ssh1.h, pathnames to pathnames.h
2185    - markus@cvs.openbsd.org 2001/01/19 16:48:14
2186      [sshd.8]
2187      fix typo; from stevesk@
2188    - markus@cvs.openbsd.org 2001/01/19 16:50:58
2189      [ssh-dss.c]
2190      clear and free digest, make consistent with other code (use dlen); from
2191      stevesk@
2192    - markus@cvs.openbsd.org 2001/01/20 15:55:20 GMT 2001 by markus
2193      [auth-options.c auth-options.h auth-rsa.c auth2.c]
2194      pass the filename to auth_parse_options()
2195    - markus@cvs.openbsd.org 2001/01/20 17:59:40 GMT 2001
2196      [readconf.c]
2197      fix SIGSEGV from -o ""; problem noted by jehsom@togetherweb.com
2198    - stevesk@cvs.openbsd.org 2001/01/20 18:20:29
2199      [sshconnect2.c]
2200      dh_new_group() does not return NULL.  ok markus@
2201    - markus@cvs.openbsd.org 2001/01/20 21:33:42
2202      [ssh-add.c]
2203      do not loop forever if askpass does not exist; from
2204      andrew@pimlott.ne.mediaone.net
2205    - djm@cvs.openbsd.org 2001/01/20 23:00:56
2206      [servconf.c]
2207      Check for NULL return from strdelim; ok markus
2208    - djm@cvs.openbsd.org 2001/01/20 23:02:07
2209      [readconf.c]
2210      KNF; ok markus
2211    - jakob@cvs.openbsd.org 2001/01/21 9:00:33
2212      [ssh-keygen.1]
2213      remove -R flag; ok markus@
2214    - markus@cvs.openbsd.org 2001/01/21 19:05:40
2215      [atomicio.c automicio.h auth-chall.c auth-krb4.c auth-options.c
2216       auth-options.h auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
2217       auth.c auth.h auth1.c auth2-chall.c auth2.c authfd.c authfile.c
2218       bufaux.c  bufaux.h buffer.c canahost.c canahost.h channels.c
2219       cipher.c cli.c clientloop.c clientloop.h compat.c compress.c
2220       deattack.c dh.c dispatch.c groupaccess.c hmac.c hostfile.c kex.c
2221       key.c key.h log-client.c log-server.c log.c log.h login.c login.h
2222       match.c misc.c misc.h nchan.c packet.c pty.c radix.h readconf.c
2223       readpass.c readpass.h rsa.c scp.c servconf.c serverloop.c serverloop.h
2224       session.c sftp-server.c ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c
2225       ssh-keyscan.c ssh-rsa.c ssh.c ssh.h sshconnect.c sshconnect.h
2226       sshconnect1.c sshconnect2.c sshd.c tildexpand.c tildexpand.h
2227       ttysmodes.c uidswap.c xmalloc.c]
2228      split ssh.h and try to cleanup the #include mess. remove unnecessary
2229      #includes.  rename util.[ch] -> misc.[ch]
2230  - (bal) renamed 'PIDDIR' to '_PATH_SSH_PIDDIR' to match OpenBSD tree
2231  - (bal) Moved #ifdef KRB4 in auth-krb4.c above the #include to resolve
2232    conflict when compiling for non-kerb install
2233  - (bal) removed the #ifdef SKEY in auth1.c to match Markus' changes
2234    on 1/19.
2235
2236 20010120
2237  - (bal) OpenBSD Resync
2238    - markus@cvs.openbsd.org 2001/01/19 12:45:26
2239      [ssh-chall.c servconf.c servconf.h ssh.h sshd.c]
2240      only auth-chall.c needs #ifdef SKEY
2241  - (bal) Slight auth2-pam.c clean up.
2242  - (bal) Includes a fake-regexp.h to be only used if regcomp() is found,
2243    but no 'regexp.h' found (SCO OpenServer 3 lacks the header).
2244
2245 20010119
2246  - (djm) Update versions in RPM specfiles
2247  - (bal) OpenBSD Resync
2248    - markus@cvs.openbsd.org 2001/01/18 16:20:21
2249      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h
2250       sshd.8 sshd.c]
2251      log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many
2252      systems
2253    - markus@cvs.openbsd.org 2001/01/18 16:59:59
2254      [auth-passwd.c auth.c auth.h auth1.c auth2.c serverloop.c session.c
2255       session.h sshconnect1.c]
2256      1) removes fake skey from sshd, since this will be much
2257         harder with /usr/libexec/auth/login_XXX
2258      2) share/unify code used in ssh-1 and ssh-2 authentication (server side)
2259      3) make addition of BSD_AUTH and other challenge reponse methods
2260         easier.
2261    - markus@cvs.openbsd.org 2001/01/18 17:12:43
2262      [auth-chall.c auth2-chall.c]
2263      rename *-skey.c *-chall.c since the files are not skey specific
2264  - (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
2265    to fix NULL pointer deref and fake authloop breakage in PAM code.
2266  - (bal) Updated contrib/cygwin/ by Corinna Vinschen <vinschen@redhat.com>
2267  - (bal) Minor cygwin patch to auth1.c.  Suggested by djm.
2268
2269 20010118
2270  - (bal) Super Sized OpenBSD Resync
2271    - markus@cvs.openbsd.org 2001/01/11 22:14:20 GMT 2001 by markus
2272      [sshd.c]
2273      maxfd+1
2274    - markus@cvs.openbsd.org 2001/01/13 17:59:18
2275      [ssh-keygen.1]
2276      small ssh-keygen manpage cleanup; stevesk@pobox.com
2277    - markus@cvs.openbsd.org 2001/01/13 18:03:07
2278      [scp.c ssh-keygen.c sshd.c]
2279      getopt() returns -1 not EOF; stevesk@pobox.com
2280    - markus@cvs.openbsd.org 2001/01/13 18:06:54
2281      [ssh-keyscan.c]
2282      use SSH_DEFAULT_PORT; from stevesk@pobox.com
2283    - markus@cvs.openbsd.org 2001/01/13 18:12:47
2284      [ssh-keyscan.c]
2285      free() -> xfree(); fix memory leak; from stevesk@pobox.com
2286    - markus@cvs.openbsd.org 2001/01/13 18:14:13
2287      [ssh-add.c]
2288      typo, from stevesk@sweden.hp.com
2289    - markus@cvs.openbsd.org 2001/01/13 18:32:50
2290      [packet.c session.c ssh.c sshconnect.c sshd.c]
2291      split out keepalive from packet_interactive (from dale@accentre.com)
2292      set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too.
2293    - markus@cvs.openbsd.org 2001/01/13 18:36:45
2294      [packet.c packet.h]
2295      reorder, typo
2296    - markus@cvs.openbsd.org 2001/01/13 18:38:00
2297      [auth-options.c]
2298      fix comment
2299    - markus@cvs.openbsd.org 2001/01/13 18:43:31
2300      [session.c]
2301      Wall
2302    - markus@cvs.openbsd.org 2001/01/13 19:14:08
2303      [clientloop.h clientloop.c ssh.c]
2304      move callback to headerfile
2305    - markus@cvs.openbsd.org 2001/01/15 21:40:10
2306      [ssh.c]
2307      use log() instead of stderr
2308    - markus@cvs.openbsd.org 2001/01/15 21:43:51
2309      [dh.c]
2310      use error() not stderr!
2311    - markus@cvs.openbsd.org 2001/01/15 21:45:29
2312      [sftp-server.c]
2313      rename must fail if newpath exists, debug off by default
2314    - markus@cvs.openbsd.org 2001/01/15 21:46:38
2315      [sftp-server.c]
2316      readable long listing for sftp-server, ok deraadt@
2317    - markus@cvs.openbsd.org 2001/01/16 19:20:06
2318      [key.c ssh-rsa.c]
2319      make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from
2320      galb@vandyke.com.  note that you have to delete older ssh2-rsa keys,
2321      since they are in the wrong format, too. they must be removed from
2322      .ssh/authorized_keys2 and .ssh/known_hosts2, etc.
2323      (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP
2324      .ssh/authorized_keys2) additionally, we now check that
2325      BN_num_bits(rsa->n) >= 768.
2326    - markus@cvs.openbsd.org 2001/01/16 20:54:27
2327      [sftp-server.c]
2328      remove some statics. simpler handles; idea from nisse@lysator.liu.se
2329    - deraadt@cvs.openbsd.org 2001/01/16 23:58:08
2330      [bufaux.c radix.c sshconnect.h sshconnect1.c]
2331      indent
2332  - (bal) Added bsd-strmode.[ch] since some non-OpenBSD platforms may
2333    be missing such feature.
2334
2335
2336 20010117
2337  - (djm) Only write random seed file at exit
2338  - (djm) Make PAM support optional, enable with --with-pam
2339  - (djm) Try to use libcrypt on Linux, but link it after OpenSSL (which
2340    provides a crypt() of its own)
2341  - (djm) Avoid a warning in bsd-bindresvport.c
2342  - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This
2343    can cause weird segfaults errors on Solaris
2344  - (djm) Avoid warning in PAM code by making read_passphrase arguments const
2345  - (djm) Add --with-pam to RPM spec files
2346
2347 20010115
2348  - (bal) sftp-server.c change to use chmod() if fchmod() does not exist.
2349  - (bal) utimes() support via utime() interface on machine that lack utimes().
2350
2351 20010114
2352  - (stevesk) initial work for OpenBSD "support supplementary group in
2353    {Allow,Deny}Groups" patch:
2354    - import getgrouplist.c from OpenBSD (bsd-getgrouplist.c)
2355    - add bsd-getgrouplist.h
2356    - new files groupaccess.[ch]
2357    - build but don't use yet (need to merge auth.c changes)
2358  - (stevesk) complete:
2359    - markus@cvs.openbsd.org  2001/01/13 11:56:48
2360      [auth.c sshd.8]
2361      support supplementary group in {Allow,Deny}Groups
2362      from stevesk@pobox.com
2363
2364 20010112
2365  - (bal) OpenBSD Sync
2366    - markus@cvs.openbsd.org 2001/01/10 22:56:22
2367      [bufaux.h bufaux.c sftp-server.c sftp.h getput.h]
2368      cleanup sftp-server implementation:
2369      add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT
2370      parse SSH2_FILEXFER_ATTR_EXTENDED
2371      send SSH2_FX_EOF if readdir returns no more entries
2372      reply to SSH2_FXP_EXTENDED message
2373      use #defines from the draft
2374      move #definations to sftp.h
2375      more info:
2376      http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt
2377    - markus@cvs.openbsd.org 2001/01/10 19:43:20
2378      [sshd.c]
2379      XXX - generate_empheral_server_key() is not safe against races,
2380      because it calls log()
2381    - markus@cvs.openbsd.org 2001/01/09 21:19:50
2382      [packet.c]
2383      allow TCP_NDELAY for ipv6; from netbsd via itojun@
2384
2385 20010110
2386  - (djm) SNI/Reliant Unix needs USE_PIPES and $DISPLAY hack. Report from
2387    Bladt Norbert <Norbert.Bladt@adi.ch>
2388
2389 20010109
2390  - (bal) Resync CVS ID of cli.c
2391  - (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
2392    code.
2393  - (bal) OpenBSD Sync
2394    - markus@cvs.openbsd.org 2001/01/08 22:29:05
2395      [auth2.c compat.c compat.h servconf.c servconf.h sshd.8
2396       sshd_config version.h]
2397      implement option 'Banner /etc/issue.net' for ssh2, move version to
2398      2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner
2399      is enabled).
2400    - markus@cvs.openbsd.org 2001/01/08 22:03:23
2401      [channels.c ssh-keyscan.c]
2402      O_NDELAY -> O_NONBLOCK; thanks stevesk@pobox.com
2403    - markus@cvs.openbsd.org 2001/01/08 21:55:41
2404      [sshconnect1.c]
2405      more cleanups and fixes from stevesk@pobox.com:
2406      1) try_agent_authentication() for loop will overwrite key just
2407         allocated with key_new(); don't alloc
2408      2) call ssh_close_authentication_connection() before exit
2409         try_agent_authentication()
2410      3) free mem on bad passphrase in try_rsa_authentication()
2411    - markus@cvs.openbsd.org 2001/01/08 21:48:17
2412      [kex.c]
2413      missing free; thanks stevesk@pobox.com
2414   - (bal) Detect if clock_t structure exists, if not define it.
2415   - (bal) Detect if O_NONBLOCK exists, if not define it.
2416   - (bal) removed news4-posix.h (now empty)
2417   - (bal) changed bsd-bindresvport.c and bsd-rresvport.c to use 'socklen_t'
2418     instead of 'int'
2419  - (stevesk) sshd_config: sync
2420  - (stevesk) defines.h: remove spurious ``;''
2421
2422 20010108
2423  - (bal) Fixed another typo in cli.c
2424  - (bal) OpenBSD Sync
2425    - markus@cvs.openbsd.org 2001/01/07 21:26:55
2426      [cli.c]
2427      typo
2428    - markus@cvs.openbsd.org 2001/01/07 21:26:55
2429      [cli.c]
2430      missing free, stevesk@pobox.com
2431    - markus@cvs.openbsd.org 2001/01/07 19:06:25
2432      [auth1.c]
2433      missing free, stevesk@pobox.com
2434    - markus@cvs.openbsd.org 2001/01/07 11:28:04
2435      [log-client.c log-server.c log.c readconf.c servconf.c ssh.1
2436       ssh.h sshd.8 sshd.c]
2437      rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
2438      syslog priority changes:
2439              fatal() LOG_ERR  -> LOG_CRIT
2440              log()   LOG_INFO -> LOG_NOTICE
2441  - Updated TODO
2442
2443 20010107
2444  - (bal) OpenBSD Sync
2445    - markus@cvs.openbsd.org 2001/01/06 11:23:27
2446      [ssh-rsa.c]
2447      remove unused
2448    - itojun@cvs.openbsd.org 2001/01/05 08:23:29
2449      [ssh-keyscan.1]
2450      missing .El
2451    - markus@cvs.openbsd.org 2001/01/04 22:41:03
2452      [session.c sshconnect.c]
2453      consistent use of _PATH_BSHELL; from stevesk@pobox.com
2454    - djm@cvs.openbsd.org 2001/01/04 22:35:32
2455      [ssh.1 sshd.8]
2456      Mention AES as available SSH2 Cipher; ok markus
2457    - markus@cvs.openbsd.org 2001/01/04 22:25:58
2458      [sshd.c]
2459      sync usage()/man with defaults; from stevesk@pobox.com
2460    - markus@cvs.openbsd.org 2001/01/04 22:21:26
2461      [sshconnect2.c]
2462      handle SSH2_MSG_USERAUTH_BANNER; fixes bug when connecting to a server
2463      that prints a banner (e.g. /etc/issue.net)
2464
2465 20010105
2466  - (bal) contrib/caldera/ provided by Tim Rice <tim@multitalents.net>
2467  - (bal) bsd-getcwd.c and bsd-setenv.c changed from bcopy() to memmove()
2468
2469 20010104
2470  - (djm) Fix memory leak on systems with BROKEN_GETADDRINFO. Based on
2471    work by Chris Vaughan <vaughan99@yahoo.com>
2472
2473 20010103
2474  - (bal) fixed up sshconnect.c so it was closer inline with the OpenBSD
2475    tree (mainly positioning)
2476  - (bal) OpenSSH CVS Update
2477    - markus@cvs.openbsd.org 2001/01/02 20:41:02
2478      [packet.c]
2479      log remote ip on disconnect; PR 1600 from jcs@rt.fm
2480    - markus@cvs.openbsd.org 2001/01/02 20:50:56
2481      [sshconnect.c]
2482      strict_host_key_checking for host_status != HOST_CHANGED &&
2483      ip_status == HOST_CHANGED
2484  - (bal) authfile.c: Synced CVS ID tag
2485  - (bal) UnixWare 2.0 fixes by Tim Rice <tim@multitalents.net>
2486  - (bal) Disable sftp-server if no 64bit int support exists.  Based on
2487    patch by Tim Rice <tim@multitalents.net>
2488  - (bal) Makefile.in changes to uninstall: target to remove sftp-server
2489    and sftp-server.8 manpage.
2490
2491 20010102
2492  - (bal) OpenBSD CVS Update
2493    - markus@cvs.openbsd.org 2001/01/01 14:52:49
2494      [scp.c]
2495      use shared fatal(); from stevesk@pobox.com
2496
2497 20001231
2498  - (bal) Reverted out of MAXHOSTNAMELEN.  This should be set per OS.
2499    for multiple reasons.
2500  - (bal) Reverted out of a partial NeXT patch.
2501
2502 20001230
2503  - (bal) OpenBSD CVS Update
2504    - markus@cvs.openbsd.org 2000/12/28 18:58:30
2505      [ssh-keygen.c]
2506      enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
2507    - markus@cvs.openbsd.org 2000/12/29 22:19:13
2508      [channels.c]
2509      missing xfree; from vaughan99@yahoo.com
2510  - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
2511  - (bal) if no MAXHOSTNAMELEN is defined.  Default to 64 character defination.
2512    Suggested by Christian Kurz <shorty@debian.org>
2513  - (bal) Add in '.c.o' section to Makefile.in to address make programs that
2514     don't honor CPPFLAGS by default.  Suggested by Lutz Jaenicke
2515     <Lutz.Jaenicke@aet.TU-Cottbus.DE>
2516
2517 20001229
2518  - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
2519    Kurz <shorty@debian.org>
2520  - (bal) OpenBSD CVS Update
2521    - markus@cvs.openbsd.org 2000/12/28 14:25:51
2522      [auth.h auth2.c]
2523      count authentication failures only
2524    - markus@cvs.openbsd.org 2000/12/28 14:25:03
2525      [sshconnect.c]
2526      fingerprint for MITM attacks, too.
2527    - markus@cvs.openbsd.org 2000/12/28 12:03:57
2528      [sshd.8 sshd.c]
2529      document -D
2530    - markus@cvs.openbsd.org 2000/12/27 14:19:21
2531      [serverloop.c]
2532      less chatty
2533    - markus@cvs.openbsd.org 2000/12/27 12:34
2534      [auth1.c sshconnect2.c sshd.c]
2535      typo
2536    - markus@cvs.openbsd.org 2000/12/27 12:30:19
2537      [readconf.c readconf.h ssh.1 sshconnect.c]
2538      new option: HostKeyAlias: allow the user to record the host key
2539      under a different name. This is useful for ssh tunneling over
2540      forwarded connections or if you run multiple sshd's on different
2541      ports on the same machine.
2542    - markus@cvs.openbsd.org 2000/12/27 11:51:53
2543      [ssh.1 ssh.c]
2544      multiple -t force pty allocation, document ORIGINAL_COMMAND
2545    - markus@cvs.openbsd.org 2000/12/27 11:41:31
2546      [sshd.8]
2547      update for ssh-2
2548  - (stevesk) compress.[ch] sync with openbsd; missed in prototype
2549    fix merge.
2550
2551 20001228
2552  - (bal) Patch to add libutil.h to loginrec.c only if the platform has
2553    libutil.h.  Suggested by Pekka Savola <pekka@netcore.fi>
2554  - (djm) Update to new x11-askpass in RPM spec
2555  - (bal) SCO patch to not include <sys/queue.h> since it's unrelated
2556    header.  Patch by Tim Rice <tim@multitalents.net>
2557  - Updated TODO w/ known HP/UX issue
2558  - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the
2559    bad reference to 'NeXT including it else were' on the #ifdef version.
2560
2561 20001227
2562  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
2563    Takumi Yamane <yamtak@b-session.com>
2564  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
2565    by Corinna Vinschen <vinschen@redhat.com>
2566  - (djm) Fix catman-do target for non-bash
2567  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by
2568    Takumi Yamane <yamtak@b-session.com>
2569  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
2570    by Corinna Vinschen <vinschen@redhat.com>
2571  - (djm) Fix catman-do target for non-bash
2572  - (bal) Fixed NeXT's lack of CPPFLAGS honoring.
2573  - (bal) ssh-keyscan.c: NeXT (and older BSDs) don't support getrlimit() w/
2574    'RLIMIT_NOFILE'
2575  - (djm) Remove *.Ylonen files. They are no longer in the OpenBSD tree,
2576    the info in COPYING.Ylonen has been moved to the start of each
2577    SSH1-derived file and README.Ylonen is well out of date.
2578
2579 20001223
2580  - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
2581    if a change to config.h has occurred.  Suggested by Gert Doering
2582    <gert@greenie.muc.de>
2583  - (bal) OpenBSD CVS Update:
2584    - markus@cvs.openbsd.org 2000/12/22 16:49:40
2585      [ssh-keygen.c]
2586      fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.com
2587
2588 20001222
2589  - Updated RCSID for pty.c
2590  - (bal) OpenBSD CVS Updates:
2591   - markus@cvs.openbsd.org 2000/12/21 15:10:16
2592     [auth-rh-rsa.c hostfile.c hostfile.h sshconnect.c]
2593     print keyfile:line for changed hostkeys, for deraadt@, ok deraadt@
2594   - markus@cvs.openbsd.org 2000/12/20 19:26:56
2595     [authfile.c]
2596     allow ssh -i userkey for root
2597   - markus@cvs.openbsd.org 2000/12/20 19:37:21
2598     [authfd.c authfd.h kex.c sshconnect2.c sshd.c uidswap.c uidswap.h]
2599     fix prototypes; from stevesk@pobox.com
2600   - markus@cvs.openbsd.org 2000/12/20 19:32:08
2601     [sshd.c]
2602     init pointer to NULL; report from Jan.Ivan@cern.ch
2603   - markus@cvs.openbsd.org 2000/12/19 23:17:54
2604     [auth-krb4.c auth-options.c auth-options.h auth-rhosts.c auth-rsa.c
2605      auth1.c auth2-skey.c auth2.c authfd.c authfd.h authfile.c bufaux.c
2606      bufaux.h buffer.c canohost.c channels.c clientloop.c compress.c
2607      crc32.c deattack.c getput.h hmac.c hmac.h hostfile.c kex.c kex.h
2608      key.c key.h log.c login.c match.c match.h mpaux.c mpaux.h packet.c
2609      packet.h radix.c readconf.c rsa.c scp.c servconf.c servconf.h
2610      serverloop.c session.c sftp-server.c ssh-agent.c ssh-dss.c ssh-dss.h
2611      ssh-keygen.c ssh-keyscan.c ssh-rsa.c ssh-rsa.h ssh.c ssh.h  uuencode.c
2612      uuencode.h sshconnect1.c sshconnect2.c sshd.c tildexpand.c]
2613     replace 'unsigned bla' with 'u_bla' everywhere. also replace 'char
2614     unsigned' with u_char.
2615
2616 20001221
2617  - (stevesk) OpenBSD CVS updates:
2618    - markus@cvs.openbsd.org 2000/12/19 15:43:45
2619      [authfile.c channels.c sftp-server.c ssh-agent.c]
2620      remove() -> unlink() for consistency
2621    - markus@cvs.openbsd.org 2000/12/19 15:48:09
2622      [ssh-keyscan.c]
2623      replace <ssl/x.h> with <openssl/x.h>
2624    - markus@cvs.openbsd.org 2000/12/17 02:33:40
2625      [uidswap.c]
2626      typo; from wsanchez@apple.com
2627
2628 20001220
2629  - (djm) Workaround PAM inconsistencies between Solaris derived PAM code
2630    and Linux-PAM. Based on report and fix from Andrew Morgan
2631    <morgan@transmeta.com>
2632
2633 20001218
2634  - (stevesk) rsa.c: entropy.h not needed.
2635  - (bal) split CFLAGS into CFLAGS and CPPFLAGS in configure.in and Makefile.
2636    Suggested by Wilfredo Sanchez <wsanchez@apple.com>
2637
2638 20001216
2639  - (stevesk) OpenBSD CVS updates:
2640    - markus@cvs.openbsd.org 2000/12/16 02:53:57
2641      [scp.c]
2642      allow + in usernames; request from Florian.Weimer@RUS.Uni-Stuttgart.DE
2643    - markus@cvs.openbsd.org 2000/12/16 02:39:57
2644      [scp.c]
2645      unused; from stevesk@pobox.com
2646
2647 20001215
2648  - (stevesk) Old OpenBSD patch wasn't completely applied:
2649    - markus@cvs.openbsd.org 2000/01/24 22:11:20
2650      [scp.c]
2651      allow '.' in usernames; from jedgar@fxp.org
2652  - (stevesk) OpenBSD CVS updates:
2653    - markus@cvs.openbsd.org 2000/12/13 16:26:53
2654      [ssh-keyscan.c]
2655      fatal already adds \n; from stevesk@pobox.com
2656    - markus@cvs.openbsd.org 2000/12/13 16:25:44
2657      [ssh-agent.c]
2658      remove redundant spaces; from stevesk@pobox.com
2659    - ho@cvs.openbsd.org 2000/12/12 15:50:21
2660      [pty.c]
2661      When failing to set tty owner and mode on a read-only filesystem, don't
2662      abort if the tty already has correct owner and reasonably sane modes.
2663      Example; permit 'root' to login to a firewall with read-only root fs.
2664      (markus@ ok)
2665    - deraadt@cvs.openbsd.org 2000/12/13 06:36:05
2666      [pty.c]
2667      KNF
2668    - markus@cvs.openbsd.org 2000/12/12 14:45:21
2669      [sshd.c]
2670      source port < 1024 is no longer required for rhosts-rsa since it
2671      adds no additional security.
2672    - markus@cvs.openbsd.org 2000/12/12 16:11:49
2673      [ssh.1 ssh.c]
2674      rhosts-rsa is no longer automagically disabled if ssh is not privileged.
2675      UsePrivilegedPort=no disables rhosts-rsa _only_ for old servers.
2676      these changes should not change the visible default behaviour of the ssh client.
2677    - deraadt@cvs.openbsd.org 2000/12/11 10:27:33
2678      [scp.c]
2679      when copying 0-sized files, do not re-print ETA time at completion
2680    - provos@cvs.openbsd.org 2000/12/15 10:30:15
2681      [kex.c kex.h sshconnect2.c sshd.c]
2682      compute diffie-hellman in parallel between server and client. okay markus@
2683
2684 20001213
2685  - (djm) Make sure we reset the SIGPIPE disposition after we fork. Report
2686    from Andreas M. Kirchwitz <amk@krell.zikzak.de>
2687  - (stevesk) OpenBSD CVS update:
2688    - markus@cvs.openbsd.org 2000/12/12 15:30:02
2689      [ssh-keyscan.c ssh.c sshd.c]
2690      consistently use __progname; from stevesk@pobox.com
2691
2692 20001211
2693  - (bal) Applied patch to include ssh-keyscan into Redhat's package, and
2694    patch to install ssh-keyscan manpage.  Patch by Pekka Savola
2695    <pekka@netcore.fi>
2696  - (bal) OpenbSD CVS update
2697    - markus@cvs.openbsd.org 2000/12/10 17:01:53
2698      [sshconnect1.c]
2699      always request new challenge for skey/tis-auth, fixes interop with
2700      other implementations; report from roth@feep.net
2701
2702 20001210
2703  - (bal) OpenBSD CVS updates
2704    - markus@cvs.openbsd.org 2000/12/09 13:41:51
2705      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
2706      undo rijndael changes
2707    - markus@cvs.openbsd.org 2000/12/09 13:48:31
2708      [rijndael.c]
2709      fix byte order bug w/o introducing new implementation
2710    - markus@cvs.openbsd.org 2000/12/09 14:08:27
2711      [sftp-server.c]
2712      "" -> "." for realpath; from vinschen@redhat.com
2713    - markus@cvs.openbsd.org 2000/12/09 14:06:54
2714      [ssh-agent.c]
2715      extern int optind; from stevesk@sweden.hp.com
2716    - provos@cvs.openbsd.org 2000/12/09 23:51:11
2717      [compat.c]
2718      remove unnecessary '\n'
2719
2720 20001209
2721  - (bal) OpenBSD CVS updates:
2722    - djm@cvs.openbsd.org 2000/12/07 4:24:59
2723      [ssh.1]
2724      Typo fix from Wilfredo Sanchez <wsanchez@apple.com>; ok theo
2725
2726 20001207
2727  - (bal) OpenBSD CVS updates:
2728    - markus@cvs.openbsd.org 2000/12/06 22:58:14
2729      [compat.c compat.h packet.c]
2730      disable debug messages for ssh.com/f-secure 2.0.1x, 2.1.0
2731    - markus@cvs.openbsd.org 2000/12/06 23:10:39
2732      [rijndael.c]
2733      unexpand(1)
2734    - markus@cvs.openbsd.org 2000/12/06 23:05:43
2735      [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
2736      new rijndael implementation. fixes endian bugs
2737
2738 20001206
2739  - (bal) OpenBSD CVS updates:
2740    - markus@cvs.openbsd.org 2000/12/05 20:34:09
2741      [channels.c channels.h clientloop.c serverloop.c]
2742      async connects for -R/-L; ok deraadt@
2743    - todd@cvs.openssh.org 2000/12/05 16:47:28
2744      [sshd.c]
2745      tweak comment to reflect real location of pid file; ok provos@
2746  - (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
2747    have it (used in ssh-keyscan).
2748  - (stevesk) OpenBSD CVS update:
2749    - markus@cvs.openbsd.org 2000/12/06 19:57:48
2750      [ssh-keyscan.c]
2751      err(3) -> internal error(), from stevesk@sweden.hp.com
2752
2753 20001205
2754  - (bal) OpenBSD CVS updates:
2755    - markus@cvs.openbsd.org 2000/12/04 19:24:02
2756      [ssh-keyscan.c ssh-keyscan.1]
2757      David Maziere's ssh-keyscan, ok niels@
2758  - (bal) Updated Makefile.in to include ssh-keyscan that was just added
2759    to the recent OpenBSD source tree.
2760  - (stevesk) fix typos in contrib/hpux/README
2761
2762 20001204
2763  - (bal) More C functions defined in NeXT that are unaccessable without
2764    defining -POSIX.
2765  - (bal) OpenBSD CVS updates:
2766    - markus@cvs.openbsd.org 2000/12/03 11:29:04
2767      [compat.c]
2768      remove fallback to SSH_BUG_HMAC now that the drafts are updated
2769    - markus@cvs.openbsd.org 2000/12/03 11:27:55
2770      [compat.c]
2771      correctly match "2.1.0.pl2 SSH" etc; from
2772      pekkas@netcore.fi/bugzilla.redhat
2773    - markus@cvs.openbsd.org 2000/12/03 11:15:03
2774      [auth2.c compat.c compat.h sshconnect2.c]
2775      support f-secure/ssh.com 2.0.12; ok niels@
2776
2777 20001203
2778  - (bal) OpenBSD CVS updates:
2779   - markus@cvs.openbsd.org 2000/11/30 22:54:31
2780     [channels.c]
2781     debug->warn if tried to do -R style fwd w/o client requesting this;
2782     ok neils@
2783   - markus@cvs.openbsd.org 2000/11/29 20:39:17
2784     [cipher.c]
2785     des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IV
2786   - markus@cvs.openbsd.org 2000/11/30 18:33:05
2787     [ssh-agent.c]
2788     agents must not dump core, ok niels@
2789   - markus@cvs.openbsd.org 2000/11/30 07:04:02
2790     [ssh.1]
2791     T is for both protocols
2792   - markus@cvs.openbsd.org 2000/12/01 00:00:51
2793     [ssh.1]
2794     typo; from green@FreeBSD.org
2795   - markus@cvs.openbsd.org 2000/11/30 07:02:35
2796     [ssh.c]
2797     check -T before isatty()
2798   - provos@cvs.openbsd.org 2000/11/29 13:51:27
2799     [sshconnect.c]
2800     show IP address and hostname when new key is encountered. okay markus@
2801   - markus@cvs.openbsd.org 2000/11/30 22:53:35
2802     [sshconnect.c]
2803     disable agent/x11/port fwding if hostkey has changed; ok niels@
2804   - marksu@cvs.openbsd.org 2000/11/29 21:11:59
2805     [sshd.c]
2806     sshd -D, startup w/o deamon(), for monitoring scripts or inittab;
2807     from handler@sub-rosa.com and eric@urbanrange.com; ok niels@
2808  - (djm) Added patch from Nalin Dahyabhai <nalin@redhat.com> to enable
2809    PAM authentication using KbdInteractive.
2810  - (djm) Added another TODO
2811
2812 20001202
2813  - (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
2814  - (bal) Irix need some sort of mansubdir, patch by Michael Stone
2815    <mstone@cs.loyola.edu>
2816
2817 20001129
2818  - (djm) Back out all the serverloop.c hacks. sshd will now hang again
2819    if there are background children with open fds.
2820  - (djm) bsd-rresvport.c bzero -> memset
2821  - (djm) Don't fail in defines.h on absence of 64 bit types (we will
2822    still fail during compilation of sftp-server).
2823  - (djm) Fail if ar is not found during configure
2824  - (djm) OpenBSD CVS updates:
2825    - provos@cvs.openbsd.org  2000/11/22 08:38:31
2826      [sshd.8]
2827      talk about /etc/primes, okay markus@
2828    - markus@cvs.openbsd.org  2000/11/23 14:03:48
2829      [ssh.c sshconnect1.c sshconnect2.c]
2830      complain about invalid ciphers for ssh1/ssh2, fall back to reasonable
2831      defaults
2832    - markus@cvs.openbsd.org  2000/11/25 09:42:53
2833      [sshconnect1.c]
2834      reorder check for illegal ciphers, bugreport from espie@
2835    - markus@cvs.openbsd.org  2000/11/25 10:19:34
2836      [ssh-keygen.c ssh.h]
2837      print keytype when generating a key.
2838      reasonable defaults for RSA1/RSA/DSA keys.
2839  - (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
2840    more manpage paths in fixpaths calls
2841  - (djm) Also add xauth path at Pekka's suggestion.
2842  - (djm) Add Redhat RPM patch for AUTHPRIV SyslogFacility
2843
2844 20001125
2845  - (djm) Give up privs when reading seed file
2846
2847 20001123
2848  - (bal) Merge OpenBSD changes:
2849    - markus@cvs.openbsd.org  2000/11/15 22:31:36
2850      [auth-options.c]
2851      case insensitive key options; from stevesk@sweeden.hp.com
2852    - markus@cvs.openbsd.org  2000/11/16 17:55:43
2853      [dh.c]
2854      do not use perror() in sshd, after child is forked()
2855    - markus@cvs.openbsd.org  2000/11/14 23:42:40
2856      [auth-rsa.c]
2857      parse option only if key matches; fix some confusing seen by the client
2858    - markus@cvs.openbsd.org  2000/11/14 23:44:19
2859      [session.c]
2860      check no_agent_forward_flag for ssh-2, too
2861    - markus@cvs.openbsd.org  2000/11/15
2862      [ssh-agent.1]
2863      reorder SYNOPSIS; typo, use .It
2864    - markus@cvs.openbsd.org  2000/11/14 23:48:55
2865      [ssh-agent.c]
2866      do not reorder keys if a key is removed
2867    - markus@cvs.openbsd.org  2000/11/15 19:58:08
2868      [ssh.c]
2869      just ignore non existing user keys
2870    - millert@cvs.openbsd.org  200/11/15 20:24:43
2871      [ssh-keygen.c]
2872      Add missing \n at end of error message.
2873
2874 20001122
2875  - (bal) Minor patch to ensure platforms lacking IRIX job limit supports
2876    are compilable.
2877  - (bal) Updated TODO as of 11/18/2000 with known things to resolve.
2878
2879 20001117
2880  - (bal) Changed from 'primes' to 'primes.out' for consistancy sake.  It
2881    has no affect the output.  Patch by Corinna Vinschen <vinschen@redhat.com>
2882  - (stevesk) Reworked progname support.
2883  - (bal) Misplaced #include "includes.h" in bsd-setproctitle.c.  Patch by
2884    Shinichi Maruyama <marya@st.jip.co.jp>
2885
2886 20001116
2887  - (bal) Added in MAXSYMLINK test in bsd-realpath.c.  Required for some SCO
2888    releases.
2889  - (bal) Make builds work outside of source tree.  Patch by Mark D. Roth
2890    <roth@feep.net>
2891
2892 20001113
2893  - (djm) Add pointer to http://www.imasy.or.jp/~gotoh/connect.c to
2894    contrib/README
2895  - (djm) Merge OpenBSD changes:
2896    - markus@cvs.openbsd.org  2000/11/06 16:04:56
2897      [channels.c channels.h clientloop.c nchan.c serverloop.c]
2898      [session.c ssh.c]
2899      agent forwarding and -R for ssh2, based on work from
2900      jhuuskon@messi.uku.fi
2901    - markus@cvs.openbsd.org  2000/11/06 16:13:27
2902      [ssh.c sshconnect.c sshd.c]
2903      do not disabled rhosts(rsa) if server port > 1024; from
2904      pekkas@netcore.fi
2905    - markus@cvs.openbsd.org  2000/11/06 16:16:35
2906      [sshconnect.c]
2907      downgrade client to 1.3 if server is 1.4; help from mdb@juniper.net
2908    - markus@cvs.openbsd.org  2000/11/09 18:04:40
2909      [auth1.c]
2910      typo; from mouring@pconline.com
2911    - markus@cvs.openbsd.org  2000/11/12 12:03:28
2912      [ssh-agent.c]
2913      off-by-one when removing a key from the agent
2914    - markus@cvs.openbsd.org  2000/11/12 12:50:39
2915      [auth-rh-rsa.c auth2.c authfd.c authfd.h]
2916      [authfile.c hostfile.c kex.c kex.h key.c key.h myproposal.h]
2917      [readconf.c readconf.h rsa.c rsa.h servconf.c servconf.h ssh-add.c]
2918      [ssh-agent.c ssh-keygen.1 ssh-keygen.c ssh.1 ssh.c ssh_config]
2919      [sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config ssh-dss.c]
2920      [ssh-dss.h ssh-rsa.c ssh-rsa.h dsa.c dsa.h]
2921      add support for RSA to SSH2.  please test.
2922      there are now 3 types of keys: RSA1 is used by ssh-1 only,
2923      RSA and DSA are used by SSH2.
2924      you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
2925      keys for SSH2 and use the RSA keys for hostkeys or for user keys.
2926      SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.
2927  - (djm) Fix up Makefile and Redhat init script to create RSA host keys
2928  - (djm) Change to interim version
2929  - (djm) Fix RPM spec file stupidity
2930  - (djm) fixpaths to DSA and RSA keys too
2931
2932 20001112
2933  - (bal) SCO Patch to add needed libraries for configure.in.  Patch by
2934    Phillips Porch <root@theporch.com>
2935  - (bal) IRIX patch to adding Job Limits.  Patch by Denis Parker
2936    <dcp@sgi.com>
2937  - (stevesk) pty.c: HP-UX 10 and 11 don't define TIOCSCTTY.  Add error() to
2938    failed ioctl(TIOCSCTTY) call.
2939
2940 20001111
2941  - (djm) Added /etc/primes for kex DH group neg, fixup Makefile.in and
2942    packaging files
2943  - (djm) Fix new Makefile.in warnings
2944  - (djm) Fix vsprintf("%h") in bsd-snprintf.c, short int va_args are
2945    promoted to type int. Report and fix from Dan Astoorian
2946    <djast@cs.toronto.edu>
2947  - (djm) Hardwire sysconfdir in RPM spec files as some RPM versions get
2948    it wrong. Report from Bennett Todd <bet@rahul.net>
2949
2950 20001110
2951  - (bal) Fixed dropped answer from skey_keyinfo() in auth1.c
2952  - (bal) Changed from --with-skey to --with-skey=PATH in configure.in
2953  - (bal) Added in check to verify S/Key library is being detected in
2954    configure.in
2955  - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif.
2956    Patch by Mark Miller <markm@swoon.net>
2957  - (bal) Added 'util.h' header to loginrec.c only if HAVE_UTIL_H is defined
2958    to remove warnings under MacOS X.  Patch by Mark Miller <markm@swoon.net>
2959  - (bal) Fixed LDFLAG mispelling in configure.in for --with-afs
2960
2961 20001107
2962  - (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
2963    Mark Miller <markm@swoon.net>
2964  - (bal) sshd.init files corrected to assign $? to RETVAL.  Patch by
2965    Jarno Huuskonen <jhuuskon@messi.uku.fi>
2966  - (bal) fixpaths fixed to stop it from quitely failing. Patch by
2967    Mark D. Roth <roth@feep.net>
2968
2969 20001106
2970  - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
2971  - (djm) Manually fix up missed diff hunks (mainly RCS idents)
2972  - (djm) Remove UPGRADING document in favour of a link to the better
2973    maintained FAQ on www.openssh.com
2974  - (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
2975    <pekkas@netcore.fi>
2976  - (djm) Don't need X11-askpass in RPM spec file if building without it
2977    from Pekka Savola <pekkas@netcore.fi>
2978  - (djm) Release 2.3.0p1
2979  - (bal) typo in configure.in in regards to --with-ldflags from Marko
2980    Asplund <aspa@kronodoc.fi>
2981  - (bal) fixed next-posix.h.  Forgot prototype of getppid().
2982
2983 20001105
2984  - (bal) Sync with OpenBSD:
2985    - markus@cvs.openbsd.org 2000/10/31 9:31:58
2986      [compat.c]
2987      handle all old openssh versions
2988    - markus@cvs.openbsd.org 2000/10/31 13:1853
2989      [deattack.c]
2990      so that large packets do not wrap "n"; from netbsd
2991  - (bal) rijndel.c - fix up RCSID to match OpenBSD tree
2992  - (bal) auth2-skey.c - Checked in.  Missing from portable tree.
2993  - (bal) Reworked NEWS-OS and NeXT ports to extract waitpid() and
2994    setsid() into more common files
2995  - (stevesk) pty.c: use __hpux to identify HP-UX.
2996  - (bal) Missed auth-skey.o in Makefile.in and minor correction to
2997    bsd-waitpid.c
2998
2999 20001029
3000  - (stevesk) Fix typo in auth.c: USE_PAM not PAM
3001  - (stevesk) Create contrib/cygwin/ directory; patch from
3002    Corinna Vinschen <vinschen@redhat.com>
3003  - (bal) Resolved more $xno and $xyes issues in configure.in
3004  - (bal) next-posix.h - spelling and forgot a prototype
3005
3006 20001028
3007  - (djm) fix select hack in serverloop.c from Philippe WILLEM
3008    <Philippe.WILLEM@urssaf.fr>
3009  - (djm) Fix mangled AIXAUTHENTICATE code
3010  - (djm) authctxt->pw may be NULL. Fix from Markus Friedl
3011    <markus.friedl@informatik.uni-erlangen.de>
3012  - (djm) Sync with OpenBSD:
3013    - markus@cvs.openbsd.org  2000/10/16 15:46:32
3014      [ssh.1]
3015      fixes from pekkas@netcore.fi
3016    - markus@cvs.openbsd.org  2000/10/17 14:28:11
3017      [atomicio.c]
3018      return number of characters processed; ok deraadt@
3019    - markus@cvs.openbsd.org  2000/10/18 12:04:02
3020      [atomicio.c]
3021      undo
3022    - markus@cvs.openbsd.org  2000/10/18 12:23:02
3023      [scp.c]
3024      replace atomicio(read,...) with read(); ok deraadt@
3025    - markus@cvs.openbsd.org  2000/10/18 12:42:00
3026      [session.c]
3027      restore old record login behaviour
3028    - deraadt@cvs.openbsd.org 2000/10/19 10:41:13
3029      [auth-skey.c]
3030      fmt string problem in unused code
3031    - provos@cvs.openbsd.org  2000/10/19 10:45:16
3032      [sshconnect2.c]
3033      don't reference freed memory. okay deraadt@
3034    - markus@cvs.openbsd.org  2000/10/21 11:04:23
3035      [canohost.c]
3036      typo, eramore@era-t.ericsson.se; ok niels@
3037    - markus@cvs.openbsd.org  2000/10/23 13:31:55
3038      [cipher.c]
3039      non-alignment dependent swap_bytes(); from
3040      simonb@wasabisystems.com/netbsd
3041    - markus@cvs.openbsd.org  2000/10/26 12:38:28
3042      [compat.c]
3043      add older vandyke products
3044    - markus@cvs.openbsd.org  2000/10/27 01:32:19
3045      [channels.c channels.h clientloop.c serverloop.c session.c]
3046      [ssh.c util.c]
3047      enable non-blocking IO on channels, and tty's (except for the
3048      client ttys).
3049
3050 20001027
3051  - (djm) Increase REKEY_BYTES to 2^24 for arc4random
3052
3053 20001025
3054  - (djm) Added WARNING.RNG file and modified configure to ask users of the
3055    builtin entropy code to read it.
3056  - (djm) Prefer builtin regex to PCRE.
3057  - (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
3058  - (bal) Apply fixes to configure.in pointed out by Pavel Roskin
3059    <proski@gnu.org>
3060
3061 20001020
3062  - (djm) Don't define _REENTRANT for SNI/Reliant Unix
3063  - (bal) Imported NEWS-OS waitpid() macros into NeXT.  Since implementation
3064    is more correct then current version.
3065
3066 20001018
3067  - (stevesk) Add initial support for setproctitle().  Current
3068    support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
3069  - (stevesk) Add egd startup scripts to contrib/hpux/
3070
3071 20001017
3072  - (djm) Add -lregex to cywin libs from Corinna Vinschen
3073    <vinschen@cygnus.com>
3074  - (djm) Don't rely on atomicio's retval to determine length of askpass
3075    supplied passphrase. Problem report from Lutz Jaenicke
3076    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3077  - (bal) Changed from GNU rx to PCRE on suggestion from djm.
3078  - (bal) Integrated Sony NEWS-OS patches from NAKAJI Hirouyuki
3079    <nakaji@tutrp.tut.ac.jp>
3080
3081 20001016
3082  - (djm) Sync with OpenBSD:
3083    - markus@cvs.openbsd.org  2000/10/14 04:01:15
3084      [cipher.c]
3085      debug3
3086    - markus@cvs.openbsd.org  2000/10/14 04:07:23
3087      [scp.c]
3088      remove spaces from arguments; from djm@mindrot.org
3089    - markus@cvs.openbsd.org  2000/10/14 06:09:46
3090      [ssh.1]
3091      Cipher is for SSH-1 only
3092    - markus@cvs.openbsd.org  2000/10/14 06:12:09
3093      [servconf.c servconf.h serverloop.c session.c sshd.8]
3094      AllowTcpForwarding; from naddy@
3095    - markus@cvs.openbsd.org  2000/10/14 06:16:56
3096      [auth2.c compat.c compat.h sshconnect2.c version.h]
3097      OpenSSH_2.3; note that is is not complete, but the version number
3098      needs to be changed for interoperability reasons
3099    - markus@cvs.openbsd.org  2000/10/14 06:19:45
3100      [auth-rsa.c]
3101      do not send RSA challenge if key is not allowed by key-options; from
3102      eivind@ThinkSec.com
3103    - markus@cvs.openbsd.org  2000/10/15 08:14:01
3104      [rijndael.c session.c]
3105      typos; from stevesk@sweden.hp.com
3106    - markus@cvs.openbsd.org  2000/10/15 08:18:31
3107      [rijndael.c]
3108      typo
3109  - (djm) Copy manpages back over from OpenBSD - too tedious to wade
3110    through diffs
3111  - (djm) Added condrestart to Redhat init script. Patch from Pekka Savola
3112    <pekkas@netcore.fi>
3113  - (djm) Update version in Redhat spec file
3114  - (djm) Merge some of Nalin Dahyabhai <nalin@redhat.com> changes from the
3115    Redhat 7.0 spec file
3116  - (djm) Make inability to read/write PRNG seedfile non-fatal
3117
3118
3119 20001015
3120  - (djm) Fix ssh2 hang on background processes at logout.
3121
3122 20001014
3123  - (bal) Add support for realpath and getcwd for platforms with broken
3124    or missing realpath implementations for sftp-server.
3125  - (bal) Corrected mistake in INSTALL in regards to GNU rx library
3126  - (bal) Add support for GNU rx library for those lacking regexp support
3127  - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
3128  - (djm) Revert SSH2 serverloop hack, will find a better way.
3129  - (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
3130    from Martin Johansson <fatbob@acc.umu.se>
3131  - (djm) Big OpenBSD sync:
3132    - markus@cvs.openbsd.org  2000/09/30 10:27:44
3133      [log.c]
3134      allow loglevel debug
3135    - markus@cvs.openbsd.org  2000/10/03 11:59:57
3136      [packet.c]
3137      hmac->mac
3138    - markus@cvs.openbsd.org  2000/10/03 12:03:03
3139      [auth-krb4.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth1.c]
3140      move fake-auth from auth1.c to individual auth methods, disables s/key in
3141      debug-msg
3142    - markus@cvs.openbsd.org  2000/10/03 12:16:48
3143      ssh.c
3144      do not resolve canonname, i have no idea why this was added oin ossh
3145    - markus@cvs.openbsd.org  2000/10/09 15:30:44
3146      ssh-keygen.1 ssh-keygen.c
3147      -X now reads private ssh.com DSA keys, too.
3148    - markus@cvs.openbsd.org  2000/10/09 15:32:34
3149      auth-options.c
3150      clear options on every call.
3151    - markus@cvs.openbsd.org  2000/10/09 15:51:00
3152      authfd.c authfd.h
3153      interop with ssh-agent2, from <res@shore.net>
3154    - markus@cvs.openbsd.org  2000/10/10 14:20:45
3155      compat.c
3156      use rexexp for version string matching
3157    - provos@cvs.openbsd.org  2000/10/10 22:02:18
3158      [kex.c kex.h myproposal.h ssh.h ssh2.h sshconnect2.c sshd.c dh.c dh.h]
3159      First rough implementation of the diffie-hellman group exchange.  The
3160      client can ask the server for bigger groups to perform the diffie-hellman
3161      in, thus increasing the attack complexity when using ciphers with longer
3162      keys.  University of Windsor provided network, T the company.
3163    - markus@cvs.openbsd.org  2000/10/11 13:59:52
3164      [auth-rsa.c auth2.c]
3165      clear auth options unless auth sucessfull
3166    - markus@cvs.openbsd.org  2000/10/11 14:00:27
3167      [auth-options.h]
3168      clear auth options unless auth sucessfull
3169    - markus@cvs.openbsd.org  2000/10/11 14:03:27
3170      [scp.1 scp.c]
3171      support 'scp -o' with help from mouring@pconline.com
3172    - markus@cvs.openbsd.org  2000/10/11 14:11:35
3173      [dh.c]
3174      Wall
3175    - markus@cvs.openbsd.org  2000/10/11 14:14:40
3176      [auth.h auth2.c readconf.c readconf.h readpass.c servconf.c servconf.h]
3177      [ssh.h sshconnect2.c sshd_config auth2-skey.c cli.c cli.h]
3178      add support for s/key (kbd-interactive) to ssh2, based on work by
3179      mkiernan@avantgo.com and me
3180    - markus@cvs.openbsd.org  2000/10/11 14:27:24
3181      [auth.c auth1.c auth2.c authfile.c cipher.c cipher.h kex.c kex.h]
3182      [myproposal.h packet.c readconf.c session.c ssh.c ssh.h sshconnect1.c]
3183      [sshconnect2.c sshd.c]
3184      new cipher framework
3185    - markus@cvs.openbsd.org  2000/10/11 14:45:21
3186      [cipher.c]
3187      remove DES
3188    - markus@cvs.openbsd.org  2000/10/12 03:59:20
3189      [cipher.c cipher.h sshconnect1.c sshconnect2.c sshd.c]
3190      enable DES in SSH-1 clients only
3191    - markus@cvs.openbsd.org  2000/10/12 08:21:13
3192      [kex.h packet.c]
3193      remove unused
3194    - markus@cvs.openbsd.org  2000/10/13 12:34:46
3195      [sshd.c]
3196      Kludge for F-Secure Macintosh < 1.0.2; appro@fy.chalmers.se
3197    - markus@cvs.openbsd.org  2000/10/13 12:59:15
3198      [cipher.c cipher.h myproposal.h  rijndael.c rijndael.h]
3199      rijndael/aes support
3200    - markus@cvs.openbsd.org  2000/10/13 13:10:54
3201      [sshd.8]
3202      more info about -V
3203    - markus@cvs.openbsd.org  2000/10/13 13:12:02
3204      [myproposal.h]
3205      prefer no compression
3206  - (djm) Fix scp user@host handling
3207  - (djm) Don't clobber ssh_prng_cmds on install
3208  - (stevesk) Include config.h in rijndael.c so we define intXX_t and
3209    u_intXX_t types on all platforms.
3210  - (stevesk) rijndael.c: cleanup missing declaration warnings.
3211  - (stevesk) ~/.hushlogin shouldn't cause required password change to
3212    be bypassed.
3213  - (stevesk) Display correct path to ssh-askpass in configure output.
3214    Report from Lutz Jaenicke.
3215
3216 20001007
3217  - (stevesk) Print PAM return value in PAM log messages to aid
3218    with debugging.
3219  - (stevesk) Fix detection of pw_class struct member in configure;
3220    patch from KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp>
3221
3222 20001002
3223  - (djm) Fix USER_PATH, report from Kevin Steves <stevesk@sweden.hp.com>
3224  - (djm) Add host system and CC to end-of-configure report. Suggested by
3225    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3226
3227 20000931
3228  - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com>
3229
3230 20000930
3231  - (djm) Irix ssh_prng_cmds path fix from Pekka Savola <pekkas@netcore.fi>
3232  - (djm) Support in bsd-snprintf.c for long long conversions from
3233    Ben Lindstrom <mouring@pconline.com>
3234  - (djm) Cleanup NeXT support from Ben Lindstrom <mouring@pconline.com>
3235  - (djm) Ignore SIGPIPEs from serverloop to child. Fixes crashes with
3236    very short lived X connections. Bug report from Tobias Oetiker
3237    <oetiker@ee.ethz.ch>. Fix from Markus Friedl <markus@cvs.openbsd.org>
3238  - (djm) Add recent InitScripts as a RPM dependancy for openssh-server
3239    patch from Pekka Savola <pekkas@netcore.fi>
3240  - (djm) Forgot to cvs add LICENSE file
3241  - (djm) Add LICENSE to RPM spec files
3242  - (djm) CVS OpenBSD sync:
3243    - markus@cvs.openbsd.org  2000/09/26 13:59:59
3244      [clientloop.c]
3245      use debug2
3246    - markus@cvs.openbsd.org  2000/09/27 15:41:34
3247      [auth2.c sshconnect2.c]
3248      use key_type()
3249    - markus@cvs.openbsd.org  2000/09/28 12:03:18
3250      [channels.c]
3251      debug -> debug2 cleanup
3252  - (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
3253    strip "/dev/"). Fix loginrec.c based on patch from Alain St-Denis
3254    <Alain.St-Denis@ec.gc.ca>
3255  - (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
3256    Problem was caused by interrupted read in ssh-add. Report from Donald
3257    J. Barry <don@astro.cornell.edu>
3258
3259 20000929
3260  - (djm) Fix SSH2 not terminating until all background tasks done problem.
3261  - (djm) Another off-by-one fix from Pavel Kankovsky
3262    <peak@argo.troja.mff.cuni.cz>
3263  - (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
3264    tidy necessary differences. Use Markus' new debugN() in entropy.c
3265  - (djm) Merged big SCO portability patch from Tim Rice
3266    <tim@multitalents.net>
3267
3268 20000926
3269  - (djm) Update X11-askpass to 1.0.2 in RPM spec file
3270  - (djm) Define _REENTRANT to pickup strtok_r() on HP/UX
3271  - (djm) Security: fix off-by-one buffer overrun in fake-getnameinfo.c.
3272    Report and fix from Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
3273
3274 20000924
3275  - (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
3276  - (djm) A bit more cleanup - created cygwin_util.h
3277  - (djm) Include strtok_r() from OpenBSD libc. Fixes report from Mark Miller
3278    <markm@swoon.net>
3279
3280 20000923
3281  - (djm) Fix address logging in utmp from Kevin Steves
3282    <stevesk@sweden.hp.com>
3283  - (djm) Redhat spec and manpage fixes from Pekka Savola <pekkas@netcore.fi>
3284  - (djm) Seperate tests for int64_t and u_int64_t types
3285  - (djm) Tweak password expiry checking at suggestion of Kevin Steves
3286    <stevesk@sweden.hp.com>
3287  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
3288  - (djm) Use printf %lld instead of %qd in sftp-server.c. Fix from
3289    Michael Stone <mstone@cs.loyola.edu>
3290  - (djm) OpenBSD CVS sync:
3291    - markus@cvs.openbsd.org  2000/09/17 09:38:59
3292      [sshconnect2.c sshd.c]
3293      fix DEBUG_KEXDH
3294    - markus@cvs.openbsd.org  2000/09/17 09:52:51
3295      [sshconnect.c]
3296      yes no; ok niels@
3297    - markus@cvs.openbsd.org  2000/09/21 04:55:11
3298      [sshd.8]
3299      typo
3300    - markus@cvs.openbsd.org  2000/09/21 05:03:54
3301      [serverloop.c]
3302      typo
3303    - markus@cvs.openbsd.org  2000/09/21 05:11:42
3304      scp.c
3305      utime() to utimes(); mouring@pconline.com
3306    - markus@cvs.openbsd.org  2000/09/21 05:25:08
3307      sshconnect2.c
3308      change login logic in ssh2, allows plugin of other auth methods
3309    - markus@cvs.openbsd.org  2000/09/21 05:25:35
3310      [auth2.c channels.c channels.h clientloop.c dispatch.c dispatch.h]
3311      [serverloop.c]
3312      add context to dispatch_run
3313    - markus@cvs.openbsd.org  2000/09/21 05:07:52
3314      authfd.c authfd.h ssh-agent.c
3315      bug compat for old ssh.com software
3316
3317 20000920
3318  - (djm) Fix bad path substitution. Report from Andrew Miner
3319    <asminer@cs.iastate.edu>
3320
3321 20000916
3322  - (djm) Fix SSL search order from Lutz Jaenicke
3323    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3324  - (djm) New SuSE spec from Corinna Vinschen <corinna@vinschen.de>
3325  - (djm) Update CygWin support from Corinna Vinschen <vinschen@cygnus.com>
3326  - (djm) Use a real struct sockaddr inside the fake struct sockaddr_storage.
3327    Patch from Larry Jones <larry.jones@sdrc.com>
3328  - (djm) Add Steve VanDevender's <stevev@darkwing.uoregon.edu> PAM
3329    password change patch.
3330  - (djm) Bring licenses on my stuff in line with OpenBSD's
3331  - (djm) Cleanup auth-passwd.c and unify HP/UX authentication. Patch from
3332    Kevin Steves <stevesk@sweden.hp.com>
3333  - (djm) Shadow expiry check fix from Pavel Troller <patrol@omni.sinus.cz>
3334  - (djm) Re-enable int64_t types - we need them for sftp
3335  - (djm) Use libexecdir from configure , rather than libexecdir/ssh
3336  - (djm) Update Redhat SPEC file accordingly
3337  - (djm) Add Kevin Steves <stevesk@sweden.hp.com> HP/UX contrib files
3338  - (djm) Add Charles Levert <charles@comm.polymtl.ca> getpgrp patch
3339  - (djm) Fix password auth on HP/UX 10.20. Patch from Dirk De Wachter
3340    <Dirk.DeWachter@rug.ac.be>
3341  - (djm) Fixprogs and entropy list fixes from Larry Jones
3342    <larry.jones@sdrc.com>
3343  - (djm) Fix for SuSE spec file from Takashi YOSHIDA
3344    <tyoshida@gemini.rc.kyushu-u.ac.jp>
3345  - (djm) Merge OpenBSD changes:
3346    - markus@cvs.openbsd.org  2000/09/05 02:59:57
3347      [session.c]
3348      print hostname (not hushlogin)
3349    - markus@cvs.openbsd.org  2000/09/05 13:18:48
3350      [authfile.c ssh-add.c]
3351      enable ssh-add -d for DSA keys
3352    - markus@cvs.openbsd.org  2000/09/05 13:20:49
3353      [sftp-server.c]
3354      cleanup
3355    - markus@cvs.openbsd.org  2000/09/06 03:46:41
3356      [authfile.h]
3357      prototype
3358    - deraadt@cvs.openbsd.org 2000/09/07 14:27:56
3359      [ALL]
3360      cleanup copyright notices on all files.  I have attempted to be
3361      accurate with the details.  everything is now under Tatu's licence
3362      (which I copied from his readme), and/or the core-sdi bsd-ish thing
3363      for deattack, or various openbsd developers under a 2-term bsd
3364      licence.  We're not changing any rules, just being accurate.
3365    - markus@cvs.openbsd.org  2000/09/07 14:40:30
3366      [channels.c channels.h clientloop.c serverloop.c ssh.c]
3367      cleanup window and packet sizes for ssh2 flow control; ok niels
3368    - markus@cvs.openbsd.org  2000/09/07 14:53:00
3369      [scp.c]
3370      typo
3371    - markus@cvs.openbsd.org  2000/09/07 15:13:37
3372      [auth-options.c auth-options.h auth-rh-rsa.c auth-rsa.c auth.c]
3373      [authfile.h canohost.c channels.h compat.c hostfile.h log.c match.h]
3374      [pty.c readconf.c]
3375      some more Copyright fixes
3376    - markus@cvs.openbsd.org  2000/09/08 03:02:51
3377      [README.openssh2]
3378      bye bye
3379    - deraadt@cvs.openbsd.org 2000/09/11 18:38:33
3380      [LICENCE cipher.c]
3381      a few more comments about it being ARC4 not RC4
3382    - markus@cvs.openbsd.org  2000/09/12 14:53:11
3383      [log-client.c log-server.c log.c ssh.1 ssh.c ssh.h sshd.8 sshd.c]
3384      multiple debug levels
3385    - markus@cvs.openbsd.org  2000/09/14 14:25:15
3386      [clientloop.c]
3387      typo
3388    - deraadt@cvs.openbsd.org 2000/09/15 01:13:51
3389      [ssh-agent.c]
3390      check return value for setenv(3) for failure, and deal appropriately
3391
3392 20000913
3393  - (djm) Fix server not exiting with jobs in background.
3394
3395 20000905
3396  - (djm) Import OpenBSD CVS changes
3397    - markus@cvs.openbsd.org  2000/08/31 15:52:24
3398      [Makefile sshd.8 sshd_config sftp-server.8 sftp-server.c]
3399      implement a SFTP server. interops with sftp2, scp2 and the windows
3400      client from ssh.com
3401    - markus@cvs.openbsd.org  2000/08/31 15:56:03
3402      [README.openssh2]
3403      sync
3404    - markus@cvs.openbsd.org  2000/08/31 16:05:42
3405      [session.c]
3406      Wall
3407    - markus@cvs.openbsd.org  2000/08/31 16:09:34
3408      [authfd.c ssh-agent.c]
3409      add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensions
3410    - deraadt@cvs.openbsd.org 2000/09/01 09:25:13
3411      [scp.1 scp.c]
3412      cleanup and fix -S support; stevesk@sweden.hp.com
3413    - markus@cvs.openbsd.org  2000/09/01 16:29:32
3414      [sftp-server.c]
3415      portability fixes
3416    - markus@cvs.openbsd.org  2000/09/01 16:32:41
3417      [sftp-server.c]
3418      fix cast; mouring@pconline.com
3419    - itojun@cvs.openbsd.org  2000/09/03 09:23:28
3420      [ssh-add.1 ssh.1]
3421      add missing .El against .Bl.
3422    - markus@cvs.openbsd.org  2000/09/04 13:03:41
3423      [session.c]
3424      missing close; ok theo
3425    - markus@cvs.openbsd.org  2000/09/04 13:07:21
3426      [session.c]
3427      fix get_last_login_time order; from andre@van-veen.de
3428    - markus@cvs.openbsd.org  2000/09/04 13:10:09
3429      [sftp-server.c]
3430      more cast fixes; from mouring@pconline.com
3431    - markus@cvs.openbsd.org  2000/09/04 13:06:04
3432      [session.c]
3433      set SSH_ORIGINAL_COMMAND; from Leakin@dfw.nostrum.com, bet@rahul.net
3434  - (djm) Cleanup after import. Fix sftp-server compilation, Makefile
3435  - (djm) Merge cygwin support from Corinna Vinschen <vinschen@cygnus.com>
3436
3437 20000903
3438  - (djm) Fix Redhat init script
3439
3440 20000901
3441  - (djm) Pick up Jim's new X11-askpass
3442  - (djm) Release 2.2.0p1
3443
3444 20000831
3445  - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
3446    <acox@cv.telegroup.com>
3447  - (djm) Pick up new version (2.2.0) from OpenBSD CVS
3448
3449 20000830
3450  - (djm) Compile warning fixes from Mark Miller <markm@swoon.net>
3451  - (djm) Periodically rekey arc4random
3452  - (djm) Clean up diff against OpenBSD.
3453  - (djm) HPUX 11 needs USE_PIPES as well: Kevin Steves
3454    <stevesk@sweden.hp.com>
3455  - (djm) Quieten the pam delete credentials error message
3456  - (djm) Fix printing of $DISPLAY hack if set by system type. Report from
3457    Kevin Steves <stevesk@sweden.hp.com>
3458  - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
3459  - (djm) Fix doh in bsd-arc4random.c
3460
3461 20000829
3462  - (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
3463    Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
3464    Garrick James <garrick@james.net>
3465  - (djm) Check for SCO pty naming style (ptyp%d/ttyp%d). Based on fix from
3466    Bastian Trompetter <btrompetter@firemail.de>
3467  - (djm) NeXT tweaks from Ben Lindstrom <mouring@pconline.com>
3468  - More OpenBSD updates:
3469    - deraadt@cvs.openbsd.org 2000/08/24 15:46:59
3470      [scp.c]
3471      off_t in sink, to fix files > 2GB, i think, test is still running ;-)
3472    - deraadt@cvs.openbsd.org 2000/08/25 10:10:06
3473      [session.c]
3474      Wall
3475    - markus@cvs.openbsd.org  2000/08/26 04:33:43
3476      [compat.c]
3477      ssh.com-2.3.0
3478    - markus@cvs.openbsd.org  2000/08/27 12:18:05
3479      [compat.c]
3480      compatibility with future ssh.com versions
3481    - deraadt@cvs.openbsd.org 2000/08/27 21:50:55
3482      [auth-krb4.c session.c ssh-add.c sshconnect.c uidswap.c]
3483      print uid/gid as unsigned
3484    - markus@cvs.openbsd.org  2000/08/28 13:51:00
3485      [ssh.c]
3486      enable -n and -f for ssh2
3487    - markus@cvs.openbsd.org  2000/08/28 14:19:53
3488      [ssh.c]
3489      allow combination of -N and -f
3490    - markus@cvs.openbsd.org  2000/08/28 14:20:56
3491      [util.c]
3492      util.c
3493    - markus@cvs.openbsd.org  2000/08/28 14:22:02
3494      [util.c]
3495      undo
3496    - markus@cvs.openbsd.org  2000/08/28 14:23:38
3497      [util.c]
3498      don't complain if setting NONBLOCK fails with ENODEV
3499
3500 20000823
3501  - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
3502    Avoids "scp never exits" problem. Reports from Lutz Jaenicke
3503    <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA
3504    <kajiyama@grad.sccs.chukyo-u.ac.jp>
3505  - (djm) Pick up LOGIN_PROGRAM from environment or PATH if not set by headers
3506  - (djm) Add local version to version.h
3507  - (djm) Don't reseed arc4random everytime it is used
3508  - (djm) OpenBSD CVS updates:
3509    - deraadt@cvs.openbsd.org 2000/08/18 20:07:23
3510      [ssh.c]
3511      accept remsh as a valid name as well; roman@buildpoint.com
3512    - deraadt@cvs.openbsd.org 2000/08/18 20:17:13
3513      [deattack.c crc32.c packet.c]
3514      rename crc32() to ssh_crc32() to avoid zlib name clash.  do not move to
3515      libz crc32 function yet, because it has ugly "long"'s in it;
3516      oneill@cs.sfu.ca
3517    - deraadt@cvs.openbsd.org 2000/08/18 20:26:08
3518      [scp.1 scp.c]
3519      -S prog support; tv@debian.org
3520    - deraadt@cvs.openbsd.org 2000/08/18 20:50:07
3521      [scp.c]
3522      knf
3523    - deraadt@cvs.openbsd.org 2000/08/18 20:57:33
3524      [log-client.c]
3525      shorten
3526    - markus@cvs.openbsd.org  2000/08/19 12:48:11
3527      [channels.c channels.h clientloop.c ssh.c ssh.h]
3528      support for ~. in ssh2
3529    - deraadt@cvs.openbsd.org 2000/08/19 15:29:40
3530      [crc32.h]
3531      proper prototype
3532    - markus@cvs.openbsd.org  2000/08/19 15:34:44
3533      [authfd.c authfd.h key.c key.h ssh-add.1 ssh-add.c ssh-agent.1]
3534      [ssh-agent.c ssh-keygen.c sshconnect1.c sshconnect2.c Makefile]
3535      [fingerprint.c fingerprint.h]
3536      add SSH2/DSA support to the agent and some other DSA related cleanups.
3537      (note that we cannot talk to ssh.com's ssh2 agents)
3538    - markus@cvs.openbsd.org  2000/08/19 15:55:52
3539      [channels.c channels.h clientloop.c]
3540      more ~ support for ssh2
3541    - markus@cvs.openbsd.org  2000/08/19 16:21:19
3542      [clientloop.c]
3543      oops
3544    - millert@cvs.openbsd.org 2000/08/20 12:25:53
3545      [session.c]
3546      We have to stash the result of get_remote_name_or_ip() before we
3547      close our socket or getpeername() will get EBADF and the process
3548      will exit.  Only a problem for "UseLogin yes".
3549    - millert@cvs.openbsd.org 2000/08/20 12:30:59
3550      [session.c]
3551      Only check /etc/nologin if "UseLogin no" since login(1) may have its
3552      own policy on determining who is allowed to login when /etc/nologin
3553      is present.  Also use the _PATH_NOLOGIN define.
3554    - millert@cvs.openbsd.org 2000/08/20 12:42:43
3555      [auth1.c auth2.c session.c ssh.c]
3556      Add calls to setusercontext() and login_get*().  We basically call
3557      setusercontext() in most places where previously we did a setlogin().
3558      Add default login.conf file and put root in the "daemon" login class.
3559    - millert@cvs.openbsd.org 2000/08/21 10:23:31
3560      [session.c]
3561      Fix incorrect PATH setting; noted by Markus.
3562
3563 20000818
3564  - (djm) OpenBSD CVS changes:
3565    - markus@cvs.openbsd.org  2000/07/22 03:14:37
3566      [servconf.c servconf.h sshd.8 sshd.c sshd_config]
3567      random early drop; ok theo, niels
3568    - deraadt@cvs.openbsd.org 2000/07/26 11:46:51
3569      [ssh.1]
3570      typo
3571    - deraadt@cvs.openbsd.org 2000/08/01 11:46:11
3572      [sshd.8]
3573      many fixes from pepper@mail.reppep.com
3574    - provos@cvs.openbsd.org  2000/08/01 13:01:42
3575      [Makefile.in util.c aux.c]
3576      rename aux.c to util.c to help with cygwin port
3577    - deraadt@cvs.openbsd.org 2000/08/02 00:23:31
3578      [authfd.c]
3579      correct sun_len; Alexander@Leidinger.net
3580    - provos@cvs.openbsd.org  2000/08/02 10:27:17
3581      [readconf.c sshd.8]
3582      disable kerberos authentication by default
3583    - provos@cvs.openbsd.org  2000/08/02 11:27:05
3584      [sshd.8 readconf.c auth-krb4.c]
3585      disallow kerberos authentication if we can't verify the TGT; from
3586      dugsong@
3587      kerberos authentication is on by default only if you have a srvtab.
3588    - markus@cvs.openbsd.org  2000/08/04 14:30:07
3589      [auth.c]
3590      unused
3591    - markus@cvs.openbsd.org  2000/08/04 14:30:35
3592      [sshd_config]
3593      MaxStartups
3594    - markus@cvs.openbsd.org  2000/08/15 13:20:46
3595      [authfd.c]
3596      cleanup; ok niels@
3597    - markus@cvs.openbsd.org  2000/08/17 14:05:10
3598      [session.c]
3599      cleanup login(1)-like jobs, no duplicate utmp entries
3600    - markus@cvs.openbsd.org  2000/08/17 14:06:34
3601      [session.c sshd.8 sshd.c]
3602       sshd -u len, similar to telnetd
3603  - (djm) Lastlog was not getting closed after writing login entry
3604  - (djm) Add Solaris package support from Rip Loomis <loomisg@cist.saic.com>
3605
3606 20000816
3607  - (djm) Replacement for inet_ntoa for Irix (which breaks on gcc)
3608  - (djm) Fix strerror replacement for old SunOS. Based on patch from
3609    Charles Levert <charles@comm.polymtl.ca>
3610  - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4
3611    implementation.
3612  - (djm) SUN_LEN macro for systems which lack it
3613
3614 20000815
3615  - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com>
3616  - (djm) Avoid failures on Irix when ssh is not setuid. Fix from
3617    Michael Stone <mstone@cs.loyola.edu>
3618  - (djm) Don't seek in directory based lastlogs
3619  - (djm) Fix --with-ipaddr-display configure option test. Patch from
3620    Jarno Huuskonen <jhuuskon@messi.uku.fi>
3621  - (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
3622
3623 20000813
3624  - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
3625    Fabrice bacchella <fabrice.bacchella@marchfirst.fr>
3626
3627 20000809
3628  - (djm) Define AIX hard limits if headers don't. Report from
3629    Bill Painter <william.t.painter@lmco.com>
3630  - (djm) utmp direct write & SunOS 4 patch from Charles Levert
3631    <charles@comm.polymtl.ca>
3632
3633 20000808
3634  - (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
3635    time, spec file cleanup.
3636
3637 20000807
3638  - (djm) Set 0755 on binaries during install. Report from Lutz Jaenicke
3639  - (djm) Suppress error messages on channel close shutdown() failurs
3640    works around Linux bug. Patch from Zack Weinberg <zack@wolery.cumb.org>
3641  - (djm) Add some more entropy collection commands from Lutz Jaenicke
3642
3643 20000725
3644  - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
3645
3646 20000721
3647  - (djm) OpenBSD CVS updates:
3648    - markus@cvs.openbsd.org  2000/07/16 02:27:22
3649      [authfd.c authfd.h channels.c clientloop.c ssh-add.c ssh-agent.c ssh.c]
3650      [sshconnect1.c sshconnect2.c]
3651      make ssh-add accept dsa keys (the agent does not)
3652    - djm@cvs.openbsd.org     2000/07/17 19:25:02
3653      [sshd.c]
3654      Another closing of stdin; ok deraadt
3655    - markus@cvs.openbsd.org  2000/07/19 18:33:12
3656      [dsa.c]
3657      missing free, reorder
3658    - markus@cvs.openbsd.org  2000/07/20 16:23:14
3659      [ssh-keygen.1]
3660      document input and output files
3661
3662 20000720
3663  - (djm) Spec file fix from Petr Novotny <Petr.Novotny@antek.cz>
3664
3665 20000716
3666  - (djm) Release 2.1.1p4
3667
3668 20000715
3669  - (djm) OpenBSD CVS updates
3670    - provos@cvs.openbsd.org  2000/07/13 16:53:22
3671      [aux.c readconf.c servconf.c ssh.h]
3672      allow multiple whitespace but only one '=' between tokens, bug report from
3673      Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@
3674    - provos@cvs.openbsd.org  2000/07/13 17:14:09
3675      [clientloop.c]
3676      typo; todd@fries.net
3677    - provos@cvs.openbsd.org  2000/07/13 17:19:31
3678      [scp.c]
3679      close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu>
3680    - markus@cvs.openbsd.org  2000/07/14 16:59:46
3681      [readconf.c servconf.c]
3682      allow leading whitespace. ok niels
3683    - djm@cvs.openbsd.org     2000/07/14 22:01:38
3684      [ssh-keygen.c ssh.c]
3685      Always create ~/.ssh with mode 700; ok Markus
3686  - Fixes for SunOS 4.1.4 from Gordon Atwood <gordon@cs.ualberta.ca>
3687    - Include floatingpoint.h for entropy.c
3688    - strerror replacement
3689
3690 20000712
3691  - (djm) Remove -lresolve for Reliant Unix
3692  - (djm) OpenBSD CVS Updates:
3693    - deraadt@cvs.openbsd.org 2000/07/11 02:11:34
3694      [session.c sshd.c ]
3695      make MaxStartups code still work with -d; djm
3696    - deraadt@cvs.openbsd.org 2000/07/11 13:17:45
3697      [readconf.c ssh_config]
3698      disable FallBackToRsh by default
3699  - (djm) Replace in_addr_t with u_int32_t in bsd-inet_aton.c. Report from
3700    Ben Lindstrom <mouring@pconline.com>
3701  - (djm) Make building of X11-Askpass and GNOME-Askpass optional in RPM
3702    spec file.
3703  - (djm) Released 2.1.1p3
3704
3705 20000711
3706  - (djm) Fixup for AIX getuserattr() support from Tom Bertelson
3707    <tbert@abac.com>
3708  - (djm) ReliantUNIX support from Udo Schweigert <ust@cert.siemens.de>
3709  - (djm) NeXT: dirent structures to get scp working from Ben Lindstrom
3710    <mouring@pconline.com>
3711  - (djm) Fix broken inet_ntoa check and ut_user/ut_name confusion, report
3712    from Jim Watt <jimw@peisj.pebio.com>
3713  - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
3714    to compile on more platforms (incl NeXT).
3715  - (djm) Added bsd-inet_aton and configure support for NeXT
3716  - (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
3717  - (djm) OpenBSD CVS updates:
3718    - markus@cvs.openbsd.org  2000/06/26 03:22:29
3719      [authfd.c]
3720      cleanup, less cut&paste
3721    - markus@cvs.openbsd.org  2000/06/26 15:59:19
3722      [servconf.c servconf.h session.c sshd.8 sshd.c]
3723      MaxStartups: limit number of unauthenticated connections, work by
3724      theo and me
3725    - deraadt@cvs.openbsd.org 2000/07/05 14:18:07
3726      [session.c]
3727      use no_x11_forwarding_flag correctly; provos ok
3728    - provos@cvs.openbsd.org  2000/07/05 15:35:57
3729      [sshd.c]
3730      typo
3731    - aaron@cvs.openbsd.org   2000/07/05 22:06:58
3732      [scp.1 ssh-agent.1 ssh-keygen.1 sshd.8]
3733      Insert more missing .El directives. Our troff really should identify
3734      these and spit out a warning.
3735    - todd@cvs.openbsd.org    2000/07/06 21:55:04
3736      [auth-rsa.c auth2.c ssh-keygen.c]
3737      clean code is good code
3738    - deraadt@cvs.openbsd.org 2000/07/07 02:14:29
3739      [serverloop.c]
3740      sense of port forwarding flag test was backwards
3741    - provos@cvs.openbsd.org  2000/07/08 17:17:31
3742      [compat.c readconf.c]
3743      replace strtok with strsep; from David Young <dyoung@onthejob.net>
3744    - deraadt@cvs.openbsd.org 2000/07/08 19:21:15
3745      [auth.h]
3746      KNF
3747    - ho@cvs.openbsd.org      2000/07/08 19:27:33
3748      [compat.c readconf.c]
3749      Better conditions for strsep() ending.
3750    - ho@cvs.openbsd.org      2000/07/10 10:27:05
3751      [readconf.c]
3752      Get the correct message on errors. (niels@ ok)
3753    - ho@cvs.openbsd.org      2000/07/10 10:30:25
3754      [cipher.c kex.c servconf.c]
3755      strtok() --> strsep(). (niels@ ok)
3756  - (djm) Fix problem with debug mode and MaxStartups
3757  - (djm) Don't generate host keys when $(DESTDIR) is set (e.g. during RPM
3758    builds)
3759  - (djm) Add strsep function from OpenBSD libc for systems that lack it
3760
3761 20000709
3762  - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
3763    Kevin Steves <stevesk@sweden.hp.com>
3764  - (djm) Match prototype and function declaration for rresvport_af.
3765    Problem report from Niklas Edmundsson <nikke@ing.umu.se>
3766  - (djm) Missing $(DESTDIR) on host-key target causing problems with RPM
3767    builds. Problem report from Gregory Leblanc <GLeblanc@cu-portland.edu>
3768  - (djm) Replace ut_name with ut_user. Patch from Jim Watt
3769    <jimw@peisj.pebio.com>
3770  - (djm) Fix pam sprintf fix
3771  - (djm) Cleanup entropy collection code a little more. Split initialisation
3772    from seeding, perform intialisation immediatly at start, be careful with
3773    uids. Based on problem report from Jim Watt <jimw@peisj.pebio.com>
3774  - (djm) More NeXT compatibility from Ben Lindstrom <mouring@pconline.com>
3775    Including sigaction() et al. replacements
3776  - (djm) AIX getuserattr() session initialisation from Tom Bertelson
3777    <tbert@abac.com>
3778
3779 20000708
3780  - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
3781    Aaron Hopkins <aaron@die.net>
3782  - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
3783    Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3784  - (djm) Fixed undefined variables for OSF SIA. Report from
3785    Baars, Henk <Hendrik.Baars@nl.origin-it.com>
3786  - (djm) Handle EWOULDBLOCK returns from read() and write() in atomicio.c
3787    Fix from Marquess, Steve Mr JMLFDC <Steve.Marquess@DET.AMEDD.ARMY.MIL>
3788  - (djm) Don't use inet_addr.
3789
3790 20000702
3791  - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
3792  - (djm) Stop shadow expiry checking from preventing logins with NIS. Based
3793    on fix from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
3794  - (djm) Use standard OpenSSL functions in auth-skey.c. Patch from
3795    Chris, the Young One <cky@pobox.com>
3796  - (djm) Fix scp progress meter on really wide terminals. Based on patch
3797    from James H. Cloos Jr. <cloos@jhcloos.com>
3798
3799 20000701
3800  - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
3801  - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
3802  - (djm) Replace "/bin/sh" with _PATH_BSHELL. Report from Corinna Vinschen
3803    <vinschen@cygnus.com>
3804  - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
3805  - (djm) Added check for broken snprintf() functions which do not correctly
3806    terminate output string and attempt to use replacement.
3807  - (djm) Released 2.1.1p2
3808
3809 20000628
3810  - (djm) Fixes to lastlog code for Irix
3811  - (djm) Use atomicio in loginrec
3812  - (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
3813    Irix 6.x array sessions, project id's, and system audit trail id.
3814  - (djm) Added 'distprep' make target to simplify packaging
3815  - (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
3816    support. Enable using "USE_SIA=1 ./configure [options]"
3817
3818 20000627
3819  - (djm) Fixes to login code - not setting li->uid, cleanups
3820  - (djm) Formatting
3821
3822 20000626
3823  - (djm) Better fix to aclocal tests from Garrick James <garrick@james.net>
3824  - (djm) Account expiry support from Andreas Steinmetz <ast@domdv.de>
3825  - (djm) Added password expiry checking (no password change support)
3826  - (djm) Make EGD failures non-fatal if OpenSSL's entropy pool is still OK
3827    based on patch from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3828  - (djm) Fix fixed EGD code.
3829  - OpenBSD CVS update
3830    - provos@cvs.openbsd.org  2000/06/25 14:17:58
3831      [channels.c]
3832      correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>
3833
3834 20000623
3835  - (djm) Use sa_family_t in prototype for rresvport_af. Patch from
3836    Svante Signell <svante.signell@telia.com>
3837  - (djm) Autoconf logic to define sa_family_t if it is missing
3838  - OpenBSD CVS Updates:
3839    - markus@cvs.openbsd.org  2000/06/22 10:32:27
3840      [sshd.c]
3841      missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
3842    - djm@cvs.openbsd.org     2000/06/22 17:55:00
3843      [auth-krb4.c key.c radix.c uuencode.c]
3844      Missing CVS idents; ok markus
3845
3846 20000622
3847  - (djm) Automatically generate host key during "make install". Suggested
3848    by Gary E. Miller <gem@rellim.com>
3849  - (djm) Paranoia before kill() system call
3850  - OpenBSD CVS Updates:
3851    - markus@cvs.openbsd.org  2000/06/18 18:50:11
3852      [auth2.c compat.c compat.h sshconnect2.c]
3853      make userauth+pubkey interop with ssh.com-2.2.0
3854    - markus@cvs.openbsd.org  2000/06/18 20:56:17
3855      [dsa.c]
3856      mem leak + be more paranoid in dsa_verify.
3857    - markus@cvs.openbsd.org  2000/06/18 21:29:50
3858      [key.c]
3859      cleanup fingerprinting, less hardcoded sizes
3860    - markus@cvs.openbsd.org  2000/06/19 19:39:45
3861      [atomicio.c auth-options.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
3862      [auth-rsa.c auth-skey.c authfd.c authfd.h authfile.c bufaux.c bufaux.h]
3863      [buffer.c buffer.h canohost.c channels.c channels.h cipher.c cipher.h]
3864      [clientloop.c compat.c compat.h compress.c compress.h crc32.c crc32.h]
3865      [deattack.c dispatch.c dsa.c fingerprint.c fingerprint.h getput.h hmac.c]
3866      [kex.c log-client.c log-server.c login.c match.c mpaux.c mpaux.h nchan.c]
3867      [nchan.h packet.c packet.h pty.c pty.h readconf.c readconf.h readpass.c]
3868      [rsa.c rsa.h scp.c servconf.c servconf.h ssh-add.c ssh-keygen.c ssh.c]
3869      [ssh.h tildexpand.c ttymodes.c ttymodes.h uidswap.c xmalloc.c xmalloc.h]
3870      OpenBSD tag
3871    - markus@cvs.openbsd.org  2000/06/21 10:46:10
3872      sshconnect2.c missing free; nuke old comment
3873
3874 20000620
3875  - (djm) Replace use of '-o' and '-a' logical operators in configure tests
3876    with '||' and '&&'. As suggested by Jim Knoble <jmknoble@jmknoble.cx>
3877    to fix SCO Unixware problem reported by Gary E. Miller <gem@rellim.com>
3878  - (djm) Typo in loginrec.c
3879
3880 20000618
3881  - (djm) Add summary of configure options to end of ./configure run
3882  - (djm) Not all systems define RUSAGE_SELF & RUSAGE_CHILDREN. Report from
3883    Michael Stone <mstone@cs.loyola.edu>
3884  - (djm) rusage is a privileged operation on some Unices (incl.
3885    Solaris 2.5.1). Report from Paul D. Smith <pausmith@nortelnetworks.com>
3886  - (djm) Avoid PAM failures when running without a TTY. Report from
3887    Martin Petrak <petrak@spsknm.schools.sk>
3888  - (djm) Include sys/types.h when including netinet/in.h in configure tests.
3889    Patch from Jun-ichiro itojun Hagino <itojun@iijlab.net>
3890  - (djm) Started merge of Ben Lindstrom's <mouring@pconline.com> NeXT support
3891  - OpenBSD CVS updates:
3892    - deraadt@cvs.openbsd.org 2000/06/17 09:58:46
3893      [channels.c]
3894      everyone says "nix it" (remove protocol 2 debugging message)
3895    - markus@cvs.openbsd.org  2000/06/17 13:24:34
3896      [sshconnect.c]
3897      allow extended server banners
3898    - markus@cvs.openbsd.org  2000/06/17 14:30:10
3899      [sshconnect.c]
3900      missing atomicio, typo
3901    - jakob@cvs.openbsd.org   2000/06/17 16:52:34
3902      [servconf.c servconf.h session.c sshd.8 sshd_config]
3903      add support for ssh v2 subsystems. ok markus@.
3904    - deraadt@cvs.openbsd.org 2000/06/17 18:57:48
3905      [readconf.c servconf.c]
3906      include = in WHITESPACE; markus ok
3907    - markus@cvs.openbsd.org  2000/06/17 19:09:10
3908      [auth2.c]
3909      implement bug compatibility with ssh-2.0.13 pubkey, server side
3910    - markus@cvs.openbsd.org  2000/06/17 21:00:28
3911      [compat.c]
3912      initial support for ssh.com's 2.2.0
3913    - markus@cvs.openbsd.org  2000/06/17 21:16:09
3914      [scp.c]
3915      typo
3916    - markus@cvs.openbsd.org  2000/06/17 22:05:02
3917      [auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
3918      split auth-rsa option parsing into auth-options
3919      add options support to authorized_keys2
3920    - markus@cvs.openbsd.org  2000/06/17 22:42:54
3921      [session.c]
3922      typo
3923
3924 20000613
3925  - (djm) Fixes from Andrew McGill <andrewm@datrix.co.za>:
3926   - Platform define for SCO 3.x which breaks on /dev/ptmx
3927   - Detect and try to fix missing MAXPATHLEN
3928  - (djm) Fix short copy in loginrec.c (based on patch from Phill Camp
3929    <P.S.S.Camp@ukc.ac.uk>
3930
3931 20000612
3932  - (djm) Glob manpages in RPM spec files to catch compressed files
3933  - (djm) Full license in auth-pam.c
3934  - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
3935  - (andre) AIX, lastlog, configure fixes from Tom Bertelson <tbert@abac.com>:
3936   - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is
3937      def'd
3938   - Set AIX to use preformatted manpages
3939
3940 20000610
3941  - (djm) Minor doc tweaks
3942  - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>
3943
3944 20000609
3945  - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
3946    (in favour of utmpx) on Solaris 8
3947
3948 20000606
3949  - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
3950    list of commands (by default). Removed verbose debugging (by default).
3951  - (djm) Increased command entropy estimates and default entropy collection
3952    timeout
3953  - (djm) Remove duplicate headers from loginrec.c
3954  - (djm) Don't add /usr/local/lib to library search path on Irix
3955  - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
3956    <tibbs@math.uh.edu>
3957  - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
3958    <zack@wolery.cumb.org>
3959  - (djm) OpenBSD CVS updates:
3960   - todd@cvs.openbsd.org
3961     [sshconnect2.c]
3962     teach protocol v2 to count login failures properly and also enable an
3963     explanation of why the password prompt comes up again like v1; this is NOT
3964     crypto
3965   - markus@cvs.openbsd.org
3966     [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
3967     xauth_location support; pr 1234
3968     [readconf.c sshconnect2.c]
3969     typo, unused
3970     [session.c]
3971     allow use_login only for login sessions, otherwise remote commands are
3972     execed with uid==0
3973     [sshd.8]
3974     document UseLogin better
3975     [version.h]
3976     OpenSSH 2.1.1
3977     [auth-rsa.c]
3978     fix match_hostname() logic for auth-rsa: deny access if we have a
3979     negative match or no match at all
3980     [channels.c hostfile.c match.c]
3981     don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via
3982     kris@FreeBSD.org
3983
3984 20000606
3985  - (djm) Added --with-cflags, --with-ldflags and --with-libs options to
3986    configure.
3987
3988 20000604
3989  - Configure tweaking for new login code on Irix 5.3
3990  - (andre) login code changes based on djm feedback
3991
3992 20000603
3993  - (andre) New login code
3994     - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c
3995     - Add loginrec.[ch], logintest.c and autoconf code
3996
3997 20000531
3998  - Cleanup of auth.c, login.c and fake-*
3999  - Cleanup of auth-pam.c, save and print "account expired" error messages
4000  - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
4001  - Rewrote bsd-login to use proper utmp API if available. Major cleanup
4002    of fallback DIY code.
4003
4004 20000530
4005  - Define atexit for old Solaris
4006  - Fix buffer overrun in login.c for systems which use syslen in utmpx.
4007    patch from YOSHIFUJI Hideaki <yoshfuji@cerberus.nemoto.ecei.tohoku.ac.jp>
4008  - OpenBSD CVS updates:
4009   - markus@cvs.openbsd.org
4010     [session.c]
4011     make x11-fwd work w/ localhost (xauth add host/unix:11)
4012     [cipher.c compat.c readconf.c servconf.c]
4013     check strtok() != NULL; ok niels@
4014     [key.c]
4015     fix key_read() for uuencoded keys w/o '='
4016     [serverloop.c]
4017     group ssh1 vs. ssh2 in serverloop
4018     [kex.c kex.h myproposal.h sshconnect2.c sshd.c]
4019     split kexinit/kexdh, factor out common code
4020     [readconf.c ssh.1 ssh.c]
4021     forwardagent defaults to no, add ssh -A
4022   - theo@cvs.openbsd.org
4023     [session.c]
4024     just some line shortening
4025  - Released 2.1.0p3
4026
4027 20000520
4028  - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
4029  - Don't touch utmp if USE_UTMPX defined
4030  - SunOS 4.x support from Todd C. Miller <Todd.Miller@courtesan.com>
4031  - SIGCHLD fix for AIX and HPUX from Tom Bertelson <tbert@abac.com>
4032  - HPUX and Configure fixes from Lutz Jaenicke
4033    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4034  - Use mkinstalldirs script to make directories instead of non-portable
4035    "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4036  - Doc cleanup
4037
4038 20000518
4039  - Include Andre Lucas' fixprogs script. Forgot to "cvs add" it yesterday
4040  - OpenBSD CVS updates:
4041   - markus@cvs.openbsd.org
4042     [sshconnect.c]
4043     copy only ai_addrlen bytes; misiek@pld.org.pl
4044     [auth.c]
4045     accept an empty shell in authentication; bug reported by
4046     chris@tinker.ucr.edu
4047     [serverloop.c]
4048     we don't have stderr for interactive terminal sessions (fcntl errors)
4049
4050 20000517
4051  - Fix from Andre Lucas <andre.lucas@dial.pipex.com>
4052   - Fixes command line printing segfaults (spotter: Bladt Norbert)
4053   - Fixes erroneous printing of debug messages to syslog
4054   - Fixes utmp for MacOS X (spotter: Aristedes Maniatis)
4055   - Gives useful error message if PRNG initialisation fails
4056   - Reduced ssh startup delay
4057   - Measures cumulative command time rather than the time between reads
4058     after select()
4059   - 'fixprogs' perl script to eliminate non-working entropy commands, and
4060     optionally run 'ent' to measure command entropy
4061  - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
4062  - Avoid WCOREDUMP complation errors for systems that lack it
4063  - Avoid SIGCHLD warnings from entropy commands
4064  - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
4065  - OpenBSD CVS update:
4066   - markus@cvs.openbsd.org
4067     [ssh.c]
4068     fix usage()
4069     [ssh2.h]
4070     draft-ietf-secsh-architecture-05.txt
4071     [ssh.1]
4072     document ssh -T -N (ssh2 only)
4073     [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c]
4074     enable nonblocking IO for sshd w/ proto 1, too; split out common code
4075     [aux.c]
4076     missing include
4077  - Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
4078   - INSTALL typo and URL fix
4079   - Makefile fix
4080   - Solaris fixes
4081  - Checking for ssize_t and memmove. Based on patch from SAKAI Kiyotaka
4082    <ksakai@kso.netwk.ntt-at.co.jp>
4083  - RSAless operation patch from kevin_oconnor@standardandpoors.com
4084  - Detect OpenSSL seperatly from RSA
4085  - Better test for RSA (more compatible with RSAref). Based on work by
4086    Ed Eden <ede370@stl.rural.usda.gov>
4087
4088 20000513
4089  - Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
4090    <misiek@pld.org.pl>
4091
4092 20000511
4093  - Fix for prng_seed permissions checking from Lutz Jaenicke
4094    <Lutz.Jaenicke@aet.TU-Cottbus.DE>
4095  - "make host-key" fix for Irix
4096
4097 20000509
4098  - OpenBSD CVS update
4099   - markus@cvs.openbsd.org
4100     [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c]
4101     [ssh.h sshconnect1.c sshconnect2.c sshd.8]
4102     - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
4103   - hugh@cvs.openbsd.org
4104     [ssh.1]
4105     - zap typo
4106     [ssh-keygen.1]
4107     - One last nit fix. (markus approved)
4108     [sshd.8]
4109     - some markus certified spelling adjustments
4110   - markus@cvs.openbsd.org
4111     [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c]
4112     [sshconnect2.c ]
4113     - bug compat w/ ssh-2.0.13 x11, split out bugs
4114     [nchan.c]
4115     - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@
4116     [ssh-keygen.c]
4117     - handle escapes in real and original key format, ok millert@
4118     [version.h]
4119     - OpenSSH-2.1
4120  - Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
4121  - Doc updates
4122  - Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported
4123    by Andre Lucas <andre.lucas@dial.pipex.com>
4124
4125 20000508
4126  - Makefile and RPM spec fixes
4127  - Generate DSA host keys during "make key" or RPM installs
4128  - OpenBSD CVS update
4129   - markus@cvs.openbsd.org
4130     [clientloop.c sshconnect2.c]
4131     - make x11-fwd interop w/ ssh-2.0.13
4132     [README.openssh2]
4133     - interop w/ SecureFX
4134  - Release 2.0.0beta2
4135
4136  - Configure caching and cleanup patch from Andre Lucas'
4137    <andre.lucas@dial.pipex.com>
4138
4139 20000507
4140  - Remove references to SSLeay.
4141  - Big OpenBSD CVS update
4142   - markus@cvs.openbsd.org
4143     [clientloop.c]
4144     - typo
4145     [session.c]
4146     - update proctitle on pty alloc/dealloc, e.g. w/ windows client
4147     [session.c]
4148     - update proctitle for proto 1, too
4149     [channels.h nchan.c serverloop.c session.c sshd.c]
4150     - use c-style comments
4151   - deraadt@cvs.openbsd.org
4152     [scp.c]
4153     - more atomicio
4154   - markus@cvs.openbsd.org
4155     [channels.c]
4156     - set O_NONBLOCK
4157     [ssh.1]
4158     - update AUTHOR
4159     [readconf.c ssh-keygen.c ssh.h]
4160     - default DSA key file ~/.ssh/id_dsa
4161     [clientloop.c]
4162     - typo, rm verbose debug
4163   - deraadt@cvs.openbsd.org
4164     [ssh-keygen.1]
4165     - document DSA use of ssh-keygen
4166     [sshd.8]
4167     - a start at describing what i understand of the DSA side
4168     [ssh-keygen.1]
4169     - document -X and -x
4170     [ssh-keygen.c]
4171     - simplify usage
4172   - markus@cvs.openbsd.org
4173     [sshd.8]
4174     - there is no rhosts_dsa
4175     [ssh-keygen.1]
4176     - document -y, update -X,-x
4177     [nchan.c]
4178     - fix close for non-open ssh1 channels
4179     [servconf.c servconf.h ssh.h sshd.8 sshd.c ]
4180     - s/DsaKey/HostDSAKey/, document option
4181     [sshconnect2.c]
4182     - respect number_of_password_prompts
4183     [channels.c channels.h servconf.c servconf.h session.c sshd.8]
4184     - GatewayPorts for sshd, ok deraadt@
4185     [ssh-add.1 ssh-agent.1 ssh.1]
4186     - more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
4187     [ssh.1]
4188     - more info on proto 2
4189     [sshd.8]
4190     - sync AUTHOR w/ ssh.1
4191     [key.c key.h sshconnect.c]
4192     - print key type when talking about host keys
4193     [packet.c]
4194     - clear padding in ssh2
4195     [dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
4196     - replace broken uuencode w/ libc b64_ntop
4197     [auth2.c]
4198     - log failure before sending the reply
4199     [key.c radix.c uuencode.c]
4200     - remote trailing comments before calling __b64_pton
4201     [auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
4202     [sshconnect2.c sshd.8]
4203     - add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
4204  - Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
4205
4206 20000502
4207  - OpenBSD CVS update
4208    [channels.c]
4209    - init all fds, close all fds.
4210    [sshconnect2.c]
4211    - check whether file exists before asking for passphrase
4212    [servconf.c servconf.h sshd.8 sshd.c]
4213    - PidFile, pr 1210
4214    [channels.c]
4215    - EINTR
4216    [channels.c]
4217    - unbreak, ok niels@
4218    [sshd.c]
4219    - unlink pid file, ok niels@
4220    [auth2.c]
4221    - Add missing #ifdefs; ok - markus
4222  - Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy
4223    gathering commands from a text file
4224  - Release 2.0.0beta1
4225
4226 20000501
4227  - OpenBSD CVS update
4228    [packet.c]
4229    - send debug messages in SSH2 format
4230    [scp.c]
4231    - fix very rare EAGAIN/EINTR issues; based on work by djm
4232    [packet.c]
4233    - less debug, rm unused
4234    [auth2.c]
4235    - disable kerb,s/key in ssh2
4236    [sshd.8]
4237    - Minor tweaks and typo fixes.
4238    [ssh-keygen.c]
4239    - Put -d into usage and reorder. markus ok.
4240  - Include missing headers for OpenSSL tests. Fix from Phil Karn
4241    <karn@ka9q.ampr.org>
4242  - Fixed __progname symbol collisions reported by Andre Lucas
4243    <andre.lucas@dial.pipex.com>
4244  - Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
4245    <gd@hilb1.medat.de>
4246  - Add some missing ifdefs to auth2.c
4247  - Deprecate perl-tk askpass.
4248  - Irix portability fixes - don't include netinet headers more than once
4249  - Make sure we don't save PRNG seed more than once
4250
4251 20000430
4252  - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
4253  - Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
4254    patch.
4255    - Adds timeout to entropy collection
4256    - Disables slow entropy sources
4257    - Load and save seed file
4258  - Changed entropy seed code to user per-user seeds only (server seed is
4259    saved in root's .ssh directory)
4260  - Use atexit() and fatal cleanups to save seed on exit
4261  - More OpenBSD updates:
4262    [session.c]
4263    - don't call chan_write_failed() if we are not writing
4264    [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
4265    - keysize warnings error() -> log()
4266
4267 20000429
4268  - Merge big update to OpenSSH-2.0 from OpenBSD CVS
4269    [README.openssh2]
4270    - interop w/ F-secure windows client
4271    - sync documentation
4272    - ssh_host_dsa_key not ssh_dsa_key
4273    [auth-rsa.c]
4274    - missing fclose
4275    [auth.c authfile.c compat.c dsa.c dsa.h hostfile.c key.c key.h radix.c]
4276    [readconf.c readconf.h ssh-add.c ssh-keygen.c ssh.c ssh.h sshconnect.c]
4277    [sshd.c uuencode.c uuencode.h authfile.h]
4278    - add DSA pubkey auth and other SSH2 fixes.  use ssh-keygen -[xX]
4279      for trading keys with the real and the original SSH, directly from the
4280      people who invented the SSH protocol.
4281    [auth.c auth.h authfile.c sshconnect.c auth1.c auth2.c sshconnect.h]
4282    [sshconnect1.c sshconnect2.c]
4283    - split auth/sshconnect in one file per protocol version
4284    [sshconnect2.c]
4285    - remove debug
4286    [uuencode.c]
4287    - add trailing =
4288    [version.h]
4289    - OpenSSH-2.0
4290    [ssh-keygen.1 ssh-keygen.c]
4291    - add -R flag: exit code indicates if RSA is alive
4292    [sshd.c]
4293    - remove unused
4294      silent if -Q is specified
4295    [ssh.h]
4296    - host key becomes /etc/ssh_host_dsa_key
4297    [readconf.c servconf.c ]
4298    - ssh/sshd default to proto 1 and 2
4299    [uuencode.c]
4300    - remove debug
4301    [auth2.c ssh-keygen.c sshconnect2.c sshd.c]
4302    - xfree DSA blobs
4303    [auth2.c serverloop.c session.c]
4304    - cleanup logging for sshd/2, respect PasswordAuth no
4305    [sshconnect2.c]
4306    - less debug, respect .ssh/config
4307    [README.openssh2 channels.c channels.h]
4308    - clientloop.c session.c ssh.c
4309    - support for x11-fwding, client+server
4310
4311 20000421
4312  - Merge fix from OpenBSD CVS
4313   [ssh-agent.c]
4314   - Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>
4315     via Debian bug #59926
4316  - Define __progname in session.c if libc doesn't
4317  - Remove indentation on autoconf #include statements to avoid bug in
4318    DEC Tru64 compiler. Report and fix from David Del Piero
4319    <David.DelPiero@qed.qld.gov.au>
4320
4321 20000420
4322  - Make fixpaths work with perl4, patch from Andre Lucas
4323    <andre.lucas@dial.pipex.com>
4324  - Sync with OpenBSD CVS:
4325   [clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
4326   - pid_t
4327   [session.c]
4328   - remove bogus chan_read_failed. this could cause data
4329     corruption (missing data) at end of a SSH2 session.
4330  - Merge fixes from Debian patch from Phil Hands <phil@hands.com>
4331   - Allow setting of PAM service name through CFLAGS (SSHD_PAM_SERVICE)
4332   - Use vhangup to clean up Linux ttys
4333   - Force posix getopt processing on GNU libc systems
4334  - Debian bug #55910 - remove references to ssl(8) manpages
4335  - Debian bug #58031 - ssh_config lies about default cipher
4336
4337 20000419
4338  - OpenBSD CVS updates
4339    [channels.c]
4340    - fix pr 1196, listen_port and port_to_connect interchanged
4341    [scp.c]
4342    - after completion, replace the progress bar ETA counter with a final
4343      elapsed time; my idea, aaron wrote the patch
4344    [ssh_config sshd_config]
4345    - show 'Protocol' as an example, ok markus@
4346    [sshd.c]
4347    - missing xfree()
4348  - Add missing header to bsd-misc.c
4349
4350 20000416
4351  - Reduce diff against OpenBSD source
4352    - All OpenSSL includes are now unconditionally referenced as
4353      openssl/foo.h
4354    - Pick up formatting changes
4355    - Other minor changed (typecasts, etc) that I missed
4356
4357 20000415
4358  - OpenBSD CVS updates.
4359    [ssh.1 ssh.c]
4360    - ssh -2
4361    [auth.c channels.c clientloop.c packet.c packet.h serverloop.c]
4362    [session.c sshconnect.c]
4363    - check payload for (illegal) extra data
4364    [ALL]
4365    whitespace cleanup
4366
4367 20000413
4368  - INSTALL doc updates
4369  - Merged OpenBSD updates to include paths.
4370
4371 20000412
4372  - OpenBSD CVS updates:
4373    - [channels.c]
4374      repair x11-fwd
4375    - [sshconnect.c]
4376      fix passwd prompt for ssh2, less debugging output.
4377    - [clientloop.c compat.c dsa.c kex.c sshd.c]
4378      less debugging output
4379    - [kex.c kex.h sshconnect.c sshd.c]
4380      check for reasonable public DH values
4381    - [README.openssh2 cipher.c cipher.h compat.c compat.h readconf.c]
4382      [readconf.h servconf.c servconf.h ssh.c ssh.h sshconnect.c sshd.c]
4383      add Cipher and Protocol options to ssh/sshd, e.g.:
4384      ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers
4385      arcfour,3des-cbc'
4386    - [sshd.c]
4387      print 1.99 only if server supports both
4388
4389 20000408
4390  - Avoid some compiler warnings in fake-get*.c
4391  - Add IPTOS macros for systems which lack them
4392  - Only set define entropy collection macros if they are found
4393  - More large OpenBSD CVS updates:
4394    - [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
4395      [session.h ssh.h sshd.c README.openssh2]
4396      ssh2 server side, see README.openssh2; enable with 'sshd -2'
4397    - [channels.c]
4398      no adjust after close
4399    - [sshd.c compat.c ]
4400      interop w/ latest ssh.com windows client.
4401
4402 20000406
4403  - OpenBSD CVS update:
4404    - [channels.c]
4405      close efd on eof
4406    - [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
4407      ssh2 client implementation, interops w/ ssh.com and lsh servers.
4408    - [sshconnect.c]
4409      missing free.
4410    - [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
4411      remove unused argument, split cipher_mask()
4412    - [clientloop.c]
4413      re-order: group ssh1 vs. ssh2
4414  - Make Redhat spec require openssl >= 0.9.5a
4415
4416 20000404
4417  - Add tests for RAND_add function when searching for OpenSSL
4418  - OpenBSD CVS update:
4419    - [packet.h packet.c]
4420      ssh2 packet format
4421    - [packet.h packet.c nchan2.ms nchan.h compat.h compat.c]
4422      [channels.h channels.c]
4423      channel layer support for ssh2
4424    - [kex.h kex.c hmac.h hmac.c dsa.c dsa.h]
4425      DSA, keyexchange, algorithm agreement for ssh2
4426  - Generate manpages before make install not at the end of make all
4427  - Don't seed the rng quite so often
4428  - Always reseed rng when requested
4429
4430 20000403
4431  - Wrote entropy collection routines for systems that lack /dev/random
4432    and EGD
4433  - Disable tests and typedefs for 64 bit types. They are currently unused.
4434
4435 20000401
4436  - Big OpenBSD CVS update (mainly beginnings of SSH2 infrastructure)
4437    - [auth.c session.c sshd.c auth.h]
4438      split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
4439    - [bufaux.c bufaux.h]
4440      support ssh2 bignums
4441    - [channels.c channels.h clientloop.c sshd.c nchan.c nchan.h packet.c]
4442      [readconf.c ssh.c ssh.h serverloop.c]
4443      replace big switch() with function tables (prepare for ssh2)
4444    - [ssh2.h]
4445      ssh2 message type codes
4446    - [sshd.8]
4447      reorder Xr to avoid cutting
4448    - [serverloop.c]
4449      close(fdin) if fdin != fdout, shutdown otherwise, ok theo@
4450    - [channels.c]
4451      missing close
4452      allow bigger packets
4453    - [cipher.c cipher.h]
4454      support ssh2 ciphers
4455    - [compress.c]
4456      cleanup, less code
4457    - [dispatch.c dispatch.h]
4458      function tables for different message types
4459    - [log-server.c]
4460      do not log() if debuggin to stderr
4461      rename a cpp symbol, to avoid param.h collision
4462    - [mpaux.c]
4463      KNF
4464    - [nchan.c]
4465      sync w/ channels.c
4466
4467 20000326
4468  - Better tests for OpenSSL w/ RSAref
4469  - Added replacement setenv() function from OpenBSD libc. Suggested by
4470    Ben Lindstrom <mouring@pconline.com>
4471  - OpenBSD CVS update
4472    - [auth-krb4.c]
4473      -Wall
4474    - [auth-rh-rsa.c auth-rsa.c hostfile.c hostfile.h key.c key.h match.c]
4475      [match.h ssh.c ssh.h sshconnect.c sshd.c]
4476      initial support for DSA keys. ok deraadt@, niels@
4477    - [cipher.c cipher.h]
4478      remove unused cipher_attack_detected code
4479    - [scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
4480      Fix some formatting problems I missed before.
4481    - [ssh.1 sshd.8]
4482      fix spelling errors, From: FreeBSD
4483    - [ssh.c]
4484      switch to raw mode only if he _get_ a pty (not if we _want_ a pty).
4485
4486 20000324
4487  - Released 1.2.3
4488
4489 20000317
4490  - Clarified --with-default-path option.
4491  - Added -blibpath handling for AIX to work around stupid runtime linking.
4492    Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
4493    <jmknoble@jmknoble.cx>
4494  - Checks for 64 bit int types. Problem report from Mats Fredholm
4495    <matsf@init.se>
4496  - OpenBSD CVS updates:
4497    - [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c]
4498      [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c]
4499      [sshd.c]
4500      pedantic: signed vs. unsigned, void*-arithm, etc
4501    - [ssh.1 sshd.8]
4502      Various cleanups and standardizations.
4503  - Runtime error fix for HPUX from Otmar Stahl
4504    <O.Stahl@lsw.uni-heidelberg.de>
4505
4506 20000316
4507  - Fixed configure not passing LDFLAGS to Solaris. Report from David G.
4508    Hesprich <dghespri@sprintparanet.com>
4509  - Propogate LD through to Makefile
4510  - Doc cleanups
4511  - Added blurb about "scp: command not found" errors to UPGRADING
4512
4513 20000315
4514  - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list
4515    problems with gcc/Solaris.
4516  - Don't free argument to putenv() after use (in setenv() replacement).
4517    Report from Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp>
4518  - Created contrib/ subdirectory. Included helpers from Phil Hands'
4519    Debian package, README file and chroot patch from Ricardo Cerqueira
4520    <rmcc@clix.pt>
4521  - Moved gnome-ssh-askpass.c to contrib directory and removed config
4522    option.
4523  - Slight cleanup to doc files
4524  - Configure fix from Bratislav ILICH <bilic@zepter.ru>
4525
4526 20000314
4527  - Include macro for IN6_IS_ADDR_V4MAPPED. Report from
4528    peter@frontierflying.com
4529  - Include /usr/local/include and /usr/local/lib for systems that don't
4530    do it themselves
4531  - -R/usr/local/lib for Solaris
4532  - Fix RSAref detection
4533  - Fix IN6_IS_ADDR_V4MAPPED macro
4534
4535 20000311
4536  - Detect RSAref
4537  - OpenBSD CVS change
4538    [sshd.c]
4539     - disallow guessing of root password
4540  - More configure fixes
4541  - IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
4542
4543 20000309
4544  - OpenBSD CVS updates to v1.2.3
4545    [ssh.h atomicio.c]
4546     - int atomicio -> ssize_t (for alpha). ok deraadt@
4547    [auth-rsa.c]
4548     - delay MD5 computation until client sends response, free() early, cleanup.
4549    [cipher.c]
4550     - void* -> unsigned char*, ok niels@
4551    [hostfile.c]
4552     - remove unused variable 'len'. fix comments.
4553     - remove unused variable
4554    [log-client.c log-server.c]
4555     - rename a cpp symbol, to avoid param.h collision
4556    [packet.c]
4557     - missing xfree()
4558     - getsockname() requires initialized tolen; andy@guildsoftware.com
4559     - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
4560    from Holger.Trapp@Informatik.TU-Chemnitz.DE
4561    [pty.c pty.h]
4562     - register cleanup for pty earlier. move code for pty-owner handling to
4563       pty.c ok provos@, dugsong@
4564    [readconf.c]
4565     - turn off x11-fwd for the client, too.
4566    [rsa.c]
4567     - PKCS#1 padding
4568    [scp.c]
4569     - allow '.' in usernames; from jedgar@fxp.org
4570    [servconf.c]
4571     - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
4572     - sync with sshd_config
4573    [ssh-keygen.c]
4574     - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
4575    [ssh.1]
4576     - Change invalid 'CHAT' loglevel to 'VERBOSE'
4577    [ssh.c]
4578     - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
4579     - turn off x11-fwd for the client, too.
4580    [sshconnect.c]
4581     - missing xfree()
4582     - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
4583     - read error vs. "Connection closed by remote host"
4584    [sshd.8]
4585     - ie. -> i.e.,
4586     - do not link to a commercial page..
4587     - sync with sshd_config
4588    [sshd.c]
4589     - no need for poll.h; from bright@wintelcom.net
4590     - log with level log() not fatal() if peer behaves badly.
4591     - don't panic if client behaves strange. ok deraadt@
4592     - make no-port-forwarding for RSA keys deny both -L and -R style fwding
4593     - delay close() of pty until the pty has been chowned back to root
4594     - oops, fix comment, too.
4595     - missing xfree()
4596     - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
4597       (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
4598     - register cleanup for pty earlier. move code for pty-owner handling to
4599       pty.c ok provos@, dugsong@
4600     - create x11 cookie file
4601     - fix pr 1113, fclose() -> pclose(), todo: remote popen()
4602     - version 1.2.3
4603  - Cleaned up
4604  - Removed warning workaround for Linux and devpts filesystems (no longer
4605    required after OpenBSD updates)
4606
4607 20000308
4608  - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
4609
4610 20000307
4611  - Released 1.2.2p1
4612
4613 20000305
4614  - Fix DEC compile fix
4615  - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
4616  - Check for getpagesize in libucb.a if not found in libc. Fix for old
4617    Solaris from Andre Lucas <andre.lucas@dial.pipex.com>
4618  - Check for libwrap if --with-tcp-wrappers option specified. Suggestion
4619    Mate Wierdl <mw@moni.msci.memphis.edu>
4620
4621 20000303
4622  - Added "make host-key" target, Suggestion from Dominik Brettnacher
4623  <domi@saargate.de>
4624  - Don't permanently fail on bind() if getaddrinfo has more choices left for
4625    us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
4626    Miskiewicz <misiek@pld.org.pl>
4627  - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
4628  - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
4629
4630 20000302
4631  - Big cleanup of autoconf code
4632    - Rearranged to be a little more logical
4633    - Added -R option for Solaris
4634    - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program
4635      to detect library and header location _and_ ensure library has proper
4636      RSA support built in (this is a problem with OpenSSL 0.9.5).
4637  - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de
4638  - Avoid warning message with Unix98 ptys
4639  - Warning was valid - possible race condition on PTYs. Avoided using
4640    platform-specific code.
4641  - Document some common problems
4642  - Allow root access to any key. Patch from
4643    markus.friedl@informatik.uni-erlangen.de
4644
4645 20000207
4646  - Removed SOCKS code. Will support through a ProxyCommand.
4647
4648 20000203
4649  - Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
4650  - Add --with-ssl-dir option
4651
4652 20000202
4653  - Fix lastlog code for directory based lastlogs. Fix from Josh Durham
4654    <jmd@aoe.vt.edu>
4655  - Documentation fixes from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
4656  - Added URLs to Japanese translations of documents by HARUYAMA Seigo
4657    <haruyama@nt.phys.s.u-tokyo.ac.jp>
4658
4659 20000201
4660  - Use socket pairs by default (instead of pipes). Prevents race condition
4661    on several (buggy) OSs. Report and fix from tridge@linuxcare.com
4662
4663 20000127
4664  - Seed OpenSSL's random number generator before generating RSA keypairs
4665  - Split random collector into seperate file
4666  - Compile fix from Andre Lucas <andre.lucas@dial.pipex.com>
4667
4668 20000126
4669  - Released 1.2.2 stable
4670
4671  - NeXT keeps it lastlog in /usr/adm. Report from
4672    mouring@newton.pconline.com
4673  - Added note in UPGRADING re interop with commercial SSH using idea.
4674    Report from Jim Knoble <jmknoble@jmknoble.cx>
4675  - Fix linking order for Kerberos/AFS. Fix from Holget Trapp
4676    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
4677
4678 20000125
4679  - Fix NULL pointer dereference in login.c. Fix from Andre Lucas
4680    <andre.lucas@dial.pipex.com>
4681  - Reorder PAM initialisation so it does not mess up lastlog. Reported
4682    by Andre Lucas <andre.lucas@dial.pipex.com>
4683  - Use preformatted manpages on SCO, report from Gary E. Miller
4684    <gem@rellim.com>
4685  - New URL for x11-ssh-askpass.
4686  - Fixpaths was missing /etc/ssh_known_hosts. Report from Jim Knoble
4687    <jmknoble@jmknoble.cx>
4688  - Added 'DESTDIR' option to Makefile to ease package building. Patch from
4689    Jim Knoble <jmknoble@jmknoble.cx>
4690  - Updated RPM spec files to use DESTDIR
4691
4692 20000124
4693  - Pick up version 1.2.2 from OpenBSD CVS (no changes, just version number
4694    increment)
4695
4696 20000123
4697  - OpenBSD CVS:
4698    - [packet.c]
4699      getsockname() requires initialized tolen; andy@guildsoftware.com
4700  - AIX patch from Matt Richards <v2matt@btv.ibm.com> and David Rankin
4701    <drankin@bohemians.lexington.ky.us>
4702  - Fix lastlog support, patch from Andre Lucas <andre.lucas@dial.pipex.com>
4703
4704 20000122
4705  - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
4706    <bent@clark.net>
4707  - Merge preformatted manpage patch from Andre Lucas
4708    <andre.lucas@dial.pipex.com>
4709  - Make IPv4 use the default in RPM packages
4710  - Irix uses preformatted manpages
4711  - Missing htons() in bsd-bindresvport.c, fix from Holger Trapp
4712    <Holger.Trapp@Informatik.TU-Chemnitz.DE>
4713  - OpenBSD CVS updates:
4714    - [packet.c]
4715      use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
4716      from Holger.Trapp@Informatik.TU-Chemnitz.DE
4717    - [sshd.c]
4718      log with level log() not fatal() if peer behaves badly.
4719    - [readpass.c]
4720      instead of blocking SIGINT, catch it ourselves, so that we can clean
4721      the tty modes up and kill ourselves -- instead of our process group
4722      leader (scp, cvs, ...) going away and leaving us in noecho mode.
4723      people with cbreak shells never even noticed..
4724    - [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
4725      ie. -> i.e.,
4726
4727 20000120
4728  - Don't use getaddrinfo on AIX
4729  - Update to latest OpenBSD CVS:
4730    - [auth-rsa.c]
4731      - fix user/1056, sshd keeps restrictions; dbt@meat.net
4732    - [sshconnect.c]
4733      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
4734      - destroy keys earlier
4735      - split key exchange (kex) and user authentication (user-auth),
4736        ok: provos@
4737    - [sshd.c]
4738      - no need for poll.h; from bright@wintelcom.net
4739      - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
4740      - split key exchange (kex) and user authentication (user-auth),
4741        ok: provos@
4742  - Big manpage and config file cleanup from Andre Lucas
4743    <andre.lucas@dial.pipex.com>
4744    - Re-added latest (unmodified) OpenBSD manpages
4745  - Doc updates
4746  - NetBSD patch from David Rankin <drankin@bohemians.lexington.ky.us> and
4747    Christos Zoulas <christos@netbsd.org>
4748
4749 20000119
4750  - SCO compile fixes from Gary E. Miller <gem@rellim.com>
4751  - Compile fix from Darren_Hall@progressive.com
4752  - Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
4753    addresses using getaddrinfo(). Added a configure switch to make the
4754    default lookup mode AF_INET
4755
4756 20000118
4757  - Fixed --with-pid-dir option
4758  - Makefile fix from Gary E. Miller <gem@rellim.com>
4759  - Compile fix for HPUX and Solaris from Andre Lucas
4760    <andre.lucas@dial.pipex.com>
4761
4762 20000117
4763  - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
4764    port, ignore EINVAL errors (Linux) when searching for free port.
4765  - Revert __snprintf -> snprintf aliasing. Apparently Solaris
4766    __snprintf isn't. Report from Theo de Raadt <theo@cvs.openbsd.org>
4767  - Document location of Redhat PAM file in INSTALL.
4768  - Fixed X11 forwarding bug on Linux. libc advertises AF_INET6
4769    INADDR_ANY_INIT addresses via getaddrinfo, but may not be able to
4770    deliver (no IPv6 kernel support)
4771  - Released 1.2.1pre27
4772
4773  - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
4774  - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
4775    <jhuuskon@hytti.uku.fi>
4776  - Fix hang on logout if processes are still using the pty. Needs
4777    further testing.
4778  - Patch from Christos Zoulas <christos@zoulas.com>
4779    - Try $prefix first when looking for OpenSSL.
4780    - Include sys/types.h when including sys/socket.h in test programs
4781  - Substitute PID directory in sshd.8. Suggestion from Andrew
4782    Stribblehill <a.d.stribblehill@durham.ac.uk>
4783
4784 20000116
4785  - Renamed --with-xauth-path to --with-xauth
4786  - Added --with-pid-dir option
4787  - Released 1.2.1pre26
4788
4789  - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
4790  - Fixed broken bugfix for /dev/ptmx on Linux systems which lack
4791    openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
4792
4793 20000115
4794  - Add --with-xauth-path configure directive and explicit test for
4795    /usr/openwin/bin/xauth for Solaris systems. Report from Anders
4796    Nordby <anders@fix.no>
4797  - Fix incorrect detection of /dev/ptmx on Linux systems that lack
4798    openpty. Report from John Seifarth <john@waw.be>
4799  - Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
4800    sys/types.h. Fixes problems on SCO, report from Gary E. Miller
4801    <gem@rellim.com>
4802  - Use __snprintf and __vnsprintf if they are found where snprintf and
4803    vnsprintf are lacking. Suggested by Ben Taylor <bent@shell.clark.net>
4804    and others.
4805
4806 20000114
4807  - Merged OpenBSD IPv6 patch:
4808    - [sshd.c sshd.8 sshconnect.c ssh.h ssh.c servconf.h servconf.c scp.1]
4809      [scp.c packet.h packet.c login.c log.c canohost.c channels.c]
4810      [hostfile.c sshd_config]
4811      ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new
4812      features: sshd allows multiple ListenAddress and Port options. note
4813      that libwrap is not IPv6-ready. (based on patches from
4814      fujiwara@rcac.tdi.co.jp)
4815    - [ssh.c canohost.c]
4816      more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo,
4817      from itojun@
4818    - [channels.c]
4819      listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)
4820    - [packet.h]
4821      allow auth-kerberos for IPv4 only
4822    - [scp.1 sshd.8 servconf.h scp.c]
4823      document -4, -6, and 'ssh -L 2022/::1/22'
4824    - [ssh.c]
4825      'ssh @host' is illegal (null user name), from
4826      karsten@gedankenpolizei.de
4827    - [sshconnect.c]
4828      better error message
4829    - [sshd.c]
4830      allow auth-kerberos for IPv4 only
4831  - Big IPv6 merge:
4832    - Cleanup overrun in sockaddr copying on RHL 6.1
4833    - Replacements for getaddrinfo, getnameinfo, etc based on versions
4834      from patch from KIKUCHI Takahiro <kick@kyoto.wide.ad.jp>
4835    - Replacement for missing structures on systems that lack IPv6
4836    - record_login needed to know about AF_INET6 addresses
4837    - Borrowed more code from OpenBSD: rresvport_af and requisites
4838
4839 20000110
4840  - Fixes to auth-skey to enable it to use the standard OpenSSL libraries
4841
4842 20000107
4843  - New config.sub and config.guess to fix problems on SCO. Supplied
4844    by Gary E. Miller <gem@rellim.com>
4845  - SCO build fix from Gary E. Miller <gem@rellim.com>
4846  - Released 1.2.1pre25
4847
4848 20000106
4849  - Documentation update & cleanup
4850  - Better KrbIV / AFS detection, based on patch from:
4851    Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
4852
4853 20000105
4854  - Fixed annoying DES corruption problem. libcrypt has been
4855    overriding symbols in libcrypto. Removed libcrypt and crypt.h
4856    altogether (libcrypto includes its own crypt(1) replacement)
4857  - Added platform-specific rules for Irix 6.x. Included warning that
4858    they are untested.
4859
4860 20000103
4861  - Add explicit make rules for files proccessed by fixpaths.
4862  - Fix "make install" in RPM spec files. Report from Tenkou N. Hattori
4863    <tnh@kondara.org>
4864  - Removed "nullok" directive from default PAM configuration files.
4865    Added information on enabling EmptyPasswords on openssh+PAM in
4866    UPGRADING file.
4867  - OpenBSD CVS updates
4868    - [ssh-agent.c]
4869      cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and
4870      dgaudet@arctic.org
4871    - [sshconnect.c]
4872      compare correct version for 1.3 compat mode
4873
4874 20000102
4875  - Prevent multiple inclusion of config.h and defines.h. Suggested
4876    by Andre Lucas <andre.lucas@dial.pipex.com>
4877  - Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
4878    <dgaudet@arctic.org>
4879
4880 19991231
4881  - Fix password support on systems with a mixture of shadowed and
4882    non-shadowed passwords (e.g. NIS). Report and fix from
4883    HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
4884  - Fix broken autoconf typedef detection. Report from Marc G.
4885    Fournier <marc.fournier@acadiau.ca>
4886  - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
4887    <Franz.Sirl-kernel@lauterbach.com>
4888  - Prevent typedefs from being compiled more than once. Report from
4889    Marc G. Fournier <marc.fournier@acadiau.ca>
4890  - Fill in ut_utaddr utmp field. Report from Benjamin Charron
4891    <iretd@bigfoot.com>
4892  - Really fix broken default path. Fix from Jim Knoble
4893    <jmknoble@jmknoble.cx>
4894  - Remove test for quad_t. No longer needed.
4895  - Released 1.2.1pre24
4896
4897  - Added support for directory-based lastlogs
4898  - Really fix typedefs, patch from Ben Taylor <bent@clark.net>
4899
4900 19991230
4901  - OpenBSD CVS updates:
4902    - [auth-passwd.c]
4903      check for NULL 1st
4904  - Removed most of the pam code into its own file auth-pam.[ch]. This
4905    cleaned up sshd.c up significantly.
4906  - PAM authentication was incorrectly interpreting
4907    "PermitRootLogin without-password". Report from Matthias Andree
4908    <ma@dt.e-technik.uni-dortmund.de
4909  - Several other cleanups
4910  - Merged Dante SOCKS support patch from David Rankin
4911   <drankin@bohemians.lexington.ky.us>
4912  - Updated documentation with ./configure options
4913  - Released 1.2.1pre23
4914
4915 19991229
4916  - Applied another NetBSD portability patch from David Rankin
4917    <drankin@bohemians.lexington.ky.us>
4918  - Fix --with-default-path option.
4919  - Autodetect perl, patch from David Rankin
4920    <drankin@bohemians.lexington.ky.us>
4921  - Print whether OpenSSH was compiled with RSARef, patch from
4922    Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
4923  - Calls to pam_setcred, patch from Nalin Dahyabhai
4924    <nalin@thermo.stat.ncsu.edu>
4925  - Detect missing size_t and typedef it.
4926  - Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
4927  - Minor Makefile cleaning
4928
4929 19991228
4930  - Replacement for getpagesize() for systems which lack it
4931  - NetBSD login.c compile fix from David Rankin
4932   <drankin@bohemians.lexington.ky.us>
4933  - Fully set ut_tv if present in utmp or utmpx
4934  - Portability fixes for Irix 5.3 (now compiles OK!)
4935  - autoconf and other misc cleanups
4936  - Merged AIX patch from Darren Hall <dhall@virage.org>
4937  - Cleaned up defines.h
4938  - Released 1.2.1pre22
4939
4940 19991227
4941  - Automatically correct paths in manpages and configuration files. Patch
4942    and script from Andre Lucas <andre.lucas@dial.pipex.com>
4943  - Removed credits from README to CREDITS file, updated.
4944  - Added --with-default-path to specify custom path for server
4945  - Removed #ifdef trickery from acconfig.h into defines.h
4946  - PAM bugfix. PermitEmptyPassword was being ignored.
4947  - Fixed PAM config files to allow empty passwords if server does.
4948  - Explained spurious PAM auth warning workaround in UPGRADING
4949  - Use last few chars of tty line as ut_id
4950  - New SuSE RPM spec file from Chris Saia <csaia@wtower.com>
4951  - OpenBSD CVS updates:
4952    - [packet.h auth-rhosts.c]
4953      check format string for packet_disconnect and packet_send_debug, too
4954    - [channels.c]
4955      use packet_get_maxsize for channels. consistence.
4956
4957 19991226
4958  - Enabled utmpx support by default for Solaris
4959  - Cleanup sshd.c PAM a little more
4960  - Revised RPM package to include Jim Knoble's <jmknoble@jmknoble.cx>
4961    X11 ssh-askpass program.
4962  - Disable logging of PAM success and failures, PAM is verbose enough.
4963    Unfortunatly there is currently no way to disable auth failure
4964    messages. Mention this in UPGRADING file and sent message to PAM
4965    developers
4966  - OpenBSD CVS update:
4967    - [ssh-keygen.1 ssh.1]
4968      remove ref to .ssh/random_seed, mention .ssh/environment in
4969      .Sh FILES, too
4970  - Released 1.2.1pre21
4971  - Fixed implicit '.' in default path, report from Jim Knoble
4972    <jmknoble@jmknoble.cx>
4973  - Redhat RPM spec fixes from Jim Knoble <jmknoble@jmknoble.cx>
4974
4975 19991225
4976  - More fixes from Andre Lucas <andre.lucas@dial.pipex.com>
4977  - Cleanup of auth-passwd.c for shadow and MD5 passwords
4978  - Cleanup and bugfix of PAM authentication code
4979  - Released 1.2.1pre20
4980
4981  - Merged fixes from Ben Taylor <bent@clark.net>
4982  - Fixed configure support for PAM. Reported by Naz <96na@eng.cam.ac.uk>
4983  - Disabled logging of PAM password authentication failures when password
4984    is empty. (e.g start of authentication loop). Reported by Naz
4985    <96na@eng.cam.ac.uk>)
4986
4987 19991223
4988  - Merged later HPUX patch from Andre Lucas
4989    <andre.lucas@dial.pipex.com>
4990  - Above patch included better utmpx support from Ben Taylor
4991    <bent@clark.net>
4992
4993 19991222
4994  - Fix undefined fd_set type in ssh.h from Povl H. Pedersen
4995    <pope@netguide.dk>
4996  - Fix login.c breakage on systems which lack ut_host in struct
4997    utmp. Reported by Willard Dawson <willard.dawson@sbs.siemens.com>
4998
4999 19991221
5000  - Integration of large HPUX patch from Andre Lucas
5001    <andre.lucas@dial.pipex.com>. Integrating it had a few other
5002    benefits:
5003    - Ability to disable shadow passwords at configure time
5004    - Ability to disable lastlog support at configure time
5005    - Support for IP address in $DISPLAY
5006  - OpenBSD CVS update:
5007    - [sshconnect.c]
5008    say "REMOTE HOST IDENTIFICATION HAS CHANGED"
5009  - Fix DISABLE_SHADOW support
5010  - Allow MD5 passwords even if shadow passwords are disabled
5011  - Release 1.2.1pre19
5012
5013 19991218
5014  - Redhat init script patch from Chun-Chung Chen
5015    <cjj@u.washington.edu>
5016  - Avoid breakage on systems without IPv6 headers
5017
5018 19991216
5019  - Makefile changes for Solaris from Peter Kocks
5020    <peter.kocks@baygate.com>
5021  - Minor updates to docs
5022  - Merged OpenBSD CVS changes:
5023    - [authfd.c ssh-agent.c]
5024      keysize warnings talk about identity files
5025    - [packet.c]
5026      "Connection closed by x.x.x.x": fatal() -> log()
5027  - Correctly handle empty passwords in shadow file. Patch from:
5028    "Chris, the Young One" <cky@pobox.com>
5029  - Released 1.2.1pre18
5030
5031 19991215
5032  - Integrated patchs from Juergen Keil <jk@tools.de>
5033    - Avoid void* pointer arithmatic
5034    - Use LDFLAGS correctly
5035    - Fix SIGIO error in scp
5036    - Simplify status line printing in scp
5037  - Added better test for inline functions compiler support from
5038    Darren_Hall@progressive.com
5039
5040 19991214
5041  - OpenBSD CVS Changes
5042    - [canohost.c]
5043      fix get_remote_port() and friends for sshd -i;
5044      Holger.Trapp@Informatik.TU-Chemnitz.DE
5045    - [mpaux.c]
5046      make code simpler. no need for memcpy. niels@ ok
5047    - [pty.c]
5048      namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
5049      fix proto; markus
5050    - [ssh.1]
5051       typo; mark.baushke@solipsa.com
5052    - [channels.c ssh.c ssh.h sshd.c]
5053      type conflict for 'extern Type *options' in channels.c; dot@dotat.at
5054    - [sshconnect.c]
5055      move checking of hostkey into own function.
5056    - [version.h]
5057      OpenSSH-1.2.1
5058  - Clean up broken includes in pty.c
5059  - Some older systems don't have poll.h, they use sys/poll.h instead
5060  - Doc updates
5061
5062 19991211
5063  - Fix compilation on systems with AFS. Reported by
5064    aloomis@glue.umd.edu
5065  - Fix installation on Solaris. Reported by
5066    Gordon Rowell <gordonr@gormand.com.au>
5067  - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
5068    patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
5069  - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
5070  - Compile fix from David Agraz <dagraz@jahoopa.com>
5071  - Avoid compiler warning in bsd-snprintf.c
5072  - Added pam_limits.so to default PAM config. Suggested by
5073    Jim Knoble <jmknoble@jmknoble.cx>
5074
5075 19991209
5076  - Import of patch from Ben Taylor <bent@clark.net>:
5077    - Improved PAM support
5078    - "uninstall" rule for Makefile
5079    - utmpx support
5080    - Should fix PAM problems on Solaris
5081  - OpenBSD CVS updates:
5082    - [readpass.c]
5083      avoid stdio; based on work by markus, millert, and I
5084    - [sshd.c]
5085      make sure the client selects a supported cipher
5086    - [sshd.c]
5087      fix sighup handling.  accept would just restart and daemon handled
5088      sighup only after the next connection was accepted. use poll on
5089      listen sock now.
5090    - [sshd.c]
5091      make that a fatal
5092  - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
5093    to fix libwrap support on NetBSD
5094  - Released 1.2pre17
5095
5096 19991208
5097  - Compile fix for Solaris with /dev/ptmx from
5098    David Agraz <dagraz@jahoopa.com>
5099
5100 19991207
5101  - sshd Redhat init script patch from Jim Knoble <jmknoble@jmknoble.cx>
5102    fixes compatability with 4.x and 5.x
5103  - Fixed default SSH_ASKPASS
5104  - Fix PAM account and session being called multiple times. Problem
5105    reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
5106  - Merged more OpenBSD changes:
5107    - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
5108      move atomicio into it's own file.  wrap all socket write()s which
5109      were doing write(sock, buf, len) != len, with atomicio() calls.
5110    - [auth-skey.c]
5111      fd leak
5112    - [authfile.c]
5113      properly name fd variable
5114    - [channels.c]
5115      display great hatred towards strcpy
5116    - [pty.c pty.h sshd.c]
5117      use openpty() if it exists (it does on BSD4_4)
5118    - [tildexpand.c]
5119      check for ~ expansion past MAXPATHLEN
5120  - Modified helper.c to use new atomicio function.
5121  - Reformat Makefile a little
5122  - Moved RC4 routines from rc4.[ch] into helper.c
5123  - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
5124  - Updated SuSE spec from Chris Saia <csaia@wtower.com>
5125  - Tweaked Redhat spec
5126  - Clean up bad imports of a few files (forgot -kb)
5127  - Released 1.2pre16
5128
5129 19991204
5130  - Small cleanup of PAM code in sshd.c
5131  - Merged OpenBSD CVS changes:
5132    - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
5133      move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
5134    - [auth-rsa.c]
5135      warn only about mismatch if key is _used_
5136      warn about keysize-mismatch with log() not error()
5137      channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
5138      ports are u_short
5139    - [hostfile.c]
5140      indent, shorter warning
5141    - [nchan.c]
5142      use error() for internal errors
5143    - [packet.c]
5144      set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
5145      serverloop.c
5146      indent
5147    - [ssh-add.1 ssh-add.c ssh.h]
5148      document $SSH_ASKPASS, reasonable default
5149    - [ssh.1]
5150      CheckHostIP is not available for connects via proxy command
5151    - [sshconnect.c]
5152      typo
5153      easier to read client code for passwd and skey auth
5154      turn of checkhostip for proxy connects, since we don't know the remote ip
5155
5156 19991126
5157  - Add definition for __P()
5158  - Added [v]snprintf() replacement for systems that lack it
5159
5160 19991125
5161  - More reformatting merged from OpenBSD CVS
5162  - Merged OpenBSD CVS changes:
5163    - [channels.c]
5164      fix packet_integrity_check() for !have_hostname_in_open.
5165      report from mrwizard@psu.edu via djm@ibs.com.au
5166    - [channels.c]
5167      set SO_REUSEADDR and SO_LINGER for forwarded ports.
5168      chip@valinux.com via damien@ibs.com.au
5169    - [nchan.c]
5170      it's not an error() if shutdown_write failes in nchan.
5171    - [readconf.c]
5172      remove dead #ifdef-0-code
5173    - [readconf.c servconf.c]
5174      strcasecmp instead of tolower
5175    - [scp.c]
5176      progress meter overflow fix from damien@ibs.com.au
5177    - [ssh-add.1 ssh-add.c]
5178      SSH_ASKPASS support
5179    - [ssh.1 ssh.c]
5180      postpone fork_after_authentication until command execution,
5181      request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
5182      plus: use daemon() for backgrounding
5183  - Added BSD compatible install program and autoconf test, thanks to
5184    Niels Kristian Bech Jensen <nkbj@image.dk>
5185  - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
5186  - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
5187  - Release 1.2pre15
5188
5189 19991124
5190  - Merged very large OpenBSD source code reformat
5191  - OpenBSD CVS updates
5192    - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
5193      [ssh.h sshd.8 sshd.c]
5194      syslog changes:
5195      * Unified Logmessage for all auth-types, for success and for failed
5196      * Standard connections get only ONE line in the LOG when level==LOG:
5197        Auth-attempts are logged only, if authentication is:
5198           a) successfull or
5199           b) with passwd or
5200           c) we had more than AUTH_FAIL_LOG failues
5201      * many log() became verbose()
5202      * old behaviour with level=VERBOSE
5203    - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
5204      tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
5205      messages. allows use of s/key in windows (ttssh, securecrt) and
5206      ssh-1.2.27 clients without 'ssh -v', ok: niels@
5207    - [sshd.8]
5208      -V, for fallback to openssh in SSH2 compatibility mode
5209    - [sshd.c]
5210      fix sigchld race; cjc5@po.cwru.edu
5211
5212 19991123
5213  - Added SuSE package files from Chris Saia <csaia@wtower.com>
5214  - Restructured package-related files under packages/*
5215  - Added generic PAM config
5216  - Numerous little Solaris fixes
5217  - Add recommendation to use GNU make to INSTALL document
5218
5219 19991122
5220  - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
5221  - OpenBSD CVS Changes
5222    - [ssh-keygen.c]
5223      don't create ~/.ssh only if the user wants to store the private
5224      key there. show fingerprint instead of public-key after
5225      keygeneration. ok niels@
5226  - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
5227  - Added timersub() macro
5228  - Tidy RCSIDs of bsd-*.c
5229  - Added autoconf test and macro to deal with old PAM libraries
5230    pam_strerror definition (one arg vs two).
5231  - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
5232  - Retry /dev/urandom reads interrupted by signal (report from
5233    Robert Hardy <rhardy@webcon.net>)
5234  - Added a setenv replacement for systems which lack it
5235  - Only display public key comment when presenting ssh-askpass dialog
5236  - Released 1.2pre14
5237
5238  - Configure, Make and changelog corrections from Tudor Bosman
5239    <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
5240
5241 19991121
5242  - OpenBSD CVS Changes:
5243    - [channels.c]
5244      make this compile, bad markus
5245    - [log.c readconf.c servconf.c ssh.h]
5246      bugfix: loglevels are per host in clientconfig,
5247      factor out common log-level parsing code.
5248    - [servconf.c]
5249      remove unused index (-Wall)
5250    - [ssh-agent.c]
5251      only one 'extern char *__progname'
5252    - [sshd.8]
5253      document SIGHUP, -Q to synopsis
5254    - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
5255      [channels.c clientloop.c]
5256      SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
5257      [hope this time my ISP stays alive during commit]
5258    - [OVERVIEW README] typos; green@freebsd
5259    - [ssh-keygen.c]
5260      replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
5261      exit if writing the key fails (no infinit loop)
5262      print usage() everytime we get bad options
5263    - [ssh-keygen.c] overflow, djm@mindrot.org
5264    - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
5265
5266 19991120
5267  - Merged more Solaris support from Marc G. Fournier
5268    <marc.fournier@acadiau.ca>
5269  - Wrote autoconf tests for integer bit-types
5270  - Fixed enabling kerberos support
5271  - Fix segfault in ssh-keygen caused by buffer overrun in filename
5272    handling.
5273
5274 19991119
5275  - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
5276  - Merged OpenBSD CVS changes
5277    - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
5278      more %d vs. %s in fmt-strings
5279    - [authfd.c]
5280      Integers should not be printed with %s
5281  - EGD uses a socket, not a named pipe. Duh.
5282  - Fix includes in fingerprint.c
5283  - Fix scp progress bar bug again.
5284  - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
5285    David Rankin <drankin@bohemians.lexington.ky.us>
5286  - Added autoconf option to enable Kerberos 4 support (untested)
5287  - Added autoconf option to enable AFS support (untested)
5288  - Added autoconf option to enable S/Key support (untested)
5289  - Added autoconf option to enable TCP wrappers support (compiles OK)
5290  - Renamed BSD helper function files to bsd-*
5291  - Added tests for login and daemon and enable OpenBSD replacements for
5292    when they are absent.
5293  - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
5294
5295 19991118
5296  - Merged OpenBSD CVS changes
5297    - [scp.c] foregroundproc() in scp
5298    - [sshconnect.h] include fingerprint.h
5299    - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
5300      changes.
5301    - [ssh.1] Spell my name right.
5302  - Added openssh.com info to README
5303
5304 19991117
5305  - Merged OpenBSD CVS changes
5306    - [ChangeLog.Ylonen] noone needs this anymore
5307    - [authfd.c] close-on-exec for auth-socket, ok deraadt
5308    - [hostfile.c]
5309      in known_hosts key lookup the entry for the bits does not need
5310      to match, all the information is contained in n and e. This
5311      solves the problem with buggy servers announcing the wrong
5312      modulus length.  markus and me.
5313    - [serverloop.c]
5314      bugfix: check for space if child has terminated, from:
5315      iedowse@maths.tcd.ie
5316    - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
5317      [fingerprint.c fingerprint.h]
5318      rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
5319    - [ssh-agent.1] typo
5320    - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
5321    - [sshd.c]
5322      force logging to stderr while loading private key file
5323      (lost while converting to new log-levels)
5324
5325 19991116
5326  - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
5327  - Merged OpenBSD CVS changes:
5328    - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
5329      [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
5330      the keysize of rsa-parameter 'n' is passed implizit,
5331      a few more checks and warnings about 'pretended' keysizes.
5332    - [cipher.c cipher.h packet.c packet.h sshd.c]
5333      remove support for cipher RC4
5334    - [ssh.c]
5335      a note for legay systems about secuity issues with permanently_set_uid(),
5336      the private hostkey and ptrace()
5337    - [sshconnect.c]
5338      more detailed messages about adding and checking hostkeys
5339
5340 19991115
5341  - Merged OpenBSD CVS changes:
5342    - [ssh-add.c] change passphrase loop logic and remove ref to
5343      $DISPLAY, ok niels
5344  - Changed to ssh-add.c broke askpass support. Revised it to be a little more
5345    modular.
5346  - Revised autoconf support for enabling/disabling askpass support.
5347  - Merged more OpenBSD CVS changes:
5348    [auth-krb4.c]
5349      - disconnect if getpeername() fails
5350      - missing xfree(*client)
5351    [canohost.c]
5352      - disconnect if getpeername() fails
5353      - fix comment: we _do_ disconnect if ip-options are set
5354    [sshd.c]
5355      - disconnect if getpeername() fails
5356      - move checking of remote port to central place
5357    [auth-rhosts.c] move checking of remote port to central place
5358    [log-server.c] avoid extra fd per sshd, from millert@
5359    [readconf.c] print _all_ bad config-options in ssh(1), too
5360    [readconf.h] print _all_ bad config-options in ssh(1), too
5361    [ssh.c] print _all_ bad config-options in ssh(1), too
5362    [sshconnect.c] disconnect if getpeername() fails
5363  - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
5364  - Various small cleanups to bring diff (against OpenBSD) size down.
5365  - Merged more Solaris compability from Marc G. Fournier
5366    <marc.fournier@acadiau.ca>
5367  - Wrote autoconf tests for __progname symbol
5368  - RPM spec file fixes from Jim Knoble <jmknoble@jmknoble.cx>
5369  - Released 1.2pre12
5370
5371  - Another OpenBSD CVS update:
5372    - [ssh-keygen.1] fix .Xr
5373
5374 19991114
5375  - Solaris compilation fixes (still imcomplete)
5376
5377 19991113
5378  - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
5379    - Don't install config files if they already exist
5380    - Fix inclusion of additional preprocessor directives from acconfig.h
5381  - Removed redundant inclusions of config.h
5382  - Added 'Obsoletes' lines to RPM spec file
5383  - Merged OpenBSD CVS changes:
5384    - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
5385    - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
5386      totalsize, ok niels,aaron
5387  - Delay fork (-f option) in ssh until after port forwarded connections
5388    have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
5389  - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
5390  - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
5391  - Tidied default config file some more
5392  - Revised Redhat initscript to fix bug: sshd (re)start would fail
5393    if executed from inside a ssh login.
5394
5395 19991112
5396  - Merged changes from OpenBSD CVS
5397    - [sshd.c] session_key_int may be zero
5398    - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
5399      IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
5400      deraadt,millert
5401  - Brought default sshd_config more in line with OpenBSD's
5402  - Grab server in gnome-ssh-askpass (Debian bug #49872)
5403  - Released 1.2pre10
5404
5405  - Added INSTALL documentation
5406  - Merged yet more changes from OpenBSD CVS
5407    - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
5408      [ssh.c ssh.h sshconnect.c sshd.c]
5409      make all access to options via 'extern Options options'
5410      and 'extern ServerOptions options' respectively;
5411      options are no longer passed as arguments:
5412       * make options handling more consistent
5413       * remove #include "readconf.h" from ssh.h
5414       * readconf.h is only included if necessary
5415    - [mpaux.c] clear temp buffer
5416    - [servconf.c] print _all_ bad options found in configfile
5417  - Make ssh-askpass support optional through autoconf
5418  - Fix nasty division-by-zero error in scp.c
5419  - Released 1.2pre11
5420
5421 19991111
5422  - Added (untested) Entropy Gathering Daemon (EGD) support
5423  - Fixed /dev/urandom fd leak (Debian bug #49722)
5424  - Merged OpenBSD CVS changes:
5425    - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
5426    - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
5427    - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
5428  - Fix integer overflow which was messing up scp's progress bar for large
5429    file transfers. Fix submitted to OpenBSD developers. Report and fix
5430    from Kees Cook <cook@cpoint.net>
5431  - Merged more OpenBSD CVS changes:
5432    - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
5433      + krb-cleanup cleanup
5434    - [clientloop.c log-client.c log-server.c ]
5435      [readconf.c readconf.h servconf.c servconf.h ]
5436      [ssh.1 ssh.c ssh.h sshd.8]
5437      add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
5438      obsoletes QuietMode and FascistLogging in sshd.
5439    - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
5440      allow session_key_int != sizeof(session_key)
5441      [this should fix the pre-assert-removal-core-files]
5442  - Updated default config file to use new LogLevel option and to improve
5443    readability
5444
5445 19991110
5446  - Merged several minor fixes:
5447    - ssh-agent commandline parsing
5448    - RPM spec file now installs ssh setuid root
5449    - Makefile creates libdir
5450    - Merged beginnings of Solaris compability from Marc G. Fournier
5451      <marc.fournier@acadiau.ca>
5452
5453 19991109
5454  - Autodetection of SSL/Crypto library location via autoconf
5455  - Fixed location of ssh-askpass to follow autoconf
5456  - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
5457  - Autodetection of RSAref library for US users
5458  - Minor doc updates
5459  - Merged OpenBSD CVS changes:
5460    - [rsa.c] bugfix: use correct size for memset()
5461    - [sshconnect.c] warn if announced size of modulus 'n' != real size
5462  - Added GNOME passphrase requestor (use --with-gnome-askpass)
5463  - RPM build now creates subpackages
5464  - Released 1.2pre9
5465
5466 19991108
5467  - Removed debian/ directory. This is now being maintained separately.
5468  - Added symlinks for slogin in RPM spec file
5469  - Fixed permissions on manpages in RPM spec file
5470  - Added references to required libraries in README file
5471  - Removed config.h.in from CVS
5472  - Removed pwdb support (better pluggable auth is provided by glibc)
5473  - Made PAM and requisite libdl optional
5474  - Removed lots of unnecessary checks from autoconf
5475  - Added support and autoconf test for openpty() function (Unix98 pty support)
5476  - Fix for scp not finding ssh if not installed as /usr/bin/ssh
5477  - Added TODO file
5478  - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
5479    - Added ssh-askpass program
5480    - Added ssh-askpass support to ssh-add.c
5481    - Create symlinks for slogin on install
5482    - Fix "distclean" target in makefile
5483    - Added example for ssh-agent to manpage
5484    - Added support for PAM_TEXT_INFO messages
5485    - Disable internal /etc/nologin support if PAM enabled
5486  - Merged latest OpenBSD CVS changes:
5487    - [all] replace assert() with error, fatal or packet_disconnect
5488    - [sshd.c] don't send fail-msg but disconnect if too many authentication
5489      failures
5490    - [sshd.c] remove unused argument. ok dugsong
5491    - [sshd.c] typo
5492    - [rsa.c] clear buffers used for encryption. ok: niels
5493    - [rsa.c] replace assert() with error, fatal or packet_disconnect
5494    - [auth-krb4.c] remove unused argument. ok dugsong
5495  - Fixed coredump after merge of OpenBSD rsa.c patch
5496  - Released 1.2pre8
5497
5498 19991102
5499  - Merged change from OpenBSD CVS
5500   - One-line cleanup in sshd.c
5501
5502 19991030
5503  - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
5504  - Merged latest updates for OpenBSD CVS:
5505    - channels.[ch] - remove broken x11 fix and document istate/ostate
5506    - ssh-agent.c - call setsid() regardless of argv[]
5507    - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
5508  - Documentation cleanups
5509  - Renamed README -> README.Ylonen
5510  - Renamed README.openssh ->README
5511
5512 19991029
5513  - Renamed openssh* back to ssh* at request of Theo de Raadt
5514  - Incorporated latest changes from OpenBSD's CVS
5515  - Integrated Makefile patch from  Niels Kristian Bech Jensen <nkbj@image.dk>
5516  - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
5517  - Make distclean now removed configure script
5518  - Improved PAM logging
5519  - Added some debug() calls for PAM
5520  - Removed redundant subdirectories
5521  - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
5522    building on Debian.
5523  - Fixed off-by-one error in PAM env patch
5524  - Released 1.2pre6
5525
5526 19991028
5527  - Further PAM enhancements.
5528    - Much cleaner
5529    - Now uses account and session modules for all logins.
5530  - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
5531    - Build fixes
5532    - Autoconf
5533    - Change binary names to open*
5534  - Fixed autoconf script to detect PAM on RH6.1
5535  - Added tests for libpwdb, and OpenBSD functions to autoconf
5536  - Released 1.2pre4
5537
5538  - Imported latest OpenBSD CVS code
5539  - Updated README.openssh
5540  - Released 1.2pre5
5541
5542 19991027
5543  - Adapted PAM patch.
5544  - Released 1.0pre2
5545
5546  - Excised my buggy replacements for strlcpy and mkdtemp
5547  - Imported correct OpenBSD strlcpy and mkdtemp routines.
5548  - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
5549  - Picked up correct version number from OpenBSD
5550  - Added sshd.pam PAM configuration file
5551  - Added sshd.init Redhat init script
5552  - Added openssh.spec RPM spec file
5553  - Released 1.2pre3
5554
5555 19991026
5556  - Fixed include paths of OpenSSL functions
5557  - Use OpenSSL MD5 routines
5558  - Imported RC4 code from nanocrypt
5559  - Wrote replacements for OpenBSD arc4random* functions
5560  - Wrote replacements for strlcpy and mkdtemp
5561  - Released 1.0pre1
5562
5563 $Id$
This page took 0.477188 seconds and 5 git commands to generate.