NetBSD/crypto/dist/krb4/lib/krb/get_krbrlm.c

154 lines
4.6 KiB
C

/*
* Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska Högskolan
* (Royal Institute of Technology, Stockholm, Sweden).
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 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.
*
* 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.
*
* 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 "krb_locl.h"
RCSID("$Id: get_krbrlm.c,v 1.3 2000/10/04 04:08:30 simonb Exp $");
/*
* krb_get_lrealm takes a pointer to a string, and a number, n. It fills
* in the string, r, with the name of the nth realm specified on the
* first line of the kerberos config file (KRB_CONF, defined in "krb.h").
* It returns 0 (KSUCCESS) on success, and KFAILURE on failure. If the
* config file does not exist, and if n=1, a successful return will occur
* with r = KRB_REALM (also defined in "krb.h").
*
* For the format of the KRB_CONF file, see comments describing the routine
* krb_get_krbhst().
*/
static int
krb_get_lrealm_f(char *r, int n, FILE *f)
{
char buf[1024];
char *p;
int nchar;
if (n < 0)
return KFAILURE;
if(n == 0)
n = 1;
for (; n > 0; n--)
if (fgets(buf, sizeof(buf), f) == 0)
return KFAILURE;
/* We now have the n:th line, remove initial white space. */
p = buf + strspn(buf, " \t");
/* Collect realmname. */
nchar = strcspn(p, " \t\n");
if (nchar == 0 || nchar > REALM_SZ)
return KFAILURE; /* No realmname */
strncpy(r, p, nchar);
r[nchar] = 0;
/* Does more junk follow? */
p += nchar;
nchar = strspn(p, " \t\n");
if (p[nchar] == 0)
return KSUCCESS; /* This was a realm name only line. */
return KFAILURE;
}
static const char *no_default_realm = "NO.DEFAULT.REALM";
int
krb_get_lrealm(char *r, int n)
{
FILE *f;
int i, have_krb_conf = 0;
char fname[MaxPathLen];
for (i = 0; krb_get_krbconf(i, fname, sizeof(fname)) == 0; i++) {
f = fopen(fname, "r");
if (f == 0)
continue;
have_krb_conf = 1;
if (krb_get_lrealm_f(r, n, f) == KSUCCESS) {
fclose(f);
return KSUCCESS;
}
fclose(f);
}
/*
* If there is no krb.conf file, don't continue; it is not
* intended that Kerberos be used.
*/
if (!have_krb_conf)
return KFAILURE;
/* When nothing else works try default realm */
if (n == 1) {
char *t = krb_get_default_realm();
if (strcmp(t, no_default_realm) == 0)
return KFAILURE; /* Can't figure out default realm */
strcpy(r, t);
return KSUCCESS;
}
else
return(KFAILURE);
}
/* Returns local realm if that can be figured out else NO.DEFAULT.REALM */
char *
krb_get_default_realm(void)
{
static char local_realm[REALM_SZ]; /* Local kerberos realm */
if (local_realm[0] == 0) {
char *t, hostname[MaxHostNameLen];
strlcpy(local_realm, no_default_realm,
sizeof(local_realm)); /* Provide default */
gethostname(hostname, sizeof(hostname));
t = krb_realmofhost(hostname);
if (t && strcmp(t, no_default_realm) != 0) {
/*
* Before just assuming this can be the default
* realm, make sure there's a KDC. If not, it
* can't possibly be, and should therefore
* return NO.DEFAULT.REALM.
*/
if (krb_get_host(1, t, 0) != NULL)
strlcpy(local_realm, t, sizeof(local_realm));
}
}
return local_realm;
}