- Complete re-write of sasc.
[dragonfly.git] / crypto / heimdal / lib / kafs / afskrb.c
1 /*
2  * Copyright (c) 1995 - 2001 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.
12  * 
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.
16  * 
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.
20  * 
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.
32  */
33
34 #include "kafs_locl.h"
35
36 RCSID("$Id: afskrb.c,v 1.15 2001/10/24 19:36:27 assar Exp $");
37
38 struct krb_kafs_data {
39     const char *realm;
40 };
41
42 static int
43 get_cred(kafs_data *data, const char *name, const char *inst, 
44          const char *realm, CREDENTIALS *c)
45 {
46     KTEXT_ST tkt;
47     int ret = krb_get_cred((char*)name, (char*)inst, (char*)realm, c);
48     
49     if (ret) {
50         ret = krb_mk_req(&tkt, (char*)name, (char*)inst, (char*)realm, 0);
51         if (ret == KSUCCESS)
52             ret = krb_get_cred((char*)name, (char*)inst, (char*)realm, c);
53     }
54     return ret;
55 }
56
57 static int
58 afslog_uid_int(kafs_data *data,
59                const char *cell,
60                const char *realm_hint,
61                uid_t uid,
62                const char *homedir)
63 {
64     int ret;
65     CREDENTIALS c;
66     char name[ANAME_SZ];
67     char inst[INST_SZ];
68     char realm[REALM_SZ];
69     
70     if (cell == 0 || cell[0] == 0)
71         return _kafs_afslog_all_local_cells (data, uid, homedir);
72
73     /* Extract realm from ticket file. */
74     ret = krb_get_tf_fullname(tkt_string(), name, inst, realm);
75     if (ret != KSUCCESS)
76         return ret;
77
78     ret = _kafs_get_cred(data, cell, realm_hint, realm, &c);
79     
80     if (ret == 0)
81         ret = kafs_settoken(cell, uid, &c);
82     return ret;
83 }
84
85 static char *
86 get_realm(kafs_data *data, const char *host)
87 {
88     char *r = krb_realmofhost(host);
89     if(r != NULL)
90         return strdup(r);
91     else
92         return NULL;
93 }
94
95 int
96 krb_afslog_uid_home(const char *cell, const char *realm_hint, uid_t uid,
97                     const char *homedir)
98 {
99     kafs_data kd;
100
101     kd.afslog_uid = afslog_uid_int;
102     kd.get_cred = get_cred;
103     kd.get_realm = get_realm;
104     kd.data = 0;
105     return afslog_uid_int(&kd, cell, realm_hint, uid, homedir);
106 }
107
108 int
109 krb_afslog_uid(const char *cell, const char *realm_hint, uid_t uid)
110 {
111     return krb_afslog_uid_home(cell, realm_hint, uid, NULL);
112 }
113
114 int
115 krb_afslog(const char *cell, const char *realm_hint)
116 {
117     return krb_afslog_uid(cell, realm_hint, getuid());
118 }
119
120 int
121 krb_afslog_home(const char *cell, const char *realm_hint, const char *homedir)
122 {
123     return krb_afslog_uid_home(cell, realm_hint, getuid(), homedir);
124 }
125
126 /*
127  *
128  */
129
130 int
131 krb_realm_of_cell(const char *cell, char **realm)
132 {
133     kafs_data kd;
134
135     kd.get_realm = get_realm;
136     return _kafs_realm_of_cell(&kd, cell, realm);
137 }