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
a4570992
Commit
a4570992
authored
15 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#5836,ITS#6089
parent
e4644649
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
CHANGES
+2
-0
2 additions, 0 deletions
CHANGES
servers/slapd/result.c
+17
-9
17 additions, 9 deletions
servers/slapd/result.c
servers/slapd/slap.h
+1
-0
1 addition, 0 deletions
servers/slapd/slap.h
with
20 additions
and
9 deletions
CHANGES
+
2
−
0
View file @
a4570992
...
...
@@ -15,8 +15,10 @@ OpenLDAP 2.4.17 Engineering
Fixed slapd bind race condition (ITS#6189)
Fixed slapd cancel behavior (ITS#6137)
Fixed slapd cert validation (ITS#6098)
Fixed slapd connection_destroy assert (ITS#6089)
Fixed slapd errno handling (ITS#6037)
Fixed slapd global alloc handling (ITS#6054)
Fixed slapd hung writers (ITS#5836)
Fixed slapd ldapi issues (ITS#6056)
Fixed slapd moduleload with static backends and modules (ITS#6016)
Fixed slapd normalization of updated schema attributes (ITS#5540)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/result.c
+
17
−
9
View file @
a4570992
...
...
@@ -139,40 +139,46 @@ static long send_ldap_ber(
Connection
*
conn
=
op
->
o_conn
;
ber_len_t
bytes
;
long
ret
=
0
;
int
closing
=
0
;
ber_get_option
(
ber
,
LBER_OPT_BER_BYTES_TO_WRITE
,
&
bytes
);
/* write only one pdu at a time - wait til it's our turn */
ldap_pvt_thread_mutex_lock
(
&
conn
->
c_write1_mutex
);
if
((
op
->
o_abandon
&&
!
op
->
o_cancel
)
||
!
connection_valid
(
conn
))
{
if
((
op
->
o_abandon
&&
!
op
->
o_cancel
)
||
!
connection_valid
(
conn
)
||
conn
->
c_writers
<
0
)
{
ldap_pvt_thread_mutex_unlock
(
&
conn
->
c_write1_mutex
);
return
0
;
}
while
(
conn
->
c_writers
>
0
)
{
conn
->
c_writers
++
;
while
(
conn
->
c_writers
>
0
&&
conn
->
c_writing
)
{
ldap_pvt_thread_cond_wait
(
&
conn
->
c_write1_cv
,
&
conn
->
c_write1_mutex
);
}
/* connection was closed under us */
if
(
conn
->
c_writers
<
0
)
{
closing
=
1
;
/* we're the last waiter, let the closer continue */
if
(
conn
->
c_writers
==
-
1
)
ldap_pvt_thread_cond_signal
(
&
conn
->
c_write1_cv
);
}
conn
->
c_writers
++
;
if
(
closing
)
{
conn
->
c_writers
++
;
ldap_pvt_thread_mutex_unlock
(
&
conn
->
c_write1_mutex
);
return
0
;
}
/* Our turn */
conn
->
c_writing
=
1
;
/* write the pdu */
while
(
1
)
{
int
err
;
/* lock the connection */
if
(
ldap_pvt_thread_mutex_trylock
(
&
conn
->
c_mutex
))
{
if
(
!
connection_valid
(
conn
))
{
ret
=
0
;
break
;
}
ldap_pvt_thread_mutex_unlock
(
&
conn
->
c_write1_mutex
);
ldap_pvt_thread_mutex_lock
(
&
conn
->
c_write1_mutex
);
if
(
conn
->
c_writers
<
0
)
{
...
...
@@ -201,6 +207,7 @@ static long send_ldap_ber(
if
(
err
!=
EWOULDBLOCK
&&
err
!=
EAGAIN
)
{
conn
->
c_writers
--
;
conn
->
c_writing
=
0
;
ldap_pvt_thread_mutex_unlock
(
&
conn
->
c_write1_mutex
);
connection_closing
(
conn
,
"connection lost on write"
);
...
...
@@ -225,6 +232,7 @@ static long send_ldap_ber(
}
}
conn
->
c_writing
=
0
;
if
(
conn
->
c_writers
<
0
)
{
conn
->
c_writers
++
;
if
(
!
conn
->
c_writers
)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/slap.h
+
1
−
0
View file @
a4570992
...
...
@@ -2810,6 +2810,7 @@ struct Connection {
BerElement
*
c_currentber
;
/* ber we're attempting to read */
int
c_writers
;
/* number of writers waiting */
char
c_writing
;
/* someone is writing */
char
c_sasl_bind_in_progress
;
/* multi-op bind in progress */
char
c_writewaiter
;
/* true if blocked on write */
...
...
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