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
Dragoș Haiduc
OpenLDAP
Commits
2f6e801a
Commit
2f6e801a
authored
23 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Fix overly complex control management
parent
35d04ef1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/controls.c
+69
-58
69 additions, 58 deletions
servers/slapd/controls.c
with
69 additions
and
58 deletions
servers/slapd/controls.c
+
69
−
58
View file @
2f6e801a
...
...
@@ -91,13 +91,12 @@ int get_ctrls(
Operation
*
op
,
int
sendres
)
{
int
nctrls
=
0
;
int
nctrls
;
ber_tag_t
tag
;
ber_len_t
len
;
char
*
opaque
;
BerElement
*
ber
=
op
->
o_ber
;
LDAPControl
***
ctrls
=
&
op
->
o_ctrls
;
struct
slap_control
*
c
;
struct
slap_control
*
sc
;
int
rc
=
LDAP_SUCCESS
;
const
char
*
errmsg
=
NULL
;
...
...
@@ -130,57 +129,63 @@ int get_ctrls(
goto
return_results
;
}
/*
set through each element
*/
*
ctrls
=
ch_malloc
(
1
*
sizeof
(
LDAPControl
*
)
);
/*
one for first control, one for termination
*/
op
->
o_
ctrls
=
ch_malloc
(
2
*
sizeof
(
LDAPControl
*
)
);
#if 0
if(
*
ctrls == NULL ) {
if(
op->
ctrls == NULL ) {
rc = LDAP_NO_MEMORY;
errmsg = "no memory";
goto return_results;
}
#endif
*
ctrls
[
nctrls
]
=
NULL
;
op
->
o_
ctrls
[
nctrls
=
0
]
=
NULL
;
/* step through each element */
for
(
tag
=
ber_first_element
(
ber
,
&
len
,
&
opaque
);
tag
!=
LBER_ERROR
;
tag
=
ber_next_element
(
ber
,
&
len
,
opaque
)
)
{
LDAPControl
*
tctrl
;
LDAPControl
*
c
;
LDAPControl
**
tctrls
;
tctrl
=
ch_calloc
(
1
,
sizeof
(
LDAPControl
)
);
tctrl
->
ldctl_oid
=
NULL
;
tctrl
->
ldctl_value
.
bv_val
=
NULL
;
c
=
ch_calloc
(
1
,
sizeof
(
LDAPControl
)
);
#if 0
if( c == NULL ) {
ldap_controls_free(op->o_ctrls);
op->o_ctrls = NULL;
rc = LDAP_NO_MEMORY;
errmsg = "no memory";
goto return_results;
}
#endif
/* allocate pointer space for current controls (nctrls)
* + this control + extra NULL
*/
tctrls
=
(
tctrl
==
NULL
)
?
NULL
:
ch_realloc
(
*
ctrls
,
(
nctrls
+
2
)
*
sizeof
(
LDAPControl
*
));
tctrls
=
ch_realloc
(
op
->
o_ctrls
,
(
nctrls
+
2
)
*
sizeof
(
LDAPControl
*
));
#if 0
if( tctrls == NULL ) {
/* one of the above allocation failed */
if( tctrl != NULL ) {
ch_free( tctrl );
}
ldap_controls_free(*ctrls);
*ctrls = NULL;
ch_free( c );
ldap_controls_free(op->o_ctrls);
op->o_ctrls = NULL;
rc = LDAP_NO_MEMORY;
errmsg = "no memory";
goto return_results;
}
#endif
op
->
o_ctrls
=
tctrls
;
t
ctrls
[
nctrls
++
]
=
tctrl
;
t
ctrls
[
nctrls
]
=
NULL
;
op
->
o_
ctrls
[
nctrls
++
]
=
c
;
op
->
o_
ctrls
[
nctrls
]
=
NULL
;
tag
=
ber_scanf
(
ber
,
"{a"
/*}*/
,
&
tctrl
->
ldctl_oid
);
tag
=
ber_scanf
(
ber
,
"{a"
/*}*/
,
&
c
->
ldctl_oid
);
if
(
tag
==
LBER_ERROR
)
{
#ifdef NEW_LOGGING
...
...
@@ -191,8 +196,8 @@ int get_ctrls(
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: get oid failed.
\n
"
,
0
,
0
,
0
);
#endif
*
c
trls
=
NULL
;
ldap_controls_free
(
tctrls
)
;
ldap_con
tr
o
ls
_free
(
op
->
o_ctrls
)
;
op
->
o_ctrls
=
NULL
;
rc
=
SLAPD_DISCONNECT
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
...
...
@@ -213,49 +218,57 @@ int get_ctrls(
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: get crit failed.
\n
"
,
0
,
0
,
0
);
#endif
*
c
trls
=
NULL
;
ldap_controls_free
(
tctrls
)
;
ldap_con
tr
o
ls
_free
(
op
->
o_ctrls
)
;
op
->
o_ctrls
=
NULL
;
rc
=
SLAPD_DISCONNECT
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
}
tctrl
->
ldctl_iscritical
=
(
crit
!=
0
);
c
->
ldctl_iscritical
=
(
crit
!=
0
);
tag
=
ber_peek_tag
(
ber
,
&
len
);
}
#ifdef NEW_LOGGING
LDAP_LOG
((
"operation"
,
LDAP_LEVEL_INFO
,
"get_ctrls: conn %d oid=
\"
%s
\"
(%scritical)
\n
"
,
conn
->
c_connid
,
tctrl
->
ldctl_oid
,
tctrl
->
ldctl_iscritical
?
""
:
"non"
));
#else
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: oid=
\"
%s
\"
(%scritical)
\n
"
,
tctrl
->
ldctl_oid
,
tctrl
->
ldctl_iscritical
?
""
:
"non"
,
0
);
#endif
if
(
tag
==
LBER_OCTETSTRING
)
{
tag
=
ber_scanf
(
ber
,
"o"
,
&
tctrl
->
ldctl_value
);
tag
=
ber_scanf
(
ber
,
"o"
,
&
c
->
ldctl_value
);
if
(
tag
==
LBER_ERROR
)
{
#ifdef NEW_LOGGING
LDAP_LOG
((
"operation"
,
LDAP_LEVEL_INFO
,
"get_ctrls: conn %d get value failed.
\n
"
,
conn
->
c_connid
));
LDAP_LOG
((
"operation"
,
LDAP_LEVEL_INFO
,
"get_ctrls: conn %d: "
"%s (%scritical): get value failed.
\n
"
,
conn
->
c_connid
,
c
->
ldctl_oid
?
c
->
ldctl_oid
:
"(NULL)"
,
c
->
ldctl_iscritical
?
""
:
"non"
));
#else
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: get value failed.
\n
"
,
0
,
0
,
0
);
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: conn %d: "
"%s (%scritical): get value failed.
\n
"
,
conn
->
c_connid
,
c
->
ldctl_oid
?
c
->
ldctl_oid
:
"(NULL)"
,
c
->
ldctl_iscritical
?
""
:
"non"
);
#endif
*
c
trls
=
NULL
;
ldap_controls_free
(
tctrls
)
;
ldap_con
tr
o
ls
_free
(
op
->
o_ctrls
)
;
op
->
o_ctrls
=
NULL
;
rc
=
SLAPD_DISCONNECT
;
errmsg
=
"decoding controls error"
;
goto
return_results
;
}
}
c
=
find_ctrl
(
tctrl
->
ldctl_oid
);
if
(
c
!=
NULL
)
{
#ifdef NEW_LOGGING
LDAP_LOG
((
"operation"
,
LDAP_LEVEL_INFO
,
"get_ctrls: conn %d oid=
\"
%s
\"
(%scritical)
\n
"
,
conn
->
c_connid
,
c
->
ldctl_oid
?
c
->
ldctl_oid
:
"(NULL)"
,
c
->
ldctl_iscritical
?
""
:
"non"
));
#else
Debug
(
LDAP_DEBUG_TRACE
,
"=> get_ctrls: oid=
\"
%s
\"
(%scritical)
\n
"
,
c
->
ldctl_oid
?
c
->
ldctl_oid
:
"(NULL)"
,
c
->
ldctl_iscritical
?
""
:
"non"
,
0
);
#endif
sc
=
find_ctrl
(
c
->
ldctl_oid
);
if
(
sc
!=
NULL
)
{
/* recognized control */
slap_mask_t
tagmask
;
switch
(
op
->
o_tag
)
{
...
...
@@ -293,39 +306,37 @@ int get_ctrls(
goto
return_results
;
}
if
((
c
->
sc_mask
&
tagmask
)
==
tagmask
)
{
if
((
s
c
->
sc_mask
&
tagmask
)
==
tagmask
)
{
/* available extension */
if
(
!
c
->
sc_parse
)
{
if
(
!
s
c
->
sc_parse
)
{
rc
=
LDAP_OTHER
;
errmsg
=
"not yet implemented"
;
goto
return_results
;
}
rc
=
c
->
sc_parse
(
conn
,
op
,
tctrl
,
&
errmsg
);
rc
=
s
c
->
sc_parse
(
conn
,
op
,
c
,
&
errmsg
);
if
(
rc
!=
LDAP_SUCCESS
)
goto
return_results
;
if
(
c
->
sc_mask
&
SLAP_CTRL_FRONTEND
)
{
if
(
s
c
->
sc_mask
&
SLAP_CTRL_FRONTEND
)
{
/* kludge to disable backend_control() check */
tctrl
->
ldctl_iscritical
=
0
;
c
->
ldctl_iscritical
=
0
;
}
}
else
if
(
tctrl
->
ldctl_iscritical
)
{
}
else
if
(
c
->
ldctl_iscritical
)
{
/* unavailable CRITICAL control */
rc
=
LDAP_UNAVAILABLE_CRITICAL_EXTENSION
;
errmsg
=
"critical extension is unavailable"
;
goto
return_results
;
}
}
else
if
(
tctrl
->
ldctl_iscritical
)
{
}
else
if
(
c
->
ldctl_iscritical
)
{
/* unrecognized CRITICAL control */
rc
=
LDAP_UNAVAILABLE_CRITICAL_EXTENSION
;
errmsg
=
"critical extension is not recognized"
;
goto
return_results
;
}
*
ctrls
=
tctrls
;
}
return_results:
...
...
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