return 0;
}
-static int probe_statd()
-{
- struct sockaddr_in addr;
- u_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;
-}
-
-static int start_statd()
-{
- /* If /var/run/rpc.statd.pid exists and is non-empty,
- * assume statd already running.
- * If START_STATD not defined, or defined to a non-existent file,
- * don't bother,
- * else run that file (typically a shell script)
- */
- struct stat stb;
-
- if (probe_statd())
- return 1;
-#ifdef START_STATD
- if (stat(START_STATD, &stb) ==0 &&
- S_ISREG(stb.st_mode) &&
- (stb.st_mode & S_IXUSR)) {
- system(START_STATD);
- if (probe_statd())
- return 1;
- }
-#endif
- return 0;
-}
-
int main(int argc, char *argv[])
{
int c, flags = 0, mnt_err = 1, fake = 0;
if (strcmp(fs_type, "nfs4") == 0)
mnt_err = nfs4mount(spec, mount_point, &flags, &extra_opts, &mount_opts, 0);
- else {
- int need_statd = 0;
+ else
mnt_err = nfsmount(spec, mount_point, &flags,
&extra_opts, &mount_opts,
- 0, &need_statd);
- if (!mnt_err && !fake && need_statd) {
- if (!start_statd()) {
- fprintf(stderr,
- "%s: rpc.statd is not running but is "
- "required for remote locking\n"
- " Either use \"-o nolocks\" to keep "
- "locks local, or start statd.\n",
- progname);
- exit(1);
- }
- }
- }
+ 0, fake);
if (mnt_err)
exit(EX_FAIL);
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;
+}
#include "conn.h"
int nfs_gethostbyname(const char *, struct sockaddr_in *);
-unsigned short getport(struct sockaddr_in *, unsigned long,
- unsigned long, unsigned int);
+
int probe_mntport(clnt_addr_t *);
int probe_nfsport(clnt_addr_t *);
int probe_bothports(clnt_addr_t *, clnt_addr_t *);
+
+int start_statd(void);
#endif
int nfsmount(const char *, const char *, int *, char **, char **,
- int, int *);
+ int, int);
#endif /* _NFS_MOUNT_H */
} mntres_t;
extern int nfs_mount_data_version;
+extern char *progname;
extern int verbose;
extern int sloppy;
int
nfsmount(const char *spec, const char *node, int *flags,
char **extra_opts, char **mount_opts,
- int running_bg, int *need_statd)
+ int running_bg, int fake)
{
static char *prev_bg_host;
char hostdir[1024];
strcat(new_opts, cbuf);
*extra_opts = xstrdup(new_opts);
- *need_statd = ! (data.flags & NFS_MOUNT_NONLM);
+
+ if (!fake && !(data.flags & NFS_MOUNT_NONLM)) {
+ if (!start_statd()) {
+ nfs_error(_("%s: rpc.statd is not running but is "
+ "required for remote locking.\n"
+ " Either use '-o nolocks' to keep "
+ "locks local, or start statd."),
+ progname);
+ goto fail;
+ }
+ }
+
return 0;
/* abort */