
hammerhead 16.0 was reported not booting and shamu 18.1 was reported to take ~15+ minutes to boot hammerhead does not have getrandom so it failed immediately shamu does have getrandom BUT it blocks during init meaning it'll wait until the entropy pool slowly fills In tested I did not discovery this I tested on flox/mako/d852/klte/clark/sailfish/mata/cheeseburger/fajita All the newer ones have working getrandom All the older ones included a patch to make getrandom non blocking on init Signed-off-by: Tad <tad@spotco.us>
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Wed, 5 Dec 2018 09:29:25 -0500
|
|
Subject: [PATCH] avoid setting RLIMIT_AS with hardened malloc
|
|
|
|
This needs to be ported to a better mechanism like memory control groups
|
|
in order to remain compatible with hardening mechanisms based on large
|
|
PROT_NONE address space reservations.
|
|
|
|
Change-Id: Ibfb7164d764fcb9244055953bedc9a1c424cedcb
|
|
---
|
|
media/libmedia/MediaUtils.cpp | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
diff --git a/media/libmedia/MediaUtils.cpp b/media/libmedia/MediaUtils.cpp
|
|
index bcdc3bdcfe..de217c70bf 100644
|
|
--- a/media/libmedia/MediaUtils.cpp
|
|
+++ b/media/libmedia/MediaUtils.cpp
|
|
@@ -38,6 +38,14 @@ void limitProcessMemory(
|
|
return;
|
|
}
|
|
|
|
+#ifdef __LP64__
|
|
+ // This needs to be ported to a better mechanism like memory control groups
|
|
+ // in order to remain compatible with hardening mechanisms based on large
|
|
+ // PROT_NONE address space reservations.
|
|
+ ALOGW("Running with hardened malloc implementation, skip enforcing memory limitations.");
|
|
+ return;
|
|
+#endif
|
|
+
|
|
long pageSize = sysconf(_SC_PAGESIZE);
|
|
long numPages = sysconf(_SC_PHYS_PAGES);
|
|
size_t maxMem = SIZE_MAX;
|