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