summaryrefslogtreecommitdiff
path: root/usr.sbin/rpki-client/rsync.c
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2021-01-08 08:09:08 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2021-01-08 08:09:08 +0000
commitc8e9e3a8a13b7a67eed0506692a72941ed2f9e5b (patch)
treee641ea6b4d21ab722f0fef22714727f78adbef44 /usr.sbin/rpki-client/rsync.c
parent6c8de5dfd65756456f0077b107df32a8e3bd0eae (diff)
Start using the ibuf API (ibuf_dynamic, ibuf_add, ibuf_close) for writing
data between processes. This completely decouples the write side. rpki-client can't really use the imsg framework but it can use the ibuf bits wich imsg is built on. OK benno@ job@
Diffstat (limited to 'usr.sbin/rpki-client/rsync.c')
-rw-r--r--usr.sbin/rpki-client/rsync.c44
1 files changed, 33 insertions, 11 deletions
diff --git a/usr.sbin/rpki-client/rsync.c b/usr.sbin/rpki-client/rsync.c
index 5d4bee0e98e..dfe15e04600 100644
--- a/usr.sbin/rpki-client/rsync.c
+++ b/usr.sbin/rpki-client/rsync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsync.c,v 1.12 2020/12/21 11:35:55 claudio Exp $ */
+/* $OpenBSD: rsync.c,v 1.13 2021/01/08 08:09:07 claudio Exp $ */
/*
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -15,6 +15,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/queue.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <netinet/in.h>
@@ -28,6 +29,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <imsg.h>
#include "extern.h"
@@ -171,21 +173,25 @@ proc_child(int signal)
void
proc_rsync(char *prog, char *bind_addr, int fd)
{
- size_t id, i, idsz = 0, bsz = 0, bmax = 0;
+ size_t id, i, idsz = 0;
ssize_t ssz;
char *host = NULL, *mod = NULL, *uri = NULL,
- *dst = NULL, *path, *save, *cmd, *b = NULL;
+ *dst = NULL, *path, *save, *cmd;
const char *pp;
pid_t pid;
char *args[32];
int st, rc = 0;
struct stat stt;
struct pollfd pfd;
+ struct msgbuf msgq;
+ struct ibuf *b;
sigset_t mask, oldmask;
struct rsyncproc *ids = NULL;
pfd.fd = fd;
- pfd.events = POLLIN;
+
+ msgbuf_init(&msgq);
+ msgq.fd = fd;
/*
* Unveil the command we want to run.
@@ -236,6 +242,10 @@ proc_rsync(char *prog, char *bind_addr, int fd)
err(1, NULL);
for (;;) {
+ pfd.events = POLLIN;
+ if (msgq.queued)
+ pfd.events |= POLLOUT;
+
if (ppoll(&pfd, 1, NULL, &oldmask) == -1) {
if (errno != EINTR)
err(1, "ppoll");
@@ -265,12 +275,12 @@ proc_rsync(char *prog, char *bind_addr, int fd)
ok = 0;
}
- io_simple_buffer(&b, &bsz, &bmax,
- &ids[i].id, sizeof(size_t));
- io_simple_buffer(&b, &bsz, &bmax,
- &ok, sizeof(ok));
- io_simple_write(fd, b, bsz);
- bsz = 0;
+ b = ibuf_open(sizeof(size_t) + sizeof(ok));
+ if (b == NULL)
+ err(1, NULL);
+ io_simple_buffer(b, &ids[i].id, sizeof(size_t));
+ io_simple_buffer(b, &ok, sizeof(ok));
+ ibuf_close(&msgq, b);
free(ids[i].uri);
ids[i].uri = NULL;
@@ -282,6 +292,18 @@ proc_rsync(char *prog, char *bind_addr, int fd)
continue;
}
+ if (pfd.revents & POLLOUT) {
+ switch (msgbuf_write(&msgq)) {
+ case 0:
+ errx(1, "write: connection closed");
+ case -1:
+ err(1, "write");
+ }
+ }
+
+ if (!(pfd.revents & POLLIN))
+ continue;
+
/*
* Read til the parent exits.
* That will mean that we can safely exit.
@@ -370,7 +392,7 @@ proc_rsync(char *prog, char *bind_addr, int fd)
free(ids[i].uri);
}
- free(b);
+ msgbuf_clear(&msgq);
free(ids);
exit(rc);
/* NOTREACHED */