write.c revision 1.18 1 1.18 mjl /* $NetBSD: write.c,v 1.18 2001/01/03 13:14:26 mjl Exp $ */
2 1.5 jtc
3 1.1 cgd /*
4 1.3 mycroft * Copyright (c) 1989, 1993
5 1.3 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Jef Poskanzer and Craig Leres of the Lawrence Berkeley Laboratory.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.9 mrg #include <sys/cdefs.h>
40 1.1 cgd #ifndef lint
41 1.9 mrg __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
42 1.9 mrg The Regents of the University of California. All rights reserved.\n");
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.1 cgd #ifndef lint
46 1.5 jtc #if 0
47 1.5 jtc static char sccsid[] = "@(#)write.c 8.2 (Berkeley) 4/27/95";
48 1.9 mrg #else
49 1.18 mjl __RCSID("$NetBSD: write.c,v 1.18 2001/01/03 13:14:26 mjl Exp $");
50 1.5 jtc #endif
51 1.1 cgd #endif /* not lint */
52 1.1 cgd
53 1.4 jtc #include <sys/types.h>
54 1.1 cgd #include <sys/param.h>
55 1.1 cgd #include <sys/stat.h>
56 1.1 cgd #include <ctype.h>
57 1.1 cgd #include <stdio.h>
58 1.17 matt #include <stdlib.h>
59 1.1 cgd #include <string.h>
60 1.4 jtc #include <signal.h>
61 1.4 jtc #include <time.h>
62 1.4 jtc #include <fcntl.h>
63 1.18 mjl #include <paths.h>
64 1.4 jtc #include <pwd.h>
65 1.4 jtc #include <unistd.h>
66 1.4 jtc #include <utmp.h>
67 1.4 jtc #include <err.h>
68 1.1 cgd
69 1.9 mrg void done __P((int));
70 1.4 jtc void do_write __P((char *, char *, uid_t));
71 1.4 jtc void wr_fputs __P((char *));
72 1.8 mrg void search_utmp __P((char *, char *, char *, uid_t, int));
73 1.4 jtc int term_chk __P((char *, int *, time_t *, int));
74 1.4 jtc int utmp_chk __P((char *, char *));
75 1.9 mrg int main __P((int, char **));
76 1.1 cgd
77 1.4 jtc int
78 1.1 cgd main(argc, argv)
79 1.1 cgd int argc;
80 1.1 cgd char **argv;
81 1.1 cgd {
82 1.10 lukem char *cp;
83 1.1 cgd time_t atime;
84 1.1 cgd uid_t myuid;
85 1.1 cgd int msgsok, myttyfd;
86 1.4 jtc char tty[MAXPATHLEN], *mytty;
87 1.1 cgd
88 1.1 cgd /* check that sender has write enabled */
89 1.1 cgd if (isatty(fileno(stdin)))
90 1.1 cgd myttyfd = fileno(stdin);
91 1.1 cgd else if (isatty(fileno(stdout)))
92 1.1 cgd myttyfd = fileno(stdout);
93 1.1 cgd else if (isatty(fileno(stderr)))
94 1.1 cgd myttyfd = fileno(stderr);
95 1.3 mycroft else
96 1.3 mycroft errx(1, "can't find your tty");
97 1.3 mycroft if (!(mytty = ttyname(myttyfd)))
98 1.3 mycroft errx(1, "can't find your tty's name");
99 1.9 mrg if ((cp = strrchr(mytty, '/')) != NULL)
100 1.1 cgd mytty = cp + 1;
101 1.1 cgd if (term_chk(mytty, &msgsok, &atime, 1))
102 1.1 cgd exit(1);
103 1.6 perry if (!msgsok) {
104 1.6 perry (void)fprintf(stderr,
105 1.6 perry "warning: you have write permission turned off; "
106 1.6 perry "no reply possible\n");
107 1.6 perry }
108 1.1 cgd
109 1.1 cgd myuid = getuid();
110 1.1 cgd
111 1.1 cgd /* check args */
112 1.1 cgd switch (argc) {
113 1.1 cgd case 2:
114 1.8 mrg search_utmp(argv[1], tty, mytty, myuid, sizeof tty);
115 1.1 cgd do_write(tty, mytty, myuid);
116 1.1 cgd break;
117 1.1 cgd case 3:
118 1.18 mjl if (!strncmp(argv[2], _PATH_DEV, strlen(_PATH_DEV)))
119 1.18 mjl argv[2] += strlen(_PATH_DEV);
120 1.3 mycroft if (utmp_chk(argv[1], argv[2]))
121 1.3 mycroft errx(1, "%s is not logged in on %s",
122 1.1 cgd argv[1], argv[2]);
123 1.1 cgd if (term_chk(argv[2], &msgsok, &atime, 1))
124 1.1 cgd exit(1);
125 1.3 mycroft if (myuid && !msgsok)
126 1.3 mycroft errx(1, "%s has messages disabled on %s",
127 1.1 cgd argv[1], argv[2]);
128 1.1 cgd do_write(argv[2], mytty, myuid);
129 1.1 cgd break;
130 1.1 cgd default:
131 1.1 cgd (void)fprintf(stderr, "usage: write user [tty]\n");
132 1.1 cgd exit(1);
133 1.1 cgd }
134 1.9 mrg done(0);
135 1.1 cgd /* NOTREACHED */
136 1.9 mrg #ifdef __GNUC__
137 1.9 mrg return (0);
138 1.9 mrg #endif
139 1.1 cgd }
140 1.1 cgd
141 1.1 cgd /*
142 1.1 cgd * utmp_chk - checks that the given user is actually logged in on
143 1.1 cgd * the given tty
144 1.1 cgd */
145 1.4 jtc int
146 1.1 cgd utmp_chk(user, tty)
147 1.1 cgd char *user, *tty;
148 1.1 cgd {
149 1.1 cgd struct utmp u;
150 1.1 cgd int ufd;
151 1.1 cgd
152 1.1 cgd if ((ufd = open(_PATH_UTMP, O_RDONLY)) < 0)
153 1.1 cgd return(0); /* ignore error, shouldn't happen anyway */
154 1.1 cgd
155 1.1 cgd while (read(ufd, (char *) &u, sizeof(u)) == sizeof(u))
156 1.1 cgd if (strncmp(user, u.ut_name, sizeof(u.ut_name)) == 0 &&
157 1.1 cgd strncmp(tty, u.ut_line, sizeof(u.ut_line)) == 0) {
158 1.1 cgd (void)close(ufd);
159 1.1 cgd return(0);
160 1.1 cgd }
161 1.1 cgd
162 1.1 cgd (void)close(ufd);
163 1.1 cgd return(1);
164 1.1 cgd }
165 1.1 cgd
166 1.1 cgd /*
167 1.1 cgd * search_utmp - search utmp for the "best" terminal to write to
168 1.1 cgd *
169 1.1 cgd * Ignores terminals with messages disabled, and of the rest, returns
170 1.1 cgd * the one with the most recent access time. Returns as value the number
171 1.1 cgd * of the user's terminals with messages enabled, or -1 if the user is
172 1.1 cgd * not logged in at all.
173 1.1 cgd *
174 1.1 cgd * Special case for writing to yourself - ignore the terminal you're
175 1.1 cgd * writing from, unless that's the only terminal with messages enabled.
176 1.1 cgd */
177 1.4 jtc void
178 1.8 mrg search_utmp(user, tty, mytty, myuid, ttylen)
179 1.1 cgd char *user, *tty, *mytty;
180 1.1 cgd uid_t myuid;
181 1.8 mrg int ttylen;
182 1.1 cgd {
183 1.1 cgd struct utmp u;
184 1.1 cgd time_t bestatime, atime;
185 1.1 cgd int ufd, nloggedttys, nttys, msgsok, user_is_me;
186 1.1 cgd char atty[UT_LINESIZE + 1];
187 1.1 cgd
188 1.3 mycroft if ((ufd = open(_PATH_UTMP, O_RDONLY)) < 0)
189 1.3 mycroft err(1, "%s", _PATH_UTMP);
190 1.1 cgd
191 1.1 cgd nloggedttys = nttys = 0;
192 1.1 cgd bestatime = 0;
193 1.1 cgd user_is_me = 0;
194 1.1 cgd while (read(ufd, (char *) &u, sizeof(u)) == sizeof(u))
195 1.1 cgd if (strncmp(user, u.ut_name, sizeof(u.ut_name)) == 0) {
196 1.1 cgd ++nloggedttys;
197 1.1 cgd (void)strncpy(atty, u.ut_line, UT_LINESIZE);
198 1.1 cgd atty[UT_LINESIZE] = '\0';
199 1.1 cgd if (term_chk(atty, &msgsok, &atime, 0))
200 1.1 cgd continue; /* bad term? skip */
201 1.1 cgd if (myuid && !msgsok)
202 1.1 cgd continue; /* skip ttys with msgs off */
203 1.1 cgd if (strcmp(atty, mytty) == 0) {
204 1.1 cgd user_is_me = 1;
205 1.1 cgd continue; /* don't write to yourself */
206 1.1 cgd }
207 1.1 cgd ++nttys;
208 1.1 cgd if (atime > bestatime) {
209 1.1 cgd bestatime = atime;
210 1.8 mrg (void)strncpy(tty, atty, ttylen - 1);
211 1.12 mrg tty[ttylen - 1] = '\0';
212 1.1 cgd }
213 1.1 cgd }
214 1.1 cgd
215 1.1 cgd (void)close(ufd);
216 1.3 mycroft if (nloggedttys == 0)
217 1.3 mycroft errx(1, "%s is not logged in", user);
218 1.1 cgd if (nttys == 0) {
219 1.1 cgd if (user_is_me) { /* ok, so write to yourself! */
220 1.8 mrg (void)strncpy(tty, mytty, ttylen - 1);
221 1.12 mrg tty[ttylen - 1] = '\0';
222 1.1 cgd return;
223 1.1 cgd }
224 1.3 mycroft errx(1, "%s has messages disabled", user);
225 1.3 mycroft } else if (nttys > 1)
226 1.3 mycroft warnx("%s is logged in more than once; writing to %s",
227 1.1 cgd user, tty);
228 1.1 cgd }
229 1.1 cgd
230 1.1 cgd /*
231 1.1 cgd * term_chk - check that a terminal exists, and get the message bit
232 1.1 cgd * and the access time
233 1.1 cgd */
234 1.4 jtc int
235 1.1 cgd term_chk(tty, msgsokP, atimeP, showerror)
236 1.1 cgd char *tty;
237 1.1 cgd int *msgsokP, showerror;
238 1.1 cgd time_t *atimeP;
239 1.1 cgd {
240 1.1 cgd struct stat s;
241 1.1 cgd char path[MAXPATHLEN];
242 1.1 cgd
243 1.18 mjl (void)snprintf(path, sizeof path, _PATH_DEV "%s", tty);
244 1.1 cgd if (stat(path, &s) < 0) {
245 1.1 cgd if (showerror)
246 1.3 mycroft warn("%s", path);
247 1.1 cgd return(1);
248 1.1 cgd }
249 1.12 mrg *msgsokP = (s.st_mode & S_IWGRP) != 0; /* group write bit */
250 1.1 cgd *atimeP = s.st_atime;
251 1.1 cgd return(0);
252 1.1 cgd }
253 1.1 cgd
254 1.1 cgd /*
255 1.1 cgd * do_write - actually make the connection
256 1.1 cgd */
257 1.4 jtc void
258 1.1 cgd do_write(tty, mytty, myuid)
259 1.1 cgd char *tty, *mytty;
260 1.1 cgd uid_t myuid;
261 1.1 cgd {
262 1.13 mycroft const char *login;
263 1.13 mycroft char *nows;
264 1.10 lukem struct passwd *pwd;
265 1.4 jtc time_t now;
266 1.11 mrg char path[MAXPATHLEN], host[MAXHOSTNAMELEN + 1], line[512];
267 1.1 cgd
268 1.1 cgd /* Determine our login name before the we reopen() stdout */
269 1.14 ross if ((login = getlogin()) == NULL) {
270 1.9 mrg if ((pwd = getpwuid(myuid)) != NULL)
271 1.1 cgd login = pwd->pw_name;
272 1.14 ross else login = "???";
273 1.14 ross }
274 1.18 mjl (void)snprintf(path, sizeof path, _PATH_DEV "%s", tty);
275 1.3 mycroft if ((freopen(path, "w", stdout)) == NULL)
276 1.3 mycroft err(1, "%s", path);
277 1.1 cgd
278 1.1 cgd (void)signal(SIGINT, done);
279 1.1 cgd (void)signal(SIGHUP, done);
280 1.1 cgd
281 1.1 cgd /* print greeting */
282 1.1 cgd if (gethostname(host, sizeof(host)) < 0)
283 1.8 mrg (void)strncpy(host, "???", sizeof(host) - 1);
284 1.12 mrg else
285 1.12 mrg host[sizeof(host) - 1] = '\0';
286 1.1 cgd now = time((time_t *)NULL);
287 1.1 cgd nows = ctime(&now);
288 1.1 cgd nows[16] = '\0';
289 1.1 cgd (void)printf("\r\n\007\007\007Message from %s@%s on %s at %s ...\r\n",
290 1.1 cgd login, host, mytty, nows + 11);
291 1.1 cgd
292 1.1 cgd while (fgets(line, sizeof(line), stdin) != NULL)
293 1.1 cgd wr_fputs(line);
294 1.1 cgd }
295 1.1 cgd
296 1.1 cgd /*
297 1.1 cgd * done - cleanup and exit
298 1.1 cgd */
299 1.1 cgd void
300 1.9 mrg done(dummy)
301 1.9 mrg int dummy;
302 1.1 cgd {
303 1.12 mrg
304 1.1 cgd (void)printf("EOF\r\n");
305 1.1 cgd exit(0);
306 1.1 cgd }
307 1.1 cgd
308 1.1 cgd /*
309 1.1 cgd * wr_fputs - like fputs(), but makes control characters visible and
310 1.1 cgd * turns \n into \r\n
311 1.1 cgd */
312 1.4 jtc void
313 1.1 cgd wr_fputs(s)
314 1.10 lukem char *s;
315 1.1 cgd {
316 1.10 lukem char c;
317 1.1 cgd
318 1.1 cgd #define PUTC(c) if (putchar(c) == EOF) goto err;
319 1.1 cgd
320 1.1 cgd for (; *s != '\0'; ++s) {
321 1.1 cgd c = toascii(*s);
322 1.1 cgd if (c == '\n') {
323 1.1 cgd PUTC('\r');
324 1.1 cgd PUTC('\n');
325 1.15 christos } else if (!isprint((unsigned char)c) &&
326 1.15 christos !isspace((unsigned char)c) && c != '\007') {
327 1.1 cgd PUTC('^');
328 1.1 cgd PUTC(c^0x40); /* DEL to ?, others to alpha */
329 1.1 cgd } else
330 1.1 cgd PUTC(c);
331 1.1 cgd }
332 1.1 cgd return;
333 1.1 cgd
334 1.16 drochner err: err(1, NULL);
335 1.1 cgd #undef PUTC
336 1.1 cgd }
337