ServerSocket.cxx 8.73 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2013 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "config.h"
21 22 23 24 25

#ifdef HAVE_STRUCT_UCRED
#define _GNU_SOURCE 1
#endif

26
#include "ServerSocket.hxx"
27 28
#include "system/SocketUtil.hxx"
#include "system/SocketError.hxx"
29
#include "event/SocketMonitor.hxx"
30
#include "system/Resolver.hxx"
31
#include "system/fd_util.h"
32 33
#include "util/Error.hxx"
#include "util/Domain.hxx"
34
#include "Log.hxx"
35

36 37
#include <glib.h>

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>

#ifdef WIN32
#include <ws2tcpip.h>
#include <winsock.h>
#else
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <netdb.h>
#endif

#define DEFAULT_PORT	6600

58
class OneServerSocket final : private SocketMonitor {
59
	ServerSocket &parent;
60

61
	const unsigned serial;
62 63 64 65

	char *path;

	size_t address_length;
66 67
	struct sockaddr *address;

68
public:
69
	OneServerSocket(EventLoop &_loop, ServerSocket &_parent,
70
			unsigned _serial,
71 72
			const struct sockaddr *_address,
			size_t _address_length)
73 74
		:SocketMonitor(_loop),
		 parent(_parent), serial(_serial),
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
		 path(nullptr),
		 address_length(_address_length),
		 address((sockaddr *)g_memdup(_address, _address_length))
	{
		assert(_address != nullptr);
		assert(_address_length > 0);
	}

	OneServerSocket(const OneServerSocket &other) = delete;
	OneServerSocket &operator=(const OneServerSocket &other) = delete;

	~OneServerSocket() {
		g_free(path);
		g_free(address);
	}

91 92 93 94 95 96 97 98 99 100
	unsigned GetSerial() const {
		return serial;
	}

	void SetPath(const char *_path) {
		assert(path == nullptr);

		path = g_strdup(_path);
	}

101
	bool Open(Error &error);
102

103
	using SocketMonitor::IsDefined;
104
	using SocketMonitor::Close;
105 106 107

	char *ToString() const;

108 109 110 111
	void SetFD(int _fd) {
		SocketMonitor::Open(_fd);
		SocketMonitor::ScheduleRead();
	}
112 113

	void Accept();
114 115

private:
116
	virtual bool OnSocketReady(unsigned flags) override;
117 118
};

119
static constexpr Domain server_socket_domain("server_socket");
120 121 122 123

/**
 * Wraper for sockaddr_to_string() which never fails.
 */
124 125
char *
OneServerSocket::ToString() const
126
{
127
	char *p = sockaddr_to_string(address, address_length, IgnoreError());
128
	if (p == nullptr)
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
		p = g_strdup("[unknown]");
	return p;
}

static int
get_remote_uid(int fd)
{
#ifdef HAVE_STRUCT_UCRED
	struct ucred cred;
	socklen_t len = sizeof (cred);

	if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cred, &len) < 0)
		return 0;

	return cred.uid;
#else
#ifdef HAVE_GETPEEREID
	uid_t euid;
	gid_t egid;

	if (getpeereid(fd, &euid, &egid) == 0)
		return euid;
#else
	(void)fd;
#endif
	return -1;
#endif
}

158 159 160 161 162 163
inline void
OneServerSocket::Accept()
{
	struct sockaddr_storage peer_address;
	size_t peer_address_length = sizeof(peer_address);
	int peer_fd =
164
		accept_cloexec_nonblock(Get(), (struct sockaddr*)&peer_address,
165 166 167
					&peer_address_length);
	if (peer_fd < 0) {
		const SocketErrorMessage msg;
168 169
		FormatError(server_socket_domain,
			    "accept() failed: %s", (const char *)msg);
170 171 172 173 174
		return;
	}

	if (socket_keepalive(peer_fd)) {
		const SocketErrorMessage msg;
175 176 177
		FormatError(server_socket_domain,
			    "Could not set TCP keepalive option: %s",
			    (const char *)msg);
178 179
	}

180 181 182
	parent.OnAccept(peer_fd,
			(const sockaddr &)peer_address,
			peer_address_length, get_remote_uid(peer_fd));
183 184
}

185
bool
186
OneServerSocket::OnSocketReady(gcc_unused unsigned flags)
187
{
188
	Accept();
189
	return true;
190 191
}

192
inline bool
193
OneServerSocket::Open(Error &error)
194
{
195
	assert(!IsDefined());
196 197 198 199

	int _fd = socket_bind_listen(address->sa_family,
				     SOCK_STREAM, 0,
				     address, address_length, 5,
200
				     error);
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
	if (_fd < 0)
		return false;

	/* allow everybody to connect */

	if (path != nullptr)
		chmod(path, 0666);

	/* register in the GLib main loop */

	SetFD(_fd);

	return true;
}

216 217
ServerSocket::ServerSocket(EventLoop &_loop)
	:loop(_loop), next_serial(1) {}
218 219 220 221 222

/* this is just here to allow the OneServerSocket forward
   declaration */
ServerSocket::~ServerSocket() {}

223
bool
224
ServerSocket::Open(Error &error)
225
{
226
	OneServerSocket *good = nullptr, *bad = nullptr;
227
	Error last_error;
228

229 230 231
	for (auto &i : sockets) {
		assert(i.GetSerial() > 0);
		assert(good == nullptr || i.GetSerial() <= good->GetSerial());
232

233 234
		if (bad != nullptr && i.GetSerial() != bad->GetSerial()) {
			Close();
235
			error = std::move(last_error);
236 237 238
			return false;
		}

239 240
		Error error2;
		if (!i.Open(error2)) {
241
			if (good != nullptr && good->GetSerial() == i.GetSerial()) {
242 243
				char *address_string = i.ToString();
				char *good_string = good->ToString();
244 245 246 247 248 249
				FormatWarning(server_socket_domain,
					      "bind to '%s' failed: %s "
					      "(continuing anyway, because "
					      "binding to '%s' succeeded)",
					      address_string, error2.GetMessage(),
					      good_string);
250 251
				g_free(address_string);
				g_free(good_string);
252 253
			} else if (bad == nullptr) {
				bad = &i;
254

255
				char *address_string = i.ToString();
256 257
				error2.FormatPrefix("Failed to bind to '%s': ",
						    address_string);
258
				g_free(address_string);
259 260 261 262

				last_error = std::move(error2);
			}

263 264 265 266 267 268
			continue;
		}

		/* mark this socket as "good", and clear previous
		   errors */

269
		good = &i;
270

271 272
		if (bad != nullptr) {
			bad = nullptr;
273
			last_error.Clear();
274 275 276
		}
	}

277
	if (bad != nullptr) {
278
		Close();
279
		error = std::move(last_error);
280 281 282 283 284 285
		return false;
	}

	return true;
}

286
void
287
ServerSocket::Close()
288 289
{
	for (auto &i : sockets)
290 291
		if (i.IsDefined())
			i.Close();
292 293
}

294 295
OneServerSocket &
ServerSocket::AddAddress(const sockaddr &address, size_t address_length)
296
{
297 298
	sockets.emplace_front(loop, *this, next_serial,
			      &address, address_length);
299

300
	return sockets.front();
301 302
}

303
bool
304
ServerSocket::AddFD(int fd, Error &error)
305 306 307 308
{
	assert(fd >= 0);

	struct sockaddr_storage address;
309
	socklen_t address_length = sizeof(address);
310 311
	if (getsockname(fd, (struct sockaddr *)&address,
			&address_length) < 0) {
312 313
		SetSocketError(error);
		error.AddPrefix("Failed to get socket address: ");
314 315 316
		return false;
	}

317 318
	OneServerSocket &s = AddAddress((const sockaddr &)address,
					address_length);
319
	s.SetFD(fd);
320 321 322 323

	return true;
}

324 325
#ifdef HAVE_TCP

326 327
inline void
ServerSocket::AddPortIPv4(unsigned port)
328 329 330 331 332 333 334
{
	struct sockaddr_in sin;
	memset(&sin, 0, sizeof(sin));
	sin.sin_port = htons(port);
	sin.sin_family = AF_INET;
	sin.sin_addr.s_addr = INADDR_ANY;

335
	AddAddress((const sockaddr &)sin, sizeof(sin));
336 337 338
}

#ifdef HAVE_IPV6
339 340
inline void
ServerSocket::AddPortIPv6(unsigned port)
341 342 343 344 345 346
{
	struct sockaddr_in6 sin;
	memset(&sin, 0, sizeof(sin));
	sin.sin6_port = htons(port);
	sin.sin6_family = AF_INET6;

347
	AddAddress((const sockaddr &)sin, sizeof(sin));
348 349 350 351 352 353
}
#endif /* HAVE_IPV6 */

#endif /* HAVE_TCP */

bool
354
ServerSocket::AddPort(unsigned port, Error &error)
355 356 357
{
#ifdef HAVE_TCP
	if (port == 0 || port > 0xffff) {
358
		error.Set(server_socket_domain, "Invalid TCP port");
359 360 361 362
		return false;
	}

#ifdef HAVE_IPV6
363
	AddPortIPv6(port);
364
#endif
365
	AddPortIPv4(port);
366

367
	++next_serial;
368 369 370 371 372

	return true;
#else /* HAVE_TCP */
	(void)port;

373
	error.Set(server_socket_domain, "TCP support is disabled");
374 375 376 377 378
	return false;
#endif /* HAVE_TCP */
}

bool
379
ServerSocket::AddHost(const char *hostname, unsigned port, Error &error)
380 381
{
#ifdef HAVE_TCP
382 383
	struct addrinfo *ai = resolve_host_port(hostname, port,
						AI_PASSIVE, SOCK_STREAM,
384
						error);
385
	if (ai == nullptr)
386 387
		return false;

388
	for (const struct addrinfo *i = ai; i != nullptr; i = i->ai_next)
389
		AddAddress(*i->ai_addr, i->ai_addrlen);
390 391 392

	freeaddrinfo(ai);

393
	++next_serial;
394 395 396 397 398 399

	return true;
#else /* HAVE_TCP */
	(void)hostname;
	(void)port;

400
	error.Set(server_socket_domain, "TCP support is disabled");
401 402 403 404 405
	return false;
#endif /* HAVE_TCP */
}

bool
406
ServerSocket::AddPath(const char *path, Error &error)
407 408 409 410 411 412
{
#ifdef HAVE_UN
	struct sockaddr_un s_un;

	size_t path_length = strlen(path);
	if (path_length >= sizeof(s_un.sun_path)) {
413 414
		error.Set(server_socket_domain,
			  "UNIX socket path is too long");
415 416 417 418 419 420 421 422
		return false;
	}

	unlink(path);

	s_un.sun_family = AF_UNIX;
	memcpy(s_un.sun_path, path, path_length + 1);

423 424
	OneServerSocket &s = AddAddress((const sockaddr &)s_un, sizeof(s_un));
	s.SetPath(path);
425 426 427 428 429

	return true;
#else /* !HAVE_UN */
	(void)path;

430 431
	error.Set(server_socket_domain,
		  "UNIX domain socket support is disabled");
432 433 434 435
	return false;
#endif /* !HAVE_UN */
}