blob: 512f70b7861221f3018d67c0313ff7848dc58399 [file] [log] [blame]
Damien Miller964fed52001-09-25 12:58:23 +10001/*
2 * Kerberos v5 authentication and ticket-passing routines.
Ben Lindstrom6328ab32002-03-22 02:54:23 +00003 *
Damien Miller964fed52001-09-25 12:58:23 +10004 * $FreeBSD: src/crypto/openssh/auth-krb5.c,v 1.6 2001/02/13 16:58:04 assar Exp $
Damien Miller964fed52001-09-25 12:58:23 +10005 */
Ben Lindstromeacc71b2002-03-22 01:22:27 +00006/*
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 */
Damien Miller964fed52001-09-25 12:58:23 +100029
30#include "includes.h"
Damien Miller25162f22002-09-12 09:47:29 +100031RCSID("$OpenBSD: auth-krb5.c,v 1.9 2002/09/09 06:48:06 itojun Exp $");
Ben Lindstrom05764b92002-03-05 01:53:02 +000032
Damien Miller964fed52001-09-25 12:58:23 +100033#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
43#include <krb5.h>
Damien Millerfd4c9ee2002-04-13 11:04:40 +100044#ifndef HEIMDAL
45#define krb5_get_err_text(context,code) error_message(code)
46#endif /* !HEIMDAL */
Damien Miller964fed52001-09-25 12:58:23 +100047
48extern ServerOptions options;
49
50static int
51krb5_init(void *context)
52{
53 Authctxt *authctxt = (Authctxt *)context;
54 krb5_error_code problem;
55 static int cleanup_registered = 0;
Damien Millerdb95e4e2002-02-13 16:56:44 +110056
Damien Miller964fed52001-09-25 12:58:23 +100057 if (authctxt->krb5_ctx == NULL) {
58 problem = krb5_init_context(&authctxt->krb5_ctx);
59 if (problem)
60 return (problem);
61 krb5_init_ets(authctxt->krb5_ctx);
62 }
63 if (!cleanup_registered) {
64 fatal_add_cleanup(krb5_cleanup_proc, authctxt);
65 cleanup_registered = 1;
66 }
67 return (0);
68}
69
70/*
71 * Try krb5 authentication. server_user is passed for logging purposes
72 * only, in auth is received ticket, in client is returned principal
73 * from the ticket
74 */
Damien Millerdb95e4e2002-02-13 16:56:44 +110075int
Damien Miller25162f22002-09-12 09:47:29 +100076auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client, krb5_data *reply)
Damien Miller964fed52001-09-25 12:58:23 +100077{
78 krb5_error_code problem;
79 krb5_principal server;
Damien Miller964fed52001-09-25 12:58:23 +100080 krb5_ticket *ticket;
Damien Miller61b05cf2001-11-14 00:02:10 +110081 int fd, ret;
82
83 ret = 0;
Damien Miller964fed52001-09-25 12:58:23 +100084 server = NULL;
85 ticket = NULL;
Damien Miller25162f22002-09-12 09:47:29 +100086 reply->length = 0;
Damien Millerdb95e4e2002-02-13 16:56:44 +110087
Damien Miller964fed52001-09-25 12:58:23 +100088 problem = krb5_init(authctxt);
Damien Millerdb95e4e2002-02-13 16:56:44 +110089 if (problem)
Damien Miller964fed52001-09-25 12:58:23 +100090 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110091
Damien Miller964fed52001-09-25 12:58:23 +100092 problem = krb5_auth_con_init(authctxt->krb5_ctx,
93 &authctxt->krb5_auth_ctx);
94 if (problem)
95 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110096
Damien Miller964fed52001-09-25 12:58:23 +100097 fd = packet_get_connection_in();
Damien Millerfd4c9ee2002-04-13 11:04:40 +100098#ifdef HEIMDAL
Damien Miller964fed52001-09-25 12:58:23 +100099 problem = krb5_auth_con_setaddrs_from_fd(authctxt->krb5_ctx,
100 authctxt->krb5_auth_ctx, &fd);
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000101#else
102 problem = krb5_auth_con_genaddrs(authctxt->krb5_ctx,
103 authctxt->krb5_auth_ctx,fd,
104 KRB5_AUTH_CONTEXT_GENERATE_REMOTE_FULL_ADDR |
105 KRB5_AUTH_CONTEXT_GENERATE_LOCAL_FULL_ADDR);
106#endif
Damien Miller964fed52001-09-25 12:58:23 +1000107 if (problem)
108 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100109
Damien Miller964fed52001-09-25 12:58:23 +1000110 problem = krb5_sname_to_principal(authctxt->krb5_ctx, NULL, NULL ,
111 KRB5_NT_SRV_HST, &server);
112 if (problem)
113 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100114
Damien Miller964fed52001-09-25 12:58:23 +1000115 problem = krb5_rd_req(authctxt->krb5_ctx, &authctxt->krb5_auth_ctx,
116 auth, server, NULL, NULL, &ticket);
117 if (problem)
118 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100119
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000120#ifdef HEIMDAL
Damien Miller964fed52001-09-25 12:58:23 +1000121 problem = krb5_copy_principal(authctxt->krb5_ctx, ticket->client,
122 &authctxt->krb5_user);
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000123#else
124 problem = krb5_copy_principal(authctxt->krb5_ctx,
125 ticket->enc_part2->client,
126 &authctxt->krb5_user);
127#endif
Damien Miller964fed52001-09-25 12:58:23 +1000128 if (problem)
129 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100130
Damien Miller964fed52001-09-25 12:58:23 +1000131 /* if client wants mutual auth */
132 problem = krb5_mk_rep(authctxt->krb5_ctx, authctxt->krb5_auth_ctx,
Damien Miller25162f22002-09-12 09:47:29 +1000133 reply);
Damien Miller964fed52001-09-25 12:58:23 +1000134 if (problem)
135 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100136
Damien Miller964fed52001-09-25 12:58:23 +1000137 /* Check .k5login authorization now. */
138 if (!krb5_kuserok(authctxt->krb5_ctx, authctxt->krb5_user,
139 authctxt->pw->pw_name))
140 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100141
Damien Miller964fed52001-09-25 12:58:23 +1000142 if (client)
143 krb5_unparse_name(authctxt->krb5_ctx, authctxt->krb5_user,
144 client);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100145
Damien Miller61b05cf2001-11-14 00:02:10 +1100146 ret = 1;
Damien Miller964fed52001-09-25 12:58:23 +1000147 err:
148 if (server)
149 krb5_free_principal(authctxt->krb5_ctx, server);
150 if (ticket)
151 krb5_free_ticket(authctxt->krb5_ctx, ticket);
Damien Miller25162f22002-09-12 09:47:29 +1000152 if (!ret && reply->length) {
153 xfree(reply->data);
154 memset(reply, 0, sizeof(*reply));
155 }
Damien Millerdb95e4e2002-02-13 16:56:44 +1100156
Ben Lindstromb8550282002-02-26 17:46:11 +0000157 if (problem) {
158 if (authctxt->krb5_ctx != NULL)
159 debug("Kerberos v5 authentication failed: %s",
160 krb5_get_err_text(authctxt->krb5_ctx, problem));
161 else
162 debug("Kerberos v5 authentication failed: %d",
163 problem);
164 }
Damien Miller61b05cf2001-11-14 00:02:10 +1100165
166 return (ret);
Damien Miller964fed52001-09-25 12:58:23 +1000167}
168
169int
170auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt)
171{
172 krb5_error_code problem;
173 krb5_ccache ccache = NULL;
174 char *pname;
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000175 krb5_creds **creds;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100176
Damien Miller964fed52001-09-25 12:58:23 +1000177 if (authctxt->pw == NULL || authctxt->krb5_user == NULL)
178 return (0);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100179
Damien Miller964fed52001-09-25 12:58:23 +1000180 temporarily_use_uid(authctxt->pw);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100181
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000182#ifdef HEIMDAL
Damien Miller964fed52001-09-25 12:58:23 +1000183 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_fcc_ops, &ccache);
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000184#else
185{
186 char ccname[40];
187 int tmpfd;
188
189 snprintf(ccname,sizeof(ccname),"FILE:/tmp/krb5cc_%d_XXXXXX",geteuid());
190
191 if ((tmpfd = mkstemp(ccname+strlen("FILE:")))==-1) {
192 log("mkstemp(): %.100s", strerror(errno));
193 problem = errno;
194 goto fail;
195 }
196 if (fchmod(tmpfd,S_IRUSR | S_IWUSR) == -1) {
197 log("fchmod(): %.100s", strerror(errno));
198 close(tmpfd);
199 problem = errno;
200 goto fail;
201 }
202 close(tmpfd);
203 problem = krb5_cc_resolve(authctxt->krb5_ctx, ccname, &ccache);
204}
205#endif
Damien Miller964fed52001-09-25 12:58:23 +1000206 if (problem)
207 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100208
Damien Miller964fed52001-09-25 12:58:23 +1000209 problem = krb5_cc_initialize(authctxt->krb5_ctx, ccache,
210 authctxt->krb5_user);
211 if (problem)
212 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100213
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000214#ifdef HEIMDAL
Damien Miller964fed52001-09-25 12:58:23 +1000215 problem = krb5_rd_cred2(authctxt->krb5_ctx, authctxt->krb5_auth_ctx,
216 ccache, tgt);
217 if (problem)
218 goto fail;
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000219#else
220 problem = krb5_rd_cred(authctxt->krb5_ctx, authctxt->krb5_auth_ctx,
221 tgt, &creds, NULL);
222 if (problem)
223 goto fail;
224 problem = krb5_cc_store_cred(authctxt->krb5_ctx, ccache, *creds);
225 if (problem)
226 goto fail;
227#endif
Damien Millerdb95e4e2002-02-13 16:56:44 +1100228
Damien Miller964fed52001-09-25 12:58:23 +1000229 authctxt->krb5_fwd_ccache = ccache;
230 ccache = NULL;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100231
Damien Miller964fed52001-09-25 12:58:23 +1000232 authctxt->krb5_ticket_file = (char *)krb5_cc_get_name(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100233
Damien Miller964fed52001-09-25 12:58:23 +1000234 problem = krb5_unparse_name(authctxt->krb5_ctx, authctxt->krb5_user,
235 &pname);
236 if (problem)
237 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100238
Damien Miller964fed52001-09-25 12:58:23 +1000239 debug("Kerberos v5 TGT accepted (%s)", pname);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100240
Damien Miller964fed52001-09-25 12:58:23 +1000241 restore_uid();
Damien Millerdb95e4e2002-02-13 16:56:44 +1100242
Damien Miller964fed52001-09-25 12:58:23 +1000243 return (1);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100244
Damien Miller964fed52001-09-25 12:58:23 +1000245 fail:
246 if (problem)
247 debug("Kerberos v5 TGT passing failed: %s",
248 krb5_get_err_text(authctxt->krb5_ctx, problem));
249 if (ccache)
250 krb5_cc_destroy(authctxt->krb5_ctx, ccache);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100251
Damien Miller964fed52001-09-25 12:58:23 +1000252 restore_uid();
Damien Millerdb95e4e2002-02-13 16:56:44 +1100253
Damien Miller964fed52001-09-25 12:58:23 +1000254 return (0);
255}
256
257int
258auth_krb5_password(Authctxt *authctxt, const char *password)
259{
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000260#ifndef HEIMDAL
261 krb5_creds creds;
262 krb5_principal server;
263 char ccname[40];
264 int tmpfd;
265#endif
Damien Miller964fed52001-09-25 12:58:23 +1000266 krb5_error_code problem;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100267
Damien Miller964fed52001-09-25 12:58:23 +1000268 if (authctxt->pw == NULL)
269 return (0);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100270
Damien Miller964fed52001-09-25 12:58:23 +1000271 temporarily_use_uid(authctxt->pw);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100272
Damien Miller964fed52001-09-25 12:58:23 +1000273 problem = krb5_init(authctxt);
274 if (problem)
275 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100276
Damien Miller964fed52001-09-25 12:58:23 +1000277 problem = krb5_parse_name(authctxt->krb5_ctx, authctxt->pw->pw_name,
278 &authctxt->krb5_user);
279 if (problem)
280 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100281
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000282#ifdef HEIMDAL
Damien Miller964fed52001-09-25 12:58:23 +1000283 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops,
284 &authctxt->krb5_fwd_ccache);
285 if (problem)
286 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100287
Damien Miller964fed52001-09-25 12:58:23 +1000288 problem = krb5_cc_initialize(authctxt->krb5_ctx,
289 authctxt->krb5_fwd_ccache, authctxt->krb5_user);
290 if (problem)
291 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100292
293 restore_uid();
Damien Miller964fed52001-09-25 12:58:23 +1000294 problem = krb5_verify_user(authctxt->krb5_ctx, authctxt->krb5_user,
295 authctxt->krb5_fwd_ccache, password, 1, NULL);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100296 temporarily_use_uid(authctxt->pw);
297
Damien Miller964fed52001-09-25 12:58:23 +1000298 if (problem)
299 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100300
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000301#else
302 problem = krb5_get_init_creds_password(authctxt->krb5_ctx, &creds,
303 authctxt->krb5_user, (char *)password, NULL, NULL, 0, NULL, NULL);
304 if (problem)
305 goto out;
306
307 problem = krb5_sname_to_principal(authctxt->krb5_ctx, NULL, NULL,
308 KRB5_NT_SRV_HST, &server);
309 if (problem)
310 goto out;
311
312 restore_uid();
313 problem = krb5_verify_init_creds(authctxt->krb5_ctx, &creds, server,
314 NULL, NULL, NULL);
315 krb5_free_principal(authctxt->krb5_ctx, server);
316 temporarily_use_uid(authctxt->pw);
317 if (problem)
318 goto out;
319
320 if (!krb5_kuserok(authctxt->krb5_ctx, authctxt->krb5_user,
321 authctxt->pw->pw_name)) {
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000322 problem = -1;
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000323 goto out;
324 }
325
326 snprintf(ccname,sizeof(ccname),"FILE:/tmp/krb5cc_%d_XXXXXX",geteuid());
327
328 if ((tmpfd = mkstemp(ccname+strlen("FILE:")))==-1) {
329 log("mkstemp(): %.100s", strerror(errno));
330 problem = errno;
331 goto out;
332 }
333
334 if (fchmod(tmpfd,S_IRUSR | S_IWUSR) == -1) {
335 log("fchmod(): %.100s", strerror(errno));
336 close(tmpfd);
337 problem = errno;
338 goto out;
339 }
340 close(tmpfd);
341
342 problem = krb5_cc_resolve(authctxt->krb5_ctx, ccname, &authctxt->krb5_fwd_ccache);
343 if (problem)
344 goto out;
345
346 problem = krb5_cc_initialize(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache,
347 authctxt->krb5_user);
348 if (problem)
349 goto out;
350
351 problem= krb5_cc_store_cred(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache,
352 &creds);
353 if (problem)
354 goto out;
355#endif
356
Damien Miller964fed52001-09-25 12:58:23 +1000357 authctxt->krb5_ticket_file = (char *)krb5_cc_get_name(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100358
Damien Miller964fed52001-09-25 12:58:23 +1000359 out:
360 restore_uid();
Damien Millerdb95e4e2002-02-13 16:56:44 +1100361
Damien Miller964fed52001-09-25 12:58:23 +1000362 if (problem) {
Damien Millerfd4c9ee2002-04-13 11:04:40 +1000363 if (authctxt->krb5_ctx != NULL && problem!=-1)
Ben Lindstromb8550282002-02-26 17:46:11 +0000364 debug("Kerberos password authentication failed: %s",
365 krb5_get_err_text(authctxt->krb5_ctx, problem));
366 else
367 debug("Kerberos password authentication failed: %d",
368 problem);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100369
Damien Miller964fed52001-09-25 12:58:23 +1000370 krb5_cleanup_proc(authctxt);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100371
Damien Miller964fed52001-09-25 12:58:23 +1000372 if (options.kerberos_or_local_passwd)
373 return (-1);
374 else
375 return (0);
376 }
377 return (1);
378}
379
380void
381krb5_cleanup_proc(void *context)
382{
383 Authctxt *authctxt = (Authctxt *)context;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100384
Damien Miller964fed52001-09-25 12:58:23 +1000385 debug("krb5_cleanup_proc called");
386 if (authctxt->krb5_fwd_ccache) {
387 krb5_cc_destroy(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
388 authctxt->krb5_fwd_ccache = NULL;
389 }
390 if (authctxt->krb5_user) {
391 krb5_free_principal(authctxt->krb5_ctx, authctxt->krb5_user);
392 authctxt->krb5_user = NULL;
393 }
394 if (authctxt->krb5_auth_ctx) {
395 krb5_auth_con_free(authctxt->krb5_ctx,
396 authctxt->krb5_auth_ctx);
397 authctxt->krb5_auth_ctx = NULL;
398 }
399 if (authctxt->krb5_ctx) {
400 krb5_free_context(authctxt->krb5_ctx);
401 authctxt->krb5_ctx = NULL;
402 }
403}
404
405#endif /* KRB5 */