Skip to content
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

Don't follow recursive symlinks during project discovery #1270

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

thecrypticace
Copy link
Contributor

@thecrypticace thecrypticace commented Mar 18, 2025

Project discovery is done by crawling the workspace with fast-glob looking for CSS files, JS/TS config files, Sass/Less files, etc…

A major problem with this approach though is that fast-glob crawls the filesystem and traverses into symlinked directories. If the symlink points back to a parent folder the crawler may cause a handful of issues:

  • An infinite traversal loop
  • Out of memory crashes (causing the server to restart repeatedly)
  • A rather long discovery time (10s+)
  • Errors because of file path length limits (esp on Windows)

I've rewritten the traversal to use tinyglobby which is a fast-glob-compatible replacement. It avoids all of these issues due to its use of fdir which explicitly detects and avoids traversal of recursive symlinks.

All existing tests pass as well as an additional test that previously timed out due to the use of recursive symlinks. This PR is going to require extensive testing on Windows with network shares, mapped drives, etc…

Fixes #1056
Fixes #1185

@thecrypticace thecrypticace force-pushed the fix/recursive-symlinks branch 2 times, most recently from b7e06e3 to 85be4da Compare March 22, 2025 14:15
@thecrypticace thecrypticace changed the base branch from main to feat/windows-ci March 22, 2025 18:17
@thecrypticace thecrypticace force-pushed the fix/recursive-symlinks branch from 85be4da to 72413a4 Compare March 22, 2025 18:18
Base automatically changed from feat/windows-ci to main March 22, 2025 18:28
@thecrypticace thecrypticace force-pushed the fix/recursive-symlinks branch from 72413a4 to 3d6c5db Compare March 22, 2025 18:28
@thecrypticace thecrypticace marked this pull request as ready for review March 22, 2025 18:39
@thecrypticace thecrypticace force-pushed the fix/recursive-symlinks branch 2 times, most recently from 4dd28cd to d6c204b Compare March 27, 2025 17:30
@thecrypticace thecrypticace force-pushed the fix/recursive-symlinks branch from d6c204b to 0cbc1ae Compare March 31, 2025 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Recursive symlinks can cause project discovery to fail The Code Helper process constantly uses 100%-200% CPU
2 participants