Skip to content
Snippets Groups Projects
io.c 12.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    /* io.c - ber general i/o routines */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
     * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
    
     * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
     */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
     * Copyright (c) 1990 Regents of the University of Michigan.
     * All rights reserved.
     *
     * Redistribution and use in source and binary forms are permitted
     * provided that this notice is preserved and that due credit is given
     * to the University of Michigan at Ann Arbor. The name of the University
     * may not be used to endorse or promote products derived from this
     * software without specific prior written permission. This software
     * is provided ``as is'' without express or implied warranty.
     */
    
    
    #include "portable.h"
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    #include <stdio.h>
    
    
    #include <ac/stdlib.h>
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    #include <ac/ctype.h>
    #include <ac/errno.h>
    #include <ac/socket.h>
    #include <ac/string.h>
    #include <ac/unistd.h>
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    #ifdef HAVE_IO_H
    #include <io.h>
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    #endif
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    #define EXBUFSIZ	1024
    
    
    static ber_slen_t
    BerRead(
    	Sockbuf *sb,
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	unsigned char *buf,
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    	ber_slen_t	c;
    	ber_slen_t	nread = 0;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( sb != NULL );
    	assert( buf != NULL );
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	while ( len > 0 ) {
    
    		if ( (c = ber_int_sb_read( sb, buf, len )) <= 0 ) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			if ( nread > 0 )
    				break;
    			return( c );
    		}
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	}
    
    	return( nread );
    }
    
    
    ber_slen_t
    ber_read(
    	BerElement *ber,
    	char *buf,
    	ber_len_t len )
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    	ber_len_t	actuallen, nleft;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    	assert( buf != NULL );
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	nleft = ber->ber_end - ber->ber_ptr;
    	actuallen = nleft < len ? nleft : len;
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	AC_MEMCPY( buf, ber->ber_ptr, actuallen );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    	ber->ber_ptr += actuallen;
    
    
    	return( (ber_slen_t) actuallen );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    }
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    ber_write(
    	BerElement *ber,
    	LDAP_CONST char *buf,
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	int nosos )
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    	assert( buf != NULL );
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	if ( nosos || ber->ber_sos == NULL ) {
    		if ( ber->ber_ptr + len > ber->ber_end ) {
    			if ( ber_realloc( ber, len ) != 0 )
    				return( -1 );
    		}
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		AC_MEMCPY( ber->ber_ptr, buf, (size_t)len );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		ber->ber_ptr += len;
    
    		return( (ber_slen_t) len );
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	} else {
    		if ( ber->ber_sos->sos_ptr + len > ber->ber_end ) {
    			if ( ber_realloc( ber, len ) != 0 )
    				return( -1 );
    		}
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		AC_MEMCPY( ber->ber_sos->sos_ptr, buf, (size_t)len );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		ber->ber_sos->sos_ptr += len;
    		ber->ber_sos->sos_clen += len;
    
    		return( (ber_slen_t) len );
    
    ber_realloc( BerElement *ber, ber_len_t len )
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    	ber_len_t	need, have, total;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	Seqorset	*s;
    	long		off;
    	char		*oldbuf;
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    	assert( len > 0 );
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	have = (ber->ber_end - ber->ber_buf) / EXBUFSIZ;
    	need = (len < EXBUFSIZ ? 1 : (len + (EXBUFSIZ - 1)) / EXBUFSIZ);
    	total = have * EXBUFSIZ + need * EXBUFSIZ;
    
    	oldbuf = ber->ber_buf;
    
    
    	ber->ber_buf = (char *) LBER_REALLOC( ber->ber_buf, total );
    	
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	if ( ber->ber_buf == NULL ) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		return( -1 );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    	ber->ber_end = ber->ber_buf + total;
    
    	/*
    	 * If the stinking thing was moved, we need to go through and
    
    Gary Williams's avatar
    Gary Williams committed
    	 * reset all the sos and ber pointers.	Offsets would've been
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	 * a better idea... oh well.
    	 */
    
    	if ( ber->ber_buf != oldbuf ) {
    		ber->ber_ptr = ber->ber_buf + (ber->ber_ptr - oldbuf);
    
    
    		for ( s = ber->ber_sos; s != NULL; s = s->sos_next ) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			off = s->sos_first - oldbuf;
    			s->sos_first = ber->ber_buf + off;
    
    			off = s->sos_ptr - oldbuf;
    			s->sos_ptr = ber->ber_buf + off;
    		}
    	}
    
    	return( 0 );
    }
    
    void
    ber_free( BerElement *ber, int freebuf )
    {
    
    #ifdef LDAP_MEMORY_DEBUG
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    	if ( freebuf ) {
    		Seqorset *s, *next;
    
    		for( s = ber->ber_sos ; s != NULL ; s = next ) {
    			next = s->sos_next;
    			LBER_FREE( s );
    		}
    	}
    
    
    	ber->ber_buf = NULL;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    }
    
    int
    ber_flush( Sockbuf *sb, BerElement *ber, int freeit )
    {
    
    	ber_len_t	nwritten, towrite;
    	ber_slen_t	rc;	
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( sb != NULL );
    	assert( ber != NULL );
    
    
    	assert( SOCKBUF_VALID( sb ) );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	if ( ber->ber_rwptr == NULL ) {
    		ber->ber_rwptr = ber->ber_buf;
    	}
    	towrite = ber->ber_ptr - ber->ber_rwptr;
    
    
    Gary Williams's avatar
    Gary Williams committed
    #ifdef NEW_LOGGING
    		LDAP_LOG(( "liblber", LDAP_LEVEL_DETAIL1,
    			   "ber_flush: %ld bytes to sd %ld%s\n",
    			   towrite, (long)sb->sb_fd,
    			   ber->ber_rwptr != ber->ber_buf ? " (re-flush)" : "" ));
    		BER_DUMP(( "liblber", LDAP_LEVEL_DETAIL2, ber, 1 ));
    #else
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		ber_log_printf( LDAP_DEBUG_ANY, sb->sb_debug,
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			"ber_flush: %ld bytes to sd %ld%s\n",
    			towrite, (long) sb->sb_fd,
    			ber->ber_rwptr != ber->ber_buf ?  " (re-flush)" : "" );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		ber_log_bprint( LDAP_DEBUG_PACKETS, sb->sb_debug,
    
    			ber->ber_rwptr, towrite );
    
    Gary Williams's avatar
    Gary Williams committed
    #endif
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	}
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	nwritten = 0;
    	do {
    
    		rc = ber_int_sb_write( sb, ber->ber_rwptr, towrite );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		}
    		towrite -= rc;
    		nwritten += rc;
    		ber->ber_rwptr += rc;
    	} while ( towrite > 0 );
    
    	if ( freeit )
    		ber_free( ber, 1 );
    
    	return( 0 );
    }
    
    BerElement *
    ber_alloc_t( int options )
    {
    	BerElement	*ber;
    
    
        ber_int_options.lbo_valid = LBER_INITIALIZED;
    
    
    	ber = (BerElement *) LBER_CALLOC( 1, sizeof(BerElement) );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    	if ( ber == NULL )
    		return( NULL );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    	ber->ber_valid = LBER_VALID_BERELEMENT;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	ber->ber_tag = LBER_DEFAULT;
    
    	ber->ber_options = options;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	ber->ber_debug = ber_int_debug;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	return( ber );
    }
    
    BerElement *
    
    ber_alloc( void )	/* deprecated */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    	return( ber_alloc_t( 0 ) );
    }
    
    BerElement *
    
    der_alloc( void )	/* deprecated */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    	return( ber_alloc_t( LBER_USE_DER ) );
    }
    
    BerElement *
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    	BerElement	*new;
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    	if ( (new = ber_alloc_t( ber->ber_options )) == NULL ) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		return( NULL );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    	*new = *ber;
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	return( new );
    }
    
    
    
    /* OLD U-Mich ber_init() */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    void
    
    ber_init_w_nullc( BerElement *ber, int options )
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    
    
        ber_int_options.lbo_valid = LBER_INITIALIZED;
    
    
    	(void) memset( (char *)ber, '\0', sizeof( BerElement ));
    
    	ber->ber_valid = LBER_VALID_BERELEMENT;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	ber->ber_tag = LBER_DEFAULT;
    
    	ber->ber_options = (char) options;
    
    	ber->ber_debug = ber_int_debug;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    }
    
    
    /* New C-API ber_init() */
    /* This function constructs a BerElement containing a copy
    ** of the data in the bv argument.
    */
    
    BerElement *
    ber_init( struct berval *bv )
    {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( bv != NULL );
    
    
        ber_int_options.lbo_valid = LBER_INITIALIZED;
    
    
    	if ( bv == NULL ) {
    		return NULL;
    	}
    
    	ber = ber_alloc_t( 0 );
    
    
    	if( ber == NULL ) {
    
    		return NULL;
    
    	if ( ((ber_len_t) ber_write ( ber, bv->bv_val, bv->bv_len, 0 ))
    		!= bv->bv_len )
    	{
    
    		/* write failed, so free and return NULL */
    		ber_free( ber, 1 );
    
    		return NULL;
    
    	}
    
    	ber_reset( ber, 1 );	/* reset the pointer to the start of the buffer */
    
    	return ber;
    
    /* New C-API ber_flatten routine */
    /* This routine allocates a struct berval whose contents are a BER
    ** encoding taken from the ber argument.  The bvPtr pointer pointers to
    ** the returned berval.
    */
    int ber_flatten(
    
    	struct berval **bvPtr)
    {
    	struct berval *bv;
     
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( bvPtr != NULL );
    
    
        ber_int_options.lbo_valid = LBER_INITIALIZED;
    
    
    		return -1;
    
    	bv = LBER_MALLOC( sizeof(struct berval));
    	if ( bv == NULL ) {
    		return -1;
    
    	}
    
    	if ( ber == NULL ) {
    		/* ber is null, create an empty berval */
    		bv->bv_val = NULL;
    		bv->bv_len = 0;
    
    	} else {
    		/* copy the berval */
    
    		ber_len_t len = ber->ber_ptr - ber->ber_buf;
    
    		bv->bv_val = (char *) LBER_MALLOC( len + 1 );
    		if ( bv->bv_val == NULL ) {
    			LBER_FREE( bv );
    			return -1;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		AC_MEMCPY( bv->bv_val, ber->ber_buf, len );
    
    		bv->bv_val[len] = '\0';
    		bv->bv_len = len;
    	}
        
    	*bvPtr = bv;
    
    	return 0;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    void
    ber_reset( BerElement *ber, int was_writing )
    {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( ber != NULL );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	if ( was_writing ) {
    		ber->ber_end = ber->ber_ptr;
    		ber->ber_ptr = ber->ber_buf;
    	} else {
    		ber->ber_ptr = ber->ber_end;
    	}
    
    	ber->ber_rwptr = NULL;
    }
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
     * A rewrite of ber_get_next that can safely be called multiple times 
    
     * for the same packet. It will simply continue where it stopped until
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    ber_tag_t
    ber_get_next(
    	Sockbuf *sb,
    	ber_len_t *len,
    	BerElement *ber )
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	assert( sb != NULL );
    	assert( len != NULL );
    	assert( ber != NULL );
    
    
    	assert( SOCKBUF_VALID( sb ) );
    	assert( BER_VALID( ber ) );
    
    
    Gary Williams's avatar
    Gary Williams committed
    #ifdef NEW_LOGGING
    	LDAP_LOG(( "liblber", LDAP_LEVEL_ENTRY, "ber_get_next: enter\n" ));
    #else
    
    	ber_log_printf( LDAP_DEBUG_TRACE, ber->ber_debug,
    		"ber_get_next\n" );
    
    Gary Williams's avatar
    Gary Williams committed
    #endif
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	/*
    	 * Any ber element looks like this: tag length contents.
    	 * Assuming everything's ok, we return the tag byte (we
    	 * can assume a single byte), return the length in len,
    	 * and the rest of the undecoded element in buf.
    	 *
    	 * Assumptions:
    	 *	1) small tags (less than 128)
    	 *	2) definite lengths
    	 *	3) primitive encodings used whenever possible
    	 */
    
    		/* XXYYZ
    		 * dtest does like this assert.
    		 */
    		/* assert( ber->ber_buf == NULL ); */
    
    		ber->ber_rwptr = (char *) &ber->ber_tag;
    		ber->ber_tag = 0;
    	}
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    #undef PTR_IN_VAR
    #define PTR_IN_VAR( ptr, var ) \
    	(((ptr)>=(char *) &(var)) && ((ptr)< (char *) &(var)+sizeof(var)))
    
    	
    	if (PTR_IN_VAR(ber->ber_rwptr, ber->ber_tag)) {
    		if (ber->ber_rwptr == (char *) &ber->ber_tag) {
    
    			if (ber_int_sb_read( sb, ber->ber_rwptr, 1)<=0)
    
    				return LBER_DEFAULT;
    			if ((ber->ber_rwptr[0] & LBER_BIG_TAG_MASK)
    				!= LBER_BIG_TAG_MASK) {
    				ber->ber_tag = ber->ber_rwptr[0];
    				ber->ber_rwptr = (char *) &ber->ber_usertag;
    				goto get_lenbyte;
    			}
    			ber->ber_rwptr++;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		}
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			if (ber_int_sb_read( sb, ber->ber_rwptr, 1)<=0) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			}
    
    
    			if (! (ber->ber_rwptr[0] & LBER_MORE_TAG_MASK) ) {
    				ber->ber_tag>>=sizeof(ber->ber_tag) -
    				  ((char *) &ber->ber_tag - ber->ber_rwptr);
    				ber->ber_rwptr = (char *) &ber->ber_usertag;
    				goto get_lenbyte;
    			}
    
    		} while( PTR_IN_VAR(ber->ber_rwptr, ber->ber_tag ));
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    		errno = ERANGE; /* this is a serious error. */
    		return LBER_DEFAULT;
    	}
    
    get_lenbyte:
    	if (ber->ber_rwptr==(char *) &ber->ber_usertag) {
    		unsigned char c;
    
    		if (ber_int_sb_read( sb, (char *) &c, 1)<=0)
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		if (c & 0x80U) {
    			int len = c & 0x7fU;
    
    			if ( (len==0) || ( len>sizeof( ber->ber_len ) ) ) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			}
    
    			ber->ber_rwptr = (char *) &ber->ber_len +
    				sizeof(ber->ber_len) - len;
    			ber->ber_len = 0;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		} else {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		}
    
    	if (PTR_IN_VAR(ber->ber_rwptr, ber->ber_len)) {
    
    		unsigned char netlen[sizeof(ber_len_t)];
    
    
    		ber_slen_t res;
    		ber_slen_t to_go;
    
    		to_go = (char *) &ber->ber_len + sizeof( ber->ber_len ) -
    			ber->ber_rwptr;
    		assert( to_go > 0 );
    
    		res = BerRead( sb, netlen, to_go );
    
    		/* convert length. */
    		ber->ber_len = 0;
    		for( to_go = 0; to_go < res ; to_go++ ) {
    			ber->ber_len <<= 8;
    			ber->ber_len |= netlen[to_go];
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		}
    
    fill_buffer:	
    	/* now fill the buffer. */
    	if (ber->ber_buf==NULL) {
    
    		ber->ber_buf = (char *) LBER_MALLOC( ber->ber_len );
    
    		if (ber->ber_buf==NULL) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		ber->ber_rwptr = ber->ber_buf;
    
    		ber->ber_ptr = ber->ber_buf;
    		ber->ber_end = ber->ber_buf + ber->ber_len;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	}
    
    	if ((ber->ber_rwptr>=ber->ber_buf) && (ber->ber_rwptr<ber->ber_end)) {
    
    		ber_slen_t res;
    		ber_slen_t to_go;
    
    		
    		to_go = ber->ber_end - ber->ber_rwptr;
    		assert( to_go > 0 );
    		
    
    		res = ber_int_sb_read( sb, ber->ber_rwptr, to_go );
    
    		if (res<=0)
    			return LBER_DEFAULT;
    		ber->ber_rwptr+=res;
    		
    		if (res<to_go) {
    #if defined( EWOULDBLOCK )
    			errno = EWOULDBLOCK;
    #elif defined( EAGAIN )
    			errno = EAGAIN;
    #endif			
    			return LBER_DEFAULT;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		}
    
    		
    		ber->ber_rwptr = NULL;
    		*len = ber->ber_len;
    		if ( ber->ber_debug ) {
    
    Gary Williams's avatar
    Gary Williams committed
    #ifdef NEW_LOGGING
    			LDAP_LOG(( "liblber", LDAP_LEVEL_DETAIL1,
    				   "ber_get_next: tag 0x%lx len %ld\n",
    				   ber->ber_tag, ber->ber_len ));
    			BER_DUMP(( "liblber", LDAP_LEVEL_DETAIL2, ber, 1 ));
    #else
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			ber_log_printf( LDAP_DEBUG_TRACE, ber->ber_debug,
    
    				"ber_get_next: tag 0x%lx len %ld contents:\n",
    				ber->ber_tag, ber->ber_len );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			ber_log_dump( LDAP_DEBUG_BER, ber->ber_debug, ber, 1 );
    
    Gary Williams's avatar
    Gary Williams committed
    #endif
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	}
    
    	assert( 0 ); /* ber structure is messed up ?*/
    	return LBER_DEFAULT;
    }