summaryrefslogtreecommitdiffstats
path: root/src/plugins/kdb/ldap/ldap_exp.c
blob: 0fb014a89f63f95ed3f16ba0dc6333748c23daaa (plain)
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
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
 * lib/kdb/kdb_ldap/ldap_exp.c
 *
 * Copyright (c) 2004-2005, Novell, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   * Redistributions of source code must retain the above copyright notice,
 *       this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *   * The copyright holder's name is not used to endorse or promote products
 *       derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "k5-int.h"
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdio.h>
#include <errno.h>
#include <utime.h>
#include <kdb5.h>
#include "kdb_ldap.h"
#include "ldap_principal.h"
#include "ldap_pwd_policy.h"


/*
 *      Exposed API
 */

kdb_vftabl PLUGIN_SYMBOL_NAME(krb5_ldap, kdb_function_table) = {
    1,                                      /* major version number 1 */
    0,                                      /* minor version number 0 */
    /* init_library */                      krb5_ldap_lib_init,
    /* fini_library */                      krb5_ldap_lib_cleanup,
    /* init_module */                       krb5_ldap_open,
    /* fini_module */                       krb5_ldap_close,
    /* create */                            krb5_ldap_create,
    /* destroy */                           krb5_ldap_delete_realm_1,
    /* get_age */                           krb5_ldap_get_age,
    /* lock */                              krb5_ldap_lock,
    /* unlock */                            krb5_ldap_unlock,
    /* get_principal */                     krb5_ldap_get_principal,
    /* free_principal */                    krb5_ldap_free_principal,
    /* put_principal */                     krb5_ldap_put_principal,
    /* delete_principal */                  krb5_ldap_delete_principal,
    /* iterate */                           krb5_ldap_iterate,
    /* create_policy */                     krb5_ldap_create_password_policy,
    /* get_policy */                        krb5_ldap_get_password_policy,
    /* put_policy */                        krb5_ldap_put_password_policy,
    /* iter_policy */                       krb5_ldap_iterate_password_policy,
    /* delete_policy */                     krb5_ldap_delete_password_policy,
    /* free_policy */                       krb5_ldap_free_password_policy,
    /* alloc */                             krb5_ldap_alloc,
    /* free */                              krb5_ldap_free,
    /* optional functions */
    /* set_master_key_list */               krb5_ldap_set_mkey_list,
    /* get_master_key_list */               krb5_ldap_get_mkey_list,
    /* store_master_key */                  NULL,
    /* fetch_master_key */                  NULL /* krb5_ldap_fetch_mkey */,
    /* fetch_master_key_list */             NULL,
    /* store_master_key_list */             NULL,
    /* Search enc type */                   NULL,
    /* Change pwd   */                      NULL,
    /* promote_db */                        NULL,
    /* decrypt_key_data */                  NULL,
    /* encrypt_key_data */                  NULL,
    /* invoke */                            krb5_ldap_invoke,

};