From a2898b9f8a33713c1718408237dd6517344da3b6 Mon Sep 17 00:00:00 2001
From: Laurent Bercot
Date: Mon, 20 Jul 2015 20:12:23 +0000
Subject: - fd_close fix - add openreadnclose_nb - rc for 2.3.6.0
---
doc/index.html | 2 +-
doc/libstddjb/djbunix.html | 6 ++++++
doc/upgrade.html | 6 ++++++
package/info | 2 +-
src/include/skalibs/djbunix.h | 1 +
src/libstddjb/fd_close.c | 12 ++++++------
src/libstddjb/openreadnclose.c | 28 +++++++++++++++++-----------
7 files changed, 38 insertions(+), 19 deletions(-)
diff --git a/doc/index.html b/doc/index.html
index f702f1c..f456a5d 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -60,7 +60,7 @@ with a standard C development environment
Download
diff --git a/doc/libstddjb/djbunix.html b/doc/libstddjb/djbunix.html
index d8de94e..18e3def 100644
--- a/doc/libstddjb/djbunix.html
+++ b/doc/libstddjb/djbunix.html
@@ -587,6 +587,12 @@ buffer s. Returns -1 (and sets errno) if it fails; else returns the
number of read bytes. If that number is not n, errno is set to EPIPE.
+
+ int openreadnclose_nb (char const *file, char *s, unsigned int n)
+Like openreadnclose, but can fail with EAGAIN if the file cannot be
+immediately read (for instance if it's a named pipe or other special file).
+
+
int openreadfileclose (char const *file, stralloc *sa, unsigned int n)
Reads at most n bytes from file file into the *sa
diff --git a/doc/upgrade.html b/doc/upgrade.html
index 9311332..bc7b6f3 100644
--- a/doc/upgrade.html
+++ b/doc/upgrade.html
@@ -18,6 +18,12 @@
What has changed in skalibs
+ in 2.3.6.0
+
+
+ - New function: openreadnclose_nb.
+
+
in 2.3.5.2
diff --git a/package/info b/package/info
index 81ac9d5..4275e52 100644
--- a/package/info
+++ b/package/info
@@ -1,4 +1,4 @@
package=skalibs
-version=2.3.5.2
+version=2.3.6.0
category=prog
package_macro_name=SKALIBS
diff --git a/src/include/skalibs/djbunix.h b/src/include/skalibs/djbunix.h
index 5e1348c..40065ce 100644
--- a/src/include/skalibs/djbunix.h
+++ b/src/include/skalibs/djbunix.h
@@ -110,6 +110,7 @@ extern int slurp (stralloc *, int) ;
extern int openslurpclose (stralloc *, char const *) ;
extern int openreadclose (char const *, stralloc *, unsigned int) ;
extern int openreadnclose (char const *, char *, unsigned int) ;
+extern int openreadnclose_nb (char const *, char *, unsigned int) ;
extern int openreadfileclose (char const *, stralloc *, unsigned int) ;
#define openwritenclose_unsafe(f, s, n) openwritenclose_unsafe_internal(f, s, (n), 0, 0, 0)
diff --git a/src/libstddjb/fd_close.c b/src/libstddjb/fd_close.c
index 8b107f6..cb52d4f 100644
--- a/src/libstddjb/fd_close.c
+++ b/src/libstddjb/fd_close.c
@@ -6,10 +6,10 @@
int fd_close (int fd)
{
- register unsigned int i = 0 ;
-doit:
- if (!close(fd)) return 0 ;
- i++ ;
- if (errno == EINTR) goto doit ;
- return ((errno == EBADF) && (i > 1)) ? 0 : -1 ;
+ for (;;)
+ {
+ if (!close(fd) || errno == EINPROGRESS) break ;
+ if (errno != EINTR) return -1 ;
+ }
+ return 0 ;
}
diff --git a/src/libstddjb/openreadnclose.c b/src/libstddjb/openreadnclose.c
index b0cf5d0..40edea9 100644
--- a/src/libstddjb/openreadnclose.c
+++ b/src/libstddjb/openreadnclose.c
@@ -4,18 +4,24 @@
#include
#include
-int openreadnclose (char const *file, char *s, unsigned int n)
+static int readnclose (int fd, char *s, unsigned int n)
{
- register int r ;
- int fd = open_readb(file) ;
- if (fd == -1) return -1 ;
- r = allread(fd, s, n) ;
- if (r == -1)
- {
- fd_close(fd) ;
- return -1 ;
- }
+ register int r = allread(fd, s, n) ;
+ register int e = errno ;
fd_close(fd) ;
- if ((r > 0) && (r < (int)n)) errno = EPIPE ;
+ if ((r > 0) && (r < (int)n)) e = EPIPE ;
+ errno = e ;
return r ;
}
+
+int openreadnclose (char const *file, char *s, unsigned int n)
+{
+ register int fd = open_readb(file) ;
+ return fd < 0 ? fd : readnclose(fd, s, n) ;
+}
+
+int openreadnclose_nb (char const *file, char *s, unsigned int n)
+{
+ register int fd = open_read(file) ;
+ return fd < 0 ? fd : readnclose(fd, s, n) ;
+}
--
cgit v1.2.3