X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fnfs%2Fexports.c;h=0dce25ff9291dd28d0c4b608c50fe1cc289f9d62;hp=7e0decf0b4d12cb77b868aff7eb4f7b7a48f2f15;hb=de8fd61f8e692d5d8207d7c30e8914da05ca122f;hpb=0bd51f4c931eb68c355140c721763be64213a3ca diff --git a/support/nfs/exports.c b/support/nfs/exports.c index 7e0decf..0dce25f 100644 --- a/support/nfs/exports.c +++ b/support/nfs/exports.c @@ -29,7 +29,7 @@ #include "xio.h" #define EXPORT_DEFAULT_FLAGS \ - (NFSEXP_ASYNC|NFSEXP_READONLY|NFSEXP_ROOTSQUASH|NFSEXP_GATHERED_WRITES) + (NFSEXP_READONLY|NFSEXP_ROOTSQUASH|NFSEXP_GATHERED_WRITES) static char *efname = NULL; static XFILE *efp = NULL; @@ -117,10 +117,8 @@ getexportent(int fromkernel) return NULL; } *sp = '\0'; - if (parseopts(opt, &ee) < 0) - return NULL; } else { - xlog(L_WARNING, "No options for %s %s: suggest %s() to avoid warning", ee.e_path, exp, exp); + xlog(L_WARNING, "No options for %s %s: suggest %s(sync) to avoid warning", ee.e_path, exp, exp); } if (strlen(exp) >= sizeof(ee.e_hostname)) { syntaxerr("client name too long"); @@ -129,6 +127,9 @@ getexportent(int fromkernel) strncpy(ee.e_hostname, exp, sizeof (ee.e_hostname) - 1); ee.e_hostname[sizeof (ee.e_hostname) - 1] = '\0'; + if (parseopts(opt, &ee) < 0) + return NULL; + /* resolve symlinks */ if (realpath(ee.e_path, rpath) != NULL) { rpath[sizeof (rpath) - 1] = '\0'; @@ -266,7 +267,7 @@ mkexportent(char *hname, char *path, char *options) ee.e_path[sizeof (ee.e_path) - 1] = '\0'; strncpy (ee.m_path, ee.e_path, sizeof (ee.m_path) - 1); ee.m_path [sizeof (ee.m_path) - 1] = '\0'; - if (options && parseopts(options, &ee) < 0) + if (parseopts(options, &ee) < 0) return NULL; return ⅇ } @@ -274,7 +275,7 @@ mkexportent(char *hname, char *path, char *options) int updateexportent(struct exportent *eep, char *options) { - if (options && parseopts(options, eep) < 0) + if (parseopts(options, eep) < 0) return 0; return 1; } @@ -285,12 +286,17 @@ updateexportent(struct exportent *eep, char *options) static int parseopts(char *cp, struct exportent *ep) { + int had_sync_opt = 0; squids = ep->e_squids; nsquids = ep->e_nsquids; sqgids = ep->e_sqgids; nsqgids = ep->e_nsqgids; + if (!cp) + goto out; + while (isblank(*cp)) cp++; + while (*cp) { char *opt = strdup(cp); char *optstart = cp; @@ -310,11 +316,13 @@ parseopts(char *cp, struct exportent *ep) ep->e_flags &= ~NFSEXP_INSECURE_PORT; else if (!strcmp(opt, "insecure")) ep->e_flags |= NFSEXP_INSECURE_PORT; - else if (!strcmp(opt, "sync")) + else if (!strcmp(opt, "sync")) { + had_sync_opt = 1; ep->e_flags &= ~NFSEXP_ASYNC; - else if (!strcmp(opt, "async")) + } else if (!strcmp(opt, "async")) { + had_sync_opt = 1; ep->e_flags |= NFSEXP_ASYNC; - else if (!strcmp(opt, "nohide")) + } else if (!strcmp(opt, "nohide")) ep->e_flags |= NFSEXP_CROSSMNT; else if (!strcmp(opt, "hide")) ep->e_flags &= ~NFSEXP_CROSSMNT; @@ -383,6 +391,13 @@ parseopts(char *cp, struct exportent *ep) ep->e_nsquids = nsquids; ep->e_nsqgids = nsqgids; +out: + if (!had_sync_opt) + xlog(L_WARNING, "No 'sync' or 'async' option specified for export \"%s:%s\".\n" + " Assuming default behaviour ('sync').\n" + " NOTE: this default has changed from previous versions\n", + ep->e_hostname, ep->e_path); + return 1; }