summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3e6f9f6)
raw | patch | inline | side by side (parent: 3e6f9f6)
author | Sebastian Harl <sh@tokkee.org> | |
Tue, 26 Nov 2013 17:42:58 +0000 (18:42 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Tue, 26 Nov 2013 17:42:58 +0000 (18:42 +0100) |
connection_obj_t was merged into sdb_conn_t which now inherits from
sdb_object_t. The connection object is now private to the library and defined
in the new header file connection-private.h.
sdb_object_t. The connection object is now private to the library and defined
in the new header file connection-private.h.
src/Makefile.am | patch | blob | history | |
src/frontend/connection.c | patch | blob | history | |
src/frontend/session.c | patch | blob | history | |
src/frontend/sock.c | patch | blob | history | |
src/include/frontend/connection-private.h | [new file with mode: 0644] | patch | blob |
src/include/frontend/connection.h | patch | blob | history |
diff --git a/src/Makefile.am b/src/Makefile.am
index 32c493e56900702d702838f4473825d5a4a582c6..948d1fa17e19a73fd787c2ea5068bf1f77ddb9b2 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
include/core/data.h \
core/error.c include/core/error.h \
frontend/connection.c include/frontend/connection.h \
+ include/frontend/connection-private.h \
frontend/sock.c include/frontend/sock.h \
frontend/session.c \
utils/channel.c include/utils/channel.h \
index 90361fe9a65b57a4ebaf8c855d3ca5d430b98f30..eb0ada71e0c6d5c3dc73cc3156396c3bb2690efa 100644 (file)
#include "sysdb.h"
#include "core/error.h"
-#include "frontend/connection.h"
+#include "core/object.h"
+#include "frontend/connection-private.h"
#include "utils/strbuf.h"
#include <assert.h>
#include <errno.h>
#include <arpa/inet.h>
+#include <fcntl.h>
#include <string.h>
+/*
+ * private data types
+ */
+
+/* name of connection objects */
+#define CONN_FD_PREFIX "conn#"
+#define CONN_FD_PLACEHOLDER "XXXXXXX"
+
+static int
+connection_init(sdb_object_t *obj, va_list ap)
+{
+ sdb_conn_t *conn;
+ int sock_fd;
+ int sock_fl;
+
+ assert(obj);
+ conn = CONN(obj);
+
+ sock_fd = va_arg(ap, int);
+
+ conn->buf = sdb_strbuf_create(/* size = */ 128);
+ if (! conn->buf) {
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to allocate a read buffer "
+ "for a new 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);
+
+ if (conn->fd < 0) {
+ char buf[1024];
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to accept remote "
+ "connection: %s", sdb_strerror(errno,
+ buf, sizeof(buf)));
+ return -1;
+ }
+
+ if (conn->client_addr.ss_family != AF_UNIX) {
+ sdb_log(SDB_LOG_ERR, "frontend: Accepted connection using "
+ "unexpected family type %d", conn->client_addr.ss_family);
+ return -1;
+ }
+
+ sock_fl = fcntl(conn->fd, F_GETFL);
+ if (fcntl(conn->fd, F_SETFL, sock_fl | O_NONBLOCK)) {
+ char buf[1024];
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to switch connection conn#%i "
+ "to non-blocking mode: %s", conn->fd,
+ sdb_strerror(errno, buf, sizeof(buf)));
+ return -1;
+ }
+
+ sdb_log(SDB_LOG_DEBUG, "frontend: Accepted connection on fd=%i",
+ conn->fd);
+
+ conn->cmd = CONNECTION_IDLE;
+ conn->cmd_len = 0;
+
+ /* update the object name */
+ snprintf(obj->name + strlen(CONN_FD_PREFIX),
+ strlen(CONN_FD_PLACEHOLDER), "%i", conn->fd);
+ return 0;
+} /* connection_init */
+
+static void
+connection_destroy(sdb_object_t *obj)
+{
+ sdb_conn_t *conn;
+ size_t len;
+
+ assert(obj);
+ conn = CONN(obj);
+
+ if (conn->buf) {
+ len = sdb_strbuf_len(conn->buf);
+ if (len)
+ sdb_log(SDB_LOG_INFO, "frontend: Discarding incomplete command "
+ "(%zu byte%s left in buffer)", len, len == 1 ? "" : "s");
+ }
+
+ sdb_log(SDB_LOG_DEBUG, "frontend: Closing connection on fd=%i",
+ conn->fd);
+ close(conn->fd);
+ conn->fd = -1;
+
+ sdb_strbuf_destroy(conn->buf);
+ conn->buf = NULL;
+} /* connection_destroy */
+
+static sdb_type_t connection_type = {
+ /* size = */ sizeof(sdb_conn_t),
+ /* init = */ connection_init,
+ /* destroy = */ connection_destroy,
+};
+
/*
* connection handler functions
*/
* public API
*/
-int
-sdb_connection_init(sdb_conn_t *conn)
+sdb_conn_t *
+sdb_connection_accept(int fd)
{
- if (conn->buf) {
- sdb_log(SDB_LOG_WARNING, "frontend: Attempted to re-initialize "
- "a frontend connection");
- return -1;
- }
-
- conn->buf = sdb_strbuf_create(/* size = */ 128);
- if (! conn->buf) {
- sdb_log(SDB_LOG_ERR, "frontend: Failed to allocate a read buffer "
- "for a new connection");
- sdb_connection_close(conn);
- return -1;
- }
+ if (fd < 0)
+ return NULL;
- conn->cmd = CONNECTION_IDLE;
- conn->cmd_len = 0;
- conn->fd = -1;
- return 0;
-} /* sdb_connection_init */
+ /* the placeholder will be replaced with the accepted file
+ * descriptor when initializing the object */
+ return CONN(sdb_object_create(CONN_FD_PREFIX CONN_FD_PLACEHOLDER,
+ connection_type, fd));
+} /* sdb_connection_create */
void
sdb_connection_close(sdb_conn_t *conn)
{
- size_t len;
-
- if (conn->buf) {
- len = sdb_strbuf_len(conn->buf);
- if (len)
- sdb_log(SDB_LOG_INFO, "frontend: Discarding incomplete command "
- "(%zu byte%s left in buffer)", len, len == 1 ? "" : "s");
- }
-
- sdb_log(SDB_LOG_DEBUG, "frontend: Closing connection on fd=%i",
- conn->fd);
- close(conn->fd);
- conn->fd = -1;
-
- sdb_strbuf_destroy(conn->buf);
- conn->buf = NULL;
-} /* sdb_connection_fini */
+ sdb_object_deref(SDB_OBJ(conn));
+} /* sdb_connection_close */
ssize_t
sdb_connection_read(sdb_conn_t *conn)
diff --git a/src/frontend/session.c b/src/frontend/session.c
index b1e527a06708e53a74e94a071d4d9fb82cf04037..9dedcf6d154675e84731e412313675bf306bc48b 100644 (file)
--- a/src/frontend/session.c
+++ b/src/frontend/session.c
#include "sysdb.h"
-#include "frontend/connection.h"
+#include "frontend/connection-private.h"
/*
* public API
diff --git a/src/frontend/sock.c b/src/frontend/sock.c
index 1b80efed7522f764ccf34334cae5a88f8df1c227..cac49e1db1648b93cc7cd55d933383dd274103f9 100644 (file)
--- a/src/frontend/sock.c
+++ b/src/frontend/sock.c
#include "sysdb.h"
#include "core/error.h"
#include "core/object.h"
-#include "frontend/connection.h"
+#include "frontend/connection-private.h"
#include "frontend/sock.h"
#include "utils/channel.h"
#include <unistd.h>
-#include <fcntl.h>
-
#include <sys/time.h>
#include <sys/types.h>
#include <sys/select.h>
#include <pthread.h>
-/* name of connection objects */
-#define CONN_FD_PREFIX "conn#"
-#define CONN_FD_PLACEHOLDER "XXXXXXX"
-
/*
* private data types
*/
-typedef struct {
- sdb_object_t super;
-
- /* connection and client information */
- struct sockaddr_storage client_addr;
- socklen_t client_addr_len;
-
- sdb_conn_t conn;
-} connection_obj_t;
-#define CONN(obj) ((connection_obj_t *)(obj))
-
typedef struct {
char *address;
int type;
listener_close(sock->listeners + i);
} /* socket_close */
-/*
- * private data types
- */
-
-static int
-connection_init(sdb_object_t *obj, va_list ap)
-{
- connection_obj_t *conn;
- int sock_fd;
- int sock_fl;
-
- assert(obj);
- conn = CONN(obj);
-
- sock_fd = va_arg(ap, int);
-
- if (sdb_connection_init(&CONN(obj)->conn))
- return -1;
-
- conn->client_addr_len = sizeof(conn->client_addr);
- conn->conn.fd = accept(sock_fd, (struct sockaddr *)&conn->client_addr,
- &conn->client_addr_len);
-
- if (conn->conn.fd < 0) {
- char buf[1024];
- sdb_log(SDB_LOG_ERR, "frontend: Failed to accept remote "
- "connection: %s", sdb_strerror(errno,
- buf, sizeof(buf)));
- return -1;
- }
-
- if (conn->client_addr.ss_family != AF_UNIX) {
- sdb_log(SDB_LOG_ERR, "frontend: Accepted connection using "
- "unexpected family type %d", conn->client_addr.ss_family);
- return -1;
- }
-
- sock_fl = fcntl(conn->conn.fd, F_GETFL);
- if (fcntl(conn->conn.fd, F_SETFL, sock_fl | O_NONBLOCK)) {
- char buf[1024];
- sdb_log(SDB_LOG_ERR, "frontend: Failed to switch connection conn#%i "
- "to non-blocking mode: %s", conn->conn.fd,
- sdb_strerror(errno, buf, sizeof(buf)));
- return -1;
- }
-
- sdb_log(SDB_LOG_DEBUG, "frontend: Accepted connection on fd=%i",
- conn->conn.fd);
-
- /* update the object name */
- snprintf(obj->name + strlen(CONN_FD_PREFIX),
- strlen(CONN_FD_PLACEHOLDER), "%i", conn->conn.fd);
- return 0;
-} /* connection_init */
-
-static void
-connection_destroy(sdb_object_t *obj)
-{
- assert(obj);
- sdb_connection_close(&CONN(obj)->conn);
-} /* connection_destroy */
-
-static sdb_type_t connection_type = {
- /* size = */ sizeof(connection_obj_t),
- /* init = */ connection_init,
- /* destroy = */ connection_destroy,
-};
-
/*
* connection handler functions
*/
while (42) {
struct timespec timeout = { 0, 500000000 }; /* .5 seconds */
- connection_obj_t *conn;
+ sdb_conn_t *conn;
int status;
errno = 0;
continue;
}
- status = (int)sdb_connection_read(&conn->conn);
+ status = (int)sdb_connection_read(conn);
if (status <= 0) {
/* error or EOF -> close connection */
sdb_object_deref(SDB_OBJ(conn));
connection_accept(sdb_fe_socket_t *sock, listener_t *listener)
{
sdb_object_t *obj;
+ int status;
- /* the placeholder will be replaced with the accepted file
- * descriptor when initializing the object */
- obj = sdb_object_create(CONN_FD_PREFIX CONN_FD_PLACEHOLDER,
- connection_type, listener->sock_fd);
+ obj = SDB_OBJ(sdb_connection_accept(listener->sock_fd));
if (! obj)
return -1;
- if (sdb_llist_append(sock->open_connections, obj)) {
+ status = sdb_llist_append(sock->open_connections, obj);
+ if (status)
sdb_log(SDB_LOG_ERR, "frontend: Failed to append "
"connection %s to list of open connections",
obj->name);
- sdb_object_deref(obj);
- return -1;
- }
- /* hand ownership over to the list */
+ /* hand ownership over to the list; or destroy in case of an error */
sdb_object_deref(obj);
- return 0;
+ return status;
} /* connection_accept */
static int
while (sdb_llist_iter_has_next(iter)) {
sdb_object_t *obj = sdb_llist_iter_get_next(iter);
- if (FD_ISSET(CONN(obj)->conn.fd, exceptions))
+ if (FD_ISSET(CONN(obj)->fd, exceptions))
sdb_log(SDB_LOG_INFO, "Exception on fd %d",
- CONN(obj)->conn.fd);
+ CONN(obj)->fd);
- if (FD_ISSET(CONN(obj)->conn.fd, ready)) {
+ if (FD_ISSET(CONN(obj)->fd, ready)) {
sdb_llist_iter_remove_current(iter);
sdb_channel_write(sock->chan, &obj);
}
max_listen_fd = listener->sock_fd;
}
- sock->chan = sdb_channel_create(1024, sizeof(connection_obj_t *));
+ sock->chan = sdb_channel_create(1024, sizeof(sdb_conn_t *));
if (! sock->chan) {
socket_close(sock);
return -1;
while (sdb_llist_iter_has_next(iter)) {
sdb_object_t *obj = sdb_llist_iter_get_next(iter);
- FD_SET(CONN(obj)->conn.fd, &ready);
- FD_SET(CONN(obj)->conn.fd, &exceptions);
+ FD_SET(CONN(obj)->fd, &ready);
+ FD_SET(CONN(obj)->fd, &exceptions);
- if (CONN(obj)->conn.fd > max_fd)
- max_fd = CONN(obj)->conn.fd;
+ if (CONN(obj)->fd > max_fd)
+ max_fd = CONN(obj)->fd;
}
sdb_llist_iter_destroy(iter);
diff --git a/src/include/frontend/connection-private.h b/src/include/frontend/connection-private.h
--- /dev/null
@@ -0,0 +1,75 @@
+/*
+ * SysDB - src/include/frontend/connection-private.h
+ * Copyright (C) 2013 Sebastian 'tokkee' Harl <sh@tokkee.org>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * private data structures used by frontend modules
+ */
+
+#ifndef SDB_FRONTEND_CONNECTION_PRIVATE_H
+#define SDB_FRONTEND_CONNECTION_PRIVATE_H 1
+
+#include "core/object.h"
+#include "utils/strbuf.h"
+#include "frontend/connection.h"
+
+#include <inttypes.h>
+#include <arpa/inet.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct sdb_conn {
+ sdb_object_t super;
+
+ /* file-descriptor of the open connection */
+ int fd;
+
+ /* connection and client information */
+ struct sockaddr_storage client_addr;
+ socklen_t client_addr_len;
+
+ /* read buffer */
+ sdb_strbuf_t *buf;
+
+ /* connection / protocol state information */
+ uint32_t cmd;
+ uint32_t cmd_len;
+
+ /* user information */
+ char *username; /* NULL if the user has not been authenticated */
+};
+#define CONN(obj) ((sdb_conn_t *)(obj))
+
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
+
+#endif /* ! SDB_FRONTEND_CONNECTION_H */
+
+/* vim: set tw=78 sw=4 ts=4 noexpandtab : */
+
index a5ea092c425d65f570af2b838f2febbdf9e64611..141248f211a97ffff1b89bc0cb07024092d3cc23 100644 (file)
CONNECTION_STARTUP,
} sdb_conn_state_t;
-/* a generic connection object */
-typedef struct {
- /* file-descriptor of the open connection */
- int fd;
-
- /* read buffer */
- sdb_strbuf_t *buf;
-
- /* connection / protocol state information */
- uint32_t cmd;
- uint32_t cmd_len;
-
- /* user information */
- char *username; /* NULL if the user has not been authenticated */
-} sdb_conn_t;
+typedef struct sdb_conn sdb_conn_t;
/*
- * sdb_connection_init:
- * Initialize an (already allocated) connection. This function allocates and
- * initialized any attributes. It's an error to call init on an already
- * initialized object.
+ * sdb_connection_accpet:
+ * Accept a new connection on the specified file-descriptor 'fd' and return a
+ * newly allocated connection object.
*
* Returns:
* - 0 on success
* - a negative value else
*/
-int
-sdb_connection_init(sdb_conn_t *conn);
+sdb_conn_t *
+sdb_connection_accept(int fd);
/*
* sdb_connection_close:
- * Close a open connection and deallocate any memory used by its attributes.
+ * Close a open connection and deallocate any memory. The connection object is
+ * no longer valid after calling this function.
*/
void
sdb_connection_close(sdb_conn_t *conn);