* configure.in (VERSION): Set to "0.1.7.5".
* configure: Regenerated.
* nfs-utils.spec: Updated.
* support/include/nfslib.h (exportent): Add a new field,
r_count, to count the number of mounts from a client.
(getrmtabent): Take a new argument for position in file.
(putrmtabent): Likewise.
(fgetrmtabent): Likewise.
(fputrmtabent): Likewise.
* support/nfs/rmtab.c (getrmtabent): Handle the new argument
for position in file.
(fgetrmtabent): Likewise.
(putrmtabent): Likewise.
(fputrmtabent): Likewise.
* support/nfs/rmtab.c (fgetrmtabent): Get value for the new
field, r_count.
* support/export/rmtab.c (rmtab_read): Pass NULL as the new
argument to getrmtabent (), fgetrmtabent (), putrmtabent ()
and fputrmtabent ().
* utils/mountd/rmtab.c (mountlist_add): Likewise.
(mountlist_del): Likewise.
(mountlist_del_all): Likewise.
(mountlist_list): Likewise.
* utils/mountd/rmtab.c (mountlist_add): Increment "r_count"
for the existing entry and initialize "r_count" to 1.
(mountlist_del): Decrement "r_count".
+2000-05-31 H.J. Lu <hjl@lucon.org>
+
+ * configure.in (VERSION): Set to "0.1.7.5".
+ * configure: Regenerated.
+ * nfs-utils.spec: Updated.
+
+ * support/include/nfslib.h (exportent): Add a new field,
+ r_count, to count the number of mounts from a client.
+ (getrmtabent): Take a new argument for position in file.
+ (putrmtabent): Likewise.
+ (fgetrmtabent): Likewise.
+ (fputrmtabent): Likewise.
+ * support/nfs/rmtab.c (getrmtabent): Handle the new argument
+ for position in file.
+ (fgetrmtabent): Likewise.
+ (putrmtabent): Likewise.
+ (fputrmtabent): Likewise.
+
+ * support/nfs/rmtab.c (fgetrmtabent): Get value for the new
+ field, r_count.
+
+ * support/export/rmtab.c (rmtab_read): Pass NULL as the new
+ argument to getrmtabent (), fgetrmtabent (), putrmtabent ()
+ and fputrmtabent ().
+ * utils/mountd/rmtab.c (mountlist_add): Likewise.
+ (mountlist_del): Likewise.
+ (mountlist_del_all): Likewise.
+ (mountlist_list): Likewise.
+
+ * utils/mountd/rmtab.c (mountlist_add): Increment "r_count"
+ for the existing entry and initialize "r_count" to 1.
+ (mountlist_del): Decrement "r_count".
+
2000-05-18 H.J. Lu <hjl@lucon.org>
* configure.in (VERSION): Set to "0.1.7.4".
# The nfs-utils version
-VERSION="0.1.7.4"
+VERSION="0.1.7.5"
# Check whether --with-statedir or --without-statedir was given.
AC_PREFIX_DEFAULT(/usr)
# The nfs-utils version
-VERSION="0.1.7.4"
+VERSION="0.1.7.5"
AC_SUBST(VERSION)
dnl *************************************************************
Summary: NFS utlilities and supporting daemons for the kernel NFS server.
Name: nfs-utils
-Version: 0.1.7.4
+Version: 0.1.7.5
Release: 1
Source0: ftp://nfs.sourceforge.net/pub/nfs/%{name}-%{version}.tar.gz
Group: System Environment/Daemons
nfs_export *exp;
setrmtabent("r");
- while ((rep = getrmtabent(1)) != NULL) {
+ while ((rep = getrmtabent(1, NULL)) != NULL) {
struct exportent *xp;
struct hostent *hp = NULL;
int htype;
xfunlock(lockid);
return -1;
}
- while ((rep = getrmtabent(0)) != NULL) {
- fputrmtabent(fp, rep);
+ while ((rep = getrmtabent(0, NULL)) != NULL) {
+ fputrmtabent(fp, rep, NULL);
}
if (rename(_PATH_RMTABTMP, _PATH_RMTAB) < 0) {
xlog(L_ERROR, "couldn't rename %s to %s",
struct rmtabent {
char r_client[NFSCLNT_IDMAX+1];
char r_path[NFS_MAXPATHLEN+1];
+ int r_count;
};
/*
int updateexportent(struct exportent *eep, char *options);
int setrmtabent(char *type);
-struct rmtabent * getrmtabent(int log);
-void putrmtabent(struct rmtabent *xep);
+struct rmtabent * getrmtabent(int log, long *pos);
+void putrmtabent(struct rmtabent *xep, long *pos);
void endrmtabent(void);
void rewindrmtabent(void);
FILE * fsetrmtabent(char *fname, char *type);
-struct rmtabent * fgetrmtabent(FILE *fp, int log);
-void fputrmtabent(FILE *fp, struct rmtabent *xep);
+struct rmtabent * fgetrmtabent(FILE *fp, int log, long *pos);
+void fputrmtabent(FILE *fp, struct rmtabent *xep, long *pos);
void fendrmtabent(FILE *fp);
void frewindrmtabent(FILE *fp);
}
struct rmtabent *
-getrmtabent(int log)
+getrmtabent(int log, long *pos)
{
- return fgetrmtabent(rmfp, log);
+ return fgetrmtabent(rmfp, log, pos);
}
struct rmtabent *
-fgetrmtabent(FILE *fp, int log)
+fgetrmtabent(FILE *fp, int log, long *pos)
{
static struct rmtabent re;
- char buf[2048], *sp;
+ char buf[2048], *count, *host, *path;
errno = 0;
if (!fp)
return NULL;
do {
+ if (pos)
+ *pos = ftell (fp);
if (fgets(buf, sizeof(buf)-1, fp) == NULL)
return NULL;
- if ((sp = strchr(buf, '\n')) != NULL)
- *sp = '\0';
- if (!(sp = strchr(buf, ':'))) {
+ host = buf;
+ if ((path = strchr(host, '\n')) != NULL)
+ *path = '\0';
+ if (!(path = strchr(host, ':'))) {
if (log)
xlog(L_ERROR, "malformed entry in rmtab file");
errno = EINVAL;
return NULL;
}
- *sp++ = '\0';
+ *path++ = '\0';
+ count = strchr(path, ':');
+ if (count) {
+ *count++ = '\0';
+ re.r_count = strtol (count, NULL, 0);
+ }
+ else
+ re.r_count = 1;
} while (0);
- strncpy(re.r_client, buf, sizeof (re.r_client) - 1);
+ strncpy(re.r_client, host, sizeof (re.r_client) - 1);
re.r_client[sizeof (re.r_client) - 1] = '\0';
- strncpy(re.r_path, sp, sizeof (re.r_path) - 1);
+ strncpy(re.r_path, path, sizeof (re.r_path) - 1);
re.r_path[sizeof (re.r_path) - 1] = '\0';
return &re;
}
void
-putrmtabent(struct rmtabent *rep)
+putrmtabent(struct rmtabent *rep, long *pos)
{
- fputrmtabent(rmfp, rep);
+ fputrmtabent(rmfp, rep, pos);
}
void
-fputrmtabent(FILE *fp, struct rmtabent *rep)
+fputrmtabent(FILE *fp, struct rmtabent *rep, long *pos)
{
- if (!fp)
+ if (!fp || (pos && fseek (fp, *pos, SEEK_SET) != 0))
return;
- fprintf(fp, "%s:%s\n", rep->r_client, rep->r_path);
+ fprintf(fp, "%s:%s:0x%.8x\n", rep->r_client, rep->r_path,
+ rep->r_count);
}
void
struct rmtabent xe;
struct rmtabent *rep;
int lockid;
+ long pos;
if ((lockid = xflock(_PATH_RMTAB, "a")) < 0)
return;
- setrmtabent("r");
- while ((rep = getrmtabent(1)) != NULL) {
+ setrmtabent("r+");
+ while ((rep = getrmtabent(1, &pos)) != NULL) {
if (strcmp (rep->r_client,
exp->m_client->m_hostname) == 0
&& strcmp(rep->r_path, path) == 0) {
+ rep->r_count++;
+ putrmtabent(rep, &pos);
endrmtabent();
xfunlock(lockid);
return;
xe.r_client [sizeof (xe.r_client) - 1] = '\0';
strncpy(xe.r_path, path, sizeof (xe.r_path) - 1);
xe.r_path [sizeof (xe.r_path) - 1] = '\0';
+ xe.r_count = 1;
if (setrmtabent("a")) {
- putrmtabent(&xe);
+ putrmtabent(&xe, NULL);
endrmtabent();
}
xfunlock(lockid);
FILE *fp;
char *hname = exp->m_client->m_hostname;
int lockid;
+ int match;
if ((lockid = xflock(_PATH_RMTAB, "w")) < 0)
return;
xfunlock(lockid);
return;
}
- while ((rep = getrmtabent(1)) != NULL) {
- if (strcmp (rep->r_client, hname)
- || strcmp(rep->r_path, path))
- fputrmtabent(fp, rep);
+ while ((rep = getrmtabent(1, NULL)) != NULL) {
+ match = !strcmp (rep->r_client, hname)
+ && !strcmp(rep->r_path, path);
+ if (match)
+ rep->r_count--;
+ if (!match || rep->r_count)
+ fputrmtabent(fp, rep, NULL);
}
if (rename(_PATH_RMTABTMP, _PATH_RMTAB) < 0) {
xlog(L_ERROR, "couldn't rename %s to %s",
free (hp);
return;
}
- while ((rep = getrmtabent(1)) != NULL) {
+ while ((rep = getrmtabent(1, NULL)) != NULL) {
if (strcmp(rep->r_client, hp->h_name) == 0 &&
(exp = auth_authenticate("umountall", sin, rep->r_path))) {
export_reset(exp);
continue;
}
- fputrmtabent(fp, rep);
+ fputrmtabent(fp, rep, NULL);
}
if (rename(_PATH_RMTABTMP, _PATH_RMTAB) < 0) {
xlog(L_ERROR, "couldn't rename %s to %s",
last_mtime = stb.st_mtime;
setrmtabent("r");
- while ((rep = getrmtabent(1)) != NULL) {
+ while ((rep = getrmtabent(1, NULL)) != NULL) {
m = (mountlist) xmalloc(sizeof(*m));
m->ml_hostname = xstrdup(rep->r_client);
m->ml_directory = xstrdup(rep->r_path);