René's URL Explorer Experiment


Title: Prevent array.fromfile reentrancy deadlock in append conversion by Copilot · Pull Request #6576 · RustPython/RustPython · GitHub

Open Graph Title: Prevent array.fromfile reentrancy deadlock in append conversion by Copilot · Pull Request #6576 · RustPython/RustPython

X Title: Prevent array.fromfile reentrancy deadlock in append conversion by Copilot · Pull Request #6576 · RustPython/RustPython

Description: array.fromfile could deadlock when __index__ invoked during element conversion performed a nested append on the same array. Append conversion before locking: Convert elements (capturing array kind) prior to acquiring the write lock, then push with a runtime invariant check to avoid reentrant deadlocks. Stronger invariants: Added typed helpers (ArrayType/ArrayElementValue) with assertive mismatch diagnostics to catch unexpected kind/value divergence. Regression coverage: Extended extra_tests/snippets/stdlib_array.py with a reentrancy scenario where fromfile triggers __index__ that re-appends to the same array. Example: import array a = array.array("b") class X: def __index__(self): a.append(0) # reenters append while fromfile is mid-conversion return 0 class R: def read(self, n): a.append(X()) return b"\0" * n a.fromfile(R(), 1) # no deadlock; contents now [0, 0, 0] Original prompt This section details on the original issue you should resolve Deadlock when array.fromfile re-enters append via __index__ ### What happened? array.fromfile calls the user-provided f.read(), and that callback can append objects to the same array while it is being resized. The append path grabs the array's write lock before converting the element, then calls the object's __index__. If __index__ performs another array.append (as in the PoC), the second append blocks forever on the already-held PyRwLock, causing a deadlock instead of raising an error. Proof of Concept: import array a = array.array("b") class X: def __index__(self): a.append(0) return 0 class R: def read(self, n): a.append(X()) return b"\0" * n a.fromfile(R(), 1) Affected Versions RustPython Version Status Exit Code Python 3.13.0alpha (heads/main-dirty:21300f689, Dec 13 2025, 22:16:49) [RustPython 0.4.0 with rustc 1.90.0-nightly (11ad40bb8 2025-06-28)] Deadlock 124 Vulnerable Code #[pymethod] fn fromfile(&self, f: PyObjectRef, n: isize, vm: &VirtualMachine) -> PyResult<()> { let b = vm.call_method(&f, "read", (n_bytes,))?; // user f.read runs arbitrary code while the array can still be mutated ... } #[pymethod] fn append(zelf: &Py, x: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { zelf.try_resizable(vm)?.push(x, vm) // takes a non-reentrant PyRwLock write guard before converting x } impl ArrayElement for i8 { fn try_into_from_object(vm: &VirtualMachine, obj: PyObjectRef) -> PyResult { obj.try_index(vm)?.try_to_primitive(vm) // invokes __index__ while the write lock is held; reentrant array.append inside __index__ deadlocks } } impl BufferResizeGuard for PyArray { fn try_resizable_opt(&self) -> Option> { let w = self.write(); // second append blocks here waiting on the same PyRwLock, hanging the interpreter (self.exports.load(atomic::Ordering::SeqCst) == 0).then_some(w) } } Rust Output Program hangs forever CPython Output (No output) Add the code to stdlib_array.py and fix the problem. Comments on the Issue (you are @copilot in this section) Fixes #6549 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Open Graph Description: array.fromfile could deadlock when __index__ invoked during element conversion performed a nested append on the same array. Append conversion before locking: Convert elements (capturing array kind...

X Description: array.fromfile could deadlock when __index__ invoked during element conversion performed a nested append on the same array. Append conversion before locking: Convert elements (capturing array kind...

Opengraph URL: https://github.com/RustPython/RustPython/pull/6576

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:b9d149b3-c5e2-9ad8-bcda-df5258d72c6b
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idB1B0:3BE5B5:113AC1:16105E:6970173D
html-safe-nonce5be6ebb0ec8f0c38b524913b07f22a9fc6797d15a86bbd6b1b3ee061afafe4ed
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMUIwOjNCRTVCNToxMTNBQzE6MTYxMDVFOjY5NzAxNzNEIiwidmlzaXRvcl9pZCI6Ijg0MDAzNzM0MjQ3MjYyMTg1NTciLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac59edf2c85dab8cad6fef323ddc02de3f6c4ca1ece9eb46d7d1e490223a484373
hovercard-subject-tagpull_request:3134404281
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/RustPython/RustPython/pull/6576/files
twitter:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/1143301?s=400&v=4
og:image:altarray.fromfile could deadlock when __index__ invoked during element conversion performed a nested append on the same array. Append conversion before locking: Convert elements (capturing array kind...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None043a09521e81f00c45482046b3f38390b8b292cf9a86ad665a632633a072c05c
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/RustPython/RustPython git https://github.com/RustPython/RustPython.git
octolytics-dimension-user_id39710557
octolytics-dimension-user_loginRustPython
octolytics-dimension-repository_id135201145
octolytics-dimension-repository_nwoRustPython/RustPython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id135201145
octolytics-dimension-repository_network_root_nwoRustPython/RustPython
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release98881eadf8ae73000970c42161c094b0809b1330
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F6576%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FRustPython%2FRustPython%2Fpull%2F6576%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=RustPython%2FRustPython
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
Reloadhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
RustPython https://patch-diff.githubusercontent.com/RustPython
RustPythonhttps://patch-diff.githubusercontent.com/RustPython/RustPython
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython
Fork 1.4k https://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython
Star 21.7k https://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython
Code https://patch-diff.githubusercontent.com/RustPython/RustPython
Issues 276 https://patch-diff.githubusercontent.com/RustPython/RustPython/issues
Pull requests 91 https://patch-diff.githubusercontent.com/RustPython/RustPython/pulls
Discussions https://patch-diff.githubusercontent.com/RustPython/RustPython/discussions
Actions https://patch-diff.githubusercontent.com/RustPython/RustPython/actions
Projects 0 https://patch-diff.githubusercontent.com/RustPython/RustPython/projects
Wiki https://patch-diff.githubusercontent.com/RustPython/RustPython/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/RustPython/RustPython/security
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
Insights https://patch-diff.githubusercontent.com/RustPython/RustPython/pulse
Code https://patch-diff.githubusercontent.com/RustPython/RustPython
Issues https://patch-diff.githubusercontent.com/RustPython/RustPython/issues
Pull requests https://patch-diff.githubusercontent.com/RustPython/RustPython/pulls
Discussions https://patch-diff.githubusercontent.com/RustPython/RustPython/discussions
Actions https://patch-diff.githubusercontent.com/RustPython/RustPython/actions
Projects https://patch-diff.githubusercontent.com/RustPython/RustPython/projects
Wiki https://patch-diff.githubusercontent.com/RustPython/RustPython/wiki
Security https://patch-diff.githubusercontent.com/RustPython/RustPython/security
Insights https://patch-diff.githubusercontent.com/RustPython/RustPython/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FRustPython%2FRustPython%2Fissues%2Fnew%2Fchoose
Copilothttps://patch-diff.githubusercontent.com/apps/copilot-swe-agent
mainhttps://patch-diff.githubusercontent.com/RustPython/RustPython/tree/main
copilot/fix-array-deadlock-issuehttps://patch-diff.githubusercontent.com/RustPython/RustPython/tree/copilot/fix-array-deadlock-issue
Conversation 1 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576
Commits 4 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/commits
Checks 12 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/checks
Files changed 2 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
Prevent array.fromfile reentrancy deadlock in append conversion https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#top
Show all changes 4 commits https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
4eb77a1 Initial plan Copilot Dec 29, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/commits/4eb77a1a083eaf4d1b5f807da9f2705ba36ec2ad
c48ff14 Fix array append reentrancy deadlock Copilot Dec 29, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/commits/c48ff142efc425a7c0b252a71d851d45ec9b4191
4e8680f Refine array reentrancy handling Copilot Dec 29, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/commits/4e8680f39a0f2d12035afe0026c5cdff890f11b9
391a83d rewrite youknowone Dec 29, 2025 https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/commits/391a83d4897f6981d410c2cd92e3d2b45dca8efb
Clear filters https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
array.rs https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
stdlib_array.py https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-17f45c6fd685b13d6a49df935a5dccc0a504519223d3784f7167fee4c5e69ee5
crates/stdlib/src/array.rshttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/391a83d4897f6981d410c2cd92e3d2b45dca8efb/crates/stdlib/src/array.rs
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-4af79f42ea956565988f27a170bd30079de0e7f232a1d4e6371609567f421fc4
extra_tests/snippets/stdlib_array.pyhttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-17f45c6fd685b13d6a49df935a5dccc0a504519223d3784f7167fee4c5e69ee5
View file https://patch-diff.githubusercontent.com/RustPython/RustPython/blob/391a83d4897f6981d410c2cd92e3d2b45dca8efb/extra_tests/snippets/stdlib_array.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files#diff-17f45c6fd685b13d6a49df935a5dccc0a504519223d3784f7167fee4c5e69ee5
Please reload this pagehttps://patch-diff.githubusercontent.com/RustPython/RustPython/pull/6576/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.