1999-08-30 21:17:01 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 02:16:36 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2021-01-11 14:25:53 -05:00
|
|
|
* Copyright 1998-2021 The OpenLDAP Foundation.
|
1999-07-28 16:31:41 -04:00
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
2001-05-28 23:29:53 -04:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
2003-11-26 02:16:36 -05:00
|
|
|
* Public License.
|
|
|
|
|
*
|
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1998-12-28 14:51:35 -05:00
|
|
|
*/
|
|
|
|
|
|
1998-09-02 17:31:35 -04:00
|
|
|
#ifndef _LUTIL_H
|
|
|
|
|
#define _LUTIL_H 1
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include <ldap_cdefs.h>
|
1999-08-31 01:18:06 -04:00
|
|
|
#include <lber_types.h>
|
2021-02-22 16:33:09 -05:00
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_TCPD
|
|
|
|
|
# include <tcpd.h>
|
|
|
|
|
# define LUTIL_STRING_UNKNOWN STRING_UNKNOWN
|
|
|
|
|
#else /* ! TCP Wrappers */
|
|
|
|
|
# define LUTIL_STRING_UNKNOWN "unknown"
|
|
|
|
|
#endif /* ! TCP Wrappers */
|
1999-08-31 01:18:06 -04:00
|
|
|
|
1998-09-02 17:31:35 -04:00
|
|
|
/*
|
|
|
|
|
* Include file for LDAP utility routine
|
|
|
|
|
*/
|
|
|
|
|
|
1999-10-28 03:28:53 -04:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
|
1999-10-24 21:44:47 -04:00
|
|
|
/* n octets encode into ceiling(n/3) * 4 bytes */
|
2002-09-09 23:13:37 -04:00
|
|
|
/* Avoid floating point math through extra padding */
|
1999-10-24 21:44:47 -04:00
|
|
|
|
2002-09-09 23:13:37 -04:00
|
|
|
#define LUTIL_BASE64_ENCODE_LEN(n) (((n)+2)/3 * 4)
|
2003-12-11 08:24:06 -05:00
|
|
|
#define LUTIL_BASE64_DECODE_LEN(n) ((n)/4*3)
|
1999-10-24 21:44:47 -04:00
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
/* ISC Base64 Routines */
|
|
|
|
|
/* base64.c */
|
1999-05-18 21:12:33 -04:00
|
|
|
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-18 21:12:33 -04:00
|
|
|
lutil_b64_ntop LDAP_P((
|
|
|
|
|
unsigned char const *,
|
|
|
|
|
size_t,
|
|
|
|
|
char *,
|
|
|
|
|
size_t));
|
|
|
|
|
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-18 21:12:33 -04:00
|
|
|
lutil_b64_pton LDAP_P((
|
|
|
|
|
char const *,
|
|
|
|
|
unsigned char *,
|
|
|
|
|
size_t));
|
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
/* detach.c */
|
2011-02-28 20:19:37 -05:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-18 21:12:33 -04:00
|
|
|
lutil_detach LDAP_P((
|
|
|
|
|
int debug,
|
|
|
|
|
int do_close));
|
|
|
|
|
|
1999-10-26 18:57:39 -04:00
|
|
|
/* entropy.c */
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-11-23 18:02:46 -05:00
|
|
|
lutil_entropy LDAP_P((
|
2000-10-13 22:14:38 -04:00
|
|
|
unsigned char *buf,
|
1999-12-12 23:53:59 -05:00
|
|
|
ber_len_t nbytes ));
|
1999-10-26 18:57:39 -04:00
|
|
|
|
Patch: 'ldapmodify -y file' reads password from file (ITS#2031)
================
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.
================
Adapted by Kurt Zeilenga for inclusion in OpenLDAP. My comments are
marked with enclosed with square brackets (e.g. [Kurt's comment] below.
================
If I run ldapmodify & co from a script, I don't want to use '-W password'
because the password shows up in the output of 'ps' for everyone,
and I can't pipe the password to 'ldapmodify -w' because -w uses
getpassphrase() which reads from the tty instead of stdin.
So I added '-y file' which reads the password from file. The programs
exit if the file cannot be read.
[Complete contents of file is used as password. Use:
echo -n "secret" > password
to create a file with "secret" as the password. The -n avoids
adding a newline (which would invalidate the password). Note
that echo is a builtin and hence its arguments are not visible
to 'ps'.]
I changed ldapmodify, ldapmodrdn, ldapdelete, ldapsearch, ldapcompare.
I did not bother to change ldappasswd and ldapwhoami, because they
prompt for many passwords. [I fixed up ldapwhoami.]
Rerun autoconf after applying this patch. [Done.]
Note: I do not know if Windows NT has fstat(), so I set HAVE_FSTAT to
undef in portable.nt. (fstat() is used to warn if the file is publicly
readable or writeable.) [I used fstat() to set the buffer size to
read.]
[Note: using the contents of a file extends the tools to support
passwords which could not normally be provided using getpassphrase()
or via the command line.]
Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, Aug 2002.
[Kurt D. Zeilenga <kurt@openldap.org>, Aug 2002.]
2002-08-24 01:47:17 -04:00
|
|
|
/* passfile.c */
|
2003-03-12 18:07:09 -05:00
|
|
|
struct berval; /* avoid pulling in lber.h */
|
1999-12-08 20:11:16 -05:00
|
|
|
|
Patch: 'ldapmodify -y file' reads password from file (ITS#2031)
================
Written by Hallvard B. Furuseth and placed into the public domain.
This software is not subject to any license of the University of Oslo.
================
Adapted by Kurt Zeilenga for inclusion in OpenLDAP. My comments are
marked with enclosed with square brackets (e.g. [Kurt's comment] below.
================
If I run ldapmodify & co from a script, I don't want to use '-W password'
because the password shows up in the output of 'ps' for everyone,
and I can't pipe the password to 'ldapmodify -w' because -w uses
getpassphrase() which reads from the tty instead of stdin.
So I added '-y file' which reads the password from file. The programs
exit if the file cannot be read.
[Complete contents of file is used as password. Use:
echo -n "secret" > password
to create a file with "secret" as the password. The -n avoids
adding a newline (which would invalidate the password). Note
that echo is a builtin and hence its arguments are not visible
to 'ps'.]
I changed ldapmodify, ldapmodrdn, ldapdelete, ldapsearch, ldapcompare.
I did not bother to change ldappasswd and ldapwhoami, because they
prompt for many passwords. [I fixed up ldapwhoami.]
Rerun autoconf after applying this patch. [Done.]
Note: I do not know if Windows NT has fstat(), so I set HAVE_FSTAT to
undef in portable.nt. (fstat() is used to warn if the file is publicly
readable or writeable.) [I used fstat() to set the buffer size to
read.]
[Note: using the contents of a file extends the tools to support
passwords which could not normally be provided using getpassphrase()
or via the command line.]
Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>, Aug 2002.
[Kurt D. Zeilenga <kurt@openldap.org>, Aug 2002.]
2002-08-24 01:47:17 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_get_filed_password LDAP_P((
|
|
|
|
|
const char *filename,
|
|
|
|
|
struct berval * ));
|
|
|
|
|
|
|
|
|
|
/* passwd.c */
|
2003-03-11 00:58:53 -05:00
|
|
|
struct lutil_pw_scheme;
|
|
|
|
|
|
2004-03-12 15:07:41 -05:00
|
|
|
#define LUTIL_PASSWD_OK (0)
|
|
|
|
|
#define LUTIL_PASSWD_ERR (-1)
|
|
|
|
|
|
2003-03-12 18:07:09 -05:00
|
|
|
typedef int (LUTIL_PASSWD_CHK_FUNC)(
|
|
|
|
|
const struct berval *scheme,
|
2003-03-11 00:58:53 -05:00
|
|
|
const struct berval *passwd,
|
2003-04-30 03:52:05 -04:00
|
|
|
const struct berval *cred,
|
|
|
|
|
const char **text );
|
2003-03-11 00:58:53 -05:00
|
|
|
|
2004-03-02 16:59:44 -05:00
|
|
|
typedef int (LUTIL_PASSWD_HASH_FUNC) (
|
2003-03-12 18:07:09 -05:00
|
|
|
const struct berval *scheme,
|
2003-04-30 03:52:05 -04:00
|
|
|
const struct berval *passwd,
|
2004-03-02 16:59:44 -05:00
|
|
|
struct berval *hash,
|
2003-04-30 03:52:05 -04:00
|
|
|
const char **text );
|
2003-03-11 00:58:53 -05:00
|
|
|
|
|
|
|
|
LDAP_LUTIL_F( int )
|
2003-03-12 18:07:09 -05:00
|
|
|
lutil_passwd_add LDAP_P((
|
|
|
|
|
struct berval *scheme,
|
|
|
|
|
LUTIL_PASSWD_CHK_FUNC *chk_fn,
|
|
|
|
|
LUTIL_PASSWD_HASH_FUNC *hash_fn ));
|
2003-03-11 00:58:53 -05:00
|
|
|
|
|
|
|
|
LDAP_LUTIL_F( void )
|
|
|
|
|
lutil_passwd_init LDAP_P(( void ));
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F( void )
|
|
|
|
|
lutil_passwd_destroy LDAP_P(( void ));
|
|
|
|
|
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
2000-04-25 09:28:03 -04:00
|
|
|
lutil_authpasswd LDAP_P((
|
|
|
|
|
const struct berval *passwd, /* stored password */
|
|
|
|
|
const struct berval *cred, /* user supplied value */
|
|
|
|
|
const char **methods ));
|
|
|
|
|
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
2000-04-25 09:28:03 -04:00
|
|
|
lutil_authpasswd_hash LDAP_P((
|
|
|
|
|
const struct berval *cred,
|
|
|
|
|
struct berval **passwd, /* password to store */
|
|
|
|
|
struct berval **salt, /* salt to store */
|
|
|
|
|
const char *method ));
|
|
|
|
|
|
2005-03-18 01:06:38 -05:00
|
|
|
#ifdef SLAPD_CRYPT
|
|
|
|
|
typedef int (lutil_cryptfunc) LDAP_P((
|
|
|
|
|
const char *key,
|
|
|
|
|
const char *salt,
|
|
|
|
|
char **hash ));
|
|
|
|
|
LDAP_LUTIL_V (lutil_cryptfunc *) lutil_cryptptr;
|
2000-05-10 00:29:51 -04:00
|
|
|
#endif
|
|
|
|
|
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-18 21:12:33 -04:00
|
|
|
lutil_passwd LDAP_P((
|
1999-12-08 20:11:16 -05:00
|
|
|
const struct berval *passwd, /* stored password */
|
|
|
|
|
const struct berval *cred, /* user supplied value */
|
2003-04-30 03:52:05 -04:00
|
|
|
const char **methods,
|
|
|
|
|
const char **text )); /* error message */
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
|
2004-03-02 16:59:44 -05:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_passwd_generate LDAP_P(( struct berval *pw, ber_len_t ));
|
1999-12-09 23:52:32 -05:00
|
|
|
|
2004-03-02 16:59:44 -05:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-12-09 23:52:32 -05:00
|
|
|
lutil_passwd_hash LDAP_P((
|
1999-12-08 20:11:16 -05:00
|
|
|
const struct berval *passwd,
|
2003-04-30 03:52:05 -04:00
|
|
|
const char *method,
|
2004-03-02 16:59:44 -05:00
|
|
|
struct berval *hash,
|
2003-04-30 03:52:05 -04:00
|
|
|
const char **text ));
|
1999-12-07 23:37:59 -05:00
|
|
|
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-12-08 20:11:16 -05:00
|
|
|
lutil_passwd_scheme LDAP_P((
|
|
|
|
|
const char *scheme ));
|
1999-09-25 18:13:25 -04:00
|
|
|
|
2001-06-12 23:47:17 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_salt_format LDAP_P((
|
|
|
|
|
const char *format ));
|
|
|
|
|
|
2011-02-06 19:46:06 -05:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_passwd_string64 LDAP_P((
|
|
|
|
|
const struct berval *sc,
|
|
|
|
|
const struct berval *hash,
|
|
|
|
|
struct berval *b64,
|
|
|
|
|
const struct berval *salt ));
|
|
|
|
|
|
1999-08-17 15:00:59 -04:00
|
|
|
/* utils.c */
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( char* )
|
1999-08-17 15:00:59 -04:00
|
|
|
lutil_progname LDAP_P((
|
|
|
|
|
const char* name,
|
|
|
|
|
int argc,
|
|
|
|
|
char *argv[] ));
|
|
|
|
|
|
2005-04-26 08:40:55 -04:00
|
|
|
typedef struct lutil_tm {
|
2004-09-28 08:12:13 -04:00
|
|
|
int tm_sec; /* seconds 0-60 (1 leap second) */
|
|
|
|
|
int tm_min; /* minutes 0-59 */
|
|
|
|
|
int tm_hour; /* hours 0-23 */
|
|
|
|
|
int tm_mday; /* day 1-31 */
|
|
|
|
|
int tm_mon; /* month 0-11 */
|
|
|
|
|
int tm_year; /* year - 1900 */
|
2021-03-23 12:03:13 -04:00
|
|
|
int tm_nsec; /* nanoseconds */
|
2007-02-11 08:42:29 -05:00
|
|
|
int tm_usub; /* submicro */
|
2004-09-28 08:22:22 -04:00
|
|
|
} lutil_tm;
|
2004-09-28 08:12:13 -04:00
|
|
|
|
2005-04-26 08:40:55 -04:00
|
|
|
typedef struct lutil_timet {
|
2020-01-19 14:05:04 -05:00
|
|
|
unsigned int tt_sec; /* seconds since epoch, 0000 or 1970 */
|
|
|
|
|
int tt_gsec; /* seconds since epoch, high 7 bits, maybe sign-flipped */
|
2019-11-28 16:31:06 -05:00
|
|
|
/* sign flipped to sort properly as unsigned ints */
|
2021-03-23 12:03:13 -04:00
|
|
|
unsigned int tt_nsec; /* nanoseconds */
|
2004-09-28 08:22:22 -04:00
|
|
|
} lutil_timet;
|
2004-09-28 08:12:13 -04:00
|
|
|
|
2007-02-02 18:10:30 -05:00
|
|
|
/* Parse a timestamp string into a structure */
|
2004-09-28 08:12:13 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_parsetime LDAP_P((
|
2004-09-28 08:22:22 -04:00
|
|
|
char *atm, struct lutil_tm * ));
|
2004-09-28 08:12:13 -04:00
|
|
|
|
2020-01-19 14:05:04 -05:00
|
|
|
/* Convert structured time to time in seconds since 1970 (Unix epoch) */
|
2004-09-28 08:12:13 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_tm2time LDAP_P((
|
2004-09-28 08:22:22 -04:00
|
|
|
struct lutil_tm *, struct lutil_timet * ));
|
2004-09-28 08:12:13 -04:00
|
|
|
|
2020-01-19 14:05:04 -05:00
|
|
|
/* Convert structured time to time in seconds since 0000 (Proleptic Gregorian) */
|
|
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_tm2gtime LDAP_P((
|
|
|
|
|
struct lutil_tm *, struct lutil_timet * ));
|
|
|
|
|
|
2004-03-19 03:06:42 -05:00
|
|
|
#ifdef _WIN32
|
|
|
|
|
LDAP_LUTIL_F( void )
|
|
|
|
|
lutil_slashpath LDAP_P(( char* path ));
|
|
|
|
|
#define LUTIL_SLASHPATH(p) lutil_slashpath(p)
|
|
|
|
|
#else
|
|
|
|
|
#define LUTIL_SLASHPATH(p)
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-07-26 20:26:27 -04:00
|
|
|
LDAP_LUTIL_F( char* )
|
|
|
|
|
lutil_strcopy LDAP_P(( char *dst, const char *src ));
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F( char* )
|
|
|
|
|
lutil_strncopy LDAP_P(( char *dst, const char *src, size_t n ));
|
|
|
|
|
|
2008-12-11 18:17:08 -05:00
|
|
|
LDAP_LUTIL_F( char* )
|
|
|
|
|
lutil_memcopy LDAP_P(( char *dst, const char *src, size_t n ));
|
|
|
|
|
|
2009-11-15 13:26:53 -05:00
|
|
|
#define lutil_strbvcopy(a, bv) lutil_memcopy((a),(bv)->bv_val,(bv)->bv_len)
|
|
|
|
|
|
2002-07-26 22:10:02 -04:00
|
|
|
struct tm;
|
|
|
|
|
|
2002-08-31 06:48:02 -04:00
|
|
|
/* use this macro to statically allocate buffer for lutil_gentime */
|
|
|
|
|
#define LDAP_LUTIL_GENTIME_BUFSIZE 22
|
2003-05-14 21:18:45 -04:00
|
|
|
#define lutil_gentime(s,m,t) lutil_localtime((s),(m),(t),0)
|
2002-07-26 20:26:27 -04:00
|
|
|
LDAP_LUTIL_F( size_t )
|
2003-05-14 21:18:45 -04:00
|
|
|
lutil_localtime LDAP_P(( char *s, size_t smax, const struct tm *tm,
|
|
|
|
|
long delta ));
|
2002-07-26 20:26:27 -04:00
|
|
|
|
2001-12-17 17:40:10 -05:00
|
|
|
#ifndef HAVE_MKSTEMP
|
|
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
mkstemp LDAP_P (( char * template ));
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-08-31 01:18:06 -04:00
|
|
|
/* sockpair.c */
|
2000-06-18 15:48:07 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
2000-10-17 20:32:35 -04:00
|
|
|
lutil_pair( ber_socket_t sd[2] );
|
1999-08-17 15:00:59 -04:00
|
|
|
|
2001-12-08 21:34:45 -05:00
|
|
|
/* uuid.c */
|
2002-08-31 06:48:02 -04:00
|
|
|
/* use this macro to allocate buffer for lutil_uuidstr */
|
|
|
|
|
#define LDAP_LUTIL_UUIDSTR_BUFSIZE 40
|
2001-12-08 21:34:45 -05:00
|
|
|
LDAP_LUTIL_F( size_t )
|
|
|
|
|
lutil_uuidstr( char *buf, size_t len );
|
|
|
|
|
|
2007-08-17 08:42:52 -04:00
|
|
|
LDAP_LUTIL_F( int )
|
|
|
|
|
lutil_uuidstr_from_normalized(
|
|
|
|
|
char *uuid,
|
|
|
|
|
size_t uuidlen,
|
|
|
|
|
char *buf,
|
|
|
|
|
size_t buflen );
|
|
|
|
|
|
2001-12-06 23:03:25 -05:00
|
|
|
/*
|
|
|
|
|
* Sometimes not all declarations in a header file are needed.
|
|
|
|
|
* An indicator to this is whether or not the symbol's type has
|
|
|
|
|
* been defined. Thus, we don't need to include a symbol if
|
|
|
|
|
* its type has not been defined through another header file.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_NT_SERVICE_MANAGER
|
|
|
|
|
LDAP_LUTIL_V (int) is_NT_Service;
|
|
|
|
|
|
|
|
|
|
#ifdef _LDAP_PVT_THREAD_H
|
|
|
|
|
LDAP_LUTIL_V (ldap_pvt_thread_cond_t) started_event;
|
|
|
|
|
#endif /* _LDAP_PVT_THREAD_H */
|
|
|
|
|
|
2001-12-17 17:40:10 -05:00
|
|
|
/* macros are different between Windows and Mingw */
|
|
|
|
|
#if defined(_WINSVC_H) || defined(_WINSVC_)
|
2003-03-03 06:42:12 -05:00
|
|
|
LDAP_LUTIL_V (SERVICE_STATUS) lutil_ServiceStatus;
|
|
|
|
|
LDAP_LUTIL_V (SERVICE_STATUS_HANDLE) hlutil_ServiceStatus;
|
2001-12-06 23:03:25 -05:00
|
|
|
#endif /* _WINSVC_H */
|
|
|
|
|
|
2003-03-03 06:42:12 -05:00
|
|
|
LDAP_LUTIL_F (void)
|
|
|
|
|
lutil_CommenceStartupProcessing( char *serverName, void (*stopper)(int)) ;
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (void)
|
|
|
|
|
lutil_ReportShutdownComplete( void );
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (void *)
|
|
|
|
|
lutil_getRegParam( char *svc, char *value );
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (int)
|
|
|
|
|
lutil_srv_install( char* service, char * displayName, char* filename,
|
|
|
|
|
int auto_start );
|
|
|
|
|
LDAP_LUTIL_F (int)
|
|
|
|
|
lutil_srv_remove ( char* service, char* filename );
|
|
|
|
|
|
2001-12-06 23:03:25 -05:00
|
|
|
#endif /* HAVE_NT_SERVICE_MANAGER */
|
|
|
|
|
|
2003-03-03 06:42:12 -05:00
|
|
|
#ifdef HAVE_NT_EVENT_LOG
|
|
|
|
|
LDAP_LUTIL_F (void)
|
|
|
|
|
lutil_LogStartedEvent( char *svc, int slap_debug, char *configfile, char *urls );
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (void)
|
|
|
|
|
lutil_LogStoppedEvent( char *svc );
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-07-26 20:26:27 -04:00
|
|
|
#ifdef HAVE_EBCDIC
|
|
|
|
|
/* Generally this has only been used to put '\n' to stdout. We need to
|
|
|
|
|
* make sure it is output in EBCDIC.
|
|
|
|
|
*/
|
|
|
|
|
#undef putchar
|
|
|
|
|
#undef putc
|
|
|
|
|
#define putchar(c) putc((c), stdout)
|
|
|
|
|
#define putc(c,fp) do { char x=(c); __atoe_l(&x,1); putc(x,fp); } while(0)
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-11-23 07:46:33 -05:00
|
|
|
LDAP_LUTIL_F (int)
|
2005-11-23 20:10:05 -05:00
|
|
|
lutil_atoix( int *v, const char *s, int x );
|
2005-11-23 07:46:33 -05:00
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (int)
|
2005-11-23 20:10:05 -05:00
|
|
|
lutil_atoux( unsigned *v, const char *s, int x );
|
2005-11-23 07:46:33 -05:00
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (int)
|
2005-11-23 20:10:05 -05:00
|
|
|
lutil_atolx( long *v, const char *s, int x );
|
2005-11-23 07:46:33 -05:00
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (int)
|
2005-11-23 20:10:05 -05:00
|
|
|
lutil_atoulx( unsigned long *v, const char *s, int x );
|
|
|
|
|
|
|
|
|
|
#define lutil_atoi(v, s) lutil_atoix((v), (s), 10)
|
|
|
|
|
#define lutil_atou(v, s) lutil_atoux((v), (s), 10)
|
|
|
|
|
#define lutil_atol(v, s) lutil_atolx((v), (s), 10)
|
|
|
|
|
#define lutil_atoul(v, s) lutil_atoulx((v), (s), 10)
|
2005-11-23 07:46:33 -05:00
|
|
|
|
2010-08-12 19:32:37 -04:00
|
|
|
#ifdef HAVE_LONG_LONG
|
|
|
|
|
#if defined(HAVE_STRTOLL) || defined(HAVE_STRTOQ)
|
|
|
|
|
LDAP_LUTIL_F (int)
|
|
|
|
|
lutil_atollx( long long *v, const char *s, int x );
|
|
|
|
|
#define lutil_atoll(v, s) lutil_atollx((v), (s), 10)
|
|
|
|
|
#endif /* HAVE_STRTOLL || HAVE_STRTOQ */
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_STRTOULL) || defined(HAVE_STRTOUQ)
|
|
|
|
|
LDAP_LUTIL_F (int)
|
|
|
|
|
lutil_atoullx( unsigned long long *v, const char *s, int x );
|
|
|
|
|
#define lutil_atoull(v, s) lutil_atoullx((v), (s), 10)
|
|
|
|
|
#endif /* HAVE_STRTOULL || HAVE_STRTOUQ */
|
|
|
|
|
#endif /* HAVE_LONG_LONG */
|
|
|
|
|
|
2007-10-01 02:50:19 -04:00
|
|
|
LDAP_LUTIL_F (int)
|
2007-12-02 14:11:41 -05:00
|
|
|
lutil_str2bin( struct berval *in, struct berval *out, void *ctx );
|
2007-10-01 02:50:19 -04:00
|
|
|
|
2007-02-02 18:10:30 -05:00
|
|
|
/* Parse and unparse time intervals */
|
2005-11-23 07:46:33 -05:00
|
|
|
LDAP_LUTIL_F (int)
|
|
|
|
|
lutil_parse_time( const char *in, unsigned long *tp );
|
|
|
|
|
|
|
|
|
|
LDAP_LUTIL_F (int)
|
|
|
|
|
lutil_unparse_time( char *buf, size_t buflen, unsigned long t );
|
|
|
|
|
|
2006-10-21 14:57:27 -04:00
|
|
|
#ifdef timerdiv
|
|
|
|
|
#define lutil_timerdiv timerdiv
|
|
|
|
|
#else /* ! timerdiv */
|
|
|
|
|
/* works inplace (x == t) */
|
|
|
|
|
#define lutil_timerdiv(t,d,x) \
|
|
|
|
|
do { \
|
|
|
|
|
time_t s = (t)->tv_sec; \
|
|
|
|
|
assert( d > 0 ); \
|
|
|
|
|
(x)->tv_sec = s / d; \
|
|
|
|
|
(x)->tv_usec = ( (t)->tv_usec + 1000000 * ( s % d ) ) / d; \
|
|
|
|
|
} while ( 0 )
|
|
|
|
|
#endif /* ! timerdiv */
|
|
|
|
|
|
|
|
|
|
#ifdef timermul
|
|
|
|
|
#define lutil_timermul timermul
|
|
|
|
|
#else /* ! timermul */
|
|
|
|
|
/* works inplace (x == t) */
|
|
|
|
|
#define lutil_timermul(t,m,x) \
|
|
|
|
|
do { \
|
|
|
|
|
time_t u = (t)->tv_usec * m; \
|
|
|
|
|
assert( m > 0 ); \
|
|
|
|
|
(x)->tv_sec = (t)->tv_sec * m + u / 1000000; \
|
|
|
|
|
(x)->tv_usec = u % 1000000; \
|
|
|
|
|
} while ( 0 );
|
|
|
|
|
#endif /* ! timermul */
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
LDAP_END_DECL
|
1998-09-02 17:31:35 -04:00
|
|
|
|
|
|
|
|
#endif /* _LUTIL_H */
|