2012-08-28 15:15:48 +00:00
|
|
|
From 1af0111d871f088f25e7854fe61302e1909ba4c4 Mon Sep 17 00:00:00 2001
|
|
|
|
Message-Id: <1af0111d871f088f25e7854fe61302e1909ba4c4.1346162949.git.crobinso@redhat.com>
|
|
|
|
In-Reply-To: <90a59d545ad6759c105b0bfcfca70f574482584f.1346162949.git.crobinso@redhat.com>
|
|
|
|
References: <90a59d545ad6759c105b0bfcfca70f574482584f.1346162949.git.crobinso@redhat.com>
|
2012-01-13 19:46:23 +00:00
|
|
|
From: Amit Shah <amit.shah@redhat.com>
|
|
|
|
Date: Mon, 21 Mar 2011 22:00:27 +0100
|
2012-08-28 15:15:48 +00:00
|
|
|
Subject: [PATCH 105/114] char: Update send_all() to handle nonblocking
|
|
|
|
chardev write requests
|
2012-01-13 19:46:23 +00:00
|
|
|
|
|
|
|
The send_all function is modified to return to the caller in case the
|
|
|
|
driver cannot handle any more data. It returns -EAGAIN or
|
|
|
|
WSAEWOULDBLOCK on non-Windows and Windows platforms respectively. This
|
|
|
|
is only done when the caller sets a callback function handler indicating
|
|
|
|
it's not interested in blocking till the driver has written out all the
|
|
|
|
data.
|
|
|
|
|
|
|
|
Currently there's no driver or caller that supports this. Future
|
|
|
|
commits will add such capability.
|
|
|
|
|
|
|
|
Signed-off-by: Amit Shah <amit.shah@redhat.com>
|
2012-08-28 15:15:48 +00:00
|
|
|
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
2012-01-13 19:46:23 +00:00
|
|
|
---
|
2012-08-06 19:53:39 +00:00
|
|
|
net/socket.c | 4 ++--
|
|
|
|
qemu-char.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++------
|
|
|
|
qemu_socket.h | 2 +-
|
2012-01-13 19:46:23 +00:00
|
|
|
3 files changed, 66 insertions(+), 9 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/net/socket.c b/net/socket.c
|
2012-08-06 19:53:39 +00:00
|
|
|
index c172c24..aa7c99e 100644
|
2012-01-13 19:46:23 +00:00
|
|
|
--- a/net/socket.c
|
|
|
|
+++ b/net/socket.c
|
2012-08-06 19:53:39 +00:00
|
|
|
@@ -53,8 +53,8 @@ static ssize_t net_socket_receive(NetClientState *nc, const uint8_t *buf, size_t
|
2012-01-13 19:46:23 +00:00
|
|
|
uint32_t len;
|
|
|
|
len = htonl(size);
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
- send_all(s->fd, (const uint8_t *)&len, sizeof(len));
|
|
|
|
- return send_all(s->fd, buf, size);
|
|
|
|
+ send_all(NULL, s->fd, (const uint8_t *)&len, sizeof(len));
|
|
|
|
+ return send_all(NULL, s->fd, buf, size);
|
|
|
|
}
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-08-06 19:53:39 +00:00
|
|
|
static ssize_t net_socket_receive_dgram(NetClientState *nc, const uint8_t *buf, size_t size)
|
2012-01-13 19:46:23 +00:00
|
|
|
diff --git a/qemu-char.c b/qemu-char.c
|
2012-08-28 15:15:48 +00:00
|
|
|
index 2c573fb..c2a3138 100644
|
2012-01-13 19:46:23 +00:00
|
|
|
--- a/qemu-char.c
|
|
|
|
+++ b/qemu-char.c
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -508,7 +508,7 @@ static CharDriverState *qemu_chr_open_mux(CharDriverState *drv)
|
|
|
|
|
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
-int send_all(int fd, const void *buf, int len1)
|
|
|
|
+static int do_send(int fd, const void *buf, int len1, bool nonblock)
|
|
|
|
{
|
|
|
|
int ret, len;
|
2012-07-05 09:22:23 +00:00
|
|
|
|
|
|
|
@@ -516,9 +516,14 @@ int send_all(int fd, const void *buf, int len1)
|
2012-01-13 19:46:23 +00:00
|
|
|
while (len > 0) {
|
|
|
|
ret = send(fd, buf, len, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
+ if (nonblock && len1 - len) {
|
|
|
|
+ return len1 - len;
|
|
|
|
+ }
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
if (errno != WSAEWOULDBLOCK) {
|
|
|
|
return -1;
|
|
|
|
+ } else if (errno == WSAEWOULDBLOCK && nonblock) {
|
|
|
|
+ return WSAEWOULDBLOCK;
|
|
|
|
}
|
|
|
|
} else if (ret == 0) {
|
|
|
|
break;
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -532,7 +537,7 @@ int send_all(int fd, const void *buf, int len1)
|
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
#else
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
-int send_all(int fd, const void *_buf, int len1)
|
|
|
|
+static int do_send(int fd, const void *_buf, int len1, bool nonblock)
|
|
|
|
{
|
|
|
|
int ret, len;
|
|
|
|
const uint8_t *buf = _buf;
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -541,8 +546,15 @@ int send_all(int fd, const void *_buf, int len1)
|
2012-01-13 19:46:23 +00:00
|
|
|
while (len > 0) {
|
|
|
|
ret = write(fd, buf, len);
|
|
|
|
if (ret < 0) {
|
|
|
|
- if (errno != EINTR && errno != EAGAIN)
|
|
|
|
+ if (nonblock && len1 - len) {
|
|
|
|
+ return len1 - len;
|
|
|
|
+ }
|
|
|
|
+ if (errno == EAGAIN && nonblock) {
|
|
|
|
+ return -EAGAIN;
|
|
|
|
+ }
|
|
|
|
+ if (errno != EINTR && errno != EAGAIN) {
|
|
|
|
return -1;
|
|
|
|
+ }
|
|
|
|
} else if (ret == 0) {
|
|
|
|
break;
|
|
|
|
} else {
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -557,6 +569,44 @@ int send_all(int fd, const void *_buf, int len1)
|
2012-01-13 19:46:23 +00:00
|
|
|
#define STDIO_MAX_CLIENTS 1
|
|
|
|
static int stdio_nb_clients;
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
+int send_all(CharDriverState *chr, int fd, const void *_buf, int len1)
|
|
|
|
+{
|
|
|
|
+ int ret, eagain_errno;
|
|
|
|
+ bool nonblock;
|
|
|
|
+
|
|
|
|
+ if (chr && chr->write_blocked) {
|
|
|
|
+ /*
|
|
|
|
+ * The caller should not send us data while we're blocked,
|
|
|
|
+ * but this can happen when multiple writers are woken at once,
|
|
|
|
+ * so simply return -EAGAIN.
|
|
|
|
+ */
|
|
|
|
+ return -EAGAIN;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ nonblock = false;
|
|
|
|
+ /*
|
|
|
|
+ * Ensure the char backend is able to receive and handle the
|
|
|
|
+ * 'write unblocked' event before we turn on nonblock support.
|
|
|
|
+ */
|
|
|
|
+ if (chr && chr->chr_enable_write_fd_handler && chr->chr_write_unblocked) {
|
|
|
|
+ nonblock = true;
|
|
|
|
+ }
|
|
|
|
+ ret = do_send(fd, _buf, len1, nonblock);
|
|
|
|
+
|
|
|
|
+#ifdef _WIN32
|
|
|
|
+ eagain_errno = WSAEWOULDBLOCK;
|
|
|
|
+#else
|
|
|
|
+ eagain_errno = -EAGAIN;
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+ if (nonblock && (ret == eagain_errno || (ret >= 0 && ret < len1))) {
|
|
|
|
+ /* Update fd handler to wake up when chr becomes writable */
|
|
|
|
+ chr->chr_enable_write_fd_handler(chr);
|
|
|
|
+ chr->write_blocked = true;
|
|
|
|
+ }
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#ifndef _WIN32
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
typedef struct {
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -568,7 +618,7 @@ typedef struct {
|
2012-01-13 19:46:23 +00:00
|
|
|
static int fd_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
FDCharDriver *s = chr->opaque;
|
|
|
|
- return send_all(s->fd_out, buf, len);
|
|
|
|
+ return send_all(chr, s->fd_out, buf, len);
|
|
|
|
}
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
static int fd_chr_read_poll(void *opaque)
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -887,7 +937,7 @@ static int pty_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
|
2012-01-13 19:46:23 +00:00
|
|
|
pty_chr_update_read_handler(chr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
- return send_all(s->fd, buf, len);
|
|
|
|
+ return send_all(chr, s->fd, buf, len);
|
|
|
|
}
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
static int pty_chr_read_poll(void *opaque)
|
2012-08-28 15:15:48 +00:00
|
|
|
@@ -2176,8 +2226,15 @@ static void tcp_closed(void *opaque)
|
2012-01-13 19:46:23 +00:00
|
|
|
static int tcp_chr_write(CharDriverState *chr, const uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
TCPCharDriver *s = chr->opaque;
|
|
|
|
+
|
|
|
|
if (s->connected) {
|
|
|
|
- return send_all(s->fd, buf, len);
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ ret = send_all(chr, s->fd, buf, len);
|
|
|
|
+ if (ret == -1 && errno == EPIPE) {
|
|
|
|
+ tcp_closed(chr);
|
|
|
|
+ }
|
|
|
|
+ return ret;
|
|
|
|
} else {
|
2012-08-28 15:15:48 +00:00
|
|
|
/* (Re-)connect for unconnected writing */
|
|
|
|
tcp_chr_connect(chr);
|
2012-01-13 19:46:23 +00:00
|
|
|
diff --git a/qemu_socket.h b/qemu_socket.h
|
2012-08-28 15:15:48 +00:00
|
|
|
index 30ae6af..fc58c8d 100644
|
2012-01-13 19:46:23 +00:00
|
|
|
--- a/qemu_socket.h
|
|
|
|
+++ b/qemu_socket.h
|
2012-07-05 09:22:23 +00:00
|
|
|
@@ -36,7 +36,7 @@ int qemu_accept(int s, struct sockaddr *addr, socklen_t *addrlen);
|
|
|
|
int socket_set_cork(int fd, int v);
|
2012-01-13 19:46:23 +00:00
|
|
|
void socket_set_block(int fd);
|
|
|
|
void socket_set_nonblock(int fd);
|
|
|
|
-int send_all(int fd, const void *buf, int len1);
|
|
|
|
+int send_all(CharDriverState *chr, int fd, const void *buf, int len1);
|
2012-07-05 09:22:23 +00:00
|
|
|
|
2012-01-13 19:46:23 +00:00
|
|
|
/* New, ipv6-ready socket helper functions, see qemu-sockets.c */
|
2012-07-05 09:22:23 +00:00
|
|
|
int inet_listen_opts(QemuOpts *opts, int port_offset, Error **errp);
|
2012-01-13 19:46:23 +00:00
|
|
|
--
|
2012-08-06 19:53:39 +00:00
|
|
|
1.7.11.2
|
2012-01-13 19:46:23 +00:00
|
|
|
|