2 * Copyright (c) 1997 - 2004 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "krb5_locl.h"
39 #include <CoreFoundation/CoreFoundation.h>
42 /* Gaah! I want a portable funopen */
49 config_fgets(char *str
, size_t len
, struct fileptr
*ptr
)
51 /* XXX this is not correct, in that they don't do the same if the
52 line is longer than len */
54 return fgets(str
, len
, ptr
->f
);
56 /* this is almost strsep_copy */
61 p
= ptr
->s
+ strcspn(ptr
->s
, "\n");
64 l
= min(len
, (size_t)(p
- ptr
->s
));
66 memcpy(str
, ptr
->s
, l
);
74 static krb5_error_code
parse_section(char *p
, krb5_config_section
**s
,
75 krb5_config_section
**res
,
76 const char **err_message
);
77 static krb5_error_code
parse_binding(struct fileptr
*f
, unsigned *lineno
, char *p
,
78 krb5_config_binding
**b
,
79 krb5_config_binding
**parent
,
80 const char **err_message
);
81 static krb5_error_code
parse_list(struct fileptr
*f
, unsigned *lineno
,
82 krb5_config_binding
**parent
,
83 const char **err_message
);
86 _krb5_config_get_entry(krb5_config_section
**parent
, const char *name
, int type
)
88 krb5_config_section
**q
;
90 for(q
= parent
; *q
!= NULL
; q
= &(*q
)->next
)
91 if(type
== krb5_config_list
&&
92 (unsigned)type
== (*q
)->type
&&
93 strcmp(name
, (*q
)->name
) == 0)
95 *q
= calloc(1, sizeof(**q
));
98 (*q
)->name
= strdup(name
);
100 if((*q
)->name
== NULL
) {
118 * starting at the line in `p', storing the resulting structure in
119 * `s' and hooking it into `parent'.
120 * Store the error message in `err_message'.
123 static krb5_error_code
124 parse_section(char *p
, krb5_config_section
**s
, krb5_config_section
**parent
,
125 const char **err_message
)
128 krb5_config_section
*tmp
;
130 p1
= strchr (p
+ 1, ']');
132 *err_message
= "missing ]";
133 return KRB5_CONFIG_BADFORMAT
;
136 tmp
= _krb5_config_get_entry(parent
, p
+ 1, krb5_config_list
);
138 *err_message
= "out of memory";
139 return KRB5_CONFIG_BADFORMAT
;
146 * Parse a brace-enclosed list from `f', hooking in the structure at
148 * Store the error message in `err_message'.
151 static krb5_error_code
152 parse_list(struct fileptr
*f
, unsigned *lineno
, krb5_config_binding
**parent
,
153 const char **err_message
)
155 char buf
[KRB5_BUFSIZ
];
157 krb5_config_binding
*b
= NULL
;
158 unsigned beg_lineno
= *lineno
;
160 while(config_fgets(buf
, sizeof(buf
), f
) != NULL
) {
164 buf
[strcspn(buf
, "\r\n")] = '\0';
166 while(isspace((unsigned char)*p
))
168 if (*p
== '#' || *p
== ';' || *p
== '\0')
170 while(isspace((unsigned char)*p
))
176 ret
= parse_binding (f
, lineno
, p
, &b
, parent
, err_message
);
180 *lineno
= beg_lineno
;
181 *err_message
= "unclosed {";
182 return KRB5_CONFIG_BADFORMAT
;
189 static krb5_error_code
190 parse_binding(struct fileptr
*f
, unsigned *lineno
, char *p
,
191 krb5_config_binding
**b
, krb5_config_binding
**parent
,
192 const char **err_message
)
194 krb5_config_binding
*tmp
;
196 krb5_error_code ret
= 0;
199 while (*p
&& *p
!= '=' && !isspace((unsigned char)*p
))
202 *err_message
= "missing =";
203 return KRB5_CONFIG_BADFORMAT
;
206 while (isspace((unsigned char)*p
))
209 *err_message
= "missing =";
210 return KRB5_CONFIG_BADFORMAT
;
213 while(isspace((unsigned char)*p
))
217 tmp
= _krb5_config_get_entry(parent
, p1
, krb5_config_list
);
219 *err_message
= "out of memory";
220 return KRB5_CONFIG_BADFORMAT
;
222 ret
= parse_list (f
, lineno
, &tmp
->u
.list
, err_message
);
224 tmp
= _krb5_config_get_entry(parent
, p1
, krb5_config_string
);
226 *err_message
= "out of memory";
227 return KRB5_CONFIG_BADFORMAT
;
231 while(p
> p1
&& isspace((unsigned char)*(p
-1)))
234 tmp
->u
.string
= strdup(p1
);
240 #if defined(__APPLE__)
242 #if MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
243 #define HAVE_CFPROPERTYLISTCREATEWITHSTREAM 1
247 cfstring2cstring(CFStringRef string
)
252 str
= (char *) CFStringGetCStringPtr(string
, kCFStringEncodingUTF8
);
256 len
= CFStringGetLength(string
);
257 len
= 1 + CFStringGetMaximumSizeForEncoding(len
, kCFStringEncodingUTF8
);
262 if (!CFStringGetCString (string
, str
, len
, kCFStringEncodingUTF8
)) {
270 convert_content(const void *key
, const void *value
, void *context
)
272 krb5_config_section
*tmp
, **parent
= context
;
275 if (CFGetTypeID(key
) != CFStringGetTypeID())
278 k
= cfstring2cstring(key
);
282 if (CFGetTypeID(value
) == CFStringGetTypeID()) {
283 tmp
= _krb5_config_get_entry(parent
, k
, krb5_config_string
);
284 tmp
->u
.string
= cfstring2cstring(value
);
285 } else if (CFGetTypeID(value
) == CFDictionaryGetTypeID()) {
286 tmp
= _krb5_config_get_entry(parent
, k
, krb5_config_list
);
287 CFDictionaryApplyFunction(value
, convert_content
, &tmp
->u
.list
);
294 static krb5_error_code
295 parse_plist_config(krb5_context context
, const char *path
, krb5_config_section
**parent
)
301 url
= CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault
, (UInt8
*)path
, strlen(path
), FALSE
);
303 krb5_clear_error_message(context
);
307 s
= CFReadStreamCreateWithFile(kCFAllocatorDefault
, url
);
310 krb5_clear_error_message(context
);
314 if (!CFReadStreamOpen(s
)) {
316 krb5_clear_error_message(context
);
320 #ifdef HAVE_CFPROPERTYLISTCREATEWITHSTREAM
321 d
= (CFDictionaryRef
)CFPropertyListCreateWithStream(NULL
, s
, 0, kCFPropertyListImmutable
, NULL
, NULL
);
323 d
= (CFDictionaryRef
)CFPropertyListCreateFromStream(NULL
, s
, 0, kCFPropertyListImmutable
, NULL
, NULL
);
327 krb5_clear_error_message(context
);
331 CFDictionaryApplyFunction(d
, convert_content
, parent
);
341 * Parse the config file `fname', generating the structures into `res'
342 * returning error messages in `err_message'
345 static krb5_error_code
346 krb5_config_parse_debug (struct fileptr
*f
,
347 krb5_config_section
**res
,
349 const char **err_message
)
351 krb5_config_section
*s
= NULL
;
352 krb5_config_binding
*b
= NULL
;
353 char buf
[KRB5_BUFSIZ
];
356 while (config_fgets(buf
, sizeof(buf
), f
) != NULL
) {
360 buf
[strcspn(buf
, "\r\n")] = '\0';
362 while(isspace((unsigned char)*p
))
364 if (*p
== '#' || *p
== ';')
367 ret
= parse_section(p
, &s
, res
, err_message
);
371 } else if (*p
== '}') {
372 *err_message
= "unmatched }";
373 return KRB5_CONFIG_BADFORMAT
;
374 } else if(*p
!= '\0') {
376 *err_message
= "binding before section";
377 return KRB5_CONFIG_BADFORMAT
;
379 ret
= parse_binding(f
, lineno
, p
, &b
, &s
->u
.list
, err_message
);
388 is_plist_file(const char *fname
)
390 size_t len
= strlen(fname
);
391 char suffix
[] = ".plist";
392 if (len
< sizeof(suffix
))
394 if (strcasecmp(&fname
[len
- (sizeof(suffix
) - 1)], suffix
) != 0)
400 * Parse a configuration file and add the result into res. This
401 * interface can be used to parse several configuration files into one
402 * resulting krb5_config_section by calling it repeatably.
404 * @param context a Kerberos 5 context.
405 * @param fname a file name to a Kerberos configuration file
406 * @param res the returned result, must be free with krb5_free_config_files().
407 * @return Return an error code or 0, see krb5_get_error_message().
409 * @ingroup krb5_support
412 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
413 krb5_config_parse_file_multi (krb5_context context
,
415 krb5_config_section
**res
)
418 char *newfname
= NULL
;
424 * If the fname starts with "~/" parse configuration file in the
425 * current users home directory. The behavior can be disabled and
426 * enabled by calling krb5_set_home_dir_access().
428 if (fname
[0] == '~' && fname
[1] == '/') {
429 #ifndef KRB5_USE_PATH_TOKENS
430 const char *home
= NULL
;
432 if (!_krb5_homedir_access(context
)) {
433 krb5_set_error_message(context
, EPERM
,
434 "Access to home directory not allowed");
439 home
= getenv("HOME");
442 struct passwd
*pw
= getpwuid(getuid());
449 aret
= asprintf(&newfname
, "%s%s", home
, &fname
[1]);
450 if (aret
== -1 || newfname
== NULL
)
451 return krb5_enomem(context
);
454 #else /* KRB5_USE_PATH_TOKENS */
455 if (asprintf(&newfname
, "%%{USERCONFIG}%s", &fname
[1]) < 0 ||
457 return krb5_enomem(context
);
462 if (is_plist_file(fname
)) {
464 ret
= parse_plist_config(context
, fname
, res
);
466 krb5_set_error_message(context
, ret
,
467 "Failed to parse plist %s", fname
);
473 krb5_set_error_message(context
, ENOENT
,
474 "no support for plist configuration files");
478 #ifdef KRB5_USE_PATH_TOKENS
479 char * exp_fname
= NULL
;
481 ret
= _krb5_expand_path_tokens(context
, fname
, &exp_fname
);
490 fname
= newfname
= exp_fname
;
493 f
.f
= fopen(fname
, "r");
497 krb5_set_error_message (context
, ret
, "open %s: %s",
498 fname
, strerror(ret
));
504 ret
= krb5_config_parse_debug (&f
, res
, &lineno
, &str
);
507 krb5_set_error_message (context
, ret
, "%s:%u: %s",
517 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
518 krb5_config_parse_file (krb5_context context
,
520 krb5_config_section
**res
)
523 return krb5_config_parse_file_multi(context
, fname
, res
);
527 free_binding (krb5_context context
, krb5_config_binding
*b
)
529 krb5_config_binding
*next_b
;
533 if (b
->type
== krb5_config_string
)
535 else if (b
->type
== krb5_config_list
)
536 free_binding (context
, b
->u
.list
);
538 krb5_abortx(context
, "unknown binding type (%d) in free_binding",
547 * Free configuration file section, the result of
548 * krb5_config_parse_file() and krb5_config_parse_file_multi().
550 * @param context A Kerberos 5 context
551 * @param s the configuration section to free
553 * @return returns 0 on successes, otherwise an error code, see
554 * krb5_get_error_message()
556 * @ingroup krb5_support
559 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
560 krb5_config_file_free (krb5_context context
, krb5_config_section
*s
)
562 free_binding (context
, s
);
566 #ifndef HEIMDAL_SMALLER
568 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
569 _krb5_config_copy(krb5_context context
,
570 krb5_config_section
*c
,
571 krb5_config_section
**head
)
573 krb5_config_binding
*d
, *previous
= NULL
;
578 d
= calloc(1, sizeof(*d
));
583 d
->name
= strdup(c
->name
);
585 if (d
->type
== krb5_config_string
)
586 d
->u
.string
= strdup(c
->u
.string
);
587 else if (d
->type
== krb5_config_list
)
588 _krb5_config_copy (context
, c
->u
.list
, &d
->u
.list
);
591 "unknown binding type (%d) in krb5_config_copy",
602 #endif /* HEIMDAL_SMALLER */
604 KRB5_LIB_FUNCTION
const void * KRB5_LIB_CALL
605 _krb5_config_get_next (krb5_context context
,
606 const krb5_config_section
*c
,
607 const krb5_config_binding
**pointer
,
614 va_start(args
, type
);
615 ret
= _krb5_config_vget_next (context
, c
, pointer
, type
, args
);
621 vget_next(krb5_context context
,
622 const krb5_config_binding
*b
,
623 const krb5_config_binding
**pointer
,
628 const char *p
= va_arg(args
, const char *);
630 if(strcmp(b
->name
, name
) == 0) {
631 if(b
->type
== (unsigned)type
&& p
== NULL
) {
634 } else if(b
->type
== krb5_config_list
&& p
!= NULL
) {
635 return vget_next(context
, b
->u
.list
, pointer
, type
, p
, args
);
643 KRB5_LIB_FUNCTION
const void * KRB5_LIB_CALL
644 _krb5_config_vget_next (krb5_context context
,
645 const krb5_config_section
*c
,
646 const krb5_config_binding
**pointer
,
650 const krb5_config_binding
*b
;
659 if (*pointer
== NULL
) {
660 /* first time here, walk down the tree looking for the right
662 p
= va_arg(args
, const char *);
665 return vget_next(context
, c
, pointer
, type
, p
, args
);
668 /* we were called again, so just look for more entries with the
669 same name and type */
670 for (b
= (*pointer
)->next
; b
!= NULL
; b
= b
->next
) {
671 if(strcmp(b
->name
, (*pointer
)->name
) == 0 && b
->type
== (unsigned)type
) {
679 KRB5_LIB_FUNCTION
const void * KRB5_LIB_CALL
680 _krb5_config_get (krb5_context context
,
681 const krb5_config_section
*c
,
688 va_start(args
, type
);
689 ret
= _krb5_config_vget (context
, c
, type
, args
);
696 _krb5_config_vget (krb5_context context
,
697 const krb5_config_section
*c
,
701 const krb5_config_binding
*foo
= NULL
;
703 return _krb5_config_vget_next (context
, c
, &foo
, type
, args
);
707 * Get a list of configuration binding list for more processing
709 * @param context A Kerberos 5 context.
710 * @param c a configuration section, or NULL to use the section from context
711 * @param ... a list of names, terminated with NULL.
713 * @return NULL if configuration list is not found, a list otherwise
715 * @ingroup krb5_support
718 KRB5_LIB_FUNCTION
const krb5_config_binding
* KRB5_LIB_CALL
719 krb5_config_get_list (krb5_context context
,
720 const krb5_config_section
*c
,
723 const krb5_config_binding
*ret
;
727 ret
= krb5_config_vget_list (context
, c
, args
);
733 * Get a list of configuration binding list for more processing
735 * @param context A Kerberos 5 context.
736 * @param c a configuration section, or NULL to use the section from context
737 * @param args a va_list of arguments
739 * @return NULL if configuration list is not found, a list otherwise
741 * @ingroup krb5_support
744 KRB5_LIB_FUNCTION
const krb5_config_binding
* KRB5_LIB_CALL
745 krb5_config_vget_list (krb5_context context
,
746 const krb5_config_section
*c
,
749 return _krb5_config_vget (context
, c
, krb5_config_list
, args
);
753 * Returns a "const char *" to a string in the configuration database.
754 * The string may not be valid after a reload of the configuration
755 * database so a caller should make a local copy if it needs to keep
758 * @param context A Kerberos 5 context.
759 * @param c a configuration section, or NULL to use the section from context
760 * @param ... a list of names, terminated with NULL.
762 * @return NULL if configuration string not found, a string otherwise
764 * @ingroup krb5_support
767 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
768 krb5_config_get_string (krb5_context context
,
769 const krb5_config_section
*c
,
776 ret
= krb5_config_vget_string (context
, c
, args
);
782 * Like krb5_config_get_string(), but uses a va_list instead of ...
784 * @param context A Kerberos 5 context.
785 * @param c a configuration section, or NULL to use the section from context
786 * @param args a va_list of arguments
788 * @return NULL if configuration string not found, a string otherwise
790 * @ingroup krb5_support
793 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
794 krb5_config_vget_string (krb5_context context
,
795 const krb5_config_section
*c
,
798 return _krb5_config_vget (context
, c
, krb5_config_string
, args
);
802 * Like krb5_config_vget_string(), but instead of returning NULL,
803 * instead return a default value.
805 * @param context A Kerberos 5 context.
806 * @param c a configuration section, or NULL to use the section from context
807 * @param def_value the default value to return if no configuration
808 * found in the database.
809 * @param args a va_list of arguments
811 * @return a configuration string
813 * @ingroup krb5_support
816 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
817 krb5_config_vget_string_default (krb5_context context
,
818 const krb5_config_section
*c
,
819 const char *def_value
,
824 ret
= krb5_config_vget_string (context
, c
, args
);
831 * Like krb5_config_get_string(), but instead of returning NULL,
832 * instead return a default value.
834 * @param context A Kerberos 5 context.
835 * @param c a configuration section, or NULL to use the section from context
836 * @param def_value the default value to return if no configuration
837 * found in the database.
838 * @param ... a list of names, terminated with NULL.
840 * @return a configuration string
842 * @ingroup krb5_support
845 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
846 krb5_config_get_string_default (krb5_context context
,
847 const krb5_config_section
*c
,
848 const char *def_value
,
854 va_start(args
, def_value
);
855 ret
= krb5_config_vget_string_default (context
, c
, def_value
, args
);
861 next_component_string(char * begin
, const char * delims
, char **state
)
872 while (*end
== '"') {
873 char * t
= strchr(end
+ 1, '"');
884 pos
= strcspn(end
, delims
);
891 if (*begin
== '"' && *(end
- 1) == '"' && begin
+ 1 < end
) {
892 begin
++; *(end
- 1) = '\0';
898 if (*begin
== '"' && *(end
- 1) == '"' && begin
+ 1 < end
) {
899 begin
++; *(end
- 1) = '\0';
905 * Get a list of configuration strings, free the result with
906 * krb5_config_free_strings().
908 * @param context A Kerberos 5 context.
909 * @param c a configuration section, or NULL to use the section from context
910 * @param args a va_list of arguments
912 * @return TRUE or FALSE
914 * @ingroup krb5_support
917 KRB5_LIB_FUNCTION
char ** KRB5_LIB_CALL
918 krb5_config_vget_strings(krb5_context context
,
919 const krb5_config_section
*c
,
922 char **strings
= NULL
;
924 const krb5_config_binding
*b
= NULL
;
927 while((p
= _krb5_config_vget_next(context
, c
, &b
,
928 krb5_config_string
, args
))) {
929 char *tmp
= strdup(p
);
934 s
= next_component_string(tmp
, " \t", &pos
);
936 char **tmp2
= realloc(strings
, (nstr
+ 1) * sizeof(*strings
));
940 strings
[nstr
] = strdup(s
);
942 if(strings
[nstr
-1] == NULL
)
944 s
= next_component_string(NULL
, " \t", &pos
);
949 char **tmp
= realloc(strings
, (nstr
+ 1) * sizeof(*strings
));
953 strings
[nstr
] = NULL
;
965 * Get a list of configuration strings, free the result with
966 * krb5_config_free_strings().
968 * @param context A Kerberos 5 context.
969 * @param c a configuration section, or NULL to use the section from context
970 * @param ... a list of names, terminated with NULL.
972 * @return TRUE or FALSE
974 * @ingroup krb5_support
977 KRB5_LIB_FUNCTION
char** KRB5_LIB_CALL
978 krb5_config_get_strings(krb5_context context
,
979 const krb5_config_section
*c
,
985 ret
= krb5_config_vget_strings(context
, c
, ap
);
991 * Free the resulting strings from krb5_config-get_strings() and
992 * krb5_config_vget_strings().
994 * @param strings strings to free
996 * @ingroup krb5_support
999 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
1000 krb5_config_free_strings(char **strings
)
1011 * Like krb5_config_get_bool_default() but with a va_list list of
1012 * configuration selection.
1014 * Configuration value to a boolean value, where yes/true and any
1015 * non-zero number means TRUE and other value is FALSE.
1017 * @param context A Kerberos 5 context.
1018 * @param c a configuration section, or NULL to use the section from context
1019 * @param def_value the default value to return if no configuration
1020 * found in the database.
1021 * @param args a va_list of arguments
1023 * @return TRUE or FALSE
1025 * @ingroup krb5_support
1028 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1029 krb5_config_vget_bool_default (krb5_context context
,
1030 const krb5_config_section
*c
,
1031 krb5_boolean def_value
,
1035 str
= krb5_config_vget_string (context
, c
, args
);
1038 if(strcasecmp(str
, "yes") == 0 ||
1039 strcasecmp(str
, "true") == 0 ||
1040 atoi(str
)) return TRUE
;
1045 * krb5_config_get_bool() will convert the configuration
1046 * option value to a boolean value, where yes/true and any non-zero
1047 * number means TRUE and other value is FALSE.
1049 * @param context A Kerberos 5 context.
1050 * @param c a configuration section, or NULL to use the section from context
1051 * @param args a va_list of arguments
1053 * @return TRUE or FALSE
1055 * @ingroup krb5_support
1058 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1059 krb5_config_vget_bool (krb5_context context
,
1060 const krb5_config_section
*c
,
1063 return krb5_config_vget_bool_default (context
, c
, FALSE
, args
);
1067 * krb5_config_get_bool_default() will convert the configuration
1068 * option value to a boolean value, where yes/true and any non-zero
1069 * number means TRUE and other value is FALSE.
1071 * @param context A Kerberos 5 context.
1072 * @param c a configuration section, or NULL to use the section from context
1073 * @param def_value the default value to return if no configuration
1074 * found in the database.
1075 * @param ... a list of names, terminated with NULL.
1077 * @return TRUE or FALSE
1079 * @ingroup krb5_support
1082 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1083 krb5_config_get_bool_default (krb5_context context
,
1084 const krb5_config_section
*c
,
1085 krb5_boolean def_value
,
1090 va_start(ap
, def_value
);
1091 ret
= krb5_config_vget_bool_default(context
, c
, def_value
, ap
);
1097 * Like krb5_config_get_bool() but with a va_list list of
1098 * configuration selection.
1100 * Configuration value to a boolean value, where yes/true and any
1101 * non-zero number means TRUE and other value is FALSE.
1103 * @param context A Kerberos 5 context.
1104 * @param c a configuration section, or NULL to use the section from context
1105 * @param ... a list of names, terminated with NULL.
1107 * @return TRUE or FALSE
1109 * @ingroup krb5_support
1112 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1113 krb5_config_get_bool (krb5_context context
,
1114 const krb5_config_section
*c
,
1120 ret
= krb5_config_vget_bool (context
, c
, ap
);
1126 * Get the time from the configuration file using a relative time.
1128 * Like krb5_config_get_time_default() but with a va_list list of
1129 * configuration selection.
1131 * @param context A Kerberos 5 context.
1132 * @param c a configuration section, or NULL to use the section from context
1133 * @param def_value the default value to return if no configuration
1134 * found in the database.
1135 * @param args a va_list of arguments
1137 * @return parsed the time (or def_value on parse error)
1139 * @ingroup krb5_support
1142 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1143 krb5_config_vget_time_default (krb5_context context
,
1144 const krb5_config_section
*c
,
1151 str
= krb5_config_vget_string (context
, c
, args
);
1154 if (krb5_string_to_deltat(str
, &t
))
1160 * Get the time from the configuration file using a relative time, for example: 1h30s
1162 * @param context A Kerberos 5 context.
1163 * @param c a configuration section, or NULL to use the section from context
1164 * @param args a va_list of arguments
1166 * @return parsed the time or -1 on error
1168 * @ingroup krb5_support
1171 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1172 krb5_config_vget_time (krb5_context context
,
1173 const krb5_config_section
*c
,
1176 return krb5_config_vget_time_default (context
, c
, -1, args
);
1180 * Get the time from the configuration file using a relative time, for example: 1h30s
1182 * @param context A Kerberos 5 context.
1183 * @param c a configuration section, or NULL to use the section from context
1184 * @param def_value the default value to return if no configuration
1185 * found in the database.
1186 * @param ... a list of names, terminated with NULL.
1188 * @return parsed the time (or def_value on parse error)
1190 * @ingroup krb5_support
1193 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1194 krb5_config_get_time_default (krb5_context context
,
1195 const krb5_config_section
*c
,
1201 va_start(ap
, def_value
);
1202 ret
= krb5_config_vget_time_default(context
, c
, def_value
, ap
);
1208 * Get the time from the configuration file using a relative time, for example: 1h30s
1210 * @param context A Kerberos 5 context.
1211 * @param c a configuration section, or NULL to use the section from context
1212 * @param ... a list of names, terminated with NULL.
1214 * @return parsed the time or -1 on error
1216 * @ingroup krb5_support
1219 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1220 krb5_config_get_time (krb5_context context
,
1221 const krb5_config_section
*c
,
1227 ret
= krb5_config_vget_time (context
, c
, ap
);
1233 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1234 krb5_config_vget_int_default (krb5_context context
,
1235 const krb5_config_section
*c
,
1240 str
= krb5_config_vget_string (context
, c
, args
);
1246 l
= strtol(str
, &endptr
, 0);
1254 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1255 krb5_config_vget_int (krb5_context context
,
1256 const krb5_config_section
*c
,
1259 return krb5_config_vget_int_default (context
, c
, -1, args
);
1262 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1263 krb5_config_get_int_default (krb5_context context
,
1264 const krb5_config_section
*c
,
1270 va_start(ap
, def_value
);
1271 ret
= krb5_config_vget_int_default(context
, c
, def_value
, ap
);
1276 KRB5_LIB_FUNCTION
int KRB5_LIB_CALL
1277 krb5_config_get_int (krb5_context context
,
1278 const krb5_config_section
*c
,
1284 ret
= krb5_config_vget_int (context
, c
, ap
);
1290 #ifndef HEIMDAL_SMALLER
1293 * Deprecated: configuration files are not strings
1295 * @ingroup krb5_deprecated
1298 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1299 krb5_config_parse_string_multi(krb5_context context
,
1301 krb5_config_section
**res
)
1302 KRB5_DEPRECATED_FUNCTION("Use X instead")
1305 unsigned lineno
= 0;
1306 krb5_error_code ret
;
1311 ret
= krb5_config_parse_debug (&f
, res
, &lineno
, &str
);
1313 krb5_set_error_message (context
, ret
, "%s:%u: %s",
1314 "<constant>", lineno
, str
);