freebsd-src/crypto/heimdal/lib/krb5/send_to_kdc.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

678 lines
16 KiB
C
Raw Permalink Normal View History

/*
2011-10-05 07:23:29 +00:00
* Copyright (c) 1997 - 2002 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
2011-10-05 07:23:29 +00:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
2011-10-05 07:23:29 +00:00
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
2011-10-05 07:23:29 +00:00
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
2011-10-05 07:23:29 +00:00
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
2011-10-05 07:23:29 +00:00
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "krb5_locl.h"
2011-10-05 07:23:29 +00:00
#include "send_to_kdc_plugin.h"
2008-05-07 13:39:42 +00:00
struct send_to_kdc {
krb5_send_to_kdc_func func;
void *data;
};
/*
* send the data in `req' on the socket `fd' (which is datagram iff udp)
* waiting `tmout' for a reply and returning the reply in `rep'.
* iff limit read up to this many bytes
* returns 0 and data in `rep' if succesful, otherwise -1
*/
static int
2011-10-05 07:23:29 +00:00
recv_loop (krb5_socket_t fd,
time_t tmout,
int udp,
size_t limit,
krb5_data *rep)
{
fd_set fdset;
struct timeval timeout;
int ret;
int nbytes;
2011-10-05 07:23:29 +00:00
#ifndef NO_LIMIT_FD_SETSIZE
2001-02-13 16:46:19 +00:00
if (fd >= FD_SETSIZE) {
return -1;
}
2011-10-05 07:23:29 +00:00
#endif
2001-02-13 16:46:19 +00:00
krb5_data_zero(rep);
do {
FD_ZERO(&fdset);
FD_SET(fd, &fdset);
timeout.tv_sec = tmout;
timeout.tv_usec = 0;
ret = select (fd + 1, &fdset, NULL, NULL, &timeout);
if (ret < 0) {
if (errno == EINTR)
continue;
return -1;
} else if (ret == 0) {
return 0;
} else {
void *tmp;
2011-10-05 07:23:29 +00:00
if (rk_SOCK_IOCTL (fd, FIONREAD, &nbytes) < 0) {
krb5_data_free (rep);
return -1;
}
2008-05-07 13:39:42 +00:00
if(nbytes <= 0)
return 0;
if (limit)
2011-10-05 07:23:29 +00:00
nbytes = min((size_t)nbytes, limit - rep->length);
tmp = realloc (rep->data, rep->length + nbytes);
if (tmp == NULL) {
krb5_data_free (rep);
return -1;
}
rep->data = tmp;
ret = recv (fd, (char*)tmp + rep->length, nbytes, 0);
if (ret < 0) {
krb5_data_free (rep);
return -1;
}
rep->length += ret;
}
} while(!udp && (limit == 0 || rep->length < limit));
return 0;
}
/*
* Send kerberos requests and receive a reply on a udp or any other kind
* of a datagram socket. See `recv_loop'.
*/
static int
2011-10-05 07:23:29 +00:00
send_and_recv_udp(krb5_socket_t fd,
time_t tmout,
const krb5_data *req,
krb5_data *rep)
{
if (send (fd, req->data, req->length, 0) < 0)
return -1;
return recv_loop(fd, tmout, 1, 0, rep);
}
/*
* `send_and_recv' for a TCP (or any other stream) socket.
* Since there are no record limits on a stream socket the protocol here
* is to prepend the request with 4 bytes of its length and the reply
* is similarly encoded.
*/
static int
2011-10-05 07:23:29 +00:00
send_and_recv_tcp(krb5_socket_t fd,
time_t tmout,
const krb5_data *req,
krb5_data *rep)
{
unsigned char len[4];
unsigned long rep_len;
krb5_data len_data;
_krb5_put_int(len, req->length, 4);
2011-10-05 07:23:29 +00:00
if(net_write (fd, len, sizeof(len)) < 0)
return -1;
2011-10-05 07:23:29 +00:00
if(net_write (fd, req->data, req->length) < 0)
return -1;
if (recv_loop (fd, tmout, 0, 4, &len_data) < 0)
return -1;
if (len_data.length != 4) {
krb5_data_free (&len_data);
return -1;
}
_krb5_get_int(len_data.data, &rep_len, 4);
krb5_data_free (&len_data);
if (recv_loop (fd, tmout, 0, rep_len, rep) < 0)
return -1;
if(rep->length != rep_len) {
krb5_data_free (rep);
return -1;
}
return 0;
}
2008-05-07 13:39:42 +00:00
int
2011-10-05 07:23:29 +00:00
_krb5_send_and_recv_tcp(krb5_socket_t fd,
2008-05-07 13:39:42 +00:00
time_t tmout,
const krb5_data *req,
krb5_data *rep)
{
return send_and_recv_tcp(fd, tmout, req, rep);
}
/*
* `send_and_recv' tailored for the HTTP protocol.
*/
static int
2011-10-05 07:23:29 +00:00
send_and_recv_http(krb5_socket_t fd,
time_t tmout,
const char *prefix,
const krb5_data *req,
krb5_data *rep)
{
2011-10-05 07:23:29 +00:00
char *request = NULL;
char *str;
int ret;
int len = base64_encode(req->data, req->length, &str);
if(len < 0)
return -1;
2011-10-05 07:23:29 +00:00
ret = asprintf(&request, "GET %s%s HTTP/1.0\r\n\r\n", prefix, str);
free(str);
2011-10-05 07:23:29 +00:00
if (ret < 0 || request == NULL)
return -1;
ret = net_write (fd, request, strlen(request));
free (request);
if (ret < 0)
return ret;
ret = recv_loop(fd, tmout, 0, 0, rep);
if(ret)
return ret;
{
unsigned long rep_len;
char *s, *p;
s = realloc(rep->data, rep->length + 1);
if (s == NULL) {
krb5_data_free (rep);
return -1;
}
s[rep->length] = 0;
p = strstr(s, "\r\n\r\n");
if(p == NULL) {
2008-05-07 13:39:42 +00:00
krb5_data_zero(rep);
free(s);
return -1;
}
p += 4;
rep->data = s;
rep->length -= p - s;
if(rep->length < 4) { /* remove length */
2008-05-07 13:39:42 +00:00
krb5_data_zero(rep);
free(s);
return -1;
}
rep->length -= 4;
_krb5_get_int(p, &rep_len, 4);
if (rep_len != rep->length) {
2008-05-07 13:39:42 +00:00
krb5_data_zero(rep);
free(s);
return -1;
}
memmove(rep->data, p + 4, rep->length);
}
return 0;
}
static int
init_port(const char *s, int fallback)
{
if (s) {
int tmp;
sscanf (s, "%d", &tmp);
return htons(tmp);
} else
return fallback;
}
/*
* Return 0 if succesful, otherwise 1
*/
static int
send_via_proxy (krb5_context context,
const krb5_krbhst_info *hi,
const krb5_data *send_data,
krb5_data *receive)
{
2001-02-13 16:46:19 +00:00
char *proxy2 = strdup(context->http_proxy);
char *proxy = proxy2;
2011-10-05 07:23:29 +00:00
char *prefix = NULL;
char *colon;
struct addrinfo hints;
struct addrinfo *ai, *a;
int ret;
2011-10-05 07:23:29 +00:00
krb5_socket_t s = rk_INVALID_SOCKET;
char portstr[NI_MAXSERV];
2011-10-05 07:23:29 +00:00
2001-02-13 16:46:19 +00:00
if (proxy == NULL)
return ENOMEM;
if (strncmp (proxy, "http://", 7) == 0)
proxy += 7;
colon = strchr(proxy, ':');
if(colon != NULL)
*colon++ = '\0';
memset (&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
snprintf (portstr, sizeof(portstr), "%d",
ntohs(init_port (colon, htons(80))));
2001-02-13 16:46:19 +00:00
ret = getaddrinfo (proxy, portstr, &hints, &ai);
free (proxy2);
if (ret)
2001-06-21 02:12:07 +00:00
return krb5_eai_to_heim_errno(ret, errno);
for (a = ai; a != NULL; a = a->ai_next) {
2011-10-05 07:23:29 +00:00
s = socket (a->ai_family, a->ai_socktype | SOCK_CLOEXEC, a->ai_protocol);
if (s < 0)
continue;
2011-10-05 07:23:29 +00:00
rk_cloexec(s);
if (connect (s, a->ai_addr, a->ai_addrlen) < 0) {
2011-10-05 07:23:29 +00:00
rk_closesocket (s);
continue;
}
break;
}
if (a == NULL) {
freeaddrinfo (ai);
return 1;
}
freeaddrinfo (ai);
2011-10-05 07:23:29 +00:00
ret = asprintf(&prefix, "http://%s/", hi->hostname);
if(ret < 0 || prefix == NULL) {
close(s);
return 1;
}
ret = send_and_recv_http(s, context->kdc_timeout,
prefix, send_data, receive);
2011-10-05 07:23:29 +00:00
rk_closesocket (s);
free(prefix);
if(ret == 0 && receive->length != 0)
return 0;
return 1;
}
2011-10-05 07:23:29 +00:00
static krb5_error_code
send_via_plugin(krb5_context context,
krb5_krbhst_info *hi,
time_t timeout,
const krb5_data *send_data,
krb5_data *receive)
{
struct krb5_plugin *list = NULL, *e;
krb5_error_code ret;
ret = _krb5_plugin_find(context, PLUGIN_TYPE_DATA, KRB5_PLUGIN_SEND_TO_KDC, &list);
if(ret != 0 || list == NULL)
return KRB5_PLUGIN_NO_HANDLE;
for (e = list; e != NULL; e = _krb5_plugin_get_next(e)) {
krb5plugin_send_to_kdc_ftable *service;
void *ctx;
service = _krb5_plugin_get_symbol(e);
if (service->minor_version != 0)
continue;
(*service->init)(context, &ctx);
ret = (*service->send_to_kdc)(context, ctx, hi,
timeout, send_data, receive);
(*service->fini)(ctx);
if (ret == 0)
break;
if (ret != KRB5_PLUGIN_NO_HANDLE) {
krb5_set_error_message(context, ret,
N_("Plugin send_to_kdc failed to "
"lookup with error: %d", ""), ret);
break;
}
}
_krb5_plugin_free(list);
return KRB5_PLUGIN_NO_HANDLE;
}
/*
* Send the data `send' to one host from `handle` and get back the reply
* in `receive'.
*/
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
2001-02-13 16:46:19 +00:00
krb5_sendto (krb5_context context,
const krb5_data *send_data,
2011-10-05 07:23:29 +00:00
krb5_krbhst_handle handle,
2001-02-13 16:46:19 +00:00
krb5_data *receive)
{
2008-05-07 13:39:42 +00:00
krb5_error_code ret;
2011-10-05 07:23:29 +00:00
krb5_socket_t fd;
size_t i;
2008-05-07 13:39:42 +00:00
krb5_data_zero(receive);
2001-06-21 02:12:07 +00:00
for (i = 0; i < context->max_retries; ++i) {
krb5_krbhst_info *hi;
while (krb5_krbhst_next(context, handle, &hi) == 0) {
struct addrinfo *ai, *a;
2011-10-05 07:23:29 +00:00
_krb5_debug(context, 2,
"trying to communicate with host %s in realm %s",
hi->hostname, _krb5_krbhst_get_realm(handle));
2008-05-07 13:39:42 +00:00
if (context->send_to_kdc) {
struct send_to_kdc *s = context->send_to_kdc;
2011-10-05 07:23:29 +00:00
ret = (*s->func)(context, s->data, hi,
context->kdc_timeout, send_data, receive);
2008-05-07 13:39:42 +00:00
if (ret == 0 && receive->length != 0)
goto out;
continue;
}
2011-10-05 07:23:29 +00:00
ret = send_via_plugin(context, hi, context->kdc_timeout,
send_data, receive);
if (ret == 0 && receive->length != 0)
goto out;
else if (ret != KRB5_PLUGIN_NO_HANDLE)
continue;
if(hi->proto == KRB5_KRBHST_HTTP && context->http_proxy) {
2008-05-07 13:39:42 +00:00
if (send_via_proxy (context, hi, send_data, receive) == 0) {
ret = 0;
goto out;
2008-05-07 13:39:42 +00:00
}
continue;
}
ret = krb5_krbhst_get_addrinfo(context, hi, &ai);
if (ret)
continue;
for (a = ai; a != NULL; a = a->ai_next) {
2011-10-05 07:23:29 +00:00
fd = socket (a->ai_family, a->ai_socktype | SOCK_CLOEXEC, a->ai_protocol);
if (rk_IS_BAD_SOCKET(fd))
continue;
2011-10-05 07:23:29 +00:00
rk_cloexec(fd);
if (connect (fd, a->ai_addr, a->ai_addrlen) < 0) {
2011-10-05 07:23:29 +00:00
rk_closesocket (fd);
continue;
}
switch (hi->proto) {
case KRB5_KRBHST_HTTP :
2001-06-21 02:12:07 +00:00
ret = send_and_recv_http(fd, context->kdc_timeout,
"", send_data, receive);
break;
case KRB5_KRBHST_TCP :
2001-06-21 02:12:07 +00:00
ret = send_and_recv_tcp (fd, context->kdc_timeout,
send_data, receive);
break;
case KRB5_KRBHST_UDP :
2001-06-21 02:12:07 +00:00
ret = send_and_recv_udp (fd, context->kdc_timeout,
send_data, receive);
break;
}
2011-10-05 07:23:29 +00:00
rk_closesocket (fd);
if(ret == 0 && receive->length != 0)
2001-06-21 02:12:07 +00:00
goto out;
}
}
krb5_krbhst_reset(context, handle);
2001-06-21 02:12:07 +00:00
}
2011-10-05 07:23:29 +00:00
krb5_clear_error_message (context);
ret = KRB5_KDC_UNREACH;
out:
2011-10-05 07:23:29 +00:00
_krb5_debug(context, 2,
"result of trying to talk to realm %s = %d",
_krb5_krbhst_get_realm(handle), ret);
return ret;
}
2001-02-13 16:46:19 +00:00
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_kdc(krb5_context context,
const krb5_data *send_data,
const krb5_realm *realm,
krb5_data *receive)
2001-02-13 16:46:19 +00:00
{
2008-05-07 13:39:42 +00:00
return krb5_sendto_kdc_flags(context, send_data, realm, receive, 0);
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_kdc_flags(krb5_context context,
const krb5_data *send_data,
const krb5_realm *realm,
krb5_data *receive,
int flags)
{
krb5_error_code ret;
krb5_sendto_ctx ctx;
2008-05-07 13:39:42 +00:00
ret = krb5_sendto_ctx_alloc(context, &ctx);
2001-02-13 16:46:19 +00:00
if (ret)
return ret;
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_add_flags(ctx, flags);
krb5_sendto_ctx_set_func(ctx, _krb5_kdc_retry, NULL);
ret = krb5_sendto_context(context, ctx, send_data, *realm, receive);
krb5_sendto_ctx_free(context, ctx);
return ret;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
krb5_set_send_to_kdc_func(krb5_context context,
2008-05-07 13:39:42 +00:00
krb5_send_to_kdc_func func,
void *data)
{
free(context->send_to_kdc);
if (func == NULL) {
context->send_to_kdc = NULL;
return 0;
}
context->send_to_kdc = malloc(sizeof(*context->send_to_kdc));
if (context->send_to_kdc == NULL) {
2011-10-05 07:23:29 +00:00
krb5_set_error_message(context, ENOMEM,
N_("malloc: out of memory", ""));
2008-05-07 13:39:42 +00:00
return ENOMEM;
}
2008-05-07 13:39:42 +00:00
context->send_to_kdc->func = func;
context->send_to_kdc->data = data;
return 0;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
_krb5_copy_send_to_kdc_func(krb5_context context, krb5_context to)
{
if (context->send_to_kdc)
return krb5_set_send_to_kdc_func(to,
context->send_to_kdc->func,
context->send_to_kdc->data);
else
return krb5_set_send_to_kdc_func(to, NULL, NULL);
}
2008-05-07 13:39:42 +00:00
struct krb5_sendto_ctx_data {
int flags;
int type;
krb5_sendto_ctx_func func;
void *data;
};
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_alloc(krb5_context context, krb5_sendto_ctx *ctx)
{
*ctx = calloc(1, sizeof(**ctx));
if (*ctx == NULL) {
2011-10-05 07:23:29 +00:00
krb5_set_error_message(context, ENOMEM,
N_("malloc: out of memory", ""));
2008-05-07 13:39:42 +00:00
return ENOMEM;
}
return 0;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION void KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_add_flags(krb5_sendto_ctx ctx, int flags)
{
ctx->flags |= flags;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION int KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_get_flags(krb5_sendto_ctx ctx)
{
return ctx->flags;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION void KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_set_type(krb5_sendto_ctx ctx, int type)
{
ctx->type = type;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION void KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_set_func(krb5_sendto_ctx ctx,
krb5_sendto_ctx_func func,
void *data)
{
ctx->func = func;
ctx->data = data;
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION void KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_ctx_free(krb5_context context, krb5_sendto_ctx ctx)
{
memset(ctx, 0, sizeof(*ctx));
free(ctx);
}
2011-10-05 07:23:29 +00:00
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
2008-05-07 13:39:42 +00:00
krb5_sendto_context(krb5_context context,
krb5_sendto_ctx ctx,
const krb5_data *send_data,
const krb5_realm realm,
krb5_data *receive)
{
krb5_error_code ret;
krb5_krbhst_handle handle = NULL;
int type, freectx = 0;
int action;
krb5_data_zero(receive);
if (ctx == NULL) {
freectx = 1;
ret = krb5_sendto_ctx_alloc(context, &ctx);
if (ret)
return ret;
}
type = ctx->type;
if (type == 0) {
if ((ctx->flags & KRB5_KRBHST_FLAGS_MASTER) || context->use_admin_kdc)
type = KRB5_KRBHST_ADMIN;
else
type = KRB5_KRBHST_KDC;
}
2011-10-05 07:23:29 +00:00
if ((int)send_data->length > context->large_msg_size)
2008-05-07 13:39:42 +00:00
ctx->flags |= KRB5_KRBHST_FLAGS_LARGE_MSG;
/* loop until we get back a appropriate response */
do {
action = KRB5_SENDTO_DONE;
krb5_data_free(receive);
if (handle == NULL) {
2011-10-05 07:23:29 +00:00
ret = krb5_krbhst_init_flags(context, realm, type,
2008-05-07 13:39:42 +00:00
ctx->flags, &handle);
if (ret) {
if (freectx)
krb5_sendto_ctx_free(context, ctx);
return ret;
}
}
2011-10-05 07:23:29 +00:00
2008-05-07 13:39:42 +00:00
ret = krb5_sendto(context, send_data, handle, receive);
if (ret)
break;
if (ctx->func) {
ret = (*ctx->func)(context, ctx, ctx->data, receive, &action);
if (ret)
break;
}
if (action != KRB5_SENDTO_CONTINUE) {
krb5_krbhst_free(context, handle);
handle = NULL;
}
} while (action != KRB5_SENDTO_DONE);
if (handle)
krb5_krbhst_free(context, handle);
2001-06-21 02:12:07 +00:00
if (ret == KRB5_KDC_UNREACH)
2011-10-05 07:23:29 +00:00
krb5_set_error_message(context, ret,
N_("unable to reach any KDC in realm %s", ""),
realm);
2008-05-07 13:39:42 +00:00
if (ret)
krb5_data_free(receive);
if (freectx)
krb5_sendto_ctx_free(context, ctx);
2001-02-13 16:46:19 +00:00
return ret;
}
2011-10-05 07:23:29 +00:00
krb5_error_code KRB5_CALLCONV
2008-05-07 13:39:42 +00:00
_krb5_kdc_retry(krb5_context context, krb5_sendto_ctx ctx, void *data,
const krb5_data *reply, int *action)
2001-02-13 16:46:19 +00:00
{
2008-05-07 13:39:42 +00:00
krb5_error_code ret;
KRB_ERROR error;
if(krb5_rd_error(context, reply, &error))
return 0;
ret = krb5_error_from_rd_error(context, &error, NULL);
krb5_free_error_contents(context, &error);
switch(ret) {
case KRB5KRB_ERR_RESPONSE_TOO_BIG: {
if (krb5_sendto_ctx_get_flags(ctx) & KRB5_KRBHST_FLAGS_LARGE_MSG)
break;
krb5_sendto_ctx_add_flags(ctx, KRB5_KRBHST_FLAGS_LARGE_MSG);
*action = KRB5_SENDTO_RESTART;
break;
}
case KRB5KDC_ERR_SVC_UNAVAILABLE:
*action = KRB5_SENDTO_CONTINUE;
break;
}
return 0;
2001-02-13 16:46:19 +00:00
}