2 * Copyright (c) 1997 - 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 "krb5_locl.h"
36 RCSID("$Id: transited.c,v 1.10.2.3 2003/10/22 06:07:41 lha Exp $");
38 /* this is an attempt at one of the most horrible `compression'
39 schemes that has ever been invented; it's so amazingly brain-dead
40 that words can not describe it, and all this just to save a few
45 unsigned leading_space
:1;
46 unsigned leading_slash
:1;
47 unsigned trailing_dot
:1;
48 struct tr_realm
*next
;
52 free_realms(struct tr_realm
*r
)
64 make_path(krb5_context context
, struct tr_realm
*r
,
65 const char *from
, const char *to
)
68 struct tr_realm
*path
= r
->next
;
71 if(strlen(from
) < strlen(to
)){
78 if(strcmp(from
+ strlen(from
) - strlen(to
), to
) == 0){
83 krb5_clear_error_string (context
);
84 return KRB5KDC_ERR_POLICY
;
87 if(strcmp(p
, to
) == 0)
89 tmp
= calloc(1, sizeof(*tmp
));
92 path
->realm
= strdup(p
);
93 if(path
->realm
== NULL
){
94 r
->next
= path
; /* XXX */
95 krb5_set_error_string (context
, "malloc: out of memory");
99 }else if(strncmp(from
, to
, strlen(to
)) == 0){
100 p
= from
+ strlen(from
);
102 while(p
>= from
&& *p
!= '/') p
--;
104 return KRB5KDC_ERR_POLICY
;
105 if(strncmp(to
, from
, p
- from
) == 0)
107 tmp
= calloc(1, sizeof(*tmp
));
110 path
->realm
= malloc(p
- from
+ 1);
111 if(path
->realm
== NULL
){
112 r
->next
= path
; /* XXX */
113 krb5_set_error_string (context
, "malloc: out of memory");
116 memcpy(path
->realm
, from
, p
- from
);
117 path
->realm
[p
- from
] = '\0';
121 krb5_clear_error_string (context
);
122 return KRB5KDC_ERR_POLICY
;
130 make_paths(krb5_context context
,
131 struct tr_realm
*realms
, const char *client_realm
,
132 const char *server_realm
)
136 const char *prev_realm
= client_realm
;
137 const char *next_realm
= NULL
;
138 for(r
= realms
; r
; r
= r
->next
){
139 /* it *might* be that you can have more than one empty
140 component in a row, at least that's how I interpret the
141 "," exception in 1510 */
142 if(r
->realm
[0] == '\0'){
143 while(r
->next
&& r
->next
->realm
[0] == '\0')
146 next_realm
= r
->next
->realm
;
148 next_realm
= server_realm
;
149 ret
= make_path(context
, r
, prev_realm
, next_realm
);
155 prev_realm
= r
->realm
;
161 expand_realms(krb5_context context
,
162 struct tr_realm
*realms
, const char *client_realm
)
165 const char *prev_realm
= NULL
;
166 for(r
= realms
; r
; r
= r
->next
){
169 size_t len
= strlen(r
->realm
) + strlen(prev_realm
) + 1;
171 if(prev_realm
== NULL
)
172 prev_realm
= client_realm
;
173 tmp
= realloc(r
->realm
, len
);
176 krb5_set_error_string (context
, "malloc: out of memory");
180 strlcat(r
->realm
, prev_realm
, len
);
181 }else if(r
->leading_slash
&& !r
->leading_space
&& prev_realm
){
182 /* yet another exception: if you use x500-names, the
183 leading realm doesn't have to be "quoted" with a space */
185 size_t len
= strlen(r
->realm
) + strlen(prev_realm
) + 1;
190 krb5_set_error_string (context
, "malloc: out of memory");
193 strlcpy(tmp
, prev_realm
, len
);
194 strlcat(tmp
, r
->realm
, len
);
198 prev_realm
= r
->realm
;
203 static struct tr_realm
*
204 make_realm(char *realm
)
209 r
= calloc(1, sizeof(*r
));
215 for(p
= q
= r
->realm
; *p
; p
++){
216 if(p
== r
->realm
&& *p
== ' '){
217 r
->leading_space
= 1;
220 if(q
== r
->realm
&& *p
== '/')
221 r
->leading_slash
= 1;
231 if(p
[0] == '.' && p
[1] == '\0')
239 static struct tr_realm
*
240 append_realm(struct tr_realm
*head
, struct tr_realm
*r
)
248 while(p
->next
) p
= p
->next
;
254 decode_realms(krb5_context context
,
255 const char *tr
, int length
, struct tr_realm
**realms
)
257 struct tr_realm
*r
= NULL
;
261 const char *start
= tr
;
264 for(i
= 0; i
< length
; i
++){
274 tmp
= malloc(tr
+ i
- start
+ 1);
275 memcpy(tmp
, start
, tr
+ i
- start
);
276 tmp
[tr
+ i
- start
] = '\0';
279 free_realms(*realms
);
280 krb5_set_error_string (context
, "malloc: out of memory");
283 *realms
= append_realm(*realms
, r
);
287 tmp
= malloc(tr
+ i
- start
+ 1);
288 memcpy(tmp
, start
, tr
+ i
- start
);
289 tmp
[tr
+ i
- start
] = '\0';
292 free_realms(*realms
);
293 krb5_set_error_string (context
, "malloc: out of memory");
296 *realms
= append_realm(*realms
, r
);
303 krb5_domain_x500_decode(krb5_context context
,
304 krb5_data tr
, char ***realms
, int *num_realms
,
305 const char *client_realm
, const char *server_realm
)
307 struct tr_realm
*r
= NULL
;
308 struct tr_realm
*p
, **q
;
317 /* split string in components */
318 ret
= decode_realms(context
, tr
.data
, tr
.length
, &r
);
322 /* apply prefix rule */
323 ret
= expand_realms(context
, r
, client_realm
);
327 ret
= make_paths(context
, r
, client_realm
, server_realm
);
331 /* remove empty components and count realms */
335 if(p
->realm
[0] == '\0'){
346 if (*num_realms
< 0 || *num_realms
+ 1 > UINT_MAX
/sizeof(**realms
))
351 R
= malloc((*num_realms
+ 1) * sizeof(*R
));
366 krb5_domain_x500_encode(char **realms
, int num_realms
, krb5_data
*encoding
)
371 krb5_data_zero(encoding
);
374 for(i
= 0; i
< num_realms
; i
++){
375 len
+= strlen(realms
[i
]);
376 if(realms
[i
][0] == '/')
379 len
+= num_realms
- 1;
384 for(i
= 0; i
< num_realms
; i
++){
385 if(i
&& i
< num_realms
- 1)
386 strlcat(s
, ",", len
+ 1);
387 if(realms
[i
][0] == '/')
388 strlcat(s
, " ", len
+ 1);
389 strlcat(s
, realms
[i
], len
+ 1);
392 encoding
->length
= strlen(s
);
397 krb5_check_transited(krb5_context context
,
398 krb5_const_realm client_realm
,
399 krb5_const_realm server_realm
,
411 tr_realms
= krb5_config_get_strings(context
, NULL
,
416 for(i
= 0; i
< num_realms
; i
++) {
417 for(p
= tr_realms
; p
&& *p
; p
++) {
418 if(strcmp(*p
, realms
[i
]) == 0)
421 if(p
== NULL
|| *p
== NULL
) {
422 krb5_config_free_strings(tr_realms
);
423 krb5_set_error_string (context
, "no transit through realm %s",
427 return KRB5KRB_AP_ERR_ILL_CR_TKT
;
430 krb5_config_free_strings(tr_realms
);
435 krb5_check_transited_realms(krb5_context context
,
436 const char *const *realms
,
442 char **bad_realms
= krb5_config_get_strings(context
, NULL
,
444 "transited_realms_reject",
446 if(bad_realms
== NULL
)
449 for(i
= 0; i
< num_realms
; i
++) {
451 for(p
= bad_realms
; *p
; p
++)
452 if(strcmp(*p
, realms
[i
]) == 0) {
453 krb5_set_error_string (context
, "no transit through realm %s",
455 ret
= KRB5KRB_AP_ERR_ILL_CR_TKT
;
461 krb5_config_free_strings(bad_realms
);
467 main(int argc
, char **argv
)
473 x
.length
= strlen(x
.data
);
474 if(domain_expand(x
, &r
, &num
, argv
[2], argv
[3]))
476 for(i
= 0; i
< num
; i
++)
477 printf("%s\n", r
[i
]);