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