]> andersk Git - openssh.git/blame_incremental - ChangeLog
- jmc@cvs.openbsd.org 2009/08/13 13:39:54
[openssh.git] / ChangeLog
... / ...
CommitLineData
120091007
2 - (dtucker) OpenBSD CVS Sync
3 - djm@cvs.openbsd.org 2009/08/12 00:13:00
4 [sftp.c sftp.1]
5 support most of scp(1)'s commandline arguments in sftp(1), as a first
6 step towards making sftp(1) a drop-in replacement for scp(1).
7 One conflicting option (-P) has not been changed, pending further
8 discussion.
9 Patch from carlosvsilvapt@gmail.com as part of his work in the
10 Google Summer of Code
11 - jmc@cvs.openbsd.org 2009/08/12 06:31:42
12 [sftp.1]
13 sort options;
14 - djm@cvs.openbsd.org 2009/08/13 01:11:19
15 [sftp.1 sftp.c]
16 Swizzle options: "-P sftp_server_path" moves to "-D sftp_server_path",
17 add "-P port" to match scp(1). Fortunately, the -P option is only really
18 used by our regression scripts.
19 part of larger patch from carlosvsilvapt@gmail.com for his Google Summer
20 of Code work; ok deraadt markus
21 - jmc@cvs.openbsd.org 2009/08/13 13:39:54
22 [sftp.1 sftp.c]
23 sync synopsis and usage();
24
2520091002
26 - (djm) [Makefile.in] Mention readconf.o in ssh-keysign's make deps.
27 spotted by des AT des.no
28
2920090926
30 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
31 [contrib/suse/openssh.spec] Update for release
32 - (djm) [README] update relnotes URL
33 - (djm) [packet.c] Restore EWOULDBLOCK handling that got lost somewhere
34 - (djm) Release 5.3p1
35
3620090911
37 - (dtucker) [configure.ac] Change the -lresolv check so it works on Mac OS X
38 10.6 (which doesn't have BIND8_COMPAT and thus uses res_9_query). Patch
39 from jbasney at ncsa uiuc edu.
40
4120090908
42 - (djm) [serverloop.c] Fix test for server-assigned remote forwarding port
43 (-R 0:...); bz#1578, spotted and fix by gavin AT emf.net; ok dtucker@
44
4520090901
46 - (dtucker) [configure.ac] Bug #1639: use AC_PATH_PROG to search the path for
47 krb5-config if it's not in the location specified by --with-kerberos5.
48 Patch from jchadima at redhat.
49
5020090829
51 - (dtucker) [README.platform] Add text about development packages, based on
52 text from Chris Pepper in bug #1631.
53
5420090828
55 - dtucker [auth-sia.c] Roll back the change for bug #1241 as it apparently
56 causes problems in some Tru64 configurations.
57 - (djm) [sshd_config.5] downgrade mention of login.conf to be an example
58 and mention PAM as another provider for ChallengeResponseAuthentication;
59 bz#1408; ok dtucker@
60 - (djm) [sftp-server.c] bz#1535: accept ENOSYS as a fallback error when
61 attempting atomic rename(); ok dtucker@
62 - (djm) [Makefile.in] bz#1505: Solaris make(1) doesn't accept make variables
63 in argv, so pass them in the environment; ok dtucker@
64 - (dtucker) [channels.c configure.ac] Bug #1528: skip the tcgetattr call on
65 the pty master on Solaris, since it never succeeds and can hang if large
66 amounts of data is sent to the slave (eg a copy-paste). Based on a patch
67 originally from Doke Scott, ok djm@
68 - (dtucker) [clientloop.c configure.ac defines.h] Make the client's IO buffer
69 size a compile-time option and set it to 64k on Cygwin, since Corinna
70 reports that it makes a significant difference to performance. ok djm@
71 - (dtucker) [configure.ac] Fix the syntax of the Solaris tcgetattr entry.
72
7320090820
74 - (dtucker) [includes.h] Bug #1634: do not include system glob.h if we're not
75 using it since the type conflicts can cause problems on FreeBSD. Patch
76 from Jonathan Chen.
77 - (dtucker) [session.c openbsd-compat/port-aix.h] Bugs #1249 and #1567: move
78 the setpcred call on AIX to immediately before the permanently_set_uid().
79 Ensures that we still have privileges when we call chroot and
80 pam_open_sesson. Based on a patch from David Leonard.
81
8220090817
83 - (dtucker) [configure.ac] Check for headers before libraries for openssl an
84 zlib, which should make the errors slightly more meaningful on platforms
85 where there's separate "-devel" packages for those.
86 - (dtucker) [sshlogin.c openbsd-compat/port-aix.{c,h}] Bug #1595: make
87 PrintLastLog work on AIX. Based in part on a patch from Miguel Sanders.
88
8920090729
90 - (tim) [contrib/cygwin/ssh-user-config] Change script to call correct error
91 function. Patch from Corinna Vinschen.
92
9320090713
94 - (dtucker) [openbsd-compat/getrrsetbyname.c] Reduce answer buffer size so it
95 fits into 16 bits to work around a bug in glibc's resolver where it masks
96 off the buffer size at 16 bits. Patch from Hauke Lampe, ok djm jakob.
97
9820090712
99 - (dtucker) [configure.ac] Include sys/param.h for the sys/mount.h test,
100 prevents configure complaining on older BSDs.
101 - (dtucker [contrib/cygwin/ssh-{host,user}-config] Add license text. Patch
102 from Corinna Vinschen.
103 - (dtucker) [auth-pam.c] Bug #1534: move the deletion of PAM credentials on
104 logout to after the session close. Patch from Anicka Bernathova,
105 originally from Andreas Schwab via Novelll ok djm.
106
10720090707
108 - (dtucker) [contrib/cygwin/ssh-host-config] better support for automated
109 scripts and fix usage of eval. Patch from Corinna Vinschen.
110
11120090705
112 - (dtucker) OpenBSD CVS Sync
113 - andreas@cvs.openbsd.org 2009/06/27 09:29:06
114 [packet.h packet.c]
115 packet_bacup_state() and packet_restore_state() will be used to
116 temporarily save the current state ren resuming a suspended connection.
117 ok markus@
118 - andreas@cvs.openbsd.org 2009/06/27 09:32:43
119 [roaming_common.c roaming.h]
120 It may be necessary to retransmit some data when resuming, so add it
121 to a buffer when roaming is enabled.
122 Most of this code was written by Martin Forssen, maf at appgate dot com.
123 ok markus@
124 - andreas@cvs.openbsd.org 2009/06/27 09:35:06
125 [readconf.h readconf.c]
126 Add client option UseRoaming. It doesn't do anything yet but will
127 control whether the client tries to use roaming if enabled on the
128 server. From Martin Forssen.
129 ok markus@
130 - markus@cvs.openbsd.org 2009/06/30 14:54:40
131 [version.h]
132 crank version; ok deraadt
133 - dtucker@cvs.openbsd.org 2009/07/02 02:11:47
134 [ssh.c]
135 allow for long home dir paths (bz #1615). ok deraadt
136 (based in part on a patch from jchadima at redhat)
137 - stevesk@cvs.openbsd.org 2009/07/05 19:28:33
138 [clientloop.c]
139 only send SSH2_MSG_DISCONNECT if we're in compat20; from dtucker@
140 ok deraadt@ markus@
141
14220090622
143 - (dtucker) OpenBSD CVS Sync
144 - dtucker@cvs.openbsd.org 2009/06/22 05:39:28
145 [monitor_wrap.c monitor_mm.c ssh-keygen.c auth2.c gss-genr.c sftp-client.c]
146 alphabetize includes; reduces diff vs portable and style(9).
147 ok stevesk djm
148 (Id sync only; these were already in order in -portable)
149
15020090621
151 - (dtucker) OpenBSD CVS Sync
152 - markus@cvs.openbsd.org 2009/03/17 21:37:00
153 [ssh.c]
154 pass correct argv[0] to openlog(); ok djm@
155 - jmc@cvs.openbsd.org 2009/03/19 15:15:09
156 [ssh.1]
157 for "Ciphers", just point the reader to the keyword in ssh_config(5), just
158 as we do for "MACs": this stops us getting out of sync when the lists
159 change;
160 fixes documentation/6102, submitted by Peter J. Philipp
161 alternative fix proposed by djm
162 ok markus
163 - tobias@cvs.openbsd.org 2009/03/23 08:31:19
164 [ssh-agent.c]
165 Fixed a possible out-of-bounds memory access if the environment variable
166 SHELL is shorter than 3 characters.
167 with input by and ok dtucker
168 - tobias@cvs.openbsd.org 2009/03/23 19:38:04
169 [ssh-agent.c]
170 My previous commit didn't fix the problem at all, so stick at my first
171 version of the fix presented to dtucker.
172 Issue notified by Matthias Barkhoff (matthias dot barkhoff at gmx dot de).
173 ok dtucker
174 - sobrado@cvs.openbsd.org 2009/03/26 08:38:39
175 [sftp-server.8 sshd.8 ssh-agent.1]
176 fix a few typographical errors found by spell(1).
177 ok dtucker@, jmc@
178 - stevesk@cvs.openbsd.org 2009/04/13 19:07:44
179 [sshd_config.5]
180 fix possessive; ok djm@
181 - stevesk@cvs.openbsd.org 2009/04/14 16:33:42
182 [sftp-server.c]
183 remove unused option character from getopt() optstring; ok markus@
184 - jj@cvs.openbsd.org 2009/04/14 21:10:54
185 [servconf.c]
186 Fixed a few the-the misspellings in comments. Skipped a bunch in
187 binutils,gcc and so on. ok jmc@
188 - stevesk@cvs.openbsd.org 2009/04/17 19:23:06
189 [session.c]
190 use INTERNAL_SFTP_NAME for setproctitle() of in-process sftp-server;
191 ok djm@ markus@
192 - stevesk@cvs.openbsd.org 2009/04/17 19:40:17
193 [sshd_config.5]
194 clarify that even internal-sftp needs /dev/log for logging to work; ok
195 markus@
196 - jmc@cvs.openbsd.org 2009/04/18 18:39:10
197 [sshd_config.5]
198 tweak previous; ok stevesk
199 - stevesk@cvs.openbsd.org 2009/04/21 15:13:17
200 [sshd_config.5]
201 clarify we cd to user's home after chroot; ok markus@ on
202 earlier version; tweaks and ok jmc@
203 - andreas@cvs.openbsd.org 2009/05/25 06:48:01
204 [channels.c packet.c clientloop.c packet.h serverloop.c monitor_wrap.c
205 monitor.c]
206 Put the globals in packet.c into a struct and don't access it directly
207 from other files. No functional changes.
208 ok markus@ djm@
209 - andreas@cvs.openbsd.org 2009/05/27 06:31:25
210 [canohost.h canohost.c]
211 Add clear_cached_addr(), needed for upcoming changes allowing the peer
212 address to change.
213 ok markus@
214 - andreas@cvs.openbsd.org 2009/05/27 06:33:39
215 [clientloop.c]
216 Send SSH2_MSG_DISCONNECT when the client disconnects. From a larger
217 change from Martin Forssen, maf at appgate dot com.
218 ok markus@
219 - andreas@cvs.openbsd.org 2009/05/27 06:34:36
220 [kex.c kex.h]
221 Move the KEX_COOKIE_LEN define to kex.h
222 ok markus@
223 - andreas@cvs.openbsd.org 2009/05/27 06:36:07
224 [packet.h packet.c]
225 Add packet_put_int64() and packet_get_int64(), part of a larger change
226 from Martin Forssen.
227 ok markus@
228 - andreas@cvs.openbsd.org 2009/05/27 06:38:16
229 [sshconnect.h sshconnect.c]
230 Un-static ssh_exchange_identification(), part of a larger change from
231 Martin Forssen and needed for upcoming changes.
232 ok markus@
233 - andreas@cvs.openbsd.org 2009/05/28 16:50:16
234 [sshd.c packet.c serverloop.c monitor_wrap.c clientloop.c sshconnect.c
235 monitor.c Added roaming.h roaming_common.c roaming_dummy.c]
236 Keep track of number of bytes read and written. Needed for upcoming
237 changes. Most code from Martin Forssen, maf at appgate dot com.
238 ok markus@
239 Also, applied appropriate changes to Makefile.in
240 - andreas@cvs.openbsd.org 2009/06/12 20:43:22
241 [monitor.c packet.c]
242 Fix warnings found by chl@ and djm@ and change roaming_atomicio's
243 return type to match atomicio's
244 Diff from djm@, ok markus@
245 - andreas@cvs.openbsd.org 2009/06/12 20:58:32
246 [packet.c]
247 Move some more statics into session_state
248 ok markus@ djm@
249 - dtucker@cvs.openbsd.org 2009/06/21 07:37:15
250 [kexdhs.c kexgexs.c]
251 abort if key_sign fails, preventing possible null deref. Based on report
252 from Paolo Ganci, ok markus@ djm@
253 - dtucker@cvs.openbsd.org 2009/06/21 09:04:03
254 [roaming.h roaming_common.c roaming_dummy.c]
255 Add tags for the benefit of the sync scripts
256 Also: pull in the changes for 1.1->1.2 missed in the previous sync.
257 - (dtucker) [auth2-jpake.c auth2.c canohost.h session.c] Whitespace and
258 header-order changes to reduce diff vs OpenBSD.
259 - (dtucker) [servconf.c sshd.c] More whitespace sync.
260 - (dtucker) [roaming_common.c roaming_dummy.c] Wrap #include <inttypes.h> in
261 ifdef.
262
26320090616
264 - (dtucker) [configure.ac defines.h] Bug #1607: handle the case where fsid_t
265 is a struct with a __val member. Fixes build on, eg, Redhat 6.2.
266
26720090504
268 - (dtucker) [sshlogin.c] Move the NO_SSH_LASTLOG #ifndef line to include
269 variable declarations. Should prevent unused warnings anywhere it's set
270 (only Crays as far as I can tell) and be a no-op everywhere else.
271
27220090318
273 - (tim) [configure.ac] Remove setting IP_TOS_IS_BROKEN for Cygwin. The problem
274 that setsockopt(IP_TOS) doesn't work on Cygwin has been fixed since 2005.
275 Based on patch from vinschen at redhat com.
276
27720090308
278 - (dtucker) [auth-passwd.c auth1.c auth2-kbdint.c auth2-none.c auth2-passwd.c
279 auth2-pubkey.c session.c openbsd-compat/bsd-cygwin_util.{c,h}
280 openbsd-compat/daemon.c] Remove support for Windows 95/98/ME and very old
281 version of Cygwin. Patch from vinschen at redhat com.
282
28320090307
284 - (dtucker) [contrib/aix/buildbff.sh] Only try to rename ssh_prng_cmds if it
285 exists (it's not created if OpenSSL's PRNG is self-seeded, eg if the OS
286 has a /dev/random).
287 - (dtucker) [schnorr.c openbsd-compat/openssl-compat.{c,h}] Add
288 EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c
289 to use them. Allows building with older OpenSSL versions.
290 - (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed.
291 - (dtucker) [configure.ac] Missing comma in type list.
292 - (dtucker) [configure.ac openbsd-compat/openssl-compat.{c,h}]
293 EVP_DigestUpdate does not exactly match the other OLD_EVP functions (eg
294 in openssl 0.9.6) so add an explicit test for it.
295
29620090306
297 - (djm) OpenBSD CVS Sync
298 - djm@cvs.openbsd.org 2009/03/05 07:18:19
299 [auth2-jpake.c jpake.c jpake.h monitor_wrap.c monitor_wrap.h schnorr.c]
300 [sshconnect2.c]
301 refactor the (disabled) Schnorr proof code to make it a little more
302 generally useful
303 - djm@cvs.openbsd.org 2009/03/05 11:30:50
304 [uuencode.c]
305 document what these functions do so I don't ever have to recuse into
306 b64_pton/ntop to remember their return values
307
30820090223
309 - (djm) OpenBSD CVS Sync
310 - djm@cvs.openbsd.org 2009/02/22 23:50:57
311 [ssh_config.5 sshd_config.5]
312 don't advertise experimental options
313 - djm@cvs.openbsd.org 2009/02/22 23:59:25
314 [sshd_config.5]
315 missing period
316 - djm@cvs.openbsd.org 2009/02/23 00:06:15
317 [version.h]
318 openssh-5.2
319 - (djm) [README] update for 5.2
320 - (djm) Release openssh-5.2p1
321
32220090222
323 - (djm) OpenBSD CVS Sync
324 - tobias@cvs.openbsd.org 2009/02/21 19:32:04
325 [misc.c sftp-server-main.c ssh-keygen.c]
326 Added missing newlines in error messages.
327 ok dtucker
328
32920090221
330 - (djm) OpenBSD CVS Sync
331 - djm@cvs.openbsd.org 2009/02/17 01:28:32
332 [ssh_config]
333 sync with revised default ciphers; pointed out by dkrause@
334 - djm@cvs.openbsd.org 2009/02/18 04:31:21
335 [schnorr.c]
336 signature should hash over the entire group, not just the generator
337 (this is still disabled code)
338 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
339 [contrib/suse/openssh.spec] Prepare for 5.2p1
340
34120090216
342 - (djm) [regress/conch-ciphers.sh regress/putty-ciphers.sh]
343 [regress/putty-kex.sh regress/putty-transfer.sh] Downgrade disabled
344 interop tests from FATAL error to a warning. Allows some interop
345 tests to proceed if others are missing necessary prerequisites.
346 - (djm) [configure.ac] support GNU/kFreeBSD and GNU/kOpensolaris
347 systems; patch from Aurelien Jarno via rmh AT aybabtu.com
348
34920090214
350 - (djm) OpenBSD CVS Sync
351 - dtucker@cvs.openbsd.org 2009/02/02 11:15:14
352 [sftp.c]
353 Initialize a few variables to prevent spurious "may be used
354 uninitialized" warnings from newer gcc's. ok djm@
355 - djm@cvs.openbsd.org 2009/02/12 03:00:56
356 [canohost.c canohost.h channels.c channels.h clientloop.c readconf.c]
357 [readconf.h serverloop.c ssh.c]
358 support remote port forwarding with a zero listen port (-R0:...) to
359 dyamically allocate a listen port at runtime (this is actually
360 specified in rfc4254); bz#1003 ok markus@
361 - djm@cvs.openbsd.org 2009/02/12 03:16:01
362 [serverloop.c]
363 tighten check for -R0:... forwarding: only allow dynamic allocation
364 if want_reply is set in the packet
365 - djm@cvs.openbsd.org 2009/02/12 03:26:22
366 [monitor.c]
367 some paranoia: check that the serialised key is really KEY_RSA before
368 diddling its internals
369 - djm@cvs.openbsd.org 2009/02/12 03:42:09
370 [ssh.1]
371 document -R0:... usage
372 - djm@cvs.openbsd.org 2009/02/12 03:44:25
373 [ssh.1]
374 consistency: Dq => Ql
375 - djm@cvs.openbsd.org 2009/02/12 03:46:17
376 [ssh_config.5]
377 document RemoteForward usage with 0 listen port
378 - jmc@cvs.openbsd.org 2009/02/12 07:34:20
379 [ssh_config.5]
380 kill trailing whitespace;
381 - markus@cvs.openbsd.org 2009/02/13 11:50:21
382 [packet.c]
383 check for enc !=NULL in packet_start_discard
384 - djm@cvs.openbsd.org 2009/02/14 06:35:49
385 [PROTOCOL]
386 mention that eow and no-more-sessions extensions are sent only to
387 OpenSSH peers
388
38920090212
390 - (djm) [sshpty.c] bz#1419: OSX uses cloning ptys that automagically
391 set ownership and modes, so avoid explicitly setting them
392 - (djm) [configure.ac loginrec.c] bz#1421: fix lastlog support for OSX.
393 OSX provides a getlastlogxbyname function that automates the reading of
394 a lastlog file. Also, the pututxline function will update lastlog so
395 there is no need for loginrec.c to do it explicitly. Collapse some
396 overly verbose code while I'm in there.
397
39820090201
399 - (dtucker) [defines.h sshconnect.c] INET6_ADDRSTRLEN is now needed in
400 channels.c too, so move the definition for non-IP6 platforms to defines.h
401 where it can be shared.
402
40320090129
404 - (tim) [contrib/cygwin/ssh-host-config] Patch from Corinna Vinschen.
405 If the CYGWIN environment variable is empty, the installer script
406 should not install the service with an empty CYGWIN variable, but
407 rather without setting CYGWNI entirely.
408 - (tim) [contrib/cygwin/ssh-host-config] Whitespace cleanup. No code changes.
409
41020090128
411 - (tim) [contrib/cygwin/ssh-host-config] Patch from Corinna Vinschen.
412 Changes to work on Cygwin 1.5.x as well as on the new Cygwin 1.7.x.
413 The information given for the setting of the CYGWIN environment variable
414 is wrong for both releases so I just removed it, together with the
415 unnecessary (Cygwin 1.5.x) or wrong (Cygwin 1.7.x) default setting.
416
41720081228
418 - (djm) OpenBSD CVS Sync
419 - stevesk@cvs.openbsd.org 2008/12/09 03:20:42
420 [channels.c servconf.c]
421 channel_print_adm_permitted_opens() should deal with all the printing
422 for that config option. suggested by markus@; ok markus@ djm@
423 dtucker@
424 - djm@cvs.openbsd.org 2008/12/09 04:32:22
425 [auth2-chall.c]
426 replace by-hand string building with xasprinf(); ok deraadt@
427 - sobrado@cvs.openbsd.org 2008/12/09 15:35:00
428 [sftp.1 sftp.c]
429 update for the synopses displayed by the 'help' command, there are a
430 few missing flags; add 'bye' to the output of 'help'; sorting and spacing.
431 jmc@ suggested replacing .Oo/.Oc with a single .Op macro.
432 ok jmc@
433 - stevesk@cvs.openbsd.org 2008/12/09 22:37:33
434 [clientloop.c]
435 fix typo in error message
436 - stevesk@cvs.openbsd.org 2008/12/10 03:55:20
437 [addrmatch.c]
438 o cannot be NULL here but use xfree() to be consistent; ok djm@
439 - stevesk@cvs.openbsd.org 2008/12/29 01:12:36
440 [ssh-keyscan.1]
441 fix example, default key type is rsa for 3+ years; from
442 frederic.perrin@resel.fr
443 - stevesk@cvs.openbsd.org 2008/12/29 02:23:26
444 [pathnames.h]
445 no need to escape single quotes in comments
446 - okan@cvs.openbsd.org 2008/12/30 00:46:56
447 [sshd_config.5]
448 add AllowAgentForwarding to available Match keywords list
449 ok djm
450 - djm@cvs.openbsd.org 2009/01/01 21:14:35
451 [channels.c]
452 call channel destroy callbacks on receipt of open failure messages.
453 fixes client hangs when connecting to a server that has MaxSessions=0
454 set spotted by imorgan AT nas.nasa.gov; ok markus@
455 - djm@cvs.openbsd.org 2009/01/01 21:17:36
456 [kexgexs.c]
457 fix hash calculation for KEXGEX: hash over the original client-supplied
458 values and not the sanity checked versions that we acutally use;
459 bz#1540 reported by john.smith AT arrows.demon.co.uk
460 ok markus@
461 - djm@cvs.openbsd.org 2009/01/14 01:38:06
462 [channels.c]
463 support SOCKS4A protocol, from dwmw2 AT infradead.org via bz#1482;
464 "looks ok" markus@
465 - stevesk@cvs.openbsd.org 2009/01/15 17:38:43
466 [readconf.c]
467 1) use obsolete instead of alias for consistency
468 2) oUserKnownHostsFile not obsolete but oGlobalKnownHostsFile2 is
469 so move the comment.
470 3) reorder so like options are together
471 ok djm@
472 - djm@cvs.openbsd.org 2009/01/22 09:46:01
473 [channels.c channels.h session.c]
474 make Channel->path an allocated string, saving a few bytes here and
475 there and fixing bz#1380 in the process; ok markus@
476 - djm@cvs.openbsd.org 2009/01/22 09:49:57
477 [channels.c]
478 oops! I committed the wrong version of the Channel->path diff,
479 it was missing some tweaks suggested by stevesk@
480 - djm@cvs.openbsd.org 2009/01/22 10:02:34
481 [clientloop.c misc.c readconf.c readconf.h servconf.c servconf.h]
482 [serverloop.c ssh-keyscan.c ssh.c sshd.c]
483 make a2port() return -1 when it encounters an invalid port number
484 rather than 0, which it will now treat as valid (needed for future work)
485 adjust current consumers of a2port() to check its return value is <= 0,
486 which in turn required some things to be converted from u_short => int
487 make use of int vs. u_short consistent in some other places too
488 feedback & ok markus@
489 - djm@cvs.openbsd.org 2009/01/22 10:09:16
490 [auth-options.c]
491 another chunk of a2port() diff that got away. wtfdjm??
492 - djm@cvs.openbsd.org 2009/01/23 07:58:11
493 [myproposal.h]
494 prefer CTR modes and revised arcfour (i.e w/ discard) modes to CBC
495 modes; ok markus@
496 - naddy@cvs.openbsd.org 2009/01/24 17:10:22
497 [ssh_config.5 sshd_config.5]
498 sync list of preferred ciphers; ok djm@
499 - markus@cvs.openbsd.org 2009/01/26 09:58:15
500 [cipher.c cipher.h packet.c]
501 Work around the CPNI-957037 Plaintext Recovery Attack by always
502 reading 256K of data on packet size or HMAC errors (in CBC mode only).
503 Help, feedback and ok djm@
504 Feedback from Martin Albrecht and Paterson Kenny
505
50620090107
507 - (djm) [uidswap.c] bz#1412: Support >16 supplemental groups in OS X.
508 Patch based on one from vgiffin AT apple.com; ok dtucker@
509 - (djm) [channels.c] bz#1419: support "on demand" X11 forwarding via
510 launchd on OS X; patch from vgiffin AT apple.com, slightly tweaked;
511 ok dtucker@
512 - (djm) [contrib/ssh-copy-id.1 contrib/ssh-copy-id] bz#1492: Make
513 ssh-copy-id copy id_rsa.pub by default (instead of the legacy "identity"
514 key). Patch from cjwatson AT debian.org
515
51620090107
517 - (tim) [configure.ac defines.h openbsd-compat/port-uw.c
518 openbsd-compat/xcrypt.c] Add SECUREWARE support to OpenServer 6 SVR5 ABI.
519 OK djm@ dtucker@
520 - (tim) [configure.ac] Move check_for_libcrypt_later=1 in *-*-sysv5*) section.
521 OpenServer 6 doesn't need libcrypt.
522
52320081209
524 - (djm) OpenBSD CVS Sync
525 - djm@cvs.openbsd.org 2008/12/09 02:38:18
526 [clientloop.c]
527 The ~C escape handler does not work correctly for multiplexed sessions -
528 it opens a commandline on the master session, instead of on the slave
529 that requested it. Disable it on slave sessions until such time as it
530 is fixed; bz#1543 report from Adrian Bridgett via Colin Watson
531 ok markus@
532 - djm@cvs.openbsd.org 2008/12/09 02:39:59
533 [sftp.c]
534 Deal correctly with failures in remote stat() operation in sftp,
535 correcting fail-on-error behaviour in batchmode. bz#1541 report and
536 fix from anedvedicky AT gmail.com; ok markus@
537 - djm@cvs.openbsd.org 2008/12/09 02:58:16
538 [readconf.c]
539 don't leave junk (free'd) pointers around in Forward *fwd argument on
540 failure; avoids double-free in ~C -L handler when given an invalid
541 forwarding specification; bz#1539 report from adejong AT debian.org
542 via Colin Watson; ok markus@ dtucker@
543 - djm@cvs.openbsd.org 2008/12/09 03:02:37
544 [sftp.1 sftp.c]
545 correct sftp(1) and corresponding usage syntax;
546 bz#1518 patch from imorgan AT nas.nasa.gov; ok deraadt@ improved diff jmc@
547
54820081208
549 - (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually
550 use some stack in main().
551 Report and suggested fix from vapier AT gentoo.org
552 - (djm) OpenBSD CVS Sync
553 - markus@cvs.openbsd.org 2008/12/02 19:01:07
554 [clientloop.c]
555 we have to use the recipient's channel number (RFC 4254) for
556 SSH2_MSG_CHANNEL_SUCCESS/SSH2_MSG_CHANNEL_FAILURE messages,
557 otherwise we trigger 'Non-public channel' error messages on sshd
558 systems with clientkeepalive enabled; noticed by sturm; ok djm;
559 - markus@cvs.openbsd.org 2008/12/02 19:08:59
560 [serverloop.c]
561 backout 1.149, since it's not necessary and openssh clients send
562 broken CHANNEL_FAILURE/SUCCESS messages since about 2004; ok djm@
563 - markus@cvs.openbsd.org 2008/12/02 19:09:38
564 [channels.c]
565 s/remote_id/id/ to be more consistent with other code; ok djm@
566
56720081201
568 - (dtucker) [contrib/cygwin/{Makefile,ssh-host-config}] Add new doc files
569 and tweak the is-sshd-running check in ssh-host-config. Patch from
570 vinschen at redhat com.
571 - (dtucker) OpenBSD CVS Sync
572 - markus@cvs.openbsd.org 2008/11/21 15:47:38
573 [packet.c]
574 packet_disconnect() on padding error, too. should reduce the success
575 probability for the CPNI-957037 Plaintext Recovery Attack to 2^-18
576 ok djm@
577 - dtucker@cvs.openbsd.org 2008/11/30 11:59:26
578 [monitor_fdpass.c]
579 Retry sendmsg/recvmsg on EAGAIN and EINTR; ok djm@
580
58120081123
582 - (dtucker) [monitor_fdpass.c] Reduce diff vs OpenBSD by moving some
583 declarations, removing an unnecessary union member and adding whitespace.
584 cmsgbuf.tmp thing spotted by des at des no, ok djm some time ago.
585
58620081118
587 - (tim) [addrmatch.c configure.ac] Some platforms do not have sin6_scope_id
588 member of sockaddr_in6. Also reported in Bug 1491 by David Leonard. OK and
589 feedback by djm@
590
59120081111
592 - (dtucker) OpenBSD CVS Sync
593 - jmc@cvs.openbsd.org 2008/11/05 11:22:54
594 [servconf.c]
595 passord -> password;
596 fixes user/5975 from Rene Maroufi
597 - stevesk@cvs.openbsd.org 2008/11/07 00:42:12
598 [ssh-keygen.c]
599 spelling/typo in comment
600 - stevesk@cvs.openbsd.org 2008/11/07 18:50:18
601 [nchan.c]
602 add space to some log/debug messages for readability; ok djm@ markus@
603 - dtucker@cvs.openbsd.org 2008/11/07 23:34:48
604 [auth2-jpake.c]
605 Move JPAKE define to make life easier for portable. ok djm@
606 - tobias@cvs.openbsd.org 2008/11/09 12:34:47
607 [session.c ssh.1]
608 typo fixed (overriden -> overridden)
609 ok espie, jmc
610 - stevesk@cvs.openbsd.org 2008/11/11 02:58:09
611 [servconf.c]
612 USE_AFS not referenced so remove #ifdef. fixes sshd -T not printing
613 kerberosgetafstoken. ok dtucker@
614 (Id sync only, we still want the ifdef in portable)
615 - stevesk@cvs.openbsd.org 2008/11/11 03:55:11
616 [channels.c]
617 for sshd -T print 'permitopen any' vs. 'permitopen' for case of no
618 permitopen's; ok and input dtucker@
619 - djm@cvs.openbsd.org 2008/11/10 02:06:35
620 [regress/putty-ciphers.sh]
621 PuTTY supports AES CTR modes, so interop test against them too
622
62320081105
624 - OpenBSD CVS Sync
625 - djm@cvs.openbsd.org 2008/11/03 08:59:41
626 [servconf.c]
627 include MaxSessions in sshd -T output; patch from imorgan AT nas.nasa.gov
628 - djm@cvs.openbsd.org 2008/11/04 07:58:09
629 [auth.c]
630 need unistd.h for close() prototype
631 (ID sync only)
632 - djm@cvs.openbsd.org 2008/11/04 08:22:13
633 [auth.h auth2.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h]
634 [readconf.c readconf.h servconf.c servconf.h ssh2.h ssh_config.5]
635 [sshconnect2.c sshd_config.5 jpake.c jpake.h schnorr.c auth2-jpake.c]
636 [Makefile.in]
637 Add support for an experimental zero-knowledge password authentication
638 method using the J-PAKE protocol described in F. Hao, P. Ryan,
639 "Password Authenticated Key Exchange by Juggling", 16th Workshop on
640 Security Protocols, Cambridge, April 2008.
641
642 This method allows password-based authentication without exposing
643 the password to the server. Instead, the client and server exchange
644 cryptographic proofs to demonstrate of knowledge of the password while
645 revealing nothing useful to an attacker or compromised endpoint.
646
647 This is experimental, work-in-progress code and is presently
648 compiled-time disabled (turn on -DJPAKE in Makefile.inc).
649
650 "just commit it. It isn't too intrusive." deraadt@
651 - stevesk@cvs.openbsd.org 2008/11/04 19:18:00
652 [readconf.c]
653 because parse_forward() is now used to parse all forward types (DLR),
654 and it malloc's space for host variables, we don't need to malloc
655 here. fixes small memory leaks.
656
657 previously dynamic forwards were not parsed in parse_forward() and
658 space was not malloc'd in that case.
659
660 ok djm@
661 - stevesk@cvs.openbsd.org 2008/11/05 03:23:09
662 [clientloop.c ssh.1]
663 add dynamic forward escape command line; ok djm@
664
66520081103
666 - OpenBSD CVS Sync
667 - sthen@cvs.openbsd.org 2008/07/24 23:55:30
668 [ssh-keygen.1]
669 Add "ssh-keygen -F -l" to synopsis (displays fingerprint from
670 known_hosts). ok djm@
671 - grunk@cvs.openbsd.org 2008/07/25 06:56:35
672 [ssh_config]
673 Add VisualHostKey to example file, ok djm@
674 - grunk@cvs.openbsd.org 2008/07/25 07:05:16
675 [key.c]
676 In random art visualization, make sure to use the end marker only at the
677 end. Initial diff by Dirk Loss, tweaks and ok djm@
678 - markus@cvs.openbsd.org 2008/07/31 14:48:28
679 [sshconnect2.c]
680 don't allocate space for empty banners; report t8m at centrum.cz;
681 ok deraadt
682 - krw@cvs.openbsd.org 2008/08/02 04:29:51
683 [ssh_config.5]
684 whitepsace -> whitespace. From Matthew Clarke via bugs@.
685 - djm@cvs.openbsd.org 2008/08/21 04:09:57
686 [session.c]
687 allow ForceCommand internal-sftp with arguments. based on patch from
688 michael.barabanov AT gmail.com; ok markus@
689 - djm@cvs.openbsd.org 2008/09/06 12:24:13
690 [kex.c]
691 OpenSSL 0.9.8h supplies a real EVP_sha256 so we do not need our
692 replacement anymore
693 (ID sync only for portable - we still need this)
694 - markus@cvs.openbsd.org 2008/09/11 14:22:37
695 [compat.c compat.h nchan.c ssh.c]
696 only send eow and no-more-sessions requests to openssh 5 and newer;
697 fixes interop problems with broken ssh v2 implementations; ok djm@
698 - millert@cvs.openbsd.org 2008/10/02 14:39:35
699 [session.c]
700 Convert an unchecked strdup to xstrdup. OK deraadt@
701 - jmc@cvs.openbsd.org 2008/10/03 13:08:12
702 [sshd.8]
703 do not give an example of how to chmod files: we can presume the user
704 knows that. removes an ambiguity in the permission of authorized_keys;
705 ok deraadt
706 - deraadt@cvs.openbsd.org 2008/10/03 23:56:28
707 [sshconnect2.c]
708 Repair strnvis() buffersize of 4*n+1, with termination gauranteed by the
709 function.
710 spotted by des@freebsd, who commited an incorrect fix to the freebsd tree
711 and (as is fairly typical) did not report the problem to us. But this fix
712 is correct.
713 ok djm
714 - djm@cvs.openbsd.org 2008/10/08 23:34:03
715 [ssh.1 ssh.c]
716 Add -y option to force logging via syslog rather than stderr.
717 Useful for daemonised ssh connection (ssh -f). Patch originally from
718 and ok'd by markus@
719 - djm@cvs.openbsd.org 2008/10/09 03:50:54
720 [servconf.c sshd_config.5]
721 support setting PermitEmptyPasswords in a Match block
722 requested in PR3891; ok dtucker@
723 - jmc@cvs.openbsd.org 2008/10/09 06:54:22
724 [ssh.c]
725 add -y to usage();
726 - stevesk@cvs.openbsd.org 2008/10/10 04:55:16
727 [scp.c]
728 spelling in comment; ok djm@
729 - stevesk@cvs.openbsd.org 2008/10/10 05:00:12
730 [key.c]
731 typo in error message; ok djm@
732 - stevesk@cvs.openbsd.org 2008/10/10 16:43:27
733 [ssh_config.5]
734 use 'Privileged ports can be forwarded only when logging in as root on
735 the remote machine.' for RemoteForward just like ssh.1 -R.
736 ok djm@ jmc@
737 - stevesk@cvs.openbsd.org 2008/10/14 18:11:33
738 [sshconnect.c]
739 use #define ROQUIET here; no binary change. ok dtucker@
740 - stevesk@cvs.openbsd.org 2008/10/17 18:36:24
741 [ssh_config.5]
742 correct and clarify VisualHostKey; ok jmc@
743 - stevesk@cvs.openbsd.org 2008/10/30 19:31:16
744 [clientloop.c sshd.c]
745 don't need to #include "monitor_fdpass.h"
746 - stevesk@cvs.openbsd.org 2008/10/31 15:05:34
747 [dispatch.c]
748 remove unused #define DISPATCH_MIN; ok markus@
749 - djm@cvs.openbsd.org 2008/11/01 04:50:08
750 [sshconnect2.c]
751 sprinkle ARGSUSED on dispatch handlers
752 nuke stale unusued prototype
753 - stevesk@cvs.openbsd.org 2008/11/01 06:43:33
754 [channels.c]
755 fix some typos in log messages; ok djm@
756 - sobrado@cvs.openbsd.org 2008/11/01 11:14:36
757 [ssh-keyscan.1 ssh-keyscan.c]
758 the ellipsis is not an optional argument; while here, improve spacing.
759 - stevesk@cvs.openbsd.org 2008/11/01 17:40:33
760 [clientloop.c readconf.c readconf.h ssh.c]
761 merge dynamic forward parsing into parse_forward();
762 'i think this is OK' djm@
763 - stevesk@cvs.openbsd.org 2008/11/02 00:16:16
764 [ttymodes.c]
765 protocol 2 tty modes support is now 7.5 years old so remove these
766 debug3()s; ok deraadt@
767 - stevesk@cvs.openbsd.org 2008/11/03 01:07:02
768 [readconf.c]
769 remove valueless comment
770 - stevesk@cvs.openbsd.org 2008/11/03 02:44:41
771 [readconf.c]
772 fix comment
773 - (djm) [contrib/caldera/ssh-host-keygen contrib/suse/rc.sshd]
774 Make example scripts generate keys with default sizes rather than fixed,
775 non-default 1024 bits; patch from imorgan AT nas.nasa.gov
776 - (djm) [contrib/sshd.pam.generic contrib/caldera/sshd.pam]
777 [contrib/redhat/sshd.pam] Move pam_nologin to account group from
778 incorrect auth group in example files;
779 patch from imorgan AT nas.nasa.gov
780
78120080906
782 - (dtucker) [config.guess config.sub] Update to latest versions from
783 http://git.savannah.gnu.org/gitweb/ (2008-04-14 and 2008-06-16
784 respectively).
785
78620080830
787 - (dtucker) [openbsd-compat/bsd-poll.c] correctly check for number of FDs
788 larger than FD_SETSIZE (OpenSSH only ever uses poll with one fd). Patch
789 from Nicholas Marriott.
790
79120080721
792 - (djm) OpenBSD CVS Sync
793 - djm@cvs.openbsd.org 2008/07/23 07:36:55
794 [servconf.c]
795 do not try to print options that have been compile-time disabled
796 in config test mode (sshd -T); report from nix-corp AT esperi.org.uk
797 ok dtucker@
798 - (djm) [servconf.c] Print UsePAM option in config test mode (when it
799 has been compiled in); report from nix-corp AT esperi.org.uk
800 ok dtucker@
801
80220080721
803 - (djm) OpenBSD CVS Sync
804 - jmc@cvs.openbsd.org 2008/07/18 22:51:01
805 [sftp-server.8]
806 no need for .Pp before or after .Sh;
807 - djm@cvs.openbsd.org 2008/07/21 08:19:07
808 [version.h]
809 openssh-5.1
810 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
811 [contrib/suse/openssh.spec] Update version number in README and RPM specs
812 - (djm) Release OpenSSH-5.1
813
81420080717
815 - (djm) OpenBSD CVS Sync
816 - djm@cvs.openbsd.org 2008/07/17 08:48:00
817 [sshconnect2.c]
818 strnvis preauth banner; pointed out by mpf@ ok markus@
819 - djm@cvs.openbsd.org 2008/07/17 08:51:07
820 [auth2-hostbased.c]
821 strip trailing '.' from hostname when HostbasedUsesNameFromPacketOnly=yes
822 report and patch from res AT qoxp.net (bz#1200); ok markus@
823 - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Remove long-unneeded compat
824 code, replace with equivalent cygwin library call. Patch from vinschen
825 at redhat.com, ok djm@.
826 - (djm) [sshconnect2.c] vis.h isn't available everywhere
827
82820080716
829 - OpenBSD CVS Sync
830 - djm@cvs.openbsd.org 2008/07/15 02:23:14
831 [sftp.1]
832 number of pipelined requests is now 64;
833 prodded by Iain.Morgan AT nasa.gov
834 - djm@cvs.openbsd.org 2008/07/16 11:51:14
835 [clientloop.c]
836 rename variable first_gc -> last_gc (since it is actually the last
837 in the list).
838 - djm@cvs.openbsd.org 2008/07/16 11:52:19
839 [channels.c]
840 this loop index should be automatic, not static
841
84220080714
843 - (djm) OpenBSD CVS Sync
844 - sthen@cvs.openbsd.org 2008/07/13 21:22:52
845 [ssh-keygen.c]
846 Change "ssh-keygen -F [host] -l" to not display random art unless
847 -v is also specified, making it consistent with the manual and other
848 uses of -l.
849 ok grunk@
850 - djm@cvs.openbsd.org 2008/07/13 22:13:07
851 [channels.c]
852 use struct sockaddr_storage instead of struct sockaddr for accept(2)
853 address argument. from visibilis AT yahoo.com in bz#1485; ok markus@
854 - djm@cvs.openbsd.org 2008/07/13 22:16:03
855 [sftp.c]
856 increase number of piplelined requests so they properly fill the
857 (recently increased) channel window. prompted by rapier AT psc.edu;
858 ok markus@
859 - djm@cvs.openbsd.org 2008/07/14 01:55:56
860 [sftp-server.8]
861 mention requirement for /dev/log inside chroot when using sftp-server
862 with ChrootDirectory
863 - (djm) [openbsd-compat/bindresvport.c] Rename variables s/sin/in/ to
864 avoid clash with sin(3) function; reported by
865 cristian.ionescu-idbohrn AT axis.com
866 - (djm) [openbsd-compat/rresvport.c] Add unistd.h for missing close()
867 prototype; reported by cristian.ionescu-idbohrn AT axis.com
868 - (djm) [umac.c] Rename variable s/buffer_ptr/bufp/ to avoid clash;
869 reported by cristian.ionescu-idbohrn AT axis.com
870 - (djm) [contrib/cygwin/Makefile contrib/cygwin/ssh-host-config]
871 [contrib/cygwin/ssh-user-config contrib/cygwin/sshd-inetd]
872 Revamped and simplified Cygwin ssh-host-config script that uses
873 unified csih configuration tool. Requires recent Cygwin.
874 Patch from vinschen AT redhat.com
875
87620080712
877 - (djm) OpenBSD CVS Sync
878 - djm@cvs.openbsd.org 2008/07/12 04:52:50
879 [channels.c]
880 unbreak; move clearing of cctx struct to before first use
881 reported by dkrause@
882 - djm@cvs.openbsd.org 2008/07/12 05:33:41
883 [scp.1]
884 better description for -i flag:
885 s/RSA authentication/public key authentication/
886 - (djm) [openbsd-compat/fake-rfc2553.c openbsd-compat/fake-rfc2553.h]
887 return EAI_FAMILY when trying to lookup unsupported address family;
888 from vinschen AT redhat.com
889
89020080711
891 - (djm) OpenBSD CVS Sync
892 - stevesk@cvs.openbsd.org 2008/07/07 00:31:41
893 [ttymodes.c]
894 we don't need arg after the debug3() was removed. from lint.
895 ok djm@
896 - stevesk@cvs.openbsd.org 2008/07/07 23:32:51
897 [key.c]
898 /*NOTREACHED*/ for lint warning:
899 warning: function key_equal falls off bottom without returning value
900 ok djm@
901 - markus@cvs.openbsd.org 2008/07/10 18:05:58
902 [channels.c]
903 missing bzero; from mickey; ok djm@
904 - markus@cvs.openbsd.org 2008/07/10 18:08:11
905 [clientloop.c monitor.c monitor_wrap.c packet.c packet.h sshd.c]
906 sync v1 and v2 traffic accounting; add it to sshd, too;
907 ok djm@, dtucker@
908
90920080709
910 - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
911 - (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM
912 account check failure path. The vulnerable format buffer is supplied
913 from PAM and should not contain attacker-supplied data.
914 - (djm) [auth.c] Missing unistd.h for close()
915 - (djm) [configure.ac] Add -Wformat-security to CFLAGS for gcc 3.x and 4.x
916
91720080705
918 - (djm) [auth.c] Fixed test for locked account on HP/UX with shadowed
919 passwords disabled. bz#1083 report & patch from senthilkumar_sen AT
920 hotpop.com, w/ dtucker@
921 - (djm) [atomicio.c configure.ac] Disable poll() fallback in atomiciov for
922 Tru64. readv doesn't seem to be a comparable object there.
923 bz#1386, patch from dtucker@ ok me
924 - (djm) [Makefile.in] Pass though pass to conch for interop tests
925 - (djm) [configure.ac] unbreak: remove extra closing brace
926 - (djm) OpenBSD CVS Sync
927 - djm@cvs.openbsd.org 2008/07/04 23:08:25
928 [packet.c]
929 handle EINTR in packet_write_poll()l ok dtucker@
930 - djm@cvs.openbsd.org 2008/07/04 23:30:16
931 [auth1.c auth2.c]
932 Make protocol 1 MaxAuthTries logic match protocol 2's.
933 Do not treat the first protocol 2 authentication attempt as
934 a failure IFF it is for method "none".
935 Makes MaxAuthTries' user-visible behaviour identical for
936 protocol 1 vs 2.
937 ok dtucker@
938 - djm@cvs.openbsd.org 2008/07/05 05:16:01
939 [PROTOCOL]
940 grammar
941
94220080704
943 - (dtucker) OpenBSD CVS Sync
944 - djm@cvs.openbsd.org 2008/07/02 13:30:34
945 [auth2.c]
946 really really remove the freebie "none" auth try for protocol 2
947 - djm@cvs.openbsd.org 2008/07/02 13:47:39
948 [ssh.1 ssh.c]
949 When forking after authentication ("ssh -f") with ExitOnForwardFailure
950 enabled, delay the fork until after replies for any -R forwards have
951 been seen. Allows for robust detection of -R forward failure when
952 using -f (similar to bz#92); ok dtucker@
953 - otto@cvs.openbsd.org 2008/07/03 21:46:58
954 [auth2-pubkey.c]
955 avoid nasty double free; ok dtucker@ djm@
956 - djm@cvs.openbsd.org 2008/07/04 03:44:59
957 [servconf.c groupaccess.h groupaccess.c]
958 support negation of groups in "Match group" block (bz#1315); ok dtucker@
959 - dtucker@cvs.openbsd.org 2008/07/04 03:47:02
960 [monitor.c]
961 Make debug a little clearer. ok djm@
962 - djm@cvs.openbsd.org 2008/06/30 08:07:34
963 [regress/key-options.sh]
964 shell portability: use "=" instead of "==" in test(1) expressions,
965 double-quote string with backslash escaped /
966 - djm@cvs.openbsd.org 2008/06/30 10:31:11
967 [regress/{putty-transfer,putty-kex,putty-ciphers}.sh]
968 remove "set -e" left over from debugging
969 - djm@cvs.openbsd.org 2008/06/30 10:43:03
970 [regress/conch-ciphers.sh]
971 explicitly disable conch options that could interfere with the test
972 - (dtucker) [sftp-server.c] Bug #1447: fall back to racy rename if link
973 returns EXDEV. Patch from Mike Garrison, ok djm@
974 - (djm) [atomicio.c channels.c clientloop.c defines.h includes.h]
975 [packet.c scp.c serverloop.c sftp-client.c ssh-agent.c ssh-keyscan.c]
976 [sshd.c] Explicitly handle EWOULDBLOCK wherever we handle EAGAIN, on
977 some platforms (HP nonstop) it is a distinct errno;
978 bz#1467 reported by sconeu AT yahoo.com; ok dtucker@
979
98020080702
981 - (dtucker) OpenBSD CVS Sync
982 - djm@cvs.openbsd.org 2008/06/30 08:05:59
983 [PROTOCOL.agent]
984 typo: s/constraint_date/constraint_data/
985 - djm@cvs.openbsd.org 2008/06/30 12:15:39
986 [serverloop.c]
987 only pass channel requests on session channels through to the session
988 channel handler, avoiding spurious log messages; ok! markus@
989 - djm@cvs.openbsd.org 2008/06/30 12:16:02
990 [nchan.c]
991 only send eow@openssh.com notifications for session channels; ok! markus@
992 - djm@cvs.openbsd.org 2008/06/30 12:18:34
993 [PROTOCOL]
994 clarify that eow@openssh.com is only sent on session channels
995 - dtucker@cvs.openbsd.org 2008/07/01 07:20:52
996 [sshconnect.c]
997 Check ExitOnForwardFailure if forwardings are disabled due to a failed
998 host key check. ok djm@
999 - dtucker@cvs.openbsd.org 2008/07/01 07:24:22
1000 [sshconnect.c sshd.c]
1001 Send CR LF during protocol banner exchanges, but only for Protocol 2 only,
1002 in order to comply with RFC 4253. bz #1443, ok djm@
1003 - stevesk@cvs.openbsd.org 2008/07/01 23:12:47
1004 [PROTOCOL.agent]
1005 fix some typos; ok djm@
1006 - djm@cvs.openbsd.org 2008/07/02 02:24:18
1007 [sshd_config sshd_config.5 sshd.8 servconf.c]
1008 increase default size of ssh protocol 1 ephemeral key from 768 to 1024
1009 bits; prodded by & ok dtucker@ ok deraadt@
1010 - dtucker@cvs.openbsd.org 2008/07/02 12:03:51
1011 [auth-rsa.c auth.c auth2-pubkey.c auth.h]
1012 Merge duplicate host key file checks, based in part on a patch from Rob
1013 Holland via bz #1348 . Also checks for non-regular files during protocol
1014 1 RSA auth. ok djm@
1015 - djm@cvs.openbsd.org 2008/07/02 12:36:39
1016 [auth2-none.c auth2.c]
1017 Make protocol 2 MaxAuthTries behaviour a little more sensible:
1018 Check whether client has exceeded MaxAuthTries before running
1019 an authentication method and skip it if they have, previously it
1020 would always allow one try (for "none" auth).
1021 Preincrement failure count before post-auth test - previously this
1022 checked and postincremented, also to allow one "none" try.
1023 Together, these two changes always count the "none" auth method
1024 which could be skipped by a malicious client (e.g. an SSH worm)
1025 to get an extra attempt at a real auth method. They also make
1026 MaxAuthTries=0 a useful way to block users entirely (esp. in a
1027 sshd_config Match block).
1028 Also, move sending of any preauth banner from "none" auth method
1029 to the first call to input_userauth_request(), so worms that skip
1030 the "none" method get to see it too.
1031
103220080630
1033 - (djm) OpenBSD CVS Sync
1034 - dtucker@cvs.openbsd.org 2008/06/10 23:13:43
1035 [regress/Makefile regress/key-options.sh]
1036 Add regress test for key options. ok djm@
1037 - dtucker@cvs.openbsd.org 2008/06/11 23:11:40
1038 [regress/Makefile]
1039 Don't run cipher-speed test by default; mistakenly enabled by me
1040 - djm@cvs.openbsd.org 2008/06/28 13:57:25
1041 [regress/Makefile regress/test-exec.sh regress/conch-ciphers.sh]
1042 very basic regress test against Twisted Conch in "make interop"
1043 target (conch is available in ports/devel/py-twisted/conch);
1044 ok markus@
1045 - (djm) [regress/Makefile] search for conch by path, like we do putty
1046
104720080629
1048 - (djm) OpenBSD CVS Sync
1049 - martynas@cvs.openbsd.org 2008/06/21 07:46:46
1050 [sftp.c]
1051 use optopt to get invalid flag, instead of return value of getopt,
1052 which is always '?'; ok djm@
1053 - otto@cvs.openbsd.org 2008/06/25 11:13:43
1054 [key.c]
1055 add key length to visual fingerprint; zap magical constants;
1056 ok grunk@ djm@
1057 - djm@cvs.openbsd.org 2008/06/26 06:10:09
1058 [sftp-client.c sftp-server.c]
1059 allow the sftp chmod(2)-equivalent operation to set set[ug]id/sticky
1060 bits. Note that this only affects explicit setting of modes (e.g. via
1061 sftp(1)'s chmod command) and not file transfers. (bz#1310)
1062 ok deraadt@ at c2k8
1063 - djm@cvs.openbsd.org 2008/06/26 09:19:40
1064 [dh.c dh.h moduli.c]
1065 when loading moduli from /etc/moduli in sshd(8), check that they
1066 are of the expected "safe prime" structure and have had
1067 appropriate primality tests performed;
1068 feedback and ok dtucker@
1069 - grunk@cvs.openbsd.org 2008/06/26 11:46:31
1070 [readconf.c readconf.h ssh.1 ssh_config.5 sshconnect.c]
1071 Move SSH Fingerprint Visualization away from sharing the config option
1072 CheckHostIP to an own config option named VisualHostKey.
1073 While there, fix the behaviour that ssh would draw a random art picture
1074 on every newly seen host even when the option was not enabled.
1075 prodded by deraadt@, discussions,
1076 help and ok markus@ djm@ dtucker@
1077 - jmc@cvs.openbsd.org 2008/06/26 21:11:46
1078 [ssh.1]
1079 add VisualHostKey to the list of options listed in -o;
1080 - djm@cvs.openbsd.org 2008/06/28 07:25:07
1081 [PROTOCOL]
1082 spelling fixes
1083 - djm@cvs.openbsd.org 2008/06/28 13:58:23
1084 [ssh-agent.c]
1085 refuse to add a key that has unknown constraints specified;
1086 ok markus
1087 - djm@cvs.openbsd.org 2008/06/28 14:05:15
1088 [ssh-agent.c]
1089 reset global compat flag after processing a protocol 2 signature
1090 request with the legacy DSA encoding flag set; ok markus
1091 - djm@cvs.openbsd.org 2008/06/28 14:08:30
1092 [PROTOCOL PROTOCOL.agent]
1093 document the protocol used by ssh-agent; "looks ok" markus@
1094
109520080628
1096 - (djm) [RFC.nroff contrib/cygwin/Makefile contrib/suse/openssh.spec]
1097 RFC.nroff lacks a license, remove it (it is long gone in OpenBSD).
1098
109920080626
1100 - (djm) [Makefile.in moduli.5] Include moduli(5) manpage from OpenBSD.
1101 (bz#1372)
1102 - (djm) [ contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1103 [contrib/suse/openssh.spec] Include moduli.5 in RPM spec files.
1104
110520080616
1106 - (dtucker) OpenBSD CVS Sync
1107 - dtucker@cvs.openbsd.org 2008/06/16 13:22:53
1108 [session.c channels.c]
1109 Rename the isatty argument to is_tty so we don't shadow
1110 isatty(3). ok markus@
1111 - (dtucker) [channels.c] isatty -> is_tty here too.
1112
111320080615
1114 - (dtucker) [configure.ac] Enable -fno-builtin-memset when using gcc.
1115 - OpenBSD CVS Sync
1116 - dtucker@cvs.openbsd.org 2008/06/14 15:49:48
1117 [sshd.c]
1118 wrap long line at 80 chars
1119 - dtucker@cvs.openbsd.org 2008/06/14 17:07:11
1120 [sshd.c]
1121 ensure default umask disallows at least group and world write; ok djm@
1122 - djm@cvs.openbsd.org 2008/06/14 18:33:43
1123 [session.c]
1124 suppress the warning message from chdir(homedir) failures
1125 when chrooted (bz#1461); ok dtucker
1126 - dtucker@cvs.openbsd.org 2008/06/14 19:42:10
1127 [scp.1]
1128 Mention that scp follows symlinks during -r. bz #1466,
1129 from nectar at apple
1130 - dtucker@cvs.openbsd.org 2008/06/15 16:55:38
1131 [sshd_config.5]
1132 MaxSessions is allowed in a Match block too
1133 - dtucker@cvs.openbsd.org 2008/06/15 16:58:40
1134 [servconf.c sshd_config.5]
1135 Allow MaxAuthTries within a Match block. ok djm@
1136 - djm@cvs.openbsd.org 2008/06/15 20:06:26
1137 [channels.c channels.h session.c]
1138 don't call isatty() on a pty master, instead pass a flag down to
1139 channel_set_fds() indicating that te fds refer to a tty. Fixes a
1140 hang on exit on Solaris (bz#1463) in portable but is actually
1141 a generic bug; ok dtucker deraadt markus
1142
114320080614
1144 - (djm) [openbsd-compat/sigact.c] Avoid NULL derefs in ancient sigaction
1145 replacement code; patch from ighighi AT gmail.com in bz#1240;
1146 ok dtucker
1147
114820080613
1149 - (dtucker) OpenBSD CVS Sync
1150 - deraadt@cvs.openbsd.org 2008/06/13 09:44:36
1151 [packet.c]
1152 compile on older gcc; no decl after code
1153 - dtucker@cvs.openbsd.org 2008/06/13 13:56:59
1154 [monitor.c]
1155 Clear key options in the monitor on failed authentication, prevents
1156 applying additional restrictions to non-pubkey authentications in
1157 the case where pubkey fails but another method subsequently succeeds.
1158 bz #1472, found by Colin Watson, ok markus@ djm@
1159 - dtucker@cvs.openbsd.org 2008/06/13 14:18:51
1160 [auth2-pubkey.c auth-rhosts.c]
1161 Include unistd.h for close(), prevents warnings in -portable
1162 - dtucker@cvs.openbsd.org 2008/06/13 17:21:20
1163 [mux.c]
1164 Friendlier error messages for mux fallback. ok djm@
1165 - dtucker@cvs.openbsd.org 2008/06/13 18:55:22
1166 [scp.c]
1167 Prevent -Wsign-compare warnings on LP64 systems. bz #1192, ok deraadt@
1168 - grunk@cvs.openbsd.org 2008/06/13 20:13:26
1169 [ssh.1]
1170 Explain the use of SSH fpr visualization using random art, and cite the
1171 original scientific paper inspiring that technique.
1172 Much help with English and nroff by jmc@, thanks.
1173 - (dtucker) [configure.ac] Bug #1276: avoid linking against libgssapi, which
1174 despite its name doesn't seem to implement all of GSSAPI. Patch from
1175 Jan Engelhardt, sanity checked by Simon Wilkinson.
1176
117720080612
1178 - (dtucker) OpenBSD CVS Sync
1179 - jmc@cvs.openbsd.org 2008/06/11 07:30:37
1180 [sshd.8]
1181 kill trailing whitespace;
1182 - grunk@cvs.openbsd.org 2008/06/11 21:01:35
1183 [ssh_config.5 key.h readconf.c readconf.h ssh-keygen.1 ssh-keygen.c key.c
1184 sshconnect.c]
1185 Introduce SSH Fingerprint ASCII Visualization, a technique inspired by the
1186 graphical hash visualization schemes known as "random art", and by
1187 Dan Kaminsky's musings on the subject during a BlackOp talk at the
1188 23C3 in Berlin.
1189 Scientific publication (original paper):
1190 "Hash Visualization: a New Technique to improve Real-World Security",
1191 Perrig A. and Song D., 1999, International Workshop on Cryptographic
1192 Techniques and E-Commerce (CrypTEC '99)
1193 http://sparrow.ece.cmu.edu/~adrian/projects/validation/validation.pdf
1194 The algorithm used here is a worm crawling over a discrete plane,
1195 leaving a trace (augmenting the field) everywhere it goes.
1196 Movement is taken from dgst_raw 2bit-wise. Bumping into walls
1197 makes the respective movement vector be ignored for this turn,
1198 thus switching to the other color of the chessboard.
1199 Graphs are not unambiguous for now, because circles in graphs can be
1200 walked in either direction.
1201 discussions with several people,
1202 help, corrections and ok markus@ djm@
1203 - grunk@cvs.openbsd.org 2008/06/11 21:38:25
1204 [ssh-keygen.c]
1205 ssh-keygen -lv -f /etc/ssh/ssh_host_rsa_key.pub
1206 would not display you the random art as intended, spotted by canacar@
1207 - grunk@cvs.openbsd.org 2008/06/11 22:20:46
1208 [ssh-keygen.c ssh-keygen.1]
1209 ssh-keygen would write fingerprints to STDOUT, and random art to STDERR,
1210 that is not how it was envisioned.
1211 Also correct manpage saying that -v is needed along with -l for it to work.
1212 spotted by naddy@
1213 - otto@cvs.openbsd.org 2008/06/11 23:02:22
1214 [key.c]
1215 simpler way of computing the augmentations; ok grunk@
1216 - grunk@cvs.openbsd.org 2008/06/11 23:03:56
1217 [ssh_config.5]
1218 CheckHostIP set to ``fingerprint'' will display both hex and random art
1219 spotted by naddy@
1220 - grunk@cvs.openbsd.org 2008/06/11 23:51:57
1221 [key.c]
1222 #define statements that are not atoms need braces around them, else they
1223 will cause trouble in some cases.
1224 Also do a computation of -1 once, and not in a loop several times.
1225 spotted by otto@
1226 - dtucker@cvs.openbsd.org 2008/06/12 00:03:49
1227 [dns.c canohost.c sshconnect.c]
1228 Do not pass "0" strings as ports to getaddrinfo because the lookups
1229 can slow things down and we never use the service info anyway. bz
1230 #859, patch from YOSHIFUJI Hideaki and John Devitofranceschi. ok
1231 deraadt@ djm@
1232 djm belives that the reason for the "0" strings is to ensure that
1233 it's not possible to call getaddrinfo with both host and port being
1234 NULL. In the case of canohost.c host is a local array. In the
1235 case of sshconnect.c, it's checked for null immediately before use.
1236 In dns.c it ultimately comes from ssh.c:main() and is guaranteed to
1237 be non-null but it's not obvious, so I added a warning message in
1238 case it is ever passed a null.
1239 - grunk@cvs.openbsd.org 2008/06/12 00:13:55
1240 [sshconnect.c]
1241 Make ssh print the random art also when ssh'ing to a host using IP only.
1242 spotted by naddy@, ok and help djm@ dtucker@
1243 - otto@cvs.openbsd.org 2008/06/12 00:13:13
1244 [key.c]
1245 use an odd number of rows and columns and a separate start marker, looks
1246 better; ok grunk@
1247 - djm@cvs.openbsd.org 2008/06/12 03:40:52
1248 [clientloop.h mux.c channels.c clientloop.c channels.h]
1249 Enable ~ escapes for multiplex slave sessions; give each channel
1250 its own escape state and hook the escape filters up to muxed
1251 channels. bz #1331
1252 Mux slaves do not currently support the ~^Z and ~& escapes.
1253 NB. this change cranks the mux protocol version, so a new ssh
1254 mux client will not be able to connect to a running old ssh
1255 mux master.
1256 ok dtucker@
1257 - djm@cvs.openbsd.org 2008/06/12 04:06:00
1258 [clientloop.h ssh.c clientloop.c]
1259 maintain an ordered queue of outstanding global requests that we
1260 expect replies to, similar to the per-channel confirmation queue.
1261 Use this queue to verify success or failure for remote forward
1262 establishment in a race free way.
1263 ok dtucker@
1264 - djm@cvs.openbsd.org 2008/06/12 04:17:47
1265 [clientloop.c]
1266 thall shalt not code past the eightieth column
1267 - djm@cvs.openbsd.org 2008/06/12 04:24:06
1268 [ssh.c]
1269 thal shalt not code past the eightieth column
1270 - djm@cvs.openbsd.org 2008/06/12 05:15:41
1271 [PROTOCOL]
1272 document tun@openssh.com forwarding method
1273 - djm@cvs.openbsd.org 2008/06/12 05:32:30
1274 [mux.c]
1275 some more TODO for me
1276 - grunk@cvs.openbsd.org 2008/06/12 05:42:46
1277 [key.c]
1278 supply the key type (rsa1, rsa, dsa) as a caption in the frame of the
1279 random art. while there, stress the fact that the field base should at
1280 least be 8 characters for the pictures to make sense.
1281 comment and ok djm@
1282 - grunk@cvs.openbsd.org 2008/06/12 06:32:59
1283 [key.c]
1284 We already mark the start of the worm, now also mark the end of the worm
1285 in our random art drawings.
1286 ok djm@
1287 - djm@cvs.openbsd.org 2008/06/12 15:19:17
1288 [clientloop.h channels.h clientloop.c channels.c mux.c]
1289 The multiplexing escape char handler commit last night introduced a
1290 small memory leak per session; plug it.
1291 - dtucker@cvs.openbsd.org 2008/06/12 16:35:31
1292 [ssh_config.5 ssh.c]
1293 keyword expansion for localcommand. ok djm@
1294 - jmc@cvs.openbsd.org 2008/06/12 19:10:09
1295 [ssh_config.5 ssh-keygen.1]
1296 tweak the ascii art text; ok grunk
1297 - dtucker@cvs.openbsd.org 2008/06/12 20:38:28
1298 [sshd.c sshconnect.c packet.h misc.c misc.h packet.c]
1299 Make keepalive timeouts apply while waiting for a packet, particularly
1300 during key renegotiation (bz #1363). With djm and Matt Day, ok djm@
1301 - djm@cvs.openbsd.org 2008/06/12 20:47:04
1302 [sftp-client.c]
1303 print extension revisions for extensions that we understand
1304 - djm@cvs.openbsd.org 2008/06/12 21:06:25
1305 [clientloop.c]
1306 I was coalescing expected global request confirmation replies at
1307 the wrong end of the queue - fix; prompted by markus@
1308 - grunk@cvs.openbsd.org 2008/06/12 21:14:46
1309 [ssh-keygen.c]
1310 make ssh-keygen -lf show the key type just as ssh-add -l would do it
1311 ok djm@ markus@
1312 - grunk@cvs.openbsd.org 2008/06/12 22:03:36
1313 [key.c]
1314 add my copyright, ok djm@
1315 - ian@cvs.openbsd.org 2008/06/12 23:24:58
1316 [sshconnect.c]
1317 tweak wording in message, ok deraadt@ jmc@
1318 - dtucker@cvs.openbsd.org 2008/06/13 00:12:02
1319 [sftp.h log.h]
1320 replace __dead with __attribute__((noreturn)), makes things
1321 a little easier to port. Also, add it to sigdie(). ok djm@
1322 - djm@cvs.openbsd.org 2008/06/13 00:16:49
1323 [mux.c]
1324 fall back to creating a new TCP connection on most multiplexing errors
1325 (socket connect fail, invalid version, refused permittion, corrupted
1326 messages, etc.); bz #1329 ok dtucker@
1327 - dtucker@cvs.openbsd.org 2008/06/13 00:47:53
1328 [mux.c]
1329 upcast size_t to u_long to match format arg; ok djm@
1330 - dtucker@cvs.openbsd.org 2008/06/13 00:51:47
1331 [mac.c]
1332 upcast another size_t to u_long to match format
1333 - dtucker@cvs.openbsd.org 2008/06/13 01:38:23
1334 [misc.c]
1335 upcast uid to long with matching %ld, prevents warnings in portable
1336 - djm@cvs.openbsd.org 2008/06/13 04:40:22
1337 [auth2-pubkey.c auth-rhosts.c]
1338 refuse to read ~/.shosts or ~/.ssh/authorized_keys that are not
1339 regular files; report from Solar Designer via Colin Watson in bz#1471
1340 ok dtucker@ deraadt
1341 - (dtucker) [clientloop.c serverloop.c] channel_register_filter now
1342 takes 2 more args. with djm@
1343 - (dtucker) [defines.h] Bug #1112: __dead is, well dead. Based on a patch
1344 from Todd Vierling.
1345 - (dtucker) [auth-sia.c] Bug #1241: support password expiry on Tru64 SIA
1346 systems. Patch from R. Scott Bailey.
1347 - (dtucker) [umac.c] STORE_UINT32_REVERSED and endian_convert are never used
1348 on big endian machines, so ifdef them for little-endian only to prevent
1349 unused function warnings on big-endians.
1350 - (dtucker) [openbsd-compat/setenv.c] Make offsets size_t to prevent
1351 compiler warnings on some platforms. Based on a discussion with otto@
1352
135320080611
1354 - (djm) [channels.c configure.ac]
1355 Do not set SO_REUSEADDR on wildcard X11 listeners (X11UseLocalhost=no)
1356 bz#1464; ok dtucker
1357
135820080610
1359 - (dtucker) OpenBSD CVS Sync
1360 - djm@cvs.openbsd.org 2008/06/10 03:57:27
1361 [servconf.c match.h sshd_config.5]
1362 support CIDR address matching in sshd_config "Match address" blocks, with
1363 full support for negation and fall-back to classic wildcard matching.
1364 For example:
1365 Match address 192.0.2.0/24,3ffe:ffff::/32,!10.*
1366 PasswordAuthentication yes
1367 addrmatch.c code mostly lifted from flowd's addr.c
1368 feedback and ok dtucker@
1369 - djm@cvs.openbsd.org 2008/06/10 04:17:46
1370 [sshd_config.5]
1371 better reference for pattern-list
1372 - dtucker@cvs.openbsd.org 2008/06/10 04:50:25
1373 [sshd.c channels.h channels.c log.c servconf.c log.h servconf.h sshd.8]
1374 Add extended test mode (-T) and connection parameters for test mode (-C).
1375 -T causes sshd to write its effective configuration to stdout and exit.
1376 -C causes any relevant Match rules to be applied before output. The
1377 combination allows tesing of the parser and config files. ok deraadt djm
1378 - jmc@cvs.openbsd.org 2008/06/10 07:12:00
1379 [sshd_config.5]
1380 tweak previous;
1381 - jmc@cvs.openbsd.org 2008/06/10 08:17:40
1382 [sshd.8 sshd.c]
1383 - update usage()
1384 - fix SYNOPSIS, and sort options
1385 - some minor additional fixes
1386 - dtucker@cvs.openbsd.org 2008/06/09 18:06:32
1387 [regress/test-exec.sh]
1388 Don't generate putty keys if we're not going to use them. ok djm
1389 - dtucker@cvs.openbsd.org 2008/06/10 05:23:32
1390 [regress/addrmatch.sh regress/Makefile]
1391 Regress test for Match CIDR rules. ok djm@
1392 - dtucker@cvs.openbsd.org 2008/06/10 15:21:41
1393 [test-exec.sh]
1394 Use a more portable construct for checking if we're running a putty test
1395 - dtucker@cvs.openbsd.org 2008/06/10 15:28:49
1396 [test-exec.sh]
1397 Add quotes
1398 - dtucker@cvs.openbsd.org 2008/06/10 18:21:24
1399 [ssh_config.5]
1400 clarify that Host patterns are space-separated. ok deraadt
1401 - djm@cvs.openbsd.org 2008/06/10 22:15:23
1402 [PROTOCOL ssh.c serverloop.c]
1403 Add a no-more-sessions@openssh.com global request extension that the
1404 client sends when it knows that it will never request another session
1405 (i.e. when session multiplexing is disabled). This allows a server to
1406 disallow further session requests and terminate the session.
1407 Why would a non-multiplexing client ever issue additional session
1408 requests? It could have been attacked with something like SSH'jack:
1409 http://www.storm.net.nz/projects/7
1410 feedback & ok markus
1411 - djm@cvs.openbsd.org 2008/06/10 23:06:19
1412 [auth-options.c match.c servconf.c addrmatch.c sshd.8]
1413 support CIDR address matching in .ssh/authorized_keys from="..." stanzas
1414 ok and extensive testing dtucker@
1415 - dtucker@cvs.openbsd.org 2008/06/10 23:21:34
1416 [bufaux.c]
1417 Use '\0' for a nul byte rather than unadorned 0. ok djm@
1418 - dtucker@cvs.openbsd.org 2008/06/10 23:13:43
1419 [Makefile regress/key-options.sh]
1420 Add regress test for key options. ok djm@
1421 - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6
1422 since the new CIDR code in addmatch.c references it.
1423 - (dtucker) [Makefile.in configure.ac regress/addrmatch.sh] Skip IPv6
1424 specific tests on platforms that don't do IPv6.
1425 - (dtucker) [Makefile.in] Define TEST_SSH_IPV6 in make's arguments as well
1426 as environment.
1427 - (dtucker) [Makefile.in] Move addrmatch.o to libssh.a where it's needed now.
1428
142920080609
1430 - (dtucker) OpenBSD CVS Sync
1431 - dtucker@cvs.openbsd.org 2008/06/08 17:04:41
1432 [sftp-server.c]
1433 Add case for ENOSYS in errno_to_portable; ok deraadt
1434 - dtucker@cvs.openbsd.org 2008/06/08 20:15:29
1435 [sftp.c sftp-client.c sftp-client.h]
1436 Have the sftp client store the statvfs replies in wire format,
1437 which prevents problems when the server's native sizes exceed the
1438 client's.
1439 Also extends the sizes of the remaining 32bit wire format to 64bit,
1440 they're specified as unsigned long in the standard.
1441 - dtucker@cvs.openbsd.org 2008/06/09 13:02:39
1442 [sftp-server.c]
1443 Extend 32bit -> 64bit values for statvfs extension missed in previous
1444 commit.
1445 - dtucker@cvs.openbsd.org 2008/06/09 13:38:46
1446 [PROTOCOL]
1447 Use a $OpenBSD tag so our scripts will sync changes.
1448
144920080608
1450 - (dtucker) [configure.ac defines.h sftp-client.c sftp-server.c sftp.c
1451 openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h
1452 openbsd-compat/bsd-statvfs.{c,h}] Add a null implementation of statvfs and
1453 fstatvfs and remove #defines around statvfs code. ok djm@
1454 - (dtucker) [configure.ac defines.h sftp-client.c M sftp-server.c] Add a
1455 macro to convert fsid to unsigned long for platforms where fsid is a
1456 2-member array.
1457
145820080607
1459 - (dtucker) [mux.c] Include paths.h inside ifdef HAVE_PATHS_H.
1460 - (dtucker) [configure.ac defines.h sftp-client.c sftp-server.c sftp.c]
1461 Do not enable statvfs extensions on platforms that do not have statvfs.
1462 - (dtucker) OpenBSD CVS Sync
1463 - djm@cvs.openbsd.org 2008/05/19 06:14:02
1464 [packet.c] unbreak protocol keepalive timeouts bz#1465; ok dtucker@
1465 - djm@cvs.openbsd.org 2008/05/19 15:45:07
1466 [sshtty.c ttymodes.c sshpty.h]
1467 Fix sending tty modes when stdin is not a tty (bz#1199). Previously
1468 we would send the modes corresponding to a zeroed struct termios,
1469 whereas we should have been sending an empty list of modes.
1470 Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
1471 - djm@cvs.openbsd.org 2008/05/19 15:46:31
1472 [ssh-keygen.c]
1473 support -l (print fingerprint) in combination with -F (find host) to
1474 search for a host in ~/.ssh/known_hosts and display its fingerprint;
1475 ok markus@
1476 - djm@cvs.openbsd.org 2008/05/19 20:53:52
1477 [clientloop.c]
1478 unbreak tree by committing this bit that I missed from:
1479 Fix sending tty modes when stdin is not a tty (bz#1199). Previously
1480 we would send the modes corresponding to a zeroed struct termios,
1481 whereas we should have been sending an empty list of modes.
1482 Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
1483
148420080604
1485 - (djm) [openbsd-compat/bsd-arc4random.c] Fix math bug that caused bias
1486 in arc4random_uniform with upper_bound in (2^30,2*31). Note that
1487 OpenSSH did not make requests with upper bounds in this range.
1488
148920080519
1490 - (djm) [configure.ac mux.c sftp.c openbsd-compat/Makefile.in]
1491 [openbsd-compat/fmt_scaled.c openbsd-compat/openbsd-compat.h]
1492 Fix compilation on Linux, including pulling in fmt_scaled(3)
1493 implementation from OpenBSD's libutil.
1494
149520080518
1496 - (djm) OpenBSD CVS Sync
1497 - djm@cvs.openbsd.org 2008/04/04 05:14:38
1498 [sshd_config.5]
1499 ChrootDirectory is supported in Match blocks (in fact, it is most useful
1500 there). Spotted by Minstrel AT minstrel.org.uk
1501 - djm@cvs.openbsd.org 2008/04/04 06:44:26
1502 [sshd_config.5]
1503 oops, some unrelated stuff crept into that commit - backout.
1504 spotted by jmc@
1505 - djm@cvs.openbsd.org 2008/04/05 02:46:02
1506 [sshd_config.5]
1507 HostbasedAuthentication is supported under Match too
1508 - (djm) [openbsd-compat/bsd-arc4random.c openbsd-compat/openbsd-compat.c]
1509 [configure.ac] Implement arc4random_buf(), import implementation of
1510 arc4random_uniform() from OpenBSD
1511 - (djm) [openbsd-compat/bsd-arc4random.c] Warning fixes
1512 - (djm) [openbsd-compat/port-tun.c] needs sys/queue.h
1513 - (djm) OpenBSD CVS Sync
1514 - djm@cvs.openbsd.org 2008/04/13 00:22:17
1515 [dh.c sshd.c]
1516 Use arc4random_buf() when requesting more than a single word of output
1517 Use arc4random_uniform() when the desired random number upper bound
1518 is not a power of two
1519 ok deraadt@ millert@
1520 - djm@cvs.openbsd.org 2008/04/18 12:32:11
1521 [sftp-client.c sftp-client.h sftp-server.c sftp.1 sftp.c sftp.h]
1522 introduce sftp extension methods statvfs@openssh.com and
1523 fstatvfs@openssh.com that implement statvfs(2)-like operations,
1524 based on a patch from miklos AT szeredi.hu (bz#1399)
1525 also add a "df" command to the sftp client that uses the
1526 statvfs@openssh.com to produce a df(1)-like display of filesystem
1527 space and inode utilisation
1528 ok markus@
1529 - jmc@cvs.openbsd.org 2008/04/18 17:15:47
1530 [sftp.1]
1531 macro fixage;
1532 - djm@cvs.openbsd.org 2008/04/18 22:01:33
1533 [session.c]
1534 remove unneccessary parentheses
1535 - otto@cvs.openbsd.org 2008/04/29 11:20:31
1536 [monitor_mm.h]
1537 garbage collect two unused fields in struct mm_master; ok markus@
1538 - djm@cvs.openbsd.org 2008/04/30 10:14:03
1539 [ssh-keyscan.1 ssh-keyscan.c]
1540 default to rsa (protocol 2) keys, instead of rsa1 keys; spotted by
1541 larsnooden AT openoffice.org
1542 - pyr@cvs.openbsd.org 2008/05/07 05:49:37
1543 [servconf.c servconf.h session.c sshd_config.5]
1544 Enable the AllowAgentForwarding option in sshd_config (global and match
1545 context), to specify if agents should be permitted on the server.
1546 As the man page states:
1547 ``Note that disabling Agent forwarding does not improve security
1548 unless users are also denied shell access, as they can always install
1549 their own forwarders.''
1550 ok djm@, ok and a mild frown markus@
1551 - pyr@cvs.openbsd.org 2008/05/07 06:43:35
1552 [sshd_config]
1553 push the sshd_config bits in, spotted by ajacoutot@
1554 - jmc@cvs.openbsd.org 2008/05/07 08:00:14
1555 [sshd_config.5]
1556 sort;
1557 - markus@cvs.openbsd.org 2008/05/08 06:59:01
1558 [bufaux.c buffer.h channels.c packet.c packet.h]
1559 avoid extra malloc/copy/free when receiving data over the net;
1560 ~10% speedup for localhost-scp; ok djm@
1561 - djm@cvs.openbsd.org 2008/05/08 12:02:23
1562 [auth-options.c auth1.c channels.c channels.h clientloop.c gss-serv.c]
1563 [monitor.c monitor_wrap.c nchan.c servconf.c serverloop.c session.c]
1564 [ssh.c sshd.c]
1565 Implement a channel success/failure status confirmation callback
1566 mechanism. Each channel maintains a queue of callbacks, which will
1567 be drained in order (RFC4253 guarantees confirm messages are not
1568 reordered within an channel).
1569 Also includes a abandonment callback to clean up if a channel is
1570 closed without sending confirmation messages. This probably
1571 shouldn't happen in compliant implementations, but it could be
1572 abused to leak memory.
1573 ok markus@ (as part of a larger diff)
1574 - djm@cvs.openbsd.org 2008/05/08 12:21:16
1575 [monitor.c monitor_wrap.c session.h servconf.c servconf.h session.c]
1576 [sshd_config sshd_config.5]
1577 Make the maximum number of sessions run-time controllable via
1578 a sshd_config MaxSessions knob. This is useful for disabling
1579 login/shell/subsystem access while leaving port-forwarding working
1580 (MaxSessions 0), disabling connection multiplexing (MaxSessions 1) or
1581 simply increasing the number of allows multiplexed sessions.
1582 Because some bozos are sure to configure MaxSessions in excess of the
1583 number of available file descriptors in sshd (which, at peak, might be
1584 as many as 9*MaxSessions), audit sshd to ensure that it doesn't leak fds
1585 on error paths, and make it fail gracefully on out-of-fd conditions -
1586 sending channel errors instead of than exiting with fatal().
1587 bz#1090; MaxSessions config bits and manpage from junyer AT gmail.com
1588 ok markus@
1589 - djm@cvs.openbsd.org 2008/05/08 13:06:11
1590 [clientloop.c clientloop.h ssh.c]
1591 Use new channel status confirmation callback system to properly deal
1592 with "important" channel requests that fail, in particular command exec,
1593 shell and subsystem requests. Previously we would optimistically assume
1594 that the requests would always succeed, which could cause hangs if they
1595 did not (e.g. when the server runs out of fds) or were unimplemented by
1596 the server (bz #1384)
1597 Also, properly report failing multiplex channel requests via the mux
1598 client stderr (subject to LogLevel in the mux master) - better than
1599 silently failing.
1600 most bits ok markus@ (as part of a larger diff)
1601 - djm@cvs.openbsd.org 2008/05/09 04:55:56
1602 [channels.c channels.h clientloop.c serverloop.c]
1603 Try additional addresses when connecting to a port forward destination
1604 whose DNS name resolves to more than one address. The previous behaviour
1605 was to try the first address and give up.
1606 Reported by stig AT venaas.com in bz#343
1607 great feedback and ok markus@
1608 - djm@cvs.openbsd.org 2008/05/09 14:18:44
1609 [clientloop.c clientloop.h ssh.c mux.c]
1610 tidy up session multiplexing code, moving it into its own file and
1611 making the function names more consistent - making ssh.c and
1612 clientloop.c a fair bit more readable.
1613 ok markus@
1614 - djm@cvs.openbsd.org 2008/05/09 14:26:08
1615 [ssh.c]
1616 dingo stole my diff hunk
1617 - markus@cvs.openbsd.org 2008/05/09 16:16:06
1618 [session.c]
1619 re-add the USE_PIPES code and enable it.
1620 without pipes shutdown-read from the sshd does not trigger
1621 a SIGPIPE when the forked program does a write.
1622 ok djm@
1623 (Id sync only, USE_PIPES never left portable OpenSSH)
1624 - markus@cvs.openbsd.org 2008/05/09 16:17:51
1625 [channels.c]
1626 error-fd race: don't enable the error fd in the select bitmask
1627 for channels with both in- and output closed, since the channel
1628 will go away before we call select();
1629 report, lots of debugging help and ok djm@
1630 - markus@cvs.openbsd.org 2008/05/09 16:21:13
1631 [channels.h clientloop.c nchan.c serverloop.c]
1632 unbreak
1633 ssh -2 localhost od /bin/ls | true
1634 ignoring SIGPIPE by adding a new channel message (EOW) that signals
1635 the peer that we're not interested in any data it might send.
1636 fixes bz #85; discussion, debugging and ok djm@
1637 - pvalchev@cvs.openbsd.org 2008/05/12 20:52:20
1638 [umac.c]
1639 Ensure nh_result lies on a 64-bit boundary (fixes warnings observed
1640 on Itanium on Linux); from Dale Talcott (bug #1462); ok djm@
1641 - djm@cvs.openbsd.org 2008/05/15 23:52:24
1642 [nchan2.ms]
1643 document eow message in ssh protocol 2 channel state machine;
1644 feedback and ok markus@
1645 - djm@cvs.openbsd.org 2008/05/18 21:29:05
1646 [sftp-server.c]
1647 comment extension announcement
1648 - djm@cvs.openbsd.org 2008/05/16 08:30:42
1649 [PROTOCOL]
1650 document our protocol extensions and deviations; ok markus@
1651 - djm@cvs.openbsd.org 2008/05/17 01:31:56
1652 [PROTOCOL]
1653 grammar and correctness fixes from stevesk@
1654
165520080403
1656 - (djm) [openbsd-compat/bsd-poll.c] Include stdlib.h to avoid compile-
1657 time warnings on LynxOS. Patch from ops AT iki.fi
1658 - (djm) Force string arguments to replacement setproctitle() though
1659 strnvis first. Ok dtucker@
1660
166120080403
1662 - (djm) OpenBSD CVS sync:
1663 - markus@cvs.openbsd.org 2008/04/02 15:36:51
1664 [channels.c]
1665 avoid possible hijacking of x11-forwarded connections (back out 1.183)
1666 CVE-2008-1483; ok djm@
1667 - jmc@cvs.openbsd.org 2008/03/27 22:37:57
1668 [sshd.8]
1669 remove trailing whitespace;
1670 - djm@cvs.openbsd.org 2008/04/03 09:50:14
1671 [version.h]
1672 openssh-5.0
1673 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1674 [contrib/suse/openssh.spec] Crank version numbers in RPM spec files
1675 - (djm) [README] Update link to release notes
1676 - (djm) Release 5.0p1
This page took 0.441879 seconds and 5 git commands to generate.