Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base-old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Farzin Kazemzadeh
platform_frameworks_base-old
Commits
55bbd5d8
Commit
55bbd5d8
authored
2 years ago
by
Elliott Hughes
Committed by
Gerrit Code Review
2 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Remove the workaround for old vendor blobs."
parents
943c640d
0db31323
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/jni/com_android_internal_os_ZygoteInit.cpp
+0
-30
0 additions, 30 deletions
core/jni/com_android_internal_os_ZygoteInit.cpp
with
0 additions
and
30 deletions
core/jni/com_android_internal_os_ZygoteInit.cpp
+
0
−
30
View file @
55bbd5d8
...
...
@@ -23,43 +23,13 @@
namespace
{
// Shadow call stack (SCS) is a security mitigation that uses a separate stack
// (the SCS) for return addresses. In versions of Android newer than P, the
// compiler cooperates with the system to ensure that the SCS address is always
// stored in register x18, as long as the app was compiled with a new enough
// compiler and does not use features that rely on SP-HALs (this restriction is
// because the SP-HALs might not preserve x18 due to potentially having been
// compiled with an old compiler as a consequence of Treble; it generally means
// that the app must be a system app without a UI). This struct is used to
// temporarily store the address on the stack while preloading the SP-HALs, so
// that such apps can use the same zygote as everything else.
struct
ScopedSCSExit
{
#ifdef __aarch64__
void
*
scs
;
ScopedSCSExit
()
{
__asm__
__volatile__
(
"str x18, [%0]"
::
"r"
(
&
scs
));
}
~
ScopedSCSExit
()
{
__asm__
__volatile__
(
"ldr x18, [%0]; str xzr, [%0]"
::
"r"
(
&
scs
));
}
#else
// Silence unused variable warnings in non-SCS builds.
ScopedSCSExit
()
{}
~
ScopedSCSExit
()
{}
#endif
};
void
android_internal_os_ZygoteInit_nativePreloadAppProcessHALs
(
JNIEnv
*
env
,
jclass
)
{
ScopedSCSExit
x
;
android
::
GraphicBufferMapper
::
preloadHal
();
// Add preloading here for other HALs that are (a) always passthrough, and
// (b) loaded by most app processes.
}
void
android_internal_os_ZygoteInit_nativePreloadGraphicsDriver
(
JNIEnv
*
env
,
jclass
)
{
ScopedSCSExit
x
;
zygote_preload_graphics
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment