Imported Upstream version 1.8.7
[debian/sudo] / plugins / sudoers / auth / afs.c
1 /*
2  * Copyright (c) 1999, 2001-2005, 2007, 2010-2012
3  *      Todd C. Miller <Todd.Miller@courtesan.com>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * Sponsored in part by the Defense Advanced Research Projects
18  * Agency (DARPA) and Air Force Research Laboratory, Air Force
19  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
20  */
21
22 #include <config.h>
23
24 #include <sys/types.h>
25 #include <stdio.h>
26 #ifdef STDC_HEADERS
27 # include <stdlib.h>
28 # include <stddef.h>
29 #else
30 # ifdef HAVE_STDLIB_H
31 #  include <stdlib.h>
32 # endif
33 #endif /* STDC_HEADERS */
34 #ifdef HAVE_STRING_H
35 # include <string.h>
36 #endif /* HAVE_STRING_H */
37 #ifdef HAVE_STRINGS_H
38 # include <strings.h>
39 #endif /* HAVE_STRING_H */
40 #ifdef HAVE_UNISTD_H
41 # include <unistd.h>
42 #endif /* HAVE_UNISTD_H */
43 #include <pwd.h>
44
45 #include <afs/stds.h>
46 #include <afs/kautils.h>
47
48 #include "sudoers.h"
49 #include "sudo_auth.h"
50
51 int
52 sudo_afs_verify(struct passwd *pw, char *pass, sudo_auth *auth)
53 {
54     struct ktc_encryptionKey afs_key;
55     struct ktc_token afs_token;
56     debug_decl(sudo_afs_verify, SUDO_DEBUG_AUTH)
57
58     /* Try to just check the password */
59     ka_StringToKey(pass, NULL, &afs_key);
60     if (ka_GetAdminToken(pw->pw_name,           /* name */
61                          NULL,                  /* instance */
62                          NULL,                  /* realm */
63                          &afs_key,              /* key (contains password) */
64                          0,                     /* lifetime */
65                          &afs_token,            /* token */
66                          0) == 0)               /* new */
67         debug_return_int(AUTH_SUCCESS);
68
69     /* Fall back on old method XXX - needed? */
70     setpag();
71     if (ka_UserAuthenticateGeneral(KA_USERAUTH_VERSION+KA_USERAUTH_DOSETPAG,
72                                    pw->pw_name, /* name */
73                                    NULL,        /* instance */
74                                    NULL,        /* realm */
75                                    pass,        /* password */
76                                    0,           /* lifetime */
77                                    NULL,        /* expiration ptr (unused) */
78                                    0,           /* spare */
79                                    NULL) == 0)  /* reason */
80         debug_return_int(AUTH_SUCCESS);
81
82     debug_return_int(AUTH_FAILURE);
83 }