1 /* $NetBSD: rwall.c,v 1.16 2005/08/09 23:41:38 christos Exp $ */
4 * Copyright (c) 1988, 1990 Regents of the University of California.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * Copyright (c) 1993 Christopher G. Demetriou
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
38 * 1. Redistributions of source code must retain the above copyright
39 * notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 * notice, this list of conditions and the following disclaimer in the
42 * documentation and/or other materials provided with the distribution.
43 * 3. All advertising materials mentioning features or use of this software
44 * must display the following acknowledgement:
45 * This product includes software developed by the University of
46 * California, Berkeley and its contributors.
47 * 4. Neither the name of the University nor the names of its contributors
48 * may be used to endorse or promote products derived from this software
49 * without specific prior written permission.
51 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 #include <sys/cdefs.h>
66 __COPYRIGHT("@(#) Copyright (c) 1988\
67 Regents of the University of California. All rights reserved.");
72 static char sccsid
[] = "from: @(#)wall.c 5.14 (Berkeley) 3/2/91";
74 __RCSID("$NetBSD: rwall.c,v 1.16 2005/08/09 23:41:38 christos Exp $");
79 * This program is not related to David Wall, whose Stanford Ph.D. thesis
80 * is entitled "Mechanisms for Broadcast and Selective Broadcast".
82 #include <sys/types.h>
83 #include <sys/param.h>
95 #include <rpcsvc/rwall.h>
97 static struct timeval timeout
= { 25, 0 };
99 static char *makemsg(const char *);
102 main(int argc
, char **argv
)
110 if ((argc
< 2) || (argc
> 3)) {
111 (void)fprintf(stderr
,
112 "Usage: %s hostname <file>\n", getprogname());
119 * Create client "handle" used for calling MESSAGEPROG on the
120 * server designated on the command line. We tell the rpc package
121 * to use the "tcp" protocol when contacting the server.
123 cl
= clnt_create(wallhost
, WALLPROG
, WALLVERS
, "udp");
126 * Couldn't establish connection with server.
127 * Print error message and die.
129 clnt_pcreateerror(wallhost
);
133 mbuf
= makemsg(argv
[2]);
135 if (clnt_call(cl
, WALLPROC_WALL
, xdr_wrapstring
, (void *)&mbuf
,
136 xdr_void
, &res
, timeout
) != RPC_SUCCESS
) {
139 * An error occurred while calling the server.
140 * Print error message and die.
142 clnt_perror(cl
, wallhost
);
150 makemsg(const char *fname
)
162 char tmpname
[MAXPATHLEN
], lbuf
[BUFSIZ
], hostname
[MAXHOSTNAMELEN
+ 1];
164 (void)snprintf(tmpname
, sizeof(tmpname
), "%s/wall.XXXXXX", _PATH_TMP
);
165 if ((fd
= mkstemp(tmpname
)) == -1 || (fp
= fdopen(fd
, "r+")) == NULL
)
166 err(1, "Can't open temporary file");
167 (void)unlink(tmpname
);
169 if (!(whom
= getlogin()))
170 whom
= (pw
= getpwuid(getuid())) ? pw
->pw_name
: "???";
171 (void)gethostname(hostname
, sizeof(hostname
));
172 hostname
[sizeof(hostname
) - 1] = '\0';
174 lt
= localtime(&now
);
177 * all this stuff is to blank out a square for the message;
178 * we wrap message lines at column 79, not 80, because some
179 * terminals wrap after 79, some do not, and we can't tell.
180 * Which means that we may leave a non-blank character
181 * in column 80, but that can't be helped.
183 (void)fprintf(fp
, "Remote Broadcast Message from %s@%s\n",
185 tty
= ttyname(STDERR_FILENO
);
188 (void)fprintf(fp
, " (%s) at %d:%02d ...\n", tty
, lt
->tm_hour
,
191 (void)putc('\n', fp
);
193 if (fname
&& !(freopen(fname
, "r", stdin
)))
194 err(1, "Can't open `%s'", fname
);
195 while (fgets(lbuf
, sizeof(lbuf
), stdin
))
196 (void)fputs(lbuf
, fp
);
199 if (fstat(fd
, &sbuf
) == -1)
200 err(1, "Can't stat temporary file.");
201 mbufsize
= (size_t)sbuf
.st_size
;
202 if (!(mbuf
= malloc((u_int
)mbufsize
)))
204 if (fread(mbuf
, sizeof(*mbuf
), mbufsize
, fp
) != mbufsize
)
205 err(1, "Can't read temporary file.");