summaryrefslogtreecommitdiffstats
path: root/cmds/app_process
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2013-03-14 13:23:52 -0700
committerNick Kralevich <nnk@google.com>2013-03-14 15:21:12 -0700
commit8a0a929422682ba3eb6a205dc6c0638e68b909de (patch)
tree2d97cde26c7050f159c9f20a3267ed1243783250 /cmds/app_process
parent733329a2745ce703029b40afaa5dd78c7a5b620c (diff)
downloadframeworks_base-8a0a929422682ba3eb6a205dc6c0638e68b909de.zip
frameworks_base-8a0a929422682ba3eb6a205dc6c0638e68b909de.tar.gz
frameworks_base-8a0a929422682ba3eb6a205dc6c0638e68b909de.tar.bz2
Respawn app_main if ADDR_COMPAT_LAYOUT is not set
Bug: 8358800 Change-Id: Id81aa26d74dfd16a49f0ee5926ea2cdb3c2106d8
Diffstat (limited to 'cmds/app_process')
-rw-r--r--cmds/app_process/app_main.cpp23
1 files changed, 22 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp
index 6fe358c..de7931d 100644
--- a/cmds/app_process/app_main.cpp
+++ b/cmds/app_process/app_main.cpp
@@ -13,6 +13,7 @@
#include <cutils/process_name.h>
#include <cutils/memory.h>
#include <android_runtime/AndroidRuntime.h>
+#include <sys/personality.h>
#include <stdio.h>
#include <unistd.h>
@@ -128,8 +129,28 @@ static void setArgv0(const char *argv0, const char *newArgv0)
strlcpy(const_cast<char *>(argv0), newArgv0, strlen(argv0));
}
-int main(int argc, const char* const argv[])
+int main(int argc, char* const argv[])
{
+#ifdef __arm__
+ /*
+ * b/7188322 - Temporarily revert to the compat memory layout
+ * to avoid breaking third party apps.
+ *
+ * THIS WILL GO AWAY IN A FUTURE ANDROID RELEASE.
+ *
+ * http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=7dbaa466
+ * changes the kernel mapping from bottom up to top-down.
+ * This breaks some programs which improperly embed
+ * an out of date copy of Android's linker.
+ */
+ int current = personality(0xFFFFFFFF);
+ if ((current & ADDR_COMPAT_LAYOUT) == 0) {
+ personality(current | ADDR_COMPAT_LAYOUT);
+ execv("/system/bin/app_process", argv);
+ return -1;
+ }
+#endif
+
// These are global variables in ProcessState.cpp
mArgC = argc;
mArgV = argv;