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
Lukas However
OpenLDAP
Commits
ecdf9a35
Commit
ecdf9a35
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Entry must be locked before adding it to the cache.
This removes a race condition upon the entry.
parent
7cd4e05a
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/add.c
+27
-10
27 additions, 10 deletions
servers/slapd/back-ldbm/add.c
with
27 additions
and
10 deletions
servers/slapd/back-ldbm/add.c
+
27
−
10
View file @
ecdf9a35
...
...
@@ -123,13 +123,34 @@ ldbm_back_add(
pthread_mutex_unlock
(
&
li
->
li_add_mutex
);
}
/* acquire required reader/writer lock */
if
(
entry_rdwr_lock
(
e
,
1
))
{
if
(
p
!=
NULL
)
{
/* free parent and writer lock */
cache_return_entry_w
(
&
li
->
li_cache
,
p
);
}
if
(
rootlock
)
{
/* release root lock */
pthread_mutex_unlock
(
&
li
->
li_root_mutex
);
}
Debug
(
LDAP_DEBUG_ANY
,
"add: could not lock entry
\n
"
,
0
,
0
,
0
);
entry_free
(
e
);
send_ldap_result
(
conn
,
op
,
LDAP_OPERATIONS_ERROR
,
""
,
""
);
return
(
-
1
);
}
e
->
e_id
=
next_id
(
be
);
/*
* Try to add the entry to the cache, assign it a new dnid
* and mark it locked. This should only fail if the entry
* already exists.
* Try to add the entry to the cache, assign it a new dnid.
* This should only fail if the entry already exists.
*/
e
->
e_id
=
next_id
(
be
);
if
(
cache_add_entry_lock
(
&
li
->
li_cache
,
e
,
ENTRY_STATE_CREATING
)
!=
0
)
{
if
(
p
!=
NULL
)
{
/* free parent and writer lock */
...
...
@@ -144,17 +165,13 @@ ldbm_back_add(
0
);
next_id_return
(
be
,
e
->
e_id
);
/* XXX this should be ok, no other thread should have access
* because e hasn't been added to the cache yet
*/
entry_rdwr_unlock
(
e
,
1
);;
entry_free
(
e
);
send_ldap_result
(
conn
,
op
,
LDAP_ALREADY_EXISTS
,
""
,
""
);
return
(
-
1
);
}
/* acquire writer lock */
entry_rdwr_lock
(
e
,
1
);
/*
* add it to the id2children index for the parent
*/
...
...
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