mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
test,ci: fix [AM]San, disable ASLR (#4365)
The kernel that ships with the new Ubuntu 22.04 CI image seems to have a PIE slide that is bigger than the sanitizer runtimes can handle. It makes ASan fail with thousands of "AddressSanitizer:DEADLYSIGNAL" warnings, and MSan error with complaints about memory accesses outside known ranges. Disabling address space layout randomization fixes both. This commit also fixes a small bug in the platform_output test where the cgroups v1 logic did not handle the "unlimited quota" special case properly. Ubuntu 20.04 still uses cgroups v1.
This commit is contained in:
parent
b0816180e3
commit
91ba13054a
5
.github/workflows/sanitizer.yml
vendored
5
.github/workflows/sanitizer.yml
vendored
@ -23,6 +23,11 @@ jobs:
|
||||
- name: Envinfo
|
||||
run: npx envinfo
|
||||
|
||||
# [AM]SAN fail on newer kernels due to a bigger PIE slide
|
||||
- name: Disable ASLR
|
||||
run: |
|
||||
sudo sysctl -w kernel.randomize_va_space=0
|
||||
|
||||
- name: ASAN Build
|
||||
run: |
|
||||
mkdir build-asan
|
||||
|
@ -110,7 +110,7 @@ TEST_IMPL(platform_output) {
|
||||
if (cgroup_version == 0) {
|
||||
file = fopen("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_quota_us", "r");
|
||||
if (file) {
|
||||
if (fscanf(file, "%lu", "a) == 1 && quota > 0) {
|
||||
if (fscanf(file, "%lu", "a) == 1 && quota > 0 && quota < ~0ULL) {
|
||||
fclose(file);
|
||||
file = fopen("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_period_us", "r");
|
||||
if (file && fscanf(file, "%lu", &period) == 1) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user