Listen.cxx 3.76 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2013 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * 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.
14 15 16 17
 *
 * 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.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20
#include "config.h"
Max Kellermann's avatar
Max Kellermann committed
21 22
#include "Listen.hxx"
#include "Main.hxx"
23
#include "Instance.hxx"
Max Kellermann's avatar
Max Kellermann committed
24
#include "Client.hxx"
25
#include "conf.h"
26
#include "event/ServerSocket.hxx"
Max Kellermann's avatar
Max Kellermann committed
27 28

#include <string.h>
29
#include <assert.h>
30

31 32 33 34
#ifdef ENABLE_SYSTEMD_DAEMON
#include <systemd/sd-daemon.h>
#endif

35 36 37
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "listen"

38
#define DEFAULT_PORT	6600
Warren Dukes's avatar
Warren Dukes committed
39

40 41 42 43 44 45 46
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) {
47
		client_new(*main_loop, *instance->partition,
48 49 50
			   fd, &address, address_length, uid);
	}
};
Warren Dukes's avatar
Warren Dukes committed
51

52 53
static ClientListener *listen_socket;
int listen_port;
54

55 56 57
static bool
listen_add_config_param(unsigned int port,
			const struct config_param *param,
58
			GError **error_r)
59
{
60 61 62
	assert(param != NULL);

	if (0 == strcmp(param->value, "any")) {
63
		return listen_socket->AddPort(port, error_r);
64
	} else if (param->value[0] == '/') {
65
		return listen_socket->AddPath(param->value, error_r);
Avuton Olrich's avatar
Avuton Olrich committed
66
	} else {
67
		return listen_socket->AddHost(param->value, port, error_r);
Warren Dukes's avatar
Warren Dukes committed
68 69 70
	}
}

71 72 73 74 75 76 77 78 79 80 81 82 83 84
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)
85
		if (!listen_socket->AddFD(i, error_r))
86 87 88 89 90 91 92 93 94
			return false;

	return true;
#else
	(void)error_r;
	return false;
#endif
}

95 96
bool
listen_global_init(GError **error_r)
Avuton Olrich's avatar
Avuton Olrich committed
97
{
98 99
	assert(main_loop != nullptr);

100
	int port = config_get_positive(CONF_PORT, DEFAULT_PORT);
101
	const struct config_param *param =
102
		config_get_next_param(CONF_BIND_TO_ADDRESS, NULL);
103 104
	bool success;
	GError *error = NULL;
105

106
	listen_socket = new ClientListener();
107

108 109 110 111 112 113 114 115
	if (listen_systemd_activation(&error))
		return true;

	if (error != NULL) {
		g_propagate_error(error_r, error);
		return false;
	}

116 117 118 119 120 121
	if (param != NULL) {
		/* "bind_to_address" is configured, create listeners
		   for all values */

		do {
			success = listen_add_config_param(port, param, &error);
122
			if (!success) {
123
				delete listen_socket;
124 125 126 127 128
				g_propagate_prefixed_error(error_r, error,
							   "Failed to listen on %s (line %i): ",
							   param->value, param->line);
				return false;
			}
129 130 131 132 133 134 135 136

			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 */

137
		success = listen_socket->AddPort(port, error_r);
138
		if (!success) {
139
			delete listen_socket;
140 141 142 143 144
			g_propagate_prefixed_error(error_r, error,
						   "Failed to listen on *:%d: ",
						   port);
			return false;
		}
145 146
	}

147 148
	if (!listen_socket->Open(error_r)) {
		delete listen_socket;
149
		return false;
150
	}
151

Max Kellermann's avatar
Max Kellermann committed
152
	listen_port = port;
153
	return true;
154 155
}

Max Kellermann's avatar
Max Kellermann committed
156
void listen_global_finish(void)
Avuton Olrich's avatar
Avuton Olrich committed
157
{
Max Kellermann's avatar
Max Kellermann committed
158
	g_debug("listen_global_finish called");
159

160
	assert(listen_socket != NULL);
161

162
	delete listen_socket;
Warren Dukes's avatar
Warren Dukes committed
163
}