1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
/*
*----------------------------------------------------------------------------
*
* msktname.cpp
*
* (C) 2004-2006 Dan Perry (dperry@pppl.gov)
* (C) 2006 Brian Elliott Finley (finley@anl.gov)
* (C) 2009-2010 Doug Engert (deengert@anl.gov)
* (C) 2010 James Y Knight (foom@fuhm.net)
* (C) 2010-2013 Ken Dreyer <ktdreyer at ktdreyer.com>
* (C) 2012-2017 Mark Proehl <mark at mproehl.net>
* (C) 2012-2017 Olaf Flebbe <of at oflebbe.de>
* (C) 2013-2017 Daniel Kobras <d.kobras at science-computing.de>
*
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 St, Fifth Floor, Boston, MA 02110-1301 USA
*
*-----------------------------------------------------------------------------
*/
#include "msktutil.h"
#include <algorithm>
#include <cctype>
#include <sstream>
std::string complete_hostname(const std::string &hostname,
bool no_canonical_name)
{
/* Ask the Kerberos library to canonicalize the hostname, and then
* pull it out of the principal. */
int32_t type = KRB5_NT_SRV_HST;
krb5_principal temp_princ_raw = NULL;
/* do not canonicalize, use supplied hostname */
if (no_canonical_name) {
type = KRB5_NT_UNKNOWN;
}
krb5_error_code ret = krb5_sname_to_principal(g_context,
hostname.c_str(),
"host",
type,
&temp_princ_raw);
if (ret != 0) {
fprintf(stderr,
"Warning: hostname canonicalization for %s failed: %s\n",
hostname.c_str(),
error_message(ret)
);
return hostname;
}
KRB5Principal temp_princ(temp_princ_raw);
#ifdef HEIMDAL
const char *comp = krb5_principal_get_comp_string(g_context,
temp_princ.get(),
1);
#else
krb5_data *comp = krb5_princ_component(g_context,
temp_princ.get(),
1);
#endif
if (comp == NULL) {
std::string name(temp_princ.name());
fprintf(stderr,
"Warning: hostname canonicalization for %s failed: returned "
"unexpected principal %s\n",
hostname.c_str(),
name.c_str()
);
return hostname;
}
#ifdef HEIMDAL
return std::string(comp);
#else
return std::string(comp->data, comp->length);
#endif
}
std::string get_default_hostname(bool no_canonical_name)
{
/* Ask the Kerberos library to canonicalize the hostname, and then
* pull it out of the principal. */
int32_t type = KRB5_NT_SRV_HST;
krb5_principal temp_princ_raw;
/* do not canonicalize, use supplied hostname */
if (no_canonical_name) { type = KRB5_NT_UNKNOWN; }
krb5_error_code ret = krb5_sname_to_principal(g_context,
NULL,
"host",
type,
&temp_princ_raw);
if (ret != 0) {
throw KRB5Exception("krb5_sname_to_principal (get_default_hostname)",
ret);
}
KRB5Principal temp_princ(temp_princ_raw);
#ifdef HEIMDAL
const char *comp = krb5_principal_get_comp_string(g_context,
temp_princ.get(),
1);
#else
krb5_data *comp = krb5_princ_component(g_context,
temp_princ.get(),
1);
#endif
if (comp == NULL) {
error_exit("get_default_hostname: couldn't determine "
"hostname, strange value from "
"krb5_sname_to_principal.");
}
#ifdef HEIMDAL
return std::string(comp);
#else
return std::string(comp->data, comp->length);
#endif
}
bool DnsSrvHost::validate(bool nocanon, std::string service) {
int ret, sock = -1;
/* used to call into C function, so we prefer char[] over std::string */
char host[NI_MAXHOST];
struct addrinfo *hostaddrinfo = NULL;
// The order of the struct addrinfo members is not portable,
// therefore it is not possible to use struct initialization here.
// Use default initialization and set potentially nonzero members explicitly.
// See issue #161
struct addrinfo hints = {};
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
if (!validated_name.empty()) {
return true;
}
/* so far we don't require C++11, so no ::to_string(), yet */
if (service.empty()) {
std::stringstream srvtmp;
srvtmp << m_port;
std::string service = srvtmp.str();
}
ret = getaddrinfo(srvname.c_str(), service.c_str(), &hints, &hostaddrinfo);
if (ret != 0) {
VERBOSE("Error: getaddrinfo failed for %s: %s", srvname.c_str(),
ret == EAI_SYSTEM ? strerror(errno) : gai_strerror(ret));
if (hostaddrinfo) {
freeaddrinfo(hostaddrinfo);
}
return false;
}
VERBOSE("Found DC: %s. Checking availability...", srvname.c_str());
for (struct addrinfo *ai = hostaddrinfo; ai; ai = ai->ai_next) {
/* Now let's try and open and close a socket to see if the domain controller is up or not */
if (sock != -1) {
close(sock);
}
if ((sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol)) == -1) {
VERBOSE("Failed to create socket: %s", strerror(errno));
continue;
}
if (connect(sock, (struct sockaddr *) ai->ai_addr, ai->ai_addrlen) == -1) {
int err = errno;
char addrstr[NI_MAXHOST] = "";
(void) getnameinfo(ai->ai_addr, ai->ai_addrlen, addrstr, sizeof(addrstr), NULL, 0, NI_NUMERICHOST);
VERBOSE("LDAP connection to %s failed: %s", addrstr, strerror(err));
continue;
}
/* See if this is the 'lowest' domain controller name... the idea is to always try to
* use the same domain controller. Things may become inconsistent otherwise.
* This optimization is only possible if we're told to canonify the hostname. Otherwise,
* we're not allowed to touch it, but we can make sure that it resolves to at least
* one working IP address. */
if (nocanon) {
validated_name = srvname;
break;
}
ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, host, sizeof(host), NULL, 0, NI_NAMEREQD);
if (ret != 0) {
int err = errno;
char addrstr[NI_MAXHOST] = "";
(void) getnameinfo(ai->ai_addr, ai->ai_addrlen, addrstr, sizeof(addrstr), NULL, 0, NI_NUMERICHOST);
VERBOSE("Error: getnameinfo failed for %s: %s", addrstr,
ret == EAI_SYSTEM ? strerror(err) : gai_strerror(ret));
continue;
}
if (!validated_name.empty() && std::string(host) > validated_name) {
VERBOSE("Connection to DC %s ok, but we already prefer %s", host, validated_name.c_str());
continue;
}
validated_name = std::string(host);
}
if (sock != -1) {
close(sock);
}
if (hostaddrinfo) {
freeaddrinfo(hostaddrinfo);
}
return ! validated_name.empty();
};
DnsSrvQuery::DnsSrvQuery(const std::string& domain, const std::string& service, const std::string& protocol)
{
#if defined(HAVE_LIBUDNS)
struct dns_ctx *nsctx = NULL;
dns_reset(NULL);
if ((nsctx = dns_new(NULL)) != NULL) {
if (dns_init(nsctx, 1) >= 0) {
struct dns_rr_srv *srv;
if ((srv = dns_resolve_srv(nsctx, domain.c_str(), service.c_str(),
protocol.c_str(), DNS_NOSRCH)) != NULL) {
for (int i = 0; i < srv->dnssrv_nrr; i++) {
m_results.push_back(DnsSrvHost(srv->dnssrv_srv[i]));
}
free(srv);
}
}
dns_close(nsctx);
free(nsctx);
}
#elif defined(HAVE_NS_INITPARSE) && defined(HAVE_RES_SEARCH)
unsigned char response[NS_MAXMSG];
int len;
ns_msg reshandle;
ns_rr rr;
const std::string krbdnsquery = "_" + service + "._" + protocol + "." + domain;
VERBOSE("Running DNS SRV query for %s", krbdnsquery.c_str());
if ((len=res_search(krbdnsquery.c_str(), ns_c_in, ns_t_srv, response, sizeof(response))) > 0) {
if (ns_initparse(response,len,&reshandle) >= 0) {
if ((len=ns_msg_count(reshandle,ns_s_an)) > 0) {
for (int i = 0; i<len; i++) {
if (ns_parserr(&reshandle,ns_s_an,i,&rr) ||
ns_rr_class(rr) != ns_c_in ||
ns_rr_type(rr) != ns_t_srv) {
// Ignore records we cannot parse, this is non fatal.
VERBOSE("Skipping invalid record %d", i);
continue;
}
m_results.push_back(DnsSrvHost(reshandle, rr));
}
}
}
}
#endif
std::sort(m_results.begin(), m_results.end());
}
std::string get_dc_host(const std::string &realm_name, const std::string &site_name,
const bool no_reverse_lookups)
{
std::string dc;
int i;
DnsSrvQuery dcsrvs;
std::string bestdc;
std::string protocols[] = { "tcp", "udp" };
if (!site_name.empty()) {
for (i = 0; i < (int)(sizeof(protocols) / sizeof(protocols[0])); i++) {
VERBOSE("Attempting to find site-specific domain controller to use via "
"DNS SRV record in domain %s for site %s and protocol %s",
realm_name.c_str(), site_name.c_str(), protocols[i].c_str());
dcsrvs = DnsSrvQuery(site_name + "._sites.dc._msdcs." + realm_name, "kerberos", protocols[i]);
if (!dcsrvs.empty()) {
break;
}
}
}
if (dcsrvs.empty()) {
for (i = 0; i < (int)(sizeof(protocols) / sizeof(protocols[0])); i++) {
VERBOSE("Attempting to find domain controller to use via "
"DNS SRV record in domain %s for protocol %s",
realm_name.c_str(), protocols[i].c_str());
dcsrvs = DnsSrvQuery("dc._msdcs." + realm_name, "kerberos", protocols[i]);
if (!dcsrvs.empty()) {
break;
}
}
}
if (dcsrvs.empty()) {
VERBOSE("Attempting to find a domain controller to use (DNS domain)");
dcsrvs = DnsSrvQuery(DnsSrvHost(realm_name, 0, 0, 0));
}
for (std::vector<DnsSrvHost>::iterator it=dcsrvs.begin(); it != dcsrvs.end(); it++) {
/* Don't validate host availability by checking the KRB5 port returned
* from the SRV record, but the hard-coded, standard LDAP port (389).
* This is a short cut that should work as long as each DC runs both
* KRB5 and LDAP on default ports.
*/
if (it->validate(no_reverse_lookups, stringify(LDAP_PORT))) {
bestdc = it->name();
break;
}
}
VERBOSE("Found preferred domain controller: %s", bestdc.c_str());
return bestdc;
}
/* Return true if <str> ends with <suffix>, false otherwise */
static bool ends_with(std::string const &str, std::string const &suffix)
{
if (suffix.size() > str.size())
return false;
return std::equal(suffix.rbegin(), suffix.rend(), str.rbegin());
}
/* Default sAMAccountName for current host:
Use lowercase FQDN, strip realm if applicable, convert remaining dots to dashes.
Eg. foo.example.com in realm EXAMPLE.COM -> foo
foo.subdomain1.example.com in realm EXAMPLE.COM -> foo-subdomain1
foo.subdomain1.example.com in realm OTHEREXAMPLE.COM -> foo-subdomain1-example-com
*/
std::string get_default_samaccountname(msktutil_flags *flags)
{
std::string long_hostname = flags->hostname;
std::transform(long_hostname.begin(), long_hostname.end(),
long_hostname.begin(), ::tolower);
std::string samaccountname = long_hostname;
if (ends_with(samaccountname, '.' + flags->lower_realm_name))
samaccountname.resize(samaccountname.length() - flags->lower_realm_name.length() - 1);
/* Replace any remaining dots with dashes */
std::replace(samaccountname.begin(), samaccountname.end(), '.', '-');
VERBOSE("Determined sAMAccountName: %s", samaccountname.c_str());
return samaccountname;
}
/* Return first component of FQDN set in flags->hostname */
std::string get_short_hostname(msktutil_flags *flags)
{
std::string long_hostname = flags->hostname;
std::string short_hostname = long_hostname.substr(0, long_hostname.find('.'));
std::transform(short_hostname.begin(), short_hostname.end(), short_hostname.begin(), ::tolower);
VERBOSE("Determined short hostname: %s", short_hostname.c_str());
return short_hostname;
}
|