write.c revision 202200
11590Srgrimes/*
21590Srgrimes * Copyright (c) 1989, 1993
31590Srgrimes *	The Regents of the University of California.  All rights reserved.
41590Srgrimes *
51590Srgrimes * This code is derived from software contributed to Berkeley by
61590Srgrimes * Jef Poskanzer and Craig Leres of the Lawrence Berkeley Laboratory.
71590Srgrimes *
81590Srgrimes * Redistribution and use in source and binary forms, with or without
91590Srgrimes * modification, are permitted provided that the following conditions
101590Srgrimes * are met:
111590Srgrimes * 1. Redistributions of source code must retain the above copyright
121590Srgrimes *    notice, this list of conditions and the following disclaimer.
131590Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
141590Srgrimes *    notice, this list of conditions and the following disclaimer in the
151590Srgrimes *    documentation and/or other materials provided with the distribution.
161590Srgrimes * 3. All advertising materials mentioning features or use of this software
171590Srgrimes *    must display the following acknowledgement:
181590Srgrimes *	This product includes software developed by the University of
191590Srgrimes *	California, Berkeley and its contributors.
201590Srgrimes * 4. Neither the name of the University nor the names of its contributors
211590Srgrimes *    may be used to endorse or promote products derived from this software
221590Srgrimes *    without specific prior written permission.
231590Srgrimes *
241590Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
251590Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
261590Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
271590Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
281590Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
291590Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
301590Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
311590Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
321590Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
331590Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
341590Srgrimes * SUCH DAMAGE.
351590Srgrimes */
361590Srgrimes
371590Srgrimes#ifndef lint
3828794Scharnierstatic const char copyright[] =
391590Srgrimes"@(#) Copyright (c) 1989, 1993\n\
401590Srgrimes	The Regents of the University of California.  All rights reserved.\n";
4187682Smarkm#endif
421590Srgrimes
4391378Sdwmalone#if 0
441590Srgrimes#ifndef lint
4591378Sdwmalonestatic char sccsid[] = "@(#)write.c	8.1 (Berkeley) 6/6/93";
4628794Scharnier#endif
4791378Sdwmalone#endif
481590Srgrimes
4991378Sdwmalone#include <sys/cdefs.h>
5091378Sdwmalone__FBSDID("$FreeBSD: head/usr.bin/write/write.c 202200 2010-01-13 18:09:54Z ed $");
5191378Sdwmalone
521590Srgrimes#include <sys/param.h>
531590Srgrimes#include <sys/signal.h>
541590Srgrimes#include <sys/stat.h>
551590Srgrimes#include <sys/file.h>
561590Srgrimes#include <sys/time.h>
571590Srgrimes#include <ctype.h>
5828794Scharnier#include <err.h>
5929430Sache#include <locale.h>
6019190Salex#include <paths.h>
611590Srgrimes#include <pwd.h>
621590Srgrimes#include <stdio.h>
6391378Sdwmalone#include <stdlib.h>
641590Srgrimes#include <string.h>
6528794Scharnier#include <unistd.h>
66202200Sed#include <utmpx.h>
671590Srgrimes
6892922Simpvoid done(int);
6992922Simpvoid do_write(char *, char *, uid_t);
7092922Simpstatic void usage(void);
7192922Simpint term_chk(char *, int *, time_t *, int);
7292922Simpvoid wr_fputs(unsigned char *s);
7392922Simpvoid search_utmp(char *, char *, char *, uid_t);
7492922Simpint utmp_chk(char *, char *);
751590Srgrimes
7628794Scharnierint
77102944Sdwmalonemain(int argc, char **argv)
781590Srgrimes{
791590Srgrimes	time_t atime;
801590Srgrimes	uid_t myuid;
811590Srgrimes	int msgsok, myttyfd;
8228794Scharnier	char tty[MAXPATHLEN], *mytty;
831590Srgrimes
8429430Sache	(void)setlocale(LC_CTYPE, "");
8529430Sache
8697454Stjr	while (getopt(argc, argv, "") != -1)
8797454Stjr		usage();
8897454Stjr	argc -= optind;
8997454Stjr	argv += optind;
9097454Stjr
911590Srgrimes	/* check that sender has write enabled */
921590Srgrimes	if (isatty(fileno(stdin)))
931590Srgrimes		myttyfd = fileno(stdin);
941590Srgrimes	else if (isatty(fileno(stdout)))
951590Srgrimes		myttyfd = fileno(stdout);
961590Srgrimes	else if (isatty(fileno(stderr)))
971590Srgrimes		myttyfd = fileno(stderr);
9828794Scharnier	else
9928794Scharnier		errx(1, "can't find your tty");
10028794Scharnier	if (!(mytty = ttyname(myttyfd)))
10128794Scharnier		errx(1, "can't find your tty's name");
102173572Sjhb	if (!strncmp(mytty, _PATH_DEV, strlen(_PATH_DEV)))
103173572Sjhb		mytty += strlen(_PATH_DEV);
1041590Srgrimes	if (term_chk(mytty, &msgsok, &atime, 1))
1051590Srgrimes		exit(1);
10628794Scharnier	if (!msgsok)
10728794Scharnier		errx(1, "you have write permission turned off");
1081590Srgrimes
1091590Srgrimes	myuid = getuid();
1101590Srgrimes
1111590Srgrimes	/* check args */
1121590Srgrimes	switch (argc) {
11397454Stjr	case 1:
11497454Stjr		search_utmp(argv[0], tty, mytty, myuid);
1151590Srgrimes		do_write(tty, mytty, myuid);
1161590Srgrimes		break;
11797454Stjr	case 2:
11897454Stjr		if (!strncmp(argv[1], _PATH_DEV, strlen(_PATH_DEV)))
11997454Stjr			argv[1] += strlen(_PATH_DEV);
12097454Stjr		if (utmp_chk(argv[0], argv[1]))
12197454Stjr			errx(1, "%s is not logged in on %s", argv[0], argv[1]);
12297454Stjr		if (term_chk(argv[1], &msgsok, &atime, 1))
1231590Srgrimes			exit(1);
12428794Scharnier		if (myuid && !msgsok)
12597454Stjr			errx(1, "%s has messages disabled on %s", argv[0], argv[1]);
12697454Stjr		do_write(argv[1], mytty, myuid);
1271590Srgrimes		break;
1281590Srgrimes	default:
12928794Scharnier		usage();
1301590Srgrimes	}
13129430Sache	done(0);
13228794Scharnier	return (0);
1331590Srgrimes}
1341590Srgrimes
13528794Scharnierstatic void
136102944Sdwmaloneusage(void)
13728794Scharnier{
13828794Scharnier	(void)fprintf(stderr, "usage: write user [tty]\n");
13928794Scharnier	exit(1);
14028794Scharnier}
14128794Scharnier
1421590Srgrimes/*
1431590Srgrimes * utmp_chk - checks that the given user is actually logged in on
1441590Srgrimes *     the given tty
1451590Srgrimes */
14628794Scharnierint
147102944Sdwmaloneutmp_chk(char *user, char *tty)
1481590Srgrimes{
149200160Sed	struct utmpx lu, *u;
1501590Srgrimes
151200160Sed	strncpy(lu.ut_line, tty, sizeof lu.ut_line);
152200160Sed	setutxent();
153200160Sed	while ((u = getutxline(&lu)) != NULL)
154200160Sed		if (u->ut_type == USER_PROCESS &&
155200160Sed		    strcmp(user, u->ut_user) == 0) {
156200160Sed			endutxent();
1571590Srgrimes			return(0);
1581590Srgrimes		}
159200160Sed	endutxent();
1601590Srgrimes	return(1);
1611590Srgrimes}
1621590Srgrimes
1631590Srgrimes/*
1641590Srgrimes * search_utmp - search utmp for the "best" terminal to write to
1651590Srgrimes *
1661590Srgrimes * Ignores terminals with messages disabled, and of the rest, returns
1671590Srgrimes * the one with the most recent access time.  Returns as value the number
1681590Srgrimes * of the user's terminals with messages enabled, or -1 if the user is
1691590Srgrimes * not logged in at all.
1701590Srgrimes *
1711590Srgrimes * Special case for writing to yourself - ignore the terminal you're
1721590Srgrimes * writing from, unless that's the only terminal with messages enabled.
1731590Srgrimes */
17428794Scharniervoid
175102944Sdwmalonesearch_utmp(char *user, char *tty, char *mytty, uid_t myuid)
1761590Srgrimes{
177200160Sed	struct utmpx *u;
1781590Srgrimes	time_t bestatime, atime;
179200160Sed	int nloggedttys, nttys, msgsok, user_is_me;
1801590Srgrimes
1811590Srgrimes	nloggedttys = nttys = 0;
1821590Srgrimes	bestatime = 0;
1831590Srgrimes	user_is_me = 0;
184200160Sed
185200160Sed	setutxent();
186200160Sed	while ((u = getutxent()) != NULL)
187200160Sed		if (u->ut_type == USER_PROCESS &&
188200160Sed		    strcmp(user, u->ut_user) == 0) {
1891590Srgrimes			++nloggedttys;
190200160Sed			if (term_chk(u->ut_line, &msgsok, &atime, 0))
1911590Srgrimes				continue;	/* bad term? skip */
1921590Srgrimes			if (myuid && !msgsok)
1931590Srgrimes				continue;	/* skip ttys with msgs off */
194200160Sed			if (strcmp(u->ut_line, mytty) == 0) {
1951590Srgrimes				user_is_me = 1;
1961590Srgrimes				continue;	/* don't write to yourself */
1971590Srgrimes			}
1981590Srgrimes			++nttys;
1991590Srgrimes			if (atime > bestatime) {
2001590Srgrimes				bestatime = atime;
201200160Sed				(void)strlcpy(tty, u->ut_line, MAXPATHLEN);
2021590Srgrimes			}
2031590Srgrimes		}
204200160Sed	endutxent();
2051590Srgrimes
20628794Scharnier	if (nloggedttys == 0)
20728794Scharnier		errx(1, "%s is not logged in", user);
2081590Srgrimes	if (nttys == 0) {
2091590Srgrimes		if (user_is_me) {		/* ok, so write to yourself! */
210200160Sed			(void)strlcpy(tty, mytty, MAXPATHLEN);
2111590Srgrimes			return;
2121590Srgrimes		}
21328794Scharnier		errx(1, "%s has messages disabled", user);
2141590Srgrimes	} else if (nttys > 1) {
21528794Scharnier		warnx("%s is logged in more than once; writing to %s", user, tty);
2161590Srgrimes	}
2171590Srgrimes}
2181590Srgrimes
2191590Srgrimes/*
2201590Srgrimes * term_chk - check that a terminal exists, and get the message bit
2211590Srgrimes *     and the access time
2221590Srgrimes */
22328794Scharnierint
224102944Sdwmaloneterm_chk(char *tty, int *msgsokP, time_t *atimeP, int showerror)
2251590Srgrimes{
2261590Srgrimes	struct stat s;
2271590Srgrimes	char path[MAXPATHLEN];
2281590Srgrimes
22919190Salex	(void)snprintf(path, sizeof(path), "%s%s", _PATH_DEV, tty);
2301590Srgrimes	if (stat(path, &s) < 0) {
2311590Srgrimes		if (showerror)
23228794Scharnier			warn("%s", path);
2331590Srgrimes		return(1);
2341590Srgrimes	}
2351590Srgrimes	*msgsokP = (s.st_mode & (S_IWRITE >> 3)) != 0;	/* group write bit */
2361590Srgrimes	*atimeP = s.st_atime;
2371590Srgrimes	return(0);
2381590Srgrimes}
2391590Srgrimes
2401590Srgrimes/*
2411590Srgrimes * do_write - actually make the connection
2421590Srgrimes */
24328794Scharniervoid
244102944Sdwmalonedo_write(char *tty, char *mytty, uid_t myuid)
2451590Srgrimes{
24687682Smarkm	const char *login;
24787682Smarkm	char *nows;
24887682Smarkm	struct passwd *pwd;
24928794Scharnier	time_t now;
25028794Scharnier	char path[MAXPATHLEN], host[MAXHOSTNAMELEN], line[512];
2511590Srgrimes
252139718Scognet	/* Determine our login name before we reopen() stdout */
25348566Sbillf	if ((login = getlogin()) == NULL) {
25428794Scharnier		if ((pwd = getpwuid(myuid)))
2551590Srgrimes			login = pwd->pw_name;
2561590Srgrimes		else
2571590Srgrimes			login = "???";
25848566Sbillf	}
2591590Srgrimes
26019190Salex	(void)snprintf(path, sizeof(path), "%s%s", _PATH_DEV, tty);
26128794Scharnier	if ((freopen(path, "w", stdout)) == NULL)
26228794Scharnier		err(1, "%s", path);
2631590Srgrimes
2641590Srgrimes	(void)signal(SIGINT, done);
2651590Srgrimes	(void)signal(SIGHUP, done);
2661590Srgrimes
2671590Srgrimes	/* print greeting */
2681590Srgrimes	if (gethostname(host, sizeof(host)) < 0)
2691590Srgrimes		(void)strcpy(host, "???");
2701590Srgrimes	now = time((time_t *)NULL);
2711590Srgrimes	nows = ctime(&now);
2721590Srgrimes	nows[16] = '\0';
2731590Srgrimes	(void)printf("\r\n\007\007\007Message from %s@%s on %s at %s ...\r\n",
2741590Srgrimes	    login, host, mytty, nows + 11);
2751590Srgrimes
2761590Srgrimes	while (fgets(line, sizeof(line), stdin) != NULL)
2771590Srgrimes		wr_fputs(line);
2781590Srgrimes}
2791590Srgrimes
2801590Srgrimes/*
2811590Srgrimes * done - cleanup and exit
2821590Srgrimes */
2831590Srgrimesvoid
284102944Sdwmalonedone(int n __unused)
2851590Srgrimes{
2861590Srgrimes	(void)printf("EOF\r\n");
2871590Srgrimes	exit(0);
2881590Srgrimes}
2891590Srgrimes
2901590Srgrimes/*
2911590Srgrimes * wr_fputs - like fputs(), but makes control characters visible and
2921590Srgrimes *     turns \n into \r\n
2931590Srgrimes */
29428794Scharniervoid
295102944Sdwmalonewr_fputs(unsigned char *s)
2961590Srgrimes{
2971590Srgrimes
29828794Scharnier#define	PUTC(c)	if (putchar(c) == EOF) err(1, NULL);
2991590Srgrimes
3001590Srgrimes	for (; *s != '\0'; ++s) {
30111916Sache		if (*s == '\n') {
3021590Srgrimes			PUTC('\r');
30329431Sache		} else if (((*s & 0x80) && *s < 0xA0) ||
30429431Sache			   /* disable upper controls */
30529433Sache			   (!isprint(*s) && !isspace(*s) &&
30629433Sache			    *s != '\a' && *s != '\b')
30729430Sache			  ) {
30812097Sache			if (*s & 0x80) {
30912097Sache				*s &= ~0x80;
31012097Sache				PUTC('M');
31112097Sache				PUTC('-');
31212097Sache			}
31312097Sache			if (iscntrl(*s)) {
31412097Sache				*s ^= 0x40;
31512097Sache				PUTC('^');
31612097Sache			}
31712097Sache		}
31812097Sache		PUTC(*s);
3191590Srgrimes	}
3201590Srgrimes	return;
3211590Srgrimes#undef PUTC
3221590Srgrimes}
323