]> andersk Git - openssh.git/blame - ChangeLog
- (tim) [configure.ac] Remove setting IP_TOS_IS_BROKEN for Cygwin. The problem
[openssh.git] / ChangeLog
CommitLineData
bc9a470b 120090318
2 - (tim) [configure.ac] Remove setting IP_TOS_IS_BROKEN for Cygwin. The problem
3 that setsockopt(IP_TOS) doesn't work on Cygwin has been fixed since 2005.
4 Based on patch from vinschen at redhat com.
5
5077a5f6 620090308
7 - (dtucker) [auth-passwd.c auth1.c auth2-kbdint.c auth2-none.c auth2-passwd.c
8 auth2-pubkey.c session.c openbsd-compat/bsd-cygwin_util.{c,h}
9 openbsd-compat/daemon.c] Remove support for Windows 95/98/ME and very old
10 version of Cygwin. Patch from vinschen at redhat com.
11
3e566c29 1220090307
13 - (dtucker) [contrib/aix/buildbff.sh] Only try to rename ssh_prng_cmds if it
14 exists (it's not created if OpenSSL's PRNG is self-seeded, eg if the OS
15 has a /dev/random).
36b68fd5 16 - (dtucker) [schnorr.c openbsd-compat/openssl-compat.{c,h}] Add
17 EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c
18 to use them. Allows building with older OpenSSL versions.
aeed50df 19 - (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed.
86783a32 20 - (dtucker) [configure.ac] Missing comma in type list.
14e380c6 21 - (dtucker) [configure.ac openbsd-compat/openssl-compat.{c,h}]
22 EVP_DigestUpdate does not exactly match the other OLD_EVP functions (eg
23 in openssl 0.9.6) so add an explicit test for it.
3e566c29 24
5b01421b 2520090306
26 - (djm) OpenBSD CVS Sync
27 - djm@cvs.openbsd.org 2009/03/05 07:18:19
28 [auth2-jpake.c jpake.c jpake.h monitor_wrap.c monitor_wrap.h schnorr.c]
29 [sshconnect2.c]
30 refactor the (disabled) Schnorr proof code to make it a little more
31 generally useful
4f983ff5 32 - djm@cvs.openbsd.org 2009/03/05 11:30:50
33 [uuencode.c]
34 document what these functions do so I don't ever have to recuse into
35 b64_pton/ntop to remember their return values
5b01421b 36
ebf012a2 3720090223
38 - (djm) OpenBSD CVS Sync
39 - djm@cvs.openbsd.org 2009/02/22 23:50:57
40 [ssh_config.5 sshd_config.5]
41 don't advertise experimental options
09b37352 42 - djm@cvs.openbsd.org 2009/02/22 23:59:25
43 [sshd_config.5]
44 missing period
52d8f3f6 45 - djm@cvs.openbsd.org 2009/02/23 00:06:15
46 [version.h]
47 openssh-5.2
dc336a3b 48 - (djm) [README] update for 5.2
0e8d25c9 49 - (djm) Release openssh-5.2p1
ebf012a2 50
7eec82ab 5120090222
52 - (djm) OpenBSD CVS Sync
53 - tobias@cvs.openbsd.org 2009/02/21 19:32:04
54 [misc.c sftp-server-main.c ssh-keygen.c]
55 Added missing newlines in error messages.
56 ok dtucker
57
1925d16d 5820090221
59 - (djm) OpenBSD CVS Sync
60 - djm@cvs.openbsd.org 2009/02/17 01:28:32
61 [ssh_config]
62 sync with revised default ciphers; pointed out by dkrause@
dca75d4b 63 - djm@cvs.openbsd.org 2009/02/18 04:31:21
64 [schnorr.c]
65 signature should hash over the entire group, not just the generator
66 (this is still disabled code)
9a4a047b 67 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
68 [contrib/suse/openssh.spec] Prepare for 5.2p1
1925d16d 69
aa10bde9 7020090216
71 - (djm) [regress/conch-ciphers.sh regress/putty-ciphers.sh]
72 [regress/putty-kex.sh regress/putty-transfer.sh] Downgrade disabled
73 interop tests from FATAL error to a warning. Allows some interop
74 tests to proceed if others are missing necessary prerequisites.
4c3b7423 75 - (djm) [configure.ac] support GNU/kFreeBSD and GNU/kOpensolaris
76 systems; patch from Aurelien Jarno via rmh AT aybabtu.com
aa10bde9 77
69354fe2 7820090214
79 - (djm) OpenBSD CVS Sync
80 - dtucker@cvs.openbsd.org 2009/02/02 11:15:14
81 [sftp.c]
82 Initialize a few variables to prevent spurious "may be used
83 uninitialized" warnings from newer gcc's. ok djm@
17525a70 84 - djm@cvs.openbsd.org 2009/02/12 03:00:56
85 [canohost.c canohost.h channels.c channels.h clientloop.c readconf.c]
86 [readconf.h serverloop.c ssh.c]
87 support remote port forwarding with a zero listen port (-R0:...) to
88 dyamically allocate a listen port at runtime (this is actually
89 specified in rfc4254); bz#1003 ok markus@
1d68c50a 90 - djm@cvs.openbsd.org 2009/02/12 03:16:01
91 [serverloop.c]
92 tighten check for -R0:... forwarding: only allow dynamic allocation
93 if want_reply is set in the packet
28b5d376 94 - djm@cvs.openbsd.org 2009/02/12 03:26:22
95 [monitor.c]
96 some paranoia: check that the serialised key is really KEY_RSA before
97 diddling its internals
db9039d0 98 - djm@cvs.openbsd.org 2009/02/12 03:42:09
99 [ssh.1]
100 document -R0:... usage
1e709459 101 - djm@cvs.openbsd.org 2009/02/12 03:44:25
102 [ssh.1]
103 consistency: Dq => Ql
c6b2c0e0 104 - djm@cvs.openbsd.org 2009/02/12 03:46:17
105 [ssh_config.5]
106 document RemoteForward usage with 0 listen port
e12d3e21 107 - jmc@cvs.openbsd.org 2009/02/12 07:34:20
108 [ssh_config.5]
109 kill trailing whitespace;
8b773163 110 - markus@cvs.openbsd.org 2009/02/13 11:50:21
111 [packet.c]
112 check for enc !=NULL in packet_start_discard
e75a14a1 113 - djm@cvs.openbsd.org 2009/02/14 06:35:49
114 [PROTOCOL]
115 mention that eow and no-more-sessions extensions are sent only to
116 OpenSSH peers
69354fe2 117
11820090212
f7b8146b 119 - (djm) [sshpty.c] bz#1419: OSX uses cloning ptys that automagically
120 set ownership and modes, so avoid explicitly setting them
295dd642 121 - (djm) [configure.ac loginrec.c] bz#1421: fix lastlog support for OSX.
122 OSX provides a getlastlogxbyname function that automates the reading of
123 a lastlog file. Also, the pututxline function will update lastlog so
124 there is no need for loginrec.c to do it explicitly. Collapse some
125 overly verbose code while I'm in there.
f7b8146b 126
b4341d7a 12720090201
128 - (dtucker) [defines.h sshconnect.c] INET6_ADDRSTRLEN is now needed in
129 channels.c too, so move the definition for non-IP6 platforms to defines.h
130 where it can be shared.
131
e1986e0a 13220090129
133 - (tim) [contrib/cygwin/ssh-host-config] Patch from Corinna Vinschen.
134 If the CYGWIN environment variable is empty, the installer script
135 should not install the service with an empty CYGWIN variable, but
136 rather without setting CYGWNI entirely.
863ba23a 137 - (tim) [contrib/cygwin/ssh-host-config] Whitespace cleanup. No code changes.
e1986e0a 138
7f24626b 13920090128
140 - (tim) [contrib/cygwin/ssh-host-config] Patch from Corinna Vinschen.
141 Changes to work on Cygwin 1.5.x as well as on the new Cygwin 1.7.x.
142 The information given for the setting of the CYGWIN environment variable
143 is wrong for both releases so I just removed it, together with the
144 unnecessary (Cygwin 1.5.x) or wrong (Cygwin 1.7.x) default setting.
145
68405671 14620081228
147 - (djm) OpenBSD CVS Sync
148 - stevesk@cvs.openbsd.org 2008/12/09 03:20:42
149 [channels.c servconf.c]
150 channel_print_adm_permitted_opens() should deal with all the printing
151 for that config option. suggested by markus@; ok markus@ djm@
152 dtucker@
7efff8ce 153 - djm@cvs.openbsd.org 2008/12/09 04:32:22
154 [auth2-chall.c]
155 replace by-hand string building with xasprinf(); ok deraadt@
d3cd4016 156 - sobrado@cvs.openbsd.org 2008/12/09 15:35:00
157 [sftp.1 sftp.c]
158 update for the synopses displayed by the 'help' command, there are a
159 few missing flags; add 'bye' to the output of 'help'; sorting and spacing.
160 jmc@ suggested replacing .Oo/.Oc with a single .Op macro.
161 ok jmc@
6c20a13f 162 - stevesk@cvs.openbsd.org 2008/12/09 22:37:33
163 [clientloop.c]
164 fix typo in error message
fd2ce9c6 165 - stevesk@cvs.openbsd.org 2008/12/10 03:55:20
166 [addrmatch.c]
167 o cannot be NULL here but use xfree() to be consistent; ok djm@
8647612c 168 - stevesk@cvs.openbsd.org 2008/12/29 01:12:36
169 [ssh-keyscan.1]
170 fix example, default key type is rsa for 3+ years; from
171 frederic.perrin@resel.fr
040d6b1f 172 - stevesk@cvs.openbsd.org 2008/12/29 02:23:26
173 [pathnames.h]
174 no need to escape single quotes in comments
d4bfdc62 175 - okan@cvs.openbsd.org 2008/12/30 00:46:56
176 [sshd_config.5]
177 add AllowAgentForwarding to available Match keywords list
178 ok djm
6cf44b6a 179 - djm@cvs.openbsd.org 2009/01/01 21:14:35
180 [channels.c]
181 call channel destroy callbacks on receipt of open failure messages.
182 fixes client hangs when connecting to a server that has MaxSessions=0
183 set spotted by imorgan AT nas.nasa.gov; ok markus@
546202d0 184 - djm@cvs.openbsd.org 2009/01/01 21:17:36
185 [kexgexs.c]
186 fix hash calculation for KEXGEX: hash over the original client-supplied
187 values and not the sanity checked versions that we acutally use;
188 bz#1540 reported by john.smith AT arrows.demon.co.uk
189 ok markus@
4866a6d6 190 - djm@cvs.openbsd.org 2009/01/14 01:38:06
191 [channels.c]
192 support SOCKS4A protocol, from dwmw2 AT infradead.org via bz#1482;
193 "looks ok" markus@
9b4b86c2 194 - stevesk@cvs.openbsd.org 2009/01/15 17:38:43
195 [readconf.c]
196 1) use obsolete instead of alias for consistency
197 2) oUserKnownHostsFile not obsolete but oGlobalKnownHostsFile2 is
198 so move the comment.
199 3) reorder so like options are together
200 ok djm@
1338ba77 201 - djm@cvs.openbsd.org 2009/01/22 09:46:01
202 [channels.c channels.h session.c]
203 make Channel->path an allocated string, saving a few bytes here and
204 there and fixing bz#1380 in the process; ok markus@
920706fd 205 - djm@cvs.openbsd.org 2009/01/22 09:49:57
206 [channels.c]
207 oops! I committed the wrong version of the Channel->path diff,
208 it was missing some tweaks suggested by stevesk@
5134115d 209 - djm@cvs.openbsd.org 2009/01/22 10:02:34
210 [clientloop.c misc.c readconf.c readconf.h servconf.c servconf.h]
211 [serverloop.c ssh-keyscan.c ssh.c sshd.c]
212 make a2port() return -1 when it encounters an invalid port number
213 rather than 0, which it will now treat as valid (needed for future work)
214 adjust current consumers of a2port() to check its return value is <= 0,
215 which in turn required some things to be converted from u_short => int
216 make use of int vs. u_short consistent in some other places too
217 feedback & ok markus@
368e246f 218 - djm@cvs.openbsd.org 2009/01/22 10:09:16
219 [auth-options.c]
220 another chunk of a2port() diff that got away. wtfdjm??
700fd7e7 221 - djm@cvs.openbsd.org 2009/01/23 07:58:11
222 [myproposal.h]
223 prefer CTR modes and revised arcfour (i.e w/ discard) modes to CBC
224 modes; ok markus@
29ec8eb3 225 - naddy@cvs.openbsd.org 2009/01/24 17:10:22
226 [ssh_config.5 sshd_config.5]
227 sync list of preferred ciphers; ok djm@
608bcf58 228 - markus@cvs.openbsd.org 2009/01/26 09:58:15
229 [cipher.c cipher.h packet.c]
230 Work around the CPNI-957037 Plaintext Recovery Attack by always
231 reading 256K of data on packet size or HMAC errors (in CBC mode only).
232 Help, feedback and ok djm@
233 Feedback from Martin Albrecht and Paterson Kenny
68405671 234
a25d08b3 23520090107
236 - (djm) [uidswap.c] bz#1412: Support >16 supplemental groups in OS X.
237 Patch based on one from vgiffin AT apple.com; ok dtucker@
b5a1596f 238 - (djm) [channels.c] bz#1419: support "on demand" X11 forwarding via
239 launchd on OS X; patch from vgiffin AT apple.com, slightly tweaked;
240 ok dtucker@
23b3ed0b 241 - (djm) [contrib/ssh-copy-id.1 contrib/ssh-copy-id] bz#1492: Make
242 ssh-copy-id copy id_rsa.pub by default (instead of the legacy "identity"
243 key). Patch from cjwatson AT debian.org
a25d08b3 244
16076ac9 24520090107
246 - (tim) [configure.ac defines.h openbsd-compat/port-uw.c
247 openbsd-compat/xcrypt.c] Add SECUREWARE support to OpenServer 6 SVR5 ABI.
248 OK djm@ dtucker@
44a71983 249 - (tim) [configure.ac] Move check_for_libcrypt_later=1 in *-*-sysv5*) section.
250 OpenServer 6 doesn't need libcrypt.
16076ac9 251
09925c00 25220081209
253 - (djm) OpenBSD CVS Sync
254 - djm@cvs.openbsd.org 2008/12/09 02:38:18
255 [clientloop.c]
256 The ~C escape handler does not work correctly for multiplexed sessions -
257 it opens a commandline on the master session, instead of on the slave
258 that requested it. Disable it on slave sessions until such time as it
259 is fixed; bz#1543 report from Adrian Bridgett via Colin Watson
260 ok markus@
ddb5e00f 261 - djm@cvs.openbsd.org 2008/12/09 02:39:59
262 [sftp.c]
263 Deal correctly with failures in remote stat() operation in sftp,
264 correcting fail-on-error behaviour in batchmode. bz#1541 report and
265 fix from anedvedicky AT gmail.com; ok markus@
bab3d903 266 - djm@cvs.openbsd.org 2008/12/09 02:58:16
267 [readconf.c]
268 don't leave junk (free'd) pointers around in Forward *fwd argument on
269 failure; avoids double-free in ~C -L handler when given an invalid
270 forwarding specification; bz#1539 report from adejong AT debian.org
271 via Colin Watson; ok markus@ dtucker@
83cd8c39 272 - djm@cvs.openbsd.org 2008/12/09 03:02:37
273 [sftp.1 sftp.c]
274 correct sftp(1) and corresponding usage syntax;
275 bz#1518 patch from imorgan AT nas.nasa.gov; ok deraadt@ improved diff jmc@
09925c00 276
53e2660a 27720081208
278 - (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually
279 use some stack in main().
280 Report and suggested fix from vapier AT gentoo.org
66e16767 281 - (djm) OpenBSD CVS Sync
282 - markus@cvs.openbsd.org 2008/12/02 19:01:07
283 [clientloop.c]
284 we have to use the recipient's channel number (RFC 4254) for
285 SSH2_MSG_CHANNEL_SUCCESS/SSH2_MSG_CHANNEL_FAILURE messages,
286 otherwise we trigger 'Non-public channel' error messages on sshd
287 systems with clientkeepalive enabled; noticed by sturm; ok djm;
7ec2b275 288 - markus@cvs.openbsd.org 2008/12/02 19:08:59
289 [serverloop.c]
290 backout 1.149, since it's not necessary and openssh clients send
291 broken CHANNEL_FAILURE/SUCCESS messages since about 2004; ok djm@
b09b559d 292 - markus@cvs.openbsd.org 2008/12/02 19:09:38
293 [channels.c]
294 s/remote_id/id/ to be more consistent with other code; ok djm@
53e2660a 295
de470c82 29620081201
297 - (dtucker) [contrib/cygwin/{Makefile,ssh-host-config}] Add new doc files
298 and tweak the is-sshd-running check in ssh-host-config. Patch from
299 vinschen at redhat com.
66af1c21 300 - (dtucker) OpenBSD CVS Sync
301 - markus@cvs.openbsd.org 2008/11/21 15:47:38
302 [packet.c]
303 packet_disconnect() on padding error, too. should reduce the success
304 probability for the CPNI-957037 Plaintext Recovery Attack to 2^-18
305 ok djm@
8e10da10 306 - dtucker@cvs.openbsd.org 2008/11/30 11:59:26
307 [monitor_fdpass.c]
308 Retry sendmsg/recvmsg on EAGAIN and EINTR; ok djm@
de470c82 309
d2aa725a 31020081123
311 - (dtucker) [monitor_fdpass.c] Reduce diff vs OpenBSD by moving some
312 declarations, removing an unnecessary union member and adding whitespace.
c037a517 313 cmsgbuf.tmp thing spotted by des at des no, ok djm some time ago.
d2aa725a 314
95e16084 31520081118
316 - (tim) [addrmatch.c configure.ac] Some platforms do not have sin6_scope_id
317 member of sockaddr_in6. Also reported in Bug 1491 by David Leonard. OK and
318 feedback by djm@
319
0bd3332c 32020081111
321 - (dtucker) OpenBSD CVS Sync
322 - jmc@cvs.openbsd.org 2008/11/05 11:22:54
323 [servconf.c]
324 passord -> password;
325 fixes user/5975 from Rene Maroufi
1890bf8b 326 - stevesk@cvs.openbsd.org 2008/11/07 00:42:12
327 [ssh-keygen.c]
328 spelling/typo in comment
92d0164c 329 - stevesk@cvs.openbsd.org 2008/11/07 18:50:18
330 [nchan.c]
331 add space to some log/debug messages for readability; ok djm@ markus@
3d7f6c3d 332 - dtucker@cvs.openbsd.org 2008/11/07 23:34:48
333 [auth2-jpake.c]
334 Move JPAKE define to make life easier for portable. ok djm@
94087553 335 - tobias@cvs.openbsd.org 2008/11/09 12:34:47
336 [session.c ssh.1]
337 typo fixed (overriden -> overridden)
338 ok espie, jmc
2505b891 339 - stevesk@cvs.openbsd.org 2008/11/11 02:58:09
340 [servconf.c]
341 USE_AFS not referenced so remove #ifdef. fixes sshd -T not printing
342 kerberosgetafstoken. ok dtucker@
343 (Id sync only, we still want the ifdef in portable)
861e9e53 344 - stevesk@cvs.openbsd.org 2008/11/11 03:55:11
345 [channels.c]
346 for sshd -T print 'permitopen any' vs. 'permitopen' for case of no
347 permitopen's; ok and input dtucker@
0771f5dd 348 - djm@cvs.openbsd.org 2008/11/10 02:06:35
349 [regress/putty-ciphers.sh]
350 PuTTY supports AES CTR modes, so interop test against them too
0bd3332c 351
39aa8698 35220081105
353 - OpenBSD CVS Sync
354 - djm@cvs.openbsd.org 2008/11/03 08:59:41
355 [servconf.c]
356 include MaxSessions in sshd -T output; patch from imorgan AT nas.nasa.gov
a28625a6 357 - djm@cvs.openbsd.org 2008/11/04 07:58:09
358 [auth.c]
359 need unistd.h for close() prototype
360 (ID sync only)
5adf6b9a 361 - djm@cvs.openbsd.org 2008/11/04 08:22:13
362 [auth.h auth2.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h]
363 [readconf.c readconf.h servconf.c servconf.h ssh2.h ssh_config.5]
364 [sshconnect2.c sshd_config.5 jpake.c jpake.h schnorr.c auth2-jpake.c]
365 [Makefile.in]
366 Add support for an experimental zero-knowledge password authentication
367 method using the J-PAKE protocol described in F. Hao, P. Ryan,
368 "Password Authenticated Key Exchange by Juggling", 16th Workshop on
369 Security Protocols, Cambridge, April 2008.
370
371 This method allows password-based authentication without exposing
372 the password to the server. Instead, the client and server exchange
373 cryptographic proofs to demonstrate of knowledge of the password while
374 revealing nothing useful to an attacker or compromised endpoint.
375
376 This is experimental, work-in-progress code and is presently
377 compiled-time disabled (turn on -DJPAKE in Makefile.inc).
378
379 "just commit it. It isn't too intrusive." deraadt@
d35f707e 380 - stevesk@cvs.openbsd.org 2008/11/04 19:18:00
381 [readconf.c]
382 because parse_forward() is now used to parse all forward types (DLR),
383 and it malloc's space for host variables, we don't need to malloc
384 here. fixes small memory leaks.
385
386 previously dynamic forwards were not parsed in parse_forward() and
387 space was not malloc'd in that case.
388
389 ok djm@
10cf2ac3 390 - stevesk@cvs.openbsd.org 2008/11/05 03:23:09
391 [clientloop.c ssh.1]
392 add dynamic forward escape command line; ok djm@
39aa8698 393
94f36816 39420081103
395 - OpenBSD CVS Sync
396 - sthen@cvs.openbsd.org 2008/07/24 23:55:30
397 [ssh-keygen.1]
398 Add "ssh-keygen -F -l" to synopsis (displays fingerprint from
399 known_hosts). ok djm@
400 - grunk@cvs.openbsd.org 2008/07/25 06:56:35
401 [ssh_config]
402 Add VisualHostKey to example file, ok djm@
5ca42ddb 403 - grunk@cvs.openbsd.org 2008/07/25 07:05:16
404 [key.c]
405 In random art visualization, make sure to use the end marker only at the
406 end. Initial diff by Dirk Loss, tweaks and ok djm@
341cb46b 407 - markus@cvs.openbsd.org 2008/07/31 14:48:28
408 [sshconnect2.c]
409 don't allocate space for empty banners; report t8m at centrum.cz;
410 ok deraadt
686bdcbd 411 - krw@cvs.openbsd.org 2008/08/02 04:29:51
412 [ssh_config.5]
413 whitepsace -> whitespace. From Matthew Clarke via bugs@.
e3ef5245 414 - djm@cvs.openbsd.org 2008/08/21 04:09:57
415 [session.c]
416 allow ForceCommand internal-sftp with arguments. based on patch from
417 michael.barabanov AT gmail.com; ok markus@
1975fb98 418 - djm@cvs.openbsd.org 2008/09/06 12:24:13
419 [kex.c]
420 OpenSSL 0.9.8h supplies a real EVP_sha256 so we do not need our
421 replacement anymore
422 (ID sync only for portable - we still need this)
72bd2fca 423 - markus@cvs.openbsd.org 2008/09/11 14:22:37
424 [compat.c compat.h nchan.c ssh.c]
425 only send eow and no-more-sessions requests to openssh 5 and newer;
426 fixes interop problems with broken ssh v2 implementations; ok djm@
2e96832c 427 - millert@cvs.openbsd.org 2008/10/02 14:39:35
428 [session.c]
429 Convert an unchecked strdup to xstrdup. OK deraadt@
dc94d57e 430 - jmc@cvs.openbsd.org 2008/10/03 13:08:12
431 [sshd.8]
432 do not give an example of how to chmod files: we can presume the user
433 knows that. removes an ambiguity in the permission of authorized_keys;
434 ok deraadt
90d5350e 435 - deraadt@cvs.openbsd.org 2008/10/03 23:56:28
436 [sshconnect2.c]
437 Repair strnvis() buffersize of 4*n+1, with termination gauranteed by the
438 function.
439 spotted by des@freebsd, who commited an incorrect fix to the freebsd tree
440 and (as is fairly typical) did not report the problem to us. But this fix
441 is correct.
442 ok djm
bf793210 443 - djm@cvs.openbsd.org 2008/10/08 23:34:03
444 [ssh.1 ssh.c]
445 Add -y option to force logging via syslog rather than stderr.
446 Useful for daemonised ssh connection (ssh -f). Patch originally from
447 and ok'd by markus@
e68868a1 448 - djm@cvs.openbsd.org 2008/10/09 03:50:54
449 [servconf.c sshd_config.5]
450 support setting PermitEmptyPasswords in a Match block
451 requested in PR3891; ok dtucker@
f3a4d0d0 452 - jmc@cvs.openbsd.org 2008/10/09 06:54:22
453 [ssh.c]
454 add -y to usage();
6503dc91 455 - stevesk@cvs.openbsd.org 2008/10/10 04:55:16
456 [scp.c]
457 spelling in comment; ok djm@
260bf88a 458 - stevesk@cvs.openbsd.org 2008/10/10 05:00:12
459 [key.c]
460 typo in error message; ok djm@
96a00a9d 461 - stevesk@cvs.openbsd.org 2008/10/10 16:43:27
462 [ssh_config.5]
463 use 'Privileged ports can be forwarded only when logging in as root on
464 the remote machine.' for RemoteForward just like ssh.1 -R.
465 ok djm@ jmc@
466 - stevesk@cvs.openbsd.org 2008/10/14 18:11:33
467 [sshconnect.c]
468 use #define ROQUIET here; no binary change. ok dtucker@
8d20b087 469 - stevesk@cvs.openbsd.org 2008/10/17 18:36:24
470 [ssh_config.5]
471 correct and clarify VisualHostKey; ok jmc@
25f93f2c 472 - stevesk@cvs.openbsd.org 2008/10/30 19:31:16
473 [clientloop.c sshd.c]
474 don't need to #include "monitor_fdpass.h"
b8974c94 475 - stevesk@cvs.openbsd.org 2008/10/31 15:05:34
476 [dispatch.c]
477 remove unused #define DISPATCH_MIN; ok markus@
e64399cc 478 - djm@cvs.openbsd.org 2008/11/01 04:50:08
479 [sshconnect2.c]
480 sprinkle ARGSUSED on dispatch handlers
481 nuke stale unusued prototype
2ea438c2 482 - stevesk@cvs.openbsd.org 2008/11/01 06:43:33
483 [channels.c]
484 fix some typos in log messages; ok djm@
9995aaa3 485 - sobrado@cvs.openbsd.org 2008/11/01 11:14:36
486 [ssh-keyscan.1 ssh-keyscan.c]
487 the ellipsis is not an optional argument; while here, improve spacing.
30573fea 488 - stevesk@cvs.openbsd.org 2008/11/01 17:40:33
489 [clientloop.c readconf.c readconf.h ssh.c]
490 merge dynamic forward parsing into parse_forward();
491 'i think this is OK' djm@
9bbba34b 492 - stevesk@cvs.openbsd.org 2008/11/02 00:16:16
493 [ttymodes.c]
494 protocol 2 tty modes support is now 7.5 years old so remove these
495 debug3()s; ok deraadt@
b626b7ae 496 - stevesk@cvs.openbsd.org 2008/11/03 01:07:02
497 [readconf.c]
498 remove valueless comment
c8eaf0ec 499 - stevesk@cvs.openbsd.org 2008/11/03 02:44:41
500 [readconf.c]
501 fix comment
fce91335 502 - (djm) [contrib/caldera/ssh-host-keygen contrib/suse/rc.sshd]
503 Make example scripts generate keys with default sizes rather than fixed,
504 non-default 1024 bits; patch from imorgan AT nas.nasa.gov
933e2f91 505 - (djm) [contrib/sshd.pam.generic contrib/caldera/sshd.pam]
506 [contrib/redhat/sshd.pam] Move pam_nologin to account group from
507 incorrect auth group in example files;
508 patch from imorgan AT nas.nasa.gov
94f36816 509
d6339843 51020080906
511 - (dtucker) [config.guess config.sub] Update to latest versions from
512 http://git.savannah.gnu.org/gitweb/ (2008-04-14 and 2008-06-16
513 respectively).
514
974ce4a0 51520080830
516 - (dtucker) [openbsd-compat/bsd-poll.c] correctly check for number of FDs
517 larger than FD_SETSIZE (OpenSSH only ever uses poll with one fd). Patch
518 from Nicholas Marriott.
519
e888d981 52020080721
521 - (djm) OpenBSD CVS Sync
522 - djm@cvs.openbsd.org 2008/07/23 07:36:55
523 [servconf.c]
524 do not try to print options that have been compile-time disabled
525 in config test mode (sshd -T); report from nix-corp AT esperi.org.uk
526 ok dtucker@
cee47c9f 527 - (djm) [servconf.c] Print UsePAM option in config test mode (when it
528 has been compiled in); report from nix-corp AT esperi.org.uk
529 ok dtucker@
e888d981 530
b14e719f 53120080721
532 - (djm) OpenBSD CVS Sync
533 - jmc@cvs.openbsd.org 2008/07/18 22:51:01
534 [sftp-server.8]
535 no need for .Pp before or after .Sh;
f3b93df3 536 - djm@cvs.openbsd.org 2008/07/21 08:19:07
537 [version.h]
538 openssh-5.1
11368183 539 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
540 [contrib/suse/openssh.spec] Update version number in README and RPM specs
55d5db1c 541 - (djm) Release OpenSSH-5.1
b14e719f 542
e5df5ff2 54320080717
544 - (djm) OpenBSD CVS Sync
545 - djm@cvs.openbsd.org 2008/07/17 08:48:00
546 [sshconnect2.c]
547 strnvis preauth banner; pointed out by mpf@ ok markus@
2800468d 548 - djm@cvs.openbsd.org 2008/07/17 08:51:07
549 [auth2-hostbased.c]
550 strip trailing '.' from hostname when HostbasedUsesNameFromPacketOnly=yes
551 report and patch from res AT qoxp.net (bz#1200); ok markus@
d9d96f7a 552 - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Remove long-unneeded compat
553 code, replace with equivalent cygwin library call. Patch from vinschen
3a69fb58 554 at redhat.com, ok djm@.
555 - (djm) [sshconnect2.c] vis.h isn't available everywhere
e5df5ff2 556
b8c9ea19 55720080716
558 - OpenBSD CVS Sync
559 - djm@cvs.openbsd.org 2008/07/15 02:23:14
560 [sftp.1]
561 number of pipelined requests is now 64;
562 prodded by Iain.Morgan AT nasa.gov
dfe666f6 563 - djm@cvs.openbsd.org 2008/07/16 11:51:14
564 [clientloop.c]
565 rename variable first_gc -> last_gc (since it is actually the last
566 in the list).
cdfbc829 567 - djm@cvs.openbsd.org 2008/07/16 11:52:19
568 [channels.c]
569 this loop index should be automatic, not static
b8c9ea19 570
322b3f02 57120080714
572 - (djm) OpenBSD CVS Sync
573 - sthen@cvs.openbsd.org 2008/07/13 21:22:52
574 [ssh-keygen.c]
575 Change "ssh-keygen -F [host] -l" to not display random art unless
576 -v is also specified, making it consistent with the manual and other
577 uses of -l.
578 ok grunk@
9fb764ab 579 - djm@cvs.openbsd.org 2008/07/13 22:13:07
580 [channels.c]
581 use struct sockaddr_storage instead of struct sockaddr for accept(2)
582 address argument. from visibilis AT yahoo.com in bz#1485; ok markus@
873722cc 583 - djm@cvs.openbsd.org 2008/07/13 22:16:03
584 [sftp.c]
585 increase number of piplelined requests so they properly fill the
586 (recently increased) channel window. prompted by rapier AT psc.edu;
587 ok markus@
66fba053 588 - djm@cvs.openbsd.org 2008/07/14 01:55:56
589 [sftp-server.8]
590 mention requirement for /dev/log inside chroot when using sftp-server
591 with ChrootDirectory
6c6bb9a6 592 - (djm) [openbsd-compat/bindresvport.c] Rename variables s/sin/in/ to
593 avoid clash with sin(3) function; reported by
594 cristian.ionescu-idbohrn AT axis.com
7be182d4 595 - (djm) [openbsd-compat/rresvport.c] Add unistd.h for missing close()
596 prototype; reported by cristian.ionescu-idbohrn AT axis.com
6a9c22a5 597 - (djm) [umac.c] Rename variable s/buffer_ptr/bufp/ to avoid clash;
598 reported by cristian.ionescu-idbohrn AT axis.com
7ea1abf7 599 - (djm) [contrib/cygwin/Makefile contrib/cygwin/ssh-host-config]
600 [contrib/cygwin/ssh-user-config contrib/cygwin/sshd-inetd]
601 Revamped and simplified Cygwin ssh-host-config script that uses
602 unified csih configuration tool. Requires recent Cygwin.
603 Patch from vinschen AT redhat.com
322b3f02 604
267d5589 60520080712
606 - (djm) OpenBSD CVS Sync
607 - djm@cvs.openbsd.org 2008/07/12 04:52:50
608 [channels.c]
609 unbreak; move clearing of cctx struct to before first use
610 reported by dkrause@
da9a823d 611 - djm@cvs.openbsd.org 2008/07/12 05:33:41
612 [scp.1]
613 better description for -i flag:
614 s/RSA authentication/public key authentication/
2ade01eb 615 - (djm) [openbsd-compat/fake-rfc2553.c openbsd-compat/fake-rfc2553.h]
616 return EAI_FAMILY when trying to lookup unsupported address family;
617 from vinschen AT redhat.com
267d5589 618
971deff8 61920080711
620 - (djm) OpenBSD CVS Sync
621 - stevesk@cvs.openbsd.org 2008/07/07 00:31:41
622 [ttymodes.c]
623 we don't need arg after the debug3() was removed. from lint.
624 ok djm@
d5b5b8f6 625 - stevesk@cvs.openbsd.org 2008/07/07 23:32:51
626 [key.c]
627 /*NOTREACHED*/ for lint warning:
628 warning: function key_equal falls off bottom without returning value
629 ok djm@
6eb3f18c 630 - markus@cvs.openbsd.org 2008/07/10 18:05:58
631 [channels.c]
632 missing bzero; from mickey; ok djm@
e8e08a80 633 - markus@cvs.openbsd.org 2008/07/10 18:08:11
634 [clientloop.c monitor.c monitor_wrap.c packet.c packet.h sshd.c]
635 sync v1 and v2 traffic accounting; add it to sshd, too;
636 ok djm@, dtucker@
971deff8 637
17969fcc 63820080709
639 - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
b5fc5d94 640 - (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM
641 account check failure path. The vulnerable format buffer is supplied
642 from PAM and should not contain attacker-supplied data.
78cb4705 643 - (djm) [auth.c] Missing unistd.h for close()
b5902374 644 - (djm) [configure.ac] Add -Wformat-security to CFLAGS for gcc 3.x and 4.x
17969fcc 645
3fde0623 64620080705
647 - (djm) [auth.c] Fixed test for locked account on HP/UX with shadowed
648 passwords disabled. bz#1083 report & patch from senthilkumar_sen AT
649 hotpop.com, w/ dtucker@
e8983917 650 - (djm) [atomicio.c configure.ac] Disable poll() fallback in atomiciov for
651 Tru64. readv doesn't seem to be a comparable object there.
652 bz#1386, patch from dtucker@ ok me
b8d635d0 653 - (djm) [Makefile.in] Pass though pass to conch for interop tests
6ed8a3ae 654 - (djm) [configure.ac] unbreak: remove extra closing brace
d38d9a80 655 - (djm) OpenBSD CVS Sync
656 - djm@cvs.openbsd.org 2008/07/04 23:08:25
657 [packet.c]
658 handle EINTR in packet_write_poll()l ok dtucker@
71709bcd 659 - djm@cvs.openbsd.org 2008/07/04 23:30:16
660 [auth1.c auth2.c]
661 Make protocol 1 MaxAuthTries logic match protocol 2's.
662 Do not treat the first protocol 2 authentication attempt as
663 a failure IFF it is for method "none".
664 Makes MaxAuthTries' user-visible behaviour identical for
665 protocol 1 vs 2.
666 ok dtucker@
3086db6e 667 - djm@cvs.openbsd.org 2008/07/05 05:16:01
668 [PROTOCOL]
669 grammar
3fde0623 670
a0d38609 67120080704
672 - (dtucker) OpenBSD CVS Sync
673 - djm@cvs.openbsd.org 2008/07/02 13:30:34
674 [auth2.c]
675 really really remove the freebie "none" auth try for protocol 2
6c777090 676 - djm@cvs.openbsd.org 2008/07/02 13:47:39
677 [ssh.1 ssh.c]
678 When forking after authentication ("ssh -f") with ExitOnForwardFailure
679 enabled, delay the fork until after replies for any -R forwards have
680 been seen. Allows for robust detection of -R forward failure when
681 using -f (similar to bz#92); ok dtucker@
f0b9fde3 682 - otto@cvs.openbsd.org 2008/07/03 21:46:58
683 [auth2-pubkey.c]
684 avoid nasty double free; ok dtucker@ djm@
cece208b 685 - djm@cvs.openbsd.org 2008/07/04 03:44:59
686 [servconf.c groupaccess.h groupaccess.c]
687 support negation of groups in "Match group" block (bz#1315); ok dtucker@
c54d3d1c 688 - dtucker@cvs.openbsd.org 2008/07/04 03:47:02
689 [monitor.c]
690 Make debug a little clearer. ok djm@
c7cbf377 691 - djm@cvs.openbsd.org 2008/06/30 08:07:34
692 [regress/key-options.sh]
693 shell portability: use "=" instead of "==" in test(1) expressions,
694 double-quote string with backslash escaped /
8a972082 695 - djm@cvs.openbsd.org 2008/06/30 10:31:11
696 [regress/{putty-transfer,putty-kex,putty-ciphers}.sh]
697 remove "set -e" left over from debugging
9b0c87d9 698 - djm@cvs.openbsd.org 2008/06/30 10:43:03
699 [regress/conch-ciphers.sh]
700 explicitly disable conch options that could interfere with the test
97e61398 701 - (dtucker) [sftp-server.c] Bug #1447: fall back to racy rename if link
702 returns EXDEV. Patch from Mike Garrison, ok djm@
5a0c8771 703 - (djm) [atomicio.c channels.c clientloop.c defines.h includes.h]
704 [packet.c scp.c serverloop.c sftp-client.c ssh-agent.c ssh-keyscan.c]
705 [sshd.c] Explicitly handle EWOULDBLOCK wherever we handle EAGAIN, on
706 some platforms (HP nonstop) it is a distinct errno;
707 bz#1467 reported by sconeu AT yahoo.com; ok dtucker@
708
8f02e0be 70920080702
710 - (dtucker) OpenBSD CVS Sync
711 - djm@cvs.openbsd.org 2008/06/30 08:05:59
712 [PROTOCOL.agent]
713 typo: s/constraint_date/constraint_data/
fb5582f7 714 - djm@cvs.openbsd.org 2008/06/30 12:15:39
715 [serverloop.c]
716 only pass channel requests on session channels through to the session
717 channel handler, avoiding spurious log messages; ok! markus@
4d92dbc1 718 - djm@cvs.openbsd.org 2008/06/30 12:16:02
719 [nchan.c]
720 only send eow@openssh.com notifications for session channels; ok! markus@
8fb1ddc9 721 - djm@cvs.openbsd.org 2008/06/30 12:18:34
722 [PROTOCOL]
723 clarify that eow@openssh.com is only sent on session channels
979b31ed 724 - dtucker@cvs.openbsd.org 2008/07/01 07:20:52
725 [sshconnect.c]
726 Check ExitOnForwardFailure if forwardings are disabled due to a failed
727 host key check. ok djm@
f9b45eaf 728 - dtucker@cvs.openbsd.org 2008/07/01 07:24:22
729 [sshconnect.c sshd.c]
730 Send CR LF during protocol banner exchanges, but only for Protocol 2 only,
731 in order to comply with RFC 4253. bz #1443, ok djm@
5ebed98d 732 - stevesk@cvs.openbsd.org 2008/07/01 23:12:47
733 [PROTOCOL.agent]
734 fix some typos; ok djm@
39ceddb7 735 - djm@cvs.openbsd.org 2008/07/02 02:24:18
736 [sshd_config sshd_config.5 sshd.8 servconf.c]
737 increase default size of ssh protocol 1 ephemeral key from 768 to 1024
738 bits; prodded by & ok dtucker@ ok deraadt@
f7c2a004 739 - dtucker@cvs.openbsd.org 2008/07/02 12:03:51
740 [auth-rsa.c auth.c auth2-pubkey.c auth.h]
741 Merge duplicate host key file checks, based in part on a patch from Rob
742 Holland via bz #1348 . Also checks for non-regular files during protocol
743 1 RSA auth. ok djm@
221fc73c 744 - djm@cvs.openbsd.org 2008/07/02 12:36:39
745 [auth2-none.c auth2.c]
746 Make protocol 2 MaxAuthTries behaviour a little more sensible:
747 Check whether client has exceeded MaxAuthTries before running
748 an authentication method and skip it if they have, previously it
749 would always allow one try (for "none" auth).
750 Preincrement failure count before post-auth test - previously this
751 checked and postincremented, also to allow one "none" try.
752 Together, these two changes always count the "none" auth method
753 which could be skipped by a malicious client (e.g. an SSH worm)
754 to get an extra attempt at a real auth method. They also make
755 MaxAuthTries=0 a useful way to block users entirely (esp. in a
756 sshd_config Match block).
757 Also, move sending of any preauth banner from "none" auth method
758 to the first call to input_userauth_request(), so worms that skip
759 the "none" method get to see it too.
8f02e0be 760
00b7389d 76120080630
762 - (djm) OpenBSD CVS Sync
763 - dtucker@cvs.openbsd.org 2008/06/10 23:13:43
764 [regress/Makefile regress/key-options.sh]
765 Add regress test for key options. ok djm@
86d745dc 766 - dtucker@cvs.openbsd.org 2008/06/11 23:11:40
014f1b23 767 [regress/Makefile]
86d745dc 768 Don't run cipher-speed test by default; mistakenly enabled by me
014f1b23 769 - djm@cvs.openbsd.org 2008/06/28 13:57:25
770 [regress/Makefile regress/test-exec.sh regress/conch-ciphers.sh]
771 very basic regress test against Twisted Conch in "make interop"
772 target (conch is available in ports/devel/py-twisted/conch);
773 ok markus@
8476b024 774 - (djm) [regress/Makefile] search for conch by path, like we do putty
00b7389d 775
aa47edcc 77620080629
777 - (djm) OpenBSD CVS Sync
778 - martynas@cvs.openbsd.org 2008/06/21 07:46:46
779 [sftp.c]
780 use optopt to get invalid flag, instead of return value of getopt,
781 which is always '?'; ok djm@
ccf0fcb6 782 - otto@cvs.openbsd.org 2008/06/25 11:13:43
783 [key.c]
784 add key length to visual fingerprint; zap magical constants;
785 ok grunk@ djm@
681efe9f 786 - djm@cvs.openbsd.org 2008/06/26 06:10:09
787 [sftp-client.c sftp-server.c]
788 allow the sftp chmod(2)-equivalent operation to set set[ug]id/sticky
789 bits. Note that this only affects explicit setting of modes (e.g. via
790 sftp(1)'s chmod command) and not file transfers. (bz#1310)
791 ok deraadt@ at c2k8
b080d398 792 - djm@cvs.openbsd.org 2008/06/26 09:19:40
793 [dh.c dh.h moduli.c]
794 when loading moduli from /etc/moduli in sshd(8), check that they
795 are of the expected "safe prime" structure and have had
796 appropriate primality tests performed;
797 feedback and ok dtucker@
7b3999b8 798 - grunk@cvs.openbsd.org 2008/06/26 11:46:31
799 [readconf.c readconf.h ssh.1 ssh_config.5 sshconnect.c]
800 Move SSH Fingerprint Visualization away from sharing the config option
801 CheckHostIP to an own config option named VisualHostKey.
802 While there, fix the behaviour that ssh would draw a random art picture
803 on every newly seen host even when the option was not enabled.
804 prodded by deraadt@, discussions,
805 help and ok markus@ djm@ dtucker@
2e8d3306 806 - jmc@cvs.openbsd.org 2008/06/26 21:11:46
807 [ssh.1]
808 add VisualHostKey to the list of options listed in -o;
cda43f66 809 - djm@cvs.openbsd.org 2008/06/28 07:25:07
810 [PROTOCOL]
811 spelling fixes
c525650a 812 - djm@cvs.openbsd.org 2008/06/28 13:58:23
813 [ssh-agent.c]
814 refuse to add a key that has unknown constraints specified;
815 ok markus
9ee2fb0e 816 - djm@cvs.openbsd.org 2008/06/28 14:05:15
817 [ssh-agent.c]
818 reset global compat flag after processing a protocol 2 signature
819 request with the legacy DSA encoding flag set; ok markus
ab3eb078 820 - djm@cvs.openbsd.org 2008/06/28 14:08:30
821 [PROTOCOL PROTOCOL.agent]
822 document the protocol used by ssh-agent; "looks ok" markus@
aa47edcc 823
f6351d4d 82420080628
825 - (djm) [RFC.nroff contrib/cygwin/Makefile contrib/suse/openssh.spec]
826 RFC.nroff lacks a license, remove it (it is long gone in OpenBSD).
827
bd6b3feb 82820080626
829 - (djm) [Makefile.in moduli.5] Include moduli(5) manpage from OpenBSD.
830 (bz#1372)
a32d8b38 831 - (djm) [ contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
832 [contrib/suse/openssh.spec] Include moduli.5 in RPM spec files.
bd6b3feb 833
b3784859 83420080616
835 - (dtucker) OpenBSD CVS Sync
836 - dtucker@cvs.openbsd.org 2008/06/16 13:22:53
837 [session.c channels.c]
838 Rename the isatty argument to is_tty so we don't shadow
839 isatty(3). ok markus@
245f4d36 840 - (dtucker) [channels.c] isatty -> is_tty here too.
b3784859 841
b55b0285 84220080615
843 - (dtucker) [configure.ac] Enable -fno-builtin-memset when using gcc.
081573fe 844 - OpenBSD CVS Sync
845 - dtucker@cvs.openbsd.org 2008/06/14 15:49:48
846 [sshd.c]
847 wrap long line at 80 chars
26512357 848 - dtucker@cvs.openbsd.org 2008/06/14 17:07:11
849 [sshd.c]
850 ensure default umask disallows at least group and world write; ok djm@
2608aa2b 851 - djm@cvs.openbsd.org 2008/06/14 18:33:43
852 [session.c]
853 suppress the warning message from chdir(homedir) failures
854 when chrooted (bz#1461); ok dtucker
49c5f262 855 - dtucker@cvs.openbsd.org 2008/06/14 19:42:10
856 [scp.1]
857 Mention that scp follows symlinks during -r. bz #1466,
858 from nectar at apple
d97287d3 859 - dtucker@cvs.openbsd.org 2008/06/15 16:55:38
860 [sshd_config.5]
861 MaxSessions is allowed in a Match block too
8086aeb2 862 - dtucker@cvs.openbsd.org 2008/06/15 16:58:40
863 [servconf.c sshd_config.5]
864 Allow MaxAuthTries within a Match block. ok djm@
c9478090 865 - djm@cvs.openbsd.org 2008/06/15 20:06:26
866 [channels.c channels.h session.c]
867 don't call isatty() on a pty master, instead pass a flag down to
868 channel_set_fds() indicating that te fds refer to a tty. Fixes a
869 hang on exit on Solaris (bz#1463) in portable but is actually
870 a generic bug; ok dtucker deraadt markus
b55b0285 871
add357c6 87220080614
873 - (djm) [openbsd-compat/sigact.c] Avoid NULL derefs in ancient sigaction
874 replacement code; patch from ighighi AT gmail.com in bz#1240;
875 ok dtucker
876
849d3ceb 87720080613
878 - (dtucker) OpenBSD CVS Sync
879 - deraadt@cvs.openbsd.org 2008/06/13 09:44:36
880 [packet.c]
881 compile on older gcc; no decl after code
52ad6b9a 882 - dtucker@cvs.openbsd.org 2008/06/13 13:56:59
883 [monitor.c]
884 Clear key options in the monitor on failed authentication, prevents
885 applying additional restrictions to non-pubkey authentications in
886 the case where pubkey fails but another method subsequently succeeds.
887 bz #1472, found by Colin Watson, ok markus@ djm@
1d0b7aaa 888 - dtucker@cvs.openbsd.org 2008/06/13 14:18:51
889 [auth2-pubkey.c auth-rhosts.c]
890 Include unistd.h for close(), prevents warnings in -portable
a3f13d60 891 - dtucker@cvs.openbsd.org 2008/06/13 17:21:20
892 [mux.c]
893 Friendlier error messages for mux fallback. ok djm@
a15e7da1 894 - dtucker@cvs.openbsd.org 2008/06/13 18:55:22
895 [scp.c]
896 Prevent -Wsign-compare warnings on LP64 systems. bz #1192, ok deraadt@
990ada29 897 - grunk@cvs.openbsd.org 2008/06/13 20:13:26
898 [ssh.1]
899 Explain the use of SSH fpr visualization using random art, and cite the
900 original scientific paper inspiring that technique.
901 Much help with English and nroff by jmc@, thanks.
596a825b 902 - (dtucker) [configure.ac] Bug #1276: avoid linking against libgssapi, which
903 despite its name doesn't seem to implement all of GSSAPI. Patch from
904 Jan Engelhardt, sanity checked by Simon Wilkinson.
849d3ceb 905
9754b94b 90620080612
907 - (dtucker) OpenBSD CVS Sync
908 - jmc@cvs.openbsd.org 2008/06/11 07:30:37
909 [sshd.8]
910 kill trailing whitespace;
aff73c5f 911 - grunk@cvs.openbsd.org 2008/06/11 21:01:35
912 [ssh_config.5 key.h readconf.c readconf.h ssh-keygen.1 ssh-keygen.c key.c
913 sshconnect.c]
914 Introduce SSH Fingerprint ASCII Visualization, a technique inspired by the
915 graphical hash visualization schemes known as "random art", and by
916 Dan Kaminsky's musings on the subject during a BlackOp talk at the
917 23C3 in Berlin.
918 Scientific publication (original paper):
919 "Hash Visualization: a New Technique to improve Real-World Security",
920 Perrig A. and Song D., 1999, International Workshop on Cryptographic
921 Techniques and E-Commerce (CrypTEC '99)
922 http://sparrow.ece.cmu.edu/~adrian/projects/validation/validation.pdf
923 The algorithm used here is a worm crawling over a discrete plane,
924 leaving a trace (augmenting the field) everywhere it goes.
925 Movement is taken from dgst_raw 2bit-wise. Bumping into walls
926 makes the respective movement vector be ignored for this turn,
927 thus switching to the other color of the chessboard.
928 Graphs are not unambiguous for now, because circles in graphs can be
929 walked in either direction.
930 discussions with several people,
931 help, corrections and ok markus@ djm@
93778882 932 - grunk@cvs.openbsd.org 2008/06/11 21:38:25
933 [ssh-keygen.c]
934 ssh-keygen -lv -f /etc/ssh/ssh_host_rsa_key.pub
935 would not display you the random art as intended, spotted by canacar@
639211b7 936 - grunk@cvs.openbsd.org 2008/06/11 22:20:46
937 [ssh-keygen.c ssh-keygen.1]
938 ssh-keygen would write fingerprints to STDOUT, and random art to STDERR,
939 that is not how it was envisioned.
940 Also correct manpage saying that -v is needed along with -l for it to work.
941 spotted by naddy@
e3115002 942 - otto@cvs.openbsd.org 2008/06/11 23:02:22
943 [key.c]
944 simpler way of computing the augmentations; ok grunk@
fe88400f 945 - grunk@cvs.openbsd.org 2008/06/11 23:03:56
946 [ssh_config.5]
947 CheckHostIP set to ``fingerprint'' will display both hex and random art
948 spotted by naddy@
97841001 949 - grunk@cvs.openbsd.org 2008/06/11 23:51:57
950 [key.c]
951 #define statements that are not atoms need braces around them, else they
952 will cause trouble in some cases.
953 Also do a computation of -1 once, and not in a loop several times.
954 spotted by otto@
e907df41 955 - dtucker@cvs.openbsd.org 2008/06/12 00:03:49
956 [dns.c canohost.c sshconnect.c]
957 Do not pass "0" strings as ports to getaddrinfo because the lookups
958 can slow things down and we never use the service info anyway. bz
959 #859, patch from YOSHIFUJI Hideaki and John Devitofranceschi. ok
960 deraadt@ djm@
961 djm belives that the reason for the "0" strings is to ensure that
962 it's not possible to call getaddrinfo with both host and port being
963 NULL. In the case of canohost.c host is a local array. In the
964 case of sshconnect.c, it's checked for null immediately before use.
965 In dns.c it ultimately comes from ssh.c:main() and is guaranteed to
966 be non-null but it's not obvious, so I added a warning message in
967 case it is ever passed a null.
968 - grunk@cvs.openbsd.org 2008/06/12 00:13:55
969 [sshconnect.c]
970 Make ssh print the random art also when ssh'ing to a host using IP only.
971 spotted by naddy@, ok and help djm@ dtucker@
208cc0ee 972 - otto@cvs.openbsd.org 2008/06/12 00:13:13
973 [key.c]
974 use an odd number of rows and columns and a separate start marker, looks
975 better; ok grunk@
f17f705b 976 - djm@cvs.openbsd.org 2008/06/12 03:40:52
977 [clientloop.h mux.c channels.c clientloop.c channels.h]
978 Enable ~ escapes for multiplex slave sessions; give each channel
979 its own escape state and hook the escape filters up to muxed
980 channels. bz #1331
981 Mux slaves do not currently support the ~^Z and ~& escapes.
982 NB. this change cranks the mux protocol version, so a new ssh
983 mux client will not be able to connect to a running old ssh
984 mux master.
985 ok dtucker@
72becb62 986 - djm@cvs.openbsd.org 2008/06/12 04:06:00
987 [clientloop.h ssh.c clientloop.c]
988 maintain an ordered queue of outstanding global requests that we
989 expect replies to, similar to the per-channel confirmation queue.
990 Use this queue to verify success or failure for remote forward
991 establishment in a race free way.
992 ok dtucker@
344f1d3d 993 - djm@cvs.openbsd.org 2008/06/12 04:17:47
994 [clientloop.c]
995 thall shalt not code past the eightieth column
e8097dc9 996 - djm@cvs.openbsd.org 2008/06/12 04:24:06
997 [ssh.c]
998 thal shalt not code past the eightieth column
9bcf03ce 999 - djm@cvs.openbsd.org 2008/06/12 05:15:41
1000 [PROTOCOL]
1001 document tun@openssh.com forwarding method
aacab402 1002 - djm@cvs.openbsd.org 2008/06/12 05:32:30
1003 [mux.c]
1004 some more TODO for me
2bb50d23 1005 - grunk@cvs.openbsd.org 2008/06/12 05:42:46
1006 [key.c]
1007 supply the key type (rsa1, rsa, dsa) as a caption in the frame of the
1008 random art. while there, stress the fact that the field base should at
1009 least be 8 characters for the pictures to make sense.
1010 comment and ok djm@
1011 - grunk@cvs.openbsd.org 2008/06/12 06:32:59
1012 [key.c]
1013 We already mark the start of the worm, now also mark the end of the worm
1014 in our random art drawings.
1015 ok djm@
e74caf1e 1016 - djm@cvs.openbsd.org 2008/06/12 15:19:17
1017 [clientloop.h channels.h clientloop.c channels.c mux.c]
1018 The multiplexing escape char handler commit last night introduced a
1019 small memory leak per session; plug it.
e9d0b573 1020 - dtucker@cvs.openbsd.org 2008/06/12 16:35:31
1021 [ssh_config.5 ssh.c]
1022 keyword expansion for localcommand. ok djm@
a64f8307 1023 - jmc@cvs.openbsd.org 2008/06/12 19:10:09
1024 [ssh_config.5 ssh-keygen.1]
1025 tweak the ascii art text; ok grunk
bc2d97c8 1026 - dtucker@cvs.openbsd.org 2008/06/12 20:38:28
1027 [sshd.c sshconnect.c packet.h misc.c misc.h packet.c]
1028 Make keepalive timeouts apply while waiting for a packet, particularly
1029 during key renegotiation (bz #1363). With djm and Matt Day, ok djm@
ad39a852 1030 - djm@cvs.openbsd.org 2008/06/12 20:47:04
1031 [sftp-client.c]
1032 print extension revisions for extensions that we understand
07d8d480 1033 - djm@cvs.openbsd.org 2008/06/12 21:06:25
1034 [clientloop.c]
1035 I was coalescing expected global request confirmation replies at
1036 the wrong end of the queue - fix; prompted by markus@
31de76cc 1037 - grunk@cvs.openbsd.org 2008/06/12 21:14:46
1038 [ssh-keygen.c]
1039 make ssh-keygen -lf show the key type just as ssh-add -l would do it
1040 ok djm@ markus@
f97fb6ca 1041 - grunk@cvs.openbsd.org 2008/06/12 22:03:36
1042 [key.c]
1043 add my copyright, ok djm@
6d8216ff 1044 - ian@cvs.openbsd.org 2008/06/12 23:24:58
1045 [sshconnect.c]
1046 tweak wording in message, ok deraadt@ jmc@
2c83cd01 1047 - dtucker@cvs.openbsd.org 2008/06/13 00:12:02
1048 [sftp.h log.h]
1049 replace __dead with __attribute__((noreturn)), makes things
1050 a little easier to port. Also, add it to sigdie(). ok djm@
b97ea6eb 1051 - djm@cvs.openbsd.org 2008/06/13 00:16:49
1052 [mux.c]
1053 fall back to creating a new TCP connection on most multiplexing errors
1054 (socket connect fail, invalid version, refused permittion, corrupted
1055 messages, etc.); bz #1329 ok dtucker@
243cc316 1056 - dtucker@cvs.openbsd.org 2008/06/13 00:47:53
1057 [mux.c]
1058 upcast size_t to u_long to match format arg; ok djm@
041f11dc 1059 - dtucker@cvs.openbsd.org 2008/06/13 00:51:47
1060 [mac.c]
1061 upcast another size_t to u_long to match format
852eb76b 1062 - dtucker@cvs.openbsd.org 2008/06/13 01:38:23
1063 [misc.c]
1064 upcast uid to long with matching %ld, prevents warnings in portable
632f2669 1065 - djm@cvs.openbsd.org 2008/06/13 04:40:22
1066 [auth2-pubkey.c auth-rhosts.c]
1067 refuse to read ~/.shosts or ~/.ssh/authorized_keys that are not
1068 regular files; report from Solar Designer via Colin Watson in bz#1471
1069 ok dtucker@ deraadt
136d0181 1070 - (dtucker) [clientloop.c serverloop.c] channel_register_filter now
1071 takes 2 more args. with djm@
49190c3d 1072 - (dtucker) [defines.h] Bug #1112: __dead is, well dead. Based on a patch
1073 from Todd Vierling.
02e605ed 1074 - (dtucker) [auth-sia.c] Bug #1241: support password expiry on Tru64 SIA
1075 systems. Patch from R. Scott Bailey.
c694c610 1076 - (dtucker) [umac.c] STORE_UINT32_REVERSED and endian_convert are never used
1077 on big endian machines, so ifdef them for little-endian only to prevent
1078 unused function warnings on big-endians.
56f77432 1079 - (dtucker) [openbsd-compat/setenv.c] Make offsets size_t to prevent
1080 compiler warnings on some platforms. Based on a discussion with otto@
9754b94b 1081
554ebbed 108220080611
1083 - (djm) [channels.c configure.ac]
1084 Do not set SO_REUSEADDR on wildcard X11 listeners (X11UseLocalhost=no)
1085 bz#1464; ok dtucker
1086
15b5fa9b 108720080610
1088 - (dtucker) OpenBSD CVS Sync
1089 - djm@cvs.openbsd.org 2008/06/10 03:57:27
1090 [servconf.c match.h sshd_config.5]
1091 support CIDR address matching in sshd_config "Match address" blocks, with
1092 full support for negation and fall-back to classic wildcard matching.
1093 For example:
1094 Match address 192.0.2.0/24,3ffe:ffff::/32,!10.*
1095 PasswordAuthentication yes
1096 addrmatch.c code mostly lifted from flowd's addr.c
1097 feedback and ok dtucker@
8b671558 1098 - djm@cvs.openbsd.org 2008/06/10 04:17:46
1099 [sshd_config.5]
1100 better reference for pattern-list
1760c982 1101 - dtucker@cvs.openbsd.org 2008/06/10 04:50:25
1102 [sshd.c channels.h channels.c log.c servconf.c log.h servconf.h sshd.8]
1103 Add extended test mode (-T) and connection parameters for test mode (-C).
1104 -T causes sshd to write its effective configuration to stdout and exit.
1105 -C causes any relevant Match rules to be applied before output. The
1106 combination allows tesing of the parser and config files. ok deraadt djm
01e9e424 1107 - jmc@cvs.openbsd.org 2008/06/10 07:12:00
1108 [sshd_config.5]
1109 tweak previous;
3b42e3ac 1110 - jmc@cvs.openbsd.org 2008/06/10 08:17:40
1111 [sshd.8 sshd.c]
1112 - update usage()
1113 - fix SYNOPSIS, and sort options
1114 - some minor additional fixes
f0528444 1115 - dtucker@cvs.openbsd.org 2008/06/09 18:06:32
1116 [regress/test-exec.sh]
1117 Don't generate putty keys if we're not going to use them. ok djm
16d46c30 1118 - dtucker@cvs.openbsd.org 2008/06/10 05:23:32
1119 [regress/addrmatch.sh regress/Makefile]
1120 Regress test for Match CIDR rules. ok djm@
94edc013 1121 - dtucker@cvs.openbsd.org 2008/06/10 15:21:41
1122 [test-exec.sh]
1123 Use a more portable construct for checking if we're running a putty test
64c576e9 1124 - dtucker@cvs.openbsd.org 2008/06/10 15:28:49
1125 [test-exec.sh]
1126 Add quotes
f6748d7b 1127 - dtucker@cvs.openbsd.org 2008/06/10 18:21:24
1128 [ssh_config.5]
1129 clarify that Host patterns are space-separated. ok deraadt
3f0444ca 1130 - djm@cvs.openbsd.org 2008/06/10 22:15:23
1131 [PROTOCOL ssh.c serverloop.c]
1132 Add a no-more-sessions@openssh.com global request extension that the
1133 client sends when it knows that it will never request another session
1134 (i.e. when session multiplexing is disabled). This allows a server to
1135 disallow further session requests and terminate the session.
1136 Why would a non-multiplexing client ever issue additional session
1137 requests? It could have been attacked with something like SSH'jack:
1138 http://www.storm.net.nz/projects/7
1139 feedback & ok markus
b3b048d6 1140 - djm@cvs.openbsd.org 2008/06/10 23:06:19
1141 [auth-options.c match.c servconf.c addrmatch.c sshd.8]
1142 support CIDR address matching in .ssh/authorized_keys from="..." stanzas
1143 ok and extensive testing dtucker@
8fb12ef0 1144 - dtucker@cvs.openbsd.org 2008/06/10 23:21:34
1145 [bufaux.c]
1146 Use '\0' for a nul byte rather than unadorned 0. ok djm@
a6d05adf 1147 - dtucker@cvs.openbsd.org 2008/06/10 23:13:43
1148 [Makefile regress/key-options.sh]
1149 Add regress test for key options. ok djm@
edee47f5 1150 - (dtucker) [openbsd-compat/fake-rfc2553.h] Add sin6_scope_id to sockaddr_in6
1151 since the new CIDR code in addmatch.c references it.
1152 - (dtucker) [Makefile.in configure.ac regress/addrmatch.sh] Skip IPv6
1153 specific tests on platforms that don't do IPv6.
8ac1d2eb 1154 - (dtucker) [Makefile.in] Define TEST_SSH_IPV6 in make's arguments as well
1155 as environment.
0694c78f 1156 - (dtucker) [Makefile.in] Move addrmatch.o to libssh.a where it's needed now.
15b5fa9b 1157
10e804f4 115820080609
1159 - (dtucker) OpenBSD CVS Sync
1160 - dtucker@cvs.openbsd.org 2008/06/08 17:04:41
1161 [sftp-server.c]
1162 Add case for ENOSYS in errno_to_portable; ok deraadt
5a3cde15 1163 - dtucker@cvs.openbsd.org 2008/06/08 20:15:29
1164 [sftp.c sftp-client.c sftp-client.h]
1165 Have the sftp client store the statvfs replies in wire format,
1166 which prevents problems when the server's native sizes exceed the
1167 client's.
1168 Also extends the sizes of the remaining 32bit wire format to 64bit,
1169 they're specified as unsigned long in the standard.
7290afcb 1170 - dtucker@cvs.openbsd.org 2008/06/09 13:02:39
2626070f 1171 [sftp-server.c]
7290afcb 1172 Extend 32bit -> 64bit values for statvfs extension missed in previous
1173 commit.
2626070f 1174 - dtucker@cvs.openbsd.org 2008/06/09 13:38:46
1175 [PROTOCOL]
1176 Use a $OpenBSD tag so our scripts will sync changes.
10e804f4 1177
22f5e872 117820080608
1179 - (dtucker) [configure.ac defines.h sftp-client.c sftp-server.c sftp.c
1180 openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h
1181 openbsd-compat/bsd-statvfs.{c,h}] Add a null implementation of statvfs and
1182 fstatvfs and remove #defines around statvfs code. ok djm@
7a4f468b 1183 - (dtucker) [configure.ac defines.h sftp-client.c M sftp-server.c] Add a
1184 macro to convert fsid to unsigned long for platforms where fsid is a
1185 2-member array.
22f5e872 1186
0894bbed 118720080607
1188 - (dtucker) [mux.c] Include paths.h inside ifdef HAVE_PATHS_H.
4538e135 1189 - (dtucker) [configure.ac defines.h sftp-client.c sftp-server.c sftp.c]
1190 Do not enable statvfs extensions on platforms that do not have statvfs.
2abb1ef5 1191 - (dtucker) OpenBSD CVS Sync
1192 - djm@cvs.openbsd.org 2008/05/19 06:14:02
1193 [packet.c] unbreak protocol keepalive timeouts bz#1465; ok dtucker@
82bb6f20 1194 - djm@cvs.openbsd.org 2008/05/19 15:45:07
1195 [sshtty.c ttymodes.c sshpty.h]
1196 Fix sending tty modes when stdin is not a tty (bz#1199). Previously
1197 we would send the modes corresponding to a zeroed struct termios,
1198 whereas we should have been sending an empty list of modes.
1199 Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
048acbeb 1200 - djm@cvs.openbsd.org 2008/05/19 15:46:31
1201 [ssh-keygen.c]
1202 support -l (print fingerprint) in combination with -F (find host) to
1203 search for a host in ~/.ssh/known_hosts and display its fingerprint;
1204 ok markus@
4651c790 1205 - djm@cvs.openbsd.org 2008/05/19 20:53:52
1206 [clientloop.c]
1207 unbreak tree by committing this bit that I missed from:
1208 Fix sending tty modes when stdin is not a tty (bz#1199). Previously
1209 we would send the modes corresponding to a zeroed struct termios,
1210 whereas we should have been sending an empty list of modes.
1211 Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
0894bbed 1212
07e61b8a 121320080604
1214 - (djm) [openbsd-compat/bsd-arc4random.c] Fix math bug that caused bias
1215 in arc4random_uniform with upper_bound in (2^30,2*31). Note that
1216 OpenSSH did not make requests with upper bounds in this range.
1217
b3ef88dc 121820080519
1219 - (djm) [configure.ac mux.c sftp.c openbsd-compat/Makefile.in]
1220 [openbsd-compat/fmt_scaled.c openbsd-compat/openbsd-compat.h]
1221 Fix compilation on Linux, including pulling in fmt_scaled(3)
1222 implementation from OpenBSD's libutil.
1223
9b04dbaa 122420080518
1225 - (djm) OpenBSD CVS Sync
1226 - djm@cvs.openbsd.org 2008/04/04 05:14:38
1227 [sshd_config.5]
1228 ChrootDirectory is supported in Match blocks (in fact, it is most useful
1229 there). Spotted by Minstrel AT minstrel.org.uk
5b76e3ef 1230 - djm@cvs.openbsd.org 2008/04/04 06:44:26
1231 [sshd_config.5]
1232 oops, some unrelated stuff crept into that commit - backout.
1233 spotted by jmc@
ade21243 1234 - djm@cvs.openbsd.org 2008/04/05 02:46:02
1235 [sshd_config.5]
1236 HostbasedAuthentication is supported under Match too
185adaf8 1237 - (djm) [openbsd-compat/bsd-arc4random.c openbsd-compat/openbsd-compat.c]
1238 [configure.ac] Implement arc4random_buf(), import implementation of
1239 arc4random_uniform() from OpenBSD
936e7c8c 1240 - (djm) [openbsd-compat/bsd-arc4random.c] Warning fixes
c49ce62e 1241 - (djm) [openbsd-compat/port-tun.c] needs sys/queue.h
c1d152b8 1242 - (djm) OpenBSD CVS Sync
1243 - djm@cvs.openbsd.org 2008/04/13 00:22:17
1244 [dh.c sshd.c]
1245 Use arc4random_buf() when requesting more than a single word of output
1246 Use arc4random_uniform() when the desired random number upper bound
1247 is not a power of two
1248 ok deraadt@ millert@
360b43ab 1249 - djm@cvs.openbsd.org 2008/04/18 12:32:11
1250 [sftp-client.c sftp-client.h sftp-server.c sftp.1 sftp.c sftp.h]
1251 introduce sftp extension methods statvfs@openssh.com and
1252 fstatvfs@openssh.com that implement statvfs(2)-like operations,
1253 based on a patch from miklos AT szeredi.hu (bz#1399)
1254 also add a "df" command to the sftp client that uses the
1255 statvfs@openssh.com to produce a df(1)-like display of filesystem
1256 space and inode utilisation
1257 ok markus@
ea530517 1258 - jmc@cvs.openbsd.org 2008/04/18 17:15:47
1259 [sftp.1]
1260 macro fixage;
48fbfda0 1261 - djm@cvs.openbsd.org 2008/04/18 22:01:33
1262 [session.c]
1263 remove unneccessary parentheses
0bb7755b 1264 - otto@cvs.openbsd.org 2008/04/29 11:20:31
1265 [monitor_mm.h]
1266 garbage collect two unused fields in struct mm_master; ok markus@
c47ff7a6 1267 - djm@cvs.openbsd.org 2008/04/30 10:14:03
1268 [ssh-keyscan.1 ssh-keyscan.c]
1269 default to rsa (protocol 2) keys, instead of rsa1 keys; spotted by
1270 larsnooden AT openoffice.org
43c3f85c 1271 - pyr@cvs.openbsd.org 2008/05/07 05:49:37
1272 [servconf.c servconf.h session.c sshd_config.5]
1273 Enable the AllowAgentForwarding option in sshd_config (global and match
1274 context), to specify if agents should be permitted on the server.
1275 As the man page states:
1276 ``Note that disabling Agent forwarding does not improve security
1277 unless users are also denied shell access, as they can always install
1278 their own forwarders.''
1279 ok djm@, ok and a mild frown markus@
5c7e2b47 1280 - pyr@cvs.openbsd.org 2008/05/07 06:43:35
1281 [sshd_config]
1282 push the sshd_config bits in, spotted by ajacoutot@
94569631 1283 - jmc@cvs.openbsd.org 2008/05/07 08:00:14
1284 [sshd_config.5]
1285 sort;
17f02f0a 1286 - markus@cvs.openbsd.org 2008/05/08 06:59:01
1287 [bufaux.c buffer.h channels.c packet.c packet.h]
1288 avoid extra malloc/copy/free when receiving data over the net;
1289 ~10% speedup for localhost-scp; ok djm@
3593bdc0 1290 - djm@cvs.openbsd.org 2008/05/08 12:02:23
1291 [auth-options.c auth1.c channels.c channels.h clientloop.c gss-serv.c]
1292 [monitor.c monitor_wrap.c nchan.c servconf.c serverloop.c session.c]
1293 [ssh.c sshd.c]
1294 Implement a channel success/failure status confirmation callback
1295 mechanism. Each channel maintains a queue of callbacks, which will
1296 be drained in order (RFC4253 guarantees confirm messages are not
1297 reordered within an channel).
1298 Also includes a abandonment callback to clean up if a channel is
1299 closed without sending confirmation messages. This probably
1300 shouldn't happen in compliant implementations, but it could be
1301 abused to leak memory.
1302 ok markus@ (as part of a larger diff)
c6dca55e 1303 - djm@cvs.openbsd.org 2008/05/08 12:21:16
1304 [monitor.c monitor_wrap.c session.h servconf.c servconf.h session.c]
1305 [sshd_config sshd_config.5]
1306 Make the maximum number of sessions run-time controllable via
1307 a sshd_config MaxSessions knob. This is useful for disabling
1308 login/shell/subsystem access while leaving port-forwarding working
1309 (MaxSessions 0), disabling connection multiplexing (MaxSessions 1) or
1310 simply increasing the number of allows multiplexed sessions.
1311 Because some bozos are sure to configure MaxSessions in excess of the
1312 number of available file descriptors in sshd (which, at peak, might be
1313 as many as 9*MaxSessions), audit sshd to ensure that it doesn't leak fds
1314 on error paths, and make it fail gracefully on out-of-fd conditions -
1315 sending channel errors instead of than exiting with fatal().
1316 bz#1090; MaxSessions config bits and manpage from junyer AT gmail.com
1317 ok markus@
95d3c124 1318 - djm@cvs.openbsd.org 2008/05/08 13:06:11
1319 [clientloop.c clientloop.h ssh.c]
1320 Use new channel status confirmation callback system to properly deal
1321 with "important" channel requests that fail, in particular command exec,
1322 shell and subsystem requests. Previously we would optimistically assume
1323 that the requests would always succeed, which could cause hangs if they
1324 did not (e.g. when the server runs out of fds) or were unimplemented by
1325 the server (bz #1384)
1326 Also, properly report failing multiplex channel requests via the mux
1327 client stderr (subject to LogLevel in the mux master) - better than
1328 silently failing.
1329 most bits ok markus@ (as part of a larger diff)
e07e21ad 1330 - djm@cvs.openbsd.org 2008/05/09 04:55:56
1331 [channels.c channels.h clientloop.c serverloop.c]
1332 Try additional addresses when connecting to a port forward destination
1333 whose DNS name resolves to more than one address. The previous behaviour
1334 was to try the first address and give up.
1335 Reported by stig AT venaas.com in bz#343
1336 great feedback and ok markus@
3bcced4c 1337 - djm@cvs.openbsd.org 2008/05/09 14:18:44
1338 [clientloop.c clientloop.h ssh.c mux.c]
1339 tidy up session multiplexing code, moving it into its own file and
1340 making the function names more consistent - making ssh.c and
1341 clientloop.c a fair bit more readable.
1342 ok markus@
6cd3e678 1343 - djm@cvs.openbsd.org 2008/05/09 14:26:08
1344 [ssh.c]
1345 dingo stole my diff hunk
ee7c3e92 1346 - markus@cvs.openbsd.org 2008/05/09 16:16:06
1347 [session.c]
1348 re-add the USE_PIPES code and enable it.
1349 without pipes shutdown-read from the sshd does not trigger
1350 a SIGPIPE when the forked program does a write.
1351 ok djm@
1352 (Id sync only, USE_PIPES never left portable OpenSSH)
271f4a13 1353 - markus@cvs.openbsd.org 2008/05/09 16:17:51
1354 [channels.c]
1355 error-fd race: don't enable the error fd in the select bitmask
1356 for channels with both in- and output closed, since the channel
1357 will go away before we call select();
1358 report, lots of debugging help and ok djm@
50c96367 1359 - markus@cvs.openbsd.org 2008/05/09 16:21:13
1360 [channels.h clientloop.c nchan.c serverloop.c]
1361 unbreak
1362 ssh -2 localhost od /bin/ls | true
1363 ignoring SIGPIPE by adding a new channel message (EOW) that signals
1364 the peer that we're not interested in any data it might send.
1365 fixes bz #85; discussion, debugging and ok djm@
d5820099 1366 - pvalchev@cvs.openbsd.org 2008/05/12 20:52:20
1367 [umac.c]
1368 Ensure nh_result lies on a 64-bit boundary (fixes warnings observed
1369 on Itanium on Linux); from Dale Talcott (bug #1462); ok djm@
56b12440 1370 - djm@cvs.openbsd.org 2008/05/15 23:52:24
1371 [nchan2.ms]
1372 document eow message in ssh protocol 2 channel state machine;
1373 feedback and ok markus@
f8db3345 1374 - djm@cvs.openbsd.org 2008/05/18 21:29:05
1375 [sftp-server.c]
1376 comment extension announcement
8be03682 1377 - djm@cvs.openbsd.org 2008/05/16 08:30:42
1378 [PROTOCOL]
1379 document our protocol extensions and deviations; ok markus@
1380 - djm@cvs.openbsd.org 2008/05/17 01:31:56
1381 [PROTOCOL]
1382 grammar and correctness fixes from stevesk@
9b04dbaa 1383
490c3105 138420080403
1385 - (djm) [openbsd-compat/bsd-poll.c] Include stdlib.h to avoid compile-
1386 time warnings on LynxOS. Patch from ops AT iki.fi
1ebb73e4 1387 - (djm) Force string arguments to replacement setproctitle() though
1388 strnvis first. Ok dtucker@
490c3105 1389
2b363e83 139020080403
1391 - (djm) OpenBSD CVS sync:
1392 - markus@cvs.openbsd.org 2008/04/02 15:36:51
1393 [channels.c]
1394 avoid possible hijacking of x11-forwarded connections (back out 1.183)
1395 CVE-2008-1483; ok djm@
adb7acbc 1396 - jmc@cvs.openbsd.org 2008/03/27 22:37:57
1397 [sshd.8]
1398 remove trailing whitespace;
53e0dc70 1399 - djm@cvs.openbsd.org 2008/04/03 09:50:14
1400 [version.h]
1401 openssh-5.0
31b1b2c8 1402 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1403 [contrib/suse/openssh.spec] Crank version numbers in RPM spec files
dd052df9 1404 - (djm) [README] Update link to release notes
098ebea7 1405 - (djm) Release 5.0p1
This page took 4.485005 seconds and 5 git commands to generate.