LCOV - code coverage report
Current view: top level - third_party/heimdal/lib/gssapi/krb5 - copy_ccache.c (source / functions) Hit Total Coverage
Test: coverage report for vadcx-master-patch-75612 fe003de8 Lines: 48 80 60.0 %
Date: 2024-02-29 22:57:05 Functions: 1 1 100.0 %

          Line data    Source code
       1             : /*
       2             :  * Copyright (c) 2000 - 2001, 2003 Kungliga Tekniska Högskolan
       3             :  * (Royal Institute of Technology, Stockholm, Sweden).
       4             :  * All rights reserved.
       5             :  *
       6             :  * Redistribution and use in source and binary forms, with or without
       7             :  * modification, are permitted provided that the following conditions
       8             :  * are met:
       9             :  *
      10             :  * 1. Redistributions of source code must retain the above copyright
      11             :  *    notice, this list of conditions and the following disclaimer.
      12             :  *
      13             :  * 2. Redistributions in binary form must reproduce the above copyright
      14             :  *    notice, this list of conditions and the following disclaimer in the
      15             :  *    documentation and/or other materials provided with the distribution.
      16             :  *
      17             :  * 3. Neither the name of the Institute nor the names of its contributors
      18             :  *    may be used to endorse or promote products derived from this software
      19             :  *    without specific prior written permission.
      20             :  *
      21             :  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
      22             :  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
      23             :  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
      24             :  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
      25             :  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
      26             :  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
      27             :  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
      28             :  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
      29             :  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
      30             :  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
      31             :  * SUCH DAMAGE.
      32             :  */
      33             : 
      34             : #include "gsskrb5_locl.h"
      35             : 
      36             : #if 0
      37             : OM_uint32
      38             : gss_krb5_copy_ccache(OM_uint32 *minor_status,
      39             :                      krb5_context context,
      40             :                      gss_cred_id_t cred,
      41             :                      krb5_ccache out)
      42             : {
      43             :     krb5_error_code kret;
      44             : 
      45             :     HEIMDAL_MUTEX_lock(&cred->cred_id_mutex);
      46             : 
      47             :     if (cred->ccache == NULL) {
      48             :         HEIMDAL_MUTEX_unlock(&cred->cred_id_mutex);
      49             :         *minor_status = EINVAL;
      50             :         return GSS_S_FAILURE;
      51             :     }
      52             : 
      53             :     kret = krb5_cc_copy_cache(context, cred->ccache, out);
      54             :     HEIMDAL_MUTEX_unlock(&cred->cred_id_mutex);
      55             :     if (kret) {
      56             :         *minor_status = kret;
      57             :         return GSS_S_FAILURE;
      58             :     }
      59             :     *minor_status = 0;
      60             :     return GSS_S_COMPLETE;
      61             : }
      62             : #endif
      63             : 
      64             : 
      65             : /*
      66             :  * WARNING: Takes ownership of `id'.  Because MEMORY:anonymous is now not
      67             :  * linked into to the MEMORY ccache namespace, we can't use krb5_cc_resolve()
      68             :  * with the cache's name anymore.  We need a krb5_cc_clone() or some such, with
      69             :  * attendant new method for ccops.  Or we could create a new MEMORY:anonymous
      70             :  * ccache and copy all the creds from `id' into it.  But we know callers of
      71             :  * this function don't need `id' after calling it, so for now we'll just take
      72             :  * ownershipd of it.
      73             :  */
      74             : OM_uint32
      75      132319 : _gsskrb5_krb5_import_cred(OM_uint32 *minor_status,
      76             :                           krb5_ccache *id,
      77             :                           krb5_principal keytab_principal,
      78             :                           krb5_keytab keytab,
      79             :                           gss_cred_id_t *cred)
      80             : {
      81        3623 :     krb5_context context;
      82        3623 :     krb5_error_code kret;
      83        3623 :     gsskrb5_cred handle;
      84        3623 :     OM_uint32 ret;
      85      132319 :     int id_given = (*id != NULL);
      86             : 
      87      132319 :     *cred = NULL;
      88             : 
      89      132319 :     GSSAPI_KRB5_INIT (&context);
      90             : 
      91      132319 :     handle = calloc(1, sizeof(*handle));
      92      132319 :     if (handle == NULL) {
      93           0 :         _gsskrb5_clear_status ();
      94           0 :         *minor_status = ENOMEM;
      95           0 :         return (GSS_S_FAILURE);
      96             :     }
      97        3623 :     HEIMDAL_MUTEX_init(&handle->cred_id_mutex);
      98             : 
      99      132319 :     handle->usage = 0;
     100      132319 :     handle->destination_realm = NULL;
     101             : 
     102      132319 :     if (*id) {
     103        1466 :         time_t now;
     104        1466 :         OM_uint32 left;
     105             : 
     106       69739 :         handle->usage |= GSS_C_INITIATE;
     107             : 
     108       69739 :         kret = krb5_cc_get_principal(context, *id,
     109             :                                      &handle->principal);
     110       69739 :         if (kret) {
     111        7165 :             free(handle);
     112        7165 :             *minor_status = kret;
     113        7165 :             return GSS_S_FAILURE;
     114             :         }
     115             : 
     116       62574 :         if (keytab_principal) {
     117           0 :             krb5_boolean match;
     118             : 
     119           0 :             match = krb5_principal_compare(context,
     120           0 :                                            handle->principal,
     121             :                                            keytab_principal);
     122           0 :             if (match == FALSE) {
     123           0 :                 krb5_free_principal(context, handle->principal);
     124           0 :                 free(handle);
     125           0 :                 _gsskrb5_clear_status ();
     126           0 :                 *minor_status = EINVAL;
     127           0 :                 return GSS_S_FAILURE;
     128             :             }
     129             :         }
     130             : 
     131       62574 :         krb5_timeofday(context, &now);
     132       62574 :         ret = __gsskrb5_ccache_lifetime(minor_status,
     133             :                                         context,
     134             :                                         *id,
     135             :                                         handle->principal,
     136             :                                         &left);
     137       62574 :         if (ret != GSS_S_COMPLETE) {
     138           0 :             krb5_free_principal(context, handle->principal);
     139           0 :             free(handle);
     140           0 :             return ret;
     141             :         }
     142       62574 :         handle->endtime = now + left;
     143             : 
     144       62574 :         handle->ccache = *id;
     145       62574 :         *id = NULL;
     146             :     }
     147             : 
     148             : 
     149      125154 :     if (keytab) {
     150        2157 :         char *str;
     151             : 
     152       62580 :         handle->usage |= GSS_C_ACCEPT;
     153             : 
     154       62580 :         if (keytab_principal && handle->principal == NULL) {
     155       60779 :             kret = krb5_copy_principal(context,
     156             :                                        keytab_principal,
     157             :                                        &handle->principal);
     158       60779 :             if (kret)
     159           0 :                 goto out;
     160             :         }
     161             : 
     162       62580 :         kret = krb5_kt_get_full_name(context, keytab, &str);
     163       62580 :         if (kret)
     164           0 :             goto out;
     165             : 
     166       62580 :         kret = krb5_kt_resolve(context, str, &handle->keytab);
     167       62580 :         free(str);
     168       62580 :         if (kret)
     169           0 :             goto out;
     170             :     }
     171             : 
     172             : 
     173      125154 :     if (id_given || keytab) {
     174      125154 :         ret = gss_create_empty_oid_set(minor_status, &handle->mechanisms);
     175      125154 :         if (ret == GSS_S_COMPLETE)
     176      125154 :             ret = gss_add_oid_set_member(minor_status, GSS_KRB5_MECHANISM,
     177             :                                          &handle->mechanisms);
     178      125154 :         if (ret != GSS_S_COMPLETE) {
     179           0 :             kret = *minor_status;
     180           0 :             goto out;
     181             :         }
     182             :     }
     183             : 
     184      125154 :     *minor_status = 0;
     185      125154 :     *cred = (gss_cred_id_t)handle;
     186      125154 :     return GSS_S_COMPLETE;
     187             : 
     188           0 : out:
     189           0 :     gss_release_oid_set(minor_status, &handle->mechanisms);
     190           0 :     if (handle->ccache)
     191           0 :         krb5_cc_close(context, handle->ccache);
     192           0 :     if (handle->keytab)
     193           0 :         krb5_kt_close(context, handle->keytab);
     194           0 :     if (handle->principal)
     195           0 :         krb5_free_principal(context, handle->principal);
     196           0 :     HEIMDAL_MUTEX_destroy(&handle->cred_id_mutex);
     197           0 :     free(handle);
     198           0 :     *minor_status = kret;
     199           0 :     return GSS_S_FAILURE;
     200             : }

Generated by: LCOV version 1.14