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

x86: fix overlapping of kernel addresses with vsyscall page #2023

Merged
merged 1 commit into from
May 17, 2024

Conversation

francescolavra
Copy link
Member

In the x86_64 architecture, the KERNEL_LIMIT constant is currently set to 0xfffffffffffff000; if the KASLR process places the kernel near the end of the allowed address range, kernel addresses may overlap with the vsyscall page, which always starts at a fixed address (0xffffffffff600000); this may cause boot failures such as in https://app.circleci.com/pipelines/github/nanovms/nanos/4631/workflows/1400a162-d5c4-478d-8cc8-bdf84ab2536a/jobs/16261.
This change fixes the above issue by changing the KERNEL_LIMIT constant to coincide with the start of the vsyscall page.

In the x86_64 architecture, the KERNEL_LIMIT constant is currently
set to 0xfffffffffffff000; if the KASLR process places the kernel
near the limit of the address range, kernel addresses may overlap
with the vsyscall page, which always starts at a fixed address
(0xffffffffff600000u); this may cause boot failures such as in
https://app.circleci.com/pipelines/github/nanovms/nanos/4631/workflows/1400a162-d5c4-478d-8cc8-bdf84ab2536a/jobs/16261.
This change fixes the above issue by changing the KERNEL_LIMIT
constant to coincide wit the start of the vsyscall page.
@francescolavra francescolavra merged commit ec9976d into master May 17, 2024
5 checks passed
@francescolavra francescolavra deleted the fix/kernel-limit branch May 17, 2024 14:56
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.

2 participants