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