Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Agree that it is safe to remove all_exec from the default permissions. There are currently three usages of writeToOutput API: clang include cleaner, llvm-objcopy, llvm-dwarfutil. Both llvm-objcopy and llvm-dwarfutil use FilePermissionsApplier which should apply all_exec permission if necessary. Using all_exec by default looks redundant. It was introduced by https://reviews.llvm.org/D98426
please add the test for that case.
Many thanks for the verification. I added two relevant tests, please take another look.
Is there anything that can be done to use gtest unit tests for this? The two lit tests are useful, but the problem with them is that if they switch to using a different approach to emitting their data, the lit tests won't cover the Support code you're actually changing.
Some commit message nits:
[llvm][Support] Don'tt set "all_exe" mode by default for file written by llvm::writeToOutput.
There's no need to include the [llvm] tag - the [Support] tag already indicates the library clearly enough IMHO. Also, typo "Don'tt" -> "Don't" and we don't usually end commit titles with a ".".
Does the clang include cleaner tool have testing that covers its usage of this API?
llvm/test/tools/llvm-dwarfutil/ELF/X86/file-permissions.test | ||
---|---|---|
1 ↗ | (On Diff #534438) | It might make sense to reuse the test code from llvm-objcopy's mirror-permissions tests. See my other inline comment too. |
llvm/test/tools/llvm-objcopy/ELF/file-permissions.test | ||
1 ↗ | (On Diff #534438) | llvm-objcopy already has testing for permissions - see mirror-permissions-*.test and respect-umask.test. It seems like a new test file would be a mistake. Furthermore, a casual inspection to me makes it seem like this behaviour is already covered (and working correctly), which makes me think that no new testing is needed for this tool, but please review the existing test and see what you think. |
Thanks for the comments.
The usages of llvm::writeOutput are in the ToolMain.cpp files, I don't see a way to unittest them.
Some commit message nits:
[llvm][Support] Don'tt set "all_exe" mode by default for file written by llvm::writeToOutput.
There's no need to include the [llvm] tag - the [Support] tag already indicates the library clearly enough IMHO. Also, typo "Don'tt" -> "Don't" and we don't usually end commit titles with a ".".
Thanks, updated.
Does the clang include cleaner tool have testing that covers its usage of this API?
No, the clang-include-cleaner binary tool just literally writes the text code to an output file, it unlikes the llvm-dwardfutil and llvm-objcopy tools which has a preserving-input-file-permissions requirement.
llvm/test/tools/llvm-dwarfutil/ELF/X86/file-permissions.test | ||
---|---|---|
1 ↗ | (On Diff #534438) | by reusing the code, I think you mean calling the llvm-dwardfutil tool in the llvm-objcopy lit test, I'm not sure it is a good idea, calling a different tool in the llvm/test/tools/llvm-objcopy/mirror-permissions-*.test seems like violating the layer. |
llvm/test/tools/llvm-objcopy/ELF/file-permissions.test | ||
1 ↗ | (On Diff #534438) | thanks! I didn't notice there is an existing one. Taking a look on these test, I think it already covers the cases we aim to test. So no need to add a new one. |
unit test which checks llvm::writeOutput may be added to raw_ostream_test.cpp. Let`s this test check the case when "all_exec" is not set. i.e. that after default usage of llvm::writeOutput the resulting file does not have "all_exec", which is exact purpose of this patch.
llvm/test/tools/llvm-dwarfutil/ELF/X86/file-permissions.test | ||
---|---|---|
1 ↗ | (On Diff #534438) | I meant that you could copy and adapt the existing llvm-objcopy test to create a new llvm-dwarfutil test (in the llvm-dwarfutil test folder). |
address comments:
- add unittest for llvm::writeToOutput API
- refine the llvm-dwarfutil tool lit test
Thanks for the comment.
unit test which checks llvm::writeOutput may be added to raw_ostream_test.cpp. Let`s this test check the case when "all_exec" is not set. i.e. that after default usage of llvm::writeOutput the resulting file does not have "all_exec", which is exact purpose of this patch.
OK, added one.
llvm/test/tools/llvm-dwarfutil/ELF/X86/file-permissions.test | ||
---|---|---|
1 ↗ | (On Diff #534438) | I see, adjusted the test per comment. |
The updated unit test is failing on Windows in the pre-merge checks. Please investigate and fix as appropriate.
llvm/unittests/Support/raw_ostream_test.cpp | ||
---|---|---|
500 | Here and below, rather than just checking the all_exe bit, let's check the permissions are exactly what are expected (e.g. does it have the read/write perms?). |
Good catch, thanks. I have restricted the unittest to linux only, I think it should be fine -- the behavior on windows is a bit different, the exe bit is set even you only set read|write bits, the unittests/Support/Path.cpp verifies that behavior.
llvm/unittests/Support/raw_ostream_test.cpp | ||
---|---|---|
499 | sure, done. | |
500 | checking all existing bits is a bit tricky here (I tried it, then gave up):
Both API don't provide a way to customize these bits, and they're internal details. We could test against them, but testing the implementation details seems subtle. And here we aim to verify the exe-bit not set by the writeToOutput, so I think just testing the exe-bit is not set should be enough. |
llvm/unittests/Support/raw_ostream_test.cpp | ||
---|---|---|
500 | This argument doesn't make much sense to me. Why are the all_read and all_write bits implementation details that shouldn't be tested when the lack of all_exe is? This test is for testing writeToOutput. Part of writeToOutput's behaviour appears to be to create a file with the all_read and all_write bits set. Therefore, we should be testing that behaviour. As there was already one issue with the permission bits of the file this method creates, and you are directly modifiyng a test to add permissions testing, I think it's justified to request testing of the other bits. |
compare the file-permission bits in unittest
llvm/unittests/Support/raw_ostream_test.cpp | ||
---|---|---|
500 | OK, I changed the test to verify the all_read and all_write bits, please take another look. |
this LGTM. please, wait if James has any concern.
llvm/unittests/Support/raw_ostream_test.cpp | ||
---|---|---|
533 | nit: comment looks a bit inconsistent as we check for read&write bits. |
address the comment.
llvm/unittests/Support/raw_ostream_test.cpp | ||
---|---|---|
533 | refined the comment. |
The new test LGTM, albeit with one query: I assume umask sets some global state. When the lit unit tests are running, do the tests within the same process run sequentially, or are they in parallel at all? If the latter, there could be some thread-safety issue, although I suspect the tests are run sequentially.
Good question. For each lit test, llvm-lit will run it on a separate worker process, so we should be safe here.