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