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

os: failure in TestProcessAlreadyDone on freebsd,netbsd,openbsd #67926

Closed
kolyshkin opened this issue Jun 10, 2024 · 9 comments
Closed

os: failure in TestProcessAlreadyDone on freebsd,netbsd,openbsd #67926

kolyshkin opened this issue Jun 10, 2024 · 9 comments
Labels
FixPending Issues that have a fix which has not yet been reviewed or submitted. NeedsFix The path to resolution is known, but the work has not been done.
Milestone

Comments

@kolyshkin
Copy link
Contributor

kolyshkin commented Jun 10, 2024

Go version

last commit as of now (beaf7f3)

Output of go env in your module/workspace:

n/a

What did you do?

A test case added by recently merged CL 588675 is consistently failing on FreeBSD, OpenBSD, NetBSD.

What did you see happen?

--- FAIL: TestProcessAlreadyDone (0.00s)
    exec_test.go:97: Wait() got err wait6: no child processes (ps <nil>), want ErrProcessDone
FAIL
FAIL	os	0.463s
ok  	os/exec	0.282s
FAIL
go tool dist: Failed: exit status 1

What did you expect to see?

passing test

@prattmic
Copy link
Member

Oh, I missed that Wait doesn't use convertESRCH. It seems like it probably should? Though to be conservative in the freeze, just making the test accept ESRCH as well is probably best.

I think this would fail on Linux without pidfd as well. I guess we don't have any Linux builders with old enough kernels to cover non-pidfd.

@kolyshkin
Copy link
Contributor Author

@prattmic PTAL. I think that TestProcessAlreadyDone has a wrong assumption that Wait on a non-existent process should return ErrProcessDone, while in fact it does it only on Linux when pidfd is working (because statusDone is set by FindProcess).

Or, if the assumption is right and we want to tidy up the API, we should add code converting ECHILD (not ESRCH) to ErrProcessDone.

BTW there's a test very similar to TestProcessAlreadyDone but it only runs on Linux and only if pidfd is working.

@kolyshkin
Copy link
Contributor Author

I think this would fail on Linux without pidfd as well. I guess we don't have any Linux builders with old enough kernels to cover non-pidfd.

An idea, perhaps we can test non-pidfd functionality on linux, too; let me take a look.

@kolyshkin
Copy link
Contributor Author

I guess the easiest path forward is to remove the test case (as it has a wrong assumption for general case, and the specific case (when the assumption is right) is already tested by TestFindProcessViaPidfd.

@prattmic
Copy link
Member

Oops, I assumed that text was ESRCH, indeed it is ECHILD.

I think for this release we should change the statusDone case in Wait for pidfd to return ECHILD instead of ErrProcessDone. That makes the PID and pidfd cases return the same error (as-is, returning ErrProcessDone is a slight API change).

For next release, I do think we should consider changing all of the ECHILD cases to ErrProcessDone, as I agree it is cleaner.

@kolyshkin
Copy link
Contributor Author

think for this release we should change the statusDone case in Wait for pidfd to return ECHILD instead of ErrProcessDone.

...wrapped in NewSyscallError("wait").

Yes you're probably right. Meaning, TestFindProcessViaPidfd needs to be changed or removed as well.

(and I was hoping I just found a way to find out if pidfd is used)

@prattmic
Copy link
Member

...wrapped in NewSyscallError("wait").

Thanks, you saved me a round of CL review. :)

(and I was hoping I just found a way to find out if pidfd is used)

It isn't the cleanest, but given the way os is structured now, if you do the equivalent of pidfdWorks, then you know pidfd will always be used.

@gopherbot
Copy link
Contributor

Change https://go.dev/cl/591816 mentions this issue: os: always return syscall.ECHILD from Wait for done process

@dmitshur dmitshur added this to the Go1.23 milestone Jun 11, 2024
@dmitshur dmitshur added NeedsFix The path to resolution is known, but the work has not been done. FixPending Issues that have a fix which has not yet been reviewed or submitted. labels Jun 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FixPending Issues that have a fix which has not yet been reviewed or submitted. NeedsFix The path to resolution is known, but the work has not been done.
Projects
None yet
Development

No branches or pull requests

5 participants