diff options
author | neilbrown <neilbrown> | 1999-10-28 02:27:55 +0000 |
---|---|---|
committer | neilbrown <neilbrown> | 1999-10-28 02:27:55 +0000 |
commit | acc4cade1891c0b07f3e0016ff3c5b604b042c86 (patch) | |
tree | c319d7d853e4466f465192afd5bfce4f9ffd9cfc /support/export/rmtab.c | |
parent | 389610b2a817878802d25bd82919a79382b702ab (diff) | |
download | nfs-utils-acc4cade1891c0b07f3e0016ff3c5b604b042c86.tar.gz nfs-utils-acc4cade1891c0b07f3e0016ff3c5b604b042c86.tar.xz nfs-utils-acc4cade1891c0b07f3e0016ff3c5b604b042c86.zip |
Thu Oct 28 11:27:51 EST 1999 Neil Brown <neilb@cse.unsw.edu.au>
* support/include/nfs/export.h addedd NFSEXP_NOSUBTREECHECK
* support/nfs/exports.c: added {no_,}subtree_check and changed
crossmnt to nohide
* utils/exportfs/exports.man: added no_subtree_check and nohide
and removed irrelevant stuff from unfsd.
* support/export/rmtab.c: rmtab_read didn't quite do the right
thing if a pathname from rmtab was a subdirectory of an export-point
Diffstat (limited to 'support/export/rmtab.c')
-rw-r--r-- | support/export/rmtab.c | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/support/export/rmtab.c b/support/export/rmtab.c index 44a0edc..4d0bc02 100644 --- a/support/export/rmtab.c +++ b/support/export/rmtab.c @@ -25,28 +25,32 @@ rmtab_read(void) setrmtabent("r"); while ((rep = getrmtabent(1)) != NULL) { - exp = export_lookup(rep->r_client, rep->r_path); - if (!exp) { - struct exportent *xp; - struct hostent *hp; - int htype; - - htype = client_gettype(rep->r_client); - if (htype == MCL_FQDN - && (hp = gethostbyname (rep->r_client), hp) - && (hp = hostent_dup (hp), - xp = export_allowed (hp, rep->r_path))) { + struct exportent *xp; + struct hostent *hp = NULL; + int htype; + + htype = client_gettype(rep->r_client); + if (htype == MCL_FQDN + && (hp = gethostbyname (rep->r_client)) + && (hp = hostent_dup (hp), + xp = export_allowed (hp, rep->r_path))) { + /* see if the entry already exists, otherwise this was an instantiated + * wild card, and we must add it + */ + exp = export_lookup(rep->r_client, xp->e_path); + if (!exp) { strncpy (xp->e_hostname, rep->r_client, sizeof (xp->e_hostname) - 1); xp->e_hostname[sizeof (xp->e_hostname) -1] = '\0'; exp = export_create(xp); - free (hp); } + free (hp); if (!exp) continue; exp->m_mayexport = 1; - } + } else if (hp) /* export_allowed failed */ + free(hp); } if (errno == EINVAL) { /* Something goes wrong. We need to fix the rmtab |