X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fnfs%2Frpcmisc.c;h=b73187a488474c9acab462f0774bf1a65d689b17;hp=aa23601d465e6a969bbec29cf48bbcf83c9e079e;hb=6eba4e22ce2b10bcfb19fbb253f7e235afbaa406;hpb=2fd04076023d696e5e7ffa17998e9d32990e57bf diff --git a/support/nfs/rpcmisc.c b/support/nfs/rpcmisc.c index aa23601..b73187a 100644 --- a/support/nfs/rpcmisc.c +++ b/support/nfs/rpcmisc.c @@ -37,14 +37,76 @@ #define socklen_t int #endif -static void closedown(int sig); -static int makesock(int port, int proto); - #define _RPCSVC_CLOSEDOWN 120 int _rpcpmstart = 0; int _rpcfdtype = 0; int _rpcsvcdirty = 0; +static void +closedown(int sig) +{ + (void) signal(sig, closedown); + + if (_rpcsvcdirty == 0) { + static int size; + int i, openfd; + + if (_rpcfdtype == SOCK_DGRAM) + exit(0); + + if (size == 0) + size = getdtablesize(); + + for (i = 0, openfd = 0; i < size && openfd < 2; i++) + if (FD_ISSET(i, &svc_fdset)) + openfd++; + if (openfd <= 1) + exit(0); + } + + (void) alarm(_RPCSVC_CLOSEDOWN); +} + +/* + * Create listener socket for a given port + * + * Return an open network socket on success; otherwise return -1 + * if some error occurs. + */ +static int +makesock(int port, int proto) +{ + struct sockaddr_in sin; + int sock, sock_type, val; + + sock_type = (proto == IPPROTO_UDP) ? SOCK_DGRAM : SOCK_STREAM; + sock = socket(AF_INET, sock_type, proto); + if (sock < 0) { + xlog(L_FATAL, "Could not make a socket: %s", + strerror(errno)); + return -1; + } + memset((char *) &sin, 0, sizeof(sin)); + sin.sin_family = AF_INET; + sin.sin_addr.s_addr = htonl(INADDR_ANY); + sin.sin_port = htons(port); + + val = 1; + if (proto == IPPROTO_TCP) + if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, + &val, sizeof(val)) < 0) + xlog(L_ERROR, "setsockopt failed: %s", + strerror(errno)); + + if (bind(sock, (struct sockaddr *) &sin, sizeof(sin)) == -1) { + xlog(L_FATAL, "Could not bind name to socket: %s", + strerror(errno)); + return -1; + } + + return sock; +} + void rpc_init(char *name, int prog, int vers, void (*dispatch)(struct svc_req *, register SVCXPRT *), @@ -92,7 +154,7 @@ rpc_init(char *name, int prog, int vers, sock = makesock(defport, IPPROTO_UDP); } if (sock == RPC_ANYSOCK) - sock = svcudp_socket (prog, 1); + sock = svcudp_socket (prog); transp = svcudp_create(sock); if (transp == NULL) { xlog(L_FATAL, "cannot create udp service."); @@ -138,65 +200,3 @@ rpc_init(char *name, int prog, int vers, alarm(_RPCSVC_CLOSEDOWN); } } - -static void closedown(sig) -int sig; -{ - (void) signal(sig, closedown); - if (_rpcsvcdirty == 0) { - static int size; - int i, openfd; - - if (_rpcfdtype == SOCK_DGRAM) - exit(0); - if (size == 0) { - size = getdtablesize(); - } - for (i = 0, openfd = 0; i < size && openfd < 2; i++) - if (FD_ISSET(i, &svc_fdset)) - openfd++; - if (openfd <= 1) - exit(0); - } - (void) alarm(_RPCSVC_CLOSEDOWN); -} - -/* - * Create listener socket for a given port - * - * Return an open network socket on success; otherwise return -1 - * if some error occurs. - */ -static int -makesock(int port, int proto) -{ - struct sockaddr_in sin; - int sock, sock_type, val; - - sock_type = (proto == IPPROTO_UDP) ? SOCK_DGRAM : SOCK_STREAM; - sock = socket(AF_INET, sock_type, proto); - if (sock < 0) { - xlog(L_FATAL, "Could not make a socket: %s", - strerror(errno)); - return -1; - } - memset((char *) &sin, 0, sizeof(sin)); - sin.sin_family = AF_INET; - sin.sin_addr.s_addr = htonl(INADDR_ANY); - sin.sin_port = htons(port); - - val = 1; - if (proto == IPPROTO_TCP) - if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, - &val, sizeof(val)) < 0) - xlog(L_ERROR, "setsockopt failed: %s", - strerror(errno)); - - if (bind(sock, (struct sockaddr *) &sin, sizeof(sin)) == -1) { - xlog(L_FATAL, "Could not bind name to socket: %s", - strerror(errno)); - return -1; - } - - return sock; -}