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