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("$Heimdal: transited.c 21745 2007-07-31 16:11:25Z lha $"
39 /* this is an attempt at one of the most horrible `compression'
40 schemes that has ever been invented; it's so amazingly brain-dead
41 that words can not describe it, and all this just to save a few
46 unsigned leading_space
:1;
47 unsigned leading_slash
:1;
48 unsigned trailing_dot
:1;
49 struct tr_realm
*next
;
53 free_realms(struct tr_realm
*r
)
65 make_path(krb5_context context
, struct tr_realm
*r
,
66 const char *from
, const char *to
)
69 struct tr_realm
*path
= r
->next
;
72 if(strlen(from
) < strlen(to
)){
79 if(strcmp(from
+ strlen(from
) - strlen(to
), to
) == 0){
84 krb5_clear_error_string (context
);
85 return KRB5KDC_ERR_POLICY
;
88 if(strcmp(p
, to
) == 0)
90 tmp
= calloc(1, sizeof(*tmp
));
92 krb5_set_error_string (context
, "malloc: out of memory");
97 path
->realm
= strdup(p
);
98 if(path
->realm
== NULL
){
99 r
->next
= path
; /* XXX */
100 krb5_set_error_string (context
, "malloc: out of memory");
104 }else if(strncmp(from
, to
, strlen(to
)) == 0){
105 p
= from
+ strlen(from
);
107 while(p
>= from
&& *p
!= '/') p
--;
109 r
->next
= path
; /* XXX */
110 return KRB5KDC_ERR_POLICY
;
112 if(strncmp(to
, from
, p
- from
) == 0)
114 tmp
= calloc(1, sizeof(*tmp
));
116 krb5_set_error_string (context
, "malloc: out of memory");
121 path
->realm
= malloc(p
- from
+ 1);
122 if(path
->realm
== NULL
){
123 r
->next
= path
; /* XXX */
124 krb5_set_error_string (context
, "malloc: out of memory");
127 memcpy(path
->realm
, from
, p
- from
);
128 path
->realm
[p
- from
] = '\0';
132 krb5_clear_error_string (context
);
133 return KRB5KDC_ERR_POLICY
;
141 make_paths(krb5_context context
,
142 struct tr_realm
*realms
, const char *client_realm
,
143 const char *server_realm
)
147 const char *prev_realm
= client_realm
;
148 const char *next_realm
= NULL
;
149 for(r
= realms
; r
; r
= r
->next
){
150 /* it *might* be that you can have more than one empty
151 component in a row, at least that's how I interpret the
152 "," exception in 1510 */
153 if(r
->realm
[0] == '\0'){
154 while(r
->next
&& r
->next
->realm
[0] == '\0')
157 next_realm
= r
->next
->realm
;
159 next_realm
= server_realm
;
160 ret
= make_path(context
, r
, prev_realm
, next_realm
);
166 prev_realm
= r
->realm
;
172 expand_realms(krb5_context context
,
173 struct tr_realm
*realms
, const char *client_realm
)
176 const char *prev_realm
= NULL
;
177 for(r
= realms
; r
; r
= r
->next
){
182 if(prev_realm
== NULL
)
183 prev_realm
= client_realm
;
185 len
= strlen(r
->realm
) + strlen(prev_realm
) + 1;
187 tmp
= realloc(r
->realm
, len
);
190 krb5_set_error_string (context
, "malloc: out of memory");
194 strlcat(r
->realm
, prev_realm
, len
);
195 }else if(r
->leading_slash
&& !r
->leading_space
&& prev_realm
){
196 /* yet another exception: if you use x500-names, the
197 leading realm doesn't have to be "quoted" with a space */
199 size_t len
= strlen(r
->realm
) + strlen(prev_realm
) + 1;
204 krb5_set_error_string (context
, "malloc: out of memory");
207 strlcpy(tmp
, prev_realm
, len
);
208 strlcat(tmp
, r
->realm
, len
);
212 prev_realm
= r
->realm
;
217 static struct tr_realm
*
218 make_realm(char *realm
)
223 r
= calloc(1, sizeof(*r
));
229 for(p
= q
= r
->realm
; *p
; p
++){
230 if(p
== r
->realm
&& *p
== ' '){
231 r
->leading_space
= 1;
234 if(q
== r
->realm
&& *p
== '/')
235 r
->leading_slash
= 1;
245 if(p
[0] == '.' && p
[1] == '\0')
253 static struct tr_realm
*
254 append_realm(struct tr_realm
*head
, struct tr_realm
*r
)
262 while(p
->next
) p
= p
->next
;
268 decode_realms(krb5_context context
,
269 const char *tr
, int length
, struct tr_realm
**realms
)
271 struct tr_realm
*r
= NULL
;
275 const char *start
= tr
;
278 for(i
= 0; i
< length
; i
++){
288 tmp
= malloc(tr
+ i
- start
+ 1);
290 krb5_set_error_string (context
, "malloc: out of memory");
293 memcpy(tmp
, start
, tr
+ i
- start
);
294 tmp
[tr
+ i
- start
] = '\0';
297 free_realms(*realms
);
298 krb5_set_error_string (context
, "malloc: out of memory");
301 *realms
= append_realm(*realms
, r
);
305 tmp
= malloc(tr
+ i
- start
+ 1);
308 krb5_set_error_string (context
, "malloc: out of memory");
311 memcpy(tmp
, start
, tr
+ i
- start
);
312 tmp
[tr
+ i
- start
] = '\0';
315 free_realms(*realms
);
316 krb5_set_error_string (context
, "malloc: out of memory");
319 *realms
= append_realm(*realms
, r
);
325 krb5_error_code KRB5_LIB_FUNCTION
326 krb5_domain_x500_decode(krb5_context context
,
327 krb5_data tr
, char ***realms
, int *num_realms
,
328 const char *client_realm
, const char *server_realm
)
330 struct tr_realm
*r
= NULL
;
331 struct tr_realm
*p
, **q
;
340 /* split string in components */
341 ret
= decode_realms(context
, tr
.data
, tr
.length
, &r
);
345 /* apply prefix rule */
346 ret
= expand_realms(context
, r
, client_realm
);
350 ret
= make_paths(context
, r
, client_realm
, server_realm
);
354 /* remove empty components and count realms */
358 if(p
->realm
[0] == '\0'){
369 if (*num_realms
< 0 || *num_realms
+ 1 > UINT_MAX
/sizeof(**realms
))
374 R
= malloc((*num_realms
+ 1) * sizeof(*R
));
388 krb5_error_code KRB5_LIB_FUNCTION
389 krb5_domain_x500_encode(char **realms
, int num_realms
, krb5_data
*encoding
)
394 krb5_data_zero(encoding
);
397 for(i
= 0; i
< num_realms
; i
++){
398 len
+= strlen(realms
[i
]);
399 if(realms
[i
][0] == '/')
402 len
+= num_realms
- 1;
407 for(i
= 0; i
< num_realms
; i
++){
408 if(i
&& i
< num_realms
- 1)
409 strlcat(s
, ",", len
+ 1);
410 if(realms
[i
][0] == '/')
411 strlcat(s
, " ", len
+ 1);
412 strlcat(s
, realms
[i
], len
+ 1);
415 encoding
->length
= strlen(s
);
419 krb5_error_code KRB5_LIB_FUNCTION
420 krb5_check_transited(krb5_context context
,
421 krb5_const_realm client_realm
,
422 krb5_const_realm server_realm
,
434 tr_realms
= krb5_config_get_strings(context
, NULL
,
439 for(i
= 0; i
< num_realms
; i
++) {
440 for(p
= tr_realms
; p
&& *p
; p
++) {
441 if(strcmp(*p
, realms
[i
]) == 0)
444 if(p
== NULL
|| *p
== NULL
) {
445 krb5_config_free_strings(tr_realms
);
446 krb5_set_error_string (context
, "no transit through realm %s",
450 return KRB5KRB_AP_ERR_ILL_CR_TKT
;
453 krb5_config_free_strings(tr_realms
);
457 krb5_error_code KRB5_LIB_FUNCTION
458 krb5_check_transited_realms(krb5_context context
,
459 const char *const *realms
,
465 char **bad_realms
= krb5_config_get_strings(context
, NULL
,
467 "transited_realms_reject",
469 if(bad_realms
== NULL
)
472 for(i
= 0; i
< num_realms
; i
++) {
474 for(p
= bad_realms
; *p
; p
++)
475 if(strcmp(*p
, realms
[i
]) == 0) {
476 krb5_set_error_string (context
, "no transit through realm %s",
478 ret
= KRB5KRB_AP_ERR_ILL_CR_TKT
;
484 krb5_config_free_strings(bad_realms
);
490 main(int argc
, char **argv
)
496 x
.length
= strlen(x
.data
);
497 if(domain_expand(x
, &r
, &num
, argv
[2], argv
[3]))
499 for(i
= 0; i
< num
; i
++)
500 printf("%s\n", r
[i
]);