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