blob: d13a23fd1be68eef1a2af038e13e805c46a5b4ca [file] [log] [blame]
Damien Miller04be8b92013-08-28 12:49:43 +1000120130828
2 - (djm) [openbsd-compat/bsd-snprintf.c] teach our local snprintf code the
3 'j' (intmax_t/uintmax_t) and 'z' (size_t/ssize_t) conversions in case we
4 start to use them in the future.
Damien Miller43968a82013-08-28 14:00:54 +10005 - (djm) [openbsd-compat/bsd-snprintf.c] #ifdef noytet for intmax_t bits
6 until we have configure support.
Damien Miller04be8b92013-08-28 12:49:43 +10007
Damien Miller02e87802013-08-21 02:38:51 +1000820130821
9 - (djm) OpenBSD CVS Sync
10 - djm@cvs.openbsd.org 2013/08/06 23:03:49
11 [sftp.c]
12 fix some whitespace at EOL
13 make list of commands an enum rather than a long list of defines
14 add -a to usage()
Damien Millereec84062013-08-21 02:39:39 +100015 - djm@cvs.openbsd.org 2013/08/06 23:05:01
16 [sftp.1]
17 document top-level -a option (the -a option to 'get' was already
18 documented)
Damien Millera6d6c1f2013-08-21 02:40:01 +100019 - djm@cvs.openbsd.org 2013/08/06 23:06:01
20 [servconf.c]
21 add cast to avoid format warning; from portable
Damien Millerc6895c52013-08-21 02:40:21 +100022 - jmc@cvs.openbsd.org 2013/08/07 06:24:51
23 [sftp.1 sftp.c]
24 sort -a;
Damien Miller034f27a2013-08-21 02:40:44 +100025 - djm@cvs.openbsd.org 2013/08/08 04:52:04
26 [sftp.c]
27 fix two year old regression: symlinking a file would incorrectly
28 canonicalise the target path. bz#2129 report from delphij AT freebsd.org
Damien Millerc7dba122013-08-21 02:41:15 +100029 - djm@cvs.openbsd.org 2013/08/08 05:04:03
30 [sftp-client.c sftp-client.h sftp.c]
31 add a "-l" flag for the rename command to force it to use the silly
32 standard SSH_FXP_RENAME command instead of the POSIX-rename- like
33 posix-rename@openssh.com extension.
Damien Miller02e87802013-08-21 02:38:51 +100034
Damien Millerc7dba122013-08-21 02:41:15 +100035 intended for use in regress tests, so no documentation.
Damien Miller036d3072013-08-21 02:41:46 +100036 - djm@cvs.openbsd.org 2013/08/09 03:37:25
37 [sftp.c]
38 do getopt parsing for all sftp commands (with an empty optstring for
39 commands without arguments) to ensure consistent behaviour
Damien Millerfec029f2013-08-21 02:42:12 +100040 - djm@cvs.openbsd.org 2013/08/09 03:39:13
41 [sftp-client.c]
42 two problems found by a to-be-committed regress test: 1) msg_id was not
43 being initialised so was starting at a random value from the heap
44 (harmless, but confusing). 2) some error conditions were not being
45 propagated back to the caller
Damien Millere0ee7272013-08-21 02:42:35 +100046 - djm@cvs.openbsd.org 2013/08/09 03:56:42
47 [sftp.c]
48 enable ctrl-left-arrow and ctrl-right-arrow to move forward/back a word;
49 matching ksh's relatively recent change.
Damien Millerd234afb2013-08-21 02:42:58 +100050 - djm@cvs.openbsd.org 2013/08/13 18:32:08
51 [ssh-keygen.c]
52 typo in error message; from Stephan Rickauer
Damien Millerd5d9d7b2013-08-21 02:43:27 +100053 - djm@cvs.openbsd.org 2013/08/13 18:33:08
54 [ssh-keygen.c]
55 another of the same typo
Damien Millerb7727df2013-08-21 02:43:49 +100056 - jmc@cvs.openbsd.org 2013/08/14 08:39:27
57 [scp.1 ssh.1]
58 some Bx/Ox conversion;
59 From: Jan Stary
Damien Miller1262b662013-08-21 02:44:24 +100060 - djm@cvs.openbsd.org 2013/08/20 00:11:38
61 [readconf.c readconf.h ssh_config.5 sshconnect.c]
62 Add a ssh_config ProxyUseFDPass option that supports the use of
63 ProxyCommands that establish a connection and then pass a connected
64 file descriptor back to ssh(1). This allows the ProxyCommand to exit
65 rather than have to shuffle data back and forth and enables ssh to use
66 getpeername, etc. to obtain address information just like it does with
67 regular directly-connected sockets. ok markus@
Damien Millerf2f6c312013-08-21 02:44:58 +100068 - jmc@cvs.openbsd.org 2013/08/20 06:56:07
69 [ssh.1 ssh_config.5]
70 some proxyusefdpass tweaks;
Damien Miller036d3072013-08-21 02:41:46 +100071
Darren Tuckera5a3cbf2013-08-08 10:58:49 +10007220130808
73 - (dtucker) [regress/Makefile regress/test-exec.sh] Don't try to use test -nt
74 since some platforms (eg really old FreeBSD) don't have it. Instead,
75 run "make clean" before a complete regress run. ok djm.
Darren Tucker94396b72013-08-08 11:52:37 +100076 - (dtucker) [misc.c] Fall back to time(2) at runtime if clock_gettime(
77 CLOCK_MONOTONIC...) fails. Some older versions of RHEL have the
78 CLOCK_MONOTONIC define but don't actually support it. Found and tested
79 by Kevin Brott, ok djm.
Darren Tucker9542de42013-08-08 12:50:06 +100080 - (dtucker) [misc.c] Remove define added for fallback testing that was
81 mistakenly included in the previous commit.
Darren Tuckeracd20602013-08-08 17:02:12 +100082 - (dtucker) [regress/Makefile regress/test-exec.sh] Roll back the -nt
83 removal. The "make clean" removes modpipe which is built by the top-level
84 directory before running the tests. Spotted by tim@
Damien Millered4af412013-09-14 09:40:51 +100085 - (djm) Release 6.3p1
Darren Tuckera5a3cbf2013-08-08 10:58:49 +100086
Darren Tuckerf3ab2c52013-08-04 21:48:41 +10008720130804
88 - (dtucker) [auth-krb5.c configure.ac openbsd-compat/bsd-misc.h] Add support
89 for building with older Heimdal versions. ok djm.
90
Damien Millerc192a4c2013-08-01 14:29:20 +10009120130801
92 - (djm) [channels.c channels.h] bz#2135: On Solaris, isatty() on a non-
93 blocking connecting socket will clear any stored errno that might
94 otherwise have been retrievable via getsockopt(). A hack to limit writes
95 to TTYs on AIX was triggering this. Since only AIX needs the hack, wrap
96 it in an #ifdef. Diagnosis and patch from Ivo Raisr.
Damien Millerab3575c2013-08-01 14:34:16 +100097 - (djm) [sshlogin.h] Fix prototype merge botch from 2006; bz#2134
Damien Millerc192a4c2013-08-01 14:29:20 +100098
Damien Millerc8669a82013-07-25 11:52:48 +10009920130725
100 - (djm) OpenBSD CVS Sync
101 - djm@cvs.openbsd.org 2013/07/20 22:20:42
102 [krl.c]
103 fix verification error in (as-yet usused) KRL signature checking path
Damien Millerc331dbd2013-07-25 11:55:20 +1000104 - djm@cvs.openbsd.org 2013/07/22 05:00:17
105 [umac.c]
106 make MAC key, data to be hashed and nonce for final hash const;
107 checked with -Wcast-qual
Damien Miller94c9cd32013-07-25 11:55:39 +1000108 - djm@cvs.openbsd.org 2013/07/22 12:20:02
109 [umac.h]
110 oops, forgot to commit corresponding header change;
111 spotted by jsg and jasper
Damien Miller98e27dc2013-07-25 11:55:52 +1000112 - djm@cvs.openbsd.org 2013/07/25 00:29:10
113 [ssh.c]
114 daemonise backgrounded (ControlPersist'ed) multiplexing master to ensure
115 it is fully detached from its controlling terminal. based on debugging
Damien Miller0d032412013-07-25 11:56:52 +1000116 - djm@cvs.openbsd.org 2013/07/25 00:56:52
117 [sftp-client.c sftp-client.h sftp.1 sftp.c]
118 sftp support for resuming partial downloads; patch mostly by Loganaden
119 Velvindron/AfriNIC with some tweaks by me; feedback and ok dtucker@
Damien Miller53435b22013-07-25 11:57:15 +1000120 "Just be careful" deraadt@
121 - djm@cvs.openbsd.org 2013/07/25 00:57:37
122 [version.h]
123 openssh-6.3 for release
Damien Millerfea44062013-07-25 12:08:07 +1000124 - dtucker@cvs.openbsd.org 2013/05/30 20:12:32
125 [regress/test-exec.sh]
126 use ssh and sshd as testdata since it needs to be >256k for the rekey test
Damien Miller78d47b72013-07-25 12:08:46 +1000127 - dtucker@cvs.openbsd.org 2013/06/10 21:56:43
128 [regress/forwarding.sh]
129 Add test for forward config parsing
Damien Millerd1e26cf2013-07-25 12:11:18 +1000130 - djm@cvs.openbsd.org 2013/06/21 02:26:26
131 [regress/sftp-cmds.sh regress/test-exec.sh]
132 unbreak sftp-cmds for renamed test data (s/ls/data/)
Tim Riceed899eb2013-07-25 15:40:00 -0700133 - (tim) [sftp-client.c] Use of a gcc extension trips up native compilers on
134 Solaris and UnixWare. Feedback and OK djm@
Tim Rice81f7cf12013-07-25 18:41:40 -0700135 - (tim) [regress/forwarding.sh] Fix for building outside source tree.
Damien Millerc8669a82013-07-25 11:52:48 +1000136
Damien Miller85b45e02013-07-20 13:21:52 +100013720130720
138 - (djm) OpenBSD CVS Sync
139 - markus@cvs.openbsd.org 2013/07/19 07:37:48
140 [auth.h kex.h kexdhs.c kexecdhs.c kexgexs.c monitor.c servconf.c]
141 [servconf.h session.c sshd.c sshd_config.5]
142 add ssh-agent(1) support to sshd(8); allows encrypted hostkeys,
143 or hostkeys on smartcards; most of the work by Zev Weiss; bz #1974
144 ok djm@
Damien Miller32ecfa02013-07-20 13:22:13 +1000145 - djm@cvs.openbsd.org 2013/07/20 01:43:46
146 [umac.c]
147 use a union to ensure correct alignment; ok deraadt
Damien Miller3009d3c2013-07-20 13:22:31 +1000148 - djm@cvs.openbsd.org 2013/07/20 01:44:37
149 [ssh-keygen.c ssh.c]
150 More useful error message on missing current user in /etc/passwd
Damien Miller1f0e86f2013-07-20 13:22:49 +1000151 - djm@cvs.openbsd.org 2013/07/20 01:50:20
152 [ssh-agent.c]
153 call cleanup_handler on SIGINT when in debug mode to ensure sockets
154 are cleaned up on manual exit; bz#2120
Damien Miller63ddc892013-07-20 13:35:45 +1000155 - djm@cvs.openbsd.org 2013/07/20 01:55:13
156 [auth-krb5.c gss-serv-krb5.c gss-serv.c]
157 fix kerberos/GSSAPI deprecation warnings and linking; "looks okay" millert@
Damien Miller85b45e02013-07-20 13:21:52 +1000158
Damien Miller9a661552013-07-18 16:09:04 +100015920130718
160 - (djm) OpenBSD CVS Sync
161 - dtucker@cvs.openbsd.org 2013/06/10 19:19:44
162 [readconf.c]
163 revert 1.203 while we investigate crashes reported by okan@
Damien Miller044bd2a2013-07-18 16:09:25 +1000164 - guenther@cvs.openbsd.org 2013/06/17 04:48:42
165 [scp.c]
166 Handle time_t values as long long's when formatting them and when
167 parsing them from remote servers.
168 Improve error checking in parsing of 'T' lines.
169 ok dtucker@ deraadt@
Damien Miller30710702013-07-18 16:09:44 +1000170 - markus@cvs.openbsd.org 2013/06/20 19:15:06
171 [krl.c]
172 don't leak the rdata blob on errors; ok djm@
Damien Miller20bdcd72013-07-18 16:10:09 +1000173 - djm@cvs.openbsd.org 2013/06/21 00:34:49
174 [auth-rsa.c auth.h auth2-hostbased.c auth2-pubkey.c monitor.c]
175 for hostbased authentication, print the client host and user on
176 the auth success/failure line; bz#2064, ok dtucker@
Damien Miller7f2b4382013-07-18 16:10:29 +1000177 - djm@cvs.openbsd.org 2013/06/21 00:37:49
178 [ssh_config.5]
179 explicitly mention that IdentitiesOnly can be used with IdentityFile
180 to control which keys are offered from an agent.
Damien Millerbbeb1da2013-07-18 16:10:49 +1000181 - djm@cvs.openbsd.org 2013/06/21 05:42:32
182 [dh.c]
183 sprinkle in some error() to explain moduli(5) parse failures
Damien Miller81584412013-07-18 16:11:07 +1000184 - djm@cvs.openbsd.org 2013/06/21 05:43:10
185 [scp.c]
186 make this -Wsign-compare clean after time_t conversion
Damien Millerbc35d922013-07-18 16:11:25 +1000187 - djm@cvs.openbsd.org 2013/06/22 06:31:57
188 [scp.c]
189 improved time_t overflow check suggested by guenther@
Damien Millerfecfd112013-07-18 16:11:50 +1000190 - jmc@cvs.openbsd.org 2013/06/27 14:05:37
191 [ssh-keygen.1 ssh.1 ssh_config.5 sshd.8 sshd_config.5]
192 do not use Sx for sections outwith the man page - ingo informs me that
193 stuff like html will render with broken links;
194 issue reported by Eric S. Raymond, via djm
Damien Miller0d02c3e2013-07-18 16:12:06 +1000195 - markus@cvs.openbsd.org 2013/07/02 12:31:43
196 [dh.c]
197 remove extra whitespace
Damien Millerce986542013-07-18 16:12:44 +1000198 - djm@cvs.openbsd.org 2013/07/12 00:19:59
199 [auth-options.c auth-rsa.c bufaux.c buffer.h channels.c hostfile.c]
200 [hostfile.h mux.c packet.c packet.h roaming_common.c serverloop.c]
201 fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@
Damien Miller746d1a62013-07-18 16:13:02 +1000202 - djm@cvs.openbsd.org 2013/07/12 00:20:00
203 [sftp.c ssh-keygen.c ssh-pkcs11.c]
204 fix pointer-signedness warnings from clang/llvm-3.3; "seems nice" deraadt@
Damien Miller7313fc92013-07-18 16:13:19 +1000205 - djm@cvs.openbsd.org 2013/07/12 00:43:50
206 [misc.c]
207 in ssh_gai_strerror() don't fallback to strerror for EAI_SYSTEM when
208 errno == 0. Avoids confusing error message in some broken resolver
209 cases. bz#2122 patch from plautrba AT redhat.com; ok dtucker
Damien Miller5bb88332013-07-18 16:13:37 +1000210 - djm@cvs.openbsd.org 2013/07/12 05:42:03
211 [ssh-keygen.c]
212 do_print_resource_record() can never be called with a NULL filename, so
213 don't attempt (and bungle) asking for one if it has not been specified
214 bz#2127 ok dtucker@
Damien Miller649fe022013-07-18 16:13:55 +1000215 - djm@cvs.openbsd.org 2013/07/12 05:48:55
216 [ssh.c]
217 set TCP nodelay for connections started with -N; bz#2124 ok dtucker@
Damien Millerbf836e52013-07-18 16:14:13 +1000218 - schwarze@cvs.openbsd.org 2013/07/16 00:07:52
219 [scp.1 sftp-server.8 ssh-keyscan.1 ssh-keysign.8 ssh-pkcs11-helper.8]
220 use .Mt for email addresses; from Jan Stary <hans at stare dot cz>; ok jmc@
Damien Millerd93340c2013-07-18 16:14:34 +1000221 - djm@cvs.openbsd.org 2013/07/18 01:12:26
222 [ssh.1]
223 be more exact wrt perms for ~/.ssh/config; bz#2078
Damien Miller9a661552013-07-18 16:09:04 +1000224
Darren Tuckerb7482cf2013-07-02 20:06:46 +100022520130702
226 - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config
227 contrib/cygwin/ssh-user-config] Modernizes and improve readability of
228 the Cygwin README file (which hasn't been updated for ages), drop
229 unsupported OSes from the ssh-host-config help text, and drop an
230 unneeded option from ssh-user-config. Patch from vinschen at redhat com.
231
Damien Miller36187092013-06-10 13:07:11 +100023220130610
233 - (djm) OpenBSD CVS Sync
234 - dtucker@cvs.openbsd.org 2013/06/07 15:37:52
235 [channels.c channels.h clientloop.c]
236 Add an "ABANDONED" channel state and use for mux sessions that are
237 disconnected via the ~. escape sequence. Channels in this state will
238 be able to close if the server responds, but do not count as active channels.
239 This means that if you ~. all of the mux clients when using ControlPersist
240 on a broken network, the backgrounded mux master will exit when the
241 Control Persist time expires rather than hanging around indefinitely.
242 bz#1917, also reported and tested by tedu@. ok djm@ markus@.
Darren Tucker6d8bd572013-06-11 11:26:10 +1000243 - (dtucker) [Makefile.in configure.ac fixalgorithms] Remove unsupported
244 algorithms (Ciphers, MACs and HostKeyAlgorithms) from man pages.
Darren Tucker97b62f42013-06-11 11:47:24 +1000245 - (dtucker) [myproposal.h] Do not advertise AES GSM ciphers if we don't have
246 the required OpenSSL support. Patch from naddy at freebsd.
Darren Tuckerb8ae92d2013-06-11 12:10:02 +1000247 - (dtucker) [myproposal.h] Make the conditional algorithm support consistent
248 and add some comments so it's clear what goes where.
Damien Miller36187092013-06-10 13:07:11 +1000249
Darren Tucker2ea9eb72013-06-05 15:04:00 +100025020130605
Darren Tuckerb4e00942013-06-05 22:48:44 +1000251 - (dtucker) [myproposal.h] Enable sha256 kex methods based on the presence of
252 the necessary functions, not from the openssl version.
253 - (dtucker) [contrib/ssh-copy-id] bz#2117: Use portable operator in test.
254 Patch from cjwatson at debian.
Darren Tucker2a228732013-06-06 01:59:13 +1000255 - (dtucker) [regress/forwarding.sh] For (as yet unknown) reason, the
256 forwarding test is extremely slow copying data on some machines so switch
257 back to copying the much smaller ls binary until we can figure out why
258 this is.
Darren Tuckerdc62edb2013-06-06 05:12:35 +1000259 - (dtucker) [Makefile.in] append $CFLAGS to compiler options when building
260 modpipe in case there's anything in there we need.
Darren Tucker5d12b8f2013-06-06 08:09:10 +1000261 - (dtucker) OpenBSD CVS Sync
262 - dtucker@cvs.openbsd.org 2013/06/02 21:01:51
263 [channels.h]
264 typo in comment
Darren Tuckerea8342c2013-06-06 08:11:40 +1000265 - dtucker@cvs.openbsd.org 2013/06/02 23:36:29
266 [clientloop.h clientloop.c mux.c]
267 No need for the mux cleanup callback to be visible so restore it to static
268 and call it through the detach_user function pointer. ok djm@
Darren Tucker4ac66af2013-06-06 08:12:37 +1000269 - dtucker@cvs.openbsd.org 2013/06/03 00:03:18
270 [mac.c]
271 force the MAC output to be 64-bit aligned so umac won't see unaligned
272 accesses on strict-alignment architectures. bz#2101, patch from
273 tomas.kuthan at oracle.com, ok djm@
Darren Tucker194454d2013-06-06 08:16:04 +1000274 - dtucker@cvs.openbsd.org 2013/06/04 19:12:23
275 [scp.c]
276 use MAXPATHLEN for buffer size instead of fixed value. ok markus
Darren Tuckerea647212013-06-06 08:19:09 +1000277 - dtucker@cvs.openbsd.org 2013/06/04 20:42:36
278 [sftp.c]
279 Make sftp's libedit interface marginally multibyte aware by building up
280 the quoted string by character instead of by byte. Prevents failures
281 when linked against a libedit built with wide character support (bz#1990).
282 "looks ok" djm
Darren Tucker746e9062013-06-06 08:20:13 +1000283 - dtucker@cvs.openbsd.org 2013/06/05 02:07:29
284 [mux.c]
285 fix leaks in mux error paths, from Zhenbo Xu, found by Melton. bz#1967,
286 ok djm
Darren Tucker0cca17f2013-06-06 08:21:14 +1000287 - dtucker@cvs.openbsd.org 2013/06/05 02:27:50
288 [sshd.c]
289 When running sshd -D, close stderr unless we have explicitly requesting
290 logging to stderr. From james.hunt at ubuntu.com via bz#1976, djm's patch
291 so, err, ok dtucker.
Darren Tuckere52a2602013-06-06 08:22:05 +1000292 - dtucker@cvs.openbsd.org 2013/06/05 12:52:38
293 [sshconnect2.c]
294 Fix memory leaks found by Zhenbo Xu and the Melton tool. bz#1967, ok djm
Darren Tucker408eaf32013-06-06 08:22:46 +1000295 - dtucker@cvs.openbsd.org 2013/06/05 22:00:28
296 [readconf.c]
297 plug another memleak. bz#1967, from Zhenbo Xu, detected by Melton, ok djm
Darren Tuckerae133d42013-06-06 08:30:20 +1000298 - (dtucker) [configure.ac sftp.c openbsd-compat/openbsd-compat.h] Cater for
299 platforms that don't have multibyte character support (specifically,
300 mblen).
Darren Tucker2ea9eb72013-06-05 15:04:00 +1000301
Tim Rice86211d12013-06-01 18:38:23 -070030220130602
303 - (tim) [Makefile.in] Make Solaris, UnixWare, & OpenServer linkers happy
304 linking regress/modpipe.
Darren Tucker00e1abb2013-06-02 23:46:24 +1000305 - (dtucker) OpenBSD CVS Sync
306 - dtucker@cvs.openbsd.org 2013/06/02 13:33:05
307 [progressmeter.c]
308 Add misc.h for monotime prototype. (ID sync only).
Darren Tucker073f7952013-06-02 23:47:11 +1000309 - dtucker@cvs.openbsd.org 2013/06/02 13:35:58
310 [ssh-agent.c]
311 Make parent_alive_interval time_t to avoid signed/unsigned comparison
Darren Tuckeref4901c2013-06-03 01:59:13 +1000312 - (dtucker) [configure.ac] sys/un.h needs sys/socket.h on some platforms
Darren Tucker898ac932013-06-03 02:03:25 +1000313 to prevent noise from configure. Patch from Nathan Osman. (bz#2114).
314 - (dtucker) [configure.ac] bz#2111: don't try to use lastlog on Android.
315 Patch from Nathan Osman.
Tim Rice5ab9b632013-06-02 14:05:48 -0700316 - (tim) [configure.ac regress/Makefile] With rev 1.47 of test-exec.sh we
317 need a shell that can handle "[ file1 -nt file2 ]". Rather than keep
318 dealing with shell portability issues in regression tests, we let
319 configure find us a capable shell on those platforms with an old /bin/sh.
Tim Rice01ec0af2013-06-02 14:31:27 -0700320 - (tim) [aclocal.m4] Enhance OSSH_CHECK_CFLAG_COMPILE to check stderr.
321 feedback and ok dtucker
Tim Rice3f3064c2013-06-02 15:13:09 -0700322 - (tim) [regress/sftp-chroot.sh] skip if no sudo. ok dtucker
Darren Tucker0b43ffe2013-06-03 09:30:44 +1000323 - (dtucker) [configure.ac] Some platforms need sys/types.h before sys/un.h.
Darren Tucker16cac192013-06-04 12:55:24 +1000324 - (dtucker) [configure.ac] Some other platforms need sys/types.h before
325 sys/socket.h.
Tim Rice86211d12013-06-01 18:38:23 -0700326
Darren Tuckerc0c33732013-06-02 06:28:03 +100032720130601
328 - (dtucker) [configure.ac openbsd-compat/xcrypt.c] bz#2112: fall back to
Darren Tucker65cf7402013-06-02 09:11:19 +1000329 using openssl's DES_crypt function on platorms that don't have a native
Darren Tuckerc0c33732013-06-02 06:28:03 +1000330 one, eg Android. Based on a patch from Nathan Osman.
Darren Tuckerc7aad002013-06-02 07:18:47 +1000331 - (dtucker) [configure.ac defines.h] Test for fd_mask, howmany and NFDBITS
332 rather than trying to enumerate the plaforms that don't have them.
333 Based on a patch from Nathan Osman, with help from tim@.
Darren Tuckera627d422013-06-02 07:31:17 +1000334 - (dtucker) OpenBSD CVS Sync
335 - djm@cvs.openbsd.org 2013/05/17 00:13:13
336 [xmalloc.h cipher.c sftp-glob.c ssh-keyscan.c ssh.c sftp-common.c
337 ssh-ecdsa.c auth2-chall.c compat.c readconf.c kexgexs.c monitor.c
338 gss-genr.c cipher-3des1.c kex.c monitor_wrap.c ssh-pkcs11-client.c
339 auth-options.c rsa.c auth2-pubkey.c sftp.c hostfile.c auth2.c
340 servconf.c auth.c authfile.c xmalloc.c uuencode.c sftp-client.c
341 auth2-gss.c sftp-server.c bufaux.c mac.c session.c jpake.c kexgexc.c
342 sshconnect.c auth-chall.c auth2-passwd.c sshconnect1.c buffer.c
343 kexecdhs.c kexdhs.c ssh-rsa.c auth1.c ssh-pkcs11.c auth2-kbdint.c
344 kexdhc.c sshd.c umac.c ssh-dss.c auth2-jpake.c bufbn.c clientloop.c
345 monitor_mm.c scp.c roaming_client.c serverloop.c key.c auth-rsa.c
346 ssh-pkcs11-helper.c ssh-keysign.c ssh-keygen.c match.c channels.c
347 sshconnect2.c addrmatch.c mux.c canohost.c kexecdhc.c schnorr.c
348 ssh-add.c misc.c auth2-hostbased.c ssh-agent.c bufec.c groupaccess.c
349 dns.c packet.c readpass.c authfd.c moduli.c]
350 bye, bye xfree(); ok markus@
Darren Tucker74836ae2013-06-02 07:32:00 +1000351 - djm@cvs.openbsd.org 2013/05/19 02:38:28
352 [auth2-pubkey.c]
353 fix failure to recognise cert-authority keys if a key of a different type
354 appeared in authorized_keys before it; ok markus@
Darren Tucker0acca372013-06-02 07:41:51 +1000355 - djm@cvs.openbsd.org 2013/05/19 02:42:42
356 [auth.h auth.c key.c monitor.c auth-rsa.c auth2.c auth1.c key.h]
357 Standardise logging of supplemental information during userauth. Keys
358 and ruser is now logged in the auth success/failure message alongside
359 the local username, remote host/port and protocol in use. Certificates
360 contents and CA are logged too.
361 Pushing all logging onto a single line simplifies log analysis as it is
362 no longer necessary to relate information scattered across multiple log
363 entries. "I like it" markus@
Darren Tucker55119252013-06-02 07:43:59 +1000364 - dtucker@cvs.openbsd.org 2013/05/31 12:28:10
365 [ssh-agent.c]
366 Use time_t where appropriate. ok djm
Darren Tuckerb759c9c2013-06-02 07:46:16 +1000367 - dtucker@cvs.openbsd.org 2013/06/01 13:15:52
368 [ssh-agent.c clientloop.c misc.h packet.c progressmeter.c misc.c
369 channels.c sandbox-systrace.c]
370 Use clock_gettime(CLOCK_MONOTONIC ...) for ssh timers so that things like
371 keepalives and rekeying will work properly over clock steps. Suggested by
372 markus@, "looks good" djm@.
Darren Tucker3750fce2013-06-02 07:52:21 +1000373 - dtucker@cvs.openbsd.org 2013/06/01 20:59:25
374 [scp.c sftp-client.c]
375 Replace S_IWRITE, which isn't standardized, with S_IWUSR, which is. Patch
376 from Nathan Osman via bz#2085. ok deraadt.
Darren Tuckerc9a19912013-06-02 08:37:05 +1000377 - dtucker@cvs.openbsd.org 2013/06/01 22:34:50
378 [sftp-client.c]
379 Update progressmeter when data is acked, not when it's sent. bz#2108, from
380 Debian via Colin Watson, ok djm@
Darren Tuckerf60845f2013-06-02 08:07:31 +1000381 - (dtucker) [M auth-chall.c auth-krb5.c auth-pam.c cipher-aes.c cipher-ctr.c
382 groupaccess.c loginrec.c monitor.c monitor_wrap.c session.c sshd.c
383 sshlogin.c uidswap.c openbsd-compat/bsd-cygwin_util.c
384 openbsd-compat/getrrsetbyname-ldns.c openbsd-compat/port-aix.c
385 openbsd-compat/port-linux.c] Replace portable-specific instances of xfree
386 with the equivalent calls to free.
Darren Tuckera7108912013-06-02 08:18:31 +1000387 - (dtucker) [configure.ac misc.c] Look for clock_gettime in librt and fall
388 back to time(NULL) if we can't find it anywhere.
Darren Tuckere9887d12013-06-02 09:17:09 +1000389 - (dtucker) [sandbox-seccomp-filter.c] Allow clock_gettimeofday.
Darren Tuckerc0c33732013-06-02 06:28:03 +1000390
39120130529
Darren Tuckerefdf5342013-05-30 08:29:08 +1000392 - (dtucker) [configure.ac openbsd-compat/bsd-misc.h] bz#2087: Add a null
393 implementation of endgrent for platforms that don't have it (eg Android).
394 Loosely based on a patch from Nathan Osman, ok djm
Darren Tuckerc0c33732013-06-02 06:28:03 +1000395
Darren Tucker712de4d2013-05-17 09:07:12 +1000396 20130517
397 - (dtucker) OpenBSD CVS Sync
398 - djm@cvs.openbsd.org 2013/03/07 00:20:34
399 [regress/proxy-connect.sh]
400 repeat test with a style appended to the username
Darren Tucker7c8b1e72013-05-17 09:10:20 +1000401 - dtucker@cvs.openbsd.org 2013/03/23 11:09:43
Darren Tucker75129022013-05-17 09:19:10 +1000402 [regress/test-exec.sh]
Darren Tucker7c8b1e72013-05-17 09:10:20 +1000403 Only regenerate host keys if they don't exist or if ssh-keygen has changed
404 since they were. Reduces test runtime by 5-30% depending on machine
405 speed.
Darren Tucker75129022013-05-17 09:19:10 +1000406 - dtucker@cvs.openbsd.org 2013/04/06 06:00:22
407 [regress/rekey.sh regress/test-exec.sh regress/integrity.sh
408 regress/multiplex.sh Makefile regress/cfgmatch.sh]
409 Split the regress log into 3 parts: the debug output from ssh, the debug
410 log from sshd and the output from the client command (ssh, scp or sftp).
411 Somewhat functional now, will become more useful when ssh/sshd -E is added.
Darren Tuckerdfea3bc2013-05-17 09:31:39 +1000412 - dtucker@cvs.openbsd.org 2013/04/07 02:16:03
413 [regress/Makefile regress/rekey.sh regress/integrity.sh
414 regress/sshd-log-wrapper.sh regress/forwarding.sh regress/test-exec.sh]
415 use -E option for ssh and sshd to write debuging logs to ssh{,d}.log and
416 save the output from any failing tests. If a test fails the debug output
417 from ssh and sshd for the failing tests (and only the failing tests) should
418 be available in failed-ssh{,d}.log.
Darren Tuckerf3568fc2013-05-17 09:35:26 +1000419 - djm@cvs.openbsd.org 2013/04/18 02:46:12
Darren Tucker40aaff72013-05-17 09:36:20 +1000420 [regress/Makefile regress/sftp-chroot.sh]
Darren Tuckerf3568fc2013-05-17 09:35:26 +1000421 test sshd ChrootDirectory+internal-sftp; feedback & ok dtucker@
Darren Tucker40aaff72013-05-17 09:36:20 +1000422 - dtucker@cvs.openbsd.org 2013/04/22 07:23:08
Darren Tuckera4df65b2013-05-17 09:37:31 +1000423 [regress/multiplex.sh]
Darren Tucker40aaff72013-05-17 09:36:20 +1000424 Write mux master logs to regress.log instead of ssh.log to keep separate
Darren Tucker5e951732013-05-17 09:41:33 +1000425 - djm@cvs.openbsd.org 2013/05/10 03:46:14
Darren Tuckerc31c8722013-05-17 09:43:33 +1000426 [regress/modpipe.c]
Darren Tucker5e951732013-05-17 09:41:33 +1000427 sync some portability changes from portable OpenSSH (id sync only)
Darren Tuckera8a62fc2013-05-17 09:42:34 +1000428 - dtucker@cvs.openbsd.org 2013/05/16 02:10:35
Darren Tuckerc31c8722013-05-17 09:43:33 +1000429 [regress/rekey.sh]
Darren Tuckera8a62fc2013-05-17 09:42:34 +1000430 Add test for time-based rekeying
Darren Tuckerc31c8722013-05-17 09:43:33 +1000431 - dtucker@cvs.openbsd.org 2013/05/16 03:33:30
432 [regress/rekey.sh]
433 test rekeying when there's no data being transferred
Darren Tucker14490fe2013-05-17 09:44:20 +1000434 - dtucker@cvs.openbsd.org 2013/05/16 04:26:10
435 [regress/rekey.sh]
436 add server-side rekey test
Darren Tucker982b0cb2013-05-17 09:45:12 +1000437 - dtucker@cvs.openbsd.org 2013/05/16 05:48:31
438 [regress/rekey.sh]
439 add tests for RekeyLimit parsing
Darren Tucker56347ef2013-05-17 13:28:36 +1000440 - dtucker@cvs.openbsd.org 2013/05/17 00:37:40
441 [regress/agent.sh regress/keytype.sh regress/cfgmatch.sh
442 regress/forcecommand.sh regress/proto-version.sh regress/test-exec.sh
443 regress/cipher-speed.sh regress/cert-hostkey.sh regress/cert-userkey.sh
444 regress/ssh-com.sh]
445 replace 'echo -n' with 'printf' since it's more portable
446 also remove "echon" hack.
Darren Tuckerb8b96b02013-05-17 14:46:20 +1000447 - dtucker@cvs.openbsd.org 2013/05/17 01:16:09
448 [regress/agent-timeout.sh]
449 Pull back some portability changes from -portable:
450 - TIMEOUT is a read-only variable in some shells
451 - not all greps have -q so redirect to /dev/null instead.
452 (ID sync only)
Darren Tucker34035be2013-05-17 14:47:51 +1000453 - dtucker@cvs.openbsd.org 2013/05/17 01:32:11
454 [regress/integrity.sh]
455 don't print output from ssh before getting it (it's available in ssh.log)
Darren Tucker59d928d2013-05-17 15:32:29 +1000456 - dtucker@cvs.openbsd.org 2013/05/17 04:29:14
457 [regress/sftp.sh regress/putty-ciphers.sh regress/cipher-speed.sh
458 regress/test-exec.sh regress/sftp-batch.sh regress/dynamic-forward.sh
459 regress/putty-transfer.sh regress/conch-ciphers.sh regress/sftp-cmds.sh
460 regress/scp.sh regress/ssh-com-sftp.sh regress/rekey.sh
461 regress/putty-kex.sh regress/stderr-data.sh regress/stderr-after-eof.sh
462 regress/sftp-badcmds.sh regress/reexec.sh regress/ssh-com-client.sh
463 regress/sftp-chroot.sh regress/forwarding.sh regress/transfer.sh
464 regress/multiplex.sh]
465 Move the setting of DATA and COPY into test-exec.sh
Darren Tuckerdd669172013-05-17 20:39:57 +1000466 - dtucker@cvs.openbsd.org 2013/05/17 10:16:26
467 [regress/try-ciphers.sh]
468 use expr for math to keep diffs vs portable down
469 (id sync only)
Darren Tucker05b5e512013-05-17 20:41:07 +1000470 - dtucker@cvs.openbsd.org 2013/05/17 10:23:52
471 [regress/login-timeout.sh regress/reexec.sh regress/test-exec.sh]
472 Use SUDO when cat'ing pid files and running the sshd log wrapper so that
473 it works with a restrictive umask and the pid files are not world readable.
474 Changes from -portable. (id sync only)
Darren Tucker1466bd22013-05-17 20:42:05 +1000475 - dtucker@cvs.openbsd.org 2013/05/17 10:24:48
Darren Tucker438f60e2013-05-17 20:43:13 +1000476 [regress/localcommand.sh]
Darren Tucker1466bd22013-05-17 20:42:05 +1000477 use backticks for portability. (id sync only)
Darren Tucker438f60e2013-05-17 20:43:13 +1000478 - dtucker@cvs.openbsd.org 2013/05/17 10:26:26
479 [regress/sftp-badcmds.sh]
480 remove unused BATCH variable. (id sync only)
Darren Tucker98989eb2013-05-17 20:44:09 +1000481 - dtucker@cvs.openbsd.org 2013/05/17 10:28:11
482 [regress/sftp.sh]
483 only compare copied data if sftp succeeds. from portable (id sync only)
Darren Tucker00478d32013-05-17 20:45:06 +1000484 - dtucker@cvs.openbsd.org 2013/05/17 10:30:07
485 [regress/test-exec.sh]
486 wait a bit longer for startup and use case for absolute path.
487 from portable (id sync only)
Darren Tucker62ee2222013-05-17 20:46:00 +1000488 - dtucker@cvs.openbsd.org 2013/05/17 10:33:09
489 [regress/agent-getpeereid.sh]
490 don't redirect stdout from sudo. from portable (id sync only)
Darren Tucker0a404b02013-05-17 20:47:29 +1000491 - dtucker@cvs.openbsd.org 2013/05/17 10:34:30
492 [regress/portnum.sh]
493 use a more portable negated if structure. from portable (id sync only)
Darren Tucker9b42d322013-05-17 20:48:59 +1000494 - dtucker@cvs.openbsd.org 2013/05/17 10:35:43
495 [regress/scp.sh]
496 use a file extention that's not special on some platforms. from portable
497 (id sync only)
Darren Tucker6e1e60c2013-05-17 11:23:41 +1000498 - (dtucker) [regress/bsd.regress.mk] Remove unused file. We've never used it
499 in portable and it's long gone in openbsd.
Darren Tucker91af05c2013-05-17 13:16:59 +1000500 - (dtucker) [regress/integrity.sh]. Force fixed Diffie-Hellman key exchange
501 methods. When the openssl version doesn't support ECDH then next one on
502 the list is DH group exchange, but that causes a bit more traffic which can
503 mean that the tests flip bits in the initial exchange rather than the MACed
504 traffic and we get different errors to what the tests look for.
Darren Tucker8654dd22013-05-17 16:03:48 +1000505 - (dtucker) [openbsd-compat/getopt.h] Remove unneeded bits.
Darren Tucker7f193232013-05-17 19:02:28 +1000506 - (dtucker) [regress/cfgmatch.sh] Resync config file setup with openbsd.
Darren Tucker96457a52013-05-17 19:03:38 +1000507 - (dtucker) [regress/agent-getpeereid.sh] Resync spaces with openbsd.
Darren Tucker5f1a89a2013-05-17 19:17:58 +1000508 - (dtucker) [regress/integrity.sh regress/krl.sh regress/test-exec.sh]
509 Move the jot helper function to portable-specific part of test-exec.sh.
Darren Tucker6f669812013-05-17 19:28:51 +1000510 - (dtucker) [regress/test-exec.sh] Move the portable-specific functions
511 together and add a couple of missing lines from openbsd.
Darren Tuckerf8d5b342013-05-17 19:53:25 +1000512 - (dtucker) [regress/stderr-after-eof.sh regress/test-exec.sh] Move the md5
513 helper function to the portable part of test-exec.sh.
Darren Tucker9cc8ff72013-05-17 20:01:52 +1000514 - (dtucker) [regress/runtests.sh] Remove obsolete test driver script.
Darren Tucker044f32f2013-05-17 20:12:57 +1000515 - (dtucker) [regress/cfgmatch.sh] Remove unneeded sleep renderd obsolete by
516 rev 1.6 which calls wait.
Darren Tucker712de4d2013-05-17 09:07:12 +1000517
Damien Miller6aa3eac2013-05-16 11:10:17 +100051820130516
519 - (djm) [contrib/ssh-copy-id] Fix bug that could cause "rm *" to be
520 executed if mktemp failed; bz#2105 ok dtucker@
Darren Tucker2ca51bf2013-05-16 20:22:46 +1000521 - (dtucker) OpenBSD CVS Sync
522 - tedu@cvs.openbsd.org 2013/04/23 17:49:45
523 [misc.c]
524 use xasprintf instead of a series of strlcats and strdup. ok djm
Darren Tucker026d9db2013-05-16 20:23:52 +1000525 - tedu@cvs.openbsd.org 2013/04/24 16:01:46
526 [misc.c]
527 remove extra parens noticed by nicm
Darren Tucker5d8b7022013-05-16 20:24:23 +1000528 - dtucker@cvs.openbsd.org 2013/05/06 07:35:12
529 [sftp-server.8]
530 Reference the version of the sftp draft we actually implement. ok djm@
Darren Tucker54da6be2013-05-16 20:25:04 +1000531 - djm@cvs.openbsd.org 2013/05/10 03:40:07
532 [sshconnect2.c]
533 fix bzero(ptr_to_struct, sizeof(ptr_to_struct)); bz#2100 from
Darren Tucker7e831ed2013-05-16 20:25:40 +1000534 Colin Watson
Darren Tuckercaf00102013-05-16 20:26:18 +1000535 - djm@cvs.openbsd.org 2013/05/10 04:08:01
536 [key.c]
537 memleak in cert_free(), wasn't actually freeing the struct;
538 bz#2096 from shm AT digitalsun.pl
Darren Tucker64c6fce2013-05-16 20:27:14 +1000539 - dtucker@cvs.openbsd.org 2013/05/10 10:13:50
540 [ssh-pkcs11-helper.c]
541 remove unused extern optarg. ok markus@
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000542 - dtucker@cvs.openbsd.org 2013/05/16 02:00:34
543 [ssh_config sshconnect2.c packet.c readconf.h readconf.c clientloop.c
544 ssh_config.5 packet.h]
545 Add an optional second argument to RekeyLimit in the client to allow
546 rekeying based on elapsed time in addition to amount of traffic.
547 with djm@ jmc@, ok djm
Darren Tucker5f96f3b2013-05-16 20:29:28 +1000548 - dtucker@cvs.openbsd.org 2013/05/16 04:09:14
549 [sshd_config.5 servconf.c servconf.h packet.c serverloop.c monitor.c sshd_config
550 sshd.c] Add RekeyLimit to sshd with the same syntax as the client allowing
551 rekeying based on traffic volume or time. ok djm@, help & ok jmc@ for the man
552 page.
Darren Tucker07636982013-05-16 20:30:03 +1000553 - djm@cvs.openbsd.org 2013/05/16 04:27:50
554 [ssh_config.5 readconf.h readconf.c]
555 add the ability to ignore specific unrecognised ssh_config options;
556 bz#866; ok markus@
Darren Tucker63e0df22013-05-16 20:30:31 +1000557 - jmc@cvs.openbsd.org 2013/05/16 06:28:45
558 [ssh_config.5]
559 put IgnoreUnknown in the right place;
Darren Tucker64d22942013-05-16 20:31:29 +1000560 - jmc@cvs.openbsd.org 2013/05/16 06:30:06
561 [sshd_config.5]
562 oops! avoid Xr to self;
Darren Tuckerdbee3082013-05-16 20:32:29 +1000563 - dtucker@cvs.openbsd.org 2013/05/16 09:08:41
564 [log.c scp.c sshd.c serverloop.c schnorr.c sftp.c]
565 Fix some "unused result" warnings found via clang and -portable.
566 ok markus@
Darren Tuckerb7ee8522013-05-16 20:33:10 +1000567 - dtucker@cvs.openbsd.org 2013/05/16 09:12:31
568 [readconf.c servconf.c]
569 switch RekeyLimit traffic volume parsing to scan_scaled. ok djm@
Darren Tucker9113d0c2013-05-16 20:48:14 +1000570 - dtucker@cvs.openbsd.org 2013/05/16 10:43:34
571 [servconf.c readconf.c]
572 remove now-unused variables
Darren Tucker09c0f032013-05-16 20:48:57 +1000573 - dtucker@cvs.openbsd.org 2013/05/16 10:44:06
574 [servconf.c]
575 remove another now-unused variable
Darren Tuckere194ba42013-05-16 20:47:31 +1000576 - (dtucker) [configure.ac readconf.c servconf.c
577 openbsd-compat/openbsd-compat.h] Add compat bits for scan_scaled.
Damien Miller6aa3eac2013-05-16 11:10:17 +1000578
Darren Tuckerabbc7a72013-05-10 13:54:23 +100057920130510
580 - (dtucker) [configure.ac] Enable -Wsizeof-pointer-memaccess if the compiler
581 supports it. Mentioned by Colin Watson in bz#2100, ok djm.
Darren Tucker35b2fe92013-05-10 15:35:26 +1000582 - (dtucker) [openbsd-compat/getopt.c] Factor out portibility changes to
583 getopt.c. Preprocessed source is identical other than line numbers.
Darren Tucker39332022013-05-10 15:38:11 +1000584 - (dtucker) [openbsd-compat/getopt_long.c] Import from OpenBSD. No
585 portability changes yet.
Darren Tuckerccfdfce2013-05-10 16:28:55 +1000586 - (dtucker) [openbsd-compat/Makefile.in openbsd-compat/getopt.c
587 openbsd-compat/getopt_long.c regress/modpipe.c] Remove getopt.c, add
588 portability code to getopt_long.c and switch over Makefile and the ugly
589 hack in modpipe.c. Fixes bz#1448.
Darren Tucker0abfb552013-05-10 18:08:49 +1000590 - (dtucker) [openbsd-compat/getopt.h openbsd-compat/getopt_long.c
591 openbsd-compat/openbsd-compat.h] pull in getopt.h from openbsd and plumb
592 in to use it when we're using our own getopt.
Darren Tuckera75d2472013-05-10 18:11:55 +1000593 - (dtucker) [kex.c] Only include sha256 and ECC key exchange methods when the
594 underlying libraries support them.
Darren Tuckerc54e3e02013-05-10 18:53:14 +1000595 - (dtucker) [configure.ac] Add -Werror to the -Qunused-arguments test so
596 we don't get a warning on compilers that *don't* support it. Add
597 -Wno-unknown-warning-option. Move both to the start of the list for
598 maximum noise suppression. Tested with gcc 4.6.3, gcc 2.95.4 and clang 2.9.
Darren Tuckerabbc7a72013-05-10 13:54:23 +1000599
Damien Miller6332da22013-04-23 14:25:52 +100060020130423
601 - (djm) [auth.c configure.ac misc.c monitor.c monitor_wrap.c] Support
602 platforms, such as Android, that lack struct passwd.pw_gecos. Report
603 and initial patch from Nathan Osman bz#2086; feedback tim@ ok dtucker@
Damien Miller62e9c4f2013-04-23 15:15:49 +1000604 - (djm) OpenBSD CVS Sync
605 - markus@cvs.openbsd.org 2013/03/05 20:16:09
606 [sshconnect2.c]
607 reset pubkey order on partial success; ok djm@
Damien Miller998cc562013-04-23 15:16:43 +1000608 - djm@cvs.openbsd.org 2013/03/06 23:35:23
609 [session.c]
610 fatal() when ChrootDirectory specified by running without root privileges;
611 ok markus@
Damien Miller5cbec4c2013-04-23 15:17:12 +1000612 - djm@cvs.openbsd.org 2013/03/06 23:36:53
613 [readconf.c]
614 g/c unused variable (-Wunused)
Damien Miller4ce189d2013-04-23 15:17:52 +1000615 - djm@cvs.openbsd.org 2013/03/07 00:19:59
616 [auth2-pubkey.c monitor.c]
617 reconstruct the original username that was sent by the client, which may
618 have included a style (e.g. "root:skey") when checking public key
619 signatures. Fixes public key and hostbased auth when the client specified
620 a style; ok markus@
Damien Miller91a55f22013-04-23 15:18:10 +1000621 - markus@cvs.openbsd.org 2013/03/07 19:27:25
622 [auth.h auth2-chall.c auth2.c monitor.c sshd_config.5]
623 add submethod support to AuthenticationMethods; ok and freedback djm@
Damien Miller508b6c32013-04-23 15:18:28 +1000624 - djm@cvs.openbsd.org 2013/03/08 06:32:58
625 [ssh.c]
626 allow "ssh -f none ..." ok markus@
Damien Millerd677ad12013-04-23 15:18:51 +1000627 - djm@cvs.openbsd.org 2013/04/05 00:14:00
628 [auth2-gss.c krl.c sshconnect2.c]
629 hush some {unused, printf type} warnings
Damien Miller9f12b5d2013-04-23 15:19:11 +1000630 - djm@cvs.openbsd.org 2013/04/05 00:31:49
631 [pathnames.h]
632 use the existing _PATH_SSH_USER_RC define to construct the other
633 pathnames; bz#2077, ok dtucker@ (no binary change)
Damien Miller172859c2013-04-23 15:19:27 +1000634 - djm@cvs.openbsd.org 2013/04/05 00:58:51
635 [mux.c]
636 cleanup mux-created channels that are in SSH_CHANNEL_OPENING state too
637 (in addition to ones already in OPEN); bz#2079, ok dtucker@
Damien Miller37f1c082013-04-23 15:20:43 +1000638 - markus@cvs.openbsd.org 2013/04/06 16:07:00
639 [channels.c sshd.c]
640 handle ECONNABORTED for accept(); ok deraadt some time ago...
Damien Miller03d4d7e2013-04-23 15:21:06 +1000641 - dtucker@cvs.openbsd.org 2013/04/07 02:10:33
642 [log.c log.h ssh.1 ssh.c sshd.8 sshd.c]
643 Add -E option to ssh and sshd to append debugging logs to a specified file
644 instead of stderr or syslog. ok markus@, man page help jmc@
Damien Miller69010322013-04-23 15:21:24 +1000645 - dtucker@cvs.openbsd.org 2013/04/07 09:40:27
646 [sshd.8]
647 clarify -e text. suggested by & ok jmc@
Damien Millerd5edefd2013-04-23 15:21:39 +1000648 - djm@cvs.openbsd.org 2013/04/11 02:27:50
649 [packet.c]
650 quiet disconnect notifications on the server from error() back to logit()
651 if it is a normal client closure; bz#2057 ok+feedback dtucker@
Damien Millerf1a02ae2013-04-23 15:22:13 +1000652 - dtucker@cvs.openbsd.org 2013/04/17 09:04:09
653 [session.c]
654 revert rev 1.262; it fails because uid is already set here. ok djm@
Damien Miller9303e652013-04-23 15:22:40 +1000655 - djm@cvs.openbsd.org 2013/04/18 02:16:07
656 [sftp.c]
657 make "sftp -q" do what it says on the sticker: hush everything but errors;
Damien Miller467b00c2013-04-23 15:23:07 +1000658 ok dtucker@
659 - djm@cvs.openbsd.org 2013/04/19 01:00:10
660 [sshd_config.5]
661 document the requirment that the AuthorizedKeysCommand be owned by root;
662 ok dtucker@ markus@
Damien Miller0d6771b2013-04-23 15:23:24 +1000663 - djm@cvs.openbsd.org 2013/04/19 01:01:00
664 [ssh-keygen.c]
665 fix some memory leaks; bz#2088 ok dtucker@
Damien Millera56086b2013-04-23 15:24:18 +1000666 - djm@cvs.openbsd.org 2013/04/19 01:03:01
667 [session.c]
668 reintroduce 1.262 without the connection-killing bug:
669 fatal() when ChrootDirectory specified by running without root privileges;
670 ok markus@
Damien Millerea111192013-04-23 19:24:32 +1000671 - djm@cvs.openbsd.org 2013/04/19 01:06:50
672 [authfile.c cipher.c cipher.h kex.c kex.h kexecdh.c kexecdhc.c kexecdhs.c]
673 [key.c key.h mac.c mac.h packet.c ssh.1 ssh.c]
674 add the ability to query supported ciphers, MACs, key type and KEX
675 algorithms to ssh. Includes some refactoring of KEX and key type handling
676 to be table-driven; ok markus@
Damien Miller34bd20a2013-04-23 19:25:00 +1000677 - djm@cvs.openbsd.org 2013/04/19 11:10:18
678 [ssh.c]
679 add -Q to usage; reminded by jmc@
Damien Millerf8b894e2013-04-23 19:25:29 +1000680 - djm@cvs.openbsd.org 2013/04/19 12:07:08
681 [kex.c]
682 remove duplicated list entry pointed out by naddy@
Damien Millerbc02f162013-04-23 19:25:49 +1000683 - dtucker@cvs.openbsd.org 2013/04/22 01:17:18
684 [mux.c]
685 typo in debug output: evitval->exitval
Damien Miller6332da22013-04-23 14:25:52 +1000686
Damien Millerbc68f242013-04-18 11:26:25 +100068720130418
688 - (djm) [config.guess config.sub] Update to last versions before they switch
689 to GPL3. ok dtucker@
Darren Tuckerce1c9572013-04-18 21:36:19 +1000690 - (dtucker) [configure.ac] Use -Qunused-arguments to suppress warnings from
691 unused argument warnings (in particular, -fno-builtin-memset) from clang.
Damien Millerbc68f242013-04-18 11:26:25 +1000692
Darren Tucker19104782013-04-05 11:13:08 +110069320130404
694 - (dtucker) OpenBSD CVS Sync
695 - dtucker@cvs.openbsd.org 2013/02/17 23:16:57
696 [readconf.c ssh.c readconf.h sshconnect2.c]
697 Keep track of which IndentityFile options were manually supplied and which
698 were default options, and don't warn if the latter are missing.
699 ok markus@
Darren Tuckerf3c38142013-04-05 11:16:52 +1100700 - dtucker@cvs.openbsd.org 2013/02/19 02:12:47
701 [krl.c]
702 Remove bogus include. ok djm
Darren Tuckeraefa3682013-04-05 11:18:35 +1100703 - dtucker@cvs.openbsd.org 2013/02/22 04:45:09
704 [ssh.c readconf.c readconf.h]
705 Don't complain if IdentityFiles specified in system-wide configs are
706 missing. ok djm, deraadt.
Darren Tucker5d1d9542013-04-05 11:20:00 +1100707 - markus@cvs.openbsd.org 2013/02/22 19:13:56
708 [sshconnect.c]
709 support ProxyCommand=- (stdin/out already point to the proxy); ok djm@
Darren Tucker15fd19c2013-04-05 11:22:26 +1100710 - djm@cvs.openbsd.org 2013/02/22 22:09:01
711 [ssh.c]
712 Allow IdenityFile=none; ok markus deraadt (and dtucker for an earlier
713 version)
Darren Tucker19104782013-04-05 11:13:08 +1100714
Darren Tuckerc9627cd2013-04-01 12:40:48 +110071520130401
716 - (dtucker) [openbsd-compat/bsd-cygwin_util.{c,h}] Don't include windows.h
717 to avoid conflicting definitions of __int64, adding the required bits.
718 Patch from Corinna Vinschen.
719
Tim Rice75db01d2013-03-22 10:14:32 -070072020120323
721 - (tim) [Makefile.in] remove some duplication introduced in 20130220 commit.
722
Damien Miller83efe7c2013-03-22 10:17:36 +110072320120322
724 - (djm) [contrib/ssh-copy-id contrib/ssh-copy-id.1] Updated to Phil
725 Hands' greatly revised version.
Damien Millereed8dc22013-03-22 10:25:22 +1100726 - (djm) Release 6.2p1
Darren Tuckerc8a0f272013-03-22 12:49:14 +1100727 - (dtucker) [configure.ac] Add stdlib.h to zlib check for exit() prototype.
Darren Tucker221b4b22013-03-22 12:51:09 +1100728 - (dtucker) [includes.h] Check if _GNU_SOURCE is already defined before
729 defining it again. Prevents warnings if someone, eg, sets it in CFLAGS.
Damien Miller83efe7c2013-03-22 10:17:36 +1100730
Damien Miller63b4bcd2013-03-20 12:55:14 +110073120120318
732 - (djm) [configure.ac log.c scp.c sshconnect2.c openbsd-compat/vis.c]
733 [openbsd-compat/vis.h] FreeBSD's strnvis isn't compatible with OpenBSD's
734 so mark it as broken. Patch from des AT des.no
735
Tim Riceaa86c392013-03-16 20:55:46 -070073620120317
737 - (tim) [configure.ac] OpenServer 5 wants lastlog even though it has none
738 of the bits the configure test looks for.
739
Damien Millera2438bb2013-03-15 10:23:07 +110074020120316
741 - (djm) [configure.ac] Disable utmp, wtmp and/or lastlog if the platform
742 is unable to successfully compile them. Based on patch from des AT
743 des.no
Damien Millerf4db77d2013-03-15 10:34:25 +1100744 - (djm) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
745 Add a usleep replacement for platforms that lack it; ok dtucker
Damien Miller58528402013-03-15 11:22:37 +1100746 - (djm) [session.c] FreeBSD needs setusercontext(..., LOGIN_SETUMASK) to
747 occur after UID switch; patch from John Marshall via des AT des.no;
748 ok dtucker@
Damien Millera2438bb2013-03-15 10:23:07 +1100749
Darren Tuckerfe10a282013-03-12 11:19:40 +110075020120312
751 - (dtucker) [regress/Makefile regress/cipher-speed.sh regress/test-exec.sh]
752 Improve portability of cipher-speed test, based mostly on a patch from
753 Iain Morgan.
Darren Tuckeraa97d132013-03-12 11:31:05 +1100754 - (dtucker) [auth.c configure.ac platform.c platform.h] Accept uid 2 ("bin")
755 in addition to root as an owner of system directories on AIX and HP-UX.
756 ok djm@
Darren Tuckerfe10a282013-03-12 11:19:40 +1100757
Darren Tuckerb3cd5032013-03-07 12:33:35 +110075820130307
759 - (dtucker) [INSTALL] Bump documented autoconf version to what we're
760 currently using.
Darren Tucker4d1a0fe2013-03-07 20:14:34 +1100761 - (dtucker) [defines.h] Remove SIZEOF_CHAR bits since the test for it
Darren Tucker9243ef02013-03-07 20:06:13 +1100762 was removed in configure.ac rev 1.481 as it was redundant.
Tim Rice2b6ea472013-03-07 07:37:13 -0800763 - (tim) [Makefile.in] Add another missing $(EXEEXT) I should have seen 3 days
764 ago.
Damien Millere4f43472013-03-08 12:14:22 +1100765 - (djm) [configure.ac] Add a timeout to the select/rlimit test to give it a
766 chance to complete on broken systems; ok dtucker@
Darren Tuckerb3cd5032013-03-07 12:33:35 +1100767
Darren Tucker834a0d62013-03-06 14:06:48 +110076820130306
769 - (dtucker) [regress/forward-control.sh] Wait longer for the forwarding
770 connection to start so that the test works on slower machines.
Darren Tuckerff008de2013-03-06 17:48:48 +1100771 - (dtucker) [configure.ac] test that we can set number of file descriptors
772 to zero with setrlimit before enabling the rlimit sandbox. This affects
773 (at least) HPUX 11.11.
Darren Tucker834a0d62013-03-06 14:06:48 +1100774
Damien Miller43e5e602013-03-05 09:49:00 +110077520130305
776 - (djm) [regress/modpipe.c] Compilation fix for AIX and parsing fix for
777 HP/UX. Spotted by Kevin Brott
Darren Tucker5f0e54c2013-03-05 19:57:39 +1100778 - (dtucker) [configure.ac] use "=" for shell test and not "==". Spotted by
Darren Tuckerfef9f7c2013-03-05 20:02:24 +1100779 Amit Kulkarni and Kevin Brott.
Darren Tucker29c71512013-03-05 21:50:09 +1100780 - (dtucker) [Makefile.in] Remove trailing "\" on PATHS, which caused obscure
781 build breakage on (at least) HP-UX 11.11. Found by Amit Kulkarni and Kevin
782 Brott.
Tim Riceff8bda82013-03-05 14:23:58 -0800783 - (tim) [Makefile.in] Add missing $(EXEEXT). Found by Roumen Petrov.
Damien Miller43e5e602013-03-05 09:49:00 +1100784
Damien Millerc0cc7ce2013-02-27 10:48:18 +110078520130227
786 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
787 [contrib/suse/openssh.spec] Crank version numbers
Tim Ricea514bc02013-02-26 19:35:26 -0800788 - (tim) [regress/forward-control.sh] use sh in case login shell is csh.
Tim Ricef9e20602013-02-26 20:27:29 -0800789 - (tim) [regress/integrity.sh] shell portability fix.
Tim Riceada7e172013-02-26 21:49:09 -0800790 - (tim) [regress/integrity.sh] keep old solaris awk from hanging.
Tim Rice21f591b2013-02-26 22:48:31 -0800791 - (tim) [regress/krl.sh] keep old solaris awk from hanging.
Damien Millerc0cc7ce2013-02-27 10:48:18 +1100792
Damien Miller1e657d52013-02-26 18:58:06 +110079320130226
794 - OpenBSD CVS Sync
795 - djm@cvs.openbsd.org 2013/02/20 08:27:50
796 [integrity.sh]
797 Add an option to modpipe that warns if the modification offset it not
798 reached in it's stream and turn it on for t-integrity. This should catch
799 cases where the session is not fuzzed for being too short (cf. my last
800 "oops" commit)
Damien Miller6c21bb82013-02-26 19:41:30 +1100801 - (djm) [regress/integrity.sh] Run sshd via $SUDO; fixes tinderbox breakage
802 for UsePAM=yes configuration
Damien Miller1e657d52013-02-26 18:58:06 +1100803
Darren Tucker03978c62013-02-25 11:24:44 +110080420130225
805 - (dtucker) [configure.ac ssh-gss.h] bz#2073: additional #includes needed
806 to use Solaris native GSS libs. Patch from Pierre Ossman.
807
Darren Tuckera423fef2013-02-25 10:32:27 +110080820130223
Damien Millerb87f6b72013-02-23 09:12:23 +1100809 - (djm) [configure.ac includes.h loginrec.c mux.c sftp.c] Prefer
810 bsd/libutil.h to libutil.h to avoid deprecation warnings on Ubuntu.
811 ok tim
812
Darren Tuckera423fef2013-02-25 10:32:27 +110081320130222
Darren Tucker964de182013-02-22 10:39:59 +1100814 - (dtucker) [Makefile.in configure.ac] bz#2072: don't link krb5 libs to
Darren Tuckera2b5a4c2013-02-22 10:43:15 +1100815 ssh(1) since they're not needed. Patch from Pierre Ossman, ok djm.
816 - (dtucker) [configure.ac] bz#2073: look for Solaris' differently-named
817 libgss too. Patch from Pierre Ossman, ok djm.
Damien Miller91f40d82013-02-22 11:37:00 +1100818 - (djm) [configure.ac sandbox-seccomp-filter.c] Support for Linux
819 seccomp-bpf sandbox on ARM. Patch from shawnlandden AT gmail.com;
820 ok dtucker
Darren Tucker964de182013-02-22 10:39:59 +1100821
Tim Rice0ec74232013-02-20 21:37:55 -080082220130221
823 - (tim) [regress/forward-control.sh] shell portability fix.
824
Tim Ricec08b3ef2013-02-19 11:53:29 -080082520130220
826 - (tim) [regress/cipher-speed.sh regress/try-ciphers.sh] shell portability fix.
Tim Ricec31db8c2013-02-19 19:01:51 -0800827 - (tim) [krl.c Makefile.in regress/Makefile regress/modpipe.c] remove unneeded
828 err.h include from krl.c. Additional portability fixes for modpipe. OK djm
Damien Miller283e5752013-02-20 21:13:27 +1100829 - OpenBSD CVS Sync
830 - djm@cvs.openbsd.org 2013/02/20 08:27:50
831 [regress/integrity.sh regress/modpipe.c]
832 Add an option to modpipe that warns if the modification offset it not
833 reached in it's stream and turn it on for t-integrity. This should catch
834 cases where the session is not fuzzed for being too short (cf. my last
835 "oops" commit)
Damien Miller5acc6be2013-02-20 21:16:07 +1100836 - djm@cvs.openbsd.org 2013/02/20 08:29:27
837 [regress/modpipe.c]
838 s/Id/OpenBSD/ in RCS tag
Tim Ricec08b3ef2013-02-19 11:53:29 -0800839
Damien Miller0dc3bc92013-02-19 09:28:32 +110084020130219
841 - OpenBSD CVS Sync
842 - djm@cvs.openbsd.org 2013/02/18 22:26:47
843 [integrity.sh]
844 crank the offset yet again; it was still fuzzing KEX one of Darren's
845 portable test hosts at 2800
Damien Millerb3764e12013-02-19 13:15:01 +1100846 - djm@cvs.openbsd.org 2013/02/19 02:14:09
847 [integrity.sh]
848 oops, forgot to increase the output of the ssh command to ensure that
849 we actually reach $offset
Damien Millerdae85cc2013-02-19 14:27:44 +1100850 - (djm) [regress/integrity.sh] Skip SHA2-based MACs on configurations that
851 lack support for SHA2.
Tim Ricec31db8c2013-02-19 19:01:51 -0800852 - (djm) [regress/modpipe.c] Add local err, and errx functions for platforms
853 that do not have them.
Damien Miller0dc3bc92013-02-19 09:28:32 +1100854
Damien Miller33d52562013-02-18 10:18:05 +110085520130217
856 - OpenBSD CVS Sync
857 - djm@cvs.openbsd.org 2013/02/17 23:16:55
858 [integrity.sh]
859 make the ssh command generates some output to ensure that there are at
860 least offset+tries bytes in the stream.
861
Damien Miller5d7b9562013-02-16 17:32:31 +110086220130216
863 - OpenBSD CVS Sync
864 - djm@cvs.openbsd.org 2013/02/16 06:08:45
865 [integrity.sh]
866 make sure the fuzz offset is actually past the end of KEX for all KEX
867 types. diffie-hellman-group-exchange-sha256 requires an offset around
868 2700. Noticed via test failures in portable OpenSSH on platforms that
869 lack ECC and this the more byte-frugal ECDH KEX algorithms.
870
Damien Miller91edc1c2013-02-15 10:23:44 +110087120130215
872 - (djm) [contrib/suse/rc.sshd] Use SSHD_BIN consistently; bz#2056 from
873 Iain Morgan
Darren Tucker3c4a24c2013-02-15 11:41:35 +1100874 - (dtucker) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
875 Use getpgrp() if we don't have getpgid() (old BSDs, maybe others).
Darren Tucker8e6fb782013-02-15 12:13:01 +1100876 - (dtucker) [configure.ac openbsd-compat/Makefile.in openbsd-compat/strtoull.c
877 openbsd-compat/openbsd-compat.h] Add strtoull to compat library for
878 platforms that don't have it.
Darren Tuckerf32db832013-02-15 12:20:41 +1100879 - (dtucker) [openbsd-compat/openbsd-compat.h] Add prototype for strtoul,
880 group strto* function prototypes together.
Darren Tucker2991d282013-02-15 14:55:38 +1100881 - (dtucker) [openbsd-compat/bsd-misc.c] Handle the case where setpgrp() takes
882 an argument. Pointed out by djm.
Damien Miller4018dc02013-02-15 10:28:55 +1100883 - (djm) OpenBSD CVS Sync
884 - djm@cvs.openbsd.org 2013/02/14 21:35:59
885 [auth2-pubkey.c]
886 Correct error message that had a typo and was logging the wrong thing;
887 patch from Petr Lautrbach
Damien Miller5ceddc32013-02-15 12:18:32 +1100888 - dtucker@cvs.openbsd.org 2013/02/15 00:21:01
889 [sshconnect2.c]
890 Warn more loudly if an IdentityFile provided by the user cannot be read.
891 bz #1981, ok djm@
Damien Miller91edc1c2013-02-15 10:23:44 +1100892
Damien Miller2653f5c2013-02-14 10:14:51 +110089320130214
894 - (djm) [regress/krl.sh] Don't use ecdsa keys in environment that lack ECC.
Damien Miller6d77d6e2013-02-14 10:31:03 +1100895 - (djm) [regress/krl.sh] typo; found by Iain Morgan
Damien Miller57f92182013-02-14 10:32:33 +1100896 - (djm) [regress/integrity.sh] Start fuzzing from offset 2500 (instead
897 of 2300) to avoid clobbering the end of (non-MAC'd) KEX. Verified by
898 Iain Morgan
Damien Miller2653f5c2013-02-14 10:14:51 +1100899
Damien Millerea078462013-02-12 10:54:37 +110090020130212
901 - (djm) OpenBSD CVS Sync
902 - djm@cvs.openbsd.org 2013/01/24 21:45:37
903 [krl.c]
904 fix handling of (unused) KRL signatures; skip string in correct buffer
Damien Miller6045f5d2013-02-12 10:54:54 +1100905 - djm@cvs.openbsd.org 2013/01/24 22:08:56
906 [krl.c]
907 skip serial lookup when cert's serial number is zero
Damien Miller377d9a42013-02-12 10:55:16 +1100908 - krw@cvs.openbsd.org 2013/01/25 05:00:27
909 [krl.c]
910 Revert last. Breaks due to likely typo. Let djm@ fix later.
911 ok djm@ via dlg@
Damien Miller60565bc2013-02-12 10:56:42 +1100912 - djm@cvs.openbsd.org 2013/01/25 10:22:19
913 [krl.c]
914 redo last commit without the vi-vomit that snuck in:
915 skip serial lookup when cert's serial number is zero
916 (now with 100% better comment)
Damien Millerf0a8ded2013-02-12 11:00:34 +1100917 - djm@cvs.openbsd.org 2013/01/26 06:11:05
918 [Makefile.in acss.c acss.h cipher-acss.c cipher.c]
919 [openbsd-compat/openssl-compat.h]
920 remove ACSS, now that it is gone from libcrypto too
Damien Miller0cd2f8e2013-02-12 11:01:39 +1100921 - djm@cvs.openbsd.org 2013/01/27 10:06:12
922 [krl.c]
923 actually use the xrealloc() return value; spotted by xi.wang AT gmail.com
Damien Miller1f583df2013-02-12 11:02:08 +1100924 - dtucker@cvs.openbsd.org 2013/02/06 00:20:42
925 [servconf.c sshd_config sshd_config.5]
926 Change default of MaxStartups to 10:30:100 to start doing random early
927 drop at 10 connections up to 100 connections. This will make it harder
928 to DoS as CPUs have come a long way since the original value was set
929 back in 2000. Prompted by nion at debian org, ok markus@
Damien Miller18de9132013-02-12 11:02:27 +1100930 - dtucker@cvs.openbsd.org 2013/02/06 00:22:21
931 [auth.c]
932 Fix comment, from jfree.e1 at gmail
Damien Millerd6d9fa02013-02-12 11:02:46 +1100933 - djm@cvs.openbsd.org 2013/02/08 00:41:12
934 [sftp.c]
935 fix NULL deref when built without libedit and control characters
936 entered as command; debugging and patch from Iain Morgan an
937 Loganaden Velvindron in bz#1956
Damien Millerfd051542013-02-12 11:03:10 +1100938 - markus@cvs.openbsd.org 2013/02/10 21:19:34
939 [version.h]
940 openssh 6.2
Damien Miller78d22712013-02-12 11:03:36 +1100941 - djm@cvs.openbsd.org 2013/02/10 23:32:10
942 [ssh-keygen.c]
943 append to moduli file when screening candidates rather than overwriting.
944 allows resumption of interrupted screen; patch from Christophe Garault
945 in bz#1957; ok dtucker@
Damien Miller894926e2013-02-12 11:03:58 +1100946 - djm@cvs.openbsd.org 2013/02/10 23:35:24
947 [packet.c]
948 record "Received disconnect" messages at ERROR rather than INFO priority,
949 since they are abnormal and result in a non-zero ssh exit status; patch
950 from Iain Morgan in bz#2057; ok dtucker@
Damien Miller22e8a1e2013-02-12 11:04:48 +1100951 - dtucker@cvs.openbsd.org 2013/02/11 21:21:58
952 [sshd.c]
953 Add openssl version to debug output similar to the client. ok markus@
Damien Miller58e2c5b2013-02-12 11:16:57 +1100954 - djm@cvs.openbsd.org 2013/02/11 23:58:51
955 [regress/try-ciphers.sh]
956 remove acss here too
Damien Miller2f20de52013-02-12 11:31:38 +1100957 - (djm) [regress/try-ciphers.sh] clean up CVS merge botch
Damien Millerea078462013-02-12 10:54:37 +1100958
Damien Millerb6f73b32013-02-11 10:39:12 +110095920130211
960 - (djm) [configure.ac openbsd-compat/openssl-compat.h] Repair build on old
961 libcrypto that lacks EVP_CIPHER_CTX_ctrl
962
Damien Millere7f50e12013-02-08 10:49:37 +110096320130208
964 - (djm) [contrib/redhat/sshd.init] treat RETVAL as an integer;
965 patch from Iain Morgan in bz#2059
Darren Tucker951b53b2013-02-08 11:50:09 +1100966 - (dtucker) [configure.ac openbsd-compat/sys-tree.h] Test if compiler allows
967 __attribute__ on return values and work around if necessary. ok djm@
Damien Millere7f50e12013-02-08 10:49:37 +1100968
96920130207
Damien Miller5c3bbd72013-02-07 10:11:05 +1100970 - (djm) [configure.ac] Don't probe seccomp capability of running kernel
971 at configure time; the seccomp sandbox will fall back to rlimit at
972 runtime anyway. Patch from plautrba AT redhat.com in bz#2011
973
Damien Millerda5cc5d2013-01-20 22:31:29 +110097420130120
975 - (djm) [cipher-aes.c cipher-ctr.c openbsd-compat/openssl-compat.h]
976 Move prototypes for replacement ciphers to openssl-compat.h; fix EVP
977 prototypes for openssl-1.0.0-fips.
Damien Millerac5542b2013-01-20 22:33:02 +1100978 - (djm) OpenBSD CVS Sync
979 - jmc@cvs.openbsd.org 2013/01/18 07:57:47
980 [ssh-keygen.1]
981 tweak previous;
Damien Miller3d6d68b2013-01-20 22:33:23 +1100982 - jmc@cvs.openbsd.org 2013/01/18 07:59:46
983 [ssh-keygen.c]
984 -u before -V in usage();
Damien Miller72abeb72013-01-20 22:33:44 +1100985 - jmc@cvs.openbsd.org 2013/01/18 08:00:49
986 [sshd_config.5]
987 tweak previous;
Damien Miller072fdcd2013-01-20 22:34:04 +1100988 - jmc@cvs.openbsd.org 2013/01/18 08:39:04
989 [ssh-keygen.1]
990 add -Q to the options list; ok djm
Damien Miller881a7a22013-01-20 22:34:46 +1100991 - jmc@cvs.openbsd.org 2013/01/18 21:48:43
992 [ssh-keygen.1]
993 command-line (adj.) -> command line (n.);
Damien Millera0a7ee82013-01-20 22:35:06 +1100994 - jmc@cvs.openbsd.org 2013/01/19 07:13:25
995 [ssh-keygen.1]
996 fix some formatting; ok djm
Damien Millera7522d92013-01-20 22:35:31 +1100997 - markus@cvs.openbsd.org 2013/01/19 12:34:55
998 [krl.c]
999 RB_INSERT does not remove existing elments; ok djm@
Damien Millerd60b2102013-01-20 22:49:58 +11001000 - (djm) [openbsd-compat/sys-tree.h] Sync with OpenBSD. krl.c needs newer
1001 version.
Damien Millerdc75d1f2013-01-20 22:58:51 +11001002 - (djm) [regress/krl.sh] replacement for jot; most platforms lack it
Damien Millerda5cc5d2013-01-20 22:31:29 +11001003
Damien Millerf3747bf2013-01-18 11:44:04 +1100100420130118
1005 - (djm) OpenBSD CVS Sync
1006 - djm@cvs.openbsd.org 2013/01/17 23:00:01
1007 [auth.c key.c key.h ssh-keygen.1 ssh-keygen.c sshd_config.5]
1008 [krl.c krl.h PROTOCOL.krl]
1009 add support for Key Revocation Lists (KRLs). These are a compact way to
1010 represent lists of revoked keys and certificates, taking as little as
1011 a single bit of incremental cost to revoke a certificate by serial number.
1012 KRLs are loaded via the existing RevokedKeys sshd_config option.
1013 feedback and ok markus@
Damien Millerebafebd2013-01-18 11:51:56 +11001014 - djm@cvs.openbsd.org 2013/01/18 00:45:29
1015 [regress/Makefile regress/cert-userkey.sh regress/krl.sh]
1016 Tests for Key Revocation Lists (KRLs)
Damien Miller13f5f762013-01-18 15:32:03 +11001017 - djm@cvs.openbsd.org 2013/01/18 03:00:32
1018 [krl.c]
1019 fix KRL generation bug for list sections
Damien Millerf3747bf2013-01-18 11:44:04 +11001020
Damien Millerb26699b2013-01-17 14:31:57 +1100102120130117
1022 - (djm) [regress/cipher-speed.sh regress/integrity.sh regress/try-ciphers.sh]
1023 check for GCM support before testing GCM ciphers.
1024
Damien Millerc20eb8b2013-01-12 22:41:26 +1100102520130112
1026 - (djm) OpenBSD CVS Sync
1027 - djm@cvs.openbsd.org 2013/01/12 11:22:04
1028 [cipher.c]
1029 improve error message for integrity failure in AES-GCM modes; ok markus@
Damien Miller846dc7f2013-01-12 22:46:26 +11001030 - djm@cvs.openbsd.org 2013/01/12 11:23:53
1031 [regress/cipher-speed.sh regress/integrity.sh regress/try-ciphers.sh]
1032 test AES-GCM modes; feedback markus@
Damien Millerefa1c952013-01-12 23:10:47 +11001033 - (djm) [regress/integrity.sh] repair botched merge
Damien Millerc20eb8b2013-01-12 22:41:26 +11001034
Damien Miller4e14a582013-01-09 15:54:48 +1100103520130109
1036 - (djm) OpenBSD CVS Sync
1037 - dtucker@cvs.openbsd.org 2012/12/14 05:26:43
1038 [auth.c]
1039 use correct string in error message; from rustybsd at gmx.fr
Damien Miller73298f42013-01-09 15:55:50 +11001040 - djm@cvs.openbsd.org 2013/01/02 00:32:07
1041 [clientloop.c mux.c]
1042 channel_setup_local_fwd_listener() returns 0 on failure, not -ve
1043 bz#2055 reported by mathieu.lacage AT gmail.com
Damien Miller697485d2013-01-09 15:56:13 +11001044 - djm@cvs.openbsd.org 2013/01/02 00:33:49
1045 [PROTOCOL.agent]
1046 correct format description for SSH_AGENTC_ADD_RSA_ID_CONSTRAINED
1047 bz#2051 from david AT lechnology.com
Damien Miller44138442013-01-09 15:56:45 +11001048 - djm@cvs.openbsd.org 2013/01/03 05:49:36
1049 [servconf.h]
1050 add a couple of ServerOptions members that should be copied to the privsep
1051 child (for consistency, in this case they happen only to be accessed in
1052 the monitor); ok dtucker@
Damien Miller3739c8f2013-01-09 15:57:16 +11001053 - djm@cvs.openbsd.org 2013/01/03 12:49:01
1054 [PROTOCOL]
1055 fix description of MAC calculation for EtM modes; ok markus@
Damien Miller502ab0e2013-01-09 15:57:36 +11001056 - djm@cvs.openbsd.org 2013/01/03 12:54:49
1057 [sftp-server.8 sftp-server.c]
1058 allow specification of an alternate start directory for sftp-server(8)
1059 "I like this" markus@
Damien Millerec77c952013-01-09 15:58:00 +11001060 - djm@cvs.openbsd.org 2013/01/03 23:22:58
1061 [ssh-keygen.c]
1062 allow fingerprinting of keys hosted in PKCS#11 tokens: ssh-keygen -lD ...
1063 ok markus@
Damien Milleraa7ad302013-01-09 15:58:21 +11001064 - jmc@cvs.openbsd.org 2013/01/04 19:26:38
1065 [sftp-server.8 sftp-server.c]
1066 sftp-server.8: add argument name to -d
1067 sftp-server.c: add -d to usage()
1068 ok djm
Damien Miller1d75abf2013-01-09 16:12:19 +11001069 - markus@cvs.openbsd.org 2013/01/08 18:49:04
1070 [PROTOCOL authfile.c cipher.c cipher.h kex.c kex.h monitor_wrap.c]
1071 [myproposal.h packet.c ssh_config.5 sshd_config.5]
1072 support AES-GCM as defined in RFC 5647 (but with simpler KEX handling)
1073 ok and feedback djm@
Damien Miller1422c082013-01-09 16:44:54 +11001074 - djm@cvs.openbsd.org 2013/01/09 05:40:17
1075 [ssh-keygen.c]
1076 correctly initialise fingerprint type for fingerprinting PKCS#11 keys
Damien Millerd522c682013-01-09 16:42:47 +11001077 - (djm) [cipher.c configure.ac openbsd-compat/openssl-compat.h]
1078 Fix merge botch, automatically detect AES-GCM in OpenSSL, move a little
1079 cipher compat code to openssl-compat.h
Damien Miller4e14a582013-01-09 15:54:48 +11001080
Darren Tucker0fc77292012-12-17 15:59:42 +1100108120121217
1082 - (dtucker) [Makefile.in] Add some scaffolding so that the new regress
1083 tests will work with VPATH directories.
1084
Damien Miller8c05da32012-12-13 07:18:59 +1100108520121213
1086 - (djm) OpenBSD CVS Sync
1087 - markus@cvs.openbsd.org 2012/12/12 16:45:52
1088 [packet.c]
1089 reset incoming_packet buffer for each new packet in EtM-case, too;
1090 this happens if packets are parsed only parially (e.g. ignore
1091 messages sent when su/sudo turn off echo); noted by sthen/millert
Damien Miller25a02b02012-12-13 08:18:56 +11001092 - naddy@cvs.openbsd.org 2012/12/12 16:46:10
1093 [cipher.c]
1094 use OpenSSL's EVP_aes_{128,192,256}_ctr() API and remove our hand-rolled
1095 counter mode code; ok djm@
1096 - (djm) [configure.ac cipher-ctr.c] Adapt EVP AES CTR change to retain our
1097 compat code for older OpenSSL
Damien Miller13cbff12012-12-13 08:25:07 +11001098 - (djm) [cipher.c] Fix missing prototype for compat code
Damien Miller8c05da32012-12-13 07:18:59 +11001099
Damien Miller6a1937e2012-12-12 10:44:38 +1100110020121212
1101 - (djm) OpenBSD CVS Sync
1102 - markus@cvs.openbsd.org 2012/12/11 22:16:21
1103 [monitor.c]
1104 drain the log messages after receiving the keystate from the unpriv
1105 child. otherwise it might block while sending. ok djm@
Damien Milleraf43a7a2012-12-12 10:46:31 +11001106 - markus@cvs.openbsd.org 2012/12/11 22:31:18
1107 [PROTOCOL authfile.c cipher.c cipher.h kex.h mac.c myproposal.h]
1108 [packet.c ssh_config.5 sshd_config.5]
1109 add encrypt-then-mac (EtM) modes to openssh by defining new mac algorithms
1110 that change the packet format and compute the MAC over the encrypted
1111 message (including the packet size) instead of the plaintext data;
1112 these EtM modes are considered more secure and used by default.
1113 feedback and ok djm@
Damien Miller74f13bd2012-12-12 10:46:53 +11001114 - sthen@cvs.openbsd.org 2012/12/11 22:51:45
1115 [mac.c]
1116 fix typo, s/tem/etm in hmac-ripemd160-tem. ok markus@
Damien Miller1a45b632012-12-12 10:52:07 +11001117 - markus@cvs.openbsd.org 2012/12/11 22:32:56
1118 [regress/try-ciphers.sh]
1119 add etm modes
Damien Miller1fb593a2012-12-12 10:54:37 +11001120 - markus@cvs.openbsd.org 2012/12/11 22:42:11
1121 [regress/Makefile regress/modpipe.c regress/integrity.sh]
1122 test the integrity of the packets; with djm@
Damien Millerec7ce9a2012-12-12 10:55:32 +11001123 - markus@cvs.openbsd.org 2012/12/11 23:12:13
1124 [try-ciphers.sh]
1125 add hmac-ripemd160-etm@openssh.com
Damien Miller37834af2012-12-12 11:00:37 +11001126 - (djm) [mac.c] fix merge botch
Damien Miller37461d72012-12-12 12:37:32 +11001127 - (djm) [regress/Makefile regress/integrity.sh] Make the integrity.sh test
1128 work on platforms without 'jot'
1129 - (djm) [regress/integrity.sh] Fix awk quoting, packet length skip
Damien Millerfaabeb62012-12-12 12:51:54 +11001130 - (djm) [regress/Makefile] fix t-exec rule
Damien Miller6a1937e2012-12-12 10:44:38 +11001131
Darren Tucker3dfb8772012-12-07 13:03:10 +1100113220121207
1133 - (dtucker) OpenBSD CVS Sync
1134 - dtucker@cvs.openbsd.org 2012/12/06 06:06:54
1135 [regress/keys-command.sh]
1136 Fix some problems with the keys-command test:
1137 - use string comparison rather than numeric comparison
1138 - check for existing KEY_COMMAND file and don't clobber if it exists
1139 - clean up KEY_COMMAND file if we do create it.
1140 - check that KEY_COMMAND is executable (which it won't be if eg /var/run
1141 is mounted noexec).
1142 ok djm.
Darren Tuckerf9333d52012-12-07 13:06:13 +11001143 - jmc@cvs.openbsd.org 2012/12/03 08:33:03
1144 [ssh-add.1 sshd_config.5]
1145 tweak previous;
Darren Tucker8a965222012-12-07 13:07:02 +11001146 - markus@cvs.openbsd.org 2012/12/05 15:42:52
1147 [ssh-add.c]
1148 prevent double-free of comment; ok djm@
Darren Tucker3e1027c2012-12-07 13:07:46 +11001149 - dtucker@cvs.openbsd.org 2012/12/07 01:51:35
1150 [serverloop.c]
1151 Cast signal to int for logging. A no-op on openbsd (they're always ints)
1152 but will prevent warnings in portable. ok djm@
Darren Tucker3dfb8772012-12-07 13:03:10 +11001153
Tim Rice96ce9a12012-12-04 07:50:03 -0800115420121205
1155 - (tim) [defines.h] Some platforms are missing ULLONG_MAX. Feedback djm@.
1156
Damien Millercf6ef132012-12-03 09:37:56 +1100115720121203
1158 - (djm) [openbsd-compat/sys-queue.h] Sync with OpenBSD to get
1159 TAILQ_FOREACH_SAFE needed for upcoming changes.
Damien Millercb6b68b2012-12-03 09:49:52 +11001160 - (djm) OpenBSD CVS Sync
1161 - djm@cvs.openbsd.org 2012/12/02 20:26:11
1162 [ssh_config.5 sshconnect2.c]
1163 Make IdentitiesOnly apply to keys obtained from a PKCS11Provider.
1164 This allows control of which keys are offered from tokens using
1165 IdentityFile. ok markus@
Damien Miller33a81362012-12-03 09:50:24 +11001166 - djm@cvs.openbsd.org 2012/12/02 20:42:15
1167 [ssh-add.1 ssh-add.c]
1168 make deleting explicit keys "ssh-add -d" symmetric with adding keys -
1169 try to delete the corresponding certificate too and respect the -k option
1170 to allow deleting of the key only; feedback and ok markus@
Damien Milleraa5b3f82012-12-03 09:50:54 +11001171 - djm@cvs.openbsd.org 2012/12/02 20:46:11
1172 [auth-options.c channels.c servconf.c servconf.h serverloop.c session.c]
1173 [sshd_config.5]
1174 make AllowTcpForwarding accept "local" and "remote" in addition to its
1175 current "yes"/"no" to allow the server to specify whether just local or
1176 remote TCP forwarding is enabled. ok markus@
Damien Millerfa51d8b2012-12-03 10:08:25 +11001177 - dtucker@cvs.openbsd.org 2012/10/05 02:20:48
1178 [regress/cipher-speed.sh regress/try-ciphers.sh]
1179 Add umac-128@openssh.com to the list of MACs to be tested
Damien Miller6618e922012-12-03 10:09:04 +11001180 - djm@cvs.openbsd.org 2012/10/19 05:10:42
1181 [regress/cert-userkey.sh]
1182 include a serial number when generating certs
Damien Miller771c43c2012-12-03 10:12:13 +11001183 - djm@cvs.openbsd.org 2012/11/22 22:49:30
1184 [regress/Makefile regress/keys-command.sh]
1185 regress for AuthorizedKeysCommand; hints from markus@
Damien Miller999bd2d2012-12-03 10:13:39 +11001186 - djm@cvs.openbsd.org 2012/12/02 20:47:48
1187 [Makefile regress/forward-control.sh]
1188 regress for AllowTcpForwarding local/remote; ok markus@
Damien Miller55aca022012-12-03 11:25:30 +11001189 - djm@cvs.openbsd.org 2012/12/03 00:14:06
1190 [auth2-chall.c ssh-keygen.c]
1191 Fix compilation with -Wall -Werror (trivial type fixes)
Damien Miller03af12e2012-12-03 11:55:53 +11001192 - (djm) [configure.ac] Turn on -g for gcc compilers. Helps pre-installation
1193 debugging. ok dtucker@
Damien Miller8b489822012-12-03 12:35:55 +11001194 - (djm) [configure.ac] Revert previous. configure.ac already does this
1195 for us.
Damien Millercf6ef132012-12-03 09:37:56 +11001196
Damien Miller1e854692012-11-14 19:04:02 +1100119720121114
1198 - (djm) OpenBSD CVS Sync
1199 - djm@cvs.openbsd.org 2012/11/14 02:24:27
1200 [auth2-pubkey.c]
1201 fix username passed to helper program
1202 prepare stdio fds before closefrom()
1203 spotted by landry@
Damien Miller6f3b3622012-11-14 19:04:33 +11001204 - djm@cvs.openbsd.org 2012/11/14 02:32:15
1205 [ssh-keygen.c]
1206 allow the full range of unsigned serial numbers; 'fine' deraadt@
Damien Miller15b05cf2012-12-03 09:53:20 +11001207 - djm@cvs.openbsd.org 2012/12/02 20:34:10
1208 [auth.c auth.h auth1.c auth2-chall.c auth2-gss.c auth2-jpake.c auth2.c]
1209 [monitor.c monitor.h]
1210 Fixes logging of partial authentication when privsep is enabled
1211 Previously, we recorded "Failed xxx" since we reset authenticated before
1212 calling auth_log() in auth2.c. This adds an explcit "Partial" state.
1213
1214 Add a "submethod" to auth_log() to report which submethod is used
1215 for keyboard-interactive.
1216
1217 Fix multiple authentication when one of the methods is
1218 keyboard-interactive.
1219
1220 ok markus@
Damien Millerd27a0262012-12-03 10:06:37 +11001221 - dtucker@cvs.openbsd.org 2012/10/05 02:05:30
1222 [regress/multiplex.sh]
1223 Use 'kill -0' to test for the presence of a pid since it's more portable
Damien Miller1e854692012-11-14 19:04:02 +11001224
Damien Millerd5c3d4c2012-11-07 08:35:38 +1100122520121107
1226 - (djm) OpenBSD CVS Sync
1227 - eric@cvs.openbsd.org 2011/11/28 08:46:27
1228 [moduli.5]
1229 fix formula
1230 ok djm@
Damien Miller0120c412012-11-07 08:36:00 +11001231 - jmc@cvs.openbsd.org 2012/09/26 17:34:38
1232 [moduli.5]
1233 last stage of rfc changes, using consistent Rs/Re blocks, and moving the
1234 references into a STANDARDS section;
Damien Millerd5c3d4c2012-11-07 08:35:38 +11001235
Darren Tuckerf96ff182012-11-05 17:04:37 +1100123620121105
1237 - (dtucker) [uidswap.c openbsd-compat/Makefile.in
1238 openbsd-compat/bsd-setres_id.c openbsd-compat/bsd-setres_id.h
1239 openbsd-compat/openbsd-compat.h] Move the fallback code for setting uids
1240 and gids from uidswap.c to the compat library, which allows it to work with
1241 the new setresuid calls in auth2-pubkey. with tim@, ok djm@
Darren Tucker737f7af2012-11-05 17:07:43 +11001242 - (dtucker) [auth2-pubkey.c] wrap paths.h in an ifdef for platforms that
1243 don't have it. Spotted by tim@.
Darren Tuckerf96ff182012-11-05 17:04:37 +11001244
Damien Millerf33580e2012-11-04 22:22:52 +1100124520121104
1246 - (djm) OpenBSD CVS Sync
1247 - jmc@cvs.openbsd.org 2012/10/31 08:04:50
1248 [sshd_config.5]
1249 tweak previous;
Damien Millerd0d10992012-11-04 22:23:14 +11001250 - djm@cvs.openbsd.org 2012/11/04 10:38:43
1251 [auth2-pubkey.c sshd.c sshd_config.5]
1252 Remove default of AuthorizedCommandUser. Administrators are now expected
1253 to explicitly specify a user. feedback and ok markus@
Damien Millera6e3f012012-11-04 23:21:40 +11001254 - djm@cvs.openbsd.org 2012/11/04 11:09:15
1255 [auth.h auth1.c auth2.c monitor.c servconf.c servconf.h sshd.c]
1256 [sshd_config.5]
1257 Support multiple required authentication via an AuthenticationMethods
1258 option. This option lists one or more comma-separated lists of
1259 authentication method names. Successful completion of all the methods in
1260 any list is required for authentication to complete;
1261 feedback and ok markus@
Damien Millerf33580e2012-11-04 22:22:52 +11001262
Damien Miller07daed52012-10-31 08:57:55 +1100126320121030
1264 - (djm) OpenBSD CVS Sync
1265 - markus@cvs.openbsd.org 2012/10/05 12:34:39
1266 [sftp.c]
1267 fix signed vs unsigned warning; feedback & ok: djm@
Damien Miller09d3e122012-10-31 08:58:58 +11001268 - djm@cvs.openbsd.org 2012/10/30 21:29:55
1269 [auth-rsa.c auth.c auth.h auth2-pubkey.c servconf.c servconf.h]
1270 [sshd.c sshd_config sshd_config.5]
1271 new sshd_config option AuthorizedKeysCommand to support fetching
1272 authorized_keys from a command in addition to (or instead of) from
1273 the filesystem. The command is run as the target server user unless
1274 another specified via a new AuthorizedKeysCommandUser option.
1275
1276 patch originally by jchadima AT redhat.com, reworked by me; feedback
1277 and ok markus@
Damien Miller07daed52012-10-31 08:57:55 +11001278
Tim Ricec0e5cbe2012-10-18 21:38:58 -0700127920121019
1280 - (tim) [buildpkg.sh.in] Double up on some backslashes so they end up in
1281 the generated file as intended.
1282
Darren Tucker0af24052012-10-05 10:41:25 +1000128320121005
1284 - (dtucker) OpenBSD CVS Sync
1285 - djm@cvs.openbsd.org 2012/09/17 09:54:44
1286 [sftp.c]
1287 an XXX for later
Darren Tucker302889a2012-10-05 10:42:53 +10001288 - markus@cvs.openbsd.org 2012/09/17 13:04:11
1289 [packet.c]
1290 clear old keys on rekeing; ok djm
Darren Tucker063018d2012-10-05 10:43:58 +10001291 - dtucker@cvs.openbsd.org 2012/09/18 10:36:12
1292 [sftp.c]
1293 Add bounds check on sftp tab-completion. Part of a patch from from
1294 Jean-Marc Robert via tech@, ok djm
Darren Tucker191fcc62012-10-05 10:45:01 +10001295 - dtucker@cvs.openbsd.org 2012/09/21 10:53:07
1296 [sftp.c]
1297 Fix improper handling of absolute paths when PWD is part of the completed
1298 path. Patch from Jean-Marc Robert via tech@, ok djm.
Darren Tucker17146d32012-10-05 10:46:16 +10001299 - dtucker@cvs.openbsd.org 2012/09/21 10:55:04
1300 [sftp.c]
1301 Fix handling of filenames containing escaped globbing characters and
1302 escape "#" and "*". Patch from Jean-Marc Robert via tech@, ok djm.
Darren Tucker628a3fd2012-10-05 10:50:15 +10001303 - jmc@cvs.openbsd.org 2012/09/26 16:12:13
1304 [ssh.1]
1305 last stage of rfc changes, using consistent Rs/Re blocks, and moving the
1306 references into a STANDARDS section;
Darren Tucker3a7c0412012-10-05 10:51:59 +10001307 - naddy@cvs.openbsd.org 2012/10/01 13:59:51
1308 [monitor_wrap.c]
1309 pasto; ok djm@
Darren Tucker0dc283b2012-10-05 10:52:51 +10001310 - djm@cvs.openbsd.org 2012/10/02 07:07:45
1311 [ssh-keygen.c]
1312 fix -z option, broken in revision 1.215
Darren Tucker427e4092012-10-05 11:02:39 +10001313 - markus@cvs.openbsd.org 2012/10/04 13:21:50
1314 [myproposal.h ssh_config.5 umac.h sshd_config.5 ssh.1 sshd.8 mac.c]
1315 add umac128 variant; ok djm@ at n2k12
Darren Tucker189e5ba2012-10-05 11:41:52 +10001316 - dtucker@cvs.openbsd.org 2012/09/06 04:11:07
1317 [regress/try-ciphers.sh]
1318 Restore missing space. (Id sync only).
Darren Tucker6fc5aa82012-10-05 11:43:57 +10001319 - dtucker@cvs.openbsd.org 2012/09/09 11:51:25
1320 [regress/multiplex.sh]
1321 Add test for ssh -Ostop
Darren Tucker9b2c0362012-10-05 11:45:39 +10001322 - dtucker@cvs.openbsd.org 2012/09/10 00:49:21
1323 [regress/multiplex.sh]
1324 Log -O cmd output to the log file and make logging consistent with the
1325 other tests. Test clean shutdown of an existing channel when testing
1326 "stop".
Darren Tuckeree4ad772012-10-05 12:04:10 +10001327 - dtucker@cvs.openbsd.org 2012/09/10 01:51:19
1328 [regress/multiplex.sh]
1329 use -Ocheck and waiting for completions by PID to make multiplexing test
1330 less racy and (hopefully) more reliable on slow hardware.
Darren Tucker992faad2012-10-05 11:38:24 +10001331 - [Makefile umac.c] Add special-case target to build umac128.o.
Darren Tucker50ce4472012-10-05 12:11:33 +10001332 - [umac.c] Enforce allowed umac output sizes. From djm@.
Darren Tuckercc8e9ff2012-10-05 15:41:06 +10001333 - [Makefile.in] "Using $< in a non-suffix rule context is a GNUmake idiom".
Darren Tucker0af24052012-10-05 10:41:25 +10001334
Darren Tuckerbb6cc072012-09-17 13:25:06 +1000133520120917
1336 - (dtucker) OpenBSD CVS Sync
1337 - dtucker@cvs.openbsd.org 2012/09/13 23:37:36
1338 [servconf.c]
1339 Fix comment line length
Darren Tucker26b9e3b2012-09-17 13:25:44 +10001340 - markus@cvs.openbsd.org 2012/09/14 16:51:34
1341 [sshconnect.c]
1342 remove unused variable
Darren Tuckerbb6cc072012-09-17 13:25:06 +10001343
Darren Tucker92a39cf2012-09-07 11:20:20 +1000134420120907
1345 - (dtucker) OpenBSD CVS Sync
1346 - dtucker@cvs.openbsd.org 2012/09/06 09:50:13
1347 [clientloop.c]
1348 Make the escape command help (~?) context sensitive so that only commands
1349 that will work in the current session are shown. ok markus@
Darren Tucker83d0af62012-09-07 11:21:03 +10001350 - jmc@cvs.openbsd.org 2012/09/06 13:57:42
1351 [ssh.1]
1352 missing letter in previous;
Darren Tuckerf111d402012-09-07 11:21:42 +10001353 - dtucker@cvs.openbsd.org 2012/09/07 00:30:19
1354 [clientloop.c]
1355 Print '^Z' instead of a raw ^Z when the sequence is not supported. ok djm@
Darren Tuckerca0d0fd2012-09-07 11:22:24 +10001356 - dtucker@cvs.openbsd.org 2012/09/07 01:10:21
1357 [clientloop.c]
1358 Merge escape help text for ~v and ~V; ok djm@
Darren Tucker48bf4b02012-09-07 16:38:53 +10001359 - dtucker@cvs.openbsd.org 2012/09/07 06:34:21
1360 [clientloop.c]
1361 when muxmaster is run with -N, make it shut down gracefully when a client
1362 sends it "-O stop" rather than hanging around (bz#1985). ok djm@
Darren Tucker92a39cf2012-09-07 11:20:20 +10001363
Darren Tucker3ee50c52012-09-06 21:18:11 +1000136420120906
1365 - (dtucker) OpenBSD CVS Sync
1366 - jmc@cvs.openbsd.org 2012/08/15 18:25:50
1367 [ssh-keygen.1]
1368 a little more info on certificate validity;
1369 requested by Ross L Richardson, and provided by djm
Darren Tucker66cb0e02012-09-06 21:19:05 +10001370 - dtucker@cvs.openbsd.org 2012/08/17 00:45:45
1371 [clientloop.c clientloop.h mux.c]
1372 Force a clean shutdown of ControlMaster client sessions when the ~. escape
1373 sequence is used. This means that ~. should now work in mux clients even
1374 if the server is no longer responding. Found by tedu, ok djm.
Darren Tuckerae608bd2012-09-06 21:19:51 +10001375 - djm@cvs.openbsd.org 2012/08/17 01:22:56
1376 [kex.c]
1377 add some comments about better handling first-KEX-follows notifications
1378 from the server. Nothing uses these right now. No binary change
Darren Tuckerf09a8a62012-09-06 21:20:39 +10001379 - djm@cvs.openbsd.org 2012/08/17 01:25:58
1380 [ssh-keygen.c]
1381 print details of which host lines were deleted when using
1382 "ssh-keygen -R host"; ok markus@
Darren Tucker00c15182012-09-06 21:21:56 +10001383 - djm@cvs.openbsd.org 2012/08/17 01:30:00
1384 [compat.c sshconnect.c]
1385 Send client banner immediately, rather than waiting for the server to
1386 move first for SSH protocol 2 connections (the default). Patch based on
1387 one in bz#1999 by tls AT panix.com, feedback dtucker@ ok markus@
Darren Tucker50a48d02012-09-06 21:25:37 +10001388 - dtucker@cvs.openbsd.org 2012/09/06 04:37:39
1389 [clientloop.c log.c ssh.1 log.h]
1390 Add ~v and ~V escape sequences to raise and lower the logging level
1391 respectively. Man page help from jmc, ok deraadt jmc
Darren Tucker3ee50c52012-09-06 21:18:11 +10001392
Darren Tucker23e4b802012-08-30 10:42:47 +1000139320120830
1394 - (dtucker) [moduli] Import new moduli file.
1395
Darren Tucker31854182012-08-28 19:57:19 +1000139620120828
Damien Miller4eb0a532012-08-29 10:26:20 +10001397 - (djm) Release openssh-6.1
1398
139920120828
Darren Tucker31854182012-08-28 19:57:19 +10001400 - (dtucker) [openbsd-compat/bsd-cygwin_util.h] define WIN32_LEAN_AND_MEAN
1401 for compatibility with future mingw-w64 headers. Patch from vinschen at
1402 redhat com.
1403
Damien Miller39a9d2c2012-08-22 21:57:13 +1000140420120822
1405 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1406 [contrib/suse/openssh.spec] Update version numbers
1407
Damien Miller709a1e92012-07-31 12:20:43 +1000140820120731
1409 - (djm) OpenBSD CVS Sync
1410 - jmc@cvs.openbsd.org 2012/07/06 06:38:03
1411 [ssh-keygen.c]
1412 missing full stop in usage();
Damien Miller5a5c2b92012-07-31 12:21:34 +10001413 - djm@cvs.openbsd.org 2012/07/10 02:19:15
1414 [servconf.c servconf.h sshd.c sshd_config]
1415 Turn on systrace sandboxing of pre-auth sshd by default for new installs
1416 by shipping a config that overrides the current UsePrivilegeSeparation=yes
1417 default. Make it easier to flip the default in the future by adding too.
Damien Miller1cce1032012-07-31 12:22:18 +10001418 prodded markus@ feedback dtucker@ "get it in" deraadt@
Damien Miller46cb75a2012-07-31 12:22:37 +10001419 - dtucker@cvs.openbsd.org 2012/07/13 01:35:21
1420 [servconf.c]
1421 handle long comments in config files better. bz#2025, ok markus
Damien Miller38fe6622012-07-31 12:23:16 +10001422 - markus@cvs.openbsd.org 2012/07/22 18:19:21
1423 [version.h]
1424 openssh 6.1
Damien Miller709a1e92012-07-31 12:20:43 +10001425
Darren Tuckerd809a4b2012-07-20 10:42:06 +1000142620120720
1427 - (dtucker) Import regened moduli file.
1428
Damien Millera0433a72012-07-06 10:27:10 +1000142920120706
1430 - (djm) [sandbox-seccomp-filter.c] fallback to rlimit if seccomp filter is
1431 not available. Allows use of sshd compiled on host with a filter-capable
1432 kernel on hosts that lack the support. bz#2011 ok dtucker@
Damien Miller77eab7b2012-07-06 11:49:28 +10001433 - (djm) [configure.ac] Recursively expand $(bindir) to ensure it has no
1434 unexpanded $(prefix) embedded. bz#2007 patch from nix-corp AT
1435 esperi.org.uk; ok dtucker@
Damien Millerdfceafe2012-07-06 13:44:19 +10001436- (djm) OpenBSD CVS Sync
1437 - dtucker@cvs.openbsd.org 2012/07/06 00:41:59
1438 [moduli.c ssh-keygen.1 ssh-keygen.c]
1439 Add options to specify starting line number and number of lines to process
1440 when screening moduli candidates. This allows processing of different
1441 parts of a candidate moduli file in parallel. man page help jmc@, ok djm@
Damien Millerab523b02012-07-06 13:44:43 +10001442 - djm@cvs.openbsd.org 2012/07/06 01:37:21
1443 [mux.c]
1444 fix memory leak of passed-in environment variables and connection
1445 context when new session message is malformed; bz#2003 from Bert.Wesarg
1446 AT googlemail.com
Damien Millerfff9f092012-07-06 13:45:01 +10001447 - djm@cvs.openbsd.org 2012/07/06 01:47:38
1448 [ssh.c]
1449 move setting of tty_flag to after config parsing so RequestTTY options
1450 are correctly picked up. bz#1995 patch from przemoc AT gmail.com;
1451 ok dtucker@
Damien Millera0433a72012-07-06 10:27:10 +10001452
Darren Tucker34f702a2012-07-04 08:50:09 +1000145320120704
1454 - (dtucker) [configure.ac openbsd-compat/bsd-misc.h] Add setlinebuf for
1455 platforms that don't have it. "looks good" tim@
1456
Darren Tucker60395f92012-07-03 14:31:18 +1000145720120703
1458 - (dtucker) [configure.ac] Detect platforms that can't use select(2) with
1459 setrlimit(RLIMIT_NOFILE, rl_zero) and disable the rlimit sandbox on those.
Darren Tuckerd545a4b2012-07-03 22:48:31 +10001460 - (dtucker) [configure.ac sandbox-rlimit.c] Test whether or not
1461 setrlimit(RLIMIT_FSIZE, rl_zero) and skip it if it's not supported. Its
1462 benefit is minor, so it's not worth disabling the sandbox if it doesn't
1463 work.
Darren Tucker60395f92012-07-03 14:31:18 +10001464
Darren Tuckerecbf14a2012-07-02 18:53:37 +1000146520120702
1466- (dtucker) OpenBSD CVS Sync
1467 - naddy@cvs.openbsd.org 2012/06/29 13:57:25
1468 [ssh_config.5 sshd_config.5]
1469 match the documented MAC order of preference to the actual one;
1470 ok dtucker@
Darren Tucker3b4b2d32012-07-02 18:54:31 +10001471 - markus@cvs.openbsd.org 2012/06/30 14:35:09
1472 [sandbox-systrace.c sshd.c]
1473 fix a during the load of the sandbox policies (child can still make
1474 the read-syscall and wait forever for systrace-answers) by replacing
1475 the read/write synchronisation with SIGSTOP/SIGCONT;
1476 report and help hshoexer@; ok djm@, dtucker@
Darren Tucker7b305012012-07-02 18:55:09 +10001477 - dtucker@cvs.openbsd.org 2012/07/02 08:50:03
1478 [ssh.c]
1479 set interactive ToS for forwarded X11 sessions. ok djm@
Darren Tucker4908d442012-07-02 22:15:38 +10001480 - dtucker@cvs.openbsd.org 2012/07/02 12:13:26
1481 [ssh-pkcs11-helper.c sftp-client.c]
1482 fix a couple of "assigned but not used" warnings. ok markus@
Darren Tucker369ceed2012-07-03 00:53:18 +10001483 - dtucker@cvs.openbsd.org 2012/07/02 14:37:06
1484 [regress/connect-privsep.sh]
1485 remove exit from end of test since it prevents reporting failure
Darren Tuckerec1e15d2012-07-03 01:06:49 +10001486 - (dtucker) [regress/reexec.sh regress/sftp-cmds.sh regress/test-exec.sh]
1487 Move cygwin detection to test-exec and use to skip reexec test on cygwin.
Darren Tucker6ea5dc62012-07-03 01:11:28 +10001488 - (dtucker) [regress/test-exec.sh] Correct uname for cygwin/w2k.
Darren Tuckerecbf14a2012-07-02 18:53:37 +10001489
Damien Miller97f43bb2012-06-30 08:32:29 +1000149020120629
1491 - OpenBSD CVS Sync
1492 - dtucker@cvs.openbsd.org 2012/06/21 00:16:07
1493 [addrmatch.c]
1494 fix strlcpy truncation check. from carsten at debian org, ok markus
Damien Miller5f58a872012-06-30 08:33:17 +10001495 - dtucker@cvs.openbsd.org 2012/06/22 12:30:26
1496 [monitor.c sshconnect2.c]
1497 remove dead code following 'for (;;)' loops.
1498 From Steve.McClellan at radisys com, ok markus@
Damien Millerea858292012-06-30 08:33:32 +10001499 - dtucker@cvs.openbsd.org 2012/06/22 14:36:33
1500 [sftp.c]
1501 Remove unused variable leftover from tab-completion changes.
1502 From Steve.McClellan at radisys com, ok markus@
Damien Miller560de922012-06-30 08:33:53 +10001503 - dtucker@cvs.openbsd.org 2012/06/26 11:02:30
1504 [sandbox-systrace.c]
1505 Add mquery to the list of allowed syscalls for "UsePrivilegeSeparation
1506 sandbox" since malloc now uses it. From johnw.mail at gmail com.
Damien Millerdb4f8e82012-06-30 08:34:59 +10001507 - dtucker@cvs.openbsd.org 2012/06/28 05:07:45
1508 [mac.c myproposal.h ssh_config.5 sshd_config.5]
1509 Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs since they were removed
1510 from draft6 of the spec and will not be in the RFC when published. Patch
1511 from mdb at juniper net via bz#2023, ok markus.
Damien Milleree3c1962012-06-30 08:35:59 +10001512 - naddy@cvs.openbsd.org 2012/06/29 13:57:25
1513 [ssh_config.5 sshd_config.5]
1514 match the documented MAC order of preference to the actual one; ok dtucker@
Darren Tucker30139032012-06-30 15:01:22 +10001515 - dtucker@cvs.openbsd.org 2012/05/13 01:42:32
1516 [regress/addrmatch.sh]
1517 Add "Match LocalAddress" and "Match LocalPort" to sshd and adjust tests
1518 to match. Feedback and ok djm@ markus@.
Darren Tucker4430a862012-06-30 15:03:28 +10001519 - djm@cvs.openbsd.org 2012/06/01 00:47:35
Darren Tucker2920bc12012-06-30 15:06:28 +10001520 [regress/multiplex.sh regress/forwarding.sh]
Darren Tucker4430a862012-06-30 15:03:28 +10001521 append to rather than truncate test log; bz#2013 from openssh AT
1522 roumenpetrov.info
Darren Tuckerff32d7c2012-06-30 15:04:13 +10001523 - djm@cvs.openbsd.org 2012/06/01 00:52:52
Darren Tucker2920bc12012-06-30 15:06:28 +10001524 [regress/sftp-cmds.sh]
Darren Tuckerff32d7c2012-06-30 15:04:13 +10001525 don't delete .* on cleanup due to unintended env expansion; pointed out in
1526 bz#2014 by openssh AT roumenpetrov.info
Darren Tucker2920bc12012-06-30 15:06:28 +10001527 - dtucker@cvs.openbsd.org 2012/06/26 12:06:59
1528 [regress/connect-privsep.sh]
1529 test sandbox with every malloc option
Darren Tuckera08c2072012-06-30 15:08:53 +10001530 - dtucker@cvs.openbsd.org 2012/06/28 05:07:45
1531 [regress/try-ciphers.sh regress/cipher-speed.sh]
1532 Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs since they were removed
1533 from draft6 of the spec and will not be in the RFC when published. Patch
1534 from mdb at juniper net via bz#2023, ok markus.
Darren Tucker3886f952012-06-30 19:47:01 +10001535 - (dtucker) [myproposal.h] Remove trailing backslash to fix compile error.
Darren Tucker14a9d252012-06-30 20:05:02 +10001536 - (dtucker) [key.c] ifdef out sha256 key types on platforms that don't have
1537 the required functions in libcrypto.
Damien Miller97f43bb2012-06-30 08:32:29 +10001538
Darren Tucker8908da72012-06-28 15:21:32 +1000153920120628
1540 - (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
1541 pointer deref in the client when built with LDNS and using DNSSEC with a
1542 CNAME. Patch from gregdlg+mr at hochet info.
1543
Darren Tucker62dcd632012-06-22 22:02:42 +1000154420120622
1545 - (dtucker) [contrib/cygwin/ssh-host-config] Ensure that user sshd runs as
1546 can logon as a service. Patch from vinschen at redhat com.
1547
Damien Millerefc6fc92012-06-20 21:44:56 +1000154820120620
1549 - (djm) OpenBSD CVS Sync
1550 - djm@cvs.openbsd.org 2011/12/02 00:41:56
1551 [mux.c]
1552 fix bz#1948: ssh -f doesn't fork for multiplexed connection.
1553 ok dtucker@
Damien Miller140df632012-06-20 21:46:57 +10001554 - djm@cvs.openbsd.org 2011/12/04 23:16:12
1555 [mux.c]
1556 revert:
1557 > revision 1.32
1558 > date: 2011/12/02 00:41:56; author: djm; state: Exp; lines: +4 -1
1559 > fix bz#1948: ssh -f doesn't fork for multiplexed connection.
1560 > ok dtucker@
1561 it interacts badly with ControlPersist
Damien Millerac58ce82012-06-20 21:50:47 +10001562 - djm@cvs.openbsd.org 2012/01/07 21:11:36
1563 [mux.c]
1564 fix double-free in new session handler
1565 NB. Id sync only
Damien Miller3bde12a2012-06-20 21:51:11 +10001566 - djm@cvs.openbsd.org 2012/05/23 03:28:28
1567 [dns.c dns.h key.c key.h ssh-keygen.c]
1568 add support for RFC6594 SSHFP DNS records for ECDSA key types.
1569 patch from bugzilla-m67 AT nulld.me in bz#1978; ok + tweak markus@
Darren Tucker86dc9b42012-09-07 18:08:23 +10001570 (Original authors Ondřej Surý, Ondřej Caletka and Daniel Black)
Damien Miller7f121572012-06-20 21:51:29 +10001571 - djm@cvs.openbsd.org 2012/06/01 00:49:35
1572 [PROTOCOL.mux]
1573 correct types of port numbers (integers, not strings); bz#2004 from
1574 bert.wesarg AT googlemail.com
Damien Miller2e7decf2012-06-20 21:52:00 +10001575 - djm@cvs.openbsd.org 2012/06/01 01:01:22
1576 [mux.c]
1577 fix memory leak when mux socket creation fails; bz#2002 from bert.wesarg
1578 AT googlemail.com
Damien Miller276dcfd2012-06-20 21:52:18 +10001579 - dtucker@cvs.openbsd.org 2012/06/18 11:43:53
1580 [jpake.c]
1581 correct sizeof usage. patch from saw at online.de, ok deraadt
Damien Miller71924332012-06-20 21:52:38 +10001582 - dtucker@cvs.openbsd.org 2012/06/18 11:49:58
1583 [ssh_config.5]
1584 RSA instead of DSA twice. From Steve.McClellan at radisys com
Damien Millerb9902cf2012-06-20 21:52:58 +10001585 - dtucker@cvs.openbsd.org 2012/06/18 12:07:07
1586 [ssh.1 sshd.8]
1587 Remove mention of 'three' key files since there are now four. From
1588 Steve.McClellan at radisys com.
Damien Miller36378c62012-06-20 21:53:25 +10001589 - dtucker@cvs.openbsd.org 2012/06/18 12:17:18
1590 [ssh.1]
1591 Clarify description of -W. Noted by Steve.McClellan at radisys com,
1592 ok jmc
Damien Millerc24da772012-06-20 21:53:58 +10001593 - markus@cvs.openbsd.org 2012/06/19 18:25:28
1594 [servconf.c servconf.h sshd_config.5]
1595 sshd_config: extend Match to allow AcceptEnv and {Allow,Deny}{Users,Groups}
1596 this allows 'Match LocalPort 1022' combined with 'AllowUser bauer'
1597 ok djm@ (back in March)
Damien Millerf8268502012-06-20 21:54:15 +10001598 - jmc@cvs.openbsd.org 2012/06/19 21:35:54
1599 [sshd_config.5]
1600 tweak previous; ok markus
Damien Miller6c6da332012-06-20 22:31:26 +10001601 - djm@cvs.openbsd.org 2012/06/20 04:42:58
1602 [clientloop.c serverloop.c]
1603 initialise accept() backoff timer to avoid EINVAL from select(2) in
1604 rekeying
Damien Millerefc6fc92012-06-20 21:44:56 +10001605
Darren Tuckerd0494fd2012-05-19 14:25:39 +1000160620120519
1607 - (dtucker) [configure.ac] bz#2010: fix non-portable shell construct. Patch
1608 from cjwatson at debian org.
Darren Tucker59353892012-05-19 15:24:37 +10001609 - (dtucker) [configure.ac contrib/Makefile] bz#1996: use AC_PATH_TOOL to find
1610 pkg-config so it does the right thing when cross-compiling. Patch from
1611 cjwatson at debian org.
Darren Tuckerfbcf8272012-05-19 19:37:01 +10001612- (dtucker) OpenBSD CVS Sync
1613 - dtucker@cvs.openbsd.org 2012/05/13 01:42:32
1614 [servconf.h servconf.c sshd.8 sshd.c auth.c sshd_config.5]
1615 Add "Match LocalAddress" and "Match LocalPort" to sshd and adjust tests
1616 to match. Feedback and ok djm@ markus@.
Darren Tuckerba9ea322012-05-19 19:37:33 +10001617 - dtucker@cvs.openbsd.org 2012/05/19 06:30:30
1618 [sshd_config.5]
1619 Document PermitOpen none. bz#2001, patch from Loganaden Velvindron
Darren Tuckerd0494fd2012-05-19 14:25:39 +10001620
Darren Tuckere1a3ddf2012-05-04 11:05:45 +1000162120120504
1622 - (dtucker) [configure.ac] Include <sys/param.h> rather than <sys/types.h>
1623 to fix building on some plaforms. Fom bowman at math utah edu and
1624 des at des no.
1625
Darren Tuckerd0d3fff2012-04-27 10:55:39 +1000162620120427
1627 - (dtucker) [regress/addrmatch.sh] skip tests when running on a non-ipv6
1628 platform rather than exiting early, so that we still clean up and return
1629 success or failure to test-exec.sh
1630
Damien Miller7584cb12012-04-26 09:51:26 +1000163120120426
1632 - (djm) [auth-passwd.c] Handle crypt() returning NULL; from Paul Wouters
1633 via Niels
Damien Miller025bfd12012-04-26 09:52:15 +10001634 - (djm) [auth-krb5.c] Save errno across calls that might modify it;
1635 ok dtucker@
Damien Miller7584cb12012-04-26 09:51:26 +10001636
Damien Millerba77e1f2012-04-23 18:21:05 +1000163720120423
1638 - OpenBSD CVS Sync
1639 - djm@cvs.openbsd.org 2012/04/23 08:18:17
1640 [channels.c]
1641 fix function proto/source mismatch
1642
Damien Millera563cce2012-04-22 11:07:28 +1000164320120422
1644 - OpenBSD CVS Sync
1645 - djm@cvs.openbsd.org 2012/02/29 11:21:26
1646 [ssh-keygen.c]
1647 allow conversion of RSA1 keys to public PEM and PKCS8; "nice" markus@
Damien Miller29cd1882012-04-22 11:08:10 +10001648 - guenther@cvs.openbsd.org 2012/03/15 03:10:27
1649 [session.c]
1650 root should always be excluded from the test for /etc/nologin instead
1651 of having it always enforced even when marked as ignorenologin. This
1652 regressed when the logic was incompletely flipped around in rev 1.251
1653 ok halex@ millert@
Damien Miller48348fc2012-04-22 11:08:30 +10001654 - djm@cvs.openbsd.org 2012/03/28 07:23:22
1655 [PROTOCOL.certkeys]
1656 explain certificate extensions/crit split rationale. Mention requirement
1657 that each appear at most once per cert.
Damien Millerc6081482012-04-22 11:18:53 +10001658 - dtucker@cvs.openbsd.org 2012/03/29 23:54:36
1659 [channels.c channels.h servconf.c]
1660 Add PermitOpen none option based on patch from Loganaden Velvindron
1661 (bz #1949). ok djm@
Damien Millera6508752012-04-22 11:21:10 +10001662 - djm@cvs.openbsd.org 2012/04/11 13:16:19
1663 [channels.c channels.h clientloop.c serverloop.c]
1664 don't spin in accept() when out of fds (ENFILE/ENFILE) - back off for a
1665 while; ok deraadt@ markus@
Damien Miller9fed1612012-04-22 11:21:43 +10001666 - djm@cvs.openbsd.org 2012/04/11 13:17:54
1667 [auth.c]
1668 Support "none" as an argument for AuthorizedPrincipalsFile to indicate
1669 no file should be read.
Damien Millera116d132012-04-22 11:23:46 +10001670 - djm@cvs.openbsd.org 2012/04/11 13:26:40
1671 [sshd.c]
1672 don't spin in accept() when out of fds (ENFILE/ENFILE) - back off for a
1673 while; ok deraadt@ markus@
Damien Miller839f7432012-04-22 11:24:21 +10001674 - djm@cvs.openbsd.org 2012/04/11 13:34:17
1675 [ssh-keyscan.1 ssh-keyscan.c]
1676 now that sshd defaults to offering ECDSA keys, ssh-keyscan should also
1677 look for them by default; bz#1971
Damien Miller23528812012-04-22 11:24:43 +10001678 - djm@cvs.openbsd.org 2012/04/12 02:42:32
1679 [servconf.c servconf.h sshd.c sshd_config sshd_config.5]
1680 VersionAddendum option to allow server operators to append some arbitrary
1681 text to the SSH-... banner; ok deraadt@ "don't care" markus@
Damien Miller8fef9eb2012-04-22 11:25:10 +10001682 - djm@cvs.openbsd.org 2012/04/12 02:43:55
1683 [sshd_config sshd_config.5]
1684 mention AuthorizedPrincipalsFile=none default
Damien Miller49223152012-04-22 11:25:47 +10001685 - djm@cvs.openbsd.org 2012/04/20 03:24:23
1686 [sftp.c]
1687 setlinebuf(3) is more readable than setvbuf(.., _IOLBF, ...)
Damien Miller70b2d552012-04-22 11:26:10 +10001688 - jmc@cvs.openbsd.org 2012/04/20 16:26:22
1689 [ssh.1]
1690 use "brackets" instead of "braces", for consistency;
Damien Millera563cce2012-04-22 11:07:28 +10001691
Damien Miller8beb3202012-04-20 10:58:34 +1000169220120420
1693 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1694 [contrib/suse/openssh.spec] Update for release 6.0
Damien Millerbf230412012-04-20 14:11:04 +10001695 - (djm) [README] Update URL to release notes.
Damien Millerd5dacb42012-04-20 15:01:01 +10001696 - (djm) Release openssh-6.0
Damien Miller8beb3202012-04-20 10:58:34 +10001697
Damien Miller398c0ff2012-04-19 21:46:35 +1000169820120419
1699 - (djm) [configure.ac] Fix compilation error on FreeBSD, whose libutil
1700 contains openpty() but not login()
1701
Damien Millere0956e32012-04-04 11:27:54 +1000170220120404
1703 - (djm) [Makefile.in configure.ac sandbox-seccomp-filter.c] Add sandbox
1704 mode for Linux's new seccomp filter; patch from Will Drewry; feedback
1705 and ok dtucker@
1706
Darren Tucker67ccc862012-03-30 10:19:56 +1100170720120330
1708 - (dtucker) [contrib/redhat/openssh.spec] Bug #1992: remove now-gone WARNING
1709 file from spec file. From crighter at nuclioss com.
Damien Miller4d557342012-03-30 11:34:27 +11001710 - (djm) [entropy.c] bz#1991: relax OpenSSL version test to allow running
1711 openssh binaries on a newer fix release than they were compiled on.
1712 with and ok dtucker@
Damien Millerce1ec9d2012-03-30 14:07:05 +11001713 - (djm) [openbsd-compat/bsd-cygwin_util.h] #undef _WIN32 to avoid incorrect
1714 assumptions when building on Cygwin; patch from Corinna Vinschen
Darren Tucker67ccc862012-03-30 10:19:56 +11001715
Damien Miller7bf7b882012-03-09 10:25:16 +1100171620120309
1717 - (djm) [openbsd-compat/port-linux.c] bz#1960: fix crash on SELinux
1718 systems where sshd is run in te wrong context. Patch from Sven
1719 Vermeulen; ok dtucker@
Damien Miller54c38d22012-03-09 10:28:07 +11001720 - (djm) [packet.c] bz#1963: Fix IPQoS not being set on non-mapped v4-in-v6
1721 addressed connections. ok dtucker@
Damien Miller7bf7b882012-03-09 10:25:16 +11001722
Darren Tucker93a2d412012-02-24 10:40:41 +1100172320120224
1724 - (dtucker) [audit-bsm.c configure.ac] bug #1968: enable workarounds for BSM
1725 audit breakage in Solaris 11. Patch from Magnus Johansson.
1726
Tim Ricee3609c92012-02-14 10:03:30 -0800172720120215
1728 - (tim) [openbsd-compat/bsd-misc.h sshd.c] Fix conflicting return type for
1729 unsetenv due to rev 1.14 change to setenv.c. Cast unsetenv to void in sshd.c
1730 ok dtucker@
Tim Ricef79b5d32012-02-14 20:13:05 -08001731 - (tim) [defines.h] move chunk introduced in 1.125 before MAXPATHLEN so
1732 it actually works.
Tim Ricea3f297d2012-02-14 23:01:42 -08001733 - (tim) [regress/keytype.sh] stderr redirection needs to be inside back quote
1734 to work. Spotted by Angel Gonzalez
Tim Ricee3609c92012-02-14 10:03:30 -08001735
Damien Miller7b7901c2012-02-14 06:38:36 +1100173620120214
1737 - (djm) [openbsd-compat/bsd-cygwin_util.c] Add PROGRAMFILES to list of
1738 preserved Cygwin environment variables; from Corinna Vinschen
1739
Damien Millera2876db2012-02-11 08:16:06 +1100174020120211
1741 - (djm) OpenBSD CVS Sync
1742 - djm@cvs.openbsd.org 2012/01/05 00:16:56
1743 [monitor.c]
1744 memleak on error path
Damien Miller2ec03422012-02-11 08:16:28 +11001745 - djm@cvs.openbsd.org 2012/01/07 21:11:36
1746 [mux.c]
1747 fix double-free in new session handler
Damien Miller83ba8e62012-02-11 08:17:27 +11001748 - miod@cvs.openbsd.org 2012/01/08 13:17:11
1749 [ssh-ecdsa.c]
1750 Fix memory leak in ssh_ecdsa_verify(); from Loganaden Velvindron,
1751 ok markus@
Damien Millerfb12c6d2012-02-11 08:17:52 +11001752 - miod@cvs.openbsd.org 2012/01/16 20:34:09
1753 [ssh-pkcs11-client.c]
1754 Fix a memory leak in pkcs11_rsa_private_encrypt(), reported by Jan Klemkow.
1755 While there, be sure to buffer_clear() between send_msg() and recv_msg().
1756 ok markus@
Damien Miller8d60be52012-02-11 08:18:17 +11001757 - dtucker@cvs.openbsd.org 2012/01/18 21:46:43
1758 [clientloop.c]
1759 Ensure that $DISPLAY contains only valid characters before using it to
1760 extract xauth data so that it can't be used to play local shell
1761 metacharacter games. Report from r00t_ati at ihteam.net, ok markus.
Damien Miller1de2cfe2012-02-11 08:18:43 +11001762 - markus@cvs.openbsd.org 2012/01/25 19:26:43
1763 [packet.c]
1764 do not permit SSH2_MSG_SERVICE_REQUEST/ACCEPT during rekeying;
1765 ok dtucker@, djm@
Damien Miller5d007702012-02-11 08:19:02 +11001766 - markus@cvs.openbsd.org 2012/01/25 19:36:31
1767 [authfile.c]
1768 memleak in key_load_file(); from Jan Klemkow
Damien Miller72de9822012-02-11 08:19:21 +11001769 - markus@cvs.openbsd.org 2012/01/25 19:40:09
1770 [packet.c packet.h]
1771 packet_read_poll() is not used anymore.
Damien Millerdb854552012-02-11 08:19:44 +11001772 - markus@cvs.openbsd.org 2012/02/09 20:00:18
1773 [version.h]
1774 move from 6.0-beta to 6.0
Damien Millera2876db2012-02-11 08:16:06 +11001775
Damien Millerb56e4932012-02-06 07:41:27 +1100177620120206
1777 - (djm) [ssh-keygen.c] Don't fail in do_gen_all_hostkeys on platforms
1778 that don't support ECC. Patch from Phil Oleson
Darren Tuckere9b3ad72012-01-17 14:03:34 +11001779
Damien Miller5360dff2011-12-19 10:51:11 +1100178020111219
1781 - OpenBSD CVS Sync
1782 - djm@cvs.openbsd.org 2011/12/02 00:41:56
1783 [mux.c]
1784 fix bz#1948: ssh -f doesn't fork for multiplexed connection.
1785 ok dtucker@
Damien Millerd0e582c2011-12-19 10:51:39 +11001786 - djm@cvs.openbsd.org 2011/12/02 00:43:57
1787 [mac.c]
1788 fix bz#1934: newer OpenSSL versions will require HMAC_CTX_Init before
1789 HMAC_init (this change in policy seems insane to me)
1790 ok dtucker@
Damien Miller913ddff2011-12-19 10:52:21 +11001791 - djm@cvs.openbsd.org 2011/12/04 23:16:12
1792 [mux.c]
1793 revert:
1794 > revision 1.32
1795 > date: 2011/12/02 00:41:56; author: djm; state: Exp; lines: +4 -1
1796 > fix bz#1948: ssh -f doesn't fork for multiplexed connection.
1797 > ok dtucker@
1798 it interacts badly with ControlPersist
Damien Miller8ed4de82011-12-19 10:52:50 +11001799 - djm@cvs.openbsd.org 2011/12/07 05:44:38
1800 [auth2.c dh.c packet.c roaming.h roaming_client.c roaming_common.c]
1801 fix some harmless and/or unreachable int overflows;
1802 reported Xi Wang, ok markus@
Damien Miller5360dff2011-12-19 10:51:11 +11001803
Damien Miller47d81152011-11-25 13:53:48 +1100180420111125
1805 - OpenBSD CVS Sync
1806 - oga@cvs.openbsd.org 2011/11/16 12:24:28
1807 [sftp.c]
1808 Don't leak list in complete_cmd_parse if there are no commands found.
1809 Discovered when I was ``borrowing'' this code for something else.
1810 ok djm@
1811
Darren Tucker4a725ef2011-11-21 16:38:48 +1100181220111121
1813 - (dtucker) [configure.ac] Set _FORTIFY_SOURCE. ok djm@
1814
Darren Tucker45c66d72011-11-04 10:50:40 +1100181520111104
1816 - (dtucker) OpenBSD CVS Sync
1817 - djm@cvs.openbsd.org 2011/10/18 05:15:28
1818 [ssh.c]
1819 ssh(1): skip attempting to create ~/.ssh when -F is passed; ok markus@
Darren Tuckere68cf842011-11-04 10:51:51 +11001820 - djm@cvs.openbsd.org 2011/10/18 23:37:42
1821 [ssh-add.c]
1822 add -k to usage(); reminded by jmc@
Darren Tucker9ee09cf2011-11-04 10:52:43 +11001823 - djm@cvs.openbsd.org 2011/10/19 00:06:10
1824 [moduli.c]
1825 s/tmpfile/tmp/ to make this -Wshadow clean
Darren Tucker8a057952011-11-04 10:53:31 +11001826 - djm@cvs.openbsd.org 2011/10/19 10:39:48
1827 [umac.c]
1828 typo in comment; patch from Michael W. Bombardieri
Darren Tucker2d6665d2011-11-04 10:54:22 +11001829 - djm@cvs.openbsd.org 2011/10/24 02:10:46
1830 [ssh.c]
1831 bz#1943: unbreak stdio forwarding when ControlPersist is in user - ssh
1832 was incorrectly requesting the forward in both the control master and
1833 slave. skip requesting it in the master to fix. ok markus@
Darren Tucker9c5d5532011-11-04 10:55:24 +11001834 - djm@cvs.openbsd.org 2011/10/24 02:13:13
1835 [session.c]
1836 bz#1859: send tty break to pty master instead of (probably already
1837 closed) slave side; "looks good" markus@
Darren Tuckerbe4032b2011-11-04 11:16:06 +11001838 - dtucker@cvs.openbsd.org 011/11/04 00:09:39
1839 [moduli]
1840 regenerated moduli file; ok deraadt
Darren Tuckeraa3cbd12011-11-04 11:25:24 +11001841 - (dtucker) [INSTALL LICENCE configure.ac openbsd-compat/Makefile.in
1842 openbsd-compat/getrrsetbyname-ldns.c openbsd-compat/getrrsetbyname.c]
1843 bz 1320: Add optional support for LDNS, a BSD licensed DNS resolver library
1844 which supports DNSSEC. Patch from Simon Vallet (svallet at genoscope cns fr)
1845 with some rework from myself and djm. ok djm.
Darren Tucker45c66d72011-11-04 10:50:40 +11001846
Darren Tucker9f157ab2011-10-25 09:37:57 +1100184720111025
1848 - (dtucker) [contrib/cygwin/Makefile] Continue if installing a doc file
1849 fails. Patch from Corinna Vinschen.
1850
Damien Millerd3e69902011-10-18 16:04:57 +1100185120111018
1852 - (djm) OpenBSD CVS Sync
1853 - djm@cvs.openbsd.org 2011/10/04 14:17:32
1854 [sftp-glob.c]
1855 silence error spam for "ls */foo" in directory with files; bz#1683
Damien Miller390d0562011-10-18 16:05:19 +11001856 - dtucker@cvs.openbsd.org 2011/10/16 11:02:46
1857 [moduli.c ssh-keygen.1 ssh-keygen.c]
1858 Add optional checkpoints for moduli screening. feedback & ok deraadt
Damien Miller927d82b2011-10-18 16:05:38 +11001859 - jmc@cvs.openbsd.org 2011/10/16 15:02:41
1860 [ssh-keygen.c]
1861 put -K in the right place (usage());
Damien Miller91f3eae2011-10-18 16:05:55 +11001862 - stsp@cvs.openbsd.org 2011/10/16 15:51:39
1863 [moduli.c]
1864 add missing includes to unbreak tree; fix from rpointel
Damien Millerc51a5ab2011-10-18 16:06:14 +11001865 - djm@cvs.openbsd.org 2011/10/18 04:58:26
1866 [auth-options.c key.c]
1867 remove explict search for \0 in packet strings, this job is now done
1868 implicitly by buffer_get_cstring; ok markus
Damien Miller8f4279e2011-10-18 16:06:33 +11001869 - djm@cvs.openbsd.org 2011/10/18 05:00:48
1870 [ssh-add.1 ssh-add.c]
1871 new "ssh-add -k" option to load plain keys (skipping certificates);
1872 "looks ok" markus@
Damien Millerd3e69902011-10-18 16:04:57 +11001873
187420111001
Darren Tucker036876c2011-10-01 18:46:12 +10001875 - (dtucker) [openbsd-compat/mktemp.c] Fix compiler warning. ok djm
Darren Tucker1338b9e2011-10-02 18:57:35 +11001876 - (dtucker) OpenBSD CVS Sync
1877 - dtucker@cvs.openbsd.org 2011/09/23 00:22:04
1878 [channels.c auth-options.c servconf.c channels.h sshd.8]
1879 Add wildcard support to PermitOpen, allowing things like "PermitOpen
1880 localhost:*". bz #1857, ok djm markus.
Darren Tucker68afb8c2011-10-02 18:59:03 +11001881 - markus@cvs.openbsd.org 2011/09/23 07:45:05
1882 [mux.c readconf.h channels.h compat.h compat.c ssh.c readconf.c channels.c
1883 version.h]
1884 unbreak remote portforwarding with dynamic allocated listen ports:
1885 1) send the actual listen port in the open message (instead of 0).
1886 this allows multiple forwardings with a dynamic listen port
1887 2) update the matching permit-open entry, so we can identify where
1888 to connect to
1889 report: den at skbkontur.ru and P. Szczygielski
1890 feedback and ok djm@
Darren Tuckeraf1a60e2011-10-02 18:59:59 +11001891 - djm@cvs.openbsd.org 2011/09/25 05:44:47
1892 [auth2-pubkey.c]
1893 improve the AuthorizedPrincipalsFile debug log message to include
1894 file and line number
Darren Tucker95125e52011-10-02 19:09:07 +11001895 - dtucker@cvs.openbsd.org 2011/09/30 00:47:37
1896 [sshd.c]
1897 don't attempt privsep cleanup when not using privsep; ok markus@
Darren Tucker2e135602011-10-02 19:10:13 +11001898 - djm@cvs.openbsd.org 2011/09/30 21:22:49
1899 [sshd.c]
1900 fix inverted test that caused logspam; spotted by henning@
Darren Tucker036876c2011-10-01 18:46:12 +10001901
Damien Miller5ffe1c42011-09-29 11:11:51 +1000190220110929
1903 - (djm) [configure.ac defines.h] No need to detect sizeof(char); patch
1904 from des AT des.no
Darren Tuckerb54f50e2011-09-29 23:17:18 +10001905 - (dtucker) [configure.ac openbsd-compat/Makefile.in
1906 openbsd-compat/strnlen.c] Add strnlen to the compat library.
Damien Miller5ffe1c42011-09-29 11:11:51 +10001907
Damien Milleradd1e202011-09-23 10:38:01 +1000190820110923
Damien Milleracdf3fb2011-09-23 10:40:50 +10001909 - (djm) [openbsd-compat/getcwd.c] Remove OpenBSD rcsid marker since we no
1910 longer want to sync this file (OpenBSD uses a __getcwd syscall now, we
1911 want this longhand version)
Damien Millercd927902011-09-23 10:44:03 +10001912 - (djm) [openbsd-compat/getgrouplist.c] Remove OpenBSD rcsid marker: the
1913 upstream version is YPified and we don't want this
Damien Miller48886712011-09-23 10:56:29 +10001914 - (djm) [openbsd-compat/mktemp.c] forklift upgrade to -current version.
1915 The file was totally rewritten between what we had in tree and -current.
Damien Miller64efe962011-09-23 11:13:00 +10001916 - (djm) [openbsd-compat/sha2.c openbsd-compat/sha2.h] Remove OpenBSD rcsid
1917 marker. The upstream API has changed (function and structure names)
1918 enough to put it out of sync with other providers of this interface.
Damien Millerd1a74582011-09-23 11:26:34 +10001919 - (djm) [openbsd-compat/setenv.c] Forklift upgrade, including inclusion
1920 of static __findenv() function from upstream setenv.c
Damien Milleradd1e202011-09-23 10:38:01 +10001921 - OpenBSD CVS Sync
1922 - millert@cvs.openbsd.org 2006/05/05 15:27:38
Damien Milleracdf3fb2011-09-23 10:40:50 +10001923 [openbsd-compat/strlcpy.c]
Damien Milleradd1e202011-09-23 10:38:01 +10001924 Convert do {} while loop -> while {} for clarity. No binary change
1925 on most architectures. From Oliver Smith. OK deraadt@ and henning@
Damien Miller834e8202011-09-23 10:42:02 +10001926 - tobias@cvs.openbsd.org 2007/10/21 11:09:30
Damien Miller3e6fe872011-09-23 11:16:09 +10001927 [openbsd-compat/mktemp.c]
Damien Miller834e8202011-09-23 10:42:02 +10001928 Comment fix about time consumption of _gettemp.
1929 FreeBSD did this in revision 1.20.
1930 OK deraadt@, krw@
Damien Millerdc0e09b2011-09-23 10:46:48 +10001931 - deraadt@cvs.openbsd.org 2008/07/22 21:47:45
Damien Miller3e6fe872011-09-23 11:16:09 +10001932 [openbsd-compat/mktemp.c]
Damien Millerdc0e09b2011-09-23 10:46:48 +10001933 use arc4random_uniform(); ok djm millert
Damien Miller3a359b32011-09-23 10:47:29 +10001934 - millert@cvs.openbsd.org 2008/08/21 16:54:44
Damien Miller3e6fe872011-09-23 11:16:09 +10001935 [openbsd-compat/mktemp.c]
Damien Miller3a359b32011-09-23 10:47:29 +10001936 Remove useless code, the kernel will set errno appropriately if an
1937 element in the path does not exist. OK deraadt@ pvalchev@
Damien Miller3e6fe872011-09-23 11:16:09 +10001938 - otto@cvs.openbsd.org 2008/12/09 19:38:38
1939 [openbsd-compat/inet_ntop.c]
1940 fix inet_ntop(3) prototype; ok millert@ libc to be bumbed very soon
Damien Milleradd1e202011-09-23 10:38:01 +10001941
Damien Millere01a6272011-09-22 21:20:21 +1000194220110922
1943 - OpenBSD CVS Sync
1944 - pyr@cvs.openbsd.org 2011/05/12 07:15:10
1945 [openbsd-compat/glob.c]
1946 When the max number of items for a directory has reached GLOB_LIMIT_READDIR
1947 an error is returned but closedir() is not called.
1948 spotted and fix provided by Frank Denis obsd-tech@pureftpd.org
1949 ok otto@, millert@
Damien Millerc4bf7dd2011-09-22 21:21:48 +10001950 - stsp@cvs.openbsd.org 2011/09/20 10:18:46
1951 [glob.c]
1952 In glob(3), limit recursion during matching attempts. Similar to
1953 fnmatch fix. Also collapse consecutive '*' (from NetBSD).
1954 ok miod deraadt
Damien Millere128a502011-09-22 21:22:21 +10001955 - djm@cvs.openbsd.org 2011/09/22 06:27:29
1956 [glob.c]
1957 fix GLOB_KEEPSTAT without GLOB_NOSORT; the implicit sort was being
1958 applied only to the gl_pathv vector and not the corresponding gl_statv
1959 array. reported in OpenSSH bz#1935; feedback and okay matthew@
Damien Millerefad7272011-09-22 21:33:53 +10001960 - djm@cvs.openbsd.org 2011/08/26 01:45:15
1961 [ssh.1]
1962 Add some missing ssh_config(5) options that can be used in ssh(1)'s
1963 -o argument. Patch from duclare AT guu.fi
Damien Millere5777722011-09-22 21:34:15 +10001964 - djm@cvs.openbsd.org 2011/09/05 05:56:13
1965 [scp.1 sftp.1]
1966 mention ControlPersist and KbdInteractiveAuthentication in the -o
1967 verbiage in these pages too (prompted by jmc@)
Damien Miller2918e032011-09-22 21:34:35 +10001968 - djm@cvs.openbsd.org 2011/09/05 05:59:08
1969 [misc.c]
1970 fix typo in IPQoS parsing: there is no "AF14" class, but there is
1971 an "AF21" class. Spotted by giesen AT snickers.org; ok markus stevesk
Damien Millere0296732011-09-22 21:34:56 +10001972 - jmc@cvs.openbsd.org 2011/09/05 07:01:44
1973 [scp.1]
1974 knock out a useless Ns;
Damien Miller6232a162011-09-22 21:36:00 +10001975 - deraadt@cvs.openbsd.org 2011/09/07 02:18:31
1976 [ssh-keygen.1]
1977 typo (they vs the) found by Lawrence Teo
Damien Millerf6e758c2011-09-22 21:37:13 +10001978 - djm@cvs.openbsd.org 2011/09/09 00:43:00
1979 [ssh_config.5 sshd_config.5]
1980 fix typo in IPQoS parsing: there is no "AF14" class, but there is
1981 an "AF21" class. Spotted by giesen AT snickers.org; ok markus stevesk
Damien Miller4cb855b2011-09-22 21:37:38 +10001982 - djm@cvs.openbsd.org 2011/09/09 00:44:07
1983 [PROTOCOL.mux]
1984 MUX_C_CLOSE_FWD includes forward type in message (though it isn't
1985 implemented anyway)
Damien Miller0603d982011-09-22 21:38:00 +10001986 - djm@cvs.openbsd.org 2011/09/09 22:37:01
1987 [scp.c]
1988 suppress adding '--' to remote commandlines when the first argument
1989 does not start with '-'. saves breakage on some difficult-to-upgrade
1990 embedded/router platforms; feedback & ok dtucker ok markus
Damien Miller9ee2c602011-09-22 21:38:30 +10001991 - djm@cvs.openbsd.org 2011/09/09 22:38:21
1992 [sshd.c]
1993 kill the preauth privsep child on fatal errors in the monitor;
1994 ok markus@
Damien Millerf6dff7c2011-09-22 21:38:52 +10001995 - djm@cvs.openbsd.org 2011/09/09 22:46:44
1996 [channels.c channels.h clientloop.h mux.c ssh.c]
1997 support for cancelling local and remote port forwards via the multiplex
1998 socket. Use ssh -O cancel -L xx:xx:xx -R yy:yy:yy user@host" to request
1999 the cancellation of the specified forwardings; ok markus@
Damien Millerff773642011-09-22 21:39:48 +10002000 - markus@cvs.openbsd.org 2011/09/10 22:26:34
2001 [channels.c channels.h clientloop.c ssh.1]
2002 support cancellation of local/dynamic forwardings from ~C commandline;
2003 ok & feedback djm@
Damien Miller1bcbd0a2011-09-22 21:40:45 +10002004 - okan@cvs.openbsd.org 2011/09/11 06:59:05
2005 [ssh.1]
2006 document new -O cancel command; ok djm@
Damien Miller3decdba2011-09-22 21:41:05 +10002007 - markus@cvs.openbsd.org 2011/09/11 16:07:26
2008 [sftp-client.c]
2009 fix leaks in do_hardlink() and do_readlink(); bz#1921
2010 from Loganaden Velvindron
Damien Miller57c38ac2011-09-22 21:42:45 +10002011 - markus@cvs.openbsd.org 2011/09/12 08:46:15
2012 [sftp-client.c]
2013 fix leak in do_lsreaddir(); ok djm
Damien Millerd7be70d2011-09-22 21:43:06 +10002014 - djm@cvs.openbsd.org 2011/09/22 06:29:03
2015 [sftp.c]
2016 don't let remote_glob() implicitly sort its results in do_globbed_ls() -
2017 in all likelihood, they will be resorted anyway
Damien Millere01a6272011-09-22 21:20:21 +10002018
Darren Tuckere8a82c52011-09-09 11:29:40 +1000201920110909
2020 - (dtucker) [entropy.h] Bug #1932: remove old definition of init_rng. From
2021 Colin Watson.
2022
Damien Millerfb9d8172011-09-07 09:11:53 +1000202320110906
2024 - (djm) [README version.h] Correct version
Damien Miller022ee242011-09-07 09:15:02 +10002025 - (djm) [contrib/redhat/openssh.spec] Correct restorcon => restorecon
2026 - (djm) Respin OpenSSH-5.9p1 release
Damien Millerfb9d8172011-09-07 09:11:53 +10002027
Damien Miller86dcd3e2011-09-05 10:29:04 +1000202820110905
2029 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
2030 [contrib/suse/openssh.spec] Update version numbers.
2031
Damien Miller6efd94f2011-09-04 19:04:16 +1000203220110904
2033 - (djm) [regress/connect-privsep.sh regress/test-exec.sh] demote fatal
2034 regress errors for the sandbox to warnings. ok tim dtucker
Darren Tucker0dd24e02011-09-04 19:59:26 +10002035 - (dtucker) [ssh-keygen.c ssh-pkcs11.c] Bug #1929: add null implementations
Damien Miller86dcd3e2011-09-05 10:29:04 +10002036 ofsh-pkcs11.cpkcs_init and pkcs_terminate for building without dlopen
2037 support.
Damien Miller6efd94f2011-09-04 19:04:16 +10002038
Damien Miller58ac11a2011-08-29 16:09:52 +1000203920110829
2040 - (djm) [openbsd-compat/port-linux.c] Suppress logging when attempting
2041 to switch SELinux context away from unconfined_t, based on patch from
2042 Jan Chadima; bz#1919 ok dtucker@
2043
Darren Tucker44383542011-08-28 04:50:16 +1000204420110827
2045 - (dtucker) [auth-skey.c] Add log.h to fix build --with-skey.
2046
Tim Ricea6e60612011-08-17 21:48:22 -0700204720110818
2048 - (tim) [configure.ac] Typo in error message spotted by Andy Tsouladze
2049
Tim Ricea1226822011-08-16 17:29:01 -0700205020110817
2051 - (tim) [mac.c myproposal.h] Wrap SHA256 and SHA512 in ifdefs for
2052 OpenSSL 0.9.7. ok djm
Damien Miller9c083122011-08-17 11:31:07 +10002053 - (djm) [ openbsd-compat/bsd-cygwin_util.c openbsd-compat/bsd-cygwin_util.h]
2054 binary_pipe is no longer required on Cygwin; patch from Corinna Vinschen
Damien Miller1a91c0f2011-08-17 11:59:25 +10002055 - (djm) [configure.ac] error out if the host lacks the necessary bits for
2056 an explicitly requested sandbox type
Damien Miller44a6c932011-08-17 12:01:44 +10002057 - (djm) [contrib/ssh-copy-id] Missing backlslash; spotted by
2058 bisson AT archlinux.org
Damien Miller9231c8b2011-08-17 12:08:15 +10002059 - (djm) OpenBSD CVS Sync
2060 - dtucker@cvs.openbsd.org 2011/06/03 05:35:10
2061 [regress/cfgmatch.sh]
2062 use OBJ to find test configs, patch from Tim Rice
Damien Millerfaf4d802011-08-17 12:09:19 +10002063 - markus@cvs.openbsd.org 2011/06/30 22:44:43
2064 [regress/connect-privsep.sh]
2065 test with sandbox enabled; ok djm@
Damien Miller062fa302011-08-17 12:10:02 +10002066 - djm@cvs.openbsd.org 2011/08/02 01:23:41
2067 [regress/cipher-speed.sh regress/try-ciphers.sh]
2068 add SHA256/SHA512 based HMAC modes
Damien Miller2df1bec2011-08-17 12:25:46 +10002069 - (djm) [regress/cipher-speed.sh regress/try-ciphers.sh] disable HMAC-SHA2
2070 MAC tests for platforms that hack EVP_SHA2 support
Tim Ricea1226822011-08-16 17:29:01 -07002071
Darren Tucker4d47ec92011-08-12 10:12:53 +1000207220110812
2073 - (dtucker) [openbsd-compat/port-linux.c] Bug 1924: Improve selinux context
2074 change error by reporting old and new context names Patch from
2075 jchadima at redhat.
Damien Miller2db99772011-08-12 11:02:35 +10002076 - (djm) [contrib/redhat/openssh.spec contrib/redhat/sshd.init]
2077 [contrib/suse/openssh.spec contrib/suse/rc.sshd] Updated RHEL and SLES
Damien Millerd1eb1dd2011-08-12 11:22:47 +10002078 init scrips from imorgan AT nas.nasa.gov; bz#1920
2079 - (djm) [contrib/ssh-copy-id] Fix failure for cases where the path to the
2080 identify file contained whitespace. bz#1828 patch from gwenael.lambrouin
2081 AT gmail.com; ok dtucker@
Darren Tucker4d47ec92011-08-12 10:12:53 +10002082
Darren Tucker578451d2011-08-07 23:09:20 +1000208320110807
2084 - (dtucker) OpenBSD CVS Sync
2085 - jmc@cvs.openbsd.org 2008/06/26 06:59:39
2086 [moduli.5]
2087 tweak previous;
Darren Tuckerf2794742011-08-07 23:10:11 +10002088 - sobrado@cvs.openbsd.org 2009/10/28 08:56:54
2089 [moduli.5]
2090 "Diffie-Hellman" is the usual spelling for the cryptographic protocol
2091 first published by Whitfield Diffie and Martin Hellman in 1976.
2092 ok jmc@
Darren Tucker91e6b572011-08-07 23:10:56 +10002093 - jmc@cvs.openbsd.org 2010/10/14 20:41:28
2094 [moduli.5]
2095 probabalistic -> probabilistic; from naddy
Darren Tuckerddccfb42011-08-07 23:12:26 +10002096 - dtucker@cvs.openbsd.org 2011/08/07 12:55:30
2097 [sftp.1]
2098 typo, fix from Laurent Gautrot
Darren Tucker578451d2011-08-07 23:09:20 +10002099
Damien Miller7741ce82011-08-06 06:15:15 +1000210020110805
2101 - OpenBSD CVS Sync
2102 - djm@cvs.openbsd.org 2011/06/23 23:35:42
2103 [monitor.c]
2104 ignore EINTR errors from poll()
Damien Miller6ea5e442011-08-06 06:16:00 +10002105 - tedu@cvs.openbsd.org 2011/07/06 18:09:21
2106 [authfd.c]
2107 bzero the agent address. the kernel was for a while very cranky about
2108 these things. evne though that's fixed, always good to initialize
2109 memory. ok deraadt djm
Damien Miller35e48192011-08-06 06:16:23 +10002110 - djm@cvs.openbsd.org 2011/07/29 14:42:45
2111 [sandbox-systrace.c]
2112 fail open(2) with EPERM rather than SIGKILLing the whole process. libc
2113 will call open() to do strerror() when NLS is enabled;
2114 feedback and ok markus@
Damien Milleradb467f2011-08-06 06:16:46 +10002115 - markus@cvs.openbsd.org 2011/08/01 19:18:15
2116 [gss-serv.c]
2117 prevent post-auth resource exhaustion (int overflow leading to 4GB malloc);
2118 report Adam Zabrock; ok djm@, deraadt@
Damien Miller20bd4532011-08-06 06:17:30 +10002119 - djm@cvs.openbsd.org 2011/08/02 01:22:11
2120 [mac.c myproposal.h ssh.1 ssh_config.5 sshd.8 sshd_config.5]
2121 Add new SHA256 and SHA512 based HMAC modes from
2122 http://www.ietf.org/id/draft-dbider-sha2-mac-for-ssh-02.txt
2123 Patch from mdb AT juniper.net; feedback and ok markus@
Damien Millerc4718602011-08-06 06:17:48 +10002124 - djm@cvs.openbsd.org 2011/08/02 23:13:01
2125 [version.h]
2126 crank now, release later
Damien Miller765f8c42011-08-06 06:18:16 +10002127 - djm@cvs.openbsd.org 2011/08/02 23:15:03
2128 [ssh.c]
2129 typo in comment
Damien Miller7741ce82011-08-06 06:15:15 +10002130
Damien Millercd5e52e2011-06-27 07:18:18 +1000213120110624
2132 - (djm) [configure.ac Makefile.in sandbox-darwin.c] Add a sandbox for
2133 Darwin/OS X using sandbox_init() + setrlimit(); feedback and testing
2134 markus@
2135
Damien Miller82c55872011-06-23 08:20:30 +1000213620110623
2137 - OpenBSD CVS Sync
2138 - djm@cvs.openbsd.org 2011/06/22 21:47:28
2139 [servconf.c]
2140 reuse the multistate option arrays to pretty-print options for "sshd -T"
Damien Miller69ff1df2011-06-23 08:30:03 +10002141 - djm@cvs.openbsd.org 2011/06/22 21:57:01
2142 [servconf.c servconf.h sshd.c sshd_config.5]
2143 [configure.ac Makefile.in]
2144 introduce sandboxing of the pre-auth privsep child using systrace(4).
2145
2146 This introduces a new "UsePrivilegeSeparation=sandbox" option for
2147 sshd_config that applies mandatory restrictions on the syscalls the
2148 privsep child can perform. This prevents a compromised privsep child
2149 from being used to attack other hosts (by opening sockets and proxying)
2150 or probing local kernel attack surface.
2151
2152 The sandbox is implemented using systrace(4) in unsupervised "fast-path"
2153 mode, where a list of permitted syscalls is supplied. Any syscall not
2154 on the list results in SIGKILL being sent to the privsep child. Note
2155 that this requires a kernel with the new SYSTR_POLICY_KILL option.
2156
2157 UsePrivilegeSeparation=sandbox will become the default in the future
2158 so please start testing it now.
2159
2160 feedback dtucker@; ok markus@
Damien Miller6d7b4372011-06-23 08:31:57 +10002161 - djm@cvs.openbsd.org 2011/06/22 22:08:42
2162 [channels.c channels.h clientloop.c clientloop.h mux.c ssh.c]
2163 hook up a channel confirm callback to warn the user then requested X11
2164 forwarding was refused by the server; ok markus@
Damien Millerdcbd41e2011-06-23 19:45:51 +10002165 - djm@cvs.openbsd.org 2011/06/23 09:34:13
2166 [sshd.c ssh-sandbox.h sandbox.h sandbox-rlimit.c sandbox-systrace.c]
2167 [sandbox-null.c]
2168 rename sandbox.h => ssh-sandbox.h to make things easier for portable
Damien Miller80b62e32011-06-23 19:03:18 +10002169 - (djm) [sandbox-null.c] Dummy sandbox for platforms that don't support
2170 setrlimit(2)
Damien Miller82c55872011-06-23 08:20:30 +10002171
Damien Miller6029e072011-06-20 14:22:49 +1000217220110620
2173 - OpenBSD CVS Sync
2174 - djm@cvs.openbsd.org 2011/06/04 00:10:26
2175 [ssh_config.5]
2176 explain IdentifyFile's semantics a little better, prompted by bz#1898
2177 ok dtucker jmc
Damien Millere7ac2bd2011-06-20 14:23:25 +10002178 - markus@cvs.openbsd.org 2011/06/14 22:49:18
2179 [authfile.c]
2180 make sure key_parse_public/private_rsa1() no longer consumes its input
2181 buffer. fixes ssh-add for passphrase-protected ssh1-keys;
2182 noted by naddy@; ok djm@
Damien Miller8f0bf232011-06-20 14:42:23 +10002183 - djm@cvs.openbsd.org 2011/06/17 21:44:31
2184 [log.c log.h monitor.c monitor.h monitor_wrap.c monitor_wrap.h sshd.c]
2185 make the pre-auth privsep slave log via a socketpair shared with the
2186 monitor rather than /var/empty/dev/log; ok dtucker@ deraadt@ markus@
Damien Millerf145a5b2011-06-20 14:42:51 +10002187 - djm@cvs.openbsd.org 2011/06/17 21:46:16
2188 [sftp-server.c]
2189 the protocol version should be unsigned; bz#1913 reported by mb AT
2190 smartftp.com
Damien Miller33322122011-06-20 14:43:11 +10002191 - djm@cvs.openbsd.org 2011/06/17 21:47:35
2192 [servconf.c]
2193 factor out multi-choice option parsing into a parse_multistate label
2194 and some support structures; ok dtucker@
Damien Miller4ac99c32011-06-20 14:43:31 +10002195 - djm@cvs.openbsd.org 2011/06/17 21:57:25
2196 [clientloop.c]
2197 setproctitle for a mux master that has been gracefully stopped;
2198 bz#1911 from Bert.Wesarg AT googlemail.com
Damien Miller6029e072011-06-20 14:22:49 +10002199
Darren Tuckerc412c152011-06-03 10:35:23 +1000220020110603
2201 - (dtucker) [README version.h contrib/caldera/openssh.spec
2202 contrib/redhat/openssh.spec contrib/suse/openssh.spec] Pull the version
2203 bumps from the 5.8p2 branch into HEAD. ok djm.
Tim Rice90f42b02011-06-02 18:17:49 -07002204 - (tim) [configure.ac defines.h] Run test program to detect system mail
2205 directory. Add --with-maildir option to override. Fixed OpenServer 6
2206 getting it wrong. Fixed many systems having MAIL=/var/mail//username
2207 ok dtucker
Darren Tuckerc3c72272011-06-03 11:20:06 +10002208 - (dtucker) [monitor.c] Remove the !HAVE_SOCKETPAIR case. We use socketpair
2209 unconditionally in other places and the survey data we have does not show
2210 any systems that use it. "nuke it" djm@
Damien Millerc09182f2011-06-03 12:11:38 +10002211 - (djm) [configure.ac] enable setproctitle emulation for OS X
2212 - (djm) OpenBSD CVS Sync
Damien Millerea2c1a42011-06-03 12:10:22 +10002213 - djm@cvs.openbsd.org 2011/06/03 00:54:38
2214 [ssh.c]
2215 bz#1883 - setproctitle() to identify mux master; patch from Bert.Wesarg
2216 AT googlemail.com; ok dtucker@
2217 NB. includes additional portability code to enable setproctitle emulation
2218 on platforms that don't support it.
Darren Tucker3e78a512011-06-03 14:14:16 +10002219 - dtucker@cvs.openbsd.org 2011/06/03 01:37:40
2220 [ssh-agent.c]
2221 Check current parent process ID against saved one to determine if the parent
2222 has exited, rather than attempting to send a zero signal, since the latter
2223 won't work if the parent has changed privs. bz#1905, patch from Daniel Kahn
2224 Gillmor, ok djm@
Darren Tucker260c8fb2011-06-03 14:17:27 +10002225 - dtucker@cvs.openbsd.org 2011/05/31 02:01:58
2226 [regress/dynamic-forward.sh]
2227 back out revs 1.6 and 1.5 since it's not reliable
Darren Tucker75e035c2011-06-03 14:18:17 +10002228 - dtucker@cvs.openbsd.org 2011/05/31 02:03:34
2229 [regress/dynamic-forward.sh]
2230 work around startup and teardown races; caught by deraadt
Darren Tuckerbf4d05a2011-06-03 14:19:02 +10002231 - dtucker@cvs.openbsd.org 2011/06/03 00:29:52
2232 [regress/dynamic-forward.sh]
2233 Retry establishing the port forwarding after a small delay, should make
2234 the tests less flaky when the previous test is slow to shut down and free
2235 up the port.
Tim Ricebc481572011-06-02 22:26:19 -07002236 - (tim) [regress/cfgmatch.sh] Build/test out of tree fix.
Darren Tuckerc412c152011-06-03 10:35:23 +10002237
Damien Millerd8478b62011-05-29 21:39:36 +1000223820110529
2239 - (djm) OpenBSD CVS Sync
2240 - djm@cvs.openbsd.org 2011/05/23 03:30:07
2241 [auth-rsa.c auth.c auth.h auth2-pubkey.c monitor.c monitor_wrap.c]
2242 [pathnames.h servconf.c servconf.h sshd.8 sshd_config sshd_config.5]
2243 allow AuthorizedKeysFile to specify multiple files, separated by spaces.
2244 Bring back authorized_keys2 as a default search path (to avoid breaking
2245 existing users of this file), but override this in sshd_config so it will
2246 be no longer used on fresh installs. Maybe in 2015 we can remove it
2247 entierly :)
2248
2249 feedback and ok markus@ dtucker@
Damien Miller1dd66e52011-05-29 21:40:42 +10002250 - djm@cvs.openbsd.org 2011/05/23 03:33:38
2251 [auth.c]
2252 make secure_filename() spam debug logs less
Damien Miller201f4252011-05-29 21:41:03 +10002253 - djm@cvs.openbsd.org 2011/05/23 03:52:55
2254 [sshconnect.c]
2255 remove extra newline
Damien Millerb9132fc2011-05-29 21:41:40 +10002256 - jmc@cvs.openbsd.org 2011/05/23 07:10:21
2257 [sshd.8 sshd_config.5]
2258 tweak previous; ok djm
Damien Miller04bb56e2011-05-29 21:42:08 +10002259 - djm@cvs.openbsd.org 2011/05/23 07:24:57
2260 [authfile.c]
2261 read in key comments for v.2 keys (though note that these are not
2262 passed over the agent protocol); bz#439, based on patch from binder
2263 AT arago.de; ok markus@
Damien Miller295ee632011-05-29 21:42:31 +10002264 - djm@cvs.openbsd.org 2011/05/24 07:15:47
2265 [readconf.c readconf.h ssh.c ssh_config.5 sshconnect.c sshconnect2.c]
2266 Remove undocumented legacy options UserKnownHostsFile2 and
2267 GlobalKnownHostsFile2 by making UserKnownHostsFile/GlobalKnownHostsFile
2268 accept multiple paths per line and making their defaults include
2269 known_hosts2; ok markus
Damien Miller8cb35872011-05-29 21:59:10 +10002270 - djm@cvs.openbsd.org 2011/05/23 03:31:31
2271 [regress/cfgmatch.sh]
2272 include testing of multiple/overridden AuthorizedKeysFiles
2273 refactor to simply daemon start/stop and get rid of racy constructs
Damien Millerd8478b62011-05-29 21:39:36 +10002274
Damien Miller14684a12011-05-20 11:23:07 +1000227520110520
2276 - (djm) [session.c] call setexeccon() before executing passwd for pw
2277 changes; bz#1891 reported by jchadima AT redhat.com; ok dtucker@
Damien Miller989bb7f2011-05-20 18:56:30 +10002278 - (djm) [aclocal.m4 configure.ac] since gcc-4.x ignores all -Wno-options
2279 options, we should corresponding -W-option when trying to determine
2280 whether it is accepted. Also includes a warning fix on the program
2281 fragment uses (bad main() return type).
2282 bz#1900 and bz#1901 reported by g.esp AT free.fr; ok dtucker@
Damien Millerec2eaa32011-05-20 18:57:14 +10002283 - (djm) [servconf.c] remove leftover droppings of AuthorizedKeysFile2
Damien Miller814ace02011-05-20 19:02:47 +10002284 - OpenBSD CVS Sync
2285 - djm@cvs.openbsd.org 2011/05/15 08:09:01
2286 [authfd.c monitor.c serverloop.c]
2287 use FD_CLOEXEC consistently; patch from zion AT x96.org
Damien Miller8f639fe2011-05-20 19:03:08 +10002288 - djm@cvs.openbsd.org 2011/05/17 07:13:31
2289 [key.c]
2290 fatal() if asked to generate a legacy ECDSA cert (these don't exist)
2291 and fix the regress test that was trying to generate them :)
Damien Miller5d74e582011-05-20 19:03:31 +10002292 - djm@cvs.openbsd.org 2011/05/20 00:55:02
2293 [servconf.c]
2294 the options TrustedUserCAKeys, RevokedKeysFile, AuthorizedKeysFile
2295 and AuthorizedPrincipalsFile were not being correctly applied in
2296 Match blocks, despite being overridable there; ok dtucker@
Damien Millerc2411902011-05-20 19:03:49 +10002297 - dtucker@cvs.openbsd.org 2011/05/20 02:00:19
2298 [servconf.c]
2299 Add comment documenting what should be after the preauth check. ok djm
Damien Millerf2e407e2011-05-20 19:04:14 +10002300 - djm@cvs.openbsd.org 2011/05/20 03:25:45
2301 [monitor.c monitor_wrap.c servconf.c servconf.h]
2302 use a macro to define which string options to copy between configs
2303 for Match. This avoids problems caused by forgetting to keep three
2304 code locations in perfect sync and ordering
2305
2306 "this is at once beautiful and horrible" + ok dtucker@
Damien Millerf67188f2011-05-20 19:06:48 +10002307 - djm@cvs.openbsd.org 2011/05/17 07:13:31
2308 [regress/cert-userkey.sh]
2309 fatal() if asked to generate a legacy ECDSA cert (these don't exist)
2310 and fix the regress test that was trying to generate them :)
Damien Miller3045b452011-05-20 19:07:45 +10002311 - djm@cvs.openbsd.org 2011/05/20 02:43:36
2312 [cert-hostkey.sh]
2313 another attempt to generate a v00 ECDSA key that broke the test
2314 ID sync only - portable already had this somehow
Damien Miller7b9451f2011-05-20 19:08:11 +10002315 - dtucker@cvs.openbsd.org 2011/05/20 05:19:50
2316 [dynamic-forward.sh]
2317 Prevent races in dynamic forwarding test; ok djm
Damien Milleracacced2011-05-20 19:08:40 +10002318 - dtucker@cvs.openbsd.org 2011/05/20 06:32:30
2319 [dynamic-forward.sh]
2320 fix dumb error in dynamic-forward test
Damien Miller14684a12011-05-20 11:23:07 +10002321
Damien Miller60432d82011-05-15 08:34:46 +1000232220110515
2323 - (djm) OpenBSD CVS Sync
2324 - djm@cvs.openbsd.org 2011/05/05 05:12:08
2325 [mux.c]
2326 gracefully fall back when ControlPath is too large for a
2327 sockaddr_un. ok markus@ as part of a larger diff
Damien Millerfd53abd2011-05-15 08:36:02 +10002328 - dtucker@cvs.openbsd.org 2011/05/06 01:03:35
2329 [sshd_config]
2330 clarify language about overriding defaults. bz#1892, from Petr Cerny
Damien Miller58a77e22011-05-15 08:36:29 +10002331 - djm@cvs.openbsd.org 2011/05/06 01:09:53
2332 [sftp.1]
2333 mention that IPv6 addresses must be enclosed in square brackets;
2334 bz#1845
Damien Miller78c40c32011-05-15 08:36:59 +10002335 - djm@cvs.openbsd.org 2011/05/06 02:05:41
2336 [sshconnect2.c]
2337 fix memory leak; bz#1849 ok dtucker@
Damien Millerd2ac5d72011-05-15 08:43:13 +10002338 - djm@cvs.openbsd.org 2011/05/06 21:14:05
2339 [packet.c packet.h]
2340 set traffic class for IPv6 traffic as we do for IPv4 TOS;
2341 patch from lionel AT mamane.lu via Colin Watson in bz#1855;
2342 ok markus@
Damien Millerdfc85fa2011-05-15 08:44:02 +10002343 - djm@cvs.openbsd.org 2011/05/06 21:18:02
2344 [ssh.c ssh_config.5]
2345 add a %L expansion (short-form of the local host name) for ControlPath;
2346 sync some more expansions with LocalCommand; ok markus@
Damien Millerfe924212011-05-15 08:44:45 +10002347 - djm@cvs.openbsd.org 2011/05/06 21:31:38
2348 [readconf.c ssh_config.5]
2349 support negated Host matching, e.g.
2350
2351 Host *.example.org !c.example.org
2352 User mekmitasdigoat
2353
2354 Will match "a.example.org", "b.example.org", but not "c.example.org"
2355 ok markus@
Damien Miller21771e22011-05-15 08:45:50 +10002356 - djm@cvs.openbsd.org 2011/05/06 21:34:32
2357 [clientloop.c mux.c readconf.c readconf.h ssh.c ssh_config.5]
2358 Add a RequestTTY ssh_config option to allow configuration-based
2359 control over tty allocation (like -t/-T); ok markus@
Damien Millera6bbbe42011-05-15 08:46:29 +10002360 - djm@cvs.openbsd.org 2011/05/06 21:38:58
2361 [ssh.c]
2362 fix dropping from previous diff
Damien Millerc067f622011-05-15 08:46:54 +10002363 - djm@cvs.openbsd.org 2011/05/06 22:20:10
2364 [PROTOCOL.mux]
2365 fix numbering; from bert.wesarg AT googlemail.com
Damien Miller486dd2e2011-05-15 08:47:18 +10002366 - jmc@cvs.openbsd.org 2011/05/07 23:19:39
2367 [ssh_config.5]
2368 - tweak previous
2369 - come consistency fixes
2370 ok djm
Damien Millerf4b32aa2011-05-15 08:47:43 +10002371 - jmc@cvs.openbsd.org 2011/05/07 23:20:25
2372 [ssh.1]
2373 +.It RequestTTY
Damien Miller555f3b82011-05-15 08:48:05 +10002374 - djm@cvs.openbsd.org 2011/05/08 12:52:01
2375 [PROTOCOL.mux clientloop.c clientloop.h mux.c]
2376 improve our behaviour when TTY allocation fails: if we are in
2377 RequestTTY=auto mode (the default), then do not treat at TTY
2378 allocation error as fatal but rather just restore the local TTY
2379 to cooked mode and continue. This is more graceful on devices that
2380 never allocate TTYs.
2381
2382 If RequestTTY is set to "yes" or "force", then failure to allocate
2383 a TTY is fatal.
2384
2385 ok markus@
Damien Miller32198242011-05-15 08:50:32 +10002386 - djm@cvs.openbsd.org 2011/05/10 05:46:46
2387 [authfile.c]
2388 despam debug() logs by detecting that we are trying to load a private key
2389 in key_try_load_public() and returning early; ok markus@
Damien Miller7c1b2c42011-05-15 08:51:05 +10002390 - djm@cvs.openbsd.org 2011/05/11 04:47:06
2391 [auth.c auth.h auth2-pubkey.c pathnames.h servconf.c servconf.h]
2392 remove support for authorized_keys2; it is a relic from the early days
2393 of protocol v.2 support and has been undocumented for many years;
2394 ok markus@
Damien Miller9d276b82011-05-15 08:51:43 +10002395 - djm@cvs.openbsd.org 2011/05/13 00:05:36
2396 [authfile.c]
2397 warn on unexpected key type in key_parse_private_type()
Damien Miller23f425b2011-05-15 08:58:15 +10002398 - (djm) [packet.c] unbreak portability #endif
Damien Miller60432d82011-05-15 08:34:46 +10002399
Darren Tuckerd6548fe2011-05-10 11:13:36 +1000240020110510
2401 - (dtucker) [openbsd-compat/openssl-compat.{c,h}] Bug #1882: fix
2402 --with-ssl-engine which was broken with the change from deprecated
2403 SSLeay_add_all_algorithms(). ok djm
2404
Darren Tucker343f75f2011-05-06 10:43:50 +1000240520110506
2406 - (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1875: add prototype
2407 for closefrom() in test code. Report from Dan Wallis via Gentoo.
2408
Damien Miller68790fe2011-05-05 11:19:13 +1000240920110505
2410 - (djm) [defines.h] Move up include of netinet/ip.h for IPTOS
2411 definitions. From des AT des.no
Damien Millerf22019b2011-05-05 13:48:37 +10002412 - (djm) [Makefile.in WARNING.RNG aclocal.m4 buildpkg.sh.in configure.ac]
2413 [entropy.c ssh-add.c ssh-agent.c ssh-keygen.c ssh-keyscan.c]
2414 [ssh-keysign.c ssh-pkcs11-helper.c ssh-rand-helper.8 ssh-rand-helper.c]
2415 [ssh.c ssh_prng_cmds.in sshd.c contrib/aix/buildbff.sh]
2416 [regress/README.regress] Remove ssh-rand-helper and all its
2417 tentacles. PRNGd seeding has been rolled into entropy.c directly.
2418 Thanks to tim@ for testing on affected platforms.
Damien Miller3fcdfd52011-05-05 14:04:11 +10002419 - OpenBSD CVS Sync
2420 - djm@cvs.openbsd.org 2011/03/10 02:52:57
Damien Millerb2da7d12011-05-05 14:04:50 +10002421 [auth2-gss.c auth2.c auth.h]
Damien Miller3fcdfd52011-05-05 14:04:11 +10002422 allow GSSAPI authentication to detect when a server-side failure causes
2423 authentication failure and don't count such failures against MaxAuthTries;
2424 bz#1244 from simon AT sxw.org.uk; ok markus@ before lock
Damien Millerc5219e72011-05-05 14:05:12 +10002425 - okan@cvs.openbsd.org 2011/03/15 10:36:02
2426 [ssh-keyscan.c]
2427 use timerclear macro
2428 ok djm@
Damien Miller58f1baf2011-05-05 14:06:15 +10002429 - stevesk@cvs.openbsd.org 2011/03/23 15:16:22
2430 [ssh-keygen.1 ssh-keygen.c]
2431 Add -A option. For each of the key types (rsa1, rsa, dsa and ecdsa)
2432 for which host keys do not exist, generate the host keys with the
2433 default key file path, an empty passphrase, default bits for the key
2434 type, and default comment. This will be used by /etc/rc to generate
2435 new host keys. Idea from deraadt.
2436 ok deraadt
Damien Miller4a4d1612011-05-05 14:06:39 +10002437 - stevesk@cvs.openbsd.org 2011/03/23 16:24:56
2438 [ssh-keygen.1]
2439 -q not used in /etc/rc now so remove statement.
Damien Miller11143192011-05-05 14:13:25 +10002440 - stevesk@cvs.openbsd.org 2011/03/23 16:50:04
2441 [ssh-keygen.c]
2442 remove -d, documentation removed >10 years ago; ok markus
Damien Miller3ca1eb32011-05-05 14:13:50 +10002443 - jmc@cvs.openbsd.org 2011/03/24 15:29:30
2444 [ssh-keygen.1]
2445 zap trailing whitespace;
Damien Miller044f4a62011-05-05 14:14:08 +10002446 - stevesk@cvs.openbsd.org 2011/03/24 22:14:54
2447 [ssh-keygen.c]
2448 use strcasecmp() for "clear" cert permission option also; ok djm
Damien Miller91475862011-05-05 14:14:34 +10002449 - stevesk@cvs.openbsd.org 2011/03/29 18:54:17
2450 [misc.c misc.h servconf.c]
2451 print ipqos friendly string for sshd -T; ok markus
2452 # sshd -Tf sshd_config|grep ipqos
2453 ipqos lowdelay throughput
Damien Miller884b63a2011-05-05 14:14:52 +10002454 - djm@cvs.openbsd.org 2011/04/12 04:23:50
2455 [ssh-keygen.c]
2456 fix -Wshadow
Damien Miller26b57ce2011-05-05 14:15:09 +10002457 - djm@cvs.openbsd.org 2011/04/12 05:32:49
2458 [sshd.c]
2459 exit with 0 status on SIGTERM; bz#1879
Damien Miller085c90f2011-05-05 14:15:33 +10002460 - djm@cvs.openbsd.org 2011/04/13 04:02:48
2461 [ssh-keygen.1]
2462 improve wording; bz#1861
Damien Millerad210322011-05-05 14:15:54 +10002463 - djm@cvs.openbsd.org 2011/04/13 04:09:37
2464 [ssh-keygen.1]
2465 mention valid -b sizes for ECDSA keys; bz#1862
Damien Miller6c3eec72011-05-05 14:16:22 +10002466 - djm@cvs.openbsd.org 2011/04/17 22:42:42
2467 [PROTOCOL.mux clientloop.c clientloop.h mux.c ssh.1 ssh.c]
2468 allow graceful shutdown of multiplexing: request that a mux server
2469 removes its listener socket and refuse future multiplexing requests;
2470 ok markus@
Damien Miller8cb1cda2011-05-05 14:16:56 +10002471 - djm@cvs.openbsd.org 2011/04/18 00:46:05
2472 [ssh-keygen.c]
2473 certificate options are supposed to be packed in lexical order of
2474 option name (though we don't actually enforce this at present).
2475 Move one up that was out of sequence
Damien Miller2ce12ef2011-05-05 14:17:18 +10002476 - djm@cvs.openbsd.org 2011/05/04 21:15:29
2477 [authfile.c authfile.h ssh-add.c]
2478 allow "ssh-add - < key"; feedback and ok markus@
Tim Rice19d81812011-05-04 21:44:25 -07002479 - (tim) [configure.ac] Add AC_LANG_SOURCE to OPENSSH_CHECK_CFLAG_COMPILE
2480 so autoreconf 2.68 is happy.
Tim Rice9abb6972011-05-04 23:06:59 -07002481 - (tim) [defines.h] Deal with platforms that do not have S_IFSOCK ok djm@
Damien Miller68790fe2011-05-05 11:19:13 +10002482
Darren Tuckere541aaa2011-02-21 21:41:29 +1100248320110221
2484 - (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the
2485 Cygwin-specific service installer script ssh-host-config. The actual
2486 functionality is the same, the revisited version is just more
2487 exact when it comes to check for problems which disallow to run
2488 certain aspects of the script. So, part of this script and the also
2489 rearranged service helper script library "csih" is to check if all
2490 the tools required to run the script are available on the system.
2491 The new script also is more thorough to inform the user why the
2492 script failed. Patch from vinschen at redhat com.
2493
Damien Miller0588beb2011-02-18 09:18:45 +1100249420110218
2495 - OpenBSD CVS Sync
2496 - djm@cvs.openbsd.org 2011/02/16 00:31:14
2497 [ssh-keysign.c]
2498 make hostbased auth with ECDSA keys work correctly. Based on patch
2499 by harvey.eneman AT oracle.com in bz#1858; ok markus@ (pre-lock)
2500
Darren Tucker3b9617e2011-02-06 13:24:35 +1100250120110206
2502 - (dtucker) [openbsd-compat/port-linux.c] Bug #1851: fix syntax error in
2503 selinux code. Patch from Leonardo Chiquitto
Darren Tuckerea676a62011-02-06 13:31:23 +11002504 - (dtucker) [contrib/cygwin/ssh-{host,user}-config] Add ECDSA key
2505 generation and simplify. Patch from Corinna Vinschen.
Darren Tucker3b9617e2011-02-06 13:24:35 +11002506
Damien Millerb407dd82011-02-04 11:46:39 +1100250720110204
2508 - OpenBSD CVS Sync
2509 - djm@cvs.openbsd.org 2011/01/31 21:42:15
2510 [PROTOCOL.mux]
2511 cut'n'pasto; from bert.wesarg AT googlemail.com
Damien Miller0a5f0122011-02-04 11:47:01 +11002512 - djm@cvs.openbsd.org 2011/02/04 00:44:21
2513 [key.c]
2514 fix uninitialised nonce variable; reported by Mateusz Kocielski
Damien Millera6981272011-02-04 11:47:20 +11002515 - djm@cvs.openbsd.org 2011/02/04 00:44:43
2516 [version.h]
2517 openssh-5.8
Damien Miller0d30b092011-02-04 12:43:36 +11002518 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
2519 [contrib/suse/openssh.spec] update versions in docs and spec files.
2520 - Release OpenSSH 5.8p1
Damien Millerb407dd82011-02-04 11:46:39 +11002521
Damien Millerd4a55042011-01-28 10:30:18 +1100252220110128
2523 - (djm) [openbsd-compat/port-linux.c] Check whether SELinux is enabled
2524 before attempting setfscreatecon(). Check whether matchpathcon()
2525 succeeded before using its result. Patch from cjwatson AT debian.org;
2526 bz#1851
2527
Tim Riced069c482011-01-26 12:32:12 -0800252820110127
2529 - (tim) [config.guess config.sub] Sync with upstream.
Tim Rice648f8762011-01-26 12:38:57 -08002530 - (tim) [configure.ac] Consistent M4 quoting throughout, updated obsolete
2531 AC_TRY_COMPILE with AC_COMPILE_IFELSE, updated obsolete AC_TRY_LINK with
2532 AC_LINK_IFELSE, updated obsolete AC_TRY_RUN with AC_RUN_IFELSE, misc white
2533 space changes for consistency/readability. Makes autoconf 2.68 happy.
2534 "Nice work" djm
Tim Riced069c482011-01-26 12:32:12 -08002535
Damien Miller71adf122011-01-25 12:16:15 +1100253620110125
2537 - (djm) [configure.ac Makefile.in ssh.c openbsd-compat/port-linux.c
2538 openbsd-compat/port-linux.h] Move SELinux-specific code from ssh.c to
2539 port-linux.c to avoid compilation errors. Add -lselinux to ssh when
2540 building with SELinux support to avoid linking failure; report from
2541 amk AT spamfence.net; ok dtucker
2542
Darren Tucker79241372011-01-22 09:37:01 +1100254320110122
2544 - (dtucker) [configure.ac openbsd-compat/openssl-compat.{c,h}] Add
2545 RSA_get_default_method() for the benefit of openssl versions that don't
2546 have it (at least openssl-engine-0.9.6b). Found and tested by Kevin Brott,
2547 ok djm@.
Damien Millerad4b1ad2011-01-22 20:21:33 +11002548 - OpenBSD CVS Sync
2549 - djm@cvs.openbsd.org 2011/01/22 09:18:53
2550 [version.h]
2551 crank to OpenSSH-5.7
Damien Miller966accc2011-01-22 20:23:10 +11002552 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
2553 [contrib/suse/openssh.spec] update versions in docs and spec files.
Damien Miller6f8f04b2011-01-22 20:25:11 +11002554 - (djm) Release 5.7p1
Darren Tucker79241372011-01-22 09:37:01 +11002555
Tim Rice15e1b4d2011-01-18 20:47:04 -0800255620110119
2557 - (tim) [contrib/caldera/openssh.spec] Use CFLAGS from Makefile instead
2558 of RPM so build completes. Signatures were changed to .asc since 4.1p1.
Damien Millere323ebc2011-01-19 23:12:27 +11002559 - (djm) [configure.ac] Disable ECC on OpenSSL <0.9.8g. Releases prior to
2560 0.9.8 lacked it, and 0.9.8a through 0.9.8d have proven buggy in pre-
2561 release testing (random crashes and failure to load ECC keys).
2562 ok dtucker@
Tim Rice15e1b4d2011-01-18 20:47:04 -08002563
Damien Miller369c0e82011-01-17 10:51:40 +1100256420110117
2565 - (djm) [regress/Makefile] use $TEST_SSH_KEYGEN instead of the one in
2566 $PATH, fix cleanup of droppings; reported by openssh AT
2567 roumenpetrov.info; ok dtucker@
Damien Millerfd3669e2011-01-17 11:20:18 +11002568 - (djm) [regress/agent-ptrace.sh] Fix false failure on OS X by adding
2569 its unique snowflake of a gdb error to the ones we look for.
Damien Miller1ccbfa82011-01-17 11:52:40 +11002570 - (djm) [regress/agent-getpeereid.sh] leave stdout attached when running
2571 ssh-add to avoid $SUDO failures on Linux
Darren Tucker0c93adc2011-01-17 11:55:59 +11002572 - (dtucker) [openbsd-compat/port-linux.c] Bug #1838: Add support for the new
2573 Linux OOM-killer magic values that changed in 2.6.36 kernels, with fallback
2574 to the old values. Feedback from vapier at gentoo org and djm, ok djm.
Damien Miller58497782011-01-17 16:17:09 +11002575 - (djm) [configure.ac regress/agent-getpeereid.sh regress/multiplex.sh]
2576 [regress/sftp-glob.sh regress/test-exec.sh] Rework how feature tests are
2577 disabled on platforms that do not support them; add a "config_defined()"
2578 shell function that greps for defines in config.h and use them to decide
2579 on feature tests.
2580 Convert a couple of existing grep's over config.h to use the new function
2581 Add a define "FILESYSTEM_NO_BACKSLASH" for filesystem that can't represent
2582 backslash characters in filenames, enable it for Cygwin and use it to turn
2583 of tests for quotes backslashes in sftp-glob.sh.
2584 based on discussion with vinschen AT redhat.com and dtucker@; ok dtucker@
Tim Rice6dfcd342011-01-16 22:53:56 -08002585 - (tim) [regress/agent-getpeereid.sh] shell portability fix.
Darren Tucker263d43d2011-01-17 18:50:22 +11002586 - (dtucker) [openbsd-compat/port-linux.c] Fix minor bug caught by -Werror on
2587 the tinderbox.
Darren Tuckerea52a822011-01-17 21:15:27 +11002588 - (dtucker) [LICENCE Makefile.in audit-bsm.c audit-linux.c audit.c audit.h
2589 configure.ac defines.h loginrec.c] Bug #1402: add linux audit subsystem
2590 support, based on patches from Tomas Mraz and jchadima at redhat.
Damien Miller369c0e82011-01-17 10:51:40 +11002591
Darren Tucker50c61f82011-01-16 18:28:09 +1100259220110116
2593 - (dtucker) [Makefile.in configure.ac regress/kextype.sh] Skip sha256-based
2594 on configurations that don't have it.
Damien Miller4791f9d2011-01-16 23:16:53 +11002595 - OpenBSD CVS Sync
2596 - djm@cvs.openbsd.org 2011/01/16 11:50:05
2597 [clientloop.c]
2598 Use atomicio when flushing protocol 1 std{out,err} buffers at
2599 session close. This was a latent bug exposed by setting a SIGCHLD
2600 handler and spotted by kevin.brott AT gmail.com; ok dtucker@
Damien Miller6fb6fd52011-01-16 23:17:45 +11002601 - djm@cvs.openbsd.org 2011/01/16 11:50:36
2602 [sshconnect.c]
2603 reset the SIGPIPE handler when forking to execute child processes;
2604 ok dtucker@
Damien Millercfd6e4f2011-01-16 23:18:33 +11002605 - djm@cvs.openbsd.org 2011/01/16 12:05:59
2606 [clientloop.c]
2607 a couple more tweaks to the post-close protocol 1 stderr/stdout flush:
2608 now that we use atomicio(), convert them from while loops to if statements
2609 add test and cast to compile cleanly with -Wsigned
Darren Tucker50c61f82011-01-16 18:28:09 +11002610
Darren Tucker08f83882011-01-16 18:24:04 +1100261120110114
Damien Miller445c9a52011-01-14 12:01:29 +11002612 - OpenBSD CVS Sync
2613 - djm@cvs.openbsd.org 2011/01/13 21:54:53
2614 [mux.c]
2615 correct error messages; patch from bert.wesarg AT googlemail.com
Damien Miller42747df2011-01-14 12:01:50 +11002616 - djm@cvs.openbsd.org 2011/01/13 21:55:25
2617 [PROTOCOL.mux]
2618 correct protocol names and add a couple of missing protocol number
2619 defines; patch from bert.wesarg AT googlemail.com
Damien Millere9b40482011-01-14 14:47:37 +11002620 - (djm) [Makefile.in] Use shell test to disable ecdsa key generating in
2621 host-key-force target rather than a substitution that is replaced with a
2622 comment so that the Makefile.in is still a syntactically valid Makefile
2623 (useful to run the distprep target)
Tim Rice02d99da2011-01-13 22:20:27 -08002624 - (tim) [regress/cert-hostkey.sh] Typo. Missing $ on variable name.
Tim Ricec5c346b2011-01-13 22:36:14 -08002625 - (tim) [regress/cert-hostkey.sh] Add missing TEST_SSH_ECC guard around some
2626 ecdsa bits.
Damien Miller445c9a52011-01-14 12:01:29 +11002627
Darren Tucker08f83882011-01-16 18:24:04 +1100262820110113
Damien Miller1708cb72011-01-13 12:21:34 +11002629 - (djm) [misc.c] include time.h for nanosleep() prototype
Tim Ricecce927c2011-01-12 19:06:31 -08002630 - (tim) [Makefile.in] test the ECC bits if we have the capability. ok djm
Tim Rice9b87a5c2011-01-12 22:35:43 -08002631 - (tim) [Makefile.in configure.ac opensshd.init.in] Add support for generating
2632 ecdsa keys. ok djm.
Damien Millerff22df52011-01-13 21:05:27 +11002633 - (djm) [entropy.c] cast OPENSSL_VERSION_NUMBER to u_long to avoid
2634 gcc warning on platforms where it defaults to int
Damien Millercbaf8e62011-01-13 21:08:27 +11002635 - (djm) [regress/Makefile] add a few more generated files to the clean
2636 target
Damien Miller9b160862011-01-13 22:00:20 +11002637 - (djm) [myproposal.h] Fix reversed OPENSSL_VERSION_NUMBER test and bad
2638 #define that was causing diffie-hellman-group-exchange-sha256 to be
2639 incorrectly disabled
Damien Miller52788062011-01-13 22:05:14 +11002640 - (djm) [regress/kextype.sh] Testing diffie-hellman-group-exchange-sha256
2641 should not depend on ECC support
Damien Miller1708cb72011-01-13 12:21:34 +11002642
Darren Tucker08f83882011-01-16 18:24:04 +1100264320110112
Damien Millerb66e9172011-01-12 13:30:18 +11002644 - OpenBSD CVS Sync
2645 - nicm@cvs.openbsd.org 2010/10/08 21:48:42
2646 [openbsd-compat/glob.c]
2647 Extend GLOB_LIMIT to cover readdir and stat and bump the malloc limit
2648 from ARG_MAX to 64K.
2649 Fixes glob-using programs (notably ftp) able to be triggered to hit
2650 resource limits.
2651 Idea from a similar NetBSD change, original problem reported by jasper@.
2652 ok millert tedu jasper
Damien Miller4927aaf2011-01-12 13:32:03 +11002653 - djm@cvs.openbsd.org 2011/01/12 01:53:14
2654 avoid some integer overflows mostly with GLOB_APPEND and GLOB_DOOFFS
2655 and sanity check arguments (these will be unnecessary when we switch
2656 struct glob members from being type into to size_t in the future);
2657 "looks ok" tedu@ feedback guenther@
Damien Miller945aa0c2011-01-12 13:34:02 +11002658 - (djm) [configure.ac] Turn on -Wno-unused-result for gcc >= 4.4 to avoid
2659 silly warnings on write() calls we don't care succeed or not.
Damien Miller134d02a2011-01-12 16:00:37 +11002660 - (djm) [configure.ac] Fix broken test for gcc >= 4.4 with per-compiler
2661 flag tests that don't depend on gcc version at all; suggested by and
2662 ok dtucker@
Damien Millerb66e9172011-01-12 13:30:18 +11002663
Tim Rice076a3b92011-01-10 12:56:26 -0800266420110111
2665 - (tim) [regress/host-expand.sh] Fix for building outside of read only
2666 source tree.
Damien Miller81ad4b12011-01-11 17:02:23 +11002667 - (djm) [platform.c] Some missing includes that show up under -Werror
Damien Millerb73b6fd2011-01-11 17:18:56 +11002668 - OpenBSD CVS Sync
2669 - djm@cvs.openbsd.org 2011/01/08 10:51:51
2670 [clientloop.c]
2671 use host and not options.hostname, as the latter may have unescaped
2672 substitution characters
Damien Millera256c8d2011-01-11 17:20:05 +11002673 - djm@cvs.openbsd.org 2011/01/11 06:06:09
2674 [sshlogin.c]
2675 fd leak on error paths; from zinovik@
2676 NB. Id sync only; we use loginrec.c that was also audited and fixed
2677 recently
Damien Miller821de0a2011-01-11 17:20:29 +11002678 - djm@cvs.openbsd.org 2011/01/11 06:13:10
2679 [clientloop.c ssh-keygen.c sshd.c]
2680 some unsigned long long casts that make things a bit easier for
2681 portable without resorting to dropping PRIu64 formats everywhere
Tim Rice076a3b92011-01-10 12:56:26 -08002682
Damien Millere63b7f22011-01-09 09:19:50 +1100268320110109
2684 - (djm) [Makefile.in] list ssh_host_ecdsa key in PATHSUBS; spotted by
2685 openssh AT roumenpetrov.info
2686
Damien Miller996384d2011-01-08 21:58:20 +1100268720110108
2688 - (djm) [regress/keytype.sh] s/echo -n/echon/ to repair failing regress
2689 test on OSX and others. Reported by imorgan AT nas.nasa.gov
2690
Damien Miller322125b2011-01-07 09:50:08 +1100269120110107
2692 - (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test
2693 for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com
Damien Miller83f8a402011-01-07 09:51:17 +11002694 - djm@cvs.openbsd.org 2011/01/06 22:23:53
2695 [ssh.c]
2696 unbreak %n expansion in LocalCommand; patch from bert.wesarg AT
2697 googlemail.com; ok markus@
Damien Miller64abf312011-01-07 09:51:52 +11002698 - djm@cvs.openbsd.org 2011/01/06 22:23:02
2699 [clientloop.c]
2700 when exiting due to ServerAliveTimeout, mention the hostname that caused
2701 it (useful with backgrounded controlmaster)
Damien Miller7d06b002011-01-07 09:54:20 +11002702 - djm@cvs.openbsd.org 2011/01/06 22:46:21
2703 [regress/Makefile regress/host-expand.sh]
2704 regress test for LocalCommand %n expansion from bert.wesarg AT
2705 googlemail.com; ok markus@
Damien Millered3a8eb2011-01-07 10:02:52 +11002706 - djm@cvs.openbsd.org 2011/01/06 23:01:35
2707 [sshconnect.c]
2708 reset SIGCHLD handler to SIG_DFL when execuring LocalCommand;
2709 ok markus@
Damien Miller322125b2011-01-07 09:50:08 +11002710
Damien Millerf1211432011-01-06 22:40:30 +1100271120110106
2712 - (djm) OpenBSD CVS Sync
2713 - markus@cvs.openbsd.org 2010/12/08 22:46:03
2714 [scp.1 scp.c]
2715 add a new -3 option to scp: Copies between two remote hosts are
2716 transferred through the local host. Without this option the data
2717 is copied directly between the two remote hosts. ok djm@ (bugzilla #1837)
Damien Miller907998d2011-01-06 22:41:21 +11002718 - jmc@cvs.openbsd.org 2010/12/09 14:13:33
2719 [scp.1 scp.c]
2720 scp.1: grammer fix
2721 scp.c: add -3 to usage()
Damien Miller05c89972011-01-06 22:42:04 +11002722 - markus@cvs.openbsd.org 2010/12/14 11:59:06
2723 [sshconnect.c]
2724 don't mention key type in key-changed-warning, since we also print
2725 this warning if a new key type appears. ok djm@
Damien Miller106079c2011-01-06 22:43:44 +11002726 - djm@cvs.openbsd.org 2010/12/15 00:49:27
2727 [readpass.c]
2728 fix ControlMaster=ask regression
2729 reset SIGCHLD handler before fork (and restore it after) so we don't miss
2730 the the askpass child's exit status. Correct test for exit status/signal to
2731 account for waitpid() failure; with claudio@ ok claudio@ markus@
Damien Millerde53fd02011-01-06 22:44:18 +11002732 - djm@cvs.openbsd.org 2010/12/24 21:41:48
2733 [auth-options.c]
2734 don't send the actual forced command in a debug message; ok markus deraadt
Damien Miller8ad960b2011-01-06 22:44:44 +11002735 - otto@cvs.openbsd.org 2011/01/04 20:44:13
2736 [ssh-keyscan.c]
2737 handle ecdsa-sha2 with various key lengths; hint and ok djm@
Damien Millerf1211432011-01-06 22:40:30 +11002738
Damien Miller30a69e72011-01-04 08:16:27 +1100273920110104
2740 - (djm) [configure.ac Makefile.in] Use mandoc as preferred manpage
2741 formatter if it is present, followed by nroff and groff respectively.
2742 Fixes distprep target on OpenBSD (which has bumped groff/nroff to ports
2743 in favour of mandoc). feedback and ok tim
2744
274520110103
Damien Millerd197fd62011-01-03 14:48:14 +11002746 - (djm) [Makefile.in] revert local hack I didn't intend to commit
2747
274820110102
Damien Miller4a06f922011-01-02 21:43:59 +11002749 - (djm) [loginrec.c] Fix some fd leaks on error paths. ok dtucker
Damien Miller41bccf72011-01-02 21:53:07 +11002750 - (djm) [configure.ac] Check whether libdes is needed when building
2751 with Heimdal krb5 support. On OpenBSD this library no longer exists,
2752 so linking it unconditionally causes a build failure; ok dtucker
Damien Miller4a06f922011-01-02 21:43:59 +11002753
Damien Miller928362d2010-12-26 14:26:45 +1100275420101226
2755 - (dtucker) OpenBSD CVS Sync
2756 - djm@cvs.openbsd.org 2010/12/08 04:02:47
2757 [ssh_config.5 sshd_config.5]
2758 explain that IPQoS arguments are separated by whitespace; iirc requested
2759 by jmc@ a while back
2760
Darren Tucker37bb7562010-12-05 08:46:05 +1100276120101205
2762 - (dtucker) openbsd-compat/openssl-compat.c] remove sleep leftover from
2763 debugging. Spotted by djm.
Darren Tucker7336b902010-12-05 09:00:30 +11002764 - (dtucker) OpenBSD CVS Sync
2765 - djm@cvs.openbsd.org 2010/12/03 23:49:26
2766 [schnorr.c]
2767 check that g^x^q === 1 mod p; recommended by JPAKE author Feng Hao
2768 (this code is still disabled, but apprently people are treating it as
2769 a reference implementation)
Darren Tuckeradab6f12010-12-05 09:01:47 +11002770 - djm@cvs.openbsd.org 2010/12/03 23:55:27
2771 [auth-rsa.c]
2772 move check for revoked keys to run earlier (in auth_rsa_key_allowed)
2773 bz#1829; patch from ldv AT altlinux.org; ok markus@
Darren Tuckeraf1f9092010-12-05 09:02:47 +11002774 - djm@cvs.openbsd.org 2010/12/04 00:18:01
2775 [sftp-server.c sftp.1 sftp-client.h sftp.c PROTOCOL sftp-client.c]
2776 add a protocol extension to support a hard link operation. It is
2777 available through the "ln" command in the client. The old "ln"
2778 behaviour of creating a symlink is available using its "-s" option
2779 or through the preexisting "symlink" command; based on a patch from
2780 miklos AT szeredi.hu in bz#1555; ok markus@
Darren Tucker094f1e92010-12-05 09:03:31 +11002781 - djm@cvs.openbsd.org 2010/12/04 13:31:37
2782 [hostfile.c]
2783 fix fd leak; spotted and ok dtucker
Darren Tucker4288c532010-12-05 09:45:50 +11002784 - djm@cvs.openbsd.org 2010/12/04 00:21:19
2785 [regress/sftp-cmds.sh]
2786 adjust for hard-link support
Darren Tucker7e1a5a42010-12-05 09:29:31 +11002787 - (dtucker) [regress/Makefile] Id sync.
Darren Tucker37bb7562010-12-05 08:46:05 +11002788
Damien Millerd89745b2010-12-03 10:50:26 +1100278920101204
2790 - (djm) [openbsd-compat/bindresvport.c] Use arc4random_uniform(range)
2791 instead of (arc4random() % range)
Darren Tuckerebdef762010-12-04 23:20:50 +11002792 - (dtucker) [configure.ac moduli.c openbsd-compat/openssl-compat.{c,h}] Add
2793 shims for the new, non-deprecated OpenSSL key generation functions for
2794 platforms that don't have the new interfaces.
Damien Millerd89745b2010-12-03 10:50:26 +11002795
Damien Miller188ea812010-12-01 11:50:14 +1100279620101201
2797 - OpenBSD CVS Sync
2798 - deraadt@cvs.openbsd.org 2010/11/20 05:12:38
2799 [auth2-pubkey.c]
2800 clean up cases of ;;
Damien Miller2cd62932010-12-01 11:50:35 +11002801 - djm@cvs.openbsd.org 2010/11/21 01:01:13
2802 [clientloop.c misc.c misc.h ssh-agent.1 ssh-agent.c]
2803 honour $TMPDIR for client xauth and ssh-agent temporary directories;
2804 feedback and ok markus@
Damien Millera2327922010-12-01 12:01:21 +11002805 - djm@cvs.openbsd.org 2010/11/21 10:57:07
2806 [authfile.c]
2807 Refactor internals of private key loading and saving to work on memory
2808 buffers rather than directly on files. This will make a few things
2809 easier to do in the future; ok markus@
Damien Miller6a740e72010-12-01 12:01:51 +11002810 - djm@cvs.openbsd.org 2010/11/23 02:35:50
2811 [auth.c]
2812 use strict_modes already passed as function argument over referencing
2813 global options.strict_modes
Damien Millerd0fdd682010-12-01 12:02:14 +11002814 - djm@cvs.openbsd.org 2010/11/23 23:57:24
2815 [clientloop.c]
2816 avoid NULL deref on receiving a channel request on an unknown or invalid
2817 channel; report bz#1842 from jchadima AT redhat.com; ok dtucker@
Damien Millerb7f827a2010-12-01 12:02:35 +11002818 - djm@cvs.openbsd.org 2010/11/24 01:24:14
2819 [channels.c]
2820 remove a debug() that pollutes stderr on client connecting to a server
2821 in debug mode (channel_close_fds is called transitively from the session
2822 code post-fork); bz#1719, ok dtucker
Damien Millerf80c3de2010-12-01 12:02:59 +11002823 - djm@cvs.openbsd.org 2010/11/25 04:10:09
2824 [session.c]
2825 replace close() loop for fds 3->64 with closefrom();
2826 ok markus deraadt dtucker
Damien Miller87dc0a42010-12-01 12:03:19 +11002827 - djm@cvs.openbsd.org 2010/11/26 05:52:49
2828 [scp.c]
2829 Pass through ssh command-line flags and options when doing remote-remote
2830 transfers, e.g. to enable agent forwarding which is particularly useful
2831 in this case; bz#1837 ok dtucker@
Damien Miller03c0e532010-12-01 12:03:39 +11002832 - markus@cvs.openbsd.org 2010/11/29 18:57:04
2833 [authfile.c]
2834 correctly load comment for encrypted rsa1 keys;
2835 report/fix Joachim Schipper; ok djm@
Damien Millerd925dcd2010-12-01 12:21:51 +11002836 - djm@cvs.openbsd.org 2010/11/29 23:45:51
2837 [auth.c hostfile.c hostfile.h ssh.c ssh_config.5 sshconnect.c]
2838 [sshconnect.h sshconnect2.c]
2839 automatically order the hostkeys requested by the client based on
2840 which hostkeys are already recorded in known_hosts. This avoids
2841 hostkey warnings when connecting to servers with new ECDSA keys
2842 that are preferred by default; with markus@
Damien Miller188ea812010-12-01 11:50:14 +11002843
Darren Tuckerd9957122010-11-24 10:09:13 +1100284420101124
2845 - (dtucker) [platform.c session.c] Move the getluid call out of session.c and
2846 into the platform-specific code Only affects SCO, tested by and ok tim@.
Damien Miller88e341e2010-11-24 10:36:15 +11002847 - (djm) [loginrec.c] Relax permission requirement on btmp logs to allow
2848 group read/write. ok dtucker@
Darren Tucker4b6cbf72010-11-24 10:46:37 +11002849 - (dtucker) [packet.c] Remove redundant local declaration of "int tos".
Damien Miller73de86a2010-11-24 10:50:04 +11002850 - (djm) [defines.h] Add IP DSCP defines
Darren Tuckerd9957122010-11-24 10:09:13 +11002851
Darren Tucker9e0ff7a2010-11-22 17:59:00 +1100285220101122
2853 - (dtucker) Bug #1840: fix warning when configuring --with-ssl-engine, patch
2854 from vapier at gentoo org.
2855
Damien Miller7a221a12010-11-20 15:14:29 +1100285620101120
2857 - OpenBSD CVS Sync
2858 - djm@cvs.openbsd.org 2010/11/05 02:46:47
2859 [packet.c]
2860 whitespace KNF
Damien Miller4499f4c2010-11-20 15:15:49 +11002861 - djm@cvs.openbsd.org 2010/11/10 01:33:07
2862 [kexdhc.c kexdhs.c kexgexc.c kexgexs.c key.c moduli.c]
2863 use only libcrypto APIs that are retained with OPENSSL_NO_DEPRECATED.
2864 these have been around for years by this time. ok markus
Damien Miller0dac6fb2010-11-20 15:19:38 +11002865 - djm@cvs.openbsd.org 2010/11/13 23:27:51
2866 [clientloop.c misc.c misc.h packet.c packet.h readconf.c readconf.h]
2867 [servconf.c servconf.h session.c ssh.c ssh_config.5 sshd_config.5]
2868 allow ssh and sshd to set arbitrary TOS/DSCP/QoS values instead of
2869 hardcoding lowdelay/throughput.
2870
2871 bz#1733 patch from philipp AT redfish-solutions.com; ok markus@ deraadt@
Damien Miller8e1ea4e2010-11-20 15:20:10 +11002872 - jmc@cvs.openbsd.org 2010/11/15 07:40:14
2873 [ssh_config.5]
2874 libary -> library;
Damien Miller0a184732010-11-20 15:21:03 +11002875 - jmc@cvs.openbsd.org 2010/11/18 15:01:00
2876 [scp.1 sftp.1 ssh.1 sshd_config.5]
2877 add IPQoS to the various -o lists, and zap some trailing whitespace;
Damien Miller7a221a12010-11-20 15:14:29 +11002878
Damien Millerdd190dd2010-11-11 14:17:02 +1100287920101111
2880 - (djm) [servconf.c ssh-add.c ssh-keygen.c] don't look for ECDSA keys on
2881 platforms that don't support ECC. Fixes some spurious warnings reported
2882 by tim@
2883
Tim Ricee426f5e2010-11-08 09:15:14 -0800288420101109
2885 - (tim) [regress/kextype.sh] Not all platforms have time in /usr/bin.
2886 Feedback from dtucker@
Tim Ricec7a8af02010-11-08 14:26:23 -08002887 - (tim) [configure.ac openbsd-compat/bsd-misc.h openbsd-compat/bsd-misc.c] Add
2888 support for platforms missing isblank(). ok djm@
Tim Ricee426f5e2010-11-08 09:15:14 -08002889
Tim Rice522262f2010-11-07 13:00:27 -0800289020101108
2891 - (tim) [regress/Makefile] Fixes to allow building/testing outside source
2892 tree.
Tim Ricec10aeaa2010-11-07 13:03:11 -08002893 - (tim) [regress/kextype.sh] Shell portability fix.
Tim Rice522262f2010-11-07 13:00:27 -08002894
Darren Tuckerd1ece6e2010-11-07 18:05:54 +1100289520101107
2896 - (dtucker) [platform.c] includes.h instead of defines.h so that we get
2897 the correct typedefs.
2898
Damien Miller3a0e9f62010-11-05 10:16:34 +1100289920101105
Damien Miller34ee4202010-11-05 10:52:37 +11002900 - (djm) [loginrec.c loginrec.h] Use correct uid_t/pid_t types instead of
2901 int. Should fix bz#1817 cleanly; ok dtucker@
Damien Miller3a0e9f62010-11-05 10:16:34 +11002902 - OpenBSD CVS Sync
2903 - djm@cvs.openbsd.org 2010/09/22 12:26:05
2904 [regress/Makefile regress/kextype.sh]
2905 regress test for each of the key exchange algorithms that we support
Damien Millerb472a902010-11-05 10:19:49 +11002906 - djm@cvs.openbsd.org 2010/10/28 11:22:09
2907 [authfile.c key.c key.h ssh-keygen.c]
2908 fix a possible NULL deref on loading a corrupt ECDH key
2909
2910 store ECDH group information in private keys files as "named groups"
2911 rather than as a set of explicit group parameters (by setting
2912 the OPENSSL_EC_NAMED_CURVE flag). This makes for shorter key files and
2913 retrieves the group's OpenSSL NID that we need for various things.
Damien Miller55fa5652010-11-05 10:20:14 +11002914 - jmc@cvs.openbsd.org 2010/10/28 18:33:28
2915 [scp.1 ssh-add.1 ssh-keygen.1 ssh.1 ssh_config.5 sshd.8 sshd_config.5]
2916 knock out some "-*- nroff -*-" lines;
Damien Miller07331212010-11-05 10:20:31 +11002917 - djm@cvs.openbsd.org 2010/11/04 02:45:34
2918 [sftp-server.c]
2919 umask should be parsed as octal. reported by candland AT xmission.com;
2920 ok markus@
Darren Tucker97528352010-11-05 12:03:05 +11002921 - (dtucker) [configure.ac platform.{c,h} session.c
2922 openbsd-compat/port-solaris.{c,h}] Bug #1824: Add Solaris Project support.
2923 Patch from cory.erickson at csu mnscu edu with a bit of rework from me.
2924 ok djm@
Darren Tucker920612e2010-11-05 12:36:15 +11002925 - (dtucker) [platform.c platform.h session.c] Add a platform hook to run
2926 after the user's groups are established and move the selinux calls into it.
Darren Tucker4db38072010-11-05 12:41:13 +11002927 - (dtucker) [platform.c session.c] Move the AIX setpcred+chroot hack into
2928 platform.c
Darren Tucker44a97be2010-11-05 12:45:18 +11002929 - (dtucker) [platform.c session.c] Move the BSDI setpgrp into platform.c.
Darren Tuckerfd4d8aa2010-11-05 12:50:41 +11002930 - (dtucker) [platform.c] Only call setpgrp on BSDI if running as root to
2931 retain previous behavior.
Darren Tucker728d8372010-11-05 13:00:05 +11002932 - (dtucker) [platform.c session.c] Move the PAM credential establishment for
2933 the LOGIN_CAP case into platform.c.
Darren Tucker7a8afe32010-11-05 13:07:24 +11002934 - (dtucker) platform.c session.c] Move the USE_LIBIAF fragment into
2935 platform.c
Darren Tucker0b2ee642010-11-05 13:29:25 +11002936 - (dtucker) [platform.c session.c] Move aix_usrinfo frament into platform.c.
2937 - (dtucker) [platform.c session.c] Move irix setusercontext fragment into
2938 platform.c.
Darren Tuckercc124182010-11-05 13:32:52 +11002939 - (dtucker) [platform.c session.c] Move PAM credential establishment for the
2940 non-LOGIN_CAP case into platform.c.
Darren Tuckerb12fe272010-11-05 14:47:01 +11002941 - (dtucker) [platform.c platform.h session.c] Move the Cygwin special-case
2942 check into platform.c
Darren Tuckerb69e0332010-11-05 18:19:15 +11002943 - (dtucker) [regress/keytype.sh] Import new test.
Darren Tuckereab5f0d2010-11-05 18:23:38 +11002944 - (dtucker) [Makefile configure.ac regress/Makefile regress/keytype.sh]
2945 Import recent changes to regress/Makefile, pass a flag to enable ECC tests
2946 from configure through to regress/Makefile and use it in the tests.
Darren Tucker345178d2010-11-05 18:35:52 +11002947 - (dtucker) [regress/kextype.sh] Add missing "test".
Darren Tuckerf619d1c2010-11-05 18:41:50 +11002948 - (dtucker) [regress/kextype.sh] Make sha256 test depend on ECC. This is not
2949 strictly correct since while ECC requires sha256 the reverse is not true
2950 however it does prevent spurious test failures.
Darren Tucker9283d8c2010-11-05 18:56:08 +11002951 - (dtucker) [platform.c] Need servconf.h and extern options.
Damien Miller3a0e9f62010-11-05 10:16:34 +11002952
Tim Ricebdd3e672010-10-24 18:35:55 -0700295320101025
2954 - (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came with
2955 1.12 to unbreak Solaris build.
2956 ok djm@
Darren Tucker54b1f312010-10-25 16:54:28 +11002957 - (dtucker) [defines.h] Use SIZE_T_MAX for SIZE_MAX for platforms that have a
2958 native one.
Tim Ricebdd3e672010-10-24 18:35:55 -07002959
Darren Tuckera5393932010-10-24 10:47:30 +1100296020101024
2961 - (dtucker) [includes.h] Add missing ifdef GLOB_HAS_GL_STATV to fix build.
Darren Tuckerbfd9b1b2010-10-24 11:19:26 +11002962 - (dtucker) [regress/cert-hostkey.sh] Disable ECC-based tests on platforms
2963 which don't have ECC support in libcrypto.
Darren Tuckerd633fef2010-10-24 11:33:07 +11002964 - (dtucker) [regress/cert-userkey.sh] Disable ECC-based tests on platforms
2965 which don't have ECC support in libcrypto.
Darren Tucker7bc236d2010-10-24 11:58:43 +11002966 - (dtucker) [defines.h] Add SIZE_MAX for the benefit of platforms that don't
2967 have it.
Darren Tuckerd78739a2010-10-24 10:56:32 +11002968 - (dtucker) OpenBSD CVS Sync
2969 - sthen@cvs.openbsd.org 2010/10/23 22:06:12
2970 [sftp.c]
2971 escape '[' in filename tab-completion; fix a type while there.
2972 ok djm@
Darren Tuckera5393932010-10-24 10:47:30 +11002973
Damien Miller68512c02010-10-21 15:21:11 +1100297420101021
2975 - OpenBSD CVS Sync
2976 - dtucker@cvs.openbsd.org 2010/10/12 02:22:24
2977 [mux.c]
2978 Typo in confirmation message. bz#1827, patch from imorgan at
2979 nas nasa gov
Damien Miller6fd2d7d2010-10-21 15:27:14 +11002980 - djm@cvs.openbsd.org 2010/08/31 12:24:09
2981 [regress/cert-hostkey.sh regress/cert-userkey.sh]
2982 tests for ECDSA certificates
Damien Miller68512c02010-10-21 15:21:11 +11002983
Damien Miller1f789802010-10-11 22:35:22 +1100298420101011
Damien Miller47e57bf2010-10-12 13:28:12 +11002985 - (djm) [canohost.c] Zero a4 instead of addr to better match type.
2986 bz#1825, reported by foo AT mailinator.com
Damien Miller9c0c31d2010-10-12 13:30:44 +11002987 - (djm) [sshconnect.c] Need signal.h for prototype for kill(2)
Damien Miller47e57bf2010-10-12 13:28:12 +11002988
298920101011
Damien Miller1f789802010-10-11 22:35:22 +11002990 - (djm) [configure.ac] Use = instead of == in shell tests. Patch from
2991 dr AT vasco.com
2992
Damien Milleraa180632010-10-07 21:25:27 +1100299320101007
Damien Miller9a3d0dc2010-10-07 22:06:42 +11002994 - (djm) [ssh-agent.c] Fix type for curve name.
Damien Milleraa180632010-10-07 21:25:27 +11002995 - (djm) OpenBSD CVS Sync
2996 - matthew@cvs.openbsd.org 2010/09/24 13:33:00
2997 [misc.c misc.h configure.ac openbsd-compat/openbsd-compat.h]
2998 [openbsd-compat/timingsafe_bcmp.c]
2999 Add timingsafe_bcmp(3) to libc, mention that it's already in the
3000 kernel in kern(9), and remove it from OpenSSH.
3001 ok deraadt@, djm@
3002 NB. re-added under openbsd-compat/ for portable OpenSSH
Damien Millera6e121a2010-10-07 21:39:17 +11003003 - djm@cvs.openbsd.org 2010/09/25 09:30:16
3004 [sftp.c configure.ac openbsd-compat/glob.c openbsd-compat/glob.h]
3005 make use of new glob(3) GLOB_KEEPSTAT extension to save extra server
3006 rountrips to fetch per-file stat(2) information.
3007 NB. update openbsd-compat/ glob(3) implementation from OpenBSD libc to
3008 match.
Damien Miller68e2e562010-10-07 21:39:55 +11003009 - djm@cvs.openbsd.org 2010/09/26 22:26:33
3010 [sftp.c]
3011 when performing an "ls" in columnated (short) mode, only call
3012 ioctl(TIOCGWINSZ) once to get the window width instead of per-
3013 filename
Damien Millerc54b02c2010-10-07 21:40:17 +11003014 - djm@cvs.openbsd.org 2010/09/30 11:04:51
3015 [servconf.c]
3016 prevent free() of string in .rodata when overriding AuthorizedKeys in
3017 a Match block; patch from rein AT basefarm.no
Damien Miller9a3d0dc2010-10-07 22:06:42 +11003018 - djm@cvs.openbsd.org 2010/10/01 23:05:32
3019 [cipher-3des1.c cipher-bf1.c cipher-ctr.c openbsd-compat/openssl-compat.h]
3020 adapt to API changes in openssl-1.0.0a
3021 NB. contains compat code to select correct API for older OpenSSL
Damien Miller38d9a962010-10-07 22:07:11 +11003022 - djm@cvs.openbsd.org 2010/10/05 05:13:18
3023 [sftp.c sshconnect.c]
3024 use default shell /bin/sh if $SHELL is ""; ok markus@
Damien Millera41ccca2010-10-07 22:07:32 +11003025 - djm@cvs.openbsd.org 2010/10/06 06:39:28
3026 [clientloop.c ssh.c sshconnect.c sshconnect.h]
3027 kill proxy command on fatal() (we already kill it on clean exit);
3028 ok markus@
Damien Miller45fcdaa2010-10-07 22:07:58 +11003029 - djm@cvs.openbsd.org 2010/10/06 21:10:21
3030 [sshconnect.c]
3031 swapped args to kill(2)
Damien Miller37f4f182010-10-07 22:10:38 +11003032 - (djm) [openbsd-compat/glob.c] restore ARG_MAX compat code.
Damien Miller80e99532010-10-07 22:12:08 +11003033 - (djm) [cipher-acss.c] Add missing header.
Damien Miller88b844f2010-10-07 22:19:23 +11003034 - (djm) [openbsd-compat/Makefile.in] Actually link timingsafe_bcmp
Damien Milleraa180632010-10-07 21:25:27 +11003035
Damien Miller6186bbc2010-09-24 22:00:54 +1000303620100924
3037 - (djm) OpenBSD CVS Sync
3038 - naddy@cvs.openbsd.org 2010/09/10 15:19:29
3039 [ssh-keygen.1]
3040 * mention ECDSA in more places
3041 * less repetition in FILES section
3042 * SSHv1 keys are still encrypted with 3DES
3043 help and ok jmc@
Damien Miller1ca94692010-09-24 22:01:22 +10003044 - djm@cvs.openbsd.org 2010/09/11 21:44:20
3045 [ssh.1]
3046 mention RFC 5656 for ECC stuff
Damien Miller881adf72010-09-24 22:01:54 +10003047 - jmc@cvs.openbsd.org 2010/09/19 21:30:05
3048 [sftp.1]
3049 more wacky macro fixing;
Damien Miller857b02e2010-09-24 22:02:56 +10003050 - djm@cvs.openbsd.org 2010/09/20 04:41:47
3051 [ssh.c]
3052 install a SIGCHLD handler to reap expiried child process; ok markus@
Damien Millerf7540cd2010-09-24 22:03:24 +10003053 - djm@cvs.openbsd.org 2010/09/20 04:50:53
3054 [jpake.c schnorr.c]
3055 check that received values are smaller than the group size in the
3056 disabled and unfinished J-PAKE code.
3057 avoids catastrophic security failure found by Sebastien Martini
Damien Miller18e1cab2010-09-24 22:07:17 +10003058 - djm@cvs.openbsd.org 2010/09/20 04:54:07
3059 [jpake.c]
3060 missing #include
Damien Miller603134e2010-09-24 22:07:55 +10003061 - djm@cvs.openbsd.org 2010/09/20 07:19:27
3062 [mux.c]
3063 "atomically" create the listening mux socket by binding it on a temorary
3064 name and then linking it into position after listen() has succeeded.
3065 this allows the mux clients to determine that the server socket is
3066 either ready or stale without races. stale server sockets are now
3067 automatically removed
3068 ok deraadt
Damien Millerd5f62bf2010-09-24 22:11:14 +10003069 - djm@cvs.openbsd.org 2010/09/22 05:01:30
3070 [kex.c kex.h kexecdh.c kexecdhc.c kexecdhs.c readconf.c readconf.h]
3071 [servconf.c servconf.h ssh_config.5 sshconnect2.c sshd.c sshd_config.5]
3072 add a KexAlgorithms knob to the client and server configuration to allow
3073 selection of which key exchange methods are used by ssh(1) and sshd(8)
3074 and their order of preference.
3075 ok markus@
Damien Miller7fe2b1f2010-09-24 22:11:53 +10003076 - jmc@cvs.openbsd.org 2010/09/22 08:30:08
3077 [ssh.1 ssh_config.5]
3078 ssh.1: add kexalgorithms to the -o list
3079 ssh_config.5: format the kexalgorithms in a more consistent
3080 (prettier!) way
3081 ok djm
Damien Miller65e42f82010-09-24 22:15:11 +10003082 - djm@cvs.openbsd.org 2010/09/22 22:58:51
3083 [atomicio.c atomicio.h misc.c misc.h scp.c sftp-client.c]
3084 [sftp-client.h sftp.1 sftp.c]
3085 add an option per-read/write callback to atomicio
3086
3087 factor out bandwidth limiting code from scp(1) into a generic bandwidth
3088 limiter that can be attached using the atomicio callback mechanism
3089
3090 add a bandwidth limit option to sftp(1) using the above
3091 "very nice" markus@
Damien Miller56883e12010-09-24 22:15:39 +10003092 - jmc@cvs.openbsd.org 2010/09/23 13:34:43
3093 [sftp.c]
3094 add [-l limit] to usage();
Damien Miller2beb32f2010-09-24 22:16:03 +10003095 - jmc@cvs.openbsd.org 2010/09/23 13:36:46
3096 [scp.1 sftp.1]
3097 add KexAlgorithms to the -o list;
Damien Miller6186bbc2010-09-24 22:00:54 +10003098
Damien Miller4314c2b2010-09-10 11:12:09 +1000309920100910
Darren Tucker50e3bab2010-09-10 10:30:25 +10003100 - (dtucker) [openbsd-compat/port-linux.c] Check is_selinux_enabled for exact
3101 return code since it can apparently return -1 under some conditions. From
3102 openssh bugs werbittewas de, ok djm@
Damien Miller4314c2b2010-09-10 11:12:09 +10003103 - OpenBSD CVS Sync
3104 - djm@cvs.openbsd.org 2010/08/31 12:33:38
3105 [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c]
3106 reintroduce commit from tedu@, which I pulled out for release
3107 engineering:
3108 OpenSSL_add_all_algorithms is the name of the function we have a
3109 man page for, so use that. ok djm
Damien Millerde735ea2010-09-10 11:12:38 +10003110 - jmc@cvs.openbsd.org 2010/08/31 17:40:54
3111 [ssh-agent.1]
3112 fix some macro abuse;
Damien Millerd4427902010-09-10 11:15:10 +10003113 - jmc@cvs.openbsd.org 2010/08/31 21:14:58
3114 [ssh.1]
3115 small text tweak to accommodate previous;
Damien Millere13cadf2010-09-10 11:15:33 +10003116 - naddy@cvs.openbsd.org 2010/09/01 15:21:35
3117 [servconf.c]
3118 pick up ECDSA host key by default; ok djm@
Damien Miller390f1532010-09-10 11:17:54 +10003119 - markus@cvs.openbsd.org 2010/09/02 16:07:25
Damien Miller57737942010-09-10 11:16:37 +10003120 [ssh-keygen.c]
3121 permit -b 256, 384 or 521 as key size for ECDSA; ok djm@
Damien Miller390f1532010-09-10 11:17:54 +10003122 - markus@cvs.openbsd.org 2010/09/02 16:08:39
Damien Miller5929c522010-09-10 11:17:02 +10003123 [ssh.c]
3124 unbreak ControlPersist=yes for ControlMaster=yes; ok djm@
Damien Miller6e9f6802010-09-10 11:17:38 +10003125 - naddy@cvs.openbsd.org 2010/09/02 17:21:50
3126 [ssh-keygen.c]
3127 Switch ECDSA default key size to 256 bits, which according to RFC5656
3128 should still be better than our current RSA-2048 default.
3129 ok djm@, markus@
Damien Miller390f1532010-09-10 11:17:54 +10003130 - jmc@cvs.openbsd.org 2010/09/03 11:09:29
3131 [scp.1]
3132 add an EXIT STATUS section for /usr/bin;
Damien Millerdaa7b222010-09-10 11:19:33 +10003133 - jmc@cvs.openbsd.org 2010/09/04 09:38:34
3134 [ssh-add.1 ssh.1]
3135 two more EXIT STATUS sections;
Damien Miller80ed82a2010-09-10 11:20:11 +10003136 - naddy@cvs.openbsd.org 2010/09/06 17:10:19
3137 [sshd_config]
3138 add ssh_host_ecdsa_key to /etc; from Mattieu Baptiste
3139 <mattieu.b@gmail.com>
3140 ok deraadt@
Damien Millerbf0423e2010-09-10 11:20:38 +10003141 - djm@cvs.openbsd.org 2010/09/08 03:54:36
3142 [authfile.c]
3143 typo
Damien Miller3796ab42010-09-10 11:20:59 +10003144 - deraadt@cvs.openbsd.org 2010/09/08 04:13:31
3145 [compress.c]
3146 work around name-space collisions some buggy compilers (looking at you
3147 gcc, at least in earlier versions, but this does not forgive your current
3148 transgressions) seen between zlib and openssl
3149 ok djm
Damien Miller041ab7c2010-09-10 11:23:34 +10003150 - djm@cvs.openbsd.org 2010/09/09 10:45:45
3151 [kex.c kex.h kexecdh.c key.c key.h monitor.c ssh-ecdsa.c]
3152 ECDH/ECDSA compliance fix: these methods vary the hash function they use
3153 (SHA256/384/512) depending on the length of the curve in use. The previous
3154 code incorrectly used SHA256 in all cases.
3155
3156 This fix will cause authentication failure when using 384 or 521-bit curve
3157 keys if one peer hasn't been upgraded and the other has. (256-bit curve
3158 keys work ok). In particular you may need to specify HostkeyAlgorithms
3159 when connecting to a server that has not been upgraded from an upgraded
3160 client.
3161
3162 ok naddy@
Damien Miller6af914a2010-09-10 11:39:26 +10003163 - (djm) [authfd.c authfile.c bufec.c buffer.h configure.ac kex.h kexecdh.c]
3164 [kexecdhc.c kexecdhs.c key.c key.h myproposal.h packet.c readconf.c]
3165 [ssh-agent.c ssh-ecdsa.c ssh-keygen.c ssh.c] Disable ECDH and ECDSA on
3166 platforms that don't have the requisite OpenSSL support. ok dtucker@
Darren Tucker8ccb7392010-09-10 12:28:24 +10003167 - (dtucker) [kex.h key.c packet.h ssh-agent.c ssh.c] A few more ECC ifdefs
3168 for missing headers and compiler warnings.
Darren Tucker50e3bab2010-09-10 10:30:25 +10003169
317020100831
Damien Millerafdae612010-08-31 22:31:14 +10003171 - OpenBSD CVS Sync
3172 - jmc@cvs.openbsd.org 2010/08/08 19:36:30
3173 [ssh-keysign.8 ssh.1 sshd.8]
3174 use the same template for all FILES sections; i.e. -compact/.Pp where we
3175 have multiple items, and .Pa for path names;
Damien Miller9b87e792010-08-31 22:31:37 +10003176 - tedu@cvs.openbsd.org 2010/08/12 23:34:39
3177 [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c]
3178 OpenSSL_add_all_algorithms is the name of the function we have a man page
3179 for, so use that. ok djm
Damien Millerd96546f2010-08-31 22:32:12 +10003180 - djm@cvs.openbsd.org 2010/08/16 04:06:06
3181 [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c]
3182 backout previous temporarily; discussed with deraadt@
Damien Millerda108ec2010-08-31 22:36:39 +10003183 - djm@cvs.openbsd.org 2010/08/31 09:58:37
3184 [auth-options.c auth1.c auth2.c bufaux.c buffer.h kex.c key.c packet.c]
3185 [packet.h ssh-dss.c ssh-rsa.c]
3186 Add buffer_get_cstring() and related functions that verify that the
3187 string extracted from the buffer contains no embedded \0 characters*
3188 This prevents random (possibly malicious) crap from being appended to
3189 strings where it would not be noticed if the string is used with
3190 a string(3) function.
3191
3192 Use the new API in a few sensitive places.
3193
3194 * actually, we allow a single one at the end of the string for now because
3195 we don't know how many deployed implementations get this wrong, but don't
3196 count on this to remain indefinitely.
Damien Millereb8b60e2010-08-31 22:41:14 +10003197 - djm@cvs.openbsd.org 2010/08/31 11:54:45
3198 [PROTOCOL PROTOCOL.agent PROTOCOL.certkeys auth2-jpake.c authfd.c]
3199 [authfile.c buffer.h dns.c kex.c kex.h key.c key.h monitor.c]
3200 [monitor_wrap.c myproposal.h packet.c packet.h pathnames.h readconf.c]
3201 [ssh-add.1 ssh-add.c ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh-keygen.c]
3202 [ssh-keyscan.1 ssh-keyscan.c ssh-keysign.8 ssh.1 ssh.c ssh2.h]
3203 [ssh_config.5 sshconnect.c sshconnect2.c sshd.8 sshd.c sshd_config.5]
3204 [uuencode.c uuencode.h bufec.c kexecdh.c kexecdhc.c kexecdhs.c ssh-ecdsa.c]
3205 Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and
3206 host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA offer
3207 better performance than plain DH and DSA at the same equivalent symmetric
3208 key length, as well as much shorter keys.
3209
3210 Only the mandatory sections of RFC5656 are implemented, specifically the
3211 three REQUIRED curves nistp256, nistp384 and nistp521 and only ECDH and
3212 ECDSA. Point compression (optional in RFC5656 is NOT implemented).
3213
3214 Certificate host and user keys using the new ECDSA key types are supported.
3215
3216 Note that this code has not been tested for interoperability and may be
3217 subject to change.
3218
3219 feedback and ok markus@
Damien Millerb5a62d02010-08-31 22:47:15 +10003220 - (djm) [Makefile.in] Add new ECC files
Damien Millerc79ff072010-08-31 22:50:48 +10003221 - (djm) [bufec.c kexecdh.c kexecdhc.c kexecdhs.c ssh-ecdsa.c] include
3222 includes.h
Damien Millerafdae612010-08-31 22:31:14 +10003223
Darren Tucker6889abd2010-08-27 10:12:54 +1000322420100827
3225 - (dtucker) [contrib/redhat/sshd.init] Bug #1810: initlog is deprecated,
3226 remove. Patch from martynas at venck us
3227
Damien Millera5362022010-08-23 21:20:20 +1000322820100823
3229 - (djm) Release OpenSSH-5.6p1
3230
Darren Tuckeraa74f672010-08-16 13:15:23 +1000323120100816
3232 - (dtucker) [configure.ac openbsd-compat/Makefile.in
3233 openbsd-compat/openbsd-compat.h openbsd-compat/strptime.c] Add strptime to
3234 the compat library which helps on platforms like old IRIX. Based on work
3235 by djm, tested by Tom Christensen.
Damien Miller00d9ae22010-08-17 01:59:31 +10003236 - OpenBSD CVS Sync
3237 - djm@cvs.openbsd.org 2010/08/12 21:49:44
3238 [ssh.c]
3239 close any extra file descriptors inherited from parent at start and
3240 reopen stdin/stdout to /dev/null when forking for ControlPersist.
3241
3242 prevents tools that fork and run a captive ssh for communication from
3243 failing to exit when the ssh completes while they wait for these fds to
3244 close. The inherited fds may persist arbitrarily long if a background
3245 mux master has been started by ControlPersist. cvs and scp were effected
3246 by this.
3247
3248 "please commit" markus@
Damien Miller07ad3892010-08-17 07:04:28 +10003249 - (djm) [regress/README.regress] typo
Darren Tuckeraa74f672010-08-16 13:15:23 +10003250
Tim Rice722b8d12010-08-12 09:43:13 -0700325120100812
3252 - (tim) [regress/login-timeout.sh regress/reconfigure.sh regress/reexec.sh
3253 regress/test-exec.sh] Under certain conditions when testing with sudo
3254 tests would fail because the pidfile could not be read by a regular user.
3255 "cat: cannot open ...../regress/pidfile: Permission denied (error 13)"
3256 Make sure cat is run by $SUDO. no objection from me. djm@
Tim Ricead7d5472010-08-12 10:33:01 -07003257 - (tim) [auth.c] add cast to quiet compiler. Change only affects SVR5 systems.
Tim Rice722b8d12010-08-12 09:43:13 -07003258
Damien Miller7e569b82010-08-09 02:28:37 +1000325920100809
Damien Miller2c4b13a2010-08-10 12:47:40 +10003260 - (djm) bz#1561: don't bother setting IFF_UP on tun(4) device if it is
3261 already set. Makes FreeBSD user openable tunnels useful; patch from
3262 richard.burakowski+ossh AT mrburak.net, ok dtucker@
Darren Tucker02c47342010-08-10 13:36:09 +10003263 - (dtucker) bug #1530: strip trailing ":" from hostname in ssh-copy-id.
3264 based in part on a patch from Colin Watson, ok djm@
Damien Miller2c4b13a2010-08-10 12:47:40 +10003265
326620100809
Damien Miller7e569b82010-08-09 02:28:37 +10003267 - OpenBSD CVS Sync
3268 - djm@cvs.openbsd.org 2010/08/08 16:26:42
3269 [version.h]
3270 crank to 5.6
Damien Miller792010b2010-08-09 02:32:05 +10003271 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
3272 [contrib/suse/openssh.spec] Crank version numbers
Damien Miller7e569b82010-08-09 02:28:37 +10003273
Damien Miller8e604ac2010-08-09 02:28:10 +1000327420100805
Damien Miller7fa96602010-08-05 13:03:13 +10003275 - OpenBSD CVS Sync
3276 - djm@cvs.openbsd.org 2010/08/04 05:37:01
3277 [ssh.1 ssh_config.5 sshd.8]
3278 Remove mentions of weird "addr/port" alternate address format for IPv6
3279 addresses combinations. It hasn't worked for ages and we have supported
3280 the more commen "[addr]:port" format for a long time. ok jmc@ markus@
Damien Miller1da63882010-08-05 13:03:51 +10003281 - djm@cvs.openbsd.org 2010/08/04 05:40:39
3282 [PROTOCOL.certkeys ssh-keygen.c]
3283 tighten the rules for certificate encoding by requiring that options
3284 appear in lexical order and make our ssh-keygen comply. ok markus@
Damien Millerc1583312010-08-05 13:04:50 +10003285 - djm@cvs.openbsd.org 2010/08/04 05:42:47
3286 [auth.c auth2-hostbased.c authfile.c authfile.h ssh-keysign.8]
3287 [ssh-keysign.c ssh.c]
3288 enable certificates for hostbased authentication, from Iain Morgan;
3289 "looks ok" markus@
Damien Miller5458c4d2010-08-05 13:05:15 +10003290 - djm@cvs.openbsd.org 2010/08/04 05:49:22
3291 [authfile.c]
3292 commited the wrong version of the hostbased certificate diff; this
3293 version replaces some strlc{py,at} verbosity with xasprintf() at
3294 the request of markus@
Damien Miller757f34e2010-08-05 13:05:31 +10003295 - djm@cvs.openbsd.org 2010/08/04 06:07:11
3296 [ssh-keygen.1 ssh-keygen.c]
3297 Support CA keys in PKCS#11 tokens; feedback and ok markus@
Damien Millerb89e6b72010-08-05 13:06:20 +10003298 - djm@cvs.openbsd.org 2010/08/04 06:08:40
3299 [ssh-keysign.c]
3300 clean for -Wuninitialized (Id sync only; portable had this change)
Damien Miller7d457182010-08-05 23:09:48 +10003301 - djm@cvs.openbsd.org 2010/08/05 13:08:42
3302 [channels.c]
3303 Fix a trio of bugs in the local/remote window calculation for datagram
3304 data channels (i.e. TunnelForward):
3305
3306 Calculate local_consumed correctly in channel_handle_wfd() by measuring
3307 the delta to buffer_len(c->output) from when we start to when we finish.
3308 The proximal problem here is that the output_filter we use in portable
3309 modified the length of the dequeued datagram (to futz with the headers
3310 for !OpenBSD).
3311
3312 In channel_output_poll(), don't enqueue datagrams that won't fit in the
3313 peer's advertised packet size (highly unlikely to ever occur) or which
3314 won't fit in the peer's remaining window (more likely).
3315
3316 In channel_input_data(), account for the 4-byte string header in
3317 datagram packets that we accept from the peer and enqueue in c->output.
3318
3319 report, analysis and testing 2/3 cases from wierbows AT us.ibm.com;
3320 "looks good" markus@
Damien Miller7fa96602010-08-05 13:03:13 +10003321
Damien Miller8e604ac2010-08-09 02:28:10 +1000332220100803
Darren Tucker8b7a0552010-08-03 15:50:16 +10003323 - (dtucker) [monitor.c] Bug #1795: Initialize the values to be returned from
3324 PAM to sane values in case the PAM method doesn't write to them. Spotted by
3325 Bitman Zhou, ok djm@.
Damien Miller844cccf2010-08-03 16:03:29 +10003326 - OpenBSD CVS Sync
3327 - djm@cvs.openbsd.org 2010/07/16 04:45:30
3328 [ssh-keygen.c]
3329 avoid bogus compiler warning
Damien Miller4e8285e2010-08-03 16:04:03 +10003330 - djm@cvs.openbsd.org 2010/07/16 14:07:35
3331 [ssh-rsa.c]
3332 more timing paranoia - compare all parts of the expected decrypted
3333 data before returning. AFAIK not exploitable in the SSH protocol.
3334 "groovy" deraadt@
Damien Millerc4bb91c2010-08-03 16:04:22 +10003335 - djm@cvs.openbsd.org 2010/07/19 03:16:33
3336 [sftp-client.c]
3337 bz#1797: fix swapped args in upload_dir_internal(), breaking recursive
3338 upload depth checks and causing verbose printing of transfers to always
3339 be turned on; patch from imorgan AT nas.nasa.gov
Damien Millere11e1ea2010-08-03 16:04:46 +10003340 - djm@cvs.openbsd.org 2010/07/19 09:15:12
3341 [clientloop.c readconf.c readconf.h ssh.c ssh_config.5]
3342 add a "ControlPersist" option that automatically starts a background
3343 ssh(1) multiplex master when connecting. This connection can stay alive
3344 indefinitely, or can be set to automatically close after a user-specified
3345 duration of inactivity. bz#1330 - patch by dwmw2 AT infradead.org, but
3346 further hacked on by wmertens AT cisco.com, apb AT cequrux.com,
3347 martin-mindrot-bugzilla AT earth.li and myself; "looks ok" markus@
Damien Miller8c1eb112010-08-03 16:05:05 +10003348 - djm@cvs.openbsd.org 2010/07/21 02:10:58
3349 [misc.c]
3350 sync timingsafe_bcmp() with the one dempsky@ committed to sys/lib/libkern
Damien Miller081f3c72010-08-03 16:05:25 +10003351 - dtucker@cvs.openbsd.org 2010/07/23 08:49:25
3352 [ssh.1]
3353 Ciphers is documented in ssh_config(5) these days
Darren Tucker8b7a0552010-08-03 15:50:16 +10003354
335520100819
Darren Tucker12b29db2010-07-19 21:24:13 +10003356 - (dtucker) [contrib/ssh-copy-ud.1] Bug #1786: update ssh-copy-id.1 with more
3357 details about its behaviour WRT existing directories. Patch from
3358 asguthrie at gmail com, ok djm.
3359
Damien Miller9308fc72010-07-16 13:56:01 +1000336020100716
3361 - (djm) OpenBSD CVS Sync
3362 - djm@cvs.openbsd.org 2010/07/02 04:32:44
3363 [misc.c]
3364 unbreak strdelim() skipping past quoted strings, e.g.
3365 AllowUsers "blah blah" blah
3366 was broken; report and fix in bz#1757 from bitman.zhou AT centrify.com
3367 ok dtucker;
Damien Miller1f25ab42010-07-16 13:56:23 +10003368 - djm@cvs.openbsd.org 2010/07/12 22:38:52
3369 [ssh.c]
3370 Make ExitOnForwardFailure work with fork-after-authentication ("ssh -f")
3371 for protocol 2. ok markus@
Damien Millerd0244d42010-07-16 13:56:43 +10003372 - djm@cvs.openbsd.org 2010/07/12 22:41:13
3373 [ssh.c ssh_config.5]
3374 expand %h to the hostname in ssh_config Hostname options. While this
3375 sounds useless, it is actually handy for working with unqualified
3376 hostnames:
3377
3378 Host *.*
3379 Hostname %h
3380 Host *
3381 Hostname %h.example.org
3382
3383 "I like it" markus@
Damien Miller8a0268f2010-07-16 13:57:51 +10003384 - djm@cvs.openbsd.org 2010/07/13 11:52:06
3385 [auth-rsa.c channels.c jpake.c key.c misc.c misc.h monitor.c]
3386 [packet.c ssh-rsa.c]
3387 implement a timing_safe_cmp() function to compare memory without leaking
3388 timing information by short-circuiting like memcmp() and use it for
3389 some of the more sensitive comparisons (though nothing high-value was
3390 readily attackable anyway); "looks ok" markus@
Damien Millerea1651c2010-07-16 13:58:37 +10003391 - djm@cvs.openbsd.org 2010/07/13 23:13:16
3392 [auth-rsa.c channels.c jpake.c key.c misc.c misc.h monitor.c packet.c]
3393 [ssh-rsa.c]
3394 s/timing_safe_cmp/timingsafe_bcmp/g
Damien Millerbcfbc482010-07-16 13:59:11 +10003395 - jmc@cvs.openbsd.org 2010/07/14 17:06:58
3396 [ssh.1]
3397 finally ssh synopsis looks nice again! this commit just removes a ton of
3398 hacks we had in place to make it work with old groff;
Damien Millerbad5e032010-07-16 13:59:59 +10003399 - schwarze@cvs.openbsd.org 2010/07/15 21:20:38
3400 [ssh-keygen.1]
3401 repair incorrect block nesting, which screwed up indentation;
3402 problem reported and fix OK by jmc@
Damien Miller9308fc72010-07-16 13:56:01 +10003403
Tim Ricecfbdc282010-07-14 13:42:28 -0700340420100714
3405 - (tim) [contrib/redhat/openssh.spec] Bug 1796: Test for skip_x11_askpass
3406 (line 77) should have been for no_x11_askpass.
3407
Damien Millercede1db2010-07-02 13:33:48 +1000340820100702
3409 - (djm) OpenBSD CVS Sync
3410 - jmc@cvs.openbsd.org 2010/06/26 00:57:07
3411 [ssh_config.5]
3412 tweak previous;
Damien Millerb96c4412010-07-02 13:34:24 +10003413 - djm@cvs.openbsd.org 2010/06/26 23:04:04
3414 [ssh.c]
3415 oops, forgot to #include <canohost.h>; spotted and patch from chl@
Damien Miller44b25042010-07-02 13:35:01 +10003416 - djm@cvs.openbsd.org 2010/06/29 23:15:30
3417 [ssh-keygen.1 ssh-keygen.c]
3418 allow import (-i) and export (-e) of PEM and PKCS#8 encoded keys;
3419 bz#1749; ok markus@
Damien Miller6018a362010-07-02 13:35:19 +10003420 - djm@cvs.openbsd.org 2010/06/29 23:16:46
3421 [auth2-pubkey.c sshd_config.5]
3422 allow key options (command="..." and friends) in AuthorizedPrincipals;
3423 ok markus@
Damien Millerea727282010-07-02 13:35:34 +10003424 - jmc@cvs.openbsd.org 2010/06/30 07:24:25
3425 [ssh-keygen.1]
3426 tweak previous;
Damien Miller6022f582010-07-02 13:37:01 +10003427 - jmc@cvs.openbsd.org 2010/06/30 07:26:03
3428 [ssh-keygen.c]
3429 sort usage();
Damien Millerd59dab82010-07-02 13:37:17 +10003430 - jmc@cvs.openbsd.org 2010/06/30 07:28:34
3431 [sshd_config.5]
3432 tweak previous;
Damien Miller0979b402010-07-02 13:37:33 +10003433 - millert@cvs.openbsd.org 2010/07/01 13:06:59
3434 [scp.c]
3435 Fix a longstanding problem where if you suspend scp at the
3436 password/passphrase prompt the terminal mode is not restored.
3437 OK djm@
Damien Miller527ded72010-07-02 13:40:16 +10003438 - phessler@cvs.openbsd.org 2010/06/27 19:19:56
3439 [regress/Makefile]
3440 fix how we run the tests so we can successfully use SUDO='sudo -E'
3441 in our env
Damien Millerab139cd2010-07-02 13:42:18 +10003442 - djm@cvs.openbsd.org 2010/06/29 23:59:54
3443 [cert-userkey.sh]
3444 regress tests for key options in AuthorizedPrincipals
Damien Millercede1db2010-07-02 13:33:48 +10003445
Tim Rice3fd307d2010-06-26 16:45:15 -0700344620100627
3447 - (tim) [openbsd-compat/port-uw.c] Reorder includes. auth-options.h now needs
3448 key.h.
3449
Damien Miller2e774462010-06-26 09:30:47 +1000345020100626
3451 - (djm) OpenBSD CVS Sync
3452 - djm@cvs.openbsd.org 2010/05/21 05:00:36
3453 [misc.c]
3454 colon() returns char*, so s/return (0)/return NULL/
Damien Miller4fe686d2010-06-26 09:36:10 +10003455 - markus@cvs.openbsd.org 2010/06/08 21:32:19
3456 [ssh-pkcs11.c]
3457 check length of value returned C_GetAttributValue for != 0
3458 from mdrtbugzilla@codefive.co.uk; bugzilla #1773; ok dtucker@
Damien Millerc094d1e2010-06-26 09:36:34 +10003459 - djm@cvs.openbsd.org 2010/06/17 07:07:30
3460 [mux.c]
3461 Correct sizing of object to be allocated by calloc(), replacing
3462 sizeof(state) with sizeof(*state). This worked by accident since
3463 the struct contained a single int at present, but could have broken
3464 in the future. patch from hyc AT symas.com
Damien Miller99ac4e92010-06-26 09:36:58 +10003465 - djm@cvs.openbsd.org 2010/06/18 00:58:39
3466 [sftp.c]
3467 unbreak ls in working directories that contains globbing characters in
3468 their pathnames. bz#1655 reported by vgiffin AT apple.com
Damien Miller7aa46ec2010-06-26 09:37:57 +10003469 - djm@cvs.openbsd.org 2010/06/18 03:16:03
3470 [session.c]
3471 Missing check for chroot_director == "none" (we already checked against
3472 NULL); bz#1564 from Jan.Pechanec AT Sun.COM
Damien Miller49566312010-06-26 09:38:23 +10003473 - djm@cvs.openbsd.org 2010/06/18 04:43:08
3474 [sftp-client.c]
3475 fix memory leak in do_realpath() error path; bz#1771, patch from
3476 anicka AT suse.cz
Damien Millerab6de352010-06-26 09:38:45 +10003477 - djm@cvs.openbsd.org 2010/06/22 04:22:59
3478 [servconf.c sshd_config.5]
3479 expose some more sshd_config options inside Match blocks:
3480 AuthorizedKeysFile AuthorizedPrincipalsFile
3481 HostbasedUsesNameFromPacketOnly PermitTunnel
3482 bz#1764; feedback from imorgan AT nas.nasa.gov; ok dtucker@
Damien Millerba3420a2010-06-26 09:39:07 +10003483 - djm@cvs.openbsd.org 2010/06/22 04:32:06
3484 [ssh-keygen.c]
3485 standardise error messages when attempting to open private key
3486 files to include "progname: filename: error reason"
3487 bz#1783; ok dtucker@
Damien Miller48147d62010-06-26 09:39:25 +10003488 - djm@cvs.openbsd.org 2010/06/22 04:49:47
3489 [auth.c]
3490 queue auth debug messages for bad ownership or permissions on the user's
3491 keyfiles. These messages will be sent after the user has successfully
3492 authenticated (where our client will display them with LogLevel=debug).
Damien Miller0e76c5e2010-06-26 09:39:59 +10003493 bz#1554; ok dtucker@
3494 - djm@cvs.openbsd.org 2010/06/22 04:54:30
3495 [ssh-keyscan.c]
3496 replace verbose and overflow-prone Linebuf code with read_keyfile_line()
3497 based on patch from joachim AT joachimschipper.nl; bz#1565; ok dtucker@
Damien Miller1b2b61e2010-06-26 09:47:43 +10003498 - djm@cvs.openbsd.org 2010/06/22 04:59:12
3499 [session.c]
3500 include the user name on "subsystem request for ..." log messages;
3501 bz#1571; ok dtucker@
Damien Millerd834d352010-06-26 09:48:02 +10003502 - djm@cvs.openbsd.org 2010/06/23 02:59:02
3503 [ssh-keygen.c]
3504 fix printing of extensions in v01 certificates that I broke in r1.190
Damien Miller232cfb12010-06-26 09:50:30 +10003505 - djm@cvs.openbsd.org 2010/06/25 07:14:46
3506 [channels.c mux.c readconf.c readconf.h ssh.h]
3507 bz#1327: remove hardcoded limit of 100 permitopen clauses and port
3508 forwards per direction; ok markus@ stevesk@
Damien Miller8853ca52010-06-26 10:00:14 +10003509 - djm@cvs.openbsd.org 2010/06/25 07:20:04
3510 [channels.c session.c]
3511 bz#1750: fix requirement for /dev/null inside ChrootDirectory for
3512 internal-sftp accidentally introduced in r1.253 by removing the code
3513 that opens and dup /dev/null to stderr and modifying the channels code
3514 to read stderr but discard it instead; ok markus@
Damien Millerbda3eca2010-06-26 10:01:33 +10003515 - djm@cvs.openbsd.org 2010/06/25 08:46:17
3516 [auth1.c auth2-none.c]
3517 skip the initial check for access with an empty password when
3518 PermitEmptyPasswords=no; bz#1638; ok markus@
Damien Miller383ffe62010-06-26 10:02:03 +10003519 - djm@cvs.openbsd.org 2010/06/25 23:10:30
3520 [ssh.c]
3521 log the hostname and address that we connected to at LogLevel=verbose
3522 after authentication is successful to mitigate "phishing" attacks by
3523 servers with trusted keys that accept authentication silently and
3524 automatically before presenting fake password/passphrase prompts;
3525 "nice!" markus@
Damien Miller1ab6a512010-06-26 10:02:24 +10003526 - djm@cvs.openbsd.org 2010/06/25 23:10:30
3527 [ssh.c]
3528 log the hostname and address that we connected to at LogLevel=verbose
3529 after authentication is successful to mitigate "phishing" attacks by
3530 servers with trusted keys that accept authentication silently and
3531 automatically before presenting fake password/passphrase prompts;
3532 "nice!" markus@
Damien Miller2e774462010-06-26 09:30:47 +10003533
Damien Millerd82a2602010-06-22 15:02:39 +1000353420100622
3535 - (djm) [loginrec.c] crank LINFO_NAMESIZE (username length) to 512
3536 bz#1579; ok dtucker
3537
Damien Millerea909792010-06-18 11:09:24 +1000353820100618
3539 - (djm) [contrib/ssh-copy-id] Update key file explicitly under ~
3540 rather than assuming that $CWD == $HOME. bz#1500, patch from
3541 timothy AT gelter.com
3542
Tim Riceb9ae4ec2010-06-17 11:11:44 -0700354320100617
3544 - (tim) [contrib/cygwin/README] Remove a reference to the obsolete
3545 minires-devel package, and to add the reference to the libedit-devel
3546 package since CYgwin now provides libedit. Patch from Corinna Vinschen.
3547
Damien Miller3bcce802010-05-21 14:48:16 +1000354820100521
3549 - (djm) OpenBSD CVS Sync
3550 - djm@cvs.openbsd.org 2010/05/07 11:31:26
3551 [regress/Makefile regress/cert-userkey.sh]
3552 regress tests for AuthorizedPrincipalsFile and "principals=" key option.
3553 feedback and ok markus@
Damien Miller3b903822010-05-21 14:56:25 +10003554 - djm@cvs.openbsd.org 2010/05/11 02:58:04
3555 [auth-rsa.c]
3556 don't accept certificates marked as "cert-authority" here; ok markus@
Damien Millerc6afb5f2010-05-21 14:56:47 +10003557 - djm@cvs.openbsd.org 2010/05/14 00:47:22
3558 [ssh-add.c]
3559 check that the certificate matches the corresponding private key before
3560 grafting it on
Damien Millerd530f5f2010-05-21 14:57:10 +10003561 - djm@cvs.openbsd.org 2010/05/14 23:29:23
3562 [channels.c channels.h mux.c ssh.c]
3563 Pause the mux channel while waiting for reply from aynch callbacks.
3564 Prevents misordering of replies if new requests arrive while waiting.
3565
3566 Extend channel open confirm callback to allow signalling failure
3567 conditions as well as success. Use this to 1) fix a memory leak, 2)
3568 start using the above pause mechanism and 3) delay sending a success/
3569 failure message on mux slave session open until we receive a reply from
3570 the server.
3571
3572 motivated by and with feedback from markus@
Damien Miller388f6fc2010-05-21 14:57:35 +10003573 - markus@cvs.openbsd.org 2010/05/16 12:55:51
3574 [PROTOCOL.mux clientloop.h mux.c readconf.c readconf.h ssh.1 ssh.c]
3575 mux support for remote forwarding with dynamic port allocation,
3576 use with
3577 LPORT=`ssh -S muxsocket -R0:localhost:25 -O forward somehost`
3578 feedback and ok djm@
Damien Miller84399552010-05-21 14:58:12 +10003579 - djm@cvs.openbsd.org 2010/05/20 11:25:26
3580 [auth2-pubkey.c]
3581 fix logspam when key options (from="..." especially) deny non-matching
3582 keys; reported by henning@ also bz#1765; ok markus@ dtucker@
Damien Millerd0e4a8e2010-05-21 14:58:32 +10003583 - djm@cvs.openbsd.org 2010/05/20 23:46:02
3584 [PROTOCOL.certkeys auth-options.c ssh-keygen.c]
3585 Move the permit-* options to the non-critical "extensions" field for v01
3586 certificates. The logic is that if another implementation fails to
3587 implement them then the connection just loses features rather than fails
3588 outright.
3589
3590 ok markus@
Damien Miller3bcce802010-05-21 14:48:16 +10003591
Darren Tucker5b6d0d02010-05-12 16:51:38 +1000359220100511
3593 - (dtucker) [Makefile.in] Bug #1770: Link libopenbsd-compat twice to solve
3594 circular dependency problem on old or odd platforms. From Tom Lane, ok
3595 djm@.
Damien Miller4b1ec832010-05-12 17:49:59 +10003596 - (djm) [openbsd-compat/openssl-compat.h] Fix build breakage on older
3597 libcrypto by defining OPENSSL_[DR]SA_MAX_MODULUS_BITS if they aren't
3598 already. ok dtucker@
Darren Tucker5b6d0d02010-05-12 16:51:38 +10003599
Damien Miller50af79b2010-05-10 11:52:00 +1000360020100510
3601 - OpenBSD CVS Sync
3602 - djm@cvs.openbsd.org 2010/04/23 01:47:41
3603 [ssh-keygen.c]
3604 bz#1740: display a more helpful error message when $HOME is
3605 inaccessible while trying to create .ssh directory. Based on patch
3606 from jchadima AT redhat.com; ok dtucker@
Damien Miller85c50d72010-05-10 11:53:02 +10003607 - djm@cvs.openbsd.org 2010/04/23 22:27:38
3608 [mux.c]
3609 set "detach_close" flag when registering channel cleanup callbacks.
3610 This causes the channel to close normally when its fds close and
3611 hangs when terminating a mux slave using ~. bz#1758; ok markus@
Damien Miller22a29882010-05-10 11:53:54 +10003612 - djm@cvs.openbsd.org 2010/04/23 22:42:05
3613 [session.c]
3614 set stderr to /dev/null for subsystems rather than just closing it.
3615 avoids hangs if a subsystem or shell initialisation writes to stderr.
3616 bz#1750; ok markus@
Damien Millerbebbb7e2010-05-10 11:54:38 +10003617 - djm@cvs.openbsd.org 2010/04/23 22:48:31
3618 [ssh-keygen.c]
3619 refuse to generate keys longer than OPENSSL_[RD]SA_MAX_MODULUS_BITS,
3620 since we would refuse to use them anyway. bz#1516; ok dtucker@
Damien Miller79442c02010-05-10 11:55:38 +10003621 - djm@cvs.openbsd.org 2010/04/26 22:28:24
3622 [sshconnect2.c]
3623 bz#1502: authctxt.success is declared as an int, but passed by
3624 reference to function that accepts sig_atomic_t*. Convert it to
3625 the latter; ok markus@ dtucker@
Damien Miller2725c212010-05-10 11:56:14 +10003626 - djm@cvs.openbsd.org 2010/05/01 02:50:50
3627 [PROTOCOL.certkeys]
3628 typo; jmeltzer@
Damien Miller099fc162010-05-10 11:56:50 +10003629 - dtucker@cvs.openbsd.org 2010/05/05 04:22:09
3630 [sftp.c]
3631 restore mput and mget which got lost in the tab-completion changes.
3632 found by Kenneth Whitaker, ok djm@
Damien Miller30da3442010-05-10 11:58:03 +10003633 - djm@cvs.openbsd.org 2010/05/07 11:30:30
3634 [auth-options.c auth-options.h auth.c auth.h auth2-pubkey.c]
3635 [key.c servconf.c servconf.h sshd.8 sshd_config.5]
3636 add some optional indirection to matching of principal names listed
3637 in certificates. Currently, a certificate must include the a user's name
3638 to be accepted for authentication. This change adds the ability to
3639 specify a list of certificate principal names that are acceptable.
3640
3641 When authenticating using a CA trusted through ~/.ssh/authorized_keys,
3642 this adds a new principals="name1[,name2,...]" key option.
3643
3644 For CAs listed through sshd_config's TrustedCAKeys option, a new config
3645 option "AuthorizedPrincipalsFile" specifies a per-user file containing
3646 the list of acceptable names.
3647
3648 If either option is absent, the current behaviour of requiring the
3649 username to appear in principals continues to apply.
3650
3651 These options are useful for role accounts, disjoint account namespaces
3652 and "user@realm"-style naming policies in certificates.
3653
3654 feedback and ok markus@
Damien Miller81d3fc52010-05-10 11:58:45 +10003655 - jmc@cvs.openbsd.org 2010/05/07 12:49:17
3656 [sshd_config.5]
3657 tweak previous;
Damien Miller50af79b2010-05-10 11:52:00 +10003658
Darren Tucker9f8703b2010-04-23 11:12:06 +1000365920100423
3660 - (dtucker) [configure.ac] Bug #1756: Check for the existence of a lib64 dir
3661 in the openssl install directory (some newer openssl versions do this on at
3662 least some amd64 platforms).
3663
Damien Millerc4eddee2010-04-18 08:07:43 +1000366420100418
3665 - OpenBSD CVS Sync
3666 - jmc@cvs.openbsd.org 2010/04/16 06:45:01
3667 [ssh_config.5]
3668 tweak previous; ok djm
Damien Miller1f181422010-04-18 08:08:03 +10003669 - jmc@cvs.openbsd.org 2010/04/16 06:47:04
3670 [ssh-keygen.1 ssh-keygen.c]
3671 tweak previous; ok djm
Damien Millerc617aa92010-04-18 08:08:20 +10003672 - djm@cvs.openbsd.org 2010/04/16 21:14:27
3673 [sshconnect.c]
3674 oops, %r => remote username, not %u
Damien Miller53f4bb62010-04-18 08:15:14 +10003675 - djm@cvs.openbsd.org 2010/04/16 01:58:45
3676 [regress/cert-hostkey.sh regress/cert-userkey.sh]
3677 regression tests for v01 certificate format
3678 includes interop tests for v00 certs
Darren Tuckere25a9bd2010-04-18 13:35:00 +10003679 - (dtucker) [contrib/aix/buildbff.sh] Fix creation of ssh_prng_cmds.default
3680 file.
Damien Millerc4eddee2010-04-18 08:07:43 +10003681
Damien Millera45f1c02010-04-16 15:51:34 +1000368220100416
3683 - (djm) Release openssh-5.5p1
Damien Millerd6fc3062010-04-16 15:51:45 +10003684 - OpenBSD CVS Sync
3685 - djm@cvs.openbsd.org 2010/03/26 03:13:17
3686 [bufaux.c]
3687 allow buffer_get_int_ret/buffer_get_int64_ret to take a NULL pointer
3688 argument to allow skipping past values in a buffer
Damien Miller67f30d72010-04-16 15:52:03 +10003689 - jmc@cvs.openbsd.org 2010/03/26 06:54:36
3690 [ssh.1]
3691 tweak previous;
Damien Miller544378d2010-04-16 15:52:24 +10003692 - jmc@cvs.openbsd.org 2010/03/27 14:26:55
3693 [ssh_config.5]
3694 tweak previous; ok dtucker
Damien Millerdeb5a142010-04-16 15:52:43 +10003695 - djm@cvs.openbsd.org 2010/04/10 00:00:16
3696 [ssh.c]
3697 bz#1746 - suppress spurious tty warning when using -O and stdin
3698 is not a tty; ok dtucker@ markus@
Damien Miller67283992010-04-16 15:53:02 +10003699 - djm@cvs.openbsd.org 2010/04/10 00:04:30
3700 [sshconnect.c]
3701 fix terminology: we didn't find a certificate in known_hosts, we found
3702 a CA key
Damien Miller22c97f12010-04-16 15:53:23 +10003703 - djm@cvs.openbsd.org 2010/04/10 02:08:44
3704 [clientloop.c]
3705 bz#1698: kill channel when pty allocation requests fail. Fixed
3706 stuck client if the server refuses pty allocation.
3707 ok dtucker@ "think so" markus@
Damien Miller88680652010-04-16 15:53:43 +10003708 - djm@cvs.openbsd.org 2010/04/10 02:10:56
3709 [sshconnect2.c]
3710 show the key type that we are offering in debug(), helps distinguish
3711 between certs and plain keys as the path to the private key is usually
3712 the same.
Damien Miller601a23c2010-04-16 15:54:01 +10003713 - djm@cvs.openbsd.org 2010/04/10 05:48:16
3714 [mux.c]
3715 fix NULL dereference; from matthew.haub AT alumni.adelaide.edu.au
Damien Millerb1b17042010-04-16 15:54:19 +10003716 - djm@cvs.openbsd.org 2010/04/14 22:27:42
3717 [ssh_config.5 sshconnect.c]
3718 expand %r => remote username in ssh_config:ProxyCommand;
3719 ok deraadt markus
Damien Miller031c9102010-04-16 15:54:44 +10003720 - markus@cvs.openbsd.org 2010/04/15 20:32:55
3721 [ssh-pkcs11.c]
3722 retry lookup for private key if there's no matching key with CKA_SIGN
3723 attribute enabled; this fixes fixes MuscleCard support (bugzilla #1736)
3724 ok djm@
Damien Miller4e270b02010-04-16 15:56:21 +10003725 - djm@cvs.openbsd.org 2010/04/16 01:47:26
3726 [PROTOCOL.certkeys auth-options.c auth-options.h auth-rsa.c]
3727 [auth2-pubkey.c authfd.c key.c key.h myproposal.h ssh-add.c]
3728 [ssh-agent.c ssh-dss.c ssh-keygen.1 ssh-keygen.c ssh-rsa.c]
3729 [sshconnect.c sshconnect2.c sshd.c]
3730 revised certificate format ssh-{dss,rsa}-cert-v01@openssh.com with the
3731 following changes:
3732
3733 move the nonce field to the beginning of the certificate where it can
3734 better protect against chosen-prefix attacks on the signature hash
3735
3736 Rename "constraints" field to "critical options"
3737
3738 Add a new non-critical "extensions" field
3739
3740 Add a serial number
3741
3742 The older format is still support for authentication and cert generation
3743 (use "ssh-keygen -t v00 -s ca_key ..." to generate a v00 certificate)
3744
3745 ok markus@