2 * Copyright (c) 1993 Christopher G. Demetriou
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote
14 * products derived from this software without specific prior written
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * $FreeBSD: src/libexec/rpc.rwalld/rwalld.c,v 1.8 1999/08/28 00:09:57 peter Exp $
40 #include <rpcsvc/rwall.h>
41 #include <sys/socket.h>
42 #include <sys/types.h>
47 #define WALL_CMD "/usr/sbin/wall"
49 #define WALL_CMD "/usr/bin/wall -n"
55 static void usage (void);
61 main(int argc
, char *argv
[])
65 struct sockaddr_storage sa
;
67 if (argc
== 2 && !strcmp(argv
[1], "-n"))
69 if (argc
!= 1 && !nodaemon
)
73 struct passwd
*pep
= getpwnam("nobody");
81 * See if inetd started us
84 if (getsockname(0, (struct sockaddr
*)&sa
, &salen
) < 0) {
92 (void)rpcb_unset(WALLPROG
, WALLVERS
, NULL
);
95 (void)signal(SIGCHLD
, killkids
);
97 openlog("rpc.rwalld", LOG_CONS
|LOG_PID
, LOG_DAEMON
);
99 /* create and register the service */
101 transp
= svc_tli_create(0, NULL
, NULL
, 0, 0);
102 if (transp
== NULL
) {
103 syslog(LOG_ERR
, "couldn't create udp service.");
106 ok
= svc_reg(transp
, WALLPROG
, WALLVERS
,
109 ok
= svc_create(wallprog_1
,
110 WALLPROG
, WALLVERS
, "udp");
112 syslog(LOG_ERR
, "unable to register (WALLPROG, WALLVERS, %s)", (!from_inetd
)?"udp":"(inetd)");
116 syslog(LOG_ERR
, "svc_run returned");
123 fprintf(stderr
, "usage: rpc.rwalld [-n]\n");
136 while(wait4(-1, NULL
, WNOHANG
, NULL
) > 0)
141 wallproc_wall_1_svc(wrapstring
*s
, struct svc_req
*rqstp
)
143 static void *dummy
= NULL
;
145 /* fork, popen wall with special option, and send the message */
149 pfp
= popen(WALL_CMD
, "w");
151 fprintf(pfp
, "\007\007%s", *s
);
160 wallprog_1(struct svc_req
*rqstp
, SVCXPRT
*transp
)
163 char *wallproc_wall_1_arg
;
166 bool_t (*xdr_argument
)(), (*xdr_result
)();
169 switch (rqstp
->rq_proc
) {
171 (void)svc_sendreply(transp
, (xdrproc_t
)xdr_void
, NULL
);
175 xdr_argument
= xdr_wrapstring
;
176 xdr_result
= xdr_void
;
177 local
= (char *(*)()) wallproc_wall_1_svc
;
181 svcerr_noproc(transp
);
184 bzero((char *)&argument
, sizeof(argument
));
185 if (!svc_getargs(transp
, (xdrproc_t
)xdr_argument
, (caddr_t
)&argument
)) {
186 svcerr_decode(transp
);
189 result
= (*local
)(&argument
, rqstp
);
190 if (result
!= NULL
&&
191 !svc_sendreply(transp
, (xdrproc_t
)xdr_result
, result
)) {
192 svcerr_systemerr(transp
);
194 if (!svc_freeargs(transp
, (xdrproc_t
)xdr_argument
, (caddr_t
)&argument
)) {
195 syslog(LOG_ERR
, "unable to free arguments");