summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 05f5ac1)
raw | patch | inline | side by side (parent: 05f5ac1)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 14 Jan 2015 21:36:38 +0000 (22:36 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Wed, 14 Jan 2015 21:36:38 +0000 (22:36 +0100) |
It's now a property of a listener implementation.
Moved the unixsock implementation over from frontend/connection to
frontend/sock.
Moved the unixsock implementation over from frontend/connection to
frontend/sock.
src/frontend/connection.c | patch | blob | history | |
src/frontend/sock.c | patch | blob | history |
index c35d2d213bd5cee21e9d0e5d3a069f17bce45736..700c84ae42af2e0793b289e82c770807df609e51 100644 (file)
#include <stdlib.h>
#include <string.h>
-#include <sys/socket.h>
-#include <sys/types.h>
-#include <sys/param.h>
-
-#ifdef HAVE_UCRED_H
-# include <ucred.h>
-#endif
-#ifdef HAVE_SYS_UCRED_H
-# include <sys/ucred.h>
-#endif
-
-#include <pwd.h>
-
#include <pthread.h>
/*
#define CONN_FD_PREFIX "conn#"
#define CONN_FD_PLACEHOLDER "XXXXXXX"
-/* XXX: only supports UNIX sockets so far */
-static char *
-peer(int sockfd)
-{
- uid_t uid;
-
- struct passwd pw_entry;
- struct passwd *result = NULL;
- char buf[1024];
-
-#ifdef SO_PEERCRED
- struct ucred cred;
- socklen_t len = sizeof(cred);
-
- if (getsockopt(sockfd, SOL_SOCKET, SO_PEERCRED, &cred, &len)
- || (len != sizeof(cred)))
- return NULL;
- uid = cred.uid;
-#else /* SO_PEERCRED */
- errno = ENOSYS;
- return NULL;
-#endif
-
- memset(&pw_entry, 0, sizeof(pw_entry));
- if (getpwuid_r(uid, &pw_entry, buf, sizeof(buf), &result)
- || (! result))
- return NULL;
- return strdup(result->pw_name);
-} /* peer */
-
static ssize_t
conn_read(sdb_conn_t *conn, size_t len)
{
return -1;
}
- conn->username = peer(conn->fd);
- if (! conn->username) {
- char buf[1024];
- sdb_log(SDB_LOG_ERR, "frontend: Failed to retrieve peer for "
- "connection conn#%i: %s", conn->fd,
- sdb_strerror(errno, buf, sizeof(buf)));
- return -1;
- }
+ conn->username = NULL;
conn->ready = 0;
sdb_log(SDB_LOG_DEBUG, "frontend: Accepted connection on fd=%i",
diff --git a/src/frontend/sock.c b/src/frontend/sock.c
index 860fb8ee62a5063ce021b9006ea1a90266ce3418..2def8da868f9e94df057681e99d2508abced36c6 100644 (file)
--- a/src/frontend/sock.c
+++ b/src/frontend/sock.c
#include <sys/types.h>
#include <sys/select.h>
#include <sys/socket.h>
+#include <sys/param.h>
#include <sys/un.h>
-#include <libgen.h>
+#ifdef HAVE_UCRED_H
+# include <ucred.h>
+#endif
+#ifdef HAVE_SYS_UCRED_H
+# include <sys/ucred.h>
+#endif
+
+#include <pwd.h>
+#include <libgen.h>
#include <pthread.h>
/*
int sock_fd;
int (*accept)(sdb_conn_t *);
+ int (*peer)(sdb_conn_t *);
} listener_t;
typedef struct {
* connection management functions
*/
+static int
+unixsock_peer(sdb_conn_t *conn)
+{
+ uid_t uid;
+
+ struct passwd pw_entry;
+ struct passwd *result = NULL;
+ char buf[1024];
+
+#ifdef SO_PEERCRED
+ struct ucred cred;
+ socklen_t len = sizeof(cred);
+
+ if (getsockopt(conn->fd, SOL_SOCKET, SO_PEERCRED, &cred, &len)
+ || (len != sizeof(cred))) {
+ char errbuf[1024];
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to determine peer for "
+ "connection conn#%i: %s", conn->fd,
+ sdb_strerror(errno, errbuf, sizeof(errbuf)));
+ return -1;
+ }
+ uid = cred.uid;
+#else /* SO_PEERCRED */
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to determine peer for "
+ "connection conn#%i: operation not supported", conn->fd);
+ return -1;
+#endif
+
+ memset(&pw_entry, 0, sizeof(pw_entry));
+ if (getpwuid_r(uid, &pw_entry, buf, sizeof(buf), &result) || (! result)
+ || (! (conn->username = strdup(result->pw_name)))) {
+ char errbuf[1024];
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to determine peer for "
+ "connection conn#%i: %s", conn->fd,
+ sdb_strerror(errno, errbuf, sizeof(errbuf)));
+ return -1;
+ }
+ return 0;
+} /* unixsock_peer */
+
static int
open_unixsock(listener_t *listener)
{
listener->address, sdb_strerror(errno, buf, sizeof(buf)));
return -1;
}
+
+ listener->peer = unixsock_peer;
return 0;
} /* open_unixsock */
sdb_object_deref(obj);
return -1;
}
+ if (listener->peer && listener->peer(CONN(obj))) {
+ /* peer() is expected to log an error */
+ sdb_object_deref(obj);
+ return -1;
+ }
status = sdb_llist_append(sock->open_connections, obj);
if (status)