]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/init.c
a523ef3a2d445567567ffade6ed250ef4b0ede2c
[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
39 #include "shell.h"
40 #include "external.h"
41
42 #if SLAPD_SHELL == SLAPD_MOD_DYNAMIC
43
44 int init_module(int argc, char *argv[]) {
45     BackendInfo bi;
46
47     memset( &bi, '\0', sizeof(bi) );
48     bi.bi_type = "shell";
49     bi.bi_init = shell_back_initialize;
50
51     backend_add(&bi);
52     return 0;
53 }
54
55 #endif /* SLAPD_SHELL */
56
57 int
58 shell_back_initialize(
59     BackendInfo *bi
60 )
61 {
62         bi->bi_open = 0;
63         bi->bi_config = 0;
64         bi->bi_close = 0;
65         bi->bi_destroy = 0;
66
67         bi->bi_db_init = shell_back_db_init;
68         bi->bi_db_config = shell_back_db_config;
69         bi->bi_db_open = 0;
70         bi->bi_db_close = 0;
71         bi->bi_db_destroy = shell_back_db_destroy;
72
73         bi->bi_op_bind = shell_back_bind;
74         bi->bi_op_unbind = shell_back_unbind;
75         bi->bi_op_search = shell_back_search;
76         bi->bi_op_compare = shell_back_compare;
77         bi->bi_op_modify = shell_back_modify;
78         bi->bi_op_modrdn = shell_back_modrdn;
79         bi->bi_op_add = shell_back_add;
80         bi->bi_op_delete = shell_back_delete;
81         bi->bi_op_abandon = 0;
82
83         bi->bi_extended = 0;
84
85         bi->bi_chk_referrals = 0;
86
87         bi->bi_connection_init = 0;
88         bi->bi_connection_destroy = 0;
89
90         return 0;
91 }
92
93 int
94 shell_back_db_init(
95     Backend     *be
96 )
97 {
98         struct shellinfo        *si;
99
100         si = (struct shellinfo *) ch_calloc( 1, sizeof(struct shellinfo) );
101
102         be->be_private = si;
103
104         return si == NULL;
105 }
106
107 int
108 shell_back_db_destroy(
109     Backend     *be
110 )
111 {
112         free( be->be_private );
113         return 0;
114 }