2 * support/nfs/rpcmisc.c
4 * Miscellaneous functions for RPC startup and shutdown.
5 * This code is partially snarfed from rpcgen -s tcp -s udp,
6 * partly written by Mark Shand, Donald Becker, and Rick
7 * Sladkey. It was tweaked slightly by Olaf Kirch to be
8 * usable by both unfsd and mountd.
10 * This software may be used for any purpose provided
11 * the above copyright notice is retained. It is supplied
12 * as is, with no warranty expressed or implied.
19 #include <sys/types.h>
20 #include <sys/ioctl.h>
22 #include <sys/socket.h>
24 #include <rpc/pmap_clnt.h>
25 #include <netinet/in.h>
37 #if SIZEOF_SOCKLEN_T - 0 == 0
41 static void closedown(int sig);
42 int makesock(int port, int proto);
44 #define _RPCSVC_CLOSEDOWN 120
50 rpc_init(char *name, int prog, int vers,
51 void (*dispatch)(struct svc_req *, register SVCXPRT *),
54 struct sockaddr_in saddr;
59 asize = sizeof(saddr);
61 if (getsockname(0, (struct sockaddr *) &saddr, &asize) == 0
62 && saddr.sin_family == AF_INET) {
63 socklen_t ssize = sizeof (int);
65 if (getsockopt(0, SOL_SOCKET, SO_TYPE,
66 (char *)&fdtype, &ssize) == -1)
67 xlog(L_FATAL, "getsockopt failed: %s", strerror(errno));
68 /* inetd passes a UDP socket or a listening TCP socket.
69 * listen will fail on a connected TCP socket(passed by rsh).
71 if (!(fdtype == SOCK_STREAM && listen(0,5) == -1)) {
77 pmap_unset(prog, vers);
81 if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_DGRAM)) {
82 static SVCXPRT *last_transp = NULL;
84 if (_rpcpmstart == 0) {
86 && (!defport || defport == last_transp->xp_port)) {
92 else if ((sock = makesock(defport, IPPROTO_UDP)) < 0) {
93 xlog(L_FATAL, "%s: cannot make a UDP socket\n",
97 if (sock == RPC_ANYSOCK)
98 sock = svcudp_socket (prog, 1);
99 transp = svcudp_create(sock);
100 if (transp == NULL) {
101 xlog(L_FATAL, "cannot create udp service.");
104 if (!svc_register(transp, prog, vers, dispatch, IPPROTO_UDP)) {
105 xlog(L_FATAL, "unable to register (%s, %d, udp).",
108 last_transp = transp;
111 if ((_rpcfdtype == 0) || (_rpcfdtype == SOCK_STREAM)) {
112 static SVCXPRT *last_transp = NULL;
114 if (_rpcpmstart == 0) {
116 && (!defport || defport == last_transp->xp_port)) {
117 transp = last_transp;
122 else if ((sock = makesock(defport, IPPROTO_TCP)) < 0) {
123 xlog(L_FATAL, "%s: cannot make a TCP socket\n",
127 if (sock == RPC_ANYSOCK)
128 sock = svctcp_socket (prog, 1);
129 transp = svctcp_create(sock, 0, 0);
130 if (transp == NULL) {
131 xlog(L_FATAL, "cannot create tcp service.");
134 if (!svc_register(transp, prog, vers, dispatch, IPPROTO_TCP)) {
135 xlog(L_FATAL, "unable to register (%s, %d, tcp).",
138 last_transp = transp;
142 signal (SIGALRM, closedown);
143 alarm (_RPCSVC_CLOSEDOWN);
147 static void closedown(sig)
150 (void) signal(sig, closedown);
151 if (_rpcsvcdirty == 0) {
155 if (_rpcfdtype == SOCK_DGRAM)
158 size = getdtablesize();
160 for (i = 0, openfd = 0; i < size && openfd < 2; i++)
161 if (FD_ISSET(i, &svc_fdset))
166 (void) alarm(_RPCSVC_CLOSEDOWN);
169 int makesock(int port, int proto)
171 struct sockaddr_in sin;
176 sock_type = (proto == IPPROTO_UDP) ? SOCK_DGRAM : SOCK_STREAM;
177 s = socket(AF_INET, sock_type, proto);
179 xlog(L_FATAL, "Could not make a socket: %s\n",
183 memset((char *) &sin, 0, sizeof(sin));
184 sin.sin_family = AF_INET;
185 sin.sin_addr.s_addr = INADDR_ANY;
186 sin.sin_port = htons(port);
189 if (proto == IPPROTO_TCP)
190 if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
191 &val, sizeof(val)) < 0)
192 xlog(L_ERROR, "setsockopt failed: %s\n",
196 /* I was told it didn't work with gigabit ethernet.
197 Don't bothet with it. H.J. */
202 /* 1024 for rpc & transport overheads */
203 sblen = rblen = socksz + 1024;
204 if (setsockopt(s, SOL_SOCKET, SO_SNDBUF, &sblen, sizeof sblen) < 0 ||
205 setsockopt(s, SOL_SOCKET, SO_RCVBUF, &rblen, sizeof rblen) < 0)
206 xlog(L_ERROR, "setsockopt failed: %s\n", strerror(errno));
208 #endif /* SO_SNDBUF */
211 if (bind(s, (struct sockaddr *) &sin, sizeof(sin)) == -1) {
212 xlog(L_FATAL, "Could not bind name to socket: %s\n",
220 /* Log an incoming call. */
222 rpc_logcall(struct svc_req *rqstp, char *xname, char *arg)
225 int buflen=sizeof(buff);
230 if (!xlog_enabled(D_CALL))
234 switch (rqstp->rq_cred.oa_flavor) {
239 struct authunix_parms *unix_cred;
243 unix_cred = (struct authunix_parms *) rqstp->rq_clntcred;
244 time = unix_cred->aup_time;
245 tm = localtime(&time);
246 snprintf(sp, buflen, "UNIX %d/%d/%d %02d:%02d:%02d %s %d.%d",
247 tm->tm_year, tm->tm_mon + 1, tm->tm_mday,
248 tm->tm_hour, tm->tm_min, tm->tm_sec,
249 unix_cred->aup_machname,
256 if ((int) unix_cred->aup_len > 0) {
257 snprintf(sp, buflen, "+%d", unix_cred->aup_gids[0]);
262 for (i = 1; i < unix_cred->aup_len; i++) {
263 snprintf(sp, buflen, ",%d",
264 unix_cred->aup_gids[i]);
274 sprintf(sp, "CRED %d", rqstp->rq_cred.oa_flavor);
276 xlog(D_CALL, "%s [%s]\n\t%s\n", xname, buff, arg);