NetBSD/usr.bin/write/write.c

324 lines
8.5 KiB
C
Raw Normal View History

2001-01-03 16:25:11 +03:00
/* $NetBSD: write.c,v 1.19 2001/01/03 13:25:11 mjl Exp $ */
1995-09-01 01:48:32 +04:00
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* This code is derived from software contributed to Berkeley by
* Jef Poskanzer and Craig Leres of the Lawrence Berkeley Laboratory.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-10-19 18:35:28 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1997-10-19 18:35:28 +04:00
__COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
1995-09-01 01:48:32 +04:00
#if 0
static char sccsid[] = "@(#)write.c 8.2 (Berkeley) 4/27/95";
1997-10-19 18:35:28 +04:00
#else
2001-01-03 16:25:11 +03:00
__RCSID("$NetBSD: write.c,v 1.19 2001/01/03 13:25:11 mjl Exp $");
1995-09-01 01:48:32 +04:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
1994-12-21 10:11:00 +03:00
#include <sys/types.h>
1993-03-21 12:45:37 +03:00
#include <sys/param.h>
#include <sys/stat.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
1993-03-21 12:45:37 +03:00
#include <string.h>
1994-12-21 10:11:00 +03:00
#include <signal.h>
#include <time.h>
#include <fcntl.h>
2001-01-03 16:14:26 +03:00
#include <paths.h>
1994-12-21 10:11:00 +03:00
#include <pwd.h>
#include <unistd.h>
#include <utmp.h>
#include <err.h>
1993-03-21 12:45:37 +03:00
2001-01-03 16:25:11 +03:00
void done(int);
void do_write(const char *, const char *, const uid_t);
void wr_fputs(char *);
void search_utmp(char *, char *, char *, uid_t, int);
int term_chk(const char *, int *, time_t *, int);
int utmp_chk(const char *, const char *);
int main(int, char **);
1993-03-21 12:45:37 +03:00
1994-12-21 10:11:00 +03:00
int
2001-01-03 16:25:11 +03:00
main(int argc, char **argv)
1993-03-21 12:45:37 +03:00
{
1997-10-20 07:24:44 +04:00
char *cp;
1993-03-21 12:45:37 +03:00
time_t atime;
uid_t myuid;
int msgsok, myttyfd;
1994-12-21 10:11:00 +03:00
char tty[MAXPATHLEN], *mytty;
1993-03-21 12:45:37 +03:00
/* check that sender has write enabled */
if (isatty(fileno(stdin)))
myttyfd = fileno(stdin);
else if (isatty(fileno(stdout)))
myttyfd = fileno(stdout);
else if (isatty(fileno(stderr)))
myttyfd = fileno(stderr);
else
errx(1, "can't find your tty");
if (!(mytty = ttyname(myttyfd)))
errx(1, "can't find your tty's name");
1997-10-19 18:35:28 +04:00
if ((cp = strrchr(mytty, '/')) != NULL)
1993-03-21 12:45:37 +03:00
mytty = cp + 1;
if (term_chk(mytty, &msgsok, &atime, 1))
exit(1);
if (!msgsok) {
(void)fprintf(stderr,
"warning: you have write permission turned off; "
"no reply possible\n");
}
1993-03-21 12:45:37 +03:00
myuid = getuid();
/* check args */
switch (argc) {
case 2:
search_utmp(argv[1], tty, mytty, myuid, sizeof tty);
1993-03-21 12:45:37 +03:00
do_write(tty, mytty, myuid);
break;
case 3:
2001-01-03 16:14:26 +03:00
if (!strncmp(argv[2], _PATH_DEV, strlen(_PATH_DEV)))
argv[2] += strlen(_PATH_DEV);
if (utmp_chk(argv[1], argv[2]))
errx(1, "%s is not logged in on %s",
1993-03-21 12:45:37 +03:00
argv[1], argv[2]);
if (term_chk(argv[2], &msgsok, &atime, 1))
exit(1);
if (myuid && !msgsok)
errx(1, "%s has messages disabled on %s",
1993-03-21 12:45:37 +03:00
argv[1], argv[2]);
do_write(argv[2], mytty, myuid);
break;
default:
(void)fprintf(stderr, "usage: write user [tty]\n");
exit(1);
}
1997-10-19 18:35:28 +04:00
done(0);
1993-03-21 12:45:37 +03:00
/* NOTREACHED */
1997-10-19 18:35:28 +04:00
#ifdef __GNUC__
return (0);
#endif
1993-03-21 12:45:37 +03:00
}
/*
* utmp_chk - checks that the given user is actually logged in on
* the given tty
*/
1994-12-21 10:11:00 +03:00
int
2001-01-03 16:25:11 +03:00
utmp_chk(const char *user, const char *tty)
1993-03-21 12:45:37 +03:00
{
struct utmp u;
int ufd;
if ((ufd = open(_PATH_UTMP, O_RDONLY)) < 0)
return(0); /* ignore error, shouldn't happen anyway */
while (read(ufd, (char *) &u, sizeof(u)) == sizeof(u))
if (strncmp(user, u.ut_name, sizeof(u.ut_name)) == 0 &&
strncmp(tty, u.ut_line, sizeof(u.ut_line)) == 0) {
(void)close(ufd);
return(0);
}
(void)close(ufd);
return(1);
}
/*
* search_utmp - search utmp for the "best" terminal to write to
*
* Ignores terminals with messages disabled, and of the rest, returns
* the one with the most recent access time. Returns as value the number
* of the user's terminals with messages enabled, or -1 if the user is
* not logged in at all.
*
* Special case for writing to yourself - ignore the terminal you're
* writing from, unless that's the only terminal with messages enabled.
*/
1994-12-21 10:11:00 +03:00
void
2001-01-03 16:25:11 +03:00
search_utmp(char *user, char *tty, char *mytty, uid_t myuid, int ttylen)
1993-03-21 12:45:37 +03:00
{
struct utmp u;
time_t bestatime, atime;
int ufd, nloggedttys, nttys, msgsok, user_is_me;
char atty[UT_LINESIZE + 1];
if ((ufd = open(_PATH_UTMP, O_RDONLY)) < 0)
err(1, "%s", _PATH_UTMP);
1993-03-21 12:45:37 +03:00
nloggedttys = nttys = 0;
bestatime = 0;
user_is_me = 0;
while (read(ufd, (char *) &u, sizeof(u)) == sizeof(u))
if (strncmp(user, u.ut_name, sizeof(u.ut_name)) == 0) {
++nloggedttys;
(void)strncpy(atty, u.ut_line, UT_LINESIZE);
atty[UT_LINESIZE] = '\0';
if (term_chk(atty, &msgsok, &atime, 0))
continue; /* bad term? skip */
if (myuid && !msgsok)
continue; /* skip ttys with msgs off */
if (strcmp(atty, mytty) == 0) {
user_is_me = 1;
continue; /* don't write to yourself */
}
++nttys;
if (atime > bestatime) {
bestatime = atime;
(void)strncpy(tty, atty, ttylen - 1);
tty[ttylen - 1] = '\0';
1993-03-21 12:45:37 +03:00
}
}
(void)close(ufd);
if (nloggedttys == 0)
errx(1, "%s is not logged in", user);
1993-03-21 12:45:37 +03:00
if (nttys == 0) {
if (user_is_me) { /* ok, so write to yourself! */
(void)strncpy(tty, mytty, ttylen - 1);
tty[ttylen - 1] = '\0';
1993-03-21 12:45:37 +03:00
return;
}
errx(1, "%s has messages disabled", user);
} else if (nttys > 1)
warnx("%s is logged in more than once; writing to %s",
1993-03-21 12:45:37 +03:00
user, tty);
}
/*
* term_chk - check that a terminal exists, and get the message bit
* and the access time
*/
1994-12-21 10:11:00 +03:00
int
2001-01-03 16:25:11 +03:00
term_chk(const char *tty, int *msgsokP, time_t *atimeP, int showerror)
1993-03-21 12:45:37 +03:00
{
struct stat s;
char path[MAXPATHLEN];
2001-01-03 16:14:26 +03:00
(void)snprintf(path, sizeof path, _PATH_DEV "%s", tty);
1993-03-21 12:45:37 +03:00
if (stat(path, &s) < 0) {
if (showerror)
warn("%s", path);
1993-03-21 12:45:37 +03:00
return(1);
}
*msgsokP = (s.st_mode & S_IWGRP) != 0; /* group write bit */
1993-03-21 12:45:37 +03:00
*atimeP = s.st_atime;
return(0);
}
/*
* do_write - actually make the connection
*/
1994-12-21 10:11:00 +03:00
void
2001-01-03 16:25:11 +03:00
do_write(const char *tty, const char *mytty, const uid_t myuid)
1993-03-21 12:45:37 +03:00
{
1998-07-27 03:14:40 +04:00
const char *login;
char *nows;
1997-10-20 07:24:44 +04:00
struct passwd *pwd;
1994-12-21 10:11:00 +03:00
time_t now;
char path[MAXPATHLEN], host[MAXHOSTNAMELEN + 1], line[512];
1993-03-21 12:45:37 +03:00
/* Determine our login name before the we reopen() stdout */
if ((login = getlogin()) == NULL) {
1997-10-19 18:35:28 +04:00
if ((pwd = getpwuid(myuid)) != NULL)
1993-03-21 12:45:37 +03:00
login = pwd->pw_name;
else login = "???";
}
2001-01-03 16:14:26 +03:00
(void)snprintf(path, sizeof path, _PATH_DEV "%s", tty);
if ((freopen(path, "w", stdout)) == NULL)
err(1, "%s", path);
1993-03-21 12:45:37 +03:00
(void)signal(SIGINT, done);
(void)signal(SIGHUP, done);
/* print greeting */
if (gethostname(host, sizeof(host)) < 0)
(void)strncpy(host, "???", sizeof(host) - 1);
else
host[sizeof(host) - 1] = '\0';
1993-03-21 12:45:37 +03:00
now = time((time_t *)NULL);
nows = ctime(&now);
nows[16] = '\0';
(void)printf("\r\n\007\007\007Message from %s@%s on %s at %s ...\r\n",
login, host, mytty, nows + 11);
while (fgets(line, sizeof(line), stdin) != NULL)
wr_fputs(line);
}
/*
* done - cleanup and exit
*/
void
2001-01-03 16:25:11 +03:00
done(int dummy)
1993-03-21 12:45:37 +03:00
{
1993-03-21 12:45:37 +03:00
(void)printf("EOF\r\n");
exit(0);
}
/*
* wr_fputs - like fputs(), but makes control characters visible and
* turns \n into \r\n
*/
1994-12-21 10:11:00 +03:00
void
2001-01-03 16:25:11 +03:00
wr_fputs(char *s)
1993-03-21 12:45:37 +03:00
{
1997-10-20 07:24:44 +04:00
char c;
1993-03-21 12:45:37 +03:00
#define PUTC(c) if (putchar(c) == EOF) goto err;
for (; *s != '\0'; ++s) {
c = toascii(*s);
if (c == '\n') {
PUTC('\r');
PUTC('\n');
1998-12-20 18:04:40 +03:00
} else if (!isprint((unsigned char)c) &&
!isspace((unsigned char)c) && c != '\007') {
1993-03-21 12:45:37 +03:00
PUTC('^');
PUTC(c^0x40); /* DEL to ?, others to alpha */
} else
PUTC(c);
}
return;
err: err(1, NULL);
1993-03-21 12:45:37 +03:00
#undef PUTC
}