Initial import from FreeBSD RELENG_4:
[games.git] / lib / libpam / modules / pam_kerberosIV / pam_kerberosIV.c
1 /*-
2  * Copyright 1998 Juniper Networks, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  *      $FreeBSD: src/lib/libpam/modules/pam_kerberosIV/pam_kerberosIV.c,v 1.4.2.2 2002/07/06 14:14:06 des Exp $
27  */
28
29 #include <sys/param.h>
30 #include <pwd.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <unistd.h>
34
35 #define PAM_SM_AUTH
36 #include <security/pam_modules.h>
37
38 #include <security/pam_mod_misc.h>
39
40 #define PASSWORD_PROMPT "Password:"
41
42 extern int klogin(struct passwd *, char *, char *, char *);
43
44 /* Globals used by klogin.c */
45 int     notickets = 1;
46 int     noticketsdontcomplain = 1;
47 char    *krbtkfile_env;
48
49 PAM_EXTERN int
50 pam_sm_authenticate(pam_handle_t *pamh, int flags, int argc,
51     const char **argv)
52 {
53         struct options options;
54         int retval;
55         const char *user;
56         char *principal;
57         char *instance;
58         const char *password;
59         char localhost[MAXHOSTNAMELEN + 1];
60         struct passwd *pwd;
61         int i;
62
63         pam_std_option(&options, NULL, argc, argv);
64         if ((retval = pam_get_user(pamh, &user, NULL)) != PAM_SUCCESS)
65                 return retval;
66         if ((retval = pam_get_pass(pamh, &password, PASSWORD_PROMPT,
67             &options)) != PAM_SUCCESS)
68                 return retval;
69         if (gethostname(localhost, sizeof localhost - 1) == -1)
70                 return PAM_SYSTEM_ERR;
71         if ((principal = strdup(user)) == NULL)
72                 return PAM_BUF_ERR;
73         if ((instance = strchr(principal, '.')) != NULL)
74                 *instance++ = '\0';
75         else
76                 instance = "";
77         if ((pwd = getpwnam(user)) != NULL &&
78             klogin(pwd, instance, localhost, (char *)password) == 0) {
79                 if (!(flags & PAM_SILENT) && notickets &&
80                     !noticketsdontcomplain)
81                         pam_prompt(pamh, PAM_ERROR_MSG,
82                             "Warning: no Kerberos tickets issued", NULL);
83                 /*
84                  * XXX - I think the ticket file really isn't supposed to
85                  * be even created until pam_sm_setcred() is called.
86                  */
87                 if (krbtkfile_env != NULL)
88                         setenv("KRBTKFILE", krbtkfile_env, 1);
89                 retval = PAM_SUCCESS;
90         } else
91                 retval = PAM_AUTH_ERR;
92         /*
93          * The PAM infrastructure will obliterate the cleartext
94          * password before returning to the application.
95          */
96         free(principal);
97         return retval;
98 }
99
100 PAM_EXTERN int
101 pam_sm_setcred(pam_handle_t *pamh, int flags, int argc, const char **argv)
102 {
103         return PAM_SUCCESS;
104 }
105
106 PAM_MODULE_ENTRY("pam_kerberosIV");