aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/lib.h2
-rw-r--r--lib/net.c4
-rw-r--r--lib/xwrap.c10
3 files changed, 11 insertions, 5 deletions
diff --git a/lib/lib.h b/lib/lib.h
index d5a48326..2cb0c07a 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -211,7 +211,7 @@ off_t fdlength(int fd);
void loopfiles_rw(char **argv, int flags, int permissions,
void (*function)(int fd, char *name));
void loopfiles(char **argv, void (*function)(int fd, char *name));
-void xsendfile(int in, int out);
+long long xsendfile(int in, int out);
int wfchmodat(int rc, char *name, mode_t mode);
int copy_tempfile(int fdin, char *name, char **tempname);
void delete_tempfile(int fdin, int fdout, char **tempname);
diff --git a/lib/net.c b/lib/net.c
index 1a46a5a9..df2551f7 100644
--- a/lib/net.c
+++ b/lib/net.c
@@ -5,6 +5,8 @@ int xsocket(int domain, int type, int protocol)
int fd = socket(domain, type, protocol);
if (fd < 0) perror_exit("socket %x %x", type, protocol);
+ fcntl(fd, F_SETFD, FD_CLOEXEC);
+
return fd;
}
@@ -35,7 +37,7 @@ int xconnect(char *host, char *port, int family, int socktype, int protocol,
fd = (ai->ai_next ? socket : xsocket)(ai->ai_family, ai->ai_socktype,
ai->ai_protocol);
if (!connect(fd, ai->ai_addr, ai->ai_addrlen)) break;
- else if (!ai2->ai_next) perror_exit("connect");
+ else if (!ai->ai_next) perror_exit("connect");
close(fd);
}
freeaddrinfo(ai2);
diff --git a/lib/xwrap.c b/lib/xwrap.c
index 66972f2b..611bdb52 100644
--- a/lib/xwrap.c
+++ b/lib/xwrap.c
@@ -163,7 +163,7 @@ void xflush(void)
// share a stack, so child returning from a function would stomp the return
// address parent would need. Solution: make vfork() an argument so processes
// diverge before function gets called.
-pid_t xvforkwrap(pid_t pid)
+pid_t __attribute__((noinline)) xvforkwrap(pid_t pid)
{
if (pid == -1) perror_exit("vfork");
@@ -732,16 +732,20 @@ void xpidfile(char *name)
// Copy the rest of in to out and close both files.
-void xsendfile(int in, int out)
+long long xsendfile(int in, int out)
{
+ long long total = 0;
long len;
- if (in<0) return;
+ if (in<0) return 0;
for (;;) {
len = xread(in, libbuf, sizeof(libbuf));
if (len<1) break;
xwrite(out, libbuf, len);
+ total += len;
}
+
+ return total;
}
// parse fractional seconds with optional s/m/h/d suffix