blob: 84572c9011e28aa0592e3053f50f7d13ed57f849 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Allocating a pseudo-terminal, and making it the controlling tty.
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Millere4340be2000-09-16 13:29:08 +11007 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Ben Lindstromc88785e2001-08-06 20:47:23 +000015RCSID("$OpenBSD: sshpty.c,v 1.3 2001/07/22 21:32:27 markus Exp $");
Damien Miller95def091999-11-25 00:26:21 +110016
Damien Miller36b339a1999-12-14 10:54:47 +110017#ifdef HAVE_UTIL_H
18# include <util.h>
19#endif /* HAVE_UTIL_H */
20
Ben Lindstromd95c09c2001-02-18 19:13:33 +000021#include "sshpty.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000022#include "log.h"
Kevin Steves974fb9c2001-06-15 00:04:23 +000023#include "misc.h"
Damien Miller356a0b01999-11-08 15:30:59 +110024
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
26#if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
27#undef HAVE_DEV_PTMX
28#endif
29
Damien Millerfce16481999-12-08 08:53:52 +110030#ifdef HAVE_PTY_H
31# include <pty.h>
32#endif
33#if defined(HAVE_DEV_PTMX) && defined(HAVE_SYS_STROPTS_H)
34# include <sys/stropts.h>
35#endif
36
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037#ifndef O_NOCTTY
38#define O_NOCTTY 0
39#endif
40
Damien Miller5428f641999-11-25 11:54:57 +110041/*
42 * Allocates and opens a pty. Returns 0 if no pty could be allocated, or
43 * nonzero if a pty was successfully allocated. On success, open file
44 * descriptors for the pty and tty sides and the name of the tty side are
45 * returned (the buffer must be able to hold at least 64 characters).
46 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller4af51302000-04-16 11:18:38 +100048int
Damien Miller037a0dc1999-12-07 15:38:31 +110049pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050{
Damien Miller037a0dc1999-12-07 15:38:31 +110051#if defined(HAVE_OPENPTY) || defined(BSD4_4)
Damien Miller95def091999-11-25 00:26:21 +110052 /* openpty(3) exists in OSF/1 and some other os'es */
Damien Miller99e92432001-02-18 12:49:35 +110053 char *name;
Damien Miller95def091999-11-25 00:26:21 +110054 int i;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055
Damien Miller99e92432001-02-18 12:49:35 +110056 i = openpty(ptyfd, ttyfd, NULL, NULL, NULL);
Damien Miller95def091999-11-25 00:26:21 +110057 if (i < 0) {
58 error("openpty: %.100s", strerror(errno));
59 return 0;
60 }
Damien Miller99e92432001-02-18 12:49:35 +110061 name = ttyname(*ttyfd);
62 if (!name)
63 fatal("openpty returns device for which ttyname fails.");
64
65 strlcpy(namebuf, name, namebuflen); /* possible truncation */
Damien Miller95def091999-11-25 00:26:21 +110066 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#else /* HAVE_OPENPTY */
68#ifdef HAVE__GETPTY
Damien Miller5428f641999-11-25 11:54:57 +110069 /*
70 * _getpty(3) exists in SGI Irix 4.x, 5.x & 6.x -- it generates more
71 * pty's automagically when needed
72 */
Damien Miller95def091999-11-25 00:26:21 +110073 char *slave;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller95def091999-11-25 00:26:21 +110075 slave = _getpty(ptyfd, O_RDWR, 0622, 0);
76 if (slave == NULL) {
77 error("_getpty: %.100s", strerror(errno));
78 return 0;
79 }
Damien Miller037a0dc1999-12-07 15:38:31 +110080 strlcpy(namebuf, slave, namebuflen);
Damien Miller95def091999-11-25 00:26:21 +110081 /* Open the slave side. */
82 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
83 if (*ttyfd < 0) {
84 error("%.200s: %.100s", namebuf, strerror(errno));
85 close(*ptyfd);
86 return 0;
87 }
88 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089#else /* HAVE__GETPTY */
Damien Miller76112de1999-12-21 11:18:08 +110090#if defined(HAVE_DEV_PTMX)
Damien Miller5428f641999-11-25 11:54:57 +110091 /*
92 * This code is used e.g. on Solaris 2.x. (Note that Solaris 2.3
93 * also has bsd-style ptys, but they simply do not work.)
94 */
Damien Miller95def091999-11-25 00:26:21 +110095 int ptm;
96 char *pts;
Kevin Steves974fb9c2001-06-15 00:04:23 +000097 mysig_t old_signal;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller95def091999-11-25 00:26:21 +110099 ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY);
100 if (ptm < 0) {
101 error("/dev/ptmx: %.100s", strerror(errno));
102 return 0;
103 }
Kevin Steves974fb9c2001-06-15 00:04:23 +0000104 old_signal = mysignal(SIGCHLD, SIG_DFL);
Damien Miller95def091999-11-25 00:26:21 +1100105 if (grantpt(ptm) < 0) {
106 error("grantpt: %.100s", strerror(errno));
107 return 0;
108 }
Kevin Steves974fb9c2001-06-15 00:04:23 +0000109 mysignal(SIGCHLD, old_signal);
Damien Miller95def091999-11-25 00:26:21 +1100110 if (unlockpt(ptm) < 0) {
111 error("unlockpt: %.100s", strerror(errno));
112 return 0;
113 }
114 pts = ptsname(ptm);
115 if (pts == NULL)
116 error("Slave pty side name could not be obtained.");
Damien Miller037a0dc1999-12-07 15:38:31 +1100117 strlcpy(namebuf, pts, namebuflen);
Damien Miller95def091999-11-25 00:26:21 +1100118 *ptyfd = ptm;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119
Damien Miller95def091999-11-25 00:26:21 +1100120 /* Open the slave side. */
121 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
122 if (*ttyfd < 0) {
123 error("%.100s: %.100s", namebuf, strerror(errno));
124 close(*ptyfd);
125 return 0;
126 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100127#ifndef HAVE_CYGWIN
Kevin Steves85b3db62000-11-05 15:31:36 +0000128 /*
129 * Push the appropriate streams modules, as described in Solaris pts(7).
130 * HP-UX pts(7) doesn't have ttcompat module.
131 */
Damien Miller95def091999-11-25 00:26:21 +1100132 if (ioctl(*ttyfd, I_PUSH, "ptem") < 0)
133 error("ioctl I_PUSH ptem: %.100s", strerror(errno));
134 if (ioctl(*ttyfd, I_PUSH, "ldterm") < 0)
135 error("ioctl I_PUSH ldterm: %.100s", strerror(errno));
Kevin Steves85b3db62000-11-05 15:31:36 +0000136#ifndef __hpux
Damien Miller95def091999-11-25 00:26:21 +1100137 if (ioctl(*ttyfd, I_PUSH, "ttcompat") < 0)
138 error("ioctl I_PUSH ttcompat: %.100s", strerror(errno));
Damien Millere37ac5a2000-03-17 23:58:59 +1100139#endif
Damien Millerbac2d8a2000-09-05 16:13:06 +1100140#endif
Damien Miller95def091999-11-25 00:26:21 +1100141 return 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142#else /* HAVE_DEV_PTMX */
143#ifdef HAVE_DEV_PTS_AND_PTC
Damien Miller95def091999-11-25 00:26:21 +1100144 /* AIX-style pty code. */
145 const char *name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146
Damien Miller95def091999-11-25 00:26:21 +1100147 *ptyfd = open("/dev/ptc", O_RDWR | O_NOCTTY);
148 if (*ptyfd < 0) {
149 error("Could not open /dev/ptc: %.100s", strerror(errno));
150 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151 }
Damien Miller95def091999-11-25 00:26:21 +1100152 name = ttyname(*ptyfd);
153 if (!name)
154 fatal("Open of /dev/ptc returns device for which ttyname fails.");
Damien Miller037a0dc1999-12-07 15:38:31 +1100155 strlcpy(namebuf, name, namebuflen);
Damien Miller95def091999-11-25 00:26:21 +1100156 *ttyfd = open(name, O_RDWR | O_NOCTTY);
157 if (*ttyfd < 0) {
158 error("Could not open pty slave side %.100s: %.100s",
159 name, strerror(errno));
160 close(*ptyfd);
161 return 0;
162 }
163 return 1;
164#else /* HAVE_DEV_PTS_AND_PTC */
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000165#ifdef _CRAY
166 char buf[64];
167 int i;
168 int highpty;
169
170#ifdef _SC_CRAY_NPTY
171 highpty = sysconf(_SC_CRAY_NPTY);
172 if (highpty == -1)
173 highpty = 128;
174#else
175 highpty = 128;
176#endif
177
178 for (i = 0; i < highpty; i++) {
179 snprintf(buf, sizeof(buf), "/dev/pty/%03d", i);
180 *ptyfd = open(buf, O_RDWR|O_NOCTTY);
181 if (*ptyfd < 0) continue;
182 snprintf(namebuf, namebuflen, "/dev/ttyp%03d", i);
183 /* Open the slave side. */
184 *ttyfd = open(namebuf, O_RDWR|O_NOCTTY);
185 if (*ttyfd < 0) {
186 error("%.100s: %.100s", namebuf, strerror(errno));
187 close(*ptyfd);
188 }
189 return 1;
190 }
191 return 0;
192#else
Damien Miller95def091999-11-25 00:26:21 +1100193 /* BSD-style pty code. */
194 char buf[64];
195 int i;
Damien Miller5428f641999-11-25 11:54:57 +1100196 const char *ptymajors = "pqrstuvwxyzabcdefghijklmnoABCDEFGHIJKLMNOPQRSTUVWXYZ";
Damien Miller95def091999-11-25 00:26:21 +1100197 const char *ptyminors = "0123456789abcdef";
198 int num_minors = strlen(ptyminors);
199 int num_ptys = strlen(ptymajors) * num_minors;
200
201 for (i = 0; i < num_ptys; i++) {
202 snprintf(buf, sizeof buf, "/dev/pty%c%c", ptymajors[i / num_minors],
203 ptyminors[i % num_minors]);
Damien Millera34a28b1999-12-14 10:47:15 +1100204 snprintf(namebuf, namebuflen, "/dev/tty%c%c",
Damien Miller037a0dc1999-12-07 15:38:31 +1100205 ptymajors[i / num_minors], ptyminors[i % num_minors]);
Damien Miller95def091999-11-25 00:26:21 +1100206
Damien Miller6d8c11f2000-08-29 11:52:38 +1100207 *ptyfd = open(buf, O_RDWR | O_NOCTTY);
208 if (*ptyfd < 0) {
209 /* Try SCO style naming */
210 snprintf(buf, sizeof buf, "/dev/ptyp%d", i);
211 snprintf(namebuf, namebuflen, "/dev/ttyp%d", i);
212 *ptyfd = open(buf, O_RDWR | O_NOCTTY);
213 if (*ptyfd < 0)
214 continue;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000215 }
216
Damien Miller95def091999-11-25 00:26:21 +1100217 /* Open the slave side. */
218 *ttyfd = open(namebuf, O_RDWR | O_NOCTTY);
219 if (*ttyfd < 0) {
220 error("%.100s: %.100s", namebuf, strerror(errno));
221 close(*ptyfd);
222 return 0;
223 }
224 return 1;
225 }
226 return 0;
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000227#endif /* CRAY */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228#endif /* HAVE_DEV_PTS_AND_PTC */
229#endif /* HAVE_DEV_PTMX */
230#endif /* HAVE__GETPTY */
231#endif /* HAVE_OPENPTY */
232}
233
Damien Miller95def091999-11-25 00:26:21 +1100234/* Releases the tty. Its ownership is returned to root, and permissions to 0666. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000235
Damien Miller4af51302000-04-16 11:18:38 +1000236void
Damien Miller95def091999-11-25 00:26:21 +1100237pty_release(const char *ttyname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238{
Damien Miller204ad072000-03-02 23:56:12 +1100239 if (chown(ttyname, (uid_t) 0, (gid_t) 0) < 0)
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100240 error("chown %.100s 0 0 failed: %.100s", ttyname, strerror(errno));
Damien Miller204ad072000-03-02 23:56:12 +1100241 if (chmod(ttyname, (mode_t) 0666) < 0)
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100242 error("chmod %.100s 0666 failed: %.100s", ttyname, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243}
244
245/* Makes the tty the processes controlling tty and sets it to sane modes. */
246
Damien Miller4af51302000-04-16 11:18:38 +1000247void
Damien Miller95def091999-11-25 00:26:21 +1100248pty_make_controlling_tty(int *ttyfd, const char *ttyname)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249{
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000250#ifdef _CRAY
251 int fd;
252
253 if (setsid() < 0)
254 error("setsid: %.100s", strerror(errno));
255
256 fd = open(ttyname, O_RDWR|O_NOCTTY);
257 if (fd >= 0) {
258 signal(SIGHUP, SIG_IGN);
259 ioctl(fd, TCVHUP, (char *)0);
260 signal(SIGHUP, SIG_DFL);
261 setpgid(0,0);
262 close(fd);
263 } else {
264 error("Failed to disconnect from controlling tty.");
265 }
266
267
268 debug("Setting controlling tty using TCSETCTTY.\n");
269 ioctl(*ttyfd, TCSETCTTY, NULL);
270
271 fd = open("/dev/tty", O_RDWR);
272
273 if (fd < 0)
274 error("%.100s: %.100s", ttyname, strerror(errno));
275
276 close(*ttyfd);
277 *ttyfd = fd;
278#else
Damien Miller95def091999-11-25 00:26:21 +1100279 int fd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100280#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000281 void *old;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100282#endif /* USE_VHANGUP */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Damien Miller95def091999-11-25 00:26:21 +1100284 /* First disconnect from the old controlling tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285#ifdef TIOCNOTTY
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000286 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100287 if (fd >= 0) {
288 (void) ioctl(fd, TIOCNOTTY, NULL);
289 close(fd);
290 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291#endif /* TIOCNOTTY */
Damien Miller95def091999-11-25 00:26:21 +1100292 if (setsid() < 0)
293 error("setsid: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294
Damien Miller5428f641999-11-25 11:54:57 +1100295 /*
296 * Verify that we are successfully disconnected from the controlling
297 * tty.
298 */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000299 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
Damien Miller95def091999-11-25 00:26:21 +1100300 if (fd >= 0) {
301 error("Failed to disconnect from controlling tty.");
302 close(fd);
303 }
304 /* Make it our controlling tty. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305#ifdef TIOCSCTTY
Damien Miller95def091999-11-25 00:26:21 +1100306 debug("Setting controlling tty using TIOCSCTTY.");
Kevin Steves6c0d6272000-11-12 09:22:29 +0000307 if (ioctl(*ttyfd, TIOCSCTTY, NULL) < 0)
308 error("ioctl(TIOCSCTTY): %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309#endif /* TIOCSCTTY */
Ben Lindstromb5628642000-10-18 00:02:25 +0000310#ifdef HAVE_NEWS4
311 if (setpgrp(0,0) < 0)
312 error("SETPGRP %s",strerror(errno));
313#endif /* HAVE_NEWS4 */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100314#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000315 old = signal(SIGHUP, SIG_IGN);
316 vhangup();
317 signal(SIGHUP, old);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100318#endif /* USE_VHANGUP */
Damien Miller95def091999-11-25 00:26:21 +1100319 fd = open(ttyname, O_RDWR);
Damien Millerd0cff3e2000-04-20 23:12:58 +1000320 if (fd < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100321 error("%.100s: %.100s", ttyname, strerror(errno));
Damien Millerd0cff3e2000-04-20 23:12:58 +1000322 } else {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100323#ifdef USE_VHANGUP
Damien Millerd0cff3e2000-04-20 23:12:58 +1000324 close(*ttyfd);
325 *ttyfd = fd;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100326#else /* USE_VHANGUP */
Damien Miller95def091999-11-25 00:26:21 +1100327 close(fd);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100328#endif /* USE_VHANGUP */
Damien Millerd0cff3e2000-04-20 23:12:58 +1000329 }
Damien Miller95def091999-11-25 00:26:21 +1100330 /* Verify that we now have a controlling tty. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000331 fd = open(_PATH_TTY, O_WRONLY);
Damien Miller95def091999-11-25 00:26:21 +1100332 if (fd < 0)
333 error("open /dev/tty failed - could not set controlling tty: %.100s",
334 strerror(errno));
335 else {
336 close(fd);
337 }
Ben Lindstrom6db66ff2001-08-06 23:29:16 +0000338#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339}
340
341/* Changes the window size associated with the pty. */
342
Damien Miller4af51302000-04-16 11:18:38 +1000343void
Damien Miller95def091999-11-25 00:26:21 +1100344pty_change_window_size(int ptyfd, int row, int col,
345 int xpixel, int ypixel)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000346{
Damien Miller95def091999-11-25 00:26:21 +1100347 struct winsize w;
348 w.ws_row = row;
349 w.ws_col = col;
350 w.ws_xpixel = xpixel;
351 w.ws_ypixel = ypixel;
352 (void) ioctl(ptyfd, TIOCSWINSZ, &w);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000353}
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100354
355void
356pty_setowner(struct passwd *pw, const char *ttyname)
357{
358 struct group *grp;
359 gid_t gid;
360 mode_t mode;
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000361 struct stat st;
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100362
363 /* Determine the group to make the owner of the tty. */
364 grp = getgrnam("tty");
365 if (grp) {
366 gid = grp->gr_gid;
367 mode = S_IRUSR | S_IWUSR | S_IWGRP;
368 } else {
369 gid = pw->pw_gid;
370 mode = S_IRUSR | S_IWUSR | S_IWGRP | S_IWOTH;
371 }
372
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000373 /*
374 * Change owner and mode of the tty as required.
Ben Lindstromc88785e2001-08-06 20:47:23 +0000375 * Warn but continue if filesystem is read-only and the uids match/
376 * tty is owned by root.
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000377 */
378 if (stat(ttyname, &st))
379 fatal("stat(%.100s) failed: %.100s", ttyname,
380 strerror(errno));
381
382 if (st.st_uid != pw->pw_uid || st.st_gid != gid) {
383 if (chown(ttyname, pw->pw_uid, gid) < 0) {
Ben Lindstromd01ba982001-07-22 20:36:57 +0000384 if (errno == EROFS &&
385 (st.st_uid == pw->pw_uid || st.st_uid == 0))
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000386 error("chown(%.100s, %d, %d) failed: %.100s",
Kevin Stevesef4eea92001-02-05 12:42:17 +0000387 ttyname, pw->pw_uid, gid,
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000388 strerror(errno));
389 else
390 fatal("chown(%.100s, %d, %d) failed: %.100s",
Kevin Stevesef4eea92001-02-05 12:42:17 +0000391 ttyname, pw->pw_uid, gid,
Kevin Stevesfa72dda2000-12-15 18:39:12 +0000392 strerror(errno));
393 }
394 }
395
396 if ((st.st_mode & (S_IRWXU|S_IRWXG|S_IRWXO)) != mode) {
397 if (chmod(ttyname, mode) < 0) {
398 if (errno == EROFS &&
399 (st.st_mode & (S_IRGRP | S_IROTH)) == 0)
400 error("chmod(%.100s, 0%o) failed: %.100s",
401 ttyname, mode, strerror(errno));
402 else
403 fatal("chmod(%.100s, 0%o) failed: %.100s",
404 ttyname, mode, strerror(errno));
405 }
406 }
Damien Millerc7d8dbb2000-03-02 23:30:53 +1100407}