From 6eba4e22ce2b10bcfb19fbb253f7e235afbaa406 Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Fri, 19 Apr 2013 13:09:27 -0400 Subject: [PATCH] mountd: fix exporting of "/" with sec= setting. Commit 91bb95f2689e84856ecdf6fac365489d36709cf9 4set_root: force "fsid=0" for all exports of '/' set NFSEXP_FSID for the export of "/" if nothing else had any fsid set, however it didn't also set the flag for all security flavours. So the kernel complains that the flags on the security flavours don't match and it rejects the export. So call fix_pseudoflavor_flags() in write_secinfo() to make sure that any fiddling that has been done to e_flags gets copied to e_secinfo. Signed-off-by: NeilBrown Signed-off-by: Steve Dickson --- support/include/exportfs.h | 1 + support/nfs/exports.c | 2 +- utils/mountd/cache.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 5960feb..1fbf754 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -177,6 +177,7 @@ struct export_features { }; struct export_features *get_export_features(void); +void fix_pseudoflavor_flags(struct exportent *ep); /* Record export error. */ extern int export_errno; diff --git a/support/nfs/exports.c b/support/nfs/exports.c index 6c08a2b..dea040f 100644 --- a/support/nfs/exports.c +++ b/support/nfs/exports.c @@ -469,7 +469,7 @@ static void clearflags(int mask, unsigned int active, struct exportent *ep) * ensure that the export flags agree with the flags on each * pseudoflavor: */ -static void fix_pseudoflavor_flags(struct exportent *ep) +void fix_pseudoflavor_flags(struct exportent *ep) { struct export_features *ef; struct sec_entry *p; diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index e1027f3..737927c 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -737,6 +737,7 @@ static void write_secinfo(FILE *f, struct exportent *ep, int flag_mask) /* There was no sec= option */ return; } + fix_pseudoflavor_flags(ep); qword_print(f, "secinfo"); qword_printint(f, p - ep->e_secinfo); for (p = ep->e_secinfo; p->flav; p++) { -- 2.39.2