summaryrefslogtreecommitdiff
path: root/src/rio.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-10-14 17:19:34 +0200
committerantirez <antirez@gmail.com>2014-10-14 17:19:42 +0200
commit2a436aaeabcc9cd5ad625613e7882df9495ab04b (patch)
tree2f33a29105e18d4bce02a1c1d430d4f5d3dcf7ad /src/rio.c
parent1cd0d26c63c755aaac4997e852c4041a0237a395 (diff)
downloadredis-2a436aaeabcc9cd5ad625613e7882df9495ab04b.tar.gz
rio.c fdset target: tolerate (and report) a subset of FDs in error.
Fdset target is used when we want to write an RDB file directly to slave's sockets. In this setup as long as there is a single slave that is still receiving our payload, we want to continue sennding instead of aborting. However rio calls should abort of no FD is ok. Also we want the errors reported so that we can signal the parent who is ok and who is broken, so there is a new set integers with the state of each fd. Zero is ok, non-zero is the errno of the failure, if avaialble, or a generic EIO.
Diffstat (limited to 'src/rio.c')
-rw-r--r--src/rio.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/src/rio.c b/src/rio.c
index 88f6781e0..dbda4c668 100644
--- a/src/rio.c
+++ b/src/rio.c
@@ -144,7 +144,9 @@ void rioInitWithFile(rio *r, FILE *fp) {
/* ------------------- File descriptors set implementation ------------------- */
-/* Returns 1 or 0 for success/failure. */
+/* Returns 1 or 0 for success/failure.
+ * The function returns success as long as we are able to correctly write
+ * to at least one file descriptor. */
static size_t rioFdsetWrite(rio *r, const void *buf, size_t len) {
size_t retval;
int j;
@@ -155,10 +157,21 @@ static size_t rioFdsetWrite(rio *r, const void *buf, size_t len) {
* the TCP socket. */
while(len) {
size_t count = len < 1024 ? len : 1024;
+ int broken = 0;
for (j = 0; j < r->io.fdset.numfds; j++) {
+ if (r->io.fdset.state[j] != 0) {
+ /* Skip FDs alraedy in error. */
+ broken++;
+ continue;
+ }
retval = write(r->io.fdset.fds[j],p,count);
- if (retval != count) return 0;
+ if (retval != count) {
+ /* Mark this FD as broken. */
+ r->io.fdset.state[j] = errno;
+ if (r->io.fdset.state[j] == 0) r->io.fdset.state[j] = EIO;
+ }
}
+ if (broken == r->io.fdset.numfds) return 0; /* All the FDs in error. */
p += count;
len -= count;
r->io.fdset.pos += count;
@@ -191,15 +204,20 @@ static const rio rioFdsetIO = {
};
void rioInitWithFdset(rio *r, int *fds, int numfds) {
+ int j;
+
*r = rioFdsetIO;
r->io.fdset.fds = zmalloc(sizeof(int)*numfds);
+ r->io.fdset.state = zmalloc(sizeof(int)*numfds);
memcpy(r->io.fdset.fds,fds,sizeof(int)*numfds);
+ for (j = 0; j < numfds; j++) r->io.fdset.state[j] = 0;
r->io.fdset.numfds = numfds;
r->io.fdset.pos = 0;
}
void rioFreeFdset(rio *r) {
zfree(r->io.fdset.fds);
+ zfree(r->io.fdset.state);
}
/* ---------------------------- Generic functions ---------------------------- */