Skip to content
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

bpo-44645: Check for interrupts on any potentially backwards edge. #27167

Merged
merged 3 commits into from
Jul 16, 2021

Conversation

markshannon
Copy link
Member

@markshannon markshannon commented Jul 15, 2021

Comment on lines 1607 to 1619
def test_can_interrupt_tight_loops(self):
#Nothing to assert here. It just shouldn't hang.

cont = True
def worker():
while cont:
pass

t = threading.Thread(target=worker)
t.start()
time.sleep(0.1)
cont = False
t.join()
Copy link
Member

@pablogsal pablogsal Jul 15, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, add a timeout to the join so if it hangs it doesn't hang the full test suite and decorate the function with @threading_helper.reap_threads. Also, ideally we don't use a sleep as a syncronization promitive because this is going to easily become a race. You can try to orchestrate the waiting with athreading.Event

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the timeout will help in this case. If no other threads can run, then we can never reach the join call.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then add a maximum number of iterations or something. The objective here is that the test suite cannot fully hang if the test fails.

@bedevere-bot
Copy link

When you're done making the requested changes, leave the comment: I have made the requested changes; please review again.

And if you don't make the requested changes, you will be poked with soft cushions!

Comment on lines +1607 to +1630
@threading_helper.reap_threads
def test_can_interrupt_tight_loops(self):
cont = True
started = False
iterations = 100_000_000

def worker():
nonlocal iterations
nonlocal started
started = True
while cont:
if iterations:
iterations -= 1
else:
return
pass

t = threading.Thread(target=worker)
t.start()
while not started:
pass
cont = False
t.join()
self.assertNotEqual(iterations, 0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
@threading_helper.reap_threads
def test_can_interrupt_tight_loops(self):
cont = True
started = False
iterations = 100_000_000
def worker():
nonlocal iterations
nonlocal started
started = True
while cont:
if iterations:
iterations -= 1
else:
return
pass
t = threading.Thread(target=worker)
t.start()
while not started:
pass
cont = False
t.join()
self.assertNotEqual(iterations, 0)
@threading_helper.reap_threads
def test_can_interrupt_tight_loops(self):
cont = True
started = threading.Event()
iterations = 100_000_000
def worker():
nonlocal iterations
started.set()
while cont:
if iterations:
iterations -= 1
else:
return
pass
t = threading.Thread(target=worker)
t.start()
started.wait()
cont = False
t.join()
self.assertNotEqual(iterations, 0)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We are testing whether tight loops can be interrupted. Adding all the thread event machinery could undermine that.
I'd rather keep the test as close to the original bug report as possible. A little bit of active waiting shouldn't be a problem.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, I don't want to hold this more but note that the event is outside the loop, so it should not interfere

@markshannon markshannon merged commit 000e70a into python:main Jul 16, 2021
@miss-islington
Copy link
Contributor

Thanks @markshannon for the PR 🌮🎉.. I'm working now to backport this PR to: 3.10.
🐍🍒⛏🤖

@miss-islington
Copy link
Contributor

Sorry @markshannon, I had trouble checking out the 3.10 backport branch.
Please backport using cherry_picker on command line.
cherry_picker 000e70ad5246732fcbd27cf59268185cbd5ad734 3.10

@markshannon markshannon deleted the fix-44645 branch July 16, 2021 09:59
markshannon added a commit that referenced this pull request Jul 16, 2021
…dge. (GH-27167)

(cherry picked from commit 000e70a)

Co-authored-by: Mark Shannon <mark@hotpy.org>
pablogsal pushed a commit that referenced this pull request Jul 16, 2021
…dge. (GH-27167) (GH-27183)

(cherry picked from commit 000e70a)

Co-authored-by: Mark Shannon <mark@hotpy.org>
pablogsal added a commit to pablogsal/cpython that referenced this pull request Jul 16, 2021
ambv pushed a commit that referenced this pull request Jul 16, 2021
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 16, 2021
…edge. (pythonGH-27167)" (pythonGH-27194)

This reverts commit 000e70a.
(cherry picked from commit c90c591)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
ambv pushed a commit that referenced this pull request Jul 16, 2021
…edge. (GH-27167)" (GH-27194) (#27195)

This reverts commit 000e70a.
(cherry picked from commit c90c591)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
@terryjreedy terryjreedy removed the needs backport to 3.10 only security fixes label Feb 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants