Home | History | Annotate | Line # | Download | only in login
k5login.c revision 1.7
      1  1.7    aidan /*	$NetBSD: k5login.c,v 1.7 1999/07/12 21:36:10 aidan Exp $	*/
      2  1.2      jtc 
      3  1.1   brezak /*-
      4  1.1   brezak  * Copyright (c) 1990 The Regents of the University of California.
      5  1.1   brezak  * All rights reserved.
      6  1.1   brezak  *
      7  1.1   brezak  * Redistribution and use in source and binary forms, with or without
      8  1.1   brezak  * modification, are permitted provided that the following conditions
      9  1.1   brezak  * are met:
     10  1.1   brezak  * 1. Redistributions of source code must retain the above copyright
     11  1.1   brezak  *    notice, this list of conditions and the following disclaimer.
     12  1.1   brezak  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1   brezak  *    notice, this list of conditions and the following disclaimer in the
     14  1.1   brezak  *    documentation and/or other materials provided with the distribution.
     15  1.1   brezak  * 3. All advertising materials mentioning features or use of this software
     16  1.1   brezak  *    must display the following acknowledgement:
     17  1.1   brezak  *	This product includes software developed by the University of
     18  1.1   brezak  *	California, Berkeley and its contributors.
     19  1.1   brezak  * 4. Neither the name of the University nor the names of its contributors
     20  1.1   brezak  *    may be used to endorse or promote products derived from this software
     21  1.1   brezak  *    without specific prior written permission.
     22  1.1   brezak  *
     23  1.1   brezak  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1   brezak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1   brezak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1   brezak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1   brezak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1   brezak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1   brezak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1   brezak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1   brezak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1   brezak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1   brezak  * SUCH DAMAGE.
     34  1.1   brezak  */
     35  1.1   brezak 
     36  1.4    lukem #include <sys/cdefs.h>
     37  1.1   brezak #ifndef lint
     38  1.2      jtc #if 0
     39  1.2      jtc static char sccsid[] = "@(#)klogin.c	5.11 (Berkeley) 7/12/92";
     40  1.2      jtc #endif
     41  1.7    aidan __RCSID("$NetBSD: k5login.c,v 1.7 1999/07/12 21:36:10 aidan Exp $");
     42  1.1   brezak #endif /* not lint */
     43  1.1   brezak 
     44  1.1   brezak #ifdef KERBEROS5
     45  1.1   brezak #include <sys/param.h>
     46  1.1   brezak #include <sys/syslog.h>
     47  1.5  mycroft #include <krb5.h>
     48  1.1   brezak #include <pwd.h>
     49  1.1   brezak #include <netdb.h>
     50  1.1   brezak #include <stdio.h>
     51  1.7    aidan #include <stdlib.h>
     52  1.1   brezak #include <string.h>
     53  1.1   brezak #include <unistd.h>
     54  1.1   brezak 
     55  1.1   brezak #define KRB5_DEFAULT_OPTIONS 0
     56  1.1   brezak #define KRB5_DEFAULT_LIFE 60*60*10 /* 10 hours */
     57  1.1   brezak 
     58  1.1   brezak krb5_data tgtname = {
     59  1.5  mycroft     0,
     60  1.1   brezak     KRB5_TGS_NAME_SIZE,
     61  1.1   brezak     KRB5_TGS_NAME
     62  1.1   brezak };
     63  1.1   brezak 
     64  1.5  mycroft krb5_context kcontext;
     65  1.1   brezak 
     66  1.1   brezak extern int notickets;
     67  1.1   brezak extern char *krbtkfile_env;
     68  1.1   brezak extern char *tty;
     69  1.1   brezak 
     70  1.1   brezak static char tkt_location[MAXPATHLEN];
     71  1.7    aidan static krb5_creds forw_creds;
     72  1.7    aidan int have_forward;
     73  1.7    aidan static krb5_principal me, server;
     74  1.7    aidan 
     75  1.7    aidan /*
     76  1.7    aidan  * Attempt to read forwarded kerberos creds
     77  1.7    aidan  *
     78  1.7    aidan  * return 0 on success (forwarded creds in memory)
     79  1.7    aidan  *        1 if no forwarded creds.
     80  1.7    aidan  */
     81  1.7    aidan int
     82  1.7    aidan k5_read_creds(username)
     83  1.7    aidan 	char *username;
     84  1.7    aidan {
     85  1.7    aidan 	krb5_error_code code;
     86  1.7    aidan 	krb5_creds mcreds;
     87  1.7    aidan 	krb5_ccache ccache;
     88  1.7    aidan 
     89  1.7    aidan 	have_forward = 0;
     90  1.7    aidan 	memset((char*) &mcreds, 0, sizeof(forw_creds));
     91  1.7    aidan 	memset((char*) &forw_creds, 0, sizeof(forw_creds));
     92  1.7    aidan 
     93  1.7    aidan 	code = krb5_cc_default(kcontext, &ccache);
     94  1.7    aidan 	if (code) {
     95  1.7    aidan 		com_err("login", code, "while getting default ccache");
     96  1.7    aidan 		return(1);
     97  1.7    aidan 	}
     98  1.7    aidan 
     99  1.7    aidan 	code = krb5_parse_name(kcontext, username, &me);
    100  1.7    aidan 	if (code) {
    101  1.7    aidan 		com_err("login", code, "when parsing name %s", username);
    102  1.7    aidan 		return(1);
    103  1.7    aidan 	}
    104  1.7    aidan 
    105  1.7    aidan 	mcreds.client = me;
    106  1.7    aidan 	code = krb5_build_principal_ext(kcontext, &mcreds.server,
    107  1.7    aidan 					krb5_princ_realm(kcontext, me)->length,
    108  1.7    aidan 					krb5_princ_realm(kcontext, me)->data,
    109  1.7    aidan 					tgtname.length, tgtname.data,
    110  1.7    aidan 					krb5_princ_realm(kcontext, me)->length,
    111  1.7    aidan 					krb5_princ_realm(kcontext, me)->data,
    112  1.7    aidan 					0);
    113  1.7    aidan 	if (code) {
    114  1.7    aidan 		com_err("login", code, "while building server name");
    115  1.7    aidan 		goto nuke_ccache;
    116  1.7    aidan 	}
    117  1.7    aidan 
    118  1.7    aidan 	code = krb5_cc_retrieve_cred(kcontext, ccache, 0,
    119  1.7    aidan 				       &mcreds, &forw_creds);
    120  1.7    aidan 	if (code) {
    121  1.7    aidan 		com_err("login", code, "while retrieving V5 initial ticket for copy");
    122  1.7    aidan 		goto nuke_ccache;
    123  1.7    aidan 	}
    124  1.7    aidan 	have_forward = 1;
    125  1.7    aidan 
    126  1.7    aidan 	strcpy(tkt_location, getenv("KRB5CCNAME"));
    127  1.7    aidan 	krbtkfile_env = tkt_location;
    128  1.7    aidan 	notickets = 0;
    129  1.7    aidan 
    130  1.7    aidan nuke_ccache:
    131  1.7    aidan 	krb5_cc_destroy(kcontext, ccache);
    132  1.7    aidan 	return(!have_forward);
    133  1.7    aidan }
    134  1.7    aidan 
    135  1.7    aidan int
    136  1.7    aidan k5_write_creds()
    137  1.7    aidan {
    138  1.7    aidan 	krb5_error_code code;
    139  1.7    aidan 	krb5_ccache ccache;
    140  1.7    aidan 	char buf[256];
    141  1.7    aidan 
    142  1.7    aidan 	if (!have_forward)
    143  1.7    aidan 		return(1);
    144  1.7    aidan 	code = krb5_cc_default(kcontext, &ccache);
    145  1.7    aidan 	if (code) {
    146  1.7    aidan 		com_err("login", code, "while getting default ccache");
    147  1.7    aidan 		return(1);
    148  1.7    aidan 	}
    149  1.7    aidan 
    150  1.7    aidan 	code = krb5_cc_initialize(kcontext, ccache, me);
    151  1.7    aidan 	if (code) {
    152  1.7    aidan 		com_err("login", code, "while re-initializing V5 ccache as user");
    153  1.7    aidan 		goto nuke_ccache_contents;
    154  1.7    aidan 	}
    155  1.7    aidan 
    156  1.7    aidan 	code = krb5_cc_store_cred(kcontext, ccache, &forw_creds);
    157  1.7    aidan 	if (code) {
    158  1.7    aidan 		com_err("login", code, "while re-storing V5 ccache as user");
    159  1.7    aidan 		goto nuke_ccache_contents;
    160  1.7    aidan 	}
    161  1.7    aidan 
    162  1.7    aidan nuke_ccache_contents:
    163  1.7    aidan 	krb5_free_cred_contents(kcontext, &forw_creds);
    164  1.7    aidan 	return(code != 0);
    165  1.7    aidan }
    166  1.1   brezak 
    167  1.1   brezak /*
    168  1.1   brezak  * Attempt to log the user in using Kerberos authentication
    169  1.1   brezak  *
    170  1.1   brezak  * return 0 on success (will be logged in)
    171  1.1   brezak  *	  1 if Kerberos failed (try local password in login)
    172  1.1   brezak  */
    173  1.1   brezak int
    174  1.1   brezak klogin(pw, instance, localhost, password)
    175  1.1   brezak 	struct passwd *pw;
    176  1.1   brezak 	char *instance, *localhost, *password;
    177  1.1   brezak {
    178  1.1   brezak         krb5_error_code kerror;
    179  1.1   brezak 	krb5_address **my_addresses;
    180  1.1   brezak 	krb5_creds my_creds;
    181  1.1   brezak 	krb5_timestamp now;
    182  1.1   brezak 	krb5_ccache ccache = NULL;
    183  1.1   brezak 	int preauth_type = -1;
    184  1.1   brezak 	long lifetime = KRB5_DEFAULT_LIFE;
    185  1.1   brezak 	int options = KRB5_DEFAULT_OPTIONS;
    186  1.1   brezak 	int i;
    187  1.1   brezak 	char *realm, *client_name;
    188  1.1   brezak 	char *principal;
    189  1.1   brezak 
    190  1.1   brezak 	/*
    191  1.1   brezak 	 * Root logins don't use Kerberos.
    192  1.1   brezak 	 * If we have a realm, try getting a ticket-granting ticket
    193  1.1   brezak 	 * and using it to authenticate.  Otherwise, return
    194  1.1   brezak 	 * failure so that we can try the normal passwd file
    195  1.1   brezak 	 * for a password.  If that's ok, log the user in
    196  1.1   brezak 	 * without issuing any tickets.
    197  1.1   brezak 	 */
    198  1.1   brezak 	if (strcmp(pw->pw_name, "root") == 0 ||
    199  1.5  mycroft 	    krb5_get_default_realm(kcontext, &realm))
    200  1.1   brezak 		return (1);
    201  1.1   brezak 
    202  1.1   brezak 	/*
    203  1.1   brezak 	 * get TGT for local realm
    204  1.1   brezak 	 * tickets are stored in a file named TKT_ROOT plus uid
    205  1.1   brezak 	 * except for user.root tickets.
    206  1.1   brezak 	 */
    207  1.1   brezak 
    208  1.1   brezak 	if (strcmp(instance, "root") != 0)
    209  1.3      mrg 	    (void)snprintf(tkt_location, sizeof tkt_location,
    210  1.3      mrg 		"FILE:/tmp/krb5cc_%d.%s", pw->pw_uid, tty);
    211  1.1   brezak 	else
    212  1.3      mrg 	    (void)snprintf(tkt_location, sizeof tkt_location,
    213  1.3      mrg 		"FILE:/tmp/krb5cc_root_%d.%s", pw->pw_uid, tty);
    214  1.1   brezak 	krbtkfile_env = tkt_location;
    215  1.1   brezak 
    216  1.5  mycroft 	principal = (char *)malloc(strlen(pw->pw_name)+strlen(instance)+2);
    217  1.3      mrg 	strcpy(principal, pw->pw_name);	/* XXX strcpy is safe */
    218  1.1   brezak 	if (strlen(instance)) {
    219  1.3      mrg 	    strcat(principal, "/");		/* XXX strcat is safe */
    220  1.3      mrg 	    strcat(principal, instance);	/* XXX strcat is safe */
    221  1.1   brezak 	}
    222  1.1   brezak 
    223  1.5  mycroft 	if (kerror = krb5_cc_resolve(kcontext, tkt_location, &ccache)) {
    224  1.1   brezak 	    syslog(LOG_NOTICE, "warning: %s while getting default ccache",
    225  1.1   brezak 		error_message(kerror));
    226  1.1   brezak 	    return(1);
    227  1.1   brezak 	}
    228  1.1   brezak 
    229  1.5  mycroft 	if (kerror = krb5_parse_name(kcontext, principal, &me)) {
    230  1.1   brezak 	    syslog(LOG_NOTICE, "warning: %s when parsing name %s",
    231  1.1   brezak 		error_message(kerror), principal);
    232  1.1   brezak 	    return(1);
    233  1.1   brezak 	}
    234  1.1   brezak 
    235  1.5  mycroft 	if (kerror = krb5_unparse_name(kcontext, me, &client_name)) {
    236  1.1   brezak 	    syslog(LOG_NOTICE, "warning: %s when unparsing name %s",
    237  1.1   brezak 		error_message(kerror), principal);
    238  1.1   brezak 	    return(1);
    239  1.1   brezak 	}
    240  1.1   brezak 
    241  1.5  mycroft 	kerror = krb5_cc_initialize(kcontext, ccache, me);
    242  1.1   brezak 	if (kerror != 0) {
    243  1.1   brezak 	    syslog(LOG_NOTICE, "%s when initializing cache %s",
    244  1.1   brezak 		error_message(kerror), tkt_location);
    245  1.1   brezak 	    return(1);
    246  1.1   brezak 	}
    247  1.1   brezak 
    248  1.1   brezak 	memset((char *)&my_creds, 0, sizeof(my_creds));
    249  1.1   brezak 
    250  1.1   brezak 	my_creds.client = me;
    251  1.1   brezak 
    252  1.5  mycroft 	if (kerror = krb5_build_principal_ext(kcontext,
    253  1.5  mycroft 					&server,
    254  1.5  mycroft 					krb5_princ_realm(kcontext, me)->length,
    255  1.5  mycroft 					krb5_princ_realm(kcontext, me)->data,
    256  1.1   brezak 					tgtname.length, tgtname.data,
    257  1.5  mycroft 					krb5_princ_realm(kcontext, me)->length,
    258  1.5  mycroft 					krb5_princ_realm(kcontext, me)->data,
    259  1.1   brezak 					0)) {
    260  1.1   brezak 	    syslog(LOG_NOTICE, "%s while building server name",
    261  1.1   brezak 		error_message(kerror));
    262  1.1   brezak 	    return(1);
    263  1.1   brezak 	}
    264  1.1   brezak 
    265  1.1   brezak 	my_creds.server = server;
    266  1.1   brezak 
    267  1.5  mycroft 	kerror = krb5_os_localaddr(kcontext, &my_addresses);
    268  1.1   brezak 	if (kerror != 0) {
    269  1.1   brezak 	    syslog(LOG_NOTICE, "%s when getting my address",
    270  1.1   brezak 		error_message(kerror));
    271  1.1   brezak 	    return(1);
    272  1.1   brezak 	}
    273  1.1   brezak 
    274  1.5  mycroft 	if (kerror = krb5_timeofday(kcontext, &now)) {
    275  1.1   brezak 	    syslog(LOG_NOTICE, "%s while getting time of day",
    276  1.1   brezak 		error_message(kerror));
    277  1.1   brezak 	    return(1);
    278  1.1   brezak 	}
    279  1.1   brezak 	my_creds.times.starttime = 0;	/* start timer when request
    280  1.1   brezak 					   gets to KDC */
    281  1.1   brezak 	my_creds.times.endtime = now + lifetime;
    282  1.1   brezak 	my_creds.times.renew_till = 0;
    283  1.1   brezak 
    284  1.5  mycroft 	kerror = krb5_get_in_tkt_with_password(kcontext, options,
    285  1.5  mycroft 					       my_addresses,
    286  1.5  mycroft 					       NULL,
    287  1.5  mycroft 					       NULL,
    288  1.5  mycroft 					       password,
    289  1.5  mycroft 					       ccache,
    290  1.5  mycroft 					       &my_creds, 0);
    291  1.1   brezak 
    292  1.5  mycroft 	krb5_free_principal(kcontext, server);
    293  1.5  mycroft 	krb5_free_addresses(kcontext, my_addresses);
    294  1.1   brezak 
    295  1.1   brezak 	if (chown(&tkt_location[5], pw->pw_uid, pw->pw_gid) < 0)
    296  1.1   brezak 		syslog(LOG_ERR, "chown tkfile (%s): %m", &tkt_location[5]);
    297  1.1   brezak 
    298  1.1   brezak 	if (kerror) {
    299  1.1   brezak 	    if (kerror == KRB5KRB_AP_ERR_BAD_INTEGRITY)
    300  1.1   brezak 		printf("%s: Kerberos Password incorrect\n", principal);
    301  1.1   brezak 	    else
    302  1.1   brezak 		printf("%s while getting initial credentials\n", error_message(kerror));
    303  1.1   brezak 
    304  1.1   brezak 	    return(1);
    305  1.1   brezak 	}
    306  1.1   brezak 
    307  1.1   brezak 	/* Success */
    308  1.1   brezak 	notickets = 0;
    309  1.1   brezak 	return(0);
    310  1.1   brezak }
    311  1.1   brezak 
    312  1.1   brezak /*
    313  1.1   brezak  * Remove any credentials
    314  1.1   brezak  */
    315  1.1   brezak void
    316  1.1   brezak kdestroy()
    317  1.1   brezak {
    318  1.1   brezak         krb5_error_code code;
    319  1.1   brezak 	krb5_ccache ccache = NULL;
    320  1.1   brezak 
    321  1.1   brezak 	if (krbtkfile_env == NULL)
    322  1.1   brezak 	    return;
    323  1.1   brezak 
    324  1.5  mycroft 	code = krb5_cc_resolve(kcontext, krbtkfile_env, &ccache);
    325  1.1   brezak 	if (!code) {
    326  1.5  mycroft 	    code = krb5_cc_destroy(kcontext, ccache);
    327  1.1   brezak 	    if (!code) {
    328  1.5  mycroft 		krb5_cc_close(kcontext, ccache);
    329  1.1   brezak 	    }
    330  1.1   brezak 	}
    331  1.1   brezak }
    332  1.1   brezak #endif
    333