]> andersk Git - openssh.git/blob - ChangeLog
- markus@cvs.openbsd.org 2002/06/08 12:36:53
[openssh.git] / ChangeLog
1 20020609
2  - (bal) OpenBSD CVS Sync
3    - markus@cvs.openbsd.org 2002/06/08 05:07:56
4      [ssh.c]
5      nuke ptrace comment
6    - markus@cvs.openbsd.org 2002/06/08 05:07:09
7      [ssh-keysign.c]
8      only accept 20 byte session ids
9    - markus@cvs.openbsd.org 2002/06/08 05:17:01
10      [readconf.c readconf.h ssh.1 ssh.c]
11      deprecate FallBackToRsh and UseRsh; patch from djm@
12    - markus@cvs.openbsd.org 2002/06/08 05:40:01
13      [readconf.c]
14      just warn about Deprecated options for now
15    - markus@cvs.openbsd.org 2002/06/08 05:41:18
16      [ssh_config]
17      remove FallBackToRsh/UseRsh
18    - markus@cvs.openbsd.org 2002/06/08 12:36:53
19      [scp.c]
20      remove FallBackToRsh
21
22 20020607
23  - (bal) Removed --{enable/disable}-suid-ssh
24  - (bal) Missed __progname in ssh-keysign.c  patch by dtucker@zip.com.au
25  - (bal) use 'LOGIN_PROGRAM'  not '/usr/bin/login' in session.c patch by
26    Bertrand.Velle@apogee-com.fr
27
28 20020606
29  - (bal) OpenBSD CVS Sync
30    - markus@cvs.openbsd.org 2002/05/15 21:56:38
31      [servconf.c sshd.8 sshd_config]
32      re-enable privsep and disable setuid for post-3.2.2
33    - markus@cvs.openbsd.org 2002/05/16 22:02:50
34      [cipher.c kex.h mac.c]
35      fix warnings (openssl 0.9.7 requires const)
36    - stevesk@cvs.openbsd.org 2002/05/16 22:09:59
37      [session.c ssh.c]
38      don't limit xauth pathlen on client side and longer print length on
39      server when debug; ok markus@
40    - deraadt@cvs.openbsd.org 2002/05/19 20:54:52
41      [log.h]
42      extra commas in enum not 100% portable
43    - deraadt@cvs.openbsd.org 2002/05/22 23:18:25
44      [ssh.c sshd.c]
45      spelling; abishoff@arc.nasa.gov
46    - markus@cvs.openbsd.org 2002/05/23 19:24:30
47      [authfile.c authfile.h pathnames.h ssh.c sshconnect.c sshconnect.h 
48       sshconnect1.c sshconnect2.c ssh-keysign.8 ssh-keysign.c Makefile.in]
49      add /usr/libexec/ssh-keysign: a setuid helper program for hostbased 
50      authentication in protocol v2 (needs to access the hostkeys).
51    - markus@cvs.openbsd.org 2002/05/23 19:39:34
52      [ssh.c]
53      add comment about ssh-keysign
54    - markus@cvs.openbsd.org 2002/05/24 08:45:14
55      [sshconnect2.c]
56      stat ssh-keysign first, print error if stat fails;
57      some debug->error; fix comment
58    - markus@cvs.openbsd.org 2002/05/25 08:50:39
59      [sshconnect2.c]
60      execlp->execl; from stevesk
61    - markus@cvs.openbsd.org 2002/05/25 18:51:07
62      [auth.h auth2.c auth2-hostbased.c auth2-kbdint.c auth2-none.c
63       auth2-passwd.c auth2-pubkey.c Makefile.in]
64      split auth2.c into one file per method; ok provos@/deraadt@
65    - stevesk@cvs.openbsd.org 2002/05/26 20:35:10
66      [ssh.1]
67      sort ChallengeResponseAuthentication; ok markus@
68    - stevesk@cvs.openbsd.org 2002/05/28 16:45:27
69      [monitor_mm.c]
70      print strerror(errno) on mmap/munmap error; ok markus@
71    - stevesk@cvs.openbsd.org 2002/05/28 17:28:02
72      [uidswap.c]
73      format spec change/casts and some KNF; ok markus@
74    - stevesk@cvs.openbsd.org 2002/05/28 21:24:00
75      [uidswap.c]
76      use correct function name in fatal()
77    - stevesk@cvs.openbsd.org 2002/05/29 03:06:30
78      [ssh.1 sshd.8]
79      spelling
80    - markus@cvs.openbsd.org 2002/05/29 11:21:57
81      [sshd.c]
82      don't start if privsep is enabled and SSH_PRIVSEP_USER or
83      _PATH_PRIVSEP_CHROOT_DIR are missing; ok deraadt@
84    - markus@cvs.openbsd.org 2002/05/30 08:07:31
85      [cipher.c]
86      use rijndael/aes from libcrypto (openssl >= 0.9.7) instead of
87      our own implementation. allow use of AES hardware via libcrypto, 
88      ok deraadt@
89    - markus@cvs.openbsd.org 2002/05/31 10:30:33
90      [sshconnect2.c]
91      extent ssh-keysign protocol:
92      pass # of socket-fd to ssh-keysign, keysign verfies locally used
93      ip-address using this socket-fd, restricts fake local hostnames
94      to actual local hostnames; ok stevesk@
95    - markus@cvs.openbsd.org 2002/05/31 11:35:15
96      [auth.h auth2.c]
97      move Authmethod definitons to per-method file.
98    - markus@cvs.openbsd.org 2002/05/31 13:16:48
99      [key.c]
100      add comment:
101      key_verify returns 1 for a correct signature, 0 for an incorrect signature
102      and -1 on error.
103    - markus@cvs.openbsd.org 2002/05/31 13:20:50
104      [ssh-rsa.c]
105      pad received signature with leading zeros, because RSA_verify expects
106      a signature of RSA_size. the drafts says the signature is transmitted
107      unpadded (e.g. putty does not pad), reported by anakin@pobox.com
108    - deraadt@cvs.openbsd.org 2002/06/03 12:04:07
109      [ssh.h]
110      compatiblity -> compatibility
111      decriptor -> descriptor
112      authentciated -> authenticated
113      transmition -> transmission
114    - markus@cvs.openbsd.org 2002/06/04 19:42:35
115      [monitor.c]
116      only allow enabled authentication methods; ok provos@
117    - markus@cvs.openbsd.org 2002/06/04 19:53:40
118      [monitor.c]
119      save the session id (hash) for ssh2 (it will be passed with the 
120      initial sign request) and verify that this value is used during 
121      authentication; ok provos@
122    - markus@cvs.openbsd.org 2002/06/04 23:02:06
123      [packet.c]
124      remove __FUNCTION__
125    - markus@cvs.openbsd.org 2002/06/04 23:05:49
126      [cipher.c monitor.c monitor_fdpass.c monitor_mm.c monitor_wrap.c]
127      __FUNCTION__ -> __func__
128    - markus@cvs.openbsd.org 2002/06/05 16:08:07
129      [ssh-agent.1 ssh-agent.c]
130      '-a bind_address' binds the agent to user-specified unix-domain
131      socket instead of /tmp/ssh-XXXXXXXX/agent.<pid>; ok djm@ (some time ago).
132    - markus@cvs.openbsd.org 2002/06/05 16:08:07
133      [ssh-agent.1 ssh-agent.c]
134      '-a bind_address' binds the agent to user-specified unix-domain
135      socket instead of /tmp/ssh-XXXXXXXX/agent.<pid>; ok djm@ (some time ago).
136    - markus@cvs.openbsd.org 2002/06/05 16:48:54
137      [ssh-agent.c]
138      copy current request into an extra buffer and just flush this
139      request on errors, ok provos@
140    - markus@cvs.openbsd.org 2002/06/05 19:57:12
141      [authfd.c authfd.h ssh-add.1 ssh-add.c ssh-agent.c]
142      ssh-add -x for lock and -X for unlocking the agent.
143      todo: encrypt private keys with locked...
144    - markus@cvs.openbsd.org 2002/06/05 20:56:39
145      [ssh-add.c]
146      add -x/-X to usage
147    - markus@cvs.openbsd.org 2002/06/05 21:55:44
148      [authfd.c authfd.h ssh-add.1 ssh-add.c ssh-agent.c]
149      ssh-add -t life,  Set lifetime (in seconds) when adding identities; 
150      ok provos@
151    - stevesk@cvs.openbsd.org 2002/06/06 01:09:41
152      [monitor.h]
153      no trailing comma in enum; china@thewrittenword.com
154    - markus@cvs.openbsd.org 2002/06/06 17:12:44
155      [sftp-server.c]
156      discard remaining bytes of current request; ok provos@
157    - markus@cvs.openbsd.org 2002/06/06 17:30:11
158      [sftp-server.c]
159      use get_int() macro (hide iqueue)
160  - (bal) Missed msg.[ch] in merge.  Required for ssh-keysign.
161  - (bal) Forgot to add msg.c Makefile.in.
162  - (bal) monitor_mm.c typos.
163  - (bal) Refixed auth2.c.  It was never fully commited while spliting out
164    authentication to different files.
165  - (bal) ssh-keysign should build and install correctly now.  Phase two
166    would be to clean out any dead wood and disable ssh setuid on install.
167  - (bal) Reverse logic, use __func__ first since it's C99
168
169 20020604
170  - (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
171    setsockopt from debug to error for now).
172
173 20020527
174  - (tim) [configure.ac.orig monitor_fdpass.c] Enahnce msghdr tests to address
175    build problem on Irix reported by Dave Love <d.love@dl.ac.uk>. Back out
176    last monitor_fdpass.c changes that are no longer needed with new tests.
177    Patch tested on Irix by Jan-Frode Myklebust <janfrode@parallab.uib.no>
178
179 20020522
180  - (djm) Fix spelling mistakes, spotted by Solar Designer i
181    <solar@openwall.com>
182  - Sync scard/ (not sure when it drifted)
183  - (djm) OpenBSD CVS Sync:
184    [auth.c]
185    Fix typo/thinko.  Pass in as to auth_approval(), not NULL.
186    Closes PR 2659.
187  - Crank version
188  - Crank RPM spec versions
189
190 20020521
191  - (stevesk) [sshd.c] bug 245; disable setsid() for now
192  - (stevesk) [sshd.c] #ifndef HAVE_CYGWIN for setgroups()
193
194 20020517
195  - (tim) [configure.ac] remove extra MD5_MSG="no" line.
196
197 20020515
198  - (bal) CVS ID fix up on auth-passwd.c
199  - (bal) OpenBSD CVS Sync
200    - deraadt@cvs.openbsd.org 2002/05/07 19:54:36
201      [ssh.h]
202      use ssh uid
203    - deraadt@cvs.openbsd.org 2002/05/08 21:06:34
204      [ssh.h]
205      move to sshd.sshd instead
206    - stevesk@cvs.openbsd.org 2002/05/11 20:24:48
207      [ssh.h]
208      typo in comment
209    - itojun@cvs.openbsd.org 2002/05/13 02:37:39
210      [auth-skey.c auth2.c]
211      less warnings.  skey_{respond,query} are public (in auth.h)
212    - markus@cvs.openbsd.org 2002/05/13 20:44:58
213      [auth-options.c auth.c auth.h]
214      move the packet_send_debug handling from auth-options.c to auth.c; 
215      ok provos@
216    - millert@cvs.openbsd.org 2002/05/13 15:53:19
217      [sshd.c]
218      Call setsid() in the child after sshd accepts the connection and forks.
219      This is needed for privsep which calls setlogin() when it changes uids.
220      Without this, there is a race where the login name of an existing 
221      connection, as returned by getlogin(), may be changed to the privsep 
222      user (sshd).  markus@ OK
223    - markus@cvs.openbsd.org 2002/05/13 21:26:49
224      [auth-rhosts.c]
225      handle debug messages during rhosts-rsa and hostbased authentication; 
226      ok provos@
227    - mouring@cvs.openbsd.org 2002/05/15 15:47:49
228      [kex.c monitor.c monitor_wrap.c sshd.c]
229      'monitor' variable clashes with at least one lame platform (NeXT).  i
230      Renamed to 'pmonitor'.  provos@
231    - deraadt@cvs.openbsd.org 2002/05/04 02:39:35
232      [servconf.c sshd.8 sshd_config]
233      enable privsep by default; provos ok
234    - millert@cvs.openbsd.org 2002/05/06 23:34:33
235      [ssh.1 sshd.8]
236      Kill/adjust r(login|exec)d? references now that those are no longer in
237      the tree.
238    - markus@cvs.openbsd.org 2002/05/15 21:02:53
239      [servconf.c sshd.8 sshd_config]
240      disable privsep and enable setuid for the 3.2.2 release
241  - (bal) Fixed up PAM case.  I think.
242  - (bal) Clarified openbsd-compat/*-cray.* Licence provided by Wendy
243  - (bal) OpenBSD CVS Sync
244    - markus@cvs.openbsd.org 2002/05/15 21:05:29
245      [version.h]
246      enter OpenSSH_3.2.2
247  - (bal) Caldara, Suse, and Redhat openssh.specs updated.
248
249 20020514
250  - (stevesk) [README.privsep] PAM+privsep works with Solaris 8.
251  - (tim) [sshpty.c] set tty modes when allocating old style bsd ptys to
252    match what newer style ptys have when allocated. Based on a patch by
253    Roger Cornelius <rac@tenzing.org>
254  - (tim) [README.privsep] UnixWare 7 and OpenUNIX 8 work.
255  - (tim) [README.privsep] remove reference to UnixWare 7 and OpenUNIX 8
256    from PAM-enabled pragraph. UnixWare has no PAM.
257  - (tim) [contrib/caldera/openssh.spec] update version.
258
259 20020513
260  - (stevesk) add initial README.privsep
261  - (stevesk) [configure.ac] nicer message: --with-privsep-user=user
262  - (djm) Add --with-superuser-path=xxx configure option to specify 
263    what $PATH the superuser receives.
264  - (djm) Bug #231: UsePrivilegeSeparation turns off Banner.
265  - (djm) Add --with-privsep-path configure option
266  - (djm) Update RPM spec file: different superuser path, use
267    /var/empty/sshd for privsep
268  - (djm) Bug #234: missing readpassphrase declaration and defines
269  - (djm) Add INSTALL warning about SSH protocol 1 blowfish w/ 
270     OpenSSL < 0.9.6
271
272 20020511
273  - (tim) [configure.ac] applied a rework of djm's OpenSSL search cleanup patch.
274    Now only searches system and /usr/local/ssl (OpenSSL's default install path)
275    Others must use --with-ssl-dir=....
276  - (tim) [monitor_fdpass.c] fix for systems that have both
277    HAVE_ACCRIGHTS_IN_MSGHDR and HAVE_CONTROL_IN_MSGHDR. Ie. sys/socket.h 
278    has #define msg_accrights msg_control
279
280 20020510
281  - (stevesk) [auth.c] Shadow account and expiration cleanup.  Now
282    check for root forced expire.  Still don't check for inactive.
283  - (djm) Rework RedHat RPM files. Based on spec from Nalin 
284    Dahyabhai <nalin@redhat.com> and patches from 
285    Pekka Savola <pekkas@netcore.fi>
286  - (djm) Try to drop supplemental groups at daemon startup. Patch from 
287    RedHat
288  - (bal) Back all the way out of auth-passwd.c changes.  Breaks too many
289    things that don't set pw->pw_passwd.
290
291 20020509
292  - (tim) [Makefile.in] Unbreak make -f Makefile.in distprep
293
294 20020508
295  - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is
296    called. Report by Chris Maxwell <maxwell@cs.dal.ca>
297  - (tim) [Makefile.in configure.ac] set SHELL variable in Makefile
298  - (djm) Disable PAM kbd-int auth if privsep is turned on (it doesn't work)
299
300 20020507
301  - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
302    Add truncate() emulation to address Bug 208
303
304 20020506
305  - (djm) Unbreak auth-passwd.c for PAM and SIA
306  - (djm) Unbreak PAM auth for protocol 1. Report from Pekka Savola 
307    <pekkas@netcore.fi>
308  - (djm) Don't reinitialise PAM credentials before we have started PAM.
309    Report from Pekka Savola <pekkas@netcore.fi>
310    
311 20020506
312  - (bal) Fixed auth-passwd.c to resolve PermitEmptyPassword issue
313  
314 20020501
315  - (djm) Import OpenBSD regression tests. Requires BSD make to run
316  - (djm) Fix readpassphase compilation for systems which have it
317
318 20020429
319  - (tim) [contrib/caldera/openssh.spec] update fixUP to reflect changes in
320    sshd_config.
321  - (tim) [contrib/cygwin/README] remove reference to regex.
322    patch from Corinna Vinschen <vinschen@redhat.com>
323
324 20020426
325  - (djm) Bug #137, #209: fix make problems for scard/Ssh.bin, do uudecode
326    during distprep only
327  - (djm) Disable PAM password expiry until a complete fix for bug #188 
328    exists
329  - (djm) Bug #180: Set ToS bits on IPv4-in-IPv6 mapped addresses. Based on 
330    patch from openssh@misc.tecq.org
331
332 20020425
333  - (stevesk) [defines.h] remove USE_TIMEVAL; unused
334  - (stevesk) [acconfig.h auth-passwd.c configure.ac sshd.c] HP-UX 10.26
335    support.  bug #184.  most from dcole@keysoftsys.com.
336
337 20020424
338  - (djm) OpenBSD CVS Sync
339    - markus@cvs.openbsd.org 2002/04/23 12:54:10
340      [version.h]
341      3.2.1
342    - djm@cvs.openbsd.org 2002/04/23 22:16:29
343      [sshd.c]
344      Improve error message; ok markus@ stevesk@
345
346 20020423
347  - (stevesk) [acconfig.h configure.ac session.c] LOGIN_NO_ENDOPT for HP-UX
348  - (stevesk) [acconfig.h] NEED_IN_SYSTM_H unused
349  - (markus) OpenBSD CVS Sync
350    - markus@cvs.openbsd.org 2002/04/23 12:58:26
351      [radix.c]
352      send complete ticket; semerad@ss1000.ms.mff.cuni.cz
353  - (djm) Trim ChangeLog to include only post-3.1 changes
354  - (djm) Update RPM spec file versions
355  - (djm) Redhat spec enables KrbV by default
356  - (djm) Applied OpenSC smartcard updates from Markus & 
357    Antti Tapaninen <aet@cc.hut.fi>
358  - (djm) Define BROKEN_REALPATH for AIX, patch from 
359    Antti Tapaninen <aet@cc.hut.fi>
360  - (djm) Bug #214: Fix utmp for Irix (don't strip "tty"). Patch from 
361    Kevin Taylor <no@nowhere.org> (??) via Philipp Grau
362    <phgrau@zedat.fu-berlin.de>
363  - (djm) Bug #213: Simplify CMSG_ALIGN macros to avoid symbol clashes. 
364    Reported by Doug Manton <dmanton@emea.att.com>
365  - (djm) Bug #222: Fix tests for getaddrinfo on OSF/1. Spotted by
366    Robert Urban <urban@spielwiese.de>
367  - (djm) Bug #206 - blibpath isn't always needed for AIX ld, avoid 
368    sizeof(long long int) == 4 breakage. Patch from Matthew Clarke
369    <Matthew_Clarke@mindlink.bc.ca>
370  - (djm) Make privsep work with PAM (still experimental)
371  - (djm) OpenBSD CVS Sync
372    - deraadt@cvs.openbsd.org 2002/04/20 09:02:03
373      [servconf.c]
374      No, afs requires explicit enabling
375    - markus@cvs.openbsd.org 2002/04/20 09:14:58
376      [bufaux.c bufaux.h]
377      add buffer_{get,put}_short
378    - markus@cvs.openbsd.org 2002/04/20 09:17:19
379      [radix.c]
380      rewrite using the buffer_* API, fixes overflow; ok deraadt@
381    - stevesk@cvs.openbsd.org 2002/04/21 16:19:27
382      [sshd.8 sshd_config]
383      document default AFSTokenPassing no; ok deraadt@
384    - stevesk@cvs.openbsd.org 2002/04/21 16:25:06
385      [sshconnect1.c]
386      spelling in error message; ok markus@
387    - markus@cvs.openbsd.org 2002/04/22 06:15:47
388      [radix.c]
389      fix check for overflow
390    - markus@cvs.openbsd.org 2002/04/22 16:16:53
391      [servconf.c sshd.8 sshd_config]
392      do not auto-enable KerberosAuthentication; ok djm@, provos@, deraadt@
393    - markus@cvs.openbsd.org 2002/04/22 21:04:52
394      [channels.c clientloop.c clientloop.h ssh.c]
395      request reply (success/failure) for -R style fwd in protocol v2,
396      depends on ordered replies.
397      fixes http://bugzilla.mindrot.org/show_bug.cgi?id=215; ok provos@
398
399 20020421
400  - (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).
401    entropy.c needs seteuid(getuid()) for the setuid(original_uid) to 
402    succeed. Patch by gert@greenie.muc.de. This fixes one part of Bug 208
403
404 20020418
405  - (djm) Avoid SIGCHLD breakage when run from rsync. Fix from 
406    Sturle Sunde <sturle.sunde@usit.uio.no>
407
408 20020417
409  - (djm) Tell users to configure /dev/random support into OpenSSL in 
410    INSTALL
411  - (djm) Fix .Nm in mdoc2man.pl from pspencer@fields.utoronto.ca
412  - (tim) [configure.ac] Issue warning on --with-default-path=/some_path
413    if LOGIN_CAP is enabled. Report & testing by Tuc <tuc@ttsg.com>
414
415 20020415
416  - (djm) Unbreak "make install". Fix from Darren Tucker 
417    <dtucker@zip.com.au>
418  - (stevesk) bsd-cygwin_util.[ch] BSD license from Corinna Vinschen
419  - (tim) [configure.ac] add tests for recvmsg and sendmsg.
420    [monitor_fdpass.c] add checks for HAVE_SENDMSG and HAVE_RECVMSG for
421    systems that HAVE_ACCRIGHTS_IN_MSGHDR but no recvmsg or sendmsg.
422
423 20020414
424  - (djm) ssh-rand-helper improvements
425    - Add commandline debugging options
426    - Don't write binary data if stdout is a tty (use hex instead)
427    - Give it a manpage
428  - (djm) Random number collection doc fixes from Ben
429
430 20020413
431  - (djm) Add KrbV support patch from Simon Wilkinson <simon@sxw.org.uk>
432
433 20020412
434  - (stevesk) [auth-sia.[ch]] add BSD license from Chris Adams
435  - (tim) [configure.ac] add <sys/types.h> to msghdr tests. Change -L
436    to -h on testing for /bin being symbolic link
437  - (bal) Mistaken in Cygwin scripts for ssh starting.  Patch by
438    Corinna Vinschen <vinschen@redhat.com> 
439  - (bal) disable privsep if no MAP_ANON.  We can re-enable it
440    after the release when we can do more testing.
441
442 20020411
443  - (stevesk) [auth-sia.c] cleanup
444  - (tim) [acconfig.h defines.h includes.h] put includes in includes.h and
445    defines in defines.h [rijndael.c openbsd-compat/fake-socket.h
446    openbsd-compat/inet_aton.c] include "includes.h" instead of "config.h"
447    ok stevesk@
448
449 20020410
450  - (stevesk) [configure.ac monitor.c] HAVE_SOCKETPAIR
451  - (stevesk) [auth-sia.c] compile fix Chris Adams <cmadams@hiwaay.net>
452  - (bal) OpenBSD CVS Sync
453    - markus@cvs.openbsd.org 2002/04/10 08:21:47
454      [auth1.c compat.c compat.h]
455      strip '@' from username only for KerbV and known broken clients, 
456      bug #204
457    - markus@cvs.openbsd.org 2002/04/10 08:56:01
458      [version.h]
459      OpenSSH_3.2
460  - Added p1 to idenify Portable release version.
461
462 20020408
463  - (bal) Minor OpenSC updates.  Fix up header locations and update
464    README.smartcard provided by Juha Yrjölä <jyrjola@cc.hut.fi>
465
466 20020407
467  - (stevesk) HAVE_CONTROL_IN_MSGHDR; not used right now.
468    Future: we may want to test if fd passing works correctly.
469  - (stevesk) [monitor_fdpass.c] fatal() for UsePrivilegeSeparation=yes
470    and no fd passing support.
471  - (stevesk) HAVE_MMAP and HAVE_SYS_MMAN_H and use them in
472    monitor_mm.c
473  - (stevesk) remove configure support for poll.h; it was removed
474    from sshd.c a long time ago.
475  - (stevesk) --with-privsep-user; default sshd
476  - (stevesk) wrap munmap() with HAVE_MMAP also.
477
478 20020406
479  - (djm) Typo in Suse SPEC file. Fix from Carsten Grohmann 
480    <carsten.grohmann@dr-baldeweg.de>
481  - (bal) Added MAP_FAILED to allow AIX and Trusted HP to compile.
482  - (bal) OpenBSD CVS Sync
483    - djm@cvs.openbsd.org 2002/04/06 00:30:08
484      [sftp-client.c]
485      Fix occasional corruption on upload due to bad reuse of request 
486      id, spotted by chombier@mac.com; ok markus@
487    - mouring@cvs.openbsd.org 2002/04/06 18:24:09
488      [scp.c]
489      Fixes potental double // within path.
490      http://bugzilla.mindrot.org/show_bug.cgi?id=76
491  - (bal) Slight update to OpenSC support.  Better version checking. patch
492    by Juha Yrjölä <jyrjola@cc.hut.fi> 
493  - (bal) Revered out of runtime IRIX detection of joblimits.  Code is
494    incomplete.
495  - (bal) Quiet down configure.ac if /bin/test does not exist.
496  - (bal) We no longer use atexit()/xatexit()/on_exit()
497
498 20020405
499  - (bal) Patch for OpenSC SmartCard library; ok markus@; patch by
500    Juha Yrjölä <jyrjola@cc.hut.fi>
501  - (bal) Minor documentation update to reflect smartcard library
502    support changes.
503  - (bal) Too many <sys/queue.h> issues.  Remove all workarounds and
504    using internal version only.
505  - (bal) OpenBSD CVS Sync
506    - stevesk@cvs.openbsd.org 2002/04/05 20:56:21
507      [sshd.8]
508      clarify sshrc some and handle X11UseLocalhost=yes; ok markus@
509
510 20020404
511  - (stevesk) [auth-pam.c auth-pam.h auth-passwd.c auth-sia.c auth-sia.h
512     auth1.c auth2.c] PAM, OSF_SIA password auth cleanup; from djm.
513  - (bal) OpenBSD CVS Sync
514    - markus@cvs.openbsd.org 2002/04/03 09:26:11
515      [cipher.c myproposal.h]
516      re-add rijndael-cbc@lysator.liu.se for MacSSH; ash@lab.poc.net
517
518 20020402
519  - (bal) Hand Sync of scp.c (reverted to upstream code)
520    - deraadt@cvs.openbsd.org 2002/03/30 17:45:46
521      [scp.c]
522      stretch banners
523  - (bal) CVS ID sync of uidswap.c
524  - (bal) OpenBSD CVS Sync (now for the real sync)
525    - markus@cvs.openbsd.org 2002/03/27 22:21:45
526      [ssh-keygen.c]
527      try to import keys with extra trailing === (seen with ssh.com < 
528      2.0.12)
529    - markus@cvs.openbsd.org 2002/03/28 15:34:51
530      [session.c]
531      do not call record_login twice (for use_privsep)
532    - markus@cvs.openbsd.org 2002/03/29 18:59:32
533      [session.c session.h]
534      retrieve last login time before the pty is allocated, store per 
535      session
536    - stevesk@cvs.openbsd.org 2002/03/29 19:16:22
537      [sshd.8]
538      RSA key modulus size minimum 768; ok markus@
539    - stevesk@cvs.openbsd.org 2002/03/29 19:18:33
540      [auth-rsa.c ssh-rsa.c ssh.h]
541      make RSA modulus minimum #define; ok markus@
542    - markus@cvs.openbsd.org 2002/03/30 18:51:15
543      [monitor.c serverloop.c sftp-int.c sftp.c sshd.c]
544      check waitpid for EINTR; based on patch from peter@ifm.liu.se
545    - markus@cvs.openbsd.org 2002/04/01 22:02:16
546      [sftp-client.c]
547      20480 is an upper limit for older server
548    - markus@cvs.openbsd.org 2002/04/01 22:07:17
549      [sftp-client.c]
550      fallback to stat if server does not support lstat
551    - markus@cvs.openbsd.org 2002/04/02 11:49:39
552      [ssh-agent.c]
553      check $SHELL for -k and -d, too;
554      http://bugzilla.mindrot.org/show_bug.cgi?id=199
555    - markus@cvs.openbsd.org 2002/04/02 17:37:48
556      [sftp.c]
557      always call log_init()
558    - markus@cvs.openbsd.org 2002/04/02 20:11:38
559      [ssh-rsa.c]
560      ignore SSH_BUG_SIGBLOB for ssh-rsa; #187
561  - (bal) mispelling in uidswap.c (portable only)
562
563 20020401
564  - (stevesk) [monitor.c] PAM should work again; will *not* work with
565    UsePrivilegeSeparation=yes.
566  - (stevesk) [auth1.c] fix password auth for protocol 1 when
567    !USE_PAM && !HAVE_OSF_SIA; merge issue.
568
569 20020331
570  - (tim) [configure.ac] use /bin/test -L to work around broken builtin on
571    Solaris 8
572  - (tim) [sshconnect2.c] change uint32_t to u_int32_t
573
574 20020330
575  - (stevesk) [configure.ac] remove header check for sys/ttcompat.h
576    bug 167
577
578 20020327
579  - (bal) 'pw' should be 'authctxt->pw' in auth1.c spotted by 
580    kent@lysator.liu.se
581  - (bal) OpenBSD CVS Sync
582    - markus@cvs.openbsd.org 2002/03/26 11:34:49
583      [ssh.1 sshd.8]
584      update to recent drafts
585    - markus@cvs.openbsd.org 2002/03/26 11:37:05
586      [ssh.c]
587      update Copyright
588    - markus@cvs.openbsd.org 2002/03/26 15:23:40
589      [bufaux.c]
590      do not talk about packets in bufaux
591    - rees@cvs.openbsd.org 2002/03/26 18:46:59
592      [scard.c]
593      try_AUT0 in read_pubkey too, for those paranoid few who want to 
594      acl 'sh'
595    - markus@cvs.openbsd.org 2002/03/26 22:50:39
596      [channels.h]
597      CHANNEL_EFD_OUTPUT_ACTIVE is false for CHAN_CLOSE_RCVD, too
598    - markus@cvs.openbsd.org 2002/03/26 23:13:03
599      [auth-rsa.c]
600      disallow RSA keys < 768 for protocol 1, too (rhosts-rsa and rsa auth)
601    - markus@cvs.openbsd.org 2002/03/26 23:14:51
602      [kex.c]
603      generate a new cookie for each SSH2_MSG_KEXINIT message we send out
604    - mouring@cvs.openbsd.org 2002/03/27 11:45:42
605      [monitor.c]
606      monitor_allowed_key() returns int instead of pointer.  ok markus@
607   
608 20020325
609  - (stevesk) import OpenBSD <sys/tree.h> as "openbsd-compat/tree.h"
610  - (bal) OpenBSD CVS Sync
611    - stevesk@cvs.openbsd.org 2002/03/23 20:57:26
612      [sshd.c]
613      setproctitle() after preauth child; ok markus@
614    - markus@cvs.openbsd.org 2002/03/24 16:00:27
615      [serverloop.c]
616      remove unused debug
617    - markus@cvs.openbsd.org 2002/03/24 16:01:13
618      [packet.c]
619      debug->debug3 for extra padding
620    - stevesk@cvs.openbsd.org 2002/03/24 17:27:03
621      [kexgex.c]
622      typo; ok markus@
623    - stevesk@cvs.openbsd.org 2002/03/24 17:53:16
624      [monitor_fdpass.c]
625      minor cleanup and more error checking; ok markus@
626    - markus@cvs.openbsd.org 2002/03/24 18:05:29
627      [scard.c]
628      we need to figure out AUT0 for sc_private_encrypt, too
629    - stevesk@cvs.openbsd.org 2002/03/24 23:20:00
630      [monitor.c]
631      remove "\n" from fatal()
632    - markus@cvs.openbsd.org 2002/03/25 09:21:13
633      [auth-rsa.c]
634      return 0 (not NULL); tomh@po.crl.go.jp
635    - markus@cvs.openbsd.org 2002/03/25 09:25:06
636      [auth-rh-rsa.c]
637      rm bogus comment
638    - markus@cvs.openbsd.org 2002/03/25 17:34:27
639      [scard.c scard.h ssh-agent.c ssh-keygen.c ssh.c]
640      change sc_get_key to sc_get_keys and hide smartcard details in scard.c
641    - stevesk@cvs.openbsd.org 2002/03/25 20:12:10
642      [monitor_mm.c monitor_wrap.c]
643      ssize_t args use "%ld" and cast to (long)
644      size_t args use "%lu" and cast to (u_long)
645      ok markus@ and thanks millert@
646    - markus@cvs.openbsd.org 2002/03/25 21:04:02
647      [ssh.c]
648      simplify num_identity_files handling
649    - markus@cvs.openbsd.org 2002/03/25 21:13:51
650      [channels.c channels.h compat.c compat.h nchan.c]
651      don't send stderr data after EOF, accept this from older known 
652      (broken) sshd servers only, fixes
653      http://bugzilla.mindrot.org/show_bug.cgi?id=179
654    - stevesk@cvs.openbsd.org 2002/03/26 03:24:01
655      [monitor.h monitor_fdpass.h monitor_mm.h monitor_wrap.h]
656      $OpenBSD$
657
658 20020324
659  - (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
660    it can be removed. only used on solaris. will no longer compile with
661    privsep shuffling.
662
663 20020322
664  - (stevesk) HAVE_ACCRIGHTS_IN_MSGHDR configure support
665  - (stevesk) [monitor.c monitor_wrap.c] #ifdef HAVE_PW_CLASS_IN_PASSWD
666  - (stevesk) configure and cpp __FUNCTION__ gymnastics to handle nielsisms
667  - (stevesk) [monitor_fdpass.c] support for access rights style file
668    descriptor passing
669  - (stevesk) [auth2.c] merge cleanup/sync
670  - (stevesk) [defines.h] hp-ux 11 has ancillary data style fd passing, but
671    is missing CMSG_LEN() and CMSG_SPACE() macros.
672  - (stevesk) [defines.h] #define MAP_ANON MAP_ANONYMOUS for HP-UX; other
673    platforms may need this--I'm not sure.  mmap() issues will need to be
674    addressed further.
675  - (tim) [cipher.c] fix problem with OpenBSD sync
676  - (stevesk) [LICENCE] OpenBSD sync
677
678 20020321
679  - (bal) OpenBSD CVS Sync
680    - itojun@cvs.openbsd.org 2002/03/08 06:10:16
681      [sftp-client.c]
682      printf type mismatch
683    - itojun@cvs.openbsd.org 2002/03/11 03:18:49
684      [sftp-client.c]
685      correct type mismatches (u_int64_t != unsigned long long)
686    - itojun@cvs.openbsd.org 2002/03/11 03:19:53
687      [sftp-client.c]
688      indent
689    - markus@cvs.openbsd.org 2002/03/14 15:24:27
690      [sshconnect1.c]
691      don't trust size sent by (rogue) server; noted by 
692      s.esser@e-matters.de
693    - markus@cvs.openbsd.org 2002/03/14 16:38:26
694      [sshd.c]
695      split out ssh1 session key decryption; ok provos@
696    - markus@cvs.openbsd.org 2002/03/14 16:56:33
697      [auth-rh-rsa.c auth-rsa.c auth.h]
698      split auth_rsa() for better readability and privsep; ok provos@
699    - itojun@cvs.openbsd.org 2002/03/15 11:00:38
700      [auth.c]
701      fix file type checking (use S_ISREG).  ok by markus
702    - markus@cvs.openbsd.org 2002/03/16 11:24:53
703      [compress.c]
704      skip inflateEnd if inflate fails; ok provos@
705    - markus@cvs.openbsd.org 2002/03/16 17:22:09
706      [auth-rh-rsa.c auth.h]
707      split auth_rhosts_rsa(), ok provos@
708    - stevesk@cvs.openbsd.org 2002/03/16 17:41:25
709      [auth-krb5.c]
710      BSD license.  from Daniel Kouril via Dug Song.  ok markus@
711    - provos@cvs.openbsd.org 2002/03/17 20:25:56
712      [auth.c auth.h auth1.c auth2.c]
713      getpwnamallow returns struct passwd * only if user valid; 
714      okay markus@
715    - provos@cvs.openbsd.org 2002/03/18 01:12:14
716      [auth.h auth1.c auth2.c sshd.c]
717      have the authentication functions return the authentication context
718      and then do_authenticated; okay millert@
719    - dugsong@cvs.openbsd.org 2002/03/18 01:30:10
720      [auth-krb4.c]
721      set client to NULL after xfree(), from Rolf Braun 
722      <rbraun+ssh@andrew.cmu.edu>
723    - provos@cvs.openbsd.org 2002/03/18 03:41:08
724      [auth.c session.c]
725      move auth_approval into getpwnamallow with help from millert@
726    - markus@cvs.openbsd.org 2002/03/18 17:13:15
727      [cipher.c cipher.h]
728      export/import cipher states; needed by ssh-privsep
729    - markus@cvs.openbsd.org 2002/03/18 17:16:38
730      [packet.c packet.h]
731      export/import cipher state, iv and ssh2 seqnr; needed by ssh-privsep
732    - markus@cvs.openbsd.org 2002/03/18 17:23:31
733      [key.c key.h]
734      add key_demote() for ssh-privsep
735    - provos@cvs.openbsd.org 2002/03/18 17:25:29
736      [bufaux.c bufaux.h]
737      buffer_skip_string and extra sanity checking; needed by ssh-privsep
738    - provos@cvs.openbsd.org 2002/03/18 17:31:54
739      [compress.c]
740      export compression streams for ssh-privsep
741    - provos@cvs.openbsd.org 2002/03/18 17:50:31
742      [auth-bsdauth.c auth-options.c auth-rh-rsa.c auth-rsa.c]
743      [auth-skey.c auth.h auth1.c auth2-chall.c auth2.c kex.c kex.h kexdh.c]
744      [kexgex.c servconf.c]
745      [session.h servconf.h serverloop.c session.c sshd.c]
746      integrate privilege separated openssh; its turned off by default 
747      for now. work done by me and markus@
748    - provos@cvs.openbsd.org 2002/03/18 17:53:08
749      [sshd.8]
750      credits for privsep
751    - provos@cvs.openbsd.org 2002/03/18 17:59:09
752      [sshd.8]
753      document UsePrivilegeSeparation
754    - stevesk@cvs.openbsd.org 2002/03/18 23:52:51
755      [servconf.c]
756      UnprivUser/UnprivGroup usable now--specify numeric user/group; ok
757      provos@
758    - stevesk@cvs.openbsd.org 2002/03/19 03:03:43
759      [pathnames.h servconf.c servconf.h sshd.c]
760      _PATH_PRIVSEP_CHROOT_DIR; ok provos@
761    - stevesk@cvs.openbsd.org 2002/03/19 05:23:08
762      [sshd.8]
763      Banner has no default.
764    - mpech@cvs.openbsd.org 2002/03/19 06:32:56
765      [sftp-int.c]
766      use xfree() after xstrdup().
767
768      markus@ ok
769    - markus@cvs.openbsd.org 2002/03/19 10:35:39
770      [auth-options.c auth.h session.c session.h sshd.c]
771      clean up prototypes
772    - markus@cvs.openbsd.org 2002/03/19 10:49:35
773      [auth-krb5.c auth-rh-rsa.c auth.c cipher.c key.c misc.h]
774      [packet.c session.c sftp-client.c sftp-glob.h sftp.c ssh-add.c ssh.c]
775      [sshconnect2.c sshd.c ttymodes.c]
776      KNF whitespace
777    - markus@cvs.openbsd.org 2002/03/19 14:27:39
778      [auth.c auth1.c auth2.c]
779      make getpwnamallow() allways call pwcopy()
780    - markus@cvs.openbsd.org 2002/03/19 15:31:47
781      [auth.c]
782      check for NULL; from provos@
783    - stevesk@cvs.openbsd.org 2002/03/20 19:12:25
784      [servconf.c servconf.h ssh.h sshd.c]
785      for unprivileged user, group do:
786      pw=getpwnam(SSH_PRIVSEP_USER); do_setusercontext(pw).  ok provos@
787    - stevesk@cvs.openbsd.org 2002/03/20 21:08:08
788      [sshd.c]
789      strerror() on chdir() fail; ok provos@
790    - markus@cvs.openbsd.org 2002/03/21 10:21:20
791      [ssh-add.c]
792      ignore errors for nonexisting default keys in ssh-add,
793      fixes http://bugzilla.mindrot.org/show_bug.cgi?id=158
794    - jakob@cvs.openbsd.org 2002/03/21 15:17:26
795      [clientloop.c ssh.1]
796      add built-in command line for adding new port forwardings on the fly.
797      based on a patch from brian wellington. ok markus@.
798    - markus@cvs.openbsd.org 2002/03/21 16:38:06
799      [scard.c]
800      make compile w/ openssl 0.9.7
801    - markus@cvs.openbsd.org 2002/03/21 16:54:53
802      [scard.c scard.h ssh-keygen.c]
803      move key upload to scard.[ch]
804    - markus@cvs.openbsd.org 2002/03/21 16:57:15
805      [scard.c]
806      remove const
807    - markus@cvs.openbsd.org 2002/03/21 16:58:13
808      [clientloop.c]
809      remove unused
810    - rees@cvs.openbsd.org 2002/03/21 18:08:15
811      [scard.c]
812      In sc_put_key(), sc_reader_id should be id.
813    - markus@cvs.openbsd.org 2002/03/21 20:51:12
814      [sshd_config]
815      add privsep (off)
816    - markus@cvs.openbsd.org 2002/03/21 21:23:34
817      [sshd.c]
818      add privsep_preauth() and remove 1 goto; ok provos@
819    - rees@cvs.openbsd.org 2002/03/21 21:54:34
820      [scard.c scard.h ssh-keygen.c]
821      Add PIN-protection for secret key.
822    - rees@cvs.openbsd.org 2002/03/21 22:44:05
823      [authfd.c authfd.h ssh-add.c ssh-agent.c ssh.c]
824      Add PIN-protection for secret key.
825    - markus@cvs.openbsd.org 2002/03/21 23:07:37
826      [clientloop.c]
827      remove unused, sync w/ cmdline patch in my tree.
828
829 20020317
830  - (tim) [configure.ac] Assume path given with --with-pid-dir=PATH is 
831    wanted, warn if directory does not exist. Put system directories in 
832    front of PATH for finding entorpy commands.
833  - (tim) [contrib/aix/buildbff.sh contrib/aix/inventory.sh] AIX package
834    build fixes.  Patch by Darren Tucker <dtucker@zip.com.au>
835    [contrib/solaris/buildpkg.sh] add missing dirs to SYSTEM_DIR. Have
836    postinstall check for $piddir and add if necessary.
837
838 20020311
839  - (tim) [contrib/solaris/buildpkg.sh, contrib/solaris/README] Updated to
840    build on all platforms that support SVR4 style package tools. Now runs
841    from build dir. Parts are based on patches from Antonio Navarro, and
842    Darren Tucker.
843
844 20020308
845  - (djm) Revert bits of Markus' OpenSSL compat patch which was 
846    accidentally committed.
847  - (djm) Add Markus' patch for compat wih OpenSSL < 0.9.6. 
848    Known issue: Blowfish for SSH1 does not work
849  - (stevesk) entropy.c: typo in debug message
850  - (djm) ssh-keygen -i needs seeded RNG; report from markus@
851
852 $Id$
This page took 0.128647 seconds and 5 git commands to generate.