]> andersk Git - gssapi-openssh.git/blame - openssh/auth-krb5.c
Re-import of OpenSSH 3.7.1p2 (Chase\!)
[gssapi-openssh.git] / openssh / auth-krb5.c
CommitLineData
3c0ef626 1/*
2 * Kerberos v5 authentication and ticket-passing routines.
700318f3 3 *
3c0ef626 4 * $FreeBSD: src/crypto/openssh/auth-krb5.c,v 1.6 2001/02/13 16:58:04 assar Exp $
3c0ef626 5 */
700318f3 6/*
7 * Copyright (c) 2002 Daniel Kouril. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
3c0ef626 29
30#include "includes.h"
9cb1827b 31RCSID("$OpenBSD: auth-krb5.c,v 1.12 2003/08/28 12:54:34 markus Exp $");
e9a17296 32
3c0ef626 33#include "ssh.h"
34#include "ssh1.h"
35#include "packet.h"
36#include "xmalloc.h"
37#include "log.h"
38#include "servconf.h"
39#include "uidswap.h"
40#include "auth.h"
41
42#ifdef KRB5
9cb1827b 43
3c0ef626 44#include <krb5.h>
45
46extern ServerOptions options;
47
48static int
49krb5_init(void *context)
50{
51 Authctxt *authctxt = (Authctxt *)context;
52 krb5_error_code problem;
9cb1827b 53 static int cleanup_registered = 0;
e9a17296 54
3c0ef626 55 if (authctxt->krb5_ctx == NULL) {
56 problem = krb5_init_context(&authctxt->krb5_ctx);
57 if (problem)
58 return (problem);
59 krb5_init_ets(authctxt->krb5_ctx);
60 }
9cb1827b 61 if (!cleanup_registered) {
62 fatal_add_cleanup(krb5_cleanup_proc, authctxt);
63 cleanup_registered = 1;
64 }
3c0ef626 65 return (0);
66}
67
3c0ef626 68int
69auth_krb5_password(Authctxt *authctxt, const char *password)
70{
700318f3 71#ifndef HEIMDAL
72 krb5_creds creds;
73 krb5_principal server;
74 char ccname[40];
75 int tmpfd;
9cb1827b 76#endif
3c0ef626 77 krb5_error_code problem;
0fff78ff 78 krb5_ccache ccache = NULL;
e9a17296 79
9cb1827b 80 if (authctxt->pw == NULL)
3c0ef626 81 return (0);
e9a17296 82
3c0ef626 83 temporarily_use_uid(authctxt->pw);
e9a17296 84
3c0ef626 85 problem = krb5_init(authctxt);
86 if (problem)
87 goto out;
e9a17296 88
3c0ef626 89 problem = krb5_parse_name(authctxt->krb5_ctx, authctxt->pw->pw_name,
90 &authctxt->krb5_user);
91 if (problem)
92 goto out;
e9a17296 93
700318f3 94#ifdef HEIMDAL
0fff78ff 95 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops, &ccache);
3c0ef626 96 if (problem)
97 goto out;
e9a17296 98
0fff78ff 99 problem = krb5_cc_initialize(authctxt->krb5_ctx, ccache,
100 authctxt->krb5_user);
3c0ef626 101 if (problem)
102 goto out;
e9a17296 103
104 restore_uid();
9cb1827b 105
3c0ef626 106 problem = krb5_verify_user(authctxt->krb5_ctx, authctxt->krb5_user,
0fff78ff 107 ccache, password, 1, NULL);
9cb1827b 108
e9a17296 109 temporarily_use_uid(authctxt->pw);
110
3c0ef626 111 if (problem)
112 goto out;
0fff78ff 113 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_fcc_ops,
114 &authctxt->krb5_fwd_ccache);
115 if (problem)
116 goto out;
117
118 problem = krb5_cc_copy_cache(authctxt->krb5_ctx, ccache,
119 authctxt->krb5_fwd_ccache);
120 krb5_cc_destroy(authctxt->krb5_ctx, ccache);
121 ccache = NULL;
122 if (problem)
123 goto out;
e9a17296 124
700318f3 125#else
126 problem = krb5_get_init_creds_password(authctxt->krb5_ctx, &creds,
127 authctxt->krb5_user, (char *)password, NULL, NULL, 0, NULL, NULL);
128 if (problem)
129 goto out;
130
131 problem = krb5_sname_to_principal(authctxt->krb5_ctx, NULL, NULL,
132 KRB5_NT_SRV_HST, &server);
133 if (problem)
134 goto out;
135
136 restore_uid();
137 problem = krb5_verify_init_creds(authctxt->krb5_ctx, &creds, server,
138 NULL, NULL, NULL);
139 krb5_free_principal(authctxt->krb5_ctx, server);
140 temporarily_use_uid(authctxt->pw);
141 if (problem)
142 goto out;
9cb1827b 143
144 if (!krb5_kuserok(authctxt->krb5_ctx, authctxt->krb5_user,
700318f3 145 authctxt->pw->pw_name)) {
f5799ae1 146 problem = -1;
700318f3 147 goto out;
9cb1827b 148 }
700318f3 149
150 snprintf(ccname,sizeof(ccname),"FILE:/tmp/krb5cc_%d_XXXXXX",geteuid());
9cb1827b 151
700318f3 152 if ((tmpfd = mkstemp(ccname+strlen("FILE:")))==-1) {
0fff78ff 153 logit("mkstemp(): %.100s", strerror(errno));
700318f3 154 problem = errno;
155 goto out;
156 }
9cb1827b 157
700318f3 158 if (fchmod(tmpfd,S_IRUSR | S_IWUSR) == -1) {
0fff78ff 159 logit("fchmod(): %.100s", strerror(errno));
700318f3 160 close(tmpfd);
161 problem = errno;
162 goto out;
163 }
164 close(tmpfd);
165
166 problem = krb5_cc_resolve(authctxt->krb5_ctx, ccname, &authctxt->krb5_fwd_ccache);
167 if (problem)
168 goto out;
169
170 problem = krb5_cc_initialize(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache,
171 authctxt->krb5_user);
172 if (problem)
173 goto out;
9cb1827b 174
700318f3 175 problem= krb5_cc_store_cred(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache,
176 &creds);
177 if (problem)
178 goto out;
9cb1827b 179#endif
700318f3 180
3c0ef626 181 authctxt->krb5_ticket_file = (char *)krb5_cc_get_name(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
e9a17296 182
3c0ef626 183 out:
184 restore_uid();
e9a17296 185
3c0ef626 186 if (problem) {
0fff78ff 187 if (ccache)
188 krb5_cc_destroy(authctxt->krb5_ctx, ccache);
189
700318f3 190 if (authctxt->krb5_ctx != NULL && problem!=-1)
e9a17296 191 debug("Kerberos password authentication failed: %s",
192 krb5_get_err_text(authctxt->krb5_ctx, problem));
193 else
194 debug("Kerberos password authentication failed: %d",
195 problem);
196
3c0ef626 197 krb5_cleanup_proc(authctxt);
e9a17296 198
3c0ef626 199 if (options.kerberos_or_local_passwd)
200 return (-1);
201 else
202 return (0);
203 }
204 return (1);
205}
206
207void
9cb1827b 208krb5_cleanup_proc(void *context)
3c0ef626 209{
9cb1827b 210 Authctxt *authctxt = (Authctxt *)context;
211
3c0ef626 212 debug("krb5_cleanup_proc called");
213 if (authctxt->krb5_fwd_ccache) {
214 krb5_cc_destroy(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
215 authctxt->krb5_fwd_ccache = NULL;
216 }
217 if (authctxt->krb5_user) {
218 krb5_free_principal(authctxt->krb5_ctx, authctxt->krb5_user);
219 authctxt->krb5_user = NULL;
220 }
3c0ef626 221 if (authctxt->krb5_ctx) {
222 krb5_free_context(authctxt->krb5_ctx);
223 authctxt->krb5_ctx = NULL;
224 }
225}
226
227#endif /* KRB5 */
This page took 0.086525 seconds and 5 git commands to generate.