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