]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/init.c
From HEAD:
[openldap] / servers / slapd / back-shell / init.c
1 /* init.c - initialize shell backend */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26 /* ACKNOWLEDGEMENTS:
27  * This work was originally developed by the University of Michigan
28  * (as part of U-MICH LDAP).
29  */
30
31 #include "portable.h"
32
33 #include <stdio.h>
34
35 #include <ac/socket.h>
36
37 #include "slap.h"
38 #include "shell.h"
39
40 #if SLAPD_SHELL == SLAPD_MOD_DYNAMIC
41
42 int init_module(int argc, char *argv[]) {
43     BackendInfo bi;
44
45     memset( &bi, '\0', sizeof(bi) );
46     bi.bi_type = "shell";
47     bi.bi_init = shell_back_initialize;
48
49     backend_add(&bi);
50     return 0;
51 }
52
53 #endif /* SLAPD_SHELL */
54
55 int
56 shell_back_initialize(
57     BackendInfo *bi
58 )
59 {
60         bi->bi_open = 0;
61         bi->bi_config = 0;
62         bi->bi_close = 0;
63         bi->bi_destroy = 0;
64
65         bi->bi_db_init = shell_back_db_init;
66         bi->bi_db_config = shell_back_db_config;
67         bi->bi_db_open = 0;
68         bi->bi_db_close = 0;
69         bi->bi_db_destroy = shell_back_db_destroy;
70
71         bi->bi_op_bind = shell_back_bind;
72         bi->bi_op_unbind = shell_back_unbind;
73         bi->bi_op_search = shell_back_search;
74         bi->bi_op_compare = shell_back_compare;
75         bi->bi_op_modify = shell_back_modify;
76         bi->bi_op_modrdn = shell_back_modrdn;
77         bi->bi_op_add = shell_back_add;
78         bi->bi_op_delete = shell_back_delete;
79         bi->bi_op_abandon = 0;
80
81         bi->bi_extended = 0;
82
83         bi->bi_chk_referrals = 0;
84
85         bi->bi_connection_init = 0;
86         bi->bi_connection_destroy = 0;
87
88         return 0;
89 }
90
91 int
92 shell_back_db_init(
93     Backend     *be
94 )
95 {
96         struct shellinfo        *si;
97
98         si = (struct shellinfo *) ch_calloc( 1, sizeof(struct shellinfo) );
99
100         be->be_private = si;
101
102         return si == NULL;
103 }
104
105 int
106 shell_back_db_destroy(
107     Backend     *be
108 )
109 {
110         free( be->be_private );
111         return 0;
112 }