Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
ff447a31
Commit
ff447a31
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Added ldap_get_entry_contols() and ldap_parse_reference(), but
have not implemented ldap_get_ber_controls() helper function yet.
parent
fc9e2076
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libraries/libldap/controls.c
+6
-0
6 additions, 0 deletions
libraries/libldap/controls.c
libraries/libldap/getentry.c
+43
-0
43 additions, 0 deletions
libraries/libldap/getentry.c
libraries/libldap/references.c
+69
-0
69 additions, 0 deletions
libraries/libldap/references.c
with
118 additions
and
0 deletions
libraries/libldap/controls.c
+
6
−
0
View file @
ff447a31
...
...
@@ -140,3 +140,9 @@ LDAPControl *ldap_control_dup( LDAPControl *c )
new
->
ldctl_iscritical
=
c
->
ldctl_iscritical
;
return
new
;
}
/* get the controls from the BerElement */
int
ldap_get_ber_controls
(
BerElement
*
be
,
LDAPControl
***
cp
)
{
return
LDAP_NOT_SUPPORTED
;
}
This diff is collapsed.
Click to expand it.
libraries/libldap/getentry.c
+
43
−
0
View file @
ff447a31
...
...
@@ -73,3 +73,46 @@ ldap_count_entries( LDAP *ld, LDAPMessage *chain )
return
(
i
);
}
int
ldap_get_entry_controls
(
LDAP
*
ld
,
LDAPMessage
*
entry
,
LDAPControl
***
serverctrls
)
{
int
rc
;
BerElement
be
;
if
(
ld
==
NULL
||
serverctrls
==
NULL
||
entry
==
NULL
||
entry
->
lm_msgtype
==
LDAP_RES_SEARCH_ENTRY
)
{
return
LDAP_PARAM_ERROR
;
}
/* make a local copy of the BerElement */
SAFEMEMCPY
(
&
be
,
entry
->
lm_ber
,
sizeof
(
be
));
if
(
ber_scanf
(
&
be
,
"{xx"
/*}*/
)
==
LBER_ERROR
)
{
rc
=
LDAP_DECODING_ERROR
;
goto
cleanup_and_return
;
}
rc
=
ldap_get_ber_controls
(
&
be
,
serverctrls
);
cleanup_and_return:
if
(
rc
!=
LDAP_SUCCESS
)
{
ld
->
ld_errno
=
rc
;
if
(
ld
->
ld_matched
!=
NULL
)
free
(
ld
->
ld_matched
);
ld
->
ld_matched
=
NULL
;
if
(
ld
->
ld_error
!=
NULL
)
free
(
ld
->
ld_error
);
ld
->
ld_error
=
NULL
;
}
return
rc
;
}
This diff is collapsed.
Click to expand it.
libraries/libldap/references.c
+
69
−
0
View file @
ff447a31
...
...
@@ -66,3 +66,72 @@ ldap_count_references( LDAP *ld, LDAPMessage *chain )
return
(
i
);
}
int
ldap_parse_reference
(
LDAP
*
ld
,
LDAPMessage
*
ref
,
char
***
referralsp
,
LDAPControl
***
serverctrls
,
int
freeit
)
{
BerElement
be
;
char
**
refs
=
NULL
;
int
rc
;
if
(
ld
==
NULL
||
ref
==
NULL
||
ref
->
lm_msgtype
!=
LDAP_RES_SEARCH_REFERENCE
)
{
return
LDAP_PARAM_ERROR
;
}
/* make a private copy of BerElement */
SAFEMEMCPY
(
&
be
,
ref
->
lm_ber
,
sizeof
(
be
));
if
(
ber_scanf
(
&
be
,
"{v"
/*}*/
,
&
refs
)
==
LBER_ERROR
)
{
rc
=
LDAP_DECODING_ERROR
;
goto
free_and_return
;
}
if
(
serverctrls
==
NULL
)
{
rc
=
LDAP_SUCCESS
;
goto
free_and_return
;
}
if
(
ber_scanf
(
&
be
,
/*{*/
"}"
)
==
LBER_ERROR
)
{
rc
=
LDAP_DECODING_ERROR
;
goto
free_and_return
;
}
rc
=
ldap_get_ber_controls
(
&
be
,
serverctrls
);
free_and_return:
if
(
referralsp
!=
NULL
)
{
/* provide references regradless of return code */
*
referralsp
=
refs
;
}
else
{
ldap_value_free
(
refs
);
}
if
(
freeit
)
{
ldap_msgfree
(
ref
);
}
if
(
rc
!=
LDAP_SUCCESS
)
{
ld
->
ld_errno
=
rc
;
if
(
ld
->
ld_matched
!=
NULL
)
free
(
ld
->
ld_matched
);
ld
->
ld_matched
=
NULL
;
if
(
ld
->
ld_error
!=
NULL
)
free
(
ld
->
ld_error
);
ld
->
ld_error
=
NULL
;
}
return
rc
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment