/* GSS-PROXY Copyright (C) 2011 Red Hat, Inc. Copyright (C) 2011 Simo Sorce Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "config.h" #include #include #include #include #include #include #include #include "gp_proxy.h" #include "gp_rpc_creds.h" #include "gp_creds.h" #include "gp_conv.h" #define GSS_MECH_KRB5_OID_LENGTH 9 #define GSS_MECH_KRB5_OID "\052\206\110\206\367\022\001\002\002" gss_OID_desc gp_mech_krb5 = { GSS_MECH_KRB5_OID_LENGTH, GSS_MECH_KRB5_OID }; struct supported_mechs_map { int internal_id; const gss_OID mech; } supported_mechs_map[] = { { GP_CRED_KRB5, &gp_mech_krb5 }, { 0, NULL } }; bool gp_creds_allowed_mech(struct gp_call_ctx *gpcall, gss_OID desired_mech) { int i; for (i = 0; supported_mechs_map[i].internal_id != 0; i++) { if (gpcall->service->mechs & supported_mechs_map[i].internal_id) { if (gss_oid_equal(desired_mech, supported_mechs_map[i].mech)) { return true; } } } return false; } uint32_t gp_get_supported_mechs(uint32_t *min, gss_OID_set *set) { uint32_t ret_maj; uint32_t ret_min; int i; ret_maj = gss_create_empty_oid_set(&ret_min, set); if (ret_maj) { *min = ret_min; return ret_maj; } for (i = 0; supported_mechs_map[i].internal_id != 0; i++) { ret_maj = gss_add_oid_set_member(&ret_min, supported_mechs_map[i].mech, set); if (ret_maj) { *min = ret_min; gss_release_oid_set(&ret_min, set); return ret_maj; } } *min = 0; return GSS_S_COMPLETE; } struct gp_service *gp_creds_match_conn(struct gssproxy_ctx *gpctx, struct gp_conn *conn) { struct gp_creds *gcs; const char *socket; int i; gcs = gp_conn_get_creds(conn); socket = gp_conn_get_socket(conn); for (i = 0; i < gpctx->config->num_svcs; i++) { if (gpctx->config->svcs[i]->any_uid || gpctx->config->svcs[i]->euid == gcs->ucred.uid) { if (gpctx->config->svcs[i]->socket) { if (!gp_same(socket, gpctx->config->svcs[i]->socket)) { continue; } } else { if (!gp_same(socket, gpctx->config->socket_name)) { continue; } } if (!gp_conn_check_selinux(conn, gpctx->config->svcs[i]->selinux_ctx)) { continue; } return gpctx->config->svcs[i]; } } return NULL; } #define PWBUFLEN 2048 static char *uid_to_name(uid_t uid) { struct passwd pwd, *res = NULL; char buffer[PWBUFLEN]; int ret; ret = getpwuid_r(uid, &pwd, buffer, PWBUFLEN, &res); if (ret || !res) { return NULL; } return strdup(pwd.pw_name); } static char *get_formatted_string(const char *orig, uid_t target_uid) { int len, left, right; char *user = NULL; char *str; char *tmp; char *p; str = strdup(orig); if (!str) { return NULL; } len = strlen(str); p = str; while ((p = strchr(p, '%')) != NULL) { p++; switch (*p) { case '%': left = p - str; memmove(p, p + 1, left - 1); len--; continue; case 'U': p++; left = p - str; right = len - left; len = asprintf(&tmp, "%.*s%d%s", left - 2, str, target_uid, p); safefree(str); if (len == -1) { goto done; } str = tmp; p = str + (len - right); break; case 'u': if (!user) { user = uid_to_name(target_uid); if (!user) { safefree(str); goto done; } } p++; left = p - str; right = len - left; len = asprintf(&tmp, "%.*s%s%s", left - 2, str, user, p); safefree(str); if (len == -1) { goto done; } str = tmp; p = str + (len - right); break; default: GPDEBUG("Invalid format code '%%%c'\n", *p); safefree(str); goto done; } } done: safefree(user); return str; } static void free_cred_store_elements(gss_key_value_set_desc *cs) { int i; for (i = 0; i < cs->count; i++) { safefree(cs->elements[i].key); safefree(cs->elements[i].value); } safefree(cs->elements); } static bool try_impersonate(struct gp_service *svc, gss_cred_usage_t cred_usage) { if (!svc->impersonate) { return false; } if (cred_usage == GSS_C_ACCEPT) { return false; } return true; } static int gp_get_cred_environment(struct gp_call_ctx *gpcall, gssx_name *desired_name, gss_name_t *requested_name, gss_cred_usage_t *cred_usage, gss_key_value_set_desc *cs) { struct gp_service *svc; gss_name_t name = GSS_C_NO_NAME; gss_buffer_desc namebuf; gss_OID_desc name_type; uint32_t ret_maj = 0; uint32_t ret_min = 0; uid_t target_uid; const char *fmtstr; const char *p; char *str; bool user_requested = false; bool use_service_keytab = false; int ret = -1; int k_num = -1; int ck_num = -1; int c, d; memset(cs, 0, sizeof(gss_key_value_set_desc)); target_uid = gp_conn_get_uid(gpcall->connection); svc = gpcall->service; /* filter based on cred_usage */ if (svc->cred_usage != GSS_C_BOTH) { if (*cred_usage == GSS_C_BOTH) { *cred_usage = svc->cred_usage; } else if (svc->cred_usage != *cred_usage) { ret = EACCES; goto done; } } if (desired_name) { gp_conv_gssx_to_oid(&desired_name->name_type, &name_type); /* A service retains the trusted flag only if the current uid matches * the configured euid */ if (svc->trusted && (svc->euid == target_uid) && (gss_oid_equal(&name_type, GSS_C_NT_STRING_UID_NAME) || gss_oid_equal(&name_type, GSS_C_NT_MACHINE_UID_NAME))) { target_uid = atol(desired_name->display_name.octet_string_val); user_requested = true; } else { /* it's a user request if it comes from an arbitrary uid */ if (svc->euid != target_uid) { user_requested = true; } else { use_service_keytab = true; } ret_maj = gp_conv_gssx_to_name(&ret_min, desired_name, &name); if (ret_maj) { goto done; } *requested_name = name; } } else { /* No name provided */ if (svc->euid != target_uid) { user_requested = true; } } /* impersonation case (only for initiation) */ if (user_requested) { if (try_impersonate(svc, *cred_usage)) { /* When impersonating we want to use the service keytab to * acquire initial credential ... */ use_service_keytab = true; /* ... and after that make the s4u2self delegation dance with the * target name identifying the user */ str = uid_to_name(target_uid); if (str == NULL) { GPERROR("Failed to get username from uid %d\n", target_uid); return ENOENT; } namebuf.value = str; namebuf.length = strlen(str); ret_maj = gss_import_name(&ret_min, &namebuf, GSS_C_NT_USER_NAME, requested_name); safefree(str); if (ret_maj) { GPERROR("Failed to import username %s\n", str); return ENOMEM; } } } if (svc->krb5.cred_store == NULL) { return 0; } /* allocate 1 more than in source, just in case we need to add * an internal client_keytab element */ cs->elements = calloc(svc->krb5.cred_count + 1, sizeof(gss_key_value_element_desc)); if (!cs->elements) { ret = ENOMEM; goto done; } c = 0; for (d = 0; d < svc->krb5.cred_count; d++) { p = strchr(svc->krb5.cred_store[d], ':'); if (!p) { GPERROR("Invalid cred_store value" "no ':' separator found in [%s].\n", svc->krb5.cred_store[d]); ret = EINVAL; goto done; } if (strncmp(svc->krb5.cred_store[d], "client_keytab:", 14) == 0) { ck_num = c; } else if (strncmp(svc->krb5.cred_store[d], "keytab:", 7) == 0) { k_num = c; } ret = asprintf(&str, "%.*s", (int)(p - svc->krb5.cred_store[d]), svc->krb5.cred_store[d]); if (ret == -1) { ret = ENOMEM; goto done; } cs->elements[c].key = str; fmtstr = p + 1; cs->elements[c].value = get_formatted_string(fmtstr, target_uid); if (!cs->elements[c].value) { GPDEBUG("Failed to build credential store formatted string.\n"); ret = ENOMEM; goto done; } c++; } cs->count = c; /* when a user is not explicitly requested then it means the calling * application wants to use the credentials in the standard keytab, * if any. */ if (use_service_keytab) { if (k_num == -1) { if (ck_num == -1) { ret = EINVAL; } else { /* allow a service to define only the client keytab */ ret = 0; } goto done; } if (ck_num == -1) { /* we always have space for 1 more */ ck_num = cs->count; cs->elements[ck_num].key = strdup("client_keytab"); if (!cs->elements[ck_num].key) { ret = ENOMEM; goto done; } cs->count = ck_num + 1; } else { safefree(cs->elements[ck_num].value); } cs->elements[ck_num].value = strdup(cs->elements[k_num].value); if (!cs->elements[ck_num].value) { ret = ENOMEM; goto done; } } ret = 0; done: if (ret) { free_cred_store_elements(cs); } return ret; } uint32_t gp_add_krb5_creds(uint32_t *min, struct gp_call_ctx *gpcall, gss_cred_id_t in_cred, gssx_name *desired_name, gss_cred_usage_t cred_usage, uint32_t initiator_time_req, uint32_t acceptor_time_req, gss_cred_id_t *output_cred_handle, gss_OID_set *actual_mechs, uint32_t *initiator_time_rec, uint32_t *acceptor_time_rec) { uint32_t ret_maj = 0; uint32_t ret_min = 0; uint32_t discard; gss_name_t req_name = GSS_C_NO_NAME; gss_OID_set_desc desired_mechs = { 1, &gp_mech_krb5 }; gss_key_value_set_desc cred_store; gss_cred_id_t impersonator_cred = GSS_C_NO_CREDENTIAL; gss_cred_id_t user_cred = GSS_C_NO_CREDENTIAL; gss_ctx_id_t initiator_context = GSS_C_NO_CONTEXT; gss_ctx_id_t acceptor_context = GSS_C_NO_CONTEXT; gss_name_t target_name = GSS_C_NO_NAME; gss_buffer_desc init_token = GSS_C_EMPTY_BUFFER; gss_buffer_desc accept_token = GSS_C_EMPTY_BUFFER; if (!min || !output_cred_handle) { return GSS_S_CALL_INACCESSIBLE_WRITE; } *min = 0; *output_cred_handle = GSS_C_NO_CREDENTIAL; if (actual_mechs) { *actual_mechs = GSS_C_NO_OID_SET; } if (in_cred != GSS_C_NO_CREDENTIAL) { /* we can't yet handle adding to an existing credential due to * the way gss_krb5_import_cred works. This limitation should * be removed by adding a gssapi extension that superceedes this * function completely */ return GSS_S_CRED_UNAVAIL; } ret_min = gp_get_cred_environment(gpcall, desired_name, &req_name, &cred_usage, &cred_store); if (ret_min) { ret_maj = GSS_S_CRED_UNAVAIL; goto done; } if (!try_impersonate(gpcall->service, cred_usage)) { ret_maj = gss_acquire_cred_from(&ret_min, req_name, GSS_C_INDEFINITE, &desired_mechs, cred_usage, &cred_store, output_cred_handle, actual_mechs, NULL); if (ret_maj) { goto done; } } else { /* impersonation */ ret_maj = gss_acquire_cred_from(&ret_min, GSS_C_NO_NAME, GSS_C_INDEFINITE, &desired_mechs, GSS_C_BOTH, &cred_store, &impersonator_cred, NULL, NULL); if (ret_maj) { goto done; } ret_maj = gss_inquire_cred(&ret_min, impersonator_cred, &target_name, NULL, NULL, NULL); if (ret_maj) { goto done; } ret_maj = gss_acquire_cred_impersonate_name(&ret_min, impersonator_cred, req_name, GSS_C_INDEFINITE, &desired_mechs, GSS_C_INITIATE, &user_cred, actual_mechs, NULL); if (ret_maj) { goto done; } /* now acquire credentials for impersonated user to self */ ret_maj = gss_init_sec_context(&ret_min, user_cred, &initiator_context, target_name, &gp_mech_krb5, GSS_C_REPLAY_FLAG | GSS_C_SEQUENCE_FLAG, GSS_C_INDEFINITE, GSS_C_NO_CHANNEL_BINDINGS, GSS_C_NO_BUFFER, NULL, &init_token, NULL, NULL); if (ret_maj) { goto done; } /* accept context to be able to store delgated credentials */ ret_maj = gss_accept_sec_context(&ret_min, &acceptor_context, impersonator_cred, &init_token, GSS_C_NO_CHANNEL_BINDINGS, NULL, NULL, &accept_token, NULL, NULL, output_cred_handle); if (ret_maj) { goto done; } } if (initiator_time_rec || acceptor_time_rec) { ret_maj = gss_inquire_cred_by_mech(&ret_min, *output_cred_handle, &gp_mech_krb5, NULL, initiator_time_rec, acceptor_time_rec, NULL); if (ret_maj) { goto done; } } done: if (ret_maj) { if (*output_cred_handle) { gss_release_cred(&discard, output_cred_handle); } if (actual_mechs && *actual_mechs) { gss_release_oid_set(&discard, actual_mechs); } } gss_release_cred(&discard, &impersonator_cred); gss_release_cred(&discard, &user_cred); gss_release_name(&discard, &target_name); gss_delete_sec_context(&discard, &initiator_context, NULL); gss_release_buffer(&discard, &init_token); gss_release_buffer(&discard, &accept_token); *min = ret_min; return ret_maj; } void gp_filter_flags(struct gp_call_ctx *gpcall, uint32_t *flags) { *flags |= gpcall->service->enforce_flags; *flags &= ~gpcall->service->filter_flags; }