]> andersk Git - openssh.git/blame_incremental - ChangeLog
- (djm) [configure.ac mux.c sftp.c openbsd-compat/Makefile.in]
[openssh.git] / ChangeLog
... / ...
CommitLineData
120080519
2 - (djm) [configure.ac mux.c sftp.c openbsd-compat/Makefile.in]
3 [openbsd-compat/fmt_scaled.c openbsd-compat/openbsd-compat.h]
4 Fix compilation on Linux, including pulling in fmt_scaled(3)
5 implementation from OpenBSD's libutil.
6
720080518
8 - (djm) OpenBSD CVS Sync
9 - djm@cvs.openbsd.org 2008/04/04 05:14:38
10 [sshd_config.5]
11 ChrootDirectory is supported in Match blocks (in fact, it is most useful
12 there). Spotted by Minstrel AT minstrel.org.uk
13 - djm@cvs.openbsd.org 2008/04/04 06:44:26
14 [sshd_config.5]
15 oops, some unrelated stuff crept into that commit - backout.
16 spotted by jmc@
17 - djm@cvs.openbsd.org 2008/04/05 02:46:02
18 [sshd_config.5]
19 HostbasedAuthentication is supported under Match too
20 - (djm) [openbsd-compat/bsd-arc4random.c openbsd-compat/openbsd-compat.c]
21 [configure.ac] Implement arc4random_buf(), import implementation of
22 arc4random_uniform() from OpenBSD
23 - (djm) [openbsd-compat/bsd-arc4random.c] Warning fixes
24 - (djm) [openbsd-compat/port-tun.c] needs sys/queue.h
25 - (djm) OpenBSD CVS Sync
26 - djm@cvs.openbsd.org 2008/04/13 00:22:17
27 [dh.c sshd.c]
28 Use arc4random_buf() when requesting more than a single word of output
29 Use arc4random_uniform() when the desired random number upper bound
30 is not a power of two
31 ok deraadt@ millert@
32 - djm@cvs.openbsd.org 2008/04/18 12:32:11
33 [sftp-client.c sftp-client.h sftp-server.c sftp.1 sftp.c sftp.h]
34 introduce sftp extension methods statvfs@openssh.com and
35 fstatvfs@openssh.com that implement statvfs(2)-like operations,
36 based on a patch from miklos AT szeredi.hu (bz#1399)
37 also add a "df" command to the sftp client that uses the
38 statvfs@openssh.com to produce a df(1)-like display of filesystem
39 space and inode utilisation
40 ok markus@
41 - jmc@cvs.openbsd.org 2008/04/18 17:15:47
42 [sftp.1]
43 macro fixage;
44 - djm@cvs.openbsd.org 2008/04/18 22:01:33
45 [session.c]
46 remove unneccessary parentheses
47 - otto@cvs.openbsd.org 2008/04/29 11:20:31
48 [monitor_mm.h]
49 garbage collect two unused fields in struct mm_master; ok markus@
50 - djm@cvs.openbsd.org 2008/04/30 10:14:03
51 [ssh-keyscan.1 ssh-keyscan.c]
52 default to rsa (protocol 2) keys, instead of rsa1 keys; spotted by
53 larsnooden AT openoffice.org
54 - pyr@cvs.openbsd.org 2008/05/07 05:49:37
55 [servconf.c servconf.h session.c sshd_config.5]
56 Enable the AllowAgentForwarding option in sshd_config (global and match
57 context), to specify if agents should be permitted on the server.
58 As the man page states:
59 ``Note that disabling Agent forwarding does not improve security
60 unless users are also denied shell access, as they can always install
61 their own forwarders.''
62 ok djm@, ok and a mild frown markus@
63 - pyr@cvs.openbsd.org 2008/05/07 06:43:35
64 [sshd_config]
65 push the sshd_config bits in, spotted by ajacoutot@
66 - jmc@cvs.openbsd.org 2008/05/07 08:00:14
67 [sshd_config.5]
68 sort;
69 - markus@cvs.openbsd.org 2008/05/08 06:59:01
70 [bufaux.c buffer.h channels.c packet.c packet.h]
71 avoid extra malloc/copy/free when receiving data over the net;
72 ~10% speedup for localhost-scp; ok djm@
73 - djm@cvs.openbsd.org 2008/05/08 12:02:23
74 [auth-options.c auth1.c channels.c channels.h clientloop.c gss-serv.c]
75 [monitor.c monitor_wrap.c nchan.c servconf.c serverloop.c session.c]
76 [ssh.c sshd.c]
77 Implement a channel success/failure status confirmation callback
78 mechanism. Each channel maintains a queue of callbacks, which will
79 be drained in order (RFC4253 guarantees confirm messages are not
80 reordered within an channel).
81 Also includes a abandonment callback to clean up if a channel is
82 closed without sending confirmation messages. This probably
83 shouldn't happen in compliant implementations, but it could be
84 abused to leak memory.
85 ok markus@ (as part of a larger diff)
86 - djm@cvs.openbsd.org 2008/05/08 12:21:16
87 [monitor.c monitor_wrap.c session.h servconf.c servconf.h session.c]
88 [sshd_config sshd_config.5]
89 Make the maximum number of sessions run-time controllable via
90 a sshd_config MaxSessions knob. This is useful for disabling
91 login/shell/subsystem access while leaving port-forwarding working
92 (MaxSessions 0), disabling connection multiplexing (MaxSessions 1) or
93 simply increasing the number of allows multiplexed sessions.
94 Because some bozos are sure to configure MaxSessions in excess of the
95 number of available file descriptors in sshd (which, at peak, might be
96 as many as 9*MaxSessions), audit sshd to ensure that it doesn't leak fds
97 on error paths, and make it fail gracefully on out-of-fd conditions -
98 sending channel errors instead of than exiting with fatal().
99 bz#1090; MaxSessions config bits and manpage from junyer AT gmail.com
100 ok markus@
101 - djm@cvs.openbsd.org 2008/05/08 13:06:11
102 [clientloop.c clientloop.h ssh.c]
103 Use new channel status confirmation callback system to properly deal
104 with "important" channel requests that fail, in particular command exec,
105 shell and subsystem requests. Previously we would optimistically assume
106 that the requests would always succeed, which could cause hangs if they
107 did not (e.g. when the server runs out of fds) or were unimplemented by
108 the server (bz #1384)
109 Also, properly report failing multiplex channel requests via the mux
110 client stderr (subject to LogLevel in the mux master) - better than
111 silently failing.
112 most bits ok markus@ (as part of a larger diff)
113 - djm@cvs.openbsd.org 2008/05/09 04:55:56
114 [channels.c channels.h clientloop.c serverloop.c]
115 Try additional addresses when connecting to a port forward destination
116 whose DNS name resolves to more than one address. The previous behaviour
117 was to try the first address and give up.
118 Reported by stig AT venaas.com in bz#343
119 great feedback and ok markus@
120 - djm@cvs.openbsd.org 2008/05/09 14:18:44
121 [clientloop.c clientloop.h ssh.c mux.c]
122 tidy up session multiplexing code, moving it into its own file and
123 making the function names more consistent - making ssh.c and
124 clientloop.c a fair bit more readable.
125 ok markus@
126 - djm@cvs.openbsd.org 2008/05/09 14:26:08
127 [ssh.c]
128 dingo stole my diff hunk
129 - markus@cvs.openbsd.org 2008/05/09 16:16:06
130 [session.c]
131 re-add the USE_PIPES code and enable it.
132 without pipes shutdown-read from the sshd does not trigger
133 a SIGPIPE when the forked program does a write.
134 ok djm@
135 (Id sync only, USE_PIPES never left portable OpenSSH)
136 - markus@cvs.openbsd.org 2008/05/09 16:17:51
137 [channels.c]
138 error-fd race: don't enable the error fd in the select bitmask
139 for channels with both in- and output closed, since the channel
140 will go away before we call select();
141 report, lots of debugging help and ok djm@
142 - markus@cvs.openbsd.org 2008/05/09 16:21:13
143 [channels.h clientloop.c nchan.c serverloop.c]
144 unbreak
145 ssh -2 localhost od /bin/ls | true
146 ignoring SIGPIPE by adding a new channel message (EOW) that signals
147 the peer that we're not interested in any data it might send.
148 fixes bz #85; discussion, debugging and ok djm@
149 - pvalchev@cvs.openbsd.org 2008/05/12 20:52:20
150 [umac.c]
151 Ensure nh_result lies on a 64-bit boundary (fixes warnings observed
152 on Itanium on Linux); from Dale Talcott (bug #1462); ok djm@
153 - djm@cvs.openbsd.org 2008/05/15 23:52:24
154 [nchan2.ms]
155 document eow message in ssh protocol 2 channel state machine;
156 feedback and ok markus@
157 - djm@cvs.openbsd.org 2008/05/18 21:29:05
158 [sftp-server.c]
159 comment extension announcement
160 - djm@cvs.openbsd.org 2008/05/16 08:30:42
161 [PROTOCOL]
162 document our protocol extensions and deviations; ok markus@
163 - djm@cvs.openbsd.org 2008/05/17 01:31:56
164 [PROTOCOL]
165 grammar and correctness fixes from stevesk@
166
16720080403
168 - (djm) [openbsd-compat/bsd-poll.c] Include stdlib.h to avoid compile-
169 time warnings on LynxOS. Patch from ops AT iki.fi
170 - (djm) Force string arguments to replacement setproctitle() though
171 strnvis first. Ok dtucker@
172
17320080403
174 - (djm) OpenBSD CVS sync:
175 - markus@cvs.openbsd.org 2008/04/02 15:36:51
176 [channels.c]
177 avoid possible hijacking of x11-forwarded connections (back out 1.183)
178 CVE-2008-1483; ok djm@
179 - jmc@cvs.openbsd.org 2008/03/27 22:37:57
180 [sshd.8]
181 remove trailing whitespace;
182 - djm@cvs.openbsd.org 2008/04/03 09:50:14
183 [version.h]
184 openssh-5.0
185 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
186 [contrib/suse/openssh.spec] Crank version numbers in RPM spec files
187 - (djm) [README] Update link to release notes
188 - (djm) Release 5.0p1
189
19020080315
191 - (djm) [regress/test-exec.sh] Quote putty-related variables in case they are
192 empty; report and patch from Peter Stuge
193 - (djm) [regress/test-exec.sh] Silence noise from detection of putty
194 commands; report from Peter Stuge
195 - (djm) [session.c] Relocate incorrectly-placed closefrom() that was causing
196 crashes when used with ChrootDirectory
197
198
19920080327
200 - (dtucker) Cache selinux status earlier so we know if it's enabled after a
201 chroot. Allows ChrootDirectory to work with selinux support compiled in
202 but not enabled. Using it with selinux enabled will require some selinux
203 support inside the chroot. "looks sane" djm@
204 - (djm) Fix RCS ident in sftp-server-main.c
205 - (djm) OpenBSD CVS sync:
206 - jmc@cvs.openbsd.org 2008/02/11 07:58:28
207 [ssh.1 sshd.8 sshd_config.5]
208 bump Mdocdate for pages committed in "febuary", necessary because
209 of a typo in rcs.c;
210 - deraadt@cvs.openbsd.org 2008/03/13 01:49:53
211 [monitor_fdpass.c]
212 Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due to
213 an extensive discussion with otto, kettenis, millert, and hshoexer
214 - deraadt@cvs.openbsd.org 2008/03/15 16:19:02
215 [monitor_fdpass.c]
216 Repair the simple cases for msg_controllen where it should just be
217 CMSG_SIZE(sizeof(int)), not sizeof(buffer) which may be larger because
218 of alignment; ok kettenis hshoexer
219 - djm@cvs.openbsd.org 2008/03/23 12:54:01
220 [sftp-client.c]
221 prefer POSIX-style file renaming over filexfer rename behaviour if the
222 server supports the posix-rename@openssh.com extension.
223 Note that the old (filexfer) behaviour would refuse to clobber an
224 existing file. Users who depended on this should adjust their sftp(1)
225 usage.
226 ok deraadt@ markus@
227 - deraadt@cvs.openbsd.org 2008/03/24 16:11:07
228 [monitor_fdpass.c]
229 msg_controllen has to be CMSG_SPACE so that the kernel can account for
230 each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len). This
231 works now that kernel fd passing has been fixed to accept a bit of
232 sloppiness because of this ABI repair.
233 lots of discussion with kettenis
234 - djm@cvs.openbsd.org 2008/03/25 11:58:02
235 [session.c sshd_config.5]
236 ignore ~/.ssh/rc if a sshd_config ForceCommand is specified;
237 from dtucker@ ok deraadt@ djm@
238 - djm@cvs.openbsd.org 2008/03/25 23:01:41
239 [session.c]
240 last patch had backwards test; spotted by termim AT gmail.com
241 - djm@cvs.openbsd.org 2008/03/26 21:28:14
242 [auth-options.c auth-options.h session.c sshd.8]
243 add no-user-rc authorized_keys option to disable execution of ~/.ssh/rc
244 - djm@cvs.openbsd.org 2008/03/27 00:16:49
245 [version.h]
246 openssh-4.9
247 - djm@cvs.openbsd.org 2008/03/24 21:46:54
248 [regress/sftp-badcmds.sh]
249 disable no-replace rename test now that we prefer a POSIX rename; spotted
250 by dkrause@
251 - (djm) [configure.ac] fix alignment of --without-stackprotect description
252 - (djm) [configure.ac] --with-selinux too
253 - (djm) [regress/Makefile] cleanup PuTTY interop test droppings
254 - (djm) [README] Update link to release notes
255 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
256 [contrib/suse/openssh.spec] Crank version numbers in RPM spec files
257 - (djm) Release 4.9p1
258
25920080315
260 - (djm) [regress/test-exec.sh] Quote putty-related variables in case they are
261 empty; report and patch from Peter Stuge
262 - (djm) [regress/test-exec.sh] Silence noise from detection of putty
263 commands; report from Peter Stuge
264 - (djm) [session.c] Relocate incorrectly-placed closefrom() that was causing
265 crashes when used with ChrootDirectory
266
26720080314
268 - (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by
269 vinschen at redhat.com. Add () to put echo commands in subshell for lls test
270 I mistakenly left out of last commit.
271 - (tim) [regress/localcommand.sh] Shell portability fix. Reported by imorgan at
272 nas.nasa.gov
273
27420080313
275 - (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to
276 self: make changes to Makefile.in next time, not the generated Makefile).
277 - (djm) [Makefile.in regress/test-exec.sh] Find installed plink(1) and
278 puttygen(1) by $PATH
279 - (tim) [scp.c] Use poll.h if available, fall back to sys/poll.h if not. Patch
280 by vinschen at redhat.com.
281 - (tim) [regress/sftp-cmds.sh regress/ssh2putty.sh] Shell portability fixes
282 from vinschen at redhat.com and imorgan at nas.nasa.gov
283
28420080312
285 - (djm) OpenBSD CVS Sync
286 - dtucker@cvs.openbsd.org 2007/10/29 06:57:13
287 [regress/Makefile regress/localcommand.sh]
288 Add simple regress test for LocalCommand; ok djm@
289 - jmc@cvs.openbsd.org 2007/11/25 15:35:09
290 [regress/agent-getpeereid.sh regress/agent.sh]
291 more existant -> existent, from Martynas Venckus;
292 pfctl changes: ok henning
293 ssh changes: ok deraadt
294 - djm@cvs.openbsd.org 2007/12/12 05:04:03
295 [regress/sftp-cmds.sh]
296 unbreak lls command and add a regress test that would have caught the
297 breakage; spotted by mouring@
298 NB. sftp code change already committed.
299 - djm@cvs.openbsd.org 2007/12/21 04:13:53
300 [regress/Makefile regress/test-exec.sh regress/putty-ciphers.sh]
301 [regress/putty-kex.sh regress/putty-transfer.sh regress/ssh2putty.sh]
302 basic (crypto, kex and transfer) interop regression tests against putty
303 To run these, install putty and run "make interop-tests" from the build
304 directory - the tests aren't run by default yet.
305
30620080311
307 - (dtucker) [auth-pam.c monitor.c session.c sshd.c] Bug #926: Move
308 pam_open_session and pam_close_session into the privsep monitor, which
309 will ensure that pam_session_close is called as root. Patch from Tomas
310 Mraz.
311
31220080309
313 - (dtucker) [configure.ac] It turns out gcc's -fstack-protector-all doesn't
314 always work for all platforms and versions, so test what we can and
315 add a configure flag to turn it of if needed. ok djm@
316 - (dtucker) [openbsd-compat/port-aix.{c,h}] Remove AIX specific initgroups
317 implementation. It's not needed to fix bug #1081 and breaks the build
318 on some AIX configurations.
319 - (dtucker) [openbsd-compat/regress/strtonumtest.c] Bug #1347: Use platform's
320 equivalent of LLONG_MAX for the compat regression tests, which makes them
321 run on AIX and HP-UX. Patch from David Leonard.
322 - (dtucker) [configure.ac] Run stack-protector tests with -Werror to catch
323 platforms where gcc understands the option but it's not supported (and
324 thus generates a warning).
325
32620080307
327 - (djm) OpenBSD CVS Sync
328 - jmc@cvs.openbsd.org 2008/02/11 07:58:28
329 [ssh.1 sshd.8 sshd_config.5]
330 bump Mdocdate for pages committed in "febuary", necessary because
331 of a typo in rcs.c;
332 - djm@cvs.openbsd.org 2008/02/13 22:38:17
333 [servconf.h session.c sshd.c]
334 rekey arc4random and OpenSSL RNG in postauth child
335 closefrom fds > 2 before shell/command execution
336 ok markus@
337 - mbalmer@cvs.openbsd.org 2008/02/14 13:10:31
338 [sshd.c]
339 When started in configuration test mode (-t) do not check that sshd is
340 being started with an absolute path.
341 ok djm
342 - markus@cvs.openbsd.org 2008/02/20 15:25:26
343 [session.c]
344 correct boolean encoding for coredump; der Mouse via dugsong
345 - djm@cvs.openbsd.org 2008/02/22 05:58:56
346 [session.c]
347 closefrom() call was too early, delay it until just before we execute
348 the user's rc files (if any).
349 - dtucker@cvs.openbsd.org 2008/02/22 20:44:02
350 [clientloop.c packet.c packet.h serverloop.c]
351 Allow all SSH2 packet types, including UNIMPLEMENTED to reset the
352 keepalive timer (bz #1307). ok markus@
353 - djm@cvs.openbsd.org 2008/02/27 20:21:15
354 [sftp-server.c]
355 add an extension method "posix-rename@openssh.com" to perform POSIX atomic
356 rename() operations. based on patch from miklos AT szeredi.hu in bz#1400;
357 ok dtucker@ markus@
358 - deraadt@cvs.openbsd.org 2008/03/02 18:19:35
359 [monitor_fdpass.c]
360 use a union to ensure alignment of the cmsg (pay attention: various other
361 parts of the tree need this treatment too); ok djm
362 - deraadt@cvs.openbsd.org 2008/03/04 21:15:42
363 [version.h]
364 crank version; from djm
365 - (tim) [regress/sftp-glob.sh] Shell portability fix.
366
36720080302
368 - (dtucker) [configure.ac] FreeBSD's glob() doesn't behave the way we expect
369 either, so use our own.
370
37120080229
372 - (dtucker) [openbsd-compat/bsd-poll.c] We don't check for select(2) in
373 configure (and there's not much point, as openssh won't work without it)
374 so HAVE_SELECT is not defined and the poll(2) compat code doesn't get
375 built in. Remove HAVE_SELECT so we can build on platforms without poll.
376 - (dtucker) [scp.c] Include sys/poll.h inside HAVE_SYS_POLL_H.
377 - (djm) [contrib/gnome-ssh-askpass2.h] Keep askpass windown on top. From
378 Debian patch via bernd AT openbsd.org
379
38020080228
381 - (dtucker) [configure.ac] Add -fstack-protector to LDFLAGS too, fixes
382 linking problems on AIX with gcc 4.1.x.
383 - (dtucker) [includes.h ssh-add.c ssh-agent.c ssh-keygen.c ssh.c sshd.c
384 openbsd-compat/openssl-compat.{c,h}] Bug #1437 Move the OpenSSL compat
385 header to after OpenSSL headers, since some versions of OpenSSL have
386 SSLeay_add_all_algorithms as a macro already.
387 - (dtucker) [key.c defines.h openbsd-compat/openssl-compat.h] Move old OpenSSL
388 compat glue into openssl-compat.h.
389 - (dtucker) [configure.ac openbsd-compat/port-aix.{c,h}] Bug #1081: Implement
390 getgrouplist via getgrset on AIX, rather than iterating over getgrent.
391 This allows, eg, Match and AllowGroups directives to work with NIS and
392 LDAP groups.
393 - (dtucker) [sshd.c] Bug #1042: make log messages for tcpwrappers use the
394 same SyslogFacility as the rest of sshd. Patch from William Knox,
395 ok djm@.
396
39720080225
398 - (dtucker) [openbsd-compat/fake-rfc2553.h] rename ssh_gai_strerror hack
399 since it now conflicts with the helper function in misc.c. From
400 vinschen AT redhat.com.
401 - (dtucker) [configure.ac audit-bsm.c] Bug #1420: Add a local implementation
402 of aug_get_machine for systems that don't have their own (eg OS X, FreeBSD).
403 Help and testing from csjp at FreeBSD org, vgiffin at apple com. ok djm@
404 - (dtucker) [includes.h openbsd-compat/openssl-compat.c] Bug #1437: reshuffle
405 headers so ./configure --with-ssl-engine actually works. Patch from
406 Ian Lister.
407
40820080224
409 - (tim) [contrib/cygwin/ssh-host-config]
410 Grammar changes on SYSCONFDIR LOCALSTATEDIR messages.
411 Check more thoroughly that it's possible to create the /var/empty directory.
412 Patch by vinschen AT redhat.com
413
41420080210
415 - OpenBSD CVS Sync
416 - chl@cvs.openbsd.org 2008/01/11 07:22:28
417 [sftp-client.c sftp-client.h]
418 disable unused functions
419 initially from tobias@, but disabled them by placing them in
420 "#ifdef notyet" which was asked by djm@
421 ok djm@ tobias@
422 - djm@cvs.openbsd.org 2008/01/19 19:13:28
423 [ssh.1]
424 satisfy the pedants: -q does not suppress all diagnostic messages (e.g.
425 some commandline parsing warnings go unconditionally to stdout).
426 - djm@cvs.openbsd.org 2008/01/19 20:48:53
427 [clientloop.c]
428 fd leak on session multiplexing error path. Report and patch from
429 gregory_shively AT fanniemae.com
430 - djm@cvs.openbsd.org 2008/01/19 20:51:26
431 [ssh.c]
432 ignore SIGPIPE in multiplex client mode - we can receive this if the
433 server runs out of fds on us midway. Report and patch from
434 gregory_shively AT fanniemae.com
435 - djm@cvs.openbsd.org 2008/01/19 22:04:57
436 [sftp-client.c]
437 fix remote handle leak in do_download() local file open error path;
438 report and fix from sworley AT chkno.net
439 - djm@cvs.openbsd.org 2008/01/19 22:22:58
440 [ssh-keygen.c]
441 when hashing individual hosts (ssh-keygen -Hf hostname), make sure we
442 hash just the specified hostname and not the entire hostspec from the
443 keyfile. It may be of the form "hostname,ipaddr", which would lead to
444 a hash that never matches. report and fix from jp AT devnull.cz
445 - djm@cvs.openbsd.org 2008/01/19 22:37:19
446 [ssh-keygen.c]
447 unbreak line numbering (broken in revision 1.164), fix error message
448 - djm@cvs.openbsd.org 2008/01/19 23:02:40
449 [channels.c]
450 When we added support for specified bind addresses for port forwards, we
451 added a quirk SSH_OLD_FORWARD_ADDR. There is a bug in our handling of
452 this for -L port forwards that causes the client to listen on both v4
453 and v6 addresses when connected to a server with this quirk, despite
454 having set 0.0.0.0 as a bind_address.
455 report and patch from Jan.Pechanec AT Sun.COM; ok dtucker@
456 - djm@cvs.openbsd.org 2008/01/19 23:09:49
457 [readconf.c readconf.h sshconnect2.c]
458 promote rekeylimit to a int64 so it can hold the maximum useful limit
459 of 2^32; report and patch from Jan.Pechanec AT Sun.COM, ok dtucker@
460 - djm@cvs.openbsd.org 2008/01/20 00:38:30
461 [sftp.c]
462 When uploading, correctly handle the case of an unquoted filename with
463 glob metacharacters that match a file exactly but not as a glob, e.g. a
464 file called "[abcd]". report and test cases from duncan2nd AT gmx.de
465 - djm@cvs.openbsd.org 2008/01/21 17:24:30
466 [sftp-server.c]
467 Remove the fixed 100 handle limit in sftp-server and allocate as many
468 as we have available file descriptors. Patch from miklos AT szeredi.hu;
469 ok dtucker@ markus@
470 - djm@cvs.openbsd.org 2008/01/21 19:20:17
471 [sftp-client.c]
472 when a remote write error occurs during an upload, ensure that ACKs for
473 all issued requests are properly drained. patch from t8m AT centrum.cz
474 - dtucker@cvs.openbsd.org 2008/01/23 01:56:54
475 [clientloop.c packet.c serverloop.c]
476 Revert the change for bz #1307 as it causes connection aborts if an IGNORE
477 packet arrives while we're waiting in packet_read_expect (and possibly
478 elsewhere).
479 - jmc@cvs.openbsd.org 2008/01/31 20:06:50
480 [scp.1]
481 explain how to handle local file names containing colons;
482 requested by Tamas TEVESZ
483 ok dtucker
484 - markus@cvs.openbsd.org 2008/02/04 21:53:00
485 [session.c sftp-server.c sftp.h]
486 link sftp-server into sshd; feedback and ok djm@
487 - mcbride@cvs.openbsd.org 2008/02/09 12:15:43
488 [ssh.1 sshd.8]
489 Document the correct permissions for the ~/.ssh/ directory.
490 ok jmc
491 - djm@cvs.openbsd.org 2008/02/10 09:55:37
492 [sshd_config.5]
493 mantion that "internal-sftp" is useful with ForceCommand too
494 - djm@cvs.openbsd.org 2008/02/10 10:54:29
495 [servconf.c session.c]
496 delay ~ expansion for ChrootDirectory so it expands to the logged-in user's
497 home, rather than the user who starts sshd (probably root)
498
49920080119
500 - (djm) Silence noice from expr in ssh-copy-id; patch from
501 mikel AT mikelward.com
502 - (djm) Only listen for IPv6 connections on AF_INET6 sockets; patch from
503 tsr2600 AT gmail.com
504
50520080102
506 - (dtucker) [configure.ac] Fix message for -fstack-protector-all test.
507
50820080101
509 - (dtucker) OpenBSD CVS Sync
510 - dtucker@cvs.openbsd.org 2007/12/31 10:41:31
511 [readconf.c servconf.c]
512 Prevent strict-aliasing warnings on newer gcc versions. bz #1355, patch
513 from Dmitry V. Levin, ok djm@
514 - dtucker@cvs.openbsd.org 2007/12/31 15:27:04
515 [sshd.c]
516 When in inetd mode, have sshd generate a Protocol 1 ephemeral server
517 key only for connections where the client chooses Protocol 1 as opposed
518 to when it's enabled in the server's config. Speeds up Protocol 2
519 connections to inetd-mode servers that also allow Protocol 1. bz #440,
520 based on a patch from bruno at wolff.to, ok markus@
521 - dtucker@cvs.openbsd.org 2008/01/01 08:47:04
522 [misc.c]
523 spaces -> tabs from my previous commit
524 - dtucker@cvs.openbsd.org 2008/01/01 09:06:39
525 [scp.c]
526 If scp -p encounters a pre-epoch timestamp, use the epoch which is
527 as close as we can get given that it's used unsigned. Add a little
528 debugging while there. bz #828, ok djm@
529 - dtucker@cvs.openbsd.org 2008/01/01 09:27:33
530 [sshd_config.5 servconf.c]
531 Allow PermitRootLogin in a Match block. Allows for, eg, permitting root
532 only from the local network. ok markus@, man page bit ok jmc@
533 - dtucker@cvs.openbsd.org 2008/01/01 08:51:20
534 [moduli]
535 Updated moduli file; ok djm@
536
53720071231
538 - (dtucker) [configure.ac openbsd-compat/glob.{c,h}] Bug #1407: force use of
539 builtin glob implementation on Mac OS X. Based on a patch from
540 vgiffin at apple.
541
54220071229
543 - (dtucker) OpenBSD CVS Sync
544 - djm@cvs.openbsd.org 2007/12/12 05:04:03
545 [sftp.c]
546 unbreak lls command and add a regress test that would have caught the
547 breakage; spotted by mouring@
548 - dtucker@cvs.openbsd.org 2007/12/27 14:22:08
549 [servconf.c canohost.c misc.c channels.c sshconnect.c misc.h ssh-keyscan.c
550 sshd.c]
551 Add a small helper function to consistently handle the EAI_SYSTEM error
552 code of getaddrinfo. Prompted by vgiffin at apple com via bz #1417.
553 ok markus@ stevesk@
554 - dtucker@cvs.openbsd.org 2007/12/28 15:32:24
555 [clientloop.c serverloop.c packet.c]
556 Make SSH2_MSG_UNIMPLEMENTED and SSH2_MSG_IGNORE messages reset the
557 ServerAlive and ClientAlive timers. Prevents dropping a connection
558 when these are enabled but the peer does not support our keepalives.
559 bz #1307, ok djm@.
560 - dtucker@cvs.openbsd.org 2007/12/28 22:34:47
561 [clientloop.c]
562 Use the correct packet maximum sizes for remote port and agent forwarding.
563 Prevents the server from killing the connection if too much data is queued
564 and an excessively large packet gets sent. bz #1360, ok djm@.
565
56620071202
567 - (dtucker) [configure.ac] Enable -fstack-protector-all on systems where
568 gcc supports it. ok djm@
569 - (dtucker) [scp.c] Update $OpenBSD tag missing from rev 1.175 and remove
570 leftover debug code.
571 - (dtucker) OpenBSD CVS Sync
572 - dtucker@cvs.openbsd.org 2007/10/29 00:52:45
573 [auth2-gss.c]
574 Allow build without -DGSSAPI; ok deraadt@
575 (Id sync only, Portable already has the ifdefs)
576 - dtucker@cvs.openbsd.org 2007/10/29 01:55:04
577 [ssh.c]
578 Plug tiny mem leaks in ControlPath and ProxyCommand option processing;
579 ok djm@
580 - dtucker@cvs.openbsd.org 2007/10/29 04:08:08
581 [monitor_wrap.c monitor.c]
582 Send config block back to slave for invalid users too so options
583 set by a Match block (eg Banner) behave the same for non-existent
584 users. Found by and ok djm@
585 - dtucker@cvs.openbsd.org 2007/10/29 06:51:59
586 [ssh_config.5]
587 ProxyCommand and LocalCommand use the user's shell, not /bin/sh; ok djm@
588 - dtucker@cvs.openbsd.org 2007/10/29 06:54:50
589 [ssh.c]
590 Make LocalCommand work for Protocol 1 too; ok djm@
591 - jmc@cvs.openbsd.org 2007/10/29 07:48:19
592 [ssh_config.5]
593 clean up after previous macro removal;
594 - djm@cvs.openbsd.org 2007/11/03 00:36:14
595 [clientloop.c]
596 fix memory leak in process_cmdline(), patch from Jan.Pechanec AT Sun.COM;
597 ok dtucker@
598 - deraadt@cvs.openbsd.org 2007/11/03 01:24:06
599 [ssh.c]
600 bz #1377: getpwuid results were being clobbered by another getpw* call
601 inside tilde_expand_filename(); save the data we need carefully
602 ok djm
603 - dtucker@cvs.openbsd.org 2007/11/03 02:00:32
604 [ssh.c]
605 Use xstrdup/xfree when saving pwname and pwdir; ok deraadt@
606 - deraadt@cvs.openbsd.org 2007/11/03 02:03:49
607 [ssh.c]
608 avoid errno trashing in signal handler; ok dtucker
609
61020071030
611 - (djm) OpenBSD CVS Sync
612 - djm@cvs.openbsd.org 2007/10/29 23:49:41
613 [openbsd-compat/sys-tree.h]
614 remove extra backslash at the end of RB_PROTOTYPE, report from
615 Jan.Pechanec AT Sun.COM; ok deraadt@
616
61720071026
618 - (djm) OpenBSD CVS Sync
619 - stevesk@cvs.openbsd.org 2007/09/11 23:49:09
620 [sshpty.c]
621 remove #if defined block not needed; ok markus@ dtucker@
622 (NB. RCD ID sync only for portable)
623 - djm@cvs.openbsd.org 2007/09/21 03:05:23
624 [ssh_config.5]
625 document KbdInteractiveAuthentication in ssh_config.5;
626 patch from dkg AT fifthhorseman.net
627 - djm@cvs.openbsd.org 2007/09/21 08:15:29
628 [auth-bsdauth.c auth-passwd.c auth.c auth.h auth1.c auth2-chall.c]
629 [monitor.c monitor_wrap.c]
630 unifdef -DBSD_AUTH
631 unifdef -USKEY
632 These options have been in use for some years;
633 ok markus@ "no objection" millert@
634 (NB. RCD ID sync only for portable)
635 - canacar@cvs.openbsd.org 2007/09/25 23:48:57
636 [ssh-agent.c]
637 When adding a key that already exists, update the properties
638 (time, confirm, comment) instead of discarding them. ok djm@ markus@
639 - ray@cvs.openbsd.org 2007/09/27 00:15:57
640 [dh.c]
641 Don't return -1 on error in dh_pub_is_valid(), since it evaluates
642 to true.
643 Also fix a typo.
644 Initial diff from Matthew Dempsky, input from djm.
645 OK djm, markus.
646 - dtucker@cvs.openbsd.org 2007/09/29 00:25:51
647 [auth2.c]
648 Remove unused prototype. ok djm@
649 - chl@cvs.openbsd.org 2007/10/02 17:49:58
650 [ssh-keygen.c]
651 handles zero-sized strings that fgets can return
652 properly removes trailing newline
653 removes an unused variable
654 correctly counts line number
655 "looks ok" ray@ markus@
656 - markus@cvs.openbsd.org 2007/10/22 19:10:24
657 [readconf.c]
658 make sure that both the local and remote port are correct when
659 parsing -L; Jan Pechanec (bz #1378)
660 - djm@cvs.openbsd.org 2007/10/24 03:30:02
661 [sftp.c]
662 rework argument splitting and parsing to cope correctly with common
663 shell escapes and make handling of escaped characters consistent
664 with sh(1) and between sftp commands (especially between ones that
665 glob their arguments and ones that don't).
666 parse command flags using getopt(3) rather than hand-rolled parsers.
667 ok dtucker@
668 - djm@cvs.openbsd.org 2007/10/24 03:44:02
669 [scp.c]
670 factor out network read/write into an atomicio()-like function, and
671 use it to handle short reads, apply bandwidth limits and update
672 counters. make network IO non-blocking, so a small trickle of
673 reads/writes has a chance of updating the progress meter; bz #799
674 ok dtucker@
675 - djm@cvs.openbsd.org 2006/08/29 09:44:00
676 [regress/sftp-cmds.sh]
677 clean up our mess
678 - markus@cvs.openbsd.org 2006/11/06 09:27:43
679 [regress/cfgmatch.sh]
680 fix quoting for non-(c)sh login shells.
681 - dtucker@cvs.openbsd.org 2006/12/13 08:36:36
682 [regress/cfgmatch.sh]
683 Additional test for multiple PermitOpen entries. ok djm@
684 - pvalchev@cvs.openbsd.org 2007/06/07 19:41:46
685 [regress/cipher-speed.sh regress/try-ciphers.sh]
686 test umac-64@openssh.com
687 ok djm@
688 - djm@cvs.openbsd.org 2007/10/24 03:32:35
689 [regress/sftp-cmds.sh regress/sftp-glob.sh regress/test-exec.sh]
690 comprehensive tests for sftp escaping its interaction with globbing;
691 ok dtucker@
692 - djm@cvs.openbsd.org 2007/10/26 05:30:01
693 [regress/sftp-glob.sh regress/test-exec.sh]
694 remove "echo -E" crap that I added in last commit and use printf(1) for
695 cases where we strictly require echo not to reprocess escape characters.
696 - deraadt@cvs.openbsd.org 2005/11/28 17:50:12
697 [openbsd-compat/glob.c]
698 unused arg in internal static API
699 - jakob@cvs.openbsd.org 2007/10/11 18:36:41
700 [openbsd-compat/getrrsetbyname.c openbsd-compat/getrrsetbyname.h]
701 use RRSIG instead of SIG for DNSSEC. ok djm@
702 - otto@cvs.openbsd.org 2006/10/21 09:55:03
703 [openbsd-compat/base64.c]
704 remove calls to abort(3) that can't happen anyway; from
705 <bret dot lambert at gmail.com>; ok millert@ deraadt@
706 - frantzen@cvs.openbsd.org 2004/04/24 18:11:46
707 [openbsd-compat/sys-tree.h]
708 sync to Niels Provos' version. avoid unused variable warning in
709 RB_NEXT()
710 - tdeval@cvs.openbsd.org 2004/11/24 18:10:42
711 [openbsd-compat/sys-tree.h]
712 typo
713 - grange@cvs.openbsd.org 2004/05/04 16:59:32
714 [openbsd-compat/sys-queue.h]
715 Remove useless ``elm'' argument from the SIMPLEQ_REMOVE_HEAD macro.
716 This matches our SLIST behaviour and NetBSD's SIMPLEQ as well.
717 ok millert krw deraadt
718 - deraadt@cvs.openbsd.org 2005/02/25 13:29:30
719 [openbsd-compat/sys-queue.h]
720 minor white spacing
721 - otto@cvs.openbsd.org 2005/10/17 20:19:42
722 [openbsd-compat/sys-queue.h]
723 Performing certain operations on queue.h data structurs produced
724 funny results. An example is calling LIST_REMOVE on the same
725 element twice. This will not fail, but result in a data structure
726 referencing who knows what. Prevent these accidents by NULLing some
727 fields on remove and replace. This way, either a panic or segfault
728 will be produced on the faulty operation.
729 - otto@cvs.openbsd.org 2005/10/24 20:25:14
730 [openbsd-compat/sys-queue.h]
731 Partly backout. NOLIST, used in LISTs is probably interfering.
732 requested by deraadt@
733 - otto@cvs.openbsd.org 2005/10/25 06:37:47
734 [openbsd-compat/sys-queue.h]
735 Some uvm problem is being exposed with the more strict macros.
736 Revert until we've found out what's causing the panics.
737 - otto@cvs.openbsd.org 2005/11/25 08:06:25
738 [openbsd-compat/sys-queue.h]
739 Introduce debugging aid for queue macros. Disabled by default; but
740 developers are encouraged to run with this enabled.
741 ok krw@ fgsch@ deraadt@
742 - otto@cvs.openbsd.org 2007/04/30 18:42:34
743 [openbsd-compat/sys-queue.h]
744 Enable QUEUE_MACRO_DEBUG on DIAGNOSTIC kernels.
745 Input and okays from krw@, millert@, otto@, deraadt@, miod@.
746 - millert@cvs.openbsd.org 2004/10/07 16:56:11
747 GLOB_NOESCAPE is POSIX so move it out of the #ifndef _POSIX_SOURCE
748 block.
749 (NB. mostly an RCS ID sync, as portable strips out the conditionals)
750 - (djm) [regress/sftp-cmds.sh]
751 Use more restrictive glob to pick up test files from /bin - some platforms
752 ship broken symlinks there which could spoil the test.
753 - (djm) [openbsd-compat/bindresvport.c]
754 Sync RCS ID after irrelevant (for portable OpenSSH) header shuffling
755
75620070927
757 - (dtucker) [configure.ac atomicio.c] Fall back to including <sys/poll.h> if
758 we don't have <poll.h> (eq QNX). From bacon at cs nyu edu.
759 - (dtucker) [configure.ac defines.h] Shadow expiry does not work on QNX6
760 so disable it for that platform. From bacon at cs nyu edu.
761
76220070921
763 - (djm) [atomicio.c] Fix spin avoidance for platforms that define
764 EWOULDBLOCK; patch from ben AT psc.edu
765
76620070917
767 - (djm) OpenBSD CVS Sync
768 - djm@cvs.openbsd.org 2007/08/23 02:49:43
769 [auth-passwd.c auth.c session.c]
770 unifdef HAVE_LOGIN_CAP; ok deraadt@ millert@
771 NB. RCS ID sync only for portable
772 - djm@cvs.openbsd.org 2007/08/23 02:55:51
773 [auth-passwd.c auth.c session.c]
774 missed include bits from last commit
775 NB. RCS ID sync only for portable
776 - djm@cvs.openbsd.org 2007/08/23 03:06:10
777 [auth.h]
778 login_cap.h doesn't belong here
779 NB. RCS ID sync only for portable
780 - djm@cvs.openbsd.org 2007/08/23 03:22:16
781 [auth2-none.c sshd_config sshd_config.5]
782 Support "Banner=none" to disable displaying of the pre-login banner;
783 ok dtucker@ deraadt@
784 - djm@cvs.openbsd.org 2007/08/23 03:23:26
785 [sshconnect.c]
786 Execute ProxyCommands with $SHELL rather than /bin/sh unconditionally
787 - djm@cvs.openbsd.org 2007/09/04 03:21:03
788 [clientloop.c monitor.c monitor_fdpass.c monitor_fdpass.h]
789 [monitor_wrap.c ssh.c]
790 make file descriptor passing code return an error rather than call fatal()
791 when it encounters problems, and use this to make session multiplexing
792 masters survive slaves failing to pass all stdio FDs; ok markus@
793 - djm@cvs.openbsd.org 2007/09/04 11:15:56
794 [ssh.c sshconnect.c sshconnect.h]
795 make ssh(1)'s ConnectTimeout option apply to both the TCP connection and
796 SSH banner exchange (previously it just covered the TCP connection).
797 This allows callers of ssh(1) to better detect and deal with stuck servers
798 that accept a TCP connection but don't progress the protocol, and also
799 makes ConnectTimeout useful for connections via a ProxyCommand;
800 feedback and "looks ok" markus@
801 - sobrado@cvs.openbsd.org 2007/09/09 11:38:01
802 [ssh-add.c ssh-agent.1 ssh-agent.c ssh-keygen.c]
803 sort synopsis and options in ssh-agent(1); usage is lowercase
804 ok jmc@
805 - stevesk@cvs.openbsd.org 2007/09/11 04:36:29
806 [sshpty.c]
807 sort #include
808 NB. RCS ID sync only
809 - gilles@cvs.openbsd.org 2007/09/11 15:47:17
810 [session.c ssh-keygen.c sshlogin.c]
811 use strcspn to properly overwrite '\n' in fgets returned buffer
812 ok pyr@, ray@, millert@, moritz@, chl@
813 - stevesk@cvs.openbsd.org 2007/09/11 23:49:09
814 [sshpty.c]
815 remove #if defined block not needed; ok markus@ dtucker@
816 NB. RCS ID sync only
817 - stevesk@cvs.openbsd.org 2007/09/12 19:39:19
818 [umac.c]
819 use xmalloc() and xfree(); ok markus@ pvalchev@
820 - djm@cvs.openbsd.org 2007/09/13 04:39:04
821 [sftp-server.c]
822 fix incorrect test when setting syslog facility; from Jan Pechanec
823 - djm@cvs.openbsd.org 2007/09/16 00:55:52
824 [sftp-client.c]
825 use off_t instead of u_int64_t for file offsets, matching what the
826 progressmeter code expects; bz #842
827 - (tim) [defines.h] Fix regression in long password support on OpenServer 6.
828 Problem report and additional testing rac AT tenzing.org.
829
83020070914
831 - (dtucker) [openbsd-compat/bsd-asprintf.c] Plug mem leak in error path.
832 Patch from Jan.Pechanec at sun com.
833
83420070910
835 - (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1358: Always
836 return 0 on successful test. From David.Leonard at quest com.
837 - (tim) [configure.ac] Autoconf didn't define HAVE_LIBIAF because we
838 did a AC_CHECK_FUNCS within the AC_CHECK_LIB test.
839
84020070817
841 - (dtucker) [sshd.8] Many Linux variants use a single "!" to denote locked
842 accounts and that's what the code looks for, so make man page and code
843 agree. Pointed out by Roumen Petrov.
844 - (dtucker) [INSTALL] Group the parts describing random options and PAM
845 implementations together which is hopefully more coherent.
846 - (dtucker) [INSTALL] the pid file is sshd.pid not ssh.pid.
847 - (dtucker) [INSTALL] Give PAM its own heading.
848 - (dtucker) [INSTALL] Link to tcpwrappers.
849
85020070816
851 - (dtucker) [session.c] Call PAM cleanup functions for unauthenticated
852 connections too. Based on a patch from Sandro Wefel, with & ok djm@
853
85420070815
855 - (dtucker) OpenBSD CVS Sync
856 - markus@cvs.openbsd.org 2007/08/15 08:14:46
857 [clientloop.c]
858 do NOT fall back to the trused x11 cookie if generation of an untrusted
859 cookie fails; from Jan Pechanec, via security-alert at sun.com;
860 ok dtucker
861 - markus@cvs.openbsd.org 2007/08/15 08:16:49
862 [version.h]
863 openssh 4.7
864 - stevesk@cvs.openbsd.org 2007/08/15 12:13:41
865 [ssh_config.5]
866 tun device forwarding now honours ExitOnForwardFailure; ok markus@
867 - (dtucker) [openbsd-compat/bsd-cray.c] Remove debug from signal handler.
868 ok djm@
869 - (dtucker) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec
870 contrib/suse/openssh.spec] Crank version.
871
87220070813
873 - (dtucker) [session.c] Bug #1339: ensure that pam_setcred() is always
874 called with PAM_ESTABLISH_CRED at least once, which resolves a problem
875 with pam_dhkeys. Patch from David Leonard, ok djm@
876
87720070810
878 - (dtucker) [auth-pam.c] Use sigdie here too. ok djm@
879 - (dtucker) [configure.ac] Bug #1343: Set DISABLE_FD_PASSING for QNX6. From
880 Matt Kraai, ok djm@
881
88220070809
883 - (dtucker) [openbsd-compat/port-aix.c] Comment typo.
884 - (dtucker) [README.platform] Document the interaction between PermitRootLogin
885 and the AIX native login restrictions.
886 - (dtucker) [defines.h] Remove _PATH_{CSHELL,SHELLS} which aren't
887 used anywhere and are a potential source of warnings.
888
88920070808
890 - (djm) OpenBSD CVS Sync
891 - ray@cvs.openbsd.org 2007/07/12 05:48:05
892 [key.c]
893 Delint: remove some unreachable statements, from Bret Lambert.
894 OK markus@ and dtucker@.
895 - sobrado@cvs.openbsd.org 2007/08/06 19:16:06
896 [scp.1 scp.c]
897 the ellipsis is not an optional argument; while here, sync the usage
898 and synopsis of commands
899 lots of good ideas by jmc@
900 ok jmc@
901 - djm@cvs.openbsd.org 2007/08/07 07:32:53
902 [clientloop.c clientloop.h ssh.c]
903 bz#1232: ensure that any specified LocalCommand is executed after the
904 tunnel device is opened. Also, make failures to open a tunnel device
905 fatal when ExitOnForwardFailure is active.
906 Reported by h.goebel AT goebel-consult.de; ok dtucker markus reyk deraadt
907
90820070724
909 - (tim) [openssh.xml.in] make FMRI match what package scripts use.
910 - (tim) [openbsd-compat/regress/closefromtest.c] Bug 1345: fix open() call.
911 Report/patch by David.Leonard AT quest.com (and Bernhard Simon)
912 - (tim) [buildpkg.sh.in openssh.xml.in] Allow more flexibility where smf(5)
913 - (tim) [buildpkg.sh.in] s|$FAKE_ROOT/${sysconfdir}|$FAKE_ROOT${sysconfdir}|
914
91520070628
916 - (djm) bz#1325: Fix SELinux in permissive mode where it would
917 incorrectly fatal() on errors. patch from cjwatson AT debian.org;
918 ok dtucker
919
92020070625
921 - (dtucker) OpenBSD CVS Sync
922 - djm@cvs.openbsd.org 2007/06/13 00:21:27
923 [scp.c]
924 don't ftruncate() non-regular files; bz#1236 reported by wood AT
925 xmission.com; ok dtucker@
926 - djm@cvs.openbsd.org 2007/06/14 21:43:25
927 [ssh.c]
928 handle EINTR when waiting for mux exit status properly
929 - djm@cvs.openbsd.org 2007/06/14 22:48:05
930 [ssh.c]
931 when waiting for the multiplex exit status, read until the master end
932 writes an entire int of data *and* closes the client_fd; fixes mux
933 regression spotted by dtucker, ok dtucker@
934 - djm@cvs.openbsd.org 2007/06/19 02:04:43
935 [atomicio.c]
936 if the fd passed to atomicio/atomiciov() is non blocking, then poll() to
937 avoid a spin if it is not yet ready for reading/writing; ok dtucker@
938 - dtucker@cvs.openbsd.org 2007/06/25 08:20:03
939 [channels.c]
940 Correct test for window updates every three packets; prevents sending
941 window updates for every single packet. ok markus@
942 - dtucker@cvs.openbsd.org 2007/06/25 12:02:27
943 [atomicio.c]
944 Include <poll.h> like the man page says rather than <sys/poll.h>. ok djm@
945 - (dtucker) [atomicio.c] Test for EWOULDBLOCK in atomiciov to match
946 atomicio.
947 - (dtucker) [atomicio.c configure.ac openbsd-compat/Makefile.in
948 openbsd-compat/bsd-poll.{c,h} openbsd-compat/openbsd-compat.h]
949 Add an implementation of poll() built on top of select(2). Code from
950 OpenNTPD with changes suggested by djm. ok djm@
951
95220070614
953 - (dtucker) [cipher-ctr.c umac.c openbsd-compat/openssl-compat.h] Move the
954 USE_BUILTIN_RIJNDAEL compat goop to openssl-compat.h so it can be
955 shared with umac.c. Allows building with OpenSSL 0.9.5 again including
956 umac support. With tim@ djm@, ok djm.
957 - (dtucker) [openbsd-compat/openssl-compat.h] Merge USE_BUILTIN_RIJNDAEL
958 sections. Fixes builds with early OpenSSL 0.9.6 versions.
959 - (dtucker) [openbsd-compat/openssl-compat.h] Remove redundant definition
960 of USE_BUILTIN_RIJNDAEL since the <0.9.6 test is covered by the
961 subsequent <0.9.7 test.
962
96320070612
964 - (dtucker) OpenBSD CVS Sync
965 - markus@cvs.openbsd.org 2007/06/11 09:14:00
966 [channels.h]
967 increase default channel windows; ok djm
968 - djm@cvs.openbsd.org 2007/06/12 07:41:00
969 [ssh-add.1]
970 better document ssh-add's -d option (delete identies from agent), bz#1224
971 new text based on some provided by andrewmc-debian AT celt.dias.ie;
972 ok dtucker@
973 - djm@cvs.openbsd.org 2007/06/12 08:20:00
974 [ssh-gss.h gss-serv.c gss-genr.c]
975 relocate server-only GSSAPI code from libssh to server; bz #1225
976 patch from simon AT sxw.org.uk; ok markus@ dtucker@
977 - djm@cvs.openbsd.org 2007/06/12 08:24:20
978 [scp.c]
979 make scp try to skip FIFOs rather than blocking when nothing is listening.
980 depends on the platform supporting sane O_NONBLOCK semantics for open
981 on FIFOs (apparently POSIX does not mandate this), which OpenBSD does.
982 bz #856; report by cjwatson AT debian.org; ok markus@
983 - djm@cvs.openbsd.org 2007/06/12 11:11:08
984 [ssh.c]
985 fix slave exit value when a control master goes away without passing the
986 full exit status by ensuring that the slave reads a full int. bz#1261
987 reported by frekko AT gmail.com; ok markus@ dtucker@
988 - djm@cvs.openbsd.org 2007/06/12 11:15:17
989 [ssh.c ssh.1]
990 Add "-K" flag for ssh to set GSSAPIAuthentication=yes and
991 GSSAPIDelegateCredentials=yes. This is symmetric with -k (disable GSSAPI)
992 and is useful for hosts with /home on Kerberised NFS; bz #1312
993 patch from Markus.Kuhn AT cl.cam.ac.uk; ok dtucker@ markus@
994 - djm@cvs.openbsd.org 2007/06/12 11:45:27
995 [ssh.c]
996 improved exit message from multiplex slave sessions; bz #1262
997 reported by alexandre.nunes AT gmail.com; ok dtucker@
998 - dtucker@cvs.openbsd.org 2007/06/12 11:56:15
999 [gss-genr.c]
1000 Pass GSS OID to gss_display_status to provide better information in
1001 error messages. Patch from Simon Wilkinson via bz 1220. ok djm@
1002 - jmc@cvs.openbsd.org 2007/06/12 13:41:03
1003 [ssh-add.1]
1004 identies -> identities;
1005 - jmc@cvs.openbsd.org 2007/06/12 13:43:55
1006 [ssh.1]
1007 add -K to SYNOPSIS;
1008 - dtucker@cvs.openbsd.org 2007/06/12 13:54:28
1009 [scp.c]
1010 Encode filename with strnvis if the name contains a newline (which can't
1011 be represented in the scp protocol), from bz #891. ok markus@
1012
101320070611
1014 - (djm) Bugzilla #1306: silence spurious error messages from hang-on-exit
1015 fix; tested by dtucker@ and jochen.kirn AT gmail.com
1016 - pvalchev@cvs.openbsd.org 2007/06/07 19:37:34
1017 [kex.h mac.c mac.h monitor_wrap.c myproposal.h packet.c ssh.1]
1018 [ssh_config.5 sshd.8 sshd_config.5]
1019 Add a new MAC algorithm for data integrity, UMAC-64 (not default yet,
1020 must specify umac-64@openssh.com). Provides about 20% end-to-end speedup
1021 compared to hmac-md5. Represents a different approach to message
1022 authentication to that of HMAC that may be beneficial if HMAC based on
1023 one of its underlying hash algorithms is found to be vulnerable to a
1024 new attack. http://www.ietf.org/rfc/rfc4418.txt
1025 in conjunction with and OK djm@
1026 - pvalchev@cvs.openbsd.org 2007/06/08 04:40:40
1027 [ssh_config]
1028 Add a "MACs" line after "Ciphers" with the default MAC algorithms,
1029 to ease people who want to tweak both (eg. for performance reasons).
1030 ok deraadt@ djm@ dtucker@
1031 - jmc@cvs.openbsd.org 2007/06/08 07:43:46
1032 [ssh_config.5]
1033 put the MAC list into a display, like we do for ciphers,
1034 since groff has trouble handling wide lines;
1035 - jmc@cvs.openbsd.org 2007/06/08 07:48:09
1036 [sshd_config.5]
1037 oops, here too: put the MAC list into a display, like we do for
1038 ciphers, since groff has trouble with wide lines;
1039 - markus@cvs.openbsd.org 2007/06/11 08:04:44
1040 [channels.c]
1041 send 'window adjust' messages every tree packets and do not wait
1042 until 50% of the window is consumed. ok djm dtucker
1043 - (djm) [configure.ac umac.c] If platform doesn't provide swap32(3), then
1044 fallback to provided bit-swizzing functions
1045 - (dtucker) [openbsd-compat/bsd-misc.c] According to the spec the "remainder"
1046 argument to nanosleep may be NULL. Currently this never happens in OpenSSH,
1047 but check anyway in case this changes or the code gets used elsewhere.
1048 - (dtucker) [includes.h] Bug #1243: HAVE_PATHS -> HAVE_PATHS_H. Should
1049 prevent warnings about redefinitions of various things in paths.h.
1050 Spotted by cartmanltd at hotmail.com.
1051
105220070605
1053 - (dtucker) OpenBSD CVS Sync
1054 - djm@cvs.openbsd.org 2007/05/22 10:18:52
1055 [sshd.c]
1056 zap double include; from p_nowaczyk AT o2.pl
1057 (not required in -portable, Id sync only)
1058 - djm@cvs.openbsd.org 2007/05/30 05:58:13
1059 [kex.c]
1060 tidy: KNF, ARGSUSED and u_int
1061 - jmc@cvs.openbsd.org 2007/05/31 19:20:16
1062 [scp.1 ssh_config.5 sftp-server.8 ssh-agent.1 sshd_config.5 sftp.1
1063 ssh-keygen.1 ssh-keyscan.1 ssh-add.1 sshd.8 ssh.1 ssh-keysign.8]
1064 convert to new .Dd format;
1065 (We will need to teach mdoc2man.awk to understand this too.)
1066 - djm@cvs.openbsd.org 2007/05/31 23:34:29
1067 [packet.c]
1068 gc unreachable code; spotted by Tavis Ormandy
1069 - djm@cvs.openbsd.org 2007/06/02 09:04:58
1070 [bufbn.c]
1071 memory leak on error path; from arnaud.lacombe.1 AT ulaval.ca
1072 - djm@cvs.openbsd.org 2007/06/05 06:52:37
1073 [kex.c monitor_wrap.c packet.c mac.h kex.h mac.c]
1074 Preserve MAC ctx between packets, saving 2xhash calls per-packet.
1075 Yields around a 12-16% end-to-end speedup for arcfour256/hmac-md5
1076 patch from markus@ tested dtucker@ and myself, ok markus@ and me (I'm
1077 committing at his request)
1078 - (dtucker) [mdoc2man.awk] Teach it to deal with $Mdocdate tags that
1079 OpenBSD's cvs now adds.
1080 - (dtucker) [mdoc2man.awk] Remove trailing "$" from Mdocdate regex so
1081 mindrot's cvs doesn't expand it on us.
1082 - (dtucker) [mdoc2man.awk] Add support for %R references, used for RFCs.
1083
108420070520
1085 - (dtucker) OpenBSD CVS Sync
1086 - stevesk@cvs.openbsd.org 2007/04/14 22:01:58
1087 [auth2.c]
1088 remove unused macro; from Dmitry V. Levin <ldv@altlinux.org>
1089 - stevesk@cvs.openbsd.org 2007/04/18 01:12:43
1090 [sftp-server.c]
1091 cast "%llu" format spec to (unsigned long long); do not assume a
1092 u_int64_t arg is the same as 'unsigned long long'.
1093 from Dmitry V. Levin <ldv@altlinux.org>
1094 ok markus@ 'Yes, that looks correct' millert@
1095 - dtucker@cvs.openbsd.org 2007/04/23 10:15:39
1096 [servconf.c]
1097 Remove debug() left over from development. ok deraadt@
1098 - djm@cvs.openbsd.org 2007/05/17 07:50:31
1099 [log.c]
1100 save and restore errno when logging; ok deraadt@
1101 - djm@cvs.openbsd.org 2007/05/17 07:55:29
1102 [sftp-server.c]
1103 bz#1286 stop reading and processing commands when input or output buffer
1104 is nearly full, otherwise sftp-server would happily try to grow the
1105 input/output buffers past the maximum supported by the buffer API and
1106 promptly fatal()
1107 based on patch from Thue Janus Kristensen; feedback & ok dtucker@
1108 - djm@cvs.openbsd.org 2007/05/17 20:48:13
1109 [sshconnect2.c]
1110 fall back to gethostname() when the outgoing connection is not
1111 on a socket, such as is the case when ProxyCommand is used.
1112 Gives hostbased auth an opportunity to work; bz#616, report
1113 and feedback stuart AT kaloram.com; ok markus@
1114 - djm@cvs.openbsd.org 2007/05/17 20:52:13
1115 [monitor.c]
1116 pass received SIGINT from monitor to postauth child so it can clean
1117 up properly. bz#1196, patch from senthilkumar_sen AT hotpop.com;
1118 ok markus@
1119 - jolan@cvs.openbsd.org 2007/05/17 23:53:41
1120 [sshconnect2.c]
1121 djm owes me a vb and a tism cd for breaking ssh compilation
1122 - (dtucker) [auth-pam.c] malloc+memset -> calloc. Patch from
1123 ldv at altlinux.org.
1124 - (dtucker) [auth-pam.c] Return empty string if fgets fails in
1125 sshpam_tty_conv. Patch from ldv at altlinux.org.
1126
112720070509
1128 - (tim) [configure.ac] Bug #1287: Add missing test for ucred.h.
1129
113020070429
1131 - (dtucker) [openbsd-compat/bsd-misc.c] Include unistd.h and sys/types.h
1132 for select(2) prototype.
1133 - (dtucker) [auth-shadow.c loginrec.c] Include time.h for time(2) prototype.
1134 - (dtucker) [configure.ac openbsd-compat/getrrsetbyname.c] Bug #1299: Use the
1135 platform's _res if it has one. Should fix problem of DNSSEC record lookups
1136 on NetBSD as reported by Curt Sampson.
1137 - (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype.
1138 - (dtucker) [configure.ac defines.h] Have configure check for MAXSYMLINKS
1139 so we don't get redefinition warnings.
1140 - (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype.
1141 - (dtucker) [configure.ac defines.h] Prevent warnings about __attribute__
1142 __nonnull__ for versions of GCC that don't support it.
1143 - (dtucker) [configure.ac defines.h] Have configure check for offsetof
1144 to prevent redefinition warnings.
1145
114620070406
1147 - (dtucker) [INSTALL] Update the systems that have PAM as standard. Link
1148 to OpenPAM too.
1149 - (dtucker) [INSTALL] prngd lives at sourceforge these days.
1150
115120070326
1152 - (tim) [auth.c configure.ac defines.h session.c openbsd-compat/port-uw.c
1153 openbsd-compat/port-uw.h openbsd-compat/xcrypt.c] Rework libiaf test/defines
1154 to account for IRIX having libiaf but not set_id(). Patch with & ok dtucker@
1155
115620070325
1157 - (dtucker) [Makefile.in configure.ac] Replace single-purpose LIBSELINUX,
1158 LIBWRAP and LIBPAM variables in Makefile with the general-purpose
1159 SSHDLIBS. "I like" djm@
1160
116120070321
1162 - (dtucker) OpenBSD CVS Sync
1163 - dtucker@cvs.openbsd.org 2007/03/09 05:20:06
1164 [servconf.c sshd.c]
1165 Move C/R -> kbdint special case to after the defaults have been
1166 loaded, which makes ChallengeResponse default to yes again. This
1167 was broken by the Match changes and not fixed properly subsequently.
1168 Found by okan at demirmen.com, ok djm@ "please do it" deraadt@
1169 - djm@cvs.openbsd.org 2007/03/19 01:01:29
1170 [sshd_config]
1171 Disable the legacy SSH protocol 1 for new installations via
1172 a configuration override. In the future, we will change the
1173 server's default itself so users who need the legacy protocol
1174 will need to turn it on explicitly
1175 - dtucker@cvs.openbsd.org 2007/03/19 12:16:42
1176 [ssh-agent.c]
1177 Remove the signal handler that checks if the agent's parent process
1178 has gone away, instead check when the select loop returns. Record when
1179 the next key will expire when scanning for expired keys. Set the select
1180 timeout to whichever of these two things happens next. With djm@, with &
1181 ok deraadt@ markus@
1182 - tedu@cvs.openbsd.org 2007/03/20 03:56:12
1183 [readconf.c clientloop.c]
1184 remove some bogus *p tests from charles longeau
1185 ok deraadt millert
1186 - jmc@cvs.openbsd.org 2007/03/20 15:57:15
1187 [sshd.8]
1188 - let synopsis and description agree for -f
1189 - sort FILES
1190 - +.Xr ssh-keyscan 1 ,
1191 from Igor Sobrado
1192 - (dtucker) [configure.ac openbsd-compat/bsd-getpeereid.c] Bug #1287: Use
1193 getpeerucred to implement getpeereid (currently only Solaris 10 and up).
1194 Patch by Jan.Pechanec at Sun.
1195 - (dtucker) [regress/agent-getpeereid.sh] Do peereid test if we have
1196 HAVE_GETPEERUCRED too. Also from Jan Pechanec.
1197
119820070313
1199 - (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include
1200 string.h to prevent warnings, from vapier at gentoo.org.
1201 - (dtucker) [LICENCE] Add Daniel Walsh as a copyright holder for the
1202 selinux bits in -portable.
1203 - (dtucker) [cipher-3des1.c cipher-bf1.c] The OpenSSL 0.9.8e problem in
1204 bug #1291 also affects Protocol 1 3des. While at it, use compat-openssl.h
1205 in cipher-bf1.c. Patch from Juan Gallego.
1206 - (dtucker) [README.platform] Info about blibpath on AIX.
1207
120820070306
1209 - (djm) OpenBSD CVS Sync
1210 - jmc@cvs.openbsd.org 2007/03/01 16:19:33
1211 [sshd_config.5]
1212 sort the `match' keywords;
1213 - djm@cvs.openbsd.org 2007/03/06 10:13:14
1214 [version.h]
1215 openssh-4.6; "please" deraadt@
1216 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
1217 [contrib/suse/openssh.spec] crank spec files for release
1218 - (djm) [README] correct link to release notes
1219 - (djm) Release 4.6p1
1220
122120070304
1222 - (djm) [configure.ac] add a --without-openssl-header-check option to
1223 configure, as some platforms (OS X) ship OpenSSL headers whose version
1224 does not match that of the shipping library. ok dtucker@
1225 - (dtucker) [openbsd-compat/openssl-compat.h] Bug #1291: Work around a
1226 bug in OpenSSL 0.9.8e that prevents aes256-ctr, aes192-ctr and arcfour256
1227 ciphers from working correctly (disconnects with "Bad packet length"
1228 errors) as found by Ben Harris. ok djm@
1229
123020070303
1231 - (dtucker) [regress/agent-ptrace.sh] Make ttrace gdb error a little more
1232 general to cover newer gdb versions on HP-UX.
1233
123420070302
1235 - (dtucker) [configure.ac] For Cygwin, read files in textmode (which allows
1236 CRLF as well as LF lineendings) and write in binary mode. Patch from
1237 vinschen at redhat.com.
1238 - (dtucker) [INSTALL] Update to autoconf-2.61.
1239
124020070301
1241 - (dtucker) OpenBSD CVS Sync
1242 - dtucker@cvs.openbsd.org 2007/03/01 10:28:02
1243 [auth2.c sshd_config.5 servconf.c]
1244 Remove ChallengeResponseAuthentication support inside a Match
1245 block as its interaction with KbdInteractive makes it difficult to
1246 support. Also, relocate the CR/kbdint option special-case code into
1247 servconf. "please commit" djm@, ok markus@ for the relocation.
1248 - (tim) [buildpkg.sh.in openssh.xml.in] Clean up Solaris 10 smf(5) bits.
1249 "Looks sane" dtucker@
1250
125120070228
1252 - (dtucker) OpenBSD CVS Sync
1253 - dtucker@cvs.openbsd.org 2007/02/28 00:55:30
1254 [ssh-agent.c]
1255 Remove expired keys periodically so they don't remain in memory when
1256 the agent is entirely idle, as noted by David R. Piegdon. This is the
1257 simple fix, a more efficient one will be done later. With markus,
1258 deraadt, with & ok djm.
1259
126020070225
1261 - (dtucker) OpenBSD CVS Sync
1262 - djm@cvs.openbsd.org 2007/02/20 10:25:14
1263 [clientloop.c]
1264 set maximum packet and window sizes the same for multiplexed clients
1265 as normal connections; ok markus@
1266 - dtucker@cvs.openbsd.org 2007/02/21 11:00:05
1267 [sshd.c]
1268 Clear alarm() before restarting sshd on SIGHUP. Without this, if there's
1269 a SIGALRM pending (for SSH1 key regeneration) when sshd is SIGHUP'ed, the
1270 newly exec'ed sshd will get the SIGALRM and not have a handler for it,
1271 and the default action will terminate the listening sshd. Analysis and
1272 patch from andrew at gaul.org.
1273 - dtucker@cvs.openbsd.org 2007/02/22 12:58:40
1274 [servconf.c]
1275 Check activep so Match and GatewayPorts work together; ok markus@
1276 - ray@cvs.openbsd.org 2007/02/24 03:30:11
1277 [moduli.c]
1278 - strlen returns size_t, not int.
1279 - Pass full buffer size to fgets.
1280 OK djm@, millert@, and moritz@.
1281
128220070219
1283 - (dtucker) OpenBSD CVS Sync
1284 - jmc@cvs.openbsd.org 2007/01/10 13:23:22
1285 [ssh_config.5]
1286 do not use a list for SYNOPSIS;
1287 this is actually part of a larger report sent by eric s. raymond
1288 and forwarded by brad, but i only read half of it. spotted by brad.
1289 - jmc@cvs.openbsd.org 2007/01/12 20:20:41
1290 [ssh-keygen.1 ssh-keygen.c]
1291 more secsh -> rfc 4716 updates;
1292 spotted by wiz@netbsd
1293 ok markus
1294 - dtucker@cvs.openbsd.org 2007/01/17 23:22:52
1295 [readconf.c]
1296 Honour activep for times (eg ServerAliveInterval) while parsing
1297 ssh_config and ~/.ssh/config so they work properly with Host directives.
1298 From mario.lorenz@wincor-nixdorf.com via bz #1275. ok markus@
1299 - stevesk@cvs.openbsd.org 2007/01/21 01:41:54
1300 [auth-skey.c kex.c ssh-keygen.c session.c clientloop.c]
1301 spaces
1302 - stevesk@cvs.openbsd.org 2007/01/21 01:45:35
1303 [readconf.c]
1304 spaces
1305 - djm@cvs.openbsd.org 2007/01/22 11:32:50
1306 [sftp-client.c]
1307 return error from do_upload() when a write fails. fixes bz#1252: zero
1308 exit status from sftp when uploading to a full device. report from
1309 jirkat AT atlas.cz; ok dtucker@
1310 - djm@cvs.openbsd.org 2007/01/22 13:06:21
1311 [scp.c]
1312 fix detection of whether we should show progress meter or not: scp
1313 tested isatty(stderr) but wrote the progress meter to stdout. This patch
1314 makes it test stdout. bz#1265 reported by junkmail AT bitsculpture.com;
1315 of dtucker@
1316 - stevesk@cvs.openbsd.org 2007/02/14 14:32:00
1317 [bufbn.c]
1318 typos in comments; ok jmc@
1319 - dtucker@cvs.openbsd.org 2007/02/19 10:45:58
1320 [monitor_wrap.c servconf.c servconf.h monitor.c sshd_config.5]
1321 Teach Match how handle config directives that are used before
1322 authentication. This allows configurations such as permitting password
1323 authentication from the local net only while requiring pubkey from
1324 offsite. ok djm@, man page bits ok jmc@
1325 - (dtucker) [contrib/findssl.sh] Add "which" as a shell function since some
1326 platforms don't have it. Patch from dleonard at vintela.com.
1327 - (dtucker) [openbsd-compat/getrrsetbyname.c] Don't attempt to calloc
1328 an array for signatures when there are none since "calloc(0, n) returns
1329 NULL on some platforms (eg Tru64), which is explicitly permitted by
1330 POSIX. Diagnosis and patch by svallet genoscope.cns.fr.
1331
133220070128
1333 - (djm) [channels.c serverloop.c] Fix so-called "hang on exit" (bz #52)
1334 when closing a tty session when a background process still holds tty
1335 fds open. Great detective work and patch by Marc Aurele La France,
1336 slightly tweaked by me; ok dtucker@
1337
133820070123
1339 - (dtucker) [openbsd-compat/bsd-snprintf.c] Static declarations for public
1340 library interfaces aren't very helpful. Fix up the DOPR_OUTCH macro
1341 so it works properly and modify its callers so that they don't pre or
1342 post decrement arguments that are conditionally evaluated. While there,
1343 put SNPRINTF_CONST back as it prevents build failures in some
1344 configurations. ok djm@ (for most of it)
1345
134620070122
1347 - (djm) [ssh-rand-helper.8] manpage nits;
1348 from dleonard AT vintela.com (bz#1529)
1349
135020070117
1351 - (dtucker) [packet.c] Re-remove in_systm.h since it's already in includes.h
1352 and multiple including it causes problems on old IRIXes. (It snuck back
1353 in during a sync.) Found (again) by Georg Schwarz.
1354
135520070114
1356 - (dtucker) [ssh-keygen.c] av -> argv to match earlier sync.
1357 - (djm) [openbsd-compat/bsd-snprintf.c] Fix integer overflow in return
1358 value of snprintf replacement, similar to bugs in various libc
1359 implementations. This overflow is not exploitable in OpenSSH.
1360 While I'm fiddling with it, make it a fair bit faster by inlining the
1361 append-char routine; ok dtucker@
1362
136320070105
1364 - (djm) OpenBSD CVS Sync
1365 - deraadt@cvs.openbsd.org 2006/11/14 19:41:04
1366 [ssh-keygen.c]
1367 use argc and argv not some made up short form
1368 - ray@cvs.openbsd.org 2006/11/23 01:35:11
1369 [misc.c sftp.c]
1370 Don't access buf[strlen(buf) - 1] for zero-length strings.
1371 ``ok by me'' djm@.
1372 - markus@cvs.openbsd.org 2006/12/11 21:25:46
1373 [ssh-keygen.1 ssh.1]
1374 add rfc 4716 (public key format); ok jmc
1375 - djm@cvs.openbsd.org 2006/12/12 03:58:42
1376 [channels.c compat.c compat.h]
1377 bz #1019: some ssh.com versions apparently can't cope with the
1378 remote port forwarding bind_address being a hostname, so send
1379 them an address for cases where they are not explicitly
1380 specified (wildcard or localhost bind). reported by daveroth AT
1381 acm.org; ok dtucker@ deraadt@
1382 - dtucker@cvs.openbsd.org 2006/12/13 08:34:39
1383 [servconf.c]
1384 Make PermitOpen work with multiple values like the man pages says.
1385 bz #1267 with details from peter at dmtz.com, with & ok djm@
1386 - dtucker@cvs.openbsd.org 2006/12/14 10:01:14
1387 [servconf.c]
1388 Make "PermitOpen all" first-match within a block to match the way other
1389 options work. ok markus@ djm@
1390 - jmc@cvs.openbsd.org 2007/01/02 09:57:25
1391 [sshd_config.5]
1392 do not use lists for SYNOPSIS;
1393 from eric s. raymond via brad
1394 - stevesk@cvs.openbsd.org 2007/01/03 00:53:38
1395 [ssh-keygen.c]
1396 remove small dead code; arnaud.lacombe.1@ulaval.ca via Coverity scan
1397 - stevesk@cvs.openbsd.org 2007/01/03 03:01:40
1398 [auth2-chall.c channels.c dns.c sftp.c ssh-keygen.c ssh.c]
1399 spaces
1400 - stevesk@cvs.openbsd.org 2007/01/03 04:09:15
1401 [sftp.c]
1402 ARGSUSED for lint
1403 - stevesk@cvs.openbsd.org 2007/01/03 07:22:36
1404 [sftp-server.c]
1405 spaces
1406
140720061205
1408 - (djm) [auth.c] Fix NULL pointer dereference in fakepw(). Crash would
1409 occur if the server did not have the privsep user and an invalid user
1410 tried to login and both privsep and krb5 auth are disabled; ok dtucker@
1411 - (djm) [bsd-asprintf.c] Better test for bad vsnprintf lengths; ok dtucker@
1412
141320061108
1414 - (dtucker) OpenBSD CVS Sync
1415 - markus@cvs.openbsd.org 2006/11/07 13:02:07
1416 [dh.c]
1417 BN_hex2bn returns int; from dtucker@
1418
141920061107
1420 - (dtucker) [sshd.c] Use privsep_pw if we have it, but only require it
1421 if we absolutely need it. Pointed out by Corinna, ok djm@
1422 - (dtucker) OpenBSD CVS Sync
1423 - markus@cvs.openbsd.org 2006/11/06 21:25:28
1424 [auth-rsa.c kexgexc.c kexdhs.c key.c ssh-dss.c sshd.c kexgexs.c
1425 ssh-keygen.c bufbn.c moduli.c scard.c kexdhc.c sshconnect1.c dh.c rsa.c]
1426 add missing checks for openssl return codes; with & ok djm@
1427 - markus@cvs.openbsd.org 2006/11/07 10:31:31
1428 [monitor.c version.h]
1429 correctly check for bad signatures in the monitor, otherwise the monitor
1430 and the unpriv process can get out of sync. with dtucker@, ok djm@,
1431 dtucker@
1432 - (dtucker) [README contrib/{caldera,redhat,contrib}/openssh.spec] Bump
1433 versions.
1434 - (dtucker) Release 4.5p1.
1435
143620061105
1437 - (djm) OpenBSD CVS Sync
1438 - otto@cvs.openbsd.org 2006/10/28 18:08:10
1439 [ssh.1]
1440 correct/expand example of usage of -w; ok jmc@ stevesk@
1441 - markus@cvs.openbsd.org 2006/10/31 16:33:12
1442 [kexdhc.c kexdhs.c kexgexc.c kexgexs.c]
1443 check DH_compute_key() for -1 even if it should not happen because of
1444 earlier calls to dh_pub_is_valid(); report krahmer at suse.de; ok djm
1445
144620061101
1447 - (dtucker) [openbsd-compat/port-solaris.c] Bug #1255: Make only hwerr
1448 events fatal in Solaris process contract support and tell it to signal
1449 only processes in the same process group when something happens.
1450 Based on information from andrew.benham at thus.net and similar to
1451 a patch from Chad Mynhier. ok djm@
1452
145320061027
1454- (djm) [auth.c] gc some dead code
1455
145620061023
1457 - (djm) OpenBSD CVS Sync
1458 - ray@cvs.openbsd.org 2006/09/30 17:48:22
1459 [sftp.c]
1460 Clear errno before calling the strtol functions.
1461 From Paul Stoeber <x0001 at x dot de1 dot cc>.
1462 OK deraadt@.
1463 - djm@cvs.openbsd.org 2006/10/06 02:29:19
1464 [ssh-agent.c ssh-keyscan.c ssh.c]
1465 sys/resource.h needs sys/time.h; prompted by brad@
1466 (NB. Id sync only for portable)
1467 - djm@cvs.openbsd.org 2006/10/09 23:36:11
1468 [session.c]
1469 xmalloc -> xcalloc that was missed previously, from portable
1470 (NB. Id sync only for portable, obviously)
1471 - markus@cvs.openbsd.org 2006/10/10 10:12:45
1472 [sshconnect.c]
1473 sleep before retrying (not after) since sleep changes errno; fixes
1474 pr 5250; rad@twig.com; ok dtucker djm
1475 - markus@cvs.openbsd.org 2006/10/11 12:38:03
1476 [clientloop.c serverloop.c]
1477 exit instead of doing a blocking tcp send if we detect a client/server
1478 timeout, since the tcp sendqueue might be already full (of alive
1479 requests); ok dtucker, report mpf
1480 - djm@cvs.openbsd.org 2006/10/22 02:25:50
1481 [sftp-client.c]
1482 cancel progress meter when upload write fails; ok deraadt@
1483 - (tim) [Makefile.in scard/Makefile.in] Add datarootdir= lines to keep
1484 autoconf 2.60 from complaining.
1485
148620061018
1487 - (dtucker) OpenBSD CVS Sync
1488 - ray@cvs.openbsd.org 2006/09/25 04:55:38
1489 [ssh-keyscan.1 ssh.1]
1490 Change "a SSH" to "an SSH". Hurray, I'm not the only one who
1491 pronounces "SSH" as "ess-ess-aich".
1492 OK jmc@ and stevesk@.
1493 - (dtucker) [sshd.c] Reshuffle storing of pw struct; prevents warnings
1494 on older versions of OS X. ok djm@
1495
149620061016
1497 - (dtucker) [monitor_fdpass.c] Include sys/in.h, required for cmsg macros
1498 on older (2.0) Linuxes. Based on patch from thmo-13 at gmx de.
1499
150020061006
1501 - (tim) [buildpkg.sh.in] Use uname -r instead of -v in OS_VER for Solaris.
1502 Differentiate between OpenServer 5 and OpenServer 6
1503 - (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for
1504 SELinux functions so they're detected correctly. Patch from pebenito at
1505 gentoo.org.
1506 - (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
1507 Allow setting alternate awk in openssh-config.local.
1508
150920061003
1510 - (tim) [configure.ac] Move CHECK_HEADERS test before platform specific
1511 section so additional platform specific CHECK_HEADER tests will work
1512 correctly. Fixes "<net/if_tap.h> on FreeBSD" problem report by des AT des.no
1513 Feedback and "seems like a good idea" dtucker@
1514
151520061001
1516 - (dtucker) [audit-bsm.c] Include errno.h. Pointed out by des at des.no.
1517
151820060929
1519 - (dtucker) [configure.ac] Bug #1239: Fix configure test for OpenSSH engine
1520 support. Patch from andrew.benham at thus net.
1521
152220060928
1523 - (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error
1524 on Solaris 8 w/out /dev/random or prngd. Patch from rl at
1525 math.technion.ac.il.
1526
152720060926
1528 - (dtucker) [bufaux.h] nuke bufaux.h; it's already gone from OpenBSD and not
1529 referenced any more. ok djm@
1530 - (dtucker) [sftp-server.8] Resync; spotted by djm@
1531 - (dtucker) Release 4.4p1.
1532
153320060924
1534 - (tim) [configure.ac] Remove CFLAGS hack for UnixWare 1.x/2.x (added
1535 to rev 1.308) to work around broken gcc 2.x header file.
1536
153720060923
1538 - (dtucker) [configure.ac] Bug #1234: Put opensc libs into $LIBS rather than
1539 $LDFLAGS. Patch from vapier at gentoo org.
1540
154120060922
1542 - (dtucker) [packet.c canohost.c] Include arpa/inet.h for htonl macros on
1543 some platforms (eg HP-UX 11.00). From santhi.amirta at gmail com.
1544
154520060921
1546 - (dtucker) OpenBSD CVS Sync
1547 - otto@cvs.openbsd.org 2006/09/19 05:52:23
1548 [sftp.c]
1549 Use S_IS* macros insted of masking with S_IF* flags. The latter may
1550 have multiple bits set, which lead to surprising results. Spotted by
1551 Paul Stoeber, more to come. ok millert@ pedro@ jaredy@ djm@
1552 - markus@cvs.openbsd.org 2006/09/19 21:14:08
1553 [packet.c]
1554 client NULL deref on protocol error; Tavis Ormandy, Google Security Team
1555 - (dtucker) [defines.h] Include unistd.h before defining getpgrp; fixes
1556 build error on Ultrix. From Bernhard Simon.
1557
155820060918
1559 - (dtucker) [configure.ac] On AIX, check to see if the compiler will allow
1560 macro redefinitions, and if not, remove "-qlanglvl=ansi" from the flags.
1561 Allows build out of the box with older VAC and XLC compilers. Found by
1562 David Bronder and Bernhard Simon.
1563 - (dtucker) [openbsd-compat/port-aix.{c,h}] Reduce scope of includes.
1564 Prevents macro redefinition warnings of "RDONLY".
1565
156620060916
1567 - OpenBSD CVS Sync
1568 - djm@cvs.openbsd.org 2006/09/16 19:53:37
1569 [deattack.c deattack.h packet.c]
1570 limit maximum work performed by the CRC compensation attack detector,
1571 problem reported by Tavis Ormandy, Google Security Team;
1572 ok markus@ deraadt@
1573 - (djm) Add openssh.xml to .cvsignore and sort it
1574 - (dtucker) [auth-pam.c] Propogate TZ environment variable to PAM auth
1575 process so that any logging it does is with the right timezone. From
1576 Scott Strickler, ok djm@.
1577 - (dtucker) [monitor.c] Correctly handle auditing of single commands when
1578 using Protocol 1. From jhb at freebsd.
1579 - (djm) [sshd.c] Fix warning/API abuse; ok dtucker@
1580 - (dtucker) [INSTALL] Add info about audit support.
1581
158220060912
1583 - (djm) [Makefile.in buildpkg.sh.in configure.ac openssh.xml.in]
1584 Support SMF in Solaris Packages if enabled by configure. Patch from
1585 Chad Mynhier, tested by dtucker@
1586
158720060911
1588 - (dtucker) [cipher-aes.c] Include string.h for memcpy and friends. Noted
1589 by Pekka Savola.
1590
159120060910
1592 - (dtucker) [contrib/aix/buildbff.sh] Ensure that perl is available.
1593 - (dtucker) [configure.ac] Add -lcrypt to let DragonFly build OOTB.
1594
159520060909
1596 - (dtucker) [openbsd-compat/bsd-snprintf.c] Add stdarg.h.
1597 - (dtucker) [contrib/aix/buildbff.sh] Always create privsep user.
1598 - (dtucker) [buildpkg.sh.in] Always create privsep user. ok djm@
1599
160020060908
1601 - (dtucker) [auth-sia.c] Add includes required for build on Tru64. Patch
1602 from Chris Adams.
1603 - (dtucker) [configure.ac] The BSM header test needs time.h in some cases.
1604
160520060907
1606 - (djm) [sshd.c auth.c] Set up fakepw() with privsep uid/gid, so it can
1607 be used to drop privilege to; fixes Solaris GSSAPI crash reported by
1608 Magnus Abrante; suggestion and feedback dtucker@
1609 NB. this change will require that the privilege separation user must
1610 exist on all the time, not just when UsePrivilegeSeparation=yes
1611 - (tim) [configure.ac] s/BROKEN_UPDWTMP/BROKEN_UPDWTMPX/ on SCO OSR6
1612 - (dtucker) [loginrec.c] Wrap paths.h in HAVE_PATHS_H.
1613 - (dtucker) [regress/cfgmatch.sh] stop_client is racy, so give us a better
1614 chance of winning.
1615
161620060905
1617 - (dtucker) [configure.ac] s/AC_DEFINES/AC_DEFINE/ spotted by Roumen Petrov.
1618 - (dtucker) [loginrec.c] Include paths.h for _PATH_BTMP.
1619
162020060904
1621 - (dtucker) [configure.ac] Define BROKEN_UPDWTMP on SCO OSR6 as the native
1622 updwdtmp seems to generate invalid wtmp entries. From Roger Cornelius,
1623 ok djm@
1624
162520060903
1626 - (dtucker) [configure.ac openbsd-compat/openbsd-compat.h] Check for
1627 declaration of writev(2) and declare it ourselves if necessary. Makes
1628 the atomiciov() calls build on really old systems. ok djm@
1629
163020060902
1631 - (dtucker) [openbsd-compat/port-irix.c] Add errno.h, found by Iain Morgan.
1632 - (dtucker) [ssh-keyscan.c ssh-rand-helper.c ssh.c sshconnect.c
1633 openbsd-compat/bindresvport.c openbsd-compat/getrrsetbyname.c
1634 openbsd-compat/port-tun.c openbsd-compat/rresvport.c] Include <arpa/inet.h>
1635 for hton* and ntoh* macros. Required on (at least) HP-UX since we define
1636 _XOPEN_SOURCE_EXTENDED. Found by santhi.amirta at gmail com.
1637
163820060901
1639 - (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c]
1640 [auth-rsa.c auth-shadow.c auth-sia.c auth1.c auth2-chall.c]
1641 [auth2-gss.c auth2-kbdint.c auth2-none.c authfd.c authfile.c]
1642 [cipher-3des1.c cipher-aes.c cipher-bf1.c cipher-ctr.c clientloop.c]
1643 [dh.c dns.c entropy.c gss-serv-krb5.c gss-serv.c hostfile.c kex.c]
1644 [kexdhc.c kexdhs.c kexgexc.c kexgexs.c key.c loginrec.c mac.c]
1645 [md5crypt.c monitor.c monitor_wrap.c readconf.c rsa.c]
1646 [scard-opensc.c scard.c session.c ssh-add.c ssh-agent.c ssh-dss.c]
1647 [ssh-keygen.c ssh-keysign.c ssh-rsa.c ssh.c sshconnect.c]
1648 [sshconnect1.c sshconnect2.c sshd.c]
1649 [openbsd-compat/bsd-cray.c openbsd-compat/port-aix.c]
1650 [openbsd-compat/port-linux.c openbsd-compat/port-solaris.c]
1651 [openbsd-compat/port-uw.c]
1652 Lots of headers for SCO OSR6, mainly adding stdarg.h for log.h;
1653 compile problems reported by rac AT tenzing.org
1654 - (djm) [includes.h monitor.c openbsd-compat/bindresvport.c]
1655 [openbsd-compat/rresvport.c] Some more headers: netinet/in.h
1656 sys/socket.h and unistd.h in various places
1657 - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Fix implict declaration
1658 warnings for binary_open and binary_close. Patch from Corinna Vinschen.
1659 - (dtucker) [configure.ac includes.h openbsd-compat/glob.{c,h}] Explicitly
1660 test for GLOB_NOMATCH and use our glob functions if it's not found.
1661 Stops sftp from segfaulting when attempting to get a nonexistent file on
1662 Cygwin (previous versions of OpenSSH didn't use the native glob). Partly
1663 from and tested by Corinna Vinschen.
1664 - (dtucker) [README contrib/{caldera,redhat,suse}/openssh.spec] Crank
1665 versions.
1666
166720060831
1668 - (djm) [CREDITS LICENCE Makefile.in auth.c configure.ac includes.h ]
1669 [platform.c platform.h sshd.c openbsd-compat/Makefile.in]
1670 [openbsd-compat/openbsd-compat.h openbsd-compat/port-solaris.c]
1671 [openbsd-compat/port-solaris.h] Add support for Solaris process
1672 contracts, enabled with --use-solaris-contracts. Patch from Chad
1673 Mynhier, tweaked by dtucker@ and myself; ok dtucker@
1674 - (dtucker) [contrib/cygwin/ssh-host-config] Add SeTcbPrivilege privilege
1675 while setting up the ssh service account. Patch from Corinna Vinschen.
1676
167720060830
1678 - (djm) OpenBSD CVS Sync
1679 - dtucker@cvs.openbsd.org 2006/08/21 08:14:01
1680 [sshd_config.5]
1681 Document HostbasedUsesNameFromPacketOnly. Corrections from jmc@,
1682 ok jmc@ djm@
1683 - dtucker@cvs.openbsd.org 2006/08/21 08:15:57
1684 [sshd.8]
1685 Add more detail about what permissions are and aren't accepted for
1686 authorized_keys files. Corrections jmc@, ok djm@, "looks good" jmc@
1687 - djm@cvs.openbsd.org 2006/08/29 10:40:19
1688 [channels.c session.c]
1689 normalise some inconsistent (but harmless) NULL pointer checks
1690 spotted by the Stanford SATURN tool, via Isil Dillig;
1691 ok markus@ deraadt@
1692 - dtucker@cvs.openbsd.org 2006/08/29 12:02:30
1693 [gss-genr.c]
1694 Work around a problem in Heimdal that occurs when KRB5CCNAME file is
1695 missing, by checking whether or not kerberos allocated us a context
1696 before attempting to free it. Patch from Simon Wilkinson, tested by
1697 biorn@, ok djm@
1698 - dtucker@cvs.openbsd.org 2006/08/30 00:06:51
1699 [sshconnect2.c]
1700 Fix regression where SSH2 banner is printed at loglevels ERROR and FATAL
1701 where previously it weren't. bz #1221, found by Dean Kopesky, ok djm@
1702 - djm@cvs.openbsd.org 2006/08/30 00:14:37
1703 [version.h]
1704 crank to 4.4
1705 - (djm) [openbsd-compat/xcrypt.c] needs unistd.h
1706 - (dtucker) [auth.c openbsd-compat/port-aix.c] Bug #1207: always call
1707 loginsuccess on AIX immediately after authentication to clear the failed
1708 login count. Previously this would only happen when an interactive
1709 session starts (ie when a pty is allocated) but this means that accounts
1710 that have primarily non-interactive sessions (eg scp's) may gradually
1711 accumulate enough failures to lock out an account. This change may have
1712 a side effect of creating two audit records, one with a tty of "ssh"
1713 corresponding to the authentication and one with the allocated pty per
1714 interactive session.
1715
171620060824
1717 - (dtucker) [openbsd-compat/basename.c] Include errno.h.
1718 - (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
1719 older systems.
1720 - (dtucker) [openbsd-compat/bsd-misc.c] Include <sys/select.h> for select(2)
1721 on POSIX systems.
1722 - (dtucker) [openbsd-compat/bsd-openpty.c] Include for ioctl(2).
1723 - (dtucker) [openbsd-compat/rresvport.c] Include <stdlib.h> for malloc.
1724 - (dtucker) [openbsd-compat/xmmap.c] Move #define HAVE_MMAP to prevent
1725 unused variable warning when we have a broken or missing mmap(2).
1726
172720060822
1728 - (dtucker) [Makefile.in] Bug #1177: fix incorrect path for sshrc in
1729 Makefile. Patch from santhi.amirta at gmail, ok djm.
1730
173120060820
1732 - (dtucker) [log.c] Move ifdef to prevent unused variable warning.
1733 - (dtucker) [configure.ac] Save $LIBS during PAM library tests and restore
1734 afterward. Removes the need to mangle $LIBS later to remove -lpam and -ldl.
1735 - (dtucker) [configure.ac] Relocate --with-pam parts in preparation for
1736 fixing bug #1181. No changes yet.
1737 - (dtucker) [configure.ac] Bug #1181: Explicitly test to see if OpenSSL
1738 (0.9.8a and presumably newer) requires -ldl to successfully link.
1739 - (dtucker) [configure.ac] Remove errant "-".
1740
174120060819
1742 - (djm) OpenBSD CVS Sync
1743 - djm@cvs.openbsd.org 2006/08/18 22:41:29
1744 [gss-genr.c]
1745 GSSAPI error code should be 0 and not -1; from simon@sxw.org.uk
1746 - (dtucker) [openbsd-compat/regress/Makefile.in] Add $(EXEEXT) and add a
1747 single rule for the test progs.
1748
174920060818
1750 - (dtucker) [configure.ac openbsd-compat/bsd-closefrom.c] Resync with
1751 closefrom.c from sudo.
1752 - (dtucker) [openbsd-compat/bsd-closefrom.c] Comment out rcsid.
1753 - (dtucker) [openbsd-compat/regress/snprintftest.c] Newline on error.
1754 - (dtucker) [openbsd-compat/regress/Makefile.in] Use implicit rules for the
1755 test progs instead; they work better than what we have.
1756 - (djm) OpenBSD CVS Sync
1757 - stevesk@cvs.openbsd.org 2006/08/06 01:13:32
1758 [compress.c monitor.c monitor_wrap.c]
1759 "zlib.h" can be <zlib.h>; ok djm@ markus@
1760 - miod@cvs.openbsd.org 2006/08/12 20:46:46
1761 [monitor.c monitor_wrap.c]
1762 Revert previous include file ordering change, for ssh to compile under
1763 gcc2 (or until openssl include files are cleaned of parameter names
1764 in function prototypes)
1765 - dtucker@cvs.openbsd.org 2006/08/14 12:40:25
1766 [servconf.c servconf.h sshd_config.5]
1767 Add ability to match groups to Match keyword in sshd_config. Feedback
1768 djm@, stevesk@, ok stevesk@.
1769 - djm@cvs.openbsd.org 2006/08/16 11:47:15
1770 [sshd.c]
1771 factor inetd connection, TCP listen and main TCP accept loop out of
1772 main() into separate functions to improve readability; ok markus@
1773 - deraadt@cvs.openbsd.org 2006/08/18 09:13:26
1774 [log.c log.h sshd.c]
1775 make signal handler termination path shorter; risky code pointed out by
1776 mark dowd; ok djm markus
1777 - markus@cvs.openbsd.org 2006/08/18 09:15:20
1778 [auth.h session.c sshd.c]
1779 delay authentication related cleanups until we're authenticated and
1780 all alarms have been cancelled; ok deraadt
1781 - djm@cvs.openbsd.org 2006/08/18 10:27:16
1782 [misc.h]
1783 reorder so prototypes are sorted by the files they refer to; no
1784 binary change
1785 - djm@cvs.openbsd.org 2006/08/18 13:54:54
1786 [gss-genr.c ssh-gss.h sshconnect2.c]
1787 bz #1218 - disable SPNEGO as per RFC4462; diff from simon AT sxw.org.uk
1788 ok markus@
1789 - djm@cvs.openbsd.org 2006/08/18 14:40:34
1790 [gss-genr.c ssh-gss.h]
1791 constify host argument to match the rest of the GSSAPI functions and
1792 unbreak compilation with -Werror
1793 - (djm) Disable sigdie() for platforms that cannot safely syslog inside
1794 a signal handler (basically all of them, excepting OpenBSD);
1795 ok dtucker@
1796
179720060817
1798 - (dtucker) [openbsd-compat/fake-rfc2553.c openbsd-compat/setproctitle.c]
1799 Include stdlib.h for malloc and friends.
1800 - (dtucker) [configure.ac openbsd-compat/bsd-closefrom.c] Use F_CLOSEM fcntl
1801 for closefrom() on AIX. Pointed out by William Ahern.
1802 - (dtucker) [openbsd-compat/regress/{Makefile.in,closefromtest.c}] Regress
1803 test for closefrom() in compat code.
1804
180520060816
1806 - (djm) [audit-bsm.c] Sprinkle in some headers
1807
180820060815
1809 - (dtucker) [LICENCE] Add Reyk to the list for the compat dir.
1810
181120060806
1812 - (djm) [openbsd-compat/bsd-getpeereid.c] Add some headers to quiet warnings
1813 on Solaris 10
1814
181520060806
1816 - (dtucker) [defines.h] With the includes.h changes we no longer get the
1817 name clash on "YES" so we can remove the workaround for it.
1818 - (dtucker) [openbsd-compat/{bsd-asprintf.c,bsd-openpty.c,bsd-snprintf.c,
1819 glob.c}] Include stdlib.h for malloc and friends in compat code.
1820
182120060805
1822 - (djm) OpenBSD CVS Sync
1823 - stevesk@cvs.openbsd.org 2006/07/24 13:58:22
1824 [sshconnect.c]
1825 disable tunnel forwarding when no strict host key checking
1826 and key changed; ok djm@ markus@ dtucker@
1827 - stevesk@cvs.openbsd.org 2006/07/25 02:01:34
1828 [scard.c]
1829 need #include <string.h>
1830 - stevesk@cvs.openbsd.org 2006/07/25 02:59:21
1831 [channels.c clientloop.c packet.c scp.c serverloop.c sftp-client.c]
1832 [sftp-server.c ssh-agent.c ssh-keyscan.c sshconnect.c sshd.c]
1833 move #include <sys/time.h> out of includes.h
1834 - stevesk@cvs.openbsd.org 2006/07/26 02:35:17
1835 [atomicio.c auth.c dh.c authfile.c buffer.c clientloop.c kex.c]
1836 [groupaccess.c gss-genr.c kexgexs.c misc.c monitor.c monitor_mm.c]
1837 [packet.c scp.c serverloop.c session.c sftp-client.c sftp-common.c]
1838 [sftp-server.c sftp.c ssh-add.c ssh-agent.c ssh-keygen.c sshlogin.c]
1839 [uidswap.c xmalloc.c]
1840 move #include <sys/param.h> out of includes.h
1841 - stevesk@cvs.openbsd.org 2006/07/26 13:57:17
1842 [authfd.c authfile.c dh.c canohost.c channels.c clientloop.c compat.c]
1843 [hostfile.c kex.c log.c misc.c moduli.c monitor.c packet.c readpass.c]
1844 [scp.c servconf.c session.c sftp-server.c sftp.c ssh-add.c ssh-agent.c]
1845 [ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh.c sshconnect.c]
1846 [sshconnect1.c sshd.c xmalloc.c]
1847 move #include <stdlib.h> out of includes.h
1848 - jmc@cvs.openbsd.org 2006/07/27 08:00:50
1849 [ssh_config.5]
1850 avoid confusing wording in HashKnownHosts:
1851 originally spotted by alan amesbury;
1852 ok deraadt
1853 - jmc@cvs.openbsd.org 2006/07/27 08:00:50
1854 [ssh_config.5]
1855 avoid confusing wording in HashKnownHosts:
1856 originally spotted by alan amesbury;
1857 ok deraadt
1858 - dtucker@cvs.openbsd.org 2006/08/01 11:34:36
1859 [sshconnect.c]
1860 Allow fallback to known_hosts entries without port qualifiers for
1861 non-standard ports too, so that all existing known_hosts entries will be
1862 recognised. Requested by, feedback and ok markus@
1863 - stevesk@cvs.openbsd.org 2006/08/01 23:22:48
1864 [auth-passwd.c auth-rhosts.c auth-rsa.c auth.c auth.h auth1.c]
1865 [auth2-chall.c auth2-pubkey.c authfile.c buffer.c canohost.c]
1866 [channels.c clientloop.c dh.c dns.c dns.h hostfile.c kex.c kexdhc.c]
1867 [kexgexc.c kexgexs.c key.c key.h log.c misc.c misc.h moduli.c]
1868 [monitor_wrap.c packet.c progressmeter.c readconf.c readpass.c scp.c]
1869 [servconf.c session.c sftp-client.c sftp-common.c sftp-server.c sftp.c]
1870 [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keyscan.c ssh.c sshconnect.c]
1871 [sshconnect1.c sshconnect2.c sshd.c sshlogin.c sshtty.c uuencode.c]
1872 [uuencode.h xmalloc.c]
1873 move #include <stdio.h> out of includes.h
1874 - stevesk@cvs.openbsd.org 2006/08/01 23:36:12
1875 [authfile.c channels.c progressmeter.c scard.c servconf.c ssh.c]
1876 clean extra spaces
1877 - deraadt@cvs.openbsd.org 2006/08/03 03:34:42
1878 [OVERVIEW atomicio.c atomicio.h auth-bsdauth.c auth-chall.c auth-krb5.c]
1879 [auth-options.c auth-options.h auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
1880 [auth-rsa.c auth-skey.c auth.c auth.h auth1.c auth2-chall.c auth2-gss.c]
1881 [auth2-hostbased.c auth2-kbdint.c auth2-none.c auth2-passwd.c ]
1882 [auth2-pubkey.c auth2.c authfd.c authfd.h authfile.c bufaux.c bufbn.c]
1883 [buffer.c buffer.h canohost.c channels.c channels.h cipher-3des1.c]
1884 [cipher-bf1.c cipher-ctr.c cipher.c cleanup.c clientloop.c compat.c]
1885 [compress.c deattack.c dh.c dispatch.c dns.c dns.h fatal.c groupaccess.c]
1886 [groupaccess.h gss-genr.c gss-serv-krb5.c gss-serv.c hostfile.c kex.c]
1887 [kex.h kexdh.c kexdhc.c kexdhs.c kexgex.c kexgexc.c kexgexs.c key.c]
1888 [key.h log.c log.h mac.c match.c md-sha256.c misc.c misc.h moduli.c]
1889 [monitor.c monitor_fdpass.c monitor_mm.c monitor_mm.h monitor_wrap.c]
1890 [monitor_wrap.h msg.c nchan.c packet.c progressmeter.c readconf.c]
1891 [readconf.h readpass.c rsa.c scard.c scard.h scp.c servconf.c servconf.h]
1892 [serverloop.c session.c session.h sftp-client.c sftp-common.c]
1893 [sftp-common.h sftp-glob.c sftp-server.c sftp.c ssh-add.c ssh-agent.c]
1894 [ssh-dss.c ssh-gss.h ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh-rsa.c]
1895 [ssh.c ssh.h sshconnect.c sshconnect.h sshconnect1.c sshconnect2.c]
1896 [sshd.c sshlogin.c sshlogin.h sshpty.c sshpty.h sshtty.c ttymodes.c]
1897 [uidswap.c uidswap.h uuencode.c uuencode.h xmalloc.c xmalloc.h]
1898 [loginrec.c loginrec.h openbsd-compat/port-aix.c openbsd-compat/port-tun.h]
1899 almost entirely get rid of the culture of ".h files that include .h files"
1900 ok djm, sort of ok stevesk
1901 makes the pain stop in one easy step
1902 NB. portable commit contains everything *except* removing includes.h, as
1903 that will take a fair bit more work as we move headers that are required
1904 for portability workarounds to defines.h. (also, this step wasn't "easy")
1905 - stevesk@cvs.openbsd.org 2006/08/04 20:46:05
1906 [monitor.c session.c ssh-agent.c]
1907 spaces
1908 - (djm) [auth-pam.c defines.h] Move PAM related bits to auth-pam.c
1909 - (djm) [auth-pam.c auth.c bufaux.h entropy.c openbsd-compat/port-tun.c]
1910 remove last traces of bufaux.h - it was merged into buffer.h in the big
1911 includes.h commit
1912 - (djm) [auth.c loginrec.c] Missing netinet/in.h for loginrec
1913 - (djm) [openbsd-compat/regress/snprintftest.c]
1914 [openbsd-compat/regress/strduptest.c] Add missing includes so they pass
1915 compilation with "-Wall -Werror"
1916 - (djm) [auth-pam.c auth-shadow.c auth2-none.c cleanup.c sshd.c]
1917 [openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Sprinkle more
1918 includes for Linux in
1919 - (dtucker) [cleanup.c] Need defines.h for __dead.
1920 - (dtucker) [auth2-gss.c] We still need the #ifdef GSSAPI in -portable.
1921 - (dtucker) [openbsd-compat/{bsd-arc4random.c,port-tun.c,xmmap.c}] Lots of
1922 #include stdarg.h, needed for log.h.
1923 - (dtucker) [entropy.c] Needs unistd.h too.
1924 - (dtucker) [ssh-rand-helper.c] Needs stdarg.h for log.h.
1925 - (dtucker) [openbsd-compat/getrrsetbyname.c] Nees stdlib.h for malloc.
1926 - (dtucker) [openbsd-compat/strtonum.c] Include stdlib.h for strtoll,
1927 otherwise it is implicitly declared as returning an int.
1928 - (dtucker) OpenBSD CVS Sync
1929 - dtucker@cvs.openbsd.org 2006/08/05 07:52:52
1930 [auth2-none.c sshd.c monitor_wrap.c]
1931 Add headers required to build with KERBEROS5=no. ok djm@
1932 - dtucker@cvs.openbsd.org 2006/08/05 08:00:33
1933 [auth-skey.c]
1934 Add headers required to build with -DSKEY. ok djm@
1935 - dtucker@cvs.openbsd.org 2006/08/05 08:28:24
1936 [monitor_wrap.c auth-skey.c auth2-chall.c]
1937 Zap unused variables in -DSKEY code. ok djm@
1938 - dtucker@cvs.openbsd.org 2006/08/05 08:34:04
1939 [packet.c]
1940 Typo in comment
1941 - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Add headers required to compile
1942 on Cygwin.
1943 - (dtucker) [openbsd-compat/fake-rfc2553.c] Add headers needed for inet_ntoa.
1944 - (dtucker) [auth-skey.c] monitor_wrap.h needs ssh-gss.h.
1945 - (dtucker) [audit.c audit.h] Repair headers.
1946 - (dtucker) [audit-bsm.c] Add additional headers now required.
1947
194820060804
1949 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
1950 versions of Solaris, so use AC_LINK_IFELSE to actually link the test program
1951 rather than just compiling it. Spotted by dlg@.
1952
195320060802
1954 - (dtucker) [openbsd-compat/daemon.c] Add unistd.h for fork() prototype.
1955
195620060725
1957 - (dtucker) [openbsd-compat/xmmap.c] Need fcntl.h for O_RDRW.
1958
195920060724
1960 - (djm) OpenBSD CVS Sync
1961 - jmc@cvs.openbsd.org 2006/07/12 13:39:55
1962 [sshd_config.5]
1963 - new sentence, new line
1964 - s/The the/The/
1965 - kill a bad comma
1966 - stevesk@cvs.openbsd.org 2006/07/12 22:28:52
1967 [auth-options.c canohost.c channels.c includes.h readconf.c]
1968 [servconf.c ssh-keyscan.c ssh.c sshconnect.c sshd.c]
1969 move #include <netdb.h> out of includes.h; ok djm@
1970 - stevesk@cvs.openbsd.org 2006/07/12 22:42:32
1971 [includes.h ssh.c ssh-rand-helper.c]
1972 move #include <stddef.h> out of includes.h
1973 - stevesk@cvs.openbsd.org 2006/07/14 01:15:28
1974 [monitor_wrap.h]
1975 don't need incompletely-typed 'struct passwd' now with
1976 #include <pwd.h>; ok markus@
1977 - stevesk@cvs.openbsd.org 2006/07/17 01:31:10
1978 [authfd.c authfile.c channels.c cleanup.c clientloop.c groupaccess.c]
1979 [includes.h log.c misc.c msg.c packet.c progressmeter.c readconf.c]
1980 [readpass.c scp.c servconf.c sftp-client.c sftp-server.c sftp.c]
1981 [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh.c]
1982 [sshconnect.c sshlogin.c sshpty.c uidswap.c]
1983 move #include <unistd.h> out of includes.h
1984 - dtucker@cvs.openbsd.org 2006/07/17 12:02:24
1985 [auth-options.c]
1986 Use '\0' rather than 0 to terminates strings; ok djm@
1987 - dtucker@cvs.openbsd.org 2006/07/17 12:06:00
1988 [channels.c channels.h servconf.c sshd_config.5]
1989 Add PermitOpen directive to sshd_config which is equivalent to the
1990 "permitopen" key option. Allows server admin to allow TCP port
1991 forwarding only two specific host/port pairs. Useful when combined
1992 with Match.
1993 If permitopen is used in both sshd_config and a key option, both
1994 must allow a given connection before it will be permitted.
1995 Note that users can still use external forwarders such as netcat,
1996 so to be those must be controlled too for the limits to be effective.
1997 Feedback & ok djm@, man page corrections & ok jmc@.
1998 - jmc@cvs.openbsd.org 2006/07/18 07:50:40
1999 [sshd_config.5]
2000 tweak; ok dtucker
2001 - jmc@cvs.openbsd.org 2006/07/18 07:56:28
2002 [scp.1]
2003 replace DIAGNOSTICS with .Ex;
2004 - jmc@cvs.openbsd.org 2006/07/18 08:03:09
2005 [ssh-agent.1 sshd_config.5]
2006 mark up angle brackets;
2007 - dtucker@cvs.openbsd.org 2006/07/18 08:22:23
2008 [sshd_config.5]
2009 Clarify description of Match, with minor correction from jmc@
2010 - stevesk@cvs.openbsd.org 2006/07/18 22:27:55
2011 [dh.c]
2012 remove unneeded includes; ok djm@
2013 - dtucker@cvs.openbsd.org 2006/07/19 08:56:41
2014 [servconf.c sshd_config.5]
2015 Add support for X11Forwaring, X11DisplayOffset and X11UseLocalhost to
2016 Match. ok djm@
2017 - dtucker@cvs.openbsd.org 2006/07/19 13:07:10
2018 [servconf.c servconf.h session.c sshd.8 sshd_config sshd_config.5]
2019 Add ForceCommand keyword to sshd_config, equivalent to the "command="
2020 key option, man page entry and example in sshd_config.
2021 Feedback & ok djm@, man page corrections & ok jmc@
2022 - stevesk@cvs.openbsd.org 2006/07/20 15:26:15
2023 [auth1.c serverloop.c session.c sshconnect2.c]
2024 missed some needed #include <unistd.h> when KERBEROS5=no; issue from
2025 massimo@cedoc.mo.it
2026 - dtucker@cvs.openbsd.org 2006/07/21 12:43:36
2027 [channels.c channels.h servconf.c servconf.h sshd_config.5]
2028 Make PermitOpen take a list of permitted ports and act more like most
2029 other keywords (ie the first match is the effective setting). This
2030 also makes it easier to override a previously set PermitOpen. ok djm@
2031 - stevesk@cvs.openbsd.org 2006/07/21 21:13:30
2032 [channels.c]
2033 more ARGSUSED (lint) for dispatch table-driven functions; ok djm@
2034 - stevesk@cvs.openbsd.org 2006/07/21 21:26:55
2035 [progressmeter.c]
2036 ARGSUSED for signal handler
2037 - stevesk@cvs.openbsd.org 2006/07/22 19:08:54
2038 [includes.h moduli.c progressmeter.c scp.c sftp-common.c]
2039 [sftp-server.c ssh-agent.c sshlogin.c]
2040 move #include <time.h> out of includes.h
2041 - stevesk@cvs.openbsd.org 2006/07/22 20:48:23
2042 [atomicio.c auth-options.c auth-passwd.c auth-rhosts.c auth-rsa.c]
2043 [auth.c auth1.c auth2-chall.c auth2-hostbased.c auth2-passwd.c auth2.c]
2044 [authfd.c authfile.c bufaux.c bufbn.c buffer.c canohost.c channels.c]
2045 [cipher-3des1.c cipher-bf1.c cipher-ctr.c cipher.c clientloop.c]
2046 [compat.c deattack.c dh.c dns.c gss-genr.c gss-serv.c hostfile.c]
2047 [includes.h kex.c kexdhc.c kexdhs.c kexgexc.c kexgexs.c key.c log.c]
2048 [mac.c match.c md-sha256.c misc.c moduli.c monitor.c monitor_fdpass.c]
2049 [monitor_mm.c monitor_wrap.c msg.c nchan.c packet.c rsa.c]
2050 [progressmeter.c readconf.c readpass.c scp.c servconf.c serverloop.c]
2051 [session.c sftp-client.c sftp-common.c sftp-glob.c sftp-server.c sftp.c]
2052 [ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c ssh-keyscan.c]
2053 [ssh-keysign.c ssh-rsa.c ssh.c sshconnect.c sshconnect1.c sshconnect2.c]
2054 [sshd.c sshlogin.c sshpty.c ttymodes.c uidswap.c xmalloc.c]
2055 move #include <string.h> out of includes.h
2056 - stevesk@cvs.openbsd.org 2006/07/23 01:11:05
2057 [auth.h dispatch.c kex.h sftp-client.c]
2058 #include <signal.h> for sig_atomic_t; need this prior to <sys/param.h>
2059 move
2060 - (djm) [acss.c auth-krb5.c auth-options.c auth-pam.c auth-shadow.c]
2061 [canohost.c channels.c cipher-acss.c defines.h dns.c gss-genr.c]
2062 [gss-serv-krb5.c gss-serv.c log.h loginrec.c logintest.c readconf.c]
2063 [servconf.c ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh-rand-helper.c]
2064 [ssh.c sshconnect.c sshd.c openbsd-compat/bindresvport.c]
2065 [openbsd-compat/bsd-arc4random.c openbsd-compat/bsd-misc.c]
2066 [openbsd-compat/getrrsetbyname.c openbsd-compat/glob.c]
2067 [openbsd-compat/mktemp.c openbsd-compat/port-linux.c]
2068 [openbsd-compat/port-tun.c openbsd-compat/readpassphrase.c]
2069 [openbsd-compat/setproctitle.c openbsd-compat/xmmap.c]
2070 make the portable tree compile again - sprinkle unistd.h and string.h
2071 back in. Don't redefine __unused, as it turned out to be used in
2072 headers on Linux, and replace its use in auth-pam.c with ARGSUSED
2073 - (djm) [openbsd-compat/glob.c]
2074 Move get_arg_max() into the ifdef HAVE_GLOB block so that it compiles
2075 on OpenBSD (or other platforms with a decent glob implementation) with
2076 -Werror
2077 - (djm) [uuencode.c]
2078 Add resolv.h, is it contains the prototypes for __b64_ntop/__b64_pton on
2079 some platforms
2080 - (djm) [session.c]
2081 fix compile error with -Werror -Wall: 'path' is only used in
2082 do_setup_env() if HAVE_LOGIN_CAP is not defined
2083 - (djm) [openbsd-compat/basename.c openbsd-compat/bsd-closefrom.c]
2084 [openbsd-compat/bsd-cray.c openbsd-compat/bsd-openpty.c]
2085 [openbsd-compat/bsd-snprintf.c openbsd-compat/fake-rfc2553.c]
2086 [openbsd-compat/port-aix.c openbsd-compat/port-irix.c]
2087 [openbsd-compat/rresvport.c]
2088 These look to need string.h and/or unistd.h (based on a grep for function
2089 names)
2090 - (djm) [Makefile.in]
2091 Remove generated openbsd-compat/regress/Makefile in distclean target
2092 - (djm) [regress/Makefile regress/agent-getpeereid.sh regress/cfgmatch.sh]
2093 [regress/cipher-speed.sh regress/forcecommand.sh regress/forwarding.sh]
2094 Sync regress tests to -current; include dtucker@'s new cfgmatch and
2095 forcecommand tests. Add cipher-speed.sh test (not linked in yet)
2096 - (dtucker) [cleanup.c] Since config.h defines _LARGE_FILES on AIX, including
2097 system headers before defines.h will cause conflicting definitions.
2098 - (dtucker) [regress/forcecommand.sh] Portablize.
2099
210020060713
2101 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
2102
210320060712
2104 - (dtucker) [configure.ac defines.h] Only define SHUT_RD (and friends) and
2105 O_NONBLOCK if they're really needed. Fixes build errors on HP-UX, old
2106 Linuxes and probably more.
2107 - (dtucker) [configure.ac] OpenBSD needs <sys/types.h> before <sys/socket.h>
2108 for SHUT_RD.
2109 - (dtucker) [openbsd-compat/port-tun.c] OpenBSD needs <netinet/in.h> before
2110 <netinet/ip.h>.
2111 - (dtucker) OpenBSD CVS Sync
2112 - stevesk@cvs.openbsd.org 2006/07/10 16:01:57
2113 [sftp-glob.c sftp-common.h sftp.c]
2114 buffer.h only needed in sftp-common.h and remove some unneeded
2115 user includes; ok djm@
2116 - jmc@cvs.openbsd.org 2006/07/10 16:04:21
2117 [sshd.8]
2118 s/and and/and/
2119 - stevesk@cvs.openbsd.org 2006/07/10 16:37:36
2120 [readpass.c log.h scp.c fatal.c xmalloc.c includes.h ssh-keyscan.c misc.c
2121 auth.c packet.c log.c]
2122 move #include <stdarg.h> out of includes.h; ok markus@
2123 - dtucker@cvs.openbsd.org 2006/07/11 10:12:07
2124 [ssh.c]
2125 Only copy the part of environment variable that we actually use. Prevents
2126 ssh bailing when SendEnv is used and an environment variable with a really
2127 long value exists. ok djm@
2128 - markus@cvs.openbsd.org 2006/07/11 18:50:48
2129 [clientloop.c ssh.1 ssh.c channels.c ssh_config.5 readconf.h session.c
2130 channels.h readconf.c]
2131 add ExitOnForwardFailure: terminate the connection if ssh(1)
2132 cannot set up all requested dynamic, local, and remote port
2133 forwardings. ok djm, dtucker, stevesk, jmc
2134 - stevesk@cvs.openbsd.org 2006/07/11 20:07:25
2135 [scp.c auth.c monitor.c serverloop.c sftp-server.c sshpty.c readpass.c
2136 sshd.c monitor_wrap.c monitor_fdpass.c ssh-agent.c ttymodes.c atomicio.c
2137 includes.h session.c sshlogin.c monitor_mm.c packet.c sshconnect2.c
2138 sftp-client.c nchan.c clientloop.c sftp.c misc.c canohost.c channels.c
2139 ssh-keygen.c progressmeter.c uidswap.c msg.c readconf.c sshconnect.c]
2140 move #include <errno.h> out of includes.h; ok markus@
2141 - stevesk@cvs.openbsd.org 2006/07/11 20:16:43
2142 [ssh.c]
2143 cast asterisk field precision argument to int to remove warning;
2144 ok markus@
2145 - stevesk@cvs.openbsd.org 2006/07/11 20:27:56
2146 [authfile.c ssh.c]
2147 need <errno.h> here also (it's also included in <openssl/err.h>)
2148 - dtucker@cvs.openbsd.org 2006/07/12 11:34:58
2149 [sshd.c servconf.h servconf.c sshd_config.5 auth.c]
2150 Add support for conditional directives to sshd_config via a "Match"
2151 keyword, which works similarly to the "Host" directive in ssh_config.
2152 Lines after a Match line override the default set in the main section
2153 if the condition on the Match line is true, eg
2154 AllowTcpForwarding yes
2155 Match User anoncvs
2156 AllowTcpForwarding no
2157 will allow port forwarding by all users except "anoncvs".
2158 Currently only a very small subset of directives are supported.
2159 ok djm@
2160 - (dtucker) [loginrec.c openbsd-compat/xmmap.c openbsd-compat/bindresvport.c
2161 openbsd-compat/glob.c openbsd-compat/mktemp.c openbsd-compat/port-tun.c
2162 openbsd-compat/readpassphrase.c openbsd-compat/strtonum.c] Include <errno.h>.
2163 - (dtucker) [openbsd-compat/setproctitle.c] Include stdarg.h.
2164 - (dtucker) [ssh-keyscan.c ssh-rand-helper.c] More errno.h here too.
2165 - (dtucker) [openbsd-compat/openbsd-compat.h] v*printf needs stdarg.h.
2166 - (dtucker) [openbsd-compat/bsd-asprintf.c openbsd-compat/port-aix.c
2167 openbsd-compat/rresvport.c] More errno.h.
2168
216920060711
2170 - (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
2171 openbsd-compat/daemon.c] Add includes needed by open(2). Conditionally
2172 include paths.h. Fixes build error on Solaris.
2173 - (dtucker) [entropy.c] More fcntl.h, this time on AIX (and probably
2174 others).
2175
217620060710
2177 - (dtucker) [INSTALL] New autoconf version: 2.60.
2178 - OpenBSD CVS Sync
2179 - djm@cvs.openbsd.org 2006/06/14 10:50:42
2180 [sshconnect.c]
2181 limit the number of pre-banner characters we will accept; ok markus@
2182 - djm@cvs.openbsd.org 2006/06/26 10:36:15
2183 [clientloop.c]
2184 mention optional bind_address in runtime port forwarding setup
2185 command-line help. patch from santhi.amirta AT gmail.com
2186 - stevesk@cvs.openbsd.org 2006/07/02 17:12:58
2187 [ssh.1 ssh.c ssh_config.5 sshd_config.5]
2188 more details and clarity for tun(4) device forwarding; ok and help
2189 jmc@
2190 - stevesk@cvs.openbsd.org 2006/07/02 18:36:47
2191 [gss-serv-krb5.c gss-serv.c]
2192 no "servconf.h" needed here
2193 (gss-serv-krb5.c change not applied, portable needs the server options)
2194 - stevesk@cvs.openbsd.org 2006/07/02 22:45:59
2195 [groupaccess.c groupaccess.h includes.h session.c sftp-common.c sshpty.c]
2196 move #include <grp.h> out of includes.h
2197 (portable needed uidswap.c too)
2198 - stevesk@cvs.openbsd.org 2006/07/02 23:01:55
2199 [clientloop.c ssh.1]
2200 use -KR[bind_address:]port here; ok djm@
2201 - stevesk@cvs.openbsd.org 2006/07/03 08:54:20
2202 [includes.h ssh.c sshconnect.c sshd.c]
2203 move #include "version.h" out of includes.h; ok markus@
2204 - stevesk@cvs.openbsd.org 2006/07/03 17:59:32
2205 [channels.c includes.h]
2206 move #include <arpa/inet.h> out of includes.h; old ok djm@
2207 (portable needed session.c too)
2208 - stevesk@cvs.openbsd.org 2006/07/05 02:42:09
2209 [canohost.c hostfile.c includes.h misc.c packet.c readconf.c]
2210 [serverloop.c sshconnect.c uuencode.c]
2211 move #include <netinet/in.h> out of includes.h; ok deraadt@
2212 (also ssh-rand-helper.c logintest.c loginrec.c)
2213 - djm@cvs.openbsd.org 2006/07/06 10:47:05
2214 [servconf.c servconf.h session.c sshd_config.5]
2215 support arguments to Subsystem commands; ok markus@
2216 - djm@cvs.openbsd.org 2006/07/06 10:47:57
2217 [sftp-server.8 sftp-server.c]
2218 add commandline options to enable logging of transactions; ok markus@
2219 - stevesk@cvs.openbsd.org 2006/07/06 16:03:53
2220 [auth-options.c auth-options.h auth-passwd.c auth-rh-rsa.c]
2221 [auth-rhosts.c auth-rsa.c auth.c auth.h auth2-hostbased.c]
2222 [auth2-pubkey.c auth2.c includes.h misc.c misc.h monitor.c]
2223 [monitor_wrap.c monitor_wrap.h scp.c serverloop.c session.c]
2224 [session.h sftp-common.c ssh-add.c ssh-keygen.c ssh-keysign.c]
2225 [ssh.c sshconnect.c sshconnect.h sshd.c sshpty.c sshpty.h uidswap.c]
2226 [uidswap.h]
2227 move #include <pwd.h> out of includes.h; ok markus@
2228 - stevesk@cvs.openbsd.org 2006/07/06 16:22:39
2229 [ssh-keygen.c]
2230 move #include "dns.h" up
2231 - stevesk@cvs.openbsd.org 2006/07/06 17:36:37
2232 [monitor_wrap.h]
2233 typo in comment
2234 - stevesk@cvs.openbsd.org 2006/07/08 21:47:12
2235 [authfd.c canohost.c clientloop.c dns.c dns.h includes.h]
2236 [monitor_fdpass.c nchan.c packet.c servconf.c sftp.c ssh-agent.c]
2237 [ssh-keyscan.c ssh.c sshconnect.h sshd.c sshlogin.h]
2238 move #include <sys/socket.h> out of includes.h
2239 - stevesk@cvs.openbsd.org 2006/07/08 21:48:53
2240 [monitor.c session.c]
2241 missed these from last commit:
2242 move #include <sys/socket.h> out of includes.h
2243 - stevesk@cvs.openbsd.org 2006/07/08 23:30:06
2244 [log.c]
2245 move user includes after /usr/include files
2246 - stevesk@cvs.openbsd.org 2006/07/09 15:15:11
2247 [auth2-none.c authfd.c authfile.c includes.h misc.c monitor.c]
2248 [readpass.c scp.c serverloop.c sftp-client.c sftp-server.c]
2249 [ssh-add.c ssh-agent.c ssh-keygen.c ssh-keysign.c ssh.c sshd.c]
2250 [sshlogin.c sshpty.c]
2251 move #include <fcntl.h> out of includes.h
2252 - stevesk@cvs.openbsd.org 2006/07/09 15:27:59
2253 [ssh-add.c]
2254 use O_RDONLY vs. 0 in open(); no binary change
2255 - djm@cvs.openbsd.org 2006/07/10 11:24:54
2256 [sftp-server.c]
2257 remove optind - it isn't used here
2258 - djm@cvs.openbsd.org 2006/07/10 11:25:53
2259 [sftp-server.c]
2260 don't log variables that aren't yet set
2261 - (djm) [loginrec.c ssh-rand-helper.c sshd.c openbsd-compat/glob.c]
2262 [openbsd-compat/mktemp.c openbsd-compat/openbsd-compat.h]
2263 [openbsd-compat/port-tun.c openbsd-compat/readpassphrase.c]
2264 [openbsd-compat/xcrypt.c] Fix includes.h fallout, mainly fcntl.h
2265 - OpenBSD CVS Sync
2266 - djm@cvs.openbsd.org 2006/07/10 12:03:20
2267 [scp.c]
2268 duplicate argv at the start of main() because it gets modified later;
2269 pointed out by deraadt@ ok markus@
2270 - djm@cvs.openbsd.org 2006/07/10 12:08:08
2271 [channels.c]
2272 fix misparsing of SOCKS 5 packets that could result in a crash;
2273 reported by mk@ ok markus@
2274 - dtucker@cvs.openbsd.org 2006/07/10 12:46:51
2275 [misc.c misc.h sshd.8 sshconnect.c]
2276 Add port identifier to known_hosts for non-default ports, based originally
2277 on a patch from Devin Nate in bz#910.
2278 For any connection using the default port or using a HostKeyAlias the
2279 format is unchanged, otherwise the host name or address is enclosed
2280 within square brackets in the same format as sshd's ListenAddress.
2281 Tested by many, ok markus@.
2282 - (dtucker) [openbsd-compat/openbsd-compat.h] Need to include <sys/socket.h>
2283 for struct sockaddr on platforms that use the fake-rfc stuff.
2284
228520060706
2286 - (dtucker) [configure.ac] Try AIX blibpath test in different order when
2287 compiling with gcc. gcc 4.1.x will accept (but ignore) -b flags so
2288 configure would not select the correct libpath linker flags.
2289 - (dtucker) [INSTALL] A bit more info on autoconf.
2290
229120060705
2292 - (dtucker) [ssh-rand-helper.c] Don't exit if mkdir fails because the
2293 target already exists.
2294
229520060630
2296 - (dtucker) [openbsd-compat/openbsd-compat.h] SNPRINTF_CONST for snprintf
2297 declaration too. Patch from russ at sludge.net.
2298 - (dtucker) [openbsd-compat/getrrsetbyname.c] Undef _res before defining it,
2299 prevents warnings on platforms where _res is in the system headers.
2300 - (dtucker) [INSTALL] Bug #1202: Note when autoconf is required and which
2301 version.
2302
230320060627
2304 - (dtucker) [configure.ac] Bug #1203: Add missing '[', which causes problems
2305 with autoconf 2.60. Patch from vapier at gentoo.org.
2306
230720060625
2308 - (dtucker) [channels.c serverloop.c] Apply the bug #1102 workaround to ptys
2309 only, otherwise sshd can hang exiting non-interactive sessions.
2310
231120060624
2312 - (dtucker) [configure.ac] Bug #1193: Define PASSWD_NEEDS_USERNAME on Solaris.
2313 Works around limitation in Solaris' passwd program for changing passwords
2314 where the username is longer than 8 characters. ok djm@
2315 - (dtucker) [serverloop.c] Get ifdef/ifndef the right way around for the bug
2316 #1102 workaround.
2317
231820060623
2319 - (dtucker) [README.platform configure.ac openbsd-compat/port-tun.c] Add
2320 tunnel support for Mac OS X/Darwin via a third-party tun driver. Patch
2321 from reyk@, tested by anil@
2322 - (dtucker) [channels.c configure.ac serverloop.c] Bug #1102: Around AIX
2323 4.3.3 ML3 or so, the AIX pty layer starting passing zero-length writes
2324 on the pty slave as zero-length reads on the pty master, which sshd
2325 interprets as the descriptor closing. Since most things don't do zero
2326 length writes this rarely matters, but occasionally it happens, and when
2327 it does the SSH pty session appears to hang, so we add a special case for
2328 this condition. ok djm@
2329
233020060613
2331 - (djm) [getput.h] This file has been replaced by functions in misc.c
2332 - OpenBSD CVS Sync
2333 - djm@cvs.openbsd.org 2006/05/08 10:49:48
2334 [sshconnect2.c]
2335 uint32_t -> u_int32_t (which we use everywhere else)
2336 (Id sync only - portable already had this)
2337 - markus@cvs.openbsd.org 2006/05/16 09:00:00
2338 [clientloop.c]
2339 missing free; from Kylene Hall
2340 - markus@cvs.openbsd.org 2006/05/17 12:43:34
2341 [scp.c sftp.c ssh-agent.c ssh-keygen.c sshconnect.c]
2342 fix leak; coverity via Kylene Jo Hall
2343 - miod@cvs.openbsd.org 2006/05/18 21:27:25
2344 [kexdhc.c kexgexc.c]
2345 paramter -> parameter
2346 - dtucker@cvs.openbsd.org 2006/05/29 12:54:08
2347 [ssh_config.5]
2348 Add gssapi-with-mic to PreferredAuthentications default list; ok jmc
2349 - dtucker@cvs.openbsd.org 2006/05/29 12:56:33
2350 [ssh_config]
2351 Add GSSAPIAuthentication and GSSAPIDelegateCredentials to examples in
2352 sample ssh_config. ok markus@
2353 - jmc@cvs.openbsd.org 2006/05/29 16:10:03
2354 [ssh_config.5]
2355 oops - previous was too long; split the list of auths up
2356 - mk@cvs.openbsd.org 2006/05/30 11:46:38
2357 [ssh-add.c]
2358 Sync usage() with man page and reality.
2359 ok deraadt dtucker
2360 - jmc@cvs.openbsd.org 2006/05/29 16:13:23
2361 [ssh.1]
2362 add GSSAPI to the list of authentication methods supported;
2363 - mk@cvs.openbsd.org 2006/05/30 11:46:38
2364 [ssh-add.c]
2365 Sync usage() with man page and reality.
2366 ok deraadt dtucker
2367 - markus@cvs.openbsd.org 2006/06/01 09:21:48
2368 [sshd.c]
2369 call get_remote_ipaddr() early; fixes logging after client disconnects;
2370 report mpf@; ok dtucker@
2371 - markus@cvs.openbsd.org 2006/06/06 10:20:20
2372 [readpass.c sshconnect.c sshconnect.h sshconnect2.c uidswap.c]
2373 replace remaining setuid() calls with permanently_set_uid() and
2374 check seteuid() return values; report Marcus Meissner; ok dtucker djm
2375 - markus@cvs.openbsd.org 2006/06/08 14:45:49
2376 [readpass.c sshconnect.c sshconnect2.c uidswap.c uidswap.h]
2377 do not set the gid, noted by solar; ok djm
2378 - djm@cvs.openbsd.org 2006/06/13 01:18:36
2379 [ssh-agent.c]
2380 always use a format string, even when printing a constant
2381 - djm@cvs.openbsd.org 2006/06/13 02:17:07
2382 [ssh-agent.c]
2383 revert; i am on drugs. spotted by alexander AT beard.se
2384
238520060521
2386 - (dtucker) [auth.c monitor.c] Now that we don't log from both the monitor
2387 and slave, we can remove the special-case handling in the audit hook in
2388 auth_log.
2389
239020060517
2391 - (dtucker) [ssh-rand-helper.c] Check return code of mkdir and fix file
2392 pointer leak. From kjhall at us.ibm.com, found by coverity.
2393
239420060515
2395 - (dtucker) [openbsd-compat/getrrsetbyname.c] Use _compat_res instead of
2396 _res, prevents problems on some platforms that have _res as a global but
2397 don't have getrrsetbyname(), eg IRIX 5.3. Found and tested by
2398 georg.schwarz at freenet.de, ok djm@.
2399 - (dtucker) [defines.h] Find a value for IOV_MAX or use a conservative
2400 default. Patch originally from tim@, ok djm
2401 - (dtucker) [auth-pam.c] Bug #1188: pass result of do_pam_account back and
2402 do not allow kbdint again after the PAM account check fails. ok djm@
2403
240420060506
2405 - (dtucker) OpenBSD CVS Sync
2406 - dtucker@cvs.openbsd.org 2006/04/25 08:02:27
2407 [authfile.c authfile.h sshconnect2.c ssh.c sshconnect1.c]
2408 Prevent ssh from trying to open private keys with bad permissions more than
2409 once or prompting for their passphrases (which it subsequently ignores
2410 anyway), similar to a previous change in ssh-add. bz #1186, ok djm@
2411 - djm@cvs.openbsd.org 2006/05/04 14:55:23
2412 [dh.c]
2413 tighter DH exponent checks here too; feedback and ok markus@
2414 - djm@cvs.openbsd.org 2006/04/01 05:37:46
2415 [OVERVIEW]
2416 $OpenBSD$ in here too
2417 - dtucker@cvs.openbsd.org 2006/05/06 08:35:40
2418 [auth-krb5.c]
2419 Add $OpenBSD$ in comment here too
2420
242120060504
2422 - (dtucker) [auth-pam.c groupaccess.c monitor.c monitor_wrap.c scard-opensc.c
2423 session.c ssh-rand-helper.c sshd.c openbsd-compat/bsd-cygwin_util.c
2424 openbsd-compat/setproctitle.c] Convert malloc(foo*bar) -> calloc(foo,bar)
2425 in Portable-only code; since calloc zeros, remove now-redundant memsets.
2426 Also add a couple of sanity checks. With & ok djm@
2427
242820060503
2429 - (dtucker) [packet.c] Remove in_systm.h since it's also in includes.h
2430 and double including it on IRIX 5.3 causes problems. From Georg Schwarz,
2431 "no objections" tim@
2432
243320060423
2434 - (djm) OpenBSD CVS Sync
2435 - deraadt@cvs.openbsd.org 2006/04/01 05:42:20
2436 [scp.c]
2437 minimal lint cleanup (unused crud, and some size_t); ok djm
2438 - djm@cvs.openbsd.org 2006/04/01 05:50:29
2439 [scp.c]
2440 xasprintification; ok deraadt@
2441 - djm@cvs.openbsd.org 2006/04/01 05:51:34
2442 [atomicio.c]
2443 ANSIfy; requested deraadt@
2444 - dtucker@cvs.openbsd.org 2006/04/02 08:34:52
2445 [ssh-keysign.c]
2446 sessionid can be 32 bytes now too when sha256 kex is used; ok djm@
2447 - djm@cvs.openbsd.org 2006/04/03 07:10:38
2448 [gss-genr.c]
2449 GSSAPI buffers shouldn't be nul-terminated, spotted in bugzilla #1066
2450 by dleonard AT vintela.com. use xasprintf() to simplify code while in
2451 there; "looks right" deraadt@
2452 - djm@cvs.openbsd.org 2006/04/16 00:48:52
2453 [buffer.c buffer.h channels.c]
2454 Fix condition where we could exit with a fatal error when an input
2455 buffer became too large and the remote end had advertised a big window.
2456 The problem was a mismatch in the backoff math between the channels code
2457 and the buffer code, so make a buffer_check_alloc() function that the
2458 channels code can use to propsectivly check whether an incremental
2459 allocation will succeed. bz #1131, debugged with the assistance of
2460 cove AT wildpackets.com; ok dtucker@ deraadt@
2461 - djm@cvs.openbsd.org 2006/04/16 00:52:55
2462 [atomicio.c atomicio.h]
2463 introduce atomiciov() function that wraps readv/writev to retry
2464 interrupted transfers like atomicio() does for read/write;
2465 feedback deraadt@ dtucker@ stevesk@ ok deraadt@
2466 - djm@cvs.openbsd.org 2006/04/16 00:54:10
2467 [sftp-client.c]
2468 avoid making a tiny 4-byte write to send the packet length of sftp
2469 commands, which would result in a separate tiny packet on the wire by
2470 using atomiciov(writev, ...) to write the length and the command in one
2471 pass; ok deraadt@
2472 - djm@cvs.openbsd.org 2006/04/16 07:59:00
2473 [atomicio.c]
2474 reorder sanity test so that it cannot dereference past the end of the
2475 iov array; well spotted canacar@!
2476 - dtucker@cvs.openbsd.org 2006/04/18 10:44:28
2477 [bufaux.c bufbn.c Makefile.in]
2478 Move Buffer bignum functions into their own file, bufbn.c. This means
2479 that sftp and sftp-server (which use the Buffer functions in bufaux.c
2480 but not the bignum ones) no longer need to be linked with libcrypto.
2481 ok markus@
2482 - djm@cvs.openbsd.org 2006/04/20 09:27:09
2483 [auth.h clientloop.c dispatch.c dispatch.h kex.h]
2484 replace the last non-sig_atomic_t flag used in a signal handler with a
2485 sig_atomic_t, unfortunately with some knock-on effects in other (non-
2486 signal) contexts in which it is used; ok markus@
2487 - markus@cvs.openbsd.org 2006/04/20 09:47:59
2488 [sshconnect.c]
2489 simplify; ok djm@
2490 - djm@cvs.openbsd.org 2006/04/20 21:53:44
2491 [includes.h session.c sftp.c]
2492 Switch from using pipes to socketpairs for communication between
2493 sftp/scp and ssh, and between sshd and its subprocesses. This saves
2494 a file descriptor per session and apparently makes userland ppp over
2495 ssh work; ok markus@ deraadt@ (ID Sync only - portable makes this
2496 decision on a per-platform basis)
2497 - djm@cvs.openbsd.org 2006/04/22 04:06:51
2498 [uidswap.c]
2499 use setres[ug]id() to permanently revoke privileges; ok deraadt@
2500 (ID Sync only - portable already uses setres[ug]id() whenever possible)
2501 - stevesk@cvs.openbsd.org 2006/04/22 18:29:33
2502 [crc32.c]
2503 remove extra spaces
2504 - (djm) [auth.h dispatch.h kex.h] sprinkle in signal.h to get
2505 sig_atomic_t
2506
250720060421
2508 - (djm) [Makefile.in configure.ac session.c sshpty.c]
2509 [contrib/redhat/sshd.init openbsd-compat/Makefile.in]
2510 [openbsd-compat/openbsd-compat.h openbsd-compat/port-linux.c]
2511 [openbsd-compat/port-linux.h] Add support for SELinux, setting
2512 the execution and TTY contexts. based on patch from Daniel Walsh,
2513 bz #880; ok dtucker@
2514
251520060418
2516 - (djm) [canohost.c] Reorder IP options check so that it isn't broken
2517 by mapped addresses; bz #1179 reported by markw wtech-llc.com;
2518 ok dtucker@
2519
252020060331
2521 - OpenBSD CVS Sync
2522 - deraadt@cvs.openbsd.org 2006/03/27 01:21:18
2523 [xmalloc.c]
2524 we can do the size & nmemb check before the integer overflow check;
2525 evol
2526 - deraadt@cvs.openbsd.org 2006/03/27 13:03:54
2527 [dh.c]
2528 use strtonum() instead of atoi(), limit dhg size to 64k; ok djm
2529 - djm@cvs.openbsd.org 2006/03/27 23:15:46
2530 [sftp.c]
2531 always use a format string for addargs; spotted by mouring@
2532 - deraadt@cvs.openbsd.org 2006/03/28 00:12:31
2533 [README.tun ssh.c]
2534 spacing
2535 - deraadt@cvs.openbsd.org 2006/03/28 01:52:28
2536 [channels.c]
2537 do not accept unreasonable X ports numbers; ok djm
2538 - deraadt@cvs.openbsd.org 2006/03/28 01:53:43
2539 [ssh-agent.c]
2540 use strtonum() to parse the pid from the file, and range check it
2541 better; ok djm
2542 - djm@cvs.openbsd.org 2006/03/30 09:41:25
2543 [channels.c]
2544 ARGSUSED for dispatch table-driven functions
2545 - djm@cvs.openbsd.org 2006/03/30 09:58:16
2546 [authfd.c bufaux.c deattack.c gss-serv.c mac.c misc.c misc.h]
2547 [monitor_wrap.c msg.c packet.c sftp-client.c sftp-server.c ssh-agent.c]
2548 replace {GET,PUT}_XXBIT macros with functionally similar functions,
2549 silencing a heap of lint warnings. also allows them to use
2550 __bounded__ checking which can't be applied to macros; requested
2551 by and feedback from deraadt@
2552 - djm@cvs.openbsd.org 2006/03/30 10:41:25
2553 [ssh.c ssh_config.5]
2554 add percent escape chars to the IdentityFile option, bz #1159 based
2555 on a patch by imaging AT math.ualberta.ca; feedback and ok dtucker@
2556 - dtucker@cvs.openbsd.org 2006/03/30 11:05:17
2557 [ssh-keygen.c]
2558 Correctly handle truncated files while converting keys; ok djm@
2559 - dtucker@cvs.openbsd.org 2006/03/30 11:40:21
2560 [auth.c monitor.c]
2561 Prevent duplicate log messages when privsep=yes; ok djm@
2562 - jmc@cvs.openbsd.org 2006/03/31 09:09:30
2563 [ssh_config.5]
2564 kill trailing whitespace;
2565 - djm@cvs.openbsd.org 2006/03/31 09:13:56
2566 [ssh_config.5]
2567 remote user escape is %r not %h; spotted by jmc@
2568
256920060326
2570 - OpenBSD CVS Sync
2571 - jakob@cvs.openbsd.org 2006/03/15 08:46:44
2572 [ssh-keygen.c]
2573 if no key file are given when printing the DNS host record, use the
2574 host key file(s) as default. ok djm@
2575 - biorn@cvs.openbsd.org 2006/03/16 10:31:45
2576 [scp.c]
2577 Try to display errormessage even if remout == -1
2578 ok djm@, markus@
2579 - djm@cvs.openbsd.org 2006/03/17 22:31:50
2580 [authfd.c]
2581 another unreachable found by lint
2582 - djm@cvs.openbsd.org 2006/03/17 22:31:11
2583 [authfd.c]
2584 unreachanble statement, found by lint
2585 - djm@cvs.openbsd.org 2006/03/19 02:22:32
2586 [serverloop.c]
2587 memory leaks detected by Coverity via elad AT netbsd.org;
2588 ok deraadt@ dtucker@
2589 - djm@cvs.openbsd.org 2006/03/19 02:22:56
2590 [sftp.c]
2591 more memory leaks detected by Coverity via elad AT netbsd.org;
2592 deraadt@ ok
2593 - djm@cvs.openbsd.org 2006/03/19 02:23:26
2594 [hostfile.c]
2595 FILE* leak detected by Coverity via elad AT netbsd.org;
2596 ok deraadt@
2597 - djm@cvs.openbsd.org 2006/03/19 02:24:05
2598 [dh.c readconf.c servconf.c]
2599 potential NULL pointer dereferences detected by Coverity
2600 via elad AT netbsd.org; ok deraadt@
2601 - djm@cvs.openbsd.org 2006/03/19 07:41:30
2602 [sshconnect2.c]
2603 memory leaks detected by Coverity via elad AT netbsd.org;
2604 deraadt@ ok
2605 - dtucker@cvs.openbsd.org 2006/03/19 11:51:52
2606 [servconf.c]
2607 Correct strdelim null test; ok djm@
2608 - deraadt@cvs.openbsd.org 2006/03/19 18:52:11
2609 [auth1.c authfd.c channels.c]
2610 spacing
2611 - deraadt@cvs.openbsd.org 2006/03/19 18:53:12
2612 [kex.c kex.h monitor.c myproposal.h session.c]
2613 spacing
2614 - deraadt@cvs.openbsd.org 2006/03/19 18:56:41
2615 [clientloop.c progressmeter.c serverloop.c sshd.c]
2616 ARGSUSED for signal handlers
2617 - deraadt@cvs.openbsd.org 2006/03/19 18:59:49
2618 [ssh-keyscan.c]
2619 please lint
2620 - deraadt@cvs.openbsd.org 2006/03/19 18:59:30
2621 [ssh.c]
2622 spacing
2623 - deraadt@cvs.openbsd.org 2006/03/19 18:59:09
2624 [authfile.c]
2625 whoever thought that break after return was a good idea needs to
2626 get their head examimed
2627 - djm@cvs.openbsd.org 2006/03/20 04:09:44
2628 [monitor.c]
2629 memory leaks detected by Coverity via elad AT netbsd.org;
2630 deraadt@ ok
2631 that should be all of them now
2632 - djm@cvs.openbsd.org 2006/03/20 11:38:46
2633 [key.c]
2634 (really) last of the Coverity diffs: avoid possible NULL deref in
2635 key_free. via elad AT netbsd.org; markus@ ok
2636 - deraadt@cvs.openbsd.org 2006/03/20 17:10:19
2637 [auth.c key.c misc.c packet.c ssh-add.c]
2638 in a switch (), break after return or goto is stupid
2639 - deraadt@cvs.openbsd.org 2006/03/20 17:13:16
2640 [key.c]
2641 djm did a typo
2642 - deraadt@cvs.openbsd.org 2006/03/20 17:17:23
2643 [ssh-rsa.c]
2644 in a switch (), break after return or goto is stupid
2645 - deraadt@cvs.openbsd.org 2006/03/20 18:14:02
2646 [channels.c clientloop.c monitor_wrap.c monitor_wrap.h serverloop.c]
2647 [ssh.c sshpty.c sshpty.h]
2648 sprinkle u_int throughout pty subsystem, ok markus
2649 - deraadt@cvs.openbsd.org 2006/03/20 18:17:20
2650 [auth1.c auth2.c sshd.c]
2651 sprinkle some ARGSUSED for table driven functions (which sometimes
2652 must ignore their args)
2653 - deraadt@cvs.openbsd.org 2006/03/20 18:26:55
2654 [channels.c monitor.c session.c session.h ssh-agent.c ssh-keygen.c]
2655 [ssh-rsa.c ssh.c sshlogin.c]
2656 annoying spacing fixes getting in the way of real diffs
2657 - deraadt@cvs.openbsd.org 2006/03/20 18:27:50
2658 [monitor.c]
2659 spacing
2660 - deraadt@cvs.openbsd.org 2006/03/20 18:35:12
2661 [channels.c]
2662 x11_fake_data is only ever used as u_char *
2663 - deraadt@cvs.openbsd.org 2006/03/20 18:41:43
2664 [dns.c]
2665 cast xstrdup to propert u_char *
2666 - deraadt@cvs.openbsd.org 2006/03/20 18:42:27
2667 [canohost.c match.c ssh.c sshconnect.c]
2668 be strict with tolower() casting
2669 - deraadt@cvs.openbsd.org 2006/03/20 18:48:34
2670 [channels.c fatal.c kex.c packet.c serverloop.c]
2671 spacing
2672 - deraadt@cvs.openbsd.org 2006/03/20 21:11:53
2673 [ttymodes.c]
2674 spacing
2675 - djm@cvs.openbsd.org 2006/03/25 00:05:41
2676 [auth-bsdauth.c auth-skey.c auth.c auth2-chall.c channels.c]
2677 [clientloop.c deattack.c gss-genr.c kex.c key.c misc.c moduli.c]
2678 [monitor.c monitor_wrap.c packet.c scard.c sftp-server.c ssh-agent.c]
2679 [ssh-keyscan.c ssh.c sshconnect.c sshconnect2.c sshd.c uuencode.c]
2680 [xmalloc.c xmalloc.h]
2681 introduce xcalloc() and xasprintf() failure-checked allocations
2682 functions and use them throughout openssh
2683
2684 xcalloc is particularly important because malloc(nmemb * size) is a
2685 dangerous idiom (subject to integer overflow) and it is time for it
2686 to die
2687
2688 feedback and ok deraadt@
2689 - djm@cvs.openbsd.org 2006/03/25 01:13:23
2690 [buffer.c channels.c deattack.c misc.c scp.c session.c sftp-client.c]
2691 [sftp-server.c ssh-agent.c ssh-rsa.c xmalloc.c xmalloc.h auth-pam.c]
2692 [uidswap.c]
2693 change OpenSSH's xrealloc() function from being xrealloc(p, new_size)
2694 to xrealloc(p, new_nmemb, new_itemsize).
2695
2696 realloc is particularly prone to integer overflows because it is
2697 almost always allocating "n * size" bytes, so this is a far safer
2698 API; ok deraadt@
2699 - djm@cvs.openbsd.org 2006/03/25 01:30:23
2700 [sftp.c]
2701 "abormally" is a perfectly cromulent word, but "abnormally" is better
2702 - djm@cvs.openbsd.org 2006/03/25 13:17:03
2703 [atomicio.c auth-bsdauth.c auth-chall.c auth-options.c auth-passwd.c]
2704 [auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth-skey.c auth.c auth1.c]
2705 [auth2-chall.c auth2-hostbased.c auth2-kbdint.c auth2-none.c]
2706 [auth2-passwd.c auth2-pubkey.c auth2.c authfd.c authfile.c bufaux.c]
2707 [buffer.c canohost.c channels.c cipher-3des1.c cipher-bf1.c]
2708 [cipher-ctr.c cipher.c cleanup.c clientloop.c compat.c compress.c]
2709 [deattack.c dh.c dispatch.c fatal.c groupaccess.c hostfile.c kex.c]
2710 [kexdh.c kexdhc.c kexdhs.c kexgex.c kexgexc.c kexgexs.c key.c log.c]
2711 [mac.c match.c md-sha256.c misc.c monitor.c monitor_fdpass.c]
2712 [monitor_mm.c monitor_wrap.c msg.c nchan.c packet.c progressmeter.c]
2713 [readconf.c readpass.c rsa.c scard.c scp.c servconf.c serverloop.c]
2714 [session.c sftp-client.c sftp-common.c sftp-glob.c sftp-server.c]
2715 [sftp.c ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c ssh-keyscan.c]
2716 [ssh-keysign.c ssh-rsa.c ssh.c sshconnect.c sshconnect1.c]
2717 [sshconnect2.c sshd.c sshlogin.c sshpty.c sshtty.c ttymodes.c]
2718 [uidswap.c uuencode.c xmalloc.c]
2719 Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that
2720 Theo nuked - our scripts to sync -portable need them in the files
2721 - deraadt@cvs.openbsd.org 2006/03/25 18:29:35
2722 [auth-rsa.c authfd.c packet.c]
2723 needed casts (always will be needed)
2724 - deraadt@cvs.openbsd.org 2006/03/25 18:30:55
2725 [clientloop.c serverloop.c]
2726 spacing
2727 - deraadt@cvs.openbsd.org 2006/03/25 18:36:15
2728 [sshlogin.c sshlogin.h]
2729 nicer size_t and time_t types
2730 - deraadt@cvs.openbsd.org 2006/03/25 18:40:14
2731 [ssh-keygen.c]
2732 cast strtonum() result to right type
2733 - deraadt@cvs.openbsd.org 2006/03/25 18:41:45
2734 [ssh-agent.c]
2735 mark two more signal handlers ARGSUSED
2736 - deraadt@cvs.openbsd.org 2006/03/25 18:43:30
2737 [channels.c]
2738 use strtonum() instead of atoi() [limit X screens to 400, sorry]
2739 - deraadt@cvs.openbsd.org 2006/03/25 18:56:55
2740 [bufaux.c channels.c packet.c]
2741 remove (char *) casts to a function that accepts void * for the arg
2742 - deraadt@cvs.openbsd.org 2006/03/25 18:58:10
2743 [channels.c]
2744 delete cast not required
2745 - djm@cvs.openbsd.org 2006/03/25 22:22:43
2746 [atomicio.h auth-options.h auth.h auth2-gss.c authfd.h authfile.h]
2747 [bufaux.h buffer.h canohost.h channels.h cipher.h clientloop.h]
2748 [compat.h compress.h crc32.c crc32.h deattack.h dh.h dispatch.h]
2749 [dns.c dns.h getput.h groupaccess.h gss-genr.c gss-serv-krb5.c]
2750 [gss-serv.c hostfile.h includes.h kex.h key.h log.h mac.h match.h]
2751 [misc.h monitor.h monitor_fdpass.h monitor_mm.h monitor_wrap.h msg.h]
2752 [myproposal.h packet.h pathnames.h progressmeter.h readconf.h rsa.h]
2753 [scard.h servconf.h serverloop.h session.h sftp-common.h sftp.h]
2754 [ssh-gss.h ssh.h ssh1.h ssh2.h sshconnect.h sshlogin.h sshpty.h]
2755 [ttymodes.h uidswap.h uuencode.h xmalloc.h]
2756 standardise spacing in $OpenBSD$ tags; requested by deraadt@
2757 - deraadt@cvs.openbsd.org 2006/03/26 01:31:48
2758 [uuencode.c]
2759 typo
2760
276120060325
2762 - OpenBSD CVS Sync
2763 - djm@cvs.openbsd.org 2006/03/16 04:24:42
2764 [ssh.1]
2765 Add RFC4419 (Diffie-Hellman group exchange KEX) to the list of SSH RFCs
2766 that OpenSSH supports
2767 - deraadt@cvs.openbsd.org 2006/03/19 18:51:18
2768 [atomicio.c auth-bsdauth.c auth-chall.c auth-krb5.c auth-options.c]
2769 [auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c]
2770 [auth-shadow.c auth-skey.c auth.c auth1.c auth2-chall.c]
2771 [auth2-hostbased.c auth2-kbdint.c auth2-none.c auth2-passwd.c]
2772 [auth2-pubkey.c auth2.c authfd.c authfile.c bufaux.c buffer.c]
2773 [canohost.c channels.c cipher-3des1.c cipher-acss.c cipher-aes.c]
2774 [cipher-bf1.c cipher-ctr.c cipher.c cleanup.c clientloop.c compat.c]
2775 [compress.c deattack.c dh.c dispatch.c dns.c entropy.c fatal.c]
2776 [groupaccess.c hostfile.c includes.h kex.c kexdh.c kexdhc.c]
2777 [kexdhs.c kexgex.c kexgexc.c kexgexs.c key.c log.c loginrec.c]
2778 [loginrec.h logintest.c mac.c match.c md-sha256.c md5crypt.c misc.c]
2779 [monitor.c monitor_fdpass.c monitor_mm.c monitor_wrap.c msg.c]
2780 [nchan.c packet.c progressmeter.c readconf.c readpass.c rsa.c]
2781 [scard.c scp.c servconf.c serverloop.c session.c sftp-client.c]
2782 [sftp-common.c sftp-glob.c sftp-server.c sftp.c ssh-add.c]
2783 [ssh-agent.c ssh-dss.c ssh-keygen.c ssh-keyscan.c ssh-keysign.c]
2784 [ssh-rand-helper.c ssh-rsa.c ssh.c sshconnect.c sshconnect1.c]
2785 [sshconnect2.c sshd.c sshlogin.c sshpty.c sshtty.c ttymodes.c]
2786 [uidswap.c uuencode.c xmalloc.c openbsd-compat/bsd-arc4random.c]
2787 [openbsd-compat/bsd-closefrom.c openbsd-compat/bsd-cygwin_util.c]
2788 [openbsd-compat/bsd-getpeereid.c openbsd-compat/bsd-misc.c]
2789 [openbsd-compat/bsd-nextstep.c openbsd-compat/bsd-snprintf.c]
2790 [openbsd-compat/bsd-waitpid.c openbsd-compat/fake-rfc2553.c]
2791 RCSID() can die
2792 - deraadt@cvs.openbsd.org 2006/03/19 18:53:12
2793 [kex.h myproposal.h]
2794 spacing
2795 - djm@cvs.openbsd.org 2006/03/20 04:07:22
2796 [auth2-gss.c]
2797 GSSAPI related leaks detected by Coverity via elad AT netbsd.org;
2798 reviewed by simon AT sxw.org.uk; deraadt@ ok
2799 - djm@cvs.openbsd.org 2006/03/20 04:07:49
2800 [gss-genr.c]
2801 more GSSAPI related leaks detected by Coverity via elad AT netbsd.org;
2802 reviewed by simon AT sxw.org.uk; deraadt@ ok
2803 - djm@cvs.openbsd.org 2006/03/20 04:08:18
2804 [gss-serv.c]
2805 last lot of GSSAPI related leaks detected by Coverity via
2806 elad AT netbsd.org; reviewed by simon AT sxw.org.uk; deraadt@ ok
2807 - deraadt@cvs.openbsd.org 2006/03/20 18:14:02
2808 [monitor_wrap.h sshpty.h]
2809 sprinkle u_int throughout pty subsystem, ok markus
2810 - deraadt@cvs.openbsd.org 2006/03/20 18:26:55
2811 [session.h]
2812 annoying spacing fixes getting in the way of real diffs
2813 - deraadt@cvs.openbsd.org 2006/03/20 18:41:43
2814 [dns.c]
2815 cast xstrdup to propert u_char *
2816 - jakob@cvs.openbsd.org 2006/03/22 21:16:24
2817 [ssh.1]
2818 simplify SSHFP example; ok jmc@
2819 - djm@cvs.openbsd.org 2006/03/22 21:27:15
2820 [deattack.c deattack.h]
2821 remove IV support from the CRC attack detector, OpenSSH has never used
2822 it - it only applied to IDEA-CFB, which we don't support.
2823 prompted by NetBSD Coverity report via elad AT netbsd.org;
2824 feedback markus@ "nuke it" deraadt@
2825
282620060318
2827 - (djm) [auth-pam.c] Fix memleak in error path, from Coverity via
2828 elad AT NetBSD.org
2829 - (dtucker) [openbsd-compat/bsd-snprintf.c] Bug #1173: make fmtint() take
2830 a LLONG rather than a long. Fixes scp'ing of large files on platforms
2831 with missing/broken snprintfs. Patch from e.borovac at bom.gov.au.
2832
283320060316
2834 - (dtucker) [entropy.c] Add headers for WIFEXITED and friends.
2835 - (dtucker) [configure.ac md-sha256.c] NetBSD has sha2.h in
2836 /usr/include/crypto. Hint from djm@.
2837 - (tim) [kex.c myproposal.h md-sha256.c openbsd-compat/sha2.c,h]
2838 Disable sha256 when openssl < 0.9.7. Patch from djm@.
2839 - (djm) [kex.c] Slightly more clean deactivation of dhgex-sha256 on old
2840 OpenSSL; ok tim
2841
284220060315
2843 - (djm) OpenBSD CVS Sync:
2844 - msf@cvs.openbsd.org 2006/02/06 15:54:07
2845 [ssh.1]
2846 - typo fix
2847 ok jmc@
2848 - jmc@cvs.openbsd.org 2006/02/06 21:44:47
2849 [ssh.1]
2850 make this a little less ambiguous...
2851 - stevesk@cvs.openbsd.org 2006/02/07 01:08:04
2852 [auth-rhosts.c includes.h]
2853 move #include <netgroup.h> out of includes.h; ok markus@
2854 - stevesk@cvs.openbsd.org 2006/02/07 01:18:09
2855 [includes.h ssh-agent.c ssh-keyscan.c sshconnect2.c]
2856 move #include <sys/queue.h> out of includes.h; ok markus@
2857 - stevesk@cvs.openbsd.org 2006/02/07 01:42:00
2858 [channels.c clientloop.c clientloop.h includes.h packet.h]
2859 [serverloop.c sshpty.c sshpty.h sshtty.c ttymodes.c]
2860 move #include <termios.h> out of includes.h; ok markus@
2861 - stevesk@cvs.openbsd.org 2006/02/07 01:52:50
2862 [sshtty.c]
2863 "log.h" not needed
2864 - stevesk@cvs.openbsd.org 2006/02/07 03:47:05
2865 [hostfile.c]
2866 "packet.h" not needed
2867 - stevesk@cvs.openbsd.org 2006/02/07 03:59:20
2868 [deattack.c]
2869 duplicate #include
2870 - stevesk@cvs.openbsd.org 2006/02/08 12:15:27
2871 [auth.c clientloop.c includes.h misc.c monitor.c readpass.c]
2872 [session.c sftp.c ssh-agent.c ssh-keysign.c ssh.c sshconnect.c]
2873 [sshd.c sshpty.c]
2874 move #include <paths.h> out of includes.h; ok markus@
2875 - stevesk@cvs.openbsd.org 2006/02/08 12:32:49
2876 [includes.h misc.c]
2877 move #include <netinet/tcp.h> out of includes.h; ok markus@
2878 - stevesk@cvs.openbsd.org 2006/02/08 13:15:44
2879 [gss-serv.c monitor.c]
2880 small KNF
2881 - stevesk@cvs.openbsd.org 2006/02/08 14:16:59
2882 [sshconnect.c]
2883 <openssl/bn.h> not needed
2884 - stevesk@cvs.openbsd.org 2006/02/08 14:31:30
2885 [includes.h ssh-agent.c ssh-keyscan.c ssh.c]
2886 move #include <sys/resource.h> out of includes.h; ok markus@
2887 - stevesk@cvs.openbsd.org 2006/02/08 14:38:18
2888 [includes.h packet.c]
2889 move #include <netinet/in_systm.h> and <netinet/ip.h> out of
2890 includes.h; ok markus@
2891 - stevesk@cvs.openbsd.org 2006/02/08 23:51:24
2892 [includes.h scp.c sftp-glob.c sftp-server.c]
2893 move #include <dirent.h> out of includes.h; ok markus@
2894 - stevesk@cvs.openbsd.org 2006/02/09 00:32:07
2895 [includes.h]
2896 #include <sys/endian.h> not needed; ok djm@
2897 NB. ID Sync only - we still need this (but it may move later)
2898 - jmc@cvs.openbsd.org 2006/02/09 10:10:47
2899 [sshd.8]
2900 - move some text into a CAVEATS section
2901 - merge the COMMAND EXECUTION... section into AUTHENTICATION
2902 - stevesk@cvs.openbsd.org 2006/02/10 00:27:13
2903 [channels.c clientloop.c includes.h misc.c progressmeter.c sftp.c]
2904 [ssh.c sshd.c sshpty.c]
2905 move #include <sys/ioctl.h> out of includes.h; ok markus@
2906 - stevesk@cvs.openbsd.org 2006/02/10 01:44:27
2907 [includes.h monitor.c readpass.c scp.c serverloop.c session.c\7f]
2908 [sftp.c sshconnect.c sshconnect2.c sshd.c]
2909 move #include <sys/wait.h> out of includes.h; ok markus@
2910 - otto@cvs.openbsd.org 2006/02/11 19:31:18
2911 [atomicio.c]
2912 type correctness; from Ray Lai in PR 5011; ok millert@
2913 - djm@cvs.openbsd.org 2006/02/12 06:45:34
2914 [ssh.c ssh_config.5]
2915 add a %l expansion code to the ControlPath, which is filled in with the
2916 local hostname at runtime. Requested by henning@ to avoid some problems
2917 with /home on NFS; ok dtucker@
2918 - djm@cvs.openbsd.org 2006/02/12 10:44:18
2919 [readconf.c]
2920 raise error when the user specifies a RekeyLimit that is smaller than 16
2921 (the smallest of our cipher's blocksize) or big enough to cause integer
2922 wraparound; ok & feedback dtucker@
2923 - jmc@cvs.openbsd.org 2006/02/12 10:49:44
2924 [ssh_config.5]
2925 slight rewording; ok djm
2926 - jmc@cvs.openbsd.org 2006/02/12 10:52:41
2927 [sshd.8]
2928 rework the description of authorized_keys a little;
2929 - jmc@cvs.openbsd.org 2006/02/12 17:57:19
2930 [sshd.8]
2931 sort the list of options permissable w/ authorized_keys;
2932 ok djm dtucker
2933 - jmc@cvs.openbsd.org 2006/02/13 10:16:39
2934 [sshd.8]
2935 no need to subsection the authorized_keys examples - instead, convert
2936 this to look like an actual file. also use proto 2 keys, and use IETF
2937 example addresses;
2938 - jmc@cvs.openbsd.org 2006/02/13 10:21:25
2939 [sshd.8]
2940 small tweaks for the ssh_known_hosts section;
2941 - jmc@cvs.openbsd.org 2006/02/13 11:02:26
2942 [sshd.8]
2943 turn this into an example ssh_known_hosts file; ok djm
2944 - jmc@cvs.openbsd.org 2006/02/13 11:08:43
2945 [sshd.8]
2946 - avoid nasty line split
2947 - `*' does not need to be escaped
2948 - jmc@cvs.openbsd.org 2006/02/13 11:27:25
2949 [sshd.8]
2950 sort FILES and use a -compact list;
2951 - david@cvs.openbsd.org 2006/02/15 05:08:24
2952 [sftp-client.c]
2953 typo in comment; ok djm@
2954 - jmc@cvs.openbsd.org 2006/02/15 16:53:20
2955 [ssh.1]
2956 remove the IETF draft references and replace them with some updated RFCs;
2957 - jmc@cvs.openbsd.org 2006/02/15 16:55:33
2958 [sshd.8]
2959 remove ietf draft references; RFC list now maintained in ssh.1;
2960 - jmc@cvs.openbsd.org 2006/02/16 09:05:34
2961 [sshd.8]
2962 sync some of the FILES entries w/ ssh.1;
2963 - jmc@cvs.openbsd.org 2006/02/19 19:52:10
2964 [sshd.8]
2965 move the sshrc stuff out of FILES, and into its own section:
2966 FILES is not a good place to document how stuff works;
2967 - jmc@cvs.openbsd.org 2006/02/19 20:02:17
2968 [sshd.8]
2969 sync the (s)hosts.equiv FILES entries w/ those from ssh.1;
2970 - jmc@cvs.openbsd.org 2006/02/19 20:05:00
2971 [sshd.8]
2972 grammar;
2973 - jmc@cvs.openbsd.org 2006/02/19 20:12:25
2974 [ssh_config.5]
2975 add some vertical space;
2976 - stevesk@cvs.openbsd.org 2006/02/20 16:36:15
2977 [authfd.c channels.c includes.h session.c ssh-agent.c ssh.c]
2978 move #include <sys/un.h> out of includes.h; ok djm@
2979 - stevesk@cvs.openbsd.org 2006/02/20 17:02:44
2980 [clientloop.c includes.h monitor.c progressmeter.c scp.c]
2981 [serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c]
2982 move #include <signal.h> out of includes.h; ok markus@
2983 - stevesk@cvs.openbsd.org 2006/02/20 17:19:54
2984 [auth-rhosts.c auth-rsa.c auth.c auth2-none.c auth2-pubkey.c]
2985 [authfile.c clientloop.c includes.h readconf.c scp.c session.c]
2986 [sftp-client.c sftp-common.c sftp-common.h sftp-glob.c]
2987 [sftp-server.c sftp.c ssh-add.c ssh-keygen.c ssh.c sshconnect.c]
2988 [sshconnect2.c sshd.c sshpty.c]
2989 move #include <sys/stat.h> out of includes.h; ok markus@
2990 - stevesk@cvs.openbsd.org 2006/02/22 00:04:45
2991 [canohost.c clientloop.c includes.h match.c readconf.c scp.c ssh.c]
2992 [sshconnect.c]
2993 move #include <ctype.h> out of includes.h; ok djm@
2994 - jmc@cvs.openbsd.org 2006/02/24 10:25:14
2995 [ssh_config.5]
2996 add section on patterns;
2997 from dtucker + myself
2998 - jmc@cvs.openbsd.org 2006/02/24 10:33:54
2999 [sshd_config.5]
3000 signpost to PATTERNS;
3001 - jmc@cvs.openbsd.org 2006/02/24 10:37:07
3002 [ssh_config.5]
3003 tidy up the refs to PATTERNS;
3004 - jmc@cvs.openbsd.org 2006/02/24 10:39:52
3005 [sshd.8]
3006 signpost to PATTERNS section;
3007 - jmc@cvs.openbsd.org 2006/02/24 20:22:16
3008 [ssh-keysign.8 ssh_config.5 sshd_config.5]
3009 some consistency fixes;
3010 - jmc@cvs.openbsd.org 2006/02/24 20:31:31
3011 [ssh.1 ssh_config.5 sshd.8 sshd_config.5]
3012 more consistency fixes;
3013 - jmc@cvs.openbsd.org 2006/02/24 23:20:07
3014 [ssh_config.5]
3015 some grammar/wording fixes;
3016 - jmc@cvs.openbsd.org 2006/02/24 23:43:57
3017 [sshd_config.5]
3018 some grammar/wording fixes;
3019 - jmc@cvs.openbsd.org 2006/02/24 23:51:17
3020 [sshd_config.5]
3021 oops - bits i missed;
3022 - jmc@cvs.openbsd.org 2006/02/25 12:26:17
3023 [ssh_config.5]
3024 document the possible values for KbdInteractiveDevices;
3025 help/ok dtucker
3026 - jmc@cvs.openbsd.org 2006/02/25 12:28:34
3027 [sshd_config.5]
3028 document the order in which allow/deny directives are processed;
3029 help/ok dtucker
3030 - jmc@cvs.openbsd.org 2006/02/26 17:17:18
3031 [ssh_config.5]
3032 move PATTERNS to the end of the main body; requested by dtucker
3033 - jmc@cvs.openbsd.org 2006/02/26 18:01:13
3034 [sshd_config.5]
3035 subsection is pointless here;
3036 - jmc@cvs.openbsd.org 2006/02/26 18:03:10
3037 [ssh_config.5]
3038 comma;
3039 - djm@cvs.openbsd.org 2006/02/28 01:10:21
3040 [session.c]
3041 fix logout recording when privilege separation is disabled, analysis and
3042 patch from vinschen at redhat.com; tested by dtucker@ ok deraadt@
3043 NB. ID sync only - patch already in portable
3044 - djm@cvs.openbsd.org 2006/03/04 04:12:58
3045 [serverloop.c]
3046 move a debug() outside of a signal handler; ok markus@ a little while back
3047 - djm@cvs.openbsd.org 2006/03/12 04:23:07
3048 [ssh.c]
3049 knf nit
3050 - djm@cvs.openbsd.org 2006/03/13 08:16:00
3051 [sshd.c]
3052 don't log that we are listening on a socket before the listen() call
3053 actually succeeds, bz #1162 reported by Senthil Kumar; ok dtucker@
3054 - dtucker@cvs.openbsd.org 2006/03/13 08:33:00
3055 [packet.c]
3056 Set TCP_NODELAY for all connections not just "interactive" ones. Fixes
3057 poor performance and protocol stalls under some network conditions (mindrot
3058 bugs #556 and #981). Patch originally from markus@, ok djm@
3059 - dtucker@cvs.openbsd.org 2006/03/13 08:43:16
3060 [ssh-keygen.c]
3061 Make ssh-keygen handle CR and CRLF line termination when converting IETF
3062 format keys, in adition to vanilla LF. mindrot #1157, tested by Chris
3063 Pepper, ok djm@
3064 - dtucker@cvs.openbsd.org 2006/03/13 10:14:29
3065 [misc.c ssh_config.5 sshd_config.5]
3066 Allow config directives to contain whitespace by surrounding them by double
3067 quotes. mindrot #482, man page help from jmc@, ok djm@
3068 - dtucker@cvs.openbsd.org 2006/03/13 10:26:52
3069 [authfile.c authfile.h ssh-add.c]
3070 Make ssh-add check file permissions before attempting to load private
3071 key files multiple times; it will fail anyway and this prevents confusing
3072 multiple prompts and warnings. mindrot #1138, ok djm@
3073 - djm@cvs.openbsd.org 2006/03/14 00:15:39
3074 [canohost.c]
3075 log the originating address and not just the name when a reverse
3076 mapping check fails, requested by linux AT linuon.com
3077 - markus@cvs.openbsd.org 2006/03/14 16:32:48
3078 [ssh_config.5 sshd_config.5]
3079 *AliveCountMax applies to protcol v2 only; ok dtucker, djm
3080 - djm@cvs.openbsd.org 2006/03/07 09:07:40
3081 [kex.c kex.h monitor.c myproposal.h ssh-keyscan.c sshconnect2.c sshd.c]
3082 Implement the diffie-hellman-group-exchange-sha256 key exchange method
3083 using the SHA256 code in libc (and wrapper to make it into an OpenSSL
3084 EVP), interop tested against CVS PuTTY
3085 NB. no portability bits committed yet
3086 - (djm) [configure.ac defines.h kex.c md-sha256.c]
3087 [openbsd-compat/sha2.h openbsd-compat/openbsd-compat.h]
3088 [openbsd-compat/sha2.c] First stab at portability glue for SHA256
3089 KEX support, should work with libc SHA256 support or OpenSSL
3090 EVP_sha256 if present
3091 - (djm) [includes.h] Restore accidentally dropped netinet/in.h
3092 - (djm) [Makefile.in openbsd-compat/Makefile.in] Add added files
3093 - (djm) [md-sha256.c configure.ac] md-sha256.c needs sha2.h if present
3094 - (djm) [regress/.cvsignore] Ignore Makefile here
3095 - (djm) [loginrec.c] Need stat.h
3096 - (djm) [openbsd-compat/sha2.h] Avoid include macro clash with
3097 system sha2.h
3098 - (djm) [ssh-rand-helper.c] Needs a bunch of headers
3099 - (djm) [ssh-agent.c] Restore dropped stat.h
3100 - (djm) [openbsd-compat/sha2.h openbsd-compat/sha2.c] Comment out
3101 SHA384, which we don't need and doesn't compile without tweaks
3102 - (djm) [auth-pam.c clientloop.c includes.h monitor.c session.c]
3103 [sftp-client.c ssh-keysign.c ssh.c sshconnect.c sshconnect2.c]
3104 [sshd.c openbsd-compat/bsd-misc.c openbsd-compat/bsd-openpty.c]
3105 [openbsd-compat/glob.c openbsd-compat/mktemp.c]
3106 [openbsd-compat/readpassphrase.c] Lots of include fixes for
3107 OpenSolaris
3108 - (tim) [includes.h] put sys/stat.h back in to quiet some "macro redefined:"
3109 - (tim) [openssh/sshpty.c openssh/openbsd-compat/port-tun.c] put in some
3110 includes removed from includes.h
3111 - (dtucker) [configure.ac] Fix glob test conversion to AC_TRY_COMPILE
3112 - (djm) [includes.h] Put back paths.h, it is needed in defines.h
3113 - (dtucker) [openbsd-compat/openbsd-compat.h] AIX (at least) needs
3114 sys/ioctl.h for struct winsize.
3115 - (dtucker) [configure.ac] login_cap.h requires sys/types.h on NetBSD.
3116
311720060313
3118 - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
3119 since not all platforms support it. Instead, use internal equivalent while
3120 computing LLONG_MIN and LLONG_MAX. Remove special case for alpha-dec-osf*
3121 as it's no longer required. Tested by Bernhard Simon, ok djm@
3122
312320060304
3124 - (dtucker) [contrib/cygwin/ssh-host-config] Require use of lastlog as a
3125 file rather than directory, required as Cygwin will be importing lastlog(1).
3126 Also tightens up permissions on the file. Patch from vinschen@redhat.com.
3127 - (dtucker) [gss-serv-krb5.c] Bug #1166: Correct #ifdefs for gssapi_krb5.h
3128 includes. Patch from gentoo.riverrat at gmail.com.
3129
313020060226
3131 - (dtucker) [configure.ac] Bug #1156: QNX apparently needs SSHD_ACQUIRES_CTTY
3132 patch from kraai at ftbfs.org.
3133
313420060223
3135 - (dtucker) [sshd_config sshd_config.5] Update UsePAM to reflect current
3136 reality. Pointed out by tryponraj at gmail.com.
3137
313820060222
3139 - (dtucker) [openbsd-compat/openssl-compat.{c,h}] Minor tidy up: only
3140 compile in compat code if required.
3141
314220060221
3143 - (dtucker) [openbsd-compat/openssl-compat.h] Prevent warning about
3144 redefinition of SSLeay_add_all_algorithms.
3145
314620060220
3147 - (dtucker) [INSTALL configure.ac openbsd-compat/openssl-compat.{c,h}]
3148 Add optional enabling of OpenSSL's (hardware) Engine support, via
3149 configure --with-ssl-engine. Based in part on a diff by michal at
3150 logix.cz.
3151
315220060219
3153 - (dtucker) [Makefile.in configure.ac, added openbsd-compat/regress/]
3154 Add first attempt at regress tests for compat library. ok djm@
3155
315620060214
3157 - (tim) [buildpkg.sh.in] Make the names consistent.
3158 s/pkg_post_make_install_fixes.sh/pkg-post-make-install-fixes.sh/ OK dtucker@
3159
316020060212
3161 - (dtucker) [openbsd-compat/bsd-cygwin_util.c] Make loop counter unsigned
3162 to silence compiler warning, from vinschen at redhat.com.
3163 - (tim) [configure.ac] Bug #1149. Disable /etc/default/login check for QNX.
3164 - (dtucker) [README version.h contrib/caldera/openssh.spec
3165 contrib/redhat/openssh.spec contrib/suse/openssh.spec] Bump version
3166 strings to match 4.3p2 release.
3167
316820060208
3169 - (tim) [session.c] Logout records were not updated on systems with
3170 post auth privsep disabled due to bug 1086 changes. Analysis and patch
3171 by vinschen at redhat.com. OK tim@, dtucker@.
3172 - (dtucker) [configure.ac] Typo in Ultrix and NewsOS sections (NEED_SETPRGP
3173 -> NEED_SETPGRP), reported by Bernhard Simon. ok tim@
3174
317520060206
3176 - (tim) [configure.ac] Remove unnecessary tests for net/if.h and
3177 netinet/in_systm.h. OK dtucker@.
3178
317920060205
3180 - (tim) [configure.ac] Add AC_REVISION. Add sys/time.h to lastlog.h test
3181 for Solaris. OK dtucker@.
3182 - (tim) [configure.ac] Bug #1149. Changes in QNX section only. Patch by
3183 kraai at ftbfs.org.
3184
318520060203
3186 - (tim) [configure.ac] test for egrep (AC_PROG_EGREP) before first
3187 AC_CHECK_HEADERS test. Without it, if AC_CHECK_HEADERS is first run
3188 by a platform specific check, builtin standard includes tests will be
3189 skipped on the other platforms.
3190 Analysis and suggestion by vinschen at redhat.com, patch by dtucker@.
3191 OK tim@, djm@.
3192
319320060202
3194 - (dtucker) [configure.ac] Bug #1148: Fix "crippled AES" test so that it
3195 works with picky compilers. Patch from alex.kiernan at thus.net.
3196
319720060201
3198 - (djm) [regress/test-exec.sh] Try 'logname' as well as 'whoami' to
3199 determine the user's login name - needed for regress tests on Solaris
3200 10 and OpenSolaris
3201 - (djm) OpenBSD CVS Sync
3202 - jmc@cvs.openbsd.org 2006/02/01 09:06:50
3203 [sshd.8]
3204 - merge sections on protocols 1 and 2 into a single section
3205 - remove configuration file section
3206 ok markus
3207 - jmc@cvs.openbsd.org 2006/02/01 09:11:41
3208 [sshd.8]
3209 small tweak;
3210 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
3211 [contrib/suse/openssh.spec] Update versions ahead of release
3212 - markus@cvs.openbsd.org 2006/02/01 11:27:22
3213 [version.h]
3214 openssh 4.3
3215 - (djm) Release OpenSSH 4.3p1
3216
321720060131
3218 - (djm) OpenBSD CVS Sync
3219 - jmc@cvs.openbsd.org 2006/01/20 11:21:45
3220 [ssh_config.5]
3221 - word change, agreed w/ markus
3222 - consistency fixes
3223 - jmc@cvs.openbsd.org 2006/01/25 09:04:34
3224 [sshd.8]
3225 move the options description up the page, and a few additional tweaks
3226 whilst in here;
3227 ok markus
3228 - jmc@cvs.openbsd.org 2006/01/25 09:07:22
3229 [sshd.8]
3230 move subsections to full sections;
3231 - jmc@cvs.openbsd.org 2006/01/26 08:47:56
3232 [ssh.1]
3233 add a section on verifying host keys in dns;
3234 written with a lot of help from jakob;
3235 feedback dtucker/markus;
3236 ok markus
3237 - reyk@cvs.openbsd.org 2006/01/30 12:22:22
3238 [channels.c]
3239 mark channel as write failed or dead instead of read failed on error
3240 of the channel output filter.
3241 ok markus@
3242 - jmc@cvs.openbsd.org 2006/01/30 13:37:49
3243 [ssh.1]
3244 remove an incorrect sentence;
3245 reported by roumen petrov;
3246 ok djm markus
3247 - djm@cvs.openbsd.org 2006/01/31 10:19:02
3248 [misc.c misc.h scp.c sftp.c]
3249 fix local arbitrary command execution vulnerability on local/local and
3250 remote/remote copies (CVE-2006-0225, bz #1094), patch by
3251 t8m AT centrum.cz, polished by dtucker@ and myself; ok markus@
3252 - djm@cvs.openbsd.org 2006/01/31 10:35:43
3253 [scp.c]
3254 "scp a b c" shouldn't clobber "c" when it is not a directory, report and
3255 fix from biorn@; ok markus@
3256 - (djm) Sync regress tests to OpenBSD:
3257 - dtucker@cvs.openbsd.org 2005/03/10 10:20:39
3258 [regress/forwarding.sh]
3259 Regress test for ClearAllForwardings (bz #994); ok markus@
3260 - dtucker@cvs.openbsd.org 2005/04/25 09:54:09
3261 [regress/multiplex.sh]
3262 Don't call cleanup in multiplex as test-exec will cleanup anyway
3263 found by tim@, ok djm@
3264 NB. ID sync only, we already had this
3265 - djm@cvs.openbsd.org 2005/05/20 23:14:15
3266 [regress/test-exec.sh]
3267 force addressfamily=inet for tests, unbreaking dynamic-forward regress for
3268 recently committed nc SOCKS5 changes
3269 - djm@cvs.openbsd.org 2005/05/24 04:10:54
3270 [regress/try-ciphers.sh]
3271 oops, new arcfour modes here too
3272 - markus@cvs.openbsd.org 2005/06/30 11:02:37
3273 [regress/scp.sh]
3274 allow SUDO=sudo; from Alexander Bluhm
3275 - grunk@cvs.openbsd.org 2005/11/14 21:25:56
3276 [regress/agent-getpeereid.sh]
3277 all other scripts in this dir use $SUDO, not 'sudo', so pull this even
3278 ok markus@
3279 - dtucker@cvs.openbsd.org 2005/12/14 04:36:39
3280 [regress/scp-ssh-wrapper.sh]
3281 Fix assumption about how many args scp will pass; ok djm@
3282 NB. ID sync only, we already had this
3283 - djm@cvs.openbsd.org 2006/01/27 06:49:21
3284 [scp.sh]
3285 regress test for local to local scp copies; ok dtucker@
3286 - djm@cvs.openbsd.org 2006/01/31 10:23:23
3287 [scp.sh]
3288 regression test for CVE-2006-0225 written by dtucker@
3289 - djm@cvs.openbsd.org 2006/01/31 10:36:33
3290 [scp.sh]
3291 regress test for "scp a b c" where "c" is not a directory
3292
329320060129
3294 - (dtucker) [configure.ac opensshd.init.in] Bug #1144: Use /bin/sh for the
3295 opensshd.init script interpretter if /sbin/sh does not exist. ok tim@
3296
329720060120
3298 - (dtucker) OpenBSD CVS Sync
3299 - jmc@cvs.openbsd.org 2006/01/15 17:37:05
3300 [ssh.1]
3301 correction from deraadt
3302 - jmc@cvs.openbsd.org 2006/01/18 10:53:29
3303 [ssh.1]
3304 add a section on ssh-based vpn, based on reyk's README.tun;
3305 - dtucker@cvs.openbsd.org 2006/01/20 00:14:55
3306 [scp.1 ssh.1 ssh_config.5 sftp.1]
3307 Document RekeyLimit. Based on patch from jan.iven at cern.ch from mindrot
3308 #1056 with feedback from jmc, djm and markus; ok jmc@ djm@
3309
331020060114
3311 - (djm) OpenBSD CVS Sync
3312 - jmc@cvs.openbsd.org 2006/01/06 13:27:32
3313 [ssh.1]
3314 weed out some duplicate info in the known_hosts FILES entries;
3315 ok djm
3316 - jmc@cvs.openbsd.org 2006/01/06 13:29:10
3317 [ssh.1]
3318 final round of whacking FILES for duplicate info, and some consistency
3319 fixes;
3320 ok djm
3321 - jmc@cvs.openbsd.org 2006/01/12 14:44:12
3322 [ssh.1]
3323 split sections on tcp and x11 forwarding into two sections.
3324 add an example in the tcp section, based on sth i wrote for ssh faq;
3325 help + ok: djm markus dtucker
3326 - jmc@cvs.openbsd.org 2006/01/12 18:48:48
3327 [ssh.1]
3328 refer to `TCP' rather than `TCP/IP' in the context of connection
3329 forwarding;
3330 ok markus
3331 - jmc@cvs.openbsd.org 2006/01/12 22:20:00
3332 [sshd.8]
3333 refer to TCP forwarding, rather than TCP/IP forwarding;
3334 - jmc@cvs.openbsd.org 2006/01/12 22:26:02
3335 [ssh_config.5]
3336 refer to TCP forwarding, rather than TCP/IP forwarding;
3337 - jmc@cvs.openbsd.org 2006/01/12 22:34:12
3338 [ssh.1]
3339 back out a sentence - AUTHENTICATION already documents this;
3340
334120060109
3342 - (dtucker) [contrib/cygwin/ssh-host-config] Make sshd service depend on
3343 tcpip service so it's always started after IP is up. Patch from
3344 vinschen at redhat.com.
3345
334620060106
3347 - (djm) OpenBSD CVS Sync
3348 - jmc@cvs.openbsd.org 2006/01/03 16:31:10
3349 [ssh.1]
3350 move FILES to a -compact list, and make each files an item in that list.
3351 this avoids nastly line wrap when we have long pathnames, and treats
3352 each file as a separate item;
3353 remove the .Pa too, since it is useless.
3354 - jmc@cvs.openbsd.org 2006/01/03 16:35:30
3355 [ssh.1]
3356 use a larger width for the ENVIRONMENT list;
3357 - jmc@cvs.openbsd.org 2006/01/03 16:52:36
3358 [ssh.1]
3359 put FILES in some sort of order: sort by pathname
3360 - jmc@cvs.openbsd.org 2006/01/03 16:55:18
3361 [ssh.1]
3362 tweak the description of ~/.ssh/environment
3363 - jmc@cvs.openbsd.org 2006/01/04 18:42:46
3364 [ssh.1]
3365 chop out some duplication in the .{r,s}hosts/{h,sh}osts.equiv FILES
3366 entries;
3367 ok markus
3368 - jmc@cvs.openbsd.org 2006/01/04 18:45:01
3369 [ssh.1]
3370 remove .Xr's to rsh(1) and telnet(1): they are hardly needed;
3371 - jmc@cvs.openbsd.org 2006/01/04 19:40:24
3372 [ssh.1]
3373 +.Xr ssh-keyscan 1 ,
3374 - jmc@cvs.openbsd.org 2006/01/04 19:50:09
3375 [ssh.1]
3376 -.Xr gzip 1 ,
3377 - djm@cvs.openbsd.org 2006/01/05 23:43:53
3378 [misc.c]
3379 check that stdio file descriptors are actually closed before clobbering
3380 them in sanitise_stdfd(). problems occurred when a lower numbered fd was
3381 closed, but higher ones weren't. spotted by, and patch tested by
3382 Frédéric Olivié
3383
338420060103
3385 - (djm) [channels.c] clean up harmless merge error, from reyk@
3386
338720060103
3388 - (djm) OpenBSD CVS Sync
3389 - jmc@cvs.openbsd.org 2006/01/02 17:09:49
3390 [ssh_config.5 sshd_config.5]
3391 some corrections from michael knudsen;
3392
339320060102
3394 - (djm) [README.tun] Add README.tun, missed during sync of tun(4) support
3395 - (djm) OpenBSD CVS Sync
3396 - jmc@cvs.openbsd.org 2005/12/31 10:46:17
3397 [ssh.1]
3398 merge the "LOGIN SESSION AND REMOTE EXECUTION" and "SERVER
3399 AUTHENTICATION" sections into "AUTHENTICATION";
3400 some rewording done to make the text read better, plus some
3401 improvements from djm;
3402 ok djm
3403 - jmc@cvs.openbsd.org 2005/12/31 13:44:04
3404 [ssh.1]
3405 clean up ENVIRONMENT a little;
3406 - jmc@cvs.openbsd.org 2005/12/31 13:45:19
3407 [ssh.1]
3408 .Nm does not require an argument;
3409 - stevesk@cvs.openbsd.org 2006/01/01 08:59:27
3410 [includes.h misc.c]
3411 move <net/if.h>; ok djm@
3412 - stevesk@cvs.openbsd.org 2006/01/01 10:08:48
3413 [misc.c]
3414 no trailing "\n" for debug()
3415 - djm@cvs.openbsd.org 2006/01/02 01:20:31
3416 [sftp-client.c sftp-common.h sftp-server.c]
3417 use a common max. packet length, no binary change
3418 - reyk@cvs.openbsd.org 2006/01/02 07:53:44
3419 [misc.c]
3420 clarify tun(4) opening - set the mode and bring the interface up. also
3421 (re)sets the tun(4) layer 2 LINK0 flag for existing tunnel interfaces.
3422 suggested and ok by djm@
3423 - jmc@cvs.openbsd.org 2006/01/02 12:31:06
3424 [ssh.1]
3425 start to cut some duplicate info from FILES;
3426 help/ok djm
3427
342820060101
3429 - (djm) [Makefile.in configure.ac includes.h misc.c]
3430 [openbsd-compat/port-tun.c openbsd-compat/port-tun.h] Add support
3431 for tunnel forwarding for FreeBSD and NetBSD. NetBSD's support is
3432 limited to IPv4 tunnels only, and most versions don't support the
3433 tap(4) device at all.
3434 - (djm) [configure.ac] Fix linux/if_tun.h test
3435 - (djm) [openbsd-compat/port-tun.c] Linux needs linux/if.h too
3436
343720051229
3438 - (djm) OpenBSD CVS Sync
3439 - stevesk@cvs.openbsd.org 2005/12/28 22:46:06
3440 [canohost.c channels.c clientloop.c]
3441 use 'break-in' for consistency; ok deraadt@ ok and input jmc@
3442 - reyk@cvs.openbsd.org 2005/12/30 15:56:37
3443 [channels.c channels.h clientloop.c]
3444 add channel output filter interface.
3445 ok djm@, suggested by markus@
3446 - jmc@cvs.openbsd.org 2005/12/30 16:59:00
3447 [sftp.1]
3448 do not suggest that interactive authentication will work
3449 with the -b flag;
3450 based on a diff from john l. scarfone;
3451 ok djm
3452 - stevesk@cvs.openbsd.org 2005/12/31 01:38:45
3453 [ssh.1]
3454 document -MM; ok djm@
3455 - (djm) [openbsd-compat/port-tun.c openbsd-compat/port-tun.h configure.ac]
3456 [serverloop.c ssh.c openbsd-compat/Makefile.in]
3457 [openbsd-compat/openbsd-compat.h] Implement tun(4) forwarding
3458 compatability support for Linux, diff from reyk@
3459 - (djm) [configure.ac] Disable Linux tun(4) compat code if linux/tun.h does
3460 not exist
3461 - (djm) [configure.ac] oops, make that linux/if_tun.h
3462
346320051229
3464 - (tim) [buildpkg.sh.in] grep for $SSHDUID instead of $SSHDGID on /etc/passwd
3465
346620051224
3467 - (djm) OpenBSD CVS Sync
3468 - jmc@cvs.openbsd.org 2005/12/20 21:59:43
3469 [ssh.1]
3470 merge the sections on protocols 1 and 2 into one section on
3471 authentication;
3472 feedback djm dtucker
3473 ok deraadt markus dtucker
3474 - jmc@cvs.openbsd.org 2005/12/20 22:02:50
3475 [ssh.1]
3476 .Ss -> .Sh: subsections have not made this page more readable
3477 - jmc@cvs.openbsd.org 2005/12/20 22:09:41
3478 [ssh.1]
3479 move info on ssh return values and config files up into the main
3480 description;
3481 - jmc@cvs.openbsd.org 2005/12/21 11:48:16
3482 [ssh.1]
3483 -L and -R descriptions are now above, not below, ~C description;
3484 - jmc@cvs.openbsd.org 2005/12/21 11:57:25
3485 [ssh.1]
3486 options now described `above', rather than `later';
3487 - jmc@cvs.openbsd.org 2005/12/21 12:53:31
3488 [ssh.1]
3489 -Y does X11 forwarding too;
3490 ok markus
3491 - stevesk@cvs.openbsd.org 2005/12/21 22:44:26
3492 [sshd.8]
3493 clarify precedence of -p, Port, ListenAddress; ok and help jmc@
3494 - jmc@cvs.openbsd.org 2005/12/22 10:31:40
3495 [ssh_config.5]
3496 put the description of "UsePrivilegedPort" in the correct place;
3497 - jmc@cvs.openbsd.org 2005/12/22 11:23:42
3498 [ssh.1]
3499 expand the description of -w somewhat;
3500 help/ok reyk
3501 - jmc@cvs.openbsd.org 2005/12/23 14:55:53
3502 [ssh.1]
3503 - sync the description of -e w/ synopsis
3504 - simplify the description of -I
3505 - note that -I is only available if support compiled in, and that it
3506 isn't by default
3507 feedback/ok djm@
3508 - jmc@cvs.openbsd.org 2005/12/23 23:46:23
3509 [ssh.1]
3510 less mark up for -c;
3511 - djm@cvs.openbsd.org 2005/12/24 02:27:41
3512 [session.c sshd.c]
3513 eliminate some code duplicated in privsep and non-privsep paths, and
3514 explicitly clear SIGALRM handler; "groovy" deraadt@
3515
351620051220
3517 - (dtucker) OpenBSD CVS Sync
3518 - reyk@cvs.openbsd.org 2005/12/13 15:03:02
3519 [serverloop.c]
3520 if forced_tun_device is not set, it is -1 and not SSH_TUNID_ANY
3521 - jmc@cvs.openbsd.org 2005/12/16 18:07:08
3522 [ssh.1]
3523 move the option descriptions up the page: start of a restructure;
3524 ok markus deraadt
3525 - jmc@cvs.openbsd.org 2005/12/16 18:08:53
3526 [ssh.1]
3527 simplify a sentence;
3528 - jmc@cvs.openbsd.org 2005/12/16 18:12:22
3529 [ssh.1]
3530 make the description of -c a little nicer;
3531 - jmc@cvs.openbsd.org 2005/12/16 18:14:40
3532 [ssh.1]
3533 signpost the protocol sections;
3534 - stevesk@cvs.openbsd.org 2005/12/17 21:13:05
3535 [ssh_config.5 session.c]
3536 spelling: fowarding, fowarded
3537 - stevesk@cvs.openbsd.org 2005/12/17 21:36:42
3538 [ssh_config.5]
3539 spelling: intented -> intended
3540 - dtucker@cvs.openbsd.org 2005/12/20 04:41:07
3541 [ssh.c]
3542 exit(255) on error to match description in ssh(1); bz #1137; ok deraadt@
3543
354420051219
3545 - (dtucker) [cipher-aes.c cipher-ctr.c cipher.c configure.ac
3546 openbsd-compat/openssl-compat.h] Check for and work around broken AES
3547 ciphers >128bit on (some) Solaris 10 systems. ok djm@
3548
354920051217
3550 - (dtucker) [defines.h] HP-UX system headers define "YES" and "NO" which
3551 scp.c also uses, so undef them here.
3552 - (dtucker) [configure.ac openbsd-compat/bsd-snprintf.c] Bug #1133: Our
3553 snprintf replacement can have a conflicting declaration in HP-UX's system
3554 headers (const vs. no const) so we now check for and work around it. Patch
3555 from the dynamic duo of David Leonard and Ted Percival.
3556
355720051214
3558 - (dtucker) OpenBSD CVS Sync (regress/)
3559 - dtucker@cvs.openbsd.org 2005/12/30 04:36:39
3560 [regress/scp-ssh-wrapper.sh]
3561 Fix assumption about how many args scp will pass; ok djm@
3562
356320051213
3564 - (djm) OpenBSD CVS Sync
3565 - jmc@cvs.openbsd.org 2005/11/30 11:18:27
3566 [ssh.1]
3567 timezone -> time zone
3568 - jmc@cvs.openbsd.org 2005/11/30 11:45:20
3569 [ssh.1]
3570 avoid ambiguities in describing TZ;
3571 ok djm@
3572 - reyk@cvs.openbsd.org 2005/12/06 22:38:28
3573 [auth-options.c auth-options.h channels.c channels.h clientloop.c]
3574 [misc.c misc.h readconf.c readconf.h scp.c servconf.c servconf.h]
3575 [serverloop.c sftp.c ssh.1 ssh.c ssh_config ssh_config.5 sshconnect.c]
3576 [sshconnect.h sshd.8 sshd_config sshd_config.5]
3577 Add support for tun(4) forwarding over OpenSSH, based on an idea and
3578 initial channel code bits by markus@. This is a simple and easy way to
3579 use OpenSSH for ad hoc virtual private network connections, e.g.
3580 administrative tunnels or secure wireless access. It's based on a new
3581 ssh channel and works similar to the existing TCP forwarding support,
3582 except that it depends on the tun(4) network interface on both ends of
3583 the connection for layer 2 or layer 3 tunneling. This diff also adds
3584 support for LocalCommand in the ssh(1) client.
3585 ok djm@, markus@, jmc@ (manpages), tested and discussed with others
3586 - djm@cvs.openbsd.org 2005/12/07 03:52:22
3587 [clientloop.c]
3588 reyk forgot to compile with -Werror (missing header)
3589 - jmc@cvs.openbsd.org 2005/12/07 10:52:13
3590 [ssh.1]
3591 - avoid line split in SYNOPSIS
3592 - add args to -w
3593 - kill trailing whitespace
3594 - jmc@cvs.openbsd.org 2005/12/08 14:59:44
3595 [ssh.1 ssh_config.5]
3596 make `!command' a little clearer;
3597 ok reyk
3598 - jmc@cvs.openbsd.org 2005/12/08 15:06:29
3599 [ssh_config.5]
3600 keep options in order;
3601 - reyk@cvs.openbsd.org 2005/12/08 18:34:11
3602 [auth-options.c includes.h misc.c misc.h readconf.c servconf.c]
3603 [serverloop.c ssh.c ssh_config.5 sshd_config.5 configure.ac]
3604 two changes to the new ssh tunnel support. this breaks compatibility
3605 with the initial commit but is required for a portable approach.
3606 - make the tunnel id u_int and platform friendly, use predefined types.
3607 - support configuration of layer 2 (ethernet) or layer 3
3608 (point-to-point, default) modes. configuration is done using the
3609 Tunnel (yes|point-to-point|ethernet|no) option is ssh_config(5) and
3610 restricted by the PermitTunnel (yes|point-to-point|ethernet|no) option
3611 in sshd_config(5).
3612 ok djm@, man page bits by jmc@
3613 - jmc@cvs.openbsd.org 2005/12/08 21:37:50
3614 [ssh_config.5]
3615 new sentence, new line;
3616 - markus@cvs.openbsd.org 2005/12/12 13:46:18
3617 [channels.c channels.h session.c]
3618 make sure protocol messages for internal channels are ignored.
3619 allow adjust messages for non-open channels; with and ok djm@
3620 - (djm) [misc.c] Disable tunnel code for non-OpenBSD (for now), enable
3621 again by providing a sys_tun_open() function for your platform and
3622 setting the CUSTOM_SYS_TUN_OPEN define. More work is required to match
3623 OpenBSD's tunnel protocol, which prepends the address family to the
3624 packet
3625
362620051201
3627 - (djm) [envpass.sh] Remove regress script that was accidentally committed
3628 in top level directory and not noticed for over a year :)
3629
363020051129
3631 - (tim) [ssh-keygen.c] Move DSA length test after setting default when
3632 bits == 0.
3633 - (dtucker) OpenBSD CVS Sync
3634 - dtucker@cvs.openbsd.org 2005/11/29 02:04:55
3635 [ssh-keygen.c]
3636 Populate default key sizes before checking them; from & ok tim@
3637 - (tim) [configure.ac sshd.8] Enable locked account check (a "*LK*" string)
3638 for UnixWare.
3639
364020051128
3641 - (dtucker) [regress/yes-head.sh] Work around breakage caused by some
3642 versions of GNU head. Based on patch from zappaman at buraphalinux.org
3643 - (dtucker) [includes.h] Bug #1122: __USE_GNU is a glibc internal macro, use
3644 _GNU_SOURCE instead. Patch from t8m at centrum.cz.
3645 - (dtucker) OpenBSD CVS Sync
3646 - dtucker@cvs.openbsd.org 2005/11/28 05:16:53
3647 [ssh-keygen.1 ssh-keygen.c]
3648 Enforce DSA key length of exactly 1024 bits to comply with FIPS-186-2,
3649 increase minumum RSA key size to 768 bits and update man page to reflect
3650 these. Patch originally bz#1119 (senthilkumar_sen at hotpop.com),
3651 ok djm@, grudging ok deraadt@.
3652 - dtucker@cvs.openbsd.org 2005/11/28 06:02:56
3653 [ssh-agent.1]
3654 Update agent socket path templates to reflect reality, correct xref for
3655 time formats. bz#1121, patch from openssh at roumenpetrov.info, ok djm@
3656
365720051126
3658 - (dtucker) [configure.ac] Bug #1126: AIX 5.2 and 5.3 (and presumably newer,
3659 when they're available) need the real UID set otherwise pam_chauthtok will
3660 set ADMCHG after changing the password, forcing the user to change it
3661 again immediately.
3662
366320051125
3664 - (dtucker) [configure.ac] Apply tim's fix for older systems where the
3665 resolver state in resolv.h is "state" not "__res_state". With slight
3666 modification by me to also work on old AIXes. ok djm@
3667 - (dtucker) [progressmeter.c scp.c sftp-server.c] Use correct casts for
3668 snprintf formats, fixes warnings on some 64 bit platforms. Patch from
3669 shaw at vranix.com, ok djm@
3670
367120051124
3672 - (djm) [configure.ac openbsd-compat/Makefile.in openbsd-compat/bsd-asprintf.c
3673 openbsd-compat/bsd-snprintf.c openbsd-compat/openbsd-compat.h] Add an
3674 asprintf() implementation, after syncing our {v,}snprintf() implementation
3675 with some extra fixes from Samba's version. With help and debugging from
3676 dtucker and tim; ok dtucker@
3677 - (dtucker) [configure.ac] Fix typos in comments and AC_SEARCH_LIB argument
3678 order in Reliant Unix block. Patch from johane at lysator.liu.se.
3679 - (dtucker) [regress/test-exec.sh] Use 1024 bit keys since we generate so
3680 many and use them only once. Speeds up testing on older/slower hardware.
3681
368220051122
3683 - (dtucker) OpenBSD CVS Sync
3684 - deraadt@cvs.openbsd.org 2005/11/12 18:37:59
3685 [ssh-add.c]
3686 space
3687 - deraadt@cvs.openbsd.org 2005/11/12 18:38:15
3688 [scp.c]
3689 avoid close(-1), as in rcp; ok cloder
3690 - millert@cvs.openbsd.org 2005/11/15 11:59:54
3691 [includes.h]
3692 Include sys/queue.h explicitly instead of assuming some other header
3693 will pull it in. At the moment it gets pulled in by sys/select.h
3694 (which ssh has no business including) via event.h. OK markus@
3695 (ID sync only in -portable)
3696 - dtucker@cvs.openbsd.org 2005/11/21 09:42:10
3697 [auth-krb5.c]
3698 Perform Kerberos calls even for invalid users to prevent leaking
3699 information about account validity. bz #975, patch originally from
3700 Senthil Kumar, sanity checked by Simon Wilkinson, tested by djm@, biorn@,
3701 ok markus@
3702 - dtucker@cvs.openbsd.org 2005/11/22 03:36:03
3703 [hostfile.c]
3704 Correct format/arguments to debug call; spotted by shaw at vranix.com
3705 ok djm@
3706 - (dtucker) [loginrec.c] Add casts to prevent compiler warnings, patch
3707 from shaw at vranix.com.
3708
370920051120
3710 - (dtucker) [openbsd-compat/openssl-compat.h] Add comment explaining what
3711 is going on.
3712
371320051112
3714 - (dtucker) [openbsd-compat/getrrsetbyname.c] Restore Portable-specific
3715 ifdef lost during sync. Spotted by tim@.
3716 - (dtucker) [openbsd-compat/{realpath.c,stroll.c,rresvport.c}] $OpenBSD tag.
3717 - (dtucker) [configure.ac] Use "$AWK" instead of "awk" in gcc version test.
3718 - (dtucker) [configure.ac] Remove duplicate utimes() check. ok djm@
3719 - (dtucker) [regress/reconfigure.sh] Fix potential race in the reconfigure
3720 test: if sshd takes too long to reconfigure the subsequent connection will
3721 fail. Zap pidfile before HUPing sshd which will rewrite it when it's ready.
3722
372320051110
3724 - (dtucker) [openbsd-compat/setenv.c] Merge changes for __findenv from
3725 OpenBSD getenv.c revs 1.4 - 1.8 (ANSIfication of arguments, removal of
3726 "register").
3727 - (dtucker) [openbsd-compat/setenv.c] Make __findenv static, remove
3728 unnecessary prototype.
3729 - (dtucker) [openbsd-compat/setenv.c] Sync changes from OpenBSD setenv.c
3730 revs 1.7 - 1.9.
3731 - (dtucker) [auth-krb5.c] Fix -Wsign-compare warning in non-Heimdal path.
3732 Patch from djm@.
3733 - (dtucker) [configure.ac] Disable pointer-sign warnings on gcc 4.0+
3734 since they're not useful right now. Patch from djm@.
3735 - (dtucker) [openbsd-compat/getgrouplist.c] Sync OpenBSD revs 1.10 - 1.2 (ANSI
3736 prototypes, removal of "register").
3737 - (dtucker) [openbsd-compat/strlcat.c] Sync OpenBSD revs 1.11 - 1.12 (removal
3738 of "register").
3739 - (dtucker) [openbsd-compat/{LOTS}] Move the "OPENBSD ORIGINAL" markers to
3740 after the copyright notices. Having them at the top next to the CVSIDs
3741 guarantees a conflict for each and every sync.
3742 - (dtucker) [openbsd-compat/strlcpy.c] Update from OpenBSD 1.8 -> 1.10.
3743 - (dtucker) [openbsd-compat/sigact.h] Add "OPENBSD ORIGINAL" marker.
3744 - (dtucker) [openbsd-compat/strmode.c] Update from OpenBSD 1.5 -> 1.7.
3745 Removal of rcsid, "whiteout" inode type.
3746 - (dtucker) [openbsd-compat/basename.c] Update from OpenBSD 1.11 -> 1.14.
3747 Removal of rcsid, will no longer strlcpy parts of the string.
3748 - (dtucker) [openbsd-compat/strtoll.c] Update from OpenBSD 1.4 -> 1.5.
3749 - (dtucker) [openbsd-compat/strtoul.c] Update from OpenBSD 1.5 -> 1.7.
3750 - (dtucker) [openbsd-compat/readpassphrase.c] Update from OpenBSD 1.16 -> 1.18.
3751 - (dtucker) [openbsd-compat/readpassphrase.h] Update from OpenBSD 1.3 -> 1.5.
3752 - (dtucker) [openbsd-compat/glob.c] Update from OpenBSD 1.22 -> 1.25.
3753 - (dtucker) [openbsd-compat/glob.h] Update from OpenBSD 1.8 -> 1.9.
3754 - (dtucker) [openbsd-compat/getcwd.c] Update from OpenBSD 1.9 -> 1.14.
3755 - (dtucker) [openbsd-compat/getcwd.c] Replace lstat with fstat to match up
3756 with OpenBSD code since we don't support platforms without fstat any more.
3757 - (dtucker) [openbsd-compat/inet_aton.c] Update from OpenBSD 1.7 -> 1.9.
3758 - (dtucker) [openbsd-compat/inet_ntoa.c] Update from OpenBSD 1.4 -> 1.6.
3759 - (dtucker) [openbsd-compat/inet_ntop.c] Update from OpenBSD 1.5 -> 1.7.
3760 - (dtucker) [openbsd-compat/daemon.c] Update from OpenBSD 1.5 -> 1.6.
3761 - (dtucker) [openbsd-compat/strsep.c] Update from OpenBSD 1.5 -> 1.6.
3762 - (dtucker) [openbsd-compat/daemon.c] Update from OpenBSD 1.10 -> 1.13.
3763 - (dtucker) [openbsd-compat/mktemp.c] Update from OpenBSD 1.17 -> 1.19.
3764 - (dtucker) [openbsd-compat/rresvport.c] Update from OpenBSD 1.6 -> 1.8.
3765 - (dtucker) [openbsd-compat/bindresvport.c] Add "OPENBSD ORIGINAL" marker.
3766 - (dtucker) [openbsd-compat/bindresvport.c] Update from OpenBSD 1.16 -> 1.17.
3767 - (dtucker) [openbsd-compat/sigact.c] Update from OpenBSD 1.3 -> 1.4.
3768 Id and copyright sync only, there were no substantial changes we need.
3769 - (dtucker) [openbsd-compat/bsd-closefrom.c openbsd-compat/base64.c]
3770 -Wsign-compare fixes from djm.
3771 - (dtucker) [openbsd-compat/sigact.h] Update from OpenBSD 1.2 -> 1.3.
3772 Id and copyright sync only, there were no substantial changes we need.
3773 - (dtucker) [configure.ac] Try to get the gcc version number in a way that
3774 doesn't change between versions, and use a safer default.
3775
377620051105
3777 - (djm) OpenBSD CVS Sync
3778 - markus@cvs.openbsd.org 2005/10/07 11:13:57
3779 [ssh-keygen.c]
3780 change DSA default back to 1024, as it's defined for 1024 bits only
3781 and this causes interop problems with other clients. moreover,
3782 in order to improve the security of DSA you need to change more
3783 components of DSA key generation (e.g. the internal SHA1 hash);
3784 ok deraadt
3785 - djm@cvs.openbsd.org 2005/10/10 10:23:08
3786 [channels.c channels.h clientloop.c serverloop.c session.c]
3787 fix regression I introduced in 4.2: X11 forwardings initiated after
3788 a session has exited (e.g. "(sleep 5; xterm) &") would not start.
3789 bz #1086 reported by t8m AT centrum.cz; ok markus@ dtucker@
3790 - djm@cvs.openbsd.org 2005/10/11 23:37:37
3791 [channels.c]
3792 bz #1076 set SO_REUSEADDR on X11 forwarding listner sockets, preventing
3793 bind() failure when a previous connection's listeners are in TIME_WAIT,
3794 reported by plattner AT inf.ethz.ch; ok dtucker@
3795 - stevesk@cvs.openbsd.org 2005/10/13 14:03:01
3796 [auth2-gss.c gss-genr.c gss-serv.c]
3797 remove unneeded #includes; ok markus@
3798 - stevesk@cvs.openbsd.org 2005/10/13 14:20:37
3799 [gss-serv.c]
3800 spelling in comments
3801 - stevesk@cvs.openbsd.org 2005/10/13 19:08:08
3802 [gss-serv-krb5.c gss-serv.c]
3803 unused declarations; ok deraadt@
3804 (id sync only for gss-serv-krb5.c)
3805 - stevesk@cvs.openbsd.org 2005/10/13 19:13:41
3806 [dns.c]
3807 unneeded #include, unused declaration, little knf; ok deraadt@
3808 - stevesk@cvs.openbsd.org 2005/10/13 22:24:31
3809 [auth2-gss.c gss-genr.c gss-serv.c monitor.c]
3810 KNF; ok djm@
3811 - stevesk@cvs.openbsd.org 2005/10/14 02:17:59
3812 [ssh-keygen.c ssh.c sshconnect2.c]
3813 no trailing "\n" for log functions; ok djm@
3814 - stevesk@cvs.openbsd.org 2005/10/14 02:29:37
3815 [channels.c clientloop.c]
3816 free()->xfree(); ok djm@
3817 - stevesk@cvs.openbsd.org 2005/10/15 15:28:12
3818 [sshconnect.c]
3819 make external definition static; ok deraadt@
3820 - stevesk@cvs.openbsd.org 2005/10/17 13:45:05
3821 [dns.c]
3822 fix memory leaks from 2 sources:
3823 1) key_fingerprint_raw()
3824 2) malloc in dns_read_rdata()
3825 ok jakob@
3826 - stevesk@cvs.openbsd.org 2005/10/17 14:01:28
3827 [dns.c]
3828 remove #ifdef LWRES; ok jakob@
3829 - stevesk@cvs.openbsd.org 2005/10/17 14:13:35
3830 [dns.c dns.h]
3831 more cleanups; ok jakob@
3832 - djm@cvs.openbsd.org 2005/10/30 01:23:19
3833 [ssh_config.5]
3834 mention control socket fallback behaviour, reported by
3835 tryponraj AT gmail.com
3836 - djm@cvs.openbsd.org 2005/10/30 04:01:03
3837 [ssh-keyscan.c]
3838 make ssh-keygen discard junk from server before SSH- ident, spotted by
3839 dave AT cirt.net; ok dtucker@
3840 - djm@cvs.openbsd.org 2005/10/30 04:03:24
3841 [ssh.c]
3842 fix misleading debug message; ok dtucker@
3843 - dtucker@cvs.openbsd.org 2005/10/30 08:29:29
3844 [canohost.c sshd.c]
3845 Check for connections with IP options earlier and drop silently. ok djm@
3846 - jmc@cvs.openbsd.org 2005/10/30 08:43:47
3847 [ssh_config.5]
3848 remove trailing whitespace;
3849 - djm@cvs.openbsd.org 2005/10/30 08:52:18
3850 [clientloop.c packet.c serverloop.c session.c ssh-agent.c ssh-keygen.c]
3851 [ssh.c sshconnect.c sshconnect1.c sshd.c]
3852 no need to escape single quotes in comments, no binary change
3853 - dtucker@cvs.openbsd.org 2005/10/31 06:15:04
3854 [sftp.c]
3855 Fix sorting with "ls -1" command. From Robert Tsai, "looks right" deraadt@
3856 - djm@cvs.openbsd.org 2005/10/31 11:12:49
3857 [ssh-keygen.1 ssh-keygen.c]
3858 generate a protocol 2 RSA key by default
3859 - djm@cvs.openbsd.org 2005/10/31 11:48:29
3860 [serverloop.c]
3861 make sure we clean up wtmp, etc. file when we receive a SIGTERM,
3862 SIGINT or SIGQUIT when running without privilege separation (the
3863 normal privsep case is already OK). Patch mainly by dtucker@ and
3864 senthilkumar_sen AT hotpop.com; ok dtucker@
3865 - jmc@cvs.openbsd.org 2005/10/31 19:55:25
3866 [ssh-keygen.1]
3867 grammar;
3868 - dtucker@cvs.openbsd.org 2005/11/03 13:38:29
3869 [canohost.c]
3870 Cache reverse lookups with and without DNS separately; ok markus@
3871 - djm@cvs.openbsd.org 2005/11/04 05:15:59
3872 [kex.c kex.h kexdh.c kexdhc.c kexdhs.c kexgex.c kexgexc.c kexgexs.c]
3873 remove hardcoded hash lengths in key exchange code, allowing
3874 implementation of KEX methods with different hashes (e.g. SHA-256);
3875 ok markus@ dtucker@ stevesk@
3876 - djm@cvs.openbsd.org 2005/11/05 05:01:15
3877 [bufaux.c]
3878 Fix leaks in error paths, bz #1109 and #1110 reported by kremenek AT
3879 cs.stanford.edu; ok dtucker@
3880 - (dtucker) [README.platform] Add PAM section.
3881 - (djm) [openbsd-compat/getrrsetbyname.c] Sync to latest OpenBSD version,
3882 resolving memory leak bz#1111 reported by kremenek AT cs.stanford.edu;
3883 ok dtucker@
3884
388520051102
3886 - (dtucker) [openbsd-compat/bsd-misc.c] Bug #1108: fix broken strdup().
3887 Reported by olavi at ipunplugged.com and antoine.brodin at laposte.net
3888 via FreeBSD.
3889
389020051030
3891 - (djm) [contrib/suse/openssh.spec contrib/suse/rc.
3892 sshd contrib/suse/sysconfig.ssh] Bug #1106: Updated SuSE spec and init
3893 files from imorgan AT nas.nasa.gov
3894 - (dtucker) [session.c] Bug #1045do not check /etc/nologin when PAM is
3895 enabled, instead allow PAM to handle it. Note that on platforms using PAM,
3896 the pam_nologin module should be added to sshd's session stack in order to
3897 maintain exising behaviour. Based on patch and discussion from t8m at
3898 centrum.cz, ok djm@
3899
390020051025
3901 - (dtucker) [configure.ac] Relocate LLONG_MAX calculation to after the
3902 sizeof(long long) checks, to make fixing bug #1104 easier (no changes
3903 yet).
3904 - (dtucker) [configure.ac] Bug #1104: Tru64's printf family doesn't
3905 understand "%lld", even though the compiler has "long long", so handle
3906 it as a special case. Patch tested by mcaskill.scott at epa.gov.
3907 - (dtucker) [contrib/cygwin/ssh-user-config] Remove duplicate yes/no
3908 prompt. Patch from vinschen at redhat.com.
3909
391020051017
3911 - (dtucker) [configure.ac] Bug #1097: Fix configure for cross-compiling.
3912 /etc/default/login report and testing from aabaker at iee.org, corrections
3913 from tim@.
3914
391520051009
3916 - (dtucker) [configure.ac defines.h openbsd-compat/vis.{c,h}] Sync current
3917 versions from OpenBSD. ok djm@
3918
391920051008
3920 - (dtucker) [configure.ac] Bug #1098: define $MAIL for HP-UX; report from
3921 brian.smith at agilent com.
3922 - (djm) [configure.ac] missing 'test' call for -with-Werror test
3923
392420051005
3925 - (dtucker) [configure.ac sshd.8] Enable locked account check (a prepended
3926 "*LOCKED*" string) for FreeBSD. Patch jeremie at le-hen.org and
3927 senthilkumar_sen at hotpop.com.
3928
392920051003
3930 - (dtucker) OpenBSD CVS Sync
3931 - markus@cvs.openbsd.org 2005/09/07 08:53:53
3932 [channels.c]
3933 enforce chanid != NULL; ok djm
3934 - markus@cvs.openbsd.org 2005/09/09 19:18:05
3935 [clientloop.c]
3936 typo; from mark at mcs.vuw.ac.nz, bug #1082
3937 - djm@cvs.openbsd.org 2005/09/13 23:40:07
3938 [sshd.c ssh.c misc.h sftp.c ssh-keygen.c ssh-keysign.c sftp-server.c
3939 scp.c misc.c ssh-keyscan.c ssh-add.c ssh-agent.c]
3940 ensure that stdio fds are attached; ok deraadt@
3941 - djm@cvs.openbsd.org 2005/09/19 11:37:34
3942 [ssh_config.5 ssh.1]
3943 mention ability to specify bind_address for DynamicForward and -D options;
3944 bz#1077 spotted by Haruyama Seigo
3945 - djm@cvs.openbsd.org 2005/09/19 11:47:09
3946 [sshd.c]
3947 stop connection abort on rekey with delayed compression enabled when
3948 post-auth privsep is disabled (e.g. when root is logged in); ok dtucker@
3949 - djm@cvs.openbsd.org 2005/09/19 11:48:10
3950 [gss-serv.c]
3951 typo
3952 - jmc@cvs.openbsd.org 2005/09/19 15:38:27
3953 [ssh.1]
3954 some more .Bk/.Ek to avoid ugly line split;
3955 - jmc@cvs.openbsd.org 2005/09/19 15:42:44
3956 [ssh.c]
3957 update -D usage here too;
3958 - djm@cvs.openbsd.org 2005/09/19 23:31:31
3959 [ssh.1]
3960 spelling nit from stevesk@
3961 - djm@cvs.openbsd.org 2005/09/21 23:36:54
3962 [sshd_config.5]
3963 aquire -> acquire, from stevesk@
3964 - djm@cvs.openbsd.org 2005/09/21 23:37:11
3965 [sshd.c]
3966 change label at markus@'s request
3967 - jaredy@cvs.openbsd.org 2005/09/30 20:34:26
3968 [ssh-keyscan.1]
3969 deploy .An -nosplit; ok jmc
3970 - dtucker@cvs.openbsd.org 2005/10/03 07:44:42
3971 [canohost.c]
3972 Relocate check_ip_options call to prevent logging of garbage for
3973 connections with IP options set. bz#1092 from David Leonard,
3974 "looks good" deraadt@
3975 - (dtucker) [regress/README.regress] Bug #989: Document limitation that scp
3976 is required in the system path for the multiplex test to work.
3977
397820050930
3979 - (dtucker) [openbsd-compat/openbsd-compat.h] Bug #1096: Add prototype
3980 for strtoll. Patch from o.flebbe at science-computing.de.
3981 - (dtucker) [monitor.c] Bug #1087: Send loginmsg to preauth privsep
3982 child during PAM account check without clearing it. This restores the
3983 post-login warnings such as LDAP password expiry. Patch from Tomas Mraz
3984 with help from several others.
3985
398620050929
3987 - (dtucker) [monitor_wrap.c] Remove duplicate definition of loginmsg
3988 introduced during sync.
3989
399020050928
3991 - (dtucker) [entropy.c] Use u_char for receiving RNG seed for consistency.
3992 - (dtucker) [auth-pam.c] Bug #1028: send final non-query messages from
3993 PAM via keyboard-interactive. Patch tested by the folks at Vintela.
3994
399520050927
3996 - (dtucker) [entropy.c] Remove unnecessary tests for getuid and geteuid
3997 calls, since they can't possibly fail. ok djm@
3998 - (dtucker) [entropy.c entropy.h sshd.c] Pass RNG seed to the reexec'ed
3999 process when sshd relies on ssh-random-helper. Should result in faster
4000 logins on systems without a real random device or prngd. ok djm@
4001
400220050924
4003 - (dtucker) [auth2.c] Move start_pam() calls out of if-else block to remove
4004 duplicate call. ok djm@
4005
400620050922
4007 - (dtucker) [configure.ac] Use -R linker flag for libedit too; patch from
4008 skeleten at shillest.net.
4009 - (dtucker) [configure.ac] Fix help for --with-opensc; patch from skeleten at
4010 shillest.net.
4011
401220050919
4013 - (tim) [aclocal.m4 configure.ac] Delete acconfig.h and add templates to
4014 AC_DEFINE and AC_DEFINE_UNQUOTED to quiet autoconf 2.59 warning messages.
4015 ok dtucker@
4016
401720050912
4018 - (tim) [configure.ac] Bug 1078. Fix --without-kerberos5. Reported by
4019 Mike Frysinger.
4020
402120050908
4022 - (tim) [defines.h openbsd-compat/port-uw.c] Add long password support to
4023 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4024 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4025
4026$Id$
This page took 0.12926 seconds and 5 git commands to generate.