/* SSSD Kerberos 5 Backend Module -- Utilities Authors: Sumit Bose Copyright (C) 2009 Red Hat This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include #include "providers/krb5/krb5_utils.h" #include "providers/krb5/krb5_auth.h" #include "util/util.h" char *expand_ccname_template(TALLOC_CTX *mem_ctx, struct krb5child_req *kr, const char *template, bool file_mode, bool case_sensitive, bool *private_path) { char *copy; char *p; char *n; char *result = NULL; char *dummy; char *name; char *res = NULL; const char *cache_dir_tmpl; TALLOC_CTX *tmp_ctx = NULL; *private_path = false; if (template == NULL) { DEBUG(1, ("Missing template.\n")); return NULL; } tmp_ctx = talloc_new(NULL); if (!tmp_ctx) return NULL; copy = talloc_strdup(tmp_ctx, template); if (copy == NULL) { DEBUG(1, ("talloc_strdup failed.\n")); goto done; } result = talloc_strdup(tmp_ctx, ""); if (result == NULL) { DEBUG(1, ("talloc_strdup failed.\n")); goto done; } p = copy; while ( (n = strchr(p, '%')) != NULL) { *n = '\0'; n++; if ( *n == '\0' ) { DEBUG(1, ("format error, single %% at the end of the template.\n")); goto done; } switch( *n ) { case 'u': if (kr->pd->user == NULL) { DEBUG(1, ("Cannot expand user name template " "because user name is empty.\n")); goto done; } name = sss_get_cased_name(tmp_ctx, kr->pd->user, case_sensitive); if (!name) { DEBUG(SSSDBG_CRIT_FAILURE, ("sss_get_cased_name failed\n")); goto done; } result = talloc_asprintf_append(result, "%s%s", p, name); if (!file_mode) *private_path = true; break; case 'U': if (kr->uid <= 0) { DEBUG(1, ("Cannot expand uid template " "because uid is invalid.\n")); goto done; } result = talloc_asprintf_append(result, "%s%d", p, kr->uid); if (!file_mode) *private_path = true; break; case 'p': if (kr->upn == NULL) { DEBUG(1, ("Cannot expand user principal name template " "because upn is empty.\n")); goto done; } result = talloc_asprintf_append(result, "%s%s", p, kr->upn); if (!file_mode) *private_path = true; break; case '%': result = talloc_asprintf_append(result, "%s%%", p); break; case 'r': dummy = dp_opt_get_string(kr->krb5_ctx->opts, KRB5_REALM); if (dummy == NULL) { DEBUG(1, ("Missing kerberos realm.\n")); goto done; } result = talloc_asprintf_append(result, "%s%s", p, dummy); break; case 'h': if (kr->homedir == NULL) { DEBUG(1, ("Cannot expand home directory template " "because the path is not available.\n")); goto done; } result = talloc_asprintf_append(result, "%s%s", p, kr->homedir); if (!file_mode) *private_path = true; break; case 'd': if (file_mode) { cache_dir_tmpl = dp_opt_get_string(kr->krb5_ctx->opts, KRB5_CCACHEDIR); if (cache_dir_tmpl == NULL) { DEBUG(1, ("Missing credential cache directory.\n")); goto done; } dummy = expand_ccname_template(tmp_ctx, kr, cache_dir_tmpl, false, case_sensitive, private_path); if (dummy == NULL) { DEBUG(1, ("Expanding credential cache directory " "template failed.\n")); goto done; } result = talloc_asprintf_append(result, "%s%s", p, dummy); talloc_zfree(dummy); } else { DEBUG(1, ("'%%d' is not allowed in this template.\n")); goto done; } break; case 'P': if (!file_mode) { DEBUG(1, ("'%%P' is not allowed in this template.\n")); goto done; } if (kr->pd->cli_pid == 0) { DEBUG(1, ("Cannot expand PID template " "because PID is not available.\n")); goto done; } result = talloc_asprintf_append(result, "%s%d", p, kr->pd->cli_pid); break; default: DEBUG(1, ("format error, unknown template [%%%c].\n", *n)); goto done; } if (result == NULL) { DEBUG(1, ("talloc_asprintf_append failed.\n")); goto done; } p = n + 1; } result = talloc_asprintf_append(result, "%s", p); if (result == NULL) { DEBUG(1, ("talloc_asprintf_append failed.\n")); goto done; } res = talloc_move(mem_ctx, &result); done: talloc_zfree(tmp_ctx); return res; } static errno_t check_parent_stat(bool private_path, struct stat *parent_stat, uid_t uid, gid_t gid) { if (private_path) { if (!((parent_stat->st_uid == 0 && parent_stat->st_gid == 0) || parent_stat->st_uid == uid)) { DEBUG(1, ("Private directory can only be created below a " "directory belonging to root or to [%d][%d].\n", uid, gid)); return EINVAL; } if (parent_stat->st_uid == uid) { if (!(parent_stat->st_mode & S_IXUSR)) { DEBUG(1, ("Parent directory does have the search bit set for " "the owner.\n")); return EINVAL; } } else { if (!(parent_stat->st_mode & S_IXOTH)) { DEBUG(1, ("Parent directory does have the search bit set for " "others.\n")); return EINVAL; } } } else { if (parent_stat->st_uid != 0 || parent_stat->st_gid != 0) { DEBUG(1, ("Public directory cannot be created below a user " "directory.\n")); return EINVAL; } if (!(parent_stat->st_mode & S_IXOTH)) { DEBUG(1, ("Parent directory does have the search bit set for " "others.\n")); return EINVAL; } } return EOK; } struct string_list { struct string_list *next; struct string_list *prev; char *s; }; static errno_t find_ccdir_parent_data(TALLOC_CTX *mem_ctx, const char *dirname, struct stat *parent_stat, struct string_list **missing_parents) { int ret = EFAULT; char *parent = NULL; char *end; struct string_list *li; ret = stat(dirname, parent_stat); if (ret == EOK) { if ( !S_ISDIR(parent_stat->st_mode) ) { DEBUG(1, ("[%s] is not a directory.\n", dirname)); return EINVAL; } return EOK; } else { if (errno != ENOENT) { ret = errno; DEBUG(1, ("stat for [%s] failed: [%d][%s].\n", dirname, ret, strerror(ret))); return ret; } } li = talloc_zero(mem_ctx, struct string_list); if (li == NULL) { DEBUG(1, ("talloc_zero failed.\n")); return ENOMEM; } li->s = talloc_strdup(li, dirname); if (li->s == NULL) { DEBUG(1, ("talloc_strdup failed.\n")); return ENOMEM; } DLIST_ADD(*missing_parents, li); parent = talloc_strdup(mem_ctx, dirname); if (parent == NULL) { DEBUG(1, ("talloc_strdup failed.\n")); return ENOMEM; } /* We'll remove all trailing slashes from the back so that * we only pass /some/path to find_ccdir_parent_data, not * /some/path */ do { end = strrchr(parent, '/'); if (end == NULL || end == parent) { DEBUG(1, ("Cannot find parent directory of [%s], / is not allowed.\n", dirname)); ret = EINVAL; goto done; } *end = '\0'; } while (*(end+1) == '\0'); ret = find_ccdir_parent_data(mem_ctx, parent, parent_stat, missing_parents); done: talloc_free(parent); return ret; } errno_t create_ccache_dir(TALLOC_CTX *mem_ctx, const char *filename, pcre *illegal_re, uid_t uid, gid_t gid, bool private_path) { int ret = EFAULT; char *dirname; char *end; struct stat parent_stat; struct string_list *missing_parents = NULL; struct string_list *li = NULL; mode_t old_umask; mode_t new_dir_mode; size_t offset = 0; TALLOC_CTX *tmp_ctx = NULL; tmp_ctx = talloc_new(mem_ctx); if (tmp_ctx == NULL) { DEBUG(1, ("talloc_new failed.\n")); return ENOMEM; } if (strncmp(filename, "FILE:", 5) == 0) { offset = 5; } dirname = talloc_strdup(tmp_ctx, filename + offset); if (dirname == NULL) { DEBUG(1, ("talloc_strndup failed.\n")); ret = ENOMEM; goto done; } if (*dirname != '/') { DEBUG(1, ("Only absolute paths are allowed, not [%s] .\n", dirname)); ret = EINVAL; goto done; } if (illegal_re != NULL) { ret = pcre_exec(illegal_re, NULL, dirname, strlen(dirname), 0, 0, NULL, 0); if (ret == 0) { DEBUG(1, ("Illegal pattern in ccache directory name [%s].\n", dirname)); ret = EINVAL; goto done; } else if ( ret == PCRE_ERROR_NOMATCH) { DEBUG(9, ("Ccache directory name [%s] does not contain " "illegal patterns.\n", dirname)); } else { DEBUG(1, ("pcre_exec failed [%d].\n", ret)); ret = EFAULT; goto done; } } end = strrchr(dirname, '/'); if (end == NULL || end == dirname) { DEBUG(1, ("Missing filename in [%s].\n", dirname)); ret = EINVAL; goto done; } *end = '\0'; ret = find_ccdir_parent_data(tmp_ctx, dirname, &parent_stat, &missing_parents); if (ret != EOK) { DEBUG(1, ("find_ccdir_parent_data failed.\n")); goto done; } ret = check_parent_stat(private_path, &parent_stat, uid, gid); if (ret != EOK) { DEBUG(1, ("check_parent_stat failed for %s directory [%s].\n", private_path ? "private" : "public", dirname)); goto done; } DLIST_FOR_EACH(li, missing_parents) { DEBUG(9, ("Creating directory [%s].\n", li->s)); if (li->next == NULL) { new_dir_mode = private_path ? 0700 : 01777; } else { if (private_path && parent_stat.st_uid == uid && parent_stat.st_gid == gid) { new_dir_mode = 0700; } else { new_dir_mode = 0755; } } old_umask = umask(0000); ret = mkdir(li->s, new_dir_mode); umask(old_umask); if (ret != EOK) { ret = errno; DEBUG(1, ("mkdir [%s] failed: [%d][%s].\n", li->s, ret, strerror(ret))); goto done; } if (private_path && ((parent_stat.st_uid == uid && parent_stat.st_gid == gid) || li->next == NULL)) { ret = chown(li->s, uid, gid); if (ret != EOK) { ret = errno; DEBUG(1, ("chown failed [%d][%s].\n", ret, strerror(ret))); goto done; } } } ret = EOK; done: talloc_free(tmp_ctx); return ret; } errno_t get_ccache_file_data(const char *ccache_file, const char *client_name, struct tgt_times *tgtt) { krb5_error_code kerr; krb5_context ctx = NULL; krb5_ccache cc = NULL; krb5_principal client_princ = NULL; krb5_principal server_princ = NULL; char *server_name; krb5_creds mcred; krb5_creds cred; const char *realm_name; int realm_length; kerr = krb5_init_context(&ctx); if (kerr != 0) { DEBUG(1, ("krb5_init_context failed.\n")); goto done; } kerr = krb5_parse_name(ctx, client_name, &client_princ); if (kerr != 0) { DEBUG(1, ("krb5_parse_name failed.\n")); goto done; } sss_krb5_princ_realm(ctx, client_princ, &realm_name, &realm_length); server_name = talloc_asprintf(NULL, "krbtgt/%.*s@%.*s", realm_length, realm_name, realm_length, realm_name); if (server_name == NULL) { kerr = KRB5_CC_NOMEM; DEBUG(1, ("talloc_asprintf failed.\n")); goto done; } kerr = krb5_parse_name(ctx, server_name, &server_princ); talloc_free(server_name); if (kerr != 0) { DEBUG(1, ("krb5_parse_name failed.\n")); goto done; } kerr = krb5_cc_resolve(ctx, ccache_file, &cc); if (kerr != 0) { DEBUG(1, ("krb5_cc_resolve failed.\n")); goto done; } memset(&mcred, 0, sizeof(mcred)); memset(&cred, 0, sizeof(mcred)); mcred.server = server_princ; mcred.client = client_princ; kerr = krb5_cc_retrieve_cred(ctx, cc, 0, &mcred, &cred); if (kerr != 0) { DEBUG(1, ("krb5_cc_retrieve_cred failed.\n")); goto done; } tgtt->authtime = cred.times.authtime; tgtt->starttime = cred.times.starttime; tgtt->endtime = cred.times.endtime; tgtt->renew_till = cred.times.renew_till; krb5_free_cred_contents(ctx, &cred); kerr = krb5_cc_close(ctx, cc); if (kerr != 0) { DEBUG(1, ("krb5_cc_close failed.\n")); goto done; } cc = NULL; kerr = 0; done: if (cc != NULL) { krb5_cc_close(ctx, cc); } if (client_princ != NULL) { krb5_free_principal(ctx, client_princ); } if (server_princ != NULL) { krb5_free_principal(ctx, server_princ); } if (ctx != NULL) { krb5_free_context(ctx); } if (kerr != 0) { return EIO; } return EOK; }