Most active commenters
  • pasc1878(6)
  • Joker_vD(3)

←back to thread

167 points jgrahamc | 17 comments | | HN request time: 1.552s | source | bottom
Show context
bouke ◴[] No.43557162[source]
So the real problem is that Jest just executes to whatever `sl` resolves. The fix they intent to release doesn't address that, but it tries to recognise the train steaming through. How is this acceptable behaviour from a test runner, as it looks like a disaster to happen. What if I have `alias sl=rm -rf /`, as one typically wants to have such a command close at hand?
replies(4): >>43557349 #>>43557468 #>>43557711 #>>43558209 #
1. blueflow ◴[] No.43557468[source]
What else should the test runner do?
replies(2): >>43557612 #>>43557677 #
2. pasc1878 ◴[] No.43557612[source]
Use the full path of sl and not rely on $PATH in the same way cron and macOS GUI apps do for I assume this exact reason.
replies(4): >>43557887 #>>43558500 #>>43558696 #>>43560502 #
3. pavel_lishin ◴[] No.43557677[source]
There must be a better way to tell if a repo is a Sapling repo than by running some arbitrary binary, right?
replies(1): >>43558575 #
4. stonegray ◴[] No.43557887[source]
Is the full path guaranteed? For example homebrew, snap, and apt might put it all in different places. $PATH is a useful tool.
replies(2): >>43558585 #>>43559161 #
5. charcircuit ◴[] No.43558500[source]
Finding the full path of sl requires looking at $PATH
replies(1): >>43559145 #
6. Symbiote ◴[] No.43558575[source]
For Git one could look for .git/config. There must be something equivalent.
replies(1): >>43575840 #
7. ◴[] No.43558585{3}[source]
8. skipants ◴[] No.43558696[source]
What if the full path is just `/usr/bin/sl`?
replies(1): >>43559149 #
9. pasc1878 ◴[] No.43559145{3}[source]
In this case not as then you find the wrong sl - you need to know where the correct sl was installed.
10. pasc1878 ◴[] No.43559149{3}[source]
Then yopu get the sl there which could be correct.
11. pasc1878 ◴[] No.43559161{3}[source]
But not in this case where you have two executables with the same name.

You have to know where the tool was installed or else be certain no other sl is on your path.

12. Joker_vD ◴[] No.43560502[source]
How would knowing the full path help you anyway? It's either in "/usr/bin/sl", or "/usr/local/bin", or "~/.local/bin", now what?

By the way, believe it or not, POSIX compliance requires existence of only two directories (/dev and /tmp) and three files (/dev/console, /dev/null, and /dev/tty) on the system; everything else is completely optional, including existence of /bin, /etc, and /usr.

replies(1): >>43567698 #
13. pasc1878 ◴[] No.43567698{3}[source]
Because you know what you installed and so which sl to use.
replies(1): >>43567880 #
14. Joker_vD ◴[] No.43567880{4}[source]
But the sl is not invoked by you. It is invoked by some npm module (a 5-times-removed dependency from any side) which hopes that either there is "sl" in the $PATH and it is the Sapling CLI, or there is no "sl" in the $PATH. This module can't use absolute paths because it does not know how the end user's system looks.
replies(1): >>43571917 #
15. pasc1878 ◴[] No.43571917{5}[source]
In that case it is a large security risk as well as it does not work as per the article
replies(1): >>43580073 #
16. remram ◴[] No.43575840{3}[source]
.git will be a file and not a directory, if you are in a submodule or a worktree.

You just illustrated why trying to assume the functionality of a third-party app instead of calling it creates even more bugs.

17. Joker_vD ◴[] No.43580073{6}[source]
A program invoking some other the program that the user themself consciously have installed on their system (and put into the PATH) is not a security risk per se, it's literally UNIX Way™ working as intended.