1 /* slapcommon.h - common definitions for the slap tools */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2009 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
18 #define SLAPCOMMON_H_ 1
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 SLAPSCHEMA, /* schema checking tool */
30 SLAPTEST, /* slapd.conf test tool */
31 SLAPAUTH, /* test authz-regexp and authc/authz stuff */
32 SLAPACL, /* test acl */
36 typedef struct tool_vars {
43 int tv_nosubordinates;
47 struct berval tv_sub_ndn;
48 struct LDIFFP *tv_ldiffp;
49 struct berval tv_baseDN;
50 struct berval tv_authcDN;
51 struct berval tv_authzDN;
52 struct berval tv_authcID;
53 struct berval tv_authzID;
54 struct berval tv_mech;
56 struct berval tv_listener_url;
57 struct berval tv_peer_domain;
58 struct berval tv_peer_name;
59 struct berval tv_sock_name;
61 slap_ssf_t tv_transport_ssf;
62 slap_ssf_t tv_tls_ssf;
63 slap_ssf_t tv_sasl_ssf;
65 unsigned int tv_csnsid;
68 extern tool_vars tool_globals;
70 #define be tool_globals.tv_be
71 #define dbnum tool_globals.tv_dbnum
72 #define verbose tool_globals.tv_verbose
73 #define quiet tool_globals.tv_quiet
74 #define jumpline tool_globals.tv_jumpline
75 #define update_ctxcsn tool_globals.tv_update_ctxcsn
76 #define continuemode tool_globals.tv_continuemode
77 #define nosubordinates tool_globals.tv_nosubordinates
78 #define dryrun tool_globals.tv_dryrun
79 #define filter tool_globals.tv_filter
80 #define sub_ndn tool_globals.tv_sub_ndn
81 #define ldiffp tool_globals.tv_ldiffp
82 #define baseDN tool_globals.tv_baseDN
83 #define authcDN tool_globals.tv_authcDN
84 #define authzDN tool_globals.tv_authzDN
85 #define authcID tool_globals.tv_authcID
86 #define authzID tool_globals.tv_authzID
87 #define mech tool_globals.tv_mech
88 #define realm tool_globals.tv_realm
89 #define listener_url tool_globals.tv_listener_url
90 #define peer_domain tool_globals.tv_peer_domain
91 #define peer_name tool_globals.tv_peer_name
92 #define sock_name tool_globals.tv_sock_name
93 #define ssf tool_globals.tv_ssf
94 #define transport_ssf tool_globals.tv_transport_ssf
95 #define tls_ssf tool_globals.tv_tls_ssf
96 #define sasl_ssf tool_globals.tv_sasl_ssf
97 #define dn_mode tool_globals.tv_dn_mode
98 #define csnsid tool_globals.tv_csnsid
99 #define SLAP_TOOL_LDAPDN_PRETTY SLAP_LDAPDN_PRETTY
100 #define SLAP_TOOL_LDAPDN_NORMAL (SLAP_LDAPDN_PRETTY << 1)
102 void slap_tool_init LDAP_P((
105 int argc, char **argv ));
107 int slap_tool_destroy LDAP_P((void));
109 #endif /* SLAPCOMMON_H_ */