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