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