NetBSD/usr.bin/write/write.c

364 lines
9.0 KiB
C
Raw Normal View History

/* $NetBSD: write.c,v 1.21 2002/08/16 20:21:49 itojun 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
__RCSID("$NetBSD: write.c,v 1.21 2002/08/16 20:21:49 itojun 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 <err.h>
#include <errno.h>
1993-03-21 12:45:37 +03:00
2002-08-02 05:52:13 +04:00
#include "utmpentry.h"
2001-01-03 16:25:11 +03:00
void done(int);
void do_write(int, const char *, const uid_t);
2001-01-03 16:25:11 +03:00
void wr_fputs(char *);
int search_utmp(char *, char *, uid_t);
int term_chk(uid_t, const char *, int *, time_t *, int);
2001-01-03 16:25:11 +03:00
int utmp_chk(const char *, const char *);
int main(int, char **);
1993-03-21 12:45:37 +03:00
static gid_t saved_egid;
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, uid;
int msgsok, myttyfd, ttyfd;
char *mytty;
saved_egid = getegid();
if (setegid(getgid()) == -1)
err(1, "setegid");
myuid = getuid();
ttyfd = -1;
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(myuid, mytty, &msgsok, &atime, 1) == -1)
err(1, "%s%s", _PATH_DEV, mytty);
if (!msgsok) {
(void)fprintf(stderr,
"warning: you have write permission turned off; "
"no reply possible\n");
}
1993-03-21 12:45:37 +03:00
/* check args */
switch (argc) {
case 2:
ttyfd = search_utmp(argv[1], mytty, myuid);
1993-03-21 12:45:37 +03:00
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 (uid_from_user(argv[1], &uid) == -1)
errx(1, "%s: unknown user", argv[1]);
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]);
ttyfd = term_chk(uid, argv[2], &msgsok, &atime, 0);
if (ttyfd == -1)
err(1, "%s%s", _PATH_DEV, argv[2]);
if (myuid && !msgsok)
errx(1, "%s has messages disabled on %s",
1993-03-21 12:45:37 +03:00
argv[1], argv[2]);
break;
default:
(void)fprintf(stderr, "usage: write user [tty]\n");
exit(1);
}
if (setgid(getgid()) == -1)
err(1, "setgid");
do_write(ttyfd, mytty, myuid);
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
{
2002-08-02 05:52:13 +04:00
struct utmpentry *ep;
1993-03-21 12:45:37 +03:00
2002-08-02 05:52:13 +04:00
(void)getutentries(NULL, &ep);
1993-03-21 12:45:37 +03:00
2002-08-02 05:52:13 +04:00
for (; ep; ep = ep->next)
if (strcmp(user, ep->name) == 0 && strcmp(tty, ep->line) == 0)
1993-03-21 12:45:37 +03:00
return(0);
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.
*/
int
search_utmp(char *user, char *mytty, uid_t myuid)
1993-03-21 12:45:37 +03:00
{
char tty[MAXPATHLEN];
1993-03-21 12:45:37 +03:00
time_t bestatime, atime;
2002-08-02 05:52:13 +04:00
int nloggedttys, nttys, msgsok, user_is_me;
struct utmpentry *ep;
int fd, nfd;
uid_t uid;
if (uid_from_user(user, &uid) == -1)
errx(1, "%s: unknown user", user);
1993-03-21 12:45:37 +03:00
2002-08-02 05:52:13 +04:00
(void)getutentries(NULL, &ep);
1993-03-21 12:45:37 +03:00
nloggedttys = nttys = 0;
bestatime = 0;
user_is_me = 0;
fd = -1;
2002-08-02 05:52:13 +04:00
for (; ep; ep = ep->next)
if (strcmp(user, ep->name) == 0) {
1993-03-21 12:45:37 +03:00
++nloggedttys;
nfd = term_chk(uid, ep->line, &msgsok, &atime, 0);
if (nfd == -1)
1993-03-21 12:45:37 +03:00
continue; /* bad term? skip */
if (myuid && !msgsok) {
close(nfd);
1993-03-21 12:45:37 +03:00
continue; /* skip ttys with msgs off */
}
2002-08-02 05:52:13 +04:00
if (strcmp(ep->line, mytty) == 0) {
1993-03-21 12:45:37 +03:00
user_is_me = 1;
if (fd == -1)
fd = nfd;
else
close(nfd);
1993-03-21 12:45:37 +03:00
continue; /* don't write to yourself */
}
++nttys;
if (atime > bestatime) {
bestatime = atime;
(void)strlcpy(tty, ep->line, sizeof(tty));
close(fd);
fd = nfd;
} else
close(nfd);
1993-03-21 12:45:37 +03:00
}
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! */
return fd;
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);
return fd;
1993-03-21 12:45:37 +03:00
}
/*
* 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
term_chk(uid_t uid, const char *tty, int *msgsokP, time_t *atimeP, int ismytty)
1993-03-21 12:45:37 +03:00
{
char path[MAXPATHLEN];
struct stat s;
int i, fd, serrno;
1993-03-21 12:45:37 +03:00
if (strcspn(tty, "./") != strlen(tty)) {
errno = EINVAL; return(-1);
1993-03-21 12:45:37 +03:00
}
i = snprintf(path, sizeof path, _PATH_DEV "%s", tty);
if (i < 0 || i >= sizeof(path)) {
errno = ENOMEM; return(-1);
}
(void)setegid(saved_egid);
fd = open(path, O_WRONLY, 0);
serrno = errno;
(void)setegid(getgid());
errno = serrno;
if (fd == -1)
return(-1);
if (fstat(fd, &s) == -1)
goto error;
if (!isatty(fd) || s.st_uid != uid)
goto error;
*msgsokP = (s.st_mode & S_IWGRP) != 0; /* group write bit */
1993-03-21 12:45:37 +03:00
*atimeP = s.st_atime;
if (ismytty)
(void) close(fd);
return(ismytty? 0: fd);
error:
if (fd != -1) {
serrno = errno;
close(fd);
errno = serrno;
}
return(-1);
1993-03-21 12:45:37 +03:00
}
/*
* do_write - actually make the connection
*/
1994-12-21 10:11:00 +03:00
void
do_write(int ttyfd, 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 host[MAXHOSTNAMELEN + 1], line[512];
1993-03-21 12:45:37 +03:00
/* Determine our login name before we re-open 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 = "???";
}
if (dup2(ttyfd, STDOUT_FILENO) == -1)
err(1, "dup2");
1993-03-21 12:45:37 +03:00
(void)signal(SIGINT, done);
(void)signal(SIGHUP, done);
(void)close(ttyfd);
1993-03-21 12:45:37 +03:00
/* 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\a\a\aMessage from %s@%s on %s at %s ...\r\n",
1993-03-21 12:45:37 +03:00
login, host, mytty, nows + 11);
while (fgets(line, sizeof(line), stdin) != NULL)
wr_fputs(line);
}
/*
* done - cleanup and exit
*/
void
done(int signo)
1993-03-21 12:45:37 +03:00
{
(void)write(STDOUT_FILENO, "EOF\r\n", sizeof("EOF\r\n") - 1);
if (signo == 0)
exit(0);
else
_exit(0);
1993-03-21 12:45:37 +03:00
}
/*
* 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
{
unsigned 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');
} else if (!isprint(c) && !isspace(c) && c != '\a') {
1993-03-21 12:45:37 +03:00
PUTC('^');
c ^= 0x40; /* DEL to ?, others to alpha */
}
PUTC(c);
1993-03-21 12:45:37 +03:00
}
return;
err: err(1, NULL);
1993-03-21 12:45:37 +03:00
#undef PUTC
}