-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
libredirect: fix argument forwarding in open*
functions
#73266
Conversation
Flag `O_TMPFILE` was added in Linux 3.11. It affects whether or not `mode` argument should be passed.
`access` should return `int` not `int*`. Actually compiler produced identical assembly with any of those types, so by luck it "just worked".
open*
functions
Could you add a testcase for this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Diff seems fine, the issue is fixed in the KDE VM I created to reproduce this. Thanks!
@jtojnar I'm not sure if I can write a good test that tests that
So either there is a guarantee that during test a file within supported filesystem can be created, or we test only if we can and silently fail if unsupported filesystem is used. In the later case I wonder if that counts as breaking reproducibility. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nix-review
passes on NixOS (failures are broken on master)
diff LGTM
[29 built (6 failed), 57 copied (270.3 MiB), 65.2 MiB DL]
error: build of '/nix/store/ibwl6l7pl6prp1c613ldkc2zj9b9g0mr-env.drv' failed
https://github.com/NixOS/nixpkgs/pull/73266
9 package failed to build:
citrix_workspace citrix_workspace_19_3_0 citrix_workspace_19_6_0 citrix_workspace_19_8_0 freeoffice gdbgui python37Packages.flask-socketio python37Packages.python-engineio python37Packages.python-socketio
10 package were build:
libredirect python38Packages.flask-socketio python38Packages.python-engineio python38Packages.python-socketio softmaker-office sublime-merge sublime-merge-dev sublime3 sublime3-dev teamspeak_client
didn't do any testing
@Ma27 Let's merge this? (I don't know if there a reason not to). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nix-review
passes on NixOS
diff LGTM
commits LGTM
[27 built (4 failed), 19 copied (73.3 MiB), 12.4 MiB DL]
error: build of '/nix/store/njfx7kk2smycjy2xfsqpwk2yh3268dd0-env.drv' failed
https://github.com/NixOS/nixpkgs/pull/73266
4 package failed to build:
citrix_workspace citrix_workspace_19_3_0 citrix_workspace_19_6_0 citrix_workspace_19_8_0
15 package were built:
freeoffice gdbgui libredirect python37Packages.flask-socketio python37Packages.python-engineio python37Packages.python-socketio python38Packages.flask-socketio python38Packages.python-engineio python38Packages.python-socketio softmaker-office sublime-merge sublime-merge-dev sublime3 sublime3-dev teamspeak_client
@GrahamcOfBorg build libredirect |
I guess we will have to do without test. Thanks. |
…n-bug libredirect: fix argument forwarding in `open*` functions (cherry picked from commit 6b73d29)
Motivation for this change
libredirect
incorrectly forwards arguments ofopen
,open64
andopenat
functions whenO_TMPFILE
flag is set.From
man 2 open
:This PR solves this issue: #73077 .
Things done
open
,open64
,openat
functionsaccess
functionsandbox
innix.conf
on non-NixOS linux)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @Ma27