Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Joe Martin
OpenLDAP
Commits
42304b7a
Commit
42304b7a
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Fix control parsing and controls free routine.
parent
0ed1a76d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/libldap/controls.c
+3
-3
3 additions, 3 deletions
libraries/libldap/controls.c
servers/slapd/controls.c
+41
-17
41 additions, 17 deletions
servers/slapd/controls.c
with
44 additions
and
20 deletions
libraries/libldap/controls.c
+
3
−
3
View file @
42304b7a
...
...
@@ -249,10 +249,10 @@ ldap_controls_free( LDAPControl **controls )
assert
(
controls
!=
NULL
);
if
(
controls
!=
NULL
)
{
LDAPControl
*
c
;
int
i
;
for
(
c
=
*
controls
;
c
!=
NULL
;
c
++
)
{
ldap_control_free
(
c
);
for
(
i
=
0
;
controls
[
i
]
!=
NULL
;
i
++
)
{
ldap_control_free
(
c
ontrols
[
i
]
);
}
LDAP_FREE
(
controls
);
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/controls.c
+
41
−
17
View file @
42304b7a
...
...
@@ -52,6 +52,8 @@ int get_ctrls(
goto
return_results
;
}
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls
\n
"
,
0
,
0
,
0
);
if
(
op
->
o_protocol
<
LDAP_VERSION3
)
{
rc
=
-
1
;
errmsg
=
"controls require LDAPv3"
;
...
...
@@ -80,6 +82,8 @@ int get_ctrls(
LDAPControl
**
tctrls
;
tctrl
=
ch_calloc
(
1
,
sizeof
(
LDAPControl
)
);
tctrl
->
ldctl_oid
=
NULL
;
tctrl
->
ldctl_value
.
bv_val
=
NULL
;
/* allocate pointer space for current controls (nctrls)
* + this control + extra NULL
...
...
@@ -104,39 +108,56 @@ int get_ctrls(
}
#endif
tctrls
[
nctrls
++
]
=
tctrl
;
tctrls
[
nctrls
]
=
NULL
;
tag
=
ber_scanf
(
ber
,
"{a"
/*}*/
,
&
tctrl
->
ldctl_oid
);
if
(
tag
!=
LBER_ERROR
)
{
tag
=
ber_peek_tag
(
ber
,
&
len
);
if
(
tag
==
LBER_ERROR
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: get oid failed.
\n
"
,
0
,
0
,
0
);
*
ctrls
=
NULL
;
ldap_controls_free
(
tctrls
);
rc
=
-
1
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
}
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: %s
\n
"
,
tctrl
->
ldctl_oid
,
0
,
0
);
tag
=
ber_peek_tag
(
ber
,
&
len
);
if
(
tag
==
LBER_BOOLEAN
)
{
ber_int_t
crit
;
tag
=
ber_scanf
(
ber
,
"b"
,
&
crit
);
tctrl
->
ldctl_iscritical
=
crit
?
(
char
)
0
:
(
char
)
~
0
;
}
if
(
tag
!=
LBER_ERROR
)
{
if
(
tag
==
LBER_ERROR
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: get crit failed.
\n
"
,
0
,
0
,
0
);
*
ctrls
=
NULL
;
ldap_controls_free
(
tctrls
);
rc
=
-
1
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
}
tctrl
->
ldctl_iscritical
=
crit
?
(
char
)
0
:
(
char
)
~
0
;
tag
=
ber_peek_tag
(
ber
,
&
len
);
}
if
(
tag
==
LBER_OCTETSTRING
)
{
tag
=
ber_scanf
(
ber
,
"o"
,
&
tctrl
->
ldctl_value
);
}
else
{
tctrl
->
ldctl_value
.
bv_val
=
NULL
;
}
if
(
tag
==
LBER_ERROR
)
{
*
ctrls
=
NULL
;
ldap_controls_free
(
tctrls
);
rc
=
-
1
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
if
(
tag
==
LBER_ERROR
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: get value failed.
\n
"
,
0
,
0
,
0
);
*
ctrls
=
NULL
;
ldap_controls_free
(
tctrls
);
rc
=
-
1
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
}
}
if
(
tctrl
->
ldctl_iscritical
&&
...
...
@@ -151,6 +172,9 @@ int get_ctrls(
}
return_results:
Debug
(
LDAP_DEBUG_TRACE
,
"<= get_ctrls: %d %d %s
\n
"
,
nctrls
,
rc
,
errmsg
?
errmsg
:
""
);
if
(
sendres
&&
rc
!=
LDAP_SUCCESS
)
{
if
(
rc
==
-
1
)
{
send_ldap_disconnect
(
conn
,
op
,
rc
,
errmsg
);
...
...
@@ -180,4 +204,4 @@ int get_manageDSAit( Operation *op )
}
return
0
;
}
\ No newline at end of file
}
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