xref: /freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_realm.h (revision 7f2fe78b9dd5f51c821d771b63d2e096f6fd49e9)
1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 /* plugins/kdb/ldap/libkdb_ldap/ldap_realm.h */
3 /*
4  * Copyright (c) 2004-2005, Novell, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  *   * Redistributions of source code must retain the above copyright notice,
11  *       this list of conditions and the following disclaimer.
12  *   * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in the
14  *       documentation and/or other materials provided with the distribution.
15  *   * The copyright holder's name is not used to endorse or promote products
16  *       derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 #ifndef _LDAP_REALM_H
32 #define _LDAP_REALM_H 1
33 
34 /* realm specific mask */
35 #define LDAP_REALM_SUBTREE            0x0001
36 #define LDAP_REALM_SEARCHSCOPE        0x0002
37 /* 0x0004 was LDAP_REALM_POLICYREFERENCE but it was unused */
38 #define LDAP_REALM_UPENABLED          0x0008
39 #define LDAP_REALM_LDAPSERVERS        0x0010
40 #define LDAP_REALM_KDCSERVERS         0x0020
41 #define LDAP_REALM_ADMINSERVERS       0x0040
42 #define LDAP_REALM_PASSWDSERVERS      0x0080
43 #define LDAP_REALM_MAXTICKETLIFE      0x0100
44 #define LDAP_REALM_MAXRENEWLIFE       0x0200
45 #define LDAP_REALM_KRBTICKETFLAGS     0x0400
46 #define LDAP_REALM_CONTREF            0x0800
47 
48 extern char *policy_attributes[];
49 
50 extern char *realm_attributes[];
51 
52 /* realm container structure */
53 
54 typedef struct _krb5_ldap_realm_params {
55     char          *realmdn;
56     char          *realm_name;
57     char          **subtree;
58     char          *containerref;
59     int           search_scope;
60     int           upenabled;
61     int           subtreecount;
62     krb5_int32    max_life;
63     krb5_int32    max_renewable_life;
64     krb5_int32    tktflags;
65     char          **kdcservers;
66     char          **adminservers;
67     char          **passwdservers;
68     krb5_tl_data  *tl_data;
69     long          mask;
70 } krb5_ldap_realm_params;
71 
72 
73 krb5_error_code
74 krb5_ldap_list_realm(krb5_context , char ***);
75 
76 krb5_error_code
77 krb5_ldap_delete_realm(krb5_context, char *);
78 
79 krb5_error_code
80 krb5_ldap_modify_realm(krb5_context, krb5_ldap_realm_params *, int);
81 
82 krb5_error_code
83 krb5_ldap_create_realm(krb5_context, krb5_ldap_realm_params *, int);
84 
85 krb5_error_code
86 krb5_ldap_read_realm_params(krb5_context, char *, krb5_ldap_realm_params **,
87                             int *);
88 
89 void
90 krb5_ldap_free_realm_params(krb5_ldap_realm_params *);
91 
92 krb5_error_code
93 krb5_ldap_delete_realm_1(krb5_context, char *, char **);
94 
95 char *
96 ldap_filter_correct(char *);
97 
98 #endif
99