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