René's URL Explorer Experiment


Title: Fix incorrect pinned maps handling and missing userspace setup code · Issue #12 · multikernel/kernelscript · GitHub

Open Graph Title: Fix incorrect pinned maps handling and missing userspace setup code · Issue #12 · multikernel/kernelscript

X Title: Fix incorrect pinned maps handling and missing userspace setup code · Issue #12 · multikernel/kernelscript

Description: When using the pin keyword with map declarations (e.g., pin var cpu_counters : array<...>), the current implementation faces two primary issues that prevent the maps from being correctly pinned to the BPF filesystem. The Problems Incorre...

Open Graph Description: When using the pin keyword with map declarations (e.g., pin var cpu_counters : array<...>), the current implementation faces two primary issues that prevent the maps from being correctly pinned to ...

X Description: When using the pin keyword with map declarations (e.g., pin var cpu_counters : array<...>), the current implementation faces two primary issues that prevent the maps from being correctly pinn...

Opengraph URL: https://github.com/multikernel/kernelscript/issues/12

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Fix incorrect pinned maps handling and missing userspace setup code","articleBody":"When using the `pin` keyword with map declarations (e.g., `pin var cpu_counters : array\u003c...\u003e`), the current implementation faces two primary issues that prevent the maps from being correctly pinned to the BPF filesystem.\n\n### The Problems\n\n1. **Incorrect Treatment as Global Variables**: The IR generator incorrectly creates both an IR map definition and an IR global variable for pinned maps. This causes the userspace codegen to treat the map as a \"pinned global variable,\" looking for a non-existent `__pinned_globals` map and resulting in the error: `Failed to find pinned globals map in eBPF object`.\n2. **Missing Setup Code**: Setup and pinning logic for maps is only generated if the userspace code explicitly performs map operations. However, pinned maps require setup (pinning to `/sys/fs/bpf/...`) even if they are only accessed within the eBPF program itself.\n3. **Variable Redefinition**: If multiple pinned maps exist, the generated C code uses the same variable name (`existing_fd`) for all of them, leading to compilation errors.\n4. **Missing Directory Creation**: The generated code fails to pin maps if the parent directory (e.g., `/sys/fs/bpf/\u003cproject\u003e/maps/`) does not already exist.\n\n### Proposed Changes\n\nThe provided patch addresses these issues with the following logic:\n\n* **IR Generator**: Modified `ir_generator.ml` to ensure that map-type global declarations only produce map definitions, not global variable entries.\n* **Userspace Codegen**:\n* Updated `userspace_codegen.ml` to trigger map setup and FD declarations if any pinned maps are detected (`has_pinned_maps`), regardless of whether they are used in userspace C code.\n* Implemented unique variable naming (e.g., `%s_existing_fd`) to prevent C redefinition errors.\n* Added a C helper function `ensure_bpf_dir` to recursively create the necessary BPF filesystem directories before pinning.\n* Included necessary headers (`\u003csys/stat.h\u003e`, `\u003csys/types.h\u003e`) when pinning is required.\n\n[fix_pin_var_map.patch](https://github.com/user-attachments/files/25742537/fix_pin_var_map.patch)\n\n### Verification\n\nTesting with `examples/maps_demo.ks` confirms:\n\n* The \"Failed to find pinned globals map\" error is resolved.\n* Maps are correctly pinned to `/sys/fs/bpf/maps_demo/maps/`.\n* Userspace programs compile and run correctly with multiple pinned maps.\n","author":{"url":"https://github.com/SiyuanSun0736","@type":"Person","name":"SiyuanSun0736"},"datePublished":"2026-03-04T14:01:23.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/12/kernelscript/issues/12"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:3d5ad8ca-a042-375d-2e84-da355d5b7a2b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8F98:17881E:1A56D40:253C793:6A61D861
html-safe-nonce574ab307e142e1a6ec6b8be0a52599c2eb1cfc738075bed3c8b259e7244e9047
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4Rjk4OjE3ODgxRToxQTU2RDQwOjI1M0M3OTM6NkE2MUQ4NjEiLCJ2aXNpdG9yX2lkIjoiOTQ1NjA1MjUxNzg0ODkwNDY1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacec2955a28817bb195f099cddc9909099e7c88246553d8bf6183c8d3a2ae4939c
hovercard-subject-tagissue:4022169574
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/multikernel/kernelscript/12/issue_layout
twitter:imagehttps://opengraph.githubassets.com/981a14f188594dc5f602a305a2c20d7749216eed6d7d9fd8b601b1856f9897ef/multikernel/kernelscript/issues/12
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/981a14f188594dc5f602a305a2c20d7749216eed6d7d9fd8b601b1856f9897ef/multikernel/kernelscript/issues/12
og:image:altWhen using the pin keyword with map declarations (e.g., pin var cpu_counters : array<...>), the current implementation faces two primary issues that prevent the maps from being correctly pinned to ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameSiyuanSun0736
hostnamegithub.com
expected-hostnamegithub.com
Noneb2de8c74e5e61e893155ba46ee41bc66170c1644cb795adefa8386d490f7781c
turbo-cache-controlno-preview
go-importgithub.com/multikernel/kernelscript git https://github.com/multikernel/kernelscript.git
octolytics-dimension-user_id202362072
octolytics-dimension-user_loginmultikernel
octolytics-dimension-repository_id1019261571
octolytics-dimension-repository_nwomultikernel/kernelscript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1019261571
octolytics-dimension-repository_network_root_nwomultikernel/kernelscript
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released1866027ded575df8a15c731dd8b9986c9483ceb
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/multikernel/kernelscript/issues/12#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmultikernel%2Fkernelscript%2Fissues%2F12
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
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
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
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
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
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/enterprise/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://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmultikernel%2Fkernelscript%2Fissues%2F12
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=multikernel%2Fkernelscript
Reloadhttps://github.com/multikernel/kernelscript/issues/12
Reloadhttps://github.com/multikernel/kernelscript/issues/12
Reloadhttps://github.com/multikernel/kernelscript/issues/12
Please reload this pagehttps://github.com/multikernel/kernelscript/issues/12
multikernel https://github.com/multikernel
kernelscripthttps://github.com/multikernel/kernelscript
Notifications https://github.com/login?return_to=%2Fmultikernel%2Fkernelscript
Fork 23 https://github.com/login?return_to=%2Fmultikernel%2Fkernelscript
Star 501 https://github.com/login?return_to=%2Fmultikernel%2Fkernelscript
Code https://github.com/multikernel/kernelscript
Issues 2 https://github.com/multikernel/kernelscript/issues
Pull requests 0 https://github.com/multikernel/kernelscript/pulls
Actions https://github.com/multikernel/kernelscript/actions
Projects https://github.com/multikernel/kernelscript/projects
Security and quality 0 https://github.com/multikernel/kernelscript/security
Insights https://github.com/multikernel/kernelscript/pulse
Code https://github.com/multikernel/kernelscript
Issues https://github.com/multikernel/kernelscript/issues
Pull requests https://github.com/multikernel/kernelscript/pulls
Actions https://github.com/multikernel/kernelscript/actions
Projects https://github.com/multikernel/kernelscript/projects
Security and quality https://github.com/multikernel/kernelscript/security
Insights https://github.com/multikernel/kernelscript/pulse
Fix incorrect pinned maps handling and missing userspace setup codehttps://github.com/multikernel/kernelscript/issues/12#top
https://github.com/SiyuanSun0736
SiyuanSun0736https://github.com/SiyuanSun0736
on Mar 4, 2026https://github.com/multikernel/kernelscript/issues/12#issue-4022169574
fix_pin_var_map.patchhttps://github.com/user-attachments/files/25742537/fix_pin_var_map.patch
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.