k5login.c revision 1.11 1 1.11 aidan /* $NetBSD: k5login.c,v 1.11 2000/02/14 03:17:43 aidan Exp $ */
2 1.2 jtc
3 1.1 brezak /*-
4 1.1 brezak * Copyright (c) 1990 The Regents of the University of California.
5 1.1 brezak * All rights reserved.
6 1.1 brezak *
7 1.1 brezak * Redistribution and use in source and binary forms, with or without
8 1.1 brezak * modification, are permitted provided that the following conditions
9 1.1 brezak * are met:
10 1.1 brezak * 1. Redistributions of source code must retain the above copyright
11 1.1 brezak * notice, this list of conditions and the following disclaimer.
12 1.1 brezak * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 brezak * notice, this list of conditions and the following disclaimer in the
14 1.1 brezak * documentation and/or other materials provided with the distribution.
15 1.1 brezak * 3. All advertising materials mentioning features or use of this software
16 1.1 brezak * must display the following acknowledgement:
17 1.1 brezak * This product includes software developed by the University of
18 1.1 brezak * California, Berkeley and its contributors.
19 1.1 brezak * 4. Neither the name of the University nor the names of its contributors
20 1.1 brezak * may be used to endorse or promote products derived from this software
21 1.1 brezak * without specific prior written permission.
22 1.1 brezak *
23 1.1 brezak * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 brezak * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 brezak * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 brezak * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 brezak * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 brezak * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 brezak * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 brezak * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 brezak * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 brezak * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 brezak * SUCH DAMAGE.
34 1.1 brezak */
35 1.1 brezak
36 1.4 lukem #include <sys/cdefs.h>
37 1.1 brezak #ifndef lint
38 1.2 jtc #if 0
39 1.2 jtc static char sccsid[] = "@(#)klogin.c 5.11 (Berkeley) 7/12/92";
40 1.2 jtc #endif
41 1.11 aidan __RCSID("$NetBSD: k5login.c,v 1.11 2000/02/14 03:17:43 aidan Exp $");
42 1.1 brezak #endif /* not lint */
43 1.1 brezak
44 1.1 brezak #ifdef KERBEROS5
45 1.1 brezak #include <sys/param.h>
46 1.1 brezak #include <sys/syslog.h>
47 1.8 christos #include <krb5/krb5.h>
48 1.11 aidan #include <com_err.h>
49 1.1 brezak #include <pwd.h>
50 1.1 brezak #include <netdb.h>
51 1.1 brezak #include <stdio.h>
52 1.7 aidan #include <stdlib.h>
53 1.1 brezak #include <string.h>
54 1.1 brezak #include <unistd.h>
55 1.1 brezak
56 1.1 brezak #define KRB5_DEFAULT_OPTIONS 0
57 1.1 brezak #define KRB5_DEFAULT_LIFE 60*60*10 /* 10 hours */
58 1.1 brezak
59 1.5 mycroft krb5_context kcontext;
60 1.1 brezak
61 1.9 aidan int notickets;
62 1.9 aidan char *krbtkfile_env;
63 1.1 brezak extern char *tty;
64 1.1 brezak
65 1.1 brezak static char tkt_location[MAXPATHLEN];
66 1.7 aidan static krb5_creds forw_creds;
67 1.7 aidan int have_forward;
68 1.7 aidan static krb5_principal me, server;
69 1.9 aidan int use_krb5;
70 1.7 aidan
71 1.8 christos int k5_read_creds __P((char *));
72 1.8 christos int k5_write_creds __P((void));
73 1.8 christos int klogin __P((struct passwd *, char *, char *, char *));
74 1.8 christos void kdestroy __P((void));
75 1.8 christos
76 1.11 aidan #ifndef krb5_realm_length
77 1.11 aidan #define krb5_realm_length(r) ((r).length)
78 1.11 aidan #endif
79 1.11 aidan #ifndef krb5_realm_data
80 1.11 aidan #define krb5_realm_data(r) ((r).data)
81 1.11 aidan #endif
82 1.11 aidan
83 1.7 aidan /*
84 1.7 aidan * Attempt to read forwarded kerberos creds
85 1.7 aidan *
86 1.7 aidan * return 0 on success (forwarded creds in memory)
87 1.7 aidan * 1 if no forwarded creds.
88 1.7 aidan */
89 1.7 aidan int
90 1.7 aidan k5_read_creds(username)
91 1.7 aidan char *username;
92 1.7 aidan {
93 1.7 aidan krb5_error_code code;
94 1.7 aidan krb5_creds mcreds;
95 1.7 aidan krb5_ccache ccache;
96 1.7 aidan
97 1.9 aidan if (! use_krb5)
98 1.9 aidan return(1);
99 1.9 aidan
100 1.7 aidan have_forward = 0;
101 1.7 aidan memset((char*) &mcreds, 0, sizeof(forw_creds));
102 1.7 aidan memset((char*) &forw_creds, 0, sizeof(forw_creds));
103 1.7 aidan
104 1.7 aidan code = krb5_cc_default(kcontext, &ccache);
105 1.7 aidan if (code) {
106 1.7 aidan com_err("login", code, "while getting default ccache");
107 1.7 aidan return(1);
108 1.7 aidan }
109 1.7 aidan
110 1.7 aidan code = krb5_parse_name(kcontext, username, &me);
111 1.7 aidan if (code) {
112 1.7 aidan com_err("login", code, "when parsing name %s", username);
113 1.7 aidan return(1);
114 1.7 aidan }
115 1.7 aidan
116 1.7 aidan mcreds.client = me;
117 1.7 aidan code = krb5_build_principal_ext(kcontext, &mcreds.server,
118 1.11 aidan krb5_realm_length(*krb5_princ_realm(kcontext, me)),
119 1.11 aidan krb5_realm_data(*krb5_princ_realm(kcontext, me)),
120 1.11 aidan KRB5_TGS_NAME_SIZE,
121 1.11 aidan KRB5_TGS_NAME,
122 1.11 aidan krb5_realm_length(*krb5_princ_realm(kcontext, me)),
123 1.11 aidan krb5_realm_data(*krb5_princ_realm(kcontext, me)),
124 1.7 aidan 0);
125 1.7 aidan if (code) {
126 1.7 aidan com_err("login", code, "while building server name");
127 1.7 aidan goto nuke_ccache;
128 1.7 aidan }
129 1.7 aidan
130 1.7 aidan code = krb5_cc_retrieve_cred(kcontext, ccache, 0,
131 1.7 aidan &mcreds, &forw_creds);
132 1.7 aidan if (code) {
133 1.7 aidan com_err("login", code, "while retrieving V5 initial ticket for copy");
134 1.7 aidan goto nuke_ccache;
135 1.7 aidan }
136 1.7 aidan have_forward = 1;
137 1.7 aidan
138 1.7 aidan strcpy(tkt_location, getenv("KRB5CCNAME"));
139 1.7 aidan krbtkfile_env = tkt_location;
140 1.7 aidan notickets = 0;
141 1.7 aidan
142 1.7 aidan nuke_ccache:
143 1.7 aidan krb5_cc_destroy(kcontext, ccache);
144 1.7 aidan return(!have_forward);
145 1.7 aidan }
146 1.7 aidan
147 1.7 aidan int
148 1.7 aidan k5_write_creds()
149 1.7 aidan {
150 1.7 aidan krb5_error_code code;
151 1.7 aidan krb5_ccache ccache;
152 1.7 aidan
153 1.9 aidan if (! use_krb5)
154 1.9 aidan return(1);
155 1.7 aidan if (!have_forward)
156 1.7 aidan return(1);
157 1.7 aidan code = krb5_cc_default(kcontext, &ccache);
158 1.7 aidan if (code) {
159 1.7 aidan com_err("login", code, "while getting default ccache");
160 1.7 aidan return(1);
161 1.7 aidan }
162 1.7 aidan
163 1.7 aidan code = krb5_cc_initialize(kcontext, ccache, me);
164 1.7 aidan if (code) {
165 1.7 aidan com_err("login", code, "while re-initializing V5 ccache as user");
166 1.7 aidan goto nuke_ccache_contents;
167 1.7 aidan }
168 1.7 aidan
169 1.7 aidan code = krb5_cc_store_cred(kcontext, ccache, &forw_creds);
170 1.7 aidan if (code) {
171 1.7 aidan com_err("login", code, "while re-storing V5 ccache as user");
172 1.7 aidan goto nuke_ccache_contents;
173 1.7 aidan }
174 1.7 aidan
175 1.7 aidan nuke_ccache_contents:
176 1.7 aidan krb5_free_cred_contents(kcontext, &forw_creds);
177 1.7 aidan return(code != 0);
178 1.7 aidan }
179 1.1 brezak
180 1.1 brezak /*
181 1.1 brezak * Attempt to log the user in using Kerberos authentication
182 1.1 brezak *
183 1.1 brezak * return 0 on success (will be logged in)
184 1.1 brezak * 1 if Kerberos failed (try local password in login)
185 1.1 brezak */
186 1.1 brezak int
187 1.1 brezak klogin(pw, instance, localhost, password)
188 1.1 brezak struct passwd *pw;
189 1.1 brezak char *instance, *localhost, *password;
190 1.1 brezak {
191 1.1 brezak krb5_error_code kerror;
192 1.1 brezak krb5_creds my_creds;
193 1.1 brezak krb5_timestamp now;
194 1.1 brezak krb5_ccache ccache = NULL;
195 1.1 brezak long lifetime = KRB5_DEFAULT_LIFE;
196 1.1 brezak int options = KRB5_DEFAULT_OPTIONS;
197 1.1 brezak char *realm, *client_name;
198 1.1 brezak char *principal;
199 1.1 brezak
200 1.1 brezak /*
201 1.1 brezak * Root logins don't use Kerberos.
202 1.1 brezak * If we have a realm, try getting a ticket-granting ticket
203 1.1 brezak * and using it to authenticate. Otherwise, return
204 1.1 brezak * failure so that we can try the normal passwd file
205 1.1 brezak * for a password. If that's ok, log the user in
206 1.1 brezak * without issuing any tickets.
207 1.1 brezak */
208 1.9 aidan if (! use_krb5 ||
209 1.9 aidan strcmp(pw->pw_name, "root") == 0 ||
210 1.5 mycroft krb5_get_default_realm(kcontext, &realm))
211 1.1 brezak return (1);
212 1.1 brezak
213 1.1 brezak /*
214 1.1 brezak * get TGT for local realm
215 1.1 brezak * tickets are stored in a file named TKT_ROOT plus uid
216 1.1 brezak * except for user.root tickets.
217 1.1 brezak */
218 1.1 brezak
219 1.1 brezak if (strcmp(instance, "root") != 0)
220 1.3 mrg (void)snprintf(tkt_location, sizeof tkt_location,
221 1.3 mrg "FILE:/tmp/krb5cc_%d.%s", pw->pw_uid, tty);
222 1.1 brezak else
223 1.3 mrg (void)snprintf(tkt_location, sizeof tkt_location,
224 1.3 mrg "FILE:/tmp/krb5cc_root_%d.%s", pw->pw_uid, tty);
225 1.1 brezak krbtkfile_env = tkt_location;
226 1.1 brezak
227 1.5 mycroft principal = (char *)malloc(strlen(pw->pw_name)+strlen(instance)+2);
228 1.3 mrg strcpy(principal, pw->pw_name); /* XXX strcpy is safe */
229 1.1 brezak if (strlen(instance)) {
230 1.3 mrg strcat(principal, "/"); /* XXX strcat is safe */
231 1.3 mrg strcat(principal, instance); /* XXX strcat is safe */
232 1.1 brezak }
233 1.1 brezak
234 1.8 christos if ((kerror = krb5_cc_resolve(kcontext, tkt_location, &ccache)) != 0) {
235 1.1 brezak syslog(LOG_NOTICE, "warning: %s while getting default ccache",
236 1.1 brezak error_message(kerror));
237 1.1 brezak return(1);
238 1.1 brezak }
239 1.1 brezak
240 1.8 christos if ((kerror = krb5_parse_name(kcontext, principal, &me)) != 0) {
241 1.1 brezak syslog(LOG_NOTICE, "warning: %s when parsing name %s",
242 1.1 brezak error_message(kerror), principal);
243 1.1 brezak return(1);
244 1.1 brezak }
245 1.1 brezak
246 1.8 christos if ((kerror = krb5_unparse_name(kcontext, me, &client_name)) != 0) {
247 1.1 brezak syslog(LOG_NOTICE, "warning: %s when unparsing name %s",
248 1.1 brezak error_message(kerror), principal);
249 1.1 brezak return(1);
250 1.1 brezak }
251 1.1 brezak
252 1.5 mycroft kerror = krb5_cc_initialize(kcontext, ccache, me);
253 1.1 brezak if (kerror != 0) {
254 1.1 brezak syslog(LOG_NOTICE, "%s when initializing cache %s",
255 1.1 brezak error_message(kerror), tkt_location);
256 1.1 brezak return(1);
257 1.1 brezak }
258 1.1 brezak
259 1.1 brezak memset((char *)&my_creds, 0, sizeof(my_creds));
260 1.1 brezak
261 1.1 brezak my_creds.client = me;
262 1.1 brezak
263 1.8 christos if ((kerror = krb5_build_principal_ext(kcontext,
264 1.5 mycroft &server,
265 1.11 aidan krb5_realm_length(*krb5_princ_realm(kcontext, me)),
266 1.11 aidan krb5_realm_data(*krb5_princ_realm(kcontext, me)),
267 1.11 aidan KRB5_TGS_NAME_SIZE,
268 1.11 aidan KRB5_TGS_NAME,
269 1.11 aidan krb5_realm_length(*krb5_princ_realm(kcontext, me)),
270 1.11 aidan krb5_realm_data(*krb5_princ_realm(kcontext, me)),
271 1.8 christos 0)) != 0) {
272 1.1 brezak syslog(LOG_NOTICE, "%s while building server name",
273 1.1 brezak error_message(kerror));
274 1.1 brezak return(1);
275 1.1 brezak }
276 1.1 brezak
277 1.1 brezak my_creds.server = server;
278 1.1 brezak
279 1.8 christos if ((kerror = krb5_timeofday(kcontext, &now)) != 0) {
280 1.1 brezak syslog(LOG_NOTICE, "%s while getting time of day",
281 1.1 brezak error_message(kerror));
282 1.1 brezak return(1);
283 1.1 brezak }
284 1.1 brezak my_creds.times.starttime = 0; /* start timer when request
285 1.1 brezak gets to KDC */
286 1.1 brezak my_creds.times.endtime = now + lifetime;
287 1.1 brezak my_creds.times.renew_till = 0;
288 1.1 brezak
289 1.5 mycroft kerror = krb5_get_in_tkt_with_password(kcontext, options,
290 1.11 aidan NULL,
291 1.5 mycroft NULL,
292 1.5 mycroft NULL,
293 1.5 mycroft password,
294 1.5 mycroft ccache,
295 1.5 mycroft &my_creds, 0);
296 1.1 brezak
297 1.5 mycroft krb5_free_principal(kcontext, server);
298 1.1 brezak
299 1.1 brezak if (chown(&tkt_location[5], pw->pw_uid, pw->pw_gid) < 0)
300 1.1 brezak syslog(LOG_ERR, "chown tkfile (%s): %m", &tkt_location[5]);
301 1.1 brezak
302 1.1 brezak if (kerror) {
303 1.1 brezak if (kerror == KRB5KRB_AP_ERR_BAD_INTEGRITY)
304 1.1 brezak printf("%s: Kerberos Password incorrect\n", principal);
305 1.1 brezak else
306 1.1 brezak printf("%s while getting initial credentials\n", error_message(kerror));
307 1.1 brezak
308 1.1 brezak return(1);
309 1.1 brezak }
310 1.1 brezak
311 1.1 brezak /* Success */
312 1.1 brezak notickets = 0;
313 1.1 brezak return(0);
314 1.1 brezak }
315 1.1 brezak
316 1.1 brezak /*
317 1.1 brezak * Remove any credentials
318 1.1 brezak */
319 1.1 brezak void
320 1.1 brezak kdestroy()
321 1.1 brezak {
322 1.1 brezak krb5_error_code code;
323 1.1 brezak krb5_ccache ccache = NULL;
324 1.1 brezak
325 1.9 aidan if (! use_krb5 || krbtkfile_env == NULL)
326 1.1 brezak return;
327 1.1 brezak
328 1.5 mycroft code = krb5_cc_resolve(kcontext, krbtkfile_env, &ccache);
329 1.10 aidan if (!code)
330 1.5 mycroft code = krb5_cc_destroy(kcontext, ccache);
331 1.1 brezak }
332 1.1 brezak #endif
333