2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2013-01-03 11:05:44 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-03 11:05:44 +01:00
|
|
|
#include "Listen.hxx"
|
|
|
|
#include "Main.hxx"
|
2013-04-17 22:58:33 +02:00
|
|
|
#include "Instance.hxx"
|
2013-01-03 10:33:04 +01:00
|
|
|
#include "Client.hxx"
|
2013-01-07 09:38:02 +01:00
|
|
|
#include "conf.h"
|
2013-01-30 13:39:12 +01:00
|
|
|
#include "event/ServerSocket.hxx"
|
2008-12-29 17:28:32 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
2009-02-24 18:36:31 +01:00
|
|
|
#include <assert.h>
|
2008-12-30 19:07:10 +01:00
|
|
|
|
2012-02-13 20:48:51 +01:00
|
|
|
#ifdef ENABLE_SYSTEMD_DAEMON
|
|
|
|
#include <systemd/sd-daemon.h>
|
|
|
|
#endif
|
|
|
|
|
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 DEFAULT_PORT 6600
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-30 13:20:27 +01:00
|
|
|
class ClientListener final : public ServerSocket {
|
|
|
|
public:
|
|
|
|
ClientListener():ServerSocket(*main_loop) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void OnAccept(int fd, const sockaddr &address,
|
|
|
|
size_t address_length, int uid) {
|
2013-04-17 22:58:33 +02:00
|
|
|
client_new(*main_loop, *instance->partition,
|
2013-01-30 13:20:27 +01:00
|
|
|
fd, &address, address_length, uid);
|
|
|
|
}
|
|
|
|
};
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-30 13:20:27 +01:00
|
|
|
static ClientListener *listen_socket;
|
|
|
|
int listen_port;
|
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,
|
2010-10-05 20:29:41 +02:00
|
|
|
GError **error_r)
|
2009-02-24 17:51:39 +01:00
|
|
|
{
|
2009-02-24 18:36:31 +01:00
|
|
|
assert(param != NULL);
|
|
|
|
|
|
|
|
if (0 == strcmp(param->value, "any")) {
|
2013-01-30 12:56:23 +01:00
|
|
|
return listen_socket->AddPort(port, error_r);
|
2009-02-24 17:51:39 +01:00
|
|
|
} else if (param->value[0] == '/') {
|
2013-01-30 12:56:23 +01:00
|
|
|
return listen_socket->AddPath(param->value, error_r);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2013-01-30 12:56:23 +01:00
|
|
|
return listen_socket->AddHost(param->value, port, error_r);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-13 20:48:51 +01:00
|
|
|
static bool
|
|
|
|
listen_systemd_activation(GError **error_r)
|
|
|
|
{
|
|
|
|
#ifdef ENABLE_SYSTEMD_DAEMON
|
|
|
|
int n = sd_listen_fds(true);
|
|
|
|
if (n <= 0) {
|
|
|
|
if (n < 0)
|
|
|
|
g_warning("sd_listen_fds() failed: %s",
|
|
|
|
g_strerror(-n));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = SD_LISTEN_FDS_START, end = SD_LISTEN_FDS_START + n;
|
|
|
|
i != end; ++i)
|
2013-01-30 12:56:23 +01:00
|
|
|
if (!listen_socket->AddFD(i, error_r))
|
2012-02-13 20:48:51 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
(void)error_r;
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-09-24 21:40:04 +02:00
|
|
|
bool
|
|
|
|
listen_global_init(GError **error_r)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-01-15 22:50:49 +01:00
|
|
|
assert(main_loop != nullptr);
|
|
|
|
|
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
|
|
|
|
2013-01-30 13:20:27 +01:00
|
|
|
listen_socket = new ClientListener();
|
2010-10-05 20:29:41 +02:00
|
|
|
|
2012-02-13 20:48:51 +01:00
|
|
|
if (listen_systemd_activation(&error))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (error != NULL) {
|
|
|
|
g_propagate_error(error_r, error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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);
|
2009-09-24 21:40:04 +02:00
|
|
|
if (!success) {
|
2013-01-30 12:56:23 +01:00
|
|
|
delete listen_socket;
|
2009-09-24 21:40:04 +02:00
|
|
|
g_propagate_prefixed_error(error_r, error,
|
|
|
|
"Failed to listen on %s (line %i): ",
|
|
|
|
param->value, param->line);
|
|
|
|
return false;
|
|
|
|
}
|
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 */
|
|
|
|
|
2013-01-30 12:56:23 +01:00
|
|
|
success = listen_socket->AddPort(port, error_r);
|
2009-09-24 21:40:04 +02:00
|
|
|
if (!success) {
|
2013-01-30 12:56:23 +01:00
|
|
|
delete listen_socket;
|
2009-09-24 21:40:04 +02:00
|
|
|
g_propagate_prefixed_error(error_r, error,
|
|
|
|
"Failed to listen on *:%d: ",
|
|
|
|
port);
|
|
|
|
return false;
|
|
|
|
}
|
2009-02-24 18:36:31 +01:00
|
|
|
}
|
|
|
|
|
2013-01-30 12:56:23 +01:00
|
|
|
if (!listen_socket->Open(error_r)) {
|
|
|
|
delete listen_socket;
|
2010-10-05 20:29:41 +02:00
|
|
|
return false;
|
2013-01-30 12:56:23 +01:00
|
|
|
}
|
2010-10-05 20:29:41 +02:00
|
|
|
|
2009-02-24 17:42:36 +01:00
|
|
|
listen_port = port;
|
2009-09-24 21:40:04 +02:00
|
|
|
return true;
|
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
|
|
|
|
2010-10-05 20:29:41 +02:00
|
|
|
assert(listen_socket != NULL);
|
2004-11-03 20:42:54 +01:00
|
|
|
|
2013-01-30 12:56:23 +01:00
|
|
|
delete listen_socket;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|