2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Jef Poskanzer and Craig Leres of the Lawrence Berkeley Laboratory.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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
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.7 2005/08/30 22:02:36 liamfoy Exp $
42 #include <sys/param.h>
59 static void done(int);
60 static void do_write(const char *, const char *, uid_t
, int *);
61 static void usage(void);
62 static int term_chk(const char *, int *, time_t *, int);
63 static void wr_fputs(unsigned char *s
);
64 static void search_utmp(const char *, char *, size_t, const char *, uid_t
);
65 static int utmp_chk(const char *, const char *);
68 main(int argc
, char **argv
)
73 int msgsok
, mymsgok
, myttyfd
;
74 char tty
[MAXPATHLEN
], *mytty
;
76 setlocale(LC_CTYPE
, "");
78 /* check that sender has write enabled */
79 if (isatty(fileno(stdin
)))
80 myttyfd
= fileno(stdin
);
81 else if (isatty(fileno(stdout
)))
82 myttyfd
= fileno(stdout
);
83 else if (isatty(fileno(stderr
)))
84 myttyfd
= fileno(stderr
);
86 errx(1, "can't find your tty");
87 if (!(mytty
= ttyname(myttyfd
)))
88 errx(1, "can't find your tty's name");
89 if ((cp
= strrchr(mytty
, '/')))
91 if (term_chk(mytty
, &mymsgok
, &atime
, 1))
94 warnx("you have write permission turned off (man mesg)");
101 search_utmp(argv
[1], tty
, sizeof tty
, mytty
, myuid
);
102 do_write(tty
, mytty
, myuid
, &mymsgok
);
105 if (!strncmp(argv
[2], _PATH_DEV
, strlen(_PATH_DEV
)))
106 argv
[2] += strlen(_PATH_DEV
);
107 if (utmp_chk(argv
[1], argv
[2]))
108 errx(1, "%s is not logged in on %s", argv
[1], argv
[2]);
109 if (term_chk(argv
[2], &msgsok
, &atime
, 1))
111 if (myuid
&& !msgsok
)
112 errx(1, "%s has messages disabled on %s", argv
[1], argv
[2]);
113 do_write(argv
[2], mytty
, myuid
, &mymsgok
);
125 fprintf(stderr
, "usage: write user [tty]\n");
130 * utmp_chk - checks that the given user is actually logged in on
134 utmp_chk(const char *user
, const char *tty
)
139 if ((ufd
= open(_PATH_UTMP
, O_RDONLY
)) < 0)
140 err(1, "open failed: %s\n", _PATH_UTMP
);
142 while (read(ufd
, (char *) &u
, sizeof(u
)) == sizeof(u
)) {
143 if (strncmp(user
, u
.ut_name
, sizeof(u
.ut_name
)) == 0 &&
144 strncmp(tty
, u
.ut_line
, sizeof(u
.ut_line
)) == 0) {
155 * search_utmp - search utmp for the "best" terminal to write to
157 * Ignores terminals with messages disabled, and of the rest, returns
158 * the one with the most recent access time. Returns as value the number
159 * of the user's terminals with messages enabled, or -1 if the user is
160 * not logged in at all.
162 * Special case for writing to yourself - ignore the terminal you're
163 * writing from, unless that's the only terminal with messages enabled.
166 search_utmp(const char *user
, char *tty
, size_t ttyl
, const char *mytty
, uid_t myuid
)
169 time_t bestatime
, atime
;
170 int ufd
, nloggedttys
, nttys
, msgsok
, user_is_me
;
171 char atty
[UT_LINESIZE
+ 1];
173 if ((ufd
= open(_PATH_UTMP
, O_RDONLY
)) < 0)
174 err(1, "open failed: %s", _PATH_UTMP
);
176 nloggedttys
= nttys
= 0;
179 while (read(ufd
, (char *) &u
, sizeof(u
)) == sizeof(u
))
180 if (strncmp(user
, u
.ut_name
, sizeof(u
.ut_name
)) == 0) {
182 strlcpy(atty
, u
.ut_line
, ttyl
);
183 if (term_chk(atty
, &msgsok
, &atime
, 0))
184 continue; /* bad term? skip */
185 if (myuid
&& !msgsok
)
186 continue; /* skip ttys with msgs off */
187 if (strcmp(atty
, mytty
) == 0) {
189 continue; /* don't write to yourself */
192 if (atime
> bestatime
) {
194 strlcpy(tty
, atty
, ttyl
);
199 if (nloggedttys
== 0)
200 errx(1, "%s is not logged in", user
);
202 if (user_is_me
) { /* ok, so write to yourself! */
203 strlcpy(tty
, mytty
, ttyl
);
206 errx(1, "%s has messages disabled", user
);
207 } else if (nttys
> 1) {
208 warnx("%s is logged in more than once; writing to %s", user
, tty
);
213 * term_chk - check that a terminal exists, and get the message bit
214 * and the access time
217 term_chk(const char *tty
, int *msgsokP
, time_t *atimeP
, int showerror
)
220 char path
[MAXPATHLEN
];
222 snprintf(path
, sizeof(path
), "%s%s", _PATH_DEV
, tty
);
223 if (stat(path
, &s
) < 0) {
228 *msgsokP
= (s
.st_mode
& S_IWGRP
) != 0; /* group write bit */
229 *atimeP
= s
.st_atime
;
234 * do_write - actually make the connection
237 do_write(const char *tty
, const char *mytty
, uid_t myuid
, int *mymsgok
)
243 char path
[MAXPATHLEN
], host
[MAXHOSTNAMELEN
], line
[512];
245 /* Determine our login name before we reopen() stdout */
246 if ((login
= getlogin()) == NULL
) {
247 if ((pwd
= getpwuid(myuid
)))
248 login
= pwd
->pw_name
;
253 snprintf(path
, sizeof(path
), "%s%s", _PATH_DEV
, tty
);
254 if ((freopen(path
, "w", stdout
)) == NULL
)
257 signal(SIGINT
, done
);
258 signal(SIGHUP
, done
);
261 if (gethostname(host
, sizeof(host
)) < 0)
262 strlcpy(host
, "???", sizeof host
);
263 now
= time((time_t *)NULL
);
266 printf("\r\n\007\007\007Message from %s@%s on %s at %s (%s %s replies)...\r\n",
267 login
, host
, mytty
, nows
+ 11, login
, *mymsgok
== 0 ? "does not accept" : "accepts");
269 while (fgets(line
, sizeof(line
), stdin
) != NULL
)
274 * done - cleanup and exit
284 * wr_fputs - like fputs(), but makes control characters visible and
288 wr_fputs(unsigned char *s
)
291 #define PUTC(c) if (putchar(c) == EOF) err(1, NULL);
293 for (; *s
!= '\0'; ++s
) {
296 } else if (((*s
& 0x80) && *s
< 0xA0) ||
297 /* disable upper controls */
298 (!isprint(*s
) && !isspace(*s
) &&
299 *s
!= '\a' && *s
!= '\b')