-
-
Notifications
You must be signed in to change notification settings - Fork 355
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
interp: reading from file redirection in while loops waits indefinitely #1099
Comments
Confirmed that it broke in 3.9.0. It works in 3.8.0. |
I tried to write a test that would fail, but I can't seem to get a diff --git a/interp/interp_test.go b/interp/interp_test.go
index 8b535ce3..4a4e1f2a 100644
--- a/interp/interp_test.go
+++ b/interp/interp_test.go
@@ -2905,6 +2905,10 @@ done <<< 2`,
"while read a; do echo $a; GOSH_CMD=exec_ok $GOSH_PROG; done <<EOF\na\nb\nc\nEOF",
"a\nexec ok\nb\nexec ok\nc\nexec ok\n",
},
+ {
+ "while read a; do echo $a; done < <(echo x)",
+ "x\n",
+ },
// TODO: our final exit status here isn't right.
// {
// "while read a; do echo $a; GOSH_CMD=exec_fail $GOSH_PROG; done <<< 'a\nb\nc'", $ cd interp/
$ go test
PASS
ok mvdan.cc/sh/v3/interp 2.808s |
Here's a better test that won't run into Windows compatibility issues. I've based off of 3.8.0 and confirmed it passes in CI and it fails in CI for master. diff --git a/interp/interp_test.go b/interp/interp_test.go
index 8b535ce3..877d8c7a 100644
--- a/interp/interp_test.go
+++ b/interp/interp_test.go
@@ -2905,6 +2905,10 @@ done <<< 2`,
"while read a; do echo $a; GOSH_CMD=exec_ok $GOSH_PROG; done <<EOF\na\nb\nc\nEOF",
"a\nexec ok\nb\nexec ok\nc\nexec ok\n",
},
+ {
+ "echo x > f; while read a; do echo $a; done < f",
+ "x\n",
+ },
// TODO: our final exit status here isn't right.
// {
// "while read a; do echo $a; GOSH_CMD=exec_fail $GOSH_PROG; done <<< 'a\nb\nc'", No idea how to solve the actual bug. |
Thank you for filing this and for providing good test cases. I can reproduce with your latest test case, it seems to be due to an error coming from the cancelreader library. Very odd, but at least it's our fault that we hid this error. |
OK I figured it out; https://github.com/muesli/cancelreader uses epoll on Linux, which fails with an error on regular files, because polling on a regular file makes no sense - it always reads bytes immediately. So the cancelreader library worked OK for stdin being OS pipes, which it usually is... but when it is any sort of regular file, it would fail. This page has a bit more context: https://stackoverflow.com/questions/5603642/epoll-ctl-operation-not-permitted-error-c-program This will require a couple of changes upstream, and then the changes on our side will be pretty straightforward. |
On second thought, muesli/cancelreader#13 pretty much covers the changes I would have made, but we don't have to wait for that to be merged to resolve the problem. |
Thanks for the fix, @mvdan. How long do you think it will be until you cut the next release? It may help the Task project to decide whether to revert to an earlier release, or hang on a bit for the next release to fix the issue. |
The regression is pretty significant so I will do a release in the next day or so. |
In v3.9.0 of the gosh interpreter there is an issue with reading from file or file substitutions in
while
loops. The script just hangs when attempting to read from a file or file substitution.This did work recently. I haven't narrowed down the exact version it broke in yet. I discovered this through it breaking in my Taskfile usage.
Examples
Works: Reading from pipe
Hangs: Reading from file
results in this hanging forever
Hangs: Reading from file substitution
results in this hanging forever
The text was updated successfully, but these errors were encountered: