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

Data race in streamImpl: concurrent access to LastByteSent/FirstByteSent #7

Open
NikoMalik opened this issue Mar 21, 2025 · 0 comments

Comments

@NikoMalik
Copy link

Description:

When running tests with the -race flag, gosec detects data races in streamImpl methods LastByteSent() and FirstByteSent(). The race occurs due to concurrent reads (in sender's multiCB callback) and writes (in StreamsPool.Acquire()) on the shared fields of streamImpl.

Read at 0x00c0006166e0 by goroutine 27:
  ...streamImpl.LastByteSent()
  ...sender.multiCB.Call() at sender.go:308

Previous write at 0x00c0006166e0 by goroutine 22:
  ...StreamsPool.Acquire() at pool.go:51

and similarly for FirstByteSent().

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant