1998-08-09 08:43:13 +08:00
|
|
|
/*
|
1998-12-29 04:53:15 +08:00
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
/* Portions
|
1998-08-09 08:43:13 +08:00
|
|
|
* Copyright (c) 1996 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* LIBLDAP url.c -- LDAP URL related routines
|
|
|
|
*
|
|
|
|
* LDAP URLs look like this:
|
|
|
|
* l d a p : / / hostport / dn [ ? attributes [ ? scope [ ? filter ] ] ]
|
|
|
|
*
|
|
|
|
* where:
|
|
|
|
* attributes is a comma separated list
|
|
|
|
* scope is one of these three strings: base one sub (default=base)
|
|
|
|
* filter is an string-represented filter as in RFC 1558
|
|
|
|
*
|
|
|
|
* e.g., ldap://ldap.itd.umich.edu/c=US?o,description?one?o=umich
|
|
|
|
*
|
|
|
|
* We also tolerate URLs that look like: <ldapurl> and <URL:ldapurl>
|
|
|
|
*/
|
|
|
|
|
1998-10-25 09:57:30 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-08-21 03:42:38 +08:00
|
|
|
#include <stdlib.h>
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:57:30 +08:00
|
|
|
#include <ac/ctype.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
#include "ldap-int.h"
|
|
|
|
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
/* local functions */
|
1999-05-19 09:12:33 +08:00
|
|
|
static const char* skip_url_prefix LDAP_P(( const char *url, int *enclosedp ));
|
1998-10-25 09:57:30 +08:00
|
|
|
static void hex_unescape LDAP_P(( char *s ));
|
1998-11-11 06:18:22 +08:00
|
|
|
static int unhex( char c );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
int
|
1999-05-19 09:12:33 +08:00
|
|
|
ldap_is_ldap_url( LDAP_CONST char *url )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
int enclosed;
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
return( url != NULL && skip_url_prefix( url, &enclosed ) != NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
static const char*
|
|
|
|
skip_url_prefix( const char *url, int *enclosedp )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* return non-zero if this looks like a LDAP URL; zero if not
|
|
|
|
* if non-zero returned, *urlp will be moved past "ldap://" part of URL
|
|
|
|
*/
|
1999-05-19 09:12:33 +08:00
|
|
|
char* p;
|
|
|
|
|
|
|
|
if ( url == NULL ) {
|
|
|
|
return( NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
p = (char *) url;
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* skip leading '<' (if any) */
|
1999-05-19 09:12:33 +08:00
|
|
|
if ( *p == '<' ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
*enclosedp = 1;
|
1999-05-19 09:12:33 +08:00
|
|
|
++p;
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
*enclosedp = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skip leading "URL:" (if any) */
|
1999-05-19 09:12:33 +08:00
|
|
|
if ( strlen( p ) >= LDAP_URL_URLCOLON_LEN
|
|
|
|
&& strncasecmp( p, LDAP_URL_URLCOLON, LDAP_URL_URLCOLON_LEN ) == 0 )
|
|
|
|
{
|
|
|
|
p += LDAP_URL_URLCOLON_LEN;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check for missing "ldap://" prefix */
|
1999-05-19 09:12:33 +08:00
|
|
|
if ( strlen( p ) < LDAP_URL_PREFIX_LEN ||
|
|
|
|
strncasecmp( p, LDAP_URL_PREFIX, LDAP_URL_PREFIX_LEN ) != 0 ) {
|
|
|
|
return( NULL );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* skip over "ldap://" prefix and return success */
|
1999-05-19 09:12:33 +08:00
|
|
|
p += LDAP_URL_PREFIX_LEN;
|
|
|
|
return( p );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1999-05-19 09:12:33 +08:00
|
|
|
ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Pick apart the pieces of an LDAP URL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
LDAPURLDesc *ludp;
|
|
|
|
char *attrs, *p, *q;
|
|
|
|
int enclosed, i, nattrs;
|
1999-05-19 09:12:33 +08:00
|
|
|
const char *url_tmp;
|
|
|
|
char *url;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldap_url_parse(%s)\n", url, 0, 0 );
|
|
|
|
|
|
|
|
*ludpp = NULL; /* pessimistic */
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
url_tmp = skip_url_prefix( url_in, &enclosed );
|
|
|
|
|
|
|
|
if ( url_tmp == NULL ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
return( LDAP_URL_ERR_NOTLDAP );
|
|
|
|
}
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
/* make working copy of the remainder of the URL */
|
|
|
|
if (( url = strdup( url_tmp )) == NULL ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
return( LDAP_URL_ERR_MEM );
|
|
|
|
}
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
/* allocate return struct */
|
|
|
|
if (( ludp = (LDAPURLDesc *)calloc( 1, sizeof( LDAPURLDesc )))
|
|
|
|
== NULLLDAPURLDESC )
|
|
|
|
{
|
|
|
|
free( url );
|
1998-08-09 08:43:13 +08:00
|
|
|
return( LDAP_URL_ERR_MEM );
|
|
|
|
}
|
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( enclosed && *((p = url + strlen( url ) - 1)) == '>' ) {
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set defaults */
|
|
|
|
ludp->lud_scope = LDAP_SCOPE_BASE;
|
|
|
|
ludp->lud_filter = "(objectClass=*)";
|
|
|
|
|
|
|
|
/* lud_string is the only malloc'd string space we use */
|
|
|
|
ludp->lud_string = url;
|
|
|
|
|
|
|
|
/* scan forward for '/' that marks end of hostport and begin. of dn */
|
|
|
|
if (( ludp->lud_dn = strchr( url, '/' )) == NULL ) {
|
|
|
|
ldap_free_urldesc( ludp );
|
|
|
|
return( LDAP_URL_ERR_NODN );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* terminate hostport; point to start of dn */
|
|
|
|
*ludp->lud_dn++ = '\0';
|
|
|
|
|
|
|
|
if (( p = strchr( url, ':' )) != NULL ) {
|
|
|
|
*p++ = '\0';
|
|
|
|
ludp->lud_port = atoi( p );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *url == '\0' ) {
|
|
|
|
ludp->lud_host = NULL;
|
|
|
|
} else {
|
|
|
|
ludp->lud_host = url;
|
|
|
|
hex_unescape( ludp->lud_host );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* scan for '?' that marks end of dn and beginning of attributes */
|
|
|
|
if (( attrs = strchr( ludp->lud_dn, '?' )) != NULL ) {
|
|
|
|
/* terminate dn; point to start of attrs. */
|
|
|
|
*attrs++ = '\0';
|
|
|
|
|
|
|
|
/* scan for '?' that marks end of attrs and begin. of scope */
|
|
|
|
if (( p = strchr( attrs, '?' )) != NULL ) {
|
|
|
|
/*
|
|
|
|
* terminate attrs; point to start of scope and scan for
|
|
|
|
* '?' that marks end of scope and begin. of filter
|
|
|
|
*/
|
|
|
|
*p++ = '\0';
|
|
|
|
|
|
|
|
if (( q = strchr( p, '?' )) != NULL ) {
|
|
|
|
/* terminate scope; point to start of filter */
|
|
|
|
*q++ = '\0';
|
|
|
|
if ( *q != '\0' ) {
|
|
|
|
ludp->lud_filter = q;
|
|
|
|
hex_unescape( ludp->lud_filter );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( p, "one" ) == 0 ) {
|
|
|
|
ludp->lud_scope = LDAP_SCOPE_ONELEVEL;
|
|
|
|
} else if ( strcasecmp( p, "base" ) == 0 ) {
|
|
|
|
ludp->lud_scope = LDAP_SCOPE_BASE;
|
|
|
|
} else if ( strcasecmp( p, "sub" ) == 0 ) {
|
|
|
|
ludp->lud_scope = LDAP_SCOPE_SUBTREE;
|
|
|
|
} else if ( *p != '\0' ) {
|
|
|
|
ldap_free_urldesc( ludp );
|
|
|
|
return( LDAP_URL_ERR_BADSCOPE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( *ludp->lud_dn == '\0' ) {
|
|
|
|
ludp->lud_dn = NULL;
|
|
|
|
} else {
|
|
|
|
hex_unescape( ludp->lud_dn );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if attrs list was included, turn it into a null-terminated array
|
|
|
|
*/
|
|
|
|
if ( attrs != NULL && *attrs != '\0' ) {
|
|
|
|
for ( nattrs = 1, p = attrs; *p != '\0'; ++p ) {
|
|
|
|
if ( *p == ',' ) {
|
|
|
|
++nattrs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (( ludp->lud_attrs = (char **)calloc( nattrs + 1,
|
|
|
|
sizeof( char * ))) == NULL ) {
|
|
|
|
ldap_free_urldesc( ludp );
|
|
|
|
return( LDAP_URL_ERR_MEM );
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0, p = attrs; i < nattrs; ++i ) {
|
|
|
|
ludp->lud_attrs[ i ] = p;
|
|
|
|
if (( p = strchr( p, ',' )) != NULL ) {
|
|
|
|
*p++ ='\0';
|
|
|
|
}
|
|
|
|
hex_unescape( ludp->lud_attrs[ i ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*ludpp = ludp;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ldap_free_urldesc( LDAPURLDesc *ludp )
|
|
|
|
{
|
|
|
|
if ( ludp != NULLLDAPURLDESC ) {
|
|
|
|
if ( ludp->lud_string != NULL ) {
|
|
|
|
free( ludp->lud_string );
|
|
|
|
}
|
|
|
|
if ( ludp->lud_attrs != NULL ) {
|
|
|
|
free( ludp->lud_attrs );
|
|
|
|
}
|
|
|
|
free( ludp );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1999-05-19 09:12:33 +08:00
|
|
|
ldap_url_search( LDAP *ld, LDAP_CONST char *url, int attrsonly )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
LDAPURLDesc *ludp;
|
|
|
|
BerElement *ber;
|
1998-11-10 03:41:09 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
|
1998-08-09 08:43:13 +08:00
|
|
|
LDAPServer *srv = NULL;
|
1998-11-10 03:41:09 +08:00
|
|
|
#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if ( ldap_url_parse( url, &ludp ) != 0 ) {
|
|
|
|
ld->ld_errno = LDAP_PARAM_ERROR;
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
1999-05-22 03:20:25 +08:00
|
|
|
ber = ldap_build_search_req( ld, ludp->lud_dn, ludp->lud_scope,
|
|
|
|
ludp->lud_filter, ludp->lud_attrs, attrsonly, NULL, NULL,
|
|
|
|
-1, -1 );
|
|
|
|
|
|
|
|
if ( ber == NULLBER ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
err = 0;
|
|
|
|
|
|
|
|
if ( ludp->lud_host != NULL || ludp->lud_port != 0 ) {
|
1998-11-10 03:41:09 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
|
1998-08-09 08:43:13 +08:00
|
|
|
if (( srv = (LDAPServer *)calloc( 1, sizeof( LDAPServer )))
|
1999-01-15 22:49:03 +08:00
|
|
|
== NULL || ( srv->lsrv_host = strdup( ludp->lud_host ==
|
1998-08-09 08:43:13 +08:00
|
|
|
NULL ? ld->ld_defhost : ludp->lud_host )) == NULL ) {
|
|
|
|
if ( srv != NULL ) {
|
|
|
|
free( srv );
|
|
|
|
}
|
|
|
|
ld->ld_errno = LDAP_NO_MEMORY;
|
|
|
|
err = -1;
|
|
|
|
} else {
|
|
|
|
if ( ludp->lud_port == 0 ) {
|
1998-11-30 11:55:49 +08:00
|
|
|
srv->lsrv_port = openldap_ldap_global_options.ldo_defport;
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
1999-05-19 09:12:33 +08:00
|
|
|
srv->lsrv_port = ludp->lud_port;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
1998-11-10 03:41:09 +08:00
|
|
|
#else /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */
|
1998-08-09 08:43:13 +08:00
|
|
|
ld->ld_errno = LDAP_LOCAL_ERROR;
|
|
|
|
err = -1;
|
1998-11-10 03:41:09 +08:00
|
|
|
#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( err != 0 ) {
|
|
|
|
ber_free( ber, 1 );
|
|
|
|
} else {
|
1998-11-10 03:41:09 +08:00
|
|
|
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
|
1998-08-09 11:04:12 +08:00
|
|
|
err = ldap_send_server_request( ld, ber, ld->ld_msgid, NULL, srv,
|
1998-08-09 08:43:13 +08:00
|
|
|
NULL, 1 );
|
1998-11-10 03:41:09 +08:00
|
|
|
#else /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */
|
1998-08-09 11:04:12 +08:00
|
|
|
err = ldap_send_initial_request( ld, LDAP_REQ_SEARCH,
|
1998-08-09 08:43:13 +08:00
|
|
|
ludp->lud_dn, ber );
|
1998-11-10 03:41:09 +08:00
|
|
|
#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ldap_free_urldesc( ludp );
|
|
|
|
|
|
|
|
return( err );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1999-05-19 09:12:33 +08:00
|
|
|
ldap_url_search_st( LDAP *ld, LDAP_CONST char *url, int attrsonly,
|
1998-08-09 08:43:13 +08:00
|
|
|
struct timeval *timeout, LDAPMessage **res )
|
|
|
|
{
|
|
|
|
int msgid;
|
|
|
|
|
|
|
|
if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
|
|
|
|
return( ld->ld_errno );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ldap_result( ld, msgid, 1, timeout, res ) == -1 ) {
|
|
|
|
return( ld->ld_errno );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ld->ld_errno == LDAP_TIMEOUT ) {
|
|
|
|
(void) ldap_abandon( ld, msgid );
|
|
|
|
ld->ld_errno = LDAP_TIMEOUT;
|
|
|
|
return( ld->ld_errno );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( ldap_result2error( ld, *res, 0 ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
1999-05-19 09:12:33 +08:00
|
|
|
ldap_url_search_s(
|
|
|
|
LDAP *ld, LDAP_CONST char *url, int attrsonly, LDAPMessage **res )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
int msgid;
|
|
|
|
|
|
|
|
if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
|
|
|
|
return( ld->ld_errno );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, res ) == -1 ) {
|
|
|
|
return( ld->ld_errno );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( ldap_result2error( ld, *res, 0 ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
hex_unescape( char *s )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Remove URL hex escapes from s... done in place. The basic concept for
|
|
|
|
* this routine is borrowed from the WWW library HTUnEscape() routine.
|
|
|
|
*/
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
for ( p = s; *s != '\0'; ++s ) {
|
|
|
|
if ( *s == '%' ) {
|
|
|
|
if ( *++s != '\0' ) {
|
|
|
|
*p = unhex( *s ) << 4;
|
|
|
|
}
|
|
|
|
if ( *++s != '\0' ) {
|
|
|
|
*p++ += unhex( *s );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*p++ = *s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
unhex( char c )
|
|
|
|
{
|
|
|
|
return( c >= '0' && c <= '9' ? c - '0'
|
|
|
|
: c >= 'A' && c <= 'F' ? c - 'A' + 10
|
|
|
|
: c - 'a' + 10 );
|
|
|
|
}
|