2 * Copyright (c) 1995-2004 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 __RCSID("$Heimdal: verify.c 14203 2004-09-08 09:02:59Z joda $"
40 #include <sys/types.h>
52 static char krb5ccname
[128];
55 static char krbtkfile
[128];
59 In some cases is afs_gettktstring called twice (once before
60 afs_verify and once after afs_verify).
61 In some cases (rlogin with access allowed via .rhosts)
62 afs_verify is not called!
63 So we can't rely on correct value in krbtkfile in some
67 static int correct_tkfilename
=0;
72 set_krbtkfile(uid_t uid
)
74 snprintf (krbtkfile
, sizeof(krbtkfile
), "%s%d", TKT_ROOT
, (unsigned)uid
);
75 krb_set_tkt_string (krbtkfile
);
76 correct_tkfilename
= 1;
80 /* XXX this has to be the default cache name, since the KRB5CCNAME
81 * environment variable isn't exported by login/xdm
86 set_krb5ccname(uid_t uid
)
88 snprintf (krb5ccname
, sizeof(krb5ccname
), "FILE:/tmp/krb5cc_%d", uid
);
90 snprintf (krbtkfile
, sizeof(krbtkfile
), "%s%d", TKT_ROOT
, (unsigned)uid
);
92 correct_tkfilename
= 1;
97 set_spec_krbtkfile(void)
101 snprintf (krbtkfile
, sizeof(krbtkfile
), "%s_XXXXXX", TKT_ROOT
);
102 fd
= mkstemp(krbtkfile
);
105 krb_set_tkt_string (krbtkfile
);
108 snprintf(krb5ccname
, sizeof(krb5ccname
),"FILE:/tmp/krb5cc_XXXXXX");
109 fd
=mkstemp(krb5ccname
+5);
111 unlink(krb5ccname
+5);
117 verify_krb5(struct passwd
*pwd
,
122 krb5_context context
;
125 krb5_principal principal
;
127 ret
= krb5_init_context(&context
);
129 syslog(LOG_AUTH
|LOG_DEBUG
, "krb5_init_context failed: %d", ret
);
133 ret
= krb5_parse_name (context
, pwd
->pw_name
, &principal
);
135 syslog(LOG_AUTH
|LOG_DEBUG
, "krb5_parse_name: %s",
136 krb5_get_err_text(context
, ret
));
140 set_krb5ccname(pwd
->pw_uid
);
141 ret
= krb5_cc_resolve(context
, krb5ccname
, &ccache
);
143 syslog(LOG_AUTH
|LOG_DEBUG
, "krb5_cc_resolve: %s",
144 krb5_get_err_text(context
, ret
));
148 ret
= krb5_verify_user_lrealm(context
,
155 syslog(LOG_AUTH
|LOG_DEBUG
, "krb5_verify_user: %s",
156 krb5_get_err_text(context
, ret
));
160 if(chown(krb5_cc_get_name(context
, ccache
), pwd
->pw_uid
, pwd
->pw_gid
)) {
161 syslog(LOG_AUTH
|LOG_DEBUG
, "chown: %s",
162 krb5_get_err_text(context
, errno
));
168 krb5_realm realm
= NULL
;
169 krb5_boolean get_v4_tgt
;
171 krb5_get_default_realm(context
, &realm
);
172 krb5_appdefault_boolean(context
, "afskauthlib",
174 "krb4_get_tickets", FALSE
, &get_v4_tgt
);
177 krb5_creds mcred
, cred
;
179 krb5_cc_clear_mcred(&mcred
);
181 krb5_make_principal(context
, &mcred
.server
, realm
,
185 ret
= krb5_cc_retrieve_cred(context
, ccache
, 0, &mcred
, &cred
);
187 ret
= krb524_convert_creds_kdc_ccache(context
, ccache
, &cred
, &c
);
189 krb5_warn(context
, ret
, "converting creds");
191 set_krbtkfile(pwd
->pw_uid
);
192 tf_setup(&c
, c
.pname
, c
.pinst
);
194 memset(&c
, 0, sizeof(c
));
195 krb5_free_cred_contents(context
, &cred
);
197 syslog(LOG_AUTH
|LOG_DEBUG
, "krb5_cc_retrieve_cred: %s",
198 krb5_get_err_text(context
, ret
));
200 krb5_free_principal(context
, mcred
.server
);
203 if (!pag_set
&& k_hasafs()) {
209 krb5_afslog_uid_home(context
, ccache
, NULL
, NULL
,
210 pwd
->pw_uid
, pwd
->pw_dir
);
215 printf ("%s\n", krb5_get_err_text (context
, ret
));
222 verify_krb4(struct passwd
*pwd
,
228 char lrealm
[REALM_SZ
];
230 if (krb_get_lrealm (lrealm
, 1) != KFAILURE
) {
231 set_krbtkfile(pwd
->pw_uid
);
232 ret
= krb_verify_user (pwd
->pw_name
, "", lrealm
, password
,
233 KRB_VERIFY_SECURE
, NULL
);
234 if (ret
== KSUCCESS
) {
235 if (!pag_set
&& k_hasafs()) {
240 krb_afslog_uid_home (0, 0, pwd
->pw_uid
, pwd
->pw_dir
);
242 printf ("%s\n", krb_get_err_text (ret
));
249 afs_verify(char *name
,
255 struct passwd
*pwd
= k_getpwnam (name
);
260 if (!pag_set
&& k_hasafs()) {
266 ret
= unix_verify_user (name
, password
);
269 ret
= verify_krb5(pwd
, password
, exp
, quiet
);
273 ret
= verify_krb4(pwd
, password
, exp
, quiet
);
279 afs_gettktstring (void)
284 if (!correct_tkfilename
) {
285 ptr
= getenv("LOGNAME");
286 if (ptr
!= NULL
&& ((pwd
= getpwnam(ptr
)) != NULL
)) {
287 set_krb5ccname(pwd
->pw_uid
);
289 set_krbtkfile(pwd
->pw_uid
);
290 if (!pag_set
&& k_hasafs()) {
296 set_spec_krbtkfile();
300 esetenv("KRB5CCNAME",krb5ccname
,1);
303 esetenv("KRBTKFILE",krbtkfile
,1);