]> andersk Git - openssh.git/blob - ChangeLog
39e3a287cc17f9b82673944aa12ccf85c022734e
[openssh.git] / ChangeLog
1 20030916
2  - (dtucker) [acconfig.h configure.ac defines.h session.c] Bug #252: Retrieve
3    PATH (or SUPATH) and UMASK from /etc/default/login on platforms that have it
4    (eg Solaris, Reliant Unix).  Patch from Robert.Dahlem at siemens.com.  
5    ok djm@
6  - (bal) OpenBSD Sync
7    - deraadt@cvs.openbsd.org 2003/09/16 03:03:47
8      [buffer.c]
9      do not expand buffer before attempting to reallocate it; markus ok
10  - (tim) [configure.ac] Fix portability issues.
11  - (bal) Missed dead header in inet_ntoa.c
12
13 20030914
14  - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
15    the regression tests from running with Solaris' make.  Patch from Brian
16    Poole (raj at cerias.purdue.edu).
17  - (dtucker) [regress/Makefile] AIX's make doesn't like " +=", so replace
18    with vanilla "=".
19
20 20030913
21  - (dtucker) [regress/agent-timeout.sh] Timeout of 5 sec is borderline for
22    slower hosts, increase to 10 sec.
23  - (dtucker) [auth-passwd.c] On AIX, call setauthdb() before loginsuccess(),
24    required to correctly reset failed login count when using a password
25    registry other than "files" (eg LDAP, see bug #543).
26  - (tim) [configure.ac] define WITH_ABBREV_NO_TTY for SCO.
27    Report by Roger Cornelius.
28  - (dtucker) [auth-pam.c] Use SSHD_PAM_SERVICE for PAM service name, patch
29    from cjwatson at debian.org.
30
31 20030912
32  - (tim) [regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
33  - (tim) [Makefile.in] only mkdir regress if it does not exist.
34  - (tim) [regress/yes-head.sh] shell portability fix.
35
36 20030911
37  - (dtucker) [configure.ac] Bug #588, #615: Move other libgen tests to after
38    the dirname test, to allow a broken dirname to be detected correctly.
39    Based partially on patch supplied by alex.kiernan at thus.net.  ok djm@
40  - (tim) [configure.ac] Move libgen tests to before libwrap to unbreak
41    UnixWare 2.03 using --with-tcp-wrappers.
42  - (tim) [configure.ac] Prefer setuid/setgid on UnixWare and Open Server.
43  - (tim) [regress/agent-ptrace.sh regress/dynamic-forward.sh
44    regress/sftp-cmds.sh regress/stderr-after-eof.sh regress/test-exec.sh]
45    no longer depends on which(1). patch by dtucker@
46
47 20030910
48  - (dtucker) [configure.ac] Bug #636: Add support for Cray's new X1 machine.
49    Patch from wendyp at cray.com.
50  - (dtucker) [configure.ac] Part of bug #615: tcsendbreak might be a macro.
51  - (dtucker) [regressh/yes-head.sh] Some platforms (eg Solaris) don't have
52    "yes".
53
54 20030909
55  - (tim) [regress/Makefile] Fixes for building outside of a read-only
56    source tree.
57  - (tim) [regress/agent-timeout.sh] s/TIMEOUT/SSHAGENT_TIMEOUT/ Fixes conflict
58    with shell read-only variable.
59  - (tim) [regress/sftp-badcmds.sh regress/sftp-cmds.sh] Fix errors like
60    UX:rm: ERROR: Cannot remove '.' or '..'
61
62 20030908
63  - (tim) [configure.ac openbsd-compat/getrrsetbyname.c] wrap _getshort and
64    _getlong in #ifndef
65  - (tim) [configure.ac acconfig.h openbsd-compat/getrrsetbyname.c] test for
66    HEADER.ad in arpa/nameser.h
67  - (tim) [ssh-keygen.c] s/PATH_MAX/MAXPATHLEN/ ok mouring@
68
69 20030907
70  - (dtucker) [agent-ptrace.sh dynamic-forward.sh (all regress/)]
71    Put "which" inside quotes.
72  - (dtucker) [dynamic-forward.sh forwarding.sh sftp-batch.sh (all regress/)]
73    Add ${EXEEXT}: required to work on Cygwin.
74  - (dtucker) [regress/sftp-batch.sh] Make temporary batch file name more
75    distinctive, so "rm ${BATCH}.*" doesn't match the script itself.
76  - (dtucker) [regress/sftp-cmds.sh] Skip quoted file test on Cygwin.
77  - (dtucker) [openbsd-compat/xcrypt.c] #elsif -> #elif
78  - (dtucker) [acconfig.h] Typo.
79  - (dtucker) [CREDITS Makefile.in configure.ac mdoc2man.awk mdoc2man.pl]
80    Replace mdoc2man.pl with mdoc2man.awk, provided by Peter Stuge.
81
82 20030906
83  - (dtucker) [acconfig.h configure.ac uidswap.c] Prefer setuid/setgid on AIX.
84
85 20030905
86  - (dtucker) [Makefile.in] Add distclean target for regress/, fix clean target.
87
88 20030904
89  - (dtucker) Portablize regression tests.  Parts contributed by Roumen
90    Petrov, David M. Williams and Corinna Vinschen.
91    - [Makefile.in] Add "make tests" target and "make clean" hooks.
92    - [regress/agent-getpeereid.sh] Skip test on platforms that don't support
93      getpeereid.
94    - [regress/agent-ptrace.sh] Skip tests if platform doesn't support it or
95      gdb cannot be found.
96    - [regress/reconfigure/sh] Make path to sshd fully qualified if required.
97    - [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
98      it).  The sparse file will take less disk space too.
99    - [regress/sftp-cmds.sh] Ensure files used for test are readable.
100    - [regress/stderr-after-eof.sh] Search for a usable checksum program.
101    - [regress/sftp-badcmds.sh regress/sftp-cmds.sh regress/sftp.sh
102      regress/ssh-com-client.sh regress/ssh-com-sftp.sh regress/stderr-data.sh
103      regress/transfer.sh] Use ${EXEEXT} where appropriate.
104    - [regress/sftp.sh regress/ssh-com-sftp.sh] Remove dependency on /dev/stdin.
105    - [regress/agent-ptrace.sh regress/agent-timeout.sh]
106      "grep -q" -> "grep >/dev/null"
107    - [regress/agent.sh regress/proto-version.sh regress/ssh-com.sh
108      regress/test-exec.sh] Handle different ways of echoing without newlines.
109    - [regress/dynamic-forward.sh] Some "which" programs output on stderr.
110    - [regress/sftp-cmds.sh] Use portable "test" option.
111    - [regress/test-exec.sh] Use sudo, search for "whoami" equivalent, always
112      use Strictmodes no, wait longer for sshd startup.
113    - [regress/Makefile] Remove BSDisms.
114    - [regress/README.regress] Add a basic readme.
115    - [Makefile.in regress/agent-getpeereid.sh] config.h is now in $BUILDDIR
116      not $OBJ.
117    - [Makefile.in regress/agent-ptrace] Fix minor regress issues on Cygwin.
118
119 20030903
120  - (djm) OpenBSD CVS Sync
121    - markus@cvs.openbsd.org 2003/08/26 09:58:43
122      [auth-passwd.c auth.c auth.h auth1.c auth2-none.c auth2-passwd.c]
123      [auth2.c monitor.c]
124      fix passwd auth for 'username leaks via timing'; with djm@, original 
125      patches from solar
126    - markus@cvs.openbsd.org 2003/08/28 12:54:34
127      [auth.h]
128      remove kerberos support from ssh1, since it has been replaced with GSSAPI;
129      but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
130    - markus@cvs.openbsd.org 2003/09/02 16:40:29
131      [version.h]
132      enter 3.7
133    - jmc@cvs.openbsd.org 2003/09/02 18:50:06
134      [sftp.1 ssh_config.5]
135      escape punctuation;
136      ok deraadt@
137
138 20030902
139  - (djm) OpenBSD CVS Sync
140    - deraadt@cvs.openbsd.org 2003/08/24 17:36:51
141      [auth2-gss.c]
142      64 bit cleanups; markus ok
143    - markus@cvs.openbsd.org 2003/08/28 12:54:34
144      [auth-krb5.c auth.h auth1.c monitor.c monitor.h monitor_wrap.c]
145      [monitor_wrap.h readconf.c servconf.c session.c ssh_config.5]
146      [sshconnect1.c sshd.c sshd_config sshd_config.5]
147      remove kerberos support from ssh1, since it has been replaced with GSSAPI;
148      but keep kerberos passwd auth for ssh1 and 2; ok djm, hin, henning, ...
149    - markus@cvs.openbsd.org 2003/08/29 10:03:15
150      [compat.c compat.h]
151      SSH_BUG_K5USER is unused; ok henning@
152    - markus@cvs.openbsd.org 2003/08/29 10:04:36
153      [channels.c nchan.c]
154      be less chatty; debug -> debug2, cleanup; ok henning@
155    - markus@cvs.openbsd.org 2003/08/31 10:26:04
156      [progressmeter.c]
157      pass file_size + 1 to snprintf: fixes printing of truncated
158      file names; fix based on patch/report from sturm@;
159    - markus@cvs.openbsd.org 2003/08/31 12:14:22
160      [progressmeter.c]
161      do write to buf[-1]
162    - markus@cvs.openbsd.org 2003/08/31 13:29:05
163      [session.c]
164      call ssh_gssapi_storecreds conditionally from do_exec(); 
165      with sxw@inf.ed.ac.uk
166    - markus@cvs.openbsd.org 2003/08/31 13:30:18
167      [gss-serv.c]
168      correct string termination in parse_ename(); sxw@inf.ed.ac.uk
169    - markus@cvs.openbsd.org 2003/08/31 13:31:57
170      [gss-serv.c]
171      whitspace KNF
172    - markus@cvs.openbsd.org 2003/09/01 09:50:04
173      [sshd_config.5]
174      gss kex is not supported; sxw@inf.ed.ac.uk
175    - markus@cvs.openbsd.org 2003/09/01 12:50:46
176      [readconf.c]
177      rm gssapidelegatecreds alias; never supported before
178    - markus@cvs.openbsd.org 2003/09/01 13:52:18
179      [ssh.h]
180      rm whitespace
181    - markus@cvs.openbsd.org 2003/09/01 18:15:50
182      [readconf.c readconf.h servconf.c servconf.h ssh.c]
183      remove unused kerberos code; ok henning@
184    - markus@cvs.openbsd.org 2003/09/01 20:44:54
185      [auth2-gss.c]
186      fix leak
187  - (djm) Don't initialise pam_conv structures inline. Avoids HP/UX compiler
188    error. Part of Bug #423, patch from  michael_steffens AT hp.com
189  - (djm) Bug #423: reorder setting of PAM_TTY and calling of PAM session 
190    management (now done in do_setusercontext). Largely from 
191    michael_steffens AT hp.com
192  - (djm) Fix openbsd-compat/ again - remove references to strl(cpy|cat).h 
193  
194 20030829
195  - (bal) openbsd-compat/ clean up.  Considate headers, add in Id on our
196    files, and added missing license to header.
197
198 20030826
199  - (djm) Bug #629: Mark ssh_config option "pamauthenticationviakbdint"
200    as deprecated. Remove mention from README.privsep. Patch from 
201    aet AT cc.hut.fi
202  - (dtucker) OpenBSD CVS Sync
203    - markus@cvs.openbsd.org 2003/08/22 10:56:09
204      [auth2.c auth2-gss.c auth.h compat.c compat.h gss-genr.c gss-serv-krb5.c
205      gss-serv.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h readconf.c
206      readconf.h servconf.c servconf.h session.c session.h ssh-gss.h
207      ssh_config.5 sshconnect2.c sshd_config sshd_config.5]
208      support GSS API user authentication; patches from Simon Wilkinson,
209      stripped down and tested by Jakob and myself.
210    - markus@cvs.openbsd.org 2003/08/22 13:20:03
211      [sshconnect2.c]
212      remove support for "kerberos-2@ssh.com"
213    - markus@cvs.openbsd.org 2003/08/22 13:22:27
214      [auth2.c] (auth2-krb5.c removed)
215      nuke "kerberos-2@ssh.com"
216    - markus@cvs.openbsd.org 2003/08/22 20:55:06
217      [LICENCE]
218      add Simon Wilkinson
219    - deraadt@cvs.openbsd.org 2003/08/24 17:36:52
220      [monitor.c monitor_wrap.c sshconnect2.c]
221      64 bit cleanups; markus ok
222    - fgsch@cvs.openbsd.org 2003/08/25 08:13:09
223      [sftp-int.c]
224      fix div by zero when listing for filename lengths longer than width.
225      markus@ ok.
226    - djm@cvs.openbsd.org 2003/08/25 10:33:33
227      [sshconnect2.c]
228      fprintf->logit to silence login banner with "ssh -q"; ok markus@
229  - (dtucker) [Makefile.in acconfig.h auth-krb5.c auth-pam.c auth-pam.h
230    configure.ac defines.h gss-serv-krb5.c session.c ssh-gss.h sshconnect1.c
231    sshconnect2.c] Add Portable GSSAPI support, patch by Simon Wilkinson.
232  - (dtucker) [Makefile.in] Remove auth2-krb5.
233  - (dtucker) [contrib/aix/inventory.sh] Add public domain notice.  ok mouring@
234    (the original author)
235  - (dtucker) [auth.c] Do not check for locked accounts when PAM is enabled.
236
237 20030825
238  - (djm) Bug #621: Select OpenSC keys by usage attributes. Patch from 
239    larsch@trustcenter.de
240  - (bal) openbsd-compat/ OpenBSD updates.  Mostly licensing, ansifications
241    and minor fixes. OK djm@
242  - (bal) redo how we handle 'mysignal()'.  Move it to 
243    openbsd-compat/bsd-misc.c, s/mysignal/signal/ and #define signal to
244    be our 'mysignal' by default.  OK djm@
245  - (dtucker) [acconfig.h auth.c configure.ac sshd.8] Bug #422 again: deny
246    any access to locked accounts.  ok djm@
247  - (djm) Bug #564: Perform PAM account checks for all authentications when
248    UsePAM=yes; ok dtucker
249  - (dtucker) [configure.ac] Bug #533, #551: define BROKEN_GETADDRINFO on
250    Tru64, solves getnameinfo and "bad addr or host" errors.  ok djm@
251  - (dtucker) [README buildbff.sh inventory.sh] (all in contrib/aix)
252    Update package builder: correctly handle config variables, use lsuser
253    rather than /etc/passwd, fix typos, add Id's.
254
255 20030822
256  - (djm) s/get_progname/ssh_get_progname/g to avoid conflict with Heimdal 
257    -lbroken; ok dtucker 
258  - (dtucker) [contrib/cygwin/ssh-user-config] Put keys in authorized_keys
259    rather that authorized_keys2.  Patch from vinschen@redhat.com.
260
261 20030821
262  - (dtucker) OpenBSD CVS Sync
263    - markus@cvs.openbsd.org 2003/08/14 16:08:58
264      [ssh-keygen.c]
265      exit after primetest, ok djm@
266  - (dtucker) [defines.h] Put CMSG_DATA, CMSG_FIRSTHDR with other CMSG* macros,
267    change CMSG_DATA to use __CMSG_ALIGN (and thus work properly), reformat for
268    consistency.
269  - (dtucker) [configure.ac] Move openpty/ctty test outside of case statement
270    and after normal openpty test.
271
272 20030813
273  - (dtucker) [session.c] Remove #ifdef TIOCSBRK kludge.
274  - (dtucker) OpenBSD CVS Sync
275    - markus@cvs.openbsd.org 2003/08/13 08:33:02
276      [session.c]
277      use more portable tcsendbreak(3) and ignore break_length;
278      ok deraadt, millert
279    - markus@cvs.openbsd.org 2003/08/13 08:46:31
280      [auth1.c readconf.c readconf.h servconf.c servconf.h ssh.c ssh_config
281      ssh_config.5 sshconnect1.c sshd.8 sshd.c sshd_config sshd_config.5]
282      remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,
283      fgsch@, miod@, henning@, jakob@ and others
284    - markus@cvs.openbsd.org 2003/08/13 09:07:10
285      [readconf.c ssh.c]
286      socks4->socks, since with support both 4 and 5; dtucker@zip.com.au
287  - (dtucker) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
288    Add a tcsendbreak function for platforms that don't have one, based on the
289    one from OpenBSD.
290
291 20030811
292  - (dtucker) OpenBSD CVS Sync
293    (thanks to Simon Wilkinson for help with this -dt)
294    - markus@cvs.openbsd.org 2003/07/16 15:02:06
295      [auth-krb5.c]
296      mcc -> fcc; from Love Hörnquist Ã…strand <lha@it.su.se>
297      otherwise the kerberos credentinal is stored in a memory cache
298      in the privileged sshd. ok jabob@, hin@ (some time ago)
299  - (dtucker) [openbsd-compat/xcrypt.c] Remove Cygwin #ifdef block (duplicate
300    in bsd-cygwin_util.h).
301
302 20030808
303  - (dtucker) [openbsd-compat/fake-rfc2553.h] Older Linuxes have AI_PASSIVE and
304    AI_CANONNAME in netdb.h but not AI_NUMERICHOST, so check each definition
305    separately before defining them.
306  - (dtucker) [auth-pam.c] Don't set PAM_TTY if tty is null.  ok djm@
307
308 20030807
309  - (dtucker) [session.c] Have session_break_req not attempt to send a break
310    if TIOCSBRK and TIOCCBRK are not defined (eg Cygwin).
311  - (dtucker) [canohost.c] Bug #336: Only check ip options if IP_OPTIONS is
312    defined (fixes compile error on really old Linuxes).
313  - (dtucker) [defines.h] Bug #336: Add CMSG_DATA and CMSG_FIRSTHDR macros if
314    not already defined (eg Linux with some versions of libc5), based on those
315    from OpenBSD.
316  - (dtucker) [openbsd-compat/bsd-cygwin_util.c openbsd-compat/bsd-cygwin_util.h]
317    Remove incorrect filenames from comments (file names are in Id tags).
318  - (dtucker) [session.c openbsd-compat/bsd-cygwin_util.h] Move Cygwin
319    specific defines and includes to bsd-cygwin_util.h.  Fixes build error too.
320
321 20030802
322  - (dtucker) [monitor.h monitor_wrap.h] Remove excess ident tags.
323  - (dtucker) OpenBSD CVS Sync
324    - markus@cvs.openbsd.org 2003/07/22 13:35:22
325      [auth1.c auth.h auth-passwd.c monitor.c monitor.h monitor_wrap.c
326      monitor_wrap.h readconf.c readconf.h servconf.c servconf.h session.c ssh.1
327      ssh.c ssh_config.5 sshconnect1.c sshd.c sshd_config.5 ssh.h]
328      remove (already disabled) KRB4/AFS support, re-enable -k in ssh(1);
329      test+ok henning@
330  - (dtucker) [Makefile.in acconfig.h configure.ac] Remove KRB4/AFS support.
331  - (dtucker) [auth-krb4.c radix.c radix.h] Remove KRB4/AFS specific files.
332  - (dtucker) OpenBSD CVS Sync
333    - markus@cvs.openbsd.org 2003/07/23 07:42:43
334      [sshd_config]
335      remove AFS; itojun@
336    - djm@cvs.openbsd.org 2003/07/28 09:49:56
337      [ssh-keygen.1 ssh-keygen.c]
338      Support for generating Diffie-Hellman groups (/etc/moduli) from ssh-keygen.
339      Based on code from Phil Karn, William Allen Simpson and Niels Provos.
340      ok markus@, thanks jmc@
341    - markus@cvs.openbsd.org 2003/07/29 18:24:00
342      [LICENCE progressmeter.c]
343      replace 4 clause BSD licensed progressmeter code with a replacement
344      from Nils Nordman and myself; ok deraadt@
345      (copied from OpenBSD an re-applied portable changes)
346    - markus@cvs.openbsd.org 2003/07/29 18:26:46
347      [progressmeter.c]
348      fix length for "- stalled -" (included with previous import)
349    - markus@cvs.openbsd.org 2003/07/30 07:44:14
350      [progressmeter.c]
351      use only 4 digits in format_size (included with previous import)
352    - markus@cvs.openbsd.org 2003/07/30 07:53:27
353      [progressmeter.c]
354      whitespace (included with previous import)
355    - markus@cvs.openbsd.org 2003/07/31 09:21:02
356      [auth2-none.c]
357      check whether passwd auth is allowd, similar to proto 1; rob@pitman.co.za
358      ok henning
359    - avsm@cvs.openbsd.org 2003/07/31 15:50:16
360      [atomicio.c]
361      correct comment: atomicio takes vwrite, not write; deraadt@ ok
362    - markus@cvs.openbsd.org 2003/07/31 22:34:03
363      [progressmeter.c]
364      print rate similar old version; round instead truncate;
365      (included in previous progressmeter.c commit)
366  - (dtucker) [openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
367    Add a tcgetpgrp function.
368  - (dtucker) [Makefile.in moduli.c moduli.h] Add new files and to Makefile.
369  - (dtucker) [openbsd-compat/bsd-misc.c] Fix cut-and-paste bug in tcgetpgrp.
370
371 20030730
372  - (djm) [auth-pam.c] Don't use crappy APIs like sprintf. Thanks bal
373
374 20030726
375  - (dtucker) [openbsd-compat/xcrypt.c] Fix typo: DISABLED_SHADOW ->
376    DISABLE_SHADOW.  Fixes HP-UX compile error.
377
378 20030724
379  - (bal) [auth-passwd.c openbsd-compat/Makefile.in openbsd-compat/xcrypt.c 
380     openbsd-compat/xcrypt.h] Split off encryption into xcrypt() interface,
381     and isolate shadow password functions.  Tested in Solaris, but should
382     not break other platforms too badly (except maybe HP =).  Also brings
383     auth-passwd.c into full sync with OpenBSD tree.
384
385 20030723
386  - (dtucker) [configure.ac] Back out change for bug #620.
387
388 20030719
389  - (dtucker) [configure.ac] Bug #620: Define BROKEN_GETADDRINFO for
390    Solaris/x86.  Patch from jrhett at isite.net.
391  - (dtucker) OpenBSD CVS Sync
392    - markus@cvs.openbsd.org 2003/07/14 12:36:37
393      [sshd.c]
394      remove undocumented -V option. would be only useful if openssh is used
395      as ssh v1 server for ssh.com's ssh v2.
396    - markus@cvs.openbsd.org 2003/07/16 10:34:53
397      [ssh.c sshd.c]
398      don't exit on multiple -v or -d; ok deraadt@
399    - markus@cvs.openbsd.org 2003/07/16 10:36:28
400      [sshtty.c]
401      clear IUCLC in enter_raw_mode; from rob@pitman.co.za; ok deraadt@, fgs@
402    - deraadt@cvs.openbsd.org 2003/07/18 01:54:25
403      [scp.c]
404      userid is unsigned, but well, force it anyways; andrushock@korovino.net
405    - djm@cvs.openbsd.org 2003/07/19 00:45:53
406      [sftp-int.c]
407      fix sftp filename parsing for arguments with escaped quotes. bz #517;
408      ok markus
409    - djm@cvs.openbsd.org 2003/07/19 00:46:31
410      [regress/sftp-cmds.sh]
411      regress test for sftp arguments with escaped quotes; ok markus
412
413 20030714
414  - (dtucker) [acconfig.h configure.ac port-aix.c] Older AIXes don't declare
415    loginfailed at all, so assume 3-arg loginfailed if not declared.
416  - (dtucker) [port-aix.h] Work around name collision on AIX for r_type by
417    undef'ing it.
418  - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h]
419    Call setauthdb() before loginfailed(), which may load password registry-
420    specific functions.  Based on patch by cawlfiel at us.ibm.com.
421  - (dtucker) [port-aix.h] Fix prototypes.
422  - (dtucker) OpenBSD CVS Sync
423    - avsm@cvs.openbsd.org 2003/07/09 13:58:19
424      [key.c]
425      minor tweak: when generating the hex fingerprint, give strlcat the full
426      bound to the buffer, and add a comment below explaining why the
427      zero-termination is one less than the bound.  markus@ ok
428    - markus@cvs.openbsd.org 2003/07/10 14:42:28
429      [packet.c]
430      the 2^(blocksize*2) rekeying limit is too expensive for 3DES,
431      blowfish, etc, so enforce a 1GB limit for small blocksizes.
432    - markus@cvs.openbsd.org 2003/07/10 20:05:55
433      [sftp.c]
434      sync usage with manpage, add missing -R
435
436 20030708
437  - (dtucker) [acconfig.h auth-passwd.c configure.ac session.c port-aix.[ch]]
438    Include AIX headers for authentication functions and make calls match
439    prototypes.  Test for and handle 3-arg and 4-arg variants of loginfailed.
440  - (dtucker) [session.c] Check return value of setpcred().
441  - (dtucker) [auth-passwd.c auth.c session.c sshd.c port-aix.c port-aix.h]
442    Convert aixloginmsg into platform-independant Buffer loginmsg.
443
444 20030707
445  - (dtucker) [configure.ac] Bug #600: Check that getrusage is declared before
446    searching libraries for it.  Fixes build errors on NCR MP-RAS.
447
448 20030706
449  - (dtucker) [ssh-rand-helper.c loginrec.c]
450    Apply atomicio typing change to these too.
451
452 20030703
453  - (dtucker) OpenBSD CVS Sync
454    - djm@cvs.openbsd.org 2003/06/28 07:48:10
455      [sshd.c]
456      report pidfile creation errors, based on patch from Roumen Petrov;
457      ok markus@
458    - deraadt@cvs.openbsd.org 2003/06/28 16:23:06
459      [atomicio.c atomicio.h authfd.c clientloop.c monitor_wrap.c msg.c
460      progressmeter.c scp.c sftp-client.c ssh-keyscan.c ssh.h sshconnect.c
461      sshd.c]
462      deal with typing of write vs read in atomicio
463    - markus@cvs.openbsd.org 2003/06/29 12:44:38
464      [sshconnect.c]
465      memset 0, not \0; andrushock@korovino.net
466    - markus@cvs.openbsd.org 2003/07/02 12:56:34
467      [channels.c]
468      deny dynamic forwarding with -R for v1, too; ok djm@
469    - markus@cvs.openbsd.org 2003/07/02 14:51:16
470      [channels.c ssh.1 ssh_config.5]
471      (re)add socks5 suppport to -D; ok djm@
472      now ssh(1) can act both as a socks 4 and socks 5 server and
473      dynamically forward ports.
474    - markus@cvs.openbsd.org 2003/07/02 20:37:48
475      [ssh.c]
476      convert hostkeyalias to lowercase, otherwise uppercase aliases will
477      not match at all; ok henning@
478    - markus@cvs.openbsd.org 2003/07/03 08:21:46
479      [regress/dynamic-forward.sh]
480      add socks5; speedup; reformat; based on patch from dtucker@zip.com.au
481    - markus@cvs.openbsd.org 2003/07/03 08:24:13
482      [regress/Makefile]
483      enable tests for dynamic fwd via socks (-D), uses nc(1)
484    - djm@cvs.openbsd.org 2003/07/03 08:09:06
485      [readconf.c readconf.h ssh-keysign.c ssh.c]
486      fix AddressFamily option in config file, from brent@graveland.net;
487      ok markus@
488
489 20030630
490  - (djm) Search for support functions necessary to build our 
491    getrrsetbyname() replacement. Patch from Roumen Petrov 
492
493 20030629
494  - (dtucker) [includes.h] Bug #602: move #include of netdb.h to after in.h
495    (fixes compiler warnings on Solaris 2.5.1).
496  - (dtucker) [configure.ac] Add sanity test after system-dependant compiler
497    flag modifications.
498    
499 20030628
500  - (djm) Bug #591: use PKCS#15 private key label as a comment in case 
501    of OpenSC. Report and patch from larsch@trustcenter.de
502  - (djm) Bug #593: Sanity check OpenSC card reader number; patch from 
503    aj@dungeon.inka.de
504  - (dtucker) OpenBSD CVS Sync
505    - markus@cvs.openbsd.org 2003/06/23 09:02:44
506      [ssh_config.5]
507      document EnableSSHKeysign; bugzilla #599; ok deraadt@, jmc@
508    - markus@cvs.openbsd.org 2003/06/24 08:23:46
509      [auth2-hostbased.c auth2-pubkey.c auth2.c channels.c key.c key.h
510       monitor.c packet.c packet.h serverloop.c sshconnect2.c sshd.c]
511      int -> u_int; ok djm@, deraadt@, mouring@
512    - miod@cvs.openbsd.org 2003/06/25 22:39:36
513      [sftp-server.c]
514      Typo police: attribute is better written with an 'r'.
515    - markus@cvs.openbsd.org 2003/06/26 20:08:33
516      [readconf.c]
517      do not dump core for 'ssh -o proxycommand host'; ok deraadt@
518  - (dtucker) [regress/dynamic-forward.sh] Import new regression test.
519  - (dtucker) [configure.ac] Bug #570: Have ./configure --enable-FEATURE 
520    actually enable the feature, for those normally disabled.  Patch by
521    openssh (at) roumenpetrov.info.
522
523 20030624
524  - (dtucker) Have configure refer the user to config.log and
525    contrib/findssl.sh for OpenSSL header/library mismatches.
526
527 20030622
528  - (dtucker) OpenBSD CVS Sync
529    - markus@cvs.openbsd.org 2003/06/21 09:14:05
530      [regress/reconfigure.sh]
531      missing $SUDO; from dtucker@zip.com.au
532    - markus@cvs.openbsd.org 2003/06/18 11:28:11
533      [ssh-rsa.c]
534      backout last change, since it violates pkcs#1
535      switch to share/misc/license.template
536    - djm@cvs.openbsd.org 2003/06/20 05:47:58
537      [sshd_config.5]
538      sync description of protocol 2 cipher proposal; ok markus
539    - djm@cvs.openbsd.org 2003/06/20 05:48:21
540      [sshd_config]
541      sync some implemented options; ok markus@
542  - (dtucker) [regress/authorized_keys_root] Remove temp data file from CVS.
543  - (dtucker) [openbsd-compat/setproctitle.c] Ensure SPT_TYPE is defined before
544    testing its value.
545
546 20030618
547  - (djm) OpenBSD CVS Sync
548    - markus@cvs.openbsd.org 2003/06/12 07:57:38
549      [monitor.c sshlogin.c sshpty.c]
550      typos; dtucker at zip.com.au
551    - djm@cvs.openbsd.org 2003/06/12 12:22:47
552      [LICENCE]
553      mention more copyright holders; ok markus@
554    - nino@cvs.openbsd.org 2003/06/12 15:34:09
555      [scp.c]
556      Typo. Ok markus@.
557    - markus@cvs.openbsd.org 2003/06/12 19:12:03
558      [scard.c scard.h ssh-agent.c ssh.c]
559      add sc_get_key_label; larsch at trustcenter.de; bugzilla#591
560    - markus@cvs.openbsd.org 2003/06/16 08:22:35
561      [ssh-rsa.c]
562      make sure the signature has at least the expected length (don't
563      insist on len == hlen + oidlen, since this breaks some smartcards)
564      bugzilla #592; ok djm@
565    - markus@cvs.openbsd.org 2003/06/16 10:22:45
566      [ssh-add.c]
567      print out key comment on each prompt; make ssh-askpass more useable; ok djm@
568    - markus@cvs.openbsd.org 2003/06/17 18:14:23
569      [cipher-ctr.c]
570      use license from /usr/share/misc/license.template for new code
571  - (dtucker) [reconfigure.sh rekey.sh sftp-badcmds.sh]
572    Import new regression tests from OpenBSD
573  - (dtucker) [regress/copy.1 regress/copy.2] Remove temp data files from CVS.
574  - (dtucker) OpenBSD CVS Sync (regress/)
575    - markus@cvs.openbsd.org 2003/04/02 12:21:13
576      [Makefile]
577      enable rekey test
578    - djm@cvs.openbsd.org 2003/04/04 09:34:22
579      [Makefile sftp-cmds.sh]
580      More regression tests, including recent directory rename bug; ok markus@
581    - markus@cvs.openbsd.org 2003/05/14 22:08:27
582      [ssh-com-client.sh ssh-com-keygen.sh ssh-com-sftp.sh ssh-com.sh]
583      test against some new commerical versions
584    - mouring@cvs.openbsd.org 2003/05/15 04:07:12
585      [sftp-cmds.sh]
586      Advanced put/get testing for sftp.  OK @djm
587    - markus@cvs.openbsd.org 2003/06/12 15:40:01
588      [try-ciphers.sh]
589      add ctr
590    - markus@cvs.openbsd.org 2003/06/12 15:43:32
591      [Makefile]
592      test -HUP; dtucker at zip.com.au
593
594 20030614
595  - (djm) Update license on fake-rfc2553.[ch]; ok itojun@
596
597 20030611
598  - (djm) Mention portable copyright holders in LICENSE
599  - (djm) Put licenses on substantial header files
600  - (djm) Sync LICENSE against OpenBSD
601  - (djm) OpenBSD CVS Sync
602    - jmc@cvs.openbsd.org 2003/06/10 09:12:11
603      [scp.1 sftp-server.8 ssh.1 ssh-add.1 ssh-agent.1 ssh_config.5]
604      [sshd.8 sshd_config.5 ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8]
605      - section reorder
606      - COMPATIBILITY merge
607      - macro cleanup
608      - kill whitespace at EOL
609      - new sentence, new line
610      ssh pages ok markus@
611    - deraadt@cvs.openbsd.org 2003/06/10 22:20:52
612      [packet.c progressmeter.c]
613      mostly ansi cleanup; pval ok
614    - jakob@cvs.openbsd.org 2003/06/11 10:16:16
615      [sshconnect.c]
616      clean up check_host_key() and improve SSHFP feedback. ok markus@
617    - jakob@cvs.openbsd.org 2003/06/11 10:18:47
618      [dns.c]
619      sync with check_host_key() change
620    - djm@cvs.openbsd.org 2003/06/11 11:18:38
621      [authfd.c authfd.h ssh-add.c ssh-agent.c]
622      make agent constraints (lifetime, confirm) work with smartcard keys; 
623      ok markus@
624
625
626 20030609
627  - (djm) Sync README.smartcard with OpenBSD -current
628  - (djm) Re-merge OpenSC info into README.smartcard
629
630 20030606
631  - (dtucker) [uidswap.c] Fix setreuid and add missing args to fatal(). ok djm@
632
633 20030605
634  - (djm) Support AI_NUMERICHOST in fake-getaddrinfo.c. Needed for recent
635    canohost.c changes.
636  - (djm) Implement paranoid priv dropping checks, based on:
637    "SetUID demystified" - Hao Chen, David Wagner and Drew Dean
638    Proceedings of USENIX Security Symposium 2002
639  - (djm) Don't use xmalloc() or pull in toplevel headers in fake-* code
640  - (djm) Merge all the openbsd/fake-* into fake-rfc2553.[ch]
641  - (djm) Bug #588 - Add scard-opensc.o back to Makefile.in
642    Patch from larsch@trustcenter.de
643  - (djm) Bug #589 - scard-opensc: load only keys with a private keys
644    Patch from larsch@trustcenter.de
645  - (dtucker) Add includes.h to fake-rfc2553.c so it will build.
646  - (dtucker) Define EAI_NONAME in fake-rfc2553.h (used by fake-rfc2553.c).
647
648 20030604
649  - (djm) Bug #573 - Remove unneeded Krb headers and compat goop. Patch from
650    simon@sxw.org.uk (Also matches a change in OpenBSD a while ago)
651  - (djm) Bug #577 - wrong flag in scard-opensc.c sc_private_decrypt. 
652    Patch from larsch@trustcenter.de; ok markus@
653  - (djm) Bug #584: scard-opensc.c doesn't work without PIN. Patch from 
654    larsch@trustcenter.de; ok markus@
655  - (djm) OpenBSD CVS Sync
656    - djm@cvs.openbsd.org 2003/06/04 08:25:18
657      [sshconnect.c]
658      disable challenge/response and keyboard-interactive auth methods 
659      upon hostkey mismatch. based on patch from fcusack AT fcusack.com. 
660      bz #580; ok markus@
661    - djm@cvs.openbsd.org 2003/06/04 10:23:48
662      [sshd.c]
663      remove duplicated group-dropping code; ok markus@
664    - djm@cvs.openbsd.org 2003/06/04 12:03:59
665      [serverloop.c]
666      remove bitrotten commet; ok markus@
667    - djm@cvs.openbsd.org 2003/06/04 12:18:49
668      [scp.c]
669      ansify; ok markus@
670    - djm@cvs.openbsd.org 2003/06/04 12:40:39
671      [scp.c]
672      kill ssh process upon receipt of signal, bz #241.
673      based on patch from esb AT hawaii.edu; ok markus@
674    - djm@cvs.openbsd.org 2003/06/04 12:41:22
675      [sftp.c]
676      kill ssh process on receipt of signal; ok markus@
677  - (djm) Update to fix of bug #584: lock card before return. 
678    From larsch@trustcenter.de
679  - (djm) Always use mysignal() for SIGALRM
680
681 20030603
682  - (djm) Replace setproctitle replacement with code derived from 
683    UCB sendmail
684  - (djm) OpenBSD CVS Sync
685    - markus@cvs.openbsd.org 2003/06/02 09:17:34
686      [auth2-hostbased.c auth.c auth-options.c auth-rhosts.c auth-rh-rsa.c]
687      [canohost.c monitor.c servconf.c servconf.h session.c sshd_config]
688      [sshd_config.5]
689      deprecate VerifyReverseMapping since it's dangerous if combined
690      with IP based access control as noted by Mike Harding; replace with
691      a UseDNS option, UseDNS is on by default and includes the
692      VerifyReverseMapping check; with itojun@, provos@, jakob@ and deraadt@
693      ok deraadt@, djm@
694    - millert@cvs.openbsd.org 2003/06/03 02:56:16
695      [scp.c]
696      Remove the advertising clause in the UCB license which Berkeley
697      rescinded 22 July 1999.  Proofed by myself and Theo.
698  - (djm) Fix portable-specific uses of verify_reverse_mapping too
699  - (djm) Sync openbsd-compat with OpenBSD CVS. 
700     - No more 4-term BSD licenses in linked code
701  - (dtucker) [port-aix.c bsd-cray.c] Fix uses of verify_reverse_mapping.
702
703 20030602
704  - (djm) Fix segv from bad reordering in auth-pam.c
705  - (djm) Always use saved_argv in sshd.c as compat_init_setproctitle may 
706    clobber
707  - (tim) openbsd-compat/xmmap.[ch] License clarifications. Add missing
708    CVS ID.
709  - (djm) Remove "noip6" option from RedHat spec file. This may now be 
710    set at runtime using AddressFamily option.
711  - (djm) Fix use of macro before #define in cipher-aes.c
712  - (djm) Sync license on openbsd-compat/bindresvport.c with OpenBSD CVS
713  - (djm) OpenBSD CVS Sync
714    - djm@cvs.openbsd.org 2003/05/26 12:54:40
715      [sshconnect.c]
716      fix format strings; ok markus@
717    - deraadt@cvs.openbsd.org 2003/05/29 16:58:45
718      [sshd.c uidswap.c]
719      seteuid and setegid; markus ok
720    - jakob@cvs.openbsd.org 2003/06/02 08:31:10
721      [ssh_config.5]
722      VerifyHostKeyDNS is v2 only. ok markus@
723
724 20030530
725  - (dtucker) Add missing semicolon in md5crypt.c, patch from openssh at
726    roumenpetrov.info
727  - (dtucker) Define SSHD_ACQUIRES_CTTY for NCR MP-RAS and Reliant Unix.
728
729 20030526
730  - (djm) Avoid auth2-chall.c warning when compiling without 
731    PAM, BSD_AUTH and SKEY
732
733 20030525
734 - (djm) OpenBSD CVS Sync
735    - djm@cvs.openbsd.org 2003/05/24 09:02:22
736      [log.c]
737      pass logged data through strnvis; ok markus
738    - djm@cvs.openbsd.org 2003/05/24 09:30:40
739      [authfile.c monitor.c sftp-common.c sshpty.c]
740      cast some types for printing; ok markus@
741
742 20030524
743  - (dtucker) Correct --osfsia in INSTALL.  Patch by skeleten at shillest.net
744
745 20030523
746  - (djm) Use VIS_SAFE on logged strings rather than default strnvis 
747    encoding (which encodes many more characters)
748  - OpenBSD CVS Sync
749    - jmc@cvs.openbsd.org 2003/05/20 12:03:35
750      [sftp.1]
751      - new sentence, new line
752      - added .Xr's
753      - typos
754      ok djm@
755    - jmc@cvs.openbsd.org 2003/05/20 12:09:31
756      [ssh.1 ssh_config.5 sshd.8 sshd_config.5 ssh-keygen.1]
757      new sentence, new line
758    - djm@cvs.openbsd.org 2003/05/23 08:29:30
759      [sshconnect.c]
760      fix leak; ok markus@
761
762 20030520
763  - (djm) OpenBSD CVS Sync
764    - deraadt@cvs.openbsd.org 2003/05/18 23:22:01
765      [log.c]
766      use syslog_r() in a signal handler called place; markus ok
767  - (djm) Configure logic to detect syslog_r and friends
768
769 20030519
770  - (djm) Sync auth-pam.h with what we actually implement
771
772 20030518
773  - (djm) Return of the dreaded PAM_TTY_KLUDGE, which went missing in 
774    recent merge
775  - (djm) OpenBSD CVS Sync
776    - djm@cvs.openbsd.org 2003/05/16 03:27:12
777      [readconf.c ssh_config ssh_config.5 ssh-keysign.c]
778      add AddressFamily option to ssh_config (like -4, -6 on commandline).
779      Portable bug #534; ok markus@
780    - itojun@cvs.openbsd.org 2003/05/17 03:25:58
781      [auth-rhosts.c]
782      just in case, put numbers to sscanf %s arg.
783    - markus@cvs.openbsd.org 2003/05/17 04:27:52
784      [cipher.c cipher-ctr.c myproposal.h]
785      experimental support for aes-ctr modes from
786      http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt
787      ok djm@
788  - (djm) Remove IPv4 by default hack now that we can specify AF in config
789  - (djm) Tidy and trim TODO
790  - (djm) Sync openbsd-compat/ with OpenBSD CVS head
791  - (djm) Big KNF on openbsd-compat/
792  - (djm) KNF on md5crypt.[ch]
793  - (djm) KNF on auth-sia.[ch]
794
795 20030517
796  - (bal) strcat -> strlcat on openbsd-compat/realpath.c (rev 1.8 OpenBSD)
797
798 20030516
799  - (djm) OpenBSD CVS Sync
800    - djm@cvs.openbsd.org 2003/05/15 13:52:10
801      [ssh.c]
802      Make "ssh -V" print the OpenSSL version in a human readable form. Patch
803      from Craig Leres (mindrot at ee.lbl.gov); ok markus@
804    - jakob@cvs.openbsd.org 2003/05/15 14:02:47
805      [readconf.c servconf.c]
806      warn for unsupported config option. ok markus@
807    - markus@cvs.openbsd.org 2003/05/15 14:09:21
808      [auth2-krb5.c]
809      fix 64bit issue; report itojun@
810    - djm@cvs.openbsd.org 2003/05/15 14:55:25
811      [readconf.c readconf.h ssh_config ssh_config.5 sshconnect.c]
812      add a ConnectTimeout option to ssh, based on patch from
813      Jean-Charles Longuet (jclonguet at free.fr); portable #207 ok markus@
814  - (djm) Add warning for UsePAM when built without PAM support
815  - (djm) A few type mismatch fixes from Bug #565
816  - (djm) Guard free_pam_environment against NULL argument. Works around
817    HP/UX PAM problems debugged by dtucker
818
819 20030515
820  - (djm) OpenBSD CVS Sync
821    - jmc@cvs.openbsd.org 2003/05/14 13:11:56
822      [ssh-agent.1]
823      setup -> set up;
824      from wiz@netbsd
825    - jakob@cvs.openbsd.org 2003/05/14 18:16:20
826      [key.c key.h readconf.c readconf.h ssh_config.5 sshconnect.c]
827      [dns.c dns.h README.dns ssh-keygen.1 ssh-keygen.c]
828      add experimental support for verifying hos keys using DNS as described
829      in draft-ietf-secsh-dns-xx.txt. more information in README.dns.
830      ok markus@ and henning@
831    - markus@cvs.openbsd.org 2003/05/14 22:24:42
832      [clientloop.c session.c ssh.1]
833      allow to send a BREAK to the remote system; ok various
834    - markus@cvs.openbsd.org 2003/05/15 00:28:28
835      [sshconnect2.c]
836      cleanup unregister of per-method packet handlers; ok djm@
837    - jakob@cvs.openbsd.org 2003/05/15 01:48:10
838      [readconf.c readconf.h servconf.c servconf.h]
839      always parse kerberos options. ok djm@ markus@
840    - jakob@cvs.openbsd.org 2003/05/15 02:27:15
841      [dns.c]
842      add missing freerrset
843    - markus@cvs.openbsd.org 2003/05/15 03:08:29
844      [cipher.c cipher-bf1.c cipher-aes.c cipher-3des1.c]
845      split out custom EVP ciphers
846    - djm@cvs.openbsd.org 2003/05/15 03:10:52
847      [ssh-keygen.c]
848      avoid warning; ok jakob@
849    - mouring@cvs.openbsd.org 2003/05/15 03:39:07
850      [sftp-int.c]
851      Make put/get (globed and nonglobed) code more consistant. OK djm@
852    - mouring@cvs.openbsd.org 2003/05/15 03:43:59
853      [sftp-int.c sftp.c]
854      Teach ls how to display multiple column display and allow users 
855      to return to single column format via 'ls -1'.  OK @djm
856    - jakob@cvs.openbsd.org 2003/05/15 04:08:44
857      [readconf.c servconf.c]
858      disable kerberos when not supported. ok markus@
859    - markus@cvs.openbsd.org 2003/05/15 04:08:41
860      [ssh.1]
861      ~B is ssh2 only
862  - (djm) Always parse UsePAM
863  - (djm) Configure glue for DNS support (code doesn't work in portable yet)
864  - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
865  - (djm) Tidy Makefile clean targets
866  - (djm) Adapt README.dns for portable
867  - (djm) Avoid uuencode.c warnings
868  - (djm) Enable UsePAM when built --with-pam
869  - (djm) Only build getrrsetbyname replacement when using --with-dns
870  - (djm) Bug #529: sshd doesn't work correctly after SIGHUP (copy argv 
871          correctly)
872  - (djm) Bug #444: Wrong paths after reconfigure
873  - (dtucker) HP-UX needs to include <sys/strtio.h> for TIOCSBRK
874
875 20030514
876  - (djm) Bug #117: Don't lie to PAM about username
877  - (djm) RCSID sync w/ OpenBSD
878  - (djm) OpenBSD CVS Sync
879    - djm@cvs.openbsd.org 2003/04/09 12:00:37
880      [readconf.c]
881      strip trailing whitespace from config lines before parsing. 
882      Fixes bz 528; ok markus@
883    - markus@cvs.openbsd.org 2003/04/12 10:13:57
884      [cipher.c]
885      hide cipher details; ok djm@
886    - markus@cvs.openbsd.org 2003/04/12 10:15:36
887      [misc.c]
888      debug->debug2
889    - naddy@cvs.openbsd.org 2003/04/12 11:40:15
890      [ssh.1]
891      document -V switch, fix wording; ok markus@
892    - markus@cvs.openbsd.org 2003/04/14 14:17:50
893      [channels.c sshconnect.c sshd.c ssh-keyscan.c]
894      avoid hardcoded SOCK_xx; with itojun@; should allow ssh over SCTP
895    - mouring@cvs.openbsd.org 2003/04/14 21:31:27
896      [sftp-int.c]
897      Missing globfree(&g) in process_put() spotted by Vince Brimhall
898      <VBrimhall@novell.com>.  ok@ Theo
899    - markus@cvs.openbsd.org 2003/04/16 14:35:27
900      [auth.h]
901      document struct Authctxt; with solar
902    - deraadt@cvs.openbsd.org 2003/04/26 04:29:49
903      [ssh-keyscan.c]
904      -t in usage(); rogier@quaak.org
905    - mouring@cvs.openbsd.org 2003/04/30 01:16:20
906      [sshd.8 sshd_config.5]
907      Escape ?, * and ! in .Ql for nroff compatibility.  OpenSSH Portable 
908      Bug #550 and * escaping suggested by jmc@.
909    - david@cvs.openbsd.org 2003/04/30 20:41:07
910      [sshd.8]
911      fix invalid .Pf macro usage introduced in previous commit
912      ok jmc@ mouring@
913    - markus@cvs.openbsd.org 2003/05/11 16:56:48
914      [authfile.c ssh-keygen.c]
915      change key_load_public to try to read a public from:
916      rsa1 private or rsa1 public and ssh2 keys.
917      this makes ssh-keygen -e fail for ssh1 keys more gracefully
918      for example; report from itojun (netbsd pr 20550).
919    - markus@cvs.openbsd.org 2003/05/11 20:30:25
920      [channels.c clientloop.c serverloop.c session.c ssh.c]
921      make channel_new() strdup the 'remote_name' (not the caller); ok theo
922    - markus@cvs.openbsd.org 2003/05/12 16:55:37
923      [sshconnect2.c]
924      for pubkey authentication try the user keys in the following order:
925         1. agent keys that are found in the config file
926         2. other agent keys
927         3. keys that are only listed in the config file
928      this helps when an agent has many keys, where the server might
929      close the connection before the correct key is used. report & ok pb@
930    - markus@cvs.openbsd.org 2003/05/12 18:35:18
931      [ssh-keyscan.1]
932      typo: DSA keys are of type ssh-dss; Brian Poole
933    - markus@cvs.openbsd.org 2003/05/14 00:52:59
934      [ssh2.h]
935      ranges for per auth method messages
936    - djm@cvs.openbsd.org 2003/05/14 01:00:44
937      [sftp.1]
938      emphasise the batchmode functionality and make reference to pubkey auth,
939      both of which are FAQs; ok markus@
940    - markus@cvs.openbsd.org 2003/05/14 02:15:47
941      [auth2.c monitor.c sshconnect2.c auth2-krb5.c]
942      implement kerberos over ssh2 ("kerberos-2@ssh.com"); tested with jakob@
943      server interops with commercial client; ok jakob@ djm@
944    - jmc@cvs.openbsd.org 2003/05/14 08:25:39
945      [sftp.1]
946      - better formatting in SYNOPSIS
947      - whitespace at EOL
948      ok djm@
949    - markus@cvs.openbsd.org 2003/05/14 08:57:49
950      [monitor.c]
951      http://bugzilla.mindrot.org/show_bug.cgi?id=560
952      Privsep child continues to run after monitor killed.
953      Pass monitor signals through to child; Darren Tucker
954  - (djm) Make portable build with MIT krb5 (some issues remain)
955  - (djm) Add new UsePAM configuration directive to allow runtime control
956    over usage of PAM. This allows non-root use of sshd when built with
957    --with-pam
958  - (djm) Die screaming if start_pam() is called when UsePAM=no
959  - (djm) Avoid KrbV leak for MIT Kerberos
960  - (dtucker) Set ai_socktype and ai_protocol in fake-getaddrinfo.c. ok djm@
961  - (djm) Bug #258: sscanf("[0-9]") -> sscanf("[0123456789]") for portability
962
963 20030512
964  - (djm) Redhat spec: Don't install profile.d scripts when not 
965    building with GNOME/GTK askpass (patch from bet@rahul.net)
966
967 20030510
968  - (dtucker) Bug #318: Create ssh_prng_cmds.out during "make" rather than
969    "make install".  Patch by roth@feep.net.
970  - (dtucker) Bug #536: Test for and work around openpty/controlling tty
971    problem on Linux (fixes "could not set controlling tty" errors).
972  - (djm) Merge FreeBSD PAM code: replaces PAM password auth kludge with 
973    proper challenge-response module
974  - (djm) 2-clause license on loginrec.c, with permission from
975    andre@ae-35.com
976
977 20030504
978  - (dtucker) Bug #497: Move #include of bsd-cygwin_util.h to openbsd-compat.h.
979    Patch from vinschen@redhat.com.
980
981 20030503
982  - (dtucker) Add missing "void" to record_failed_login in bsd-cray.c.  Noted
983    by wendyp@cray.com.
984
985 20030502
986  - (dtucker) Bug #544: ignore invalid cmsg_type on Linux 2.0 kernels,
987    privsep should now work.
988  - (dtucker) Move handling of bad password authentications into a platform
989    specific record_failed_login() function (affects AIX & Unicos). ok mouring@
990
991 20030429
992  - (djm) Add back radix.o (used by AFS support), after it went missing from
993    Makefile many moons ago
994  - (djm) Apply "owl-always-auth" patch from Openwall/Solar Designer
995  - (djm) Fix blibpath specification for AIX/gcc
996  - (djm) Some systems have basename in -lgen. Fix from ayamura@ayamura.org
997
998 20030428
999  - (bal) [defines.h progressmeter.c scp.c] Some more culling of non 64bit 
1000    hacked code.
1001
1002 20030427
1003  - (bal) Bug #541: return; was dropped by mistake.  Reported by 
1004    furrier@iglou.com
1005  - (bal) Since we don't support platforms lacking u_int_64.  We may
1006    as well clean out some of those evil #ifdefs
1007  - (bal) auth1.c minor resync while looking at the code.
1008  - (bal) auth2.c same changed as above.
1009
1010 20030409
1011  - (djm) Bug #539: Specify creation mode with O_CREAT for lastlog. Report 
1012    from matth@eecs.berkeley.edu
1013  - (djm) Make the spec work with Redhat 9.0 (which renames sharutils)
1014  - (djm) OpenBSD CVS Sync
1015    - markus@cvs.openbsd.org 2003/04/02 09:48:07
1016      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1017      [readconf.h serverloop.c sshconnect2.c]
1018      reapply rekeying chage, tested by henning@, ok djm@
1019    - markus@cvs.openbsd.org 2003/04/02 14:36:26
1020      [ssh-keysign.c]
1021      potential segfault if KEY_UNSPEC; cjwatson@debian.org; bug #526
1022    - itojun@cvs.openbsd.org 2003/04/03 07:25:27
1023      [progressmeter.c]
1024      $OpenBSD$
1025    - itojun@cvs.openbsd.org 2003/04/03 10:17:35
1026      [progressmeter.c]
1027      remove $OpenBSD$, as other *.c does not have it.
1028    - markus@cvs.openbsd.org 2003/04/07 08:29:57
1029      [monitor_wrap.c]
1030      typo: get correct counters; introduced during rekeying change.
1031    - millert@cvs.openbsd.org 2003/04/07 21:58:05
1032      [progressmeter.c]
1033      The UCB copyright here is incorrect.  This code did not originate
1034      at UCB, it was written by Luke Mewburn.  Updated the copyright at
1035      the author's request.  markus@ OK
1036    - itojun@cvs.openbsd.org 2003/04/08 20:21:29
1037      [*.c *.h]
1038      rename log() into logit() to avoid name conflict.  markus ok, from
1039      netbsd
1040      - (djm) XXX - Performed locally using:
1041        "perl -p -i -e 's/(\s|^)log\(/$1logit\(/g' *.c *.h"
1042    - hin@cvs.openbsd.org 2003/04/09 08:23:52
1043      [servconf.c]
1044      Don't include <krb.h> when compiling with Kerberos 5 support
1045    - (djm) Fix up missing include for packet.c
1046    - (djm) Fix missed log => logit occurance (reference by function pointer)
1047
1048 20030402
1049  - (bal) if IP_TOS is not found or broken don't try to compile in
1050    packet_set_tos() function call.  bug #527
1051
1052 20030401
1053  - (djm) OpenBSD CVS Sync
1054    - jmc@cvs.openbsd.org 2003/03/28 10:11:43
1055      [scp.1 sftp.1 ssh.1 ssh-add.1 ssh-agent.1 ssh_config.5 sshd_config.5]
1056      [ssh-keygen.1 ssh-keyscan.1 ssh-keysign.8]
1057      - killed whitespace
1058      - new sentence new line
1059      - .Bk for arguments
1060      ok markus@
1061    - markus@cvs.openbsd.org 2003/04/01 10:10:23
1062      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1063      [readconf.h serverloop.c sshconnect2.c]
1064      rekeying bugfixes and automatic rekeying:
1065      * both client and server rekey _automatically_
1066            (a) after 2^31 packets, because after 2^32 packets
1067                the sequence number for packets wraps
1068            (b) after 2^(blocksize_in_bits/4) blocks
1069        (see: draft-ietf-secsh-newmodes-00.txt)
1070        (a) and (b) are _enabled_ by default, and only disabled for known
1071        openssh versions, that don't support rekeying properly.
1072      * client option 'RekeyLimit'
1073      * do not reply to requests during rekeying
1074    - markus@cvs.openbsd.org 2003/04/01 10:22:21
1075      [clientloop.c monitor.c monitor_wrap.c packet.c packet.h readconf.c]
1076      [readconf.h serverloop.c sshconnect2.c]
1077      backout rekeying changes (for 3.6.1)
1078    - markus@cvs.openbsd.org 2003/04/01 10:31:26
1079      [compat.c compat.h kex.c]
1080      bugfix causes stalled connections for ssh.com < 3.0; noticed by ho@; 
1081      tested by ho@ and myself
1082    - markus@cvs.openbsd.org 2003/04/01 10:56:46
1083      [version.h]
1084      3.6.1
1085  - (djm) Crank spec file versions
1086  - (djm) Release 3.6.1p1
1087
1088 20030326
1089  - (djm) OpenBSD CVS Sync
1090    - deraadt@cvs.openbsd.org 2003/03/26 04:02:51
1091      [sftp-server.c]
1092      one last fix to the tree: race fix broke stuff; pr 3169; 
1093      srp@srparish.net, help from djm
1094
1095 20030325
1096  - (djm) Fix getpeerid support for 64 bit BE systems. From 
1097     Arnd Bergmann <arndb@de.ibm.com>
1098
1099 20030324
1100  - (djm) OpenBSD CVS Sync
1101    - markus@cvs.openbsd.org 2003/03/23 19:02:00
1102      [monitor.c]
1103      unbreak rekeying for privsep; ok millert@
1104  - Release 3.6p1
1105  - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1106    Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1107
1108 $Id$
This page took 0.130425 seconds and 3 git commands to generate.