1 /*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1993 Christopher G. Demetriou 5 * Copyright (c) 1988, 1990 Regents of the University of California. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by the University of 19 * California, Berkeley and its contributors. 20 * 4. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 */ 36 37 #ifndef lint 38 static const char copyright[] = 39 "@(#) Copyright (c) 1988 Regents of the University of California.\n\ 40 All rights reserved.\n"; 41 #endif /* not lint */ 42 43 #ifndef lint 44 static const char sccsid[] = "from: @(#)wall.c 5.14 (Berkeley) 3/2/91"; 45 #endif 46 47 #include <sys/cdefs.h> 48 /* 49 * This program is not related to David Wall, whose Stanford Ph.D. thesis 50 * is entitled "Mechanisms for Broadcast and Selective Broadcast". 51 */ 52 53 #include <sys/param.h> 54 #include <sys/stat.h> 55 #include <sys/uio.h> 56 #include <rpc/rpc.h> 57 #include <rpcsvc/rwall.h> 58 #include <err.h> 59 #include <paths.h> 60 #include <pwd.h> 61 #include <stdio.h> 62 #include <stdlib.h> 63 #include <string.h> 64 #include <time.h> 65 #include <unistd.h> 66 67 static char *mbuf; 68 69 static char notty[] = "no tty"; 70 71 static void makemsg(const char *); 72 static void usage(void) __dead2; 73 74 /* ARGSUSED */ 75 int 76 main(int argc, char *argv[]) 77 { 78 char *wallhost, res; 79 CLIENT *cl; 80 struct timeval tv; 81 82 if ((argc < 2) || (argc > 3)) 83 usage(); 84 85 wallhost = argv[1]; 86 87 makemsg(argv[2]); 88 89 /* 90 * Create client "handle" used for calling MESSAGEPROG on the 91 * server designated on the command line. We tell the rpc package 92 * to use the "tcp" protocol when contacting the server. 93 */ 94 cl = clnt_create(wallhost, WALLPROG, WALLVERS, "udp"); 95 if (cl == NULL) { 96 /* 97 * Couldn't establish connection with server. 98 * Print error message and die. 99 */ 100 errx(1, "%s", clnt_spcreateerror(wallhost)); 101 } 102 103 tv.tv_sec = 15; /* XXX ?? */ 104 tv.tv_usec = 0; 105 if (clnt_call(cl, WALLPROC_WALL, (xdrproc_t)xdr_wrapstring, &mbuf, 106 (xdrproc_t)xdr_void, &res, tv) != RPC_SUCCESS) { 107 /* 108 * An error occurred while calling the server. 109 * Print error message and die. 110 */ 111 errx(1, "%s", clnt_sperror(cl, wallhost)); 112 } 113 114 return (0); 115 } 116 117 static void 118 usage(void) 119 { 120 fprintf(stderr, "usage: rwall host [file]\n"); 121 exit(1); 122 } 123 124 static void 125 makemsg(const char *fname) 126 { 127 struct tm *lt; 128 struct passwd *pw; 129 struct stat sbuf; 130 time_t now; 131 FILE *fp; 132 int fd; 133 size_t mbufsize; 134 char *tty, hostname[MAXHOSTNAMELEN], lbuf[256], tmpname[64]; 135 const char *whom; 136 137 snprintf(tmpname, sizeof(tmpname), "%s/wall.XXXXXX", _PATH_TMP); 138 if ((fd = mkstemp(tmpname)) == -1 || (fp = fdopen(fd, "r+")) == NULL) 139 err(1, "can't open temporary file"); 140 unlink(tmpname); 141 142 whom = getlogin(); 143 if (!whom) { 144 pw = getpwuid(getuid()); 145 whom = pw ? pw->pw_name : "???"; 146 } 147 gethostname(hostname, sizeof(hostname)); 148 time(&now); 149 lt = localtime(&now); 150 151 /* 152 * all this stuff is to blank out a square for the message; 153 * we wrap message lines at column 79, not 80, because some 154 * terminals wrap after 79, some do not, and we can't tell. 155 * Which means that we may leave a non-blank character 156 * in column 80, but that can't be helped. 157 */ 158 fprintf(fp, "Remote Broadcast Message from %s@%s\n", 159 whom, hostname); 160 tty = ttyname(STDERR_FILENO); 161 if (tty == NULL) 162 tty = notty; 163 fprintf(fp, " (%s) at %d:%02d ...\n", tty, 164 lt->tm_hour, lt->tm_min); 165 166 putc('\n', fp); 167 168 if (fname && !(freopen(fname, "r", stdin))) 169 err(1, "can't read %s", fname); 170 while (fgets(lbuf, sizeof(lbuf), stdin)) 171 fputs(lbuf, fp); 172 rewind(fp); 173 174 if (fstat(fd, &sbuf)) 175 err(1, "can't stat temporary file"); 176 mbufsize = (size_t)sbuf.st_size; 177 mbuf = malloc(mbufsize); 178 if (mbuf == NULL) 179 err(1, "out of memory"); 180 if (fread(mbuf, sizeof(*mbuf), mbufsize, fp) != (u_int)mbufsize) 181 err(1, "can't read temporary file"); 182 close(fd); 183 } 184