blob: f96ddd45460a596be44ca328676d2a999cb64576 [file] [log] [blame]
Damien Miller84093e91999-12-15 09:06:28 +1100119991215
2 - Integrated patchs from Juergen Keil <jk@tools.de>
3 - Avoid void* pointer arithmatic
4 - Use LDFLAGS correctly
5
Damien Millera34a28b1999-12-14 10:47:15 +1100619991214
7 - OpenBSD CVS Changes
8 - [canohost.c]
9 fix get_remote_port() and friends for sshd -i;
10 Holger.Trapp@Informatik.TU-Chemnitz.DE
11 - [mpaux.c]
12 make code simpler. no need for memcpy. niels@ ok
13 - [pty.c]
14 namebuflen not sizeof namebuflen; bnd@ep-ag.com via djm@mindrot.org
15 fix proto; markus
16 - [ssh.1]
17 typo; mark.baushke@solipsa.com
18 - [channels.c ssh.c ssh.h sshd.c]
19 type conflict for 'extern Type *options' in channels.c; dot@dotat.at
20 - [sshconnect.c]
21 move checking of hostkey into own function.
22 - [version.h]
23 OpenSSH-1.2.1
Damien Miller36b339a1999-12-14 10:54:47 +110024 - Clean up broken includes in pty.c
Damien Miller6ae00d61999-12-14 15:43:03 +110025 - Some older systems don't have poll.h, they use sys/poll.h instead
26 - Doc updates
Damien Millera34a28b1999-12-14 10:47:15 +110027
Damien Millerc6b3bbe1999-12-13 08:27:33 +11002819991211
29 - Fix compilation on systems with AFS. Reported by
30 aloomis@glue.umd.edu
31 - Fix installation on Solaris. Reported by
32 Gordon Rowell <gordonr@gormand.com.au>
33 - Fix gccisms (__attribute__ and inline). Report by edgy@us.ibm.com,
34 patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
35 - Auto-locate xauth. Patch from David Agraz <dagraz@jahoopa.com>
36 - Compile fix from David Agraz <dagraz@jahoopa.com>
37 - Avoid compiler warning in bsd-snprintf.c
38 - Added pam_limits.so to default PAM config. Suggested by
39 Jim Knoble <jmknoble@pobox.com>
40
Damien Millerbf1c9b21999-12-09 10:16:54 +11004119991209
42 - Import of patch from Ben Taylor <bent@clark.net>:
43 - Improved PAM support
44 - "uninstall" rule for Makefile
45 - utmpx support
46 - Should fix PAM problems on Solaris
Damien Miller50945fa1999-12-09 10:31:37 +110047 - OpenBSD CVS updates:
48 - [readpass.c]
49 avoid stdio; based on work by markus, millert, and I
50 - [sshd.c]
51 make sure the client selects a supported cipher
52 - [sshd.c]
53 fix sighup handling. accept would just restart and daemon handled
54 sighup only after the next connection was accepted. use poll on
55 listen sock now.
56 - [sshd.c]
57 make that a fatal
Damien Millerd7f66151999-12-09 10:48:58 +110058 - Applied patch from David Rankin <drankin@bohemians.lexington.ky.us>
59 to fix libwrap support on NetBSD
Damien Miller6646bad1999-12-09 10:42:10 +110060 - Released 1.2pre17
Damien Millerbf1c9b21999-12-09 10:16:54 +110061
Damien Millerfce16481999-12-08 08:53:52 +11006219991208
63 - Compile fix for Solaris with /dev/ptmx from
64 David Agraz <dagraz@jahoopa.com>
65
Damien Miller0c078c61999-12-07 14:53:57 +11006619991207
67 - sshd Redhat init script patch from Jim Knoble <jmknoble@pobox.com>
68 fixes compatability with 4.x and 5.x
Damien Miller3bc14dd1999-12-07 14:54:53 +110069 - Fixed default SSH_ASKPASS
Damien Millereabf3411999-12-07 14:56:27 +110070 - Fix PAM account and session being called multiple times. Problem
71 reported by Adrian Baugh <adrian@merlin.keble.ox.ac.uk>
Damien Miller037a0dc1999-12-07 15:38:31 +110072 - Merged more OpenBSD changes:
73 - [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
74 move atomicio into it's own file. wrap all socket write()s which
75 were doing write(sock, buf, len) != len, with atomicio() calls.
76 - [auth-skey.c]
77 fd leak
78 - [authfile.c]
79 properly name fd variable
80 - [channels.c]
81 display great hatred towards strcpy
82 - [pty.c pty.h sshd.c]
83 use openpty() if it exists (it does on BSD4_4)
84 - [tildexpand.c]
85 check for ~ expansion past MAXPATHLEN
86 - Modified helper.c to use new atomicio function.
87 - Reformat Makefile a little
88 - Moved RC4 routines from rc4.[ch] into helper.c
89 - Added autoconf code to detect /dev/ptmx (Solaris) and /dev/ptc (AIX)
Damien Milleraf2604a1999-12-07 16:21:40 +110090 - Updated SuSE spec from Chris Saia <csaia@wtower.com>
91 - Tweaked Redhat spec
Damien Millerf5d69a51999-12-07 16:55:04 +110092 - Clean up bad imports of a few files (forgot -kb)
93 - Released 1.2pre16
Damien Miller0c078c61999-12-07 14:53:57 +110094
Damien Millerdc33fc31999-12-04 20:24:48 +11009519991204
96 - Small cleanup of PAM code in sshd.c
Damien Milleraae6c611999-12-06 11:47:28 +110097 - Merged OpenBSD CVS changes:
98 - [auth-krb4.c auth-passwd.c auth-skey.c ssh.h]
99 move skey-auth from auth-passwd.c to auth-skey.c, same for krb4
100 - [auth-rsa.c]
101 warn only about mismatch if key is _used_
102 warn about keysize-mismatch with log() not error()
103 channels.c readconf.c readconf.h ssh.c ssh.h sshconnect.c
104 ports are u_short
105 - [hostfile.c]
106 indent, shorter warning
107 - [nchan.c]
108 use error() for internal errors
109 - [packet.c]
110 set loglevel for SSH_MSG_DISCONNECT to log(), not fatal()
111 serverloop.c
112 indent
113 - [ssh-add.1 ssh-add.c ssh.h]
114 document $SSH_ASKPASS, reasonable default
115 - [ssh.1]
116 CheckHostIP is not available for connects via proxy command
117 - [sshconnect.c]
118 typo
119 easier to read client code for passwd and skey auth
120 turn of checkhostip for proxy connects, since we don't know the remote ip
Damien Millerdc33fc31999-12-04 20:24:48 +1100121
Damien Miller42b81ff1999-11-26 12:21:24 +110012219991126
123 - Add definition for __P()
124 - Added [v]snprintf() replacement for systems that lack it
125
Damien Miller78224a01999-11-25 11:55:45 +110012619991125
127 - More reformatting merged from OpenBSD CVS
128 - Merged OpenBSD CVS changes:
129 - [channels.c]
130 fix packet_integrity_check() for !have_hostname_in_open.
131 report from mrwizard@psu.edu via djm@ibs.com.au
132 - [channels.c]
133 set SO_REUSEADDR and SO_LINGER for forwarded ports.
134 chip@valinux.com via damien@ibs.com.au
135 - [nchan.c]
136 it's not an error() if shutdown_write failes in nchan.
137 - [readconf.c]
138 remove dead #ifdef-0-code
139 - [readconf.c servconf.c]
140 strcasecmp instead of tolower
141 - [scp.c]
142 progress meter overflow fix from damien@ibs.com.au
143 - [ssh-add.1 ssh-add.c]
144 SSH_ASKPASS support
145 - [ssh.1 ssh.c]
146 postpone fork_after_authentication until command execution,
147 request/patch from jahakala@cc.jyu.fi via damien@ibs.com.au
148 plus: use daemon() for backgrounding
Damien Millerd8087f61999-11-25 12:31:26 +1100149 - Added BSD compatible install program and autoconf test, thanks to
150 Niels Kristian Bech Jensen <nkbj@image.dk>
151 - Solaris fixing, thanks to Ben Taylor <bent@clark.net>
Damien Miller063fdf81999-11-25 13:08:31 +1100152 - Merged beginnings of AIX support from Tor-Ake Fransson <torake@hotmail.com>
Damien Millerbf3f6ef1999-11-25 13:50:10 +1100153 - Release 1.2pre15
Damien Miller78224a01999-11-25 11:55:45 +1100154
Damien Miller95def091999-11-25 00:26:21 +110015519991124
156 - Merged very large OpenBSD source code reformat
157 - OpenBSD CVS updates
158 - [channels.c cipher.c compat.c log-client.c scp.c serverloop.c]
159 [ssh.h sshd.8 sshd.c]
160 syslog changes:
161 * Unified Logmessage for all auth-types, for success and for failed
162 * Standard connections get only ONE line in the LOG when level==LOG:
163 Auth-attempts are logged only, if authentication is:
164 a) successfull or
165 b) with passwd or
166 c) we had more than AUTH_FAIL_LOG failues
167 * many log() became verbose()
168 * old behaviour with level=VERBOSE
169 - [readconf.c readconf.h ssh.1 ssh.h sshconnect.c sshd.c]
170 tranfer s/key challenge/response data in SSH_SMSG_AUTH_TIS_CHALLENGE
171 messages. allows use of s/key in windows (ttssh, securecrt) and
172 ssh-1.2.27 clients without 'ssh -v', ok: niels@
173 - [sshd.8]
174 -V, for fallback to openssh in SSH2 compatibility mode
175 - [sshd.c]
176 fix sigchld race; cjc5@po.cwru.edu
177
Damien Miller294df781999-11-23 10:11:29 +110017819991123
179 - Added SuSE package files from Chris Saia <csaia@wtower.com>
Damien Miller3744b511999-11-23 11:24:32 +1100180 - Restructured package-related files under packages/*
Damien Miller294df781999-11-23 10:11:29 +1100181 - Added generic PAM config
Damien Miller3744b511999-11-23 11:24:32 +1100182 - Numerous little Solaris fixes
Damien Miller4d2f15f1999-11-23 12:36:29 +1100183 - Add recommendation to use GNU make to INSTALL document
Damien Miller294df781999-11-23 10:11:29 +1100184
Damien Miller22218721999-11-22 12:51:42 +110018519991122
186 - Make <enter> close gnome-ssh-askpass (Debian bug #50299)
Damien Miller83df0691999-11-22 13:22:29 +1100187 - OpenBSD CVS Changes
188 - [ssh-keygen.c]
189 don't create ~/.ssh only if the user wants to store the private
190 key there. show fingerprint instead of public-key after
191 keygeneration. ok niels@
Damien Millerb3ca3aa1999-11-22 13:57:07 +1100192 - Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
Damien Miller859cec01999-11-22 14:27:24 +1100193 - Added timersub() macro
Damien Millerb3ca3aa1999-11-22 13:57:07 +1100194 - Tidy RCSIDs of bsd-*.c
Damien Miller859cec01999-11-22 14:27:24 +1100195 - Added autoconf test and macro to deal with old PAM libraries
196 pam_strerror definition (one arg vs two).
Damien Millerd71b12e1999-11-22 15:24:34 +1100197 - Fix EGD problems (Thanks to Ben Taylor <bent@clark.net>)
198 - Retry /dev/urandom reads interrupted by signal (report from
199 Robert Hardy <rhardy@webcon.net>)
Damien Millerd7702521999-11-22 16:11:05 +1100200 - Added a setenv replacement for systems which lack it
Damien Millerd733c911999-11-22 18:11:23 +1100201 - Only display public key comment when presenting ssh-askpass dialog
202 - Released 1.2pre14
Damien Miller22218721999-11-22 12:51:42 +1100203
Damien Millerf7c0f821999-11-22 22:31:49 +1100204 - Configure, Make and changelog corrections from Tudor Bosman
205 <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
206
Damien Miller6162d121999-11-21 13:23:52 +110020719991121
Damien Miller83df0691999-11-22 13:22:29 +1100208 - OpenBSD CVS Changes:
Damien Miller22218721999-11-22 12:51:42 +1100209 - [channels.c]
210 make this compile, bad markus
211 - [log.c readconf.c servconf.c ssh.h]
212 bugfix: loglevels are per host in clientconfig,
213 factor out common log-level parsing code.
214 - [servconf.c]
215 remove unused index (-Wall)
216 - [ssh-agent.c]
217 only one 'extern char *__progname'
218 - [sshd.8]
219 document SIGHUP, -Q to synopsis
220 - [sshconnect.c serverloop.c sshd.c packet.c packet.h]
221 [channels.c clientloop.c]
222 SSH_CMSG_MAX_PACKET_SIZE, some clients use this, some need this, niels@
223 [hope this time my ISP stays alive during commit]
224 - [OVERVIEW README] typos; green@freebsd
225 - [ssh-keygen.c]
226 replace xstrdup+strcat with strlcat+fixed buffer, fixes OF (bad me)
227 exit if writing the key fails (no infinit loop)
228 print usage() everytime we get bad options
229 - [ssh-keygen.c] overflow, djm@mindrot.org
230 - [sshd.c] fix sigchld race; cjc5@po.cwru.edu
231
Damien Millerc6398ef1999-11-20 12:18:40 +110023219991120
233 - Merged more Solaris support from Marc G. Fournier
234 <marc.fournier@acadiau.ca>
235 - Wrote autoconf tests for integer bit-types
236 - Fixed enabling kerberos support
Damien Millerf58db381999-11-20 17:02:56 +1100237 - Fix segfault in ssh-keygen caused by buffer overrun in filename
238 handling.
Damien Millerc6398ef1999-11-20 12:18:40 +1100239
Damien Miller5bbbd361999-11-19 07:56:21 +110024019991119
241 - Merged PAM buffer overrun patch from Chip Salzenberg <chip@valinux.com>
Damien Miller23b78391999-11-19 08:25:48 +1100242 - Merged OpenBSD CVS changes
243 - [auth-rhosts.c auth-rsa.c ssh-agent.c sshconnect.c sshd.c]
244 more %d vs. %s in fmt-strings
245 - [authfd.c]
246 Integers should not be printed with %s
Damien Miller58fc4731999-11-19 12:05:01 +1100247 - EGD uses a socket, not a named pipe. Duh.
248 - Fix includes in fingerprint.c
Damien Millerdc9365b1999-11-19 12:34:14 +1100249 - Fix scp progress bar bug again.
Damien Millerf7c0f821999-11-22 22:31:49 +1100250 - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
Damien Miller18ac1711999-11-19 12:43:19 +1100251 David Rankin <drankin@bohemians.lexington.ky.us>
Damien Miller80297751999-11-19 13:03:25 +1100252 - Added autoconf option to enable Kerberos 4 support (untested)
253 - Added autoconf option to enable AFS support (untested)
254 - Added autoconf option to enable S/Key support (untested)
255 - Added autoconf option to enable TCP wrappers support (compiles OK)
Damien Miller04f80141999-11-19 15:32:34 +1100256 - Renamed BSD helper function files to bsd-*
Damien Millerdd1c7ba1999-11-19 15:53:20 +1100257 - Added tests for login and daemon and enable OpenBSD replacements for
258 when they are absent.
259 - Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
Damien Miller5bbbd361999-11-19 07:56:21 +1100260
Damien Miller81428f91999-11-18 09:28:11 +110026119991118
262 - Merged OpenBSD CVS changes
263 - [scp.c] foregroundproc() in scp
264 - [sshconnect.h] include fingerprint.h
265 - [sshd.c] bugfix: the log() for passwd-auth escaped during logging
266 changes.
Damien Miller6ee95641999-11-18 11:35:13 +1100267 - [ssh.1] Spell my name right.
Damien Miller81428f91999-11-18 09:28:11 +1100268 - Added openssh.com info to README
269
Damien Miller10f6f6b1999-11-17 17:29:08 +110027019991117
271 - Merged OpenBSD CVS changes
272 - [ChangeLog.Ylonen] noone needs this anymore
273 - [authfd.c] close-on-exec for auth-socket, ok deraadt
274 - [hostfile.c]
275 in known_hosts key lookup the entry for the bits does not need
276 to match, all the information is contained in n and e. This
277 solves the problem with buggy servers announcing the wrong
278 modulus length. markus and me.
279 - [serverloop.c]
280 bugfix: check for space if child has terminated, from:
281 iedowse@maths.tcd.ie
282 - [ssh-add.1 ssh-add.c ssh-keygen.1 ssh-keygen.c sshconnect.c]
283 [fingerprint.c fingerprint.h]
284 rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>
285 - [ssh-agent.1] typo
286 - [ssh.1] add OpenSSH information to AUTHOR section. okay markus@
287 - [sshd.c]
288 force logging to stderr while loading private key file
289 (lost while converting to new log-levels)
290
Damien Miller7e8e8201999-11-16 13:37:16 +110029119991116
292 - Fix some Linux libc5 problems reported by Miles Wilson <mw@mctitle.com>
293 - Merged OpenBSD CVS changes:
294 - [auth-rh-rsa.c auth-rsa.c authfd.c authfd.h hostfile.c mpaux.c]
295 [mpaux.h ssh-add.c ssh-agent.c ssh.h ssh.c sshd.c]
296 the keysize of rsa-parameter 'n' is passed implizit,
297 a few more checks and warnings about 'pretended' keysizes.
298 - [cipher.c cipher.h packet.c packet.h sshd.c]
299 remove support for cipher RC4
300 - [ssh.c]
301 a note for legay systems about secuity issues with permanently_set_uid(),
302 the private hostkey and ptrace()
303 - [sshconnect.c]
304 more detailed messages about adding and checking hostkeys
305
Damien Millerd05a2471999-11-15 14:25:30 +110030619991115
307 - Merged OpenBSD CVS changes:
308 - [ssh-add.c] change passphrase loop logic and remove ref to
309 $DISPLAY, ok niels
310 - Changed to ssh-add.c broke askpass support. Revised it to be a little more
311 modular.
312 - Revised autoconf support for enabling/disabling askpass support.
Damien Miller2ccf6611999-11-15 15:25:10 +1100313 - Merged more OpenBSD CVS changes:
314 [auth-krb4.c]
315 - disconnect if getpeername() fails
316 - missing xfree(*client)
317 [canohost.c]
318 - disconnect if getpeername() fails
319 - fix comment: we _do_ disconnect if ip-options are set
320 [sshd.c]
321 - disconnect if getpeername() fails
322 - move checking of remote port to central place
323 [auth-rhosts.c] move checking of remote port to central place
324 [log-server.c] avoid extra fd per sshd, from millert@
325 [readconf.c] print _all_ bad config-options in ssh(1), too
326 [readconf.h] print _all_ bad config-options in ssh(1), too
327 [ssh.c] print _all_ bad config-options in ssh(1), too
328 [sshconnect.c] disconnect if getpeername() fails
329 - OpenBSD's changes to sshd.c broke the PAM stuff, re-merged it.
Damien Miller3bd49ec1999-11-15 15:40:55 +1100330 - Various small cleanups to bring diff (against OpenBSD) size down.
Damien Miller3f905871999-11-15 17:10:57 +1100331 - Merged more Solaris compability from Marc G. Fournier
332 <marc.fournier@acadiau.ca>
333 - Wrote autoconf tests for __progname symbol
Damien Miller36682061999-11-15 17:19:24 +1100334 - RPM spec file fixes from Jim Knoble <jmknoble@pobox.com>
Damien Miller2e8b1c81999-11-15 23:33:56 +1100335 - Released 1.2pre12
336
337 - Another OpenBSD CVS update:
338 - [ssh-keygen.1] fix .Xr
Damien Millerd05a2471999-11-15 14:25:30 +1100339
Damien Miller0a6e6681999-11-15 09:56:06 +110034019991114
341 - Solaris compilation fixes (still imcomplete)
342
Damien Millerb0284381999-11-13 13:30:28 +110034319991113
Damien Miller192bd011999-11-13 23:56:35 +1100344 - Build patch from Niels Kristian Bech Jensen <nkbj@image.dk>
345 - Don't install config files if they already exist
346 - Fix inclusion of additional preprocessor directives from acconfig.h
Damien Millerb0284381999-11-13 13:30:28 +1100347 - Removed redundant inclusions of config.h
Damien Millerc6d5ce81999-11-15 16:01:07 +1100348 - Added 'Obsoletes' lines to RPM spec file
Damien Millerb0284381999-11-13 13:30:28 +1100349 - Merged OpenBSD CVS changes:
350 - [bufaux.c] save a view malloc/memcpy/memset/free's, ok niels
351 - [scp.c] fix overflow reported by damien@ibs.com.au: off_t
352 totalsize, ok niels,aaron
353 - Delay fork (-f option) in ssh until after port forwarded connections
354 have been initialised. Patch from Jani Hakala <jahakala@cc.jyu.fi>
Damien Miller2cb210f1999-11-13 15:40:10 +1100355 - Added shadow password patch from Thomas Neumann <tom@smart.ruhr.de>
356 - Added ifdefs to auth-passwd.c to exclude it when PAM is enabled
Damien Miller192bd011999-11-13 23:56:35 +1100357 - Tidied default config file some more
358 - Revised Redhat initscript to fix bug: sshd (re)start would fail
359 if executed from inside a ssh login.
Damien Millerb0284381999-11-13 13:30:28 +1100360
Damien Miller776af5d1999-11-12 08:49:09 +110036119991112
362 - Merged changes from OpenBSD CVS
363 - [sshd.c] session_key_int may be zero
Damien Miller32265091999-11-12 11:33:04 +1100364 - [auth-rh-rsa.c servconf.c servconf.h ssh.h sshd.8 sshd.c sshd_config]
365 IgnoreUserKnownHosts(default=no), used for RhostRSAAuth, ok
366 deraadt,millert
367 - Brought default sshd_config more in line with OpenBSD's
Damien Millerb9a692d1999-11-12 12:09:36 +1100368 - Grab server in gnome-ssh-askpass (Debian bug #49872)
369 - Released 1.2pre10
Damien Miller776af5d1999-11-12 08:49:09 +1100370
Damien Millerb5f89271999-11-12 14:35:58 +1100371 - Added INSTALL documentation
Damien Miller6d7b2cd1999-11-12 15:19:27 +1100372 - Merged yet more changes from OpenBSD CVS
373 - [auth-rh-rsa.c auth-rhosts.c auth-rsa.c channels.c clientloop.c]
374 [ssh.c ssh.h sshconnect.c sshd.c]
375 make all access to options via 'extern Options options'
376 and 'extern ServerOptions options' respectively;
377 options are no longer passed as arguments:
378 * make options handling more consistent
379 * remove #include "readconf.h" from ssh.h
380 * readconf.h is only included if necessary
381 - [mpaux.c] clear temp buffer
382 - [servconf.c] print _all_ bad options found in configfile
Damien Miller3d1b22c1999-11-12 15:46:08 +1100383 - Make ssh-askpass support optional through autoconf
Damien Miller9c8da3c1999-11-12 16:28:02 +1100384 - Fix nasty division-by-zero error in scp.c
385 - Released 1.2pre11
Damien Millerb5f89271999-11-12 14:35:58 +1100386
Damien Millerab18c411999-11-11 10:40:23 +110038719991111
388 - Added (untested) Entropy Gathering Daemon (EGD) support
Damien Miller4236f6e1999-11-12 12:22:31 +1100389 - Fixed /dev/urandom fd leak (Debian bug #49722)
Damien Miller33e511e1999-11-11 11:43:13 +1100390 - Merged OpenBSD CVS changes:
391 - [auth-rh-rsa.c] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
392 - [ssh.1] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
393 - [sshd.8] user/958: check ~/.ssh/known_hosts for rhosts-rsa, too
Damien Miller428f2471999-11-11 12:48:35 +1100394 - Fix integer overflow which was messing up scp's progress bar for large
395 file transfers. Fix submitted to OpenBSD developers.
Damien Miller5ce662a1999-11-11 17:57:39 +1100396 - Merged more OpenBSD CVS changes:
397 - [auth-krb4.c auth-passwd.c] remove x11- and krb-cleanup from fatal()
398 + krb-cleanup cleanup
399 - [clientloop.c log-client.c log-server.c ]
400 [readconf.c readconf.h servconf.c servconf.h ]
401 [ssh.1 ssh.c ssh.h sshd.8]
402 add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
403 obsoletes QuietMode and FascistLogging in sshd.
Damien Miller776af5d1999-11-12 08:49:09 +1100404 - [sshd.c] fix fatal/assert() bug reported by damien@ibs.com.au:
405 allow session_key_int != sizeof(session_key)
406 [this should fix the pre-assert-removal-core-files]
407 - Updated default config file to use new LogLevel option and to improve
408 readability
409
Damien Millerb77870f1999-11-10 12:48:08 +110041019991110
Damien Miller4236f6e1999-11-12 12:22:31 +1100411 - Merged several minor fixes:
Damien Millerb77870f1999-11-10 12:48:08 +1100412 - ssh-agent commandline parsing
413 - RPM spec file now installs ssh setuid root
414 - Makefile creates libdir
Damien Millerab18c411999-11-11 10:40:23 +1100415 - Merged beginnings of Solaris compability from Marc G. Fournier
416 <marc.fournier@acadiau.ca>
Damien Millerb77870f1999-11-10 12:48:08 +1100417
Damien Millerc7b38ce1999-11-09 10:28:04 +110041819991109
419 - Autodetection of SSL/Crypto library location via autoconf
420 - Fixed location of ssh-askpass to follow autoconf
421 - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
422 - Autodetection of RSAref library for US users
423 - Minor doc updates
Damien Millerda217a01999-11-09 10:35:52 +1100424 - Merged OpenBSD CVS changes:
425 - [rsa.c] bugfix: use correct size for memset()
426 - [sshconnect.c] warn if announced size of modulus 'n' != real size
Damien Miller742d2cb1999-11-09 14:28:26 +1100427 - Added GNOME passphrase requestor (use --with-gnome-askpass)
Damien Miller3f51bf51999-11-09 14:46:02 +1100428 - RPM build now creates subpackages
Damien Miller74389c91999-11-09 15:03:01 +1100429 - Released 1.2pre9
Damien Millerc7b38ce1999-11-09 10:28:04 +1100430
Damien Miller356a0b01999-11-08 15:30:59 +110043119991108
432 - Removed debian/ directory. This is now being maintained separately.
433 - Added symlinks for slogin in RPM spec file
434 - Fixed permissions on manpages in RPM spec file
435 - Added references to required libraries in README file
436 - Removed config.h.in from CVS
437 - Removed pwdb support (better pluggable auth is provided by glibc)
438 - Made PAM and requisite libdl optional
439 - Removed lots of unnecessary checks from autoconf
440 - Added support and autoconf test for openpty() function (Unix98 pty support)
441 - Fix for scp not finding ssh if not installed as /usr/bin/ssh
442 - Added TODO file
443 - Merged parts of Debian patch From Phil Hands <phil@hands.com>:
444 - Added ssh-askpass program
445 - Added ssh-askpass support to ssh-add.c
446 - Create symlinks for slogin on install
447 - Fix "distclean" target in makefile
448 - Added example for ssh-agent to manpage
449 - Added support for PAM_TEXT_INFO messages
450 - Disable internal /etc/nologin support if PAM enabled
451 - Merged latest OpenBSD CVS changes:
Damien Millerfd7c9111999-11-08 16:15:55 +1100452 - [all] replace assert() with error, fatal or packet_disconnect
Damien Miller356a0b01999-11-08 15:30:59 +1100453 - [sshd.c] don't send fail-msg but disconnect if too many authentication
454 failures
Damien Miller356a0b01999-11-08 15:30:59 +1100455 - [sshd.c] remove unused argument. ok dugsong
456 - [sshd.c] typo
457 - [rsa.c] clear buffers used for encryption. ok: niels
458 - [rsa.c] replace assert() with error, fatal or packet_disconnect
Damien Miller5ac5f1c1999-11-08 15:50:14 +1100459 - [auth-krb4.c] remove unused argument. ok dugsong
Damien Miller356a0b01999-11-08 15:30:59 +1100460 - Fixed coredump after merge of OpenBSD rsa.c patch
Damien Millere8d90681999-11-08 18:09:57 +1100461 - Released 1.2pre8
Damien Miller356a0b01999-11-08 15:30:59 +1100462
Damien Miller0aa8e531999-11-02 19:05:02 +110046319991102
464 - Merged change from OpenBSD CVS
465 - One-line cleanup in sshd.c
466
Damien Miller744da801999-10-30 09:12:25 +100046719991030
468 - Integrated debian package support from Dan Brosemer <odin@linuxfreak.com>
Damien Miller1e4772c1999-10-30 11:39:56 +1000469 - Merged latest updates for OpenBSD CVS:
470 - channels.[ch] - remove broken x11 fix and document istate/ostate
471 - ssh-agent.c - call setsid() regardless of argv[]
472 - ssh.c - save a few lines when disabling rhosts-{rsa-}auth
473 - Documentation cleanups
474 - Renamed README -> README.Ylonen
475 - Renamed README.openssh ->README
Damien Miller744da801999-10-30 09:12:25 +1000476
Damien Miller070f7a11999-10-29 10:29:29 +100047719991029
478 - Renamed openssh* back to ssh* at request of Theo de Raadt
479 - Incorporated latest changes from OpenBSD's CVS
480 - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk>
481 - Integrated PAM env patch from Nalin Dahyabhai <nalin.dahyabhai@pobox.com>
Damien Miller07a826d1999-10-29 11:49:20 +1000482 - Make distclean now removed configure script
483 - Improved PAM logging
484 - Added some debug() calls for PAM
Damien Miller65b3c131999-10-29 12:37:01 +1000485 - Removed redundant subdirectories
486 - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
487 building on Debian.
Damien Millerd0562b31999-10-29 13:09:40 +1000488 - Fixed off-by-one error in PAM env patch
489 - Released 1.2pre6
Damien Miller070f7a11999-10-29 10:29:29 +1000490
Damien Miller7f6ea021999-10-28 13:25:17 +100049119991028
492 - Further PAM enhancements.
493 - Much cleaner
494 - Now uses account and session modules for all logins.
495 - Integrated patch from Dan Brosemer <odin@linuxfreak.com>
496 - Build fixes
497 - Autoconf
498 - Change binary names to open*
499 - Fixed autoconf script to detect PAM on RH6.1
500 - Added tests for libpwdb, and OpenBSD functions to autoconf
Damien Millereff18d61999-10-28 14:14:38 +1000501 - Released 1.2pre4
Damien Miller29b5a591999-10-28 15:46:27 +1000502
503 - Imported latest OpenBSD CVS code
504 - Updated README.openssh
Damien Miller34d0b611999-10-28 17:51:40 +1000505 - Released 1.2pre5
Damien Miller29b5a591999-10-28 15:46:27 +1000506
Damien Miller7f6ea021999-10-28 13:25:17 +100050719991027
508 - Adapted PAM patch.
509 - Released 1.0pre2
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510
Damien Miller7f6ea021999-10-28 13:25:17 +1000511 - Excised my buggy replacements for strlcpy and mkdtemp
512 - Imported correct OpenBSD strlcpy and mkdtemp routines.
513 - Reduced arc4random_stir entropy read to 32 bytes (256 bits)
514 - Picked up correct version number from OpenBSD
515 - Added sshd.pam PAM configuration file
516 - Added sshd.init Redhat init script
517 - Added openssh.spec RPM spec file
518 - Released 1.2pre3
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Miller7f6ea021999-10-28 13:25:17 +100052019991026
521 - Fixed include paths of OpenSSL functions
522 - Use OpenSSL MD5 routines
523 - Imported RC4 code from nanocrypt
524 - Wrote replacements for OpenBSD arc4random* functions
525 - Wrote replacements for strlcpy and mkdtemp
526 - Released 1.0pre1