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