1999-04-22 08:45:14 +08:00
/*
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
2001-12-11 23:32:16 +08:00
| PHP Version 4 |
1999-04-22 08:45:14 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
2001-12-11 23:32:16 +08:00
| Copyright ( c ) 1997 - 2002 The PHP Group |
1999-04-22 08:45:14 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
2000-05-18 23:34:45 +08:00
| This source file is subject to version 2.02 of the PHP license , |
1999-07-16 21:13:16 +08:00
| that is bundled with this package in the file LICENSE , and is |
| available at through the world - wide - web at |
2000-05-18 23:34:45 +08:00
| http : //www.php.net/license/2_02.txt. |
1999-07-16 21:13:16 +08:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world - wide - web , please send a note to |
| license @ php . net so we can mail you a copy immediately . |
1999-04-22 08:45:14 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
| Authors : Amitay Isaacs < amitay @ w - o - i . com > |
| Eric Warnke < ericw @ albany . edu > |
| Rasmus Lerdorf < rasmus @ lerdorf . on . ca > |
1999-05-21 18:06:25 +08:00
| Gerrit Thomson < 334647 @ swin . edu . au > |
2000-07-25 23:34:28 +08:00
| Jani Taskinen < sniper @ iki . fi > |
2000-08-27 00:20:37 +08:00
| Stig Venaas < venaas @ uninett . no > |
2000-04-02 00:23:39 +08:00
| PHP 4.0 updates : Zeev Suraski < zeev @ zend . com > |
1999-04-22 08:45:14 +08:00
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
*/
/* $Id$ */
# define IS_EXT_MODULE
2001-05-24 18:07:29 +08:00
# ifdef HAVE_CONFIG_H
# include "config.h"
# endif
1999-04-22 08:45:14 +08:00
# include "php.h"
2000-04-02 00:23:39 +08:00
# include "php_ini.h"
1999-04-22 08:45:14 +08:00
1999-04-23 11:28:47 +08:00
# include "ext/standard/dl.h"
1999-12-05 03:19:57 +08:00
# include "php_ldap.h"
1999-04-22 08:45:14 +08:00
2000-02-16 17:33:19 +08:00
# ifdef PHP_WIN32
1999-04-22 08:45:14 +08:00
# include <string.h>
# if HAVE_NSLDAP
# include <winsock.h>
# endif
# define strdup _strdup
# undef WINDOWS
# undef strcasecmp
# undef strncasecmp
# define WINSOCK 1
# define __STDC__ 1
# endif
1999-12-05 03:19:57 +08:00
# include "ext/standard/php_string.h"
2000-04-07 00:57:33 +08:00
# include "ext/standard/info.h"
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
typedef struct {
LDAP * link ;
2001-12-24 00:32:06 +08:00
# if defined(LDAP_API_FEATURE_X_OPENLDAP) && defined(HAVE_3ARG_SETREBINDPROC)
2001-11-30 04:26:20 +08:00
zval * rebindproc ;
# endif
2001-11-30 04:17:17 +08:00
} ldap_linkdata ;
2000-04-02 00:23:39 +08:00
ZEND_DECLARE_MODULE_GLOBALS ( ldap )
1999-04-22 08:45:14 +08:00
2000-08-05 01:18:54 +08:00
static unsigned char third_argument_force_ref [ ] = { 3 , BYREF_NONE , BYREF_NONE , BYREF_FORCE } ;
2001-01-07 21:03:11 +08:00
static unsigned char arg3to6of6_force_ref [ ] = { 6 , BYREF_NONE , BYREF_NONE , BYREF_FORCE , BYREF_FORCE , BYREF_FORCE , BYREF_FORCE } ;
2001-06-01 05:09:30 +08:00
static int le_link , le_result , le_result_entry , le_ber_entry ;
1999-04-22 08:45:14 +08:00
/*
This is just a small subset of the functionality provided by the LDAP library . All the
operations are synchronous . Referrals are not handled automatically .
*/
2001-06-05 21:12:10 +08:00
/* {{{ ldap_functions[]
*/
1999-04-22 08:45:14 +08:00
function_entry ldap_functions [ ] = {
2001-06-01 05:09:30 +08:00
PHP_FE ( ldap_connect , NULL )
PHP_FALIAS ( ldap_close , ldap_unbind , NULL )
PHP_FE ( ldap_bind , NULL )
PHP_FE ( ldap_unbind , NULL )
PHP_FE ( ldap_read , NULL )
PHP_FE ( ldap_list , NULL )
PHP_FE ( ldap_search , NULL )
PHP_FE ( ldap_free_result , NULL )
PHP_FE ( ldap_count_entries , NULL )
PHP_FE ( ldap_first_entry , NULL )
PHP_FE ( ldap_next_entry , NULL )
PHP_FE ( ldap_get_entries , NULL )
PHP_FE ( ldap_first_attribute , third_argument_force_ref )
PHP_FE ( ldap_next_attribute , third_argument_force_ref )
PHP_FE ( ldap_get_attributes , NULL )
PHP_FE ( ldap_get_values , NULL )
PHP_FE ( ldap_get_values_len , NULL )
PHP_FE ( ldap_get_dn , NULL )
PHP_FE ( ldap_explode_dn , NULL )
PHP_FE ( ldap_dn2ufn , NULL )
PHP_FE ( ldap_add , NULL )
PHP_FE ( ldap_delete , NULL )
2002-01-05 04:56:03 +08:00
PHP_FALIAS ( ldap_modify , ldap_mod_replace , NULL )
2001-06-01 05:09:30 +08:00
1999-05-21 18:06:25 +08:00
/* additional functions for attribute based modifications, Gerrit Thomson */
2001-06-01 05:09:30 +08:00
PHP_FE ( ldap_mod_add , NULL )
PHP_FE ( ldap_mod_replace , NULL )
PHP_FE ( ldap_mod_del , NULL )
1999-05-21 18:06:25 +08:00
/* end gjt mod */
2001-06-01 05:09:30 +08:00
PHP_FE ( ldap_errno , NULL )
PHP_FE ( ldap_err2str , NULL )
PHP_FE ( ldap_error , NULL )
PHP_FE ( ldap_compare , NULL )
2001-11-22 04:14:17 +08:00
PHP_FE ( ldap_sort , NULL )
2000-08-02 21:11:46 +08:00
2000-10-29 03:22:46 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP
2001-06-01 05:09:30 +08:00
PHP_FE ( ldap_get_option , third_argument_force_ref )
PHP_FE ( ldap_set_option , NULL )
PHP_FE ( ldap_parse_result , arg3to6of6_force_ref )
PHP_FE ( ldap_first_reference , NULL )
PHP_FE ( ldap_next_reference , NULL )
PHP_FE ( ldap_parse_reference , third_argument_force_ref )
PHP_FE ( ldap_rename , NULL )
2000-10-18 00:06:04 +08:00
# endif
2001-10-10 05:14:14 +08:00
# if LDAP_API_VERSION > 2000
PHP_FE ( ldap_start_tls , NULL )
# endif
2001-12-24 00:32:06 +08:00
# if defined(LDAP_API_FEATURE_X_OPENLDAP) && defined(HAVE_3ARG_SETREBINDPROC)
2001-11-30 04:26:20 +08:00
PHP_FE ( ldap_set_rebind_proc , NULL )
# endif
2000-08-02 21:11:46 +08:00
# ifdef STR_TRANSLATION
2001-06-01 05:09:30 +08:00
PHP_FE ( ldap_t61_to_8859 , NULL )
PHP_FE ( ldap_8859_to_t61 , NULL )
2000-08-02 21:11:46 +08:00
# endif
1999-04-22 08:45:14 +08:00
{ NULL , NULL , NULL }
} ;
2001-06-05 21:12:10 +08:00
/* }}} */
1999-04-22 08:45:14 +08:00
1999-12-18 04:55:31 +08:00
zend_module_entry ldap_module_entry = {
2001-10-12 07:33:59 +08:00
STANDARD_MODULE_HEADER ,
2001-06-01 05:09:30 +08:00
" ldap " ,
ldap_functions ,
PHP_MINIT ( ldap ) ,
PHP_MSHUTDOWN ( ldap ) ,
NULL ,
NULL ,
PHP_MINFO ( ldap ) ,
2001-10-12 07:33:59 +08:00
NO_VERSION_YET ,
2001-06-01 05:09:30 +08:00
STANDARD_MODULE_PROPERTIES
1999-04-22 08:45:14 +08:00
} ;
2000-05-23 17:33:51 +08:00
# ifdef COMPILE_DL_LDAP
2000-05-02 08:30:36 +08:00
ZEND_GET_MODULE ( ldap )
1999-04-22 08:45:14 +08:00
# endif
2001-07-31 13:44:11 +08:00
static void _close_ldap_link ( zend_rsrc_list_entry * rsrc TSRMLS_DC )
1999-04-22 08:45:14 +08:00
{
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld = ( ldap_linkdata * ) rsrc - > ptr ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
ldap_unbind_s ( ld - > link ) ;
2001-12-24 00:32:06 +08:00
# if defined(LDAP_API_FEATURE_X_OPENLDAP) && defined(HAVE_3ARG_SETREBINDPROC)
2001-11-30 04:26:20 +08:00
if ( ld - > rebindproc ! = NULL ) {
zval_dtor ( ld - > rebindproc ) ;
FREE_ZVAL ( ld - > rebindproc ) ;
}
# endif
2001-11-30 04:17:17 +08:00
efree ( ld ) ;
2000-04-02 00:23:39 +08:00
LDAPG ( num_links ) - - ;
1999-04-22 08:45:14 +08:00
}
2001-07-31 13:44:11 +08:00
static void _free_ldap_result ( zend_rsrc_list_entry * rsrc TSRMLS_DC )
1999-04-22 08:45:14 +08:00
{
2000-10-21 02:25:16 +08:00
LDAPMessage * result = ( LDAPMessage * ) rsrc - > ptr ;
2000-04-02 00:23:39 +08:00
ldap_msgfree ( result ) ;
1999-04-22 08:45:14 +08:00
}
2001-06-05 21:12:10 +08:00
/* {{{ PHP_INI_BEGIN
*/
2000-04-02 00:23:39 +08:00
PHP_INI_BEGIN ( )
STD_PHP_INI_ENTRY_EX ( " ldap.max_links " , " -1 " , PHP_INI_SYSTEM , OnUpdateInt , max_links , zend_ldap_globals , ldap_globals , display_link_numbers )
PHP_INI_END ( )
2001-06-05 21:12:10 +08:00
/* }}} */
1999-04-22 08:45:14 +08:00
2001-06-05 21:12:10 +08:00
/* {{{ php_ldap_init_globals
*/
2000-04-02 00:23:39 +08:00
static void php_ldap_init_globals ( zend_ldap_globals * ldap_globals )
1999-04-22 08:45:14 +08:00
{
2000-04-02 00:23:39 +08:00
ldap_globals - > num_links = 0 ;
1999-04-22 08:45:14 +08:00
}
2001-06-05 21:12:10 +08:00
/* }}} */
1999-04-22 08:45:14 +08:00
2001-06-05 21:12:10 +08:00
/* {{{ PHP_MINIT_FUNCTION
*/
1999-08-02 23:02:52 +08:00
PHP_MINIT_FUNCTION ( ldap )
1999-04-22 08:45:14 +08:00
{
2000-04-02 00:23:39 +08:00
ZEND_INIT_MODULE_GLOBALS ( ldap , php_ldap_init_globals , NULL ) ;
1999-04-22 08:45:14 +08:00
2000-04-02 00:23:39 +08:00
REGISTER_INI_ENTRIES ( ) ;
1999-04-22 08:45:14 +08:00
2000-07-24 05:32:02 +08:00
/* Constants to be used with deref-parameter in php_ldap_do_search() */
2001-12-04 04:54:23 +08:00
REGISTER_LONG_CONSTANT ( " LDAP_DEREF_NEVER " , LDAP_DEREF_NEVER , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_DEREF_SEARCHING " , LDAP_DEREF_SEARCHING , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_DEREF_FINDING " , LDAP_DEREF_FINDING , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_DEREF_ALWAYS " , LDAP_DEREF_ALWAYS , CONST_PERSISTENT | CONST_CS ) ;
2000-10-18 00:06:04 +08:00
2000-10-29 03:22:46 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP
2000-10-18 00:06:04 +08:00
/* LDAP options */
2001-12-04 04:54:23 +08:00
REGISTER_LONG_CONSTANT ( " LDAP_OPT_DEREF " , LDAP_OPT_DEREF , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_SIZELIMIT " , LDAP_OPT_SIZELIMIT , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_TIMELIMIT " , LDAP_OPT_TIMELIMIT , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_PROTOCOL_VERSION " , LDAP_OPT_PROTOCOL_VERSION , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_ERROR_NUMBER " , LDAP_OPT_ERROR_NUMBER , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_REFERRALS " , LDAP_OPT_REFERRALS , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_RESTART " , LDAP_OPT_RESTART , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_HOST_NAME " , LDAP_OPT_HOST_NAME , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_ERROR_STRING " , LDAP_OPT_ERROR_STRING , CONST_PERSISTENT | CONST_CS ) ;
2001-01-08 05:18:02 +08:00
# ifdef LDAP_OPT_MATCHED_DN
2001-12-04 04:54:23 +08:00
REGISTER_LONG_CONSTANT ( " LDAP_OPT_MATCHED_DN " , LDAP_OPT_MATCHED_DN , CONST_PERSISTENT | CONST_CS ) ;
2000-10-18 00:06:04 +08:00
# endif
2001-12-04 04:54:23 +08:00
REGISTER_LONG_CONSTANT ( " LDAP_OPT_SERVER_CONTROLS " , LDAP_OPT_SERVER_CONTROLS , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " LDAP_OPT_CLIENT_CONTROLS " , LDAP_OPT_CLIENT_CONTROLS , CONST_PERSISTENT | CONST_CS ) ;
2000-11-04 06:53:49 +08:00
# endif
2001-12-24 00:32:06 +08:00
# ifdef LDAP_OPT_DEBUG_LEVEL
REGISTER_LONG_CONSTANT ( " LDAP_OPT_DEBUG_LEVEL " , LDAP_OPT_DEBUG_LEVEL , CONST_PERSISTENT | CONST_CS ) ;
# endif
2000-10-18 00:06:04 +08:00
2000-08-21 02:47:14 +08:00
# ifdef ORALDAP
2001-12-04 04:54:23 +08:00
REGISTER_LONG_CONSTANT ( " GSLC_SSL_NO_AUTH " , GSLC_SSL_NO_AUTH , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " GSLC_SSL_ONEWAY_AUTH " , GSLC_SSL_ONEWAY_AUTH , CONST_PERSISTENT | CONST_CS ) ;
REGISTER_LONG_CONSTANT ( " GSLC_SSL_TWOWAY_AUTH " , GSLC_SSL_TWOWAY_AUTH , CONST_PERSISTENT | CONST_CS ) ;
2000-08-21 02:47:14 +08:00
# endif
2000-07-22 08:34:22 +08:00
2000-10-26 01:44:02 +08:00
le_result = zend_register_list_destructors_ex ( _free_ldap_result , NULL , " ldap result " , module_number ) ;
le_link = zend_register_list_destructors_ex ( _close_ldap_link , NULL , " ldap link " , module_number ) ;
2001-09-20 03:43:59 +08:00
le_result_entry = zend_register_list_destructors_ex ( NULL , NULL , " ldap result entry " , module_number ) ;
2001-12-01 07:37:43 +08:00
le_ber_entry = zend_register_list_destructors_ex ( NULL , NULL , " ldap ber entry " , module_number ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
Z_TYPE ( ldap_module_entry ) = type ;
1999-04-22 08:45:14 +08:00
return SUCCESS ;
}
2001-06-05 21:12:10 +08:00
/* }}} */
1999-04-22 08:45:14 +08:00
2001-06-05 21:12:10 +08:00
/* {{{ PHP_MSHUTDOWN_FUNCTION
*/
1999-08-02 23:02:52 +08:00
PHP_MSHUTDOWN_FUNCTION ( ldap )
{
1999-04-22 08:45:14 +08:00
return SUCCESS ;
}
2001-06-05 21:12:10 +08:00
/* }}} */
1999-04-22 08:45:14 +08:00
2001-06-05 21:12:10 +08:00
/* {{{ PHP_MINFO_FUNCTION
*/
1999-08-02 23:02:52 +08:00
PHP_MINFO_FUNCTION ( ldap )
1999-04-22 08:45:14 +08:00
{
2000-06-05 23:17:25 +08:00
char tmp [ 32 ] ;
2001-12-25 22:36:06 +08:00
# if HAVE_NSLDAP
1999-04-22 08:45:14 +08:00
LDAPVersion ver ;
double SDKVersion ;
# endif
2000-04-04 06:00:18 +08:00
2001-12-25 22:36:06 +08:00
php_info_print_table_start ( ) ;
php_info_print_table_row ( 2 , " LDAP Support " , " enabled " ) ;
php_info_print_table_row ( 2 , " RCS Version " , " $Id$ " ) ;
2000-04-04 06:00:18 +08:00
2000-04-02 00:23:39 +08:00
if ( LDAPG ( max_links ) = = - 1 ) {
2001-12-25 22:36:06 +08:00
snprintf ( tmp , 31 , " %ld/unlimited " , LDAPG ( num_links ) ) ;
1999-04-22 08:45:14 +08:00
} else {
2001-12-25 22:36:06 +08:00
snprintf ( tmp , 31 , " %ld/%ld " , LDAPG ( num_links ) , LDAPG ( max_links ) ) ;
1999-04-22 08:45:14 +08:00
}
2001-12-25 22:36:06 +08:00
tmp [ 31 ] = ' \0 ' ;
php_info_print_table_row ( 2 , " Total Links " , tmp ) ;
2001-06-01 05:09:30 +08:00
2000-08-07 11:18:00 +08:00
# ifdef LDAP_API_VERSION
2001-12-25 22:36:06 +08:00
snprintf ( tmp , 31 , " %d " , LDAP_API_VERSION ) ;
tmp [ 31 ] = ' \0 ' ;
php_info_print_table_row ( 2 , " API Version " , tmp ) ;
# endif
# ifdef LDAP_VENDOR_NAME
php_info_print_table_row ( 2 , " Vendor Name " , LDAP_VENDOR_NAME ) ;
# endif
# ifdef LDAP_VENDOR_VERSION
snprintf ( tmp , 31 , " %d " , LDAP_VENDOR_VERSION ) ;
tmp [ 31 ] = ' \0 ' ;
php_info_print_table_row ( 2 , " Vendor Version " , tmp ) ;
2000-08-07 11:18:00 +08:00
# endif
2000-04-07 05:17:50 +08:00
2001-06-01 05:09:30 +08:00
# if HAVE_NSLDAP
2001-12-25 22:36:06 +08:00
SDKVersion = ldap_version ( & ver ) ;
2000-04-07 05:17:50 +08:00
snprintf ( tmp , 31 , " %f " , SDKVersion / 100.0 ) ;
2001-12-25 22:36:06 +08:00
tmp [ 31 ] = ' \0 ' ;
2000-04-07 05:17:50 +08:00
php_info_print_table_row ( 2 , " SDK Version " , tmp ) ;
snprintf ( tmp , 31 , " %f " , ver . protocol_version / 100.0 ) ;
2001-12-25 22:36:06 +08:00
tmp [ 31 ] = ' \0 ' ;
2000-04-07 05:17:50 +08:00
php_info_print_table_row ( 2 , " Highest LDAP Protocol Supported " , tmp ) ;
snprintf ( tmp , 31 , " %f " , ver . SSL_version / 100.0 ) ;
2001-12-25 22:36:06 +08:00
tmp [ 31 ] = ' \0 ' ;
2000-04-07 05:17:50 +08:00
php_info_print_table_row ( 2 , " SSL Level Supported " , tmp ) ;
1999-04-22 08:45:14 +08:00
if ( ver . security_level ! = LDAP_SECURITY_NONE ) {
2000-04-07 05:17:50 +08:00
snprintf ( tmp , 31 , " %d " , ver . security_level ) ;
2001-12-25 22:36:06 +08:00
tmp [ 31 ] = ' \0 ' ;
1999-04-22 08:45:14 +08:00
} else {
2000-04-07 05:17:50 +08:00
strcpy ( tmp , " SSL not enabled " ) ;
1999-04-22 08:45:14 +08:00
}
2000-04-07 05:17:50 +08:00
php_info_print_table_row ( 2 , " Level of Encryption " , tmp ) ;
1999-04-22 08:45:14 +08:00
# endif
2000-04-07 05:17:50 +08:00
php_info_print_table_end ( ) ;
1999-04-22 08:45:14 +08:00
}
2001-06-05 21:12:10 +08:00
/* }}} */
2000-07-24 05:32:02 +08:00
1999-04-22 08:45:14 +08:00
/* {{{ proto int ldap_connect([string host [, int port]])
Connect to an LDAP server */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_connect )
1999-04-22 08:45:14 +08:00
{
2001-11-14 02:05:47 +08:00
char * host = NULL ;
int port = 389 ; /* Default port */
2000-08-21 02:47:14 +08:00
# ifdef HAVE_ORALDAP
char * wallet , * walletpasswd ;
int authmode ;
int ssl = 0 ;
# endif
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-04-22 08:45:14 +08:00
LDAP * ldap ;
2000-06-06 03:47:54 +08:00
switch ( ZEND_NUM_ARGS ( ) ) {
1999-04-22 08:45:14 +08:00
case 0 :
break ;
case 1 : {
1999-11-22 10:31:32 +08:00
pval * * yyhost ;
1999-04-22 08:45:14 +08:00
1999-12-19 06:40:35 +08:00
if ( zend_get_parameters_ex ( 1 , & yyhost ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( yyhost ) ;
2001-09-26 05:58:48 +08:00
host = Z_STRVAL_PP ( yyhost ) ;
1999-04-22 08:45:14 +08:00
}
break ;
case 2 : {
1999-11-22 10:31:32 +08:00
pval * * yyhost , * * yyport ;
1999-04-22 08:45:14 +08:00
2001-08-12 00:39:07 +08:00
if ( zend_get_parameters_ex ( 2 , & yyhost , & yyport ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( yyhost ) ;
2001-09-26 05:58:48 +08:00
host = Z_STRVAL_PP ( yyhost ) ;
1999-11-22 10:31:32 +08:00
convert_to_long_ex ( yyport ) ;
2001-09-26 05:58:48 +08:00
port = Z_LVAL_PP ( yyport ) ;
1999-04-22 08:45:14 +08:00
}
break ;
2000-08-21 02:47:14 +08:00
# ifdef HAVE_ORALDAP
case 5 : {
2001-11-14 02:05:47 +08:00
pval * * yyhost , * * yyport , * * yywallet , * * yywalletpasswd , * * yyauthmode ;
2001-06-01 05:09:30 +08:00
if ( zend_get_parameters_ex ( 5 , & yyhost , & yyport , & yywallet , & yywalletpasswd , & yyauthmode ) = = FAILURE ) {
2000-08-21 02:47:14 +08:00
RETURN_FALSE ;
}
convert_to_string_ex ( yyhost ) ;
convert_to_long_ex ( yyport ) ;
convert_to_string_ex ( yywallet ) ;
convert_to_string_ex ( yywalletpasswd ) ;
convert_to_long_ex ( yyauthmode ) ;
2001-09-26 05:58:48 +08:00
host = Z_STRVAL_PP ( yyhost ) ;
port = Z_LVAL_PP ( yyport ) ;
wallet = Z_STRVAL_PP ( yywallet ) ;
walletpasswd = Z_STRVAL_PP ( yywalletpasswd ) ;
authmode = Z_LVAL_PP ( yyauthmode ) ;
2000-08-21 02:47:14 +08:00
ssl = 1 ;
}
break ;
# endif
1999-04-22 08:45:14 +08:00
default :
WRONG_PARAM_COUNT ;
break ;
}
2001-06-01 05:09:30 +08:00
if ( LDAPG ( max_links ) ! = - 1 & & LDAPG ( num_links ) > = LDAPG ( max_links ) ) {
2000-04-02 00:23:39 +08:00
php_error ( E_WARNING , " LDAP: Too many open links (%d) " , LDAPG ( num_links ) ) ;
RETURN_FALSE ;
1999-04-22 08:45:14 +08:00
}
2001-11-30 04:17:17 +08:00
ld = ecalloc ( 1 , sizeof ( ldap_linkdata ) ) ;
if ( ld = = NULL ) {
RETURN_FALSE ;
}
2000-10-21 04:22:59 +08:00
# ifdef LDAP_API_FEATURE_X_OPENLDAP
2001-11-14 02:05:47 +08:00
if ( host ! = NULL & & strchr ( host , ' / ' ) ) {
2000-10-21 04:22:59 +08:00
int rc ;
rc = ldap_initialize ( & ldap , host ) ;
if ( rc ! = LDAP_SUCCESS ) {
php_error ( E_WARNING , " Could not create LDAP session handle (%d): %s \n " , rc , ldap_err2string ( rc ) ) ;
RETURN_FALSE ;
}
2001-11-14 02:05:47 +08:00
} else {
ldap = ldap_init ( host , port ) ;
2000-10-21 04:22:59 +08:00
}
2001-11-14 02:05:47 +08:00
# else
ldap = ldap_open ( host , port ) ;
# endif
2000-10-21 04:22:59 +08:00
1999-04-22 08:45:14 +08:00
if ( ldap = = NULL ) {
2000-04-02 00:23:39 +08:00
RETURN_FALSE ;
1999-04-22 08:45:14 +08:00
} else {
2000-08-21 02:47:14 +08:00
# ifdef HAVE_ORALDAP
if ( ssl ) {
2001-06-01 05:09:30 +08:00
if ( ldap_init_SSL ( & ldap - > ld_sb , wallet , walletpasswd , authmode ) ) {
2000-08-21 02:47:14 +08:00
php_error ( E_WARNING , " LDAP: SSL init failed " ) ;
RETURN_FALSE ;
}
}
# endif
2001-06-01 05:09:30 +08:00
LDAPG ( num_links ) + + ;
2001-11-30 04:17:17 +08:00
ld - > link = ldap ;
ZEND_REGISTER_RESOURCE ( return_value , ld , le_link ) ;
1999-04-22 08:45:14 +08:00
}
}
/* }}} */
2001-06-05 21:12:10 +08:00
/* {{{ _get_lderrno
*/
2000-08-27 00:20:37 +08:00
static int _get_lderrno ( LDAP * ldap )
{
# if !HAVE_NSLDAP
# if LDAP_API_VERSION > 2000
int lderr ;
/* New versions of OpenLDAP do it this way */
ldap_get_option ( ldap , LDAP_OPT_ERROR_NUMBER , & lderr ) ;
return lderr ;
# else
return ldap - > ld_errno ;
# endif
# else
2001-08-12 00:39:07 +08:00
return ldap_get_lderrno ( ldap , NULL , NULL ) ;
2000-08-27 00:20:37 +08:00
# endif
}
2001-06-05 21:12:10 +08:00
/* }}} */
2000-08-27 00:20:37 +08:00
1999-04-22 08:45:14 +08:00
/* {{{ proto int ldap_bind(int link [, string dn, string password])
Bind to LDAP directory */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_bind )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link , * * bind_rdn , * * bind_pw ;
1999-07-17 02:01:55 +08:00
char * ldap_bind_rdn , * ldap_bind_pw ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
switch ( ZEND_NUM_ARGS ( ) ) {
1999-04-22 08:45:14 +08:00
case 1 : /* Anonymous Bind */
1999-12-19 06:40:35 +08:00
if ( zend_get_parameters_ex ( 1 , & link ) = = FAILURE ) {
1999-11-22 10:31:32 +08:00
WRONG_PARAM_COUNT ;
1999-04-22 08:45:14 +08:00
}
ldap_bind_rdn = NULL ;
ldap_bind_pw = NULL ;
break ;
case 3 :
2001-08-12 00:39:07 +08:00
if ( zend_get_parameters_ex ( 3 , & link , & bind_rdn , & bind_pw ) = = FAILURE ) {
1999-11-22 10:31:32 +08:00
WRONG_PARAM_COUNT ;
1999-04-22 08:45:14 +08:00
}
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( bind_rdn ) ;
convert_to_string_ex ( bind_pw ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
ldap_bind_rdn = Z_STRVAL_PP ( bind_rdn ) ;
ldap_bind_pw = Z_STRVAL_PP ( bind_pw ) ;
1999-04-22 08:45:14 +08:00
break ;
default :
WRONG_PARAM_COUNT ;
break ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ldap_bind_s ( ld - > link , ldap_bind_rdn , ldap_bind_pw , LDAP_AUTH_SIMPLE ) ! = LDAP_SUCCESS ) {
php_error ( E_WARNING , " LDAP: Unable to bind to server: %s " , ldap_err2string ( _get_lderrno ( ld - > link ) ) ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
} else {
RETURN_TRUE ;
}
}
/* }}} */
/* {{{ proto int ldap_unbind(int link)
Unbind from LDAP directory */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_unbind )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( 1 , & link ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
zend_list_delete ( Z_LVAL_PP ( link ) ) ;
1999-04-22 08:45:14 +08:00
RETURN_TRUE ;
}
/* }}} */
2001-11-14 01:10:08 +08:00
/* {{{ php_set_opts
2001-06-05 21:12:10 +08:00
*/
2001-01-13 06:08:26 +08:00
static void php_set_opts ( LDAP * ldap , int sizelimit , int timelimit , int deref )
{
/* sizelimit */
if ( sizelimit > - 1 ) {
# if ( LDAP_API_VERSION >= 2004 ) || HAVE_NSLDAP
ldap_set_option ( ldap , LDAP_OPT_SIZELIMIT , & sizelimit ) ;
# else
ldap - > ld_sizelimit = sizelimit ;
# endif
}
/* timelimit */
if ( timelimit > - 1 ) {
# if ( LDAP_API_VERSION >= 2004 ) || HAVE_NSLDAP
ldap_set_option ( ldap , LDAP_OPT_TIMELIMIT , & timelimit ) ;
# else
ldap - > ld_timelimit = timelimit ;
# endif
}
/* deref */
if ( deref > - 1 ) {
# if ( LDAP_API_VERSION >= 2004 ) || HAVE_NSLDAP
ldap_set_option ( ldap , LDAP_OPT_DEREF , & deref ) ;
# else
ldap - > ld_deref = deref ;
# endif
}
}
2001-06-05 21:12:10 +08:00
/* }}} */
2001-01-13 06:08:26 +08:00
2001-06-05 21:12:10 +08:00
/* {{{ php_ldap_do_search
*/
1999-12-18 19:49:31 +08:00
static void php_ldap_do_search ( INTERNAL_FUNCTION_PARAMETERS , int scope )
1999-04-22 08:45:14 +08:00
{
2000-07-22 03:00:21 +08:00
pval * * link , * * base_dn , * * filter , * * attrs , * * attr , * * attrsonly , * * sizelimit , * * timelimit , * * deref ;
2001-11-14 01:10:08 +08:00
char * ldap_base_dn = NULL ;
char * ldap_filter = NULL ;
1999-04-22 08:45:14 +08:00
char * * ldap_attrs = NULL ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-06-01 05:09:30 +08:00
LDAPMessage * ldap_res ;
2000-07-24 05:32:02 +08:00
int ldap_attrsonly = 0 ;
int ldap_sizelimit = - 1 ;
int ldap_timelimit = - 1 ;
int ldap_deref = - 1 ;
2000-07-22 03:00:21 +08:00
int num_attribs = 0 ;
int i , errno ;
int myargcount = ZEND_NUM_ARGS ( ) ;
if ( myargcount < 3 | | myargcount > 8 | | zend_get_parameters_ex ( myargcount , & link , & base_dn , & filter , & attrs , & attrsonly , & sizelimit , & timelimit , & deref ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
1999-04-22 08:45:14 +08:00
2000-07-22 03:00:21 +08:00
/* Reverse -> fall through */
switch ( myargcount ) {
case 8 :
convert_to_long_ex ( deref ) ;
2001-09-26 05:58:48 +08:00
ldap_deref = Z_LVAL_PP ( deref ) ;
1999-04-22 08:45:14 +08:00
2000-07-22 03:00:21 +08:00
case 7 :
convert_to_long_ex ( timelimit ) ;
2001-09-26 05:58:48 +08:00
ldap_timelimit = Z_LVAL_PP ( timelimit ) ;
1999-04-22 08:45:14 +08:00
2000-07-22 03:00:21 +08:00
case 6 :
convert_to_long_ex ( sizelimit ) ;
2001-09-26 05:58:48 +08:00
ldap_sizelimit = Z_LVAL_PP ( sizelimit ) ;
1999-04-22 08:45:14 +08:00
2000-07-22 03:00:21 +08:00
case 5 :
convert_to_long_ex ( attrsonly ) ;
2001-09-26 05:58:48 +08:00
ldap_attrsonly = Z_LVAL_PP ( attrsonly ) ;
1999-04-22 08:45:14 +08:00
case 4 :
2001-09-26 05:58:48 +08:00
if ( Z_TYPE_PP ( attrs ) ! = IS_ARRAY ) {
1999-08-03 03:17:14 +08:00
php_error ( E_WARNING , " LDAP: Expected Array as last element " ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
2001-09-26 05:58:48 +08:00
num_attribs = zend_hash_num_elements ( Z_ARRVAL_PP ( attrs ) ) ;
1999-04-22 08:45:14 +08:00
if ( ( ldap_attrs = emalloc ( ( num_attribs + 1 ) * sizeof ( char * ) ) ) = = NULL ) {
1999-08-03 03:17:14 +08:00
php_error ( E_WARNING , " LDAP: Could not allocate memory " ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
for ( i = 0 ; i < num_attribs ; i + + ) {
2001-09-26 05:58:48 +08:00
if ( zend_hash_index_find ( Z_ARRVAL_PP ( attrs ) , i , ( void * * ) & attr ) = = FAILURE ) {
1999-08-03 03:17:14 +08:00
php_error ( E_WARNING , " LDAP: Array initialization wrong " ) ;
2001-01-13 18:00:27 +08:00
efree ( ldap_attrs ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
2000-07-22 03:00:21 +08:00
1999-08-08 00:32:50 +08:00
SEPARATE_ZVAL ( attr ) ;
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( attr ) ;
2001-09-26 05:58:48 +08:00
ldap_attrs [ i ] = Z_STRVAL_PP ( attr ) ;
1999-04-22 08:45:14 +08:00
}
ldap_attrs [ num_attribs ] = NULL ;
2000-07-22 03:00:21 +08:00
case 3 :
2001-01-13 06:08:26 +08:00
/* parallel search? */
if ( Z_TYPE_PP ( link ) ! = IS_ARRAY ) {
2001-01-17 21:43:39 +08:00
convert_to_string_ex ( filter ) ;
ldap_filter = Z_STRVAL_PP ( filter ) ;
2001-01-13 06:08:26 +08:00
convert_to_string_ex ( base_dn ) ;
ldap_base_dn = Z_STRVAL_PP ( base_dn ) ;
}
2000-07-22 03:00:21 +08:00
break ;
1999-04-22 08:45:14 +08:00
default :
WRONG_PARAM_COUNT ;
2000-07-22 03:00:21 +08:00
break ;
1999-04-22 08:45:14 +08:00
}
2001-01-13 06:08:26 +08:00
/* parallel search? */
if ( Z_TYPE_PP ( link ) = = IS_ARRAY ) {
2001-01-17 21:43:39 +08:00
int i , nlinks , nbases , nfilters , * rcs ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * * lds ;
2001-12-27 02:40:57 +08:00
zval * * entry , * resource ;
2001-01-13 06:08:26 +08:00
nlinks = zend_hash_num_elements ( Z_ARRVAL_PP ( link ) ) ;
if ( nlinks = = 0 ) {
php_error ( E_WARNING , " LDAP: No links in link array " ) ;
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
RETURN_FALSE ;
}
if ( Z_TYPE_PP ( base_dn ) = = IS_ARRAY ) {
nbases = zend_hash_num_elements ( Z_ARRVAL_PP ( base_dn ) ) ;
if ( nbases ! = nlinks ) {
php_error ( E_WARNING , " LDAP: Base must either be a string, or an array with the same number of elements as the links array " ) ;
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
RETURN_FALSE ;
}
zend_hash_internal_pointer_reset ( Z_ARRVAL_PP ( base_dn ) ) ;
} else {
nbases = 0 ; /* this means string, not array */
convert_to_string_ex ( base_dn ) ;
ldap_base_dn = Z_STRLEN_PP ( base_dn ) < 1 ? NULL : Z_STRVAL_PP ( base_dn ) ;
}
2001-01-17 21:43:39 +08:00
if ( Z_TYPE_PP ( filter ) = = IS_ARRAY ) {
nfilters = zend_hash_num_elements ( Z_ARRVAL_PP ( filter ) ) ;
if ( nfilters ! = nlinks ) {
php_error ( E_WARNING , " LDAP: Filter must either be a string, or an array with the same number of elements as the links array " ) ;
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
RETURN_FALSE ;
}
zend_hash_internal_pointer_reset ( Z_ARRVAL_PP ( filter ) ) ;
} else {
nfilters = 0 ; /* this means string, not array */
convert_to_string_ex ( filter ) ;
ldap_filter = Z_STRVAL_PP ( filter ) ;
}
2001-11-30 04:17:17 +08:00
lds = emalloc ( nlinks * sizeof ( ldap_linkdata ) ) ;
2001-01-13 06:08:26 +08:00
rcs = emalloc ( nlinks * sizeof ( * rcs ) ) ;
zend_hash_internal_pointer_reset ( Z_ARRVAL_PP ( link ) ) ;
for ( i = 0 ; i < nlinks ; i + + ) {
zend_hash_get_current_data ( Z_ARRVAL_PP ( link ) , ( void * * ) & entry ) ;
2001-06-01 05:09:30 +08:00
2001-11-30 04:17:17 +08:00
ld = ( ldap_linkdata * ) zend_fetch_resource ( entry TSRMLS_CC , - 1 , " ldap link " , NULL , 1 , le_link ) ;
if ( ld = = NULL ) {
efree ( lds ) ;
2001-01-13 06:08:26 +08:00
efree ( rcs ) ;
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
RETURN_FALSE ;
}
if ( nbases ! = 0 ) { /* base_dn an array? */
zend_hash_get_current_data ( Z_ARRVAL_PP ( base_dn ) , ( void * * ) & entry ) ;
zend_hash_move_forward ( Z_ARRVAL_PP ( base_dn ) ) ;
convert_to_string_ex ( entry ) ;
ldap_base_dn = Z_STRLEN_PP ( entry ) < 1 ? NULL : Z_STRVAL_PP ( entry ) ;
}
2001-01-17 21:43:39 +08:00
if ( nfilters ! = 0 ) { /* filter an array? */
zend_hash_get_current_data ( Z_ARRVAL_PP ( filter ) , ( void * * ) & entry ) ;
zend_hash_move_forward ( Z_ARRVAL_PP ( filter ) ) ;
convert_to_string_ex ( entry ) ;
ldap_filter = Z_STRVAL_PP ( entry ) ;
}
2001-01-13 06:08:26 +08:00
2001-11-30 04:17:17 +08:00
php_set_opts ( ld - > link , ldap_sizelimit , ldap_timelimit , ldap_deref ) ;
2001-01-13 06:08:26 +08:00
/* Run the actual search */
2001-11-30 04:17:17 +08:00
rcs [ i ] = ldap_search ( ld - > link , ldap_base_dn , scope , ldap_filter , ldap_attrs , ldap_attrsonly ) ;
lds [ i ] = ld ;
2001-01-13 06:08:26 +08:00
zend_hash_move_forward ( Z_ARRVAL_PP ( link ) ) ;
}
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
if ( array_init ( return_value ) = = FAILURE ) {
2001-11-30 04:17:17 +08:00
efree ( lds ) ;
2001-01-13 06:08:26 +08:00
efree ( rcs ) ;
RETURN_FALSE ;
}
/* Collect results from the searches */
for ( i = 0 ; i < nlinks ; i + + ) {
2001-12-27 02:40:57 +08:00
MAKE_STD_ZVAL ( resource ) ;
2001-01-13 06:08:26 +08:00
if ( rcs [ i ] ! = - 1 ) {
2001-11-30 04:17:17 +08:00
rcs [ i ] = ldap_result ( lds [ i ] - > link , LDAP_RES_ANY , 1 /* LDAP_MSG_ALL */ , NULL , & ldap_res ) ;
2001-01-13 06:08:26 +08:00
}
if ( rcs [ i ] ! = - 1 ) {
2001-12-27 02:40:57 +08:00
ZEND_REGISTER_RESOURCE ( resource , ldap_res , le_result ) ;
add_next_index_zval ( return_value , resource ) ;
2001-01-13 06:08:26 +08:00
} else {
add_next_index_bool ( return_value , 0 ) ;
}
2001-12-27 02:40:57 +08:00
}
2001-11-30 04:17:17 +08:00
efree ( lds ) ;
2001-01-13 06:08:26 +08:00
efree ( rcs ) ;
return ;
}
1999-04-22 08:45:14 +08:00
/* fix to make null base_dn's work */
if ( strlen ( ldap_base_dn ) < 1 ) {
ldap_base_dn = NULL ;
}
2001-11-30 04:17:17 +08:00
ld = ( ldap_linkdata * ) zend_fetch_resource ( link TSRMLS_CC , - 1 , " ldap link " , NULL , 1 , le_link ) ;
if ( ld = = NULL ) {
2001-01-13 18:00:27 +08:00
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
RETURN_FALSE ;
}
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
php_set_opts ( ld - > link , ldap_sizelimit , ldap_timelimit , ldap_deref ) ;
2000-07-22 03:00:21 +08:00
/* Run the actual search */
2001-11-30 04:17:17 +08:00
errno = ldap_search_s ( ld - > link , ldap_base_dn , scope , ldap_filter , ldap_attrs , ldap_attrsonly , & ldap_res ) ;
2000-07-22 03:00:21 +08:00
if ( ldap_attrs ! = NULL ) {
efree ( ldap_attrs ) ;
}
2001-01-07 21:03:11 +08:00
if ( errno ! = LDAP_SUCCESS
& & errno ! = LDAP_SIZELIMIT_EXCEEDED
# ifdef LDAP_ADMINLIMIT_EXCEEDED
& & errno ! = LDAP_ADMINLIMIT_EXCEEDED
# endif
# ifdef LDAP_REFERRAL
& & errno ! = LDAP_REFERRAL
# endif
) {
2001-11-30 04:17:17 +08:00
php_error ( E_WARNING , " LDAP: Unable to perform the search: %s " , ldap_err2string ( _get_lderrno ( ld - > link ) ) ) ;
2000-07-22 03:00:21 +08:00
RETVAL_FALSE ;
} else {
if ( errno = = LDAP_SIZELIMIT_EXCEEDED ) {
2001-08-12 00:39:07 +08:00
php_error ( E_WARNING , " LDAP: Partial search results returned: Sizelimit exceeded. " ) ;
2000-07-22 03:00:21 +08:00
}
2001-01-07 21:03:11 +08:00
# ifdef LDAP_ADMINLIMIT_EXCEEDED
else if ( errno = = LDAP_ADMINLIMIT_EXCEEDED ) {
2001-08-12 00:39:07 +08:00
php_error ( E_WARNING , " LDAP: Partial search results returned: Adminlimit exceeded. " ) ;
2001-01-07 21:03:11 +08:00
}
# endif
2001-06-01 05:09:30 +08:00
ZEND_REGISTER_RESOURCE ( return_value , ldap_res , le_result ) ;
1999-04-22 08:45:14 +08:00
}
}
2001-06-05 21:12:10 +08:00
/* }}} */
2000-07-22 03:00:21 +08:00
2001-01-09 02:31:59 +08:00
/* {{{ proto int ldap_read(int link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
1999-04-22 08:45:14 +08:00
Read an entry */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_read )
1999-04-22 08:45:14 +08:00
{
1999-12-18 19:49:31 +08:00
php_ldap_do_search ( INTERNAL_FUNCTION_PARAM_PASSTHRU , LDAP_SCOPE_BASE ) ;
1999-04-22 08:45:14 +08:00
}
/* }}} */
2001-01-09 02:31:59 +08:00
/* {{{ proto int ldap_list(int link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
1999-04-22 08:45:14 +08:00
Single - level search */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_list )
1999-04-22 08:45:14 +08:00
{
1999-12-18 19:49:31 +08:00
php_ldap_do_search ( INTERNAL_FUNCTION_PARAM_PASSTHRU , LDAP_SCOPE_ONELEVEL ) ;
1999-04-22 08:45:14 +08:00
}
/* }}} */
2001-01-09 02:31:59 +08:00
/* {{{ proto int ldap_search(int link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
1999-04-22 08:45:14 +08:00
Search LDAP tree under base_dn */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_search )
1999-04-22 08:45:14 +08:00
{
1999-12-18 19:49:31 +08:00
php_ldap_do_search ( INTERNAL_FUNCTION_PARAM_PASSTHRU , LDAP_SCOPE_SUBTREE ) ;
1999-04-22 08:45:14 +08:00
}
/* }}} */
/* {{{ proto int ldap_free_result(int result)
Free result memory */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_free_result )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * result ;
1999-07-17 02:01:55 +08:00
LDAPMessage * ldap_result ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( 1 , & result ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result , LDAPMessage * , result , - 1 , " ldap result " , le_result ) ;
2001-11-15 06:05:33 +08:00
zend_list_delete ( Z_LVAL_PP ( result ) ) ; /* Delete list entry and call registered destructor function */
RETVAL_TRUE ;
1999-04-22 08:45:14 +08:00
}
/* }}} */
/* {{{ proto int ldap_count_entries(int link, int result)
Count the number of entries in a search result */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_count_entries )
1999-04-22 08:45:14 +08:00
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
LDAPMessage * ldap_result ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result , LDAPMessage * , result , - 1 , " ldap result " , le_result ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
RETURN_LONG ( ldap_count_entries ( ld - > link , ldap_result ) ) ;
1999-04-22 08:45:14 +08:00
}
/* }}} */
/* {{{ proto int ldap_first_entry(int link, int result)
Return first result id */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_first_entry )
1999-04-22 08:45:14 +08:00
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-06-01 05:09:30 +08:00
LDAPMessage * ldap_result , * ldap_result_entry ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result , LDAPMessage * , result , - 1 , " ldap result " , le_result ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ( ldap_result_entry = ldap_first_entry ( ld - > link , ldap_result ) ) = = NULL ) {
2001-06-01 05:09:30 +08:00
RETVAL_FALSE ;
1999-04-22 08:45:14 +08:00
} else {
2001-06-01 05:09:30 +08:00
ZEND_REGISTER_RESOURCE ( return_value , ldap_result_entry , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
}
}
/* }}} */
/* {{{ proto int ldap_next_entry(int link, int entry)
Get next result entry */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_next_entry )
1999-04-22 08:45:14 +08:00
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result_entry ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-04-22 08:45:14 +08:00
LDAPMessage * ldap_result_entry , * ldap_result_entry_next ;
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result_entry ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ( ldap_result_entry_next = ldap_next_entry ( ld - > link , ldap_result_entry ) ) = = NULL ) {
2001-06-01 05:09:30 +08:00
RETVAL_FALSE ;
1999-04-22 08:45:14 +08:00
} else {
2001-06-01 05:09:30 +08:00
ZEND_REGISTER_RESOURCE ( return_value , ldap_result_entry_next , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
}
}
/* }}} */
/* {{{ proto array ldap_get_entries(int link, int result)
Get all result entries */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_get_entries )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link , * * result ;
1999-07-17 02:01:55 +08:00
LDAPMessage * ldap_result , * ldap_result_entry ;
pval * tmp1 , * tmp2 ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
LDAP * ldap ;
int num_entries , num_attrib , num_values , i ;
BerElement * ber ;
char * attribute ;
1999-12-10 07:45:30 +08:00
size_t attr_len ;
1999-07-17 02:01:55 +08:00
char * * ldap_value ;
char * dn ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result , LDAPMessage * , result , - 1 , " ldap result " , le_result ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
ldap = ld - > link ;
1999-04-22 08:45:14 +08:00
num_entries = ldap_count_entries ( ldap , ldap_result ) ;
array_init ( return_value ) ;
2000-12-05 01:07:27 +08:00
add_assoc_long ( return_value , " count " , num_entries ) ;
if ( num_entries = = 0 ) return ;
2000-07-25 23:34:28 +08:00
num_entries = 0 ;
2000-12-05 01:07:27 +08:00
1999-04-22 08:45:14 +08:00
ldap_result_entry = ldap_first_entry ( ldap , ldap_result ) ;
if ( ldap_result_entry = = NULL ) RETURN_FALSE ;
while ( ldap_result_entry ! = NULL ) {
1999-07-17 05:53:17 +08:00
MAKE_STD_ZVAL ( tmp1 ) ;
1999-07-17 02:01:55 +08:00
array_init ( tmp1 ) ;
1999-04-22 08:45:14 +08:00
2000-07-25 23:34:28 +08:00
num_attrib = 0 ;
1999-04-22 08:45:14 +08:00
attribute = ldap_first_attribute ( ldap , ldap_result_entry , & ber ) ;
2000-07-25 23:34:28 +08:00
1999-04-22 08:45:14 +08:00
while ( attribute ! = NULL ) {
ldap_value = ldap_get_values ( ldap , ldap_result_entry , attribute ) ;
num_values = ldap_count_values ( ldap_value ) ;
1999-07-17 05:53:17 +08:00
MAKE_STD_ZVAL ( tmp2 ) ;
1999-07-17 02:01:55 +08:00
array_init ( tmp2 ) ;
add_assoc_long ( tmp2 , " count " , num_values ) ;
2000-07-25 23:34:28 +08:00
for ( i = 0 ; i < num_values ; i + + ) {
1999-07-17 02:01:55 +08:00
add_index_string ( tmp2 , i , ldap_value [ i ] , 1 ) ;
1999-04-22 08:45:14 +08:00
}
ldap_value_free ( ldap_value ) ;
1999-12-10 07:45:30 +08:00
attr_len = strlen ( attribute ) ;
2001-09-26 06:49:04 +08:00
zend_hash_update ( Z_ARRVAL_P ( tmp1 ) , php_strtolower ( attribute , attr_len ) , attr_len + 1 , ( void * ) & tmp2 , sizeof ( pval * ) , NULL ) ;
2000-07-25 23:34:28 +08:00
add_index_string ( tmp1 , num_attrib , attribute , 1 ) ;
1999-04-22 08:45:14 +08:00
2000-07-25 23:34:28 +08:00
num_attrib + + ;
2001-06-21 05:12:55 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
ldap_memfree ( attribute ) ;
# endif
1999-04-22 08:45:14 +08:00
attribute = ldap_next_attribute ( ldap , ldap_result_entry , ber ) ;
}
2001-06-21 05:12:55 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
if ( ber ! = NULL )
ber_free ( ber , 0 ) ;
# endif
1999-04-22 08:45:14 +08:00
1999-07-17 02:01:55 +08:00
add_assoc_long ( tmp1 , " count " , num_attrib ) ;
1999-04-22 08:45:14 +08:00
dn = ldap_get_dn ( ldap , ldap_result_entry ) ;
1999-07-17 02:01:55 +08:00
add_assoc_string ( tmp1 , " dn " , dn , 1 ) ;
2001-06-21 05:12:55 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
ldap_memfree ( dn ) ;
2001-07-15 19:12:28 +08:00
# else
free ( dn ) ;
2001-06-21 05:12:55 +08:00
# endif
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
zend_hash_index_update ( Z_ARRVAL_P ( return_value ) , num_entries , ( void * ) & tmp1 , sizeof ( pval * ) , NULL ) ;
1999-04-22 08:45:14 +08:00
2000-07-25 23:34:28 +08:00
num_entries + + ;
1999-04-22 08:45:14 +08:00
ldap_result_entry = ldap_next_entry ( ldap , ldap_result_entry ) ;
}
add_assoc_long ( return_value , " count " , num_entries ) ;
2000-07-25 23:34:28 +08:00
1999-04-22 08:45:14 +08:00
}
/* }}} */
/* {{{ proto string ldap_first_attribute(int link, int result, int ber)
Return first attribute */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_first_attribute )
1999-04-22 08:45:14 +08:00
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result , * * berp ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-04-22 08:45:14 +08:00
LDAPMessage * ldap_result_entry ;
BerElement * ber ;
char * attribute ;
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 3 | | zend_get_parameters_ex ( 3 , & link , & result , & berp ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result , - 1 , " ldap result entry " , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ( attribute = ldap_first_attribute ( ld - > link , ldap_result_entry , & ber ) ) = = NULL ) {
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
} else {
2001-12-01 07:37:43 +08:00
ZEND_REGISTER_RESOURCE ( * berp , ber , le_ber_entry ) ;
1999-04-22 08:45:14 +08:00
2001-08-12 00:39:07 +08:00
RETVAL_STRING ( attribute , 1 ) ;
2001-06-23 21:43:20 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
1999-04-22 08:45:14 +08:00
ldap_memfree ( attribute ) ;
# endif
}
}
/* }}} */
/* {{{ proto string ldap_next_attribute(int link, int result, int ber)
Get the next attribute in result */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_next_attribute )
1999-04-22 08:45:14 +08:00
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result , * * berp ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
LDAPMessage * ldap_result_entry ;
BerElement * ber ;
char * attribute ;
1999-04-22 08:45:14 +08:00
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 3 | | zend_get_parameters_ex ( 3 , & link , & result , & berp ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result , - 1 , " ldap result entry " , le_result_entry ) ;
ZEND_FETCH_RESOURCE ( ber , BerElement * , berp , - 1 , " ldap ber entry " , le_ber_entry ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ( attribute = ldap_next_attribute ( ld - > link , ldap_result_entry , ber ) ) = = NULL ) {
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
} else {
2001-12-01 07:37:43 +08:00
ZEND_REGISTER_RESOURCE ( * berp , ber , le_ber_entry ) ;
2000-08-05 01:18:54 +08:00
2001-08-12 00:39:07 +08:00
RETVAL_STRING ( attribute , 1 ) ;
2001-06-23 21:43:20 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
1999-04-22 08:45:14 +08:00
ldap_memfree ( attribute ) ;
# endif
}
}
/* }}} */
/* {{{ proto array ldap_get_attributes(int link, int result)
Get attributes from a search result entry */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_get_attributes )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link , * * result_entry ;
1999-07-17 02:01:55 +08:00
pval * tmp ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
LDAPMessage * ldap_result_entry ;
char * attribute ;
char * * ldap_value ;
2000-07-25 23:34:28 +08:00
int i , num_values , num_attrib ;
1999-07-17 02:01:55 +08:00
BerElement * ber ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result_entry ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
2000-07-25 23:34:28 +08:00
array_init ( return_value ) ;
1999-04-22 08:45:14 +08:00
num_attrib = 0 ;
2001-11-30 04:17:17 +08:00
attribute = ldap_first_attribute ( ld - > link , ldap_result_entry , & ber ) ;
1999-04-22 08:45:14 +08:00
while ( attribute ! = NULL ) {
2001-11-30 04:17:17 +08:00
ldap_value = ldap_get_values ( ld - > link , ldap_result_entry , attribute ) ;
1999-04-22 08:45:14 +08:00
num_values = ldap_count_values ( ldap_value ) ;
1999-07-17 05:53:17 +08:00
MAKE_STD_ZVAL ( tmp ) ;
1999-07-17 02:01:55 +08:00
array_init ( tmp ) ;
add_assoc_long ( tmp , " count " , num_values ) ;
1999-04-22 08:45:14 +08:00
for ( i = 0 ; i < num_values ; i + + ) {
1999-07-17 02:01:55 +08:00
add_index_string ( tmp , i , ldap_value [ i ] , 1 ) ;
1999-04-22 08:45:14 +08:00
}
ldap_value_free ( ldap_value ) ;
2001-09-26 05:58:48 +08:00
zend_hash_update ( Z_ARRVAL_P ( return_value ) , attribute , strlen ( attribute ) + 1 , ( void * ) & tmp , sizeof ( pval * ) , NULL ) ;
2000-07-25 23:34:28 +08:00
add_index_string ( return_value , num_attrib , attribute , 1 ) ;
1999-04-22 08:45:14 +08:00
2000-07-25 23:34:28 +08:00
num_attrib + + ;
2001-06-23 21:43:20 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
ldap_memfree ( attribute ) ;
# endif
2001-11-30 04:17:17 +08:00
attribute = ldap_next_attribute ( ld - > link , ldap_result_entry , ber ) ;
1999-04-22 08:45:14 +08:00
}
2001-06-23 21:43:20 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
if ( ber ! = NULL )
ber_free ( ber , 0 ) ;
# endif
1999-04-22 08:45:14 +08:00
add_assoc_long ( return_value , " count " , num_attrib ) ;
}
/* }}} */
/* {{{ proto array ldap_get_values(int link, int result, string attribute)
Get all values from a result entry */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_get_values )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link , * * result_entry , * * attr ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
LDAPMessage * ldap_result_entry ;
char * attribute ;
char * * ldap_value ;
int i , num_values ;
1999-04-22 08:45:14 +08:00
2001-08-12 00:39:07 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 3 | | zend_get_parameters_ex ( 3 , & link , & result_entry , & attr ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( attr ) ;
2001-09-26 05:58:48 +08:00
attribute = Z_STRVAL_PP ( attr ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ( ldap_value = ldap_get_values ( ld - > link , ldap_result_entry , attribute ) ) = = NULL ) {
php_error ( E_WARNING , " LDAP: Cannot get the value(s) of attribute %s " , ldap_err2string ( _get_lderrno ( ld - > link ) ) ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
num_values = ldap_count_values ( ldap_value ) ;
if ( array_init ( return_value ) = = FAILURE ) {
RETURN_FALSE ;
}
for ( i = 0 ; i < num_values ; i + + ) {
add_next_index_string ( return_value , ldap_value [ i ] , 1 ) ;
}
add_assoc_long ( return_value , " count " , num_values ) ;
ldap_value_free ( ldap_value ) ;
2000-07-28 08:09:33 +08:00
1999-04-22 08:45:14 +08:00
}
/* }}} */
2000-04-08 07:20:22 +08:00
/* {{{ proto array ldap_get_values_len(int link, int result, string attribute)
2000-07-28 08:09:33 +08:00
Get all values with lengths from a result entry */
2000-04-08 07:20:22 +08:00
PHP_FUNCTION ( ldap_get_values_len )
{
pval * * link , * * result_entry , * * attr ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2000-04-08 07:20:22 +08:00
LDAPMessage * ldap_result_entry ;
char * attribute ;
struct berval * * ldap_value_len ;
int i , num_values ;
2000-07-28 08:09:33 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 3 | | zend_get_parameters_ex ( 3 , & link , & result_entry , & attr ) = = FAILURE ) {
2000-04-08 07:20:22 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
2000-07-29 06:39:22 +08:00
2000-04-08 07:20:22 +08:00
convert_to_string_ex ( attr ) ;
2001-09-26 05:58:48 +08:00
attribute = Z_STRVAL_PP ( attr ) ;
2000-04-08 07:20:22 +08:00
2001-11-30 04:17:17 +08:00
if ( ( ldap_value_len = ldap_get_values_len ( ld - > link , ldap_result_entry , attribute ) ) = = NULL ) {
php_error ( E_WARNING , " LDAP: Cannot get the value(s) of attribute %s " , ldap_err2string ( _get_lderrno ( ld - > link ) ) ) ;
2000-04-08 07:20:22 +08:00
RETURN_FALSE ;
}
num_values = ldap_count_values_len ( ldap_value_len ) ;
if ( array_init ( return_value ) = = FAILURE ) {
php_error ( E_ERROR , " Cannot initialize return value " ) ;
RETURN_FALSE ;
}
for ( i = 0 ; i < num_values ; i + + ) {
2000-07-29 05:48:16 +08:00
add_next_index_stringl ( return_value , ldap_value_len [ i ] - > bv_val , ldap_value_len [ i ] - > bv_len , 1 ) ;
2000-04-08 07:20:22 +08:00
}
add_assoc_long ( return_value , " count " , num_values ) ;
2000-07-28 08:09:33 +08:00
ldap_value_free_len ( ldap_value_len ) ;
2000-04-08 07:20:22 +08:00
}
/* }}} */
1999-04-22 08:45:14 +08:00
/* {{{ proto string ldap_get_dn(int link, int result)
Get the DN of a result entry */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_get_dn )
1999-04-22 08:45:14 +08:00
{
2001-08-12 00:39:07 +08:00
pval * * link , * * result_entry ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-06-01 05:09:30 +08:00
LDAPMessage * ldap_result_entry ;
1999-04-22 08:45:14 +08:00
char * text ;
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result_entry ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
text = ldap_get_dn ( ld - > link , ldap_result_entry ) ;
1999-04-22 08:45:14 +08:00
if ( text ! = NULL ) {
2001-08-12 00:39:07 +08:00
RETVAL_STRING ( text , 1 ) ;
2001-06-23 21:43:20 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
1999-04-22 08:45:14 +08:00
ldap_memfree ( text ) ;
2001-07-15 19:12:28 +08:00
# else
free ( text ) ;
1999-04-22 08:45:14 +08:00
# endif
} else {
RETURN_FALSE ;
}
}
/* }}} */
/* {{{ proto array ldap_explode_dn(string dn, int with_attrib)
Splits DN into its component parts */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_explode_dn )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * dn , * * with_attrib ;
1999-07-17 02:01:55 +08:00
char * * ldap_value ;
int i , count ;
1999-04-22 08:45:14 +08:00
2001-08-12 00:39:07 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & dn , & with_attrib ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( dn ) ;
convert_to_long_ex ( with_attrib ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
ldap_value = ldap_explode_dn ( Z_STRVAL_PP ( dn ) , Z_LVAL_PP ( with_attrib ) ) ;
1999-04-22 08:45:14 +08:00
i = 0 ;
while ( ldap_value [ i ] ! = NULL ) i + + ;
count = i ;
if ( array_init ( return_value ) = = FAILURE ) {
RETURN_FALSE ;
}
add_assoc_long ( return_value , " count " , count ) ;
for ( i = 0 ; i < count ; i + + ) {
add_index_string ( return_value , i , ldap_value [ i ] , 1 ) ;
}
ldap_value_free ( ldap_value ) ;
}
/* }}} */
/* {{{ proto string ldap_dn2ufn(string dn)
Convert DN to User Friendly Naming format */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_dn2ufn )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * dn ;
1999-04-22 08:45:14 +08:00
char * ufn ;
2001-08-12 00:39:07 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( 1 , & dn ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( dn ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
ufn = ldap_dn2ufn ( Z_STRVAL_PP ( dn ) ) ;
1999-04-22 08:45:14 +08:00
if ( ufn ! = NULL ) {
2001-08-12 00:39:07 +08:00
RETVAL_STRING ( ufn , 1 ) ;
2001-06-23 21:43:20 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP || WINDOWS
1999-04-22 08:45:14 +08:00
ldap_memfree ( ufn ) ;
# endif
} else {
RETURN_FALSE ;
}
}
/* }}} */
1999-05-21 18:06:25 +08:00
2000-07-24 05:32:02 +08:00
1999-05-21 18:06:25 +08:00
/* added to fix use of ldap_modify_add for doing an ldap_add, gerrit thomson. */
# define PHP_LD_FULL_ADD 0xff
2001-06-05 21:12:10 +08:00
/* {{{ php_ldap_do_modify
*/
1999-12-18 19:49:31 +08:00
static void php_ldap_do_modify ( INTERNAL_FUNCTION_PARAMETERS , int oper )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link , * * dn , * * entry , * * value , * * ivalue ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
char * ldap_dn ;
LDAPMod * * ldap_mods ;
int i , j , num_attribs , num_values ;
2000-07-29 05:31:02 +08:00
int * num_berval ;
1999-07-17 02:01:55 +08:00
char * attribute ;
ulong index ;
int is_full_add = 0 ; /* flag for full add operation so ldap_mod_add can be put back into oper, gerrit THomson */
1999-05-21 18:06:25 +08:00
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 3 | | zend_get_parameters_ex ( 3 , & link , & dn , & entry ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-09-26 05:58:48 +08:00
if ( Z_TYPE_PP ( entry ) ! = IS_ARRAY ) {
1999-08-03 03:17:14 +08:00
php_error ( E_WARNING , " LDAP: Expected Array as the last element " ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
1999-04-22 08:45:14 +08:00
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( dn ) ;
2001-09-26 05:58:48 +08:00
ldap_dn = Z_STRVAL_PP ( dn ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
num_attribs = zend_hash_num_elements ( Z_ARRVAL_PP ( entry ) ) ;
1999-04-22 08:45:14 +08:00
ldap_mods = emalloc ( ( num_attribs + 1 ) * sizeof ( LDAPMod * ) ) ;
2000-07-29 05:31:02 +08:00
num_berval = emalloc ( num_attribs * sizeof ( int ) ) ;
2001-09-26 05:58:48 +08:00
zend_hash_internal_pointer_reset ( Z_ARRVAL_PP ( entry ) ) ;
2000-07-29 05:31:02 +08:00
/* added by gerrit thomson to fix ldap_add using ldap_mod_add */
if ( oper = = PHP_LD_FULL_ADD ) {
oper = LDAP_MOD_ADD ;
is_full_add = 1 ;
}
1999-05-21 18:06:25 +08:00
/* end additional , gerrit thomson */
1999-04-22 08:45:14 +08:00
for ( i = 0 ; i < num_attribs ; i + + ) {
ldap_mods [ i ] = emalloc ( sizeof ( LDAPMod ) ) ;
2000-07-29 05:31:02 +08:00
ldap_mods [ i ] - > mod_op = oper | LDAP_MOD_BVALUES ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
if ( zend_hash_get_current_key ( Z_ARRVAL_PP ( entry ) , & attribute , & index , 0 ) = = HASH_KEY_IS_STRING ) {
1999-04-22 08:45:14 +08:00
ldap_mods [ i ] - > mod_type = estrdup ( attribute ) ;
} else {
2000-11-13 10:02:40 +08:00
php_error ( E_ERROR , " LDAP: Unknown Attribute in the data " ) ;
2001-01-13 18:00:27 +08:00
/* Free allocated memory */
while ( i > = 0 ) {
efree ( ldap_mods [ i - - ] ) ;
}
efree ( num_berval ) ;
efree ( ldap_mods ) ;
2000-11-13 10:02:40 +08:00
RETURN_FALSE ;
1999-04-22 08:45:14 +08:00
}
2001-09-26 05:58:48 +08:00
zend_hash_get_current_data ( Z_ARRVAL_PP ( entry ) , ( void * * ) & value ) ;
1999-04-22 08:45:14 +08:00
2001-09-26 05:58:48 +08:00
if ( Z_TYPE_PP ( value ) ! = IS_ARRAY ) {
1999-04-22 08:45:14 +08:00
num_values = 1 ;
} else {
2001-09-26 05:58:48 +08:00
num_values = zend_hash_num_elements ( Z_ARRVAL_PP ( value ) ) ;
1999-04-22 08:45:14 +08:00
}
2000-07-29 05:31:02 +08:00
num_berval [ i ] = num_values ;
ldap_mods [ i ] - > mod_bvalues = emalloc ( ( num_values + 1 ) * sizeof ( struct berval * ) ) ;
1999-05-21 18:06:25 +08:00
/* allow for arrays with one element, no allowance for arrays with none but probably not required, gerrit thomson. */
2001-09-26 05:58:48 +08:00
if ( ( num_values = = 1 ) & & ( Z_TYPE_PP ( value ) ! = IS_ARRAY ) ) {
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( value ) ;
2000-07-29 05:31:02 +08:00
ldap_mods [ i ] - > mod_bvalues [ 0 ] = ( struct berval * ) emalloc ( sizeof ( struct berval ) ) ;
2001-09-26 05:58:48 +08:00
ldap_mods [ i ] - > mod_bvalues [ 0 ] - > bv_len = Z_STRLEN_PP ( value ) ;
ldap_mods [ i ] - > mod_bvalues [ 0 ] - > bv_val = Z_STRVAL_PP ( value ) ;
1999-04-22 08:45:14 +08:00
} else {
2000-07-29 05:31:02 +08:00
for ( j = 0 ; j < num_values ; j + + ) {
2001-11-05 19:50:52 +08:00
if ( zend_hash_index_find ( Z_ARRVAL_PP ( value ) , j , ( void * * ) & ivalue ) = = FAILURE ) {
php_error ( E_WARNING , " LDAP: Value array must have consecutive indices 0, 1, ... " ) ;
num_berval [ i ] = j ;
num_attribs = i + 1 ;
RETVAL_FALSE ;
goto errexit ;
}
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( ivalue ) ;
2000-07-29 05:31:02 +08:00
ldap_mods [ i ] - > mod_bvalues [ j ] = ( struct berval * ) emalloc ( sizeof ( struct berval ) ) ;
2001-09-26 05:58:48 +08:00
ldap_mods [ i ] - > mod_bvalues [ j ] - > bv_len = Z_STRLEN_PP ( ivalue ) ;
ldap_mods [ i ] - > mod_bvalues [ j ] - > bv_val = Z_STRVAL_PP ( ivalue ) ;
1999-04-22 08:45:14 +08:00
}
}
2000-07-29 05:31:02 +08:00
ldap_mods [ i ] - > mod_bvalues [ num_values ] = NULL ;
2001-09-26 05:58:48 +08:00
zend_hash_move_forward ( Z_ARRVAL_PP ( entry ) ) ;
1999-04-22 08:45:14 +08:00
}
ldap_mods [ num_attribs ] = NULL ;
1999-05-21 18:06:25 +08:00
/* check flag to see if do_mod was called to perform full add , gerrit thomson */
2001-11-14 01:10:08 +08:00
if ( is_full_add = = 1 ) {
2001-11-30 04:17:17 +08:00
if ( ldap_add_s ( ld - > link , ldap_dn , ldap_mods ) ! = LDAP_SUCCESS ) {
ldap_perror ( ld - > link , " LDAP " ) ;
1999-08-03 03:17:14 +08:00
php_error ( E_WARNING , " LDAP: add operation could not be completed. " ) ;
1999-04-22 08:45:14 +08:00
RETVAL_FALSE ;
} else RETVAL_TRUE ;
} else {
2001-11-30 04:17:17 +08:00
if ( ldap_modify_s ( ld - > link , ldap_dn , ldap_mods ) ! = LDAP_SUCCESS ) {
1999-08-03 03:17:14 +08:00
php_error ( E_WARNING , " LDAP: modify operation could not be completed. " ) ;
1999-04-22 08:45:14 +08:00
RETVAL_FALSE ;
} else RETVAL_TRUE ;
}
2001-11-05 19:50:52 +08:00
errexit :
2000-07-29 05:31:02 +08:00
for ( i = 0 ; i < num_attribs ; i + + ) {
1999-04-22 08:45:14 +08:00
efree ( ldap_mods [ i ] - > mod_type ) ;
2000-07-29 05:31:02 +08:00
for ( j = 0 ; j < num_berval [ i ] ; j + + ) {
efree ( ldap_mods [ i ] - > mod_bvalues [ j ] ) ;
}
efree ( ldap_mods [ i ] - > mod_bvalues ) ;
1999-04-22 08:45:14 +08:00
efree ( ldap_mods [ i ] ) ;
}
2000-07-29 05:31:02 +08:00
efree ( num_berval ) ;
1999-04-22 08:45:14 +08:00
efree ( ldap_mods ) ;
return ;
}
2001-06-05 21:12:10 +08:00
/* }}} */
2000-07-24 05:32:02 +08:00
1999-04-22 08:45:14 +08:00
/* {{{ proto int ldap_add(int link, string dn, array entry)
Add entries to LDAP directory */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_add )
1999-04-22 08:45:14 +08:00
{
1999-05-21 18:06:25 +08:00
/* use a newly define parameter into the do_modify so ldap_mod_add can be used the way it is supposed to be used , Gerrit THomson */
1999-12-18 19:49:31 +08:00
php_ldap_do_modify ( INTERNAL_FUNCTION_PARAM_PASSTHRU , PHP_LD_FULL_ADD ) ;
1999-04-22 08:45:14 +08:00
}
/* }}} */
1999-05-21 18:06:25 +08:00
/* three functions for attribute base modifications, gerrit Thomson */
/* {{{ proto int ldap_mod_replace(int link, string dn, array entry)
Replace attribute values with new ones */
PHP_FUNCTION ( ldap_mod_replace )
{
2001-06-01 05:09:30 +08:00
php_ldap_do_modify ( INTERNAL_FUNCTION_PARAM_PASSTHRU , LDAP_MOD_REPLACE ) ;
}
1999-05-21 18:06:25 +08:00
/* }}} */
/* {{{ proto int ldap_mod_add(int link, string dn, array entry)
2000-02-23 23:04:36 +08:00
Add attribute values to current */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_mod_add )
{
2001-06-01 05:09:30 +08:00
php_ldap_do_modify ( INTERNAL_FUNCTION_PARAM_PASSTHRU , LDAP_MOD_ADD ) ;
1999-05-21 18:06:25 +08:00
}
/* }}} */
/* {{{ proto int ldap_mod_del(int link, string dn, array entry)
Delete attribute values */
PHP_FUNCTION ( ldap_mod_del )
{
1999-12-18 19:49:31 +08:00
php_ldap_do_modify ( INTERNAL_FUNCTION_PARAM_PASSTHRU , LDAP_MOD_DELETE ) ;
1999-05-21 18:06:25 +08:00
}
2000-07-24 05:32:02 +08:00
/* }}} */
1999-05-21 18:06:25 +08:00
1999-04-22 08:45:14 +08:00
/* {{{ proto int ldap_delete(int link, string dn)
Delete an entry from a directory */
1999-05-21 18:06:25 +08:00
PHP_FUNCTION ( ldap_delete )
1999-04-22 08:45:14 +08:00
{
1999-11-22 10:31:32 +08:00
pval * * link , * * dn ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
1999-07-17 02:01:55 +08:00
char * ldap_dn ;
1999-04-22 08:45:14 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & dn ) = = FAILURE ) {
1999-04-22 08:45:14 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
1999-04-22 08:45:14 +08:00
1999-11-22 10:31:32 +08:00
convert_to_string_ex ( dn ) ;
2001-09-26 05:58:48 +08:00
ldap_dn = Z_STRVAL_PP ( dn ) ;
1999-04-22 08:45:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ldap_delete_s ( ld - > link , ldap_dn ) ! = LDAP_SUCCESS ) {
ldap_perror ( ld - > link , " LDAP " ) ;
1999-04-22 08:45:14 +08:00
RETURN_FALSE ;
}
RETURN_TRUE ;
}
/* }}} */
2000-04-06 20:36:47 +08:00
/* {{{ proto int ldap_errno(int link)
Get the current ldap error number */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_errno )
{
pval * * link ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2000-04-06 20:36:47 +08:00
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( ht , & link ) = = FAILURE ) {
2000-04-06 20:36:47 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
2001-11-30 04:17:17 +08:00
RETURN_LONG ( _get_lderrno ( ld - > link ) ) ;
2000-04-06 20:36:47 +08:00
}
/* }}} */
/* {{{ proto string ldap_err2str(int errno)
Convert error number to error string */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_err2str )
{
zval * * perrno ;
2000-04-06 20:36:47 +08:00
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( ht , & perrno ) = = FAILURE ) {
2000-04-06 20:36:47 +08:00
WRONG_PARAM_COUNT ;
}
2001-06-01 05:09:30 +08:00
2000-04-06 20:36:47 +08:00
convert_to_long_ex ( perrno ) ;
2001-09-26 05:58:48 +08:00
RETURN_STRING ( ldap_err2string ( Z_LVAL_PP ( perrno ) ) , 1 ) ;
2000-04-06 20:36:47 +08:00
}
/* }}} */
/* {{{ proto string ldap_error(int link)
Get the current ldap error string */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_error )
{
pval * * link ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2000-04-06 20:36:47 +08:00
int ld_errno ;
2000-06-06 03:47:54 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( ht , & link ) = = FAILURE ) {
2000-04-06 20:36:47 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2000-04-06 20:36:47 +08:00
2001-11-30 04:17:17 +08:00
ld_errno = _get_lderrno ( ld - > link ) ;
2000-04-06 20:36:47 +08:00
RETURN_STRING ( ldap_err2string ( ld_errno ) , 1 ) ;
}
2000-04-07 00:57:33 +08:00
/* }}} */
2000-07-26 19:01:44 +08:00
/* {{{ proto int ldap_compare(int link, string dn, string attr, string value)
2000-07-26 19:28:14 +08:00
Determine if an entry has a specific value for one of its attributes */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_compare )
{
2000-07-26 19:01:44 +08:00
pval * * link , * * dn , * * attr , * * value ;
char * ldap_dn , * ldap_attr , * ldap_value ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2000-07-26 19:01:44 +08:00
int errno ;
if ( ZEND_NUM_ARGS ( ) ! = 4 | | zend_get_parameters_ex ( 4 , & link , & dn , & attr , & value ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
2000-07-26 19:01:44 +08:00
convert_to_string_ex ( dn ) ;
convert_to_string_ex ( attr ) ;
convert_to_string_ex ( value ) ;
2001-09-26 05:58:48 +08:00
ldap_dn = Z_STRVAL_PP ( dn ) ;
ldap_attr = Z_STRVAL_PP ( attr ) ;
ldap_value = Z_STRVAL_PP ( value ) ;
2000-07-26 19:01:44 +08:00
2001-11-30 04:17:17 +08:00
errno = ldap_compare_s ( ld - > link , ldap_dn , ldap_attr , ldap_value ) ;
2000-07-26 19:01:44 +08:00
switch ( errno ) {
case LDAP_COMPARE_TRUE :
RETURN_TRUE ;
break ;
case LDAP_COMPARE_FALSE :
RETURN_FALSE ;
break ;
}
php_error ( E_WARNING , " LDAP: Compare operation could not be completed: %s " , ldap_err2string ( errno ) ) ;
RETURN_LONG ( - 1 ) ;
}
/* }}} */
2000-10-17 23:51:04 +08:00
2001-11-22 04:14:17 +08:00
/* {{{ proto int ldap_sort(int link, int result, string sortfilter)
Sort LDAP result entries */
PHP_FUNCTION ( ldap_sort )
{
zval * link , * result ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-11-22 04:14:17 +08:00
char * sortfilter ;
int sflen ;
zend_rsrc_list_entry * le ;
if ( zend_parse_parameters ( ZEND_NUM_ARGS ( ) TSRMLS_CC , " rrs " , & link , & result , & sortfilter , & sflen ) = = FAILURE ) {
RETURN_FALSE ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , & link , - 1 , " ldap link " , le_link ) ;
2001-11-22 04:14:17 +08:00
if ( zend_hash_index_find ( & EG ( regular_list ) , Z_LVAL_P ( result ) , ( void * * ) & le ) = = FAILURE | | le - > type ! = le_result ) {
php_error ( E_WARNING , " Supplied resource is not a valid ldap result resource " ) ;
RETURN_FALSE ;
}
2001-11-30 04:17:17 +08:00
if ( ldap_sort_entries ( ld - > link , ( LDAPMessage * * ) & le - > ptr , sflen ? sortfilter : NULL , strcmp ) ! = LDAP_SUCCESS ) {
2001-11-22 04:14:17 +08:00
php_error ( E_WARNING , " LDAP sort failed: %s " , ldap_err2string ( errno ) ) ;
RETURN_FALSE ;
}
RETURN_TRUE ;
}
/* }}} */
2000-08-02 21:11:46 +08:00
2000-10-29 03:22:46 +08:00
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP
2000-10-22 19:25:47 +08:00
/* {{{ proto boolean ldap_get_option(int link, int option, mixed retval)
2000-10-18 00:06:04 +08:00
Get the current value of various session - wide parameters */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_get_option )
{
2000-10-18 00:06:04 +08:00
pval * * link , * * option , * * retval ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2000-10-18 00:06:04 +08:00
int opt ;
if ( ZEND_NUM_ARGS ( ) ! = 3 | |
zend_get_parameters_ex ( 3 , & link , & option , & retval ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2000-10-18 00:06:04 +08:00
convert_to_long_ex ( option ) ;
2001-09-26 05:58:48 +08:00
opt = Z_LVAL_PP ( option ) ;
2000-10-18 00:06:04 +08:00
switch ( opt ) {
/* options with int value */
case LDAP_OPT_DEREF :
case LDAP_OPT_SIZELIMIT :
case LDAP_OPT_TIMELIMIT :
case LDAP_OPT_PROTOCOL_VERSION :
case LDAP_OPT_ERROR_NUMBER :
case LDAP_OPT_REFERRALS :
case LDAP_OPT_RESTART :
{
int val ;
2001-11-30 04:17:17 +08:00
if ( ldap_get_option ( ld - > link , opt , & val ) ) {
2000-10-18 00:06:04 +08:00
RETURN_FALSE ;
}
2000-10-18 15:47:51 +08:00
zval_dtor ( * retval ) ;
ZVAL_LONG ( * retval , val ) ;
2000-10-18 00:06:04 +08:00
} break ;
/* options with string value */
case LDAP_OPT_HOST_NAME :
case LDAP_OPT_ERROR_STRING :
2001-01-08 05:18:02 +08:00
# ifdef LDAP_OPT_MATCHED_DN
2000-10-18 00:06:04 +08:00
case LDAP_OPT_MATCHED_DN :
2000-11-04 06:53:49 +08:00
# endif
2000-10-18 00:06:04 +08:00
{
char * val ;
2001-11-30 04:17:17 +08:00
if ( ldap_get_option ( ld - > link , opt , & val ) ) {
2000-10-18 00:06:04 +08:00
RETURN_FALSE ;
}
2000-10-18 15:47:51 +08:00
zval_dtor ( * retval ) ;
2000-10-29 03:22:46 +08:00
ZVAL_STRING ( * retval , val , 1 ) ;
2000-10-18 00:06:04 +08:00
ldap_memfree ( val ) ;
} break ;
2000-10-29 03:22:46 +08:00
/* options not implemented
2000-10-18 00:06:04 +08:00
case LDAP_OPT_SERVER_CONTROLS :
case LDAP_OPT_CLIENT_CONTROLS :
case LDAP_OPT_API_INFO :
case LDAP_OPT_API_FEATURE_INFO :
2000-10-29 03:22:46 +08:00
*/
2000-10-18 00:06:04 +08:00
default :
RETURN_FALSE ;
}
RETURN_TRUE ;
}
/* }}} */
2000-10-22 19:25:47 +08:00
/* {{{ proto boolean ldap_set_option(int link, int option, mixed newval)
2000-10-18 00:06:04 +08:00
Set the value of various session - wide parameters */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_set_option )
{
2000-10-18 00:06:04 +08:00
pval * * link , * * option , * * newval ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-12-24 00:32:06 +08:00
LDAP * ldap ;
2000-10-18 00:06:04 +08:00
int opt ;
if ( ZEND_NUM_ARGS ( ) ! = 3 | |
zend_get_parameters_ex ( 3 , & link , & option , & newval ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-12-24 00:32:06 +08:00
if ( Z_TYPE_PP ( link ) = = IS_NULL ) {
ldap = NULL ;
} else {
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
ldap = ld - > link ;
}
2001-06-01 05:09:30 +08:00
2000-10-18 00:06:04 +08:00
convert_to_long_ex ( option ) ;
2001-09-26 05:58:48 +08:00
opt = Z_LVAL_PP ( option ) ;
2000-10-18 00:06:04 +08:00
switch ( opt ) {
/* options with int value */
case LDAP_OPT_DEREF :
case LDAP_OPT_SIZELIMIT :
case LDAP_OPT_TIMELIMIT :
case LDAP_OPT_PROTOCOL_VERSION :
case LDAP_OPT_ERROR_NUMBER :
2001-12-24 00:32:06 +08:00
# ifdef LDAP_OPT_DEBUG_LEVEL
case LDAP_OPT_DEBUG_LEVEL :
# endif
2000-10-18 00:06:04 +08:00
{
int val ;
convert_to_long_ex ( newval ) ;
2001-09-26 05:58:48 +08:00
val = Z_LVAL_PP ( newval ) ;
2001-12-24 00:32:06 +08:00
if ( ldap_set_option ( ldap , opt , & val ) ) {
2000-10-18 00:06:04 +08:00
RETURN_FALSE ;
}
} break ;
/* options with string value */
case LDAP_OPT_HOST_NAME :
case LDAP_OPT_ERROR_STRING :
2001-01-09 02:13:08 +08:00
# ifdef LDAP_OPT_MATCHED_DN
2000-10-18 00:06:04 +08:00
case LDAP_OPT_MATCHED_DN :
2000-11-04 06:53:49 +08:00
# endif
2000-10-18 00:06:04 +08:00
{
char * val ;
convert_to_string_ex ( newval ) ;
2001-09-26 05:58:48 +08:00
val = Z_STRVAL_PP ( newval ) ;
2001-12-24 00:32:06 +08:00
if ( ldap_set_option ( ldap , opt , val ) ) {
2000-10-18 00:06:04 +08:00
RETURN_FALSE ;
}
} break ;
/* options with boolean value */
case LDAP_OPT_REFERRALS :
case LDAP_OPT_RESTART :
{
void * val ;
convert_to_boolean_ex ( newval ) ;
2001-09-26 05:58:48 +08:00
val = Z_LVAL_PP ( newval )
2000-10-18 00:06:04 +08:00
? LDAP_OPT_ON : LDAP_OPT_OFF ;
2001-12-24 00:32:06 +08:00
if ( ldap_set_option ( ldap , opt , val ) ) {
2000-10-18 00:06:04 +08:00
RETURN_FALSE ;
}
} break ;
2001-01-08 05:18:02 +08:00
/* options with control list value */
2000-10-18 00:06:04 +08:00
case LDAP_OPT_SERVER_CONTROLS :
case LDAP_OPT_CLIENT_CONTROLS :
2001-01-08 05:18:02 +08:00
{
LDAPControl * ctrl , * * ctrls , * * ctrlp ;
zval * * ctrlval , * * val ;
int ncontrols ;
char error = 0 ;
if ( ( Z_TYPE_PP ( newval ) ! = IS_ARRAY ) | | ! ( ncontrols = zend_hash_num_elements ( Z_ARRVAL_PP ( newval ) ) ) ) {
php_error ( E_WARNING , " Expected non-empty array value for this option " ) ;
RETURN_FALSE ;
}
ctrls = emalloc ( ( 1 + ncontrols ) * sizeof ( * ctrls ) ) ;
* ctrls = NULL ;
ctrlp = ctrls ;
zend_hash_internal_pointer_reset ( Z_ARRVAL_PP ( newval ) ) ;
while ( zend_hash_get_current_data ( Z_ARRVAL_PP ( newval ) , ( void * * ) & ctrlval ) = = SUCCESS ) {
if ( Z_TYPE_PP ( ctrlval ) ! = IS_ARRAY ) {
php_error ( E_WARNING , " The array value must contain only arrays, where each array is a control " ) ;
error = 1 ;
break ;
}
if ( zend_hash_find ( Z_ARRVAL_PP ( ctrlval ) , " oid " , sizeof ( " oid " ) , ( void * * ) & val ) = = FAILURE ) {
php_error ( E_WARNING , " Control must have an oid key " ) ;
error = 1 ;
break ;
}
ctrl = * ctrlp = emalloc ( sizeof ( * * ctrlp ) ) ;
convert_to_string_ex ( val ) ;
ctrl - > ldctl_oid = Z_STRVAL_PP ( val ) ;
if ( zend_hash_find ( Z_ARRVAL_PP ( ctrlval ) , " value " , sizeof ( " value " ) , ( void * * ) & val ) = = SUCCESS ) {
convert_to_string_ex ( val ) ;
ctrl - > ldctl_value . bv_val = Z_STRVAL_PP ( val ) ;
ctrl - > ldctl_value . bv_len = Z_STRLEN_PP ( val ) ;
} else {
ctrl - > ldctl_value . bv_val = NULL ;
ctrl - > ldctl_value . bv_len = 0 ;
}
if ( zend_hash_find ( Z_ARRVAL_PP ( ctrlval ) , " iscritical " , sizeof ( " iscritical " ) , ( void * * ) & val ) = = SUCCESS ) {
convert_to_boolean_ex ( val ) ;
ctrl - > ldctl_iscritical = Z_BVAL_PP ( val ) ;
} else {
ctrl - > ldctl_iscritical = 0 ;
}
+ + ctrlp ;
* ctrlp = NULL ;
zend_hash_move_forward ( Z_ARRVAL_PP ( newval ) ) ;
}
if ( ! error ) {
2001-12-24 00:32:06 +08:00
error = ldap_set_option ( ldap , opt , ctrls ) ;
2001-01-08 05:18:02 +08:00
}
ctrlp = ctrls ;
while ( * ctrlp ) {
efree ( * ctrlp ) ;
ctrlp + + ;
}
efree ( ctrls ) ;
if ( error ) {
RETURN_FALSE ;
}
} break ;
2000-10-18 00:06:04 +08:00
default :
RETURN_FALSE ;
}
RETURN_TRUE ;
}
/* }}} */
2001-01-07 21:03:11 +08:00
2001-01-09 02:31:59 +08:00
/* {{{ proto boolean ldap_parse_result(int link, int result, int errcode, string matcheddn, string errmsg, array referrals)
2001-01-07 21:03:11 +08:00
Extract information from result */
2001-06-01 05:09:30 +08:00
PHP_FUNCTION ( ldap_parse_result )
{
pval * * link , * * result , * * errcode , * * matcheddn , * * errmsg , * * referrals ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-01-07 21:03:11 +08:00
LDAPMessage * ldap_result ;
char * * lreferrals , * * refp ;
char * lmatcheddn , * lerrmsg ;
2001-06-01 05:09:30 +08:00
int rc , lerrcode , myargcount = ZEND_NUM_ARGS ( ) ;
2001-01-07 21:03:11 +08:00
if ( myargcount < 3 | | myargcount > 6 | | zend_get_parameters_ex ( myargcount , & link , & result , & errcode , & matcheddn , & errmsg , & referrals ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result , LDAPMessage * , result , - 1 , " ldap result " , le_result ) ;
2001-01-07 21:03:11 +08:00
2001-11-30 04:17:17 +08:00
rc = ldap_parse_result ( ld - > link , ldap_result , & lerrcode ,
2001-01-07 21:03:11 +08:00
myargcount > 3 ? & lmatcheddn : NULL ,
myargcount > 4 ? & lerrmsg : NULL ,
myargcount > 5 ? & lreferrals : NULL ,
NULL /* &serverctrls */ ,
0 ) ;
if ( rc ! = LDAP_SUCCESS ) {
2001-11-30 04:17:17 +08:00
php_error ( E_WARNING , " LDAP: Unable to parse result: %s " , ldap_err2string ( _get_lderrno ( ld - > link ) ) ) ;
2001-01-07 21:03:11 +08:00
RETURN_FALSE ;
}
zval_dtor ( * errcode ) ;
ZVAL_LONG ( * errcode , lerrcode ) ;
/* Reverse -> fall through */
switch ( myargcount ) {
case 6 :
zval_dtor ( * referrals ) ;
if ( array_init ( * referrals ) = = FAILURE ) {
php_error ( E_ERROR , " Cannot initialize return value " ) ;
ldap_value_free ( lreferrals ) ;
ldap_memfree ( lerrmsg ) ;
ldap_memfree ( lmatcheddn ) ;
RETURN_FALSE ;
}
if ( lreferrals ! = NULL ) {
refp = lreferrals ;
while ( * refp ) {
add_next_index_string ( * referrals , * refp , 1 ) ;
refp + + ;
}
ldap_value_free ( lreferrals ) ;
}
case 5 :
zval_dtor ( * errmsg ) ;
if ( lerrmsg = = NULL ) {
ZVAL_EMPTY_STRING ( * errmsg ) ;
} else {
ZVAL_STRING ( * errmsg , lerrmsg , 1 ) ;
ldap_memfree ( lerrmsg ) ;
}
case 4 :
zval_dtor ( * matcheddn ) ;
if ( lmatcheddn = = NULL ) {
ZVAL_EMPTY_STRING ( * matcheddn ) ;
} else {
ZVAL_STRING ( * matcheddn , lmatcheddn , 1 ) ;
ldap_memfree ( lmatcheddn ) ;
}
}
RETURN_TRUE ;
}
/* }}} */
/* {{{ proto int ldap_first_reference(int link, int result)
Return first reference */
PHP_FUNCTION ( ldap_first_reference )
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-01-07 21:03:11 +08:00
LDAPMessage * ldap_result ;
LDAPMessage * ldap_result_entry ;
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result , LDAPMessage * , result , - 1 , " ldap result " , le_result ) ;
2001-01-07 21:03:11 +08:00
2001-11-30 04:17:17 +08:00
if ( ( ldap_result_entry = ldap_first_reference ( ld - > link , ldap_result ) ) = = NULL ) {
2001-06-01 05:09:30 +08:00
RETVAL_FALSE ;
2001-01-07 21:03:11 +08:00
} else {
2001-06-01 05:09:30 +08:00
ZEND_REGISTER_RESOURCE ( return_value , ldap_result_entry , le_result_entry ) ;
2001-01-07 21:03:11 +08:00
}
}
/* }}} */
/* {{{ proto int ldap_next_reference(int link, int entry)
Get next reference */
PHP_FUNCTION ( ldap_next_reference )
{
2001-06-01 05:09:30 +08:00
pval * * link , * * result_entry ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-01-07 21:03:11 +08:00
LDAPMessage * ldap_result_entry , * ldap_result_entry_next ;
2001-06-01 05:09:30 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 2 | | zend_get_parameters_ex ( 2 , & link , & result_entry ) = = FAILURE ) {
2001-01-07 21:03:11 +08:00
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
2001-01-07 21:03:11 +08:00
2001-11-30 04:17:17 +08:00
if ( ( ldap_result_entry_next = ldap_next_reference ( ld - > link , ldap_result_entry ) ) = = NULL ) {
2001-06-01 05:09:30 +08:00
RETVAL_FALSE ;
2001-01-07 21:03:11 +08:00
} else {
2001-06-01 05:09:30 +08:00
ZEND_REGISTER_RESOURCE ( return_value , ldap_result_entry_next , le_result_entry ) ;
2001-01-07 21:03:11 +08:00
}
}
/* }}} */
/* {{{ proto boolean ldap_parse_reference(int link, int entry, array referrals)
Extract information from reference entry */
PHP_FUNCTION ( ldap_parse_reference )
{
2001-12-25 22:36:06 +08:00
# ifdef HAVE_LDAP_PARSE_REFERENCE
2001-01-07 21:03:11 +08:00
pval * * link , * * result_entry , * * referrals ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-01-07 21:03:11 +08:00
LDAPMessage * ldap_result_entry ;
char * * lreferrals , * * refp ;
if ( ZEND_NUM_ARGS ( ) ! = 3 | | zend_get_parameters_ex ( 3 , & link , & result_entry , & referrals ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-06-01 05:09:30 +08:00
ZEND_FETCH_RESOURCE ( ldap_result_entry , LDAPMessage * , result_entry , - 1 , " ldap result entry " , le_result_entry ) ;
2001-01-07 21:03:11 +08:00
2001-11-30 04:17:17 +08:00
if ( ldap_parse_reference ( ld - > link , ldap_result_entry , & lreferrals , NULL /* &serverctrls */ , 0 ) ! = LDAP_SUCCESS ) {
2001-01-07 21:03:11 +08:00
RETURN_FALSE ;
}
zval_dtor ( * referrals ) ;
if ( array_init ( * referrals ) = = FAILURE ) {
php_error ( E_ERROR , " Cannot initialize return value " ) ;
ldap_value_free ( lreferrals ) ;
RETURN_FALSE ;
}
if ( lreferrals ! = NULL ) {
refp = lreferrals ;
while ( * refp ) {
add_next_index_string ( * referrals , * refp , 1 ) ;
refp + + ;
}
ldap_value_free ( lreferrals ) ;
}
RETURN_TRUE ;
2001-12-25 22:36:06 +08:00
# else
php_error ( E_ERROR , " ldap_parse_reference not available in this LDAP lib " ) ;
RETURN_FALSE ;
# endif
2001-01-07 21:03:11 +08:00
}
/* }}} */
2001-01-09 02:13:08 +08:00
2001-01-09 02:31:59 +08:00
/* {{{ proto boolean ldap_rename(int link, string dn, string newrdn, string newparent, boolean deleteoldrdn);
2001-01-09 02:13:08 +08:00
Modify the name of an entry */
PHP_FUNCTION ( ldap_rename )
{
pval * * link , * * dn , * * newrdn , * * newparent , * * deleteoldrdn ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-01-09 02:13:08 +08:00
int rc ;
if ( ZEND_NUM_ARGS ( ) ! = 5 | | zend_get_parameters_ex ( 5 , & link , & dn , & newrdn , & newparent , & deleteoldrdn ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-01-09 02:13:08 +08:00
convert_to_string_ex ( dn ) ;
convert_to_string_ex ( newrdn ) ;
convert_to_string_ex ( newparent ) ;
convert_to_boolean_ex ( deleteoldrdn ) ;
# if ( LDAP_API_VERSION > 2000 ) || HAVE_NSLDAP
2001-11-30 04:17:17 +08:00
rc = ldap_rename_s ( ld - > link , Z_STRVAL_PP ( dn ) , Z_STRVAL_PP ( newrdn ) , Z_STRVAL_PP ( newparent ) , Z_BVAL_PP ( deleteoldrdn ) , NULL , NULL ) ;
2001-01-09 02:13:08 +08:00
# else
if ( Z_STRLEN_PP ( newparent ) ! = 0 ) {
php_error ( E_WARNING , " You are using old LDAP API, newparent must be the empty string, can only modify RDN " ) ;
RETURN_FALSE ;
}
/* could support old APIs but need check for ldap_modrdn2()/ldap_modrdn() */
2001-11-30 04:17:17 +08:00
rc = ldap_modrdn2_s ( ld - > link , Z_STRVAL_PP ( dn ) , Z_STRVAL_PP ( newrdn ) , Z_BVAL_PP ( deleteoldrdn ) ) ;
2001-01-09 02:13:08 +08:00
# endif
if ( rc = = LDAP_SUCCESS ) {
RETURN_TRUE ;
}
RETURN_FALSE ;
}
/* }}} */
2000-10-18 00:06:04 +08:00
# endif
2001-10-10 05:14:14 +08:00
# if LDAP_API_VERSION > 2000
/* {{{ proto int ldap_start_tls(int link)
Start TLS */
PHP_FUNCTION ( ldap_start_tls )
{
pval * * link ;
2001-11-30 04:17:17 +08:00
ldap_linkdata * ld ;
2001-10-10 05:14:14 +08:00
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( 1 , & link ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
2001-11-30 04:17:17 +08:00
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , link , - 1 , " ldap link " , le_link ) ;
2001-10-10 05:14:14 +08:00
2001-11-30 04:17:17 +08:00
if ( ldap_start_tls_s ( ld - > link , NULL , NULL ) ! = LDAP_SUCCESS ) {
2001-10-10 05:14:14 +08:00
php_error ( E_WARNING , " LDAP: Unable to start TLS: %s " ,
2001-11-30 04:17:17 +08:00
ldap_err2string ( _get_lderrno ( ld - > link ) ) ) ;
2001-10-10 05:14:14 +08:00
RETURN_FALSE ;
} else {
RETURN_TRUE ;
}
}
/* }}} */
# endif
2001-12-24 00:32:06 +08:00
# if defined(LDAP_API_FEATURE_X_OPENLDAP) && defined(HAVE_3ARG_SETREBINDPROC)
int _ldap_rebind_proc ( LDAP * ldap , const char * url , ber_tag_t req , ber_int_t msgid , void * params ) {
2001-11-30 04:26:20 +08:00
ldap_linkdata * ld ;
int retval ;
zval * cb_url ;
zval * * cb_args [ 2 ] ;
zval * cb_retval ;
zval * cb_link = ( zval * ) params ;
ld = ( ldap_linkdata * ) zend_fetch_resource ( & cb_link TSRMLS_CC , - 1 , " ldap link " , NULL , 1 , le_link ) ;
/* link exists and callback set? */
if ( ld = = NULL | | ld - > rebindproc = = NULL ) {
php_error ( E_WARNING , " %s(): Link not found or no callback set " , get_active_function_name ( TSRMLS_C ) ) ;
return LDAP_OTHER ;
}
/* callback */
MAKE_STD_ZVAL ( cb_url ) ;
ZVAL_STRING ( cb_url , estrdup ( url ) , 0 ) ;
cb_args [ 0 ] = & cb_link ;
cb_args [ 1 ] = & cb_url ;
if ( call_user_function_ex ( EG ( function_table ) , NULL , ld - > rebindproc , & cb_retval , 2 , cb_args , 0 , NULL ) = = SUCCESS & & cb_retval ) {
convert_to_long_ex ( & cb_retval ) ;
retval = Z_LVAL_P ( cb_retval ) ;
zval_ptr_dtor ( & cb_retval ) ;
} else {
php_error ( E_WARNING , " LDAP: rebind_proc php callback failed " ) ;
retval = LDAP_OTHER ;
}
zval_dtor ( cb_url ) ;
FREE_ZVAL ( cb_url ) ;
return retval ;
}
/* {{{ proto int ldap_set_rebind_proc(int link, string callback)
Set a callback function to do re - binds on referral chasing . */
PHP_FUNCTION ( ldap_set_rebind_proc )
{
zval * link , * callback ;
ldap_linkdata * ld ;
char * callback_name ;
if ( zend_parse_parameters ( ZEND_NUM_ARGS ( ) TSRMLS_CC , " rz " , & link , & callback ) = = FAILURE ) {
RETURN_FALSE ;
}
ZEND_FETCH_RESOURCE ( ld , ldap_linkdata * , & link , - 1 , " ldap link " , le_link ) ;
if ( Z_TYPE_P ( callback ) = = IS_STRING & & Z_STRLEN_P ( callback ) = = 0 ) {
/* unregister rebind procedure */
if ( ld - > rebindproc ! = NULL ) {
zval_dtor ( ld - > rebindproc ) ;
ld - > rebindproc = NULL ;
ldap_set_rebind_proc ( ld - > link , NULL , NULL ) ;
}
RETURN_TRUE ;
}
/* callable? */
if ( ! zend_is_callable ( callback , 0 , & callback_name ) ) {
php_error ( E_WARNING , " %s() expects argument 2, '%s', to be a valid callback " , get_active_function_name ( TSRMLS_C ) , callback_name ) ;
efree ( callback_name ) ;
RETURN_FALSE ;
}
efree ( callback_name ) ;
/* register rebind procedure */
if ( ld - > rebindproc = = NULL ) {
ldap_set_rebind_proc ( ld - > link , _ldap_rebind_proc , ( void * ) link ) ;
} else {
zval_dtor ( ld - > rebindproc ) ;
}
ALLOC_ZVAL ( ld - > rebindproc ) ;
* ld - > rebindproc = * callback ;
zval_copy_ctor ( ld - > rebindproc ) ;
RETURN_TRUE ;
}
# endif
2000-08-02 21:11:46 +08:00
# ifdef STR_TRANSLATION
2001-06-05 21:12:10 +08:00
/* {{{ php_ldap_do_translate
*/
2001-06-01 05:09:30 +08:00
static void php_ldap_do_translate ( INTERNAL_FUNCTION_PARAMETERS , int way )
{
2000-08-02 21:11:46 +08:00
zval * * value ;
char * ldap_buf ;
unsigned long ldap_len ;
int result ;
if ( ZEND_NUM_ARGS ( ) ! = 1 | | zend_get_parameters_ex ( 1 , & value ) = = FAILURE ) {
WRONG_PARAM_COUNT ;
}
convert_to_string_ex ( value ) ;
2001-09-26 05:58:48 +08:00
ldap_buf = Z_STRVAL_PP ( value ) ;
ldap_len = Z_STRLEN_PP ( value ) ;
2000-08-02 21:11:46 +08:00
if ( ldap_len = = 0 ) {
RETURN_FALSE ;
}
if ( way = = 1 ) {
result = ldap_8859_to_t61 ( & ldap_buf , & ldap_len , 0 ) ;
} else {
result = ldap_t61_to_8859 ( & ldap_buf , & ldap_len , 0 ) ;
}
if ( result = = LDAP_SUCCESS ) {
2001-08-12 00:39:07 +08:00
RETVAL_STRINGL ( ldap_buf , ldap_len , 1 ) ;
2000-08-02 21:11:46 +08:00
free ( ldap_buf ) ;
} else {
php_error ( E_ERROR , " LDAP: Conversion from iso-8859-1 to t61 failed. " ) ;
RETVAL_FALSE ;
}
return ;
}
2001-06-05 21:12:10 +08:00
/* }}} */
2000-08-02 21:11:46 +08:00
/* {{{ proto string ldap_t61_to_8859(string value)
Translate t61 characters to 8859 characters */
2001-08-05 09:43:02 +08:00
PHP_FUNCTION ( ldap_t61_to_8859 )
{
2000-08-02 21:11:46 +08:00
php_ldap_do_translate ( INTERNAL_FUNCTION_PARAM_PASSTHRU , 0 ) ;
}
/* }}} */
/* {{{ proto string ldap_8859_to_t61(string value)
Translate 8859 characters to t61 characters */
2001-08-05 09:43:02 +08:00
PHP_FUNCTION ( ldap_8859_to_t61 )
{
2000-08-02 21:11:46 +08:00
php_ldap_do_translate ( INTERNAL_FUNCTION_PARAM_PASSTHRU , 1 ) ;
}
/* }}} */
# endif
2001-06-05 21:12:10 +08:00
/*
* Local variables :
* tab - width : 4
* c - basic - offset : 4
* End :
2001-09-09 21:29:31 +08:00
* vim600 : sw = 4 ts = 4 fdm = marker
* vim < 600 : sw = 4 ts = 4
2001-06-05 21:12:10 +08:00
*/