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