Imported Debian patch 1.6.9p12-1
[debian/sudo] / auth / kerb5.c
1 /*
2  * Copyright (c) 1999-2005 Todd C. Miller <Todd.Miller@courtesan.com>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
16  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
17  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18  *
19  * Sponsored in part by the Defense Advanced Research Projects
20  * Agency (DARPA) and Air Force Research Laboratory, Air Force
21  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
22  */
23
24 #include <config.h>
25
26 #include <sys/types.h>
27 #include <sys/param.h>
28 #include <stdio.h>
29 #ifdef STDC_HEADERS
30 # include <stdlib.h>
31 # include <stddef.h>
32 #else
33 # ifdef HAVE_STDLIB_H
34 #  include <stdlib.h>
35 # endif
36 #endif /* STDC_HEADERS */
37 #ifdef HAVE_STRING_H
38 # include <string.h>
39 #else
40 # ifdef HAVE_STRINGS_H
41 #  include <strings.h>
42 # endif
43 #endif /* HAVE_STRING_H */
44 #ifdef HAVE_UNISTD_H
45 # include <unistd.h>
46 #endif /* HAVE_UNISTD_H */
47 #include <pwd.h>
48 #include <krb5.h>
49 #ifdef HAVE_HEIMDAL
50 #include <com_err.h>
51 #endif
52
53 #include "sudo.h"
54 #include "sudo_auth.h"
55
56 #ifndef lint
57 __unused static const char rcsid[] = "$Sudo: kerb5.c,v 1.23.2.7 2008/01/13 14:54:40 millert Exp $";
58 #endif /* lint */
59
60 #ifdef HAVE_HEIMDAL
61 # define extract_name(c, p)             krb5_principal_get_comp_string(c, p, 1)
62 # define krb5_free_data_contents(c, d)  krb5_data_free(d)
63 #else
64 # define extract_name(c, p)             (krb5_princ_component(c, p, 1)->data)
65 #endif
66
67 #ifndef HAVE_KRB5_VERIFY_USER
68 static int verify_krb_v5_tgt __P((krb5_context, krb5_creds *, char *));
69 #endif
70 static struct _sudo_krb5_data {
71     krb5_context        sudo_context;
72     krb5_principal      princ;
73     krb5_ccache         ccache;
74 } sudo_krb5_data = { NULL, NULL, NULL };
75 typedef struct _sudo_krb5_data *sudo_krb5_datap;
76
77 int
78 kerb5_init(pw, promptp, auth)
79     struct passwd *pw;
80     char **promptp;
81     sudo_auth *auth;
82 {
83     krb5_context        sudo_context;
84     krb5_ccache         ccache;
85     krb5_principal      princ;
86     krb5_error_code     error;
87     char                cache_name[64];
88     char                *pname;
89
90     auth->data = (VOID *) &sudo_krb5_data; /* Stash all our data here */
91
92 #ifdef HAVE_KRB5_INIT_SECURE_CONTEXT
93     error = krb5_init_secure_context(&(sudo_krb5_data.sudo_context));
94 #else
95     error = krb5_init_context(&(sudo_krb5_data.sudo_context));
96 #endif
97     if (error)
98         return(AUTH_FAILURE);
99     sudo_context = sudo_krb5_data.sudo_context;
100
101     if ((error = krb5_parse_name(sudo_context, pw->pw_name,
102         &(sudo_krb5_data.princ)))) {
103         log_error(NO_EXIT|NO_MAIL,
104                   "%s: unable to parse '%s': %s", auth->name, pw->pw_name,
105                   error_message(error));
106         return(AUTH_FAILURE);
107     }
108     princ = sudo_krb5_data.princ;
109
110     /*
111      * Really, we need to tell the caller not to prompt for password.
112      * The API does not currently provide this unless the auth is standalone.
113      */
114 #if 1
115     if ((error = krb5_unparse_name(sudo_context, princ, &pname))) {
116         log_error(NO_EXIT|NO_MAIL,
117                   "%s: unable to unparse princ ('%s'): %s", auth->name,
118                   pw->pw_name, error_message(error));
119         return(AUTH_FAILURE);
120     }
121
122     /* Only rewrite prompt if user didn't specify their own. */
123     /*if (!strcmp(prompt, PASSPROMPT)) { */
124         easprintf(promptp, "Password for %s: ", pname);
125     /*}*/
126     free(pname);
127 #endif
128
129     (void) snprintf(cache_name, sizeof(cache_name), "MEMORY:sudocc_%ld",
130                     (long) getpid());
131     if ((error = krb5_cc_resolve(sudo_context, cache_name,
132         &(sudo_krb5_data.ccache)))) {
133         log_error(NO_EXIT|NO_MAIL,
134                   "%s: unable to resolve ccache: %s", auth->name,
135                   error_message(error));
136         return(AUTH_FAILURE);
137     }
138     ccache = sudo_krb5_data.ccache;
139
140     return(AUTH_SUCCESS);
141 }
142
143 #ifdef HAVE_KRB5_VERIFY_USER
144 int
145 kerb5_verify(pw, pass, auth)
146     struct passwd *pw;
147     char *pass;
148     sudo_auth *auth;
149 {
150     krb5_context        sudo_context;
151     krb5_principal      princ;
152     krb5_ccache         ccache;
153     krb5_error_code     error;
154
155     sudo_context = ((sudo_krb5_datap) auth->data)->sudo_context;
156     princ = ((sudo_krb5_datap) auth->data)->princ;
157     ccache = ((sudo_krb5_datap) auth->data)->ccache;
158
159     error = krb5_verify_user(sudo_context, princ, ccache, pass, 1, NULL);
160     return (error ? AUTH_FAILURE : AUTH_SUCCESS);
161 }
162 #else
163 int
164 kerb5_verify(pw, pass, auth)
165     struct passwd *pw;
166     char *pass;
167     sudo_auth *auth;
168 {
169     krb5_context        sudo_context;
170     krb5_principal      princ;
171     krb5_creds          credbuf, *creds = NULL;
172     krb5_ccache         ccache;
173     krb5_error_code     error;
174     krb5_get_init_creds_opt *opts = NULL;
175
176     sudo_context = ((sudo_krb5_datap) auth->data)->sudo_context;
177     princ = ((sudo_krb5_datap) auth->data)->princ;
178     ccache = ((sudo_krb5_datap) auth->data)->ccache;
179
180     /* Set default flags based on the local config file. */
181     error = krb5_get_init_creds_opt_alloc(sudo_context, &opts);
182     if (error) {
183         log_error(NO_EXIT|NO_MAIL,
184                   "%s: unable to allocate options: %s", auth->name,
185                   error_message(error));
186         goto done;
187     }
188     krb5_get_init_creds_opt_set_default_flags(sudo_context, NULL,
189         krb5_principal_get_realm(sudo_context, princ), opts);
190
191     /* Note that we always obtain a new TGT to verify the user */
192     if ((error = krb5_get_init_creds_password(sudo_context, &credbuf, princ,
193                                              pass, krb5_prompter_posix,
194                                              NULL, 0, NULL, opts))) {
195         /* Don't print error if just a bad password */
196         if (error != KRB5KRB_AP_ERR_BAD_INTEGRITY)
197             log_error(NO_EXIT|NO_MAIL,
198                       "%s: unable to get credentials: %s", auth->name,
199                       error_message(error));
200         goto done;
201     }
202     creds = &credbuf;
203
204     /* Verify the TGT to prevent spoof attacks. */
205     if ((error = verify_krb_v5_tgt(sudo_context, creds, auth->name)))
206         goto done;
207
208     /* Store cred in cred cache. */
209     if ((error = krb5_cc_initialize(sudo_context, ccache, princ))) {
210         log_error(NO_EXIT|NO_MAIL,
211                   "%s: unable to initialize ccache: %s", auth->name,
212                   error_message(error));
213     } else if ((error = krb5_cc_store_cred(sudo_context, ccache, creds))) {
214         log_error(NO_EXIT|NO_MAIL,
215                   "%s: unable to store cred in ccache: %s", auth->name,
216                   error_message(error));
217     }
218
219 done:
220     if (opts)
221         krb5_get_init_creds_opt_free(opts);
222     if (creds)
223         krb5_free_cred_contents(sudo_context, creds);
224     return (error ? AUTH_FAILURE : AUTH_SUCCESS);
225 }
226 #endif
227
228 int
229 kerb5_cleanup(pw, auth)
230     struct passwd *pw;
231     sudo_auth *auth;
232 {
233     krb5_context        sudo_context;
234     krb5_principal      princ;
235     krb5_ccache         ccache;
236
237     sudo_context = ((sudo_krb5_datap) auth->data)->sudo_context;
238     princ = ((sudo_krb5_datap) auth->data)->princ;
239     ccache = ((sudo_krb5_datap) auth->data)->ccache;
240
241     if (sudo_context) {
242         if (ccache)
243             krb5_cc_destroy(sudo_context, ccache);
244         if (princ)
245             krb5_free_principal(sudo_context, princ);
246         krb5_free_context(sudo_context);
247     }
248
249     return(AUTH_SUCCESS);
250 }
251
252 #ifndef HAVE_KRB5_VERIFY_USER
253 /*
254  * Verify the Kerberos ticket-granting ticket just retrieved for the
255  * user.  If the Kerberos server doesn't respond, assume the user is
256  * trying to fake us out (since we DID just get a TGT from what is
257  * supposedly our KDC).
258  *
259  * Returns 0 for successful authentication, non-zero for failure.
260  */
261 static int
262 verify_krb_v5_tgt(sudo_context, cred, auth_name)
263     krb5_context        sudo_context;
264     krb5_creds          *cred;
265     char                *auth_name; /* For error reporting */
266 {
267     krb5_error_code     error;
268     krb5_principal      server;
269     krb5_verify_init_creds_opt vopt;
270
271     /*
272      * Get the server principal for the local host.
273      * (Use defaults of "host" and canonicalized local name.)
274      */
275     if ((error = krb5_sname_to_principal(sudo_context, NULL, NULL,
276                                         KRB5_NT_SRV_HST, &server))) {
277         log_error(NO_EXIT|NO_MAIL,
278                   "%s: unable to get host principal: %s", auth_name,
279                   error_message(error));
280         return(-1);
281     }
282
283     /* Initialize verify opts and set secure mode */
284     krb5_verify_init_creds_opt_init(&vopt);
285     krb5_verify_init_creds_opt_set_ap_req_nofail(&vopt, 1);
286
287     /* verify the Kerberos ticket-granting ticket we just retrieved */
288     error = krb5_verify_init_creds(sudo_context, cred, server, NULL,
289                                    NULL, &vopt);
290     krb5_free_principal(sudo_context, server);
291     if (error)
292         log_error(NO_EXIT|NO_MAIL,
293                   "%s: Cannot verify TGT! Possible attack!: %s", auth_name,
294                   error_message(error));
295     return(error);
296 }
297 #endif