2011-09-20 07:56:59 +02:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 The Music Player Daemon Project
|
2011-09-20 07:56:59 +02:00
|
|
|
* 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"
|
2013-09-04 18:02:09 +02:00
|
|
|
#include "Resolver.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
|
|
|
|
2015-07-22 10:03:36 +02:00
|
|
|
#include <string>
|
2015-02-10 22:46:57 +01:00
|
|
|
|
2015-07-22 10:03:36 +02:00
|
|
|
#ifdef WIN32
|
2011-09-20 07:56:59 +02:00
|
|
|
#include <ws2tcpip.h>
|
2015-07-22 10:03:36 +02:00
|
|
|
#else
|
|
|
|
#include <netdb.h>
|
2013-11-04 18:39:42 +01:00
|
|
|
#endif
|
|
|
|
|
2011-09-20 07:56:59 +02:00
|
|
|
#include <string.h>
|
2013-09-05 09:21:53 +02:00
|
|
|
#include <stdio.h>
|
2011-09-20 07:56:59 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
const Domain resolver_domain("resolver");
|
|
|
|
|
2011-09-20 20:51:46 +02:00
|
|
|
struct addrinfo *
|
|
|
|
resolve_host_port(const char *host_port, unsigned default_port,
|
|
|
|
int flags, int socktype,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2011-09-20 20:51:46 +02:00
|
|
|
{
|
2013-12-04 14:27:28 +01:00
|
|
|
std::string p(host_port);
|
|
|
|
const char *host = p.c_str(), *port = nullptr;
|
2011-09-20 20:51:46 +02:00
|
|
|
|
|
|
|
if (host_port[0] == '[') {
|
|
|
|
/* IPv6 needs enclosing square braces, to
|
|
|
|
differentiate between IP colons and the port
|
|
|
|
separator */
|
|
|
|
|
2013-12-04 14:27:28 +01:00
|
|
|
size_t q = p.find(']', 1);
|
|
|
|
if (q != p.npos && p[q + 1] == ':' && p[q + 2] != 0) {
|
|
|
|
p[q] = 0;
|
|
|
|
port = host + q + 2;
|
2011-09-20 20:51:46 +02:00
|
|
|
++host;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-30 18:44:40 +02:00
|
|
|
if (port == nullptr) {
|
2011-09-20 20:51:46 +02:00
|
|
|
/* port is after the colon, but only if it's the only
|
|
|
|
colon (don't split IPv6 addresses) */
|
|
|
|
|
2013-12-04 14:27:28 +01:00
|
|
|
auto q = p.find(':');
|
|
|
|
if (q != p.npos && p[q + 1] != 0 &&
|
|
|
|
p.find(':', q + 1) == p.npos) {
|
|
|
|
p[q] = 0;
|
|
|
|
port = host + q + 1;
|
2011-09-20 20:51:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char buffer[32];
|
2014-07-30 18:44:40 +02:00
|
|
|
if (port == nullptr && default_port != 0) {
|
2013-09-05 09:21:53 +02:00
|
|
|
snprintf(buffer, sizeof(buffer), "%u", default_port);
|
2011-09-20 20:51:46 +02:00
|
|
|
port = buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((flags & AI_PASSIVE) != 0 && strcmp(host, "*") == 0)
|
2014-07-30 18:44:40 +02:00
|
|
|
host = nullptr;
|
2011-09-20 20:51:46 +02:00
|
|
|
|
2013-09-04 18:02:09 +02:00
|
|
|
addrinfo hints;
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_flags = flags;
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
hints.ai_socktype = socktype;
|
2011-09-20 20:51:46 +02:00
|
|
|
|
|
|
|
struct addrinfo *ai;
|
|
|
|
int ret = getaddrinfo(host, port, &hints, &ai);
|
|
|
|
if (ret != 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(resolver_domain, ret,
|
|
|
|
"Failed to look up '%s': %s",
|
|
|
|
host_port, gai_strerror(ret));
|
2014-07-30 18:44:40 +02:00
|
|
|
return nullptr;
|
2011-09-20 20:51:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ai;
|
|
|
|
}
|