From: Jeff Layton <jlayton@redhat.com>
To: bfields@fieldses.org, steved@redhat.com
Cc: linux-nfs@vger.kernel.org
Subject: [PATCH v3 08/10] nfsdcld: allow daemon to wait for pipe to show up
Date: Wed, 21 Dec 2011 15:35:20 -0500 [thread overview]
Message-ID: <1324499722-10363-9-git-send-email-jlayton@redhat.com> (raw)
In-Reply-To: <1324499722-10363-1-git-send-email-jlayton@redhat.com>
Use inotify to set a watch for IN_CREATE events in the nfsd rpc_pipefs
directory. Then, try to open the pipe. If that fails with -ENOENT, then
wait for an inotify event. When one comes in, then retry opening the
pipe.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
configure.ac | 2 +-
utils/nfsdcld/nfsdcld.c | 55 +++++++++++++++++++++++++++++++++++++++++++---
2 files changed, 52 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index e43ec3e..2b202cb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -269,7 +269,7 @@ if test "$enable_nfsv4" = yes; then
AC_SQLITE3_VERS
if test "$enable_nfsdcld" = "yes"; then
- AC_CHECK_HEADERS([linux/nfsd/cld.h], ,
+ AC_CHECK_HEADERS([linux/nfsd/cld.h libgen.h sys/inotify.h], ,
AC_MSG_ERROR([Cannot find header needed for nfsdcld]))
if test "$libsqlite3_cv_is_recent" != "yes" ; then
diff --git a/utils/nfsdcld/nfsdcld.c b/utils/nfsdcld/nfsdcld.c
index b66fe39..d65b2c9 100644
--- a/utils/nfsdcld/nfsdcld.c
+++ b/utils/nfsdcld/nfsdcld.c
@@ -32,6 +32,8 @@
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
+#include <libgen.h>
+#include <sys/inotify.h>
#include <linux/nfsd/cld.h>
#include "xlog.h"
@@ -76,18 +78,63 @@ usage(char *progname)
printf("%s [ -hFd ] [ -p pipe ] [ -s dir ]\n", progname);
}
+#define INOTIFY_EVENT_MAX (sizeof(struct inotify_event) + NAME_MAX)
+
static int
cld_pipe_open(struct cld_client *clnt)
{
- clnt->cl_fd = open(pipepath, O_RDWR, 0);
- if (clnt->cl_fd < 0) {
- xlog(L_ERROR, "%s: unable to open %s: %m", __func__, pipepath);
- return clnt->cl_fd;
+ int ifd, wat;
+ ssize_t ret;
+ char *dirc, *dname, *event;
+
+ clnt->cl_fd = -1;
+ dirc = strndup(pipepath, PATH_MAX);
+ event = malloc(INOTIFY_EVENT_MAX);
+ if (!dirc || !event) {
+ xlog_err("%s: unable to allocate memory", __func__);
+ goto out_free;
+ }
+
+ dname = dirname(dirc);
+
+ ifd = inotify_init();
+ if (ifd < 0) {
+ xlog_err("%s: inotify_init failed: %m", __func__);
+ goto out_free;
+ }
+
+ wat = inotify_add_watch(ifd, dname, IN_CREATE);
+ if (wat < 0) {
+ xlog_err("%s: inotify_add_watch failed: %m", __func__);
+ goto out;
+ }
+
+ for (;;) {
+ errno = 0;
+ clnt->cl_fd = open(pipepath, O_RDWR, 0);
+ if (clnt->cl_fd >= 0)
+ break;
+ else if (errno != ENOENT) {
+ xlog_err("%s: unable to open %s: %m", __func__,
+ pipepath);
+ goto out;
+ }
+ ret = read(ifd, event, INOTIFY_EVENT_MAX);
+ if (ret < 0) {
+ xlog_err("%s: read from inotify fd failed: %m",
+ __func__);
+ goto out;
+ }
}
event_set(&clnt->cl_event, clnt->cl_fd, EV_READ, cldcb, clnt);
event_add(&clnt->cl_event, NULL);
+out:
+ close(ifd);
+out_free:
+ free(dirc);
+ free(event);
return clnt->cl_fd;
}
--
1.7.1
next prev parent reply other threads:[~2011-12-21 20:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-21 20:35 [PATCH v3 00/10] nfsdcld: add a daemon to track NFSv4 client names on stable storage Jeff Layton
2011-12-21 20:35 ` [PATCH v3 01/10] autoconf: fix up libevent autoconf test Jeff Layton
2011-12-21 20:35 ` [PATCH v3 02/10] nfsdcld: add client tracking daemon stub Jeff Layton
2011-12-21 20:35 ` [PATCH v3 03/10] nfsdcld: add autoconf goop for sqlite Jeff Layton
2011-12-21 20:35 ` [PATCH v3 04/10] nfsdcld: add routines for a sqlite backend database Jeff Layton
2011-12-21 20:35 ` [PATCH v3 05/10] nfsdcld: add remove functionality Jeff Layton
2011-12-21 20:35 ` [PATCH v3 06/10] nfsdcld: add check/update functionality Jeff Layton
2011-12-21 20:35 ` [PATCH v3 07/10] nfsdcld: add function to remove unreclaimed client records Jeff Layton
2011-12-21 20:35 ` Jeff Layton [this message]
2011-12-21 20:35 ` [PATCH v3 09/10] nfsdcld: add a manpage for nfsdcld Jeff Layton
2011-12-21 20:35 ` [PATCH v3 10/10] nfsdcld: update the README Jeff Layton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1324499722-10363-9-git-send-email-jlayton@redhat.com \
--to=jlayton@redhat.com \
--cc=bfields@fieldses.org \
--cc=linux-nfs@vger.kernel.org \
--cc=steved@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).