announce.c revision 37262
11592Srgrimes/*
21592Srgrimes * Copyright (c) 1983, 1993
31592Srgrimes *	The Regents of the University of California.  All rights reserved.
41592Srgrimes *
51592Srgrimes * Redistribution and use in source and binary forms, with or without
61592Srgrimes * modification, are permitted provided that the following conditions
71592Srgrimes * are met:
81592Srgrimes * 1. Redistributions of source code must retain the above copyright
91592Srgrimes *    notice, this list of conditions and the following disclaimer.
101592Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111592Srgrimes *    notice, this list of conditions and the following disclaimer in the
121592Srgrimes *    documentation and/or other materials provided with the distribution.
131592Srgrimes * 3. All advertising materials mentioning features or use of this software
141592Srgrimes *    must display the following acknowledgement:
151592Srgrimes *	This product includes software developed by the University of
161592Srgrimes *	California, Berkeley and its contributors.
171592Srgrimes * 4. Neither the name of the University nor the names of its contributors
181592Srgrimes *    may be used to endorse or promote products derived from this software
191592Srgrimes *    without specific prior written permission.
201592Srgrimes *
211592Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221592Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231592Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241592Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251592Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261592Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271592Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281592Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291592Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301592Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311592Srgrimes * SUCH DAMAGE.
321592Srgrimes */
331592Srgrimes
341592Srgrimes#ifndef lint
3531491Scharnier#if 0
3621838Spststatic char sccsid[] = "@(#)announce.c	8.3 (Berkeley) 4/28/95";
3731491Scharnier#endif
3831491Scharnierstatic const char rcsid[] =
3937262Sbde	"$Id: announce.c,v 1.9 1997/12/02 12:33:11 charnier Exp $";
401592Srgrimes#endif /* not lint */
411592Srgrimes
421592Srgrimes#include <sys/types.h>
431592Srgrimes#include <sys/uio.h>
441592Srgrimes#include <sys/stat.h>
451592Srgrimes#include <sys/time.h>
461592Srgrimes#include <sys/wait.h>
471592Srgrimes#include <sys/socket.h>
4821838Spst
491592Srgrimes#include <protocols/talkd.h>
5021838Spst
511592Srgrimes#include <errno.h>
5221838Spst#include <paths.h>
5321838Spst#include <stdio.h>
5421838Spst#include <stdlib.h>
5521838Spst#include <string.h>
561592Srgrimes#include <syslog.h>
571592Srgrimes#include <unistd.h>
5821838Spst#include <vis.h>
591592Srgrimes
601592Srgrimesextern char hostname[];
611592Srgrimes
6231491Scharnierint print_mesg __P((char *, FILE *, CTL_MSG *, char *));
6331491Scharnierchar *ttymsg __P((struct iovec *, int, char *, int));
6431491Scharnier
651592Srgrimes/*
661592Srgrimes * Announce an invitation to talk.
671592Srgrimes */
688870Srgrimes
691592Srgrimes/*
708870Srgrimes * See if the user is accepting messages. If so, announce that
711592Srgrimes * a talk is requested.
721592Srgrimes */
7331491Scharnierint
741592Srgrimesannounce(request, remote_machine)
751592Srgrimes	CTL_MSG *request;
761592Srgrimes	char *remote_machine;
771592Srgrimes{
781592Srgrimes	char full_tty[32];
791592Srgrimes	FILE *tf;
801592Srgrimes	struct stat stbuf;
811592Srgrimes
821592Srgrimes	(void)snprintf(full_tty, sizeof(full_tty),
831592Srgrimes	    "%s%s", _PATH_DEV, request->r_tty);
841592Srgrimes	if (stat(full_tty, &stbuf) < 0 || (stbuf.st_mode&020) == 0)
851592Srgrimes		return (PERMISSION_DENIED);
861592Srgrimes	return (print_mesg(request->r_tty, tf, request, remote_machine));
871592Srgrimes}
881592Srgrimes
891592Srgrimes#define max(a,b) ( (a) > (b) ? (a) : (b) )
901592Srgrimes#define N_LINES 5
9121838Spst#define N_CHARS 256
921592Srgrimes
931592Srgrimes/*
948870Srgrimes * Build a block of characters containing the message.
951592Srgrimes * It is sent blank filled and in a single block to
961592Srgrimes * try to keep the message in one piece if the recipient
971592Srgrimes * in in vi at the time
981592Srgrimes */
9931491Scharnierint
1001592Srgrimesprint_mesg(tty, tf, request, remote_machine)
1011592Srgrimes	char *tty;
1021592Srgrimes	FILE *tf;
1031592Srgrimes	CTL_MSG *request;
1041592Srgrimes	char *remote_machine;
1051592Srgrimes{
1061592Srgrimes	struct timeval clock;
10737262Sbde	time_t clock_sec;
1081592Srgrimes	struct timezone zone;
1091592Srgrimes	struct tm *localtime();
1101592Srgrimes	struct tm *localclock;
1111592Srgrimes	struct iovec iovec;
1121592Srgrimes	char line_buf[N_LINES][N_CHARS];
1131592Srgrimes	int sizes[N_LINES];
1141592Srgrimes	char big_buf[N_LINES*N_CHARS];
11521838Spst	char *bptr, *lptr, *vis_user;
1161592Srgrimes	int i, j, max_size;
1171592Srgrimes
1181592Srgrimes	i = 0;
1191592Srgrimes	max_size = 0;
1201592Srgrimes	gettimeofday(&clock, &zone);
12137262Sbde	clock_sec = clock.tv_sec;
12237262Sbde	localclock = localtime(&clock_sec);
12321838Spst	(void)snprintf(line_buf[i], N_CHARS, " ");
1241592Srgrimes	sizes[i] = strlen(line_buf[i]);
1251592Srgrimes	max_size = max(max_size, sizes[i]);
1261592Srgrimes	i++;
12721838Spst	(void)snprintf(line_buf[i], N_CHARS,
12821838Spst		"Message from Talk_Daemon@%s at %d:%02d ...",
12921838Spst		hostname, localclock->tm_hour , localclock->tm_min );
1301592Srgrimes	sizes[i] = strlen(line_buf[i]);
1311592Srgrimes	max_size = max(max_size, sizes[i]);
1321592Srgrimes	i++;
13321838Spst
13421838Spst	vis_user = malloc(strlen(request->l_name) * 4 + 1);
13521838Spst	strvis(vis_user, request->l_name, VIS_CSTYLE);
13621838Spst	(void)snprintf(line_buf[i], N_CHARS,
13721838Spst	    "talk: connection requested by %s@%s", vis_user, remote_machine);
1381592Srgrimes	sizes[i] = strlen(line_buf[i]);
1391592Srgrimes	max_size = max(max_size, sizes[i]);
1401592Srgrimes	i++;
14121838Spst	(void)snprintf(line_buf[i], N_CHARS, "talk: respond with:  talk %s@%s",
14221838Spst	    vis_user, remote_machine);
1431592Srgrimes	sizes[i] = strlen(line_buf[i]);
1441592Srgrimes	max_size = max(max_size, sizes[i]);
1451592Srgrimes	i++;
14621838Spst	(void)snprintf(line_buf[i], N_CHARS, " ");
1471592Srgrimes	sizes[i] = strlen(line_buf[i]);
1481592Srgrimes	max_size = max(max_size, sizes[i]);
1491592Srgrimes	i++;
1501592Srgrimes	bptr = big_buf;
1511801Sphk	*bptr++ = '\007'; /* send something to wake them up */
1521592Srgrimes	*bptr++ = '\r';	/* add a \r in case of raw mode */
1531592Srgrimes	*bptr++ = '\n';
1541592Srgrimes	for (i = 0; i < N_LINES; i++) {
1551592Srgrimes		/* copy the line into the big buffer */
1561592Srgrimes		lptr = line_buf[i];
1571592Srgrimes		while (*lptr != '\0')
1581592Srgrimes			*(bptr++) = *(lptr++);
1591592Srgrimes		/* pad out the rest of the lines with blanks */
1601592Srgrimes		for (j = sizes[i]; j < max_size + 2; j++)
1611592Srgrimes			*(bptr++) = ' ';
1621592Srgrimes		*(bptr++) = '\r';	/* add a \r in case of raw mode */
1631592Srgrimes		*(bptr++) = '\n';
1641592Srgrimes	}
1651592Srgrimes	*bptr = '\0';
1661592Srgrimes	iovec.iov_base = big_buf;
1671592Srgrimes	iovec.iov_len = bptr - big_buf;
1681592Srgrimes	/*
1691592Srgrimes	 * we choose a timeout of RING_WAIT-5 seconds so that we don't
1701592Srgrimes	 * stack up processes trying to write messages to a tty
1711592Srgrimes	 * that is permanently blocked.
1721592Srgrimes	 */
1731592Srgrimes	if (ttymsg(&iovec, 1, tty, RING_WAIT - 5) != NULL)
1741592Srgrimes		return (FAILED);
1751592Srgrimes
1761592Srgrimes	return (SUCCESS);
1771592Srgrimes}
178