]> andersk Git - openssh.git/blame - ChangeLog
- stevesk@cvs.openbsd.org 2002/01/16 17:55:33
[openssh.git] / ChangeLog
CommitLineData
f1b0ecc3 120020122
2 - (djm) autoconf hacking:
3 - We don't support --without-zlib currently, so don't allow it.
4 - Rework cryptographic random number support detection. We now detect
5 whether OpenSSL seeds itself. If it does, then we don't bother with
6 the ssh-rand-helper program. You can force the use of ssh-rand-helper
7 using the --with-rand-helper configure argument
8 - Simplify and clean up ssh-rand-helper configuration
9780116c 9 - Add OpenSSL sanity check: verify that header version matches version
10 reported by library
49d7ed32 11 - (djm) Fix some bugs I introduced into ssh-rand-helper yesterday
3dc93cd8 12 - OpenBSD CVS Sync
13 - djm@cvs.openbsd.org 2001/12/21 08:52:22
14 [ssh-keygen.1 ssh-keygen.c]
15 Remove default (rsa1) key type; ok markus@
f9654cd7 16 - djm@cvs.openbsd.org 2001/12/21 08:53:45
17 [readpass.c]
18 Avoid interruptable passphrase read; ok markus@
67656ffc 19 - djm@cvs.openbsd.org 2001/12/21 10:06:43
20 [ssh-add.1 ssh-add.c]
21 Try all standard key files (id_rsa, id_dsa, identity) when invoked with
22 no arguments; ok markus@
b0ce9259 23 - markus@cvs.openbsd.org 2001/12/21 12:17:33
24 [serverloop.c]
25 remove ifdef for USE_PIPES since fdin != fdout; ok djm@
0e0bba68 26 - deraadt@cvs.openbsd.org 2001/12/24 07:29:43
27 [ssh-add.c]
28 try all listed keys.. how did this get broken?
e13b4278 29 - markus@cvs.openbsd.org 2001/12/25 18:49:56
30 [key.c]
31 be more careful on allocation
45c49544 32 - markus@cvs.openbsd.org 2001/12/25 18:53:00
33 [auth1.c]
34 be more carefull on allocation
bb28e836 35 - markus@cvs.openbsd.org 2001/12/27 18:10:29
36 [ssh-keygen.c]
37 -t is only needed for key generation (unbreaks -i, -e, etc).
b775c6f2 38 - markus@cvs.openbsd.org 2001/12/27 18:22:16
39 [auth1.c authfile.c auth-rsa.c dh.c kexdh.c kexgex.c key.c rsa.c]
40 [scard.c ssh-agent.c sshconnect1.c sshd.c ssh-dss.c]
41 call fatal() for openssl allocation failures
135113a3 42 - stevesk@cvs.openbsd.org 2001/12/27 18:22:53
43 [sshd.8]
44 clarify -p; ok markus@
cf184a44 45 - markus@cvs.openbsd.org 2001/12/27 18:26:13
46 [authfile.c]
47 missing include
108d362e 48 - markus@cvs.openbsd.org 2001/12/27 19:37:23
49 [dh.c kexdh.c kexgex.c]
50 always use BN_clear_free instead of BN_free
dc421aa3 51 - markus@cvs.openbsd.org 2001/12/27 19:54:53
52 [auth1.c auth.h auth-rh-rsa.c]
53 auth_rhosts_rsa now accept generic keys.
95500969 54 - markus@cvs.openbsd.org 2001/12/27 20:39:58
55 [auth1.c auth-rsa.c channels.c clientloop.c packet.c packet.h]
56 [serverloop.c session.c ssh.c sshconnect1.c sshd.c ttymodes.c]
57 get rid of packet_integrity_check, use packet_done() instead.
3456d3c7 58 - markus@cvs.openbsd.org 2001/12/28 12:14:27
20b279e6 59 [auth1.c auth2.c auth2-chall.c auth-rsa.c channels.c clientloop.c]
60 [kex.c kexdh.c kexgex.c packet.c packet.h serverloop.c session.c]
61 [ssh.c sshconnect1.c sshconnect2.c sshd.c]
3456d3c7 62 s/packet_done/packet_check_eom/ (end-of-message); ok djm@
20b279e6 63 - markus@cvs.openbsd.org 2001/12/28 13:57:33
64 [auth1.c kexdh.c kexgex.c packet.c packet.h sshconnect1.c sshd.c]
65 packet_get_bignum* no longer returns a size
4ef6f649 66 - markus@cvs.openbsd.org 2001/12/28 14:13:13
67 [bufaux.c bufaux.h packet.c]
68 buffer_get_bignum: int -> void
54a5250f 69 - markus@cvs.openbsd.org 2001/12/28 14:50:54
70 [auth1.c auth-rsa.c channels.c dispatch.c kex.c kexdh.c kexgex.c]
71 [packet.c packet.h serverloop.c session.c ssh.c sshconnect1.c]
72 [sshconnect2.c sshd.c]
73 packet_read* no longer return the packet length, since it's not used.
7819b5c3 74 - markus@cvs.openbsd.org 2001/12/28 15:06:00
75 [auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c]
76 [dispatch.h kex.c kex.h serverloop.c ssh.c sshconnect2.c]
77 remove plen from the dispatch fn. it's no longer used.
60015649 78 - stevesk@cvs.openbsd.org 2001/12/28 22:37:48
79 [ssh.1 sshd.8]
80 document LogLevel DEBUG[123]; ok markus@
20905a8e 81 - stevesk@cvs.openbsd.org 2001/12/29 21:56:01
82 [authfile.c channels.c compress.c packet.c sftp-server.c]
83 [ssh-agent.c ssh-keygen.c]
84 remove unneeded casts and some char->u_char cleanup; ok markus@
6c79c353 85 - stevesk@cvs.openbsd.org 2002/01/03 04:11:08
86 [ssh_config]
87 grammar in comment
b4047251 88 - stevesk@cvs.openbsd.org 2002/01/04 17:59:17
89 [readconf.c servconf.c]
90 remove #ifdef _PATH_XAUTH/#endif; ok markus@
0f84fe37 91 - stevesk@cvs.openbsd.org 2002/01/04 18:14:16
92 [servconf.c sshd.8]
93 protocol 2 HostKey code default is now /etc/ssh_host_rsa_key and
94 /etc/ssh_host_dsa_key like we have in sshd_config. ok markus@
8341f420 95 - markus@cvs.openbsd.org 2002/01/05 10:43:40
96 [channels.c]
97 fix hanging x11 channels for rejected cookies (e.g.
98 XAUTHORITY=/dev/null xbiff) bug #36, based on patch from
99 djast@cs.toronto.edu
cb362b5e 100 - stevesk@cvs.openbsd.org 2002/01/05 21:51:56
101 [ssh.1 sshd.8]
102 some missing and misplaced periods
4ccb828d 103 - markus@cvs.openbsd.org 2002/01/09 13:49:27
104 [ssh-keygen.c]
105 append \n only for public keys
0c0738d5 106 - markus@cvs.openbsd.org 2002/01/09 17:16:00
107 [channels.c]
108 merge channel_pre_open_15/channel_pre_open_20; ok provos@
9c50edcf 109 - markus@cvs.openbsd.org 2002/01/09 17:26:35
110 [channels.c nchan.c]
111 replace buffer_consume(b, buffer_len(b)) with buffer_clear(b);
112 ok provos@
99416ceb 113 - markus@cvs.openbsd.org 2002/01/10 11:13:29
114 [serverloop.c]
115 skip client_alive_check until there are channels; ok beck@
3d209bbe 116 - markus@cvs.openbsd.org 2002/01/10 11:24:04
117 [clientloop.c]
118 handle SSH2_MSG_GLOBAL_REQUEST (just reply with failure); ok djm@
3c27606d 119 - markus@cvs.openbsd.org 2002/01/10 12:38:26
120 [nchan.c]
121 remove dead code (skip drain)
6d566d33 122 - markus@cvs.openbsd.org 2002/01/10 12:47:59
123 [nchan.c]
124 more unused code (with channels.c:1.156)
5a5f4c37 125 - markus@cvs.openbsd.org 2002/01/11 10:31:05
126 [packet.c]
127 handle received SSH2_MSG_UNIMPLEMENTED messages; ok djm@
781a02b8 128 - markus@cvs.openbsd.org 2002/01/11 13:36:43
129 [ssh2.h]
130 add defines for msg type ranges
6367063f 131 - markus@cvs.openbsd.org 2002/01/11 13:39:36
132 [auth2.c dispatch.c dispatch.h kex.c]
133 a single dispatch_protocol_error() that sends a message of
134 type 'UNIMPLEMENTED'
135 dispatch_range(): set handler for a ranges message types
136 use dispatch_protocol_ignore() for authentication requests after
137 successful authentication (the drafts requirement).
138 serverloop/clientloop now send a 'UNIMPLEMENTED' message instead
139 of exiting.
70499440 140 - markus@cvs.openbsd.org 2002/01/11 20:14:11
141 [auth2-chall.c auth-skey.c]
142 use strlcpy not strlcat; mouring@
a62ebe1f 143 - markus@cvs.openbsd.org 2002/01/11 23:02:18
144 [readpass.c]
145 use _PATH_TTY
bd2d2ac4 146 - markus@cvs.openbsd.org 2002/01/11 23:02:51
147 [auth2-chall.c]
148 use snprintf; mouring@
7ef24c8c 149 - markus@cvs.openbsd.org 2002/01/11 23:26:30
150 [auth-skey.c]
151 use snprintf; mouring@
68a7e648 152 - markus@cvs.openbsd.org 2002/01/12 13:10:29
153 [auth-skey.c]
154 undo local change
95f0a918 155 - provos@cvs.openbsd.org 2002/01/13 17:27:07
156 [ssh-agent.c]
157 change to use queue.h macros; okay markus@
3469eac4 158 - markus@cvs.openbsd.org 2002/01/13 17:57:37
159 [auth2.c auth2-chall.c compat.c sshconnect2.c sshd.c]
160 use buffer API and avoid static strings of fixed size;
161 ok provos@/mouring@
368e9dfc 162 - markus@cvs.openbsd.org 2002/01/13 21:31:20
163 [channels.h nchan.c]
164 add chan_set_[io]state(), order states, state is now an u_int,
165 simplifies debugging messages; ok provos@
3057c23b 166 - markus@cvs.openbsd.org 2002/01/14 13:22:35
167 [nchan.c]
168 chan_send_oclose1() no longer calls chan_shutdown_write(); ok provos@
169 - markus@cvs.openbsd.org 2002/01/14 13:34:07
170 [nchan.c]
171 merge chan_[io]buf_empty[12]; ok provos@
668a91b7 172 - markus@cvs.openbsd.org 2002/01/14 13:40:10
173 [nchan.c]
174 correct fn names for ssh2, do not switch from closed to closed;
175 ok provos@
3c9f1ecd 176 - markus@cvs.openbsd.org 2002/01/14 13:41:13
177 [nchan.c]
178 remove duplicated code; ok provos@
70bef40e 179 - markus@cvs.openbsd.org 2002/01/14 13:55:55
180 [channels.c channels.h nchan.c]
181 remove function pointers for events, remove chan_init*; ok provos@
8ab5f6b2 182 - markus@cvs.openbsd.org 2002/01/14 13:57:03
183 [channels.h nchan.c]
184 (c) 2002
5641aefa 185 - markus@cvs.openbsd.org 2002/01/16 13:17:51
186 [channels.c channels.h serverloop.c ssh.c]
187 wrapper for channel_setup_fwd_listener
ac10636f 188 - stevesk@cvs.openbsd.org 2002/01/16 17:40:23
189 [sshd_config]
190 The stategy now used for options in the default sshd_config shipped
191 with OpenSSH is to specify options with their default value where
192 possible, but leave them commented. Uncommented options change a
193 default value. Subsystem is currently the only default option
194 changed. ok markus@
cf5a07a8 195 - stevesk@cvs.openbsd.org 2002/01/16 17:42:33
196 [ssh.1]
197 correct defaults for -i/IdentityFile; ok markus@
1bbbc136 198 - stevesk@cvs.openbsd.org 2002/01/16 17:55:33
199 [ssh_config]
200 correct some commented defaults. add Ciphers default. ok markus@
f1b0ecc3 201
40f64e6f 20220020121
203 - (djm) Rework ssh-rand-helper:
204 - Reduce quantity of ifdef code, in preparation for ssh_rand_conf
205 - Always seed from system calls, even when doing PRNGd seeding
206 - Tidy and comment #define knobs
207 - Remove unused facility for multiple runs through command list
208 - KNF, cleanup, update copyright
209
088cdc23 21020020114
211 - (djm) Bug #50 - make autoconf entropy path checks more robust
212
760b35a6 21320020108
214 - (djm) Merge Cygwin copy_environment with do_pam_environment, removing
215 fixed env var size limit in the process. Report from Corinna Vinschen
216 <vinschen@redhat.com>
5cbceb3f 217 - (stevesk) defines.h: use "/var/spool/sockets/X11/%u" for HP-UX. does
218 not depend on transition links. from Lutz Jaenicke.
760b35a6 219
1d2a4613 22020020106
221 - (stevesk) defines.h: determine _PATH_UNIX_X; currently "/tmp/.X11-unix/X%u"
222 for all platforms except HP-UX, which is "/usr/spool/sockets/X11/%u".
223
d93656c9 22420020105
225 - (bal) NCR requies use_pipes to operate correctly.
29525240 226 - (stevesk) fix spurious ; from NCR change.
d93656c9 227
554e28b2 22820020103
229 - (djm) Use bigcrypt() on systems with SCO_PROTECTED_PW. Patch from
230 Roger Cornelius <rac@tenzing.org>
231
e9571a2c 23220011229
233 - (djm) Apply Cygwin pointer deref fix from Corinna Vinschen
234 <vinschen@redhat.com> Could be abused to guess valid usernames
929fb284 235 - (djm) Typo in contrib/cygwin/README Fix from Corinna Vinschen
236 <vinschen@redhat.com>
e9571a2c 237
760edf28 23820011228
239 - (djm) Remove recommendation to use GNU make, we should support most
240 make programs.
241
7bec72bc 24220011225
243 - (stevesk) [Makefile.in ssh-rand-helper.c]
244 portable lib and __progname support for ssh-rand-helper; ok djm@
245
b8291fa0 24620011223
247 - (bal) Removed contrib/chroot.diff and noted in contrib/README that it
248 was not being maintained.
249
46058ce2 25020011222
251 - (djm) Ignore fix & patchlevel in OpenSSL version check. Patch from
252 solar@openwall.com
253 - (djm) Rework entropy code. If the OpenSSL PRNG is has not been
254 internally seeded, execute a subprogram "ssh-rand-helper" to obtain
255 some entropy for us. Rewrite the old in-process entropy collecter as
256 an example ssh-rand-helper.
257 - (djm) Always perform ssh_prng_cmds path lookups in configure, even if
258 we don't end up using ssh_prng_cmds (so we always get a valid file)
259
5fb9865a 26020011221
261 - (djm) Add option to gnome-ssh-askpass to stop it from grabbing the X
262 server. I have found this necessary to avoid server hangs with X input
263 extensions (e.g. kinput2). Enable by setting the environment variable
264 "GNOME_SSH_ASKPASS_NOGRAB"
805e659f 265 - OpenBSD CVS Sync
266 - stevesk@cvs.openbsd.org 2001/12/08 17:49:28
267 [channels.c pathnames.h]
268 use only one path to X11 UNIX domain socket vs. an array of paths
269 to try. report from djast@cs.toronto.edu. ok markus@
2f293d43 270 - markus@cvs.openbsd.org 2001/12/09 18:45:56
271 [auth2.c auth2-chall.c auth.h]
272 add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions,
273 fixes memleak.
5e8948af 274 - stevesk@cvs.openbsd.org 2001/12/10 16:45:04
275 [sshd.c]
276 possible fd leak on error; ok markus@
cdc95d6e 277 - markus@cvs.openbsd.org 2001/12/10 20:34:31
278 [ssh-keyscan.c]
279 check that server supports v1 for -t rsa1, report from wirth@dfki.de
fb396518 280 - jakob@cvs.openbsd.org 2001/12/18 10:04:21
281 [auth.h hostfile.c hostfile.h]
282 remove auth_rsa_read_key, make hostfile_ready_key non static; ok markus@
306feb91 283 - jakob@cvs.openbsd.org 2001/12/18 10:05:15
284 [auth2.c]
285 log fingerprint on successful public key authentication; ok markus@
46df736f 286 - jakob@cvs.openbsd.org 2001/12/18 10:06:24
287 [auth-rsa.c]
288 log fingerprint on successful public key authentication, simplify
289 usage of key structs; ok markus@
184eed6a 290 - deraadt@cvs.openbsd.org 2001/12/19 07:18:56
291 [auth1.c auth2.c auth2-chall.c auth-bsdauth.c auth.c authfile.c auth.h]
292 [auth-krb4.c auth-rhosts.c auth-skey.c bufaux.c canohost.c channels.c]
293 [cipher.c clientloop.c compat.c compress.c deattack.c key.c log.c mac.c]
294 [match.c misc.c nchan.c packet.c readconf.c rijndael.c rijndael.h scard.c]
295 [servconf.c servconf.h serverloop.c session.c sftp.c sftp-client.c]
296 [sftp-glob.c sftp-int.c sftp-server.c ssh-add.c ssh-agent.c ssh.c]
297 [sshconnect1.c sshconnect2.c sshconnect.c sshd.8 sshd.c sshd_config]
298 [ssh-keygen.c sshlogin.c sshpty.c sshtty.c ttymodes.c uidswap.c]
299 basic KNF done while i was looking for something else
a10be357 300 - markus@cvs.openbsd.org 2001/12/19 16:09:39
301 [serverloop.c]
302 fix race between SIGCHLD and select with an additional pipe. writing
303 to the pipe on SIGCHLD wakes up select(). using pselect() is not
304 portable and siglongjmp() ugly. W. R. Stevens suggests similar solution.
305 initial idea by pmenage@ensim.com; ok deraadt@, djm@
6c0fa2b1 306 - stevesk@cvs.openbsd.org 2001/12/19 17:16:13
307 [authfile.c bufaux.c bufaux.h buffer.c buffer.h packet.c packet.h ssh.c]
308 change the buffer/packet interface to use void* vs. char*; ok markus@
ac151b18 309 - markus@cvs.openbsd.org 2001/12/20 16:37:29
310 [channels.c channels.h session.c]
311 setup x11 listen socket for just one connect if the client requests so.
312 (v2 only, but the openssh client does not support this feature).
24ca6821 313 - djm@cvs.openbsd.org 2001/12/20 22:50:24
314 [auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c]
315 [dispatch.h kex.c kex.h packet.c packet.h serverloop.c ssh.c]
316 [sshconnect2.c]
317 Conformance fix: we should send failing packet sequence number when
318 responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by
319 yakk@yakk.dot.net; ok markus@
5fb9865a 320
c9d0ad9b 32120011219
322 - (stevesk) OpenBSD CVS sync X11 localhost display
323 - stevesk@cvs.openbsd.org 2001/11/29 14:10:51
324 [channels.h channels.c session.c]
325 sshd X11 fake server will now listen on localhost by default:
326 $ echo $DISPLAY
327 localhost:12.0
328 $ netstat -an|grep 6012
329 tcp 0 0 127.0.0.1.6012 *.* LISTEN
330 tcp6 0 0 ::1.6012 *.* LISTEN
331 sshd_config gatewayports=yes can be used to revert back to the old
332 behavior. will control this with another option later. ok markus@
333 - stevesk@cvs.openbsd.org 2001/12/19 08:43:11
334 [includes.h session.c]
335 handle utsname.nodename case for FamilyLocal X authorization; ok markus@
336
3f3ac025 33720011207
338 - (bal) PCRE no longer required. Banished from the source along with
339 fake-regex.h
c20f63d3 340 - (bal) OpenBSD CVS Sync
341 - stevesk@cvs.openbsd.org 2001/12/06 18:02:32
342 [channels.c sshconnect.c]
343 shutdown(sock, SHUT_RDWR) not needed here; ok markus@
74860245 344 - stevesk@cvs.openbsd.org 2001/12/06 18:09:23
345 [channels.c session.c]
346 strncpy->strlcpy. remaining strncpy's are necessary. ok markus@
d24631c9 347 - stevesk@cvs.openbsd.org 2001/12/06 18:20:32
348 [channels.c]
349 disable nagle for X11 fake server and client TCPs. from netbsd.
350 ok markus@
3f3ac025 351
35220011206
6056eb35 353 - (bal) OpenBSD CVS Sync
354 - deraadt@cvs.openbsd.org 2001/11/14 20:45:08
355 [sshd.c]
356 errno saving wrapping in a signal handler
0408c978 357 - markus@cvs.openbsd.org 2001/11/16 12:46:13
358 [ssh-keyscan.c]
359 handle empty lines instead of dumping core; report from sha@sha-1.net
17a3011c 360 - stevesk@cvs.openbsd.org 2001/11/17 19:14:34
361 [auth2.c auth.c readconf.c servconf.c ssh-agent.c ssh-keygen.c]
362 enum/int type cleanup where it made sense to do so; ok markus@
7ace8c3b 363 - markus@cvs.openbsd.org 2001/11/19 11:20:21
364 [sshd.c]
365 fd leak on HUP; ok stevesk@
8666316a 366 - stevesk@cvs.openbsd.org 2001/11/19 18:40:46
367 [ssh-agent.1]
368 clarify/state that private keys are not exposed to clients using the
369 agent; ok markus@
44c2ab73 370 - mpech@cvs.openbsd.org 2001/11/19 19:02:16
371 [deattack.c radix.c]
372 kill more registers
373 millert@ ok
2f98d223 374 - markus@cvs.openbsd.org 2001/11/21 15:51:24
375 [key.c]
376 mem leak
c840d0ad 377 - stevesk@cvs.openbsd.org 2001/11/21 18:49:14
378 [ssh-keygen.1]
379 more on passphrase construction; ok markus@
f48e63c8 380 - stevesk@cvs.openbsd.org 2001/11/22 05:27:29
381 [ssh-keyscan.c]
382 don't use "\n" in fatal()
7a934d1b 383 - markus@cvs.openbsd.org 2001/11/22 12:34:22
384 [clientloop.c serverloop.c sshd.c]
385 volatile sig_atomic_t
58d94604 386 - stevesk@cvs.openbsd.org 2001/11/29 19:06:39
387 [channels.h]
388 remove dead function prototype; ok markus@
2975f58d 389 - markus@cvs.openbsd.org 2001/11/29 22:08:48
390 [auth-rsa.c]
391 fix protocol error: send 'failed' message instead of a 2nd challenge
392 (happens if the same key is in authorized_keys twice).
393 reported Ralf_Meister@genua.de; ok djm@
b48eeb07 394 - stevesk@cvs.openbsd.org 2001/11/30 20:39:28
395 [ssh.c]
396 sscanf() length dependencies are clearer now; can also shrink proto
397 and data if desired, but i have not done that. ok markus@
2548961d 398 - markus@cvs.openbsd.org 2001/12/01 21:41:48
399 [session.c sshd.8]
400 don't pass user defined variables to /usr/bin/login
947b64c7 401 - deraadt@cvs.openbsd.org 2001/12/02 02:08:32
402 [sftp-common.c]
403 zap };
010f9726 404 - itojun@cvs.openbsd.org 2001/12/05 03:50:01
405 [clientloop.c serverloop.c sshd.c]
406 deal with LP64 printf issue with sig_atomic_t. from thorpej
d5bb9418 407 - itojun@cvs.openbsd.org 2001/12/05 03:56:39
408 [auth1.c auth2.c canohost.c channels.c deattack.c packet.c scp.c
409 sshconnect2.c]
410 make it compile with more strict prototype checking
6aacefa7 411 - deraadt@cvs.openbsd.org 2001/12/05 10:06:12
412 [authfd.c authfile.c bufaux.c channels.c compat.c kex.c kexgex.c
413 key.c misc.c packet.c servconf.c ssh-agent.c sshconnect2.c
414 sshconnect.c sshd.c ssh-dss.c ssh-keygen.c ssh-rsa.c]
415 minor KNF
663ebb32 416 - markus@cvs.openbsd.org 2001/12/05 15:04:48
417 [version.h]
418 post 3.0.2
6a92533a 419 - markus@cvs.openbsd.org 2001/12/05 16:54:51
420 [compat.c match.c match.h]
421 make theo and djm happy: bye bye regexp
2717fa0f 422 - markus@cvs.openbsd.org 2001/12/06 13:30:06
423 [servconf.c servconf.h sshd.8 sshd.c]
424 add -o to sshd, too. ok deraadt@
425 - (bal) Minor white space fix up in servconf.c
6056eb35 426
ffb8d130 42720011126
428 - (tim) [contrib/cygwin/README, openbsd-compat/bsd-cygwin_util.c,
429 openbsd-compat/bsd-cygwin_util.h, openbsd-compat/daemon.c]
430 Allow SSHD to install as service under WIndows 9x/Me
431 [configure.ac] Fix to allow linking against PCRE on Cygwin
432 Patches by Corinna Vinschen <vinschen@redhat.com>
433
20716479 43420011115
435 - (djm) Fix IPv4 default in ssh-keyscan. Spotted by Dan Astoorian
436 <djast@cs.toronto.edu> Fix from markus@
e41f14ae 437 - (djm) Release 3.0.1p1
20716479 438
9aba5a4d 43920011113
440 - (djm) Fix early (and double) free of remote user when using Kerberos.
441 Patch from Simon Wilkinson <simon@sxw.org.uk>
19e810f6 442 - (djm) AIX login{success,failed} changes. Move loginsuccess call to
443 do_authenticated. Call loginfailed for protocol 2 failures > MAX like
444 we do for protocol 1. Reports from Ralf Wenk <wera0003@fh-karlsruhe.de>,
445 K.Wolkersdorfer@fz-juelich.de and others
ede8cea6 446 - (djm) OpenBSD CVS Sync
447 - dugsong@cvs.openbsd.org 2001/11/11 18:47:10
448 [auth-krb5.c]
449 fix krb5 authorization check. found by <jhawk@MIT.EDU>. from
450 art@, deraadt@ ok
b0248360 451 - markus@cvs.openbsd.org 2001/11/12 11:17:07
452 [servconf.c]
453 enable authorized_keys2 again. tested by fries@
0bbf2240 454 - markus@cvs.openbsd.org 2001/11/13 02:03:57
455 [version.h]
456 enter 3.0.1
86b164b3 457 - (djm) Bump RPM package versions
9aba5a4d 458
3e4e3bc8 45920011112
460 - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
d36ae718 461 - (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com>
9ae3f727 462 - OpenBSD CVS Sync
463 - markus@cvs.openbsd.org 2001/10/24 08:41:41
464 [sshd.c]
465 mention remote port in debug message
f103187f 466 - markus@cvs.openbsd.org 2001/10/24 08:41:20
467 [ssh.c]
468 remove unused
67b75437 469 - markus@cvs.openbsd.org 2001/10/24 08:51:35
470 [clientloop.c ssh.c]
471 ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@
c6940381 472 - markus@cvs.openbsd.org 2001/10/24 19:57:40
473 [clientloop.c]
474 make ~& (backgrounding) work again for proto v1; add support ~& for v2, too
f564d016 475 - markus@cvs.openbsd.org 2001/10/25 21:14:32
476 [ssh-keygen.1 ssh-keygen.c]
477 better docu for fingerprinting, ok deraadt@
e8d59b4d 478 - markus@cvs.openbsd.org 2001/10/29 19:27:15
479 [sshconnect2.c]
480 hostbased: check for client hostkey before building chost
03cf595c 481 - markus@cvs.openbsd.org 2001/10/30 20:29:09
482 [ssh.1]
483 ssh.1
b4b701be 484 - markus@cvs.openbsd.org 2001/11/07 16:03:17
485 [packet.c packet.h sshconnect2.c]
486 pad using the padding field from the ssh2 packet instead of sending
487 extra ignore messages. tested against several other ssh servers.
10f22cd7 488 - markus@cvs.openbsd.org 2001/11/07 21:40:21
489 [ssh-rsa.c]
490 ssh_rsa_sign/verify: SSH_BUG_SIGBLOB not supported
abc4e9a7 491 - markus@cvs.openbsd.org 2001/11/07 22:10:28
492 [ssh-dss.c ssh-rsa.c]
493 missing free and sync dss/rsa code.
713d61f7 494 - markus@cvs.openbsd.org 2001/11/07 22:12:01
495 [sshd.8]
496 s/Keepalive/KeepAlive/; from openbsd@davidkrause.com
f98585b0 497 - markus@cvs.openbsd.org 2001/11/07 22:41:51
498 [auth2.c auth-rh-rsa.c]
499 unused includes
27c47c0a 500 - markus@cvs.openbsd.org 2001/11/07 22:53:21
501 [channels.h]
502 crank c->path to 256 so they can hold a full hostname; dwd@bell-labs.com
56b551e2 503 - markus@cvs.openbsd.org 2001/11/08 10:51:08
504 [readpass.c]
505 don't strdup too much data; from gotoh@taiyo.co.jp; ok millert.
dd58cb5e 506 - markus@cvs.openbsd.org 2001/11/08 17:49:53
507 [ssh.1]
508 mention setuid root requirements; noted by cnorris@csc.UVic.ca; ok stevesk@
fad3754c 509 - markus@cvs.openbsd.org 2001/11/08 20:02:24
510 [auth.c]
511 don't print ROOT in CAPS for the authentication messages, i.e.
512 Accepted publickey for ROOT from 127.0.0.1 port 42734 ssh2
513 becomes
514 Accepted publickey for root from 127.0.0.1 port 42734 ssh2
b3ad8fe6 515 - markus@cvs.openbsd.org 2001/11/09 18:59:23
516 [clientloop.c serverloop.c]
517 don't memset too much memory, ok millert@
518 original patch from jlk@kamens.brookline.ma.us via nalin@redhat.com
ac28afd8 519 - markus@cvs.openbsd.org 2001/11/10 13:19:45
520 [sshd.c]
e15895cd 521 cleanup libwrap support (remove bogus comment, bogus close(), add
522 debug, etc).
5d4446bf 523 - markus@cvs.openbsd.org 2001/11/10 13:22:42
524 [ssh-rsa.c]
525 KNF (unexpand)
ec413a68 526 - markus@cvs.openbsd.org 2001/11/10 13:37:20
527 [packet.c]
528 remove extra debug()
5df83e07 529 - markus@cvs.openbsd.org 2001/11/11 13:02:31
530 [servconf.c]
e15895cd 531 make AuthorizedKeysFile2 fallback to AuthorizedKeysFile if
532 AuthorizedKeysFile is specified.
533 - (djm) Reorder portable-specific server options so that they come first.
534 This should help reduce diff collisions for new server options (as they
535 will appear at the end)
3e4e3bc8 536
78afd1dc 53720011109
538 - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
539 if permit_empty_passwd == 0 so null password check cannot be bypassed.
540 jayaraj@amritapuri.com OpenBSD bug 2168
30f60c34 541 - markus@cvs.openbsd.org 2001/11/09 19:08:35
542 [sshd.c]
543 remove extra trailing dot from log message; pilot@naughty.monkey.org
544
7c6d759d 54520011103
546 - (tim) [ contrib/caldera/openssh.spec contrib/caldera/sshd.init] Updates
547 from Raymund Will <ray@caldera.de>
548 [acconfig.h configure.in] Clean up login checks.
549 Problem reported by Jim Knoble <jmknoble@pobox.com>
550
55120011101
58389b85 552 - (djm) Compat define for OpenSSL < 0.9.6 (No OPENSSL_free)
553
548fd014 55420011031
555 - (djm) Unsmoke drugs: config files should be noreplace.
556
b013a983 55720011030
558 - (djm) Redhat RPM spec: remove noreplace from config files, allow IPv6
559 by default (can force IPv4 using --define "noipv6 1")
560
40d0f6b9 56120011029
562 - (tim) [TODO defines.h loginrec.c] Change the references to configure.in
563 to configure.ac
564
9f214051 56520011028
566 - (djm) Avoid bug in Solaris PAM libs
7eb73cc1 567 - (djm) Disconnect if no tty and PAM reports password expired
9678565b 568 - (djm) Fix for PAM password changes being echoed (from stevesk)
840ad55e 569 - (stevesk) Fix compile problem with PAM password change fix
37a8edf7 570 - (stevesk) README: zlib location is http://www.gzip.org/zlib/
9f214051 571
c8c15bcb 57220011027
573 - (tim) [configure.ac] Fixes for ReliantUNIX (don't use libucb)
574 Patch by Robert Dahlem <Robert.Dahlem@siemens.com>
575
9e127e27 57620011026
577 - (bal) Set the correct current time in login_utmp_only(). Patch by
578 Wayne Davison <wayned@users.sourceforge.net>
fd96c060 579 - (tim) [scard/Makefile.in] Fix install: when building outside of source
580 tree and using --src=/full_path/to/openssh
581 Patch by Mark D. Baushke <mdb@juniper.net>
9e127e27 582
d321c94b 58320011025
584 - (bal) Use VDISABLE if _POSIX_VDISABLE is set in readpassphrase.c. Patch
585 by todd@
5a162955 586 - (tim) [configure.ac] Give path given in --with-xxx= for pcre,zlib, and
587 tcp-wrappers precedence over system libraries and includes.
588 Report from Dave Dykstra <dwd@bell-labs.com>
d321c94b 589
95c88805 59020011024
591 - (bal) Should be 3.0p1 not 3.0p2. Corrected version.h already.
451dab40 592 - (tim) configure.in -> configure.ac
95c88805 593
bc86d864 59420011023
595 - (bal) Updated version to 3.0p1 in preparing for release.
7f0a4ff1 596 - (bal) Added 'PAM_TTY_KLUDGE' to Solaris platform.
051809f6 597 - (tim) [configure.in] Fix test for broken dirname. Based on patch from
598 Dave Dykstra <dwd@bell-labs.com>. Remove un-needed test for zlib.h.
599 [contrib/caldera/openssh.spec, contrib/redhat/openssh.spec,
600 contrib/suse/openssh.spec] Update version to match version.h
bc86d864 601
ce49121d 60220011022
603 - (djm) Fix fd leak in loginrec.c (ro fd to lastlog was left open).
604 Report from Michal Zalewski <lcamtuf@coredump.cx>
605
98a7c37b 60620011021
607 - (tim) [configure.in] Clean up library testing. Add optional PATH to
608 --with-pcre, --with-zlib, and --with-tcp-wrappers. Based on
609 patch by albert chin (china@thewrittenword.com)
610 Re-arange AC_CHECK_HEADERS and AC_CHECK_FUNCS for eaiser reading
611 of patches to configure.in. Replace obsolete AC_STRUCT_ST_BLKSIZE
612 with AC_CHECK_MEMBERS. Add test for broken dirname() on
613 Solaris 2.5.1 by Dan Astoorian <djast@cs.toronto.edu>
614 [acconfig.h aclocal.m4 defines.h configure.in] Better socklen_t test.
615 patch by albert chin (china@thewrittenword.com)
616 [scp.c] Replace obsolete HAVE_ST_BLKSIZE with
617 HAVE_STRUCT_STAT_ST_BLKSIZE.
618 [Makefile.in] When running make in top level, always do make
619 in openbsd-compat. patch by Dave Dykstra <dwd@bell-labs.com>
620
09a3bd6d 62120011019
622 - (bal) Fixed up init.d symlink issue and piddir stuff. Patches by
623 Zoran Milojevic <Zoran.Milojevic@SS8.com> and j.petersen@msh.de
624
418e724c 62520011012
626 - (djm) OpenBSD CVS Sync
627 - markus@cvs.openbsd.org 2001/10/10 22:18:47
628 [channels.c channels.h clientloop.c nchan.c serverloop.c]
629 [session.c session.h]
630 try to keep channels open until an exit-status message is sent.
631 don't kill the login shells if the shells stdin/out/err is closed.
632 this should now work:
633 ssh -2n localhost 'exec > /dev/null 2>&1; sleep 10; exit 5'; echo ?
efcc9957 634 - markus@cvs.openbsd.org 2001/10/11 13:45:21
635 [session.c]
636 delay detach of session if a channel gets closed but the child is
637 still alive. however, release pty, since the fd's to the child are
638 already closed.
fd6cfbaf 639 - markus@cvs.openbsd.org 2001/10/11 15:24:00
640 [clientloop.c]
641 clear select masks if we return before calling select().
b0454d44 642 - (djm) "make veryclean" fix from Tom Holroyd <tomh@po.crl.go.jp>
aeabbb30 643 - (djm) Clean some autoconf-2.52 junk when doing "make distclean"
8140f2aa 644 - (djm) Cleanup sshpty.c a little
6e464960 645 - (bal) First wave of contrib/solaris/ package upgrades. Still more
646 work needs to be done, but it is a 190% better then the stuff we
647 had before!
78c84f13 648 - (bal) Minor bug fix in contrib/solaris/opensshd.in .. $etcdir was not
649 set right.
418e724c 650
c48c32c1 65120011010
652 - (djm) OpenBSD CVS Sync
653 - markus@cvs.openbsd.org 2001/10/04 14:34:16
654 [key.c]
655 call OPENSSL_free() for memory allocated by openssl; from chombier@mac.com
0c139bd1 656 - markus@cvs.openbsd.org 2001/10/04 15:05:40
657 [channels.c serverloop.c]
658 comment out bogus conditions for selecting on connection_in
72176c0e 659 - markus@cvs.openbsd.org 2001/10/04 15:12:37
660 [serverloop.c]
661 client_alive_check cleanup
a2c92c4a 662 - markus@cvs.openbsd.org 2001/10/06 00:14:50
663 [sshconnect.c]
664 remove unused argument
05fd093c 665 - markus@cvs.openbsd.org 2001/10/06 00:36:42
666 [session.c]
667 fix typo in error message, sync with do_exec_nopty
01e9ef57 668 - markus@cvs.openbsd.org 2001/10/06 11:18:19
669 [sshconnect1.c sshconnect2.c sshconnect.c]
670 unify hostkey check error messages, simplify prompt.
2cdccb44 671 - markus@cvs.openbsd.org 2001/10/07 10:29:52
672 [authfile.c]
673 grammer; Matthew_Clarke@mindlink.bc.ca
639cb8ab 674 - markus@cvs.openbsd.org 2001/10/07 17:49:40
675 [channels.c channels.h]
676 avoid possible FD_ISSET overflow for channels established
677 during channnel_after_select() (used for dynamic channels).
f3964cb9 678 - markus@cvs.openbsd.org 2001/10/08 11:48:57
679 [channels.c]
680 better debug
32af6a3f 681 - markus@cvs.openbsd.org 2001/10/08 16:15:47
682 [sshconnect.c]
683 use correct family for -b option
dab89049 684 - markus@cvs.openbsd.org 2001/10/08 19:05:05
685 [ssh.c sshconnect.c sshconnect.h ssh-keyscan.c]
686 some more IPv4or6 cleanup
687 - markus@cvs.openbsd.org 2001/10/09 10:12:08
688 [session.c]
689 chdir $HOME after krb_afslog(); from bbense@networking.stanford.edu
01855277 690 - markus@cvs.openbsd.org 2001/10/09 19:32:49
691 [session.c]
692 stat subsystem command before calling do_exec, and return error to client.
9d1b2faa 693 - markus@cvs.openbsd.org 2001/10/09 19:51:18
694 [serverloop.c]
695 close all channels if the connection to the remote host has been closed,
696 should fix sshd's hanging with WCHAN==wait
d5f24f94 697 - markus@cvs.openbsd.org 2001/10/09 21:59:41
698 [channels.c channels.h serverloop.c session.c session.h]
699 simplify session close: no more delayed session_close, no more
700 blocking wait() calls.
b6a71cd2 701 - (bal) removed two unsed headers in openbsd-compat/bsd-misc.c
8782141f 702 - (bal) seed_init() and seed_rng() required in ssh-keyscan.c
c48c32c1 703
46dfe5ef 70420011007
705 - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
706 Prompted by Matthew Vernon <matthew@sel.cam.ac.uk>
707
822593d4 70820011005
709 - (bal) AES works under Cray, no more hack.
710
63fa6b6c 71120011004
712 - (bal) nchan2.ms resync. BSD License applied.
713
c8a62153 71420011003
715 - (bal) CVS ID fix up in version.h
b6350327 716 - (bal) OpenBSD CVS Sync:
717 - markus@cvs.openbsd.org 2001/09/27 11:58:16
718 [compress.c]
719 mem leak; chombier@mac.com
720 - markus@cvs.openbsd.org 2001/09/27 11:59:37
721 [packet.c]
722 missing called=1; chombier@mac.com
aa8003d6 723 - markus@cvs.openbsd.org 2001/09/27 15:31:17
724 [auth2.c auth2-chall.c sshconnect1.c]
725 typos; from solar
5b263aae 726 - camield@cvs.openbsd.org 2001/09/27 17:53:24
727 [sshd.8]
728 don't talk about compile-time options
729 ok markus@
e99a518a 730 - djm@cvs.openbsd.org 2001/09/28 12:07:09
731 [ssh-keygen.c]
732 bzero private key after loading to smartcard; ok markus@
f67792f2 733 - markus@cvs.openbsd.org 2001/09/28 15:46:29
734 [ssh.c]
735 bug: read user config first; report kaukasoi@elektroni.ee.tut.fi
5720c10e 736 - markus@cvs.openbsd.org 2001/10/01 08:06:28
737 [scp.c]
738 skip filenames containing \n; report jdamery@chiark.greenend.org.uk
739 and matthew@debian.org
5e4a7219 740 - markus@cvs.openbsd.org 2001/10/01 21:38:53
741 [channels.c channels.h ssh.c sshd.c]
742 remove ugliness; vp@drexel.edu via angelos
8bbc048a 743 - markus@cvs.openbsd.org 2001/10/01 21:51:16
744 [readconf.c readconf.h ssh.1 sshconnect.c]
745 add NoHostAuthenticationForLocalhost; note that the hostkey is
746 now check for localhost, too.
e0543e42 747 - djm@cvs.openbsd.org 2001/10/02 08:38:50
748 [ssh-add.c]
749 return non-zero exit code on error; ok markus@
e4d7f734 750 - stevesk@cvs.openbsd.org 2001/10/02 22:56:09
751 [sshd.c]
752 #include "channels.h" for channel_set_af()
76fbdd47 753 - markus@cvs.openbsd.org 2001/10/03 10:01:20
754 [auth.c]
755 use realpath() for homedir, too. from jinmei@isl.rdc.toshiba.co.jp
c8a62153 756
d9d47a26 75720011001
758 - (stevesk) loginrec.c: fix type conversion problems exposed when using
759 64-bit off_t.
760
d8d6c87e 76120010929
762 - (bal) move reading 'config.h' up higher. Patch by albert chin
763 <china@thewrittenword.com)
764
fc1fc39e 76520010928
766 - (djm) OpenBSD CVS sync:
767 - djm@cvs.openbsd.org 2001/09/28 09:49:31
768 [scard.c]
769 Fix segv when smartcard communication error occurs during key load.
770 ok markus@
e3d5570b 771 - (djm) Update spec files for new x11-askpass
fc1fc39e 772
8a9ac95d 77320010927
774 - (stevesk) session.c: declare do_pre_login() before use
775 wayned@users.sourceforge.net
776
aa9f6a6e 77720010925
778 - (djm) Pull in auth-krb5.c from OpenBSD CVS. NB. it is not currently used.
168edd95 779 - (djm) Sync $sysconfdir/moduli
948fd8b9 780 - (djm) Add AC_SYS_LARGEFILE configure test
4f9d80ee 781 - (djm) Avoid bad and unportable sprintf usage in compat code
aa9f6a6e 782
57dade33 78320010923
784 - (bal) updated ssh.c to mirror minor getopts 'extern int' formating done
785 by stevesk@
927c3e15 786 - (bal) Removed 'extern int optopt;' since it is dead wood.
8ead88d3 787 - (bal) Updated all *.specs for 2.9.9p1 and updated version.h
57dade33 788
8ab12eb4 78920010923
790 - (bal) OpenBSD CVS Sync
791 - markus@cvs.openbsd.org 2001/09/23 11:09:13
792 [authfile.c]
793 relax permission check for private key files.
157fc8e1 794 - markus@cvs.openbsd.org 2001/09/23 09:58:13
795 [LICENCE]
796 new rijndael implementation
8ab12eb4 797
64bdafe1 79820010920
799 - (tim) [scard/Makefile.in] Don't strip the Java binary
4a38efad 800 - (stevesk) sun_len, SUN_LEN() configure stuff no longer required
fc7eca52 801 - (bal) OpenBSD CVS Sync
802 - stevesk@cvs.openbsd.org 2001/09/20 00:15:54
803 [sshd.8]
804 fix ClientAliveCountMax
ddcfed57 805 - markus@cvs.openbsd.org 2001/09/20 13:46:48
806 [auth2.c]
807 key_read returns now -1 or 1
bcdb96c2 808 - markus@cvs.openbsd.org 2001/09/20 13:50:40
809 [compat.c compat.h ssh.c]
810 bug compat: request a dummy channel for -N (no shell) sessions +
811 cleanup; vinschen@redhat.com
4a778de1 812 - mouring@cvs.openbsd.org 2001/09/20 20:57:51
813 [sshd_config]
814 CheckMail removed. OKed stevesk@
64bdafe1 815
4cdbc654 81620010919
35c69348 817 - (bal) OpenBSD Sync
4cdbc654 818 - markus@cvs.openbsd.org 2001/09/19 10:08:51
819 [sshd.8]
820 command=xxx applies to subsystem now, too
cb8c7bad 821 - markus@cvs.openbsd.org 2001/09/19 13:23:29
822 [key.c]
823 key_read() now returns -1 on type mismatch, too
e1c5bfaf 824 - stevesk@cvs.openbsd.org 2001/09/19 19:24:19
825 [readconf.c readconf.h scp.c sftp.c ssh.1]
826 add ClearAllForwardings ssh option and set it in scp and sftp; ok
827 markus@
f34f05d5 828 - stevesk@cvs.openbsd.org 2001/09/19 19:35:30
829 [authfd.c]
830 use sizeof addr vs. SUN_LEN(addr) for sockaddr_un. Stevens
831 blesses this and we do it this way elsewhere. this helps in
832 portable because not all systems have SUN_LEN() and
833 sockaddr_un.sun_len. ok markus@
2043936f 834 - stevesk@cvs.openbsd.org 2001/09/19 21:04:53
835 [sshd.8]
836 missing -t in usage
368bae7d 837 - stevesk@cvs.openbsd.org 2001/09/19 21:41:57
838 [sshd.8]
839 don't advertise -V in usage; ok markus@
35c69348 840 - (bal) openbsd-compat/vis.[ch] is dead wood. Removed.
4cdbc654 841
d0b19c95 84220010918
46a831dd 843 - (djm) Configure support for smartcards. Based on Ben's work.
fef4ea6b 844 - (djm) Revert setgroups call, it causes problems on OS-X
46a831dd 845 - (djm) Avoid warning on BSDgetopt
93816ec8 846 - (djm) More makefile infrastructre for smartcard support, also based
847 on Ben's work
4b255446 848 - (djm) Specify --datadir in RPM spec files so smartcard applet gets
849 put somewhere sane. Add Ssh.bin to manifest.
69c94072 850 - (djm) Make smartcard support conditional in Redhat RPM spec
1a77481c 851 - (bal) LICENCE update. Has not been done in a while.
f49df8e9 852 - (stevesk) nchan.c: we use X/Open Sockets on HP-UX now so shutdown(2)
853 returns ENOTCONN vs. EINVAL for socket not connected; remove EINVAL
854 check. ok Lutz Jaenicke
35c69348 855 - (bal) OpenBSD CVS Sync
f1278af7 856 - stevesk@cvs.openbsd.org 2001/09/17 17:57:57
857 [scp.1 scp.c sftp.1 sftp.c]
858 add -Fssh_config option; ok markus@
cf54363d 859 - stevesk@cvs.openbsd.org 2001/09/17 19:27:15
860 [kexdh.c kexgex.c key.c key.h ssh-dss.c ssh-keygen.c ssh-rsa.c]
861 u_char*/char* cleanup; ok markus
4e842b5e 862 - markus@cvs.openbsd.org 2001/09/17 20:22:14
863 [scard.c]
864 never keep a connection to the smartcard open.
865 allows ssh-keygen -D U while the agent is running; report from
866 jakob@
e3c1c3e6 867 - stevesk@cvs.openbsd.org 2001/09/17 20:38:09
868 [sftp.1 sftp.c]
869 cleanup and document -1, -s and -S; ok markus@
f7436b8c 870 - markus@cvs.openbsd.org 2001/09/17 20:50:22
871 [key.c ssh-keygen.c]
872 better error handling if you try to export a bad key to ssh.com
a5f82435 873 - markus@cvs.openbsd.org 2001/09/17 20:52:47
874 [channels.c channels.h clientloop.c]
875 try to fix agent-forwarding-backconnection-bug, as seen on HPUX,
876 for example; with Lutz.Jaenicke@aet.TU-Cottbus.DE,
780a9951 877 - markus@cvs.openbsd.org 2001/09/17 21:04:02
878 [channels.c serverloop.c]
879 don't send fake dummy packets on CR (\r)
880 bugreport from yyua@cs.sfu.ca via solar@@openwall.com
b6761a3e 881 - markus@cvs.openbsd.org 2001/09/17 21:09:47
882 [compat.c]
883 more versions suffering the SSH_BUG_DEBUG bug;
884 3.0.x reported by dbutts@maddog.storability.com
edaeb835 885 - stevesk@cvs.openbsd.org 2001/09/17 23:56:07
886 [scp.1]
887 missing -B in usage string
d0b19c95 888
d31a32a4 88920010917
890 - (djm) x11-ssh-askpass-1.2.4 in RPM spec, revert workarounds
cb547f98 891 - (tim) [includes.h openbsd-compat/getopt.c openbsd-compat/getopt.h]
892 rename getopt() to BSDgetopt() to keep form conflicting with
893 system getopt().
894 [Makefile.in configure.in] disable filepriv until I can add
895 missing procpriv calls.
d31a32a4 896
95d00a03 89720010916
898 - (djm) Workaround XFree breakage in RPM spec file
6fcf67f7 899 - (bal) OpenBSD CVS Sync
900 - markus@cvs.openbsd.org 2001/09/16 14:46:54
901 [session.c]
902 calls krb_afslog() after setting $HOME; mattiasa@e.kth.se; fixes
903 pr 1943b
95d00a03 904
0e0144b7 90520010915
906 - (djm) Make do_pre_login static to avoid prototype #ifdef hell
0fd6c7a9 907 - (djm) Sync scard/ stuff
23c098ba 908 - (djm) Redhat spec file cleanups from Pekka Savola <pekkas@netcore.fi> and
909 Redhat
94a29edc 910 - (djm) Redhat initscript config sanity checking from Pekka Savola
911 <pekkas@netcore.fi>
e72ff812 912 - (djm) Clear supplemental groups at sshd start to prevent them from
913 being propogated to random PAM modules. Based on patch from Redhat via
914 Pekka Savola <pekkas@netcore.fi>
a2cb4268 915 - (djm) Make sure rijndael.c picks config.h
916 - (djm) Ensure that u_char gets defined
0e0144b7 917
dcf29cf8 91820010914
919 - (bal) OpenBSD CVS Sync
920 - markus@cvs.openbsd.org 2001/09/13
921 [rijndael.c rijndael.h]
922 missing $OpenBSD
fd022eed 923 - markus@cvs.openbsd.org 2001/09/14
924 [session.c]
925 command=xxx overwrites subsystems, too
9658ecbc 926 - markus@cvs.openbsd.org 2001/09/14
927 [sshd.c]
928 typo
fd022eed 929
88c3bfe0 93020010913
931 - (bal) OpenBSD CVS Sync
932 - markus@cvs.openbsd.org 2001/08/23 11:31:59
933 [cipher.c cipher.h]
934 switch to the optimised AES reference code from
935 http://www.esat.kuleuven.ac.be/~rijmen/rijndael/rijndael-fst-3.0.zip
936
5c53a31e 93720010912
938 - (bal) OpenBSD CVS Sync
939 - jakob@cvs.openbsd.org 2001/08/16 19:18:34
940 [servconf.c servconf.h session.c sshd.8]
941 deprecate CheckMail. ok markus@
54bf768d 942 - stevesk@cvs.openbsd.org 2001/08/16 20:14:57
943 [ssh.1 sshd.8]
944 document case sensitivity for ssh, sshd and key file
945 options and arguments; ok markus@
6d7b3036 946 - stevesk@cvs.openbsd.org 2001/08/17 18:59:47
947 [servconf.h]
948 typo in comment
ae897d7c 949 - stevesk@cvs.openbsd.org 2001/08/21 21:47:42
950 [ssh.1 sshd.8]
951 minor typos and cleanup
c78e5800 952 - stevesk@cvs.openbsd.org 2001/08/22 16:21:21
953 [ssh.1]
954 hostname not optional; ok markus@
9495bfc5 955 - stevesk@cvs.openbsd.org 2001/08/22 16:30:02
956 [sshd.8]
957 no rexd; ok markus@
29999e54 958 - stevesk@cvs.openbsd.org 2001/08/22 17:45:16
959 [ssh.1]
960 document cipher des for protocol 1; ok deraadt@
8fbc356d 961 - camield@cvs.openbsd.org 2001/08/23 17:59:31
962 [sshd.c]
963 end request with 0, not NULL
964 ok markus@
d866473d 965 - stevesk@cvs.openbsd.org 2001/08/23 18:02:48
966 [ssh-agent.1]
967 fix usage; ok markus@
75304f85 968 - stevesk@cvs.openbsd.org 2001/08/23 18:08:59
969 [ssh-add.1 ssh-keyscan.1]
970 minor cleanup
b7f79e7a 971 - danh@cvs.openbsd.org 2001/08/27 22:02:13
972 [ssh-keyscan.c]
973 fix memory fault if non-existent filename is given to the -f option
974 ok markus@
14e4a15f 975 - markus@cvs.openbsd.org 2001/08/28 09:51:26
976 [readconf.c]
977 don't set DynamicForward unless Host matches
e591b98a 978 - markus@cvs.openbsd.org 2001/08/28 15:39:48
979 [ssh.1 ssh.c]
980 allow: ssh -F configfile host
46660a9e 981 - markus@cvs.openbsd.org 2001/08/29 20:44:03
982 [scp.c]
983 clear the malloc'd buffer, otherwise source() will leak malloc'd
984 memory; ok theo@
e675b851 985 - stevesk@cvs.openbsd.org 2001/08/29 23:02:21
986 [sshd.8]
987 add text about -u0 preventing DNS requests; ok markus@
4c780c2a 988 - stevesk@cvs.openbsd.org 2001/08/29 23:13:10
989 [ssh.1 ssh.c]
990 document -D and DynamicForward; ok markus@
d2e3df16 991 - stevesk@cvs.openbsd.org 2001/08/29 23:27:23
992 [ssh.c]
993 validate ports for -L/-R; ok markus@
70068acc 994 - stevesk@cvs.openbsd.org 2001/08/29 23:39:40
995 [ssh.1 sshd.8]
996 additional documentation for GatewayPorts; ok markus@
ad3e169f 997 - naddy@cvs.openbsd.org 2001/08/30 15:42:36
998 [ssh.1]
999 add -D to synopsis line; ok markus@
3a8aabf0 1000 - stevesk@cvs.openbsd.org 2001/08/30 16:04:35
1001 [readconf.c ssh.1]
1002 validate ports for LocalForward/RemoteForward.
1003 add host/port alternative syntax for IPv6 (like -L/-R).
1004 ok markus@
ed787d14 1005 - stevesk@cvs.openbsd.org 2001/08/30 20:36:34
1006 [auth-options.c sshd.8]
1007 validate ports for permitopen key file option. add host/port
1008 alternative syntax for IPv6. ok markus@
4278ff63 1009 - markus@cvs.openbsd.org 2001/08/30 22:22:32
1010 [ssh-keyscan.c]
1011 do not pass pointers to longjmp; fix from wayne@blorf.net
6b759005 1012 - markus@cvs.openbsd.org 2001/08/31 11:46:39
1013 [sshconnect2.c]
93111dfa 1014 disable kbd-interactive if we don't get SSH2_MSG_USERAUTH_INFO_REQUEST
1015 messages
1016 - stevesk@cvs.openbsd.org 2001/09/03 20:58:33
1017 [readconf.c readconf.h ssh.c]
1018 fatal() for nonexistent -Fssh_config. ok markus@
91789042 1019 - deraadt@cvs.openbsd.org 2001/09/05 06:23:07
1020 [scp.1 sftp.1 ssh.1 ssh-agent.1 sshd.8 ssh-keygen.1 ssh-keyscan.1]
1021 avoid first person in manual pages
3a222388 1022 - stevesk@cvs.openbsd.org 2001/09/12 18:18:25
1023 [scp.c]
1024 don't forward agent for non third-party copies; ok markus@
5c53a31e 1025
c6ed03bd 102620010815
1027 - (bal) Fixed stray code in readconf.c that went in by mistake.
65e683bd 1028 - OpenBSD CVS Sync
1029 - markus@cvs.openbsd.org 2001/08/07 10:37:46
1030 [authfd.c authfd.h]
1031 extended failure messages from galb@vandyke.com
c7f89f1f 1032 - deraadt@cvs.openbsd.org 2001/08/08 07:16:58
1033 [scp.1]
1034 when describing the -o option, give -o Protocol=1 as the specific example
1035 since we are SICK AND TIRED of clueless people who cannot have difficulty
1036 thinking on their own.
f2f1bedd 1037 - markus@cvs.openbsd.org 2001/08/08 18:20:15
1038 [uidswap.c]
1039 permanently_set_uid is a noop if user is not privilegued;
1040 fixes bug on solaris; from sbi@uchicago.edu
58df8789 1041 - markus@cvs.openbsd.org 2001/08/08 21:34:19
1042 [uidswap.c]
1043 undo last change; does not work for sshd
c3abff07 1044 - jakob@cvs.openbsd.org 2001/08/11 22:51:27
1045 [ssh.c tildexpand.c]
1046 fix more paths beginning with "//"; <bradshaw@staff.crosswalk.com>.
1047 ok markus@
4fa5a4db 1048 - stevesk@cvs.openbsd.org 2001/08/13 23:38:54
1049 [scp.c]
1050 don't need main prototype (also sync with rcp); ok markus@
68874d2b 1051 - markus@cvs.openbsd.org 2001/08/14 09:23:02
1052 [sftp.1 sftp-int.c]
1053 "bye"; hk63a@netscape.net
38539909 1054 - stevesk@cvs.openbsd.org 2001/08/14 17:54:29
1055 [scp.1 sftp.1 ssh.1]
1056 consistent documentation and example of ``-o ssh_option'' for sftp and
1057 scp; document keyword=argument for ssh.
41cb4569 1058 - (bal) QNX resync. OK tim@
c6ed03bd 1059
3454ff55 106020010814
1061 - (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup
1062 for some #ifdef _CRAY code; ok wendyp@cray.com
5bd6962b 1063 - (stevesk) sshpty.c: return 0 on error in cray pty code;
1064 ok wendyp@cray.com
4809bc4c 1065 - (stevesk) bsd-cray.c: utmp strings are not C strings
8280a5ae 1066 - (stevesk) bsd-cray.c: more cleanup; ok wendyp@cray.com
3454ff55 1067
d89a02d4 106820010812
1069 - (djm) Fix detection of long long int support. Based on patch from
1070 Michael Stone <mstone@cs.loyola.edu>. ok stevesk, tim
1071
7ef909d3 107220010808
1073 - (bal) Minor correction to inet_ntop.h. _BSD_RRESVPORT_H should be
1074 _BSD_INET_NTOP_H. Pointed out by Mark Miller <markm@swoon.net>
1075
a704dd54 107620010807
1077 - (tim) [configure.in sshconnect.c openbsd-compat/Makefile.in
1078 openbsd-compat/openbsd-compat.h ] Add inet_ntop.c inet_ntop.h back
1079 in. Needed for sshconnect.c
1080 [sshconnect.c] fix INET6_ADDRSTRLEN for non IPv6 machines
1081 [configure.in] make tests with missing libraries fail
1082 patch by Wendy Palm <wendyp@cray.com>
1083 Added openbsd-compat/bsd-cray.h. Selective patches from
1084 William L. Jones <jones@mail.utexas.edu>
1085
4f7893dc 108620010806
1087 - OpenBSD CVS Sync
1088 - markus@cvs.openbsd.org 2001/07/22 21:32:27
1089 [sshpty.c]
1090 update comment
0aea6c59 1091 - pvalchev@cvs.openbsd.org 2001/07/22 21:32:42
1092 [ssh.1]
1093 There is no option "Compress", point to "Compression" instead; ok
1094 markus
10a2cbef 1095 - markus@cvs.openbsd.org 2001/07/22 22:04:19
1096 [readconf.c ssh.1]
1097 enable challenge-response auth by default; ok millert@
248bad82 1098 - markus@cvs.openbsd.org 2001/07/22 22:24:16
1099 [sshd.8]
1100 Xr login.conf
9f37c0af 1101 - markus@cvs.openbsd.org 2001/07/23 09:06:28
1102 [sshconnect2.c]
1103 reorder default sequence of userauth methods to match ssh behaviour:
1104 hostbased,publickey,keyboard-interactive,password
29c440a0 1105 - markus@cvs.openbsd.org 2001/07/23 12:47:05
1106 [ssh.1]
1107 sync PreferredAuthentications
7fd9477e 1108 - aaron@cvs.openbsd.org 2001/07/23 14:14:18
1109 [ssh-keygen.1]
1110 Fix typo.
1bdee08c 1111 - stevesk@cvs.openbsd.org 2001/07/23 18:14:58
1112 [auth2.c auth-rsa.c]
1113 use %lu; ok markus@
bac2ef55 1114 - stevesk@cvs.openbsd.org 2001/07/23 18:21:46
1115 [xmalloc.c]
1116 no zero size xstrdup() error; ok markus@
55684f0c 1117 - markus@cvs.openbsd.org 2001/07/25 11:59:35
1118 [scard.c]
1119 typo in comment
ce773142 1120 - markus@cvs.openbsd.org 2001/07/25 14:35:18
1121 [readconf.c ssh.1 ssh.c sshconnect.c]
1122 cleanup connect(); connection_attempts 4 -> 1; from
1123 eivind@freebsd.org
f87f09aa 1124 - stevesk@cvs.openbsd.org 2001/07/26 17:18:22
1125 [sshd.8 sshd.c]
1126 add -t option to test configuration file and keys; pekkas@netcore.fi
1127 ok markus@
c42158fe 1128 - rees@cvs.openbsd.org 2001/07/26 20:04:27
1129 [scard.c ssh-keygen.c]
1130 Inquire Cyberflex class for 0xf0 cards
1131 change aid to conform to 7816-5
1132 remove gratuitous fid selects
2e23cde0 1133 - millert@cvs.openbsd.org 2001/07/27 14:50:45
1134 [ssh.c]
1135 If smart card support is compiled in and a smart card is being used
1136 for authentication, make it the first method used. markus@ OK
0b2988ca 1137 - deraadt@cvs.openbsd.org 2001/07/27 17:26:16
1138 [scp.c]
1139 shorten lines
7f19f8bb 1140 - markus@cvs.openbsd.org 2001/07/28 09:21:15
1141 [sshd.8]
1142 cleanup some RSA vs DSA vs SSH1 vs SSH2 notes
79a6cb5c 1143 - mouring@cvs.openbsd.org 2001/07/29 17:02:46
1144 [scp.1]
1145 Clarified -o option in scp.1 OKed by Markus@
0b595937 1146 - jakob@cvs.openbsd.org 2001/07/30 16:06:07
1147 [scard.c scard.h]
1148 better errorcodes from sc_*; ok markus@
d6192346 1149 - stevesk@cvs.openbsd.org 2001/07/30 16:23:30
1150 [rijndael.c rijndael.h]
1151 new BSD-style license:
1152 Brian Gladman <brg@gladman.plus.com>:
1153 >I have updated my code at:
1154 >http://fp.gladman.plus.com/cryptography_technology/rijndael/index.htm
1155 >with a copyright notice as follows:
1156 >[...]
1157 >I am not sure which version of my old code you are using but I am
1158 >happy for the notice above to be substituted for my existing copyright
1159 >intent if this meets your purpose.
71b7a18e 1160 - jakob@cvs.openbsd.org 2001/07/31 08:41:10
1161 [scard.c]
1162 do not complain about missing smartcards. ok markus@
eea098a3 1163 - jakob@cvs.openbsd.org 2001/07/31 09:28:44
1164 [readconf.c readconf.h ssh.1 ssh.c]
1165 add 'SmartcardDevice' client option to specify which smartcard device
1166 is used to access a smartcard used for storing the user's private RSA
1167 key. ok markus@.
88690211 1168 - jakob@cvs.openbsd.org 2001/07/31 12:42:50
1169 [sftp-int.c sftp-server.c]
1170 avoid paths beginning with "//"; <vinschen@redhat.com>
1171 ok markus@
2251e099 1172 - jakob@cvs.openbsd.org 2001/07/31 12:53:34
1173 [scard.c]
1174 close smartcard connection if card is missing
9ff6f66f 1175 - markus@cvs.openbsd.org 2001/08/01 22:03:33
1176 [authfd.c authfd.h readconf.c readconf.h scard.c scard.h ssh-add.c
1177 ssh-agent.c ssh.c]
1178 use strings instead of ints for smartcard reader ids
1930af48 1179 - markus@cvs.openbsd.org 2001/08/01 22:16:45
1180 [ssh.1 sshd.8]
1181 refer to current ietf drafts for protocol v2
4f831fd7 1182 - markus@cvs.openbsd.org 2001/08/01 23:33:09
1183 [ssh-keygen.c]
1184 allow uploading RSA keys for non-default AUT0 (sha1 over passphrase
1185 like sectok).
1a23ac2c 1186 - markus@cvs.openbsd.org 2001/08/01 23:38:45
05b7537a 1187 [scard.c ssh.c]
1188 support finish rsa keys.
1189 free public keys after login -> call finish -> close smartcard.
93a56445 1190 - markus@cvs.openbsd.org 2001/08/02 00:10:17
1191 [ssh-keygen.c]
1192 add -D readerid option (download, i.e. print public RSA key to stdout).
1193 check for card present when uploading keys.
1194 use strings instead of ints for smartcard reader ids, too.
285d2b15 1195 - jakob@cvs.openbsd.org 2001/08/02 08:58:35
1196 [ssh-keygen.c]
1197 change -u (upload smartcard key) to -U. ok markus@
58153e34 1198 - jakob@cvs.openbsd.org 2001/08/02 15:06:52
1199 [ssh-keygen.c]
1200 more verbose usage(). ok markus@
f0d6bdcf 1201 - jakob@cvs.openbsd.org 2001/08/02 15:07:23
1202 [ssh-keygen.1]
1203 document smartcard upload/download. ok markus@
315dfb04 1204 - jakob@cvs.openbsd.org 2001/08/02 15:32:10
1205 [ssh.c]
1206 add smartcard to usage(). ok markus@
3e984472 1207 - jakob@cvs.openbsd.org 2001/08/02 15:43:57
1208 [ssh-agent.c ssh.c ssh-keygen.c]
1209 add /* SMARTCARD */ to #else/#endif. ok markus@
1a23ac2c 1210 - jakob@cvs.openbsd.org 2001/08/02 16:14:05
dd2495cb 1211 [scard.c ssh-agent.c ssh.c ssh-keygen.c]
1212 clean up some /* SMARTCARD */. ok markus@
0f6d5acf 1213 - mpech@cvs.openbsd.org 2001/08/02 18:37:35
1214 [ssh-keyscan.1]
1215 o) .Sh AUTHOR -> .Sh AUTHORS;
1216 o) .Sh EXAMPLE -> .Sh EXAMPLES;
1217 o) Delete .Sh OPTIONS. Text moved to .Sh DESCRIPTION;
1218
1219 millert@ ok
5a26334c 1220 - jakob@cvs.openbsd.org 2001/08/03 10:31:19
1221 [ssh-add.1]
1222 document smartcard options. ok markus@
33e766d2 1223 - jakob@cvs.openbsd.org 2001/08/03 10:31:30
1224 [ssh-add.c ssh-agent.c ssh-keyscan.c]
1225 improve usage(). ok markus@
5061072f 1226 - markus@cvs.openbsd.org 2001/08/05 23:18:20
1227 [ssh-keyscan.1 ssh-keyscan.c]
1228 ssh 2 support; from wayned@users.sourceforge.net
578954b1 1229 - markus@cvs.openbsd.org 2001/08/05 23:29:58
1230 [ssh-keyscan.c]
1231 make -t dsa work with commercial servers, too
cddb9003 1232 - stevesk@cvs.openbsd.org 2001/08/06 19:47:05
1233 [scp.c]
1234 use alarm vs. setitimer for portable; ok markus@
94796c10 1235 - (bal) ssh-keyscan double -lssh hack due to seed_rng().
1a23ac2c 1236 - (bal) Second around of UNICOS patches. A few other things left.
1237 Patches by William L. Jones <jones@mail.utexas.edu>
4f7893dc 1238
29a47408 123920010803
1240 - (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
1241 a fast UltraSPARC.
1242
42ad0eec 124320010726
1244 - (stevesk) use mysignal() in protocol 1 loop now that the SIGCHLD
1245 handler has converged.
1246
aa7dbcdd 124720010725
1248 - (bal) Added 'install-nokeys' to Makefile to assist package builders.
1249
0b7d19eb 125020010724
1251 - (bal) 4711 not 04711 for ssh binary.
1252
ca5c7d6a 125320010722
1254 - (bal) Starting the Unicossmk merger. File merged TODO, configure.in,
1255 myproposal.h, ssh_prng_cmds.in, and openbsd-compat/Makefile.in.
1256 Added openbsd-compat/bsd-cray.c. Rest will be merged after
1257 approval. Selective patches from William L. Jones
1258 <jones@mail.utexas.edu>
7458aff1 1259 - OpenBSD CVS Sync
1260 - markus@cvs.openbsd.org 2001/07/18 21:10:43
1261 [sshpty.c]
1262 pr #1946, allow sshd if /dev is readonly
ec9f3450 1263 - stevesk@cvs.openbsd.org 2001/07/18 21:40:40
1264 [ssh-agent.c]
1265 chdir("/") from bbraun@synack.net; ok markus@
5bef3c35 1266 - stevesk@cvs.openbsd.org 2001/07/19 00:41:44
1267 [ssh.1]
1268 escape chars are below now
7efa8482 1269 - markus@cvs.openbsd.org 2001/07/20 14:46:11
1270 [ssh-agent.c]
1271 do not exit() from signal handlers; ok deraadt@
491f5f7b 1272 - stevesk@cvs.openbsd.org 2001/07/20 18:41:51
1273 [ssh.1]
1274 "the" command line
ca5c7d6a 1275
979b0a64 127620010719
1277 - (tim) [configure.in] put inet_aton back in AC_CHECK_FUNCS.
1278 report from Mark Miller <markm@swoon.net>
1279
6e69a45d 128020010718
1281 - OpenBSD CVS Sync
2c5b1791 1282 - stevesk@cvs.openbsd.org 2001/07/14 15:10:17
1283 [readpass.c sftp-client.c sftp-common.c sftp-glob.c]
1284 delete spurious #includes; ok deraadt@ markus@
68fa858a 1285 - markus@cvs.openbsd.org 2001/07/15 16:17:08
2c5b1791 1286 [serverloop.c]
1287 schedule client alive for ssh2 only, greg@cheers.bungi.com
2c71dfc1 1288 - stevesk@cvs.openbsd.org 2001/07/15 16:57:21
1289 [ssh-agent.1]
1290 -d will not fork; ok markus@
d1fc1b88 1291 - stevesk@cvs.openbsd.org 2001/07/15 16:58:29
68fa858a 1292 [ssh-agent.c]
d1fc1b88 1293 typo in usage; ok markus@
68fa858a 1294 - markus@cvs.openbsd.org 2001/07/17 20:48:42
1295 [ssh-agent.c]
e364646f 1296 update maxfd if maxfd is closed; report from jmcelroy@dtgnet.com
68fa858a 1297 - markus@cvs.openbsd.org 2001/07/17 21:04:58
1298 [channels.c channels.h clientloop.c nchan.c serverloop.c]
489aa2e9 1299 keep track of both maxfd and the size of the malloc'ed fdsets.
1300 update maxfd if maxfd gets closed.
c3941fa6 1301 - mouring@cvs.openbsd.org 2001/07/18 16:45:52
1302 [scp.c]
1303 Missing -o in scp usage()
68fa858a 1304 - (bal) Cleaned up trailing spaces in ChangeLog.
31fb6aaf 1305 - (bal) Allow sshd to switch user context without password for Cygwin.
1306 Patch by Corinna Vinschen <vinschen@redhat.com>
41fcc457 1307 - (bal) Updated cygwin README and ssh-host-config. Patch by
ad0cc858 1308 Corinna Vinschen <vinschen@redhat.com>
6e69a45d 1309
39c98ef7 131020010715
1311 - (bal) Set "BROKEN_GETADDRINFO" for darwin platform. Reported by
1312 Josh Larios <jdlarios@cac.washington.edu>
c14e6239 1313 - (tim) put openssh/openbsd-compat/inet_aton.[ch] back in.
1314 needed by openbsd-compat/fake-getaddrinfo.c
68fa858a 1315
6800f427 131620010714
1317 - (stevesk) change getopt() declaration
763a1a18 1318 - (stevesk) configure.in: use ll suffix for long long constant
1319 in snprintf() test
6800f427 1320
453b4bd0 132120010713
68fa858a 1322 - (djm) Enable /etc/nologin check on PAM systems, as some lack the
1323 pam_nologin module. Report from William Yodlowsky
453b4bd0 1324 <bsd@openbsd.rutgers.edu>
9912296f 1325 - (djm) Revert dirname fix, a better one is on its way.
1ee482c5 1326 - OpenBSD CVS Sync
1327 - markus@cvs.openbsd.org 2001/07/04 22:47:19
1328 [ssh-agent.c]
1329 ignore SIGPIPE when debugging, too
878b5225 1330 - markus@cvs.openbsd.org 2001/07/04 23:13:10
1331 [scard.c scard.h ssh-agent.c]
1332 handle card removal more gracefully, add sc_close() to scard.h
77261db4 1333 - markus@cvs.openbsd.org 2001/07/04 23:39:07
1334 [ssh-agent.c]
1335 for smartcards remove both RSA1/2 keys
a0e0f486 1336 - markus@cvs.openbsd.org 2001/07/04 23:49:27
1337 [ssh-agent.c]
1338 handle mutiple adds of the same smartcard key
62bb2c8f 1339 - espie@cvs.openbsd.org 2001/07/05 11:43:33
1340 [sftp-glob.c]
1341 Directly cast to the right type. Ok markus@
1342 - stevesk@cvs.openbsd.org 2001/07/05 20:32:47
1343 [sshconnect1.c]
1344 statement after label; ok dugsong@
97de229c 1345 - stevesk@cvs.openbsd.org 2001/07/08 15:23:38
1346 [servconf.c]
1347 fix ``MaxStartups max''; ok markus@
f5a1a01a 1348 - fgsch@cvs.openbsd.org 2001/07/09 05:58:47
1349 [ssh.c]
1350 Use getopt(3); markus@ ok.
ed916b28 1351 - deraadt@cvs.openbsd.org 2001/07/09 07:04:53
1352 [session.c sftp-int.c]
1353 correct type on last arg to execl(); nordin@cse.ogi.edu
333b5ba7 1354 - markus@cvs.openbsd.org 2001/07/10 21:49:12
1355 [readpass.c]
1356 don't panic if fork or pipe fail (just return an empty passwd).
46d738cd 1357 - itojun@cvs.openbsd.org 2001/07/11 00:24:53
1358 [servconf.c]
68fa858a 1359 make it compilable in all 4 combination of KRB4/KRB5 settings.
46d738cd 1360 dugsong ok
1361 XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and
1362 -I/usr/include/kerberosV?
afd501f9 1363 - markus@cvs.openbsd.org 2001/07/11 16:29:59
1364 [ssh.c]
1365 sort options string, fix -p, add -k
1366 - markus@cvs.openbsd.org 2001/07/11 18:26:15
1367 [auth.c]
1368 no need to call dirname(pw->pw_dir).
1369 note that dirname(3) modifies its argument on some systems.
82d95536 1370 - (djm) Reorder Makefile.in so clean targets work a little better when
1371 run directly from Makefile.in
1812a662 1372 - (djm) Pull in getopt(3) from OpenBSD libc for the optreset extension.
453b4bd0 1373
85b08d98 137420010711
68fa858a 1375 - (djm) dirname(3) may modify its argument on glibc and other systems.
85b08d98 1376 Patch from markus@, spotted by Tom Holroyd <tomh@po.crl.go.jp>
1377
a96070d4 137820010704
1379 - OpenBSD CVS Sync
1380 - markus@cvs.openbsd.org 2001/06/25 08:25:41
68fa858a 1381 [channels.c channels.h cipher.c clientloop.c compat.c compat.h
1382 hostfile.c kex.c kex.h key.c key.h nchan.c packet.c serverloop.c
a96070d4 1383 session.c session.h sftp-server.c ssh-add.c ssh-agent.c uuencode.h]
1384 update copyright for 2001
8a497b11 1385 - markus@cvs.openbsd.org 2001/06/25 17:18:27
1386 [ssh-keygen.1]
68fa858a 1387 sshd(8) will never read the private keys, but ssh(1) does;
8a497b11 1388 hugh@mimosa.com
6978866a 1389 - provos@cvs.openbsd.org 2001/06/25 17:54:47
1390 [auth.c auth.h auth-rsa.c]
68fa858a 1391 terminate secure_filename checking after checking homedir. that way
ffb215be 1392 it works on AFS. okay markus@
1393 - stevesk@cvs.openbsd.org 2001/06/25 20:26:37
1394 [auth2.c sshconnect2.c]
1395 prototype cleanup; ok markus@
2b30154a 1396 - markus@cvs.openbsd.org 2001/06/26 02:47:07
1397 [ssh-keygen.c]
1398 allow loading a private RSA key to a cyberflex card.
ffdb5d70 1399 - markus@cvs.openbsd.org 2001/06/26 04:07:06
1400 [ssh-agent.1 ssh-agent.c]
1401 add debug flag
983def13 1402 - markus@cvs.openbsd.org 2001/06/26 04:59:59
1403 [authfd.c authfd.h ssh-add.c]
1404 initial support for smartcards in the agent
f7e5ac7b 1405 - markus@cvs.openbsd.org 2001/06/26 05:07:43
1406 [ssh-agent.c]
1407 update usage
2b5fe3b8 1408 - markus@cvs.openbsd.org 2001/06/26 05:33:34
1409 [ssh-agent.c]
1410 more smartcard support.
543baeea 1411 - mpech@cvs.openbsd.org 2001/06/26 05:48:07
1412 [sshd.8]
1413 remove unnecessary .Pp between .It;
1414 millert@ ok
0c9664c2 1415 - markus@cvs.openbsd.org 2001/06/26 05:50:11
1416 [auth2.c]
1417 new interface for secure_filename()
2a1e4639 1418 - itojun@cvs.openbsd.org 2001/06/26 06:32:58
68fa858a 1419 [atomicio.h authfd.h authfile.h auth.h auth-options.h bufaux.h
1420 buffer.h canohost.h channels.h cipher.h clientloop.h compat.h
1421 compress.h crc32.h deattack.h dh.h dispatch.h groupaccess.h
1422 hostfile.h kex.h key.h log.h mac.h match.h misc.h mpaux.h packet.h
2a1e4639 1423 radix.h readconf.h readpass.h rsa.h]
1424 prototype pedant. not very creative...
1425 - () -> (void)
1426 - no variable names
1c06a9ca 1427 - itojun@cvs.openbsd.org 2001/06/26 06:33:07
68fa858a 1428 [servconf.h serverloop.h session.h sftp-client.h sftp-common.h
1429 sftp-glob.h sftp-int.h sshconnect.h ssh-dss.h sshlogin.h sshpty.h
1c06a9ca 1430 ssh-rsa.h tildexpand.h uidswap.h uuencode.h xmalloc.h]
1431 prototype pedant. not very creative...
1432 - () -> (void)
1433 - no variable names
ced49be2 1434 - dugsong@cvs.openbsd.org 2001/06/26 16:15:25
68fa858a 1435 [auth1.c auth.h auth-krb4.c auth-passwd.c readconf.c readconf.h
ced49be2 1436 servconf.c servconf.h session.c sshconnect1.c sshd.c]
68fa858a 1437 Kerberos v5 support for SSH1, mostly from Assar Westerlund
ced49be2 1438 <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok
3474b2b4 1439 - markus@cvs.openbsd.org 2001/06/26 17:25:34
1440 [ssh.1]
1441 document SSH_ASKPASS; fubob@MIT.EDU
255cabd9 1442 - markus@cvs.openbsd.org 2001/06/26 17:27:25
68fa858a 1443 [authfd.h authfile.h auth.h auth-options.h bufaux.h buffer.h
1444 canohost.h channels.h cipher.h clientloop.h compat.h compress.h
1445 crc32.h deattack.h dh.h dispatch.h groupaccess.c groupaccess.h
1446 hostfile.h kex.h key.h log.c log.h mac.h misc.c misc.h mpaux.h
1447 packet.h radix.h readconf.h readpass.h rsa.h servconf.h serverloop.h
1448 session.h sftp-common.c sftp-common.h sftp-glob.h sftp-int.h
1449 sshconnect.h ssh-dss.h sshlogin.h sshpty.h ssh-rsa.h sshtty.h
255cabd9 1450 tildexpand.h uidswap.h uuencode.h xmalloc.h]
1451 remove comments from .h, since they are cut&paste from the .c files
1452 and out of sync
83f46621 1453 - dugsong@cvs.openbsd.org 2001/06/26 17:41:49
1454 [servconf.c]
1455 #include <kafs.h>
57156994 1456 - markus@cvs.openbsd.org 2001/06/26 20:14:11
1457 [key.c key.h ssh.c sshconnect1.c sshconnect2.c]
1458 add smartcard support to the client, too (now you can use both
1459 the agent and the client).
1460 - markus@cvs.openbsd.org 2001/06/27 02:12:54
1461 [serverloop.c serverloop.h session.c session.h]
1462 quick hack to make ssh2 work again.
80f8f24f 1463 - markus@cvs.openbsd.org 2001/06/27 04:48:53
1464 [auth.c match.c sshd.8]
1465 tridge@samba.org
d0bfe096 1466 - markus@cvs.openbsd.org 2001/06/27 05:35:42
1467 [ssh-keygen.c]
1468 use cyberflex_inq_class to inquire class.
2b63e803 1469 - markus@cvs.openbsd.org 2001/06/27 05:42:25
1470 [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
1471 s/generate_additional_parameters/rsa_generate_additional_parameters/
1472 http://www.humppa.com/
34e02b83 1473 - markus@cvs.openbsd.org 2001/06/27 06:26:36
1474 [ssh-add.c]
1475 convert to getopt(3)
d3260e12 1476 - stevesk@cvs.openbsd.org 2001/06/28 19:57:35
1477 [ssh-keygen.c]
1478 '\0' terminated data[] is ok; ok markus@
49ccba9c 1479 - markus@cvs.openbsd.org 2001/06/29 07:06:34
1480 [ssh-keygen.c]
1481 new error handling for cyberflex_*
542d70b8 1482 - markus@cvs.openbsd.org 2001/06/29 07:11:01
1483 [ssh-keygen.c]
1484 initialize early
eea46d13 1485 - stevesk@cvs.openbsd.org 2001/06/29 18:38:44
1486 [clientloop.c]
1487 sync function definition with declaration; ok markus@
8ab2cb35 1488 - stevesk@cvs.openbsd.org 2001/06/29 18:40:28
1489 [channels.c]
1490 use socklen_t for getsockopt arg #5; ok markus@
b3f8a79c 1491 - stevesk@cvs.openbsd.org 2001/06/30 18:08:40
1492 [channels.c channels.h clientloop.c]
1493 adress -> address; ok markus@
5b5d170c 1494 - markus@cvs.openbsd.org 2001/07/02 13:59:15
1495 [serverloop.c session.c session.h]
68fa858a 1496 wait until !session_have_children(); bugreport from
5b5d170c 1497 Lutz.Jaenicke@aet.TU-Cottbus.DE
613021ac 1498 - markus@cvs.openbsd.org 2001/07/02 22:29:20
1499 [readpass.c]
1500 do not return NULL, use "" instead.
666248da 1501 - markus@cvs.openbsd.org 2001/07/02 22:40:18
1502 [ssh-keygen.c]
1503 update for sectok.h interface changes.
3cf2be58 1504 - markus@cvs.openbsd.org 2001/07/02 22:52:57
1505 [channels.c channels.h serverloop.c]
1506 improve cleanup/exit logic in ssh2:
1507 stop listening to channels, detach channel users (e.g. sessions).
1508 wait for children (i.e. dying sessions), send exit messages,
1509 cleanup all channels.
637b033d 1510 - (bal) forget a few new files in sync up.
06be7c3b 1511 - (bal) Makefile fix up requires scard.c
ac96ca42 1512 - (stevesk) sync misc.h
9c328529 1513 - (stevesk) more sync for session.c
4f1f4d8d 1514 - (stevesk) sync servconf.h (comments)
afb9165e 1515 - (tim) [contrib/caldera/openssh.spec] sync with Caldera
d9e3d19f 1516 - (tim) [openbsd-compat/dirname.h] Remove ^M causing some compilers to
1517 issue warning (line 1: tokens ignored at end of directive line)
1518 - (tim) [sshconnect1.c] give the compiler something to do for success:
1519 if KRB5 and AFS are not defined
1520 (ERROR: "sshconnect1.c", line 1274: Syntax error before or at: })
637b033d 1521
aa8d09da 152220010629
1523 - (bal) Removed net_aton() since we don't use it any more
64c4b8d7 1524 - (bal) Fixed _DISABLE_VPOSIX in readpassphrase.c.
7af3215a 1525 - (bal) Updated zlib's home. Thanks to David Howe <DaveHowe@gmx.co.uk>.
16adf618 1526 - (stevesk) remove _REENTRANT #define
16995a2c 1527 - (stevesk) session.c: use u_int for envsize
6a26f353 1528 - (stevesk) remove cli.[ch]
aa8d09da 1529
f11065cb 153020010628
1531 - (djm) Sync openbsd-compat with -current libc
68fa858a 1532 - (djm) Fix from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE> for my
050df9db 1533 broken makefile
07608451 1534 - (bal) Removed strtok_r() and inet_ntop() since they are no longer used.
1535 - (bal) Remove getusershell() since it's no longer used.
f11065cb 1536
78220944 153720010627
1538 - (djm) Reintroduce pam_session call for non-pty sessions.
68fa858a 1539 - (djm) Remove redundant and incorrect test for max auth attempts in
1540 PAM kbdint code. Based on fix from Matthew Melvin
763dfdf0 1541 <matthewm@webcentral.com.au>
f0194608 1542 - (djm) Rename sysconfdir/primes => sysconfdir/moduli
68fa858a 1543 - (djm) Oops, forgot make logic for primes=>moduli. Also try to rename
ff4955c9 1544 existing primes->moduli if it exists.
0eb1a22d 1545 - (djm) Sync with -current openbsd-compat/readpassphrase.c:
1546 - djm@cvs.openbsd.org 2001/06/27 13:23:30
1547 typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@
5ed2bb5b 1548 - (djm) Turn up warnings if gcc or egcs detected
b8fea62d 1549 - (stevesk) for HP-UX 11.X use X/Open socket interface;
1550 pulls in modern socket prototypes and eliminates a number of compiler
1551 warnings. see xopen_networking(7).
fef01705 1552 - (stevesk) fix x11 forwarding from _PATH_XAUTH change
28564873 1553 - (stevesk) use X/Open socket interface for HP-UX 10.X also
78220944 1554
e16f4ac8 155520010625
0cd000dd 1556 - OpenBSD CVS Sync
bc233fdf 1557 - markus@cvs.openbsd.org 2001/06/21 21:08:25
1558 [session.c]
1559 don't reset forced_command (we allow multiple login shells in
1560 ssh2); dwd@bell-labs.com
a5a2da3b 1561 - mpech@cvs.openbsd.org 2001/06/22 10:17:51
1562 [ssh.1 sshd.8 ssh-keyscan.1]
1563 o) .Sh AUTHOR -> .Sh AUTHORS;
1564 o) remove unnecessary .Pp;
1565 o) better -mdoc style;
1566 o) typo;
1567 o) sort SEE ALSO;
a5a2da3b 1568 aaron@ ok
e2854364 1569 - provos@cvs.openbsd.org 2001/06/22 21:27:08
1570 [dh.c pathnames.h]
1571 use /etc/moduli instead of /etc/primes, okay markus@
e2432638 1572 - provos@cvs.openbsd.org 2001/06/22 21:28:53
1573 [sshd.8]
1574 document /etc/moduli
96a7b0cc 1575 - markus@cvs.openbsd.org 2001/06/22 21:55:49
68fa858a 1576 [auth2.c auth-rsa.c pathnames.h ssh.1 sshd.8 sshd_config
96a7b0cc 1577 ssh-keygen.1]
1578 merge authorized_keys2 into authorized_keys.
1579 authorized_keys2 is used for backward compat.
1580 (just append authorized_keys2 to authorized_keys).
826676b3 1581 - provos@cvs.openbsd.org 2001/06/22 21:57:59
1582 [dh.c]
1583 increase linebuffer to deal with larger moduli; use rewind instead of
1584 close/open
bc233fdf 1585 - markus@cvs.openbsd.org 2001/06/22 22:21:20
1586 [sftp-server.c]
1587 allow long usernames/groups in readdir
a599bd06 1588 - markus@cvs.openbsd.org 2001/06/22 23:35:21
2e000c58 1589 [ssh.c]
1590 don't overwrite argv (fixes ssh user@host in 'ps'), report by ericj@
cb220a93 1591 - deraadt@cvs.openbsd.org 2001/06/23 00:16:16
1592 [scp.c]
1593 slightly better care
d0c8ca5c 1594 - markus@cvs.openbsd.org 2001/06/23 00:20:57
1595 [auth2.c auth.c auth.h auth-rh-rsa.c]
1596 *known_hosts2 is obsolete for hostbased authentication and
1597 only used for backward compat. merge ssh1/2 hostkey check
1598 and move it to auth.c
e16f4ac8 1599 - deraadt@cvs.openbsd.org 2001/06/23 02:33:05
1600 [sftp.1 sftp-server.8 ssh-keygen.1]
1601 join .%A entries; most by bk@rt.fm
f49bc4f7 1602 - markus@cvs.openbsd.org 2001/06/23 02:34:33
68fa858a 1603 [kexdh.c kexgex.c kex.h pathnames.h readconf.c servconf.h ssh.1
f49bc4f7 1604 sshconnect1.c sshconnect2.c sshconnect.c sshconnect.h sshd.8]
68fa858a 1605 get rid of known_hosts2, use it for hostkey lookup, but do not
f49bc4f7 1606 modify.
7d747e89 1607 - markus@cvs.openbsd.org 2001/06/23 03:03:59
1608 [sshd.8]
1609 draft-ietf-secsh-dh-group-exchange-01.txt
73473230 1610 - markus@cvs.openbsd.org 2001/06/23 03:04:42
1611 [auth2.c auth-rh-rsa.c]
1612 restore correct ignore_user_known_hosts logic.
c10d042a 1613 - markus@cvs.openbsd.org 2001/06/23 05:26:02
1614 [key.c]
1615 handle sigature of size 0 (some broken clients send this).
7b518233 1616 - deraadt@cvs.openbsd.org 2001/06/23 05:57:09
1617 [sftp.1 sftp-server.8 ssh-keygen.1]
1618 ok, tmac is now fixed
2e0becb6 1619 - markus@cvs.openbsd.org 2001/06/23 06:41:10
1620 [ssh-keygen.c]
1621 try to decode ssh-3.0.0 private rsa keys
1622 (allow migration to openssh, not vice versa), #910
396c147e 1623 - itojun@cvs.openbsd.org 2001/06/23 15:12:20
68fa858a 1624 [auth1.c auth2.c auth2-chall.c authfd.c authfile.c auth-rhosts.c
1625 canohost.c channels.c cipher.c clientloop.c deattack.c dh.c
1626 hostfile.c kex.c kexdh.c kexgex.c key.c nchan.c packet.c radix.c
1627 readpass.c scp.c servconf.c serverloop.c session.c sftp.c
1628 sftp-client.c sftp-glob.c sftp-int.c sftp-server.c ssh-add.c
1629 ssh-agent.c ssh.c sshconnect1.c sshconnect2.c sshconnect.c sshd.c
396c147e 1630 ssh-keygen.c ssh-keyscan.c]
68fa858a 1631 more strict prototypes. raise warning level in Makefile.inc.
396c147e 1632 markus ok'ed
1633 TODO; cleanup headers
a599bd06 1634 - markus@cvs.openbsd.org 2001/06/23 17:05:22
1635 [ssh-keygen.c]
1636 fix import for (broken?) ssh.com/f-secure private keys
1637 (i tested > 1000 RSA keys)
3730bb22 1638 - itojun@cvs.openbsd.org 2001/06/23 17:48:18
1639 [sftp.1 ssh.1 sshd.8 ssh-keyscan.1]
1640 kill whitespace at EOL.
3aca00a3 1641 - markus@cvs.openbsd.org 2001/06/23 19:12:43
1642 [sshd.c]
1643 pidfile/sigterm race; bbraun@synack.net
ce404659 1644 - markus@cvs.openbsd.org 2001/06/23 22:37:46
1645 [sshconnect1.c]
1646 consistent with ssh2: skip key if empty passphrase is entered,
1647 retry num_of_passwd_prompt times if passphrase is wrong. ok fgsch@
2cee8a25 1648 - markus@cvs.openbsd.org 2001/06/24 05:25:10
1649 [auth-options.c match.c match.h]
1650 move ip+hostname check to match.c
1843a425 1651 - markus@cvs.openbsd.org 2001/06/24 05:35:33
1652 [readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c]
1653 switch to readpassphrase(3)
1654 2.7/8-stable needs readpassphrase.[ch] from libc
80097c54 1655 - markus@cvs.openbsd.org 2001/06/24 05:47:13
1656 [sshconnect2.c]
1657 oops, missing format string
b4e7177c 1658 - markus@cvs.openbsd.org 2001/06/24 17:18:31
1659 [ttymodes.c]
1660 passing modes works fine: debug2->3
ab88181c 1661 - (djm) -Wall fix for session.c
3159d49a 1662 - (djm) Bring in readpassphrase() from OpenBSD libc. Compiles OK on Linux and
1663 Solaris
0cd000dd 1664
7751d4eb 166520010622
1666 - (stevesk) handle systems without pw_expire and pw_change.
1667
e04e7a19 166820010621
1669 - OpenBSD CVS Sync
1670 - markus@cvs.openbsd.org 2001/06/16 08:49:38
1671 [misc.c]
1672 typo; dunlap@apl.washington.edu
c03175c6 1673 - markus@cvs.openbsd.org 2001/06/16 08:50:39
1674 [channels.h]
1675 bad //-style comment; thx to stevev@darkwing.uoregon.edu
08c260ea 1676 - markus@cvs.openbsd.org 2001/06/16 08:57:35
1677 [scp.c]
1678 no stdio or exit() in signal handlers.
c4d49b85 1679 - markus@cvs.openbsd.org 2001/06/16 08:58:34
1680 [misc.c]
1681 copy pw_expire and pw_change, too.
dac6753b 1682 - markus@cvs.openbsd.org 2001/06/19 12:34:09
1683 [session.c]
1684 cleanup forced command handling, from dwd@bell-labs.com
ff027d84 1685 - markus@cvs.openbsd.org 2001/06/19 14:09:45
1686 [session.c sshd.8]
1687 disable x11-fwd if use_login is enabled; from lukem@wasabisystems.com
c95add71 1688 - markus@cvs.openbsd.org 2001/06/19 15:40:45
1689 [session.c]
1690 allocate and free at the same level.
d6746a0b 1691 - markus@cvs.openbsd.org 2001/06/20 13:56:39
1692 [channels.c channels.h clientloop.c packet.c serverloop.c]
1693 move from channel_stop_listening to channel_free_all,
1694 call channel_free_all before calling waitpid() in serverloop.
1695 fixes the utmp handling; report from Lutz.Jaenicke@aet.TU-Cottbus.DE
e04e7a19 1696
5ad9f968 169720010615
1698 - (stevesk) don't set SA_RESTART and set SIGCHLD to SIG_DFL
1699 around grantpt().
f7940aa9 1700 - (stevesk) update TODO: STREAMS pty systems don't call vhangup() now
5ad9f968 1701
eb26141e 170220010614
1703 - OpenBSD CVS Sync
1704 - markus@cvs.openbsd.org 2001/06/13 09:10:31
1705 [session.c]
1706 typo, use pid not s->pid, mstone@cs.loyola.edu
1707
86066315 170820010613
eb26141e 1709 - OpenBSD CVS Sync
86066315 1710 - markus@cvs.openbsd.org 2001/06/12 10:58:29
1711 [session.c]
1712 merge session_free into session_close()
1713 merge pty_cleanup_proc into session_pty_cleanup()
653d5f86 1714 - markus@cvs.openbsd.org 2001/06/12 16:10:38
1715 [session.c]
1716 merge ssh1/ssh2 tty msg parse and alloc code
76735fe3 1717 - markus@cvs.openbsd.org 2001/06/12 16:11:26
1718 [packet.c]
1719 do not log() packet_set_maxsize
b44de2b1 1720 - markus@cvs.openbsd.org 2001/06/12 21:21:29
1721 [session.c]
1722 remove xauth-cookie-in-tmp handling. use default $XAUTHORITY, since
1723 we do already trust $HOME/.ssh
1724 you can use .ssh/sshrc and .ssh/environment if you want to customize
1725 the location of the xauth cookies
7a313633 1726 - markus@cvs.openbsd.org 2001/06/12 21:30:57
1727 [session.c]
1728 unused
86066315 1729
2c9d881a 173020010612
38296b32 1731 - scp.c ID update (upstream synced vfsprintf() from us)
1732 - OpenBSD CVS Sync
2c9d881a 1733 - markus@cvs.openbsd.org 2001/06/10 11:29:20
1734 [dispatch.c]
1735 we support rekeying
1736 protocol errors are fatal.
1500bcdd 1737 - markus@cvs.openbsd.org 2001/06/11 10:18:24
1738 [session.c]
1739 reset pointer to NULL after xfree(); report from solar@openwall.com
f740438e 1740 - markus@cvs.openbsd.org 2001/06/11 16:04:38
1741 [sshd.8]
1742 typo; bdubreuil@crrel.usace.army.mil
2c9d881a 1743
b4d02860 174420010611
68fa858a 1745 - (bal) NeXT/MacOS X lack libgen.h and dirname(). Patch by Mark Miller
1746 <markm@swoon.net>
224cbdcc 1747 - (bal) Handle broken krb4 issues on Solaris with multiple defined u_*_t
68fa858a 1748 types. Patch by Jan IVEN <Jan.Iven@cern.ch>
0bb724ce 1749 - (bal) Fixed Makefile.in so that 'configure; make install' works.
b4d02860 1750
bf093080 175120010610
1752 - (bal) Missed two files in major resync. auth-bsdauth.c and auth-skey.c
1753
e697bda7 175420010609
1755 - OpenBSD CVS Sync
1756 - markus@cvs.openbsd.org 2001/05/30 12:55:13
68fa858a 1757 [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
e697bda7 1758 packet.c serverloop.c session.c ssh.c ssh1.h]
1759 channel layer cleanup: merge header files and split .c files
36e1f6a1 1760 - markus@cvs.openbsd.org 2001/05/30 15:20:10
1761 [ssh.c]
1762 merge functions, simplify.
a5efa1bb 1763 - markus@cvs.openbsd.org 2001/05/31 10:30:17
68fa858a 1764 [auth-options.c auth2.c channels.c channels.h clientloop.c nchan.c
a5efa1bb 1765 packet.c serverloop.c session.c ssh.c]
68fa858a 1766 undo the .c file split, just merge the header and keep the cvs
a5efa1bb 1767 history
68fa858a 1768 - (bal) Channels.c and Channels.h -- "Merge Functions, simplify" (draged
8e7895b8 1769 out of ssh Attic)
68fa858a 1770 - (bal) Ooops.. nchan.c (and remove nchan.h) resync from OpenBSD ssh
a98da4aa 1771 Attic.
1772 - OpenBSD CVS Sync
1773 - markus@cvs.openbsd.org 2001/05/31 13:08:04
1774 [sshd_config]
1775 group options and add some more comments
e4f7282d 1776 - markus@cvs.openbsd.org 2001/06/03 14:55:39
1777 [channels.c channels.h session.c]
68fa858a 1778 use fatal_register_cleanup instead of atexit, sync with x11 authdir
e4f7282d 1779 handling
e5b71e99 1780 - markus@cvs.openbsd.org 2001/06/03 19:36:44
1781 [ssh-keygen.1]
1782 1-2 bits of entrophy per character (not per word), ok stevesk@
4fc334a2 1783 - markus@cvs.openbsd.org 2001/06/03 19:38:42
1784 [scp.c]
1785 pass -v to ssh; from slade@shore.net
f5e69c65 1786 - markus@cvs.openbsd.org 2001/06/03 20:06:11
1787 [auth2-chall.c]
68fa858a 1788 the challenge response device decides how to handle non-existing
f5e69c65 1789 users.
1790 -> fake challenges for skey and cryptocard
f0f32b8e 1791 - markus@cvs.openbsd.org 2001/06/04 21:59:43
1792 [channels.c channels.h session.c]
68fa858a 1793 switch uid when cleaning up tmp files and sockets; reported by
f0f32b8e 1794 zen-parse@gmx.net on bugtraq
c9130033 1795 - markus@cvs.openbsd.org 2001/06/04 23:07:21
1796 [clientloop.c serverloop.c sshd.c]
68fa858a 1797 set flags in the signal handlers, do real work in the main loop,
c9130033 1798 ok provos@
8dcd9d5c 1799 - markus@cvs.openbsd.org 2001/06/04 23:16:16
1800 [session.c]
1801 merge ssh1/2 x11-fwd setup, create listener after tmp-dir
aa144206 1802 - pvalchev@cvs.openbsd.org 2001/06/05 05:05:39
1803 [ssh-keyscan.1 ssh-keyscan.c]
1804 License clarification from David Mazieres, ok deraadt@
750c256a 1805 - markus@cvs.openbsd.org 2001/06/05 10:24:32
1806 [channels.c]
1807 don't delete the auth socket in channel_stop_listening()
1808 auth_sock_cleanup_proc() will take care of this.
fc2a1d28 1809 - markus@cvs.openbsd.org 2001/06/05 16:46:19
1810 [session.c]
1811 let session_close() delete the pty. deny x11fwd if xauthfile is set.
d87596b0 1812 - markus@cvs.openbsd.org 2001/06/06 23:13:54
1813 [ssh-dss.c ssh-rsa.c]
1814 cleanup, remove old code
edf9ae81 1815 - markus@cvs.openbsd.org 2001/06/06 23:19:35
1816 [ssh-add.c]
1817 remove debug message; Darren.Moffat@eng.sun.com
2a6a054e 1818 - markus@cvs.openbsd.org 2001/06/07 19:57:53
1819 [auth2.c]
1820 style is used for bsdauth.
1821 disconnect on user/service change (ietf-drafts)
449c5ba5 1822 - markus@cvs.openbsd.org 2001/06/07 20:23:05
68fa858a 1823 [authfd.c authfile.c channels.c kexdh.c kexgex.c packet.c ssh.c
449c5ba5 1824 sshconnect.c sshconnect1.c]
1825 use xxx_put_cstring()
e6abba31 1826 - markus@cvs.openbsd.org 2001/06/07 22:25:02
1827 [session.c]
1828 don't overwrite errno
1829 delay deletion of the xauth cookie
fd9ede94 1830 - markus@cvs.openbsd.org 2001/06/08 15:25:40
1831 [includes.h pathnames.h readconf.c servconf.c]
1832 move the path for xauth to pathnames.h
0abe778b 1833 - (bal) configure.in fix for Tru64 (forgeting to reset $LIB)
83c17f20 1834 - (bal) ANSIify strmode()
68fa858a 1835 - (bal) --with-catman should be --with-mantype patch by Dave
1836 Dykstra <dwd@bell-labs.com>
fd9ede94 1837
4869a96f 183820010606
e697bda7 1839 - OpenBSD CVS Sync
68fa858a 1840 - markus@cvs.openbsd.org 2001/05/17 21:34:15
e697bda7 1841 [ssh.1]
68fa858a 1842 no spaces in PreferredAuthentications;
5ba55ada 1843 meixner@rbg.informatik.tu-darmstadt.de
1844 - markus@cvs.openbsd.org 2001/05/18 14:13:29
68fa858a 1845 [auth-chall.c auth.h auth1.c auth2-chall.c auth2.c readconf.c
5ba55ada 1846 readconf.h servconf.c servconf.h sshconnect1.c sshconnect2.c sshd.c]
1847 improved kbd-interactive support. work by per@appgate.com and me
bc03d5aa 1848 - djm@cvs.openbsd.org 2001/05/19 00:36:40
1849 [session.c]
1850 Disable X11 forwarding if xauth binary is not found. Patch from Nalin
1851 Dahyabhai <nalin@redhat.com>; ok markus@
68fa858a 1852 - markus@cvs.openbsd.org 2001/05/19 16:05:41
1853 [scp.c]
3e4fc5f9 1854 ftruncate() instead of open()+O_TRUNC like rcp.c does
68fa858a 1855 allows scp /path/to/file localhost:/path/to/file
1856 - markus@cvs.openbsd.org 2001/05/19 16:08:43
1857 [sshd.8]
a18395da 1858 sort options; Matthew.Stier@fnc.fujitsu.com
68fa858a 1859 - markus@cvs.openbsd.org 2001/05/19 16:32:16
1860 [ssh.1 sshconnect2.c]
1861 change preferredauthentication order to
1862 publickey,hostbased,password,keyboard-interactive
3398dda9 1863 document that hostbased defaults to no, document order
47bf6266 1864 - markus@cvs.openbsd.org 2001/05/19 16:46:19
68fa858a 1865 [ssh.1 sshd.8]
1866 document MACs defaults with .Dq
1867 - stevesk@cvs.openbsd.org 2001/05/19 19:43:57
1868 [misc.c misc.h servconf.c sshd.8 sshd.c]
1869 sshd command-line arguments and configuration file options that
1870 specify time may be expressed using a sequence of the form:
e2b1fb42 1871 time[qualifier], where time is a positive integer value and qualifier
68fa858a 1872 is one of the following:
1873 <none>,s,m,h,d,w
1874 Examples:
1875 600 600 seconds (10 minutes)
1876 10m 10 minutes
1877 1h30m 1 hour 30 minutes (90 minutes)
1878 ok markus@
7e8c18e9 1879 - stevesk@cvs.openbsd.org 2001/05/19 19:57:09
68fa858a 1880 [channels.c]
1881 typo in error message
e697bda7 1882 - markus@cvs.openbsd.org 2001/05/20 17:20:36
c8445989 1883 [auth-rsa.c auth.c auth.h auth2.c servconf.c servconf.h sshd.8
1884 sshd_config]
68fa858a 1885 configurable authorized_keys{,2} location; originally from peter@;
1886 ok djm@
1ddf764b 1887 - markus@cvs.openbsd.org 2001/05/24 11:12:42
68fa858a 1888 [auth.c]
1889 fix comment; from jakob@
1890 - stevesk@cvs.openbsd.org 2001/05/24 18:57:53
1891 [clientloop.c readconf.c ssh.c ssh.h]
4bf9c10e 1892 don't perform escape processing when ``EscapeChar none''; ok markus@
abe0fb9f 1893 - markus@cvs.openbsd.org 2001/05/25 14:37:32
68fa858a 1894 [ssh-keygen.c]
1895 use -P for -e and -y, too.
63cd7dd0 1896 - markus@cvs.openbsd.org 2001/05/28 08:04:39
68fa858a 1897 [ssh.c]
1898 fix usage()
1899 - markus@cvs.openbsd.org 2001/05/28 10:08:55
1900 [authfile.c]
eb2e1595 1901 key_load_private: set comment to filename for PEM keys
2cf27bc4 1902 - markus@cvs.openbsd.org 2001/05/28 22:51:11
68fa858a 1903 [cipher.c cipher.h]
1904 simpler 3des for ssh1
1905 - markus@cvs.openbsd.org 2001/05/28 23:14:49
1906 [channels.c channels.h nchan.c]
6fd8622b 1907 undo broken channel fix and try a different one. there
68fa858a 1908 should be still some select errors...
1909 - markus@cvs.openbsd.org 2001/05/28 23:25:24
1910 [channels.c]
1911 cleanup, typo
08dcb5d7 1912 - markus@cvs.openbsd.org 2001/05/28 23:58:35
68fa858a 1913 [packet.c packet.h sshconnect.c sshd.c]
1914 remove some lines, simplify.
a10bdd7c 1915 - markus@cvs.openbsd.org 2001/05/29 12:31:27
68fa858a 1916 [authfile.c]
1917 typo
5ba55ada 1918
5cde8062 191920010528
1920 - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c
1921 Patch by Corinna Vinschen <vinschen@redhat.com>
1922
362df52e 192320010517
1924 - OpenBSD CVS Sync
1925 - markus@cvs.openbsd.org 2001/05/12 19:53:13
1926 [sftp-server.c]
1927 readlink does not NULL-terminate; mhe@home.se
6efa3d14 1928 - deraadt@cvs.openbsd.org 2001/05/15 22:04:01
1929 [ssh.1]
1930 X11 forwarding details improved
70ea8327 1931 - markus@cvs.openbsd.org 2001/05/16 20:51:57
1932 [authfile.c]
1933 return comments for private pem files, too; report from nolan@naic.edu
24b6b45f 1934 - markus@cvs.openbsd.org 2001/05/16 21:53:53
1935 [clientloop.c]
1936 check for open sessions before we call select(); fixes the x11 client
1937 bug reported by bowman@math.ualberta.ca
7231bd47 1938 - markus@cvs.openbsd.org 2001/05/16 22:09:21
1939 [channels.c nchan.c]
1940 more select() error fixes (don't set rfd/wfd to -1).
7043a38d 1941 - (bal) Enabled USE_PIPES for Cygwin on Corinna Vinschen <vinschen@redhat.com>
68fa858a 1942 - (bal) Corrected on_exit() emulation via atexit().
362df52e 1943
89aa792b 194420010512
1945 - OpenBSD CVS Sync
1946 - markus@cvs.openbsd.org 2001/05/11 14:59:56
1947 [clientloop.c misc.c misc.h]
1948 add unset_nonblock for stdout/err flushing in client_loop().
286e38f7 1949 - (bal) Patch to partial sync up contrib/solaris/ packaging software.
1950 Patch by pete <ninjaz@webexpress.com>
89aa792b 1951
97430469 195220010511
1953 - OpenBSD CVS Sync
1954 - markus@cvs.openbsd.org 2001/05/09 22:51:57
1955 [channels.c]
1956 fix -R for protocol 2, noticed by greg@nest.cx.
1957 bug was introduced with experimental dynamic forwarding.
a16092bb 1958 - markus@cvs.openbsd.org 2001/05/09 23:01:31
1959 [rijndael.h]
1960 fix prototype; J.S.Peatfield@damtp.cam.ac.uk
97430469 1961
588f4ed0 196220010509
1963 - OpenBSD CVS Sync
1964 - markus@cvs.openbsd.org 2001/05/06 21:23:31
1965 [cli.c]
1966 cli_read() fails to catch SIGINT + overflow; from obdb@zzlevo.net
d18e0850 1967 - markus@cvs.openbsd.org 2001/05/08 19:17:31
a01a10dd 1968 [channels.c serverloop.c clientloop.c]
d18e0850 1969 adds correct error reporting to async connect()s
68fa858a 1970 fixes the server-discards-data-before-connected-bug found by
d18e0850 1971 onoe@sm.sony.co.jp
8a624ebf 1972 - mouring@cvs.openbsd.org 2001/05/08 19:45:25
1973 [misc.c misc.h scp.c sftp.c]
1974 Use addargs() in sftp plus some clean up of addargs(). OK Markus
1b02d786 1975 - markus@cvs.openbsd.org 2001/05/06 21:45:14
1976 [clientloop.c]
68fa858a 1977 use atomicio for flushing stdout/stderr bufs. thanks to
1b02d786 1978 jbw@izanami.cee.hw.ac.uk
010980f6 1979 - markus@cvs.openbsd.org 2001/05/08 22:48:07
1980 [atomicio.c]
1981 no need for xmalloc.h, thanks to espie@
68fa858a 1982 - (bal) UseLogin patch for Solaris/UNICOS. Patch by Wayne Davison
7e2d5fa4 1983 <wayne@blorf.net>
99c8ddac 1984 - (bal) ./configure support to disable SIA on OSF1. Patch by
1985 Chris Adams <cmadams@hiwaay.net>
68fa858a 1986 - (bal) Updates from the Sony NEWS-OS platform by NAKAJI Hiroyuki
b81c369b 1987 <nakaji@tutrp.tut.ac.jp>
588f4ed0 1988
7b22534a 198920010508
68fa858a 1990 - (bal) Fixed configure test for USE_SIA.
7b22534a 1991
94539b2a 199220010506
1993 - (djm) Update config.guess and config.sub with latest versions (from
1994 ftp://ftp.gnu.org/gnu/config/) to allow configure on ia64-hpux.
1995 Suggested by Jason Mader <jason@ncac.gwu.edu>
96c63318 1996 - (bal) White Space and #ifdef sync with OpenBSD
044b0662 1997 - (bal) Add 'seed_rng()' to ssh-add.c
9e9bd8c0 1998 - (bal) CVS ID updates for readpass.c, readpass.h, cli.c, and cli.h
cf7ff074 1999 - OpenBSD CVS Sync
2000 - stevesk@cvs.openbsd.org 2001/05/05 13:42:52
2001 [sftp.1 ssh-add.1 ssh-keygen.1]
2002 typos, grammar
94539b2a 2003
98143cfc 200420010505
2005 - OpenBSD CVS Sync
2006 - stevesk@cvs.openbsd.org 2001/05/04 14:21:56
2007 [ssh.1 sshd.8]
2008 typos
5b9601c8 2009 - markus@cvs.openbsd.org 2001/05/04 14:34:34
2010 [channels.c]
94539b2a 2011 channel_new() reallocs channels[], we cannot use Channel *c after
2012 calling channel_new(), XXX fix this in the future...
719fc62f 2013 - markus@cvs.openbsd.org 2001/05/04 23:47:34
2014 [channels.c channels.h clientloop.c nchan.c nchan.h serverloop.c ssh.c]
68fa858a 2015 move to Channel **channels (instead of Channel *channels), fixes realloc
2016 problems. channel_new now returns a Channel *, favour Channel * over
719fc62f 2017 channel id. remove old channel_allocate interface.
98143cfc 2018
f92fee1f 201920010504
2020 - OpenBSD CVS Sync
2021 - stevesk@cvs.openbsd.org 2001/05/03 15:07:39
2022 [channels.c]
2023 typo in debug() string
503e7e5b 2024 - markus@cvs.openbsd.org 2001/05/03 15:45:15
2025 [session.c]
2026 exec shell -c /bin/sh .ssh/sshrc, from abartlet@pcug.org.au
c98cab9b 2027 - stevesk@cvs.openbsd.org 2001/05/03 21:43:01
2028 [servconf.c]
2029 remove "\n" from fatal()
1fcde3fe 2030 - mouring@cvs.openbsd.org 2001/05/03 23:09:53
2031 [misc.c misc.h scp.c sftp.c]
2032 Move colon() and cleanhost() to misc.c where I should I have put it in
2033 the first place
044aa419 2034 - (bal) Updated Cygwin README by Corinna Vinschen <vinschen@redhat.com>
c7ccfd39 2035 - (bal) Avoid socket file security issues in ssh-agent for Cygwin.
2036 Patch by Egor Duda <deo@logos-m.ru>
f92fee1f 2037
065604bb 203820010503
2039 - OpenBSD CVS Sync
2040 - markus@cvs.openbsd.org 2001/05/02 16:41:20
2041 [ssh-add.c]
2042 fix prompt for ssh-add.
2043
742ee8f2 204420010502
2045 - OpenBSD CVS Sync
2046 - mouring@cvs.openbsd.org 2001/05/02 01:25:39
2047 [readpass.c]
2048 Put the 'const' back into ssh_askpass() function. Pointed out
2049 by Mark Miller <markm@swoon.net>. OK Markus
2050
3435f5a6 205120010501
2052 - OpenBSD CVS Sync
2053 - markus@cvs.openbsd.org 2001/04/30 11:18:52
2054 [readconf.c readconf.h ssh.1 ssh.c sshconnect.c]
2055 implement 'ssh -b bind_address' like 'telnet -b'
eef7adcb 2056 - markus@cvs.openbsd.org 2001/04/30 15:50:46
2057 [compat.c compat.h kex.c]
2058 allow interop with weaker key generation used by ssh-2.0.x, x < 10
ec430473 2059 - markus@cvs.openbsd.org 2001/04/30 16:02:49
2060 [compat.c]
2061 ssh-2.0.10 has the weak-key-bug, too.
3ca6cc45 2062 - (tim) [contrib/caldera/openssh.spec] add Requires line for Caldera 3.1
3435f5a6 2063
e8171bff 206420010430
39aefe7b 2065 - OpenBSD CVS Sync
2066 - markus@cvs.openbsd.org 2001/04/29 18:32:52
2067 [serverloop.c]
2068 fix whitespace
fbe90f7b 2069 - markus@cvs.openbsd.org 2001/04/29 19:16:52
2070 [channels.c clientloop.c compat.c compat.h serverloop.c]
2071 more ssh.com-2.0.x bug-compat; from per@appgate.com
e8171bff 2072 - (tim) New version of mdoc2man.pl from Mark D. Roth <roth+openssh@feep.net>
0b47e48f 2073 - (djm) Add .cvsignore files, suggested by Wayne Davison <wayne@blorf.net>
39aefe7b 2074
baf8c81a 207520010429
2076 - (bal) Updated INSTALL. PCRE moved to a new place.
e878ffe1 2077 - (djm) Release OpenSSH-2.9p1
baf8c81a 2078
0096ac62 207920010427
2080 - (bal) Fixed uidswap.c so it should work on non-posix complient systems.
2081 patch based on 2.5.2 version by djm.
95595a77 2082 - (bal) Build manpages and config files once unless changed. Patch by
2083 Carson Gaspar <carson@taltos.org>
68fa858a 2084 - (bal) arpa/nameser.h does not exist on Cygwin. Patch by Corinna
4a2df58f 2085 Vinschen <vinschen@redhat.com>
5ef815d7 2086 - (bal) Add /etc/sysconfig/sshd support to redhat's sshd.init. Patch by
2087 Pekka Savola <pekkas@netcore.fi>
68fa858a 2088 - (bal) Cygwin lacks setgroups() API. Patch by Corinna Vinschen
229be2df 2089 <vinschen@redhat.com>
cc3ccfdc 2090 - (bal) version.h synced, RPM specs updated for 2.9
b1e2a48c 2091 - (tim) update contrib/caldera files with what Caldera is using.
2092 <sps@caldera.de>
0096ac62 2093
b587c165 209420010425
2095 - OpenBSD CVS Sync
2096 - markus@cvs.openbsd.org 2001/04/23 21:57:07
2097 [ssh-keygen.1 ssh-keygen.c]
2098 allow public key for -e, too
012bc0e1 2099 - markus@cvs.openbsd.org 2001/04/23 22:14:13
2100 [ssh-keygen.c]
2101 remove debug
f8252c48 2102 - (bal) Whitespace resync w/ OpenBSD for uidswap.c
10f72868 2103 - (djm) Add new server configuration directive 'PAMAuthenticationViaKbdInt'
68fa858a 2104 (default: off), implies KbdInteractiveAuthentication. Suggestion from
10f72868 2105 markus@
c2d059b5 2106 - (djm) Include crypt.h if available in auth-passwd.c
533875af 2107 - tim@mindrot.org 2001/04/25 21:38:01 [configure.in]
2108 man page detection fixes for SCO
b587c165 2109
da89cf4d 211020010424
2111 - OpenBSD CVS Sync
2112 - markus@cvs.openbsd.org 2001/04/22 23:58:36
2113 [ssh-keygen.1 ssh.1 sshd.8]
2114 document hostbased and other cleanup
5e29aeaf 2115 - (stevesk) start_pam() doesn't use DNS now for sshd -u0.
3cc990d7 2116 - (stevesk) auth-pam.c: use PERMIT_NO_PASSWD
68fa858a 2117 - (bal) sys/queue.h is bogus for NCR platform. Patch by Daniel Carroll
d8e76a0a 2118 <dan@mesastate.edu>
3644dc25 2119 - (bal) Fixed contrib/postinstall.in. Patch by wsanders@wsanders.net
da89cf4d 2120
a3626e12 212120010422
2122 - OpenBSD CVS Sync
2123 - markus@cvs.openbsd.org 2001/04/20 16:32:22
2124 [uidswap.c]
2125 set non-privileged gid before uid; tholo@ and deraadt@
1a726b04 2126 - mouring@cvs.openbsd.org 2001/04/21 00:55:57
2127 [sftp.1]
2128 Spelling
67b964a1 2129 - djm@cvs.openbsd.org 2001/04/22 08:13:30
2130 [ssh.1]
2131 typos spotted by stevesk@; ok deraadt@
ba917921 2132 - markus@cvs.openbsd.org 2001/04/22 12:34:05
2133 [scp.c]
2134 scp > 2GB; niles@scyld.com; ok deraadt@, djm@
5deceabb 2135 - markus@cvs.openbsd.org 2001/04/22 13:25:37
2136 [ssh-keygen.1 ssh-keygen.c]
2137 rename arguments -x -> -e (export key), -X -> -i (import key)
2138 xref draft-ietf-secsh-publickeyfile-01.txt
2cad6cef 2139 - markus@cvs.openbsd.org 2001/04/22 13:32:27
2140 [sftp-server.8 sftp.1 ssh.1 sshd.8]
2141 xref draft-ietf-secsh-*
bcaa828e 2142 - markus@cvs.openbsd.org 2001/04/22 13:41:02
2143 [ssh-keygen.1 ssh-keygen.c]
2144 style, noted by stevesk; sort flags in usage
a3626e12 2145
df841692 214620010421
2147 - OpenBSD CVS Sync
2148 - djm@cvs.openbsd.org 2001/04/20 07:17:51
2149 [clientloop.c ssh.1]
2150 Split out and improve escape character documentation, mention ~R in
2151 ~? help text; ok markus@
0e7e0abe 2152 - Update RPM spec files for CVS version.h
1ddee76b 2153 - (stevesk) set the default PAM service name to __progname instead
2154 of the hard-coded value "sshd"; from Mark D. Roth <roth@feep.net>
4b28be2c 2155 - (stevesk) document PAM service name change in INSTALL
13dd877b 2156 - tim@mindrot.org 2001/04/21 14:25:57 [Makefile.in configure.in]
2157 fix perl test, fix nroff test, fix Makefile to build outside source tree
df841692 2158
05cc0c99 215920010420
68fa858a 2160 - OpenBSD CVS Sync
05cc0c99 2161 - ian@cvs.openbsd.org 2001/04/18 16:21:05
68fa858a 2162 [ssh-keyscan.1]
2163 Fix typo reported in PR/1779
2164 - markus@cvs.openbsd.org 2001/04/18 21:57:42
2165 [readpass.c ssh-add.c]
561e5254 2166 call askpass from ssh, too, based on work by roth@feep.net, ok deraadt
68fa858a 2167 - markus@cvs.openbsd.org 2001/04/18 22:03:45
2168 [auth2.c sshconnect2.c]
f98c3421 2169 use FDQN with trailing dot in the hostbased auth packets, ok deraadt@
57a5edd8 2170 - markus@cvs.openbsd.org 2001/04/18 22:48:26
68fa858a 2171 [auth2.c]
2172 no longer const
2173 - markus@cvs.openbsd.org 2001/04/18 23:43:26
2174 [auth2.c compat.c sshconnect2.c]
2175 more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works now
8dddf799 2176 (however the 2.1.0 server seems to work only if debug is enabled...)
ae88ea7e 2177 - markus@cvs.openbsd.org 2001/04/18 23:44:51
68fa858a 2178 [authfile.c]
2179 error->debug; noted by fries@
2180 - markus@cvs.openbsd.org 2001/04/19 00:05:11
2181 [auth2.c]
2182 use local variable, no function call needed.
5cf13595 2183 (btw, hostbased works now with ssh.com >= 2.0.13)
431a2493 2184 - (bal) Put scp-common.h back into scp.c (it exists in the upstream
2185 tree) pointed out by Tom Holroyd <tomh@po.crl.go.jp>
05cc0c99 2186
e78e738a 218720010418
68fa858a 2188 - OpenBSD CVS Sync
e78e738a 2189 - markus@cvs.openbsd.org 2001/04/17 19:34:25
3a83b819 2190 [session.c]
2191 move auth_approval to do_authenticated().
2192 do_child(): nuke hostkeys from memory
2193 don't source .ssh/rc for subsystems.
2194 - markus@cvs.openbsd.org 2001/04/18 14:15:00
2195 [canohost.c]
2196 debug->debug3
ce2af031 2197 - (bal) renabled 'catman-do:' and fixed it. So now catman pages should
2198 be working again.
e0c4d3ac 2199 - (bal) Makfile day... Cleaned up multiple mantype support (Patch by
2200 Mark D. Roth <roth+openssh@feep.net>), and fixed PIDDIR support.
3a83b819 2201
8c6b78e4 220220010417
2203 - (bal) Add perl5 check for HP/UX, Removed GNUness from Makefile.in
6d165a89 2204 and temporary commented out 'catman-do:' since it is broken. Patches
8c6b78e4 2205 for the first two by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
a88b7b57 2206 - OpenBSD CVS Sync
53b8fe68 2207 - deraadt@cvs.openbsd.org 2001/04/16 08:26:04
2208 [key.c]
2209 better safe than sorry in later mods; yongari@kt-is.co.kr
2210 - markus@cvs.openbsd.org 2001/04/17 08:14:01
2211 [sshconnect1.c]
2212 check for key!=NULL, thanks to costa
2213 - markus@cvs.openbsd.org 2001/04/17 09:52:48
2214 [clientloop.c]
cf6bc93c 2215 handle EINTR/EAGAIN on read; ok deraadt@
53b8fe68 2216 - markus@cvs.openbsd.org 2001/04/17 10:53:26
2217 [key.c key.h readconf.c readconf.h ssh.1 sshconnect2.c]
e961a8f9 2218 add HostKeyAlgorithms; based on patch from res@shore.net; ok provos@
53b8fe68 2219 - markus@cvs.openbsd.org 2001/04/17 12:55:04
2220 [channels.c ssh.c]
2221 undo socks5 and https support since they are not really used and
2222 only bloat ssh. remove -D from usage(), since '-D' is experimental.
2223
e4664c3e 222420010416
2225 - OpenBSD CVS Sync
2226 - stevesk@cvs.openbsd.org 2001/04/15 01:35:22
2227 [ttymodes.c]
2228 fix comments
ec1f12d3 2229 - markus@cvs.openbsd.org 2001/04/15 08:43:47
2230 [dh.c sftp-glob.c sftp-glob.h sftp-int.c sshconnect2.c sshd.c]
2231 some unused variable and typos; from tomh@po.crl.go.jp
58cfa257 2232 - markus@cvs.openbsd.org 2001/04/15 16:58:03
2233 [authfile.c ssh-keygen.c sshd.c]
2234 don't use errno for key_{load,save}_private; discussion w/ solar@openwall
e968270c 2235 - markus@cvs.openbsd.org 2001/04/15 17:16:00
2236 [clientloop.c]
2237 set stdin/out/err to nonblocking in SSH proto 1, too. suggested by ho@
2238 should fix some of the blocking problems for rsync over SSH-1
84fc17bf 2239 - stevesk@cvs.openbsd.org 2001/04/15 19:41:21
2240 [sshd.8]
2241 some ClientAlive cleanup; ok markus@
b7c70970 2242 - stevesk@cvs.openbsd.org 2001/04/15 21:28:35
2243 [readconf.c servconf.c]
2244 use fatal() or error() vs. fprintf(); ok markus@
5d97cfbf 2245 - (djm) Convert mandoc manpages to man automatically. Patch from Mark D.
2246 Roth <roth+openssh@feep.net>
6023325e 2247 - (bal) CVS ID fix up and slight manpage fix from OpenBSD tree.
47b53518 2248 - (djm) OpenBSD CVS Sync
2249 - mouring@cvs.openbsd.org 2001/04/16 02:31:44
2250 [scp.c sftp.c]
2251 IPv6 support for sftp (which I bungled in my last patch) which is
2252 borrowed from scp.c. Thanks to Markus@ for pointing it out.
764291b3 2253 - deraadt@cvs.openbsd.org 2001/04/16 08:05:34
2254 [xmalloc.c]
2255 xrealloc dealing with ptr == nULL; mouring
f2c2fd71 2256 - djm@cvs.openbsd.org 2001/04/16 08:19:31
2257 [session.c]
68fa858a 2258 Split motd and hushlogin checks into seperate functions, helps for
f2c2fd71 2259 portable. From Chris Adams <cmadams@hiwaay.net>; ok markus@
68fa858a 2260 - Fix OSF SIA support displaying too much information for quiet
2261 logins and logins where access was denied by SIA. Patch from Chris Adams
c96a4aaf 2262 <cmadams@hiwaay.net>
e4664c3e 2263
f03228b1 226420010415
2265 - OpenBSD CVS Sync
2266 - deraadt@cvs.openbsd.org 2001/04/14 04:31:01
2267 [ssh-add.c]
2268 do not double free
9cf972fa 2269 - markus@cvs.openbsd.org 2001/04/14 16:17:14
2270 [channels.c]
2271 remove some channels that are not appropriate for keepalive.
eae942e2 2272 - markus@cvs.openbsd.org 2001/04/14 16:27:57
2273 [ssh-add.c]
2274 use clear_pass instead of xfree()
30dcc918 2275 - stevesk@cvs.openbsd.org 2001/04/14 16:33:20
2276 [clientloop.c packet.h session.c ssh.c ttymodes.c ttymodes.h]
2277 protocol 2 tty modes support; ok markus@
36967a16 2278 - stevesk@cvs.openbsd.org 2001/04/14 17:04:42
2279 [scp.c]
2280 'T' handling rcp/scp sync; ok markus@
e4664c3e 2281 - Missed sshtty.[ch] in Sync.
f03228b1 2282
e400a640 228320010414
2284 - Sync with OpenBSD glob.c, strlcat.c and vis.c changes
68fa858a 2285 - Cygwin sftp/sftp-server binary mode patch from Corinna Vinschen
fe56c12b 2286 <vinschen@redhat.com>
3ffc6336 2287 - OpenBSD CVS Sync
2288 - beck@cvs.openbsd.org 2001/04/13 22:46:54
2289 [channels.c channels.h servconf.c servconf.h serverloop.c sshd.8]
2290 Add options ClientAliveInterval and ClientAliveCountMax to sshd.
2291 This gives the ability to do a "keepalive" via the encrypted channel
2292 which can't be spoofed (unlike TCP keepalives). Useful for when you want
2293 to use ssh connections to authenticate people for something, and know
2294 relatively quickly when they are no longer authenticated. Disabled
2295 by default (of course). ok markus@
e400a640 2296
cc44f691 229720010413
68fa858a 2298 - OpenBSD CVS Sync
2299 - markus@cvs.openbsd.org 2001/04/12 14:29:09
2300 [ssh.c]
2301 show debug output during option processing, report from
cc44f691 2302 pekkas@netcore.fi
8002af61 2303 - markus@cvs.openbsd.org 2001/04/12 19:15:26
68fa858a 2304 [auth-rhosts.c auth.h auth2.c buffer.c canohost.c canohost.h
2305 compat.c compat.h hostfile.c pathnames.h readconf.c readconf.h
2306 servconf.c servconf.h ssh.c sshconnect.c sshconnect.h sshconnect1.c
8002af61 2307 sshconnect2.c sshd_config]
2308 implement HostbasedAuthentication (= RhostRSAAuthentication for ssh v2)
2309 similar to RhostRSAAuthentication unless you enable (the experimental)
2310 HostbasedUsesNameFromPacketOnly option. please test. :)
0140e66a 2311 - markus@cvs.openbsd.org 2001/04/12 19:39:27
2312 [readconf.c]
2313 typo
2d2a2c65 2314 - stevesk@cvs.openbsd.org 2001/04/12 20:09:38
2315 [misc.c misc.h readconf.c servconf.c ssh.c sshd.c]
2316 robust port validation; ok markus@ jakob@
edeeab1e 2317 - mouring@cvs.openbsd.org 2001/04/12 23:17:54
2318 [sftp-int.c sftp-int.h sftp.1 sftp.c]
2319 Add support for:
2320 sftp [user@]host[:file [file]] - Fetch remote file(s)
2321 sftp [user@]host[:dir[/]] - Start in remote dir/
2322 OK deraadt@
57aa8961 2323 - stevesk@cvs.openbsd.org 2001/04/13 01:26:17
2324 [ssh.c]
2325 missing \n in error message
96f8b59f 2326 - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
2327 lack it.
cc44f691 2328
28b9cb4d 232920010412
68fa858a 2330 - OpenBSD CVS Sync
28b9cb4d 2331 - markus@cvs.openbsd.org 2001/04/10 07:46:58
68fa858a 2332 [channels.c]
2333 cleanup socks4 handling
2334 - itojun@cvs.openbsd.org 2001/04/10 09:13:22
c0ecc314 2335 [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
68fa858a 2336 document id_rsa{.pub,}. markus ok
070adba2 2337 - markus@cvs.openbsd.org 2001/04/10 12:15:23
68fa858a 2338 [channels.c]
2339 debug cleanup
45a2e669 2340 - djm@cvs.openbsd.org 2001/04/11 07:06:22
2341 [sftp-int.c]
2342 'mget' and 'mput' aliases; ok markus@
6031af8d 2343 - markus@cvs.openbsd.org 2001/04/11 10:59:01
2344 [ssh.c]
2345 use strtol() for ports, thanks jakob@
6683b40f 2346 - markus@cvs.openbsd.org 2001/04/11 13:56:13
2347 [channels.c ssh.c]
2348 https-connect and socks5 support. i feel so bad.
ff14faf1 2349 - lebel@cvs.openbsd.org 2001/04/11 16:25:30
2350 [sshd.8 sshd.c]
2351 implement the -e option into sshd:
2352 -e When this option is specified, sshd will send the output to the
2353 standard error instead of the system log.
2354 markus@ OK.
28b9cb4d 2355
0a85ab61 235620010410
2357 - OpenBSD CVS Sync
2358 - deraadt@cvs.openbsd.org 2001/04/08 20:52:55
2359 [sftp.c]
2360 do not modify an actual argv[] entry
b2ae83b8 2361 - stevesk@cvs.openbsd.org 2001/04/08 23:28:27
2362 [sshd.8]
2363 spelling
317611b5 2364 - stevesk@cvs.openbsd.org 2001/04/09 00:42:05
2365 [sftp.1]
2366 spelling
a8666d84 2367 - markus@cvs.openbsd.org 2001/04/09 15:12:23
2368 [ssh-add.c]
2369 passphrase caching: ssh-add tries last passphrase, clears passphrase if
2370 not successful and after last try.
2371 based on discussions with espie@, jakob@, ... and code from jakob@ and
2372 wolfgang@wsrcc.com
49ae4185 2373 - markus@cvs.openbsd.org 2001/04/09 15:19:49
2374 [ssh-add.1]
2375 ssh-add retries the last passphrase...
b8a297f1 2376 - stevesk@cvs.openbsd.org 2001/04/09 18:00:15
2377 [sshd.8]
2378 ListenAddress mandoc from aaron@
0a85ab61 2379
6e9944b8 238020010409
febd3f8e 2381 - (stevesk) use setresgid() for setegid() if needed
26de7942 2382 - (stevesk) configure.in: typo
6e9944b8 2383 - OpenBSD CVS Sync
2384 - stevesk@cvs.openbsd.org 2001/04/08 16:01:36
2385 [sshd.8]
2386 document ListenAddress addr:port
d64050ef 2387 - markus@cvs.openbsd.org 2001/04/08 13:03:00
2388 [ssh-add.c]
2389 init pointers with NULL, thanks to danimal@danimal.org
d0a4c20b 2390 - markus@cvs.openbsd.org 2001/04/08 11:27:33
2391 [clientloop.c]
2392 leave_raw_mode if ssh2 "session" is closed
63bd8c36 2393 - markus@cvs.openbsd.org 2001/04/06 21:00:17
2394 [auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth2.c channels.c session.c
2395 ssh.c sshconnect.c sshconnect.h uidswap.c uidswap.h]
2396 do gid/groups-swap in addition to uid-swap, should help if /home/group
2397 is chmod 750 + chgrp grp /home/group/, work be deraadt and me, thanks
2398 to olar@openwall.com is comments. we had many requests for this.
0490e609 2399 - markus@cvs.openbsd.org 2001/04/07 08:55:18
2400 [buffer.c channels.c channels.h readconf.c ssh.c]
68fa858a 2401 allow the ssh client act as a SOCKS4 proxy (dynamic local
2402 portforwarding). work by Dan Kaminsky <dankamin@cisco.com> and me.
2403 thanks to Dan for this great patch: use 'ssh -D 1080 host' and make
0490e609 2404 netscape use localhost:1080 as a socks proxy.
d98d029a 2405 - markus@cvs.openbsd.org 2001/04/08 11:24:33
2406 [uidswap.c]
2407 KNF
6e9944b8 2408
d9d49fdb 240920010408
2410 - OpenBSD CVS Sync
2411 - stevesk@cvs.openbsd.org 2001/04/06 22:12:47
2412 [hostfile.c]
2413 unused; typo in comment
d11c1288 2414 - stevesk@cvs.openbsd.org 2001/04/06 22:25:25
2415 [servconf.c]
2416 in addition to:
2417 ListenAddress host|ipv4_addr|ipv6_addr
2418 permit:
2419 ListenAddress [host|ipv4_addr|ipv6_addr]:port
2420 ListenAddress host|ipv4_addr:port
2421 sshd.8 updates coming. ok markus@
d9d49fdb 2422
613fc910 242320010407
2424 - (bal) CVS ID Resync of version.h
cc94bd38 2425 - OpenBSD CVS Sync
2426 - markus@cvs.openbsd.org 2001/04/05 23:39:20
2427 [serverloop.c]
2428 keep the ssh session even if there is no active channel.
2429 this is more in line with the protocol spec and makes
2430 ssh -N -L 1234:server:110 host
2431 more useful.
2432 based on discussion with <mats@mindbright.se> long time ago
2433 and recent mail from <res@shore.net>
0fc791ba 2434 - deraadt@cvs.openbsd.org 2001/04/06 16:46:59
2435 [scp.c]
2436 remove trailing / from source paths; fixes pr#1756
68fa858a 2437
63f7e231 243820010406
2439 - (stevesk) logintest.c: fix for systems without __progname
72170131 2440 - (stevesk) Makefile.in: log.o is in libssh.a
d8a2f554 2441 - OpenBSD CVS Sync
2442 - markus@cvs.openbsd.org 2001/04/05 10:00:06
2443 [compat.c]
2444 2.3.x does old GEX, too; report jakob@
6ba22c93 2445 - markus@cvs.openbsd.org 2001/04/05 10:39:03
2446 [compress.c compress.h packet.c]
2447 reset compress state per direction when rekeying.
3667ba79 2448 - markus@cvs.openbsd.org 2001/04/05 10:39:48
2449 [version.h]
2450 temporary version 2.5.4 (supports rekeying).
2451 this is not an official release.
cd332296 2452 - markus@cvs.openbsd.org 2001/04/05 10:42:57
68fa858a 2453 [auth-chall.c authfd.c channels.c clientloop.c kex.c kexgex.c key.c
2454 mac.c packet.c serverloop.c sftp-client.c sftp-client.h sftp-glob.c
2455 sftp-glob.h sftp-int.c sftp-server.c sftp.c ssh-keygen.c sshconnect.c
cd332296 2456 sshconnect2.c sshd.c]
2457 fix whitespace: unexpand + trailing spaces.
255cfda1 2458 - markus@cvs.openbsd.org 2001/04/05 11:09:17
2459 [clientloop.c compat.c compat.h]
2460 add SSH_BUG_NOREKEY and detect broken (=all old) openssh versions.
b4a19d21 2461 - markus@cvs.openbsd.org 2001/04/05 15:45:43
2462 [ssh.1]
2463 ssh defaults to protocol v2; from quisar@quisar.ambre.net
46e3af7f 2464 - stevesk@cvs.openbsd.org 2001/04/05 15:48:18
2465 [canohost.c canohost.h session.c]
2466 move get_remote_name_or_ip() to canohost.[ch]; for portable. ok markus@
54506d2e 2467 - markus@cvs.openbsd.org 2001/04/05 20:01:10
2468 [clientloop.c]
2469 for ~R print message if server does not support rekeying. (and fix ~R).
b37caf1a 2470 - markus@cvs.openbsd.org 2001/04/05 21:02:46
2471 [buffer.c]
2472 better error message
eb0dd41f 2473 - markus@cvs.openbsd.org 2001/04/05 21:05:24
2474 [clientloop.c ssh.c]
2475 don't request a session for 'ssh -N', pointed out slade@shore.net
63f7e231 2476
d8ee838b 247720010405
68fa858a 2478 - OpenBSD CVS Sync
2479 - markus@cvs.openbsd.org 2001/04/04 09:48:35
d8ee838b 2480 [kex.c kex.h kexdh.c kexgex.c packet.c sshconnect2.c sshd.c]
68fa858a 2481 don't sent multiple kexinit-requests.
2482 send newkeys, block while waiting for newkeys.
2483 fix comments.
2484 - markus@cvs.openbsd.org 2001/04/04 14:34:58
2485 [clientloop.c kex.c kex.h serverloop.c sshconnect2.c sshd.c]
2486 enable server side rekeying + some rekey related clientup.
7a37c112 2487 todo: we should not send any non-KEX messages after we send KEXINIT
5adb303f 2488 - markus@cvs.openbsd.org 2001/04/04 15:50:55
2489 [compat.c]
2490 f-secure 1.3.2 does not handle IGNORE; from milliondl@ornl.gov
c422989b 2491 - markus@cvs.openbsd.org 2001/04/04 20:25:38
68fa858a 2492 [channels.c channels.h clientloop.c kex.c kex.h serverloop.c
c422989b 2493 sshconnect2.c sshd.c]
2494 more robust rekeying
2495 don't send channel data after rekeying is started.
0715ec6c 2496 - markus@cvs.openbsd.org 2001/04/04 20:32:56
2497 [auth2.c]
2498 we don't care about missing bannerfiles; from tsoome@ut.ee, ok deraadt@
bbb4cc1b 2499 - markus@cvs.openbsd.org 2001/04/04 22:04:35
2500 [kex.c kexgex.c serverloop.c]
2501 parse full kexinit packet.
2502 make server-side more robust, too.
a7ca6275 2503 - markus@cvs.openbsd.org 2001/04/04 23:09:18
2504 [dh.c kex.c packet.c]
2505 clear+free keys,iv for rekeying.
2506 + fix DH mem leaks. ok niels@
86c9e193 2507 - (stevesk) don't use vhangup() if defined(HAVE_DEV_PTMX); also removes
2508 BROKEN_VHANGUP
d8ee838b 2509
9d451c5a 251020010404
2511 - OpenBSD CVS Sync
2512 - deraadt@cvs.openbsd.org 2001/04/02 17:32:23
2513 [ssh-agent.1]
2514 grammar; slade@shore.net
894c5fa6 2515 - stevesk@cvs.openbsd.org 2001/04/03 13:56:11
2516 [sftp-glob.c ssh-agent.c ssh-keygen.c]
2517 free() -> xfree()
a5c9ffdb 2518 - markus@cvs.openbsd.org 2001/04/03 19:53:29
2519 [dh.c dh.h kex.c kex.h sshconnect2.c sshd.c]
2520 move kex to kex*.c, used dispatch_set() callbacks for kex. should
2521 make rekeying easier.
3463ff28 2522 - todd@cvs.openbsd.org 2001/04/03 21:19:38
2523 [ssh_config]
2524 id_rsa1/2 -> id_rsa; ok markus@
d1ac6175 2525 - markus@cvs.openbsd.org 2001/04/03 23:32:12
2526 [kex.c kex.h packet.c sshconnect2.c sshd.c]
2527 undo parts of recent my changes: main part of keyexchange does not
2528 need dispatch-callbacks, since application data is delayed until
2529 the keyexchange completes (if i understand the drafts correctly).
2530 add some infrastructure for re-keying.
e092ce67 2531 - markus@cvs.openbsd.org 2001/04/04 00:06:54
2532 [clientloop.c sshconnect2.c]
2533 enable client rekeying
2534 (1) force rekeying with ~R, or
2535 (2) if the server requests rekeying.
2536 works against ssh-2.0.12/2.0.13/2.1.0/2.2.0/2.3.0/2.3.1/2.4.0
0bc35151 2537 - (bal) Oops.. Missed including kexdh.c and kexgex.c in OpenBSD sync.
9d451c5a 2538
672f212f 253920010403
2540 - OpenBSD CVS Sync
2541 - stevesk@cvs.openbsd.org 2001/04/02 14:15:31
2542 [sshd.8]
2543 typo; ok markus@
6be9a5e8 2544 - stevesk@cvs.openbsd.org 2001/04/02 14:20:23
2545 [readconf.c servconf.c]
2546 correct comment; ok markus@
fe39c3df 2547 - (stevesk) nchan.c: remove ostate checks and add EINVAL to
2548 shutdown(SHUT_RD) error() bypass for HP-UX.
672f212f 2549
0be033ea 255020010402
2551 - (stevesk) log.c openbsd sync; missing newlines
5d9e4c8d 2552 - (stevesk) sshpty.h openbsd sync; PTY_H -> SSHPTY_H
0be033ea 2553
b7a2a476 255420010330
2555 - (djm) Another openbsd-compat/glob.c sync
4047d868 2556 - (djm) OpenBSD CVS Sync
2557 - provos@cvs.openbsd.org 2001/03/28 21:59:41
2558 [kex.c kex.h sshconnect2.c sshd.c]
2559 forgot to include min and max params in hash, okay markus@
c8682232 2560 - provos@cvs.openbsd.org 2001/03/28 22:04:57
2561 [dh.c]
2562 more sanity checking on primes file
d9cd3575 2563 - markus@cvs.openbsd.org 2001/03/28 22:43:31
2564 [auth.h auth2.c auth2-chall.c]
2565 check auth_root_allowed for kbd-int auth, too.
86b878d5 2566 - provos@cvs.openbsd.org 2001/03/29 14:24:59
2567 [sshconnect2.c]
2568 use recommended defaults
1ad64a93 2569 - stevesk@cvs.openbsd.org 2001/03/29 21:06:21
2570 [sshconnect2.c sshd.c]
2571 need to set both STOC and CTOS for SSH_BUG_BIGENDIANAES; ok markus@
03b8f8be 2572 - markus@cvs.openbsd.org 2001/03/29 21:17:40
2573 [dh.c dh.h kex.c kex.h]
2574 prepare for rekeying: move DH code to dh.c
76ca7b01 2575 - djm@cvs.openbsd.org 2001/03/29 23:42:01
2576 [sshd.c]
2577 Protocol 1 key regeneration log => verbose, some KNF; ok markus@
b7a2a476 2578
01ce749f 257920010329
2580 - OpenBSD CVS Sync
2581 - stevesk@cvs.openbsd.org 2001/03/26 15:47:59
2582 [ssh.1]
2583 document more defaults; misc. cleanup. ok markus@
569807fb 2584 - markus@cvs.openbsd.org 2001/03/26 23:12:42
2585 [authfile.c]
2586 KNF
457fc0c6 2587 - markus@cvs.openbsd.org 2001/03/26 23:23:24
2588 [rsa.c rsa.h ssh-agent.c ssh-keygen.c]
2589 try to read private f-secure ssh v2 rsa keys.
1a92bd7e 2590 - markus@cvs.openbsd.org 2001/03/27 10:34:08
2591 [ssh-rsa.c sshd.c]
2592 use EVP_get_digestbynid, reorder some calls and fix missing free.
a4da628b 2593 - markus@cvs.openbsd.org 2001/03/27 10:57:00
2594 [compat.c compat.h ssh-rsa.c]
2595 some older systems use NID_md5 instead of NID_sha1 for RSASSA-PKCS1-v1_5
2596 signatures in SSH protocol 2, ok djm@
db1cd2f3 2597 - provos@cvs.openbsd.org 2001/03/27 17:46:50
2598 [compat.c compat.h dh.c dh.h ssh2.h sshconnect2.c sshd.c version.h]
2599 make dh group exchange more flexible, allow min and max group size,
2600 okay markus@, deraadt@
e5ff6ecf 2601 - stevesk@cvs.openbsd.org 2001/03/28 19:56:23
2602 [scp.c]
2603 start to sync scp closer to rcp; ok markus@
03cb2621 2604 - stevesk@cvs.openbsd.org 2001/03/28 20:04:38
2605 [scp.c]
2606 usage more like rcp and add missing -B to usage; ok markus@
563834bb 2607 - markus@cvs.openbsd.org 2001/03/28 20:50:45
2608 [sshd.c]
2609 call refuse() before close(); from olemx@ans.pl
01ce749f 2610
b5b68128 261120010328
68fa858a 2612 - (djm) Reorder tests and library inclusion for Krb4/AFS to try to
2613 resolve linking conflicts with libcrypto. Report and suggested fix
b5b68128 2614 from Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
edbe6722 2615 - (djm) Work around Solaris' broken struct dirent. Diagnosis and suggested
2616 fix from Philippe Levan <levan@epix.net>
cccfea16 2617 - (djm) Rework krbIV tests to get us closer to building on Redhat. Still
2618 doesn't work because of conflicts between krbIV's and OpenSSL's des.h
8d0cc79b 2619 - (djm) Sync openbsd-compat/glob.c
b5b68128 2620
0c90b590 262120010327
2622 - Attempt sync with sshlogin.c w/ OpenBSD (mainly CVS ID)
68fa858a 2623 - Fix pointer issues in waitpid() and wait() replaces. Patch by Lutz
60a8683f 2624 Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
690d0d7f 2625 - OpenBSD CVS Sync
2626 - djm@cvs.openbsd.org 2001/03/25 00:01:34
2627 [session.c]
2628 shorten; ok markus@
4f4648f9 2629 - stevesk@cvs.openbsd.org 2001/03/25 13:16:11
2630 [servconf.c servconf.h session.c sshd.8 sshd_config]
2631 PrintLastLog option; from chip@valinux.com with some minor
2632 changes by me. ok markus@
9afbfcfa 2633 - markus@cvs.openbsd.org 2001/03/26 08:07:09
68fa858a 2634 [authfile.c authfile.h ssh-add.c ssh-keygen.c ssh.c sshconnect.c
9afbfcfa 2635 sshconnect.h sshconnect1.c sshconnect2.c sshd.c]
2636 simpler key load/save interface, see authfile.h
68fa858a 2637 - (djm) Reestablish PAM credentials (which can be supplemental group
9afbfcfa 2638 memberships) after initgroups() blows them away. Report and suggested
2639 fix from Nalin Dahyabhai <nalin@redhat.com>
0c90b590 2640
b567a40c 264120010324
2642 - Fixed permissions ssh-keyscan. Thanks to Christopher Linn <celinn@mtu.edu>.
80cd07ae 2643 - OpenBSD CVS Sync
2644 - djm@cvs.openbsd.org 2001/03/23 11:04:07
2645 [compat.c compat.h sshconnect2.c sshd.c]
2646 Compat for OpenSSH with broken Rijndael/AES. ok markus@
7af9f7f8 2647 - markus@cvs.openbsd.org 2001/03/23 12:02:49
2648 [auth1.c]
2649 authctxt is now passed to do_authenticated
e285053e 2650 - markus@cvs.openbsd.org 2001/03/23 13:10:57
2651 [sftp-int.c]
2652 fix put, upload to _absolute_ path, ok djm@
1d3c30db 2653 - markus@cvs.openbsd.org 2001/03/23 14:28:32
2654 [session.c sshd.c]
2655 ignore SIGPIPE, restore in child, fixes x11-fwd crashes; with djm@
8ca3f6dc 2656 - (djm) Pull out our own SIGPIPE hacks
b567a40c 2657
8a169574 265820010323
68fa858a 2659 - OpenBSD CVS Sync
8a169574 2660 - deraadt@cvs.openbsd.org 2001/03/22 20:22:55
68fa858a 2661 [sshd.c]
2662 do not place linefeeds in buffer
8a169574 2663
ee110bfb 266420010322
2665 - (djm) Better AIX no tty fix, spotted by Gert Doering <gert@greenie.muc.de>
289ba62e 2666 - (bal) version.c CVS ID resync
a5b09902 2667 - (bal) auth-chall.c auth-passwd.c auth.h auth1.c auth2.c session.c CVS ID
2668 resync
ae7242ef 2669 - (bal) scp.c CVS ID resync
3e587cc3 2670 - OpenBSD CVS Sync
2671 - markus@cvs.openbsd.org 2001/03/20 19:10:16
2672 [readconf.c]
2673 default to SSH protocol version 2
e5d7a405 2674 - markus@cvs.openbsd.org 2001/03/20 19:21:21
2675 [session.c]
2676 remove unused arg
39f7530f 2677 - markus@cvs.openbsd.org 2001/03/20 19:21:21
2678 [session.c]
2679 remove unused arg
bb5639fe 2680 - markus@cvs.openbsd.org 2001/03/21 11:43:45
2681 [auth1.c auth2.c session.c session.h]
2682 merge common ssh v1/2 code
5e7cb456 2683 - jakob@cvs.openbsd.org 2001/03/21 14:20:45
2684 [ssh-keygen.c]
2685 add -B flag to usage
ca4df544 2686 - markus@cvs.openbsd.org 2001/03/21 21:06:30
2687 [session.c]
2688 missing init; from mib@unimelb.edu.au
ee110bfb 2689
f5f6020e 269020010321
68fa858a 2691 - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
f5f6020e 2692 VanDevender <stevev@darkwing.uoregon.edu>
37eadb90 2693 - (djm) Make sure pam_retval is initialised on call to pam_end. Patch
2694 from Solar Designer <solar@openwall.com>
0a3700ee 2695 - (djm) Don't loop forever when changing password via PAM. Patch
2696 from Solar Designer <solar@openwall.com>
0c13ffa2 2697 - (djm) Generate config files before build
7a7101ec 2698 - (djm) Correctly handle SIA and AIX when no tty present. Spotted and
2699 suggested fix from Mike Battersby <mib@unimelb.edu.au>
f5f6020e 2700
8d539493 270120010320
01022caf 2702 - (bal) glob.c update to added GLOB_LIMITS (OpenBSD CVS).
2703 - (bal) glob.c update to set gl_pathv to NULL (OpenBSD CVS).
1620233b 2704 - (bal) Oops. Missed globc.h change (OpenBSD CVS).
614dee3a 2705 - (djm) OpenBSD CVS Sync
2706 - markus@cvs.openbsd.org 2001/03/19 17:07:23
2707 [auth.c readconf.c]
2708 undo /etc/shell and proto 2,1 change for openssh-2.5.2
3dd16786 2709 - markus@cvs.openbsd.org 2001/03/19 17:12:10
2710 [version.h]
2711 version 2.5.2
ea44783f 2712 - (djm) Update RPM spec version
2713 - (djm) Release 2.5.2p1
3743cc2f 2714- tim@mindrot.org 2001/03/19 18:33:47 [defines.h]
2715 change S_ISLNK macro to work for UnixWare 2.03
9887f269 2716- tim@mindrot.org 2001/03/19 20:45:11 [openbsd-compat/glob.c]
2717 add get_arg_max(). Use sysconf() if ARG_MAX is not defined
8d539493 2718
e339aa53 271920010319
68fa858a 2720 - (djm) Seed PRNG at startup, rather than waiting for arc4random calls to
e339aa53 2721 do it implicitly.
7cdb79d4 2722 - (djm) Add getusershell() functions from OpenBSD CVS
b1ed8313 2723 - OpenBSD CVS Sync
2724 - markus@cvs.openbsd.org 2001/03/18 12:07:52
2725 [auth-options.c]
2726 ignore permitopen="host:port" if AllowTcpForwarding==no
f8f230bf 2727 - (djm) Make scp work on systems without 64-bit ints
2538ecf1 2728 - tim@mindrot.org 2001/03/18 18:28:39 [defines.h]
2729 move HAVE_LONG_LONG_INT where it works
d1581d5f 2730 - (bal) Use 'NGROUPS' for NeXT Since 'MAX_NGROUPS' is wrapped up in -lposix
107628c0 2731 stuff. Change suggested by Mark Miller <markm@swoon.net>
d1581d5f 2732 - (bal) Small fix to scp. %lu vs %ld
68fa858a 2733 - (bal) NeXTStep lacks S_ISLNK. Plus split up S_IS*
bb6da70f 2734 - (djm) OpenBSD CVS Sync
2735 - djm@cvs.openbsd.org 2001/03/19 03:52:51
2736 [sftp-client.c]
2737 Report ssh connection closing correctly; ok deraadt@
3a1c54d4 2738 - deraadt@cvs.openbsd.org 2001/03/18 23:30:55
2739 [compat.c compat.h sshd.c]
68fa858a 2740 specifically version match on ssh scanners. do not log scan
3a1c54d4 2741 information to the console
dc504afd 2742 - djm@cvs.openbsd.org 2001/03/19 12:10:17
db4d3098 2743 [sshd.8]
dc504afd 2744 Document permitopen authorized_keys option; ok markus@
babd91d4 2745 - djm@cvs.openbsd.org 2001/03/19 05:49:52
2746 [ssh.1]
2747 document PreferredAuthentications option; ok markus@
05c64611 2748 - (bal) Minor NeXT fixed. Forgot to #undef NGROUPS_MAX
e339aa53 2749
ec0ad9c2 275020010318
68fa858a 2751 - (bal) Fixed scp type casing issue which causes "scp: protocol error:
ec0ad9c2 2752 size not delimited" fatal errors when tranfering.
5cc8d4ad 2753 - OpenBSD CVS Sync
2754 - markus@cvs.openbsd.org 2001/03/17 17:27:59
2755 [auth.c]
2756 check /etc/shells, too
7411201c 2757 - tim@mindrot.org 2001/03/17 18:45:25 [compat.c]
2758 openbsd-compat/fake-regex.h
ec0ad9c2 2759
8a968c25 276020010317
68fa858a 2761 - Support usrinfo() on AIX. Based on patch from Gert Doering
8a968c25 2762 <gert@greenie.muc.de>
bf1d27bd 2763 - OpenBSD CVS Sync
2764 - markus@cvs.openbsd.org 2001/03/15 15:05:59
2765 [scp.c]
2766 use %lld in printf, ok millert@/deraadt@; report from ssh@client.fi
56b3e9ce 2767 - markus@cvs.openbsd.org 2001/03/15 22:07:08
2768 [session.c]
2769 pass Session to do_child + KNF
d50d9b63 2770 - djm@cvs.openbsd.org 2001/03/16 08:16:18
2771 [sftp-client.c sftp-client.h sftp-glob.c sftp-int.c]
2772 Revise globbing for get/put to be more shell-like. In particular,
2773 "get/put file* directory/" now works. ok markus@
f55d1b5f 2774 - markus@cvs.openbsd.org 2001/03/16 09:55:53
2775 [sftp-int.c]
2776 fix memset and whitespace
6a8496e4 2777 - markus@cvs.openbsd.org 2001/03/16 13:44:24
2778 [sftp-int.c]
2779 discourage strcat/strcpy
01794848 2780 - markus@cvs.openbsd.org 2001/03/16 19:06:30
2781 [auth-options.c channels.c channels.h serverloop.c session.c]
2782 implement "permitopen" key option, restricts -L style forwarding to
2783 to specified host:port pairs. based on work by harlan@genua.de
68fa858a 2784 - Check for gl_matchc support in glob_t and fall back to the
40849fdb 2785 openbsd-compat/glob.[ch] support if it does not exist.
8a968c25 2786
4cb5d598 278720010315
2788 - OpenBSD CVS Sync
2789 - markus@cvs.openbsd.org 2001/03/14 08:57:14
2790 [sftp-client.c]
2791 Wall
85cf5827 2792 - markus@cvs.openbsd.org 2001/03/14 15:15:58
2793 [sftp-int.c]
2794 add version command
61b3a2bc 2795 - deraadt@cvs.openbsd.org 2001/03/14 22:50:25
2796 [sftp-server.c]
2797 note no getopt()
51e2fc8f 2798 - (stevesk) ssh-keyscan.c: specify "openbsd-compat/fake-queue.h"
68fa858a 2799 - (bal) Cygwin README change by Corinna Vinschen <vinschen@redhat.com>
4cb5d598 2800
acc9d6d7 280120010314
2802 - OpenBSD CVS Sync
85cf5827 2803 - markus@cvs.openbsd.org 2001/03/13 17:34:42
2804 [auth-options.c]
2805 missing xfree, deny key on parse error; ok stevesk@
2806 - djm@cvs.openbsd.org 2001/03/13 22:42:54
2807 [sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c]
2808 sftp client filename globbing for get, put, ch{mod,grp,own}. ok markus@
84ceda19 2809 - (bal) Fix strerror() in bsd-misc.c
2810 - (djm) Add replacement glob() from OpenBSD libc if the system glob is
2811 missing or lacks the GLOB_ALTDIRFUNC extension
68fa858a 2812 - (djm) Remove -I$(srcdir)/openbsd-compat from CFLAGS, refer to headers
84ceda19 2813 relatively. Avoids conflict between glob.h and /usr/include/glob.h
acc9d6d7 2814
22138a36 281520010313
2816 - OpenBSD CVS Sync
2817 - markus@cvs.openbsd.org 2001/03/12 22:02:02
2818 [key.c key.h ssh-add.c ssh-keygen.c sshconnect.c sshconnect2.c]
2819 remove old key_fingerprint interface, s/_ex//
2820
539af7f5 282120010312
2822 - OpenBSD CVS Sync
2823 - markus@cvs.openbsd.org 2001/03/11 13:25:36
2824 [auth2.c key.c]
2825 debug
301e8e5b 2826 - jakob@cvs.openbsd.org 2001/03/11 15:03:16
2827 [key.c key.h]
2828 add improved fingerprint functions. based on work by Carsten
2829 Raskgaard <cara@int.tele.dk> and modified by me. ok markus@.
954f0550 2830 - jakob@cvs.openbsd.org 2001/03/11 15:04:16
2831 [ssh-keygen.1 ssh-keygen.c]
2832 print both md5, sha1 and bubblebabble fingerprints when using
2833 ssh-keygen -l -v. ok markus@.
08345971 2834 - jakob@cvs.openbsd.org 2001/03/11 15:13:09
2835 [key.c]
2836 cleanup & shorten some var names key_fingerprint_bubblebabble.
64b1aa3b 2837 - deraadt@cvs.openbsd.org 2001/03/11 16:39:03
2838 [ssh-keygen.c]
2839 KNF, and SHA1 binary output is just creeping featurism
733cf7f4 2840 - tim@mindrot.org 2001/03/11 17:29:32 [configure.in]
2841 test if snprintf() supports %ll
2842 add /dev to search path for PRNGD/EGD socket
2843 fix my mistake in USER_PATH test program
79c9ac1b 2844 - OpenBSD CVS Sync
2845 - markus@cvs.openbsd.org 2001/03/11 18:29:51
2846 [key.c]
2847 style+cleanup
aaf45d87 2848 - markus@cvs.openbsd.org 2001/03/11 22:33:24
2849 [ssh-keygen.1 ssh-keygen.c]
2850 remove -v again. use -B instead for bubblebabble. make -B consistent
2851 with -l and make -B work with /path/to/known_hosts. ok deraadt@
a0322342 2852 - (djm) Bump portable version number for generating test RPMs
94dd09e3 2853 - (djm) Add "static_openssl" RPM build option, remove rsh build dependency
68fa858a 2854 - (bal) Reorder includes in Makefile.
539af7f5 2855
d156519a 285620010311
2857 - OpenBSD CVS Sync
2858 - markus@cvs.openbsd.org 2001/03/10 12:48:27
2859 [sshconnect2.c]
2860 ignore nonexisting private keys; report rjmooney@mediaone.net
5e36d59c 2861 - deraadt@cvs.openbsd.org 2001/03/10 12:53:51
2862 [readconf.c ssh_config]
2863 default to SSH2, now that m68k runs fast
2f778758 2864 - stevesk@cvs.openbsd.org 2001/03/10 15:02:05
2865 [ttymodes.c ttymodes.h]
2866 remove unused sgtty macros; ok markus@
99c415db 2867 - deraadt@cvs.openbsd.org 2001/03/10 15:31:00
2868 [compat.c compat.h sshconnect.c]
2869 all known netscreen ssh versions, and older versions of OSU ssh cannot
2870 handle password padding (newer OSU is fixed)
456fce50 2871 - tim@mindrot.org 2001/03/10 16:33:42 [configure.in Makefile.in sshd_config]
2872 make sure $bindir is in USER_PATH so scp will work
cab80f75 2873 - OpenBSD CVS Sync
2874 - markus@cvs.openbsd.org 2001/03/10 17:51:04
2875 [kex.c match.c match.h readconf.c readconf.h sshconnect2.c]
2876 add PreferredAuthentications
d156519a 2877
1c9a907f 287820010310
2879 - OpenBSD CVS Sync
2880 - deraadt@cvs.openbsd.org 2001/03/09 03:14:39
2881 [ssh-keygen.c]
68fa858a 2882 create *.pub files with umask 0644, so that you can mv them to
1c9a907f 2883 authorized_keys
cb7bd922 2884 - deraadt@cvs.openbsd.org 2001/03/09 12:30:29
2885 [sshd.c]
2886 typo; slade@shore.net
61cf0e38 2887 - Removed log.o from sftp client. Not needed.
1c9a907f 2888
385590e4 288920010309
2890 - OpenBSD CVS Sync
2891 - stevesk@cvs.openbsd.org 2001/03/08 18:47:12
2892 [auth1.c]
2893 unused; ok markus@
acf06a60 2894 - stevesk@cvs.openbsd.org 2001/03/08 20:44:48
2895 [sftp.1]
2896 spelling, cleanup; ok deraadt@
fee56204 2897 - markus@cvs.openbsd.org 2001/03/08 21:42:33
2898 [compat.c compat.h readconf.h ssh.c sshconnect1.c sshconnect2.c]
2899 implement client side of SSH2_MSG_USERAUTH_PK_OK (test public key ->
2900 no need to do enter passphrase or do expensive sign operations if the
2901 server does not accept key).
385590e4 2902
3a7fe5ba 290320010308
2904 - OpenBSD CVS Sync
d5ebca2b 2905 - djm@cvs.openbsd.org 2001/03/07 10:11:23
2906 [sftp-client.c sftp-client.h sftp-int.c sftp-server.c sftp.1 sftp.c sftp.h]
2907 Support for new draft (draft-ietf-secsh-filexfer-01). New symlink handling
2908 functions and small protocol change.
2909 - markus@cvs.openbsd.org 2001/03/08 00:15:48
2910 [readconf.c ssh.1]
2911 turn off useprivilegedports by default. only rhost-auth needs
2912 this. older sshd's may need this, too.
097ca118 2913 - (stevesk) Reliant Unix (SNI) needs HAVE_BOGUS_SYS_QUEUE_H;
2914 Dirk Markwardt <D.Markwardt@tu-bs.de>
3a7fe5ba 2915
3251b439 291620010307
2917 - (bal) OpenBSD CVS Sync
2918 - deraadt@cvs.openbsd.org 2001/03/06 06:11:18
2919 [ssh-keyscan.c]
2920 appease gcc
a5ec8a3d 2921 - deraadt@cvs.openbsd.org 2001/03/06 06:11:44
2922 [sftp-int.c sftp.1 sftp.c]
2923 sftp -b batchfile; mouring@etoh.eviladmin.org
17910dce 2924 - deraadt@cvs.openbsd.org 2001/03/06 15:10:42
2925 [sftp.1]
2926 order things
2c86906e 2927 - deraadt@cvs.openbsd.org 2001/03/07 01:19:06
2928 [ssh.1 sshd.8]
2929 the name "secure shell" is boring, noone ever uses it
7daf8515 2930 - deraadt@cvs.openbsd.org 2001/03/07 04:05:58
2931 [ssh.1]
2932 removed dated comment
f52798a4 2933 - Cygwin contrib improvements from Corinna Vinschen <vinschen@redhat.com>
3251b439 2934
657297ff 293520010306
2936 - (bal) OpenBSD CVS Sync
2937 - deraadt@cvs.openbsd.org 2001/03/05 14:28:47
2938 [sshd.8]
2939 alpha order; jcs@rt.fm
7c8f2a26 2940 - stevesk@cvs.openbsd.org 2001/03/05 15:44:51
2941 [servconf.c]
2942 sync error message; ok markus@
f2ba0775 2943 - deraadt@cvs.openbsd.org 2001/03/05 15:56:16
2944 [myproposal.h ssh.1]
2945 switch to aes128-cbc/hmac-md5 by default in SSH2 -- faster;
2946 provos & markus ok
7a6c39a3 2947 - deraadt@cvs.openbsd.org 2001/03/05 16:07:15
2948 [sshd.8]
2949 detail default hmac setup too
7de5b06b 2950 - markus@cvs.openbsd.org 2001/03/05 17:17:21
2951 [kex.c kex.h sshconnect2.c sshd.c]
2952 generate a 2*need size (~300 instead of 1024/2048) random private
2953 exponent during the DH key agreement. according to Niels (the great
2954 german advisor) this is safe since /etc/primes contains strong
2955 primes only.
2956
2957 References:
2958 P. C. van Oorschot and M. J. Wiener, On Diffie-Hellman key
2959 agreement with short exponents, In Advances in Cryptology
2960 - EUROCRYPT'96, LNCS 1070, Springer-Verlag, 1996, pp.332-343.
a5df12e9 2961 - stevesk@cvs.openbsd.org 2001/03/05 17:40:48
2962 [ssh.1]
2963 more ssh_known_hosts2 documentation; ok markus@
0b2190ee 2964 - stevesk@cvs.openbsd.org 2001/03/05 17:58:22
2965 [dh.c]
2966 spelling
bbc62e59 2967 - deraadt@cvs.openbsd.org 2001/03/06 00:33:04
2968 [authfd.c cli.c ssh-agent.c]
2969 EINTR/EAGAIN handling is required in more cases
c16c7f20 2970 - millert@cvs.openbsd.org 2001/03/06 01:06:03
2971 [ssh-keyscan.c]
2972 Don't assume we wil get the version string all in one read().
2973 deraadt@ OK'd
09cb311c 2974 - millert@cvs.openbsd.org 2001/03/06 01:08:27
2975 [clientloop.c]
2976 If read() fails with EINTR deal with it the same way we treat EAGAIN
657297ff 2977
1a2936c4 297820010305
2979 - (bal) CVS ID touch up on sshpty.[ch] and sshlogin.[ch]
68fa858a 2980 - (bal) CVS ID touch up on sftp-int.c
e77df335 2981 - (bal) CVS ID touch up on uuencode.c
6cca9fde 2982 - (bal) CVS ID touch up on auth2.c, serverloop.c, session.c & sshd.c
778f6940 2983 - (bal) OpenBSD CVS Sync
dcb971e1 2984 - deraadt@cvs.openbsd.org 2001/02/17 23:48:48
2985 [sshd.8]
2986 it's the OpenSSH one
778f6940 2987 - deraadt@cvs.openbsd.org 2001/02/21 07:37:04
2988 [ssh-keyscan.c]
2989 inline -> __inline__, and some indent
81333640 2990 - deraadt@cvs.openbsd.org 2001/02/21 09:05:54
2991 [authfile.c]
2992 improve fd handling
79ddf6db 2993 - deraadt@cvs.openbsd.org 2001/02/21 09:12:56
2994 [sftp-server.c]
2995 careful with & and &&; markus ok
96ee8386 2996 - stevesk@cvs.openbsd.org 2001/02/21 21:14:04
2997 [ssh.c]
2998 -i supports DSA identities now; ok markus@
0c126dc9 2999 - deraadt@cvs.openbsd.org 2001/02/22 04:29:37
3000 [servconf.c]
3001 grammar; slade@shore.net
ed2166d8 3002 - deraadt@cvs.openbsd.org 2001/02/22 06:43:55
3003 [ssh-keygen.1 ssh-keygen.c]
3004 document -d, and -t defaults to rsa1
b07ae1e9 3005 - deraadt@cvs.openbsd.org 2001/02/22 08:03:51
3006 [ssh-keygen.1 ssh-keygen.c]
3007 bye bye -d
e2fccec3 3008 - deraadt@cvs.openbsd.org 2001/02/22 18:09:06
3009 [sshd_config]
3010 activate RSA 2 key
e91c60f2 3011 - markus@cvs.openbsd.org 2001/02/22 21:57:27
3012 [ssh.1 sshd.8]
3013 typos/grammar from matt@anzen.com
3b1a83df 3014 - markus@cvs.openbsd.org 2001/02/22 21:59:44
3015 [auth.c auth.h auth1.c auth2.c misc.c misc.h ssh.c]
3016 use pwcopy in ssh.c, too
19d57054 3017 - markus@cvs.openbsd.org 2001/02/23 15:34:53
3018 [serverloop.c]
3019 debug2->3
00be5382 3020 - markus@cvs.openbsd.org 2001/02/23 18:15:13
3021 [sshd.c]
3022 the random session key depends now on the session_key_int
3023 sent by the 'attacker'
3024 dig1 = md5(cookie|session_key_int);
3025 dig2 = md5(dig1|cookie|session_key_int);
3026 fake_session_key = dig1|dig2;
3027 this change is caused by a mail from anakin@pobox.com
3028 patch based on discussions with my german advisor niels@openbsd.org
ec63b02d 3029 - deraadt@cvs.openbsd.org 2001/02/24 10:37:55
3030 [readconf.c]
3031 look for id_rsa by default, before id_dsa
582038fb 3032 - deraadt@cvs.openbsd.org 2001/02/24 10:37:26
3033 [sshd_config]
3034 ssh2 rsa key before dsa key
6e18cb71 3035 - markus@cvs.openbsd.org 2001/02/27 10:35:27
3036 [packet.c]
3037 fix random padding
1b5dfeb2 3038 - markus@cvs.openbsd.org 2001/02/27 11:00:11
3039 [compat.c]
3040 support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
4ab21f86 3041 - deraadt@cvs.openbsd.org 2001/02/28 05:34:28
3042 [misc.c]
3043 pull in protos
167b3512 3044 - deraadt@cvs.openbsd.org 2001/02/28 05:36:28
3045 [sftp.c]
3046 do not kill the subprocess on termination (we will see if this helps
3047 things or hurts things)
7e8911cd 3048 - markus@cvs.openbsd.org 2001/02/28 08:45:39
3049 [clientloop.c]
3050 fix byte counts for ssh protocol v1
ee55dacf 3051 - markus@cvs.openbsd.org 2001/02/28 08:54:55
3052 [channels.c nchan.c nchan.h]
3053 make sure remote stderr does not get truncated.
3054 remove closed fd's from the select mask.
a6215e53 3055 - markus@cvs.openbsd.org 2001/02/28 09:57:07
3056 [packet.c packet.h sshconnect2.c]
3057 in ssh protocol v2 use ignore messages for padding (instead of
3058 trailing \0).
94dfb550 3059 - markus@cvs.openbsd.org 2001/02/28 12:55:07
3060 [channels.c]
3061 unify debug messages
5649fbbe 3062 - deraadt@cvs.openbsd.org 2001/02/28 17:52:54
3063 [misc.c]
3064 for completeness, copy pw_gecos too
0572fe75 3065 - markus@cvs.openbsd.org 2001/02/28 21:21:41
3066 [sshd.c]
3067 generate a fake session id, too
95ce5599 3068 - markus@cvs.openbsd.org 2001/02/28 21:27:48
3069 [channels.c packet.c packet.h serverloop.c]
3070 use ignore message to simulate a SSH2_MSG_CHANNEL_DATA message
3071 use random content in ignore messages.
355724fc 3072 - markus@cvs.openbsd.org 2001/02/28 21:31:32
3073 [channels.c]
3074 typo
c3f7d267 3075 - deraadt@cvs.openbsd.org 2001/03/01 02:11:25
3076 [authfd.c]
3077 split line so that p will have an easier time next time around
a01a5f30 3078 - deraadt@cvs.openbsd.org 2001/03/01 02:29:04
3079 [ssh.c]
3080 shorten usage by a line
12bf85ed 3081 - deraadt@cvs.openbsd.org 2001/03/01 02:45:10
3082 [auth-rsa.c auth2.c deattack.c packet.c]
3083 KNF
4371658c 3084 - deraadt@cvs.openbsd.org 2001/03/01 03:38:33
3085 [cli.c cli.h rijndael.h ssh-keyscan.1]
3086 copyright notices on all source files
ce91d6f8 3087 - markus@cvs.openbsd.org 2001/03/01 22:46:37
3088 [ssh.c]
3089 don't truncate remote ssh-2 commands; from mkubita@securities.cz
3090 use min, not max for logging, fixes overflow.
409edaba 3091 - deraadt@cvs.openbsd.org 2001/03/02 06:21:01
3092 [sshd.8]
3093 explain SIGHUP better
b8dc87d3 3094 - deraadt@cvs.openbsd.org 2001/03/02 09:42:49
3095 [sshd.8]
3096 doc the dsa/rsa key pair files
f3c7c613 3097 - deraadt@cvs.openbsd.org 2001/03/02 18:54:31
3098 [atomicio.c atomicio.h auth-chall.c auth.c auth2-chall.c crc32.h
3099 scp.c serverloop.c session.c sftp-server.8 sftp.1 ssh-add.1 ssh-add.c
3100 ssh-agent.1 ssh-agent.c ssh-keygen.1 ssh.1 sshd.8]
3101 make copyright lines the same format
2671b47f 3102 - deraadt@cvs.openbsd.org 2001/03/03 06:53:12
3103 [ssh-keyscan.c]
3104 standard theo sweep
ff7fee59 3105 - millert@cvs.openbsd.org 2001/03/03 21:19:41
3106 [ssh-keyscan.c]
3107 Dynamically allocate read_wait and its copies. Since maxfd is
3108 based on resource limits it is often (usually?) larger than FD_SETSIZE.
c8d75031 3109 - millert@cvs.openbsd.org 2001/03/03 21:40:30
3110 [sftp-server.c]
3111 Dynamically allocate fd_set; deraadt@ OK
20e04e90 3112 - millert@cvs.openbsd.org 2001/03/03 21:41:07
3113 [packet.c]
3114 Dynamically allocate fd_set; deraadt@ OK
dce9bac5 3115 - deraadt@cvs.openbsd.org 2001/03/03 22:07:50
3116 [sftp-server.c]
3117 KNF
c630ce76 3118 - markus@cvs.openbsd.org 2001/03/03 23:52:22
3119 [sftp.c]
3120 clean up arg processing. based on work by Christophe_Moret@hp.com
20244695 3121 - markus@cvs.openbsd.org 2001/03/03 23:59:34
3122 [log.c ssh.c]
3123 log*.c -> log.c
61f8a1d1 3124 - markus@cvs.openbsd.org 2001/03/04 00:03:59
3125 [channels.c]
3126 debug1->2
38967add 3127 - stevesk@cvs.openbsd.org 2001/03/04 10:57:53
3128 [ssh.c]
3129 add -m to usage; ok markus@
46f23b8d 3130 - stevesk@cvs.openbsd.org 2001/03/04 11:04:41
3131 [sshd.8]
3132 small cleanup and clarify for PermitRootLogin; ok markus@
9c81df4c 3133 - stevesk@cvs.openbsd.org 2001/03/04 11:16:06
3134 [servconf.c sshd.8]
3135 kill obsolete RandomSeed; ok markus@ deraadt@
f5429434 3136 - stevesk@cvs.openbsd.org 2001/03/04 12:54:04
3137 [sshd.8]
3138 spelling
54b974dc 3139 - millert@cvs.openbsd.org 2001/03/04 17:42:28
3140 [authfd.c channels.c dh.c log.c readconf.c servconf.c sftp-int.c
3141 ssh.c sshconnect.c sshd.c]
3142 log functions should not be passed strings that end in newline as they
3143 get passed on to syslog() and when logging to stderr, do_log() appends
3144 its own newline.
51c251f0 3145 - deraadt@cvs.openbsd.org 2001/03/04 18:21:28
3146 [sshd.8]
3147 list SSH2 ciphers
2605addd 3148 - (bal) Put HAVE_PW_CLASS_IN_PASSWD back into pwcopy()
164c80dc 3149 - (bal) Fix up logging since it changed. removed log-*.c
cc3067d6 3150 - (djm) Fix up LOG_AUTHPRIV for systems that have it
70a052c7 3151 - (stevesk) OpenBSD sync:
3152 - deraadt@cvs.openbsd.org 2001/03/05 08:37:27
3153 [ssh-keyscan.c]
3154 skip inlining, why bother
5152d46f 3155 - (stevesk) sftp.c: handle __progname
1a2936c4 3156
40edd7ef 315720010304
3158 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
889fbcd3 3159 - (bal) Updated contrib/README to remove 'make-ssh-known-hosts' and
3160 give Mark Roth credit for mdoc2man.pl
40edd7ef 3161
9817de5f 316220010303
40edd7ef 3163 - (djm) Remove make-ssh-known-hosts.pl, ssh-keyscan is better.
3164 - (djm) Document PAM ChallengeResponseAuthentication in sshd.8
3165 - (djm) Disable and comment ChallengeResponseAuthentication in sshd_config
3166 - (djm) Allow PRNGd entropy collection from localhost TCP socket. Replace
68fa858a 3167 "--with-egd-pool" configure option with "--with-prngd-socket" and
9bdd5929 3168 "--with-prngd-port" options. Debugged and improved by Lutz Jaenicke
3169 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
9817de5f 3170
20cad736 317120010301
68fa858a 3172 - (djm) Properly add -lcrypt if needed.
5f404be3 3173 - (djm) Force standard PAM conversation function in a few more places.
68fa858a 3174 Patch from Redhat 2.5.1p1-2 RPM, probably Nalin Dahyabhai
5f404be3 3175 <nalin@redhat.com>
68fa858a 3176 - (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen
480eb294 3177 <vinschen@redhat.com>
ad1f4a20 3178 - (djm) Released 2.5.1p2
20cad736 3179
cf0c5df5 318020010228
3181 - (djm) Detect endianness in configure and use it in rijndael.c. Fixes
3182 "Bad packet length" bugs.
68fa858a 3183 - (djm) Fully revert PAM session patch (again). All PAM session init is
403f5a8e 3184 now done before the final fork().
065ef9b1 3185 - (djm) EGD detection patch from Tim Rice <tim@multitalents.net>
d9b1f19a 3186 - (djm) Remove /tmp from EGD socket search list
cf0c5df5 3187
86b416a7 318820010227
68fa858a 3189 - (bal) Applied shutdown() patch for sftp.c by Corinna Vinschen
51fb577a 3190 <vinschen@redhat.com>
2af09193 3191 - (bal) OpenBSD Sync
3192 - markus@cvs.openbsd.org 2001/02/23 15:37:45
3193 [session.c]
3194 handle SSH_PROTOFLAG_SCREEN_NUMBER for buggy clients
68fa858a 3195 - (bal) sshd.init support for all Redhat release. Patch by Jim Knoble
a892c46e 3196 <jmknoble@jmknoble.cx>
68fa858a 3197 - (djm) Fix up POSIX saved uid support. Report from Mark Miller
f4e9a0e1 3198 <markm@swoon.net>
3199 - (djm) Search for -lcrypt on FreeBSD too
c7c72446 3200 - (djm) fatal() on OpenSSL version mismatch
27cf96de 3201 - (djm) Move PAM init to after fork for non-Solaris derived PAMs
d5c4c52e 3202 - (djm) Warning fix on entropy.c saved uid stuff. Patch from Mark Miller
3203 <markm@swoon.net>
4bc6dd70 3204 - (djm) Fix PAM fix
4236bde4 3205 - (djm) Remove 'noreplace' flag from sshd_config in RPM spec files. This
3206 change is being made as 2.5.x configfiles are not back-compatible with
64e0e67e 3207 2.3.x.
3208 - (djm) Avoid warnings for missing broken IP_TOS. Patch from Mark Miller
3209 <markm@swoon.net>
68fa858a 3210 - (djm) Open Server 5 doesn't need BROKEN_SAVED_UIDS. Patch from Tim Rice
a29d3f1c 3211 <tim@multitalents.net>
68fa858a 3212 - (djm) Avoid multiple definition of _PATH_LS. Patch from Tim Rice
a29d3f1c 3213 <tim@multitalents.net>
51fb577a 3214
4925395f 321520010226
3216 - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
68fa858a 3217 - (djm) Some systems (SCO3, NeXT) have weird saved uid semantics.
e9a13ac1 3218 Based on patch from Tim Rice <tim@multitalents.net>
4925395f 3219
1eb4ec64 322020010225
3221 - (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
3222 Patch from Adrian Ho <lexfiend@usa.net>
490cad94 3223 - (bal) Replace 'unsigned long long' to 'u_int64_t' since not every
3224 platform defines u_int64_t as being that.
1eb4ec64 3225
a738c3b0 322620010224
68fa858a 3227 - (bal) Missed part of the UNIX sockets patch. Patch by Corinna
a738c3b0 3228 Vinschen <vinschen@redhat.com>
3229 - (bal) Reorder where 'strftime' is detected to resolve linking
3230 issues on SCO. Patch by Tim Rice <tim@multitalents.net>
3231
8fd97cc4 323220010224
3233 - (bal) pam_stack fix to correctly detect between RH7 and older RHs.
3234 Patch by Pekka Savola <pekkas@netcore.fi>
8f0b3553 3235 - (bal) Renamed sigaction.[ch] to sigact.[ch]. Causes problems with
3236 some platforms.
3d114925 3237 - (bal) Generalize lack of UNIX sockets since this also effects Cray
3238 not just Cygwin. Based on patch by Wendy Palm <wendyp@cray.com>
8fd97cc4 3239
14a49e44 324020010223
3241 - (bal) Fix --define rh7 in openssh.spec file. Patch by Steve Tell
3242 <tell@telltronics.org>
cb291102 3243 - (bal) Patch to force OpenSSH rpm to require the same version of OpenSSL
3244 that it was compiled against. Patch by Pekka Savola <pekkas@netcore.fi>
68fa858a 3245 - (bal) Double -I for OpenSSL on SCO. Patch by Tim Rice
5a67331c 3246 <tim@multitalents.net>
14a49e44 3247
68fa858a 324820010222
73d6d7fa 3249 - (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
ca742b3b 3250 - (bal) Added mdoc2man.pl from Mark Roth <roth@feep.net>
3251 - (bal) Removed reference to liblogin from contrib/README. It was
3252 integrated into OpenSSH a long while ago.
2a81eb9f 3253 - (stevesk) remove erroneous #ifdef sgi code.
3254 Michael Stone <mstone@cs.loyola.edu>
73d6d7fa 3255
fbf305f1 325620010221
3257 - (bal) Removed -L/usr/ucblib -R/usr/ucblib for Solaris platform.
68fa858a 3258 - (bal) Fixed OpenSSL rework to use $saved_*. Patch by Tim Rice
9dd3bc84 3259 <tim@multitalents.net>
1fe61b2e 3260 - (bal) Reverted out of 2001/02/15 patch by djm below because it
3261 breaks Solaris.
3262 - (djm) Move PAM session setup back to before setuid to user.
3263 fixes problems on Solaris-drived PAMs.
266140a8 3264 - (stevesk) session.c: back out to where we were before:
68fa858a 3265 - (djm) Move PAM session initialisation until after fork in sshd. Patch
266140a8 3266 from Nalin Dahyabhai <nalin@redhat.com>
9dd3bc84 3267
8b3319f4 326820010220
3269 - (bal) Fix mixed up params to memmove() from Jan 5th in setenv.c and
3270 getcwd.c.
c2b544a5 3271 - (bal) OpenBSD CVS Sync:
3272 - deraadt@cvs.openbsd.org 2001/02/19 23:09:05
3273 [sshd.c]
3274 clarify message to make it not mention "ident"
8b3319f4 3275
1729c161 327620010219
3277 - (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
3278 pty.[ch] -> sshpty.[ch]
d6f13fbb 3279 - (djm) Rework search for OpenSSL location. Skip directories which don't
3280 exist, don't add -L$ssldir/lib if it doesn't exist. Should help SCO
3281 with its limit of 6 -L options.
0476625f 3282 - OpenBSD CVS Sync:
3283 - reinhard@cvs.openbsd.org 2001/02/17 08:24:40
3284 [sftp.1]
3285 typo
3286 - deraadt@cvs.openbsd.org 2001/02/17 16:28:58
3287 [ssh.c]
3288 cleanup -V output; noted by millert
3289 - deraadt@cvs.openbsd.org 2001/02/17 16:48:48
3290 [sshd.8]
3291 it's the OpenSSH one
3292 - markus@cvs.openbsd.org 2001/02/18 11:33:54
3293 [dispatch.c]
3294 typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi
3295 - markus@cvs.openbsd.org 2001/02/19 02:53:32
3296 [compat.c compat.h serverloop.c]
3297 ssh-1.2.{18-22} has broken handling of ignore messages; report from
3298 itojun@
3299 - markus@cvs.openbsd.org 2001/02/19 03:35:23
3300 [version.h]
3301 OpenSSH_2.5.1 adds bug compat with 1.2.{18-22}
3302 - deraadt@cvs.openbsd.org 2001/02/19 03:36:25
3303 [scp.c]
3304 np is changed by recursion; vinschen@redhat.com
3305 - Update versions in RPM spec files
3306 - Release 2.5.1p1
1729c161 3307
663fd560 330820010218
68fa858a 3309 - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice
3310 <tim@multitalents.net>
25cd3375 3311 - (Bal) Patch for lack of RA_RESTART in misc.c for mysignal by
3312 stevesk
68fa858a 3313 - (djm) Fix my breaking of cygwin builds, Patch from Corinna Vinschen
58e7f038 3314 <vinschen@redhat.com> and myself.
32ced054 3315 - (djm) Close listen_sock on bind() failures. Patch from Arkadiusz
3316 Miskiewicz <misiek@pld.ORG.PL>
6a951840 3317 - (djm) Robustify EGD/PRNGd code in face of socket closures. Patch from
3318 Todd C. Miller <Todd.Miller@courtesan.com>
68fa858a 3319 - (djm) Use ttyname() to determine name of tty returned by openpty()
3320 rather then risking overflow. Patch from Marek Michalkiewicz
b82f1310 3321 <marekm@amelek.gda.pl>
68fa858a 3322 - (djm) Swapped tests for no_libsocket and no_libnsl in configure.in.
bdf80b2c 3323 Patch from Marek Michalkiewicz <marekm@amelek.gda.pl>
af8fda37 3324 - (djm) Doc fixes from Pekka Savola <pekkas@netcore.fi>
68fa858a 3325 - (djm) Use SA_INTERRUPT along SA_RESTART if present (equivalent for
df538d55 3326 SunOS)
68fa858a 3327 - (djm) SCO needs librpc for libwrap. Patch from Tim Rice
f61d6b17 3328 <tim@multitalents.net>
dfef7e7e 3329 - (stevesk) misc.c: cpp rework of SA_(INTERRUPT|RESTART) handling.
36a358ca 3330 - (stevesk) scp.c: use mysignal() for updateprogressmeter() handler.
68fa858a 3331 - (djm) SA_INTERRUPT is the converse of SA_RESTART, apply it only for
d54d99a3 3332 SIGALRM.
e1a023df 3333 - (djm) Move entropy.c over to mysignal()
68fa858a 3334 - (djm) SunOS 4.x also needs to define HAVE_BOGUS_SYS_QUEUE_H as it has
3335 a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C.
667beaa9 3336 Miller <Todd.Miller@courtesan.com>
ecdde3d8 3337 - (djm) Update RPM spec files for 2.5.0p1
51ee9048 3338 - (djm) Merge BSD_AUTH support from Markus Friedl and David J. MacKenzie
3339 enable with --with-bsd-auth.
2adddc78 3340 - (stevesk) entropy.c: typo; should be SIGPIPE
663fd560 3341
0b1728c5 334220010217
3343 - (bal) OpenBSD Sync:
3344 - markus@cvs.openbsd.org 2001/02/16 13:38:18
68fa858a 3345 [channel.c]
3346 remove debug
c8b058b4 3347 - markus@cvs.openbsd.org 2001/02/16 14:03:43
3348 [session.c]
3349 proper payload-length check for x11 w/o screen-number
0b1728c5 3350
b41d8d4d 335120010216
3352 - (bal) added '--with-prce' to allow overriding of system regex when
3353 required (tested by David Dulek <ddulek@fastenal.com>)
d6fdb079 3354 - (bal) Added DG/UX case and set that they have a broken IPTOS.
278588d8 3355 - (djm) Mini-configure reorder patch from Tim Rice <tim@multitalents.net>
3356 Fixes linking on SCO.
68fa858a 3357 - (djm) Make gnome-ssh-askpass handle multi-line prompts. Patch from
0ceb21d6 3358 Nalin Dahyabhai <nalin@redhat.com>
3359 - (djm) BSD license for gnome-ssh-askpass (was X11)
3360 - (djm) KNF on gnome-ssh-askpass
ed6553e2 3361 - (djm) USE_PIPES for a few more sysv platforms
3362 - (djm) Cleanup configure.in a little
3363 - (djm) Ask users to check config.log when we can't find necessary libs
aca75d94 3364 - (djm) Set "login ID" on systems with setluid. Only enabled for SCO
3365 OpenServer for now. Based on patch from svaughan <svaughan@asterion.com>
0ae4fe1d 3366 - (djm) OpenBSD CVS:
3367 - markus@cvs.openbsd.org 2001/02/15 16:19:59
3368 [channels.c channels.h serverloop.c sshconnect.c sshconnect.h]
3369 [sshconnect1.c sshconnect2.c]
3370 genericize password padding function for SSH1 and SSH2.
3371 add stylized echo to 2, too.
3372 - (djm) Add roundup() macro to defines.h
9535dddf 3373 - (stevesk) set SA_RESTART flag in mysignal() for SIGCHLD;
3374 needed on Unixware 2.x.
b41d8d4d 3375
0086bfaf 337620010215
68fa858a 3377 - (djm) Move PAM session setup back to before setuid to user. Fixes
0086bfaf 3378 problems on Solaris-derived PAMs.
e11aab29 3379 - (djm) Clean up PAM namespace. Suggested by Darren Moffat
3380 <Darren.Moffat@eng.sun.com>
9e3c31f7 3381 - (bal) Sync w/ OpenSSH for new release
3382 - markus@cvs.openbsd.org 2001/02/12 12:45:06
3383 [sshconnect1.c]
3384 fix xmalloc(0), ok dugsong@
b2552997 3385 - markus@cvs.openbsd.org 2001/02/11 12:59:25
3386 [Makefile.in sshd.8 sshconnect2.c readconf.h readconf.c packet.c
3387 sshd.c ssh.c ssh.1 servconf.h servconf.c myproposal.h kex.h kex.c]
3388 1) clean up the MAC support for SSH-2
3389 2) allow you to specify the MAC with 'ssh -m'
3390 3) or the 'MACs' keyword in ssh(d)_config
3391 4) add hmac-{md5,sha1}-96
3392 ok stevesk@, provos@
15853e93 3393 - markus@cvs.openbsd.org 2001/02/12 16:16:23
3394 [auth-passwd.c auth.c auth.h auth1.c auth2.c servconf.c servconf.h
3395 ssh-keygen.c sshd.8]
3396 PermitRootLogin={yes,without-password,forced-commands-only,no}
3397 (before this change, root could login even if PermitRootLogin==no)
7cc4cf0a 3398 - deraadt@cvs.openbsd.org 2001/02/12 22:56:09
fd193ca4 3399 [clientloop.c packet.c ssh-keyscan.c]
3400 deal with EAGAIN/EINTR selects which were skipped
7cc4cf0a 3401 - markus@cvs.openssh.org 2001/02/13 22:49:40
3402 [auth1.c auth2.c]
3403 setproctitle(user) only if getpwnam succeeds
3404 - markus@cvs.openbsd.org 2001/02/12 23:26:20
3405 [sshd.c]
3406 missing memset; from solar@openwall.com
3407 - stevesk@cvs.openbsd.org 2001/02/12 20:53:33
3408 [sftp-int.c]
3409 lumask now works with 1 numeric arg; ok markus@, djm@
3410 - djm@cvs.openbsd.org 2001/02/14 9:46:03
3411 [sftp-client.c sftp-int.c sftp.1]
3412 Fix and document 'preserve modes & times' option ('-p' flag in sftp);
3413 ok markus@
0b16bb01 3414 - (bal) replaced PATH_MAX in sftp-int.c w/ MAXPATHLEN.
3415 - (djm) Move to Jim's 1.2.0 X11 askpass program
62da27dd 3416 - (stevesk) OpenBSD sync:
3417 - deraadt@cvs.openbsd.org 2001/02/15 01:38:04
3418 [serverloop.c]
3419 indent
0b16bb01 3420
1c2d0a13 342120010214
3422 - (djm) Don't try to close PAM session or delete credentials if the
68fa858a 3423 session has not been open or credentials not set. Based on patch from
1c2d0a13 3424 Andrew Bartlett <abartlet@pcug.org.au>
68fa858a 3425 - (djm) Move PAM session initialisation until after fork in sshd. Patch
0ab1bcba 3426 from Nalin Dahyabhai <nalin@redhat.com>
958e5ae4 3427 - (bal) Missing function prototype in bsd-snprintf.c patch by
3428 Mark Miller <markm@swoon.net>
b7ccb051 3429 - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams
3430 <cmadams@hiwaay.net> with a little modification and KNF.
815800e1 3431 - (stevesk) fix for SIA patch, misplaced session_setup_sia()
1c2d0a13 3432
0610439b 343320010213
84eb157c 3434 - (djm) Only test -S potential EGD sockets if they exist and are readable.
f1312c76 3435 - (bal) Cleaned out bsd-snprintf.c. VARARGS have been banished and
3436 I did a base KNF over the whe whole file to make it more acceptable.
3437 (backed out of original patch and removed it from ChangeLog)
01f13020 3438 - (bal) Use chown() if fchown() does not exist in ftp-server.c patch by
3439 Tim Rice <tim@multitalents.net>
8d60e965 3440 - (stevesk) auth1.c: fix PAM passwordless check.
0610439b 3441
894a4851 344220010212
68fa858a 3443 - (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1",
3444 --define "skip_gnome_askpass 1", --define "rh7 1" and make the
3445 implicit rpm-3.0.5 dependancy explicit. Patch and suggestions from
894a4851 3446 Pekka Savola <pekkas@netcore.fi>
782d6a0d 3447 - (djm) Clean up PCRE text in INSTALL
68fa858a 3448 - (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby
77db6c3f 3449 <mib@unimelb.edu.au>
6f68f28a 3450 - (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
01a7bc9a 3451 - (stevesk) session.c: remove debugging code.
894a4851 3452
abf1f107 345320010211
3454 - (bal) OpenBSD Sync
3455 - markus@cvs.openbsd.org 2001/02/07 22:35:46
3456 [auth1.c auth2.c sshd.c]
3457 move k_setpag() to a central place; ok dugsong@
c845316f 3458 - markus@cvs.openbsd.org 2001/02/10 12:52:02
3459 [auth2.c]
3460 offer passwd before s/key
e6fa162e 3461 - markus@cvs.openbsd.org 2001/02/8 22:37:10
3462 [canohost.c]
3463 remove last call to sprintf; ok deraadt@
0ab4b0f0 3464 - markus@cvs.openbsd.org 2001/02/10 1:33:32
3465 [canohost.c]
3466 add debug message, since sshd blocks here if DNS is not available
7f8ea238 3467 - markus@cvs.openbsd.org 2001/02/10 12:44:02
3468 [cli.c]
3469 don't call vis() for \r
5c470997 3470 - danh@cvs.openbsd.org 2001/02/10 0:12:43
3471 [scp.c]
3472 revert a small change to allow -r option to work again; ok deraadt@
3473 - danh@cvs.openbsd.org 2001/02/10 15:14:11
3474 [scp.c]
3475 fix memory leak; ok markus@
a0e6fead 3476 - djm@cvs.openbsd.org 2001/02/10 0:45:52
3477 [scp.1]
3478 Mention that you can quote pathnames with spaces in them
b3106440 3479 - markus@cvs.openbsd.org 2001/02/10 1:46:28
3480 [ssh.c]
3481 remove mapping of argv[0] -> hostname
f72e01a5 3482 - markus@cvs.openbsd.org 2001/02/06 22:26:17
3483 [sshconnect2.c]
3484 do not ask for passphrase in batch mode; report from ejb@ql.org
3485 - itojun@cvs.opebsd.org 2001/02/08 10:47:05
5d1d11d1 3486 [sshconnect.c sshconnect1.c sshconnect2.c]
68fa858a 3487 %.30s is too short for IPv6 numeric address. use %.128s for now.
f72e01a5 3488 markus ok
3489 - markus@cvs.openbsd.org 2001/02/09 12:28:35
3490 [sshconnect2.c]
3491 do not free twice, thanks to /etc/malloc.conf
3492 - markus@cvs.openbsd.org 2001/02/09 17:10:53
3493 [sshconnect2.c]
3494 partial success: debug->log; "Permission denied" if no more auth methods
3495 - markus@cvs.openbsd.org 2001/02/10 12:09:21
3496 [sshconnect2.c]
3497 remove some lines
e0b2cf6b 3498 - markus@cvs.openbsd.org 2001/02/09 13:38:07
3499 [auth-options.c]
3500 reset options if no option is given; from han.holl@prismant.nl
ca910e13 3501 - markus@cvs.openbsd.org 2001/02/08 21:58:28
3502 [channels.c]
3503 nuke sprintf, ok deraadt@
3504 - markus@cvs.openbsd.org 2001/02/08 21:58:28
3505 [channels.c]
3506 nuke sprintf, ok deraadt@
affa8be4 3507 - markus@cvs.openbsd.org 2001/02/06 22:43:02
3508 [clientloop.h]
3509 remove confusing callback code
d2c46e77 3510 - deraadt@cvs.openbsd.org 2001/02/08 14:39:36
3511 [readconf.c]
3512 snprintf
cc8aca8a 3513 - itojun@cvs.openbsd.org 2001/02/08 19:30:52
3514 sync with netbsd tree changes.
3515 - more strict prototypes, include necessary headers
3516 - use paths.h/pathnames.h decls
3517 - size_t typecase to int -> u_long
5be2ec5e 3518 - itojun@cvs.openbsd.org 2001/02/07 18:04:50
3519 [ssh-keyscan.c]
3520 fix size_t -> int cast (use u_long). markus ok
3521 - markus@cvs.openbsd.org 2001/02/07 22:43:16
3522 [ssh-keyscan.c]
3523 s/getline/Linebuf_getline/; from roumen.petrov@skalasoft.com
3524 - itojun@cvs.openbsd.org 2001/02/09 9:04:59
3525 [ssh-keyscan.c]
68fa858a 3526 do not assume malloc() returns zero-filled region. found by
5be2ec5e 3527 malloc.conf=AJ.
f21032a6 3528 - markus@cvs.openbsd.org 2001/02/08 22:35:30
3529 [sshconnect.c]
68fa858a 3530 don't connect if batch_mode is true and stricthostkeychecking set to
f21032a6 3531 'ask'
7bbcc167 3532 - djm@cvs.openbsd.org 2001/02/04 21:26:07
3533 [sshd_config]
3534 type: ok markus@
3535 - deraadt@cvs.openbsd.org 2001/02/06 22:07:50
3536 [sshd_config]
3537 enable sftp-server by default
a2e6d17d 3538 - deraadt 2001/02/07 8:57:26
3539 [xmalloc.c]
3540 deal with new ANSI malloc stuff
3541 - markus@cvs.openbsd.org 2001/02/07 16:46:08
3542 [xmalloc.c]
3543 typo in fatal()
3544 - itojun@cvs.openbsd.org 2001/02/07 18:04:50
3545 [xmalloc.c]
3546 fix size_t -> int cast (use u_long). markus ok
4ef922e3 3547 - 1.47 Thu Feb 8 23:11:42 GMT 2001 by dugsong
3548 [serverloop.c sshconnect1.c]
68fa858a 3549 mitigate SSH1 traffic analysis - from Solar Designer
4ef922e3 3550 <solar@openwall.com>, ok provos@
68fa858a 3551 - (bal) fixed sftp-client.c. Return 'status' instead of '0'
ca910e13 3552 (from the OpenBSD tree)
6b442913 3553 - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
27df9d4a 3554 - (bal) sftp-sever.c '%8lld' to '%8llu' (OpenBSD Sync)
17321afe 3555 - (bal) uuencode.c resync w/ OpenBSD tree, plus whitespace.
f98d56f0 3556 - (bal) A bit more whitespace cleanup
68fa858a 3557 - (djm) Set PAM_RHOST earlier, patch from Andrew Bartlett
e275684f 3558 <abartlet@pcug.org.au>
b27e97b1 3559 - (stevesk) misc.c: ssh.h not needed.
38a316c0 3560 - (stevesk) compat.c: more friendly cpp error
94f38e16 3561 - (stevesk) OpenBSD sync:
3562 - stevesk@cvs.openbsd.org 2001/02/11 06:15:57
3563 [LICENSE]
3564 typos and small cleanup; ok deraadt@
abf1f107 3565
0426a3b4 356620010210
3567 - (djm) Sync sftp and scp stuff from OpenBSD:
3568 - djm@cvs.openbsd.org 2001/02/07 03:55:13
3569 [sftp-client.c]
3570 Don't free handles before we are done with them. Based on work from
3571 Corinna Vinschen <vinschen@redhat.com>. ok markus@
3572 - djm@cvs.openbsd.org 2001/02/06 22:32:53
3573 [sftp.1]
3574 Punctuation fix from Pekka Savola <pekkas@netcore.fi>
3575 - deraadt@cvs.openbsd.org 2001/02/07 04:07:29
3576 [sftp.1]
3577 pretty up significantly
3578 - itojun@cvs.openbsd.org 2001/02/07 06:49:42
3579 [sftp.1]
3580 .Bl-.El mismatch. markus ok
3581 - djm@cvs.openbsd.org 2001/02/07 06:12:30
3582 [sftp-int.c]
3583 Check that target is a directory before doing ls; ok markus@
3584 - itojun@cvs.openbsd.org 2001/02/07 11:01:18
3585 [scp.c sftp-client.c sftp-server.c]
3586 unsigned long long -> %llu, not %qu. markus ok
3587 - stevesk@cvs.openbsd.org 2001/02/07 11:10:39
3588 [sftp.1 sftp-int.c]
3589 more man page cleanup and sync of help text with man page; ok markus@
3590 - markus@cvs.openbsd.org 2001/02/07 14:58:34
3591 [sftp-client.c]
3592 older servers reply with SSH2_FXP_NAME + count==0 instead of EOF
3593 - djm@cvs.openbsd.org 2001/02/07 15:27:19
3594 [sftp.c]
3595 Don't forward agent and X11 in sftp. Suggestion from Roumen Petrov
3596 <roumen.petrov@skalasoft.com>
3597 - stevesk@cvs.openbsd.org 2001/02/07 15:36:04
3598 [sftp-int.c]
3599 portable; ok markus@
3600 - stevesk@cvs.openbsd.org 2001/02/07 15:55:47
3601 [sftp-int.c]
3602 lowercase cmds[].c also; ok markus@
3603 - markus@cvs.openbsd.org 2001/02/07 17:04:52
3604 [pathnames.h sftp.c]
3605 allow sftp over ssh protocol 1; ok djm@
3606 - deraadt@cvs.openbsd.org 2001/02/08 07:38:55
3607 [scp.c]
3608 memory leak fix, and snprintf throughout
3609 - deraadt@cvs.openbsd.org 2001/02/08 08:02:02
3610 [sftp-int.c]
3611 plug a memory leak
3612 - stevesk@cvs.openbsd.org 2001/02/08 10:11:23
3613 [session.c sftp-client.c]
3614 %i -> %d
3615 - stevesk@cvs.openbsd.org 2001/02/08 10:57:59
3616 [sftp-int.c]
3617 typo
3618 - stevesk@cvs.openbsd.org 2001/02/08 15:28:07
3619 [sftp-int.c pathnames.h]
3620 _PATH_LS; ok markus@
3621 - djm@cvs.openbsd.org 2001/02/09 04:46:25
3622 [sftp-int.c]
3623 Check for NULL attribs for chown, chmod & chgrp operations, only send
3624 relevant attribs back to server; ok markus@
96b64eb0 3625 - djm@cvs.openbsd.org 2001/02/06 15:05:25
3626 [sftp.c]
3627 Use getopt to process commandline arguments
3628 - djm@cvs.openbsd.org 2001/02/06 15:06:21
3629 [sftp.c ]
3630 Wait for ssh subprocess at exit
3631 - djm@cvs.openbsd.org 2001/02/06 15:18:16
3632 [sftp-int.c]
3633 stat target for remote chdir before doing chdir
3634 - djm@cvs.openbsd.org 2001/02/06 15:32:54
3635 [sftp.1]
3636 Punctuation fix from Pekka Savola <pekkas@netcore.fi>
3637 - provos@cvs.openbsd.org 2001/02/05 22:22:02
3638 [sftp-int.c]
3639 cleanup get_pathname, fix pwd after failed cd. okay djm@
0426a3b4 3640 - (djm) Update makefile.in for _PATH_SFTP_SERVER
c9f5e42e 3641 - (bal) sftp-client.c replace NULL w/ 0 in do_ls() (pending in OpenBSD tree)
0426a3b4 3642
6d1e1d2b 364320010209
68fa858a 3644 - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
6d1e1d2b 3645 <rjmooney@mediaone.net>
bb0c1991 3646 - (bal) .c.o rule in openbsd-compat/Makefile.in did not make it to the
68fa858a 3647 main tree while porting forward. Pointed out by Lutz Jaenicke
bb0c1991 3648 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
f902d909 3649 - (bal) double entry in configure.in. Pointed out by Lutz Jaenicke
3650 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
25f4c264 3651 - (stevesk) OpenBSD sync:
3652 - markus@cvs.openbsd.org 2001/02/08 11:20:01
3653 [auth2.c]
3654 strict checking
3655 - markus@cvs.openbsd.org 2001/02/08 11:15:22
3656 [version.h]
3657 update to 2.3.2
3658 - markus@cvs.openbsd.org 2001/02/08 11:12:30
3659 [auth2.c]
3660 fix typo
72b3f75d 3661 - (djm) Update spec files
0ed28836 3662 - (bal) OpenBSD sync:
3663 - deraadt@cvs.openbsd.org 2001/02/08 14:38:54
3664 [scp.c]
3665 memory leak fix, and snprintf throughout
1fc8ccdf 3666 - markus@cvs.openbsd.org 2001/02/06 22:43:02
3667 [clientloop.c]
3668 remove confusing callback code
0b202697 3669 - (djm) Add CVS Id's to files that we have missed
5ca51e19 3670 - (bal) OpenBSD Sync (more):
3671 - itojun@cvs.openbsd.org 2001/02/08 19:30:52
3672 sync with netbsd tree changes.
3673 - more strict prototypes, include necessary headers
3674 - use paths.h/pathnames.h decls
3675 - size_t typecase to int -> u_long
1f3bf5aa 3676 - markus@cvs.openbsd.org 2001/02/06 22:07:42
3677 [ssh.c]
3678 fatal() if subsystem fails
3679 - markus@cvs.openbsd.org 2001/02/06 22:43:02
3680 [ssh.c]
3681 remove confusing callback code
3682 - jakob@cvs.openbsd.org 2001/02/06 23:03:24
3683 [ssh.c]
3684 add -1 option (force protocol version 1). ok markus@
3685 - jakob@cvs.openbsd.org 2001/02/06 23:06:21
3686 [ssh.c]
3687 reorder -{1,2,4,6} options. ok markus@
e6aa01b4 3688 - (bal) Missing 'const' in readpass.h
9c5a8165 3689 - (bal) OpenBSD Sync (so at least the thing compiles for 2.3.2 =)
3690 - djm@cvs.openbsd.org 2001/02/06 23:30:28
3691 [sftp-client.c]
3692 replace arc4random with counter for request ids; ok markus@
68fa858a 3693 - (djm) Define _PATH_TTY for systems that don't. Report from Lutz
bc79ed5c 3694 Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
6d1e1d2b 3695
6a25c04c 369620010208
3697 - (djm) Don't delete external askpass program in make uninstall target.
3698 Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com>
6958bd37 3699 - (djm) Fix linking of sftp, don't need arc4random any more.
3700 - (djm) Try to use shell that supports "test -S" for EGD socket search.
3701 Based on patch from Tim Rice <tim@multitalents.net>
6a25c04c 3702
547519f0 370320010207
bee0a37e 3704 - (bal) Save the whole path to AR in configure. Some Solaris 2.7 installs
3705 seem lose track of it while in openbsd-compat/ (two confirmed reports)
5c377b3b 3706 - (djm) Much KNF on PAM code
547519f0 3707 - (djm) Revise auth-pam.c conversation function to be a little more
3708 readable.
5c377b3b 3709 - (djm) Revise kbd-int PAM conversation function to fold all text messages
3710 to before first prompt. Fixes hangs if last pam_message did not require
3711 a reply.
3712 - (djm) Fix password changing when using PAM kbd-int authentication
bee0a37e 3713
547519f0 371420010205
2b87da3b 3715 - (bal) Disable groupaccess by setting NGROUPS_MAX to 0 for platforms
99286dc8 3716 that don't have NGROUPS_MAX.
57559587 3717 - (bal) AIX patch for auth1.c by William L. Jones <jones@hpc.utexas.edu>
2b87da3b 3718 - (stevesk) OpenBSD sync:
3719 - stevesk@cvs.openbsd.org 2001/02/04 08:32:27
3720 [many files; did this manually to our top-level source dir]
3721 unexpand and remove end-of-line whitespace; ok markus@
408ba72f 3722 - stevesk@cvs.openbsd.org 2001/02/04 15:21:19
3723 [sftp-server.c]
3724 SSH2_FILEXFER_ATTR_UIDGID support; ok markus@
ec2a033a 3725 - deraadt@cvs.openbsd.org 2001/02/04 17:02:32
3726 [sftp-int.c]
3727 ? == help
3728 - deraadt@cvs.openbsd.org 2001/02/04 16:47:46
3729 [sftp-int.c]
3730 sort commands, so that abbreviations work as expected
3731 - stevesk@cvs.openbsd.org 2001/02/04 15:17:52
3732 [sftp-int.c]
3733 debugging sftp: precedence and missing break. chmod, chown, chgrp
3734 seem to be working now.
3735 - markus@cvs.openbsd.org 2001/02/04 14:41:21
3736 [sftp-int.c]
3737 use base 8 for umask/chmod
3738 - markus@cvs.openbsd.org 2001/02/04 11:11:54
3739 [sftp-int.c]
3740 fix LCD
c44559d2 3741 - markus@cvs.openbsd.org 2001/02/04 08:10:44
3742 [ssh.1]
3743 typo; dpo@club-internet.fr
a5930351 3744 - stevesk@cvs.openbsd.org 2001/02/04 06:30:12
3745 [auth2.c authfd.c packet.c]
3746 remove duplicate #include's; ok markus@
6a416424 3747 - deraadt@cvs.openbsd.org 2001/02/04 16:56:23
3748 [scp.c sshd.c]
3749 alpha happiness
3750 - stevesk@cvs.openbsd.org 2001/02/04 15:12:17
3751 [sshd.c]
3752 precedence; ok markus@
02a024dd 3753 - deraadt@cvs.openbsd.org 2001/02/04 08:14:15
6a416424 3754 [ssh.c sshd.c]
3755 make the alpha happy
02a024dd 3756 - markus@cvs.openbsd.org 2001/01/31 13:37:24
3757 [channels.c channels.h serverloop.c ssh.c]
68fa858a 3758 do not disconnect if local port forwarding fails, e.g. if port is
547519f0 3759 already in use
02a024dd 3760 - markus@cvs.openbsd.org 2001/02/01 14:58:09
3761 [channels.c]
3762 use ipaddr in channel messages, ietf-secsh wants this
3763 - markus@cvs.openbsd.org 2001/01/31 12:26:20
3764 [channels.c]
68fa858a 3765 ssh.com-2.0.1x does not send additional info in CHANNEL_OPEN_FAILURE
547519f0 3766 messages; bug report from edmundo@rano.org
a741554f 3767 - markus@cvs.openbsd.org 2001/01/31 13:48:09
3768 [sshconnect2.c]
3769 unused
9378f292 3770 - deraadt@cvs.openbsd.org 2001/02/04 08:23:08
3771 [sftp-client.c sftp-server.c]
3772 make gcc on the alpha even happier
1fc243d1 3773
547519f0 377420010204
781a0585 3775 - (bal) I think this is the last of the bsd-*.h that don't belong.
634e0b53 3776 - (bal) Minor Makefile fix
f0f14bea 3777 - (bal) openbsd-compat/Makefile minor fix. Ensure dependancies are done
61e96248 3778 right.
78987b57 3779 - (bal) Changed order of LIB="" in -with-skey due to library resolving.
166e4f2a 3780 - (bal) next-posix.h changed to bsd-nextstep.h
61e96248 3781 - (djm) OpenBSD CVS sync:
3782 - markus@cvs.openbsd.org 2001/02/03 03:08:38
3783 [auth-options.c auth-rh-rsa.c auth-rhosts.c auth.c canohost.c]
3784 [canohost.h servconf.c servconf.h session.c sshconnect1.c sshd.8]
3785 [sshd_config]
3786 make ReverseMappingCheck optional in sshd_config; ok djm@,dugsong@
3787 - markus@cvs.openbsd.org 2001/02/03 03:19:51
3788 [ssh.1 sshd.8 sshd_config]
3789 Skey is now called ChallengeResponse
3790 - markus@cvs.openbsd.org 2001/02/03 03:43:09
3791 [sshd.8]
3792 use no-pty option in .ssh/authorized_keys* if you need a 8-bit clean
3793 channel. note from Erik.Anggard@cygate.se (pr/1659)
3794 - stevesk@cvs.openbsd.org 2001/02/03 10:03:06
3795 [ssh.1]
3796 typos; ok markus@
3797 - djm@cvs.openbsd.org 2001/02/04 04:11:56
3798 [scp.1 sftp-server.c ssh.1 sshd.8 sftp-client.c sftp-client.h]
3799 [sftp-common.c sftp-common.h sftp-int.c sftp-int.h sftp.1 sftp.c]
3800 Basic interactive sftp client; ok theo@
3801 - (djm) Update RPM specs for new sftp binary
68fa858a 3802 - (djm) Update several bits for new optional reverse lookup stuff. I
61e96248 3803 think I got them all.
8b061486 3804 - (djm) Makefile.in fixes
1aa00dcb 3805 - (stevesk) add mysignal() wrapper and use it for the protocol 2
3806 SIGCHLD handler.
408ba72f 3807 - (djm) Use setvbuf() instead of setlinebuf(). Suggest from stevesk@
781a0585 3808
547519f0 380920010203
63fe0529 3810 - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com>
bf3db92d 3811 - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD
3812 based file) to ensure #include space does not get confused.
f78888c7 3813 - (bal) Minor Makefile.in tweak. dirname may not exist on some
3814 platforms so builds fail. (NeXT being a well known one)
63fe0529 3815
547519f0 381620010202
61e96248 3817 - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen
c85a87f2 3818 <vinschen@redhat.com>
71301416 3819 - (bal) Makefile fix to use $(MAKE) instead of 'make' for platforms
3820 that use 'gmake'. Patch by Tim Rice <tim@multitalents.net>
c85a87f2 3821
547519f0 382220010201
ad5075bd 3823 - (bal) Minor fix to Makefile to stop rebuilding executables if no
3824 changes have occured to any of the supporting code. Patch by
3825 Roumen Petrov <roumen.petrov@skalasoft.com>
3826
9c8dbb1b 382720010131
37845585 3828 - (djm) OpenBSD CVS Sync:
3829 - djm@cvs.openbsd.org 2001/01/30 15:48:53
3830 [sshconnect.c]
3831 Make warning message a little more consistent. ok markus@
8c89dd2b 3832 - (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
3833 Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
3834 respectively.
c59dc6bd 3835 - (djm) Don't log SSH2 PAM KbdInt responses to debug, they may contain
3836 passwords.
9c8dbb1b 3837 - (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
3838 openbsd-compat/. And resolve all ./configure and Makefile.in issues
3839 assocated.
37845585 3840
9c8dbb1b 384120010130
39929cdb 3842 - (djm) OpenBSD CVS Sync:
3843 - markus@cvs.openbsd.org 2001/01/29 09:55:37
3844 [channels.c channels.h clientloop.c serverloop.c]
3845 fix select overflow; ok deraadt@ and stevesk@
865ac82e 3846 - markus@cvs.openbsd.org 2001/01/29 12:42:35
3847 [canohost.c canohost.h channels.c clientloop.c]
3848 add get_peer_ipaddr(socket), x11-fwd in ssh2 requires ipaddr, not DNS
46aa2d1f 3849 - markus@cvs.openbsd.org 2001/01/29 12:47:32
3850 [rsa.c rsa.h ssh-agent.c sshconnect1.c sshd.c]
3851 handle rsa_private_decrypt failures; helps against the Bleichenbacher
3852 pkcs#1 attack
ae810de7 3853 - djm@cvs.openbsd.org 2001/01/29 05:36:11
3854 [ssh.1 ssh.c]
3855 Allow invocation of sybsystem by commandline (-s); ok markus@
83bc57f9 3856 - (stevesk) configure.in: remove duplicate PROG_LS
39929cdb 3857
9c8dbb1b 385820010129
f29ef605 3859 - (stevesk) sftp-server.c: use %lld vs. %qd
3860
cb9da0fc 386120010128
3862 - (bal) Put USE_PIPES back into sco3.2v5
23c2a7a5 3863 - (bal) OpenBSD Sync
9bd5b720 3864 - markus@cvs.openbsd.org 2001/01/28 10:15:34
3865 [dispatch.c]
3866 re-keying is not supported; ok deraadt@
5fb622e4 3867 - markus@cvs.openbsd.org 2001/01/28 10:24:04
7f5c4295 3868 [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
5fb622e4 3869 cleanup AUTHORS sections
9bd5b720 3870 - markus@cvs.openbsd.org 2001/01/28 10:37:26
ab60252b 3871 [sshd.c sshd.8]
9bd5b720 3872 remove -Q, no longer needed
3873 - stevesk@cvs.openbsd.org 2001/01/28 20:36:16
a877488a 3874 [readconf.c ssh.1]
9bd5b720 3875 ``StrictHostKeyChecking ask'' documentation and small cleanup.
3876 ok markus@
6f37606e 3877 - stevesk@cvs.openbsd.org 2001/01/28 20:43:25
61e96248 3878 [sshd.8]
6f37606e 3879 spelling. ok markus@
95f4ccfb 3880 - stevesk@cvs.openbsd.org 2001/01/28 20:53:21
3881 [xmalloc.c]
3882 use size_t for strlen() return. ok markus@
6f37606e 3883 - stevesk@cvs.openbsd.org 2001/01/28 22:27:05
3884 [authfile.c]
3885 spelling. use sizeof vs. strlen(). ok markus@
9bd5b720 3886 - niklas@cvs.openbsd.org 2001/01/29 1:59:14
23c2a7a5 3887 [atomicio.h canohost.h clientloop.h deattack.h dh.h dispatch.h
3888 groupaccess.c groupaccess.h hmac.h hostfile.h includes.h kex.h
3889 key.h log.h login.h match.h misc.h myproposal.h nchan.ms pathnames.h
3890 radix.h readpass.h rijndael.h serverloop.h session.h sftp.h ssh-add.1
3891 ssh-dss.h ssh-keygen.1 ssh-keyscan.1 ssh-rsa.h ssh1.h ssh_config
3892 sshconnect.h sshd_config tildexpand.h uidswap.h uuencode.h]
3893 $OpenBSD$
b0e305c9 3894 - (bal) Minor auth2.c resync. Whitespace and moving of an #include.
cb9da0fc 3895
c9606e03 389620010126
61e96248 3897 - (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
c9606e03 3898 Petrov <roumen.petrov@skalasoft.com>
2f4b2e38 3899 - (bal) OpenBSD Sync
3900 - deraadt@cvs.openbsd.org 2001/01/25 8:06:33
3901 [ssh-agent.c]
3902 call _exit() in signal handler
c9606e03 3903
d7d5f0b2 390420010125
3905 - (djm) Sync bsd-* support files:
3906 - deraadt@cvs.openbsd.org 2000/01/26 03:43:20
3907 [rresvport.c bindresvport.c]
61e96248 3908 new bindresvport() semantics that itojun, shin, jean-luc and i have
d7d5f0b2 3909 agreed on, which will be happy for the future. bindresvport_sa() for
3910 sockaddr *, too. docs later..
3911 - deraadt@cvs.openbsd.org 2000/01/24 02:24:21
3912 [bindresvport.c]
61e96248 3913 in bindresvport(), if sin is non-NULL, example sin->sin_family for
d7d5f0b2 3914 the actual family being processed
e1dd3a7a 3915 - (djm) Mention PRNGd in documentation, it is nicer than EGD
3916 - (djm) Automatically search for "well-known" EGD/PRNGd sockets in autoconf
8080699b 3917 - (bal) AC_FUNC_STRFTIME added to autoconf
4ccb01d6 3918 - (bal) OpenBSD Resync
3919 - stevesk@cvs.openbsd.org 2001/01/24 21:03:50
3920 [channels.c]
3921 missing freeaddrinfo(); ok markus@
d7d5f0b2 3922
556eb464 392320010124
3924 - (bal) OpenBSD Resync
3925 - markus@cvs.openbsd.org 2001/01/23 10:45:10
3926 [ssh.h]
61e96248 3927 nuke comment
1aecda34 3928 - (bal) no 64bit support patch from Tim Rice <tim@multitalents.net>
3929 - (bal) #ifdef around S_IFSOCK if platform does not support it.
3930 patch by Tim Rice <tim@multitalents.net>
3931 - (bal) fake-regex.h cleanup based on Tim Rice's patch.
c33f0b36 3932 - (stevesk) sftp-server.c: fix chmod() mode mask
556eb464 3933
effa6591 393420010123
3935 - (bal) regexp.h typo in configure.in. Should have been regex.h
3936 - (bal) SSH_USER_DIR to _PATH_SSH_USER_DIR patch by stevesk@
61e96248 3937 - (bal) SSH_ASKPASS_DEFAULT to _PATH_SSH_ASKPASS_DEFAULT
53a24016 3938 - (bal) OpenBSD Resync
3939 - markus@cvs.openbsd.org 2001/01/22 8:15:00
3940 [auth-krb4.c sshconnect1.c]
3941 only AFS needs radix.[ch]
3942 - markus@cvs.openbsd.org 2001/01/22 8:32:53
3943 [auth2.c]
3944 no need to include; from mouring@etoh.eviladmin.org
3945 - stevesk@cvs.openbsd.org 2001/01/22 16:55:21
3946 [key.c]
3947 free() -> xfree(); ok markus@
3948 - stevesk@cvs.openbsd.org 2001/01/22 17:22:28
3949 [sshconnect2.c sshd.c]
3950 fix memory leaks in SSH2 key exchange; ok markus@
d464095c 3951 - markus@cvs.openbsd.org 2001/01/22 23:06:39
3952 [auth1.c auth2.c readconf.c readconf.h servconf.c servconf.h
3953 sshconnect1.c sshconnect2.c sshd.c]
3954 rename skey -> challenge response.
3955 auto-enable kbd-interactive for ssh2 if challenge-reponse is enabled.
53a24016 3956
effa6591 3957
42f11eb2 395820010122
3959 - (bal) OpenBSD Resync
3960 - markus@cvs.openbsd.org 2001/01/19 12:45:26 GMT 2001 by markus
3961 [servconf.c ssh.h sshd.c]
3962 only auth-chall.c needs #ifdef SKEY
3963 - markus@cvs.openbsd.org 2001/01/19 15:55:10 GMT 2001 by markus
3964 [auth-krb4.c auth-options.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
3965 auth1.c auth2.c channels.c clientloop.c dh.c dispatch.c nchan.c
3966 packet.c pathname.h readconf.c scp.c servconf.c serverloop.c
3967 session.c ssh-add.c ssh-keygen.c ssh-keyscan.c ssh.c ssh.h
3968 ssh1.h sshconnect1.c sshd.c ttymodes.c]
3969 move ssh1 definitions to ssh1.h, pathnames to pathnames.h
3970 - markus@cvs.openbsd.org 2001/01/19 16:48:14
3971 [sshd.8]
3972 fix typo; from stevesk@
3973 - markus@cvs.openbsd.org 2001/01/19 16:50:58
3974 [ssh-dss.c]
61e96248 3975 clear and free digest, make consistent with other code (use dlen); from
42f11eb2 3976 stevesk@
3977 - markus@cvs.openbsd.org 2001/01/20 15:55:20 GMT 2001 by markus
3978 [auth-options.c auth-options.h auth-rsa.c auth2.c]
3979 pass the filename to auth_parse_options()
61e96248 3980 - markus@cvs.openbsd.org 2001/01/20 17:59:40 GMT 2001
42f11eb2 3981 [readconf.c]
3982 fix SIGSEGV from -o ""; problem noted by jehsom@togetherweb.com
3983 - stevesk@cvs.openbsd.org 2001/01/20 18:20:29
3984 [sshconnect2.c]
3985 dh_new_group() does not return NULL. ok markus@
3986 - markus@cvs.openbsd.org 2001/01/20 21:33:42
3987 [ssh-add.c]
61e96248 3988 do not loop forever if askpass does not exist; from
42f11eb2 3989 andrew@pimlott.ne.mediaone.net
3990 - djm@cvs.openbsd.org 2001/01/20 23:00:56
3991 [servconf.c]
3992 Check for NULL return from strdelim; ok markus
3993 - djm@cvs.openbsd.org 2001/01/20 23:02:07
3994 [readconf.c]
3995 KNF; ok markus
3996 - jakob@cvs.openbsd.org 2001/01/21 9:00:33
3997 [ssh-keygen.1]
3998 remove -R flag; ok markus@
3999 - markus@cvs.openbsd.org 2001/01/21 19:05:40
4000 [atomicio.c automicio.h auth-chall.c auth-krb4.c auth-options.c
4001 auth-options.h auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c
4002 auth.c auth.h auth1.c auth2-chall.c auth2.c authfd.c authfile.c
4003 bufaux.c bufaux.h buffer.c canahost.c canahost.h channels.c
4004 cipher.c cli.c clientloop.c clientloop.h compat.c compress.c
4005 deattack.c dh.c dispatch.c groupaccess.c hmac.c hostfile.c kex.c
4006 key.c key.h log-client.c log-server.c log.c log.h login.c login.h
4007 match.c misc.c misc.h nchan.c packet.c pty.c radix.h readconf.c
4008 readpass.c readpass.h rsa.c scp.c servconf.c serverloop.c serverloop.h
4009 session.c sftp-server.c ssh-add.c ssh-agent.c ssh-dss.c ssh-keygen.c
61e96248 4010 ssh-keyscan.c ssh-rsa.c ssh.c ssh.h sshconnect.c sshconnect.h
42f11eb2 4011 sshconnect1.c sshconnect2.c sshd.c tildexpand.c tildexpand.h
4012 ttysmodes.c uidswap.c xmalloc.c]
61e96248 4013 split ssh.h and try to cleanup the #include mess. remove unnecessary
42f11eb2 4014 #includes. rename util.[ch] -> misc.[ch]
4015 - (bal) renamed 'PIDDIR' to '_PATH_SSH_PIDDIR' to match OpenBSD tree
61e96248 4016 - (bal) Moved #ifdef KRB4 in auth-krb4.c above the #include to resolve
42f11eb2 4017 conflict when compiling for non-kerb install
4018 - (bal) removed the #ifdef SKEY in auth1.c to match Markus' changes
4019 on 1/19.
4020
6005a40c 402120010120
4022 - (bal) OpenBSD Resync
4023 - markus@cvs.openbsd.org 2001/01/19 12:45:26
4024 [ssh-chall.c servconf.c servconf.h ssh.h sshd.c]
4025 only auth-chall.c needs #ifdef SKEY
47af6577 4026 - (bal) Slight auth2-pam.c clean up.
4027 - (bal) Includes a fake-regexp.h to be only used if regcomp() is found,
4028 but no 'regexp.h' found (SCO OpenServer 3 lacks the header).
6005a40c 4029
922e6493 403020010119
4031 - (djm) Update versions in RPM specfiles
59c97189 4032 - (bal) OpenBSD Resync
4033 - markus@cvs.openbsd.org 2001/01/18 16:20:21
4034 [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h
4035 sshd.8 sshd.c]
61e96248 4036 log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many
59c97189 4037 systems
4038 - markus@cvs.openbsd.org 2001/01/18 16:59:59
4039 [auth-passwd.c auth.c auth.h auth1.c auth2.c serverloop.c session.c
4040 session.h sshconnect1.c]
4041 1) removes fake skey from sshd, since this will be much
4042 harder with /usr/libexec/auth/login_XXX
4043 2) share/unify code used in ssh-1 and ssh-2 authentication (server side)
4044 3) make addition of BSD_AUTH and other challenge reponse methods
4045 easier.
4046 - markus@cvs.openbsd.org 2001/01/18 17:12:43
4047 [auth-chall.c auth2-chall.c]
4048 rename *-skey.c *-chall.c since the files are not skey specific
04fc7a67 4049 - (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
4050 to fix NULL pointer deref and fake authloop breakage in PAM code.
f4ebf0e8 4051 - (bal) Updated contrib/cygwin/ by Corinna Vinschen <vinschen@redhat.com>
3c418020 4052 - (bal) Minor cygwin patch to auth1.c. Suggested by djm.
61e96248 4053
b5c334cc 405420010118
4055 - (bal) Super Sized OpenBSD Resync
4056 - markus@cvs.openbsd.org 2001/01/11 22:14:20 GMT 2001 by markus
4057 [sshd.c]
4058 maxfd+1
4059 - markus@cvs.openbsd.org 2001/01/13 17:59:18
4060 [ssh-keygen.1]
4061 small ssh-keygen manpage cleanup; stevesk@pobox.com
4062 - markus@cvs.openbsd.org 2001/01/13 18:03:07
4063 [scp.c ssh-keygen.c sshd.c]
4064 getopt() returns -1 not EOF; stevesk@pobox.com
4065 - markus@cvs.openbsd.org 2001/01/13 18:06:54
4066 [ssh-keyscan.c]
4067 use SSH_DEFAULT_PORT; from stevesk@pobox.com
4068 - markus@cvs.openbsd.org 2001/01/13 18:12:47
4069 [ssh-keyscan.c]
4070 free() -> xfree(); fix memory leak; from stevesk@pobox.com
4071 - markus@cvs.openbsd.org 2001/01/13 18:14:13
4072 [ssh-add.c]
4073 typo, from stevesk@sweden.hp.com
4074 - markus@cvs.openbsd.org 2001/01/13 18:32:50
61e96248 4075 [packet.c session.c ssh.c sshconnect.c sshd.c]
b5c334cc 4076 split out keepalive from packet_interactive (from dale@accentre.com)
4077 set IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT for ssh2, too.
4078 - markus@cvs.openbsd.org 2001/01/13 18:36:45
4079 [packet.c packet.h]
4080 reorder, typo
4081 - markus@cvs.openbsd.org 2001/01/13 18:38:00
4082 [auth-options.c]
4083 fix comment
4084 - markus@cvs.openbsd.org 2001/01/13 18:43:31
4085 [session.c]
4086 Wall
61e96248 4087 - markus@cvs.openbsd.org 2001/01/13 19:14:08
b5c334cc 4088 [clientloop.h clientloop.c ssh.c]
4089 move callback to headerfile
4090 - markus@cvs.openbsd.org 2001/01/15 21:40:10
4091 [ssh.c]
4092 use log() instead of stderr
4093 - markus@cvs.openbsd.org 2001/01/15 21:43:51
4094 [dh.c]
4095 use error() not stderr!
4096 - markus@cvs.openbsd.org 2001/01/15 21:45:29
4097 [sftp-server.c]
4098 rename must fail if newpath exists, debug off by default
4099 - markus@cvs.openbsd.org 2001/01/15 21:46:38
4100 [sftp-server.c]
4101 readable long listing for sftp-server, ok deraadt@
4102 - markus@cvs.openbsd.org 2001/01/16 19:20:06
4103 [key.c ssh-rsa.c]
61e96248 4104 make "ssh-rsa" key format for ssh2 confirm to the ietf-drafts; from
4105 galb@vandyke.com. note that you have to delete older ssh2-rsa keys,
4106 since they are in the wrong format, too. they must be removed from
b5c334cc 4107 .ssh/authorized_keys2 and .ssh/known_hosts2, etc.
61e96248 4108 (cd; grep -v ssh-rsa .ssh/authorized_keys2 > TMP && mv TMP
4109 .ssh/authorized_keys2) additionally, we now check that
b5c334cc 4110 BN_num_bits(rsa->n) >= 768.
4111 - markus@cvs.openbsd.org 2001/01/16 20:54:27
4112 [sftp-server.c]
4113 remove some statics. simpler handles; idea from nisse@lysator.liu.se
4114 - deraadt@cvs.openbsd.org 2001/01/16 23:58:08
4115 [bufaux.c radix.c sshconnect.h sshconnect1.c]
4116 indent
4117 - (bal) Added bsd-strmode.[ch] since some non-OpenBSD platforms may
4118 be missing such feature.
4119
61e96248 4120
52ce34a2 412120010117
4122 - (djm) Only write random seed file at exit
717057b6 4123 - (djm) Make PAM support optional, enable with --with-pam
61e96248 4124 - (djm) Try to use libcrypt on Linux, but link it after OpenSSL (which
717057b6 4125 provides a crypt() of its own)
4126 - (djm) Avoid a warning in bsd-bindresvport.c
4127 - (djm) Try to avoid adding -I/usr/include to CPPFLAGS during SSL tests. This
61e96248 4128 can cause weird segfaults errors on Solaris
8694a1ce 4129 - (djm) Avoid warning in PAM code by making read_passphrase arguments const
d748039d 4130 - (djm) Add --with-pam to RPM spec files
52ce34a2 4131
2fd3c144 413220010115
4133 - (bal) sftp-server.c change to use chmod() if fchmod() does not exist.
89c7e31c 4134 - (bal) utimes() support via utime() interface on machine that lack utimes().
2fd3c144 4135
63b68889 413620010114
4137 - (stevesk) initial work for OpenBSD "support supplementary group in
4138 {Allow,Deny}Groups" patch:
4139 - import getgrouplist.c from OpenBSD (bsd-getgrouplist.c)
4140 - add bsd-getgrouplist.h
4141 - new files groupaccess.[ch]
4142 - build but don't use yet (need to merge auth.c changes)
c6a69271 4143 - (stevesk) complete:
4144 - markus@cvs.openbsd.org 2001/01/13 11:56:48
4145 [auth.c sshd.8]
4146 support supplementary group in {Allow,Deny}Groups
4147 from stevesk@pobox.com
61e96248 4148
f546c780 414920010112
4150 - (bal) OpenBSD Sync
4151 - markus@cvs.openbsd.org 2001/01/10 22:56:22
4152 [bufaux.h bufaux.c sftp-server.c sftp.h getput.h]
4153 cleanup sftp-server implementation:
547519f0 4154 add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT
4155 parse SSH2_FILEXFER_ATTR_EXTENDED
4156 send SSH2_FX_EOF if readdir returns no more entries
4157 reply to SSH2_FXP_EXTENDED message
4158 use #defines from the draft
4159 move #definations to sftp.h
f546c780 4160 more info:
61e96248 4161 http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt
f546c780 4162 - markus@cvs.openbsd.org 2001/01/10 19:43:20
4163 [sshd.c]
4164 XXX - generate_empheral_server_key() is not safe against races,
61e96248 4165 because it calls log()
f546c780 4166 - markus@cvs.openbsd.org 2001/01/09 21:19:50
4167 [packet.c]
4168 allow TCP_NDELAY for ipv6; from netbsd via itojun@
4169
9548d6c8 417020010110
4171 - (djm) SNI/Reliant Unix needs USE_PIPES and $DISPLAY hack. Report from
4172 Bladt Norbert <Norbert.Bladt@adi.ch>
4173
af972861 417420010109
4175 - (bal) Resync CVS ID of cli.c
4b80e97b 4176 - (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
4177 code.
eea39c02 4178 - (bal) OpenBSD Sync
4179 - markus@cvs.openbsd.org 2001/01/08 22:29:05
4180 [auth2.c compat.c compat.h servconf.c servconf.h sshd.8
4181 sshd_config version.h]
4182 implement option 'Banner /etc/issue.net' for ssh2, move version to
4183 2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner
4184 is enabled).
4185 - markus@cvs.openbsd.org 2001/01/08 22:03:23
4186 [channels.c ssh-keyscan.c]
4187 O_NDELAY -> O_NONBLOCK; thanks stevesk@pobox.com
4188 - markus@cvs.openbsd.org 2001/01/08 21:55:41
4189 [sshconnect1.c]
4190 more cleanups and fixes from stevesk@pobox.com:
4191 1) try_agent_authentication() for loop will overwrite key just
4192 allocated with key_new(); don't alloc
4193 2) call ssh_close_authentication_connection() before exit
4194 try_agent_authentication()
4195 3) free mem on bad passphrase in try_rsa_authentication()
4196 - markus@cvs.openbsd.org 2001/01/08 21:48:17
4197 [kex.c]
4198 missing free; thanks stevesk@pobox.com
f1c4659d 4199 - (bal) Detect if clock_t structure exists, if not define it.
4200 - (bal) Detect if O_NONBLOCK exists, if not define it.
4201 - (bal) removed news4-posix.h (now empty)
4202 - (bal) changed bsd-bindresvport.c and bsd-rresvport.c to use 'socklen_t'
4203 instead of 'int'
adc83ebf 4204 - (stevesk) sshd_config: sync
4f771a33 4205 - (stevesk) defines.h: remove spurious ``;''
af972861 4206
bbcf899f 420720010108
4208 - (bal) Fixed another typo in cli.c
4209 - (bal) OpenBSD Sync
4210 - markus@cvs.openbsd.org 2001/01/07 21:26:55
4211 [cli.c]
4212 typo
4213 - markus@cvs.openbsd.org 2001/01/07 21:26:55
4214 [cli.c]
4215 missing free, stevesk@pobox.com
4216 - markus@cvs.openbsd.org 2001/01/07 19:06:25
4217 [auth1.c]
4218 missing free, stevesk@pobox.com
4219 - markus@cvs.openbsd.org 2001/01/07 11:28:04
4220 [log-client.c log-server.c log.c readconf.c servconf.c ssh.1
4221 ssh.h sshd.8 sshd.c]
4222 rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
4223 syslog priority changes:
4224 fatal() LOG_ERR -> LOG_CRIT
4225 log() LOG_INFO -> LOG_NOTICE
b8c37305 4226 - Updated TODO
bbcf899f 4227
9616313f 422820010107
4229 - (bal) OpenBSD Sync
4230 - markus@cvs.openbsd.org 2001/01/06 11:23:27
4231 [ssh-rsa.c]
4232 remove unused
4233 - itojun@cvs.openbsd.org 2001/01/05 08:23:29
4234 [ssh-keyscan.1]
4235 missing .El
4236 - markus@cvs.openbsd.org 2001/01/04 22:41:03
4237 [session.c sshconnect.c]
4238 consistent use of _PATH_BSHELL; from stevesk@pobox.com
4239 - djm@cvs.openbsd.org 2001/01/04 22:35:32
4240 [ssh.1 sshd.8]
4241 Mention AES as available SSH2 Cipher; ok markus
4242 - markus@cvs.openbsd.org 2001/01/04 22:25:58
4243 [sshd.c]
4244 sync usage()/man with defaults; from stevesk@pobox.com
4245 - markus@cvs.openbsd.org 2001/01/04 22:21:26
4246 [sshconnect2.c]
4247 handle SSH2_MSG_USERAUTH_BANNER; fixes bug when connecting to a server
4248 that prints a banner (e.g. /etc/issue.net)
61e96248 4249
1877dc0c 425020010105
4251 - (bal) contrib/caldera/ provided by Tim Rice <tim@multitalents.net>
5a64a938 4252 - (bal) bsd-getcwd.c and bsd-setenv.c changed from bcopy() to memmove()
1877dc0c 4253
488c06c8 425420010104
4255 - (djm) Fix memory leak on systems with BROKEN_GETADDRINFO. Based on
4256 work by Chris Vaughan <vaughan99@yahoo.com>
4257
7c49df64 425820010103
4259 - (bal) fixed up sshconnect.c so it was closer inline with the OpenBSD
4260 tree (mainly positioning)
4261 - (bal) OpenSSH CVS Update
4262 - markus@cvs.openbsd.org 2001/01/02 20:41:02
4263 [packet.c]
4264 log remote ip on disconnect; PR 1600 from jcs@rt.fm
4265 - markus@cvs.openbsd.org 2001/01/02 20:50:56
4266 [sshconnect.c]
61e96248 4267 strict_host_key_checking for host_status != HOST_CHANGED &&
7c49df64 4268 ip_status == HOST_CHANGED
61e96248 4269 - (bal) authfile.c: Synced CVS ID tag
2c523de9 4270 - (bal) UnixWare 2.0 fixes by Tim Rice <tim@multitalents.net>
4271 - (bal) Disable sftp-server if no 64bit int support exists. Based on
4272 patch by Tim Rice <tim@multitalents.net>
4273 - (bal) Makefile.in changes to uninstall: target to remove sftp-server
4274 and sftp-server.8 manpage.
7c49df64 4275
a421e945 427620010102
4277 - (bal) OpenBSD CVS Update
4278 - markus@cvs.openbsd.org 2001/01/01 14:52:49
4279 [scp.c]
4280 use shared fatal(); from stevesk@pobox.com
4281
0efc80a7 428220001231
4283 - (bal) Reverted out of MAXHOSTNAMELEN. This should be set per OS.
4284 for multiple reasons.
b1335fdf 4285 - (bal) Reverted out of a partial NeXT patch.
0efc80a7 4286
efcae5b1 428720001230
4288 - (bal) OpenBSD CVS Update
4289 - markus@cvs.openbsd.org 2000/12/28 18:58:30
4290 [ssh-keygen.c]
4291 enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
b148018f 4292 - markus@cvs.openbsd.org 2000/12/29 22:19:13
4293 [channels.c]
4294 missing xfree; from vaughan99@yahoo.com
efcae5b1 4295 - (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
03a14cc9 4296 - (bal) if no MAXHOSTNAMELEN is defined. Default to 64 character defination.
34665bf7 4297 Suggested by Christian Kurz <shorty@debian.org>
cb6dabf4 4298 - (bal) Add in '.c.o' section to Makefile.in to address make programs that
61e96248 4299 don't honor CPPFLAGS by default. Suggested by Lutz Jaenicke
cb6dabf4 4300 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
0dd78cd8 4301
430220001229
61e96248 4303 - (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
34665bf7 4304 Kurz <shorty@debian.org>
8abcdba4 4305 - (bal) OpenBSD CVS Update
4306 - markus@cvs.openbsd.org 2000/12/28 14:25:51
4307 [auth.h auth2.c]
4308 count authentication failures only
4309 - markus@cvs.openbsd.org 2000/12/28 14:25:03
4310 [sshconnect.c]
4311 fingerprint for MITM attacks, too.
4312 - markus@cvs.openbsd.org 2000/12/28 12:03:57
4313 [sshd.8 sshd.c]
4314 document -D
4315 - markus@cvs.openbsd.org 2000/12/27 14:19:21
4316 [serverloop.c]
4317 less chatty
4318 - markus@cvs.openbsd.org 2000/12/27 12:34
4319 [auth1.c sshconnect2.c sshd.c]
4320 typo
4321 - markus@cvs.openbsd.org 2000/12/27 12:30:19
4322 [readconf.c readconf.h ssh.1 sshconnect.c]
4323 new option: HostKeyAlias: allow the user to record the host key
4324 under a different name. This is useful for ssh tunneling over
4325 forwarded connections or if you run multiple sshd's on different
4326 ports on the same machine.
4327 - markus@cvs.openbsd.org 2000/12/27 11:51:53
4328 [ssh.1 ssh.c]
4329 multiple -t force pty allocation, document ORIGINAL_COMMAND
4330 - markus@cvs.openbsd.org 2000/12/27 11:41:31
4331 [sshd.8]
4332 update for ssh-2
c52c7082 4333 - (stevesk) compress.[ch] sync with openbsd; missed in prototype
4334 fix merge.
0dd78cd8 4335
8f523d67 433620001228
4337 - (bal) Patch to add libutil.h to loginrec.c only if the platform has
4338 libutil.h. Suggested by Pekka Savola <pekka@netcore.fi>
9fb76616 4339 - (djm) Update to new x11-askpass in RPM spec
0dd78cd8 4340 - (bal) SCO patch to not include <sys/queue.h> since it's unrelated
4341 header. Patch by Tim Rice <tim@multitalents.net>
4342 - Updated TODO w/ known HP/UX issue
4343 - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the
4344 bad reference to 'NeXT including it else were' on the #ifdef version.
8f523d67 4345
b03bd394 434620001227
61e96248 4347 - (bal) Typo in configure.in: entut?ent should be endut?ent. Suggested by
b03bd394 4348 Takumi Yamane <yamtak@b-session.com>
4349 - (bal) Checks for getrlimit(), sysconf(), and setdtablesize(). Patch
8f523d67 4350 by Corinna Vinschen <vinschen@redhat.com>
4351 - (djm) Fix catman-do target for non-bash
61e96248 4352 - (bal) Typo in configure.in: entut?ent should be endut?ent. Suggested by
8f523d67 4353 Takumi Yamane <yamtak@b-session.com>
4354 - (bal) Checks for getrlimit(), sysconf(), and setdtablesize(). Patch
b03bd394 4355 by Corinna Vinschen <vinschen@redhat.com>
13991f8e 4356 - (djm) Fix catman-do target for non-bash
61e96248 4357 - (bal) Fixed NeXT's lack of CPPFLAGS honoring.
4358 - (bal) ssh-keyscan.c: NeXT (and older BSDs) don't support getrlimit() w/
f318b98b 4359 'RLIMIT_NOFILE'
61e96248 4360 - (djm) Remove *.Ylonen files. They are no longer in the OpenBSD tree,
4361 the info in COPYING.Ylonen has been moved to the start of each
3bdf55b1 4362 SSH1-derived file and README.Ylonen is well out of date.
b03bd394 4363
8d88011e 436420001223
4365 - (bal) Fixed Makefile.in to support recompile of all ssh and sshd objects
4366 if a change to config.h has occurred. Suggested by Gert Doering
4367 <gert@greenie.muc.de>
4368 - (bal) OpenBSD CVS Update:
4369 - markus@cvs.openbsd.org 2000/12/22 16:49:40
4370 [ssh-keygen.c]
4371 fix ssh-keygen -x -t type > file; from Roumen.Petrov@skalasoft.com
4372
1e3b8b07 437320001222
4374 - Updated RCSID for pty.c
4375 - (bal) OpenBSD CVS Updates:
4376 - markus@cvs.openbsd.org 2000/12/21 15:10:16
4377 [auth-rh-rsa.c hostfile.c hostfile.h sshconnect.c]
4378 print keyfile:line for changed hostkeys, for deraadt@, ok deraadt@
4379 - markus@cvs.openbsd.org 2000/12/20 19:26:56
4380 [authfile.c]
4381 allow ssh -i userkey for root
4382 - markus@cvs.openbsd.org 2000/12/20 19:37:21
4383 [authfd.c authfd.h kex.c sshconnect2.c sshd.c uidswap.c uidswap.h]
4384 fix prototypes; from stevesk@pobox.com
4385 - markus@cvs.openbsd.org 2000/12/20 19:32:08
4386 [sshd.c]
4387 init pointer to NULL; report from Jan.Ivan@cern.ch
4388 - markus@cvs.openbsd.org 2000/12/19 23:17:54
4389 [auth-krb4.c auth-options.c auth-options.h auth-rhosts.c auth-rsa.c
4390 auth1.c auth2-skey.c auth2.c authfd.c authfd.h authfile.c bufaux.c
4391 bufaux.h buffer.c canohost.c channels.c clientloop.c compress.c
4392 crc32.c deattack.c getput.h hmac.c hmac.h hostfile.c kex.c kex.h
4393 key.c key.h log.c login.c match.c match.h mpaux.c mpaux.h packet.c
4394 packet.h radix.c readconf.c rsa.c scp.c servconf.c servconf.h
4395 serverloop.c session.c sftp-server.c ssh-agent.c ssh-dss.c ssh-dss.h
4396 ssh-keygen.c ssh-keyscan.c ssh-rsa.c ssh-rsa.h ssh.c ssh.h uuencode.c
4397 uuencode.h sshconnect1.c sshconnect2.c sshd.c tildexpand.c]
4398 replace 'unsigned bla' with 'u_bla' everywhere. also replace 'char
4399 unsigned' with u_char.
4400
67b0facb 440120001221
4402 - (stevesk) OpenBSD CVS updates:
4403 - markus@cvs.openbsd.org 2000/12/19 15:43:45
4404 [authfile.c channels.c sftp-server.c ssh-agent.c]
4405 remove() -> unlink() for consistency
4406 - markus@cvs.openbsd.org 2000/12/19 15:48:09
4407 [ssh-keyscan.c]
4408 replace <ssl/x.h> with <openssl/x.h>
4409 - markus@cvs.openbsd.org 2000/12/17 02:33:40
4410 [uidswap.c]
4411 typo; from wsanchez@apple.com
61e96248 4412
adeebd37 441320001220
61e96248 4414 - (djm) Workaround PAM inconsistencies between Solaris derived PAM code
adeebd37 4415 and Linux-PAM. Based on report and fix from Andrew Morgan
4416 <morgan@transmeta.com>
4417
f072c47a 441820001218
4419 - (stevesk) rsa.c: entropy.h not needed.
0c2fb82f 4420 - (bal) split CFLAGS into CFLAGS and CPPFLAGS in configure.in and Makefile.
4421 Suggested by Wilfredo Sanchez <wsanchez@apple.com>
f072c47a 4422
731c1541 442320001216
4424 - (stevesk) OpenBSD CVS updates:
4425 - markus@cvs.openbsd.org 2000/12/16 02:53:57
4426 [scp.c]
4427 allow + in usernames; request from Florian.Weimer@RUS.Uni-Stuttgart.DE
4428 - markus@cvs.openbsd.org 2000/12/16 02:39:57
4429 [scp.c]
4430 unused; from stevesk@pobox.com
4431
227e8e86 443220001215
9853409f 4433 - (stevesk) Old OpenBSD patch wasn't completely applied:
4434 - markus@cvs.openbsd.org 2000/01/24 22:11:20
4435 [scp.c]
4436 allow '.' in usernames; from jedgar@fxp.org
227e8e86 4437 - (stevesk) OpenBSD CVS updates:
4438 - markus@cvs.openbsd.org 2000/12/13 16:26:53
4439 [ssh-keyscan.c]
4440 fatal already adds \n; from stevesk@pobox.com
4441 - markus@cvs.openbsd.org 2000/12/13 16:25:44
4442 [ssh-agent.c]
4443 remove redundant spaces; from stevesk@pobox.com
4444 - ho@cvs.openbsd.org 2000/12/12 15:50:21
4445 [pty.c]
4446 When failing to set tty owner and mode on a read-only filesystem, don't
4447 abort if the tty already has correct owner and reasonably sane modes.
4448 Example; permit 'root' to login to a firewall with read-only root fs.
4449 (markus@ ok)
4450 - deraadt@cvs.openbsd.org 2000/12/13 06:36:05
4451 [pty.c]
4452 KNF
6ffc9c88 4453 - markus@cvs.openbsd.org 2000/12/12 14:45:21
4454 [sshd.c]
4455 source port < 1024 is no longer required for rhosts-rsa since it
4456 adds no additional security.
4457 - markus@cvs.openbsd.org 2000/12/12 16:11:49
4458 [ssh.1 ssh.c]
4459 rhosts-rsa is no longer automagically disabled if ssh is not privileged.
4460 UsePrivilegedPort=no disables rhosts-rsa _only_ for old servers.
4461 these changes should not change the visible default behaviour of the ssh client.
71c0d06a 4462 - deraadt@cvs.openbsd.org 2000/12/11 10:27:33
4463 [scp.c]
4464 when copying 0-sized files, do not re-print ETA time at completion
3e1caa83 4465 - provos@cvs.openbsd.org 2000/12/15 10:30:15
4466 [kex.c kex.h sshconnect2.c sshd.c]
4467 compute diffie-hellman in parallel between server and client. okay markus@
227e8e86 4468
6c935fbd 446920001213
4470 - (djm) Make sure we reset the SIGPIPE disposition after we fork. Report
4471 from Andreas M. Kirchwitz <amk@krell.zikzak.de>
227e8e86 4472 - (stevesk) OpenBSD CVS update:
1fe6a48f 4473 - markus@cvs.openbsd.org 2000/12/12 15:30:02
4474 [ssh-keyscan.c ssh.c sshd.c]
61e96248 4475 consistently use __progname; from stevesk@pobox.com
6c935fbd 4476
367d1840 447720001211
4478 - (bal) Applied patch to include ssh-keyscan into Redhat's package, and
4479 patch to install ssh-keyscan manpage. Patch by Pekka Savola
4480 <pekka@netcore.fi>
e3a70753 4481 - (bal) OpenbSD CVS update
4482 - markus@cvs.openbsd.org 2000/12/10 17:01:53
4483 [sshconnect1.c]
4484 always request new challenge for skey/tis-auth, fixes interop with
4485 other implementations; report from roth@feep.net
367d1840 4486
6b523bae 448720001210
4488 - (bal) OpenBSD CVS updates
61e96248 4489 - markus@cvs.openbsd.org 2000/12/09 13:41:51
6b523bae 4490 [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
4491 undo rijndael changes
61e96248 4492 - markus@cvs.openbsd.org 2000/12/09 13:48:31
6b523bae 4493 [rijndael.c]
4494 fix byte order bug w/o introducing new implementation
61e96248 4495 - markus@cvs.openbsd.org 2000/12/09 14:08:27
6b523bae 4496 [sftp-server.c]
4497 "" -> "." for realpath; from vinschen@redhat.com
61e96248 4498 - markus@cvs.openbsd.org 2000/12/09 14:06:54
6b523bae 4499 [ssh-agent.c]
4500 extern int optind; from stevesk@sweden.hp.com
13af0aa2 4501 - provos@cvs.openbsd.org 2000/12/09 23:51:11
4502 [compat.c]
4503 remove unnecessary '\n'
6b523bae 4504
ce9c0b75 450520001209
6b523bae 4506 - (bal) OpenBSD CVS updates:
61e96248 4507 - djm@cvs.openbsd.org 2000/12/07 4:24:59
ce9c0b75 4508 [ssh.1]
4509 Typo fix from Wilfredo Sanchez <wsanchez@apple.com>; ok theo
4510
f72fc97f 451120001207
6b523bae 4512 - (bal) OpenBSD CVS updates:
61e96248 4513 - markus@cvs.openbsd.org 2000/12/06 22:58:14
f72fc97f 4514 [compat.c compat.h packet.c]
4515 disable debug messages for ssh.com/f-secure 2.0.1x, 2.1.0
dfe89252 4516 - markus@cvs.openbsd.org 2000/12/06 23:10:39
4517 [rijndael.c]
4518 unexpand(1)
61e96248 4519 - markus@cvs.openbsd.org 2000/12/06 23:05:43
dfe89252 4520 [cipher.c cipher.h rijndael.c rijndael.h rijndael_boxes.h]
4521 new rijndael implementation. fixes endian bugs
f72fc97f 4522
97fb6912 452320001206
6b523bae 4524 - (bal) OpenBSD CVS updates:
97fb6912 4525 - markus@cvs.openbsd.org 2000/12/05 20:34:09
4526 [channels.c channels.h clientloop.c serverloop.c]
4527 async connects for -R/-L; ok deraadt@
4528 - todd@cvs.openssh.org 2000/12/05 16:47:28
4529 [sshd.c]
4530 tweak comment to reflect real location of pid file; ok provos@
bf5f69f7 4531 - (stevesk) Import <sys/queue.h> from OpenBSD for systems that don't
4532 have it (used in ssh-keyscan).
227e8e86 4533 - (stevesk) OpenBSD CVS update:
f20255cb 4534 - markus@cvs.openbsd.org 2000/12/06 19:57:48
4535 [ssh-keyscan.c]
4536 err(3) -> internal error(), from stevesk@sweden.hp.com
97fb6912 4537
f6fdbddf 453820001205
6b523bae 4539 - (bal) OpenBSD CVS updates:
f6fdbddf 4540 - markus@cvs.openbsd.org 2000/12/04 19:24:02
4541 [ssh-keyscan.c ssh-keyscan.1]
4542 David Maziere's ssh-keyscan, ok niels@
4543 - (bal) Updated Makefile.in to include ssh-keyscan that was just added
4544 to the recent OpenBSD source tree.
835d2104 4545 - (stevesk) fix typos in contrib/hpux/README
f6fdbddf 4546
cbc5abf9 454720001204
4548 - (bal) More C functions defined in NeXT that are unaccessable without
61e96248 4549 defining -POSIX.
4550 - (bal) OpenBSD CVS updates:
4551 - markus@cvs.openbsd.org 2000/12/03 11:29:04
cbc5abf9 4552 [compat.c]
4553 remove fallback to SSH_BUG_HMAC now that the drafts are updated
4554 - markus@cvs.openbsd.org 2000/12/03 11:27:55
4555 [compat.c]
61e96248 4556 correctly match "2.1.0.pl2 SSH" etc; from
97fb6912 4557 pekkas@netcore.fi/bugzilla.redhat
cbc5abf9 4558 - markus@cvs.openbsd.org 2000/12/03 11:15:03
4559 [auth2.c compat.c compat.h sshconnect2.c]
4560 support f-secure/ssh.com 2.0.12; ok niels@
4561
0b6fbf03 456220001203
cbc5abf9 4563 - (bal) OpenBSD CVS updates:
0b6fbf03 4564 - markus@cvs.openbsd.org 2000/11/30 22:54:31
4565 [channels.c]
61e96248 4566 debug->warn if tried to do -R style fwd w/o client requesting this;
0b6fbf03 4567 ok neils@
4568 - markus@cvs.openbsd.org 2000/11/29 20:39:17
4569 [cipher.c]
4570 des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IV
4571 - markus@cvs.openbsd.org 2000/11/30 18:33:05
4572 [ssh-agent.c]
4573 agents must not dump core, ok niels@
61e96248 4574 - markus@cvs.openbsd.org 2000/11/30 07:04:02
0b6fbf03 4575 [ssh.1]
4576 T is for both protocols
4577 - markus@cvs.openbsd.org 2000/12/01 00:00:51
4578 [ssh.1]
4579 typo; from green@FreeBSD.org
4580 - markus@cvs.openbsd.org 2000/11/30 07:02:35
4581 [ssh.c]
4582 check -T before isatty()
4583 - provos@cvs.openbsd.org 2000/11/29 13:51:27
4584 [sshconnect.c]
61e96248 4585 show IP address and hostname when new key is encountered. okay markus@
0b6fbf03 4586 - markus@cvs.openbsd.org 2000/11/30 22:53:35
4587 [sshconnect.c]
4588 disable agent/x11/port fwding if hostkey has changed; ok niels@
4589 - marksu@cvs.openbsd.org 2000/11/29 21:11:59
4590 [sshd.c]
4591 sshd -D, startup w/o deamon(), for monitoring scripts or inittab;
4592 from handler@sub-rosa.com and eric@urbanrange.com; ok niels@
8c9fe09e 4593 - (djm) Added patch from Nalin Dahyabhai <nalin@redhat.com> to enable
4594 PAM authentication using KbdInteractive.
4595 - (djm) Added another TODO
0b6fbf03 4596
90f4078a 459720001202
4598 - (bal) Backed out of part of Alain St-Denis' loginrec.c patch.
61e96248 4599 - (bal) Irix need some sort of mansubdir, patch by Michael Stone
90f4078a 4600 <mstone@cs.loyola.edu>
4601
dcef6523 460220001129
7062c40f 4603 - (djm) Back out all the serverloop.c hacks. sshd will now hang again
4604 if there are background children with open fds.
c193d002 4605 - (djm) bsd-rresvport.c bzero -> memset
61e96248 4606 - (djm) Don't fail in defines.h on absence of 64 bit types (we will
c193d002 4607 still fail during compilation of sftp-server).
4608 - (djm) Fail if ar is not found during configure
c523303b 4609 - (djm) OpenBSD CVS updates:
4610 - provos@cvs.openbsd.org 2000/11/22 08:38:31
4611 [sshd.8]
4612 talk about /etc/primes, okay markus@
4613 - markus@cvs.openbsd.org 2000/11/23 14:03:48
4614 [ssh.c sshconnect1.c sshconnect2.c]
4615 complain about invalid ciphers for ssh1/ssh2, fall back to reasonable
4616 defaults
4617 - markus@cvs.openbsd.org 2000/11/25 09:42:53
4618 [sshconnect1.c]
4619 reorder check for illegal ciphers, bugreport from espie@
4620 - markus@cvs.openbsd.org 2000/11/25 10:19:34
4621 [ssh-keygen.c ssh.h]
4622 print keytype when generating a key.
4623 reasonable defaults for RSA1/RSA/DSA keys.
b3ec54b4 4624 - (djm) Patch from Pekka Savola <Pekka.Savola@netcore.fi> to include a few
4625 more manpage paths in fixpaths calls
4626 - (djm) Also add xauth path at Pekka's suggestion.
57ce3f00 4627 - (djm) Add Redhat RPM patch for AUTHPRIV SyslogFacility
dcef6523 4628
e879a080 462920001125
4630 - (djm) Give up privs when reading seed file
4631
d343d900 463220001123
4633 - (bal) Merge OpenBSD changes:
4634 - markus@cvs.openbsd.org 2000/11/15 22:31:36
4635 [auth-options.c]
61e96248 4636 case insensitive key options; from stevesk@sweeden.hp.com
d343d900 4637 - markus@cvs.openbsd.org 2000/11/16 17:55:43
4638 [dh.c]
4639 do not use perror() in sshd, after child is forked()
4640 - markus@cvs.openbsd.org 2000/11/14 23:42:40
4641 [auth-rsa.c]
4642 parse option only if key matches; fix some confusing seen by the client
4643 - markus@cvs.openbsd.org 2000/11/14 23:44:19
4644 [session.c]
4645 check no_agent_forward_flag for ssh-2, too
4646 - markus@cvs.openbsd.org 2000/11/15
4647 [ssh-agent.1]
4648 reorder SYNOPSIS; typo, use .It
4649 - markus@cvs.openbsd.org 2000/11/14 23:48:55
4650 [ssh-agent.c]
4651 do not reorder keys if a key is removed
4652 - markus@cvs.openbsd.org 2000/11/15 19:58:08
4653 [ssh.c]
61e96248 4654 just ignore non existing user keys
d343d900 4655 - millert@cvs.openbsd.org 200/11/15 20:24:43
4656 [ssh-keygen.c]
4657 Add missing \n at end of error message.
4658
0b49a754 465920001122
4660 - (bal) Minor patch to ensure platforms lacking IRIX job limit supports
4661 are compilable.
4662 - (bal) Updated TODO as of 11/18/2000 with known things to resolve.
4663
fab2e5d3 466420001117
4665 - (bal) Changed from 'primes' to 'primes.out' for consistancy sake. It
4666 has no affect the output. Patch by Corinna Vinschen <vinschen@redhat.com>
61e96248 4667 - (stevesk) Reworked progname support.
260d427b 4668 - (bal) Misplaced #include "includes.h" in bsd-setproctitle.c. Patch by
4669 Shinichi Maruyama <marya@st.jip.co.jp>
fab2e5d3 4670
c2207f11 467120001116
4672 - (bal) Added in MAXSYMLINK test in bsd-realpath.c. Required for some SCO
4673 releases.
4674 - (bal) Make builds work outside of source tree. Patch by Mark D. Roth
4675 <roth@feep.net>
4676
3d398e04 467720001113
61e96248 4678 - (djm) Add pointer to http://www.imasy.or.jp/~gotoh/connect.c to
3d398e04 4679 contrib/README
fa08c86b 4680 - (djm) Merge OpenBSD changes:
4681 - markus@cvs.openbsd.org 2000/11/06 16:04:56
4682 [channels.c channels.h clientloop.c nchan.c serverloop.c]
4683 [session.c ssh.c]
4684 agent forwarding and -R for ssh2, based on work from
4685 jhuuskon@messi.uku.fi
4686 - markus@cvs.openbsd.org 2000/11/06 16:13:27
4687 [ssh.c sshconnect.c sshd.c]
4688 do not disabled rhosts(rsa) if server port > 1024; from
4689 pekkas@netcore.fi
4690 - markus@cvs.openbsd.org 2000/11/06 16:16:35
4691 [sshconnect.c]
4692 downgrade client to 1.3 if server is 1.4; help from mdb@juniper.net
4693 - markus@cvs.openbsd.org 2000/11/09 18:04:40
4694 [auth1.c]
4695 typo; from mouring@pconline.com
4696 - markus@cvs.openbsd.org 2000/11/12 12:03:28
4697 [ssh-agent.c]
4698 off-by-one when removing a key from the agent
4699 - markus@cvs.openbsd.org 2000/11/12 12:50:39
4700 [auth-rh-rsa.c auth2.c authfd.c authfd.h]
4701 [authfile.c hostfile.c kex.c kex.h key.c key.h myproposal.h]
4702 [readconf.c readconf.h rsa.c rsa.h servconf.c servconf.h ssh-add.c]
4703 [ssh-agent.c ssh-keygen.1 ssh-keygen.c ssh.1 ssh.c ssh_config]
4704 [sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config ssh-dss.c]
61e96248 4705 [ssh-dss.h ssh-rsa.c ssh-rsa.h dsa.c dsa.h]
fa08c86b 4706 add support for RSA to SSH2. please test.
4707 there are now 3 types of keys: RSA1 is used by ssh-1 only,
4708 RSA and DSA are used by SSH2.
4709 you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
4710 keys for SSH2 and use the RSA keys for hostkeys or for user keys.
4711 SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.
4712 - (djm) Fix up Makefile and Redhat init script to create RSA host keys
f001465f 4713 - (djm) Change to interim version
5733a41a 4714 - (djm) Fix RPM spec file stupidity
6fff1ac4 4715 - (djm) fixpaths to DSA and RSA keys too
3d398e04 4716
d287c664 471720001112
4718 - (bal) SCO Patch to add needed libraries for configure.in. Patch by
4719 Phillips Porch <root@theporch.com>
3d398e04 4720 - (bal) IRIX patch to adding Job Limits. Patch by Denis Parker
4721 <dcp@sgi.com>
a3bf38d0 4722 - (stevesk) pty.c: HP-UX 10 and 11 don't define TIOCSCTTY. Add error() to
4723 failed ioctl(TIOCSCTTY) call.
d287c664 4724
3c4d4fef 472520001111
4726 - (djm) Added /etc/primes for kex DH group neg, fixup Makefile.in and
4727 packaging files
35325fd4 4728 - (djm) Fix new Makefile.in warnings
61e96248 4729 - (djm) Fix vsprintf("%h") in bsd-snprintf.c, short int va_args are
4730 promoted to type int. Report and fix from Dan Astoorian
027bf205 4731 <djast@cs.toronto.edu>
61e96248 4732 - (djm) Hardwire sysconfdir in RPM spec files as some RPM versions get
e3291159 4733 it wrong. Report from Bennett Todd <bet@rahul.net>
3c4d4fef 4734
3e366738 473520001110
4736 - (bal) Fixed dropped answer from skey_keyinfo() in auth1.c
4737 - (bal) Changed from --with-skey to --with-skey=PATH in configure.in
4738 - (bal) Added in check to verify S/Key library is being detected in
4739 configure.in
61e96248 4740 - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif.
3e366738 4741 Patch by Mark Miller <markm@swoon.net>
4742 - (bal) Added 'util.h' header to loginrec.c only if HAVE_UTIL_H is defined
61e96248 4743 to remove warnings under MacOS X. Patch by Mark Miller <markm@swoon.net>
3e366738 4744 - (bal) Fixed LDFLAG mispelling in configure.in for --with-afs
4745
373998a4 474620001107
e506ee73 4747 - (bal) acconfig.in - removed the double "USE_PIPES" entry. Patch by
4748 Mark Miller <markm@swoon.net>
373998a4 4749 - (bal) sshd.init files corrected to assign $? to RETVAL. Patch by
4750 Jarno Huuskonen <jhuuskon@messi.uku.fi>
e506ee73 4751 - (bal) fixpaths fixed to stop it from quitely failing. Patch by
4752 Mark D. Roth <roth@feep.net>
373998a4 4753
ac89998a 475420001106
4755 - (djm) Use Jim's new 1.0.3 askpass in Redhat RPMs
6c09e23c 4756 - (djm) Manually fix up missed diff hunks (mainly RCS idents)
61e96248 4757 - (djm) Remove UPGRADING document in favour of a link to the better
d6846e6a 4758 maintained FAQ on www.openssh.com
73bd30fe 4759 - (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
4760 <pekkas@netcore.fi>
4761 - (djm) Don't need X11-askpass in RPM spec file if building without it
4762 from Pekka Savola <pekkas@netcore.fi>
c215ba3b 4763 - (djm) Release 2.3.0p1
97b378bf 4764 - (bal) typo in configure.in in regards to --with-ldflags from Marko
4765 Asplund <aspa@kronodoc.fi>
4766 - (bal) fixed next-posix.h. Forgot prototype of getppid().
68f189a9 4767
b850ecd9 476820001105
4769 - (bal) Sync with OpenBSD:
4770 - markus@cvs.openbsd.org 2000/10/31 9:31:58
4771 [compat.c]
4772 handle all old openssh versions
4773 - markus@cvs.openbsd.org 2000/10/31 13:1853
4774 [deattack.c]
4775 so that large packets do not wrap "n"; from netbsd
4776 - (bal) rijndel.c - fix up RCSID to match OpenBSD tree
a30ce26d 4777 - (bal) auth2-skey.c - Checked in. Missing from portable tree.
4778 - (bal) Reworked NEWS-OS and NeXT ports to extract waitpid() and
4779 setsid() into more common files
96054e6f 4780 - (stevesk) pty.c: use __hpux to identify HP-UX.
d0127657 4781 - (bal) Missed auth-skey.o in Makefile.in and minor correction to
4782 bsd-waitpid.c
b850ecd9 4783
75b90ced 478420001029
4785 - (stevesk) Fix typo in auth.c: USE_PAM not PAM
95273555 4786 - (stevesk) Create contrib/cygwin/ directory; patch from
4787 Corinna Vinschen <vinschen@redhat.com>
e9e4a1c7 4788 - (bal) Resolved more $xno and $xyes issues in configure.in
fd5f0295 4789 - (bal) next-posix.h - spelling and forgot a prototype
75b90ced 4790
344f2b94 479120001028
61e96248 4792 - (djm) fix select hack in serverloop.c from Philippe WILLEM
344f2b94 4793 <Philippe.WILLEM@urssaf.fr>
240ae474 4794 - (djm) Fix mangled AIXAUTHENTICATE code
61e96248 4795 - (djm) authctxt->pw may be NULL. Fix from Markus Friedl
606ea390 4796 <markus.friedl@informatik.uni-erlangen.de>
a22aff1f 4797 - (djm) Sync with OpenBSD:
4798 - markus@cvs.openbsd.org 2000/10/16 15:46:32
4799 [ssh.1]
4800 fixes from pekkas@netcore.fi
4801 - markus@cvs.openbsd.org 2000/10/17 14:28:11
4802 [atomicio.c]
4803 return number of characters processed; ok deraadt@
4804 - markus@cvs.openbsd.org 2000/10/18 12:04:02
4805 [atomicio.c]
4806 undo
4807 - markus@cvs.openbsd.org 2000/10/18 12:23:02
4808 [scp.c]
4809 replace atomicio(read,...) with read(); ok deraadt@
4810 - markus@cvs.openbsd.org 2000/10/18 12:42:00
4811 [session.c]
4812 restore old record login behaviour
4813 - deraadt@cvs.openbsd.org 2000/10/19 10:41:13
4814 [auth-skey.c]
4815 fmt string problem in unused code
4816 - provos@cvs.openbsd.org 2000/10/19 10:45:16
4817 [sshconnect2.c]
4818 don't reference freed memory. okay deraadt@
4819 - markus@cvs.openbsd.org 2000/10/21 11:04:23
4820 [canohost.c]
4821 typo, eramore@era-t.ericsson.se; ok niels@
4822 - markus@cvs.openbsd.org 2000/10/23 13:31:55
4823 [cipher.c]
4824 non-alignment dependent swap_bytes(); from
4825 simonb@wasabisystems.com/netbsd
4826 - markus@cvs.openbsd.org 2000/10/26 12:38:28
4827 [compat.c]
4828 add older vandyke products
4829 - markus@cvs.openbsd.org 2000/10/27 01:32:19
4830 [channels.c channels.h clientloop.c serverloop.c session.c]
4831 [ssh.c util.c]
61e96248 4832 enable non-blocking IO on channels, and tty's (except for the
a22aff1f 4833 client ttys).
344f2b94 4834
ddc49b5c 483520001027
4836 - (djm) Increase REKEY_BYTES to 2^24 for arc4random
4837
48e7916f 483820001025
4839 - (djm) Added WARNING.RNG file and modified configure to ask users of the
4840 builtin entropy code to read it.
4841 - (djm) Prefer builtin regex to PCRE.
00937921 4842 - (bal) Added USE_PIPS defined to NeXT configure.in since scp hangs randomly.
4843 - (bal) Apply fixes to configure.in pointed out by Pavel Roskin
4844 <proski@gnu.org>
48e7916f 4845
8dcda1e3 484620001020
4847 - (djm) Don't define _REENTRANT for SNI/Reliant Unix
07bee9a7 4848 - (bal) Imported NEWS-OS waitpid() macros into NeXT. Since implementation
4849 is more correct then current version.
8dcda1e3 4850
f5af5cd5 485120001018
4852 - (stevesk) Add initial support for setproctitle(). Current
4853 support is for the HP-UX pstat(PSTAT_SETCMD, ...) method.
134fd7f6 4854 - (stevesk) Add egd startup scripts to contrib/hpux/
f5af5cd5 4855
2f31bdd6 485620001017
4857 - (djm) Add -lregex to cywin libs from Corinna Vinschen
4858 <vinschen@cygnus.com>
ba7a3f40 4859 - (djm) Don't rely on atomicio's retval to determine length of askpass
4860 supplied passphrase. Problem report from Lutz Jaenicke
4861 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
66d6c27e 4862 - (bal) Changed from GNU rx to PCRE on suggestion from djm.
61e96248 4863 - (bal) Integrated Sony NEWS-OS patches from NAKAJI Hirouyuki
66d6c27e 4864 <nakaji@tutrp.tut.ac.jp>
2f31bdd6 4865
33de75a3 486620001016
4867 - (djm) Sync with OpenBSD:
4868 - markus@cvs.openbsd.org 2000/10/14 04:01:15
4869 [cipher.c]
4870 debug3
4871 - markus@cvs.openbsd.org 2000/10/14 04:07:23
4872 [scp.c]
4873 remove spaces from arguments; from djm@mindrot.org
4874 - markus@cvs.openbsd.org 2000/10/14 06:09:46
4875 [ssh.1]
4876 Cipher is for SSH-1 only
4877 - markus@cvs.openbsd.org 2000/10/14 06:12:09
4878 [servconf.c servconf.h serverloop.c session.c sshd.8]
4879 AllowTcpForwarding; from naddy@
4880 - markus@cvs.openbsd.org 2000/10/14 06:16:56
4881 [auth2.c compat.c compat.h sshconnect2.c version.h]
61e96248 4882 OpenSSH_2.3; note that is is not complete, but the version number
33de75a3 4883 needs to be changed for interoperability reasons
4884 - markus@cvs.openbsd.org 2000/10/14 06:19:45
4885 [auth-rsa.c]
4886 do not send RSA challenge if key is not allowed by key-options; from
4887 eivind@ThinkSec.com
4888 - markus@cvs.openbsd.org 2000/10/15 08:14:01
4889 [rijndael.c session.c]
4890 typos; from stevesk@sweden.hp.com
4891 - markus@cvs.openbsd.org 2000/10/15 08:18:31
4892 [rijndael.c]
4893 typo
61e96248 4894 - (djm) Copy manpages back over from OpenBSD - too tedious to wade
30d8b039 4895 through diffs
61e96248 4896 - (djm) Added condrestart to Redhat init script. Patch from Pekka Savola
30d8b039 4897 <pekkas@netcore.fi>
aa0289fe 4898 - (djm) Update version in Redhat spec file
61e96248 4899 - (djm) Merge some of Nalin Dahyabhai <nalin@redhat.com> changes from the
aa0289fe 4900 Redhat 7.0 spec file
5b2d4b75 4901 - (djm) Make inability to read/write PRNG seedfile non-fatal
4902
33de75a3 4903
4d670c24 490420001015
4905 - (djm) Fix ssh2 hang on background processes at logout.
4906
71dfaf1c 490720001014
443172c4 4908 - (bal) Add support for realpath and getcwd for platforms with broken
4909 or missing realpath implementations for sftp-server.
4910 - (bal) Corrected mistake in INSTALL in regards to GNU rx library
61e96248 4911 - (bal) Add support for GNU rx library for those lacking regexp support
71dfaf1c 4912 - (djm) Don't accept PAM_PROMPT_ECHO_ON messages during initial auth
02323c45 4913 - (djm) Revert SSH2 serverloop hack, will find a better way.
4ee81249 4914 - (djm) Add workaround for Linux 2.4's gratuitious errno change. Patch
4915 from Martin Johansson <fatbob@acc.umu.se>
94ec8c6b 4916 - (djm) Big OpenBSD sync:
4917 - markus@cvs.openbsd.org 2000/09/30 10:27:44
4918 [log.c]
4919 allow loglevel debug
4920 - markus@cvs.openbsd.org 2000/10/03 11:59:57
4921 [packet.c]
4922 hmac->mac
4923 - markus@cvs.openbsd.org 2000/10/03 12:03:03
4924 [auth-krb4.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c auth1.c]
4925 move fake-auth from auth1.c to individual auth methods, disables s/key in
4926 debug-msg
4927 - markus@cvs.openbsd.org 2000/10/03 12:16:48
4928 ssh.c
4929 do not resolve canonname, i have no idea why this was added oin ossh
4930 - markus@cvs.openbsd.org 2000/10/09 15:30:44
4931 ssh-keygen.1 ssh-keygen.c
4932 -X now reads private ssh.com DSA keys, too.
4933 - markus@cvs.openbsd.org 2000/10/09 15:32:34
4934 auth-options.c
4935 clear options on every call.
4936 - markus@cvs.openbsd.org 2000/10/09 15:51:00
4937 authfd.c authfd.h
4938 interop with ssh-agent2, from <res@shore.net>
4939 - markus@cvs.openbsd.org 2000/10/10 14:20:45
4940 compat.c
4941 use rexexp for version string matching
4942 - provos@cvs.openbsd.org 2000/10/10 22:02:18
4943 [kex.c kex.h myproposal.h ssh.h ssh2.h sshconnect2.c sshd.c dh.c dh.h]
4944 First rough implementation of the diffie-hellman group exchange. The
4945 client can ask the server for bigger groups to perform the diffie-hellman
4946 in, thus increasing the attack complexity when using ciphers with longer
4947 keys. University of Windsor provided network, T the company.
4948 - markus@cvs.openbsd.org 2000/10/11 13:59:52
4949 [auth-rsa.c auth2.c]
4950 clear auth options unless auth sucessfull
4951 - markus@cvs.openbsd.org 2000/10/11 14:00:27
4952 [auth-options.h]
4953 clear auth options unless auth sucessfull
4954 - markus@cvs.openbsd.org 2000/10/11 14:03:27
4955 [scp.1 scp.c]
4956 support 'scp -o' with help from mouring@pconline.com
4957 - markus@cvs.openbsd.org 2000/10/11 14:11:35
4958 [dh.c]
4959 Wall
4960 - markus@cvs.openbsd.org 2000/10/11 14:14:40
4961 [auth.h auth2.c readconf.c readconf.h readpass.c servconf.c servconf.h]
4962 [ssh.h sshconnect2.c sshd_config auth2-skey.c cli.c cli.h]
4963 add support for s/key (kbd-interactive) to ssh2, based on work by
4964 mkiernan@avantgo.com and me
4965 - markus@cvs.openbsd.org 2000/10/11 14:27:24
4966 [auth.c auth1.c auth2.c authfile.c cipher.c cipher.h kex.c kex.h]
4967 [myproposal.h packet.c readconf.c session.c ssh.c ssh.h sshconnect1.c]
4968 [sshconnect2.c sshd.c]
4969 new cipher framework
4970 - markus@cvs.openbsd.org 2000/10/11 14:45:21
4971 [cipher.c]
4972 remove DES
4973 - markus@cvs.openbsd.org 2000/10/12 03:59:20
4974 [cipher.c cipher.h sshconnect1.c sshconnect2.c sshd.c]
4975 enable DES in SSH-1 clients only
4976 - markus@cvs.openbsd.org 2000/10/12 08:21:13
4977 [kex.h packet.c]
4978 remove unused
4979 - markus@cvs.openbsd.org 2000/10/13 12:34:46
4980 [sshd.c]
4981 Kludge for F-Secure Macintosh < 1.0.2; appro@fy.chalmers.se
4982 - markus@cvs.openbsd.org 2000/10/13 12:59:15
4983 [cipher.c cipher.h myproposal.h rijndael.c rijndael.h]
4984 rijndael/aes support
4985 - markus@cvs.openbsd.org 2000/10/13 13:10:54
4986 [sshd.8]
4987 more info about -V
4988 - markus@cvs.openbsd.org 2000/10/13 13:12:02
4989 [myproposal.h]
4990 prefer no compression
3ed32516 4991 - (djm) Fix scp user@host handling
4992 - (djm) Don't clobber ssh_prng_cmds on install
6bcf7caa 4993 - (stevesk) Include config.h in rijndael.c so we define intXX_t and
4994 u_intXX_t types on all platforms.
9ea53ba5 4995 - (stevesk) rijndael.c: cleanup missing declaration warnings.
2919e060 4996 - (stevesk) ~/.hushlogin shouldn't cause required password change to
4997 be bypassed.
f5665f6f 4998 - (stevesk) Display correct path to ssh-askpass in configure output.
4999 Report from Lutz Jaenicke.
71dfaf1c 5000
ebd782f7 500120001007
5002 - (stevesk) Print PAM return value in PAM log messages to aid
5003 with debugging.
97994d32 5004 - (stevesk) Fix detection of pw_class struct member in configure;
5005 patch from KAMAHARA Junzo <kamahara@cc.kshosen.ac.jp>
5006
47a134c1 500720001002
5008 - (djm) Fix USER_PATH, report from Kevin Steves <stevesk@sweden.hp.com>
5009 - (djm) Add host system and CC to end-of-configure report. Suggested by
5010 Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
5011
7322ef0e 501220000931
5013 - (djm) Cygwin fixes from Corinna Vinschen <vinschen@cygnus.com>
5014
6ac7829a 501520000930
b6490dcb 5016 - (djm) Irix ssh_prng_cmds path fix from Pekka Savola <pekkas@netcore.fi>
61e96248 5017 - (djm) Support in bsd-snprintf.c for long long conversions from
772bd898 5018 Ben Lindstrom <mouring@pconline.com>
5019 - (djm) Cleanup NeXT support from Ben Lindstrom <mouring@pconline.com>
857040fb 5020 - (djm) Ignore SIGPIPEs from serverloop to child. Fixes crashes with
61e96248 5021 very short lived X connections. Bug report from Tobias Oetiker
857040fb 5022 <oetiker@ee.ethz.ch>. Fix from Markus Friedl <markus@cvs.openbsd.org>
bd2d7f6a 5023 - (djm) Add recent InitScripts as a RPM dependancy for openssh-server
5024 patch from Pekka Savola <pekkas@netcore.fi>
58665035 5025 - (djm) Forgot to cvs add LICENSE file
dc2901a0 5026 - (djm) Add LICENSE to RPM spec files
de273eef 5027 - (djm) CVS OpenBSD sync:
5028 - markus@cvs.openbsd.org 2000/09/26 13:59:59
5029 [clientloop.c]
5030 use debug2
5031 - markus@cvs.openbsd.org 2000/09/27 15:41:34
5032 [auth2.c sshconnect2.c]
5033 use key_type()
5034 - markus@cvs.openbsd.org 2000/09/28 12:03:18
5035 [channels.c]
5036 debug -> debug2 cleanup
61e96248 5037 - (djm) Irix strips "/dev/tty" from [uw]tmp entries (other systems only
2a7d529a 5038 strip "/dev/"). Fix loginrec.c based on patch from Alain St-Denis
5039 <Alain.St-Denis@ec.gc.ca>
61e96248 5040 - (djm) Fix 9 character passphrase failure with gnome-ssh-askpass.
5041 Problem was caused by interrupted read in ssh-add. Report from Donald
2a7d529a 5042 J. Barry <don@astro.cornell.edu>
6ac7829a 5043
c5d85828 504420000929
5045 - (djm) Fix SSH2 not terminating until all background tasks done problem.
61e96248 5046 - (djm) Another off-by-one fix from Pavel Kankovsky
5047 <peak@argo.troja.mff.cuni.cz>
22d89d24 5048 - (djm) Clean up. Strip some unnecessary differences with OpenBSD's code,
5049 tidy necessary differences. Use Markus' new debugN() in entropy.c
61e96248 5050 - (djm) Merged big SCO portability patch from Tim Rice
77bb0bca 5051 <tim@multitalents.net>
c5d85828 5052
6fd7f731 505320000926
5054 - (djm) Update X11-askpass to 1.0.2 in RPM spec file
c5ae7384 5055 - (djm) Define _REENTRANT to pickup strtok_r() on HP/UX
61e96248 5056 - (djm) Security: fix off-by-one buffer overrun in fake-getnameinfo.c.
5057 Report and fix from Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
6fd7f731 5058
2f125ca1 505920000924
5060 - (djm) Merged cleanup patch from Mark Miller <markm@swoon.net>
5061 - (djm) A bit more cleanup - created cygwin_util.h
bcdaaeab 5062 - (djm) Include strtok_r() from OpenBSD libc. Fixes report from Mark Miller
5063 <markm@swoon.net>
2f125ca1 5064
764d4113 506520000923
61e96248 5066 - (djm) Fix address logging in utmp from Kevin Steves
764d4113 5067 <stevesk@sweden.hp.com>
777319db 5068 - (djm) Redhat spec and manpage fixes from Pekka Savola <pekkas@netcore.fi>
bd590612 5069 - (djm) Seperate tests for int64_t and u_int64_t types
61e96248 5070 - (djm) Tweak password expiry checking at suggestion of Kevin Steves
37c1c46d 5071 <stevesk@sweden.hp.com>
e79b44e1 5072 - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
61e96248 5073 - (djm) Use printf %lld instead of %qd in sftp-server.c. Fix from
e2144f11 5074 Michael Stone <mstone@cs.loyola.edu>
188adeb2 5075 - (djm) OpenBSD CVS sync:
5076 - markus@cvs.openbsd.org 2000/09/17 09:38:59
5077 [sshconnect2.c sshd.c]
5078 fix DEBUG_KEXDH
5079 - markus@cvs.openbsd.org 2000/09/17 09:52:51
5080 [sshconnect.c]
5081 yes no; ok niels@
5082 - markus@cvs.openbsd.org 2000/09/21 04:55:11
5083 [sshd.8]
5084 typo
5085 - markus@cvs.openbsd.org 2000/09/21 05:03:54
5086 [serverloop.c]
5087 typo
5088 - markus@cvs.openbsd.org 2000/09/21 05:11:42
5089 scp.c
5090 utime() to utimes(); mouring@pconline.com
5091 - markus@cvs.openbsd.org 2000/09/21 05:25:08
5092 sshconnect2.c
5093 change login logic in ssh2, allows plugin of other auth methods
5094 - markus@cvs.openbsd.org 2000/09/21 05:25:35
5095 [auth2.c channels.c channels.h clientloop.c dispatch.c dispatch.h]
5096 [serverloop.c]
5097 add context to dispatch_run
5098 - markus@cvs.openbsd.org 2000/09/21 05:07:52
5099 authfd.c authfd.h ssh-agent.c
5100 bug compat for old ssh.com software
764d4113 5101
7f377177 510220000920
5103 - (djm) Fix bad path substitution. Report from Andrew Miner
5104 <asminer@cs.iastate.edu>
5105
bcbf86ec 510620000916
61e96248 5107 - (djm) Fix SSL search order from Lutz Jaenicke
7950bf97 5108 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
19ece6d2 5109 - (djm) New SuSE spec from Corinna Vinschen <corinna@vinschen.de>
9cd45ea4 5110 - (djm) Update CygWin support from Corinna Vinschen <vinschen@cygnus.com>
995edaac 5111 - (djm) Use a real struct sockaddr inside the fake struct sockaddr_storage.
5112 Patch from Larry Jones <larry.jones@sdrc.com>
61e96248 5113 - (djm) Add Steve VanDevender's <stevev@darkwing.uoregon.edu> PAM
ad55cd03 5114 password change patch.
5115 - (djm) Bring licenses on my stuff in line with OpenBSD's
0bbfbdeb 5116 - (djm) Cleanup auth-passwd.c and unify HP/UX authentication. Patch from
5117 Kevin Steves <stevesk@sweden.hp.com>
7f8f5e00 5118 - (djm) Shadow expiry check fix from Pavel Troller <patrol@omni.sinus.cz>
5119 - (djm) Re-enable int64_t types - we need them for sftp
5120 - (djm) Use libexecdir from configure , rather than libexecdir/ssh
5121 - (djm) Update Redhat SPEC file accordingly
5122 - (djm) Add Kevin Steves <stevesk@sweden.hp.com> HP/UX contrib files
5123 - (djm) Add Charles Levert <charles@comm.polymtl.ca> getpgrp patch
61e96248 5124 - (djm) Fix password auth on HP/UX 10.20. Patch from Dirk De Wachter
7f8f5e00 5125 <Dirk.DeWachter@rug.ac.be>
61e96248 5126 - (djm) Fixprogs and entropy list fixes from Larry Jones
7f8f5e00 5127 <larry.jones@sdrc.com>
5128 - (djm) Fix for SuSE spec file from Takashi YOSHIDA
5129 <tyoshida@gemini.rc.kyushu-u.ac.jp>
bcbf86ec 5130 - (djm) Merge OpenBSD changes:
5131 - markus@cvs.openbsd.org 2000/09/05 02:59:57
5132 [session.c]
5133 print hostname (not hushlogin)
5134 - markus@cvs.openbsd.org 2000/09/05 13:18:48
5135 [authfile.c ssh-add.c]
5136 enable ssh-add -d for DSA keys
5137 - markus@cvs.openbsd.org 2000/09/05 13:20:49
5138 [sftp-server.c]
5139 cleanup
5140 - markus@cvs.openbsd.org 2000/09/06 03:46:41
5141 [authfile.h]
5142 prototype
5143 - deraadt@cvs.openbsd.org 2000/09/07 14:27:56
5144 [ALL]
61e96248 5145 cleanup copyright notices on all files. I have attempted to be
5146 accurate with the details. everything is now under Tatu's licence
5147 (which I copied from his readme), and/or the core-sdi bsd-ish thing
5148 for deattack, or various openbsd developers under a 2-term bsd
bcbf86ec 5149 licence. We're not changing any rules, just being accurate.
5150 - markus@cvs.openbsd.org 2000/09/07 14:40:30
5151 [channels.c channels.h clientloop.c serverloop.c ssh.c]
5152 cleanup window and packet sizes for ssh2 flow control; ok niels
5153 - markus@cvs.openbsd.org 2000/09/07 14:53:00
5154 [scp.c]
5155 typo
5156 - markus@cvs.openbsd.org 2000/09/07 15:13:37
5157 [auth-options.c auth-options.h auth-rh-rsa.c auth-rsa.c auth.c]
5158 [authfile.h canohost.c channels.h compat.c hostfile.h log.c match.h]
5159 [pty.c readconf.c]
5160 some more Copyright fixes
5161 - markus@cvs.openbsd.org 2000/09/08 03:02:51
5162 [README.openssh2]
5163 bye bye
5164 - deraadt@cvs.openbsd.org 2000/09/11 18:38:33
5165 [LICENCE cipher.c]
5166 a few more comments about it being ARC4 not RC4
5167 - markus@cvs.openbsd.org 2000/09/12 14:53:11
5168 [log-client.c log-server.c log.c ssh.1 ssh.c ssh.h sshd.8 sshd.c]
5169 multiple debug levels
5170 - markus@cvs.openbsd.org 2000/09/14 14:25:15
5171 [clientloop.c]
5172 typo
5173 - deraadt@cvs.openbsd.org 2000/09/15 01:13:51
5174 [ssh-agent.c]
5175 check return value for setenv(3) for failure, and deal appropriately
5176
deb8d717 517720000913
5178 - (djm) Fix server not exiting with jobs in background.
5179
b5e300c2 518020000905
5181 - (djm) Import OpenBSD CVS changes
5182 - markus@cvs.openbsd.org 2000/08/31 15:52:24
5183 [Makefile sshd.8 sshd_config sftp-server.8 sftp-server.c]
5184 implement a SFTP server. interops with sftp2, scp2 and the windows
5185 client from ssh.com
5186 - markus@cvs.openbsd.org 2000/08/31 15:56:03
5187 [README.openssh2]
5188 sync
5189 - markus@cvs.openbsd.org 2000/08/31 16:05:42
5190 [session.c]
5191 Wall
5192 - markus@cvs.openbsd.org 2000/08/31 16:09:34
5193 [authfd.c ssh-agent.c]
5194 add a flag to SSH2_AGENTC_SIGN_REQUEST for future extensions
5195 - deraadt@cvs.openbsd.org 2000/09/01 09:25:13
5196 [scp.1 scp.c]
5197 cleanup and fix -S support; stevesk@sweden.hp.com
5198 - markus@cvs.openbsd.org 2000/09/01 16:29:32
5199 [sftp-server.c]
5200 portability fixes
5201 - markus@cvs.openbsd.org 2000/09/01 16:32:41
5202 [sftp-server.c]
5203 fix cast; mouring@pconline.com
5204 - itojun@cvs.openbsd.org 2000/09/03 09:23:28
5205 [ssh-add.1 ssh.1]
5206 add missing .El against .Bl.
5207 - markus@cvs.openbsd.org 2000/09/04 13:03:41
5208 [session.c]
5209 missing close; ok theo
5210 - markus@cvs.openbsd.org 2000/09/04 13:07:21
5211 [session.c]
5212 fix get_last_login_time order; from andre@van-veen.de
5213 - markus@cvs.openbsd.org 2000/09/04 13:10:09
5214 [sftp-server.c]
5215 more cast fixes; from mouring@pconline.com
5216 - markus@cvs.openbsd.org 2000/09/04 13:06:04
5217 [session.c]
5218 set SSH_ORIGINAL_COMMAND; from Leakin@dfw.nostrum.com, bet@rahul.net
5219 - (djm) Cleanup after import. Fix sftp-server compilation, Makefile
3c62e7eb 5220 - (djm) Merge cygwin support from Corinna Vinschen <vinschen@cygnus.com>
5221
1e61f54a 522220000903
5223 - (djm) Fix Redhat init script
5224
c80876b4 522520000901
5226 - (djm) Pick up Jim's new X11-askpass
5227 - (djm) Release 2.2.0p1
5228
8b4a0d08 522920000831
bcbf86ec 5230 - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
8b4a0d08 5231 <acox@cv.telegroup.com>
b817711d 5232 - (djm) Pick up new version (2.2.0) from OpenBSD CVS
8b4a0d08 5233
0b65b628 523420000830
5235 - (djm) Compile warning fixes from Mark Miller <markm@swoon.net>
10fa00c8 5236 - (djm) Periodically rekey arc4random
5237 - (djm) Clean up diff against OpenBSD.
bcbf86ec 5238 - (djm) HPUX 11 needs USE_PIPES as well: Kevin Steves
2b10f47a 5239 <stevesk@sweden.hp.com>
b33a2e6e 5240 - (djm) Quieten the pam delete credentials error message
44839801 5241 - (djm) Fix printing of $DISPLAY hack if set by system type. Report from
5242 Kevin Steves <stevesk@sweden.hp.com>
84a770d1 5243 - (djm) NeXT patch from Ben Lindstrom <mouring@pconline.com>
7efa2776 5244 - (djm) Fix doh in bsd-arc4random.c
0b65b628 5245
9aaf9be4 524620000829
bcbf86ec 5247 - (djm) Fix ^C ignored issue on Solaris. Diagnosis from Gert
5248 Doering <gert@greenie.muc.de>, John Horne <J.Horne@plymouth.ac.uk> and
9aaf9be4 5249 Garrick James <garrick@james.net>
b5f90139 5250 - (djm) Check for SCO pty naming style (ptyp%d/ttyp%d). Based on fix from
5251 Bastian Trompetter <btrompetter@firemail.de>
698d107e 5252 - (djm) NeXT tweaks from Ben Lindstrom <mouring@pconline.com>
14a9a859 5253 - More OpenBSD updates:
5254 - deraadt@cvs.openbsd.org 2000/08/24 15:46:59
5255 [scp.c]
5256 off_t in sink, to fix files > 2GB, i think, test is still running ;-)
5257 - deraadt@cvs.openbsd.org 2000/08/25 10:10:06
5258 [session.c]
5259 Wall
5260 - markus@cvs.openbsd.org 2000/08/26 04:33:43
5261 [compat.c]
5262 ssh.com-2.3.0
5263 - markus@cvs.openbsd.org 2000/08/27 12:18:05
5264 [compat.c]
5265 compatibility with future ssh.com versions
5266 - deraadt@cvs.openbsd.org 2000/08/27 21:50:55
5267 [auth-krb4.c session.c ssh-add.c sshconnect.c uidswap.c]
5268 print uid/gid as unsigned
5269 - markus@cvs.openbsd.org 2000/08/28 13:51:00
5270 [ssh.c]
5271 enable -n and -f for ssh2
5272 - markus@cvs.openbsd.org 2000/08/28 14:19:53
5273 [ssh.c]
5274 allow combination of -N and -f
5275 - markus@cvs.openbsd.org 2000/08/28 14:20:56
5276 [util.c]
5277 util.c
5278 - markus@cvs.openbsd.org 2000/08/28 14:22:02
5279 [util.c]
5280 undo
5281 - markus@cvs.openbsd.org 2000/08/28 14:23:38
5282 [util.c]
5283 don't complain if setting NONBLOCK fails with ENODEV
9aaf9be4 5284
137d7b6c 528520000823
5286 - (djm) Define USE_PIPES to avoid socketpair problems on HPUX 10 and SunOS 4
bcbf86ec 5287 Avoids "scp never exits" problem. Reports from Lutz Jaenicke
5288 <Lutz.Jaenicke@aet.TU-Cottbus.DE> and Tamito KAJIYAMA
137d7b6c 5289 <kajiyama@grad.sccs.chukyo-u.ac.jp>
2e73a022 5290 - (djm) Pick up LOGIN_PROGRAM from environment or PATH if not set by headers
da40ab4d 5291 - (djm) Add local version to version.h
ea788c22 5292 - (djm) Don't reseed arc4random everytime it is used
2e73a022 5293 - (djm) OpenBSD CVS updates:
5294 - deraadt@cvs.openbsd.org 2000/08/18 20:07:23
5295 [ssh.c]
5296 accept remsh as a valid name as well; roman@buildpoint.com
5297 - deraadt@cvs.openbsd.org 2000/08/18 20:17:13
5298 [deattack.c crc32.c packet.c]
5299 rename crc32() to ssh_crc32() to avoid zlib name clash. do not move to
5300 libz crc32 function yet, because it has ugly "long"'s in it;
5301 oneill@cs.sfu.ca
5302 - deraadt@cvs.openbsd.org 2000/08/18 20:26:08
5303 [scp.1 scp.c]
5304 -S prog support; tv@debian.org
5305 - deraadt@cvs.openbsd.org 2000/08/18 20:50:07
5306 [scp.c]
5307 knf
5308 - deraadt@cvs.openbsd.org 2000/08/18 20:57:33
5309 [log-client.c]
5310 shorten
5311 - markus@cvs.openbsd.org 2000/08/19 12:48:11
5312 [channels.c channels.h clientloop.c ssh.c ssh.h]
5313 support for ~. in ssh2
5314 - deraadt@cvs.openbsd.org 2000/08/19 15:29:40
5315 [crc32.h]
5316 proper prototype
5317 - markus@cvs.openbsd.org 2000/08/19 15:34:44
bcbf86ec 5318 [authfd.c authfd.h key.c key.h ssh-add.1 ssh-add.c ssh-agent.1]
5319 [ssh-agent.c ssh-keygen.c sshconnect1.c sshconnect2.c Makefile]
2e73a022 5320 [fingerprint.c fingerprint.h]
5321 add SSH2/DSA support to the agent and some other DSA related cleanups.
5322 (note that we cannot talk to ssh.com's ssh2 agents)
5323 - markus@cvs.openbsd.org 2000/08/19 15:55:52
5324 [channels.c channels.h clientloop.c]
5325 more ~ support for ssh2
5326 - markus@cvs.openbsd.org 2000/08/19 16:21:19
5327 [clientloop.c]
5328 oops
5329 - millert@cvs.openbsd.org 2000/08/20 12:25:53
5330 [session.c]
5331 We have to stash the result of get_remote_name_or_ip() before we
5332 close our socket or getpeername() will get EBADF and the process
5333 will exit. Only a problem for "UseLogin yes".
5334 - millert@cvs.openbsd.org 2000/08/20 12:30:59
5335 [session.c]
5336 Only check /etc/nologin if "UseLogin no" since login(1) may have its
5337 own policy on determining who is allowed to login when /etc/nologin
5338 is present. Also use the _PATH_NOLOGIN define.
5339 - millert@cvs.openbsd.org 2000/08/20 12:42:43
5340 [auth1.c auth2.c session.c ssh.c]
5341 Add calls to setusercontext() and login_get*(). We basically call
5342 setusercontext() in most places where previously we did a setlogin().
5343 Add default login.conf file and put root in the "daemon" login class.
5344 - millert@cvs.openbsd.org 2000/08/21 10:23:31
5345 [session.c]
5346 Fix incorrect PATH setting; noted by Markus.
137d7b6c 5347
c345cf9d 534820000818
5349 - (djm) OpenBSD CVS changes:
5350 - markus@cvs.openbsd.org 2000/07/22 03:14:37
5351 [servconf.c servconf.h sshd.8 sshd.c sshd_config]
5352 random early drop; ok theo, niels
5353 - deraadt@cvs.openbsd.org 2000/07/26 11:46:51
5354 [ssh.1]
5355 typo
5356 - deraadt@cvs.openbsd.org 2000/08/01 11:46:11
5357 [sshd.8]
5358 many fixes from pepper@mail.reppep.com
5359 - provos@cvs.openbsd.org 2000/08/01 13:01:42
5360 [Makefile.in util.c aux.c]
5361 rename aux.c to util.c to help with cygwin port
5362 - deraadt@cvs.openbsd.org 2000/08/02 00:23:31
5363 [authfd.c]
5364 correct sun_len; Alexander@Leidinger.net
5365 - provos@cvs.openbsd.org 2000/08/02 10:27:17
5366 [readconf.c sshd.8]
5367 disable kerberos authentication by default
5368 - provos@cvs.openbsd.org 2000/08/02 11:27:05
5369 [sshd.8 readconf.c auth-krb4.c]
5370 disallow kerberos authentication if we can't verify the TGT; from
5371 dugsong@
5372 kerberos authentication is on by default only if you have a srvtab.
5373 - markus@cvs.openbsd.org 2000/08/04 14:30:07
5374 [auth.c]
5375 unused
5376 - markus@cvs.openbsd.org 2000/08/04 14:30:35
5377 [sshd_config]
5378 MaxStartups
5379 - markus@cvs.openbsd.org 2000/08/15 13:20:46
5380 [authfd.c]
5381 cleanup; ok niels@
5382 - markus@cvs.openbsd.org 2000/08/17 14:05:10
5383 [session.c]
5384 cleanup login(1)-like jobs, no duplicate utmp entries
5385 - markus@cvs.openbsd.org 2000/08/17 14:06:34
5386 [session.c sshd.8 sshd.c]
5387 sshd -u len, similar to telnetd
1a022229 5388 - (djm) Lastlog was not getting closed after writing login entry
39987cc0 5389 - (djm) Add Solaris package support from Rip Loomis <loomisg@cist.saic.com>
c345cf9d 5390
416ed5a7 539120000816
5392 - (djm) Replacement for inet_ntoa for Irix (which breaks on gcc)
bcbf86ec 5393 - (djm) Fix strerror replacement for old SunOS. Based on patch from
416ed5a7 5394 Charles Levert <charles@comm.polymtl.ca>
bcbf86ec 5395 - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4
416ed5a7 5396 implementation.
ba606eb2 5397 - (djm) SUN_LEN macro for systems which lack it
416ed5a7 5398
dbaa2e87 539920000815
5400 - (djm) More SunOS 4.1.x fixes from Nate Itkin <nitkin@europa.com>
cd352c82 5401 - (djm) Avoid failures on Irix when ssh is not setuid. Fix from
5402 Michael Stone <mstone@cs.loyola.edu>
d93a7e5a 5403 - (djm) Don't seek in directory based lastlogs
bcbf86ec 5404 - (djm) Fix --with-ipaddr-display configure option test. Patch from
d93a7e5a 5405 Jarno Huuskonen <jhuuskon@messi.uku.fi>
2a2cb9e7 5406 - (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
dbaa2e87 5407
6c33bf70 540820000813
5409 - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
5410 Fabrice bacchella <fabrice.bacchella@marchfirst.fr>
5411
3fcce26c 541220000809
bcbf86ec 5413 - (djm) Define AIX hard limits if headers don't. Report from
3fcce26c 5414 Bill Painter <william.t.painter@lmco.com>
bcbf86ec 5415 - (djm) utmp direct write & SunOS 4 patch from Charles Levert
32eec038 5416 <charles@comm.polymtl.ca>
3fcce26c 5417
71d43804 541820000808
5419 - (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
5420 time, spec file cleanup.
5421
f9bcea07 542220000807
378f2232 5423 - (djm) Set 0755 on binaries during install. Report from Lutz Jaenicke
47670e77 5424 - (djm) Suppress error messages on channel close shutdown() failurs
5425 works around Linux bug. Patch from Zack Weinberg <zack@wolery.cumb.org>
378f2232 5426 - (djm) Add some more entropy collection commands from Lutz Jaenicke
f9bcea07 5427
bcf89935 542820000725
5429 - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
5430
4c8722d9 543120000721
5432 - (djm) OpenBSD CVS updates:
5433 - markus@cvs.openbsd.org 2000/07/16 02:27:22
5434 [authfd.c authfd.h channels.c clientloop.c ssh-add.c ssh-agent.c ssh.c]
5435 [sshconnect1.c sshconnect2.c]
5436 make ssh-add accept dsa keys (the agent does not)
5437 - djm@cvs.openbsd.org 2000/07/17 19:25:02
5438 [sshd.c]
5439 Another closing of stdin; ok deraadt
5440 - markus@cvs.openbsd.org 2000/07/19 18:33:12
5441 [dsa.c]
5442 missing free, reorder
5443 - markus@cvs.openbsd.org 2000/07/20 16:23:14
5444 [ssh-keygen.1]
5445 document input and output files
5446
240777b8 544720000720
4c8722d9 5448 - (djm) Spec file fix from Petr Novotny <Petr.Novotny@antek.cz>
240777b8 5449
3c7def32 545020000716
4c8722d9 5451 - (djm) Release 2.1.1p4
3c7def32 5452
819b676f 545320000715
704b1659 5454 - (djm) OpenBSD CVS updates
5455 - provos@cvs.openbsd.org 2000/07/13 16:53:22
5456 [aux.c readconf.c servconf.c ssh.h]
5457 allow multiple whitespace but only one '=' between tokens, bug report from
5458 Ralf S. Engelschall <rse@engelschall.com> but different fix. okay deraadt@
5459 - provos@cvs.openbsd.org 2000/07/13 17:14:09
5460 [clientloop.c]
5461 typo; todd@fries.net
5462 - provos@cvs.openbsd.org 2000/07/13 17:19:31
5463 [scp.c]
5464 close can fail on AFS, report error; from Greg Hudson <ghudson@mit.edu>
5465 - markus@cvs.openbsd.org 2000/07/14 16:59:46
5466 [readconf.c servconf.c]
5467 allow leading whitespace. ok niels
5468 - djm@cvs.openbsd.org 2000/07/14 22:01:38
5469 [ssh-keygen.c ssh.c]
5470 Always create ~/.ssh with mode 700; ok Markus
819b676f 5471 - Fixes for SunOS 4.1.4 from Gordon Atwood <gordon@cs.ualberta.ca>
5472 - Include floatingpoint.h for entropy.c
5473 - strerror replacement
704b1659 5474
3f7a7e4a 547520000712
c37fb3c1 5476 - (djm) Remove -lresolve for Reliant Unix
3f7a7e4a 5477 - (djm) OpenBSD CVS Updates:
5478 - deraadt@cvs.openbsd.org 2000/07/11 02:11:34
5479 [session.c sshd.c ]
5480 make MaxStartups code still work with -d; djm
5481 - deraadt@cvs.openbsd.org 2000/07/11 13:17:45
5482 [readconf.c ssh_config]
5483 disable FallBackToRsh by default
c37fb3c1 5484 - (djm) Replace in_addr_t with u_int32_t in bsd-inet_aton.c. Report from
5485 Ben Lindstrom <mouring@pconline.com>
1e970014 5486 - (djm) Make building of X11-Askpass and GNOME-Askpass optional in RPM
5487 spec file.
dcb36e5d 5488 - (djm) Released 2.1.1p3
3f7a7e4a 5489
56118702 549020000711
5491 - (djm) Fixup for AIX getuserattr() support from Tom Bertelson
5492 <tbert@abac.com>
132dd316 5493 - (djm) ReliantUNIX support from Udo Schweigert <ust@cert.siemens.de>
bcbf86ec 5494 - (djm) NeXT: dirent structures to get scp working from Ben Lindstrom
c99e5056 5495 <mouring@pconline.com>
bcbf86ec 5496 - (djm) Fix broken inet_ntoa check and ut_user/ut_name confusion, report
dc2a6d09 5497 from Jim Watt <jimw@peisj.pebio.com>
2d9a148e 5498 - (djm) Replaced bsd-snprintf.c with one from Mutt source tree, it is known
5499 to compile on more platforms (incl NeXT).
cc6f2c4c 5500 - (djm) Added bsd-inet_aton and configure support for NeXT
aae19451 5501 - (djm) Misc NeXT fixes from Ben Lindstrom <mouring@pconline.com>
089fbbd2 5502 - (djm) OpenBSD CVS updates:
5503 - markus@cvs.openbsd.org 2000/06/26 03:22:29
5504 [authfd.c]
5505 cleanup, less cut&paste
5506 - markus@cvs.openbsd.org 2000/06/26 15:59:19
5507 [servconf.c servconf.h session.c sshd.8 sshd.c]
bcbf86ec 5508 MaxStartups: limit number of unauthenticated connections, work by
089fbbd2 5509 theo and me
5510 - deraadt@cvs.openbsd.org 2000/07/05 14:18:07
5511 [session.c]
5512 use no_x11_forwarding_flag correctly; provos ok
5513 - provos@cvs.openbsd.org 2000/07/05 15:35:57
5514 [sshd.c]
5515 typo
5516 - aaron@cvs.openbsd.org 2000/07/05 22:06:58
5517 [scp.1 ssh-agent.1 ssh-keygen.1 sshd.8]
bcbf86ec 5518 Insert more missing .El directives. Our troff really should identify
089fbbd2 5519 these and spit out a warning.
5520 - todd@cvs.openbsd.org 2000/07/06 21:55:04
5521 [auth-rsa.c auth2.c ssh-keygen.c]
5522 clean code is good code
5523 - deraadt@cvs.openbsd.org 2000/07/07 02:14:29
5524 [serverloop.c]
5525 sense of port forwarding flag test was backwards
5526 - provos@cvs.openbsd.org 2000/07/08 17:17:31
5527 [compat.c readconf.c]
5528 replace strtok with strsep; from David Young <dyoung@onthejob.net>
5529 - deraadt@cvs.openbsd.org 2000/07/08 19:21:15
5530 [auth.h]
5531 KNF
5532 - ho@cvs.openbsd.org 2000/07/08 19:27:33
5533 [compat.c readconf.c]
5534 Better conditions for strsep() ending.
5535 - ho@cvs.openbsd.org 2000/07/10 10:27:05
5536 [readconf.c]
5537 Get the correct message on errors. (niels@ ok)
5538 - ho@cvs.openbsd.org 2000/07/10 10:30:25
5539 [cipher.c kex.c servconf.c]
5540 strtok() --> strsep(). (niels@ ok)
5540ea9b 5541 - (djm) Fix problem with debug mode and MaxStartups
eb37534b 5542 - (djm) Don't generate host keys when $(DESTDIR) is set (e.g. during RPM
5543 builds)
229f64ee 5544 - (djm) Add strsep function from OpenBSD libc for systems that lack it
56118702 5545
a8545c6c 554620000709
5547 - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
5548 Kevin Steves <stevesk@sweden.hp.com>
ec90a7d6 5549 - (djm) Match prototype and function declaration for rresvport_af.
5550 Problem report from Niklas Edmundsson <nikke@ing.umu.se>
bcbf86ec 5551 - (djm) Missing $(DESTDIR) on host-key target causing problems with RPM
732e8ac5 5552 builds. Problem report from Gregory Leblanc <GLeblanc@cu-portland.edu>
37f1df94 5553 - (djm) Replace ut_name with ut_user. Patch from Jim Watt
5554 <jimw@peisj.pebio.com>
264dce47 5555 - (djm) Fix pam sprintf fix
5556 - (djm) Cleanup entropy collection code a little more. Split initialisation
5557 from seeding, perform intialisation immediatly at start, be careful with
5558 uids. Based on problem report from Jim Watt <jimw@peisj.pebio.com>
5bf9cfe9 5559 - (djm) More NeXT compatibility from Ben Lindstrom <mouring@pconline.com>
5560 Including sigaction() et al. replacements
bcbf86ec 5561 - (djm) AIX getuserattr() session initialisation from Tom Bertelson
eeec075f 5562 <tbert@abac.com>
a8545c6c 5563
e2902a5b 556420000708
bcbf86ec 5565 - (djm) Fix bad fprintf format handling in auth-pam.c. Patch from
e2902a5b 5566 Aaron Hopkins <aaron@die.net>
7a33f831 5567 - (djm) Fix incorrect configure handling of --with-rsh-path option. Fix from
5568 Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
bcbf86ec 5569 - (djm) Fixed undefined variables for OSF SIA. Report from
b3f162ba 5570 Baars, Henk <Hendrik.Baars@nl.origin-it.com>
bcbf86ec 5571 - (djm) Handle EWOULDBLOCK returns from read() and write() in atomicio.c
b28e4a3b 5572 Fix from Marquess, Steve Mr JMLFDC <Steve.Marquess@DET.AMEDD.ARMY.MIL>
bcbf86ec 5573 - (djm) Don't use inet_addr.
e2902a5b 5574
5637650d 557520000702
5576 - (djm) Fix brace mismatch from Corinna Vinschen <vinschen@cygnus.com>
27494968 5577 - (djm) Stop shadow expiry checking from preventing logins with NIS. Based
5578 on fix from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
a4070484 5579 - (djm) Use standard OpenSSL functions in auth-skey.c. Patch from
5580 Chris, the Young One <cky@pobox.com>
bcbf86ec 5581 - (djm) Fix scp progress meter on really wide terminals. Based on patch
88726b31 5582 from James H. Cloos Jr. <cloos@jhcloos.com>
5637650d 5583
388e9f9f 558420000701
5585 - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
daaff4d5 5586 - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
82258d68 5587 - (djm) Replace "/bin/sh" with _PATH_BSHELL. Report from Corinna Vinschen
5588 <vinschen@cygnus.com>
30228d7c 5589 - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
2647ae26 5590 - (djm) Added check for broken snprintf() functions which do not correctly
5591 terminate output string and attempt to use replacement.
46158300 5592 - (djm) Released 2.1.1p2
388e9f9f 5593
9f32ceb4 559420000628
5595 - (djm) Fixes to lastlog code for Irix
5596 - (djm) Use atomicio in loginrec
3206bb3b 5597 - (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
5598 Irix 6.x array sessions, project id's, and system audit trail id.
9e0c3e1f 5599 - (djm) Added 'distprep' make target to simplify packaging
bcbf86ec 5600 - (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
4d33e531 5601 support. Enable using "USE_SIA=1 ./configure [options]"
61e96248 5602
d8caae24 560320000627
5604 - (djm) Fixes to login code - not setting li->uid, cleanups
a05a70ab 5605 - (djm) Formatting
d8caae24 5606
fe30cc2e 560720000626
3e98362e 5608 - (djm) Better fix to aclocal tests from Garrick James <garrick@james.net>
4cb5ffa0 5609 - (djm) Account expiry support from Andreas Steinmetz <ast@domdv.de>
5610 - (djm) Added password expiry checking (no password change support)
be0b9bb7 5611 - (djm) Make EGD failures non-fatal if OpenSSL's entropy pool is still OK
5612 based on patch from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
b5b3f75d 5613 - (djm) Fix fixed EGD code.
3e98362e 5614 - OpenBSD CVS update
5615 - provos@cvs.openbsd.org 2000/06/25 14:17:58
5616 [channels.c]
5617 correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>
5618
1c04b088 561920000623
bcbf86ec 5620 - (djm) Use sa_family_t in prototype for rresvport_af. Patch from
1c04b088 5621 Svante Signell <svante.signell@telia.com>
5622 - (djm) Autoconf logic to define sa_family_t if it is missing
e5a0294f 5623 - OpenBSD CVS Updates:
5624 - markus@cvs.openbsd.org 2000/06/22 10:32:27
5625 [sshd.c]
5626 missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
5627 - djm@cvs.openbsd.org 2000/06/22 17:55:00
5628 [auth-krb4.c key.c radix.c uuencode.c]
5629 Missing CVS idents; ok markus
1c04b088 5630
f528fdf2 563120000622
5632 - (djm) Automatically generate host key during "make install". Suggested
5633 by Gary E. Miller <gem@rellim.com>
5634 - (djm) Paranoia before kill() system call
74fc9186 5635 - OpenBSD CVS Updates:
5636 - markus@cvs.openbsd.org 2000/06/18 18:50:11
5637 [auth2.c compat.c compat.h sshconnect2.c]
5638 make userauth+pubkey interop with ssh.com-2.2.0
5639 - markus@cvs.openbsd.org 2000/06/18 20:56:17
5640 [dsa.c]
5641 mem leak + be more paranoid in dsa_verify.
5642 - markus@cvs.openbsd.org 2000/06/18 21:29:50
5643 [key.c]
5644 cleanup fingerprinting, less hardcoded sizes
5645 - markus@cvs.openbsd.org 2000/06/19 19:39:45
5646 [atomicio.c auth-options.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
5647 [auth-rsa.c auth-skey.c authfd.c authfd.h authfile.c bufaux.c bufaux.h]
bcbf86ec 5648 [buffer.c buffer.h canohost.c channels.c channels.h cipher.c cipher.h]
74fc9186 5649 [clientloop.c compat.c compat.h compress.c compress.h crc32.c crc32.h]
5650 [deattack.c dispatch.c dsa.c fingerprint.c fingerprint.h getput.h hmac.c]
bcbf86ec 5651 [kex.c log-client.c log-server.c login.c match.c mpaux.c mpaux.h nchan.c]
5652 [nchan.h packet.c packet.h pty.c pty.h readconf.c readconf.h readpass.c]
74fc9186 5653 [rsa.c rsa.h scp.c servconf.c servconf.h ssh-add.c ssh-keygen.c ssh.c]
5654 [ssh.h tildexpand.c ttymodes.c ttymodes.h uidswap.c xmalloc.c xmalloc.h]
5655 OpenBSD tag
5656 - markus@cvs.openbsd.org 2000/06/21 10:46:10
5657 sshconnect2.c missing free; nuke old comment
f528fdf2 5658
e5fe9a1f 565920000620
5660 - (djm) Replace use of '-o' and '-a' logical operators in configure tests
986a22ec 5661 with '||' and '&&'. As suggested by Jim Knoble <jmknoble@jmknoble.cx>
e5fe9a1f 5662 to fix SCO Unixware problem reported by Gary E. Miller <gem@rellim.com>
c03aced4 5663 - (djm) Typo in loginrec.c
e5fe9a1f 5664
cbd7492e 566520000618
5666 - (djm) Add summary of configure options to end of ./configure run
bcbf86ec 5667 - (djm) Not all systems define RUSAGE_SELF & RUSAGE_CHILDREN. Report from
cbd7492e 5668 Michael Stone <mstone@cs.loyola.edu>
bcbf86ec 5669 - (djm) rusage is a privileged operation on some Unices (incl.
cbd7492e 5670 Solaris 2.5.1). Report from Paul D. Smith <pausmith@nortelnetworks.com>
bcbf86ec 5671 - (djm) Avoid PAM failures when running without a TTY. Report from
cbd7492e 5672 Martin Petrak <petrak@spsknm.schools.sk>
5673 - (djm) Include sys/types.h when including netinet/in.h in configure tests.
5674 Patch from Jun-ichiro itojun Hagino <itojun@iijlab.net>
729bfe59 5675 - (djm) Started merge of Ben Lindstrom's <mouring@pconline.com> NeXT support
38c295d6 5676 - OpenBSD CVS updates:
5677 - deraadt@cvs.openbsd.org 2000/06/17 09:58:46
5678 [channels.c]
5679 everyone says "nix it" (remove protocol 2 debugging message)
5680 - markus@cvs.openbsd.org 2000/06/17 13:24:34
5681 [sshconnect.c]
5682 allow extended server banners
5683 - markus@cvs.openbsd.org 2000/06/17 14:30:10
5684 [sshconnect.c]
5685 missing atomicio, typo
5686 - jakob@cvs.openbsd.org 2000/06/17 16:52:34
5687 [servconf.c servconf.h session.c sshd.8 sshd_config]
5688 add support for ssh v2 subsystems. ok markus@.
5689 - deraadt@cvs.openbsd.org 2000/06/17 18:57:48
5690 [readconf.c servconf.c]
5691 include = in WHITESPACE; markus ok
5692 - markus@cvs.openbsd.org 2000/06/17 19:09:10
5693 [auth2.c]
5694 implement bug compatibility with ssh-2.0.13 pubkey, server side
5695 - markus@cvs.openbsd.org 2000/06/17 21:00:28
5696 [compat.c]
5697 initial support for ssh.com's 2.2.0
5698 - markus@cvs.openbsd.org 2000/06/17 21:16:09
5699 [scp.c]
5700 typo
5701 - markus@cvs.openbsd.org 2000/06/17 22:05:02
5702 [auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
5703 split auth-rsa option parsing into auth-options
5704 add options support to authorized_keys2
5705 - markus@cvs.openbsd.org 2000/06/17 22:42:54
5706 [session.c]
5707 typo
cbd7492e 5708
509b1f88 570920000613
5710 - (djm) Fixes from Andrew McGill <andrewm@datrix.co.za>:
5711 - Platform define for SCO 3.x which breaks on /dev/ptmx
5712 - Detect and try to fix missing MAXPATHLEN
a4d05724 5713 - (djm) Fix short copy in loginrec.c (based on patch from Phill Camp
5714 <P.S.S.Camp@ukc.ac.uk>
509b1f88 5715
09564242 571620000612
5717 - (djm) Glob manpages in RPM spec files to catch compressed files
5718 - (djm) Full license in auth-pam.c
08ae384f 5719 - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
383207f7 5720 - (andre) AIX, lastlog, configure fixes from Tom Bertelson <tbert@abac.com>:
5721 - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is
5722 def'd
5723 - Set AIX to use preformatted manpages
61e96248 5724
74b224a0 572520000610
5726 - (djm) Minor doc tweaks
217ab55e 5727 - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>
74b224a0 5728
32c80420 572920000609
5730 - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
5731 (in favour of utmpx) on Solaris 8
5732
fa649821 573320000606
48c99b2c 5734 - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
5735 list of commands (by default). Removed verbose debugging (by default).
bcbf86ec 5736 - (djm) Increased command entropy estimates and default entropy collection
48c99b2c 5737 timeout
f988dce5 5738 - (djm) Remove duplicate headers from loginrec.c
c5fa2eb0 5739 - (djm) Don't add /usr/local/lib to library search path on Irix
bcbf86ec 5740 - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
fa649821 5741 <tibbs@math.uh.edu>
1e83f2a2 5742 - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
5743 <zack@wolery.cumb.org>
fa649821 5744 - (djm) OpenBSD CVS updates:
5745 - todd@cvs.openbsd.org
5746 [sshconnect2.c]
5747 teach protocol v2 to count login failures properly and also enable an
5748 explanation of why the password prompt comes up again like v1; this is NOT
5749 crypto
61e96248 5750 - markus@cvs.openbsd.org
fa649821 5751 [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
5752 xauth_location support; pr 1234
5753 [readconf.c sshconnect2.c]
5754 typo, unused
5755 [session.c]
5756 allow use_login only for login sessions, otherwise remote commands are
5757 execed with uid==0
5758 [sshd.8]
5759 document UseLogin better
5760 [version.h]
5761 OpenSSH 2.1.1
5762 [auth-rsa.c]
bcbf86ec 5763 fix match_hostname() logic for auth-rsa: deny access if we have a
fa649821 5764 negative match or no match at all
5765 [channels.c hostfile.c match.c]
bcbf86ec 5766 don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via
fa649821 5767 kris@FreeBSD.org
5768
8e7b16f8 576920000606
bcbf86ec 5770 - (djm) Added --with-cflags, --with-ldflags and --with-libs options to
8e7b16f8 5771 configure.
5772
d7c0f3d5 577320000604
5774 - Configure tweaking for new login code on Irix 5.3
2d6c411f 5775 - (andre) login code changes based on djm feedback
d7c0f3d5 5776
2d6c411f 577720000603
5778 - (andre) New login code
5779 - Remove bsd-login.[ch] and all the OpenBSD-derived code in login.c
5780 - Add loginrec.[ch], logintest.c and autoconf code
61e96248 5781
5daf7064 578220000531
5783 - Cleanup of auth.c, login.c and fake-*
5784 - Cleanup of auth-pam.c, save and print "account expired" error messages
e5662474 5785 - Fix EGD read bug by IWAMURO Motonori <iwa@mmp.fujitsu.co.jp>
69134b9b 5786 - Rewrote bsd-login to use proper utmp API if available. Major cleanup
5787 of fallback DIY code.
5daf7064 5788
b9f446d1 578920000530
5790 - Define atexit for old Solaris
b02ebca1 5791 - Fix buffer overrun in login.c for systems which use syslen in utmpx.
5792 patch from YOSHIFUJI Hideaki <yoshfuji@cerberus.nemoto.ecei.tohoku.ac.jp>
71276795 5793 - OpenBSD CVS updates:
5794 - markus@cvs.openbsd.org
5795 [session.c]
5796 make x11-fwd work w/ localhost (xauth add host/unix:11)
5797 [cipher.c compat.c readconf.c servconf.c]
5798 check strtok() != NULL; ok niels@
5799 [key.c]
5800 fix key_read() for uuencoded keys w/o '='
5801 [serverloop.c]
5802 group ssh1 vs. ssh2 in serverloop
5803 [kex.c kex.h myproposal.h sshconnect2.c sshd.c]
5804 split kexinit/kexdh, factor out common code
5805 [readconf.c ssh.1 ssh.c]
5806 forwardagent defaults to no, add ssh -A
5807 - theo@cvs.openbsd.org
5808 [session.c]
5809 just some line shortening
60688ef9 5810 - Released 2.1.0p3
b9f446d1 5811
29611d9c 581220000520
5813 - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
25422c70 5814 - Don't touch utmp if USE_UTMPX defined
a423beaf 5815 - SunOS 4.x support from Todd C. Miller <Todd.Miller@courtesan.com>
fc1e8bf4 5816 - SIGCHLD fix for AIX and HPUX from Tom Bertelson <tbert@abac.com>
bcbf86ec 5817 - HPUX and Configure fixes from Lutz Jaenicke
fc1e8bf4 5818 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
bcbf86ec 5819 - Use mkinstalldirs script to make directories instead of non-portable
fc1e8bf4 5820 "install -d". Suggested by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
a905808d 5821 - Doc cleanup
29611d9c 5822
301e9b01 582320000518
5824 - Include Andre Lucas' fixprogs script. Forgot to "cvs add" it yesterday
5825 - OpenBSD CVS updates:
5826 - markus@cvs.openbsd.org
5827 [sshconnect.c]
5828 copy only ai_addrlen bytes; misiek@pld.org.pl
5829 [auth.c]
bcbf86ec 5830 accept an empty shell in authentication; bug reported by
301e9b01 5831 chris@tinker.ucr.edu
5832 [serverloop.c]
5833 we don't have stderr for interactive terminal sessions (fcntl errors)
5834
ad85db64 583520000517
5836 - Fix from Andre Lucas <andre.lucas@dial.pipex.com>
5837 - Fixes command line printing segfaults (spotter: Bladt Norbert)
5838 - Fixes erroneous printing of debug messages to syslog
5839 - Fixes utmp for MacOS X (spotter: Aristedes Maniatis)
5840 - Gives useful error message if PRNG initialisation fails
5841 - Reduced ssh startup delay
5842 - Measures cumulative command time rather than the time between reads
704b1659 5843 after select()
ad85db64 5844 - 'fixprogs' perl script to eliminate non-working entropy commands, and
704b1659 5845 optionally run 'ent' to measure command entropy
c1ef8333 5846 - Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
a64009ad 5847 - Avoid WCOREDUMP complation errors for systems that lack it
bcbf86ec 5848 - Avoid SIGCHLD warnings from entropy commands
28c1d5ce 5849 - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
0e73cc53 5850 - OpenBSD CVS update:
bcbf86ec 5851 - markus@cvs.openbsd.org
0e73cc53 5852 [ssh.c]
5853 fix usage()
5854 [ssh2.h]
5855 draft-ietf-secsh-architecture-05.txt
5856 [ssh.1]
5857 document ssh -T -N (ssh2 only)
5858 [channels.c serverloop.c ssh.h sshconnect.c sshd.c aux.c]
5859 enable nonblocking IO for sshd w/ proto 1, too; split out common code
5860 [aux.c]
5861 missing include
c04f75f1 5862 - Several patches from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
5863 - INSTALL typo and URL fix
5864 - Makefile fix
5865 - Solaris fixes
bcbf86ec 5866 - Checking for ssize_t and memmove. Based on patch from SAKAI Kiyotaka
c04f75f1 5867 <ksakai@kso.netwk.ntt-at.co.jp>
afa5ee68 5868 - RSAless operation patch from kevin_oconnor@standardandpoors.com
d45e3d76 5869 - Detect OpenSSL seperatly from RSA
bcbf86ec 5870 - Better test for RSA (more compatible with RSAref). Based on work by
d45e3d76 5871 Ed Eden <ede370@stl.rural.usda.gov>
ad85db64 5872
3d1a1654 587320000513
bcbf86ec 5874 - Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
3d1a1654 5875 <misiek@pld.org.pl>
5876
d02a3a00 587720000511
bcbf86ec 5878 - Fix for prng_seed permissions checking from Lutz Jaenicke
d02a3a00 5879 <Lutz.Jaenicke@aet.TU-Cottbus.DE>
3d1a1654 5880 - "make host-key" fix for Irix
d02a3a00 5881
d0c832f3 588220000509
5883 - OpenBSD CVS update
5884 - markus@cvs.openbsd.org
5885 [cipher.h myproposal.h readconf.c readconf.h servconf.c ssh.1 ssh.c]
5886 [ssh.h sshconnect1.c sshconnect2.c sshd.8]
5887 - complain about invalid ciphers in SSH1 (e.g. arcfour is SSH2 only)
5888 - hugh@cvs.openbsd.org
5889 [ssh.1]
5890 - zap typo
5891 [ssh-keygen.1]
5892 - One last nit fix. (markus approved)
5893 [sshd.8]
5894 - some markus certified spelling adjustments
5895 - markus@cvs.openbsd.org
5896 [auth2.c channels.c clientloop.c compat compat.h dsa.c kex.c]
5897 [sshconnect2.c ]
5898 - bug compat w/ ssh-2.0.13 x11, split out bugs
5899 [nchan.c]
5900 - no drain if ibuf_empty, fixes x11fwd problems; tests by fries@
5901 [ssh-keygen.c]
5902 - handle escapes in real and original key format, ok millert@
5903 [version.h]
5904 - OpenSSH-2.1
3dc1102e 5905 - Moved all the bsd-* and fake-* stuff into new libopenbsd-compat.a
e93ee87a 5906 - Doc updates
bcbf86ec 5907 - Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported
21e5304a 5908 by Andre Lucas <andre.lucas@dial.pipex.com>
d0c832f3 5909
ebdeb9a8 591020000508
5911 - Makefile and RPM spec fixes
5912 - Generate DSA host keys during "make key" or RPM installs
f6cde515 5913 - OpenBSD CVS update
5914 - markus@cvs.openbsd.org
5915 [clientloop.c sshconnect2.c]
5916 - make x11-fwd interop w/ ssh-2.0.13
5917 [README.openssh2]
5918 - interop w/ SecureFX
5919 - Release 2.0.0beta2
ebdeb9a8 5920
bcbf86ec 5921 - Configure caching and cleanup patch from Andre Lucas'
58d100bf 5922 <andre.lucas@dial.pipex.com>
5923
1d1ffb87 592420000507
5925 - Remove references to SSLeay.
5926 - Big OpenBSD CVS update
5927 - markus@cvs.openbsd.org
5928 [clientloop.c]
5929 - typo
5930 [session.c]
5931 - update proctitle on pty alloc/dealloc, e.g. w/ windows client
5932 [session.c]
5933 - update proctitle for proto 1, too
5934 [channels.h nchan.c serverloop.c session.c sshd.c]
5935 - use c-style comments
5936 - deraadt@cvs.openbsd.org
5937 [scp.c]
5938 - more atomicio
bcbf86ec 5939 - markus@cvs.openbsd.org
1d1ffb87 5940 [channels.c]
5941 - set O_NONBLOCK
5942 [ssh.1]
5943 - update AUTHOR
5944 [readconf.c ssh-keygen.c ssh.h]
5945 - default DSA key file ~/.ssh/id_dsa
5946 [clientloop.c]
5947 - typo, rm verbose debug
5948 - deraadt@cvs.openbsd.org
5949 [ssh-keygen.1]
5950 - document DSA use of ssh-keygen
5951 [sshd.8]
5952 - a start at describing what i understand of the DSA side
5953 [ssh-keygen.1]
5954 - document -X and -x
5955 [ssh-keygen.c]
5956 - simplify usage
bcbf86ec 5957 - markus@cvs.openbsd.org
1d1ffb87 5958 [sshd.8]
5959 - there is no rhosts_dsa
5960 [ssh-keygen.1]
5961 - document -y, update -X,-x
5962 [nchan.c]
5963 - fix close for non-open ssh1 channels
5964 [servconf.c servconf.h ssh.h sshd.8 sshd.c ]
5965 - s/DsaKey/HostDSAKey/, document option
5966 [sshconnect2.c]
5967 - respect number_of_password_prompts
5968 [channels.c channels.h servconf.c servconf.h session.c sshd.8]
5969 - GatewayPorts for sshd, ok deraadt@
5970 [ssh-add.1 ssh-agent.1 ssh.1]
5971 - more doc on: DSA, id_dsa, known_hosts2, authorized_keys2
5972 [ssh.1]
5973 - more info on proto 2
5974 [sshd.8]
5975 - sync AUTHOR w/ ssh.1
5976 [key.c key.h sshconnect.c]
5977 - print key type when talking about host keys
5978 [packet.c]
5979 - clear padding in ssh2
5980 [dsa.c key.c radix.c ssh.h sshconnect1.c uuencode.c uuencode.h]
5981 - replace broken uuencode w/ libc b64_ntop
5982 [auth2.c]
5983 - log failure before sending the reply
5984 [key.c radix.c uuencode.c]
5985 - remote trailing comments before calling __b64_pton
5986 [auth2.c readconf.c readconf.h servconf.c servconf.h ssh.1]
5987 [sshconnect2.c sshd.8]
5988 - add DSAAuthetication option to ssh/sshd, document SSH2 in sshd.8
5989 - Bring in b64_ntop and b64_pton from OpenBSD libc (bsd-base64.[ch])
5990
1a11e1ae 599120000502
0fbe8c74 5992 - OpenBSD CVS update
5993 [channels.c]
5994 - init all fds, close all fds.
5995 [sshconnect2.c]
5996 - check whether file exists before asking for passphrase
5997 [servconf.c servconf.h sshd.8 sshd.c]
5998 - PidFile, pr 1210
5999 [channels.c]
6000 - EINTR
6001 [channels.c]
6002 - unbreak, ok niels@
6003 [sshd.c]
6004 - unlink pid file, ok niels@
6005 [auth2.c]
6006 - Add missing #ifdefs; ok - markus
bcbf86ec 6007 - Add Andre Lucas' <andre.lucas@dial.pipex.com> patch to read entropy
d3083fbd 6008 gathering commands from a text file
1a11e1ae 6009 - Release 2.0.0beta1
6010
c4bc58eb 601120000501
6012 - OpenBSD CVS update
6013 [packet.c]
6014 - send debug messages in SSH2 format
3189621b 6015 [scp.c]
6016 - fix very rare EAGAIN/EINTR issues; based on work by djm
6017 [packet.c]
6018 - less debug, rm unused
6019 [auth2.c]
6020 - disable kerb,s/key in ssh2
6021 [sshd.8]
6022 - Minor tweaks and typo fixes.
6023 [ssh-keygen.c]
6024 - Put -d into usage and reorder. markus ok.
bcbf86ec 6025 - Include missing headers for OpenSSL tests. Fix from Phil Karn
44fb55e9 6026 <karn@ka9q.ampr.org>
bcbf86ec 6027 - Fixed __progname symbol collisions reported by Andre Lucas
3fd95d9a 6028 <andre.lucas@dial.pipex.com>
0d5f7abc 6029 - Merged bsd-login ttyslot and AIX utmp patch from Gert Doering
6030 <gd@hilb1.medat.de>
8cb940db 6031 - Add some missing ifdefs to auth2.c
8af50c98 6032 - Deprecate perl-tk askpass.
52bcc044 6033 - Irix portability fixes - don't include netinet headers more than once
6034 - Make sure we don't save PRNG seed more than once
c4bc58eb 6035
2b763e31 603620000430
6037 - Merge HP-UX fixes and TCB support from Ged Lodder <lodder@yacc.com.au>
b7a87eea 6038 - Integrate Andre Lucas' <andre.lucas@dial.pipex.com> entropy collection
6039 patch.
6040 - Adds timeout to entropy collection
6041 - Disables slow entropy sources
6042 - Load and save seed file
bcbf86ec 6043 - Changed entropy seed code to user per-user seeds only (server seed is
b7a87eea 6044 saved in root's .ssh directory)
6045 - Use atexit() and fatal cleanups to save seed on exit
0b242b12 6046 - More OpenBSD updates:
6047 [session.c]
6048 - don't call chan_write_failed() if we are not writing
6049 [auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
6050 - keysize warnings error() -> log()
2b763e31 6051
a306f2dd 605220000429
6053 - Merge big update to OpenSSH-2.0 from OpenBSD CVS
6054 [README.openssh2]
6055 - interop w/ F-secure windows client
6056 - sync documentation
6057 - ssh_host_dsa_key not ssh_dsa_key
6058 [auth-rsa.c]
6059 - missing fclose
6060 [auth.c authfile.c compat.c dsa.c dsa.h hostfile.c key.c key.h radix.c]
6061 [readconf.c readconf.h ssh-add.c ssh-keygen.c ssh.c ssh.h sshconnect.c]
6062 [sshd.c uuencode.c uuencode.h authfile.h]
6063 - add DSA pubkey auth and other SSH2 fixes. use ssh-keygen -[xX]
6064 for trading keys with the real and the original SSH, directly from the
6065 people who invented the SSH protocol.
6066 [auth.c auth.h authfile.c sshconnect.c auth1.c auth2.c sshconnect.h]
6067 [sshconnect1.c sshconnect2.c]
6068 - split auth/sshconnect in one file per protocol version
6069 [sshconnect2.c]
6070 - remove debug
6071 [uuencode.c]
6072 - add trailing =
6073 [version.h]
6074 - OpenSSH-2.0
6075 [ssh-keygen.1 ssh-keygen.c]
6076 - add -R flag: exit code indicates if RSA is alive
6077 [sshd.c]
6078 - remove unused
6079 silent if -Q is specified
6080 [ssh.h]
6081 - host key becomes /etc/ssh_host_dsa_key
6082 [readconf.c servconf.c ]
6083 - ssh/sshd default to proto 1 and 2
6084 [uuencode.c]
6085 - remove debug
6086 [auth2.c ssh-keygen.c sshconnect2.c sshd.c]
6087 - xfree DSA blobs
6088 [auth2.c serverloop.c session.c]
6089 - cleanup logging for sshd/2, respect PasswordAuth no
6090 [sshconnect2.c]
6091 - less debug, respect .ssh/config
6092 [README.openssh2 channels.c channels.h]
bcbf86ec 6093 - clientloop.c session.c ssh.c
a306f2dd 6094 - support for x11-fwding, client+server
6095
0ac7199f 609620000421
6097 - Merge fix from OpenBSD CVS
6098 [ssh-agent.c]
6099 - Fix memory leak per connection. Report from Andy Spiegl <Andy@Spiegl.de>
6100 via Debian bug #59926
18ba2aab 6101 - Define __progname in session.c if libc doesn't
6102 - Remove indentation on autoconf #include statements to avoid bug in
bcbf86ec 6103 DEC Tru64 compiler. Report and fix from David Del Piero
18ba2aab 6104 <David.DelPiero@qed.qld.gov.au>
0ac7199f 6105
e1b37056 610620000420
bcbf86ec 6107 - Make fixpaths work with perl4, patch from Andre Lucas
e1b37056 6108 <andre.lucas@dial.pipex.com>
9da5c3c9 6109 - Sync with OpenBSD CVS:
6110 [clientloop.c login.c serverloop.c ssh-agent.c ssh.h sshconnect.c sshd.c]
6111 - pid_t
6112 [session.c]
6113 - remove bogus chan_read_failed. this could cause data
6114 corruption (missing data) at end of a SSH2 session.
4e577b89 6115 - Merge fixes from Debian patch from Phil Hands <phil@hands.com>
6116 - Allow setting of PAM service name through CFLAGS (SSHD_PAM_SERVICE)
6117 - Use vhangup to clean up Linux ttys
6118 - Force posix getopt processing on GNU libc systems
371ecff9 6119 - Debian bug #55910 - remove references to ssl(8) manpages
247f1a89 6120 - Debian bug #58031 - ssh_config lies about default cipher
e1b37056 6121
d6f24e45 612220000419
6123 - OpenBSD CVS updates
6124 [channels.c]
6125 - fix pr 1196, listen_port and port_to_connect interchanged
6126 [scp.c]
bcbf86ec 6127 - after completion, replace the progress bar ETA counter with a final
d6f24e45 6128 elapsed time; my idea, aaron wrote the patch
6129 [ssh_config sshd_config]
6130 - show 'Protocol' as an example, ok markus@
6131 [sshd.c]
6132 - missing xfree()
6133 - Add missing header to bsd-misc.c
6134
35484284 613520000416
6136 - Reduce diff against OpenBSD source
bcbf86ec 6137 - All OpenSSL includes are now unconditionally referenced as
35484284 6138 openssl/foo.h
6139 - Pick up formatting changes
6140 - Other minor changed (typecasts, etc) that I missed
6141
6ae2364d 614220000415
6143 - OpenBSD CVS updates.
6144 [ssh.1 ssh.c]
6145 - ssh -2
6146 [auth.c channels.c clientloop.c packet.c packet.h serverloop.c]
6147 [session.c sshconnect.c]
6148 - check payload for (illegal) extra data
6149 [ALL]
6150 whitespace cleanup
6151
c323ac76 615220000413
6153 - INSTALL doc updates
f54651ce 6154 - Merged OpenBSD updates to include paths.
bcbf86ec 6155
a8be9f80 615620000412
6157 - OpenBSD CVS updates:
6158 - [channels.c]
6159 repair x11-fwd
6160 - [sshconnect.c]
6161 fix passwd prompt for ssh2, less debugging output.
6162 - [clientloop.c compat.c dsa.c kex.c sshd.c]
6163 less debugging output
6164 - [kex.c kex.h sshconnect.c sshd.c]
6165 check for reasonable public DH values
6166 - [README.openssh2 cipher.c cipher.h compat.c compat.h readconf.c]
6167 [readconf.h servconf.c servconf.h ssh.c ssh.h sshconnect.c sshd.c]
6168 add Cipher and Protocol options to ssh/sshd, e.g.:
6169 ssh -o 'Protocol 1,2' if you prefer proto 1, ssh -o 'Ciphers
6170 arcfour,3des-cbc'
6171 - [sshd.c]
6172 print 1.99 only if server supports both
6173
18e92801 617420000408
6175 - Avoid some compiler warnings in fake-get*.c
6176 - Add IPTOS macros for systems which lack them
9d98aaf6 6177 - Only set define entropy collection macros if they are found
e78a59f5 6178 - More large OpenBSD CVS updates:
6179 - [auth.c auth.h servconf.c servconf.h serverloop.c session.c]
6180 [session.h ssh.h sshd.c README.openssh2]
6181 ssh2 server side, see README.openssh2; enable with 'sshd -2'
6182 - [channels.c]
6183 no adjust after close
6184 - [sshd.c compat.c ]
6185 interop w/ latest ssh.com windows client.
61e96248 6186
8ce64345 618720000406
6188 - OpenBSD CVS update:
6189 - [channels.c]
6190 close efd on eof
6191 - [clientloop.c compat.c ssh.c sshconnect.c myproposal.h]
6192 ssh2 client implementation, interops w/ ssh.com and lsh servers.
6193 - [sshconnect.c]
6194 missing free.
6195 - [authfile.c cipher.c cipher.h packet.c sshconnect.c sshd.c]
6196 remove unused argument, split cipher_mask()
6197 - [clientloop.c]
6198 re-order: group ssh1 vs. ssh2
6199 - Make Redhat spec require openssl >= 0.9.5a
6200
e7627112 620120000404
6202 - Add tests for RAND_add function when searching for OpenSSL
7e7327a1 6203 - OpenBSD CVS update:
6204 - [packet.h packet.c]
6205 ssh2 packet format
6206 - [packet.h packet.c nchan2.ms nchan.h compat.h compat.c]
6207 [channels.h channels.c]
6208 channel layer support for ssh2
6209 - [kex.h kex.c hmac.h hmac.c dsa.c dsa.h]
6210 DSA, keyexchange, algorithm agreement for ssh2
6c081128 6211 - Generate manpages before make install not at the end of make all
6212 - Don't seed the rng quite so often
6213 - Always reseed rng when requested
e7627112 6214
bfc9a610 621520000403
6216 - Wrote entropy collection routines for systems that lack /dev/random
6217 and EGD
837c30b8 6218 - Disable tests and typedefs for 64 bit types. They are currently unused.
bfc9a610 6219
7368a6c8 622020000401
6221 - Big OpenBSD CVS update (mainly beginnings of SSH2 infrastructure)
6222 - [auth.c session.c sshd.c auth.h]
6223 split sshd.c -> auth.c session.c sshd.c plus cleanup and goto-removal
6224 - [bufaux.c bufaux.h]
6225 support ssh2 bignums
6226 - [channels.c channels.h clientloop.c sshd.c nchan.c nchan.h packet.c]
6227 [readconf.c ssh.c ssh.h serverloop.c]
6228 replace big switch() with function tables (prepare for ssh2)
6229 - [ssh2.h]
6230 ssh2 message type codes
6231 - [sshd.8]
6232 reorder Xr to avoid cutting
6233 - [serverloop.c]
6234 close(fdin) if fdin != fdout, shutdown otherwise, ok theo@
6235 - [channels.c]
6236 missing close
6237 allow bigger packets
6238 - [cipher.c cipher.h]
6239 support ssh2 ciphers
6240 - [compress.c]
6241 cleanup, less code
6242 - [dispatch.c dispatch.h]
6243 function tables for different message types
6244 - [log-server.c]
6245 do not log() if debuggin to stderr
6246 rename a cpp symbol, to avoid param.h collision
6247 - [mpaux.c]
6248 KNF
6249 - [nchan.c]
6250 sync w/ channels.c
6251
f5238bee 625220000326
6253 - Better tests for OpenSSL w/ RSAref
bcbf86ec 6254 - Added replacement setenv() function from OpenBSD libc. Suggested by
f5238bee 6255 Ben Lindstrom <mouring@pconline.com>
4fe2af09 6256 - OpenBSD CVS update
6257 - [auth-krb4.c]
6258 -Wall
6259 - [auth-rh-rsa.c auth-rsa.c hostfile.c hostfile.h key.c key.h match.c]
6260 [match.h ssh.c ssh.h sshconnect.c sshd.c]
6261 initial support for DSA keys. ok deraadt@, niels@
6262 - [cipher.c cipher.h]
6263 remove unused cipher_attack_detected code
6264 - [scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
6265 Fix some formatting problems I missed before.
6266 - [ssh.1 sshd.8]
6267 fix spelling errors, From: FreeBSD
6268 - [ssh.c]
6269 switch to raw mode only if he _get_ a pty (not if we _want_ a pty).
f5238bee 6270
0024a081 627120000324
6272 - Released 1.2.3
6273
bd499f9e 627420000317
6275 - Clarified --with-default-path option.
6276 - Added -blibpath handling for AIX to work around stupid runtime linking.
6277 Problem elucidated by gshapiro@SENDMAIL.ORG by way of Jim Knoble
986a22ec 6278 <jmknoble@jmknoble.cx>
474b5fef 6279 - Checks for 64 bit int types. Problem report from Mats Fredholm
6280 <matsf@init.se>
610cd5c6 6281 - OpenBSD CVS updates:
bcbf86ec 6282 - [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c]
610cd5c6 6283 [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c]
6284 [sshd.c]
6285 pedantic: signed vs. unsigned, void*-arithm, etc
6286 - [ssh.1 sshd.8]
6287 Various cleanups and standardizations.
bcbf86ec 6288 - Runtime error fix for HPUX from Otmar Stahl
be48d23c 6289 <O.Stahl@lsw.uni-heidelberg.de>
bd499f9e 6290
4696775a 629120000316
bcbf86ec 6292 - Fixed configure not passing LDFLAGS to Solaris. Report from David G.
4696775a 6293 Hesprich <dghespri@sprintparanet.com>
d423d822 6294 - Propogate LD through to Makefile
b7a9ce47 6295 - Doc cleanups
2ba2a610 6296 - Added blurb about "scp: command not found" errors to UPGRADING
4696775a 6297
cb0b7ea4 629820000315
6299 - Fix broken CFLAGS handling during search for OpenSSL. Fixes va_list
6300 problems with gcc/Solaris.
bcbf86ec 6301 - Don't free argument to putenv() after use (in setenv() replacement).
db55a3ea 6302 Report from Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp>
bcbf86ec 6303 - Created contrib/ subdirectory. Included helpers from Phil Hands'
13652e52 6304 Debian package, README file and chroot patch from Ricardo Cerqueira
6305 <rmcc@clix.pt>
bcbf86ec 6306 - Moved gnome-ssh-askpass.c to contrib directory and removed config
13652e52 6307 option.
6308 - Slight cleanup to doc files
b14b2ae7 6309 - Configure fix from Bratislav ILICH <bilic@zepter.ru>
cb0b7ea4 6310
a8ed9fd9 631120000314
bcbf86ec 6312 - Include macro for IN6_IS_ADDR_V4MAPPED. Report from
a8ed9fd9 6313 peter@frontierflying.com
84afc958 6314 - Include /usr/local/include and /usr/local/lib for systems that don't
6315 do it themselves
6316 - -R/usr/local/lib for Solaris
6317 - Fix RSAref detection
6318 - Fix IN6_IS_ADDR_V4MAPPED macro
a8ed9fd9 6319
bcf36c78 632020000311
6321 - Detect RSAref
43e48848 6322 - OpenBSD CVS change
6323 [sshd.c]
6324 - disallow guessing of root password
867dbf40 6325 - More configure fixes
80faa19f 6326 - IPv6 workarounds from Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
bcf36c78 6327
c8d54615 632820000309
6329 - OpenBSD CVS updates to v1.2.3
704b1659 6330 [ssh.h atomicio.c]
6331 - int atomicio -> ssize_t (for alpha). ok deraadt@
6332 [auth-rsa.c]
6333 - delay MD5 computation until client sends response, free() early, cleanup.
6334 [cipher.c]
6335 - void* -> unsigned char*, ok niels@
6336 [hostfile.c]
6337 - remove unused variable 'len'. fix comments.
6338 - remove unused variable
6339 [log-client.c log-server.c]
6340 - rename a cpp symbol, to avoid param.h collision
6341 [packet.c]
6342 - missing xfree()
6343 - getsockname() requires initialized tolen; andy@guildsoftware.com
6344 - use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
6345 from Holger.Trapp@Informatik.TU-Chemnitz.DE
6346 [pty.c pty.h]
bcbf86ec 6347 - register cleanup for pty earlier. move code for pty-owner handling to
c8d54615 6348 pty.c ok provos@, dugsong@
704b1659 6349 [readconf.c]
6350 - turn off x11-fwd for the client, too.
6351 [rsa.c]
6352 - PKCS#1 padding
6353 [scp.c]
6354 - allow '.' in usernames; from jedgar@fxp.org
6355 [servconf.c]
6356 - typo: ignore_user_known_hosts int->flag; naddy@mips.rhein-neckar.de
6357 - sync with sshd_config
6358 [ssh-keygen.c]
6359 - enable ssh-keygen -l -f ~/.ssh/known_hosts, ok deraadt@
6360 [ssh.1]
6361 - Change invalid 'CHAT' loglevel to 'VERBOSE'
6362 [ssh.c]
6363 - suppress AAAA query host when '-4' is used; from shin@nd.net.fujitsu.co.jp
6364 - turn off x11-fwd for the client, too.
6365 [sshconnect.c]
6366 - missing xfree()
6367 - retry rresvport_af(), too. from sumikawa@ebina.hitachi.co.jp.
6368 - read error vs. "Connection closed by remote host"
6369 [sshd.8]
6370 - ie. -> i.e.,
6371 - do not link to a commercial page..
6372 - sync with sshd_config
6373 [sshd.c]
6374 - no need for poll.h; from bright@wintelcom.net
6375 - log with level log() not fatal() if peer behaves badly.
6376 - don't panic if client behaves strange. ok deraadt@
6377 - make no-port-forwarding for RSA keys deny both -L and -R style fwding
6378 - delay close() of pty until the pty has been chowned back to root
6379 - oops, fix comment, too.
6380 - missing xfree()
6381 - move XAUTHORITY to subdir. ok dugsong@. fixes debian bug #57907, too.
6382 (http://cgi.debian.org/cgi-bin/bugreport.cgi?archive=no&bug=57907)
bcbf86ec 6383 - register cleanup for pty earlier. move code for pty-owner handling to
704b1659 6384 pty.c ok provos@, dugsong@
6385 - create x11 cookie file
6386 - fix pr 1113, fclose() -> pclose(), todo: remote popen()
6387 - version 1.2.3
c8d54615 6388 - Cleaned up
bcbf86ec 6389 - Removed warning workaround for Linux and devpts filesystems (no longer
d8223847 6390 required after OpenBSD updates)
c8d54615 6391
07055445 639220000308
6393 - Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
6394
639520000307
6396 - Released 1.2.2p1
6397
9c8c3fc6 639820000305
6399 - Fix DEC compile fix
54096dcc 6400 - Explicitly seed OpenSSL's PRNG before checking rsa_alive()
aa6bd60a 6401 - Check for getpagesize in libucb.a if not found in libc. Fix for old
6402 Solaris from Andre Lucas <andre.lucas@dial.pipex.com>
bcbf86ec 6403 - Check for libwrap if --with-tcp-wrappers option specified. Suggestion
9fc7867e 6404 Mate Wierdl <mw@moni.msci.memphis.edu>
9c8c3fc6 6405
6bf4d066 640620000303
6407 - Added "make host-key" target, Suggestion from Dominik Brettnacher
6408 <domi@saargate.de>
bcbf86ec 6409 - Don't permanently fail on bind() if getaddrinfo has more choices left for
16218745 6410 us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
6411 Miskiewicz <misiek@pld.org.pl>
22fa590f 6412 - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
6413 - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
6bf4d066 6414
a0391976 641520000302
6416 - Big cleanup of autoconf code
6417 - Rearranged to be a little more logical
6418 - Added -R option for Solaris
6419 - Rewrote OpenSSL detection code. Now uses AC_TRY_RUN with a test program
6420 to detect library and header location _and_ ensure library has proper
6421 RSA support built in (this is a problem with OpenSSL 0.9.5).
817175bc 6422 - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de
0a1718dc 6423 - Avoid warning message with Unix98 ptys
bcbf86ec 6424 - Warning was valid - possible race condition on PTYs. Avoided using
3276571c 6425 platform-specific code.
6426 - Document some common problems
bcbf86ec 6427 - Allow root access to any key. Patch from
81eef326 6428 markus.friedl@informatik.uni-erlangen.de
a0391976 6429
f55afe71 643020000207
6431 - Removed SOCKS code. Will support through a ProxyCommand.
6432
d07d1c58 643320000203
6434 - Fixed SEGVs in authloop, fix from vbzoli@hbrt.hu
d581b7ae 6435 - Add --with-ssl-dir option
d07d1c58 6436
9d5f374b 643720000202
bcbf86ec 6438 - Fix lastlog code for directory based lastlogs. Fix from Josh Durham
9d5f374b 6439 <jmd@aoe.vt.edu>
6b1f3fdb 6440 - Documentation fixes from HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
bcbf86ec 6441 - Added URLs to Japanese translations of documents by HARUYAMA Seigo
6b1f3fdb 6442 <haruyama@nt.phys.s.u-tokyo.ac.jp>
9d5f374b 6443
bc8c2601 644420000201
6445 - Use socket pairs by default (instead of pipes). Prevents race condition
6446 on several (buggy) OSs. Report and fix from tridge@linuxcare.com
6447
69c76614 644820000127
6449 - Seed OpenSSL's random number generator before generating RSA keypairs
6450 - Split random collector into seperate file
aaf2abd7 6451 - Compile fix from Andre Lucas <andre.lucas@dial.pipex.com>
69c76614 6452
f9507c24 645320000126
6454 - Released 1.2.2 stable
6455
bcbf86ec 6456 - NeXT keeps it lastlog in /usr/adm. Report from
f9507c24 6457 mouring@newton.pconline.com
bcbf86ec 6458 - Added note in UPGRADING re interop with commercial SSH using idea.
986a22ec 6459 Report from Jim Knoble <jmknoble@jmknoble.cx>
587120ad 6460 - Fix linking order for Kerberos/AFS. Fix from Holget Trapp
6461 <Holger.Trapp@Informatik.TU-Chemnitz.DE>
f9507c24 6462
bfae20ad 646320000125
bcbf86ec 6464 - Fix NULL pointer dereference in login.c. Fix from Andre Lucas
bfae20ad 6465 <andre.lucas@dial.pipex.com>
07b0cb78 6466 - Reorder PAM initialisation so it does not mess up lastlog. Reported
6467 by Andre Lucas <andre.lucas@dial.pipex.com>
bcbf86ec 6468 - Use preformatted manpages on SCO, report from Gary E. Miller
9755cbdb 6469 <gem@rellim.com>
6470 - New URL for x11-ssh-askpass.
bcbf86ec 6471 - Fixpaths was missing /etc/ssh_known_hosts. Report from Jim Knoble
986a22ec 6472 <jmknoble@jmknoble.cx>
bcbf86ec 6473 - Added 'DESTDIR' option to Makefile to ease package building. Patch from
986a22ec 6474 Jim Knoble <jmknoble@jmknoble.cx>
ff8ecdb8 6475 - Updated RPM spec files to use DESTDIR
bfae20ad 6476
bb58aa4b 647720000124
6478 - Pick up version 1.2.2 from OpenBSD CVS (no changes, just version number
6479 increment)
6480
d45317d8 648120000123
6482 - OpenBSD CVS:
6483 - [packet.c]
6484 getsockname() requires initialized tolen; andy@guildsoftware.com
bcbf86ec 6485 - AIX patch from Matt Richards <v2matt@btv.ibm.com> and David Rankin
4c40f834 6486 <drankin@bohemians.lexington.ky.us>
12aa90af 6487 - Fix lastlog support, patch from Andre Lucas <andre.lucas@dial.pipex.com>
d45317d8 6488
e844f761 648920000122
6490 - Fix compilation of bsd-snprintf.c on Solaris, fix from Ben Taylor
6491 <bent@clark.net>
c54a6257 6492 - Merge preformatted manpage patch from Andre Lucas
6493 <andre.lucas@dial.pipex.com>
8eb34e02 6494 - Make IPv4 use the default in RPM packages
6495 - Irix uses preformatted manpages
1e64903d 6496 - Missing htons() in bsd-bindresvport.c, fix from Holger Trapp
6497 <Holger.Trapp@Informatik.TU-Chemnitz.DE>
9bc5ddfe 6498 - OpenBSD CVS updates:
6499 - [packet.c]
6500 use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;
6501 from Holger.Trapp@Informatik.TU-Chemnitz.DE
6502 - [sshd.c]
6503 log with level log() not fatal() if peer behaves badly.
6504 - [readpass.c]
bcbf86ec 6505 instead of blocking SIGINT, catch it ourselves, so that we can clean
6506 the tty modes up and kill ourselves -- instead of our process group
61e96248 6507 leader (scp, cvs, ...) going away and leaving us in noecho mode.
9bc5ddfe 6508 people with cbreak shells never even noticed..
399d9d44 6509 - [ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8]
6510 ie. -> i.e.,
e844f761 6511
4c8ef3fb 651220000120
6513 - Don't use getaddrinfo on AIX
7b2ea3a1 6514 - Update to latest OpenBSD CVS:
6515 - [auth-rsa.c]
6516 - fix user/1056, sshd keeps restrictions; dbt@meat.net
6517 - [sshconnect.c]
6518 - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
6519 - destroy keys earlier
bcbf86ec 6520 - split key exchange (kex) and user authentication (user-auth),
d468fc76 6521 ok: provos@
7b2ea3a1 6522 - [sshd.c]
6523 - no need for poll.h; from bright@wintelcom.net
6524 - disable agent fwding for proto 1.3, remove abuse of auth-rsa flags.
bcbf86ec 6525 - split key exchange (kex) and user authentication (user-auth),
d468fc76 6526 ok: provos@
f3bba493 6527 - Big manpage and config file cleanup from Andre Lucas
6528 <andre.lucas@dial.pipex.com>
5f4fdfae 6529 - Re-added latest (unmodified) OpenBSD manpages
47f9a56a 6530 - Doc updates
d468fc76 6531 - NetBSD patch from David Rankin <drankin@bohemians.lexington.ky.us> and
6532 Christos Zoulas <christos@netbsd.org>
4c8ef3fb 6533
082bbfb3 653420000119
20af321f 6535 - SCO compile fixes from Gary E. Miller <gem@rellim.com>
082bbfb3 6536 - Compile fix from Darren_Hall@progressive.com
59e76f33 6537 - Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
6538 addresses using getaddrinfo(). Added a configure switch to make the
6539 default lookup mode AF_INET
082bbfb3 6540
a63a7f37 654120000118
6542 - Fixed --with-pid-dir option
51a6baf8 6543 - Makefile fix from Gary E. Miller <gem@rellim.com>
61e96248 6544 - Compile fix for HPUX and Solaris from Andre Lucas
976f7e19 6545 <andre.lucas@dial.pipex.com>
a63a7f37 6546
f914c7fb 654720000117
6548 - Clean up bsd-bindresvport.c. Use arc4random() for picking initial
6549 port, ignore EINVAL errors (Linux) when searching for free port.
bcbf86ec 6550 - Revert __snprintf -> snprintf aliasing. Apparently Solaris
de93b046 6551 __snprintf isn't. Report from Theo de Raadt <theo@cvs.openbsd.org>
9b363e1c 6552 - Document location of Redhat PAM file in INSTALL.
bcbf86ec 6553 - Fixed X11 forwarding bug on Linux. libc advertises AF_INET6
6554 INADDR_ANY_INIT addresses via getaddrinfo, but may not be able to
f4a7cf29 6555 deliver (no IPv6 kernel support)
80a44451 6556 - Released 1.2.1pre27
f914c7fb 6557
f4a7cf29 6558 - Fix rresvport_af failure errors (logic error in bsd-bindresvport.c)
bcbf86ec 6559 - Fix --with-ipaddr-display option test. Fix from Jarno Huuskonen
cf8ad170 6560 <jhuuskon@hytti.uku.fi>
bcbf86ec 6561 - Fix hang on logout if processes are still using the pty. Needs
691a8a9f 6562 further testing.
5957fd29 6563 - Patch from Christos Zoulas <christos@zoulas.com>
6564 - Try $prefix first when looking for OpenSSL.
6565 - Include sys/types.h when including sys/socket.h in test programs
bcbf86ec 6566 - Substitute PID directory in sshd.8. Suggestion from Andrew
19d9ac2a 6567 Stribblehill <a.d.stribblehill@durham.ac.uk>
f4a7cf29 6568
47e45e44 656920000116
6570 - Renamed --with-xauth-path to --with-xauth
6571 - Added --with-pid-dir option
6572 - Released 1.2.1pre26
6573
a82ef8ae 6574 - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
bcbf86ec 6575 - Fixed broken bugfix for /dev/ptmx on Linux systems which lack
66be05a1 6576 openpty(). Report from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
a82ef8ae 6577
5cdfe03f 657820000115
6579 - Add --with-xauth-path configure directive and explicit test for
bcbf86ec 6580 /usr/openwin/bin/xauth for Solaris systems. Report from Anders
5cdfe03f 6581 Nordby <anders@fix.no>
bcbf86ec 6582 - Fix incorrect detection of /dev/ptmx on Linux systems that lack
5cdfe03f 6583 openpty. Report from John Seifarth <john@waw.be>
6584 - Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
bcbf86ec 6585 sys/types.h. Fixes problems on SCO, report from Gary E. Miller
5cdfe03f 6586 <gem@rellim.com>
6587 - Use __snprintf and __vnsprintf if they are found where snprintf and
6588 vnsprintf are lacking. Suggested by Ben Taylor <bent@shell.clark.net>
6589 and others.
6590
48e671d5 659120000114
6592 - Merged OpenBSD IPv6 patch:
6593 - [sshd.c sshd.8 sshconnect.c ssh.h ssh.c servconf.h servconf.c scp.1]
6594 [scp.c packet.h packet.c login.c log.c canohost.c channels.c]
6595 [hostfile.c sshd_config]
6596 ipv6 support: mostly gethostbyname->getaddrinfo/getnameinfo, new
bcbf86ec 6597 features: sshd allows multiple ListenAddress and Port options. note
6598 that libwrap is not IPv6-ready. (based on patches from
48e671d5 6599 fujiwara@rcac.tdi.co.jp)
6600 - [ssh.c canohost.c]
bcbf86ec 6601 more hints (hints.ai_socktype=SOCK_STREAM) for getaddrinfo,
48e671d5 6602 from itojun@
6603 - [channels.c]
6604 listen on _all_ interfaces for X11-Fwd (hints.ai_flags = AI_PASSIVE)
6605 - [packet.h]
6606 allow auth-kerberos for IPv4 only
6607 - [scp.1 sshd.8 servconf.h scp.c]
6608 document -4, -6, and 'ssh -L 2022/::1/22'
6609 - [ssh.c]
bcbf86ec 6610 'ssh @host' is illegal (null user name), from
48e671d5 6611 karsten@gedankenpolizei.de
6612 - [sshconnect.c]
6613 better error message
6614 - [sshd.c]
6615 allow auth-kerberos for IPv4 only
6616 - Big IPv6 merge:
6617 - Cleanup overrun in sockaddr copying on RHL 6.1
6618 - Replacements for getaddrinfo, getnameinfo, etc based on versions
6619 from patch from KIKUCHI Takahiro <kick@kyoto.wide.ad.jp>
6620 - Replacement for missing structures on systems that lack IPv6
6621 - record_login needed to know about AF_INET6 addresses
6622 - Borrowed more code from OpenBSD: rresvport_af and requisites
6623
2598df62 662420000110
6625 - Fixes to auth-skey to enable it to use the standard OpenSSL libraries
6626
b8a0310d 662720000107
6628 - New config.sub and config.guess to fix problems on SCO. Supplied
6629 by Gary E. Miller <gem@rellim.com>
b6a98a85 6630 - SCO build fix from Gary E. Miller <gem@rellim.com>
2598df62 6631 - Released 1.2.1pre25
b8a0310d 6632
dfb95100 663320000106
6634 - Documentation update & cleanup
6635 - Better KrbIV / AFS detection, based on patch from:
6636 Holger Trapp <Holger.Trapp@Informatik.TU-Chemnitz.DE>
6637
b9795b89 663820000105
bcbf86ec 6639 - Fixed annoying DES corruption problem. libcrypt has been
b9795b89 6640 overriding symbols in libcrypto. Removed libcrypt and crypt.h
6641 altogether (libcrypto includes its own crypt(1) replacement)
6642 - Added platform-specific rules for Irix 6.x. Included warning that
6643 they are untested.
6644
a1ec4d79 664520000103
6646 - Add explicit make rules for files proccessed by fixpaths.
61e96248 6647 - Fix "make install" in RPM spec files. Report from Tenkou N. Hattori
a1ec4d79 6648 <tnh@kondara.org>
bcbf86ec 6649 - Removed "nullok" directive from default PAM configuration files.
6650 Added information on enabling EmptyPasswords on openssh+PAM in
607d73e6 6651 UPGRADING file.
e02735bb 6652 - OpenBSD CVS updates
6653 - [ssh-agent.c]
bcbf86ec 6654 cleanup_exit() for SIGTERM/SIGHUP, too. from fgsch@ and
e02735bb 6655 dgaudet@arctic.org
6656 - [sshconnect.c]
6657 compare correct version for 1.3 compat mode
a1ec4d79 6658
93c7f644 665920000102
6660 - Prevent multiple inclusion of config.h and defines.h. Suggested
6661 by Andre Lucas <andre.lucas@dial.pipex.com>
6662 - Properly clean up on exit of ssh-agent. Patch from Dean Gaudet
6663 <dgaudet@arctic.org>
6664
76b8607f 666519991231
bcbf86ec 6666 - Fix password support on systems with a mixture of shadowed and
6667 non-shadowed passwords (e.g. NIS). Report and fix from
76b8607f 6668 HARUYAMA Seigo <haruyama@nt.phys.s.u-tokyo.ac.jp>
bcbf86ec 6669 - Fix broken autoconf typedef detection. Report from Marc G.
723221b5 6670 Fournier <marc.fournier@acadiau.ca>
b92964b7 6671 - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
6672 <Franz.Sirl-kernel@lauterbach.com>
bcbf86ec 6673 - Prevent typedefs from being compiled more than once. Report from
a6ddc88b 6674 Marc G. Fournier <marc.fournier@acadiau.ca>
4811cc0b 6675 - Fill in ut_utaddr utmp field. Report from Benjamin Charron
6676 <iretd@bigfoot.com>
bcbf86ec 6677 - Really fix broken default path. Fix from Jim Knoble
986a22ec 6678 <jmknoble@jmknoble.cx>
ae3a3d31 6679 - Remove test for quad_t. No longer needed.
76a8e733 6680 - Released 1.2.1pre24
6681
6682 - Added support for directory-based lastlogs
6683 - Really fix typedefs, patch from Ben Taylor <bent@clark.net>
76b8607f 6684
13f825f4 668519991230
6686 - OpenBSD CVS updates:
6687 - [auth-passwd.c]
6688 check for NULL 1st
bcbf86ec 6689 - Removed most of the pam code into its own file auth-pam.[ch]. This
a5c9cd31 6690 cleaned up sshd.c up significantly.
bcbf86ec 6691 - PAM authentication was incorrectly interpreting
76b8607f 6692 "PermitRootLogin without-password". Report from Matthias Andree
6693 <ma@dt.e-technik.uni-dortmund.de
a5c9cd31 6694 - Several other cleanups
0bc5b6fb 6695 - Merged Dante SOCKS support patch from David Rankin
6696 <drankin@bohemians.lexington.ky.us>
6697 - Updated documentation with ./configure options
76b8607f 6698 - Released 1.2.1pre23
13f825f4 6699
c73a0cb5 670019991229
bcbf86ec 6701 - Applied another NetBSD portability patch from David Rankin
c73a0cb5 6702 <drankin@bohemians.lexington.ky.us>
6703 - Fix --with-default-path option.
bcbf86ec 6704 - Autodetect perl, patch from David Rankin
a0f84251 6705 <drankin@bohemians.lexington.ky.us>
bcbf86ec 6706 - Print whether OpenSSH was compiled with RSARef, patch from
0a2ff95d 6707 Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
bcbf86ec 6708 - Calls to pam_setcred, patch from Nalin Dahyabhai
f91bacbd 6709 <nalin@thermo.stat.ncsu.edu>
e3a93db0 6710 - Detect missing size_t and typedef it.
5ab44a92 6711 - Rename helper.[ch] to (more appropriate) bsd-misc.[ch]
6712 - Minor Makefile cleaning
c73a0cb5 6713
b6019d68 671419991228
6715 - Replacement for getpagesize() for systems which lack it
bcbf86ec 6716 - NetBSD login.c compile fix from David Rankin
70e0115b 6717 <drankin@bohemians.lexington.ky.us>
6718 - Fully set ut_tv if present in utmp or utmpx
d94aa2ae 6719 - Portability fixes for Irix 5.3 (now compiles OK!)
6720 - autoconf and other misc cleanups
ea1970a3 6721 - Merged AIX patch from Darren Hall <dhall@virage.org>
6722 - Cleaned up defines.h
fa9a2dd6 6723 - Released 1.2.1pre22
b6019d68 6724
d2dcff5f 672519991227
6726 - Automatically correct paths in manpages and configuration files. Patch
6727 and script from Andre Lucas <andre.lucas@dial.pipex.com>
6728 - Removed credits from README to CREDITS file, updated.
cb807f40 6729 - Added --with-default-path to specify custom path for server
6730 - Removed #ifdef trickery from acconfig.h into defines.h
36a5b38e 6731 - PAM bugfix. PermitEmptyPassword was being ignored.
6732 - Fixed PAM config files to allow empty passwords if server does.
6733 - Explained spurious PAM auth warning workaround in UPGRADING
21feb5fa 6734 - Use last few chars of tty line as ut_id
5a7794be 6735 - New SuSE RPM spec file from Chris Saia <csaia@wtower.com>
00e6dd70 6736 - OpenBSD CVS updates:
6737 - [packet.h auth-rhosts.c]
6738 check format string for packet_disconnect and packet_send_debug, too
6739 - [channels.c]
6740 use packet_get_maxsize for channels. consistence.
d2dcff5f 6741
f74efc8d 674219991226
6743 - Enabled utmpx support by default for Solaris
6744 - Cleanup sshd.c PAM a little more
986a22ec 6745 - Revised RPM package to include Jim Knoble's <jmknoble@jmknoble.cx>
bc7ea646 6746 X11 ssh-askpass program.
20c43d8c 6747 - Disable logging of PAM success and failures, PAM is verbose enough.
bcbf86ec 6748 Unfortunatly there is currently no way to disable auth failure
6749 messages. Mention this in UPGRADING file and sent message to PAM
20c43d8c 6750 developers
83b7f649 6751 - OpenBSD CVS update:
6752 - [ssh-keygen.1 ssh.1]
bcbf86ec 6753 remove ref to .ssh/random_seed, mention .ssh/environment in
83b7f649 6754 .Sh FILES, too
72251cb6 6755 - Released 1.2.1pre21
bcbf86ec 6756 - Fixed implicit '.' in default path, report from Jim Knoble
986a22ec 6757 <jmknoble@jmknoble.cx>
6758 - Redhat RPM spec fixes from Jim Knoble <jmknoble@jmknoble.cx>
f74efc8d 6759
f498ed15 676019991225
6761 - More fixes from Andre Lucas <andre.lucas@dial.pipex.com>
6762 - Cleanup of auth-passwd.c for shadow and MD5 passwords
6763 - Cleanup and bugfix of PAM authentication code
f74efc8d 6764 - Released 1.2.1pre20
6765
6766 - Merged fixes from Ben Taylor <bent@clark.net>
6767 - Fixed configure support for PAM. Reported by Naz <96na@eng.cam.ac.uk>
6768 - Disabled logging of PAM password authentication failures when password
6769 is empty. (e.g start of authentication loop). Reported by Naz
6770 <96na@eng.cam.ac.uk>)
f498ed15 6771
677219991223
bcbf86ec 6773 - Merged later HPUX patch from Andre Lucas
f498ed15 6774 <andre.lucas@dial.pipex.com>
6775 - Above patch included better utmpx support from Ben Taylor
f74efc8d 6776 <bent@clark.net>
f498ed15 6777
eef6f7e9 677819991222
bcbf86ec 6779 - Fix undefined fd_set type in ssh.h from Povl H. Pedersen
eef6f7e9 6780 <pope@netguide.dk>
ae28776a 6781 - Fix login.c breakage on systems which lack ut_host in struct
6782 utmp. Reported by Willard Dawson <willard.dawson@sbs.siemens.com>
eef6f7e9 6783
a7effaac 678419991221
bcbf86ec 6785 - Integration of large HPUX patch from Andre Lucas
6786 <andre.lucas@dial.pipex.com>. Integrating it had a few other
a7effaac 6787 benefits:
6788 - Ability to disable shadow passwords at configure time
6789 - Ability to disable lastlog support at configure time
6790 - Support for IP address in $DISPLAY
ae2f7af7 6791 - OpenBSD CVS update:
6792 - [sshconnect.c]
6793 say "REMOTE HOST IDENTIFICATION HAS CHANGED"
59dd7a31 6794 - Fix DISABLE_SHADOW support
6795 - Allow MD5 passwords even if shadow passwords are disabled
16034de9 6796 - Release 1.2.1pre19
a7effaac 6797
3f1d9bcd 679819991218
bcbf86ec 6799 - Redhat init script patch from Chun-Chung Chen
3f1d9bcd 6800 <cjj@u.washington.edu>
7e1c2490 6801 - Avoid breakage on systems without IPv6 headers
3f1d9bcd 6802
60d804c8 680319991216
bcbf86ec 6804 - Makefile changes for Solaris from Peter Kocks
60d804c8 6805 <peter.kocks@baygate.com>
89cafde6 6806 - Minor updates to docs
6807 - Merged OpenBSD CVS changes:
6808 - [authfd.c ssh-agent.c]
6809 keysize warnings talk about identity files
6810 - [packet.c]
6811 "Connection closed by x.x.x.x": fatal() -> log()
bcbf86ec 6812 - Correctly handle empty passwords in shadow file. Patch from:
c9d323f0 6813 "Chris, the Young One" <cky@pobox.com>
6814 - Released 1.2.1pre18
60d804c8 6815
7dc6fc6d 681619991215
6817 - Integrated patchs from Juergen Keil <jk@tools.de>
6818 - Avoid void* pointer arithmatic
6819 - Use LDFLAGS correctly
68227e6d 6820 - Fix SIGIO error in scp
6821 - Simplify status line printing in scp
61e96248 6822 - Added better test for inline functions compiler support from
906a2515 6823 Darren_Hall@progressive.com
7dc6fc6d 6824
95f1eccc 682519991214
6826 - OpenBSD CVS Changes
6827 - [canohost.c]
bcbf86ec 6828 fix get_remote_port() and friends for sshd -i;
95f1eccc 6829 Holger.Trapp@Informatik.TU-Chemnitz.DE
6830 - [mpaux.c]
6831 make code simpler. no need for memcpy. niels@ ok
6832 - [pty.c]
6833 namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
6834 fix proto; markus
6835 - [ssh.1]
6836 typo; mark.baushke@solipsa.com
6837 - [channels.c ssh.c ssh.h sshd.c]
6838 type conflict for 'extern Type *options' in channels.c; dot@dotat.at
6839 - [sshconnect.c]
6840 move checking of hostkey into own function.
6841 - [version.h]
6842 OpenSSH-1.2.1
884bcb37 6843 - Clean up broken includes in pty.c
7303768f 6844 - Some older systems don't have poll.h, they use sys/poll.h instead
6845 - Doc updates
95f1eccc 6846
847e8865 684719991211
bcbf86ec 6848 - Fix compilation on systems with AFS. Reported by
847e8865 6849 aloomis@glue.umd.edu
bcbf86ec 6850 - Fix installation on Solaris. Reported by
847e8865 6851 Gordon Rowell <gordonr@gormand.com.au>
6852 - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
6853 patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
6854 - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
6855 - Compile fix from David Agraz <dagraz@jahoopa.com>
6856 - Avoid compiler warning in bsd-snprintf.c
bcbf86ec 6857 - Added pam_limits.so to default PAM config. Suggested by
986a22ec 6858 Jim Knoble <jmknoble@jmknoble.cx>
847e8865 6859
8946db53 686019991209
6861 - Import of patch from Ben Taylor <bent@clark.net>:
6862 - Improved PAM support
6863 - "uninstall" rule for Makefile
6864 - utmpx support
6865 - Should fix PAM problems on Solaris
2d86a6cc 6866 - OpenBSD CVS updates:
6867 - [readpass.c]
6868 avoid stdio; based on work by markus, millert, and I
6869 - [sshd.c]
6870 make sure the client selects a supported cipher
6871 - [sshd.c]
bcbf86ec 6872 fix sighup handling. accept would just restart and daemon handled
6873 sighup only after the next connection was accepted. use poll on
2d86a6cc 6874 listen sock now.
6875 - [sshd.c]
6876 make that a fatal
87e91331 6877 - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
6878 to fix libwrap support on NetBSD
5001b9e4 6879 - Released 1.2pre17
8946db53 6880
6d8c4ea4 688119991208
bcbf86ec 6882 - Compile fix for Solaris with /dev/ptmx from
6d8c4ea4 6883 David Agraz <dagraz@jahoopa.com>
6884
4285816a 688519991207
986a22ec 6886 - sshd Redhat init script patch from Jim Knoble <jmknoble@jmknoble.cx>
4285816a 6887 fixes compatability with 4.x and 5.x
db28aeb5 6888 - Fixed default SSH_ASKPASS
bcbf86ec 6889 - Fix PAM account and session being called multiple times. Problem
d465f2ca 6890 reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
a408af76 6891 - Merged more OpenBSD changes:
6892 - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
bcbf86ec 6893 move atomicio into it's own file. wrap all socket write()s which
a408af76 6894 were doing write(sock, buf, len) != len, with atomicio() calls.
6895 - [auth-skey.c]
6896 fd leak
6897 - [authfile.c]
6898 properly name fd variable
6899 - [channels.c]
6900 display great hatred towards strcpy
6901 - [pty.c pty.h sshd.c]
6902 use openpty() if it exists (it does on BSD4_4)
6903 - [tildexpand.c]
6904 check for ~ expansion past MAXPATHLEN
6905 - Modified helper.c to use new atomicio function.
6906 - Reformat Makefile a little
6907 - Moved RC4 routines from rc4.[ch] into helper.c
6908 - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
9983a8ca 6909 - Updated SuSE spec from Chris Saia <csaia@wtower.com>
6910 - Tweaked Redhat spec
9158d92f 6911 - Clean up bad imports of a few files (forgot -kb)
6912 - Released 1.2pre16
4285816a 6913
9c7b6dfd 691419991204
6915 - Small cleanup of PAM code in sshd.c
57112b5a 6916 - Merged OpenBSD CVS changes:
6917 - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
6918 move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
6919 - [auth-rsa.c]
6920 warn only about mismatch if key is _used_
6921 warn about keysize-mismatch with log() not error()
6922 channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
6923 ports are u_short
6924 - [hostfile.c]
6925 indent, shorter warning
6926 - [nchan.c]
6927 use error() for internal errors
6928 - [packet.c]
6929 set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
6930 serverloop.c
6931 indent
6932 - [ssh-add.1 ssh-add.c ssh.h]
6933 document $SSH_ASKPASS, reasonable default
6934 - [ssh.1]
6935 CheckHostIP is not available for connects via proxy command
6936 - [sshconnect.c]
6937 typo
6938 easier to read client code for passwd and skey auth
6939 turn of checkhostip for proxy connects, since we don't know the remote ip
9c7b6dfd 6940
dad3b556 694119991126
6942 - Add definition for __P()
6943 - Added [v]snprintf() replacement for systems that lack it
6944
0ce43ae4 694519991125
6946 - More reformatting merged from OpenBSD CVS
6947 - Merged OpenBSD CVS changes:
6948 - [channels.c]
6949 fix packet_integrity_check() for !have_hostname_in_open.
6950 report from mrwizard@psu.edu via djm@ibs.com.au
6951 - [channels.c]
6952 set SO_REUSEADDR and SO_LINGER for forwarded ports.
6953 chip@valinux.com via damien@ibs.com.au
6954 - [nchan.c]
6955 it's not an error() if shutdown_write failes in nchan.
6956 - [readconf.c]
6957 remove dead #ifdef-0-code
6958 - [readconf.c servconf.c]
6959 strcasecmp instead of tolower
6960 - [scp.c]
6961 progress meter overflow fix from damien@ibs.com.au
6962 - [ssh-add.1 ssh-add.c]
6963 SSH_ASKPASS support
6964 - [ssh.1 ssh.c]
6965 postpone fork_after_authentication until command execution,
6966 request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
6967 plus: use daemon() for backgrounding
cf8dd513 6968 - Added BSD compatible install program and autoconf test, thanks to
6969 Niels Kristian Bech Jensen <nkbj@image.dk>
6970 - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
09041313 6971 - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
3dbefdb8 6972 - Release 1.2pre15
0ce43ae4 6973
5260325f 697419991124
6975 - Merged very large OpenBSD source code reformat
6976 - OpenBSD CVS updates
6977 - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
6978 [ssh.h sshd.8 sshd.c]
6979 syslog changes:
6980 * Unified Logmessage for all auth-types, for success and for failed
6981 * Standard connections get only ONE line in the LOG when level==LOG:
6982 Auth-attempts are logged only, if authentication is:
6983 a) successfull or
6984 b) with passwd or
6985 c) we had more than AUTH_FAIL_LOG failues
6986 * many log() became verbose()
6987 * old behaviour with level=VERBOSE
6988 - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
6989 tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
6990 messages. allows use of s/key in windows (ttssh, securecrt) and
6991 ssh-1.2.27 clients without 'ssh -v', ok: niels@
6992 - [sshd.8]
6993 -V, for fallback to openssh in SSH2 compatibility mode
6994 - [sshd.c]
6995 fix sigchld race; cjc5@po.cwru.edu
6996
4655fe80 699719991123
6998 - Added SuSE package files from Chris Saia <csaia@wtower.com>
8b241e50 6999 - Restructured package-related files under packages/*
4655fe80 7000 - Added generic PAM config
8b241e50 7001 - Numerous little Solaris fixes
9c08d6ce 7002 - Add recommendation to use GNU make to INSTALL document
4655fe80 7003
60bed5fd 700419991122
7005 - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
2f2cc3f9 7006 - OpenBSD CVS Changes
bcbf86ec 7007 - [ssh-keygen.c]
7008 don't create ~/.ssh only if the user wants to store the private
7009 key there. show fingerprint instead of public-key after
2f2cc3f9 7010 keygeneration. ok niels@
b09a984b 7011 - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
96ad4350 7012 - Added timersub() macro
b09a984b 7013 - Tidy RCSIDs of bsd-*.c
bcbf86ec 7014 - Added autoconf test and macro to deal with old PAM libraries
96ad4350 7015 pam_strerror definition (one arg vs two).
530f1889 7016 - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
bcbf86ec 7017 - Retry /dev/urandom reads interrupted by signal (report from
530f1889 7018 Robert Hardy <rhardy@webcon.net>)
1647c2b5 7019 - Added a setenv replacement for systems which lack it
d84a9a44 7020 - Only display public key comment when presenting ssh-askpass dialog
7021 - Released 1.2pre14
60bed5fd 7022
bcbf86ec 7023 - Configure, Make and changelog corrections from Tudor Bosman
2ddcfdf3 7024 <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
7025
9d6b7add 702619991121
2f2cc3f9 7027 - OpenBSD CVS Changes:
60bed5fd 7028 - [channels.c]
7029 make this compile, bad markus
7030 - [log.c readconf.c servconf.c ssh.h]
7031 bugfix: loglevels are per host in clientconfig,
7032 factor out common log-level parsing code.
7033 - [servconf.c]
7034 remove unused index (-Wall)
7035 - [ssh-agent.c]
7036 only one 'extern char *__progname'
7037 - [sshd.8]
7038 document SIGHUP, -Q to synopsis
7039 - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
7040 [channels.c clientloop.c]
7041 SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
7042 [hope this time my ISP stays alive during commit]
7043 - [OVERVIEW README] typos; green@freebsd
7044 - [ssh-keygen.c]
7045 replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
7046 exit if writing the key fails (no infinit loop)
7047 print usage() everytime we get bad options
7048 - [ssh-keygen.c] overflow, djm@mindrot.org
7049 - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
61e96248 7050
2b942fe0 705119991120
bcbf86ec 7052 - Merged more Solaris support from Marc G. Fournier
2b942fe0 7053 <marc.fournier@acadiau.ca>
7054 - Wrote autoconf tests for integer bit-types
7055 - Fixed enabling kerberos support
bcbf86ec 7056 - Fix segfault in ssh-keygen caused by buffer overrun in filename
13c36c4c 7057 handling.
2b942fe0 7058
06479889 705919991119
7060 - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
2ad77510 7061 - Merged OpenBSD CVS changes
7062 - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
7063 more %d vs. %s in fmt-strings
7064 - [authfd.c]
7065 Integers should not be printed with %s
7b1cc56c 7066 - EGD uses a socket, not a named pipe. Duh.
7067 - Fix includes in fingerprint.c
29dbde15 7068 - Fix scp progress bar bug again.
bcbf86ec 7069 - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
736890c4 7070 David Rankin <drankin@bohemians.lexington.ky.us>
91b8065d 7071 - Added autoconf option to enable Kerberos 4 support (untested)
7072 - Added autoconf option to enable AFS support (untested)
7073 - Added autoconf option to enable S/Key support (untested)
7074 - Added autoconf option to enable TCP wrappers support (compiles OK)
beb43d31 7075 - Renamed BSD helper function files to bsd-*
bcbf86ec 7076 - Added tests for login and daemon and enable OpenBSD replacements for
caf3bc51 7077 when they are absent.
7078 - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
06479889 7079
2bd61362 708019991118
7081 - Merged OpenBSD CVS changes
7082 - [scp.c] foregroundproc() in scp
7083 - [sshconnect.h] include fingerprint.h
bcbf86ec 7084 - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
2bd61362 7085 changes.
0c16a097 7086 - [ssh.1] Spell my name right.
2bd61362 7087 - Added openssh.com info to README
7088
f095fcc7 708919991117
7090 - Merged OpenBSD CVS changes
7091 - [ChangeLog.Ylonen] noone needs this anymore
7092 - [authfd.c] close-on-exec for auth-socket, ok deraadt
bcbf86ec 7093 - [hostfile.c]
7094 in known_hosts key lookup the entry for the bits does not need
7095 to match, all the information is contained in n and e. This
7096 solves the problem with buggy servers announcing the wrong
f095fcc7 7097 modulus length. markus and me.
bcbf86ec 7098 - [serverloop.c]
7099 bugfix: check for space if child has terminated, from:
f095fcc7 7100 iedowse@maths.tcd.ie
7101 - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
7102 [fingerprint.c fingerprint.h]
7103 rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
7104 - [ssh-agent.1] typo
7105 - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
bcbf86ec 7106 - [sshd.c]
f095fcc7 7107 force logging to stderr while loading private key file
7108 (lost while converting to new log-levels)
7109
4d195447 711019991116
7111 - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
7112 - Merged OpenBSD CVS changes:
7113 - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
7114 [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
7115 the keysize of rsa-parameter 'n' is passed implizit,
7116 a few more checks and warnings about 'pretended' keysizes.
7117 - [cipher.c cipher.h packet.c packet.h sshd.c]
7118 remove support for cipher RC4
7119 - [ssh.c]
7120 a note for legay systems about secuity issues with permanently_set_uid(),
7121 the private hostkey and ptrace()
7122 - [sshconnect.c]
7123 more detailed messages about adding and checking hostkeys
7124
dad9a31e 712519991115
7126 - Merged OpenBSD CVS changes:
bcbf86ec 7127 - [ssh-add.c] change passphrase loop logic and remove ref to
dad9a31e 7128 $DISPLAY, ok niels
7129 - Changed to ssh-add.c broke askpass support. Revised it to be a little more
bcbf86ec 7130 modular.
dad9a31e 7131 - Revised autoconf support for enabling/disabling askpass support.
e7c0f9d5 7132 - Merged more OpenBSD CVS changes:
704b1659 7133 [auth-krb4.c]
7134 - disconnect if getpeername() fails
7135 - missing xfree(*client)
7136 [canohost.c]
7137 - disconnect if getpeername() fails
7138 - fix comment: we _do_ disconnect if ip-options are set
7139 [sshd.c]
7140 - disconnect if getpeername() fails
7141 - move checking of remote port to central place
7142 [auth-rhosts.c] move checking of remote port to central place
7143 [log-server.c] avoid extra fd per sshd, from millert@
7144 [readconf.c] print _all_ bad config-options in ssh(1), too
7145 [readconf.h] print _all_ bad config-options in ssh(1), too
7146 [ssh.c] print _all_ bad config-options in ssh(1), too
7147 [sshconnect.c] disconnect if getpeername() fails
e7c0f9d5 7148 - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
c75a1a66 7149 - Various small cleanups to bring diff (against OpenBSD) size down.
f601d847 7150 - Merged more Solaris compability from Marc G. Fournier
7151 <marc.fournier@acadiau.ca>
7152 - Wrote autoconf tests for __progname symbol
986a22ec 7153 - RPM spec file fixes from Jim Knoble <jmknoble@jmknoble.cx>
0c372277 7154 - Released 1.2pre12
7155
7156 - Another OpenBSD CVS update:
7157 - [ssh-keygen.1] fix .Xr
dad9a31e 7158
92da7197 715919991114
7160 - Solaris compilation fixes (still imcomplete)
7161
94f7bb9e 716219991113
dd092f97 7163 - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
7164 - Don't install config files if they already exist
7165 - Fix inclusion of additional preprocessor directives from acconfig.h
94f7bb9e 7166 - Removed redundant inclusions of config.h
e9c75a39 7167 - Added 'Obsoletes' lines to RPM spec file
94f7bb9e 7168 - Merged OpenBSD CVS changes:
7169 - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
bcbf86ec 7170 - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
94f7bb9e 7171 totalsize, ok niels,aaron
bcbf86ec 7172 - Delay fork (-f option) in ssh until after port forwarded connections
94f7bb9e 7173 have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
b2344d54 7174 - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
7175 - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
dd092f97 7176 - Tidied default config file some more
7177 - Revised Redhat initscript to fix bug: sshd (re)start would fail
7178 if executed from inside a ssh login.
94f7bb9e 7179
e35c1dc2 718019991112
7181 - Merged changes from OpenBSD CVS
7182 - [sshd.c] session_key_int may be zero
b4748e2f 7183 - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
bcbf86ec 7184 IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
b4748e2f 7185 deraadt,millert
7186 - Brought default sshd_config more in line with OpenBSD's
547c9f30 7187 - Grab server in gnome-ssh-askpass (Debian bug #49872)
7188 - Released 1.2pre10
e35c1dc2 7189
8bc7973f 7190 - Added INSTALL documentation
6fa724bc 7191 - Merged yet more changes from OpenBSD CVS
7192 - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
7193 [ssh.c ssh.h sshconnect.c sshd.c]
7194 make all access to options via 'extern Options options'
7195 and 'extern ServerOptions options' respectively;
7196 options are no longer passed as arguments:
7197 * make options handling more consistent
7198 * remove #include "readconf.h" from ssh.h
7199 * readconf.h is only included if necessary
7200 - [mpaux.c] clear temp buffer
7201 - [servconf.c] print _all_ bad options found in configfile
045672f9 7202 - Make ssh-askpass support optional through autoconf
59b0f0d4 7203 - Fix nasty division-by-zero error in scp.c
7204 - Released 1.2pre11
8bc7973f 7205
4cca272e 720619991111
7207 - Added (untested) Entropy Gathering Daemon (EGD) support
67d68e3a 7208 - Fixed /dev/urandom fd leak (Debian bug #49722)
5bbb5681 7209 - Merged OpenBSD CVS changes:
7210 - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7211 - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
7212 - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
bcbf86ec 7213 - Fix integer overflow which was messing up scp's progress bar for large
3f1d9bcd 7214 file transfers. Fix submitted to OpenBSD developers. Report and fix
7215 from Kees Cook <cook@cpoint.net>
6a17f9c2 7216 - Merged more OpenBSD CVS changes:
bcbf86ec 7217 - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
6a17f9c2 7218 + krb-cleanup cleanup
7219 - [clientloop.c log-client.c log-server.c ]
7220 [readconf.c readconf.h servconf.c servconf.h ]
7221 [ssh.1 ssh.c ssh.h sshd.8]
7222 add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
7223 obsoletes QuietMode and FascistLogging in sshd.
e35c1dc2 7224 - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
7225 allow session_key_int != sizeof(session_key)
7226 [this should fix the pre-assert-removal-core-files]
7227 - Updated default config file to use new LogLevel option and to improve
7228 readability
7229
f370266e 723019991110
67d68e3a 7231 - Merged several minor fixes:
f370266e 7232 - ssh-agent commandline parsing
7233 - RPM spec file now installs ssh setuid root
7234 - Makefile creates libdir
4cca272e 7235 - Merged beginnings of Solaris compability from Marc G. Fournier
7236 <marc.fournier@acadiau.ca>
f370266e 7237
d4f11b59 723819991109
7239 - Autodetection of SSL/Crypto library location via autoconf
7240 - Fixed location of ssh-askpass to follow autoconf
7241 - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
7242 - Autodetection of RSAref library for US users
7243 - Minor doc updates
560557bb 7244 - Merged OpenBSD CVS changes:
7245 - [rsa.c] bugfix: use correct size for memset()
7246 - [sshconnect.c] warn if announced size of modulus 'n' != real size
f025becb 7247 - Added GNOME passphrase requestor (use --with-gnome-askpass)
d397b172 7248 - RPM build now creates subpackages
aa51e7cc 7249 - Released 1.2pre9
d4f11b59 7250
e1a9c08d 725119991108
7252 - Removed debian/ directory. This is now being maintained separately.
7253 - Added symlinks for slogin in RPM spec file
7254 - Fixed permissions on manpages in RPM spec file
7255 - Added references to required libraries in README file
7256 - Removed config.h.in from CVS
7257 - Removed pwdb support (better pluggable auth is provided by glibc)
7258 - Made PAM and requisite libdl optional
7259 - Removed lots of unnecessary checks from autoconf
7260 - Added support and autoconf test for openpty() function (Unix98 pty support)
7261 - Fix for scp not finding ssh if not installed as /usr/bin/ssh
7262 - Added TODO file
7263 - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
7264 - Added ssh-askpass program
7265 - Added ssh-askpass support to ssh-add.c
7266 - Create symlinks for slogin on install
7267 - Fix "distclean" target in makefile
7268 - Added example for ssh-agent to manpage
7269 - Added support for PAM_TEXT_INFO messages
7270 - Disable internal /etc/nologin support if PAM enabled
7271 - Merged latest OpenBSD CVS changes:
5bae4ab8 7272 - [all] replace assert() with error, fatal or packet_disconnect
e1a9c08d 7273 - [sshd.c] don't send fail-msg but disconnect if too many authentication
7274 failures
e1a9c08d 7275 - [sshd.c] remove unused argument. ok dugsong
7276 - [sshd.c] typo
7277 - [rsa.c] clear buffers used for encryption. ok: niels
7278 - [rsa.c] replace assert() with error, fatal or packet_disconnect
ade6fccd 7279 - [auth-krb4.c] remove unused argument. ok dugsong
e1a9c08d 7280 - Fixed coredump after merge of OpenBSD rsa.c patch
9010d60a 7281 - Released 1.2pre8
e1a9c08d 7282
3028328e 728319991102
7284 - Merged change from OpenBSD CVS
7285 - One-line cleanup in sshd.c
7286
474832c5 728719991030
7288 - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
69256d9d 7289 - Merged latest updates for OpenBSD CVS:
7290 - channels.[ch] - remove broken x11 fix and document istate/ostate
7291 - ssh-agent.c - call setsid() regardless of argv[]
7292 - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
7293 - Documentation cleanups
7294 - Renamed README -> README.Ylonen
7295 - Renamed README.openssh ->README
474832c5 7296
339660f6 729719991029
7298 - Renamed openssh* back to ssh* at request of Theo de Raadt
7299 - Incorporated latest changes from OpenBSD's CVS
7300 - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
7301 - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
549b3eed 7302 - Make distclean now removed configure script
7303 - Improved PAM logging
7304 - Added some debug() calls for PAM
4ecd19ea 7305 - Removed redundant subdirectories
bcbf86ec 7306 - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
4ecd19ea 7307 building on Debian.
242588e6 7308 - Fixed off-by-one error in PAM env patch
7309 - Released 1.2pre6
339660f6 7310
5881cd60 731119991028
7312 - Further PAM enhancements.
7313 - Much cleaner
7314 - Now uses account and session modules for all logins.
7315 - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
7316 - Build fixes
7317 - Autoconf
7318 - Change binary names to open*
7319 - Fixed autoconf script to detect PAM on RH6.1
7320 - Added tests for libpwdb, and OpenBSD functions to autoconf
221395b3 7321 - Released 1.2pre4
fca82d2e 7322
7323 - Imported latest OpenBSD CVS code
7324 - Updated README.openssh
93f04616 7325 - Released 1.2pre5
fca82d2e 7326
5881cd60 732719991027
7328 - Adapted PAM patch.
7329 - Released 1.0pre2
7330
7331 - Excised my buggy replacements for strlcpy and mkdtemp
7332 - Imported correct OpenBSD strlcpy and mkdtemp routines.
7333 - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
7334 - Picked up correct version number from OpenBSD
7335 - Added sshd.pam PAM configuration file
7336 - Added sshd.init Redhat init script
7337 - Added openssh.spec RPM spec file
7338 - Released 1.2pre3
7339
734019991026
7341 - Fixed include paths of OpenSSL functions
7342 - Use OpenSSL MD5 routines
7343 - Imported RC4 code from nanocrypt
7344 - Wrote replacements for OpenBSD arc4random* functions
7345 - Wrote replacements for strlcpy and mkdtemp
7346 - Released 1.0pre1
0b202697 7347
7348$Id$
This page took 1.618862 seconds and 5 git commands to generate.