-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v8.0] fix (DISET): Resolve infinite loop in DISET for DISET.BaseTransport
sendData
#7848
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ryuwd
force-pushed
the
roneil-socket-inf-loop
branch
from
October 23, 2024 09:20
a998ecb
to
d47b930
Compare
ryuwd
changed the title
Resolve infinite loop in DISET for
fix (DISET): Resolve infinite loop in DISET for Oct 23, 2024
DISET.BaseTransport
sendDataDISET.BaseTransport
sendData
chrisburr
previously approved these changes
Oct 23, 2024
…in an infinite loop
ryuwd
force-pushed
the
roneil-socket-inf-loop
branch
from
October 23, 2024 09:42
d47b930
to
5b7c54b
Compare
ryuwd
changed the title
fix (DISET): Resolve infinite loop in DISET for
[v8.0] fix (DISET): Resolve infinite loop in DISET for Oct 23, 2024
DISET.BaseTransport
sendDataDISET.BaseTransport
sendData
chrisburr
approved these changes
Oct 23, 2024
@chrisburr is this missing a sweep to integration branch? |
An old friend :-) #7462 |
fstagni
added
alsoTargeting:integration
Cherry pick this PR to integration after merge
and removed
sweep:ignore
Prevent sweeping from being ran for this PR
labels
Oct 31, 2024
DIRACGridBot
added
the
sweep:done
All sweeping actions have been done for this PR
label
Oct 31, 2024
DIRACGridBot
pushed a commit
to DIRACGridBot/DIRAC
that referenced
this pull request
Oct 31, 2024
… `DISET.BaseTransport` sendData
Sweep summary Sweep ran in https://github.com/DIRACGrid/DIRAC/actions/runs/11608724944 Successful:
|
fstagni
added a commit
to DIRACGridBot/DIRAC
that referenced
this pull request
Nov 6, 2024
… `DISET.BaseTransport` sendData
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
alsoTargeting:integration
Cherry pick this PR to integration after merge
sweep:done
All sweeping actions have been done for this PR
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We noticed that the socket in DISET
BaseTransport
can get into a state whereself.oSocket.send(buf)
will always return-1
(as shown in below trace) - this causespackSentBytes
to decrement, and if the write operation always returns a negative value we end up in an infinite loop aspackSentBytes < bytesToSend
can never be false.cc @chrisburr
BEGINRELEASENOTES
*Core
FIX: Prevent
-1
returned fromoSocket.write
being interpreted as number of bytes to avoid an infinite loop inDISET BaseTransport.sendData
.ENDRELEASENOTES