blob: 7373beb6defdd82d450a0edda0a860977fd8cc9c [file] [log] [blame]
Damien Millera8e06ce2003-11-21 23:48:55 +11001/* $OpenBSD: gss-serv-krb5.c,v 1.2 2003/11/21 11:57:03 djm Exp $ */
Darren Tucker0efd1552003-08-26 11:49:55 +10002
3/*
4 * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "includes.h"
28
29#ifdef GSSAPI
30#ifdef KRB5
31
32#include "auth.h"
33#include "xmalloc.h"
34#include "log.h"
35#include "servconf.h"
36
37#include "ssh-gss.h"
38
39extern ServerOptions options;
40
Darren Tucker49aaf4a2003-08-26 11:58:16 +100041#ifdef HEIMDAL
Darren Tucker0efd1552003-08-26 11:49:55 +100042#include <krb5.h>
Darren Tucker49aaf4a2003-08-26 11:58:16 +100043#else
44#include <gssapi_krb5.h>
45#endif
Darren Tucker0efd1552003-08-26 11:49:55 +100046
47static krb5_context krb_context = NULL;
48
49/* Initialise the krb5 library, for the stuff that GSSAPI won't do */
50
Damien Millera8e06ce2003-11-21 23:48:55 +110051static int
Darren Tucker0efd1552003-08-26 11:49:55 +100052ssh_gssapi_krb5_init()
53{
54 krb5_error_code problem;
55
56 if (krb_context != NULL)
57 return 1;
58
59 problem = krb5_init_context(&krb_context);
60 if (problem) {
61 logit("Cannot initialize krb5 context");
62 return 0;
63 }
64 krb5_init_ets(krb_context);
65
66 return 1;
67}
68
69/* Check if this user is OK to login. This only works with krb5 - other
70 * GSSAPI mechanisms will need their own.
71 * Returns true if the user is OK to log in, otherwise returns 0
72 */
73
74static int
75ssh_gssapi_krb5_userok(ssh_gssapi_client *client, char *name)
76{
77 krb5_principal princ;
78 int retval;
79
80 if (ssh_gssapi_krb5_init() == 0)
81 return 0;
82
83 if ((retval = krb5_parse_name(krb_context, client->exportedname.value,
84 &princ))) {
85 logit("krb5_parse_name(): %.100s",
86 krb5_get_err_text(krb_context, retval));
87 return 0;
88 }
89 if (krb5_kuserok(krb_context, princ, name)) {
90 retval = 1;
91 logit("Authorized to %s, krb5 principal %s (krb5_kuserok)",
92 name, (char *)client->displayname.value);
93 } else
94 retval = 0;
95
96 krb5_free_principal(krb_context, princ);
97 return retval;
98}
99
100
101/* This writes out any forwarded credentials from the structure populated
102 * during userauth. Called after we have setuid to the user */
103
104static void
105ssh_gssapi_krb5_storecreds(ssh_gssapi_client *client)
106{
107 krb5_ccache ccache;
108 krb5_error_code problem;
109 krb5_principal princ;
110 OM_uint32 maj_status, min_status;
Damien Miller34255b92004-02-17 20:33:52 +1100111 int len;
Darren Tucker0efd1552003-08-26 11:49:55 +1000112
113 if (client->creds == NULL) {
114 debug("No credentials stored");
115 return;
116 }
117
118 if (ssh_gssapi_krb5_init() == 0)
119 return;
120
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000121#ifdef HEIMDAL
Darren Tucker0efd1552003-08-26 11:49:55 +1000122 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) {
123 logit("krb5_cc_gen_new(): %.100s",
124 krb5_get_err_text(krb_context, problem));
125 return;
126 }
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000127#else
128 {
129 int tmpfd;
130 char ccname[40];
Damien Millera8e06ce2003-11-21 23:48:55 +1100131
132 snprintf(ccname, sizeof(ccname),
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000133 "FILE:/tmp/krb5cc_%d_XXXXXX", geteuid());
Damien Millera8e06ce2003-11-21 23:48:55 +1100134
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000135 if ((tmpfd = mkstemp(ccname + strlen("FILE:"))) == -1) {
136 logit("mkstemp(): %.100s", strerror(errno));
137 problem = errno;
138 return;
139 }
140 if (fchmod(tmpfd, S_IRUSR | S_IWUSR) == -1) {
141 logit("fchmod(): %.100s", strerror(errno));
142 close(tmpfd);
143 problem = errno;
144 return;
145 }
146 close(tmpfd);
147 if ((problem = krb5_cc_resolve(krb_context, ccname, &ccache))) {
148 logit("krb5_cc_resolve(): %.100s",
149 krb5_get_err_text(krb_context, problem));
150 return;
151 }
152 }
153#endif /* #ifdef HEIMDAL */
Darren Tucker0efd1552003-08-26 11:49:55 +1000154
Damien Millera8e06ce2003-11-21 23:48:55 +1100155 if ((problem = krb5_parse_name(krb_context,
Darren Tucker0efd1552003-08-26 11:49:55 +1000156 client->exportedname.value, &princ))) {
157 logit("krb5_parse_name(): %.100s",
158 krb5_get_err_text(krb_context, problem));
159 krb5_cc_destroy(krb_context, ccache);
160 return;
161 }
162
163 if ((problem = krb5_cc_initialize(krb_context, ccache, princ))) {
164 logit("krb5_cc_initialize(): %.100s",
165 krb5_get_err_text(krb_context, problem));
166 krb5_free_principal(krb_context, princ);
167 krb5_cc_destroy(krb_context, ccache);
168 return;
169 }
170
171 krb5_free_principal(krb_context, princ);
172
Damien Millera8e06ce2003-11-21 23:48:55 +1100173 if ((maj_status = gss_krb5_copy_ccache(&min_status,
Darren Tucker0efd1552003-08-26 11:49:55 +1000174 client->creds, ccache))) {
175 logit("gss_krb5_copy_ccache() failed");
176 krb5_cc_destroy(krb_context, ccache);
177 return;
178 }
179
180 client->store.filename = xstrdup(krb5_cc_get_name(krb_context, ccache));
181 client->store.envvar = "KRB5CCNAME";
Damien Miller34255b92004-02-17 20:33:52 +1100182 len = strlen(client->store.filename) + 6;
183 client->store.envval = xmalloc(len);
184 snprintf(client->store.envval, len, "FILE:%s", client->store.filename);
Darren Tucker0efd1552003-08-26 11:49:55 +1000185
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000186#ifdef USE_PAM
187 if (options.use_pam)
Damien Miller34255b92004-02-17 20:33:52 +1100188 do_pam_putenv(client->store.envvar, client->store.envval);
Darren Tucker49aaf4a2003-08-26 11:58:16 +1000189#endif
190
Darren Tucker0efd1552003-08-26 11:49:55 +1000191 krb5_cc_close(krb_context, ccache);
192
193 return;
194}
195
196ssh_gssapi_mech gssapi_kerberos_mech = {
197 "toWM5Slw5Ew8Mqkay+al2g==",
198 "Kerberos",
199 {9, "\x2A\x86\x48\x86\xF7\x12\x01\x02\x02"},
200 NULL,
201 &ssh_gssapi_krb5_userok,
202 NULL,
203 &ssh_gssapi_krb5_storecreds
204};
205
206#endif /* KRB5 */
207
208#endif /* GSSAPI */