]> git.sur5r.net Git - openldap/blob - servers/slapd/slapcommon.h
Silently ignore if back-ldif is not present
[openldap] / servers / slapd / slapcommon.h
1 /* slapcommon.h - common definitions for the slap tools */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 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
17 #ifndef SLAPCOMMON_H_
18 #define SLAPCOMMON_H_ 1
19
20 #define SLAPD_TOOLS 1
21 #include "slap.h"
22
23 enum slaptool {
24         SLAPADD=1,      /* LDIF -> database tool */
25         SLAPCAT,        /* database -> LDIF tool */
26         SLAPDN,         /* DN check w/ syntax tool */
27         SLAPINDEX,      /* database index tool */
28         SLAPPASSWD,     /* password generation tool */
29         SLAPTEST,       /* slapd.conf test tool */
30         SLAPAUTH,       /* test authz-regexp and authc/authz stuff */
31         SLAPACL,        /* test acl */
32         SLAPLAST
33 };
34
35 typedef struct tool_vars {
36         Backend *tv_be;
37         int tv_verbose;
38         int tv_update_ctxcsn;
39         int tv_continuemode;
40         int tv_nosubordinates;
41         int tv_dryrun;
42         Filter *tv_filter;
43         struct berval tv_sub_ndn;
44         FILE    *tv_ldiffp;
45         struct berval tv_authcDN;
46         struct berval tv_baseDN;
47         struct berval tv_authcID;
48         struct berval tv_authzID;
49         struct berval tv_mech;
50         char    *tv_realm;
51 } tool_vars;
52
53 extern tool_vars tool_globals;
54
55 #define be tool_globals.tv_be
56 #define verbose tool_globals.tv_verbose
57 #define update_ctxcsn tool_globals.tv_update_ctxcsn
58 #define continuemode tool_globals.tv_continuemode
59 #define nosubordinates tool_globals.tv_nosubordinates
60 #define dryrun tool_globals.tv_dryrun
61 #define filter tool_globals.tv_filter
62 #define sub_ndn tool_globals.tv_sub_ndn
63 #define ldiffp tool_globals.tv_ldiffp
64 #define authcDN tool_globals.tv_authcDN
65 #define baseDN tool_globals.tv_baseDN
66 #define authcID tool_globals.tv_authcID
67 #define authzID tool_globals.tv_authzID
68 #define mech tool_globals.tv_mech
69 #define realm tool_globals.tv_realm
70
71 void slap_tool_init LDAP_P((
72         const char* name,
73         int tool,
74         int argc, char **argv ));
75
76 void slap_tool_destroy LDAP_P((void));
77
78 #endif /* SLAPCOMMON_H_ */