summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 17e0c26)
raw | patch | inline | side by side (parent: 17e0c26)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 6 Nov 2013 21:25:53 +0000 (22:25 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Wed, 6 Nov 2013 21:25:53 +0000 (22:25 +0100) |
Handle commands once all of them has been read. Give preference to reading
data over handling a command in order not to block clients or exhaust
operating system buffers.
data over handling a command in order not to block clients or exhaust
operating system buffers.
src/frontend/sock.c | patch | blob | history |
diff --git a/src/frontend/sock.c b/src/frontend/sock.c
index 53a8a860d6f5a811181f0e4ba831d9e58704165f..792c0e4601400a286cacd012381817bfe782e504 100644 (file)
--- a/src/frontend/sock.c
+++ b/src/frontend/sock.c
#include "utils/channel.h"
#include "utils/llist.h"
+#include "utils/strbuf.h"
#include <assert.h>
-
#include <errno.h>
+#include <arpa/inet.h>
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct {
sdb_object_t super;
+ /* connection and client information */
int fd;
struct sockaddr_storage client_addr;
socklen_t client_addr_len;
+
+ /* read buffer */
+ sdb_strbuf_t *buf;
+
+ /* state information for the currently executed command */
+ uint32_t cmd;
+ uint32_t cmd_len;
} connection_obj_t;
#define CONN(obj) ((connection_obj_t *)(obj))
sock_fd = va_arg(ap, int);
+ CONN(obj)->buf = sdb_strbuf_create(/* size = */ 128);
+ if (! CONN(obj)->buf) {
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to allocate a read buffer "
+ "for a new remote connection");
+ return -1;
+ }
+
conn->client_addr_len = sizeof(conn->client_addr);
conn->fd = accept(sock_fd, (struct sockaddr *)&conn->client_addr,
&conn->client_addr_len);
sdb_log(SDB_LOG_DEBUG, "frontend: Closing connection on fd=%i", conn->fd);
close(conn->fd);
conn->fd = -1;
+
+ sdb_strbuf_destroy(CONN(obj)->buf);
} /* connection_destroy */
static sdb_type_t connection_type = {
* connection handler functions
*/
-/* returns negative value on error, 0 on EOF, number of packets else */
+static uint32_t
+connection_get_int32(connection_obj_t *conn, size_t offset)
+{
+ const char *data;
+ uint32_t n;
+
+ assert(conn && (sdb_strbuf_len(conn->buf) >= offset + sizeof(uint32_t)));
+
+ data = sdb_strbuf_string(conn->buf);
+ memcpy(&n, data + offset, sizeof(n));
+ n = ntohl(n);
+ return n;
+} /* connection_get_int32 */
+
static int
-connection_read(int fd)
+command_handle(connection_obj_t *conn)
{
- int n = 0;
+ assert(conn && conn->cmd && conn->cmd_len);
+ /* XXX */
+ sdb_strbuf_skip(conn->buf, conn->cmd_len);
+ return 0;
+} /* command_handle */
+
+/* initialize the connection state information */
+static int
+command_init(connection_obj_t *conn)
+{
+ assert(conn && (! conn->cmd) && (! conn->cmd_len));
+
+ conn->cmd = connection_get_int32(conn, 0);
+ conn->cmd_len = connection_get_int32(conn, sizeof(uint32_t));
+ sdb_strbuf_skip(conn->buf, 2 * sizeof(uint32_t));
+ return 0;
+} /* command_init */
+
+/* returns negative value on error, 0 on EOF, number of octets else */
+static ssize_t
+connection_read(connection_obj_t *conn)
+{
+ ssize_t n = 0;
while (42) {
- int32_t cmd;
ssize_t status;
errno = 0;
- status = read(fd, &cmd, sizeof(cmd));
+ status = sdb_strbuf_read(conn->buf, conn->fd, 1024);
if (status < 0) {
if ((errno == EAGAIN) || (errno == EWOULDBLOCK))
- return n + 1;
+ return n;
return (int)status;
}
else if (! status) /* EOF */
- return 0;
+ return n;
- /* XXX */
- sdb_log(SDB_LOG_DEBUG, "frontend: read command %i from fd=%i",
- cmd, fd);
- ++n;
+ n += status;
}
- return n + 1;
+ return n;
} /* connection_read */
static void *
continue;
}
- status = connection_read(conn->fd);
+ status = (int)connection_read(conn);
if (status <= 0) {
/* error or EOF -> close connection */
sdb_object_deref(SDB_OBJ(conn));
+ continue;
}
- else {
- if (sdb_llist_append(sock->open_connections, SDB_OBJ(conn))) {
- sdb_log(SDB_LOG_ERR, "frontend: Failed to re-append "
- "connection %s to list of open connections",
- SDB_OBJ(conn)->name);
- }
-
- /* pass ownership back to list; or destroy in case of an error */
- sdb_object_deref(SDB_OBJ(conn));
+
+ if (conn->cmd_len && (sdb_strbuf_len(conn->buf) >= conn->cmd_len))
+ command_handle(conn);
+ else if (sdb_strbuf_len(conn->buf) >= 2 * sizeof(int32_t))
+ command_init(conn);
+
+ /* return the connection to the main loop */
+ if (sdb_llist_append(sock->open_connections, SDB_OBJ(conn))) {
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to re-append "
+ "connection %s to list of open connections",
+ SDB_OBJ(conn)->name);
}
+
+ /* pass ownership back to list; or destroy in case of an error */
+ sdb_object_deref(SDB_OBJ(conn));
}
return NULL;
} /* connection_handler */