2 * Copyright (c) 1995 - 2001, 2003 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
34 #include "kafs_locl.h"
36 __RCSID("$Heimdal: afskrb.c 15342 2005-06-02 07:38:22Z lha $"
41 struct krb_kafs_data
{
46 get_cred(struct kafs_data
*data
, const char *name
, const char *inst
,
47 const char *realm
, uid_t uid
, struct kafs_token
*kt
)
51 int ret
= krb_get_cred((char*)name
, (char*)inst
, (char*)realm
, &c
);
54 ret
= krb_mk_req(&tkt
, (char*)name
, (char*)inst
, (char*)realm
, 0);
56 ret
= krb_get_cred((char*)name
, (char*)inst
, (char*)realm
, &c
);
59 ret
= _kafs_v4_to_kt(&c
, uid
, kt
);
64 afslog_uid_int(struct kafs_data
*data
,
66 const char *realm_hint
,
78 if (cell
== 0 || cell
[0] == 0)
79 return _kafs_afslog_all_local_cells (data
, uid
, homedir
);
81 /* Extract realm from ticket file. */
82 ret
= krb_get_tf_fullname(tkt_string(), name
, inst
, realm
);
87 ret
= _kafs_get_cred(data
, cell
, realm_hint
, realm
, uid
, &kt
);
90 ret
= kafs_settoken_rxkad(cell
, &kt
.ct
, kt
.ticket
, kt
.ticket_len
);
97 get_realm(struct kafs_data
*data
, const char *host
)
99 char *r
= krb_realmofhost(host
);
107 krb_afslog_uid_home(const char *cell
, const char *realm_hint
, uid_t uid
,
113 kd
.afslog_uid
= afslog_uid_int
;
114 kd
.get_cred
= get_cred
;
115 kd
.get_realm
= get_realm
;
117 return afslog_uid_int(&kd
, cell
, realm_hint
, uid
, homedir
);
121 krb_afslog_uid(const char *cell
, const char *realm_hint
, uid_t uid
)
123 return krb_afslog_uid_home(cell
, realm_hint
, uid
, NULL
);
127 krb_afslog(const char *cell
, const char *realm_hint
)
129 return krb_afslog_uid(cell
, realm_hint
, getuid());
133 krb_afslog_home(const char *cell
, const char *realm_hint
, const char *homedir
)
135 return krb_afslog_uid_home(cell
, realm_hint
, getuid(), homedir
);
143 krb_realm_of_cell(const char *cell
, char **realm
)
148 kd
.get_realm
= get_realm
;
149 return _kafs_realm_of_cell(&kd
, cell
, realm
);
153 kafs_settoken(const char *cell
, uid_t uid
, CREDENTIALS
*c
)
155 struct kafs_token kt
;
160 ret
= _kafs_v4_to_kt(c
, uid
, &kt
);
164 if (kt
.ct
.EndTimestamp
< time(NULL
)) {
169 ret
= kafs_settoken_rxkad(cell
, &kt
.ct
, kt
.ticket
, kt
.ticket_len
);
176 #define KAFS_KRBET_KDC_SERVICE_EXP 39525378
179 krb_afslog_uid_home(const char *cell
, const char *realm_hint
, uid_t uid
,
182 return KAFS_KRBET_KDC_SERVICE_EXP
;
186 krb_afslog_uid(const char *cell
, const char *realm_hint
, uid_t uid
)
188 return KAFS_KRBET_KDC_SERVICE_EXP
;
192 krb_afslog_home(const char *cell
, const char *realm_hint
, const char *homedir
)
194 return KAFS_KRBET_KDC_SERVICE_EXP
;
198 krb_afslog(const char *cell
, const char *realm_hint
)
200 return KAFS_KRBET_KDC_SERVICE_EXP
;
204 krb_realm_of_cell(const char *cell
, char **realm
)
207 return KAFS_KRBET_KDC_SERVICE_EXP
;
210 int kafs_settoken (const char*, uid_t
, struct credentials
*);
213 kafs_settoken(const char *cell
, uid_t uid
, struct credentials
*c
)
215 return KAFS_KRBET_KDC_SERVICE_EXP
;