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"
40 struct krb_kafs_data
{
45 get_cred(struct kafs_data
*data
, const char *name
, const char *inst
,
46 const char *realm
, uid_t uid
, struct kafs_token
*kt
)
50 int ret
= krb_get_cred((char*)name
, (char*)inst
, (char*)realm
, &c
);
53 ret
= krb_mk_req(&tkt
, (char*)name
, (char*)inst
, (char*)realm
, 0);
55 ret
= krb_get_cred((char*)name
, (char*)inst
, (char*)realm
, &c
);
58 ret
= _kafs_v4_to_kt(&c
, uid
, kt
);
63 afslog_uid_int(struct kafs_data
*data
,
65 const char *realm_hint
,
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
);
86 ret
= _kafs_get_cred(data
, cell
, realm_hint
, realm
, uid
, &kt
);
89 ret
= kafs_settoken_rxkad(cell
, &kt
.ct
, kt
.ticket
, kt
.ticket_len
);
96 get_realm(struct kafs_data
*data
, const char *host
)
98 char *r
= krb_realmofhost(host
);
106 krb_afslog_uid_home(const char *cell
, const char *realm_hint
, uid_t uid
,
112 kd
.afslog_uid
= afslog_uid_int
;
113 kd
.get_cred
= get_cred
;
114 kd
.get_realm
= get_realm
;
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
)
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
;
159 ret
= _kafs_v4_to_kt(c
, uid
, &kt
);
163 if (kt
.ct
.EndTimestamp
< time(NULL
)) {
168 ret
= kafs_settoken_rxkad(cell
, &kt
.ct
, kt
.ticket
, kt
.ticket_len
);
175 #define KAFS_KRBET_KDC_SERVICE_EXP 39525378
178 krb_afslog_uid_home(const char *cell
, const char *realm_hint
, uid_t uid
,
181 return KAFS_KRBET_KDC_SERVICE_EXP
;
185 krb_afslog_uid(const char *cell
, const char *realm_hint
, uid_t uid
)
187 return KAFS_KRBET_KDC_SERVICE_EXP
;
191 krb_afslog_home(const char *cell
, const char *realm_hint
, const char *homedir
)
193 return KAFS_KRBET_KDC_SERVICE_EXP
;
197 krb_afslog(const char *cell
, const char *realm_hint
)
199 return KAFS_KRBET_KDC_SERVICE_EXP
;
203 krb_realm_of_cell(const char *cell
, char **realm
)
206 return KAFS_KRBET_KDC_SERVICE_EXP
;
209 int kafs_settoken (const char*, uid_t
, struct credentials
*);
212 kafs_settoken(const char *cell
, uid_t uid
, struct credentials
*c
)
214 return KAFS_KRBET_KDC_SERVICE_EXP
;