dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libldap5 / sources / ldap / common / getattr.c
blob6e15487a754c5d3a566992b24010e715d25326f4
1 /*
2 * Copyright (c) 2001 by Sun Microsystems, Inc.
3 * All rights reserved.
4 */
6 #pragma ident "%Z%%M% %I% %E% SMI"
8 /*
9 * The contents of this file are subject to the Netscape Public
10 * License Version 1.1 (the "License"); you may not use this file
11 * except in compliance with the License. You may obtain a copy of
12 * the License at http://www.mozilla.org/NPL/
14 * Software distributed under the License is distributed on an "AS
15 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
16 * implied. See the License for the specific language governing
17 * rights and limitations under the License.
19 * The Original Code is Mozilla Communicator client code, released
20 * March 31, 1998.
22 * The Initial Developer of the Original Code is Netscape
23 * Communications Corporation. Portions created by Netscape are
24 * Copyright (C) 1998-1999 Netscape Communications Corporation. All
25 * Rights Reserved.
27 * Contributor(s):
30 * Copyright (c) 1990 Regents of the University of Michigan.
31 * All rights reserved.
34 * getattr.c
37 #if 0
38 static char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
39 #endif
41 #include "ldap-int.h"
44 static ber_len_t
45 bytes_remaining( BerElement *ber )
47 ber_len_t len;
49 if ( ber_get_option( ber, LBER_OPT_REMAINING_BYTES, &len ) != 0 ) {
50 return( 0 ); /* not sure what else to do.... */
52 return( len );
56 char *
57 LDAP_CALL
58 ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **ber )
60 char *attr;
61 int err;
62 ber_int_t seqlength;
64 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_first_attribute\n", 0, 0, 0 );
66 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
67 return( NULL ); /* punt */
70 if ( ber == NULL || !NSLDAPI_VALID_LDAPMESSAGE_ENTRY_POINTER( entry )) {
71 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
72 return( NULL );
75 if ( nsldapi_alloc_ber_with_options( ld, ber ) != LDAP_SUCCESS ) {
76 return( NULL );
79 **ber = *entry->lm_ber;
81 attr = NULL; /* pessimistic */
82 err = LDAP_DECODING_ERROR; /* ditto */
84 /*
85 * Skip past the sequence, dn, and sequence of sequence.
86 * Reset number of bytes remaining so we confine the rest of our
87 * decoding to the current sequence.
89 if ( ber_scanf( *ber, "{xl{", &seqlength ) != LBER_ERROR &&
90 ber_set_option( *ber, LBER_OPT_REMAINING_BYTES, &seqlength )
91 == 0 ) {
92 /* snarf the attribute type, and skip the set of values,
93 * leaving us positioned right before the next attribute
94 * type/value sequence.
96 if ( ber_scanf( *ber, "{ax}", &attr ) != LBER_ERROR ||
97 bytes_remaining( *ber ) == 0 ) {
98 err = LDAP_SUCCESS;
102 LDAP_SET_LDERRNO( ld, err, NULL, NULL );
103 if ( attr == NULL || err != LDAP_SUCCESS ) {
104 ber_free( *ber, 0 );
105 *ber = NULL;
107 return( attr );
110 /* ARGSUSED */
111 char *
112 LDAP_CALL
113 ldap_next_attribute( LDAP *ld, LDAPMessage *entry, BerElement *ber )
115 char *attr;
116 int err;
118 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_next_attribute\n", 0, 0, 0 );
120 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
121 return( NULL ); /* punt */
124 if ( ber == NULL || !NSLDAPI_VALID_LDAPMESSAGE_ENTRY_POINTER( entry )) {
125 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL );
126 return( NULL );
129 attr = NULL; /* pessimistic */
130 err = LDAP_DECODING_ERROR; /* ditto */
132 /* skip sequence, snarf attribute type, skip values */
133 if ( ber_scanf( ber, "{ax}", &attr ) != LBER_ERROR ||
134 bytes_remaining( ber ) == 0 ) {
135 err = LDAP_SUCCESS;
138 LDAP_SET_LDERRNO( ld, err, NULL, NULL );
139 return( attr );