]> git.sur5r.net Git - openldap/blob - include/lutil.h
a runqueue for periodic thread execution (for syncrepl)
[openldap] / include / lutil.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted only as authorized by the OpenLDAP
8  * Public License.  A copy of this license is available at
9  * http://www.OpenLDAP.org/license.html or in file LICENSE in the
10  * top-level directory of the distribution.
11  */
12
13 #ifndef _LUTIL_H
14 #define _LUTIL_H 1
15
16 #include <ldap_cdefs.h>
17 #include <lber_types.h>
18
19 /*
20  * Include file for LDAP utility routine
21  */
22
23 LDAP_BEGIN_DECL
24
25 /* n octets encode into ceiling(n/3) * 4 bytes */
26 /* Avoid floating point math through extra padding */
27
28 #define LUTIL_BASE64_ENCODE_LEN(n)      (((n)+2)/3 * 4)
29 #define LUTIL_BASE64_DECODE_LEN(n)      (((n)+3)/4 * 3)
30
31 /* ISC Base64 Routines */
32 /* base64.c */
33
34 LDAP_LUTIL_F( int )
35 lutil_b64_ntop LDAP_P((
36         unsigned char const *,
37         size_t,
38         char *,
39         size_t));
40
41 LDAP_LUTIL_F( int )
42 lutil_b64_pton LDAP_P((
43         char const *,
44         unsigned char *,
45         size_t));
46
47 /* detach.c */
48 LDAP_LUTIL_F( void )
49 lutil_detach LDAP_P((
50         int debug,
51         int do_close));
52
53 /* entropy.c */
54 LDAP_LUTIL_F( int )
55 lutil_entropy LDAP_P((
56         unsigned char *buf,
57         ber_len_t nbytes ));
58
59 /* passfile.c */
60 struct berval;  /* avoid pulling in lber.h */
61
62 LDAP_LUTIL_F( int )
63 lutil_get_filed_password LDAP_P((
64         const char *filename,
65         struct berval * ));
66
67 /* passwd.c */
68 struct lutil_pw_scheme;
69
70 typedef int (LUTIL_PASSWD_CHK_FUNC)(
71         const struct berval *scheme,
72         const struct berval *passwd,
73         const struct berval *cred,
74         const char **text );
75
76 typedef struct berval * (LUTIL_PASSWD_HASH_FUNC) (
77         const struct berval *scheme,
78         const struct berval *passwd,
79         const char **text );
80
81 LDAP_LUTIL_F( int )
82 lutil_passwd_add LDAP_P((
83         struct berval *scheme,
84         LUTIL_PASSWD_CHK_FUNC *chk_fn,
85         LUTIL_PASSWD_HASH_FUNC *hash_fn ));
86
87 LDAP_LUTIL_F( void )
88 lutil_passwd_init LDAP_P(( void ));
89
90 LDAP_LUTIL_F( void )
91 lutil_passwd_destroy LDAP_P(( void ));
92
93 LDAP_LUTIL_F( int )
94 lutil_authpasswd LDAP_P((
95         const struct berval *passwd,    /* stored password */
96         const struct berval *cred,      /* user supplied value */
97         const char **methods ));
98
99 LDAP_LUTIL_F( int )
100 lutil_authpasswd_hash LDAP_P((
101         const struct berval *cred,
102         struct berval **passwd, /* password to store */
103         struct berval **salt,   /* salt to store */
104         const char *method ));
105
106 #if defined( SLAPD_SPASSWD ) && defined( HAVE_CYRUS_SASL )
107         /* cheat to avoid pulling in <sasl.h> */
108 LDAP_LUTIL_V( struct sasl_conn * ) lutil_passwd_sasl_conn;
109 #endif
110
111 LDAP_LUTIL_F( int )
112 lutil_passwd LDAP_P((
113         const struct berval *passwd,    /* stored password */
114         const struct berval *cred,      /* user supplied value */
115         const char **methods,
116         const char **text ));                   /* error message */
117
118 LDAP_LUTIL_F( struct berval * )
119 lutil_passwd_generate LDAP_P(( ber_len_t ));
120
121 LDAP_LUTIL_F( struct berval * )
122 lutil_passwd_hash LDAP_P((
123         const struct berval *passwd,
124         const char *method,
125         const char **text ));
126
127 LDAP_LUTIL_F( int )
128 lutil_passwd_scheme LDAP_P((
129         const char *scheme ));
130
131 LDAP_LUTIL_F( int )
132 lutil_salt_format LDAP_P((
133         const char *format ));
134
135 /* utils.c */
136 LDAP_LUTIL_F( char* )
137 lutil_progname LDAP_P((
138         const char* name,
139         int argc,
140         char *argv[] ));
141
142 LDAP_LUTIL_F( char* )
143 lutil_strcopy LDAP_P(( char *dst, const char *src ));
144
145 LDAP_LUTIL_F( char* )
146 lutil_strncopy LDAP_P(( char *dst, const char *src, size_t n ));
147
148 struct tm;
149
150 /* use this macro to statically allocate buffer for lutil_gentime */
151 #define LDAP_LUTIL_GENTIME_BUFSIZE      22
152 LDAP_LUTIL_F( size_t )
153 lutil_gentime LDAP_P(( char *s, size_t max, const struct tm *tm ));
154
155 #ifndef HAVE_MKSTEMP
156 LDAP_LUTIL_F( int )
157 mkstemp LDAP_P (( char * template ));
158 #endif
159
160 /* sockpair.c */
161 LDAP_LUTIL_F( int )
162 lutil_pair( ber_socket_t sd[2] );
163
164 /* uuid.c */
165 /* use this macro to allocate buffer for lutil_uuidstr */
166 #define LDAP_LUTIL_UUIDSTR_BUFSIZE      40
167 LDAP_LUTIL_F( size_t )
168 lutil_uuidstr( char *buf, size_t len );
169
170 /* csn.c */
171 /* use this macro to allocate buffer for lutil_csnstr */
172 #define LDAP_LUTIL_CSNSTR_BUFSIZE       64
173 LDAP_LUTIL_F( size_t )
174 lutil_csnstr( char *buf, size_t len, unsigned int replica, unsigned int mod );
175
176 /*
177  * Sometimes not all declarations in a header file are needed.
178  * An indicator to this is whether or not the symbol's type has
179  * been defined. Thus, we don't need to include a symbol if
180  * its type has not been defined through another header file.
181  */
182
183 #ifdef HAVE_NT_SERVICE_MANAGER
184 LDAP_LUTIL_V (int) is_NT_Service;
185
186 #ifdef _LDAP_PVT_THREAD_H
187 LDAP_LUTIL_V (ldap_pvt_thread_cond_t) started_event;
188 #endif /* _LDAP_PVT_THREAD_H */
189
190 /* macros are different between Windows and Mingw */
191 #if defined(_WINSVC_H) || defined(_WINSVC_)
192 LDAP_LUTIL_V (SERVICE_STATUS) lutil_ServiceStatus;
193 LDAP_LUTIL_V (SERVICE_STATUS_HANDLE) hlutil_ServiceStatus;
194 #endif /* _WINSVC_H */
195
196 LDAP_LUTIL_F (void)
197 lutil_CommenceStartupProcessing( char *serverName, void (*stopper)(int)) ;
198
199 LDAP_LUTIL_F (void)
200 lutil_ReportShutdownComplete( void );
201
202 LDAP_LUTIL_F (void *)
203 lutil_getRegParam( char *svc, char *value );
204
205 LDAP_LUTIL_F (int)
206 lutil_srv_install( char* service, char * displayName, char* filename,
207                  int auto_start );
208 LDAP_LUTIL_F (int)
209 lutil_srv_remove ( char* service, char* filename );
210
211 #endif /* HAVE_NT_SERVICE_MANAGER */
212
213 #ifdef HAVE_NT_EVENT_LOG
214 LDAP_LUTIL_F (void)
215 lutil_LogStartedEvent( char *svc, int slap_debug, char *configfile, char *urls );
216
217 LDAP_LUTIL_F (void)
218 lutil_LogStoppedEvent( char *svc );
219 #endif
220
221 #ifdef HAVE_EBCDIC
222 /* Generally this has only been used to put '\n' to stdout. We need to
223  * make sure it is output in EBCDIC.
224  */
225 #undef putchar
226 #undef putc
227 #define putchar(c)     putc((c), stdout)
228 #define putc(c,fp)     do { char x=(c); __atoe_l(&x,1); putc(x,fp); } while(0)
229 #endif
230
231 LDAP_END_DECL
232
233 #endif /* _LUTIL_H */