FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

gh-127146: Emscripten: Fix pathlib glob_dotdot test by hoodmane · Pull Request #135624 · python/cpython · GitHub

/ cpython Public

gh-127146: Emscripten: Fix pathlib glob_dotdot test - #135624

Merged
freakboy3742 merged 2 commits into
python:mainfrom
hoodmane:emscripten-glob-dotdot-eloop
Jun 18, 2025
Merged

gh-127146: Emscripten: Fix pathlib glob_dotdot test#135624
freakboy3742 merged 2 commits into
python:mainfrom
hoodmane:emscripten-glob-dotdot-eloop

Conversation

hoodmane commented Jun 17, 2025
edited
Loading

Copy link
Copy Markdown
Contributor

The Emscripten path resolver uses the same mechanism for resolving .. at a file system root as for resolving symlinks. This is because roots don't store their mountpoints. If the parent of a node is itself, it is a root but it might be a mountpoint in some other file system.

Anyways, if a path has enough ..'s at the root, it will return ELOOP. Enough turns out to be 49.

Upstream fix:
emscripten-core/emscripten#24591

The Emscripten path resolver uses the same mechanism for resolving ..
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

Anyways, if a path has enough ..'s at the root, it will return ELOOP.
Enough turns out to be 49.
hoodmane requested a review from barneygale as a code owner June 17, 2025 16:52
bedevere-app Bot added awaiting review tests Tests in the Lib/test dir labels Jun 17, 2025
hoodmane requested a review from freakboy3742 June 17, 2025 16:52
freakboy3742 added the needs backport to 3.14 bugs and security fixes label Jun 17, 2025

freakboy3742 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality

I'm not seeing this problem locally, but I don't see a problem with reducing the count for now.

freakboy3742 merged commit e4ccd46 into python:main Jun 18, 2025

Copy link
Copy Markdown

Thanks @hoodmane for the PR, and @freakboy3742 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.14.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jun 18, 2025
…35624)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
(cherry picked from commit e4ccd46)

Co-authored-by: Hood Chatham <roberthoodchatham@gmail.com>

bedevere-app Bot commented Jun 18, 2025

Copy link
Copy Markdown

GH-135653 is a backport of this pull request to the 3.14 branch.

bedevere-app Bot removed the needs backport to 3.14 bugs and security fixes label Jun 18, 2025
freakboy3742 pushed a commit that referenced this pull request Jun 18, 2025
#135653)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
(cherry picked from commit e4ccd46)

Co-authored-by: Hood Chatham <roberthoodchatham@gmail.com>
lkollar pushed a commit to lkollar/cpython that referenced this pull request Jun 19, 2025
)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
Pranjal095 pushed a commit to Pranjal095/cpython that referenced this pull request Jul 12, 2025
)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
taegyunkim pushed a commit to taegyunkim/cpython that referenced this pull request Aug 4, 2025
)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
Agent-Hellboy pushed a commit to Agent-Hellboy/cpython that referenced this pull request Aug 19, 2025
)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

skip news tests Tests in the Lib/test dir

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants


Back | FazBrowse Home | New Git URL