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