blob: aaf146e76f51ffdb0984439d46f40eb678d17fa3 [file] [log] [blame]
Damien Miller964fed52001-09-25 12:58:23 +10001/*
2 * Kerberos v5 authentication and ticket-passing routines.
3 *
4 * $FreeBSD: src/crypto/openssh/auth-krb5.c,v 1.6 2001/02/13 16:58:04 assar Exp $
Ben Lindstromb8550282002-02-26 17:46:11 +00005 * $OpenBSD: auth-krb5.c,v 1.5 2002/02/15 23:54:10 markus Exp $
Damien Miller964fed52001-09-25 12:58:23 +10006 */
7
8#include "includes.h"
9#include "ssh.h"
10#include "ssh1.h"
11#include "packet.h"
12#include "xmalloc.h"
13#include "log.h"
14#include "servconf.h"
15#include "uidswap.h"
16#include "auth.h"
17
18#ifdef KRB5
19#include <krb5.h>
20
21extern ServerOptions options;
22
23static int
24krb5_init(void *context)
25{
26 Authctxt *authctxt = (Authctxt *)context;
27 krb5_error_code problem;
28 static int cleanup_registered = 0;
Damien Millerdb95e4e2002-02-13 16:56:44 +110029
Damien Miller964fed52001-09-25 12:58:23 +100030 if (authctxt->krb5_ctx == NULL) {
31 problem = krb5_init_context(&authctxt->krb5_ctx);
32 if (problem)
33 return (problem);
34 krb5_init_ets(authctxt->krb5_ctx);
35 }
36 if (!cleanup_registered) {
37 fatal_add_cleanup(krb5_cleanup_proc, authctxt);
38 cleanup_registered = 1;
39 }
40 return (0);
41}
42
43/*
44 * Try krb5 authentication. server_user is passed for logging purposes
45 * only, in auth is received ticket, in client is returned principal
46 * from the ticket
47 */
Damien Millerdb95e4e2002-02-13 16:56:44 +110048int
Damien Miller964fed52001-09-25 12:58:23 +100049auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client)
50{
51 krb5_error_code problem;
52 krb5_principal server;
53 krb5_data reply;
54 krb5_ticket *ticket;
Damien Miller61b05cf2001-11-14 00:02:10 +110055 int fd, ret;
56
57 ret = 0;
Damien Miller964fed52001-09-25 12:58:23 +100058 server = NULL;
59 ticket = NULL;
60 reply.length = 0;
Damien Millerdb95e4e2002-02-13 16:56:44 +110061
Damien Miller964fed52001-09-25 12:58:23 +100062 problem = krb5_init(authctxt);
Damien Millerdb95e4e2002-02-13 16:56:44 +110063 if (problem)
Damien Miller964fed52001-09-25 12:58:23 +100064 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110065
Damien Miller964fed52001-09-25 12:58:23 +100066 problem = krb5_auth_con_init(authctxt->krb5_ctx,
67 &authctxt->krb5_auth_ctx);
68 if (problem)
69 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110070
Damien Miller964fed52001-09-25 12:58:23 +100071 fd = packet_get_connection_in();
72 problem = krb5_auth_con_setaddrs_from_fd(authctxt->krb5_ctx,
73 authctxt->krb5_auth_ctx, &fd);
74 if (problem)
75 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110076
Damien Miller964fed52001-09-25 12:58:23 +100077 problem = krb5_sname_to_principal(authctxt->krb5_ctx, NULL, NULL ,
78 KRB5_NT_SRV_HST, &server);
79 if (problem)
80 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110081
Damien Miller964fed52001-09-25 12:58:23 +100082 problem = krb5_rd_req(authctxt->krb5_ctx, &authctxt->krb5_auth_ctx,
83 auth, server, NULL, NULL, &ticket);
84 if (problem)
85 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110086
Damien Miller964fed52001-09-25 12:58:23 +100087 problem = krb5_copy_principal(authctxt->krb5_ctx, ticket->client,
88 &authctxt->krb5_user);
89 if (problem)
90 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110091
Damien Miller964fed52001-09-25 12:58:23 +100092 /* if client wants mutual auth */
93 problem = krb5_mk_rep(authctxt->krb5_ctx, authctxt->krb5_auth_ctx,
94 &reply);
95 if (problem)
96 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +110097
Damien Miller964fed52001-09-25 12:58:23 +100098 /* Check .k5login authorization now. */
99 if (!krb5_kuserok(authctxt->krb5_ctx, authctxt->krb5_user,
100 authctxt->pw->pw_name))
101 goto err;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100102
Damien Miller964fed52001-09-25 12:58:23 +1000103 if (client)
104 krb5_unparse_name(authctxt->krb5_ctx, authctxt->krb5_user,
105 client);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100106
Damien Miller964fed52001-09-25 12:58:23 +1000107 packet_start(SSH_SMSG_AUTH_KERBEROS_RESPONSE);
108 packet_put_string((char *) reply.data, reply.length);
109 packet_send();
110 packet_write_wait();
Damien Miller61b05cf2001-11-14 00:02:10 +1100111
112 ret = 1;
Damien Miller964fed52001-09-25 12:58:23 +1000113 err:
114 if (server)
115 krb5_free_principal(authctxt->krb5_ctx, server);
116 if (ticket)
117 krb5_free_ticket(authctxt->krb5_ctx, ticket);
118 if (reply.length)
119 xfree(reply.data);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100120
Ben Lindstromb8550282002-02-26 17:46:11 +0000121 if (problem) {
122 if (authctxt->krb5_ctx != NULL)
123 debug("Kerberos v5 authentication failed: %s",
124 krb5_get_err_text(authctxt->krb5_ctx, problem));
125 else
126 debug("Kerberos v5 authentication failed: %d",
127 problem);
128 }
Damien Miller61b05cf2001-11-14 00:02:10 +1100129
130 return (ret);
Damien Miller964fed52001-09-25 12:58:23 +1000131}
132
133int
134auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt)
135{
136 krb5_error_code problem;
137 krb5_ccache ccache = NULL;
138 char *pname;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100139
Damien Miller964fed52001-09-25 12:58:23 +1000140 if (authctxt->pw == NULL || authctxt->krb5_user == NULL)
141 return (0);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100142
Damien Miller964fed52001-09-25 12:58:23 +1000143 temporarily_use_uid(authctxt->pw);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100144
Damien Miller964fed52001-09-25 12:58:23 +1000145 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_fcc_ops, &ccache);
146 if (problem)
147 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100148
Damien Miller964fed52001-09-25 12:58:23 +1000149 problem = krb5_cc_initialize(authctxt->krb5_ctx, ccache,
150 authctxt->krb5_user);
151 if (problem)
152 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100153
Damien Miller964fed52001-09-25 12:58:23 +1000154 problem = krb5_rd_cred2(authctxt->krb5_ctx, authctxt->krb5_auth_ctx,
155 ccache, tgt);
156 if (problem)
157 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100158
Damien Miller964fed52001-09-25 12:58:23 +1000159 authctxt->krb5_fwd_ccache = ccache;
160 ccache = NULL;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100161
Damien Miller964fed52001-09-25 12:58:23 +1000162 authctxt->krb5_ticket_file = (char *)krb5_cc_get_name(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100163
Damien Miller964fed52001-09-25 12:58:23 +1000164 problem = krb5_unparse_name(authctxt->krb5_ctx, authctxt->krb5_user,
165 &pname);
166 if (problem)
167 goto fail;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100168
Damien Miller964fed52001-09-25 12:58:23 +1000169 debug("Kerberos v5 TGT accepted (%s)", pname);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100170
Damien Miller964fed52001-09-25 12:58:23 +1000171 restore_uid();
Damien Millerdb95e4e2002-02-13 16:56:44 +1100172
Damien Miller964fed52001-09-25 12:58:23 +1000173 return (1);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100174
Damien Miller964fed52001-09-25 12:58:23 +1000175 fail:
176 if (problem)
177 debug("Kerberos v5 TGT passing failed: %s",
178 krb5_get_err_text(authctxt->krb5_ctx, problem));
179 if (ccache)
180 krb5_cc_destroy(authctxt->krb5_ctx, ccache);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100181
Damien Miller964fed52001-09-25 12:58:23 +1000182 restore_uid();
Damien Millerdb95e4e2002-02-13 16:56:44 +1100183
Damien Miller964fed52001-09-25 12:58:23 +1000184 return (0);
185}
186
187int
188auth_krb5_password(Authctxt *authctxt, const char *password)
189{
190 krb5_error_code problem;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100191
Damien Miller964fed52001-09-25 12:58:23 +1000192 if (authctxt->pw == NULL)
193 return (0);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100194
Damien Miller964fed52001-09-25 12:58:23 +1000195 temporarily_use_uid(authctxt->pw);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100196
Damien Miller964fed52001-09-25 12:58:23 +1000197 problem = krb5_init(authctxt);
198 if (problem)
199 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100200
Damien Miller964fed52001-09-25 12:58:23 +1000201 problem = krb5_parse_name(authctxt->krb5_ctx, authctxt->pw->pw_name,
202 &authctxt->krb5_user);
203 if (problem)
204 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100205
Damien Miller964fed52001-09-25 12:58:23 +1000206 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops,
207 &authctxt->krb5_fwd_ccache);
208 if (problem)
209 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100210
Damien Miller964fed52001-09-25 12:58:23 +1000211 problem = krb5_cc_initialize(authctxt->krb5_ctx,
212 authctxt->krb5_fwd_ccache, authctxt->krb5_user);
213 if (problem)
214 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100215
216 restore_uid();
Damien Miller964fed52001-09-25 12:58:23 +1000217 problem = krb5_verify_user(authctxt->krb5_ctx, authctxt->krb5_user,
218 authctxt->krb5_fwd_ccache, password, 1, NULL);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100219 temporarily_use_uid(authctxt->pw);
220
Damien Miller964fed52001-09-25 12:58:23 +1000221 if (problem)
222 goto out;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100223
Damien Miller964fed52001-09-25 12:58:23 +1000224 authctxt->krb5_ticket_file = (char *)krb5_cc_get_name(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100225
Damien Miller964fed52001-09-25 12:58:23 +1000226 out:
227 restore_uid();
Damien Millerdb95e4e2002-02-13 16:56:44 +1100228
Damien Miller964fed52001-09-25 12:58:23 +1000229 if (problem) {
Ben Lindstromb8550282002-02-26 17:46:11 +0000230 if (authctxt->krb5_ctx != NULL)
231 debug("Kerberos password authentication failed: %s",
232 krb5_get_err_text(authctxt->krb5_ctx, problem));
233 else
234 debug("Kerberos password authentication failed: %d",
235 problem);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100236
Damien Miller964fed52001-09-25 12:58:23 +1000237 krb5_cleanup_proc(authctxt);
Damien Millerdb95e4e2002-02-13 16:56:44 +1100238
Damien Miller964fed52001-09-25 12:58:23 +1000239 if (options.kerberos_or_local_passwd)
240 return (-1);
241 else
242 return (0);
243 }
244 return (1);
245}
246
247void
248krb5_cleanup_proc(void *context)
249{
250 Authctxt *authctxt = (Authctxt *)context;
Damien Millerdb95e4e2002-02-13 16:56:44 +1100251
Damien Miller964fed52001-09-25 12:58:23 +1000252 debug("krb5_cleanup_proc called");
253 if (authctxt->krb5_fwd_ccache) {
254 krb5_cc_destroy(authctxt->krb5_ctx, authctxt->krb5_fwd_ccache);
255 authctxt->krb5_fwd_ccache = NULL;
256 }
257 if (authctxt->krb5_user) {
258 krb5_free_principal(authctxt->krb5_ctx, authctxt->krb5_user);
259 authctxt->krb5_user = NULL;
260 }
261 if (authctxt->krb5_auth_ctx) {
262 krb5_auth_con_free(authctxt->krb5_ctx,
263 authctxt->krb5_auth_ctx);
264 authctxt->krb5_auth_ctx = NULL;
265 }
266 if (authctxt->krb5_ctx) {
267 krb5_free_context(authctxt->krb5_ctx);
268 authctxt->krb5_ctx = NULL;
269 }
270}
271
272#endif /* KRB5 */