 8eb312128d
			
		
	
	8eb312128d
	
	
	
		
			
			git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3588 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			560 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			560 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 1997 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. All advertising materials mentioning features or use of this software 
 | |
|  *    must display the following acknowledgement: 
 | |
|  *      This product includes software developed by Kungliga Tekniska 
 | |
|  *      Högskolan and its contributors. 
 | |
|  *
 | |
|  * 4. 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 "krb5_locl.h"
 | |
| 
 | |
| RCSID("$Id$");
 | |
| 
 | |
| static int
 | |
| get_config_time (krb5_context context,
 | |
| 		 char *realm,
 | |
| 		 char *name,
 | |
| 		 int def)
 | |
| {
 | |
|     int ret;
 | |
| 
 | |
|     ret = krb5_config_get_time (context->cf,
 | |
| 				"realms",
 | |
| 				realm,
 | |
| 				name,
 | |
| 				NULL);
 | |
|     if (ret >= 0)
 | |
| 	return ret;
 | |
|     ret = krb5_config_get_time (context->cf,
 | |
| 				"libdefaults",
 | |
| 				name,
 | |
| 				NULL);
 | |
|     if (ret >= 0)
 | |
| 	return ret;
 | |
|     return def;
 | |
| }
 | |
| 
 | |
| static krb5_boolean
 | |
| get_config_bool (krb5_context context,
 | |
| 		 char *realm,
 | |
| 		 char *name)
 | |
| {
 | |
|     return krb5_config_get_bool (context->cf,
 | |
| 				 "realms",
 | |
| 				 realm,
 | |
| 				 name,
 | |
| 				 NULL)
 | |
| 	|| krb5_config_get_bool (context->cf,
 | |
| 				 "libdefaults",
 | |
| 				 name,
 | |
| 				 NULL);
 | |
| }
 | |
| 
 | |
| static krb5_error_code
 | |
| init_cred (krb5_context context,
 | |
| 	   krb5_creds *cred,
 | |
| 	   krb5_principal client,
 | |
| 	   krb5_deltat start_time,
 | |
| 	   char *in_tkt_service,
 | |
| 	   krb5_get_init_creds_opt *options)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     krb5_realm *client_realm;
 | |
|     int tmp;
 | |
|     int32_t now;
 | |
| 
 | |
|     krb5_timeofday (context, &now);
 | |
| 
 | |
|     memset (cred, 0, sizeof(*cred));
 | |
|     
 | |
|     if (client)
 | |
| 	krb5_copy_principal(context, client, &cred->client);
 | |
|     else {
 | |
| 	ret = krb5_get_default_principal (context,
 | |
| 					  &cred->client);
 | |
| 	if (ret)
 | |
| 	    goto out;
 | |
|     }
 | |
| 
 | |
|     client_realm = krb5_princ_realm (context, cred->client);
 | |
| 
 | |
|     if (start_time)
 | |
| 	cred->times.starttime  = now + start_time;
 | |
| 
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_TKT_LIFE)
 | |
| 	tmp = options->tkt_life;
 | |
|     else
 | |
| 	tmp = get_config_time (context,
 | |
| 			       *client_realm,
 | |
| 			       "ticket_lifetime",
 | |
| 			       10 * 60 * 60);
 | |
|     cred->times.endtime = now + tmp;
 | |
| 
 | |
|     tmp = 0;
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_RENEW_LIFE)
 | |
| 	tmp = options->renew_life;
 | |
|     else
 | |
| 	tmp = get_config_time (context,
 | |
| 			       *client_realm,
 | |
| 			       "renew_lifetime",
 | |
| 			       0);
 | |
|     if (tmp)
 | |
| 	cred->times.renew_till = now + tmp;
 | |
| 
 | |
|     if (in_tkt_service) {
 | |
| 	krb5_realm server_realm;
 | |
| 
 | |
| 	ret = krb5_parse_name (context, in_tkt_service, &cred->server);
 | |
| 	if (ret)
 | |
| 	    goto out;
 | |
| 	server_realm = strdup (*client_realm);
 | |
| 	free (cred->server->realm);
 | |
| 	krb5_princ_set_realm (context, cred->server, &server_realm);
 | |
|     } else {
 | |
| 	ret = krb5_make_principal(context, &cred->server, 
 | |
| 				  *client_realm, "krbtgt", *client_realm, NULL);
 | |
| 	if (ret)
 | |
| 	    goto out;
 | |
|     }
 | |
|     return 0;
 | |
| 
 | |
| out:
 | |
|     krb5_free_creds_contents (context, cred);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Parse the last_req data and show it to the user if it's interesting
 | |
|  */
 | |
| 
 | |
| static void
 | |
| print_expire (krb5_context context,
 | |
| 	      krb5_realm *realm,
 | |
| 	      krb5_kdc_rep *rep,
 | |
| 	      krb5_prompter_fct prompter,
 | |
| 	      krb5_data *data)
 | |
| {
 | |
|     int i;
 | |
|     LastReq *lr = &rep->part2.last_req;
 | |
|     int32_t sec;
 | |
|     time_t t;
 | |
| 
 | |
|     krb5_timeofday (context, &sec);
 | |
| 
 | |
|     t = sec + get_config_time (context,
 | |
| 			       *realm,
 | |
| 			       "warn_pwexpire",
 | |
| 			       7 * 24 * 60 * 60);
 | |
| 
 | |
|     for (i = 0; i < lr->len; ++i) {
 | |
| 	if (lr->val[i].lr_type == 6
 | |
| 	    && lr->val[i].lr_value <= t) {
 | |
| 	    char *p;
 | |
| 	    
 | |
| 	    asprintf (&p, "Your password will expire at %s",
 | |
| 		      ctime(&lr->val[i].lr_value));
 | |
| 	    (*prompter) (context, data, p, 0, NULL);
 | |
| 	    free (p);
 | |
| 	    return;
 | |
| 	}
 | |
|     }
 | |
| 
 | |
|     if (rep->part2.key_expiration
 | |
| 	&& *rep->part2.key_expiration <= t) {
 | |
| 	char *p;
 | |
| 
 | |
| 	asprintf (&p, "Your password/account will expire at %s",
 | |
| 		  ctime(rep->part2.key_expiration));
 | |
| 	(*prompter) (context, data, p, 0, NULL);
 | |
| 	free (p);
 | |
|     }
 | |
| }
 | |
| 
 | |
| static krb5_error_code
 | |
| get_init_creds_common(krb5_context context,
 | |
| 		      krb5_creds *creds,
 | |
| 		      krb5_principal client,
 | |
| 		      krb5_deltat start_time,
 | |
| 		      char *in_tkt_service,
 | |
| 		      krb5_get_init_creds_opt *options,
 | |
| 		      krb5_addresses **addrs,
 | |
| 		      krb5_enctype **etypes,
 | |
| 		      krb5_creds *cred,
 | |
| 		      krb5_preauthtype **pre_auth_types,
 | |
| 		      krb5_kdc_flags *flags)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     krb5_realm *client_realm;
 | |
| 
 | |
|     ret = init_cred (context, cred, client, start_time,
 | |
| 		     in_tkt_service, options);
 | |
|     if (ret)
 | |
| 	return ret;
 | |
| 
 | |
|     client_realm = krb5_princ_realm (context, cred->client);
 | |
| 
 | |
|     flags->i = 0;
 | |
| 
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_FORWARDABLE)
 | |
| 	flags->b.forwardable = 1;
 | |
|     else
 | |
| 	flags->b.forwardable = get_config_bool (context,
 | |
| 						*client_realm,
 | |
| 						"forwardable");
 | |
| 
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_PROXIABLE)
 | |
| 	flags->b.proxiable = 1;
 | |
|     else
 | |
| 	flags->b.proxiable = get_config_bool (context,
 | |
| 					      *client_realm,
 | |
| 					      "proxiable");
 | |
| 
 | |
|     if (cred->times.renew_till)
 | |
| 	flags->b.renewable = 1;
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_ADDRESS_LIST)
 | |
| 	*addrs = options->address_list;
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_ETYPE_LIST) {
 | |
| 	*etypes = malloc((options->etype_list_length + 1)
 | |
| 			* sizeof(krb5_enctype));
 | |
| 	if (*etypes == NULL)
 | |
| 	    return ENOMEM;
 | |
| 	memcpy (*etypes, options->etype_list,
 | |
| 		options->etype_list_length * sizeof(krb5_enctype));
 | |
| 	(*etypes)[options->etype_list_length] = 0;
 | |
|     }
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_PREAUTH_LIST) {
 | |
| 	*pre_auth_types = malloc((options->preauth_list_length + 1)
 | |
| 				 * sizeof(krb5_preauthtype));
 | |
| 	if (*pre_auth_types == NULL)
 | |
| 	    return ENOMEM;
 | |
| 	memcpy (*pre_auth_types, options->preauth_list,
 | |
| 		options->preauth_list_length * sizeof(krb5_preauthtype));
 | |
| 	(*pre_auth_types)[options->preauth_list_length] = 0;
 | |
|     }
 | |
|     if (options->flags & KRB5_GET_INIT_CREDS_OPT_SALT)
 | |
| 	;			/* XXX */
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static krb5_error_code
 | |
| change_password (krb5_context context,
 | |
| 		 krb5_principal client,
 | |
| 		 char *password,
 | |
| 		 char *newpw,
 | |
| 		 size_t newpw_sz,
 | |
| 		 krb5_prompter_fct prompter,
 | |
| 		 void *data,
 | |
| 		 krb5_get_init_creds_opt *old_options)
 | |
| {
 | |
|     krb5_prompt prompt;
 | |
|     krb5_error_code ret;
 | |
|     krb5_creds cpw_cred;
 | |
|     char buf1[BUFSIZ], buf2[BUFSIZ];
 | |
|     krb5_data password_data;
 | |
|     int result_code;
 | |
|     krb5_data result_code_string;
 | |
|     krb5_data result_string;
 | |
|     char *p;
 | |
|     krb5_get_init_creds_opt options;
 | |
| 
 | |
|     memset (&cpw_cred, 0, sizeof(cpw_cred));
 | |
| 
 | |
|     krb5_get_init_creds_opt_init (&options);
 | |
|     krb5_get_init_creds_opt_set_tkt_life (&options, 60);
 | |
|     krb5_get_init_creds_opt_set_preauth_list (&options,
 | |
| 					      old_options->preauth_list,
 | |
| 					      old_options->preauth_list_length);					      
 | |
| 
 | |
|     krb5_data_zero (&result_code_string);
 | |
|     krb5_data_zero (&result_string);
 | |
| 
 | |
|     ret = krb5_get_init_creds_password (context,
 | |
| 					&cpw_cred,
 | |
| 					client,
 | |
| 					password,
 | |
| 					prompter,
 | |
| 					data,
 | |
| 					0,
 | |
| 					"kadmin/changepw",
 | |
| 					&options);
 | |
|     if (ret)
 | |
| 	goto out;
 | |
| 
 | |
|     for(;;) {
 | |
| 	password_data.data   = buf1;
 | |
| 	password_data.length = sizeof(buf1);
 | |
| 
 | |
| 	prompt.hidden = 1;
 | |
| 	prompt.prompt = "New password";
 | |
| 	prompt.reply  = &password_data;
 | |
| 
 | |
| 	ret = (*prompter) (context, data, "Changing password", 1, &prompt);
 | |
| 	if (ret)
 | |
| 	    goto out;
 | |
| 
 | |
| 	password_data.data   = buf2;
 | |
| 	password_data.length = sizeof(buf2);
 | |
| 
 | |
| 	prompt.hidden = 1;
 | |
| 	prompt.prompt = "Repeat new password";
 | |
| 	prompt.reply  = &password_data;
 | |
| 
 | |
| 	ret = (*prompter) (context, data, "Changing password", 1, &prompt);
 | |
| 	if (ret)
 | |
| 	    goto out;
 | |
| 
 | |
| 	if (strcmp (buf1, buf2) == 0)
 | |
| 	    break;
 | |
|     }
 | |
|     
 | |
|     ret = krb5_change_password (context,
 | |
| 				&cpw_cred,
 | |
| 				buf1,
 | |
| 				&result_code,
 | |
| 				&result_code_string,
 | |
| 				&result_string);
 | |
|     if (ret)
 | |
| 	goto out;
 | |
|     asprintf (&p, "%s: %.*s\n",
 | |
| 	      result_code ? "Error" : "Success",
 | |
| 	      (int)result_string.length,
 | |
| 	      (char*)result_string.data);
 | |
| 
 | |
|     ret = (*prompter) (context, data, p, 0, NULL);
 | |
|     free (p);
 | |
|     if (result_code == 0) {
 | |
| 	strncpy (newpw, buf1, newpw_sz);
 | |
| 	ret = 0;
 | |
|     } else
 | |
| 	ret = ENOTTY;
 | |
| 
 | |
| out:
 | |
|     memset (buf1, 0, sizeof(buf1));
 | |
|     memset (buf2, 0, sizeof(buf2));
 | |
|     krb5_data_free (&result_string);
 | |
|     krb5_data_free (&result_code_string);
 | |
|     krb5_free_creds_contents (context, &cpw_cred);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| krb5_error_code
 | |
| krb5_get_init_creds_password(krb5_context context,
 | |
| 			     krb5_creds *creds,
 | |
| 			     krb5_principal client,
 | |
| 			     char *password,
 | |
| 			     krb5_prompter_fct prompter,
 | |
| 			     void *data,
 | |
| 			     krb5_deltat start_time,
 | |
| 			     char *in_tkt_service,
 | |
| 			     krb5_get_init_creds_opt *options)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     krb5_kdc_flags flags;
 | |
|     krb5_addresses *addrs = NULL;
 | |
|     krb5_enctype *etypes = NULL;
 | |
|     krb5_preauthtype *pre_auth_types = NULL;
 | |
|     krb5_creds this_cred;
 | |
|     krb5_kdc_rep kdc_reply;
 | |
|     char buf[BUFSIZ];
 | |
|     krb5_data password_data;
 | |
|     int done;
 | |
| 
 | |
|     ret = get_init_creds_common(context, creds, client, start_time,
 | |
| 				in_tkt_service, options,
 | |
| 				&addrs, &etypes, &this_cred, &pre_auth_types,
 | |
| 				&flags);
 | |
|     if(ret)
 | |
| 	goto out;
 | |
| 
 | |
|     if (password == NULL) {
 | |
| 	krb5_prompt prompt;
 | |
| 	char *p;
 | |
| 
 | |
| 	krb5_unparse_name (context, this_cred.client, &p);
 | |
| 	asprintf (&prompt.prompt, "%s's Password: ", p);
 | |
| 	free (p);
 | |
| 	password_data.data   = buf;
 | |
| 	password_data.length = sizeof(buf);
 | |
| 	prompt.hidden = 1;
 | |
| 	prompt.reply  = &password_data;
 | |
| 
 | |
| 	ret = (*prompter) (context, data, NULL, 1, &prompt);
 | |
| 	free (prompt.prompt);
 | |
| 	if (ret) {
 | |
| 	    memset (buf, 0, sizeof(buf));
 | |
| 	    goto out;
 | |
| 	}
 | |
| 	password = password_data.data;
 | |
|     }
 | |
| 
 | |
|     done = 0;
 | |
|     while(!done) {
 | |
| 	ret = krb5_get_in_cred (context,
 | |
| 				flags.i,
 | |
| 				addrs,
 | |
| 				etypes,
 | |
| 				pre_auth_types,
 | |
| 				krb5_password_key_proc,
 | |
| 				password,
 | |
| 				NULL,
 | |
| 				NULL,
 | |
| 				&this_cred,
 | |
| 				&kdc_reply);
 | |
| 	switch (ret) {
 | |
| 	case 0 :
 | |
| 	    done = 1;
 | |
| 	    break;
 | |
| 	case KRB5KDC_ERR_KEY_EXPIRED :
 | |
| 	    ret = change_password (context,
 | |
| 				   client,
 | |
| 				   password,
 | |
| 				   buf,
 | |
| 				   sizeof(buf),
 | |
| 				   prompter,
 | |
| 				   data,
 | |
| 				   options);
 | |
| 	    if (ret)
 | |
| 		goto out;
 | |
| 	    password = buf;
 | |
| 	    break;
 | |
| 	case KRB5KDC_ERR_PREAUTH_REQUIRED :
 | |
| 	    if (pre_auth_types)
 | |
| 		free (pre_auth_types);
 | |
| 	    pre_auth_types = malloc(2 * sizeof(*pre_auth_types));
 | |
| 	    if (pre_auth_types == NULL)
 | |
| 		goto out;
 | |
| 	    pre_auth_types[0] = KRB5_PADATA_ENC_TIMESTAMP;
 | |
| 	    pre_auth_types[1] = 0;
 | |
| 	    break;
 | |
| 	default:
 | |
| 	    goto out;
 | |
| 	}
 | |
|     }
 | |
| 
 | |
|     if (prompter)
 | |
| 	print_expire (context,
 | |
| 		      krb5_princ_realm (context, this_cred.client),
 | |
| 		      &kdc_reply,
 | |
| 		      prompter,
 | |
| 		      data);
 | |
|     krb5_free_kdc_rep (context, &kdc_reply);
 | |
| 
 | |
|     free (pre_auth_types);
 | |
|     free (etypes);
 | |
|     if (creds)
 | |
| 	*creds = this_cred;
 | |
|     else
 | |
| 	krb5_free_creds_contents (context, &this_cred);
 | |
|     return 0;
 | |
| 
 | |
| out:
 | |
|     memset (buf, 0, sizeof(buf));
 | |
|     free (pre_auth_types);
 | |
|     free (etypes);
 | |
|     krb5_free_creds_contents (context, &this_cred);
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| krb5_error_code
 | |
| krb5_keyblock_key_proc (krb5_context context,
 | |
| 			krb5_keytype type,
 | |
| 			krb5_data *salt,
 | |
| 			krb5_const_pointer keyseed,
 | |
| 			krb5_keyblock **key)
 | |
| {
 | |
|     return krb5_copy_keyblock (context, keyseed, key);
 | |
| }
 | |
| 
 | |
| krb5_error_code
 | |
| krb5_get_init_creds_keytab(krb5_context context,
 | |
| 			   krb5_creds *creds,
 | |
| 			   krb5_principal client,
 | |
| 			   krb5_keytab keytab,
 | |
| 			   krb5_deltat start_time,
 | |
| 			   char *in_tkt_service,
 | |
| 			   krb5_get_init_creds_opt *options)
 | |
| {
 | |
|     krb5_error_code ret;
 | |
|     krb5_kdc_flags flags;
 | |
|     krb5_addresses *addrs = NULL;
 | |
|     krb5_enctype *etypes = NULL;
 | |
|     krb5_preauthtype *pre_auth_types = NULL;
 | |
|     krb5_creds this_cred;
 | |
|     /* krb5_kdc_rep kdc_reply; */
 | |
|     krb5_keytab_entry kt_ent;
 | |
|     
 | |
|     ret = get_init_creds_common(context, creds, client, start_time,
 | |
| 				in_tkt_service, options,
 | |
| 				&addrs, &etypes, &this_cred, &pre_auth_types,
 | |
| 				&flags);
 | |
|     if(ret)
 | |
| 	goto out;
 | |
| 
 | |
|     ret = krb5_kt_get_entry(context,
 | |
| 			    keytab,
 | |
| 			    this_cred.client,
 | |
| 			    0,
 | |
| 			    KEYTYPE_DES,
 | |
| 			    &kt_ent);
 | |
|     if(ret)
 | |
| 	goto out;
 | |
| 
 | |
|     ret = krb5_get_in_cred (context,
 | |
| 			    flags.i,
 | |
| 			    addrs,
 | |
| 			    etypes,
 | |
| 			    pre_auth_types,
 | |
| 			    krb5_keyblock_key_proc,
 | |
| 			    &kt_ent.keyblock,
 | |
| 			    NULL,
 | |
| 			    NULL,
 | |
| 			    &this_cred,
 | |
| 			    NULL /* &kdc_reply */);
 | |
|     krb5_kt_free_entry(context, &kt_ent);
 | |
|     if (ret)
 | |
| 	goto out;
 | |
|     free (pre_auth_types);
 | |
|     free (etypes);
 | |
|     if (creds)
 | |
| 	*creds = this_cred;
 | |
|     else
 | |
| 	krb5_free_creds_contents (context, &this_cred);
 | |
|     return 0;
 | |
| 
 | |
| out:
 | |
|     free (pre_auth_types);
 | |
|     free (etypes);
 | |
|     krb5_free_creds_contents (context, &this_cred);
 | |
|     return ret;
 | |
| }
 |