-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
primops: disallow readFile /dev/stdin #2720
Conversation
I wonder if this should be restricted somehow so it doesn’t end up in the middle of nixpkgs. For example what happens if it is used twice?
… On Mar 11, 2019, at 15:01, Daiderd Jordan ***@***.***> wrote:
This already works on darwin and provides an alternative for --argstr for passing data to an expression without potentially running into argument length limits.
Fixes #2716
$ echo '{"foo":40,"bar":2}' | nix-instantiate --eval -E 'with builtins.fromJSON (builtins.readFile /dev/stdin); foo + bar'
42
You can view, comment on, or merge this pull request online at:
#2720
Commit Summary
primops: add support for reading stdin
File Changes
M src/libexpr/primops.cc (22)
Patch Links:
https://github.com/NixOS/nix/pull/2720.patch
https://github.com/NixOS/nix/pull/2720.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
If stdin is read more then once subsequent calls will return an empty string since it's consumed already. |
@LnL7 The kosher thing to do here would be to have some state in the eval state to determine if stdin has been read and if so what its contents were. |
IMHO this is a really bad idea, reading stdin is very impure and very non-compositional (for example, consider programs like |
If the goal is to pass large strings, it might be better to add some flag for this, e.g. |
I like the idea of |
@LnL7 Hm, I don't understand the question, what should throw an error? |
I made this to make the behaviour between darwin and linux consistent, so if we don't want this I would prefer to also disable the current behaviour on darwin. |
I'm not sure this would be sufficient, e.g. |
Hmm guess I didn't push my second commit, that's almost what I did 😄. |
Maybe it should use |
c1db1b2
to
e4233c6
Compare
Using |
Yes it does, as long as you use |
I marked this as stale due to inactivity. → More info |
I closed this issue due to inactivity. → More info |
Fixes #2716