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