1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
/*
* lib/krb5/rcache/rc_base.c
*
* This file of the Kerberos V5 software is derived from public-domain code
* contributed by Daniel J. Bernstein, <brnstnd@acf10.nyu.edu>.
*
*/
/*
* Base "glue" functions for the replay cache.
*/
#include "rc_base.h"
#define FREE(x) ((void) free((char *) (x)))
struct krb5_rc_typelist
{
const krb5_rc_ops *ops;
struct krb5_rc_typelist *next;
};
static struct krb5_rc_typelist krb5_rc_typelist_dfl = { &krb5_rc_dfl_ops, 0 };
static struct krb5_rc_typelist *typehead = &krb5_rc_typelist_dfl;
krb5_error_code krb5_rc_register_type(krb5_context context,
const krb5_rc_ops *ops)
{
struct krb5_rc_typelist *t;
for (t = typehead;t && strcmp(t->ops->type,ops->type);t = t->next)
;
if (t)
return KRB5_RC_TYPE_EXISTS;
if (!(t = (struct krb5_rc_typelist *) malloc(sizeof(struct krb5_rc_typelist))))
return KRB5_RC_MALLOC;
t->next = typehead;
t->ops = ops;
typehead = t;
return 0;
}
krb5_error_code krb5_rc_resolve_type(krb5_context context, krb5_rcache *id, char *type)
{
struct krb5_rc_typelist *t;
for (t = typehead;t && strcmp(t->ops->type,type);t = t->next)
;
if (!t)
return KRB5_RC_TYPE_NOTFOUND;
/* allocate *id? nah */
(*id)->ops = t->ops;
return 0;
}
char * krb5_rc_get_type(krb5_context context, krb5_rcache id)
{
return id->ops->type;
}
char * krb5_rc_default_type(krb5_context context)
{
char *s;
if ((s = getenv("KRB5RCACHETYPE")))
return s;
else
return "dfl";
}
char * krb5_rc_default_name(krb5_context context)
{
char *s;
if ((s = getenv("KRB5RCACHENAME")))
return s;
else
return (char *) 0;
}
krb5_error_code
krb5_rc_default(krb5_context context, krb5_rcache *id)
{
krb5_error_code retval;
if (!(*id = (krb5_rcache )malloc(sizeof(**id))))
return KRB5_RC_MALLOC;
if ((retval = krb5_rc_resolve_type(context, id,
krb5_rc_default_type(context)))) {
FREE(*id);
return retval;
}
if ((retval = krb5_rc_resolve(context, *id,
krb5_rc_default_name(context))))
FREE(*id);
(*id)->magic = KV5M_RCACHE;
return retval;
}
krb5_error_code krb5_rc_resolve_full(krb5_context context, krb5_rcache *id, char *string_name)
{
char *type;
char *residual;
krb5_error_code retval;
unsigned int diff;
if (!(residual = strchr(string_name,':')))
return KRB5_RC_PARSE;
diff = residual - string_name;
if (!(type = malloc(diff + 1)))
return KRB5_RC_MALLOC;
(void) strncpy(type, string_name, diff);
type[residual - string_name] = '\0';
if (!(*id = (krb5_rcache) malloc(sizeof(**id)))) {
FREE(type);
return KRB5_RC_MALLOC;
}
if ((retval = krb5_rc_resolve_type(context, id,type))) {
FREE(type);
FREE(*id);
return retval;
}
FREE(type);
if ((retval = krb5_rc_resolve(context, *id,residual + 1)))
FREE(*id);
(*id)->magic = KV5M_RCACHE;
return retval;
}
|