blob: b61c3b3a208e88de2ab6f1ed1288bf63841fa850 [file] [log] [blame]
Damien Millerab8a4da1999-12-16 13:05:30 +1100119991216
2 - Makefile changes for Solaris from Peter Kocks
3 <peter.kocks@baygate.com>
Damien Miller5e7c10e1999-12-16 13:18:04 +11004 - Minor updates to docs
5 - Merged OpenBSD CVS changes:
6 - [authfd.c ssh-agent.c]
7 keysize warnings talk about identity files
8 - [packet.c]
9 "Connection closed by x.x.x.x": fatal() -> log()
Damien Miller8f9d5071999-12-16 15:10:45 +110010 - Correctly handle empty passwords in shadow file. Patch from:
11 "Chris, the Young One" <cky@pobox.com>
12 - Released 1.2.1pre18
Damien Millerab8a4da1999-12-16 13:05:30 +110013
Damien Miller84093e91999-12-15 09:06:28 +11001419991215
15 - Integrated patchs from Juergen Keil <jk@tools.de>
16 - Avoid void* pointer arithmatic
17 - Use LDFLAGS correctly
Damien Miller864ea591999-12-15 11:04:25 +110018 - Fix SIGIO error in scp
19 - Simplify status line printing in scp
Damien Miller3b9d5e91999-12-15 09:34:31 +110020 - Added better test for inline functions compiler support from
21 Darren_Hall@progressive.com
Damien Miller84093e91999-12-15 09:06:28 +110022
Damien Millera34a28b1999-12-14 10:47:15 +11002319991214
24 - OpenBSD CVS Changes
25 - [canohost.c]
26 fix get_remote_port() and friends for sshd -i;
27 Holger.Trapp@Informatik.TU-Chemnitz.DE
28 - [mpaux.c]
29 make code simpler. no need for memcpy. niels@ ok
30 - [pty.c]
31 namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
32 fix proto; markus
33 - [ssh.1]
34 typo; mark.baushke@solipsa.com
35 - [channels.c ssh.c ssh.h sshd.c]
36 type conflict for 'extern Type *options' in channels.c; dot@dotat.at
37 - [sshconnect.c]
38 move checking of hostkey into own function.
39 - [version.h]
40 OpenSSH-1.2.1
Damien Miller36b339a1999-12-14 10:54:47 +110041 - Clean up broken includes in pty.c
Damien Miller6ae00d61999-12-14 15:43:03 +110042 - Some older systems don't have poll.h, they use sys/poll.h instead
43 - Doc updates
Damien Millera34a28b1999-12-14 10:47:15 +110044
Damien Millerc6b3bbe1999-12-13 08:27:33 +11004519991211
46 - Fix compilation on systems with AFS. Reported by
47 aloomis@glue.umd.edu
48 - Fix installation on Solaris. Reported by
49 Gordon Rowell <gordonr@gormand.com.au>
50 - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
51 patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
52 - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
53 - Compile fix from David Agraz <dagraz@jahoopa.com>
54 - Avoid compiler warning in bsd-snprintf.c
55 - Added pam_limits.so to default PAM config. Suggested by
56 Jim Knoble <jmknoble@pobox.com>
57
Damien Millerbf1c9b21999-12-09 10:16:54 +11005819991209
59 - Import of patch from Ben Taylor <bent@clark.net>:
60 - Improved PAM support
61 - "uninstall" rule for Makefile
62 - utmpx support
63 - Should fix PAM problems on Solaris
Damien Miller50945fa1999-12-09 10:31:37 +110064 - OpenBSD CVS updates:
65 - [readpass.c]
66 avoid stdio; based on work by markus, millert, and I
67 - [sshd.c]
68 make sure the client selects a supported cipher
69 - [sshd.c]
70 fix sighup handling. accept would just restart and daemon handled
71 sighup only after the next connection was accepted. use poll on
72 listen sock now.
73 - [sshd.c]
74 make that a fatal
Damien Millerd7f66151999-12-09 10:48:58 +110075 - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
76 to fix libwrap support on NetBSD
Damien Miller6646bad1999-12-09 10:42:10 +110077 - Released 1.2pre17
Damien Millerbf1c9b21999-12-09 10:16:54 +110078
Damien Millerfce16481999-12-08 08:53:52 +11007919991208
80 - Compile fix for Solaris with /dev/ptmx from
81 David Agraz <dagraz@jahoopa.com>
82
Damien Miller0c078c61999-12-07 14:53:57 +11008319991207
84 - sshd Redhat init script patch from Jim Knoble <jmknoble@pobox.com>
85 fixes compatability with 4.x and 5.x
Damien Miller3bc14dd1999-12-07 14:54:53 +110086 - Fixed default SSH_ASKPASS
Damien Millereabf3411999-12-07 14:56:27 +110087 - Fix PAM account and session being called multiple times. Problem
88 reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
Damien Miller037a0dc1999-12-07 15:38:31 +110089 - Merged more OpenBSD changes:
90 - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
91 move atomicio into it's own file. wrap all socket write()s which
92 were doing write(sock, buf, len) != len, with atomicio() calls.
93 - [auth-skey.c]
94 fd leak
95 - [authfile.c]
96 properly name fd variable
97 - [channels.c]
98 display great hatred towards strcpy
99 - [pty.c pty.h sshd.c]
100 use openpty() if it exists (it does on BSD4_4)
101 - [tildexpand.c]
102 check for ~ expansion past MAXPATHLEN
103 - Modified helper.c to use new atomicio function.
104 - Reformat Makefile a little
105 - Moved RC4 routines from rc4.[ch] into helper.c
106 - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
Damien Milleraf2604a1999-12-07 16:21:40 +1100107 - Updated SuSE spec from Chris Saia <csaia@wtower.com>
108 - Tweaked Redhat spec
Damien Millerf5d69a51999-12-07 16:55:04 +1100109 - Clean up bad imports of a few files (forgot -kb)
110 - Released 1.2pre16
Damien Miller0c078c61999-12-07 14:53:57 +1100111
Damien Millerdc33fc31999-12-04 20:24:48 +110011219991204
113 - Small cleanup of PAM code in sshd.c
Damien Milleraae6c611999-12-06 11:47:28 +1100114 - Merged OpenBSD CVS changes:
115 - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
116 move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
117 - [auth-rsa.c]
118 warn only about mismatch if key is _used_
119 warn about keysize-mismatch with log() not error()
120 channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
121 ports are u_short
122 - [hostfile.c]
123 indent, shorter warning
124 - [nchan.c]
125 use error() for internal errors
126 - [packet.c]
127 set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
128 serverloop.c
129 indent
130 - [ssh-add.1 ssh-add.c ssh.h]
131 document $SSH_ASKPASS, reasonable default
132 - [ssh.1]
133 CheckHostIP is not available for connects via proxy command
134 - [sshconnect.c]
135 typo
136 easier to read client code for passwd and skey auth
137 turn of checkhostip for proxy connects, since we don't know the remote ip
Damien Millerdc33fc31999-12-04 20:24:48 +1100138
Damien Miller42b81ff1999-11-26 12:21:24 +110013919991126
140 - Add definition for __P()
141 - Added [v]snprintf() replacement for systems that lack it
142
Damien Miller78224a01999-11-25 11:55:45 +110014319991125
144 - More reformatting merged from OpenBSD CVS
145 - Merged OpenBSD CVS changes:
146 - [channels.c]
147 fix packet_integrity_check() for !have_hostname_in_open.
148 report from mrwizard@psu.edu via djm@ibs.com.au
149 - [channels.c]
150 set SO_REUSEADDR and SO_LINGER for forwarded ports.
151 chip@valinux.com via damien@ibs.com.au
152 - [nchan.c]
153 it's not an error() if shutdown_write failes in nchan.
154 - [readconf.c]
155 remove dead #ifdef-0-code
156 - [readconf.c servconf.c]
157 strcasecmp instead of tolower
158 - [scp.c]
159 progress meter overflow fix from damien@ibs.com.au
160 - [ssh-add.1 ssh-add.c]
161 SSH_ASKPASS support
162 - [ssh.1 ssh.c]
163 postpone fork_after_authentication until command execution,
164 request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
165 plus: use daemon() for backgrounding
Damien Millerd8087f61999-11-25 12:31:26 +1100166 - Added BSD compatible install program and autoconf test, thanks to
167 Niels Kristian Bech Jensen <nkbj@image.dk>
168 - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
Damien Miller063fdf81999-11-25 13:08:31 +1100169 - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
Damien Millerbf3f6ef1999-11-25 13:50:10 +1100170 - Release 1.2pre15
Damien Miller78224a01999-11-25 11:55:45 +1100171
Damien Miller95def091999-11-25 00:26:21 +110017219991124
173 - Merged very large OpenBSD source code reformat
174 - OpenBSD CVS updates
175 - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
176 [ssh.h sshd.8 sshd.c]
177 syslog changes:
178 * Unified Logmessage for all auth-types, for success and for failed
179 * Standard connections get only ONE line in the LOG when level==LOG:
180 Auth-attempts are logged only, if authentication is:
181 a) successfull or
182 b) with passwd or
183 c) we had more than AUTH_FAIL_LOG failues
184 * many log() became verbose()
185 * old behaviour with level=VERBOSE
186 - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
187 tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
188 messages. allows use of s/key in windows (ttssh, securecrt) and
189 ssh-1.2.27 clients without 'ssh -v', ok: niels@
190 - [sshd.8]
191 -V, for fallback to openssh in SSH2 compatibility mode
192 - [sshd.c]
193 fix sigchld race; cjc5@po.cwru.edu
194
Damien Miller294df781999-11-23 10:11:29 +110019519991123
196 - Added SuSE package files from Chris Saia <csaia@wtower.com>
Damien Miller3744b511999-11-23 11:24:32 +1100197 - Restructured package-related files under packages/*
Damien Miller294df781999-11-23 10:11:29 +1100198 - Added generic PAM config
Damien Miller3744b511999-11-23 11:24:32 +1100199 - Numerous little Solaris fixes
Damien Miller4d2f15f1999-11-23 12:36:29 +1100200 - Add recommendation to use GNU make to INSTALL document
Damien Miller294df781999-11-23 10:11:29 +1100201
Damien Miller22218721999-11-22 12:51:42 +110020219991122
203 - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
Damien Miller83df0691999-11-22 13:22:29 +1100204 - OpenBSD CVS Changes
205 - [ssh-keygen.c]
206 don't create ~/.ssh only if the user wants to store the private
207 key there. show fingerprint instead of public-key after
208 keygeneration. ok niels@
Damien Millerb3ca3aa1999-11-22 13:57:07 +1100209 - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
Damien Miller859cec01999-11-22 14:27:24 +1100210 - Added timersub() macro
Damien Millerb3ca3aa1999-11-22 13:57:07 +1100211 - Tidy RCSIDs of bsd-*.c
Damien Miller859cec01999-11-22 14:27:24 +1100212 - Added autoconf test and macro to deal with old PAM libraries
213 pam_strerror definition (one arg vs two).
Damien Millerd71b12e1999-11-22 15:24:34 +1100214 - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
215 - Retry /dev/urandom reads interrupted by signal (report from
216 Robert Hardy <rhardy@webcon.net>)
Damien Millerd7702521999-11-22 16:11:05 +1100217 - Added a setenv replacement for systems which lack it
Damien Millerd733c911999-11-22 18:11:23 +1100218 - Only display public key comment when presenting ssh-askpass dialog
219 - Released 1.2pre14
Damien Miller22218721999-11-22 12:51:42 +1100220
Damien Millerf7c0f821999-11-22 22:31:49 +1100221 - Configure, Make and changelog corrections from Tudor Bosman
222 <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
223
Damien Miller6162d121999-11-21 13:23:52 +110022419991121
Damien Miller83df0691999-11-22 13:22:29 +1100225 - OpenBSD CVS Changes:
Damien Miller22218721999-11-22 12:51:42 +1100226 - [channels.c]
227 make this compile, bad markus
228 - [log.c readconf.c servconf.c ssh.h]
229 bugfix: loglevels are per host in clientconfig,
230 factor out common log-level parsing code.
231 - [servconf.c]
232 remove unused index (-Wall)
233 - [ssh-agent.c]
234 only one 'extern char *__progname'
235 - [sshd.8]
236 document SIGHUP, -Q to synopsis
237 - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
238 [channels.c clientloop.c]
239 SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
240 [hope this time my ISP stays alive during commit]
241 - [OVERVIEW README] typos; green@freebsd
242 - [ssh-keygen.c]
243 replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
244 exit if writing the key fails (no infinit loop)
245 print usage() everytime we get bad options
246 - [ssh-keygen.c] overflow, djm@mindrot.org
247 - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
248
Damien Millerc6398ef1999-11-20 12:18:40 +110024919991120
250 - Merged more Solaris support from Marc G. Fournier
251 <marc.fournier@acadiau.ca>
252 - Wrote autoconf tests for integer bit-types
253 - Fixed enabling kerberos support
Damien Millerf58db381999-11-20 17:02:56 +1100254 - Fix segfault in ssh-keygen caused by buffer overrun in filename
255 handling.
Damien Millerc6398ef1999-11-20 12:18:40 +1100256
Damien Miller5bbbd361999-11-19 07:56:21 +110025719991119
258 - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
Damien Miller23b78391999-11-19 08:25:48 +1100259 - Merged OpenBSD CVS changes
260 - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
261 more %d vs. %s in fmt-strings
262 - [authfd.c]
263 Integers should not be printed with %s
Damien Miller58fc4731999-11-19 12:05:01 +1100264 - EGD uses a socket, not a named pipe. Duh.
265 - Fix includes in fingerprint.c
Damien Millerdc9365b1999-11-19 12:34:14 +1100266 - Fix scp progress bar bug again.
Damien Millerf7c0f821999-11-22 22:31:49 +1100267 - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
Damien Miller18ac1711999-11-19 12:43:19 +1100268 David Rankin <drankin@bohemians.lexington.ky.us>
Damien Miller80297751999-11-19 13:03:25 +1100269 - Added autoconf option to enable Kerberos 4 support (untested)
270 - Added autoconf option to enable AFS support (untested)
271 - Added autoconf option to enable S/Key support (untested)
272 - Added autoconf option to enable TCP wrappers support (compiles OK)
Damien Miller04f80141999-11-19 15:32:34 +1100273 - Renamed BSD helper function files to bsd-*
Damien Millerdd1c7ba1999-11-19 15:53:20 +1100274 - Added tests for login and daemon and enable OpenBSD replacements for
275 when they are absent.
276 - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
Damien Miller5bbbd361999-11-19 07:56:21 +1100277
Damien Miller81428f91999-11-18 09:28:11 +110027819991118
279 - Merged OpenBSD CVS changes
280 - [scp.c] foregroundproc() in scp
281 - [sshconnect.h] include fingerprint.h
282 - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
283 changes.
Damien Miller6ee95641999-11-18 11:35:13 +1100284 - [ssh.1] Spell my name right.
Damien Miller81428f91999-11-18 09:28:11 +1100285 - Added openssh.com info to README
286
Damien Miller10f6f6b1999-11-17 17:29:08 +110028719991117
288 - Merged OpenBSD CVS changes
289 - [ChangeLog.Ylonen] noone needs this anymore
290 - [authfd.c] close-on-exec for auth-socket, ok deraadt
291 - [hostfile.c]
292 in known_hosts key lookup the entry for the bits does not need
293 to match, all the information is contained in n and e. This
294 solves the problem with buggy servers announcing the wrong
295 modulus length. markus and me.
296 - [serverloop.c]
297 bugfix: check for space if child has terminated, from:
298 iedowse@maths.tcd.ie
299 - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
300 [fingerprint.c fingerprint.h]
301 rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
302 - [ssh-agent.1] typo
303 - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
304 - [sshd.c]
305 force logging to stderr while loading private key file
306 (lost while converting to new log-levels)
307
Damien Miller7e8e8201999-11-16 13:37:16 +110030819991116
309 - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
310 - Merged OpenBSD CVS changes:
311 - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
312 [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
313 the keysize of rsa-parameter 'n' is passed implizit,
314 a few more checks and warnings about 'pretended' keysizes.
315 - [cipher.c cipher.h packet.c packet.h sshd.c]
316 remove support for cipher RC4
317 - [ssh.c]
318 a note for legay systems about secuity issues with permanently_set_uid(),
319 the private hostkey and ptrace()
320 - [sshconnect.c]
321 more detailed messages about adding and checking hostkeys
322
Damien Millerd05a2471999-11-15 14:25:30 +110032319991115
324 - Merged OpenBSD CVS changes:
325 - [ssh-add.c] change passphrase loop logic and remove ref to
326 $DISPLAY, ok niels
327 - Changed to ssh-add.c broke askpass support. Revised it to be a little more
328 modular.
329 - Revised autoconf support for enabling/disabling askpass support.
Damien Miller2ccf6611999-11-15 15:25:10 +1100330 - Merged more OpenBSD CVS changes:
331 [auth-krb4.c]
332 - disconnect if getpeername() fails
333 - missing xfree(*client)
334 [canohost.c]
335 - disconnect if getpeername() fails
336 - fix comment: we _do_ disconnect if ip-options are set
337 [sshd.c]
338 - disconnect if getpeername() fails
339 - move checking of remote port to central place
340 [auth-rhosts.c] move checking of remote port to central place
341 [log-server.c] avoid extra fd per sshd, from millert@
342 [readconf.c] print _all_ bad config-options in ssh(1), too
343 [readconf.h] print _all_ bad config-options in ssh(1), too
344 [ssh.c] print _all_ bad config-options in ssh(1), too
345 [sshconnect.c] disconnect if getpeername() fails
346 - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
Damien Miller3bd49ec1999-11-15 15:40:55 +1100347 - Various small cleanups to bring diff (against OpenBSD) size down.
Damien Miller3f905871999-11-15 17:10:57 +1100348 - Merged more Solaris compability from Marc G. Fournier
349 <marc.fournier@acadiau.ca>
350 - Wrote autoconf tests for __progname symbol
Damien Miller36682061999-11-15 17:19:24 +1100351 - RPM spec file fixes from Jim Knoble <jmknoble@pobox.com>
Damien Miller2e8b1c81999-11-15 23:33:56 +1100352 - Released 1.2pre12
353
354 - Another OpenBSD CVS update:
355 - [ssh-keygen.1] fix .Xr
Damien Millerd05a2471999-11-15 14:25:30 +1100356
Damien Miller0a6e6681999-11-15 09:56:06 +110035719991114
358 - Solaris compilation fixes (still imcomplete)
359
Damien Millerb0284381999-11-13 13:30:28 +110036019991113
Damien Miller192bd011999-11-13 23:56:35 +1100361 - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
362 - Don't install config files if they already exist
363 - Fix inclusion of additional preprocessor directives from acconfig.h
Damien Millerb0284381999-11-13 13:30:28 +1100364 - Removed redundant inclusions of config.h
Damien Millerc6d5ce81999-11-15 16:01:07 +1100365 - Added 'Obsoletes' lines to RPM spec file
Damien Millerb0284381999-11-13 13:30:28 +1100366 - Merged OpenBSD CVS changes:
367 - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
368 - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
369 totalsize, ok niels,aaron
370 - Delay fork (-f option) in ssh until after port forwarded connections
371 have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
Damien Miller2cb210f1999-11-13 15:40:10 +1100372 - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
373 - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
Damien Miller192bd011999-11-13 23:56:35 +1100374 - Tidied default config file some more
375 - Revised Redhat initscript to fix bug: sshd (re)start would fail
376 if executed from inside a ssh login.
Damien Millerb0284381999-11-13 13:30:28 +1100377
Damien Miller776af5d1999-11-12 08:49:09 +110037819991112
379 - Merged changes from OpenBSD CVS
380 - [sshd.c] session_key_int may be zero
Damien Miller32265091999-11-12 11:33:04 +1100381 - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
382 IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
383 deraadt,millert
384 - Brought default sshd_config more in line with OpenBSD's
Damien Millerb9a692d1999-11-12 12:09:36 +1100385 - Grab server in gnome-ssh-askpass (Debian bug #49872)
386 - Released 1.2pre10
Damien Miller776af5d1999-11-12 08:49:09 +1100387
Damien Millerb5f89271999-11-12 14:35:58 +1100388 - Added INSTALL documentation
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100389 - Merged yet more changes from OpenBSD CVS
390 - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
391 [ssh.c ssh.h sshconnect.c sshd.c]
392 make all access to options via 'extern Options options'
393 and 'extern ServerOptions options' respectively;
394 options are no longer passed as arguments:
395 * make options handling more consistent
396 * remove #include "readconf.h" from ssh.h
397 * readconf.h is only included if necessary
398 - [mpaux.c] clear temp buffer
399 - [servconf.c] print _all_ bad options found in configfile
Damien Miller3d1b22c1999-11-12 15:46:08 +1100400 - Make ssh-askpass support optional through autoconf
Damien Miller9c8da3c1999-11-12 16:28:02 +1100401 - Fix nasty division-by-zero error in scp.c
402 - Released 1.2pre11
Damien Millerb5f89271999-11-12 14:35:58 +1100403
Damien Millerab18c411999-11-11 10:40:23 +110040419991111
405 - Added (untested) Entropy Gathering Daemon (EGD) support
Damien Miller4236f6e1999-11-12 12:22:31 +1100406 - Fixed /dev/urandom fd leak (Debian bug #49722)
Damien Miller33e511e1999-11-11 11:43:13 +1100407 - Merged OpenBSD CVS changes:
408 - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
409 - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
410 - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
Damien Miller428f2471999-11-11 12:48:35 +1100411 - Fix integer overflow which was messing up scp's progress bar for large
412 file transfers. Fix submitted to OpenBSD developers.
Damien Miller5ce662a1999-11-11 17:57:39 +1100413 - Merged more OpenBSD CVS changes:
414 - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
415 + krb-cleanup cleanup
416 - [clientloop.c log-client.c log-server.c ]
417 [readconf.c readconf.h servconf.c servconf.h ]
418 [ssh.1 ssh.c ssh.h sshd.8]
419 add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
420 obsoletes QuietMode and FascistLogging in sshd.
Damien Miller776af5d1999-11-12 08:49:09 +1100421 - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
422 allow session_key_int != sizeof(session_key)
423 [this should fix the pre-assert-removal-core-files]
424 - Updated default config file to use new LogLevel option and to improve
425 readability
426
Damien Millerb77870f1999-11-10 12:48:08 +110042719991110
Damien Miller4236f6e1999-11-12 12:22:31 +1100428 - Merged several minor fixes:
Damien Millerb77870f1999-11-10 12:48:08 +1100429 - ssh-agent commandline parsing
430 - RPM spec file now installs ssh setuid root
431 - Makefile creates libdir
Damien Millerab18c411999-11-11 10:40:23 +1100432 - Merged beginnings of Solaris compability from Marc G. Fournier
433 <marc.fournier@acadiau.ca>
Damien Millerb77870f1999-11-10 12:48:08 +1100434
Damien Millerc7b38ce1999-11-09 10:28:04 +110043519991109
436 - Autodetection of SSL/Crypto library location via autoconf
437 - Fixed location of ssh-askpass to follow autoconf
438 - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
439 - Autodetection of RSAref library for US users
440 - Minor doc updates
Damien Millerda217a01999-11-09 10:35:52 +1100441 - Merged OpenBSD CVS changes:
442 - [rsa.c] bugfix: use correct size for memset()
443 - [sshconnect.c] warn if announced size of modulus 'n' != real size
Damien Miller742d2cb1999-11-09 14:28:26 +1100444 - Added GNOME passphrase requestor (use --with-gnome-askpass)
Damien Miller3f51bf51999-11-09 14:46:02 +1100445 - RPM build now creates subpackages
Damien Miller74389c91999-11-09 15:03:01 +1100446 - Released 1.2pre9
Damien Millerc7b38ce1999-11-09 10:28:04 +1100447
Damien Miller356a0b01999-11-08 15:30:59 +110044819991108
449 - Removed debian/ directory. This is now being maintained separately.
450 - Added symlinks for slogin in RPM spec file
451 - Fixed permissions on manpages in RPM spec file
452 - Added references to required libraries in README file
453 - Removed config.h.in from CVS
454 - Removed pwdb support (better pluggable auth is provided by glibc)
455 - Made PAM and requisite libdl optional
456 - Removed lots of unnecessary checks from autoconf
457 - Added support and autoconf test for openpty() function (Unix98 pty support)
458 - Fix for scp not finding ssh if not installed as /usr/bin/ssh
459 - Added TODO file
460 - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
461 - Added ssh-askpass program
462 - Added ssh-askpass support to ssh-add.c
463 - Create symlinks for slogin on install
464 - Fix "distclean" target in makefile
465 - Added example for ssh-agent to manpage
466 - Added support for PAM_TEXT_INFO messages
467 - Disable internal /etc/nologin support if PAM enabled
468 - Merged latest OpenBSD CVS changes:
Damien Millerfd7c9111999-11-08 16:15:55 +1100469 - [all] replace assert() with error, fatal or packet_disconnect
Damien Miller356a0b01999-11-08 15:30:59 +1100470 - [sshd.c] don't send fail-msg but disconnect if too many authentication
471 failures
Damien Miller356a0b01999-11-08 15:30:59 +1100472 - [sshd.c] remove unused argument. ok dugsong
473 - [sshd.c] typo
474 - [rsa.c] clear buffers used for encryption. ok: niels
475 - [rsa.c] replace assert() with error, fatal or packet_disconnect
Damien Miller5ac5f1c1999-11-08 15:50:14 +1100476 - [auth-krb4.c] remove unused argument. ok dugsong
Damien Miller356a0b01999-11-08 15:30:59 +1100477 - Fixed coredump after merge of OpenBSD rsa.c patch
Damien Millere8d90681999-11-08 18:09:57 +1100478 - Released 1.2pre8
Damien Miller356a0b01999-11-08 15:30:59 +1100479
Damien Miller0aa8e531999-11-02 19:05:02 +110048019991102
481 - Merged change from OpenBSD CVS
482 - One-line cleanup in sshd.c
483
Damien Miller744da801999-10-30 09:12:25 +100048419991030
485 - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
Damien Miller1e4772c1999-10-30 11:39:56 +1000486 - Merged latest updates for OpenBSD CVS:
487 - channels.[ch] - remove broken x11 fix and document istate/ostate
488 - ssh-agent.c - call setsid() regardless of argv[]
489 - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
490 - Documentation cleanups
491 - Renamed README -> README.Ylonen
492 - Renamed README.openssh ->README
Damien Miller744da801999-10-30 09:12:25 +1000493
Damien Miller070f7a11999-10-29 10:29:29 +100049419991029
495 - Renamed openssh* back to ssh* at request of Theo de Raadt
496 - Incorporated latest changes from OpenBSD's CVS
497 - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
498 - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
Damien Miller07a826d1999-10-29 11:49:20 +1000499 - Make distclean now removed configure script
500 - Improved PAM logging
501 - Added some debug() calls for PAM
Damien Miller65b3c131999-10-29 12:37:01 +1000502 - Removed redundant subdirectories
503 - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
504 building on Debian.
Damien Millerd0562b31999-10-29 13:09:40 +1000505 - Fixed off-by-one error in PAM env patch
506 - Released 1.2pre6
Damien Miller070f7a11999-10-29 10:29:29 +1000507
Damien Miller7f6ea021999-10-28 13:25:17 +100050819991028
509 - Further PAM enhancements.
510 - Much cleaner
511 - Now uses account and session modules for all logins.
512 - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
513 - Build fixes
514 - Autoconf
515 - Change binary names to open*
516 - Fixed autoconf script to detect PAM on RH6.1
517 - Added tests for libpwdb, and OpenBSD functions to autoconf
Damien Millereff18d61999-10-28 14:14:38 +1000518 - Released 1.2pre4
Damien Miller29b5a591999-10-28 15:46:27 +1000519
520 - Imported latest OpenBSD CVS code
521 - Updated README.openssh
Damien Miller34d0b611999-10-28 17:51:40 +1000522 - Released 1.2pre5
Damien Miller29b5a591999-10-28 15:46:27 +1000523
Damien Miller7f6ea021999-10-28 13:25:17 +100052419991027
525 - Adapted PAM patch.
526 - Released 1.0pre2
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Damien Miller7f6ea021999-10-28 13:25:17 +1000528 - Excised my buggy replacements for strlcpy and mkdtemp
529 - Imported correct OpenBSD strlcpy and mkdtemp routines.
530 - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
531 - Picked up correct version number from OpenBSD
532 - Added sshd.pam PAM configuration file
533 - Added sshd.init Redhat init script
534 - Added openssh.spec RPM spec file
535 - Released 1.2pre3
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536
Damien Miller7f6ea021999-10-28 13:25:17 +100053719991026
538 - Fixed include paths of OpenSSL functions
539 - Use OpenSSL MD5 routines
540 - Imported RC4 code from nanocrypt
541 - Wrote replacements for OpenBSD arc4random* functions
542 - Wrote replacements for strlcpy and mkdtemp
543 - Released 1.0pre1