X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Fmount%2Fnetwork.c;h=8da57d9cb0bec897e812be76ff8ec96f90d28774;hp=c11fa3ea2dd72eb33b3e9c3c02d2fa507314dcc5;hb=66ab98cbd17f7f54edda78a470579d3ab01f35c0;hpb=0dfc8a5426381c6d65aed4d9d0e50bae3238cc8f diff --git a/utils/mount/network.c b/utils/mount/network.c index c11fa3e..8da57d9 100644 --- a/utils/mount/network.c +++ b/utils/mount/network.c @@ -316,3 +316,48 @@ version_fixed: goto out_bad; return probe_mntport(mnt_server); } + +static int probe_statd(void) +{ + struct sockaddr_in addr; + unsigned short port; + + memset(&addr, 0, sizeof(addr)); + addr.sin_family = AF_INET; + addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK); + port = getport(&addr, 100024, 1, IPPROTO_UDP); + + if (port == 0) + return 0; + addr.sin_port = htons(port); + + if (clnt_ping(&addr, 100024, 1, IPPROTO_UDP, NULL) <= 0) + return 0; + + return 1; +} + +/* + * Attempt to start rpc.statd + */ +int start_statd(void) +{ +#ifdef START_STATD + struct stat stb; +#endif + + if (probe_statd()) + return 1; + +#ifdef START_STATD + if (stat(START_STATD, &stb) == 0) { + if (S_ISREG(stb.st_mode) && (stb.st_mode & S_IXUSR)) { + system(START_STATD); + if (probe_statd()) + return 1; + } + } +#endif + + return 0; +}