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
Oren Tirosh
OpenLDAP
Commits
8ba2296d
Commit
8ba2296d
authored
21 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS#2795 fix double-free on failure, reset dn2id database
parent
e325a3a9
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/back-ldbm/modrdn.c
+6
-14
6 additions, 14 deletions
servers/slapd/back-ldbm/modrdn.c
with
6 additions
and
14 deletions
servers/slapd/back-ldbm/modrdn.c
+
6
−
14
View file @
8ba2296d
...
...
@@ -43,15 +43,13 @@ ldbm_back_modrdn(
struct
ldbminfo
*
li
=
(
struct
ldbminfo
*
)
op
->
o_bd
->
be_private
;
struct
berval
p_dn
,
p_ndn
;
struct
berval
new_dn
=
{
0
,
NULL
},
new_ndn
=
{
0
,
NULL
};
struct
berval
old_ndn
=
{
0
,
NULL
};
Entry
*
e
,
*
p
=
NULL
;
Entry
*
matched
;
/* LDAP v2 supporting correct attribute handling. */
LDAPRDN
new_rdn
=
NULL
;
LDAPRDN
old_rdn
=
NULL
;
int
isroot
=
-
1
;
#define CAN_ROLLBACK -1
#define MUST_DESTROY 1
int
rc
=
CAN_ROLLBACK
;
int
rc_id
=
0
;
ID
id
=
NOID
;
const
char
*
text
=
NULL
;
...
...
@@ -598,12 +596,11 @@ ldbm_back_modrdn(
}
(
void
)
cache_delete_entry
(
&
li
->
li_cache
,
e
);
rc
=
MUST_DESTROY
;
/* XXX: there is no going back! */
free
(
e
->
e_dn
);
free
(
e
->
e_n
dn
)
;
old_ndn
=
e
->
e_n
name
;
e
->
e_name
=
new_dn
;
e
->
e_nname
=
new_ndn
;
new_dn
.
bv_val
=
NULL
;
...
...
@@ -633,7 +630,8 @@ ldbm_back_modrdn(
default:
/* here we may try to delete the newly added dn */
if
(
dn2id_delete
(
op
->
o_bd
,
&
e
->
e_nname
,
e
->
e_id
)
!=
0
)
{
if
(
dn2id_delete
(
op
->
o_bd
,
&
e
->
e_nname
,
e
->
e_id
)
!=
0
||
dn2id_add
(
op
->
o_bd
,
&
old_ndn
,
e
->
e_id
)
!=
0
)
{
/* we already are in trouble ... */
;
}
...
...
@@ -653,12 +651,12 @@ ldbm_back_modrdn(
rs
->
sr_err
=
LDAP_SUCCESS
;
rs
->
sr_text
=
NULL
;
send_ldap_result
(
op
,
rs
);
rc
=
0
;
cache_entry_commit
(
e
);
return_results:
if
(
new_dn
.
bv_val
!=
NULL
)
free
(
new_dn
.
bv_val
);
if
(
new_ndn
.
bv_val
!=
NULL
)
free
(
new_ndn
.
bv_val
);
if
(
old_ndn
.
bv_val
!=
NULL
)
free
(
old_ndn
.
bv_val
);
/* LDAP v2 supporting correct attribute handling. */
if
(
new_rdn
!=
NULL
)
{
...
...
@@ -695,13 +693,7 @@ return_results:
/* free entry and writer lock */
cache_return_entry_w
(
&
li
->
li_cache
,
e
);
if
(
rc
==
MUST_DESTROY
)
{
/* if rc == MUST_DESTROY the entry is uncached
* and its private data is destroyed;
* the entry must be freed */
entry_free
(
e
);
}
ldap_pvt_thread_rdwr_wunlock
(
&
li
->
li_giant_rwlock
);
rs
->
sr_text
=
NULL
;
return
(
r
c
);
return
(
r
s
->
sr_err
);
}
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