summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2011-09-26 16:54:25 +0000
committerroot <root>2011-09-26 16:54:25 +0000
commit85e20119f3aa5693101350fe5674d3e7d8b39f92 (patch)
tree6dc20b89839ee987824236c00bbe45f15e7cac38
parenta32e991129f96e98d1522356d3a2e51eae0194f6 (diff)
preliminary wd support
-rw-r--r--Changes1
-rw-r--r--ecb.h20
-rw-r--r--eio.c298
-rw-r--r--eio.h49
-rw-r--r--eio.pod8
5 files changed, 299 insertions, 77 deletions
diff --git a/Changes b/Changes
index 9d3e323..e3be8a2 100644
--- a/Changes
+++ b/Changes
@@ -5,6 +5,7 @@ TODO: openbsd requires stdint.h for intptr_t - why posix?
TODO: make mtouch/readdir maybe others cancellable in-request
TODO: fadvise request
+TODO: ***at/fdopendir via alloc_cwd, free_cwd
1.0
- fix a deadlock where a wakeup signal could be missed when
a timeout occured at the same time.
diff --git a/ecb.h b/ecb.h
index 0b4541e..1a48290 100644
--- a/ecb.h
+++ b/ecb.h
@@ -73,7 +73,7 @@
#endif
#ifndef ECB_MEMORY_FENCE
- #if ECB_GCC_VERSION(2,5)
+ #if ECB_GCC_VERSION(2,5) || defined(__INTEL_COMPILER) || defined(__clang__)
#if __i386__
#define ECB_MEMORY_FENCE __asm__ __volatile__ ("lock; orb $0, -1(%%esp)" : : : "memory")
#define ECB_MEMORY_FENCE_ACQUIRE ECB_MEMORY_FENCE /* non-lock xchg might be enough */
@@ -95,7 +95,7 @@
#endif
#ifndef ECB_MEMORY_FENCE
- #if ECB_GCC_VERSION(4,4) || defined(__INTEL_COMPILER)
+ #if ECB_GCC_VERSION(4,4) || defined(__INTEL_COMPILER) || defined(__clang__)
#define ECB_MEMORY_FENCE __sync_synchronize ()
/*#define ECB_MEMORY_FENCE_ACQUIRE ({ char dummy = 0; __sync_lock_test_and_set (&dummy, 1); }) */
/*#define ECB_MEMORY_FENCE_RELEASE ({ char dummy = 1; __sync_lock_release (&dummy ); }) */
@@ -375,6 +375,22 @@ ecb_function_ ecb_bool ecb_little_endian (void) { return ecb_byteorder_helper ()
#define ecb_mod(m,n) ((m) < 0 ? ((n) - 1 - ((-1 - (m)) % (n))) : ((m) % (n)))
#endif
+#if __cplusplus
+ template<typename T>
+ static inline T ecb_div_rd (T val, T div)
+ {
+ return val < 0 ? - ((-val + div - 1) / div) : (val ) / div;
+ }
+ template<typename T>
+ static inline T ecb_div_ru (T val, T div)
+ {
+ return val < 0 ? - ((-val ) / div) : (val + div - 1) / div;
+ }
+#else
+ #define ecb_div_rd(val,div) ((val) < 0 ? - ((-(val) + (div) - 1) / (div)) : ((val) ) / (div))
+ #define ecb_div_ru(val,div) ((val) < 0 ? - ((-(val) ) / (div)) : ((val) + (div) - 1) / (div))
+#endif
+
#if ecb_cplusplus_does_not_suck
/* does not work for local types (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm) */
template<typename T, int N>
diff --git a/eio.c b/eio.c
index 235eafa..3655c76 100644
--- a/eio.c
+++ b/eio.c
@@ -294,6 +294,28 @@ static void eio_destroy (eio_req *req);
#define EIO_TICKS ((1000000 + 1023) >> 10)
+/*****************************************************************************/
+
+struct tmpbuf
+{
+ void *ptr;
+ int len;
+};
+
+static void *
+tmpbuf_get (struct tmpbuf *buf, int len)
+{
+ if (buf->len < len)
+ {
+ free (buf->ptr);
+ buf->ptr = malloc (buf->len = len);
+ }
+
+ return buf->ptr;
+}
+
+/*****************************************************************************/
+
#define ETP_PRI_MIN EIO_PRI_MIN
#define ETP_PRI_MAX EIO_PRI_MAX
@@ -348,14 +370,13 @@ static xmutex_t preadwritelock;
typedef struct etp_worker
{
+ struct tmpbuf tmpbuf;
+
/* locked by wrklock */
struct etp_worker *prev, *next;
xthread_t tid;
- /* locked by reslock, reqlock or wrklock */
- ETP_REQ *req; /* currently processed request */
-
#ifdef ETP_WORKER_COMMON
ETP_WORKER_COMMON
#endif
@@ -376,6 +397,8 @@ etp_worker_clear (etp_worker *wrk)
static void ecb_cold
etp_worker_free (etp_worker *wrk)
{
+ free (wrk->tmpbuf.ptr);
+
wrk->next->prev = wrk->prev;
wrk->prev->next = wrk->next;
@@ -1339,10 +1362,26 @@ eio__mtouch (eio_req *req)
/*****************************************************************************/
/* requests implemented outside eio_execute, because they are so large */
-static void
-eio__realpath (eio_req *req, etp_worker *self)
+/* 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)
{
- char *rel = req->ptr1;
+ const char *rel = path;
char *res;
char *tmp1, *tmp2;
#if SYMLOOP_MAX > 32
@@ -1351,29 +1390,17 @@ eio__realpath (eio_req *req, etp_worker *self)
int symlinks = 32;
#endif
- req->result = -1;
+ /*D*/ /*TODO: wd ignored */
errno = EINVAL;
if (!rel)
- return;
+ return -1;
errno = ENOENT;
if (!*rel)
- return;
-
- if (!req->ptr2)
- {
- X_LOCK (wrklock);
- req->flags |= EIO_FLAG_PTR2_FREE;
- X_UNLOCK (wrklock);
- req->ptr2 = malloc (PATH_MAX * 3);
-
- errno = ENOMEM;
- if (!req->ptr2)
- return;
- }
+ return -1;
- res = req->ptr2;
+ res = tmpbuf_get (tmpbuf, PATH_MAX * 3);
tmp1 = res + PATH_MAX;
tmp2 = tmp1 + PATH_MAX;
@@ -1402,8 +1429,8 @@ eio__realpath (eio_req *req, etp_worker *self)
if (*rel != '/')
{
- if (!getcwd (res, PATH_MAX))
- return;
+ if (!eio__getwd (tmpbuf, wd))
+ return -1;
if (res [1]) /* only use if not / */
res += strlen (res);
@@ -1412,7 +1439,7 @@ eio__realpath (eio_req *req, etp_worker *self)
while (*rel)
{
eio_ssize_t len, linklen;
- char *beg = rel;
+ const char *beg = rel;
while (*rel && *rel != '/')
++rel;
@@ -1434,7 +1461,7 @@ eio__realpath (eio_req *req, etp_worker *self)
{
/* .. - back up one component, if possible */
- while (res != req->ptr2)
+ while (res != tmpbuf->ptr)
if (*--res == '/')
break;
@@ -1454,12 +1481,12 @@ eio__realpath (eio_req *req, etp_worker *self)
res [len + 1] = 0;
/* now check if it's a symlink */
- linklen = readlink (req->ptr2, tmp1, PATH_MAX);
+ linklen = readlink (tmpbuf->ptr, tmp1, PATH_MAX);
if (linklen < 0)
{
if (errno != EINVAL)
- return;
+ return -1;
/* it's a normal directory. hopefully */
res += len + 1;
@@ -1471,14 +1498,14 @@ eio__realpath (eio_req *req, etp_worker *self)
errno = ENAMETOOLONG;
if (linklen + 1 + rellen >= PATH_MAX)
- return;
+ return -1;
errno = ELOOP;
if (!--symlinks)
- return;
+ return -1;
if (*tmp1 == '/')
- res = req->ptr2; /* symlink resolves to an absolute path */
+ res = tmpbuf->ptr; /* symlink resolves to an absolute path */
/* we need to be careful, as rel might point into tmp2 already */
memmove (tmp2 + linklen + 1, rel, rellen + 1);
@@ -1490,13 +1517,10 @@ eio__realpath (eio_req *req, etp_worker *self)
}
/* special case for the lone root path */
- if (res == req->ptr2)
+ if (res == tmpbuf->ptr)
*res++ = '/';
- req->result = res - (char *)req->ptr2;
-
-done:
- req->ptr2 = realloc (req->ptr2, req->result); /* trade time for space savings */
+ return res - (char *)tmpbuf->ptr;
}
static signed char
@@ -1666,7 +1690,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, etp_worker *self)
+eio__scandir (eio_req *req)
{
char *name, *names;
int namesalloc = 4096 - sizeof (void *) * 4;
@@ -1937,6 +1961,99 @@ eio__scandir (eio_req *req, etp_worker *self)
}
/*****************************************************************************/
+/* working directory stuff */
+
+#if HAVE_AT
+
+#define WD2FD(wd) (wd ? ((int)wd) - 1 : AT_FDCWD)
+
+eio_wd
+eio_wd_open_sync (eio_wd wd, const char *path)
+{
+ int fd = openat (WD2FD (wd), path, O_CLOEXEC | O_SEARCH | O_DIRECTORY);
+
+ return fd >= 0 ? (eio_wd)(fd + 1) : EIO_INVALID_WD;
+}
+
+void
+eio_wd_close_sync (eio_wd wd)
+{
+ int fd = WD2FD (wd);
+
+ if (fd >= 0)
+ close (fd);
+}
+
+#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;
+ }
+}
+
+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
+
+/*****************************************************************************/
#define ALLOC(len) \
if (!req->ptr2) \
@@ -1974,7 +2091,7 @@ X_THREAD_PROC (etp_proc)
for (;;)
{
- self->req = req = reqq_shift (&req_queue);
+ req = reqq_shift (&req_queue);
if (req)
break;
@@ -2022,13 +2139,14 @@ X_THREAD_PROC (etp_proc)
if (!reqq_push (&res_queue, req) && want_poll_cb)
want_poll_cb ();
- self->req = 0;
etp_worker_clear (self);
X_UNLOCK (reslock);
}
quit:
+ free (req);
+
X_LOCK (wrklock);
etp_worker_free (self);
X_UNLOCK (wrklock);
@@ -2081,6 +2199,12 @@ eio_api_destroy (eio_req *req)
static void
eio_execute (etp_worker *self, eio_req *req)
{
+#if HAVE_AT
+ int dirfd;
+#else
+ const char *path;
+#endif
+
if (ecb_expect_false (EIO_CANCELLED (req)))
{
req->result = -1;
@@ -2088,8 +2212,29 @@ eio_execute (etp_worker *self, eio_req *req)
return;
}
+ if (ecb_expect_false (req->wd == EIO_INVALID_WD))
+ {
+ req->result = -1;
+ req->errorno = ENOENT;
+ return;
+ }
+
+ if (req->type >= EIO_OPEN)
+ {
+ #if HAVE_AT
+ dirfd = WD2FD (req->wd);
+ #else
+ path = wd_expand (&self->tmpbuf, req->wd, req->ptr1);
+ #endif
+ }
+
switch (req->type)
{
+ case EIO_WD_OPEN: req->wd = eio__wd_open_sync (&self->tmpbuf, req->wd, req->ptr1);
+ req->result = req->wd == EIO_INVALID_WD ? -1 : 0;
+ break;
+ case EIO_WD_CLOSE: eio_wd_close_sync (req->wd); break;
+
case EIO_READ: ALLOC (req->size);
req->result = req->offs >= 0
? pread (req->int1, req->ptr2, req->size, req->offs)
@@ -2101,41 +2246,72 @@ eio_execute (etp_worker *self, eio_req *req)
case EIO_READAHEAD: req->result = readahead (req->int1, req->offs, req->size); break;
case EIO_SENDFILE: req->result = eio__sendfile (req->int1, req->int2, req->offs, req->size); break;
+#if HAVE_AT
+ case EIO_GETPATH: abort ();
+ case EIO_STAT: ALLOC (sizeof (EIO_STRUCT_STAT));
+ req->result = fstatat (dirfd, path, (EIO_STRUCT_STAT *)req->ptr2); break;
+ case EIO_LSTAT: ALLOC (sizeof (EIO_STRUCT_STAT));
+ req->result = lstat (dirfd, path, (EIO_STRUCT_STAT *)req->ptr2); break;
+#if 0/*D*/
+ case EIO_STATVFS: ALLOC (sizeof (EIO_STRUCT_STATVFS));
+ req->result = statvfs (dirfd, path, (EIO_STRUCT_STATVFS *)req->ptr2); break;
+#endif
+ case EIO_CHOWN: req->result = chown (dirfd, path, req->int2, req->int3); break;
+ case EIO_CHMOD: req->result = chmod (dirfd, path, (mode_t)req->int2); break;
+ case EIO_TRUNCATE: req->result = truncate (dirfd, path, req->offs); break;
+ case EIO_OPEN: req->result = open (dirfd, path, req->int1, (mode_t)req->int2); break;
+
+ case EIO_UNLINK: req->result = unlink (dirfd, path); break;
+ case EIO_RMDIR: req->result = rmdir (dirfd, path); break;
+ case EIO_MKDIR: req->result = mkdir (dirfd, path, (mode_t)req->int2); break;
+ case EIO_RENAME: req->result = rename (dirfd, path, req->ptr2); break;
+ case EIO_LINK: req->result = link (dirfd, path, req->ptr2); break;
+ case EIO_SYMLINK: req->result = symlink (dirfd, path, req->ptr2); break;
+ case EIO_MKNOD: req->result = mknod (dirfd, path, (mode_t)req->int2, (dev_t)req->offs); break;
+#else
case EIO_STAT: ALLOC (sizeof (EIO_STRUCT_STAT));
- req->result = stat (req->ptr1, (EIO_STRUCT_STAT *)req->ptr2); break;
+ req->result = stat (path , (EIO_STRUCT_STAT *)req->ptr2); break;
case EIO_LSTAT: ALLOC (sizeof (EIO_STRUCT_STAT));
- req->result = lstat (req->ptr1, (EIO_STRUCT_STAT *)req->ptr2); break;
+ req->result = lstat (path , (EIO_STRUCT_STAT *)req->ptr2); break;
+ case EIO_CHOWN: req->result = chown (path , req->int2, req->int3); break;
+ case EIO_CHMOD: req->result = chmod (path , (mode_t)req->int2); break;
+ case EIO_TRUNCATE: req->result = truncate (path , req->offs); break;
+ case EIO_OPEN: req->result = open (path , req->int1, (mode_t)req->int2); break;
+
+ case EIO_UNLINK: req->result = unlink (path ); break;
+ case EIO_RMDIR: req->result = rmdir (path ); break;
+ case EIO_MKDIR: req->result = mkdir (path , (mode_t)req->int2); break;
+ case EIO_RENAME: req->result = rename (path , req->ptr2); break;
+ case EIO_LINK: req->result = link (path , req->ptr2); break;
+ case EIO_SYMLINK: req->result = symlink (path , req->ptr2); break;
+ case EIO_MKNOD: req->result = mknod (path , (mode_t)req->int2, (dev_t)req->offs); break;
+
+ case EIO_READLINK: ALLOC (PATH_MAX);
+ req->result = readlink (path, req->ptr2, PATH_MAX); break;
+#endif
+
+ case EIO_REALPATH: if (0 <= (req->result = eio__realpath (&self->tmpbuf, req->wd, req->ptr1)))
+ {
+ ALLOC (req->result);
+ memcpy (req->ptr2, self->tmpbuf.ptr, req->result);
+ }
+ break;
+
+ case EIO_STATVFS: ALLOC (sizeof (EIO_STRUCT_STATVFS)); /*D*/
+ req->result = statvfs (path , (EIO_STRUCT_STATVFS *)req->ptr2); break;
+
case EIO_FSTAT: ALLOC (sizeof (EIO_STRUCT_STAT));
req->result = fstat (req->int1, (EIO_STRUCT_STAT *)req->ptr2); break;
- case EIO_STATVFS: ALLOC (sizeof (EIO_STRUCT_STATVFS));
- req->result = statvfs (req->ptr1, (EIO_STRUCT_STATVFS *)req->ptr2); break;
case EIO_FSTATVFS: ALLOC (sizeof (EIO_STRUCT_STATVFS));
req->result = fstatvfs (req->int1, (EIO_STRUCT_STATVFS *)req->ptr2); break;
- case EIO_CHOWN: req->result = chown (req->ptr1, req->int2, req->int3); break;
case EIO_FCHOWN: req->result = fchown (req->int1, req->int2, req->int3); break;
- case EIO_CHMOD: req->result = chmod (req->ptr1, (mode_t)req->int2); break;
case EIO_FCHMOD: req->result = fchmod (req->int1, (mode_t)req->int2); break;
- case EIO_TRUNCATE: req->result = truncate (req->ptr1, req->offs); break;
case EIO_FTRUNCATE: req->result = ftruncate (req->int1, req->offs); break;
- case EIO_OPEN: req->result = open (req->ptr1, req->int1, (mode_t)req->int2); break;
case EIO_CLOSE: req->result = close (req->int1); break;
case EIO_DUP2: req->result = dup2 (req->int1, req->int2); break;
- case EIO_UNLINK: req->result = unlink (req->ptr1); break;
- case EIO_RMDIR: req->result = rmdir (req->ptr1); break;
- case EIO_MKDIR: req->result = mkdir (req->ptr1, (mode_t)req->int2); break;
- case EIO_RENAME: req->result = rename (req->ptr1, req->ptr2); break;
- case EIO_LINK: req->result = link (req->ptr1, req->ptr2); break;
- case EIO_SYMLINK: req->result = symlink (req->ptr1, req->ptr2); break;
- case EIO_MKNOD: req->result = mknod (req->ptr1, (mode_t)req->int2, (dev_t)req->offs); break;
-
- case EIO_REALPATH: eio__realpath (req, self); break;
-
- case EIO_READLINK: ALLOC (PATH_MAX);
- req->result = readlink (req->ptr1, req->ptr2, PATH_MAX); break;
-
case EIO_SYNC: req->result = 0; sync (); break;
case EIO_FSYNC: req->result = fsync (req->int1); break;
case EIO_FDATASYNC: req->result = fdatasync (req->int1); break;
@@ -2147,7 +2323,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, self); break;
+ case EIO_READDIR: eio__scandir (req); break;
case EIO_BUSY:
#ifdef _WIN32
diff --git a/eio.h b/eio.h
index 948280c..51326bb 100644
--- a/eio.h
+++ b/eio.h
@@ -90,6 +90,16 @@ typedef int (*eio_cb)(eio_req *req);
# define EIO_STRUCT_STATVFS struct statvfs
#endif
+/* managing working directories */
+
+typedef void *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 */
+
+eio_wd eio_wd_open_sync (eio_wd wd, const char *path);
+void eio_wd_close_sync (eio_wd wd);
+
/* for readdir */
/* eio_readdir flags */
@@ -170,23 +180,36 @@ typedef double eio_tstamp;
enum
{
EIO_CUSTOM,
- EIO_OPEN, EIO_CLOSE, EIO_DUP2,
+ EIO_WD_OPEN, EIO_WD_CLOSE,
+
+ EIO_CLOSE, EIO_DUP2,
EIO_READ, EIO_WRITE,
EIO_READAHEAD, EIO_SENDFILE,
- EIO_STAT, EIO_LSTAT, EIO_FSTAT,
- EIO_STATVFS, EIO_FSTATVFS,
- EIO_TRUNCATE, EIO_FTRUNCATE,
- EIO_UTIME, EIO_FUTIME,
- EIO_CHMOD, EIO_FCHMOD,
- EIO_CHOWN, EIO_FCHOWN,
+ EIO_FSTAT, EIO_FSTATVFS,
+ EIO_FTRUNCATE, EIO_FUTIME, EIO_FCHMOD, EIO_FCHOWN,
EIO_SYNC, EIO_FSYNC, EIO_FDATASYNC, EIO_SYNCFS,
EIO_MSYNC, EIO_MTOUCH, EIO_SYNC_FILE_RANGE, EIO_FALLOCATE,
EIO_MLOCK, EIO_MLOCKALL,
- EIO_UNLINK, EIO_RMDIR, EIO_MKDIR, EIO_RENAME,
- EIO_MKNOD, EIO_READDIR,
- EIO_LINK, EIO_SYMLINK, EIO_READLINK, EIO_REALPATH,
EIO_GROUP, EIO_NOP,
- EIO_BUSY
+ EIO_BUSY,
+
+ /* these use wd + ptr1, but are emulated */
+ EIO_REALPATH,
+ EIO_STATVFS,
+ EIO_READDIR,
+
+ /* all the following requests use wd + ptr1 as path in xxxat functions */
+ EIO_OPEN,
+ EIO_STAT, EIO_LSTAT,
+ EIO_TRUNCATE,
+ EIO_UTIME,
+ EIO_CHMOD,
+ EIO_CHOWN,
+ EIO_UNLINK, EIO_RMDIR, EIO_MKDIR, EIO_RENAME,
+ EIO_MKNOD,
+ EIO_LINK, EIO_SYMLINK, EIO_READLINK,
+
+ EIO_REQ_TYPE_NUM
};
/* mlockall constants */
@@ -211,6 +234,8 @@ struct eio_req
{
eio_req volatile *next; /* private ETP */
+ eio_wd wd; /* all applicable requests: working directory of pathname, old name; wd_open: return wd */
+
eio_ssize_t result; /* result of syscall, e.g. result = read (... */
off_t offs; /* read, write, truncate, readahead, sync_file_range, fallocate: file offset, mknod: dev_t */
size_t size; /* read, write, readahead, sendfile, msync, mlock, sync_file_range, fallocate: length */
@@ -222,7 +247,7 @@ struct eio_req
int type; /* EIO_xxx constant ETP */
int int1; /* all applicable requests: file descriptor; sendfile: output fd; open, msync, mlockall, readdir: flags */
long int2; /* chown, fchown: uid; sendfile: input fd; open, chmod, mkdir, mknod: file mode, sync_file_range, fallocate: flags */
- long int3; /* chown, fchown: gid */
+ long int3; /* chown, fchown: gid; rename: working directory of new name */
int errorno; /* errno value on syscall return */
#if __i386 || __amd64
diff --git a/eio.pod b/eio.pod
index da5f33c..34918b6 100644
--- a/eio.pod
+++ b/eio.pod
@@ -235,13 +235,17 @@ The C<void *data> member simply stores the value of the C<data> argument.
=back
+Memmbers not explicitly described as accessible must not be
+accessed. Specifically, there is no gurantee that any members will still
+have the value they had when the request was submitted.
+
The return value of the callback is normally C<0>, which tells libeio to
continue normally. If a callback returns a nonzero value, libeio will
stop processing results (in C<eio_poll>) and will return the value to its
caller.
-Memory areas passed to libeio must stay valid as long as a request
-executes, with the exception of paths, which are being copied
+Memory areas passed to libeio wrappers must stay valid as long as a
+request executes, with the exception of paths, which are being copied
internally. Any memory libeio itself allocates will be freed after the
finish callback has been called. If you want to manage all memory passed
to libeio yourself you can use the low-level API.