]> git.sur5r.net Git - openldap/blobdiff - include/ldap_pvt.h
Sync with HEAD
[openldap] / include / ldap_pvt.h
index 73da8ea747158f98bbce0068fcbe7320848afe24..6d54e7e9275dc65a066b1b5c41a11c2fdd682781 100644 (file)
@@ -1,7 +1,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  * 
- * Copyright 1998-2004 The OpenLDAP Foundation.
+ * Copyright 1998-2005 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -35,6 +35,10 @@ LDAP_F ( int )
 ldap_pvt_url_scheme2tls LDAP_P((
        const char * ));
 
+LDAP_F ( int )
+ldap_pvt_url_scheme_port LDAP_P((
+       const char *, int ));
+
 struct ldap_url_desc; /* avoid pulling in <ldap.h> */
 
 LDAP_F( int )
@@ -168,6 +172,9 @@ struct sasl_security_properties; /* avoid pulling in <sasl.h> */
 LDAP_F (int) ldap_pvt_sasl_secprops LDAP_P((
        const char *in,
        struct sasl_security_properties *secprops ));
+LDAP_F (void) ldap_pvt_sasl_secprops_unparse LDAP_P((
+       struct sasl_security_properties *secprops,
+       struct berval *out ));
 
 LDAP_F (void *) ldap_pvt_sasl_mutex_new LDAP_P((void));
 LDAP_F (int) ldap_pvt_sasl_mutex_lock LDAP_P((void *mutex));
@@ -179,7 +186,9 @@ LDAP_F (int) ldap_pvt_sasl_install LDAP_P(( struct sockbuf *, void * ));
 LDAP_F (void) ldap_pvt_sasl_remove LDAP_P(( struct sockbuf * ));
 #endif /* HAVE_CYRUS_SASL */
 
+#ifndef LDAP_PVT_SASL_LOCAL_SSF
 #define LDAP_PVT_SASL_LOCAL_SSF        71      /* SSF for Unix Domain Sockets */
+#endif
 
 struct ldap;
 struct ldapmsg;
@@ -235,6 +244,9 @@ LDAP_F (int) ldap_pvt_tls_init_default_ctx LDAP_P(( void ));
 
 typedef int LDAPDN_rewrite_dummy LDAP_P (( void *dn, unsigned flags ));
 
+typedef int (LDAP_TLS_CONNECT_CB) LDAP_P (( struct ldap *ld, void *ssl,
+       void *ctx, void *arg ));
+
 LDAP_F (int) ldap_pvt_tls_get_my_dn LDAP_P(( void *ctx, struct berval *dn,
        LDAPDN_rewrite_dummy *func, unsigned flags ));
 LDAP_F (int) ldap_pvt_tls_get_peer_dn LDAP_P(( void *ctx, struct berval *dn,
@@ -243,7 +255,95 @@ LDAP_F (int) ldap_pvt_tls_get_strength LDAP_P(( void *ctx ));
 
 LDAP_END_DECL
 
-#include "ldap_pvt_uc.h"
+/*
+ * Multiple precision stuff
+ * 
+ * May use OpenSSL's BIGNUM if built with TLS,
+ * or GNU's multiple precision library.
+ *
+ * If none is available, unsigned long data is used.
+ */
+#ifdef HAVE_BIGNUM
+/*
+ * Use OpenSSL's BIGNUM
+ */
+#if defined(HAVE_OPENSSL_CRYPTO_H)
+#include <openssl/crypto.h>
+#elif HAVE_CRYPTO_H
+#include <crypto.h>
+#endif /* HAVE_OPENSSL_CRYPTO_H || HAVE_CRYPTO_H */
+#ifdef HAVE_OPENSSL_BN_H
+#include <openssl/bn.h>
+#elif HAVE_BN_H
+#include <bn.h>
+#endif /* HAVE_OPENSSL_BN_H || HAVE_BN_H */
+
+typedef        BIGNUM*         ldap_pvt_mp_t;
+
+#define        ldap_pvt_mp_init(mp) \
+       (mp) = BN_new()
+
+/* FIXME: we rely on mpr being initialized */
+#define        ldap_pvt_mp_init_set(mpr,mpv) \
+       do { ldap_pvt_mp_init((mpr)); BN_add((mpr), (mpr), (mpv)); } while (0)
+
+#define        ldap_pvt_mp_add(mpr,mpv) \
+       BN_add((mpr), (mpr), (mpv))
 
+#define        ldap_pvt_mp_add_ulong(mp,v) \
+       BN_add_word((mp), (v))
+
+#define ldap_pvt_mp_clear(mp) \
+       do { BN_free((mp)); (mp) = 0; } while (0)
+
+#elif defined(HAVE_GMP)
+/*
+ * Use GNU's multiple precision library
+ */
+#ifdef HAVE_GMP_H
+#include <gmp.h>
 #endif
 
+typedef mpz_t          ldap_pvt_mp_t;
+#define ldap_pvt_mp_init(mp) \
+       mpz_init((mp))
+
+#define        ldap_pvt_mp_init_set(mpr,mpv) \
+       mpz_init_set((mpr), (mpv))
+
+#define        ldap_pvt_mp_add(mpr,mpv) \
+       mpz_add((mpr), (mpr), (mpv))
+
+#define        ldap_pvt_mp_add_ulong(mp,v)     \
+       mpz_add_ui((mp), (mp), (v))
+
+#define ldap_pvt_mp_clear(mp) \
+       mpz_clear((mp))
+
+#else /* ! HAVE_BIGNUM && ! HAVE_GMP */
+/*
+ * Use unsigned long
+ */
+
+typedef        unsigned long   ldap_pvt_mp_t;
+
+#define ldap_pvt_mp_init(mp) \
+       (mp) = 0
+
+#define        ldap_pvt_mp_init_set(mpr,mpv) \
+       (mpr) = (mpv)
+
+#define        ldap_pvt_mp_add(mpr,mpv) \
+       (mpr) += (mpv)
+
+#define        ldap_pvt_mp_add_ulong(mp,v) \
+       (mp) += (v)
+
+#define ldap_pvt_mp_clear(mp) \
+       (mp) = 0
+
+#endif /* ! HAVE_BIGNUM && ! HAVE_GMP */
+
+#include "ldap_pvt_uc.h"
+
+#endif