summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2011-09-27 00:41:52 +0000
committerroot <root>2011-09-27 00:41:52 +0000
commita8bec0f61c72db8719d737a36bb508fd82cac33c (patch)
tree080f5100e38c380b5cba86b14394731bd6e7a0fc
parentcc27acee86d3e99af25c51c5fb55f604dcd7aec4 (diff)
*** empty log message ***
-rw-r--r--Changes2
-rw-r--r--eio.c245
-rw-r--r--eio.h2
3 files changed, 134 insertions, 115 deletions
diff --git a/Changes b/Changes
index 5e532f8..4754fe5 100644
--- a/Changes
+++ b/Changes
@@ -63,4 +63,6 @@ TODO: fdopendir/utimensat
- remove useless use of volatile variables.
- fix memory leak when reaping threads.
- use utime now uses nanosecond resolution on posix 2008 systems.
+ - allow taking advantage of posix 2008 xxxat functions and fdopendir
+ by implementing a working directory abstraction.
diff --git a/eio.c b/eio.c
index db40003..aa567ac 100644
--- a/eio.c
+++ b/eio.c
@@ -60,12 +60,6 @@
#include <fcntl.h>
#include <assert.h>
-#if _POSIX_VERSION >= 200809L
-# define HAVE_AT 1
-#else
-# define HAVE_AT 0
-#endif
-
/* intptr_t comes from unistd.h, says POSIX/UNIX/tradition */
/* intptr_t only comes from stdint.h, says idiot openbsd coder */
#if HAVE_STDINT_H
@@ -320,6 +314,28 @@ tmpbuf_get (struct tmpbuf *buf, int len)
return buf->ptr;
}
+struct tmpbuf;
+
+#if _POSIX_VERSION >= 200809L
+ #define HAVE_AT 1
+ # define WD2FD(wd) ((wd) ? (wd)->fd : AT_FDCWD)
+ #ifndef O_SEARCH
+ #define O_SEARCH O_RDONLY
+ #endif
+#else
+ #define HAVE_AT 0
+ static const char *wd_expand (struct tmpbuf *tmpbuf, eio_wd wd, const char *path);
+#endif
+
+struct eio_pwd
+{
+#if HAVE_AT
+ int fd;
+#endif
+ int len;
+ char str[1]; /* actually, a 0-terminated canonical path */
+};
+
/*****************************************************************************/
#define ETP_PRI_MIN EIO_PRI_MIN
@@ -1368,21 +1384,6 @@ eio__mtouch (eio_req *req)
/*****************************************************************************/
/* requests implemented outside eio_execute, because they are so large */
-/* copies some absolute path to tmpbuf */
-static char *
-eio__getwd (struct tmpbuf *tmpbuf, eio_wd wd)
-{
- if (wd == EIO_CWD)
- return getcwd (tmpbuf->ptr, PATH_MAX);
-
-#if HAVE_AT
- abort (); /*TODO*/
-#else
- strcpy (tmpbuf->ptr, wd);
-#endif
- return tmpbuf->ptr;
-}
-
/* result will always end up in tmpbuf, there is always space for adding a 0-byte */
static int
eio__realpath (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
@@ -1396,8 +1397,6 @@ eio__realpath (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
int symlinks = 32;
#endif
- /*D*/ /*TODO: wd ignored */
-
errno = EINVAL;
if (!rel)
return -1;
@@ -1435,11 +1434,24 @@ eio__realpath (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
if (*rel != '/')
{
- if (!eio__getwd (tmpbuf, wd))
+ int len;
+
+ errno = ENOENT;
+ if (wd == EIO_INVALID_WD)
return -1;
+
+ if (wd == EIO_CWD)
+ {
+ if (!getcwd (res, PATH_MAX))
+ return -1;
+
+ len = strlen (res);
+ }
+ else
+ memcpy (res, wd->str, len = wd->len);
if (res [1]) /* only use if not / */
- res += strlen (res);
+ res += len;
}
while (*rel)
@@ -1696,7 +1708,7 @@ eio_dent_sort (eio_dirent *dents, int size, signed char score_bits, eio_ino_t in
/* read a full directory */
static void
-eio__scandir (eio_req *req)
+eio__scandir (eio_req *req, etp_worker *self)
{
char *name, *names;
int namesalloc = 4096 - sizeof (void *) * 4;
@@ -1724,15 +1736,16 @@ eio__scandir (eio_req *req)
int len = strlen ((const char *)req->ptr1);
char *path = malloc (MAX_PATH);
const char *fmt;
+ const char *reqpath = wd_expand (&self->tmpbuf, req->wd, req->ptr1);
if (!len)
fmt = "./*";
- else if (((const char *)req->ptr1)[len - 1] == '/' || ((const char *)req->ptr1)[len - 1] == '\\')
+ else if (reqpath[len - 1] == '/' || reqpath[len - 1] == '\\')
fmt = "%s*";
else
fmt = "%s/*";
- _snprintf (path, MAX_PATH, fmt, (const char *)req->ptr1);
+ _snprintf (path, MAX_PATH, fmt, reqpath);
dirp = FindFirstFile (path, &entp);
free (path);
@@ -1764,7 +1777,21 @@ eio__scandir (eio_req *req)
}
}
#else
- dirp = opendir (req->ptr1);
+ #if HAVE_AT
+ if (req->wd)
+ {
+ int fd = openat (WD2FD (req->wd), req->ptr1, O_CLOEXEC | O_SEARCH | O_DIRECTORY);
+
+ if (fd < 0)
+ return;
+
+ dirp = fdopendir (fd);
+ }
+ else
+ dirp = opendir (req->ptr1);
+ #else
+ dirp = opendir (wd_expand (&self->tmpbuf, req->wd, req->ptr1));
+ #endif
if (!dirp)
return;
@@ -1968,38 +1995,95 @@ eio__scandir (eio_req *req)
/*****************************************************************************/
/* working directory stuff */
+/* various deficiencies in the posix 2008 api force us to */
+/* keep the absolute path in string form at all times */
+/* fuck yeah. */
-#if HAVE_AT
+#if !HAVE_AT
-#define WD2FD(wd) ((wd) ? ((int)(long)(wd)) - 1 : AT_FDCWD)
+/* a bit like realpath, but usually faster because it doesn'T have to return */
+/* an absolute or canonical path */
+static const char *
+wd_expand (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
+{
+ if (!wd || *path == '/')
+ return path;
-#ifndef O_SEARCH
-# define O_SEARCH O_RDONLY
-#endif
+ if (path [0] == '.' && !path [1])
+ return wd->str;
-eio_wd
-eio_wd_open_sync (eio_wd wd, const char *path)
-{
- int fd = openat (WD2FD (wd), path, O_CLOEXEC | O_SEARCH | O_DIRECTORY);
+ {
+ int l1 = wd->len;
+ int l2 = strlen (path);
+
+ char *res = tmpbuf_get (tmpbuf, l1 + l2 + 2);
+
+ memcpy (res, wd->str, l1);
+ res [l1] = '/';
+ memcpy (res + l1 + 1, path, l2 + 1);
- return fd >= 0 ? (eio_wd)(long)(fd + 1) : EIO_INVALID_WD;
+ return res;
+ }
}
+#endif
+
static eio_wd
eio__wd_open_sync (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
{
- return eio_wd_open_sync (wd, path);
+ int fd;
+ eio_wd res;
+ int len = eio__realpath (tmpbuf, wd, path);
+
+ if (len < 0)
+ return EIO_INVALID_WD;
+
+#if HAVE_AT
+ fd = openat (WD2FD (wd), path, O_CLOEXEC | O_SEARCH | O_DIRECTORY);
+
+ if (fd < 0)
+ return EIO_INVALID_WD;
+#endif
+
+ res = malloc (sizeof (*res) + len); /* one extra 0-byte */
+
+#if HAVE_AT
+ res->fd = fd;
+#endif
+
+ res->len = len;
+ memcpy (res->str, tmpbuf->ptr, len);
+ res->str [len] = 0;
+
+ return res;
+}
+
+eio_wd
+eio_wd_open_sync (eio_wd wd, const char *path)
+{
+ struct tmpbuf tmpbuf = { 0 };
+ wd = eio__wd_open_sync (&tmpbuf, wd, path);
+ free (tmpbuf.ptr);
+
+ return wd;
}
void
eio_wd_close_sync (eio_wd wd)
{
- int fd = WD2FD (wd);
-
- if (fd >= 0)
- close (fd);
+ if (wd != EIO_INVALID_WD && wd != EIO_CWD)
+ {
+ #if HAVE_AT
+ close (wd->fd);
+ #endif
+ free (wd);
+ }
}
+#if HAVE_AT
+
+/* they forgot these */
+
static int
eio__truncateat (int dirfd, const char *path, off_t length)
{
@@ -2029,73 +2113,6 @@ eio__statvfsat (int dirfd, const char *path, struct statvfs *buf)
}
-#else
-
-/* on legacy systems, we represent the working directories simply by their path strings */
-
-static const char *
-wd_expand (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
-{
- if (!wd || *path == '/')
- return path;
-
- {
- int l1 = strlen ((const char *)wd);
- int l2 = strlen (path);
-
- char *res = tmpbuf_get (tmpbuf, l1 + l2 + 2);
-
- memcpy (res, wd, l1);
- res [l1] = '/';
- memcpy (res + l1 + 1, path, l2 + 1);
-
- return res;
- }
-}
-
-static eio_wd
-eio__wd_open_sync (struct tmpbuf *tmpbuf, eio_wd wd, const char *path)
-{
- if (*path == '/') /* absolute paths ignore wd */
- path = strdup (path);
- else if (path [0] == '.' && !path [1]) /* special case '.', as it is common */
- return wd;
- else
- {
- int len = eio__realpath (tmpbuf, wd, path);
-
- path = EIO_INVALID_WD;
-
- if (len >= 0)
- {
- ((char *)tmpbuf->ptr)[len] = 0;
- path = strdup (tmpbuf->ptr);
- }
- }
-
- if (!path)
- path = EIO_INVALID_WD;
-
- return (eio_wd)path;
-}
-
-eio_wd
-eio_wd_open_sync (eio_wd wd, const char *path)
-{
- struct tmpbuf tmpbuf = { 0 };
- wd = eio__wd_open_sync (&tmpbuf, wd, path);
- free (tmpbuf.ptr);
-
- return wd;
-}
-
-void
-eio_wd_close_sync (eio_wd wd)
-{
- if (wd != EIO_INVALID_WD)
- free (wd);
-}
-
#endif
/*****************************************************************************/
@@ -2306,8 +2323,8 @@ eio_execute (etp_worker *self, eio_req *req)
case EIO_UNLINK: req->result = unlinkat (dirfd, req->ptr1, 0); break;
case EIO_RMDIR: req->result = unlinkat (dirfd, req->ptr1, AT_REMOVEDIR); break;
case EIO_MKDIR: req->result = mkdirat (dirfd, req->ptr1, (mode_t)req->int2); break;
- case EIO_RENAME: req->result = renameat (dirfd, req->ptr1, WD2FD (req->int3), req->ptr2); break;
- case EIO_LINK: req->result = linkat (dirfd, req->ptr1, WD2FD (req->int3), req->ptr2, 0); break;
+ case EIO_RENAME: req->result = renameat (dirfd, req->ptr1, WD2FD ((eio_wd)req->int3), req->ptr2); break;
+ case EIO_LINK: req->result = linkat (dirfd, req->ptr1, WD2FD ((eio_wd)req->int3), req->ptr2, 0); break;
case EIO_SYMLINK: req->result = symlinkat (req->ptr1, dirfd, req->ptr2); break;
case EIO_MKNOD: req->result = mknodat (dirfd, req->ptr1, (mode_t)req->int2, (dev_t)req->offs); break;
case EIO_READLINK: ALLOC (PATH_MAX);
@@ -2417,7 +2434,7 @@ eio_execute (etp_worker *self, eio_req *req)
case EIO_MLOCKALL: req->result = eio__mlockall (req->int1); break;
case EIO_FALLOCATE: req->result = eio__fallocate (req->int1, req->int2, req->offs, req->size); break;
- case EIO_READDIR: eio__scandir (req); break;
+ case EIO_READDIR: eio__scandir (req, self); break;
case EIO_BUSY:
#ifdef _WIN32
diff --git a/eio.h b/eio.h
index 8342ad2..812a941 100644
--- a/eio.h
+++ b/eio.h
@@ -92,7 +92,7 @@ typedef int (*eio_cb)(eio_req *req);
/* managing working directories */
-typedef void *eio_wd;
+typedef struct eio_pwd *eio_wd;
#define EIO_CWD 0 /* the current working directory of the process, guaranteed to be a null pointer */
#define EIO_INVALID_WD ((eio_wd)(int)-1) /* failure return for eio_wd_open */