2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-02-24 00:41:20 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "listen.h"
|
2008-08-28 20:02:43 +02:00
|
|
|
#include "client.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
#include "conf.h"
|
2004-05-15 23:19:43 +02:00
|
|
|
#include "utils.h"
|
2008-12-29 17:28:32 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
2009-01-03 14:51:43 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2009-02-24 18:36:31 +01:00
|
|
|
#include <assert.h>
|
2008-12-30 19:07:10 +01:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#include <winsock.h>
|
|
|
|
#else
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <netinet/in.h>
|
2009-01-16 16:04:20 +01:00
|
|
|
#include <sys/socket.h>
|
2008-12-29 17:28:32 +01:00
|
|
|
#include <sys/un.h>
|
|
|
|
#include <netdb.h>
|
2008-12-30 19:07:10 +01:00
|
|
|
#endif
|
2008-04-12 06:19:26 +02:00
|
|
|
|
2008-12-29 17:29:04 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "listen"
|
|
|
|
|
2005-03-06 20:00:58 +01:00
|
|
|
#define ALLOW_REUSE 1
|
|
|
|
|
|
|
|
#define DEFAULT_PORT 6600
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-01-10 18:55:29 +01:00
|
|
|
struct listen_socket {
|
|
|
|
struct listen_socket *next;
|
|
|
|
|
|
|
|
int fd;
|
2009-01-10 18:55:33 +01:00
|
|
|
|
|
|
|
guint source_id;
|
2009-01-10 18:55:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct listen_socket *listen_sockets;
|
2009-02-24 17:42:36 +01:00
|
|
|
int listen_port;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
static GQuark
|
|
|
|
listen_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("listen");
|
|
|
|
}
|
|
|
|
|
2008-12-30 19:24:39 +01:00
|
|
|
static gboolean
|
|
|
|
listen_in_event(GIOChannel *source, GIOCondition condition, gpointer data);
|
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
static bool
|
|
|
|
listen_add_address(int pf, const struct sockaddr *addrp, socklen_t addrlen,
|
|
|
|
GError **error)
|
2006-07-19 20:56:54 +02:00
|
|
|
{
|
2009-02-24 17:43:10 +01:00
|
|
|
int fd, ret;
|
2009-02-24 17:42:36 +01:00
|
|
|
const int reuse = ALLOW_REUSE;
|
2008-10-18 18:21:49 +02:00
|
|
|
#ifdef HAVE_STRUCT_UCRED
|
2008-10-15 22:34:21 +02:00
|
|
|
int passcred = 1;
|
2008-10-17 17:40:28 +02:00
|
|
|
#endif
|
2009-01-10 18:55:29 +01:00
|
|
|
struct listen_socket *ls;
|
2008-12-30 19:24:39 +01:00
|
|
|
GIOChannel *channel;
|
2006-07-19 20:56:54 +02:00
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
fd = socket(pf, SOCK_STREAM, 0);
|
|
|
|
if (fd < 0) {
|
|
|
|
g_set_error(error, listen_quark(), errno,
|
|
|
|
"Failed to create socket: %s", strerror(errno));
|
|
|
|
return false;
|
|
|
|
}
|
2006-07-19 20:56:54 +02:00
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
ret = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
|
|
|
|
&reuse, sizeof(reuse));
|
|
|
|
if (ret < 0) {
|
|
|
|
g_set_error(error, listen_quark(), errno,
|
|
|
|
"setsockopt() failed: %s", strerror(errno));
|
|
|
|
close(fd);
|
|
|
|
return false;
|
2006-07-19 20:56:54 +02:00
|
|
|
}
|
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
ret = bind(fd, addrp, addrlen);
|
|
|
|
if (ret < 0) {
|
|
|
|
g_set_error(error, listen_quark(), errno,
|
|
|
|
"%s", strerror(errno));
|
|
|
|
close(fd);
|
|
|
|
return false;
|
2006-07-19 20:56:54 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
ret = listen(fd, 5);
|
|
|
|
if (ret < 0) {
|
|
|
|
g_set_error(error, listen_quark(), errno,
|
|
|
|
"listen() failed: %s", strerror(errno));
|
|
|
|
close(fd);
|
|
|
|
return false;
|
|
|
|
}
|
2006-07-19 20:56:54 +02:00
|
|
|
|
2008-10-18 18:21:49 +02:00
|
|
|
#ifdef HAVE_STRUCT_UCRED
|
2009-02-24 17:43:10 +01:00
|
|
|
setsockopt(fd, SOL_SOCKET, SO_PASSCRED, &passcred, sizeof(passcred));
|
2008-10-15 22:34:21 +02:00
|
|
|
#endif
|
|
|
|
|
2009-01-10 18:55:29 +01:00
|
|
|
ls = g_new(struct listen_socket, 1);
|
2009-02-24 17:43:10 +01:00
|
|
|
ls->fd = fd;
|
2006-07-22 15:15:20 +02:00
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
channel = g_io_channel_unix_new(fd);
|
2009-01-10 18:55:33 +01:00
|
|
|
ls->source_id = g_io_add_watch(channel, G_IO_IN,
|
2009-02-24 17:43:10 +01:00
|
|
|
listen_in_event, GINT_TO_POINTER(fd));
|
2008-12-30 19:24:39 +01:00
|
|
|
g_io_channel_unref(channel);
|
|
|
|
|
2009-01-10 18:55:29 +01:00
|
|
|
ls->next = listen_sockets;
|
|
|
|
listen_sockets = ls;
|
|
|
|
|
2009-02-24 17:43:10 +01:00
|
|
|
return true;
|
2006-07-19 20:56:54 +02:00
|
|
|
}
|
|
|
|
|
2009-02-24 18:49:09 +01:00
|
|
|
#ifdef HAVE_TCP
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a listener on a port on all IPv4 interfaces.
|
|
|
|
*
|
|
|
|
* @param port the TCP port
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
listen_add_port_ipv4(unsigned int port, GError **error)
|
|
|
|
{
|
|
|
|
struct sockaddr_in sin;
|
|
|
|
const struct sockaddr *addrp = (const struct sockaddr *)&sin;
|
|
|
|
socklen_t addrlen = sizeof(sin);
|
|
|
|
|
|
|
|
memset(&sin, 0, sizeof(sin));
|
|
|
|
sin.sin_port = htons(port);
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
|
|
|
|
return listen_add_address(PF_INET, addrp, addrlen, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
/**
|
|
|
|
* Add a listener on a port on all IPv6 interfaces.
|
|
|
|
*
|
|
|
|
* @param port the TCP port
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
listen_add_port_ipv6(unsigned int port, GError **error)
|
|
|
|
{
|
|
|
|
struct sockaddr_in6 sin;
|
|
|
|
const struct sockaddr *addrp = (const struct sockaddr *)&sin;
|
|
|
|
socklen_t addrlen = sizeof(sin);
|
|
|
|
|
|
|
|
memset(&sin, 0, sizeof(sin));
|
|
|
|
sin.sin6_port = htons(port);
|
|
|
|
sin.sin6_family = AF_INET6;
|
|
|
|
|
|
|
|
return listen_add_address(PF_INET6, addrp, addrlen, error);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_IPV6 */
|
|
|
|
|
|
|
|
#endif /* HAVE_TCP */
|
|
|
|
|
2009-02-24 17:51:32 +01:00
|
|
|
/**
|
|
|
|
* Add a listener on a port on all interfaces.
|
|
|
|
*
|
|
|
|
* @param port the TCP port
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2009-02-24 17:43:10 +01:00
|
|
|
static bool
|
2009-02-24 17:51:32 +01:00
|
|
|
listen_add_port(unsigned int port, GError **error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-24 17:51:32 +01:00
|
|
|
#ifdef HAVE_TCP
|
2009-02-24 17:43:10 +01:00
|
|
|
bool success;
|
2004-02-24 00:41:20 +01:00
|
|
|
#ifdef HAVE_IPV6
|
2009-02-24 18:55:12 +01:00
|
|
|
bool success6;
|
|
|
|
GError *error2 = NULL;
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2009-02-24 17:51:32 +01:00
|
|
|
g_debug("binding to any address");
|
2009-02-24 18:49:09 +01:00
|
|
|
|
2006-07-22 19:19:59 +02:00
|
|
|
#ifdef HAVE_IPV6
|
2009-02-24 18:55:12 +01:00
|
|
|
success6 = listen_add_port_ipv6(port, &error2);
|
|
|
|
if (!success6) {
|
|
|
|
if (error2->domain != listen_quark() ||
|
|
|
|
(error2->code != EAFNOSUPPORT && error2->code != EINVAL &&
|
|
|
|
error2->code != EPROTONOSUPPORT)) {
|
|
|
|
g_propagate_error(error, error2);
|
2009-02-24 17:51:32 +01:00
|
|
|
return false;
|
2009-02-24 18:55:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* although MPD was compiled with IPv6 support, this
|
|
|
|
host does not have it - ignore this error */
|
|
|
|
g_error_free(error2);
|
2009-02-24 17:51:32 +01:00
|
|
|
}
|
2006-07-22 19:19:59 +02:00
|
|
|
#endif
|
2009-02-24 17:43:10 +01:00
|
|
|
|
2009-02-24 18:49:09 +01:00
|
|
|
success = listen_add_port_ipv4(port, error);
|
2009-02-24 17:51:32 +01:00
|
|
|
if (!success) {
|
2006-07-22 19:19:59 +02:00
|
|
|
#ifdef HAVE_IPV6
|
2009-02-24 18:55:12 +01:00
|
|
|
if (success6)
|
2009-02-24 17:51:32 +01:00
|
|
|
/* non-critical: IPv6 listener is
|
|
|
|
already set up */
|
|
|
|
g_clear_error(error);
|
|
|
|
else
|
2006-07-22 19:19:59 +02:00
|
|
|
#endif
|
2009-02-24 17:51:32 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-02-24 17:43:10 +01:00
|
|
|
|
2009-02-24 17:51:32 +01:00
|
|
|
return true;
|
2008-04-12 06:07:24 +02:00
|
|
|
#else /* HAVE_TCP */
|
2009-02-24 17:51:32 +01:00
|
|
|
(void)port;
|
|
|
|
|
|
|
|
g_set_error(error, listen_quark(), 0,
|
|
|
|
"TCP support is disabled");
|
|
|
|
return false;
|
2008-04-12 06:07:24 +02:00
|
|
|
#endif /* HAVE_TCP */
|
2009-02-24 17:51:32 +01:00
|
|
|
}
|
|
|
|
|
2009-02-24 18:29:53 +01:00
|
|
|
/**
|
|
|
|
* Resolves a host name, and adds listeners on all addresses in the
|
|
|
|
* result set.
|
|
|
|
*
|
|
|
|
* @param hostname the host name to be resolved
|
|
|
|
* @param port the TCP port
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors
|
|
|
|
* @return true on success
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
listen_add_host(const char *hostname, unsigned port, GError **error)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TCP
|
|
|
|
#ifndef WIN32
|
|
|
|
struct addrinfo hints, *ai, *i;
|
|
|
|
char service[20];
|
|
|
|
int ret;
|
|
|
|
bool success;
|
|
|
|
|
|
|
|
g_debug("binding to address for %s", hostname);
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_flags = AI_PASSIVE;
|
|
|
|
#ifdef AI_ADDRCONFIG
|
|
|
|
hints.ai_flags |= AI_ADDRCONFIG;
|
|
|
|
#endif
|
|
|
|
hints.ai_family = PF_UNSPEC;
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_protocol = IPPROTO_TCP;
|
|
|
|
|
|
|
|
g_snprintf(service, sizeof(service), "%u", port);
|
|
|
|
|
|
|
|
ret = getaddrinfo(hostname, service, &hints, &ai);
|
|
|
|
if (ret != 0) {
|
|
|
|
g_set_error(error, listen_quark(), ret,
|
|
|
|
"Failed to look up host \"%s\": %s",
|
|
|
|
hostname, gai_strerror(ret));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = ai; i != NULL; i = i->ai_next) {
|
|
|
|
success = listen_add_address(i->ai_family, i->ai_addr,
|
|
|
|
i->ai_addrlen, error);
|
|
|
|
if (!success)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#else /* WIN32 */
|
|
|
|
const struct hostent *he;
|
|
|
|
|
2009-03-01 01:49:49 +01:00
|
|
|
g_debug("binding to address for %s", hostname);
|
2009-02-24 18:29:53 +01:00
|
|
|
|
2009-03-01 01:49:49 +01:00
|
|
|
he = gethostbyname(hostname);
|
2009-02-24 18:29:53 +01:00
|
|
|
if (he == NULL) {
|
|
|
|
g_set_error(error, listen_quark(), 0,
|
|
|
|
"Failed to look up host \"%s\"", hostname);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-03-01 01:49:49 +01:00
|
|
|
if (he->h_addrtype != AF_INET) {
|
|
|
|
g_set_error(error, listen_quark(), 0,
|
|
|
|
"IPv4 address expected for host \"%s\"",
|
|
|
|
hostname);
|
|
|
|
return false;
|
|
|
|
}
|
2009-02-24 18:29:53 +01:00
|
|
|
|
|
|
|
return listen_add_address(AF_INET, he->h_addr, he->h_length,
|
|
|
|
error);
|
|
|
|
#endif /* !WIN32 */
|
|
|
|
#else /* HAVE_TCP */
|
|
|
|
|
2009-02-24 19:06:31 +01:00
|
|
|
(void)hostname;
|
|
|
|
(void)port;
|
|
|
|
|
2009-02-24 18:29:53 +01:00
|
|
|
g_set_error(error, listen_quark(), 0,
|
|
|
|
"TCP support is disabled");
|
|
|
|
return false;
|
|
|
|
#endif /* HAVE_TCP */
|
|
|
|
}
|
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
#ifdef HAVE_UN
|
|
|
|
/**
|
|
|
|
* Add a listener on a Unix domain socket.
|
|
|
|
*
|
|
|
|
* @param path the absolute socket path
|
|
|
|
* @param error location to store the error occuring, or NULL to ignore errors
|
|
|
|
* @return true on success
|
|
|
|
*/
|
2009-02-24 17:51:32 +01:00
|
|
|
static bool
|
2009-02-24 17:51:39 +01:00
|
|
|
listen_add_path(const char *path, GError **error)
|
2009-02-24 17:51:32 +01:00
|
|
|
{
|
2009-02-24 17:51:39 +01:00
|
|
|
size_t path_length;
|
|
|
|
struct sockaddr_un s_un;
|
|
|
|
const struct sockaddr *addrp = (const struct sockaddr *)&s_un;
|
|
|
|
socklen_t addrlen = sizeof(s_un);
|
2009-02-24 17:51:32 +01:00
|
|
|
bool success;
|
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
path_length = strlen(path);
|
|
|
|
if (path_length >= sizeof(s_un.sun_path))
|
|
|
|
g_error("unix socket path is too long");
|
2008-04-12 06:07:18 +02:00
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
unlink(path);
|
2008-04-12 06:07:18 +02:00
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
s_un.sun_family = AF_UNIX;
|
|
|
|
memcpy(s_un.sun_path, path, path_length + 1);
|
2008-04-12 06:20:56 +02:00
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
success = listen_add_address(PF_UNIX, addrp, addrlen, error);
|
|
|
|
if (!success)
|
|
|
|
return false;
|
2008-04-12 06:07:18 +02:00
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
/* allow everybody to connect */
|
|
|
|
chmod(path, 0666);
|
2008-04-12 06:07:18 +02:00
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_UN */
|
2008-10-30 18:03:18 +01:00
|
|
|
|
2009-02-24 17:51:39 +01:00
|
|
|
static bool
|
|
|
|
listen_add_config_param(unsigned int port,
|
|
|
|
const struct config_param *param,
|
|
|
|
GError **error)
|
|
|
|
{
|
2009-02-24 18:36:31 +01:00
|
|
|
assert(param != NULL);
|
|
|
|
|
|
|
|
if (0 == strcmp(param->value, "any")) {
|
2009-02-24 17:51:39 +01:00
|
|
|
return listen_add_port(port, error);
|
|
|
|
#ifdef HAVE_UN
|
|
|
|
} else if (param->value[0] == '/') {
|
|
|
|
return listen_add_path(param->value, error);
|
2008-04-12 06:07:24 +02:00
|
|
|
#endif /* HAVE_UN */
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2009-02-24 18:29:53 +01:00
|
|
|
return listen_add_host(param->value, port, error);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-24 17:42:36 +01:00
|
|
|
void listen_global_init(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-01-21 08:48:02 +01:00
|
|
|
int port = config_get_positive(CONF_PORT, DEFAULT_PORT);
|
2009-01-25 16:03:49 +01:00
|
|
|
const struct config_param *param =
|
2009-01-17 20:23:27 +01:00
|
|
|
config_get_next_param(CONF_BIND_TO_ADDRESS, NULL);
|
2009-02-24 17:43:10 +01:00
|
|
|
bool success;
|
|
|
|
GError *error = NULL;
|
2007-01-11 21:41:17 +01:00
|
|
|
|
2009-02-24 18:36:31 +01:00
|
|
|
if (param != NULL) {
|
|
|
|
/* "bind_to_address" is configured, create listeners
|
|
|
|
for all values */
|
|
|
|
|
|
|
|
do {
|
|
|
|
success = listen_add_config_param(port, param, &error);
|
|
|
|
if (!success)
|
2009-02-24 17:43:10 +01:00
|
|
|
g_error("Failed to listen on %s (line %i): %s",
|
|
|
|
param->value, param->line,
|
|
|
|
error->message);
|
2009-02-24 18:36:31 +01:00
|
|
|
|
|
|
|
param = config_get_next_param(CONF_BIND_TO_ADDRESS,
|
|
|
|
param);
|
|
|
|
} while (param != NULL);
|
|
|
|
} else {
|
|
|
|
/* no "bind_to_address" configured, bind the
|
|
|
|
configured port on all interfaces */
|
|
|
|
|
|
|
|
success = listen_add_port(port, &error);
|
|
|
|
if (!success)
|
|
|
|
g_error("Failed to listen on *:%d: %s",
|
|
|
|
port, error->message);
|
|
|
|
}
|
|
|
|
|
2009-02-24 17:42:36 +01:00
|
|
|
listen_port = port;
|
2004-11-03 20:42:54 +01:00
|
|
|
}
|
|
|
|
|
2009-02-24 17:42:36 +01:00
|
|
|
void listen_global_finish(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2009-02-24 17:42:36 +01:00
|
|
|
g_debug("listen_global_finish called");
|
2004-11-03 20:42:54 +01:00
|
|
|
|
2009-01-10 18:55:29 +01:00
|
|
|
while (listen_sockets != NULL) {
|
|
|
|
struct listen_socket *ls = listen_sockets;
|
|
|
|
listen_sockets = ls->next;
|
2004-11-03 20:42:54 +01:00
|
|
|
|
2009-01-10 18:55:33 +01:00
|
|
|
g_source_remove(ls->source_id);
|
2009-01-10 18:55:29 +01:00
|
|
|
close(ls->fd);
|
|
|
|
g_free(ls);
|
|
|
|
}
|
2004-11-03 20:42:54 +01:00
|
|
|
}
|
|
|
|
|
2008-10-15 22:34:21 +02:00
|
|
|
static int get_remote_uid(int fd)
|
|
|
|
{
|
2008-10-18 18:21:49 +02:00
|
|
|
#ifdef HAVE_STRUCT_UCRED
|
2008-10-15 22:34:21 +02:00
|
|
|
struct ucred cred;
|
|
|
|
socklen_t len = sizeof (cred);
|
|
|
|
|
|
|
|
if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cred, &len) < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return cred.uid;
|
|
|
|
#else
|
|
|
|
(void)fd;
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-12-30 19:24:39 +01:00
|
|
|
static gboolean
|
|
|
|
listen_in_event(G_GNUC_UNUSED GIOChannel *source,
|
|
|
|
G_GNUC_UNUSED GIOCondition condition,
|
|
|
|
gpointer data)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-12-30 19:24:39 +01:00
|
|
|
int listen_fd = GPOINTER_TO_INT(data), fd;
|
2009-02-28 15:20:35 +01:00
|
|
|
struct sockaddr_storage sa;
|
|
|
|
socklen_t sa_length = sizeof(sa);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-02-28 15:20:35 +01:00
|
|
|
fd = accept(listen_fd, (struct sockaddr*)&sa, &sa_length);
|
2008-12-30 19:24:39 +01:00
|
|
|
if (fd >= 0) {
|
2009-01-03 13:44:19 +01:00
|
|
|
set_nonblocking(fd);
|
|
|
|
|
2009-02-28 15:20:35 +01:00
|
|
|
client_new(fd, (struct sockaddr*)&sa, sa_length,
|
|
|
|
get_remote_uid(fd));
|
2008-12-30 19:24:39 +01:00
|
|
|
} else if (fd < 0 && errno != EINTR) {
|
|
|
|
g_warning("Problems accept()'ing");
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2008-12-30 19:24:39 +01:00
|
|
|
|
|
|
|
return true;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|