remove gcc34
[dragonfly.git] / crypto / heimdal-0.6.3 / lib / kafs / afskrb.c
blob523a7b9a9145274e0e7f57642db3babaf674b2e2
1 /*
2 * Copyright (c) 1995 - 2001, 2003 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
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
31 * SUCH DAMAGE.
34 #include "kafs_locl.h"
36 RCSID("$Id: afskrb.c,v 1.17 2003/04/14 08:32:11 lha Exp $");
38 #ifdef KRB4
40 struct krb_kafs_data {
41 const char *realm;
44 static int
45 get_cred(kafs_data *data, const char *name, const char *inst,
46 const char *realm, uid_t uid, struct kafs_token *kt)
48 CREDENTIALS c;
49 KTEXT_ST tkt;
50 int ret = krb_get_cred((char*)name, (char*)inst, (char*)realm, &c);
52 if (ret) {
53 ret = krb_mk_req(&tkt, (char*)name, (char*)inst, (char*)realm, 0);
54 if (ret == KSUCCESS)
55 ret = krb_get_cred((char*)name, (char*)inst, (char*)realm, &c);
57 if (ret == 0)
58 ret = _kafs_v4_to_kt(&c, uid, kt);
59 return ret;
62 static int
63 afslog_uid_int(kafs_data *data,
64 const char *cell,
65 const char *realm_hint,
66 uid_t uid,
67 const char *homedir)
69 int ret;
70 struct kafs_token kt;
71 char name[ANAME_SZ];
72 char inst[INST_SZ];
73 char realm[REALM_SZ];
75 kt.ticket = NULL;
77 if (cell == 0 || cell[0] == 0)
78 return _kafs_afslog_all_local_cells (data, uid, homedir);
80 /* Extract realm from ticket file. */
81 ret = krb_get_tf_fullname(tkt_string(), name, inst, realm);
82 if (ret != KSUCCESS)
83 return ret;
85 kt.ticket = NULL;
86 ret = _kafs_get_cred(data, cell, realm_hint, realm, uid, &kt);
88 if (ret == 0) {
89 ret = kafs_settoken_rxkad(cell, &kt.ct, kt.ticket, kt.ticket_len);
90 free(kt.ticket);
92 return ret;
95 static char *
96 get_realm(kafs_data *data, const char *host)
98 char *r = krb_realmofhost(host);
99 if(r != NULL)
100 return strdup(r);
101 else
102 return NULL;
106 krb_afslog_uid_home(const char *cell, const char *realm_hint, uid_t uid,
107 const char *homedir)
109 kafs_data kd;
111 kd.name = "krb4";
112 kd.afslog_uid = afslog_uid_int;
113 kd.get_cred = get_cred;
114 kd.get_realm = get_realm;
115 kd.data = 0;
116 return afslog_uid_int(&kd, cell, realm_hint, uid, homedir);
120 krb_afslog_uid(const char *cell, const char *realm_hint, uid_t uid)
122 return krb_afslog_uid_home(cell, realm_hint, uid, NULL);
126 krb_afslog(const char *cell, const char *realm_hint)
128 return krb_afslog_uid(cell, realm_hint, getuid());
132 krb_afslog_home(const char *cell, const char *realm_hint, const char *homedir)
134 return krb_afslog_uid_home(cell, realm_hint, getuid(), homedir);
142 krb_realm_of_cell(const char *cell, char **realm)
144 kafs_data kd;
146 kd.name = "krb4";
147 kd.get_realm = get_realm;
148 return _kafs_realm_of_cell(&kd, cell, realm);
152 kafs_settoken(const char *cell, uid_t uid, CREDENTIALS *c)
154 struct kafs_token kt;
155 int ret;
157 kt.ticket = NULL;
159 ret = _kafs_v4_to_kt(c, uid, &kt);
160 if (ret)
161 return ret;
163 if (kt.ct.EndTimestamp < time(NULL)) {
164 free(kt.ticket);
165 return 0;
168 ret = kafs_settoken_rxkad(cell, &kt.ct, kt.ticket, kt.ticket_len);
169 free(kt.ticket);
170 return ret;
173 #endif /* KRB4 */