]> andersk Git - openssh.git/blob - ChangeLog
- (djm) Fix my fix of the fix for the Bug #442 for PAM case. Spotted by
[openssh.git] / ChangeLog
1 20030107
2  - (djm) Bug #401: Work around Linux breakage with IPv6 mapped addresses. 
3    Based on fix from yoshfuji@linux-ipv6.org
4  - (djm) Bug #442: Check for and deny access to accounts with locked 
5    passwords. Patch from dtucker@zip.com.au
6  - (djm) Bug #26: Use local mkstemp() rather than glibc's silly one. Fixes
7    Can't pass KRB4 TGT passing. Fix from: jan.iven@cern.ch
8  - (djm) Fix Bug #442 for PAM case
9  - (djm) Bug #110: bogus error messages in lastlog_get_entry(). Fix based
10    on one by peak@argo.troja.mff.cuni.cz
11  - (djm) Bug #111: Run syslog and stderr logging through strnvis to eliminate
12    nasties. Report from peak@argo.troja.mff.cuni.cz
13  - (djm) Bug #178: On AIX /etc/nologin wasnt't shown to users. Fix from 
14    Ralf.Wenk@fh-karlsruhe.de and dtucker@zip.com.au
15  - (djm) Fix my fix of the fix for the Bug #442 for PAM case. Spotted by 
16    dtucker@zip.com.au. Reorder for clarity too.
17
18 20030103
19  - (djm) Bug #461: ssh-copy-id fails with no arguments. Patch from 
20    cjwatson@debian.org
21  - (djm) Bug #460: Filling utmp[x]->ut_addr_v6 if present. Patch from 
22    cjwatson@debian.org
23  - (djm) Bug #446: Set LOGIN env var to pw_name on AIX. Patch from 
24    mii@ornl.gov 
25
26 20030101
27   - (stevesk) [session.c sshlogin.c sshlogin.h] complete portable
28     parts of pass addrlen with sockaddr * fix.
29     from Hajimu UMEMOTO <ume@FreeBSD.org>
30
31 20021222
32  - (bal) OpenBSD CVS Sync
33    - fgsch@cvs.openbsd.org 2002/11/15 10:03:09
34      [authfile.c]
35      lseek(2) may return -1 when getting the public/private key lenght.
36      Simplify the code and check for errors using fstat(2).
37
38      Problem reported by Mauricio Sanchez, markus@ ok.
39    - markus@cvs.openbsd.org 2002/11/18 16:43:44
40      [clientloop.c]
41      don't overwrite SIG{INT,QUIT,TERM} handler if set to SIG_IGN;
42      e.g. if ssh is used for backup; report Joerg Schilling; ok millert@
43    - markus@cvs.openbsd.org 2002/11/21 22:22:50
44      [dh.c]
45      debug->debug2
46    - markus@cvs.openbsd.org 2002/11/21 22:45:31
47      [cipher.c kex.c packet.c sshconnect.c sshconnect2.c]
48      debug->debug2, unify debug messages
49    - deraadt@cvs.openbsd.org 2002/11/21 23:03:51
50      [auth-krb5.c auth1.c hostfile.h monitor_wrap.c sftp-client.c sftp-int.c ssh-add.c ssh-rsa.c 
51       sshconnect.c]
52      KNF
53    - markus@cvs.openbsd.org 2002/11/21 23:04:33
54      [ssh.c]
55      debug->debug2
56    - stevesk@cvs.openbsd.org 2002/11/24 21:46:24
57      [ssh-keysign.8]
58      typo: "the the"
59    - wcobb@cvs.openbsd.org 2002/11/26 00:45:03
60      [scp.c ssh-keygen.c]
61      Remove unnecessary fflush(stderr) calls, stderr is unbuffered by default.
62      ok markus@
63    - stevesk@cvs.openbsd.org 2002/11/26 02:35:30
64      [ssh-keygen.1]
65      remove outdated statement; ok markus@ deraadt@
66    - stevesk@cvs.openbsd.org 2002/11/26 02:38:54
67      [canohost.c]
68      KNF, comment and error message repair; ok markus@
69    - markus@cvs.openbsd.org 2002/11/27 17:53:35
70      [scp.c sftp.c ssh.c]
71      allow usernames with embedded '@', e.g. scp user@vhost@realhost:file /tmp;
72      http://bugzilla.mindrot.org/show_bug.cgi?id=447; ok mouring@, millert@
73    - stevesk@cvs.openbsd.org 2002/12/04 04:36:47
74      [session.c]
75      remove xauth entries before add; PR 2994 from janjaap@stack.nl.
76      ok markus@
77    - markus@cvs.openbsd.org 2002/12/05 11:08:35
78      [scp.c]
79      use roundup() similar to rcp/util.c and avoid problems with strange
80      filesystem block sizes, noted by tjr@freebsd.org; ok djm@
81    - djm@cvs.openbsd.org 2002/12/06 05:20:02
82      [sftp.1]
83      Fix cut'n'paste error, spotted by matthias.riese@b-novative.de; ok deraadt@
84    - millert@cvs.openbsd.org 2002/12/09 16:50:30
85      [ssh.c]
86      Avoid setting optind to 0 as GNU getopt treats that like we do optreset.
87      markus@ OK
88    - markus@cvs.openbsd.org 2002/12/10 08:56:00
89      [session.c]
90      Make sure $SHELL points to the shell from the password file, even if shell
91      is overridden from login.conf; bug#453; semen at online.sinor.ru; ok millert@
92    - markus@cvs.openbsd.org 2002/12/10 19:26:50
93      [packet.c]
94      move tos handling to packet_set_tos; ok provos/henning/deraadt
95    - markus@cvs.openbsd.org 2002/12/10 19:47:14
96      [packet.c]
97      static
98    - markus@cvs.openbsd.org 2002/12/13 10:03:15
99      [channels.c misc.c sshconnect2.c]
100      cleanup debug messages, more useful information for the client user.
101    - markus@cvs.openbsd.org 2002/12/13 15:20:52
102      [scp.c]
103      1) include stalling time in total time
104      2) truncate filenames to 45 instead of 20 characters
105      3) print rate instead of progress bar, no more stars
106      4) scale output to tty width
107      based on a patch from Niels; ok fries@ lebel@ fgs@ millert@
108  - (bal) [msg.c msg.h scp.c ssh-keysign.c sshconnect2.c]  Resync CVS IDs since 
109    we already did s/msg_send/ssh_msg_send/
110
111 20021205
112  - (djm) PERL-free fixpaths from stuge-openssh-unix-dev@cdy.org
113
114 20021122
115  - (tim) [configure.ac] fix STDPATH test for IRIX. First reported by
116    advax@triumf.ca. This type of solution tested by <herb@sgi.com>
117
118 20021113
119  - (tim) [configure.ac] remove unused variables no_libsocket and no_libnsl
120
121 20021111
122  - (tim) [contrib/solaris/opensshd.in] add umask 022 so sshd.pid is
123    not world writable.
124
125 20021109
126  - (bal) OpenBSD CVS Sync
127    - itojun@cvs.openbsd.org 2002/10/16 14:31:48
128      [sftp-common.c]
129      64bit pedant.  %llu is "unsigned long long".  markus ok
130    - markus@cvs.openbsd.org 2002/10/23 10:32:13
131      [packet.c]
132      use %u for u_int
133    - markus@cvs.openbsd.org 2002/10/23 10:40:16
134      [bufaux.c]
135      %u for u_int
136    - markus@cvs.openbsd.org 2002/11/04 10:07:53
137      [auth.c]
138      don't compare against pw_home if realpath fails for pw_home (seen 
139      on AFS); ok djm@
140    - markus@cvs.openbsd.org 2002/11/04 10:09:51
141      [packet.c]
142      log before send disconnect; ok djm@
143    - markus@cvs.openbsd.org 2002/11/05 19:45:20
144      [monitor.c]
145      handle overflows for size_t larger than u_int; siw@goneko.de, bug #425
146    - markus@cvs.openbsd.org 2002/11/05 20:10:37
147      [sftp-client.c]
148      typo; GaryF@livevault.com
149    - markus@cvs.openbsd.org 2002/11/07 16:28:47
150      [sshd.c]
151      log to stderr if -ie is given, bug #414, prj@po.cwru.edu
152    - markus@cvs.openbsd.org 2002/11/07 22:08:07
153      [readconf.c readconf.h ssh-keysign.8 ssh-keysign.c]
154      we cannot use HostbasedAuthentication for enabling ssh-keysign(8),
155      because HostbasedAuthentication might be enabled based on the
156      target host and ssh-keysign(8) does not know the remote hostname
157      and not trust ssh(1) about the hostname, so we add a new option
158      EnableSSHKeysign; ok djm@, report from zierke@informatik.uni-hamburg.de
159    - markus@cvs.openbsd.org 2002/11/07 22:35:38
160      [scp.c]
161      check exit status from ssh, and exit(1) if ssh fails; bug#369; 
162      binder@arago.de
163  - (bal) Update ssh-host-config and minor rewrite of bsd-cygwin_util.c
164    ntsec now default if cygwin version beginning w/ version 56.  Patch
165    by Corinna Vinschen <vinschen@redhat.com> 
166  - (bal) AIX does not log login attempts for unknown users (bug #432).
167    patch by dtucker@zip.com.au
168
169 20021021
170  - (djm) Bug #400: Kill ssh-rand-helper children on timeout, patch from 
171    dtucker@zip.com.au
172  - (djm) Bug #317: FreeBSD needs libutil.h for openpty() Report from 
173    dirk.meyer@dinoex.sub.org
174
175 20021015
176  - (bal) Fix bug id 383 and only call loginrestrict for AIX if not root.
177  - (bal) More advanced strsep test by Darren Tucker <dtucker@zip.com.au>
178
179 20021015
180  - (tim) [contrib/caldera/openssh.spec] make ssh-agent setgid nobody
181
182 20021004
183  - (bal) Disable post-authentication Privsep for OSF/1.  It conflicts with
184    SIA.
185
186 20021003
187  - (djm) OpenBSD CVS Sync
188    - markus@cvs.openbsd.org 2002/10/01 20:34:12
189      [ssh-agent.c]
190      allow root to access the agent, since there is no protection from root.
191    - markus@cvs.openbsd.org 2002/10/01 13:24:50
192      [version.h]
193      OpenSSH 3.5
194  - (djm) Bump RPM spec version numbers
195  - (djm) Bug #406: s/msg_send/ssh_msg_send/ for Mac OS X 1.2
196
197 20020930
198  - (djm) Tidy contrib/, add Makefile for GNOME passphrase dialogs, 
199    tweak README
200  - (djm) OpenBSD CVS Sync
201    - mickey@cvs.openbsd.org 2002/09/27 10:42:09
202      [compat.c compat.h sshd.c]
203      add a generic match for a prober, such as sie big brother; 
204      idea from stevesk@; markus@ ok
205    - stevesk@cvs.openbsd.org 2002/09/27 15:46:21
206      [ssh.1]
207      clarify compression level protocol 1 only; ok markus@ deraadt@
208
209 20020927
210  - (djm) OpenBSD CVS Sync
211    - markus@cvs.openbsd.org 2002/09/25 11:17:16
212      [sshd_config]
213      sync LoginGraceTime with default
214    - markus@cvs.openbsd.org 2002/09/25 15:19:02
215      [sshd.c]
216      typo; pilot@monkey.org
217    - markus@cvs.openbsd.org 2002/09/26 11:38:43
218      [auth1.c auth.h auth-krb4.c monitor.c monitor.h monitor_wrap.c]
219      [monitor_wrap.h]
220      krb4 + privsep; ok dugsong@, deraadt@
221
222 20020925
223  - (bal) Fix issue where successfull login does not clear failure counts
224    in AIX.  Patch by dtucker@zip.com.au ok by djm
225  - (tim) Cray fixes (bug 367) based on patch from Wendy Palm @ cray.
226     This does not include the deattack.c fixes.
227
228 20020923
229  - (djm) OpenBSD CVS Sync
230    - stevesk@cvs.openbsd.org 2002/09/23 20:46:27
231      [canohost.c]
232      change get_peer_ipaddr() and get_local_ipaddr() to not return NULL for
233      non-sockets; fixes a problem passing NULL to snprintf(). ok markus@
234    - markus@cvs.openbsd.org 2002/09/23 22:11:05
235      [monitor.c]
236      only call auth_krb5 if kerberos is enabled; ok deraadt@
237    - markus@cvs.openbsd.org 2002/09/24 08:46:04
238      [monitor.c]
239      only call kerberos code for authctxt->valid
240    - todd@cvs.openbsd.org 2002/09/24 20:59:44
241      [sshd.8]
242      tweak the example $HOME/.ssh/rc script to not show on any cmdline the
243      sensitive data it handles. This fixes bug # 402 as reported by
244      kolya@mit.edu (Nickolai Zeldovich).
245      ok markus@ and stevesk@
246
247 20020923
248  - (tim) [configure.ac] s/return/exit/ patch by dtucker@zip.com.au
249
250 20020922
251  - (djm) OpenBSD CVS Sync
252    - stevesk@cvs.openbsd.org 2002/09/19 14:53:14
253      [compat.c]
254    - markus@cvs.openbsd.org 2002/09/19 15:51:23
255      [ssh-add.c]
256      typo; cd@kalkatraz.de
257    - stevesk@cvs.openbsd.org 2002/09/19 16:03:15
258      [serverloop.c]
259      log IP address also; ok markus@
260    - stevesk@cvs.openbsd.org 2002/09/20 18:41:29
261      [auth.c]
262      log illegal user here for missing privsep case (ssh2).
263      this is executed in the monitor. ok markus@
264
265 20020919
266  - (djm) OpenBSD CVS Sync
267    - stevesk@cvs.openbsd.org 2002/09/12 19:11:52
268      [ssh-agent.c]
269      %u for uid print; ok markus@
270    - stevesk@cvs.openbsd.org 2002/09/12 19:50:36
271      [session.c ssh.1]
272      add SSH_CONNECTION and deprecate SSH_CLIENT; bug #384.  ok markus@
273    - stevesk@cvs.openbsd.org 2002/09/13 19:23:09
274      [channels.c sshconnect.c sshd.c]
275      remove use of SO_LINGER, it should not be needed. error check
276      SO_REUSEADDR. fixup comments. ok markus@
277    - stevesk@cvs.openbsd.org 2002/09/16 19:55:33
278      [session.c]
279      log when _PATH_NOLOGIN exists; ok markus@
280    - stevesk@cvs.openbsd.org 2002/09/16 20:12:11
281      [sshd_config.5]
282      more details on X11Forwarding security issues and threats; ok markus@
283    - stevesk@cvs.openbsd.org 2002/09/16 22:03:13
284      [sshd.8]
285      reference moduli(5) in FILES /etc/moduli.
286    - itojun@cvs.openbsd.org 2002/09/17 07:47:02
287      [channels.c]
288      don't quit while creating X11 listening socket.
289      http://mail-index.netbsd.org/current-users/2002/09/16/0005.html
290      got from portable.  markus ok
291    - djm@cvs.openbsd.org 2002/09/19 01:58:18
292      [ssh.c sshconnect.c]
293      bugzilla.mindrot.org #223 - ProxyCommands don't exit.
294      Patch from dtucker@zip.com.au; ok markus@
295
296 20020912
297  - (djm) Made GNOME askpass programs return non-zero if cancel button is 
298    pressed.
299  - (djm) Added getpeereid() replacement. Properly implemented for systems
300    with SO_PEERCRED support. Faked for systems which lack it.
301  - (djm) Sync sys/tree.h with OpenBSD -current. Rename tree.h and 
302    fake-queue.h to sys-tree.h and sys-queue.h
303  - (djm) OpenBSD CVS Sync
304    - markus@cvs.openbsd.org 2002/09/08 20:24:08
305      [hostfile.h]
306      no comma at end of enumerator list
307    - itojun@cvs.openbsd.org 2002/09/09 06:48:06
308      [auth1.c auth.h auth-krb5.c monitor.c monitor.h]
309      [monitor_wrap.c monitor_wrap.h]
310      kerberos support for privsep.  confirmed to work by lha@stacken.kth.se
311      patch from markus
312    - markus@cvs.openbsd.org 2002/09/09 14:54:15
313      [channels.c kex.h key.c monitor.c monitor_wrap.c radix.c uuencode.c]
314      signed vs unsigned from -pedantic; ok henning@
315    - markus@cvs.openbsd.org 2002/09/10 20:24:47
316      [ssh-agent.c]
317      check the euid of the connecting process with getpeereid(2); 
318      ok provos deraadt stevesk
319    - stevesk@cvs.openbsd.org 2002/09/11 17:55:03
320      [ssh.1]
321      add agent and X11 forwarding warning text from ssh_config.5; ok markus@
322    - stevesk@cvs.openbsd.org 2002/09/11 18:27:26
323      [authfd.c authfd.h ssh.c]
324      don't connect to agent to test for presence if we've previously
325      connected; ok markus@
326    - djm@cvs.openbsd.org 2002/09/11 22:41:50
327      [sftp.1 sftp-client.c sftp-client.h sftp-common.c sftp-common.h]
328      [sftp-glob.c sftp-glob.h sftp-int.c sftp-server.c]
329      support for short/long listings and globbing in "ls"; ok markus@
330    - djm@cvs.openbsd.org 2002/09/12 00:13:06
331      [sftp-int.c]
332      zap unused var introduced in last commit
333
334 20020911
335  - (djm) Sync openbsd-compat with OpenBSD -current
336
337 20020910
338  - (djm) Bug #365: Read /.ssh/environment properly under CygWin. 
339    Patch from Mark Bradshaw <bradshaw@staff.crosswalk.com>
340  - (djm) Bug #138: Make protocol 1 blowfish work with old OpenSSL. 
341    Patch from Robert Halubek <rob@adso.com.pl>
342
343 20020905 
344  - (djm) OpenBSD CVS Sync
345    - stevesk@cvs.openbsd.org 2002/09/04 18:52:42
346      [servconf.c sshd.8 sshd_config.5]
347      default LoginGraceTime to 2m; 1m may be too short for slow systems.
348      ok markus@
349  - (djm) Merge openssh-TODO.patch from Redhat (null) beta
350  - (djm) Add gnome-ssh-askpass2.c (gtk2) by merge with patch from 
351     Nalin Dahyabhai <nalin@redhat.com>
352  - (djm) Add support for building gtk2 password requestor from Redhat beta
353
354 20020903
355  - (djm) Patch from itojun@ for Darwin OS: test getaddrinfo, reorder libcrypt
356  - (djm) Fix Redhat RPM build dependancy test
357  - (djm) OpenBSD CVS Sync
358    - markus@cvs.openbsd.org 2002/08/12 10:46:35
359      [ssh-agent.c]
360      make ssh-agent setgid, disallow ptrace.
361    - espie@cvs.openbsd.org 2002/08/21 11:20:59
362      [sshd.8]
363      `RSA' updated to refer to `public key', where it matters.
364      okay markus@
365    - stevesk@cvs.openbsd.org 2002/08/21 19:38:06
366      [servconf.c sshd.8 sshd_config sshd_config.5]
367      change LoginGraceTime default to 1 minute; ok mouring@ markus@
368    - stevesk@cvs.openbsd.org 2002/08/21 20:10:28
369      [ssh-agent.c]
370      raise listen backlog; ok markus@
371    - stevesk@cvs.openbsd.org 2002/08/22 19:27:53
372      [ssh-agent.c]
373      use common close function; ok markus@
374    - stevesk@cvs.openbsd.org 2002/08/22 19:38:42
375      [clientloop.c]
376      format with current EscapeChar; bugzilla #388 from wknox@mitre.org.
377      ok markus@
378    - stevesk@cvs.openbsd.org 2002/08/22 20:57:19
379      [ssh-agent.c]
380      shutdown(SHUT_RDWR) not needed before close here; ok markus@
381    - markus@cvs.openbsd.org 2002/08/22 21:33:58
382      [auth1.c auth2.c]
383      auth_root_allowed() is handled by the monitor in the privsep case,
384      so skip this for use_privsep, ok stevesk@, fixes bugzilla #387/325
385    - markus@cvs.openbsd.org 2002/08/22 21:45:41
386      [session.c]
387      send signal name (not signal number) in "exit-signal" message; noticed
388      by galb@vandyke.com
389    - stevesk@cvs.openbsd.org 2002/08/27 17:13:56
390      [ssh-rsa.c]
391      RSA_public_decrypt() returns -1 on error so len must be signed; 
392      ok markus@
393    - stevesk@cvs.openbsd.org 2002/08/27 17:18:40
394      [ssh_config.5]
395      some warning text for ForwardAgent and ForwardX11; ok markus@
396    - stevesk@cvs.openbsd.org 2002/08/29 15:57:25
397      [monitor.c session.c sshlogin.c sshlogin.h]
398      pass addrlen with sockaddr *; from Hajimu UMEMOTO <ume@FreeBSD.org>
399      NOTE: there are also p-specific parts to this patch. ok markus@
400    - stevesk@cvs.openbsd.org 2002/08/29 16:02:54
401      [ssh.1 ssh.c]
402      deprecate -P as UsePrivilegedPort defaults to no now; ok markus@
403    - stevesk@cvs.openbsd.org 2002/08/29 16:09:02
404      [ssh_config.5]
405      more on UsePrivilegedPort and setuid root; ok markus@
406    - stevesk@cvs.openbsd.org 2002/08/29 19:49:42
407      [ssh.c]
408      shrink initial privilege bracket for setuid case; ok markus@
409    - stevesk@cvs.openbsd.org 2002/08/29 22:54:10
410      [ssh_config.5 sshd_config.5]
411      state XAuthLocation is a full pathname
412
413 20020820
414  - OpenBSD CVS Sync
415    - millert@cvs.openbsd.org 2002/08/02 14:43:15
416      [monitor.c monitor_mm.c]
417      Change mm_zalloc() sanity checks to be more in line with what
418      we do in calloc() and add a check to monitor_mm.c.
419      OK provos@ and markus@
420    - marc@cvs.openbsd.org 2002/08/02 16:00:07
421      [ssh.1 sshd.8]
422      note that .ssh/environment is only read when
423      allowed (PermitUserEnvironment in sshd_config).
424      OK markus@
425    - markus@cvs.openbsd.org 2002/08/02 21:23:41
426      [ssh-rsa.c]
427      diff is u_int (2x); ok deraadt/provos
428    - markus@cvs.openbsd.org 2002/08/02 22:20:30
429      [ssh-rsa.c]
430      replace RSA_verify with our own version and avoid the OpenSSL ASN.1 parser
431      for authentication; ok deraadt/djm
432    - aaron@cvs.openbsd.org 2002/08/08 13:50:23
433      [sshconnect1.c]
434      Use & to test if bits are set, not &&; markus@ ok.
435    - stevesk@cvs.openbsd.org 2002/08/08 23:54:52
436      [auth.c]
437      typo in comment
438    - stevesk@cvs.openbsd.org 2002/08/09 17:21:42
439      [sshd_config.5]
440      use Op for mdoc conformance; from esr@golux.thyrsus.com
441      ok aaron@
442    - stevesk@cvs.openbsd.org 2002/08/09 17:41:12
443      [sshd_config.5]
444      proxy vs. fake display
445    - stevesk@cvs.openbsd.org 2002/08/12 17:30:35
446      [ssh.1 sshd.8 sshd_config.5]
447      more PermitUserEnvironment; ok markus@
448    - stevesk@cvs.openbsd.org 2002/08/17 23:07:14
449      [ssh.1]
450      ForwardAgent has defaulted to no for over 2 years; be more clear here.
451    - stevesk@cvs.openbsd.org 2002/08/17 23:55:01
452      [ssh_config.5]
453      ordered list here
454  - (bal) [defines.h] Some platforms don't have SIZE_T_MAX.  So assign 
455    it to ULONG_MAX.
456
457 20020813
458  - (tim) [configure.ac] Display OpenSSL header/library version.
459    Patch by dtucker@zip.com.au
460
461 20020731
462  - (bal) OpenBSD CVS Sync
463    - markus@cvs.openbsd.org 2002/07/24 16:11:18
464      [hostfile.c hostfile.h sshconnect.c]
465      print out all known keys for a host if we get a unknown host key,
466      see discussion at http://marc.theaimsgroup.com/?t=101069210100016&r=1&w=4
467
468      the ssharp mitm tool attacks users in a similar way, so i'd like to
469      pointed out again:
470         A MITM attack is always possible if the ssh client prints:
471         The authenticity of host 'bla' can't be established.
472      (protocol version 2 with pubkey authentication allows you to detect
473      MITM attacks)
474    - mouring@cvs.openbsd.org 2002/07/25 01:16:59
475      [sftp.c]
476      FallBackToRsh does not exist anywhere else.  Remove it from here.
477      OK deraadt.
478    - markus@cvs.openbsd.org 2002/07/29 18:57:30
479      [sshconnect.c]
480      print file:line
481    - markus@cvs.openbsd.org 2002/07/30 17:03:55
482      [auth-options.c servconf.c servconf.h session.c sshd_config sshd_config.5]
483      add PermitUserEnvironment (off by default!); from dot@dotat.at;
484      ok provos, deraadt
485
486 20020730
487  - (bal) [uidswap.c] SCO compile correction by gert@greenie.muc.de
488
489 20020728
490  - (stevesk) [auth-pam.c] should use PAM_MSG_MEMBER(); from solar
491  - (stevesk) [CREDITS] solar
492  - (stevesk) [ssh-rand-helper.c] RAND_bytes() and SHA1_Final() unsigned
493    char arg.
494
495 20020725
496  - (djm) Remove some cruft from INSTALL
497  - (djm) Latest config.guess and config.sub from ftp://ftp.gnu.org/gnu/config/
498
499 20020723
500  - (bal) [bsd-cray.c bsd-cray.h] Part 2 of Cray merger. 
501  - (bal) sync ID w/ ssh-agent.c
502  - (bal) OpenBSD Sync
503    - markus@cvs.openbsd.org 2002/07/19 15:43:33
504      [log.c log.h session.c sshd.c]
505      remove fatal cleanups after fork; based on discussions with and code
506      from solar.
507    - stevesk@cvs.openbsd.org 2002/07/19 17:42:40
508      [ssh.c]
509      display a warning from ssh when XAuthLocation does not exist or xauth
510      returned no authentication data. ok markus@
511    - stevesk@cvs.openbsd.org 2002/07/21 18:32:20
512      [auth-options.c]
513      unneeded includes
514    - stevesk@cvs.openbsd.org 2002/07/21 18:34:43
515      [auth-options.h]
516      remove invalid comment
517    - markus@cvs.openbsd.org 2002/07/22 11:03:06
518      [session.c]
519      fallback to _PATH_STDPATH on setusercontext+LOGIN_SETPATH errors;
520    - stevesk@cvs.openbsd.org 2002/07/22 17:32:56
521      [monitor.c]
522      u_int here; ok provos@
523    - stevesk@cvs.openbsd.org 2002/07/23 16:03:10
524      [sshd.c]
525      utmp_len is unsigned; display error consistent with other options.
526      ok markus@
527    - stevesk@cvs.openbsd.org 2002/07/15 17:15:31
528      [uidswap.c]
529      little more debugging; ok markus@
530
531 20020722
532  - (bal) AIX tty data limiting patch fix by leigh@solinno.co.uk
533  - (stevesk) [xmmap.c] missing prototype for fatal()
534  - (bal) [configure.ac defines.h loginrec.c sshd.c sshpty.c] Partial sync
535    with Cray (mostly #ifdef renaming).  Patch by wendyp@cray.com.
536  - (bal) [configure.ac]  Missing ;; from cray patch.
537  - (bal) [monitor_mm.c openbsd-compat/xmmap.h] Move xmmap() defines
538    into it's own header.
539  - (stevesk) [auth-pam.[ch] session.c] pam_getenvlist() must be
540    freed by the caller; add free_pam_environment() and use it.
541  - (stevesk) [auth-pam.c] typo in comment
542
543 20020721
544  - (stevesk) [auth-pam.c] merge cosmetic changes from solar's
545    openssh-3.4p1-owl-password-changing.diff
546  - (stevesk) [auth-pam.c] merge rest of solar's PAM patch;
547    PAM_NEW_AUTHTOK_REQD remains in #if 0 for now.
548  - (stevesk) [auth-pam.c] cast to avoid initialization type mismatch
549    warning on pam_conv struct conversation function.
550  - (stevesk) [auth-pam.h] license
551  - (stevesk) [auth-pam.h] unneeded include
552  - (stevesk) [auth-pam.[ch] ssh.h] move SSHD_PAM_SERVICE to auth-pam.h
553
554 20020720
555  - (stevesk) [ssh-keygen.c] bug #231: always init/seed_rng().
556
557 20020719
558  - (tim) [contrib/solaris/buildpkg.sh] create privsep user/group if needed.
559    Patch by dtucker@zip.com.au
560  - (tim) [configure.ac]  test for libxnet on HP. Patch by dtucker@zip.com.au
561
562 20020718
563  - (tim) [defines.h] Bug 313 patch by dirk.meyer@dinoex.sub.org
564  - (tim) [monitor_mm.c] add missing declaration for xmmap(). Reported
565    by ayamura@ayamura.org
566  - (tim) [configure.ac] Bug 267 rework int64_t test.
567  - (tim) [includes.h] Bug 267 add stdint.h
568
569 20020717
570  - (bal) aixbff package updated by dtucker@zip.com.au
571  - (tim) [configure.ac] change how we do paths in AC_PATH_PROGS tests
572    for autoconf 2.53. Based on a patch by jrj@purdue.edu
573
574 20020716
575  - (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found
576
577 20020715
578  - (bal) OpenBSD CVS Sync
579    - itojun@cvs.openbsd.org 2002/07/12 13:29:09
580      [sshconnect.c]
581      print connect failure during debugging mode.
582    - markus@cvs.openbsd.org 2002/07/12 15:50:17
583      [cipher.c]
584      EVP_CIPH_CUSTOM_IV for our own rijndael
585  - (bal) Remove unused tty defined in do_setusercontext() pointed out by
586    dtucker@zip.com.au plus a a more KNF since I am near it.
587  - (bal) Privsep user creation support in Solaris buildpkg.sh by 
588    dtucker@zip.com.au
589
590 20020714
591  - (tim) [Makefile.in] replace "id sshd" with "sshd -t"
592  - (bal/tim) [acconfig.h configure.ac monitor_mm.c servconf.c
593    openbsd-compat/Makefile.in] support compression on platforms that
594    have no/broken MAP_ANON. Moved code to openbsd-compat/xmmap.c
595    Based on patch from nalin@redhat.com of code extracted from Owl's package
596  - (tim) [ssh_prng_cmds.in] Bug 323 arp -n flag doesn't exist under Solaris.
597    report by chris@by-design.net
598  - (tim) [loginrec.c] Bug 347: Fix typo (WTMPX_FILE) report by rodney@bond.net
599  - (tim) [loginrec.c] Bug 348: add missing found = 1; to wtmpx_islogin()
600    report by rodney@bond.net
601
602 20020712
603  - (tim) [Makefile.in] quiet down install-files: and check-user:
604  - (tim) [configure.ac] remove unused filepriv line
605
606 20020710
607  - (tim) [contrib/cygwin/ssh-host-config] explicitely sets the permissions
608    on /var/empty to 755 Patch by vinschen@redhat.com
609  - (bal) OpenBSD CVS Sync
610    - itojun@cvs.openbsd.org 2002/07/09 11:56:50
611      [sshconnect.c]
612      silently try next address on connect(2).  markus ok
613    - itojun@cvs.openbsd.org 2002/07/09 11:56:27
614      [canohost.c]
615      suppress log on reverse lookup failiure, as there's no real value in
616      doing so.
617      markus ok
618    - itojun@cvs.openbsd.org 2002/07/09 12:04:02
619      [sshconnect.c]
620      ed static function (less warnings)
621    - stevesk@cvs.openbsd.org 2002/07/09 17:46:25
622      [sshd_config.5]
623      clarify no preference ordering in protocol list; ok markus@
624    - itojun@cvs.openbsd.org 2002/07/10 10:28:15
625      [sshconnect.c]
626      bark if all connection attempt fails.
627    - deraadt@cvs.openbsd.org 2002/07/10 17:53:54
628      [rijndael.c]
629      use right sizeof in memcpy; markus ok
630
631 20020709
632  - (bal) NO_IPPORT_RESERVED_CONCEPT used instead of CYGWIN so other platforms
633    lacking that concept can share it. Patch by vinschen@redhat.com
634
635 20020708
636  - (tim) [openssh/contrib/solaris/buildpkg.sh] add PKG_INSTALL_ROOT to
637    work in a jumpstart environment. patch by kbrint@rufus.net
638  - (tim) [Makefile.in] workaround for broken pakadd on some systems.
639  - (tim) [configure.ac] fix libc89 utimes test. Mention default path for
640    --with-privsep-path=
641
642 20020707
643  - (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
644  - (tim) [acconfig.h configure.ac sshd.c]
645    s/BROKEN_FD_PASSING/DISABLE_FD_PASSING/
646  - (tim) [contrib/cygwin/ssh-host-config] sshd account creation fixes
647    patch from vinschen@redhat.com
648  - (bal) [realpath.c] Updated with OpenBSD tree.
649  - (bal) OpenBSD CVS Sync
650    - deraadt@cvs.openbsd.org 2002/07/04 04:15:33
651      [key.c monitor_wrap.c sftp-glob.c ssh-dss.c ssh-rsa.c]
652      patch memory leaks; grendel@zeitbombe.org
653    - deraadt@cvs.openbsd.org 2002/07/04 08:12:15
654      [channels.c packet.c]
655      blah blah minor nothing as i read and re-read and re-read...
656    - markus@cvs.openbsd.org 2002/07/04 10:41:47
657      [key.c monitor_wrap.c ssh-dss.c ssh-rsa.c]
658      don't allocate, copy, and discard if there is not interested in the data; 
659      ok deraadt@
660    - deraadt@cvs.openbsd.org 2002/07/06 01:00:49
661      [log.c]
662      KNF
663    - deraadt@cvs.openbsd.org 2002/07/06 01:01:26
664      [ssh-keyscan.c]
665      KNF, realloc fix, and clean usage
666    - stevesk@cvs.openbsd.org 2002/07/06 17:47:58
667      [ssh-keyscan.c]
668      unused variable
669  - (bal) Minor KNF on ssh-keyscan.c
670
671 20020705
672  - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs.
673    Reported by Darren Tucker <dtucker@zip.com.au>
674  - (tim) [contrib/cygwin/ssh-host-config] double slash corrction
675    from vinschen@redhat.com
676
677 20020704
678  - (bal) Limit data to TTY for AIX only (Newer versions can't handle the
679    faster data rate)  Bug #124
680  - (bal) glob.c defines TILDE and AIX also defines it.  #undef it first.
681    bug #265
682  - (bal) One too many nulls in ports-aix.c
683  
684 20020703
685  - (bal) Updated contrib/cygwin/  patch by vinschen@redhat.com 
686  - (bal) minor correction to utimes() replacement.  Patch by
687    onoe@sm.sony.co.jp
688  - OpenBSD CVS Sync
689    - markus@cvs.openbsd.org 2002/06/27 08:49:44
690      [dh.c ssh-keyscan.c sshconnect.c]
691      more checks for NULL pointers; from grendel@zeitbombe.org; ok deraadt@
692    - deraadt@cvs.openbsd.org 2002/06/27 09:08:00
693      [monitor.c]
694      improve mm_zalloc check; markus ok
695    - deraadt@cvs.openbsd.org 2002/06/27 10:35:47
696      [auth2-none.c monitor.c sftp-client.c]
697      use xfree()
698    - stevesk@cvs.openbsd.org 2002/06/27 19:49:08
699      [ssh-keyscan.c]
700      use convtime(); ok markus@
701    - millert@cvs.openbsd.org 2002/06/28 01:49:31
702      [monitor_mm.c]
703      tree(3) wants an int return value for its compare functions and
704      the difference between two pointers is not an int.  Just do the
705      safest thing and store the result in a long and then return 0,
706      -1, or 1 based on that result.
707    - deraadt@cvs.openbsd.org 2002/06/28 01:50:37
708      [monitor_wrap.c]
709      use ssize_t
710    - deraadt@cvs.openbsd.org 2002/06/28 10:08:25
711      [sshd.c]
712      range check -u option at invocation
713    - deraadt@cvs.openbsd.org 2002/06/28 23:05:06
714      [sshd.c]
715      gidset[2] -> gidset[1]; markus ok
716    - deraadt@cvs.openbsd.org 2002/06/30 21:54:16
717      [auth2.c session.c sshd.c]
718      lint asks that we use names that do not overlap
719    - deraadt@cvs.openbsd.org 2002/06/30 21:59:45
720      [auth-bsdauth.c auth-skey.c auth2-chall.c clientloop.c key.c
721       monitor_wrap.c monitor_wrap.h scard.h session.h sftp-glob.c ssh.c
722       sshconnect2.c sshd.c]
723      minor KNF
724    - deraadt@cvs.openbsd.org 2002/07/01 16:15:25
725      [msg.c]
726      %u
727    - markus@cvs.openbsd.org 2002/07/01 19:48:46
728      [sshconnect2.c]
729      for compression=yes, we fallback to no-compression if the server does
730      not support compression, vice versa for compression=no. ok mouring@
731    - markus@cvs.openbsd.org 2002/07/03 09:55:38
732      [ssh-keysign.c]
733      use RSA_blinding_on() for rsa hostkeys (suggested by Bill Sommerfeld)
734      in order to avoid a possible Kocher timing attack pointed out by Charles
735      Hannum; ok provos@
736    - markus@cvs.openbsd.org 2002/07/03 14:21:05
737      [ssh-keysign.8 ssh-keysign.c ssh.c ssh_config]
738      re-enable ssh-keysign's sbit, but make ssh-keysign read 
739      /etc/ssh/ssh_config and exit if HostbasedAuthentication is disabled 
740      globally. based on discussions with deraadt, itojun and sommerfeld; 
741      ok itojun@
742  - (bal) Failed password attempts don't increment counter on AIX. Bug #145
743  - (bal) Missed Makefile.in change.  keysign needs readconf.o
744  - (bal) Clean up aix_usrinfo().  Ignore TTY= period I guess.
745   
746 20020702
747  - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc & 
748    friends consistently. Spotted by Solar Designer <solar@openwall.com>
749
750 20020629
751  - (bal) fix to auth2-pam.c to swap fatal() arguments,  A bit of style
752    clean up while I'm near it.
753
754 20020628
755  - (stevesk) [sshd_config] PAMAuthenticationViaKbdInt no; commented
756    options should contain default value.  from solar.
757  - (bal) Cygwin uid0 fix by vinschen@redhat.com
758  - (bal) s/config.h/includes.h/ in openbsd-compat/ for *.c.  Otherwise wise
759    have issues of our fixes not propogating right (ie bcopy instead of
760    memmove).  OK tim
761  - (bal) FreeBSD needs <sys/types.h> to detect if mmap() is supported.
762    Bug #303
763
764 20020627
765  - OpenBSD CVS Sync
766    - deraadt@cvs.openbsd.org 2002/06/26 14:49:36
767      [monitor.c]
768      correct %u
769    - deraadt@cvs.openbsd.org 2002/06/26 14:50:04
770      [monitor_fdpass.c]
771      use ssize_t for recvmsg() and sendmsg() return
772    - markus@cvs.openbsd.org 2002/06/26 14:51:33
773      [ssh-add.c]
774      fix exit code for -X/-x
775    - deraadt@cvs.openbsd.org 2002/06/26 15:00:32
776      [monitor_wrap.c]
777      more %u
778    - markus@cvs.openbsd.org 2002/06/26 22:27:32
779      [ssh-keysign.c]
780      bug #304, xfree(data) called to early; openssh@sigint.cs.purdue.edu
781
782 20020626
783  - (stevesk) [monitor.c] remove duplicate proto15 dispatch entry for PAM
784  - (bal) OpenBSD CVS Sync
785    - markus@cvs.openbsd.org 2002/06/23 21:34:07
786      [channels.c]
787      tcode is u_int
788    - markus@cvs.openbsd.org 2002/06/24 13:12:23
789      [ssh-agent.1]
790      the socket name contains ssh-agent's ppid; via mpech@ from form@
791    - markus@cvs.openbsd.org 2002/06/24 14:33:27
792      [channels.c channels.h clientloop.c serverloop.c]
793      move channel counter to u_int
794    - markus@cvs.openbsd.org 2002/06/24 14:55:38
795      [authfile.c kex.c ssh-agent.c]
796      cat to (void) when output from buffer_get_X is ignored
797    - itojun@cvs.openbsd.org 2002/06/24 15:49:22
798      [msg.c]
799      printf type pedant
800    - deraadt@cvs.openbsd.org 2002/06/24 17:57:20
801      [sftp-server.c sshpty.c]
802      explicit (u_int) for uid and gid
803    - markus@cvs.openbsd.org 2002/06/25 16:22:42
804      [authfd.c]
805      unnecessary cast
806    - markus@cvs.openbsd.org 2002/06/25 18:51:04
807      [sshd.c]
808      lightweight do_setusercontext after chroot()
809  - (bal) Updated AIX package build.  Patch by dtucker@zip.com.au
810  - (tim) [Makefile.in] fix test on installing ssh-rand-helper.8
811  - (bal) added back in error check for mmap().  I screwed up, Pointed
812    out by stevesk@
813  - (tim) [README.privsep] UnixWare tip no longer needed.
814  - (bal) fixed NeXTStep missing munmap() issue. It defines HAVE_MMAP,
815    but it all damned lies.
816  - (stevesk) [README.privsep] more for sshd pseudo-account.
817  - (tim) [contrib/caldera/openssh.spec] add support for privsep
818  - (djm) setlogin needs pgid==pid on BSD/OS; from itojun@
819  - (djm) OpenBSD CVS Sync
820    - markus@cvs.openbsd.org 2002/06/26 08:53:12
821      [bufaux.c]
822      limit size of BNs to 8KB; ok provos/deraadt
823    - markus@cvs.openbsd.org 2002/06/26 08:54:18
824      [buffer.c]
825      limit append to 1MB and buffers to 10MB
826    - markus@cvs.openbsd.org 2002/06/26 08:55:02
827      [channels.c]
828      limit # of channels to 10000
829    - markus@cvs.openbsd.org 2002/06/26 08:58:26
830      [session.c]
831      limit # of env vars to 1000; ok deraadt/djm
832    - deraadt@cvs.openbsd.org 2002/06/26 13:20:57
833      [monitor.c]
834      be careful in mm_zalloc
835    - deraadt@cvs.openbsd.org 2002/06/26 13:49:26
836      [session.c]
837      disclose less information from environment files; based on input 
838      from djm, and dschultz@uclink.Berkeley.EDU
839    - markus@cvs.openbsd.org 2002/06/26 13:55:37
840      [auth2-chall.c]
841      make sure # of response matches # of queries, fixes int overflow; 
842      from ISS
843    - markus@cvs.openbsd.org 2002/06/26 13:56:27
844      [version.h]
845      3.4
846  - (djm) Require krb5 devel for RPM build w/ KrbV 
847  - (djm) Improve PAMAuthenticationViaKbdInt text from Nalin Dahyabhai 
848    <nalin@redhat.com>
849  - (djm) Update spec files for release 
850  - (djm) Fix int overflow in auth2-pam.c, similar to one discovered by ISS
851  - (djm) Release 3.4p1
852  - (tim) [contrib/caldera/openssh.spec] remove 2 configure options I put in
853    by mistake
854
855 20020625
856  - (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh
857  - (stevesk) [README.privsep] minor updates
858  - (djm) Create privsep directory and warn if privsep user is missing 
859    during make install
860  - (bal) Started list of PrivSep issues in TODO
861  - (bal) if mmap() is substandard, don't allow compression on server side.
862    Post 'event' we will add more options.
863  - (tim) [contrib/caldera/openssh.spec] Sync with Caldera
864  - (bal) moved aix_usrinfo() and noted not setting real TTY.  Patch by
865    dtucker@zip.com.au
866  - (tim) [acconfig.h configure.ac sshd.c] BROKEN_FD_PASSING fix from Markus
867    for Cygwin, Cray, & SCO
868
869 20020624
870  - OpenBSD CVS Sync
871    - deraadt@cvs.openbsd.org 2002/06/23 03:25:50
872      [tildexpand.c]
873      KNF
874    - deraadt@cvs.openbsd.org 2002/06/23 03:26:19
875      [cipher.c key.c]
876      KNF
877    - deraadt@cvs.openbsd.org 2002/06/23 03:30:58
878      [scard.c ssh-dss.c ssh-rsa.c sshconnect.c sshconnect2.c sshd.c sshlogin.c
879       sshpty.c]
880      various KNF and %d for unsigned
881    - deraadt@cvs.openbsd.org 2002/06/23 09:30:14
882      [sftp-client.c sftp-client.h sftp-common.c sftp-int.c sftp-server.c
883       sftp.c]
884      bunch of u_int vs int stuff
885    - deraadt@cvs.openbsd.org 2002/06/23 09:39:55
886      [ssh-keygen.c]
887      u_int stuff
888    - deraadt@cvs.openbsd.org 2002/06/23 09:46:51
889      [bufaux.c servconf.c]
890      minor KNF.  things the fingers do while you read
891    - deraadt@cvs.openbsd.org 2002/06/23 10:29:52
892      [ssh-agent.c sshd.c]
893      some minor KNF and %u
894    - deraadt@cvs.openbsd.org 2002/06/23 20:39:45
895      [session.c]
896      compression_level is u_int
897    - deraadt@cvs.openbsd.org 2002/06/23 21:06:13
898      [sshpty.c]
899      KNF
900    - deraadt@cvs.openbsd.org 2002/06/23 21:06:41
901      [channels.c channels.h session.c session.h]
902      display, screen, row, col, xpixel, ypixel are u_int; markus ok
903    - deraadt@cvs.openbsd.org 2002/06/23 21:10:02
904      [packet.c]
905      packet_get_int() returns unsigned for reason & seqnr
906   - (bal) Also fixed IPADDR_IN_DISPLAY case where display, screen, row, col,
907     xpixel are u_int.
908
909
910 20020623
911  - (stevesk) [configure.ac] bug #255 LOGIN_NEEDS_UTMPX for AIX.
912  - (bal) removed GNUism for getops in ssh-agent since glibc lacks optreset.
913  - (bal) add extern char *getopt.  Based on report by dtucker@zip.com.au 
914  - OpenBSD CVS Sync
915    - stevesk@cvs.openbsd.org 2002/06/22 02:00:29
916      [ssh.h]
917      correct comment
918    - stevesk@cvs.openbsd.org 2002/06/22 02:40:23
919      [ssh.1]
920      section 5 not 4 for ssh_config
921    - naddy@cvs.openbsd.org 2002/06/22 11:51:39
922      [ssh.1]
923      typo
924    - stevesk@cvs.openbsd.org 2002/06/22 16:32:54
925      [sshd.8]
926      add /var/empty in FILES section
927    - stevesk@cvs.openbsd.org 2002/06/22 16:40:19
928      [sshd.c]
929      check /var/empty owner mode; ok provos@
930    - stevesk@cvs.openbsd.org 2002/06/22 16:41:57
931      [scp.1]
932      typo
933    - stevesk@cvs.openbsd.org 2002/06/22 16:45:29
934      [ssh-agent.1 sshd.8 sshd_config.5]
935      use process ID vs. pid/PID/process identifier
936    - stevesk@cvs.openbsd.org 2002/06/22 20:05:27
937      [sshd.c]
938      don't call setsid() if debugging or run from inetd; no "Operation not
939      permitted" errors now; ok millert@ markus@
940    - stevesk@cvs.openbsd.org 2002/06/22 23:09:51
941      [monitor.c]
942      save auth method before monitor_reset_key_state(); bugzilla bug #284;
943      ok provos@
944
945 $Id$
This page took 0.141304 seconds and 5 git commands to generate.