Home | History | Annotate | Line # | Download | only in write
write.c revision 1.26
      1  1.26    plunky /*	$NetBSD: write.c,v 1.26 2011/08/31 16:24:58 plunky 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.23       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35   1.9       mrg #include <sys/cdefs.h>
     36   1.1       cgd #ifndef lint
     37  1.25     lukem __COPYRIGHT("@(#) Copyright (c) 1989, 1993\
     38  1.25     lukem  The Regents of the University of California.  All rights reserved.");
     39   1.1       cgd #endif /* not lint */
     40   1.1       cgd 
     41   1.1       cgd #ifndef lint
     42   1.5       jtc #if 0
     43   1.5       jtc static char sccsid[] = "@(#)write.c	8.2 (Berkeley) 4/27/95";
     44   1.9       mrg #else
     45  1.26    plunky __RCSID("$NetBSD: write.c,v 1.26 2011/08/31 16:24:58 plunky Exp $");
     46   1.5       jtc #endif
     47   1.1       cgd #endif /* not lint */
     48   1.1       cgd 
     49   1.4       jtc #include <sys/types.h>
     50   1.1       cgd #include <sys/param.h>
     51   1.1       cgd #include <sys/stat.h>
     52   1.1       cgd #include <ctype.h>
     53   1.1       cgd #include <stdio.h>
     54  1.17      matt #include <stdlib.h>
     55   1.1       cgd #include <string.h>
     56   1.4       jtc #include <signal.h>
     57   1.4       jtc #include <time.h>
     58   1.4       jtc #include <fcntl.h>
     59  1.18       mjl #include <paths.h>
     60   1.4       jtc #include <pwd.h>
     61   1.4       jtc #include <unistd.h>
     62   1.4       jtc #include <err.h>
     63  1.21    itojun #include <errno.h>
     64   1.1       cgd 
     65  1.20  christos #include "utmpentry.h"
     66  1.22  christos #include "term_chk.h"
     67  1.20  christos 
     68  1.19       mjl void done(int);
     69  1.21    itojun void do_write(int, const char *, const uid_t);
     70  1.19       mjl void wr_fputs(char *);
     71  1.22  christos int search_utmp(char *, char *, uid_t, gid_t);
     72  1.19       mjl int utmp_chk(const char *, const char *);
     73  1.19       mjl int main(int, char **);
     74   1.1       cgd 
     75  1.21    itojun 
     76   1.4       jtc int
     77  1.19       mjl main(int argc, char **argv)
     78   1.1       cgd {
     79   1.1       cgd 	time_t atime;
     80  1.21    itojun 	uid_t myuid, uid;
     81  1.22  christos 	int msgsok, ttyfd;
     82  1.21    itojun 	char *mytty;
     83  1.22  christos 	gid_t saved_egid = getegid();
     84  1.21    itojun 
     85  1.21    itojun 	if (setegid(getgid()) == -1)
     86  1.21    itojun 		err(1, "setegid");
     87  1.21    itojun 	myuid = getuid();
     88  1.21    itojun 	ttyfd = -1;
     89   1.1       cgd 
     90  1.22  christos 	mytty = check_sender(&atime, myuid, saved_egid);
     91   1.1       cgd 
     92   1.1       cgd 	/* check args */
     93   1.1       cgd 	switch (argc) {
     94   1.1       cgd 	case 2:
     95  1.22  christos 		ttyfd = search_utmp(argv[1], mytty, myuid, saved_egid);
     96   1.1       cgd 		break;
     97   1.1       cgd 	case 3:
     98  1.18       mjl 		if (!strncmp(argv[2], _PATH_DEV, strlen(_PATH_DEV)))
     99  1.18       mjl 			argv[2] += strlen(_PATH_DEV);
    100  1.21    itojun 		if (uid_from_user(argv[1], &uid) == -1)
    101  1.21    itojun 			errx(1, "%s: unknown user", argv[1]);
    102   1.3   mycroft 		if (utmp_chk(argv[1], argv[2]))
    103   1.3   mycroft 			errx(1, "%s is not logged in on %s",
    104   1.1       cgd 			    argv[1], argv[2]);
    105  1.22  christos 		ttyfd = term_chk(uid, argv[2], &msgsok, &atime, 0, saved_egid);
    106  1.21    itojun 		if (ttyfd == -1)
    107  1.21    itojun 			err(1, "%s%s", _PATH_DEV, argv[2]);
    108   1.3   mycroft 		if (myuid && !msgsok)
    109   1.3   mycroft 			errx(1, "%s has messages disabled on %s",
    110   1.1       cgd 			    argv[1], argv[2]);
    111   1.1       cgd 		break;
    112   1.1       cgd 	default:
    113   1.1       cgd 		(void)fprintf(stderr, "usage: write user [tty]\n");
    114   1.1       cgd 		exit(1);
    115   1.1       cgd 	}
    116  1.21    itojun 	if (setgid(getgid()) == -1)
    117  1.21    itojun 		err(1, "setgid");
    118  1.21    itojun 	do_write(ttyfd, mytty, myuid);
    119   1.9       mrg 	done(0);
    120   1.1       cgd 	/* NOTREACHED */
    121   1.9       mrg #ifdef __GNUC__
    122   1.9       mrg 	return (0);
    123   1.9       mrg #endif
    124   1.1       cgd }
    125   1.1       cgd 
    126   1.1       cgd /*
    127   1.1       cgd  * utmp_chk - checks that the given user is actually logged in on
    128   1.1       cgd  *     the given tty
    129   1.1       cgd  */
    130   1.4       jtc int
    131  1.19       mjl utmp_chk(const char *user, const char *tty)
    132   1.1       cgd {
    133  1.20  christos 	struct utmpentry *ep;
    134   1.1       cgd 
    135  1.20  christos 	(void)getutentries(NULL, &ep);
    136   1.1       cgd 
    137  1.20  christos 	for (; ep; ep = ep->next)
    138  1.20  christos 		if (strcmp(user, ep->name) == 0 && strcmp(tty, ep->line) == 0)
    139   1.1       cgd 			return(0);
    140   1.1       cgd 	return(1);
    141   1.1       cgd }
    142   1.1       cgd 
    143   1.1       cgd /*
    144   1.1       cgd  * search_utmp - search utmp for the "best" terminal to write to
    145   1.1       cgd  *
    146   1.1       cgd  * Ignores terminals with messages disabled, and of the rest, returns
    147   1.1       cgd  * the one with the most recent access time.  Returns as value the number
    148   1.1       cgd  * of the user's terminals with messages enabled, or -1 if the user is
    149   1.1       cgd  * not logged in at all.
    150   1.1       cgd  *
    151   1.1       cgd  * Special case for writing to yourself - ignore the terminal you're
    152   1.1       cgd  * writing from, unless that's the only terminal with messages enabled.
    153   1.1       cgd  */
    154  1.21    itojun int
    155  1.22  christos search_utmp(char *user, char *mytty, uid_t myuid, gid_t saved_egid)
    156   1.1       cgd {
    157  1.21    itojun 	char tty[MAXPATHLEN];
    158   1.1       cgd 	time_t bestatime, atime;
    159  1.20  christos 	int nloggedttys, nttys, msgsok, user_is_me;
    160  1.20  christos 	struct utmpentry *ep;
    161  1.21    itojun 	int fd, nfd;
    162  1.21    itojun 	uid_t uid;
    163  1.21    itojun 
    164  1.21    itojun 	if (uid_from_user(user, &uid) == -1)
    165  1.21    itojun 		errx(1, "%s: unknown user", user);
    166   1.1       cgd 
    167  1.20  christos 	(void)getutentries(NULL, &ep);
    168   1.1       cgd 
    169   1.1       cgd 	nloggedttys = nttys = 0;
    170   1.1       cgd 	bestatime = 0;
    171   1.1       cgd 	user_is_me = 0;
    172  1.21    itojun 	fd = -1;
    173  1.20  christos 	for (; ep; ep = ep->next)
    174  1.20  christos 		if (strcmp(user, ep->name) == 0) {
    175   1.1       cgd 			++nloggedttys;
    176  1.22  christos 			nfd = term_chk(uid, ep->line, &msgsok, &atime, 0,
    177  1.22  christos 			    saved_egid);
    178  1.21    itojun 			if (nfd == -1)
    179   1.1       cgd 				continue;	/* bad term? skip */
    180  1.21    itojun 			if (myuid && !msgsok) {
    181  1.21    itojun 				close(nfd);
    182   1.1       cgd 				continue;	/* skip ttys with msgs off */
    183  1.21    itojun 			}
    184  1.20  christos 			if (strcmp(ep->line, mytty) == 0) {
    185   1.1       cgd 				user_is_me = 1;
    186  1.21    itojun 				if (fd == -1)
    187  1.21    itojun 					fd = nfd;
    188  1.21    itojun 				else
    189  1.21    itojun 					close(nfd);
    190   1.1       cgd 				continue;	/* don't write to yourself */
    191   1.1       cgd 			}
    192   1.1       cgd 			++nttys;
    193   1.1       cgd 			if (atime > bestatime) {
    194   1.1       cgd 				bestatime = atime;
    195  1.21    itojun 				(void)strlcpy(tty, ep->line, sizeof(tty));
    196  1.21    itojun 				close(fd);
    197  1.21    itojun 				fd = nfd;
    198  1.21    itojun 			} else
    199  1.21    itojun 				close(nfd);
    200   1.1       cgd 		}
    201   1.1       cgd 
    202   1.3   mycroft 	if (nloggedttys == 0)
    203   1.3   mycroft 		errx(1, "%s is not logged in", user);
    204   1.1       cgd 	if (nttys == 0) {
    205  1.21    itojun 		if (user_is_me)			/* ok, so write to yourself! */
    206  1.21    itojun 			return fd;
    207   1.3   mycroft 		errx(1, "%s has messages disabled", user);
    208   1.3   mycroft 	} else if (nttys > 1)
    209   1.3   mycroft 		warnx("%s is logged in more than once; writing to %s",
    210   1.1       cgd 		    user, tty);
    211  1.21    itojun 	return fd;
    212   1.1       cgd }
    213   1.1       cgd 
    214   1.1       cgd /*
    215   1.1       cgd  * do_write - actually make the connection
    216   1.1       cgd  */
    217   1.4       jtc void
    218  1.21    itojun do_write(int ttyfd, const char *mytty, const uid_t myuid)
    219   1.1       cgd {
    220  1.13   mycroft 	const char *login;
    221  1.13   mycroft 	char *nows;
    222  1.10     lukem 	struct passwd *pwd;
    223   1.4       jtc 	time_t now;
    224  1.21    itojun 	char host[MAXHOSTNAMELEN + 1], line[512];
    225   1.1       cgd 
    226  1.21    itojun 	/* Determine our login name before we re-open stdout */
    227  1.14      ross 	if ((login = getlogin()) == NULL) {
    228   1.9       mrg 		if ((pwd = getpwuid(myuid)) != NULL)
    229   1.1       cgd 			login = pwd->pw_name;
    230  1.14      ross 		else	login = "???";
    231  1.14      ross 	}
    232  1.21    itojun 
    233  1.21    itojun 	if (dup2(ttyfd, STDOUT_FILENO) == -1)
    234  1.21    itojun 		err(1, "dup2");
    235   1.1       cgd 
    236   1.1       cgd 	(void)signal(SIGINT, done);
    237   1.1       cgd 	(void)signal(SIGHUP, done);
    238  1.21    itojun 	(void)close(ttyfd);
    239   1.1       cgd 
    240   1.1       cgd 	/* print greeting */
    241   1.1       cgd 	if (gethostname(host, sizeof(host)) < 0)
    242  1.24      elad 		(void)strlcpy(host, "???", sizeof(host));
    243  1.12       mrg 	else
    244  1.12       mrg 		host[sizeof(host) - 1] = '\0';
    245  1.26    plunky 	now = time(NULL);
    246   1.1       cgd 	nows = ctime(&now);
    247   1.1       cgd 	nows[16] = '\0';
    248  1.21    itojun 	(void)printf("\r\n\a\a\aMessage from %s@%s on %s at %s ...\r\n",
    249   1.1       cgd 	    login, host, mytty, nows + 11);
    250   1.1       cgd 
    251   1.1       cgd 	while (fgets(line, sizeof(line), stdin) != NULL)
    252   1.1       cgd 		wr_fputs(line);
    253   1.1       cgd }
    254   1.1       cgd 
    255   1.1       cgd /*
    256   1.1       cgd  * done - cleanup and exit
    257   1.1       cgd  */
    258   1.1       cgd void
    259  1.21    itojun done(int signo)
    260   1.1       cgd {
    261  1.12       mrg 
    262  1.21    itojun 	(void)write(STDOUT_FILENO, "EOF\r\n", sizeof("EOF\r\n") - 1);
    263  1.21    itojun 	if (signo == 0)
    264  1.21    itojun 		exit(0);
    265  1.21    itojun 	else
    266  1.21    itojun 		_exit(0);
    267   1.1       cgd }
    268   1.1       cgd 
    269   1.1       cgd /*
    270   1.1       cgd  * wr_fputs - like fputs(), but makes control characters visible and
    271   1.1       cgd  *     turns \n into \r\n
    272   1.1       cgd  */
    273   1.4       jtc void
    274  1.19       mjl wr_fputs(char *s)
    275   1.1       cgd {
    276  1.21    itojun 	unsigned char c;
    277   1.1       cgd 
    278   1.1       cgd #define	PUTC(c)	if (putchar(c) == EOF) goto err;
    279   1.1       cgd 
    280   1.1       cgd 	for (; *s != '\0'; ++s) {
    281   1.1       cgd 		c = toascii(*s);
    282   1.1       cgd 		if (c == '\n') {
    283   1.1       cgd 			PUTC('\r');
    284  1.21    itojun 		} else if (!isprint(c) && !isspace(c) && c != '\a') {
    285   1.1       cgd 			PUTC('^');
    286  1.21    itojun 			c ^= 0x40;	/* DEL to ?, others to alpha */
    287  1.21    itojun 		}
    288  1.21    itojun 		PUTC(c);
    289   1.1       cgd 	}
    290   1.1       cgd 	return;
    291   1.1       cgd 
    292  1.16  drochner err:	err(1, NULL);
    293   1.1       cgd #undef PUTC
    294   1.1       cgd }
    295