blob: 2017f468d973564f1f45c477fd9550be396b74fb [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Alec Mourie7d1d4a2019-02-05 01:13:46 +000017//#define LOG_NDEBUG 0
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080018#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19
Mathias Agopian921e6ac2012-07-23 23:11:29 -070020#include <sys/types.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021#include <errno.h>
Keun young Park63f165f2012-08-31 10:53:36 -070022#include <dlfcn.h>
Dominik Laskowski83b88212018-12-11 13:34:06 -080023
24#include <algorithm>
25#include <cinttypes>
26#include <cmath>
27#include <cstdint>
28#include <functional>
29#include <mutex>
Dan Stoza2b6d38e2017-06-01 16:40:30 -070030#include <optional>
Dominik Laskowskic2867142019-01-21 11:33:38 -080031#include <unordered_map>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070032
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033#include <cutils/properties.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070034#include <log/log.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080035
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070036#include <binder/IPCThreadState.h>
37#include <binder/IServiceManager.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070038#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070039
Lloyd Pique70d91362018-10-18 16:02:55 -070040#include <compositionengine/CompositionEngine.h>
Lloyd Pique32cbe282018-10-19 13:09:22 -070041#include <compositionengine/Display.h>
Lloyd Pique3d0c02e2018-10-19 18:38:12 -070042#include <compositionengine/DisplayColorProfile.h>
Lloyd Piquecc01a452018-12-04 17:24:00 -080043#include <compositionengine/Layer.h>
44#include <compositionengine/OutputLayer.h>
Lloyd Pique31cb2942018-10-19 17:23:03 -070045#include <compositionengine/RenderSurface.h>
Lloyd Pique0b785d82018-12-04 17:25:27 -080046#include <compositionengine/impl/LayerCompositionState.h>
Lloyd Pique32cbe282018-10-19 13:09:22 -070047#include <compositionengine/impl/OutputCompositionState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080048#include <compositionengine/impl/OutputLayerCompositionState.h>
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080049#include <dvr/vr_flinger.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070050#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070051#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070052#include <gui/IDisplayEventConnection.h>
Alec Mouri0a9c7b82018-11-16 13:05:25 -080053#include <gui/IProducerListener.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080054#include <gui/LayerDebugInfo.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080055#include <gui/Surface.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070056#include <input/IInputFlinger.h>
Peiyong Lincbc184f2018-08-22 13:24:10 -070057#include <renderengine/RenderEngine.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070058#include <ui/ColorSpace.h>
59#include <ui/DebugUtils.h>
60#include <ui/DisplayInfo.h>
61#include <ui/DisplayStatInfo.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070062#include <ui/GraphicBufferAllocator.h>
63#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070064#include <ui/UiConfig.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065#include <utils/StopWatch.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070066#include <utils/String16.h>
67#include <utils/String8.h>
Yusuke Sato0a688f52015-07-30 23:05:39 -070068#include <utils/Timers.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080069#include <utils/Trace.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070070#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071
Mathias Agopian921e6ac2012-07-23 23:11:29 -070072#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070073#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080074
Robert Carr578038f2018-03-09 12:25:24 -080075#include "BufferLayer.h"
Marissa Wallfd668622018-05-10 10:21:13 -070076#include "BufferQueueLayer.h"
Marissa Wall61c58622018-07-18 10:12:20 -070077#include "BufferStateLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020078#include "Client.h"
Robert Carr578038f2018-03-09 12:25:24 -080079#include "ColorLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020080#include "Colorizer.h"
Robert Carr578038f2018-03-09 12:25:24 -080081#include "ContainerLayer.h"
Robert Carr578038f2018-03-09 12:25:24 -080082#include "DisplayDevice.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083#include "Layer.h"
Robert Carr1f0a16a2016-10-24 16:27:39 -070084#include "LayerVector.h"
Robert Carr1db73f62016-12-21 12:58:51 -080085#include "MonitoredProducer.h"
Lloyd Pique22098362018-09-13 11:46:49 -070086#include "NativeWindowSurface.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -070087#include "StartPropertySetThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080088#include "SurfaceFlinger.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -070089#include "SurfaceInterceptor.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090
Steven Thomasb02664d2017-07-26 18:48:28 -070091#include "DisplayHardware/ComposerHal.h"
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070092#include "DisplayHardware/DisplayIdentification.h"
Mathias Agopiana4912602012-07-12 14:25:33 -070093#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070094#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070095#include "DisplayHardware/VirtualDisplaySurface.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070096#include "Effects/Daltonizer.h"
Ana Krulecfefcb582018-08-07 14:22:37 -070097#include "Scheduler/DispSync.h"
Ana Krulec241cf832018-08-10 15:03:23 -070098#include "Scheduler/DispSyncSource.h"
Ana Krulecfefcb582018-08-07 14:22:37 -070099#include "Scheduler/EventControlThread.h"
100#include "Scheduler/EventThread.h"
Ana Krulec47454452018-08-14 11:04:14 -0700101#include "Scheduler/InjectVSyncSource.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -0700102#include "Scheduler/MessageQueue.h"
Ana Krulec98b5b242018-08-10 15:03:23 -0700103#include "Scheduler/Scheduler.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -0800104#include "TimeStats/TimeStats.h"
Ana Krulecfefcb582018-08-07 14:22:37 -0700105
Mathias Agopianff2ed702013-09-01 21:36:12 -0700106#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -0700107
David Sodman7e4ae112018-02-09 15:02:28 -0800108#include "android-base/stringprintf.h"
109
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900110#include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h>
Iris Chang7501ed62018-04-30 14:45:42 +0800111#include <android/hardware/configstore/1.1/ISurfaceFlingerConfigs.h>
112#include <android/hardware/configstore/1.1/types.h>
Jaesoo Lee43518572017-01-23 19:03:16 +0900113#include <configstore/Utils.h>
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900114
chaviw1d044282017-09-27 12:19:28 -0700115#include <layerproto/LayerProtoParser.h>
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900116#include "SurfaceFlingerProperties.h"
chaviw1d044282017-09-27 12:19:28 -0700117
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800118namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700119
Jaesoo Lee43518572017-01-23 19:03:16 +0900120using namespace android::hardware::configstore;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900121using namespace android::hardware::configstore::V1_0;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900122using namespace android::sysprop;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -0800123
Yiwei Zhang5434a782018-12-05 18:06:32 -0800124using base::StringAppendF;
Peiyong Lin9f034472018-03-28 15:29:00 -0700125using ui::ColorMode;
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700126using ui::Dataspace;
Daniel Solomon42d04562019-01-20 21:03:19 -0800127using ui::DisplayPrimaries;
Peiyong Lin62665892018-04-16 11:07:44 -0700128using ui::Hdr;
Peiyong Lin0e7a7912018-04-05 14:36:36 -0700129using ui::RenderIntent;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900130
Dominik Laskowskiccf37d72019-02-01 16:47:58 -0800131using RefreshRateType = scheduler::RefreshRateConfigs::RefreshRateType;
132
Steven Thomasb02664d2017-07-26 18:48:28 -0700133namespace {
Peiyong Linfca547f2018-07-09 13:03:33 -0700134
135#pragma clang diagnostic push
136#pragma clang diagnostic error "-Wswitch-enum"
137
138bool isWideColorMode(const ColorMode colorMode) {
139 switch (colorMode) {
140 case ColorMode::DISPLAY_P3:
141 case ColorMode::ADOBE_RGB:
142 case ColorMode::DCI_P3:
143 case ColorMode::BT2020:
Valerie Hau9758ae02018-10-09 16:05:09 -0700144 case ColorMode::DISPLAY_BT2020:
Peiyong Linfca547f2018-07-09 13:03:33 -0700145 case ColorMode::BT2100_PQ:
146 case ColorMode::BT2100_HLG:
147 return true;
148 case ColorMode::NATIVE:
149 case ColorMode::STANDARD_BT601_625:
150 case ColorMode::STANDARD_BT601_625_UNADJUSTED:
151 case ColorMode::STANDARD_BT601_525:
152 case ColorMode::STANDARD_BT601_525_UNADJUSTED:
153 case ColorMode::STANDARD_BT709:
154 case ColorMode::SRGB:
155 return false;
156 }
157 return false;
158}
159
Chia-I Wuc80dcbb2018-08-24 15:34:02 -0700160ui::Transform::orientation_flags fromSurfaceComposerRotation(ISurfaceComposer::Rotation rotation) {
161 switch (rotation) {
162 case ISurfaceComposer::eRotateNone:
163 return ui::Transform::ROT_0;
164 case ISurfaceComposer::eRotate90:
165 return ui::Transform::ROT_90;
166 case ISurfaceComposer::eRotate180:
167 return ui::Transform::ROT_180;
168 case ISurfaceComposer::eRotate270:
169 return ui::Transform::ROT_270;
170 }
171 ALOGE("Invalid rotation passed to captureScreen(): %d\n", rotation);
172 return ui::Transform::ROT_0;
173}
174
Peiyong Linfca547f2018-07-09 13:03:33 -0700175#pragma clang diagnostic pop
176
Steven Thomasb02664d2017-07-26 18:48:28 -0700177class ConditionalLock {
178public:
179 ConditionalLock(Mutex& mutex, bool lock) : mMutex(mutex), mLocked(lock) {
180 if (lock) {
181 mMutex.lock();
182 }
183 }
184 ~ConditionalLock() { if (mLocked) mMutex.unlock(); }
185private:
186 Mutex& mMutex;
187 bool mLocked;
188};
Peiyong Linfca547f2018-07-09 13:03:33 -0700189
Peiyong Lin9d846a52018-11-05 13:18:20 -0800190// Currently we only support V0_SRGB and DISPLAY_P3 as composition preference.
191bool validateCompositionDataspace(Dataspace dataspace) {
192 return dataspace == Dataspace::V0_SRGB || dataspace == Dataspace::DISPLAY_P3;
193}
194
Steven Thomasb02664d2017-07-26 18:48:28 -0700195} // namespace anonymous
196
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800197// ---------------------------------------------------------------------------
198
Mathias Agopian99b49842011-06-27 16:05:52 -0700199const String16 sHardwareTest("android.permission.HARDWARE_TEST");
200const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
201const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
202const String16 sDump("android.permission.DUMP");
203
204// ---------------------------------------------------------------------------
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700205int64_t SurfaceFlinger::dispSyncPresentTimeOffset;
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700206bool SurfaceFlinger::useHwcForRgbToYuv;
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800207uint64_t SurfaceFlinger::maxVirtualDisplaySize;
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800208bool SurfaceFlinger::hasSyncFramework;
Steven Thomas050b2c82017-03-06 11:45:16 -0800209bool SurfaceFlinger::useVrFlinger;
Fabien Sanglard1971b632017-03-10 14:50:03 -0800210int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600211bool SurfaceFlinger::hasWideColorDisplay;
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700212int SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientationDefault;
Peiyong Lin13effd12018-07-24 17:01:47 -0700213bool SurfaceFlinger::useColorManagement;
Peiyong Linb3839ad2018-09-05 15:37:19 -0700214bool SurfaceFlinger::useContextPriority;
Peiyong Linc6780972018-10-28 15:24:08 -0700215Dataspace SurfaceFlinger::defaultCompositionDataspace = Dataspace::V0_SRGB;
216ui::PixelFormat SurfaceFlinger::defaultCompositionPixelFormat = ui::PixelFormat::RGBA_8888;
217Dataspace SurfaceFlinger::wideColorGamutCompositionDataspace = Dataspace::V0_SRGB;
218ui::PixelFormat SurfaceFlinger::wideColorGamutCompositionPixelFormat = ui::PixelFormat::RGBA_8888;
Mathias Agopian99b49842011-06-27 16:05:52 -0700219
Kalle Raitaa099a242017-01-11 11:17:29 -0800220std::string getHwcServiceName() {
221 char value[PROPERTY_VALUE_MAX] = {};
222 property_get("debug.sf.hwc_service_name", value, "default");
223 ALOGI("Using HWComposer service: '%s'", value);
224 return std::string(value);
225}
226
227bool useTrebleTestingOverride() {
228 char value[PROPERTY_VALUE_MAX] = {};
229 property_get("debug.sf.treble_testing_override", value, "false");
230 ALOGI("Treble testing override: '%s'", value);
231 return std::string(value) == "true";
232}
233
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800234std::string decodeDisplayColorSetting(DisplayColorSetting displayColorSetting) {
235 switch(displayColorSetting) {
236 case DisplayColorSetting::MANAGED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700237 return std::string("Managed");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800238 case DisplayColorSetting::UNMANAGED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700239 return std::string("Unmanaged");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800240 case DisplayColorSetting::ENHANCED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700241 return std::string("Enhanced");
242 default:
243 return std::string("Unknown ") +
244 std::to_string(static_cast<int>(displayColorSetting));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800245 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800246}
247
David Sodmanbc815282017-11-05 18:57:52 -0800248SurfaceFlingerBE::SurfaceFlingerBE()
249 : mHwcServiceName(getHwcServiceName()),
David Sodman4a36e932017-11-07 14:29:47 -0800250 mFrameBuckets(),
251 mTotalTime(0),
252 mLastSwapTime(0),
David Sodmanbc815282017-11-05 18:57:52 -0800253 mComposerSequenceId(0) {
254}
255
Lloyd Pique90c115d2018-09-18 21:39:42 -0700256SurfaceFlinger::SurfaceFlinger(surfaceflinger::Factory& factory,
257 SurfaceFlinger::SkipInitializationTag)
Lloyd Pique12eb4232018-01-17 11:54:43 -0800258 : BnSurfaceComposer(),
Lloyd Pique90c115d2018-09-18 21:39:42 -0700259 mFactory(factory),
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700260 mTransactionPending(false),
261 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700262 mLayersRemoved(false),
Robert Carr1f0a16a2016-10-24 16:27:39 -0700263 mLayersAdded(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800264 mBootTime(systemTime()),
Ana Krulec757f63a2019-01-25 10:46:18 -0800265 mPhaseOffsets{getFactory().createPhaseOffsets()},
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800266 mVisibleRegionsDirty(false),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800267 mGeometryInvalid(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800268 mAnimCompositionPending(false),
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800269 mBootStage(BootStage::BOOTLOADER),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800270 mDebugRegion(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -0700271 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700272 mDebugDisableTransformHint(0),
Peiyong Lin8f28a1d2019-02-07 17:25:12 -0800273 mDebugEnableProtectedContent(false),
Mathias Agopian9795c422009-08-26 16:36:26 -0700274 mDebugInTransaction(0),
275 mLastTransactionTime(0),
Dan Stozaee44edd2015-03-23 15:50:23 -0700276 mForceFullDamage(false),
Yiwei Zhang7e666a52018-11-15 13:33:42 -0800277 mTimeStats(factory.createTimeStats()),
David Sodman2b406362017-12-15 13:33:47 -0800278 mRefreshStartTime(0),
Dan Stozab90cf072015-03-05 11:05:59 -0800279 mHasPoweredOff(false),
Steven Thomas050b2c82017-03-06 11:45:16 -0800280 mNumLayers(0),
Steven Thomasb02664d2017-07-26 18:48:28 -0700281 mVrFlingerRequestsDisplay(false),
Lloyd Pique70d91362018-10-18 16:02:55 -0700282 mMainThreadId(std::this_thread::get_id()),
chaviw291d88a2019-02-14 10:33:58 -0800283 mCompositionEngine{getFactory().createCompositionEngine()} {
284 mSetInputWindowsListener = new SetInputWindowsListener(this);
285}
Lloyd Piqueac648ee2018-01-17 13:42:24 -0800286
Lloyd Pique90c115d2018-09-18 21:39:42 -0700287SurfaceFlinger::SurfaceFlinger(surfaceflinger::Factory& factory)
288 : SurfaceFlinger(factory, SkipInitialization) {
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800289 ALOGI("SurfaceFlinger is starting");
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800290
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900291 hasSyncFramework = running_without_sync_framework(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800292
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900293 dispSyncPresentTimeOffset = present_time_offset_from_vsync_ns(0);
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700294
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900295 useHwcForRgbToYuv = force_hwc_copy_for_virtual_displays(false);
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700296
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900297 maxVirtualDisplaySize = max_virtual_display_dimension(0);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800298
Steven Thomas050b2c82017-03-06 11:45:16 -0800299 // Vr flinger is only enabled on Daydream ready devices.
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900300 useVrFlinger = use_vr_flinger(false);
Steven Thomas050b2c82017-03-06 11:45:16 -0800301
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900302 maxFrameBufferAcquiredBuffers = max_frame_buffer_acquired_buffers(2);
Fabien Sanglard1971b632017-03-10 14:50:03 -0800303
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900304 hasWideColorDisplay = has_wide_color_display(false);
Peiyong Lin0256f722018-08-31 15:45:10 -0700305
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900306 useColorManagement = use_color_management(false);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600307
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900308 mDefaultCompositionDataspace =
309 static_cast<ui::Dataspace>(default_composition_dataspace(Dataspace::V0_SRGB));
310 mWideColorGamutCompositionDataspace =
311 static_cast<ui::Dataspace>(wcg_composition_dataspace(Dataspace::V0_SRGB));
312 defaultCompositionDataspace = mDefaultCompositionDataspace;
313 wideColorGamutCompositionDataspace = mWideColorGamutCompositionDataspace;
314 defaultCompositionPixelFormat = static_cast<ui::PixelFormat>(
315 default_composition_pixel_format(ui::PixelFormat::RGBA_8888));
316 wideColorGamutCompositionPixelFormat =
317 static_cast<ui::PixelFormat>(wcg_composition_pixel_format(ui::PixelFormat::RGBA_8888));
Peiyong Linb3839ad2018-09-05 15:37:19 -0700318
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900319 useContextPriority = use_context_priority(true);
Iris Chang7501ed62018-04-30 14:45:42 +0800320
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900321 auto tmpPrimaryDisplayOrientation = primary_display_orientation(
322 SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_0);
323 switch (tmpPrimaryDisplayOrientation) {
324 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_90:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700325 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation90;
Iris Chang7501ed62018-04-30 14:45:42 +0800326 break;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900327 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_180:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700328 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation180;
Iris Chang7501ed62018-04-30 14:45:42 +0800329 break;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900330 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_270:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700331 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation270;
Iris Chang7501ed62018-04-30 14:45:42 +0800332 break;
333 default:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700334 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientationDefault;
Iris Chang7501ed62018-04-30 14:45:42 +0800335 break;
336 }
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700337 ALOGV("Primary Display Orientation is set to %2d.", SurfaceFlinger::primaryDisplayOrientation);
Iris Chang7501ed62018-04-30 14:45:42 +0800338
Sundong Ahn85131bd2019-02-18 15:51:53 +0900339 mInternalDisplayPrimaries = sysprop::getDisplayNativePrimaries();
Daniel Solomon42d04562019-01-20 21:03:19 -0800340
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800341 // debugging stuff...
342 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700343
Mathias Agopianb4b17302013-03-20 18:36:41 -0700344 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700345 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700346
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800347 property_get("debug.sf.showupdates", value, "0");
348 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700349
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700350 ALOGI_IF(mDebugRegion, "showupdates enabled");
Orion Hodson34397da2019-02-04 09:36:10 +0000351
352 // DDMS debugging deprecated (b/120782499)
353 property_get("debug.sf.ddms", value, "0");
354 int debugDdms = atoi(value);
355 ALOGI_IF(debugDdms, "DDMS debugging not supported");
Dan Stozac5da2712016-07-20 15:38:12 -0700356
357 property_get("debug.sf.disable_backpressure", value, "0");
358 mPropagateBackpressure = !atoi(value);
359 ALOGI_IF(!mPropagateBackpressure, "Disabling backpressure propagation");
Dan Stoza8cf150a2016-08-02 10:27:31 -0700360
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800361 property_get("debug.sf.enable_hwc_vds", value, "0");
362 mUseHwcVirtualDisplays = atoi(value);
Chia-I Wu11d10612018-06-21 15:41:13 +0800363 ALOGI_IF(mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800364
Yiwei Zhangb770ed32018-12-17 17:44:28 -0800365 property_get("ro.sf.disable_triple_buffer", value, "0");
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800366 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800367 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700368
Yiwei Zhang243b3782018-05-15 17:40:04 -0700369 const size_t defaultListSize = MAX_LAYERS;
Dan Stoza0a0158c2018-03-16 13:38:54 -0700370 auto listSize = property_get_int32("debug.sf.max_igbp_list_size", int32_t(defaultListSize));
371 mMaxGraphicBufferProducerListSize = (listSize > 0) ? size_t(listSize) : defaultListSize;
372
Ana Krulecc2870422019-01-29 19:00:58 -0800373 property_get("debug.sf.use_90Hz", value, "0");
374 mUse90Hz = atoi(value);
Ady Abrahamc3e21312019-02-07 14:30:23 -0800375
Ana Krulecba13ab32019-02-20 14:14:12 -0800376 property_get("debug.sf.use_smart_90_for_video", value, "0");
377 mUseSmart90ForVideo = atoi(value);
378
Dan Stozaec460082018-12-17 15:35:09 -0800379 property_get("debug.sf.luma_sampling", value, "1");
380 mLumaSampling = atoi(value);
381
Ana Krulec757f63a2019-01-25 10:46:18 -0800382 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
383 mVsyncModulator.setPhaseOffsets(early, gl, late);
Dan Stoza84d619e2018-03-28 17:07:36 -0700384
Romain Guy11d63f42017-07-20 12:47:14 -0700385 // We should be reading 'persist.sys.sf.color_saturation' here
386 // but since /data may be encrypted, we need to wait until after vold
387 // comes online to attempt to read the property. The property is
388 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800389
390 if (useTrebleTestingOverride()) {
391 // Without the override SurfaceFlinger cannot connect to HIDL
392 // services that are not listed in the manifests. Considered
393 // deriving the setting from the set service name, but it
394 // would be brittle if the name that's not 'default' is used
395 // for production purposes later on.
396 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
397 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800398}
399
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800400void SurfaceFlinger::onFirstRef()
401{
Lloyd Pique3fcdef12018-01-22 17:14:00 -0800402 mEventQueue->init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800403}
404
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800405SurfaceFlinger::~SurfaceFlinger()
406{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800407}
408
Dan Stozac7014012014-02-14 15:03:43 -0800409void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800410{
411 // the window manager died on us. prepare its eulogy.
412
Andy McFadden13a082e2012-08-24 10:16:42 -0700413 // restore initial conditions (default device unblank, etc)
414 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800415
416 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700417 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800418}
419
Robert Carr1db73f62016-12-21 12:58:51 -0800420static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700421 status_t err = client->initCheck();
422 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800423 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800424 }
Robert Carr1db73f62016-12-21 12:58:51 -0800425 return nullptr;
426}
427
428sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
429 return initClient(new Client(this));
430}
431
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700432sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
433 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700434{
435 class DisplayToken : public BBinder {
436 sp<SurfaceFlinger> flinger;
437 virtual ~DisplayToken() {
438 // no more references, this display must be terminated
439 Mutex::Autolock _l(flinger->mStateLock);
440 flinger->mCurrentState.displays.removeItem(this);
441 flinger->setTransactionFlags(eDisplayTransactionNeeded);
442 }
443 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700444 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700445 : flinger(flinger) {
446 }
447 };
448
449 sp<BBinder> token = new DisplayToken(this);
450
451 Mutex::Autolock _l(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700452 // Display ID is assigned when virtual display is allocated by HWC.
453 DisplayDeviceState state;
454 state.isSecure = secure;
455 state.displayName = displayName;
456 mCurrentState.displays.add(token, state);
457 mInterceptor->saveDisplayCreation(state);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700458 return token;
459}
460
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700461void SurfaceFlinger::destroyDisplay(const sp<IBinder>& displayToken) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700462 Mutex::Autolock _l(mStateLock);
463
Dominik Laskowski075d3172018-05-24 15:50:06 -0700464 ssize_t index = mCurrentState.displays.indexOfKey(displayToken);
465 if (index < 0) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700466 ALOGE("destroyDisplay: Invalid display token %p", displayToken.get());
Jesse Hall6c913be2013-08-08 12:15:49 -0700467 return;
468 }
469
Dominik Laskowski075d3172018-05-24 15:50:06 -0700470 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
471 if (!state.isVirtual()) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700472 ALOGE("destroyDisplay called for non-virtual display");
473 return;
474 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700475 mInterceptor->saveDisplayDeletion(state.sequenceId);
476 mCurrentState.displays.removeItemsAt(index);
Jesse Hall6c913be2013-08-08 12:15:49 -0700477 setTransactionFlags(eDisplayTransactionNeeded);
478}
479
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800480std::vector<PhysicalDisplayId> SurfaceFlinger::getPhysicalDisplayIds() const {
481 Mutex::Autolock lock(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700482
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800483 const auto internalDisplayId = getInternalDisplayIdLocked();
484 if (!internalDisplayId) {
485 return {};
Dominik Laskowski075d3172018-05-24 15:50:06 -0700486 }
487
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800488 std::vector<PhysicalDisplayId> displayIds;
489 displayIds.reserve(mPhysicalDisplayTokens.size());
490 displayIds.push_back(internalDisplayId->value);
491
492 for (const auto& [id, token] : mPhysicalDisplayTokens) {
493 if (id != *internalDisplayId) {
494 displayIds.push_back(id.value);
495 }
Mathias Agopiane57f2922012-08-09 16:29:12 -0700496 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700497
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800498 return displayIds;
499}
500
501sp<IBinder> SurfaceFlinger::getPhysicalDisplayToken(PhysicalDisplayId displayId) const {
502 Mutex::Autolock lock(mStateLock);
503 return getPhysicalDisplayTokenLocked(DisplayId{displayId});
Mathias Agopiane57f2922012-08-09 16:29:12 -0700504}
505
Ady Abraham37965d42018-11-01 13:43:32 -0700506status_t SurfaceFlinger::getColorManagement(bool* outGetColorManagement) const {
507 if (!outGetColorManagement) {
508 return BAD_VALUE;
509 }
510 *outGetColorManagement = useColorManagement;
511 return NO_ERROR;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700512}
513
Lloyd Pique441d5042018-10-18 16:49:51 -0700514HWComposer& SurfaceFlinger::getHwComposer() const {
515 return mCompositionEngine->getHwComposer();
516}
517
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700518renderengine::RenderEngine& SurfaceFlinger::getRenderEngine() const {
519 return mCompositionEngine->getRenderEngine();
520}
521
Lloyd Pique70d91362018-10-18 16:02:55 -0700522compositionengine::CompositionEngine& SurfaceFlinger::getCompositionEngine() const {
523 return *mCompositionEngine.get();
524}
525
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800526void SurfaceFlinger::bootFinished()
527{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700528 if (mStartPropertySetThread->join() != NO_ERROR) {
529 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800530 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800531 const nsecs_t now = systemTime();
532 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000533 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700534
535 // wait patiently for the window manager death
536 const String16 name("window");
537 sp<IBinder> window(defaultServiceManager()->getService(name));
538 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700539 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700540 }
Robert Carr720e5062018-07-30 17:45:14 -0700541 sp<IBinder> input(defaultServiceManager()->getService(
542 String16("inputflinger")));
543 if (input == nullptr) {
544 ALOGE("Failed to link to input service");
545 } else {
546 mInputFlinger = interface_cast<IInputFlinger>(input);
547 }
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700548
Steven Thomas050b2c82017-03-06 11:45:16 -0800549 if (mVrFlinger) {
550 mVrFlinger->OnBootFinished();
551 }
552
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700553 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700554 // formerly we would just kill the process, but we now ask it to exit so it
555 // can choose where to stop the animation.
556 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700557
558 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
559 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
560 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700561
Ana Krulecbd6654b2019-02-15 15:18:15 -0800562 postMessageAsync(new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS {
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800563 readPersistentProperties();
564 mBootStage = BootStage::FINISHED;
Ana Krulecbd6654b2019-02-15 15:18:15 -0800565
566 // TODO(b/122905403): Once the display policy is completely integrated, this flag should go
567 // away and it should be controlled by flipping the switch in setting. The switch in
568 // settings should only be available to P19 devices, if they are opted into 90Hz fishfood.
569 // The boot must be complete before we can set the active config.
570
571 if (mUse90Hz) {
572 mPhaseOffsets->setRefreshRateType(
573 scheduler::RefreshRateConfigs::RefreshRateType::PERFORMANCE);
Ady Abraham447052e2019-02-13 16:07:27 -0800574 setRefreshRateTo(RefreshRateType::PERFORMANCE, ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800575 } else {
576 mPhaseOffsets->setRefreshRateType(
577 scheduler::RefreshRateConfigs::RefreshRateType::DEFAULT);
Ady Abraham447052e2019-02-13 16:07:27 -0800578 setRefreshRateTo(RefreshRateType::DEFAULT, ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800579 }
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800580 }));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800581}
582
Dan Stoza436ccf32018-06-21 12:10:12 -0700583uint32_t SurfaceFlinger::getNewTexture() {
584 {
585 std::lock_guard lock(mTexturePoolMutex);
586 if (!mTexturePool.empty()) {
587 uint32_t name = mTexturePool.back();
588 mTexturePool.pop_back();
589 ATRACE_INT("TexturePoolSize", mTexturePool.size());
590 return name;
591 }
592
593 // The pool was too small, so increase it for the future
594 ++mTexturePoolSize;
595 }
596
597 // The pool was empty, so we need to get a new texture name directly using a
598 // blocking call to the main thread
599 uint32_t name = 0;
600 postMessageSync(new LambdaMessage([&]() { getRenderEngine().genTextures(1, &name); }));
601 return name;
602}
603
Mathias Agopian3f844832013-08-07 21:24:32 -0700604void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Dominik Laskowski8c001672018-05-30 16:52:06 -0700605 postMessageAsync(new LambdaMessage([=] { getRenderEngine().deleteTextures(1, &texture); }));
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700606}
607
Wei Wangf9b05ee2017-07-19 20:59:39 -0700608// Do not call property_set on main thread which will be blocked by init
609// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700610void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700611 ALOGI( "SurfaceFlinger's main thread ready to run. "
612 "Initializing graphics H/W...");
613
Ana Krulec757f63a2019-01-25 10:46:18 -0800614 ALOGI("Phase offset NS: %" PRId64 "", mPhaseOffsets->getCurrentAppOffset());
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900615
Steven Thomasb02664d2017-07-26 18:48:28 -0700616 Mutex::Autolock _l(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -0700617 // start the EventThread
Ana Krulecc2870422019-01-29 19:00:58 -0800618 mScheduler =
619 getFactory().createScheduler([this](bool enabled) { setPrimaryVsyncEnabled(enabled); });
620 auto resyncCallback =
621 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800622
Ana Krulecc2870422019-01-29 19:00:58 -0800623 mAppConnectionHandle =
624 mScheduler->createConnection("app", mPhaseOffsets->getCurrentAppOffset(),
625 resyncCallback,
626 impl::EventThread::InterceptVSyncsCallback());
627 mSfConnectionHandle = mScheduler->createConnection("sf", mPhaseOffsets->getCurrentSfOffset(),
628 resyncCallback, [this](nsecs_t timestamp) {
629 mInterceptor->saveVSyncEvent(timestamp);
630 });
631
632 mEventQueue->setEventConnection(mScheduler->getEventConnection(mSfConnectionHandle));
633 mVsyncModulator.setSchedulerAndHandles(mScheduler.get(), mAppConnectionHandle.get(),
634 mSfConnectionHandle.get());
635
Steven Thomasb02664d2017-07-26 18:48:28 -0700636 // Get a RenderEngine for the given display / config (can't fail)
Peiyong Lin13effd12018-07-24 17:01:47 -0700637 int32_t renderEngineFeature = 0;
Peiyong Lin833074a2018-08-28 11:53:54 -0700638 renderEngineFeature |= (useColorManagement ?
639 renderengine::RenderEngine::USE_COLOR_MANAGEMENT : 0);
Peiyong Linb3839ad2018-09-05 15:37:19 -0700640 renderEngineFeature |= (useContextPriority ?
641 renderengine::RenderEngine::USE_HIGH_PRIORITY_CONTEXT : 0);
Peiyong Lin0256f722018-08-31 15:45:10 -0700642
643 // TODO(b/77156734): We need to stop casting and use HAL types when possible.
Alec Mourida4cf3b2019-02-12 15:33:01 -0800644 // Sending maxFrameBufferAcquiredBuffers as the cache size is tightly tuned to single-display.
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700645 mCompositionEngine->setRenderEngine(
Peiyong Linc6780972018-10-28 15:24:08 -0700646 renderengine::RenderEngine::create(static_cast<int32_t>(defaultCompositionPixelFormat),
Alec Mourida4cf3b2019-02-12 15:33:01 -0800647 renderEngineFeature, maxFrameBufferAcquiredBuffers));
Steven Thomasb02664d2017-07-26 18:48:28 -0700648
649 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
650 "Starting with vr flinger active is not currently supported.");
Lloyd Pique441d5042018-10-18 16:49:51 -0700651 mCompositionEngine->setHwComposer(getFactory().createHWComposer(getBE().mHwcServiceName));
652 mCompositionEngine->getHwComposer().registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800653 // Process any initial hotplug and resulting display changes.
654 processDisplayHotplugEventsLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700655 const auto display = getDefaultDisplayDeviceLocked();
656 LOG_ALWAYS_FATAL_IF(!display, "Missing internal display after registering composer callback.");
Dominik Laskowski075d3172018-05-24 15:50:06 -0700657 LOG_ALWAYS_FATAL_IF(!getHwComposer().isConnected(*display->getId()),
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700658 "Internal display is disconnected.");
Jesse Hall692c7232012-11-08 15:41:56 -0800659
Steven Thomas050b2c82017-03-06 11:45:16 -0800660 if (useVrFlinger) {
Dominik Laskowski8c001672018-05-30 16:52:06 -0700661 auto vrFlingerRequestDisplayCallback = [this](bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700662 // This callback is called from the vr flinger dispatch thread. We
663 // need to call signalTransaction(), which requires holding
664 // mStateLock when we're not on the main thread. Acquiring
665 // mStateLock from the vr flinger dispatch thread might trigger a
666 // deadlock in surface flinger (see b/66916578), so post a message
667 // to be handled on the main thread instead.
Dominik Laskowski8c001672018-05-30 16:52:06 -0700668 postMessageAsync(new LambdaMessage([=] {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700669 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
670 mVrFlingerRequestsDisplay = requestDisplay;
671 signalTransaction();
Dominik Laskowski8c001672018-05-30 16:52:06 -0700672 }));
Steven Thomas050b2c82017-03-06 11:45:16 -0800673 };
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700674 mVrFlinger = dvr::VrFlinger::Create(getHwComposer().getComposer(),
675 getHwComposer()
Dominik Laskowski075d3172018-05-24 15:50:06 -0700676 .fromPhysicalDisplayId(*display->getId())
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700677 .value_or(0),
678 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800679 if (!mVrFlinger) {
680 ALOGE("Failed to start vrflinger");
681 }
682 }
683
Mathias Agopian92a979a2012-08-02 18:32:23 -0700684 // initialize our drawing state
685 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700686
Andy McFadden13a082e2012-08-24 10:16:42 -0700687 // set initial conditions (e.g. unblank default device)
688 initializeDisplays();
689
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700690 getRenderEngine().primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700691
Wei Wangf9b05ee2017-07-19 20:59:39 -0700692 // Inform native graphics APIs whether the present timestamp is supported:
Lloyd Pique90c115d2018-09-18 21:39:42 -0700693
694 const bool presentFenceReliable =
695 !getHwComposer().hasCapability(HWC2::Capability::PresentFenceIsNotReliable);
696 mStartPropertySetThread = getFactory().createStartPropertySetThread(presentFenceReliable);
Wei Wangf9b05ee2017-07-19 20:59:39 -0700697
698 if (mStartPropertySetThread->Start() != NO_ERROR) {
699 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800700 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800701
Kevin DuBois36233132019-02-19 14:08:55 -0800702 if (mUse90Hz) {
703 mScheduler->setExpiredIdleTimerCallback([this] {
704 Mutex::Autolock lock(mStateLock);
Ady Abraham447052e2019-02-13 16:07:27 -0800705 setRefreshRateTo(RefreshRateType::DEFAULT, ConfigEvent::None);
Kevin DuBois36233132019-02-19 14:08:55 -0800706 });
707 mScheduler->setResetIdleTimerCallback([this] {
708 Mutex::Autolock lock(mStateLock);
Ady Abraham447052e2019-02-13 16:07:27 -0800709 setRefreshRateTo(RefreshRateType::PERFORMANCE, ConfigEvent::None);
Kevin DuBois36233132019-02-19 14:08:55 -0800710 });
711 }
Ady Abraham1902d072019-03-01 17:18:59 -0800712 mRefreshRateConfigs[*display->getId()] = std::make_shared<scheduler::RefreshRateConfigs>(
713 getHwComposer().getConfigs(*display->getId()));
714 mRefreshRateStats =
715 std::make_unique<scheduler::RefreshRateStats>(mRefreshRateConfigs[*display->getId()],
716 mTimeStats);
Ana Krulec7d1d6832018-12-27 11:10:09 -0800717
Dan Stoza9e56aa02015-11-02 13:00:03 -0800718 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700719}
720
Romain Guy11d63f42017-07-20 12:47:14 -0700721void SurfaceFlinger::readPersistentProperties() {
Chia-I Wu28f320b2018-05-03 11:02:56 -0700722 Mutex::Autolock _l(mStateLock);
723
Romain Guy11d63f42017-07-20 12:47:14 -0700724 char value[PROPERTY_VALUE_MAX];
725
726 property_get("persist.sys.sf.color_saturation", value, "1.0");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800727 mGlobalSaturationFactor = atof(value);
Chia-I Wu28f320b2018-05-03 11:02:56 -0700728 updateColorMatrixLocked();
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800729 ALOGV("Saturation is set to %.2f", mGlobalSaturationFactor);
Romain Guy54f154a2017-10-24 21:40:32 +0100730
731 property_get("persist.sys.sf.native_mode", value, "0");
Chia-I Wu0d711262018-05-21 15:19:35 -0700732 mDisplayColorSetting = static_cast<DisplayColorSetting>(atoi(value));
Peiyong Lina3ea5592019-02-10 14:45:00 -0800733
734 property_get("persist.sys.sf.color_mode", value, "0");
735 mForceColorMode = static_cast<ColorMode>(atoi(value));
Romain Guy11d63f42017-07-20 12:47:14 -0700736}
737
Mathias Agopiana67e4182012-06-19 17:26:12 -0700738void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800739 // Start boot animation service by setting a property mailbox
740 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700741 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800742 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700743 if (mStartPropertySetThread->join() != NO_ERROR) {
744 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800745 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700746}
747
Mathias Agopian875d8e12013-06-07 15:35:48 -0700748size_t SurfaceFlinger::getMaxTextureSize() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700749 return getRenderEngine().getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700750}
751
Mathias Agopian875d8e12013-06-07 15:35:48 -0700752size_t SurfaceFlinger::getMaxViewportDims() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700753 return getRenderEngine().getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700754}
755
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800756// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800757
Jamie Gennis582270d2011-08-17 18:19:00 -0700758bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800759 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800760 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800761 return authenticateSurfaceTextureLocked(bufferProducer);
762}
763
764bool SurfaceFlinger::authenticateSurfaceTextureLocked(
765 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800766 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Dan Stoza101d8dc2018-02-27 15:42:25 -0800767 return mGraphicBufferProducerList.count(surfaceTextureBinder.get()) > 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800768}
769
Brian Anderson6b376712017-04-04 10:51:39 -0700770status_t SurfaceFlinger::getSupportedFrameTimestamps(
771 std::vector<FrameEvent>* outSupported) const {
772 *outSupported = {
773 FrameEvent::REQUESTED_PRESENT,
774 FrameEvent::ACQUIRE,
775 FrameEvent::LATCH,
776 FrameEvent::FIRST_REFRESH_START,
777 FrameEvent::LAST_REFRESH_START,
778 FrameEvent::GPU_COMPOSITION_DONE,
779 FrameEvent::DEQUEUE_READY,
780 FrameEvent::RELEASE,
781 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700782 ConditionalLock _l(mStateLock,
783 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700784 if (!getHwComposer().hasCapability(
785 HWC2::Capability::PresentFenceIsNotReliable)) {
786 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
787 }
788 return NO_ERROR;
789}
790
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800791status_t SurfaceFlinger::getDisplayConfigsLocked(const sp<IBinder>& displayToken,
792 Vector<DisplayInfo>* configs) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700793 if (!displayToken || !configs) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700794 return BAD_VALUE;
795 }
796
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800797 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700798 if (!displayId) {
799 return NAME_NOT_FOUND;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700800 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700801
Mathias Agopian8b736f12012-08-13 17:54:26 -0700802 // TODO: Not sure if display density should handled by SF any longer
803 class Density {
Hernan Liatis57568932018-08-16 17:07:08 -0700804 static float getDensityFromProperty(char const* propName) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700805 char property[PROPERTY_VALUE_MAX];
Hernan Liatis57568932018-08-16 17:07:08 -0700806 float density = 0.0f;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800807 if (property_get(propName, property, nullptr) > 0) {
Hernan Liatis57568932018-08-16 17:07:08 -0700808 density = strtof(property, nullptr);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700809 }
810 return density;
811 }
812 public:
Hernan Liatis57568932018-08-16 17:07:08 -0700813 static float getEmuDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700814 return getDensityFromProperty("qemu.sf.lcd_density"); }
Hernan Liatis57568932018-08-16 17:07:08 -0700815 static float getBuildDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700816 return getDensityFromProperty("ro.sf.lcd_density"); }
817 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700818
Dan Stoza7f7da322014-05-02 15:26:25 -0700819 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700820
Dominik Laskowski075d3172018-05-24 15:50:06 -0700821 for (const auto& hwConfig : getHwComposer().getConfigs(*displayId)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700822 DisplayInfo info = DisplayInfo();
823
Dan Stoza9e56aa02015-11-02 13:00:03 -0800824 float xdpi = hwConfig->getDpiX();
825 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700826
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700827 info.w = hwConfig->getWidth();
828 info.h = hwConfig->getHeight();
829 // Default display viewport to display width and height
830 info.viewportW = info.w;
831 info.viewportH = info.h;
832
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800833 if (displayId == getInternalDisplayIdLocked()) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700834 // The density of the device is provided by a build property
835 float density = Density::getBuildDensity() / 160.0f;
836 if (density == 0) {
837 // the build doesn't provide a density -- this is wrong!
838 // use xdpi instead
839 ALOGE("ro.sf.lcd_density must be defined as a build property");
840 density = xdpi / 160.0f;
841 }
842 if (Density::getEmuDensity()) {
843 // if "qemu.sf.lcd_density" is specified, it overrides everything
844 xdpi = ydpi = density = Density::getEmuDensity();
845 density /= 160.0f;
846 }
847 info.density = density;
848
849 // TODO: this needs to go away (currently needed only by webkit)
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700850 const auto display = getDefaultDisplayDeviceLocked();
851 info.orientation = display ? display->getOrientation() : 0;
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700852
853 // This is for screenrecord
854 const Rect viewport = display->getViewport();
855 if (viewport.isValid()) {
856 info.viewportW = uint32_t(viewport.getWidth());
857 info.viewportH = uint32_t(viewport.getHeight());
858 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700859 } else {
860 // TODO: where should this value come from?
861 static const int TV_DENSITY = 213;
862 info.density = TV_DENSITY / 160.0f;
863 info.orientation = 0;
864 }
865
Dan Stoza7f7da322014-05-02 15:26:25 -0700866 info.xdpi = xdpi;
867 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800868 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Ana Krulec757f63a2019-01-25 10:46:18 -0800869 info.appVsyncOffset = mPhaseOffsets->getCurrentAppOffset();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800870
Andy McFadden91b2ca82014-06-13 14:04:23 -0700871 // This is how far in advance a buffer must be queued for
872 // presentation at a given time. If you want a buffer to appear
873 // on the screen at time N, you must submit the buffer before
874 // (N - presentationDeadline).
875 //
876 // Normally it's one full refresh period (to give SF a chance to
877 // latch the buffer), but this can be reduced by configuring a
878 // DispSync offset. Any additional delays introduced by the hardware
879 // composer or panel must be accounted for here.
880 //
881 // We add an additional 1ms to allow for processing time and
882 // differences between the ideal and actual refresh rate.
Ana Krulec757f63a2019-01-25 10:46:18 -0800883 info.presentationDeadline =
884 hwConfig->getVsyncPeriod() - mPhaseOffsets->getCurrentSfOffset() + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700885
886 // All non-virtual displays are currently considered secure.
887 info.secure = true;
888
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800889 if (displayId == getInternalDisplayIdLocked() &&
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700890 primaryDisplayOrientation & DisplayState::eOrientationSwapMask) {
Iris Chang7501ed62018-04-30 14:45:42 +0800891 std::swap(info.w, info.h);
892 }
893
Michael Wright28f24d02016-07-12 13:30:53 -0700894 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700895 }
896
Dan Stoza7f7da322014-05-02 15:26:25 -0700897 return NO_ERROR;
898}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700899
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700900status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>&, DisplayStatInfo* stats) {
901 if (!stats) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700902 return BAD_VALUE;
903 }
904
Ana Krulecc2870422019-01-29 19:00:58 -0800905 mScheduler->getDisplayStatInfo(stats);
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700906 return NO_ERROR;
907}
908
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700909int SurfaceFlinger::getActiveConfig(const sp<IBinder>& displayToken) {
910 const auto display = getDisplayDevice(displayToken);
911 if (!display) {
912 ALOGE("getActiveConfig: Invalid display token %p", displayToken.get());
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800913 return BAD_VALUE;
914 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700915
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700916 return display->getActiveConfig();
Dan Stoza7f7da322014-05-02 15:26:25 -0700917}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700918
Ady Abraham447052e2019-02-13 16:07:27 -0800919void SurfaceFlinger::setDesiredActiveConfig(const sp<IBinder>& displayToken, int mode,
920 ConfigEvent event) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800921 ATRACE_CALL();
Ana Krulec7d1d6832018-12-27 11:10:09 -0800922
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800923 // Lock is acquired by setRefreshRateTo.
924 const auto display = getDisplayDeviceLocked(displayToken);
Ana Krulec7d1d6832018-12-27 11:10:09 -0800925 if (!display) {
926 ALOGE("Attempt to set active config %d for invalid display token %p", mode,
927 displayToken.get());
928 return;
929 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700930 if (display->isVirtual()) {
Ana Krulec7d1d6832018-12-27 11:10:09 -0800931 ALOGW("Attempt to set active config %d for virtual display", mode);
932 return;
933 }
934 int currentDisplayPowerMode = display->getPowerMode();
935 if (currentDisplayPowerMode != HWC_POWER_MODE_NORMAL) {
936 // Don't change active config when in AoD.
Dominik Laskowski075d3172018-05-24 15:50:06 -0700937 return;
938 }
939
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800940 // Don't check against the current mode yet. Worst case we set the desired
Ady Abraham9360a222019-02-27 17:05:30 -0800941 // config twice. However event generation config might have changed so we need to update it
942 // accordingly
Ady Abrahamb838aed2019-02-12 15:30:16 -0800943 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abraham9360a222019-02-27 17:05:30 -0800944 const ConfigEvent desiredConfig = mDesiredActiveConfig.event | event;
945 mDesiredActiveConfig = ActiveConfigInfo{mode, displayToken, desiredConfig};
Ady Abrahamb838aed2019-02-12 15:30:16 -0800946
947 if (!mDesiredActiveConfigChanged) {
948 // This is the first time we set the desired
949 mScheduler->pauseVsyncCallback(mAppConnectionHandle, true);
950
951 // This will trigger HWC refresh without resetting the idle timer.
952 repaintEverythingForHWC();
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800953 }
Ady Abrahamb838aed2019-02-12 15:30:16 -0800954 mDesiredActiveConfigChanged = true;
955 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800956}
957
958status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& displayToken, int mode) {
959 ATRACE_CALL();
Ady Abraham838de062019-02-04 10:24:03 -0800960
961 std::vector<int32_t> allowedConfig;
962 allowedConfig.push_back(mode);
963
964 return setAllowedDisplayConfigs(displayToken, allowedConfig);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800965}
966
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800967void SurfaceFlinger::setActiveConfigInternal() {
968 ATRACE_CALL();
969
970 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ana Krulecc2870422019-01-29 19:00:58 -0800971 mRefreshRateStats->setConfigMode(mUpcomingActiveConfig.configId);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800972
973 const auto display = getDisplayDeviceLocked(mUpcomingActiveConfig.displayToken);
974 display->setActiveConfig(mUpcomingActiveConfig.configId);
975
Ana Krulecc2870422019-01-29 19:00:58 -0800976 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800977 ATRACE_INT("ActiveConfigMode", mUpcomingActiveConfig.configId);
Ady Abraham447052e2019-02-13 16:07:27 -0800978 if (mUpcomingActiveConfig.event != ConfigEvent::None) {
979 mScheduler->onConfigChanged(mAppConnectionHandle, display->getId()->value,
980 mUpcomingActiveConfig.configId);
981 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800982}
983
Ady Abrahamb838aed2019-02-12 15:30:16 -0800984bool SurfaceFlinger::performSetActiveConfig() NO_THREAD_SAFETY_ANALYSIS {
Alec Mourife3dc942019-02-12 14:19:18 -0800985 ATRACE_CALL();
Ady Abrahamb838aed2019-02-12 15:30:16 -0800986 // we may be in the process of changing the active state
987 if (mWaitForNextInvalidate) {
988 mWaitForNextInvalidate = false;
989
990 repaintEverythingForHWC();
991 // We do not want to give another frame to HWC while we are transitioning.
992 return true;
993 }
994
995 if (mCheckPendingFence) {
996 if (mPreviousPresentFence != Fence::NO_FENCE &&
997 (mPreviousPresentFence->getStatus() == Fence::Status::Unsignaled)) {
998 // fence has not signaled yet. wait for the next invalidate
999 repaintEverythingForHWC();
1000 return true;
1001 }
1002
1003 // We received the present fence from the HWC, so we assume it successfully updated
1004 // the config, hence we update SF.
1005 mCheckPendingFence = false;
1006 setActiveConfigInternal();
1007 }
1008
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001009 // Store the local variable to release the lock.
1010 ActiveConfigInfo desiredActiveConfig;
1011 {
1012 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001013 if (!mDesiredActiveConfigChanged) {
1014 return false;
1015 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001016 desiredActiveConfig = mDesiredActiveConfig;
1017 }
1018
1019 const auto display = getDisplayDevice(desiredActiveConfig.displayToken);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001020 if (!display || display->getActiveConfig() == desiredActiveConfig.configId) {
1021 // display is not valid or we are already in the requested mode
1022 // on both cases there is nothing left to do
1023 std::lock_guard<std::mutex> lock(mActiveConfigLock);
1024 mScheduler->pauseVsyncCallback(mAppConnectionHandle, false);
1025 mDesiredActiveConfigChanged = false;
1026 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
1027 return false;
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001028 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001029
Ady Abraham838de062019-02-04 10:24:03 -08001030 // Desired active config was set, it is different than the config currently in use, however
1031 // allowed configs might have change by the time we process the refresh.
1032 // Make sure the desired config is still allowed
1033 if (!isConfigAllowed(*display->getId(), desiredActiveConfig.configId)) {
1034 std::lock_guard<std::mutex> lock(mActiveConfigLock);
1035 mDesiredActiveConfig.configId = display->getActiveConfig();
1036 return false;
1037 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001038 mUpcomingActiveConfig = desiredActiveConfig;
1039 const auto displayId = display->getId();
1040 LOG_ALWAYS_FATAL_IF(!displayId);
1041
1042 ATRACE_INT("ActiveConfigModeHWC", mUpcomingActiveConfig.configId);
1043 getHwComposer().setActiveConfig(*displayId, mUpcomingActiveConfig.configId);
1044
1045 // we need to submit an empty frame to HWC to start the process
1046 mWaitForNextInvalidate = true;
1047 mCheckPendingFence = true;
1048
1049 return false;
Mathias Agopianc666cae2012-07-25 18:56:13 -07001050}
Dominik Laskowski075d3172018-05-24 15:50:06 -07001051
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001052status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& displayToken,
1053 Vector<ColorMode>* outColorModes) {
1054 if (!displayToken || !outColorModes) {
Michael Wright28f24d02016-07-12 13:30:53 -07001055 return BAD_VALUE;
1056 }
1057
Peiyong Lina52f0292018-03-14 17:26:31 -07001058 std::vector<ColorMode> modes;
Steven Thomas6d8110b2017-08-31 18:24:21 -07001059 {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001060 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
1061
1062 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1063 if (!displayId) {
1064 return NAME_NOT_FOUND;
1065 }
1066
Dominik Laskowski075d3172018-05-24 15:50:06 -07001067 modes = getHwComposer().getColorModes(*displayId);
Steven Thomas6d8110b2017-08-31 18:24:21 -07001068 }
Michael Wright28f24d02016-07-12 13:30:53 -07001069 outColorModes->clear();
1070 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
1071
1072 return NO_ERROR;
1073}
1074
Daniel Solomon42d04562019-01-20 21:03:19 -08001075status_t SurfaceFlinger::getDisplayNativePrimaries(const sp<IBinder>& displayToken,
1076 ui::DisplayPrimaries &primaries) {
1077 if (!displayToken) {
1078 return BAD_VALUE;
1079 }
1080
1081 // Currently we only support this API for a single internal display.
1082 if (getInternalDisplayToken() != displayToken) {
1083 return BAD_VALUE;
1084 }
1085
1086 memcpy(&primaries, &mInternalDisplayPrimaries, sizeof(ui::DisplayPrimaries));
1087 return NO_ERROR;
1088}
1089
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001090ColorMode SurfaceFlinger::getActiveColorMode(const sp<IBinder>& displayToken) {
1091 if (const auto display = getDisplayDevice(displayToken)) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001092 return display->getCompositionDisplay()->getState().colorMode;
Michael Wright28f24d02016-07-12 13:30:53 -07001093 }
Peiyong Lina52f0292018-03-14 17:26:31 -07001094 return static_cast<ColorMode>(BAD_VALUE);
Michael Wright28f24d02016-07-12 13:30:53 -07001095}
1096
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001097status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& displayToken, ColorMode mode) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001098 postMessageSync(new LambdaMessage([&] {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001099 Vector<ColorMode> modes;
1100 getDisplayColorModes(displayToken, &modes);
1101 bool exists = std::find(std::begin(modes), std::end(modes), mode) != std::end(modes);
1102 if (mode < ColorMode::NATIVE || !exists) {
1103 ALOGE("Attempt to set invalid active color mode %s (%d) for display token %p",
1104 decodeColorMode(mode).c_str(), mode, displayToken.get());
1105 return;
Michael Wright28f24d02016-07-12 13:30:53 -07001106 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001107 const auto display = getDisplayDevice(displayToken);
1108 if (!display) {
1109 ALOGE("Attempt to set active color mode %s (%d) for invalid display token %p",
1110 decodeColorMode(mode).c_str(), mode, displayToken.get());
1111 } else if (display->isVirtual()) {
1112 ALOGW("Attempt to set active color mode %s (%d) for virtual display",
1113 decodeColorMode(mode).c_str(), mode);
1114 } else {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001115 display->getCompositionDisplay()->setColorMode(mode, Dataspace::UNKNOWN,
1116 RenderIntent::COLORIMETRIC);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001117 }
1118 }));
1119
Michael Wright28f24d02016-07-12 13:30:53 -07001120 return NO_ERROR;
1121}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001122
Svetoslavd85084b2014-03-20 10:28:31 -07001123status_t SurfaceFlinger::clearAnimationFrameStats() {
1124 Mutex::Autolock _l(mStateLock);
1125 mAnimFrameTracker.clearStats();
1126 return NO_ERROR;
1127}
1128
1129status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1130 Mutex::Autolock _l(mStateLock);
1131 mAnimFrameTracker.getStats(outStats);
1132 return NO_ERROR;
1133}
1134
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001135status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& displayToken,
1136 HdrCapabilities* outCapabilities) const {
Dan Stozac4f471e2016-03-24 09:31:08 -07001137 Mutex::Autolock _l(mStateLock);
1138
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001139 const auto display = getDisplayDeviceLocked(displayToken);
1140 if (!display) {
1141 ALOGE("getHdrCapabilities: Invalid display token %p", displayToken.get());
Dan Stozac4f471e2016-03-24 09:31:08 -07001142 return BAD_VALUE;
1143 }
1144
Peiyong Linfb069302018-04-25 14:34:31 -07001145 // At this point the DisplayDeivce should already be set up,
1146 // meaning the luminance information is already queried from
1147 // hardware composer and stored properly.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001148 const HdrCapabilities& capabilities = display->getHdrCapabilities();
Peiyong Linfb069302018-04-25 14:34:31 -07001149 *outCapabilities = HdrCapabilities(capabilities.getSupportedHdrTypes(),
1150 capabilities.getDesiredMaxLuminance(),
1151 capabilities.getDesiredMaxAverageLuminance(),
1152 capabilities.getDesiredMinLuminance());
Dan Stozac4f471e2016-03-24 09:31:08 -07001153
1154 return NO_ERROR;
1155}
1156
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001157status_t SurfaceFlinger::getDisplayedContentSamplingAttributes(const sp<IBinder>& displayToken,
1158 ui::PixelFormat* outFormat,
1159 ui::Dataspace* outDataspace,
1160 uint8_t* outComponentMask) const {
1161 if (!outFormat || !outDataspace || !outComponentMask) {
1162 return BAD_VALUE;
1163 }
Kevin DuBois74e53772018-11-19 10:52:38 -08001164 const auto display = getDisplayDevice(displayToken);
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001165 if (!display || !display->getId()) {
1166 ALOGE("getDisplayedContentSamplingAttributes: Bad display token: %p", display.get());
1167 return BAD_VALUE;
1168 }
1169 return getHwComposer().getDisplayedContentSamplingAttributes(*display->getId(), outFormat,
1170 outDataspace, outComponentMask);
1171}
1172
Kevin DuBois74e53772018-11-19 10:52:38 -08001173status_t SurfaceFlinger::setDisplayContentSamplingEnabled(const sp<IBinder>& displayToken,
1174 bool enable, uint8_t componentMask,
1175 uint64_t maxFrames) const {
1176 const auto display = getDisplayDevice(displayToken);
1177 if (!display || !display->getId()) {
1178 ALOGE("setDisplayContentSamplingEnabled: Bad display token: %p", display.get());
1179 return BAD_VALUE;
1180 }
1181
1182 return getHwComposer().setDisplayContentSamplingEnabled(*display->getId(), enable,
1183 componentMask, maxFrames);
1184}
1185
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001186status_t SurfaceFlinger::getDisplayedContentSample(const sp<IBinder>& displayToken,
1187 uint64_t maxFrames, uint64_t timestamp,
1188 DisplayedFrameStats* outStats) const {
1189 const auto display = getDisplayDevice(displayToken);
1190 if (!display || !display->getId()) {
1191 ALOGE("getDisplayContentSample: Bad display token: %p", displayToken.get());
1192 return BAD_VALUE;
1193 }
1194
1195 return getHwComposer().getDisplayedContentSample(*display->getId(), maxFrames, timestamp,
1196 outStats);
1197}
1198
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001199status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const {
1200 if (!outSupported) {
1201 return BAD_VALUE;
1202 }
1203 *outSupported = getRenderEngine().supportsProtectedContent();
1204 return NO_ERROR;
1205}
1206
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001207status_t SurfaceFlinger::isWideColorDisplay(const sp<IBinder>& displayToken,
1208 bool* outIsWideColorDisplay) const {
1209 if (!displayToken || !outIsWideColorDisplay) {
1210 return BAD_VALUE;
1211 }
1212 Mutex::Autolock _l(mStateLock);
1213 const auto display = getDisplayDeviceLocked(displayToken);
1214 if (!display) {
1215 return BAD_VALUE;
1216 }
1217 *outIsWideColorDisplay = display->hasWideColorGamut();
1218 return NO_ERROR;
1219}
1220
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001221status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001222 postMessageSync(new LambdaMessage([&] {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001223 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001224
Chia-I Wu90f669f2017-10-05 14:24:41 -07001225 if (mInjectVSyncs == enable) {
1226 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001227 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001228
Ana Krulecc2870422019-01-29 19:00:58 -08001229 auto resyncCallback =
1230 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskif654d572018-12-20 11:03:06 -08001231
Ana Krulec98b5b242018-08-10 15:03:23 -07001232 // TODO(akrulec): Part of the Injector should be refactored, so that it
1233 // can be passed to Scheduler.
Chia-I Wu90f669f2017-10-05 14:24:41 -07001234 if (enable) {
1235 ALOGV("VSync Injections enabled");
1236 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001237 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique24b0a482018-03-09 18:52:26 -08001238 mInjectorEventThread = std::make_unique<
Dominik Laskowskif654d572018-12-20 11:03:06 -08001239 impl::EventThread>(mVSyncInjector.get(),
Lloyd Pique24b0a482018-03-09 18:52:26 -08001240 impl::EventThread::InterceptVSyncsCallback(),
1241 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001242 }
Dominik Laskowskif654d572018-12-20 11:03:06 -08001243 mEventQueue->setEventThread(mInjectorEventThread.get(), std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001244 } else {
1245 ALOGV("VSync Injections disabled");
Ana Krulecc2870422019-01-29 19:00:58 -08001246 mEventQueue->setEventThread(mScheduler->getEventThread(mSfConnectionHandle),
1247 std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001248 }
1249
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001250 mInjectVSyncs = enable;
Dominik Laskowski8c001672018-05-30 16:52:06 -07001251 }));
1252
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001253 return NO_ERROR;
1254}
1255
1256status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001257 Mutex::Autolock _l(mStateLock);
1258
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001259 if (!mInjectVSyncs) {
1260 ALOGE("VSync Injections not enabled");
1261 return BAD_VALUE;
1262 }
1263 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1264 ALOGV("Injecting VSync inside SurfaceFlinger");
1265 mVSyncInjector->onInjectSyncEvent(when);
1266 }
1267 return NO_ERROR;
1268}
1269
Lloyd Pique755e3192018-01-31 16:46:15 -08001270status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1271 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001272 // Try to acquire a lock for 1s, fail gracefully
1273 const status_t err = mStateLock.timedLock(s2ns(1));
1274 const bool locked = (err == NO_ERROR);
1275 if (!locked) {
1276 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1277 return TIMED_OUT;
1278 }
1279
1280 outLayers->clear();
1281 mCurrentState.traverseInZOrder([&](Layer* layer) {
1282 outLayers->push_back(layer->getLayerDebugInfo());
1283 });
1284
1285 mStateLock.unlock();
1286 return NO_ERROR;
1287}
1288
Peiyong Linc6780972018-10-28 15:24:08 -07001289status_t SurfaceFlinger::getCompositionPreference(
1290 Dataspace* outDataspace, ui::PixelFormat* outPixelFormat,
1291 Dataspace* outWideColorGamutDataspace,
1292 ui::PixelFormat* outWideColorGamutPixelFormat) const {
Peiyong Lin9d846a52018-11-05 13:18:20 -08001293 *outDataspace = mDefaultCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001294 *outPixelFormat = defaultCompositionPixelFormat;
Peiyong Lin9d846a52018-11-05 13:18:20 -08001295 *outWideColorGamutDataspace = mWideColorGamutCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001296 *outWideColorGamutPixelFormat = wideColorGamutCompositionPixelFormat;
Peiyong Lin0256f722018-08-31 15:45:10 -07001297 return NO_ERROR;
1298}
1299
Dan Stozaec460082018-12-17 15:35:09 -08001300status_t SurfaceFlinger::addRegionSamplingListener(const Rect& samplingArea,
1301 const sp<IBinder>& stopLayerHandle,
1302 const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001303 if (!listener || samplingArea == Rect::INVALID_RECT) {
Dan Stozaec460082018-12-17 15:35:09 -08001304 return BAD_VALUE;
1305 }
1306 mRegionSamplingThread->addListener(samplingArea, stopLayerHandle, listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001307 return NO_ERROR;
1308}
1309
Dan Stozaec460082018-12-17 15:35:09 -08001310status_t SurfaceFlinger::removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001311 if (!listener) {
1312 return BAD_VALUE;
1313 }
Dan Stozaec460082018-12-17 15:35:09 -08001314 mRegionSamplingThread->removeListener(listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001315 return NO_ERROR;
1316}
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001317// ----------------------------------------------------------------------------
1318
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001319sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
1320 ISurfaceComposer::VsyncSource vsyncSource) {
Ana Krulecc2870422019-01-29 19:00:58 -08001321 auto resyncCallback = mScheduler->makeResyncCallback([this] {
Dominik Laskowski83b88212018-12-11 13:34:06 -08001322 Mutex::Autolock lock(mStateLock);
1323 return getVsyncPeriod();
1324 });
Dominik Laskowskif654d572018-12-20 11:03:06 -08001325
Ana Krulecc2870422019-01-29 19:00:58 -08001326 const auto& handle =
1327 vsyncSource == eVsyncSourceSurfaceFlinger ? mSfConnectionHandle : mAppConnectionHandle;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001328
Ana Krulecc2870422019-01-29 19:00:58 -08001329 return mScheduler->createDisplayEventConnection(handle, std::move(resyncCallback));
Mathias Agopianbb641242010-05-18 17:06:55 -07001330}
1331
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001332// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001333
1334void SurfaceFlinger::waitForEvent() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001335 mEventQueue->waitMessage();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001336}
1337
1338void SurfaceFlinger::signalTransaction() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001339 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001340}
1341
1342void SurfaceFlinger::signalLayerUpdate() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001343 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001344}
1345
1346void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001347 mRefreshPending = true;
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001348 mEventQueue->refresh();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001349}
1350
1351status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001352 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001353 return mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001354}
1355
1356status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001357 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001358 status_t res = mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001359 if (res == NO_ERROR) {
1360 msg->wait();
1361 }
1362 return res;
1363}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001364
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001365void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001366 do {
1367 waitForEvent();
1368 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001369}
1370
Dominik Laskowski83b88212018-12-11 13:34:06 -08001371nsecs_t SurfaceFlinger::getVsyncPeriod() const {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001372 const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski83b88212018-12-11 13:34:06 -08001373 if (!displayId || !getHwComposer().isConnected(*displayId)) {
1374 return 0;
1375 }
1376
1377 const auto config = getHwComposer().getActiveConfig(*displayId);
1378 return config ? config->getVsyncPeriod() : 0;
1379}
1380
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001381void SurfaceFlinger::onVsyncReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
1382 int64_t timestamp) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001383 ATRACE_NAME("SF onVsync");
1384
Steven Thomas3cfac282017-02-06 12:29:30 -08001385 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001386 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001387 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001388 return;
1389 }
1390
Dominik Laskowski075d3172018-05-24 15:50:06 -07001391 if (!getHwComposer().onVsync(hwcDisplayId, timestamp)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001392 return;
1393 }
1394
Dominik Laskowski075d3172018-05-24 15:50:06 -07001395 if (hwcDisplayId != getHwComposer().getInternalHwcDisplayId()) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001396 // For now, we don't do anything with external display vsyncs.
1397 return;
1398 }
1399
Ana Krulecc2870422019-01-29 19:00:58 -08001400 mScheduler->addResyncSample(timestamp);
Mathias Agopian148994e2012-09-19 17:31:36 -07001401}
1402
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001403void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001404 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1405 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001406}
1407
Ady Abraham838de062019-02-04 10:24:03 -08001408bool SurfaceFlinger::isConfigAllowed(const DisplayId& displayId, int32_t config) {
1409 std::lock_guard lock(mAllowedConfigsLock);
1410
1411 // if allowed configs are not set yet for this display, every config is considered allowed
1412 if (mAllowedConfigs.find(displayId) == mAllowedConfigs.end()) {
1413 return true;
1414 }
1415
1416 return mAllowedConfigs[displayId]->isConfigAllowed(config);
1417}
1418
Ady Abraham447052e2019-02-13 16:07:27 -08001419void SurfaceFlinger::setRefreshRateTo(RefreshRateType refreshRate, ConfigEvent event) {
Ady Abraham1902d072019-03-01 17:18:59 -08001420 ATRACE_CALL();
1421
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001422 mPhaseOffsets->setRefreshRateType(refreshRate);
1423
1424 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
1425 mVsyncModulator.setPhaseOffsets(early, gl, late);
1426
1427 if (mBootStage != BootStage::FINISHED) {
Ana Krulec7d1d6832018-12-27 11:10:09 -08001428 return;
1429 }
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001430
Ana Krulec7d1d6832018-12-27 11:10:09 -08001431 // Don't do any updating if the current fps is the same as the new one.
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001432 const auto displayId = getInternalDisplayIdLocked();
1433 LOG_ALWAYS_FATAL_IF(!displayId);
Ady Abraham1902d072019-03-01 17:18:59 -08001434 const auto displayToken = getInternalDisplayTokenLocked();
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001435
Ady Abraham1902d072019-03-01 17:18:59 -08001436 auto desiredConfigId = mRefreshRateConfigs[*displayId]->getRefreshRate(refreshRate).configId;
1437 const auto display = getDisplayDeviceLocked(displayToken);
1438 if (desiredConfigId == display->getActiveConfig()) {
1439 return;
Ana Krulec7d1d6832018-12-27 11:10:09 -08001440 }
Ady Abraham1902d072019-03-01 17:18:59 -08001441
1442 if (!isConfigAllowed(*displayId, desiredConfigId)) {
1443 ALOGV("Skipping config %d as it is not part of allowed configs", desiredConfigId);
1444 return;
1445 }
1446
1447 setDesiredActiveConfig(getInternalDisplayTokenLocked(), desiredConfigId, event);
Ana Krulec7d1d6832018-12-27 11:10:09 -08001448}
1449
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001450void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001451 HWC2::Connection connection) {
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001452 ALOGV("%s(%d, %" PRIu64 ", %s)", __FUNCTION__, sequenceId, hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001453 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001454
Lloyd Piqueba04e622017-12-14 17:11:26 -08001455 // Ignore events that do not have the right sequenceId.
1456 if (sequenceId != getBE().mComposerSequenceId) {
1457 return;
1458 }
1459
Steven Thomasb02664d2017-07-26 18:48:28 -07001460 // Only lock if we're not on the main thread. This function is normally
1461 // called on a hwbinder thread, but for the primary display it's called on
1462 // the main thread with the state lock already held, so don't attempt to
1463 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001464 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001465
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001466 mPendingHotplugEvents.emplace_back(HotplugEvent{hwcDisplayId, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001467
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001468 if (std::this_thread::get_id() == mMainThreadId) {
1469 // Process all pending hot plug events immediately if we are on the main thread.
1470 processDisplayHotplugEventsLocked();
1471 }
1472
Lloyd Piqueba04e622017-12-14 17:11:26 -08001473 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001474}
1475
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001476void SurfaceFlinger::onRefreshReceived(int sequenceId, hwc2_display_t /*hwcDisplayId*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001477 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001478 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001479 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001480 }
Ana Krulec7d1d6832018-12-27 11:10:09 -08001481 repaintEverythingForHWC();
Steven Thomas3cfac282017-02-06 12:29:30 -08001482}
1483
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001484void SurfaceFlinger::setPrimaryVsyncEnabled(bool enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001485 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001486 Mutex::Autolock lock(mStateLock);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001487 if (const auto displayId = getInternalDisplayIdLocked()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07001488 getHwComposer().setVsyncEnabled(*displayId,
1489 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
1490 }
Mathias Agopian86303202012-07-24 22:46:10 -07001491}
1492
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001493// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001494void SurfaceFlinger::resetDisplayState() {
Ana Krulecc2870422019-01-29 19:00:58 -08001495 mScheduler->disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001496 // Clear the drawing state so that the logic inside of
1497 // handleTransactionLocked will fire. It will determine the delta between
1498 // mCurrentState and mDrawingState and re-apply all changes when we make the
1499 // transition.
1500 mDrawingState.displays.clear();
1501 mDisplays.clear();
1502}
1503
Steven Thomas050b2c82017-03-06 11:45:16 -08001504void SurfaceFlinger::updateVrFlinger() {
Alec Mourife3dc942019-02-12 14:19:18 -08001505 ATRACE_CALL();
Steven Thomas050b2c82017-03-06 11:45:16 -08001506 if (!mVrFlinger)
1507 return;
1508 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
Lloyd Pique441d5042018-10-18 16:49:51 -07001509 if (vrFlingerRequestsDisplay == getHwComposer().isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001510 return;
1511 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001512
Lloyd Pique441d5042018-10-18 16:49:51 -07001513 if (vrFlingerRequestsDisplay && !getHwComposer().getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001514 ALOGE("Vr flinger is only supported for remote hardware composer"
1515 " service connections. Ignoring request to transition to vr"
1516 " flinger.");
1517 mVrFlingerRequestsDisplay = false;
1518 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001519 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001520
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001521 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001522
Steven Thomas0123ac62018-07-12 11:32:34 -07001523 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001524 LOG_ALWAYS_FATAL_IF(!display);
Lloyd Pique07e33212018-12-18 16:33:37 -08001525
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001526 const int currentDisplayPowerMode = display->getPowerMode();
Lloyd Pique07e33212018-12-18 16:33:37 -08001527
1528 // Clear out all the output layers from the composition engine for all
1529 // displays before destroying the hardware composer interface. This ensures
1530 // any HWC layers are destroyed through that interface before it becomes
1531 // invalid.
1532 for (const auto& [token, displayDevice] : mDisplays) {
1533 displayDevice->getCompositionDisplay()->setOutputLayersOrderedByZ(
1534 compositionengine::Output::OutputLayers());
1535 }
1536
Steven Thomas0123ac62018-07-12 11:32:34 -07001537 // This DisplayDevice will no longer be relevant once resetDisplayState() is
1538 // called below. Clear the reference now so we don't accidentally use it
1539 // later.
1540 display.clear();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001541
Steven Thomasb02664d2017-07-26 18:48:28 -07001542 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001543 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001544 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001545
Steven Thomasb02664d2017-07-26 18:48:28 -07001546 resetDisplayState();
Lloyd Pique441d5042018-10-18 16:49:51 -07001547 // Delete the current instance before creating the new one
1548 mCompositionEngine->setHwComposer(std::unique_ptr<HWComposer>());
1549 mCompositionEngine->setHwComposer(getFactory().createHWComposer(
1550 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName));
1551 getHwComposer().registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001552
Lloyd Pique441d5042018-10-18 16:49:51 -07001553 LOG_ALWAYS_FATAL_IF(!getHwComposer().getComposer()->isRemote(),
David Sodman105b7dc2017-11-04 20:28:14 -07001554 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001555
1556 if (vrFlingerRequestsDisplay) {
1557 mVrFlinger->GrantDisplayOwnership();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001558 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001559
1560 mVisibleRegionsDirty = true;
1561 invalidateHwcGeometry();
1562
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001563 // Re-enable default display.
Steven Thomas0123ac62018-07-12 11:32:34 -07001564 display = getDefaultDisplayDeviceLocked();
1565 LOG_ALWAYS_FATAL_IF(!display);
Dominik Laskowskie9774092018-12-11 10:04:24 -08001566 setPowerModeInternal(display, currentDisplayPowerMode);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001567
Steven Thomasb02664d2017-07-26 18:48:28 -07001568 // Reset the timing values to account for the period of the swapped in HWC
Dominik Laskowski83b88212018-12-11 13:34:06 -08001569 const nsecs_t vsyncPeriod = getVsyncPeriod();
1570 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001571
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001572 // The present fences returned from vr_hwc are not an accurate
1573 // representation of vsync times.
Ana Krulecc2870422019-01-29 19:00:58 -08001574 mScheduler->setIgnorePresentFences(getHwComposer().isUsingVrComposer() || !hasSyncFramework);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001575
Steven Thomasb02664d2017-07-26 18:48:28 -07001576 // Use phase of 0 since phase is not known.
1577 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08001578 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07001579 setCompositorTimingSnapped(stats, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001580
Ana Krulecc2870422019-01-29 19:00:58 -08001581 mScheduler->resyncToHardwareVsync(false, vsyncPeriod);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001582
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001583 mRepaintEverything = true;
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001584 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001585}
1586
Mathias Agopian4fec8732012-06-29 14:12:52 -07001587void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001588 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001589 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001590 case MessageQueue::INVALIDATE: {
Ady Abrahamb838aed2019-02-12 15:30:16 -08001591 if (performSetActiveConfig()) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001592 break;
1593 }
1594
Ana Krulecba13ab32019-02-20 14:14:12 -08001595 if (mUse90Hz && mUseSmart90ForVideo) {
1596 // This call is made each time SF wakes up and creates a new frame. It is part
1597 // of video detection feature.
1598 mScheduler->incrementFrameCounter();
1599 }
Alec Mourife3dc942019-02-12 14:19:18 -08001600 bool frameMissed = mPreviousPresentFence != Fence::NO_FENCE &&
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001601 (mPreviousPresentFence->getStatus() == Fence::Status::Unsignaled);
Alec Mourife3dc942019-02-12 14:19:18 -08001602 bool hwcFrameMissed = !mHadClientComposition && frameMissed;
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001603 if (frameMissed) {
Alec Mourife3dc942019-02-12 14:19:18 -08001604 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
1605 mFrameMissedCount++;
Yiwei Zhang7e666a52018-11-15 13:33:42 -08001606 mTimeStats->incrementMissedFrames();
Alec Mourife3dc942019-02-12 14:19:18 -08001607 }
1608 // For now, only propagate backpressure when missing a hwc frame.
1609 if (hwcFrameMissed) {
Yiwei Zhang621f9d42018-05-07 10:40:55 -07001610 if (mPropagateBackpressure) {
1611 signalLayerUpdate();
1612 break;
1613 }
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001614 }
Dan Stoza50182882016-07-08 12:02:20 -07001615
Steven Thomas050b2c82017-03-06 11:45:16 -08001616 // Now that we're going to make it to the handleMessageTransaction()
1617 // call below it's safe to call updateVrFlinger(), which will
1618 // potentially trigger a display handoff.
1619 updateVrFlinger();
1620
Dan Stoza6b9454d2014-11-07 16:00:59 -08001621 bool refreshNeeded = handleMessageTransaction();
1622 refreshNeeded |= handleMessageInvalidate();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001623
1624 updateCursorAsync();
1625 updateInputFlinger();
1626
Dan Stoza58784442014-12-02 16:58:17 -08001627 refreshNeeded |= mRepaintEverything;
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08001628 if (refreshNeeded && CC_LIKELY(mBootStage != BootStage::BOOTLOADER)) {
Dan Stoza58784442014-12-02 16:58:17 -08001629 // Signal a refresh if a transaction modified the window state,
1630 // a new buffer was latched, or if HWC has requested a full
1631 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001632 signalRefresh();
1633 }
1634 break;
1635 }
1636 case MessageQueue::REFRESH: {
1637 handleMessageRefresh();
1638 break;
1639 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001640 }
1641}
1642
Dan Stoza6b9454d2014-11-07 16:00:59 -08001643bool SurfaceFlinger::handleMessageTransaction() {
Alec Mourife3dc942019-02-12 14:19:18 -08001644 ATRACE_CALL();
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001645 uint32_t transactionFlags = peekTransactionFlags();
Marissa Wall713b63f2018-10-17 15:42:43 -07001646
1647 // Apply any ready transactions in the queues if there are still transactions that have not been
1648 // applied, wake up during the next vsync period and check again
1649 bool transactionNeeded = false;
1650 if (!flushTransactionQueues()) {
1651 transactionNeeded = true;
1652 }
1653
Mathias Agopian4fec8732012-06-29 14:12:52 -07001654 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001655 handleTransaction(transactionFlags);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001656 }
Marissa Wall713b63f2018-10-17 15:42:43 -07001657
1658 if (transactionNeeded) {
1659 setTransactionFlags(eTransactionNeeded);
1660 }
1661
1662 return transactionFlags;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001663}
1664
Mathias Agopian4fec8732012-06-29 14:12:52 -07001665void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001666 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001667
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001668 mRefreshPending = false;
1669
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001670 const bool repaintEverything = mRepaintEverything.exchange(false);
David Sodman2b406362017-12-15 13:33:47 -08001671 preComposition();
Lloyd Pique074e8122018-07-26 12:57:23 -07001672 rebuildLayerStacks();
David Sodman79bba0e2018-08-05 18:07:49 -07001673 calculateWorkingSet();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001674 for (const auto& [token, display] : mDisplays) {
1675 beginFrame(display);
1676 prepareFrame(display);
1677 doDebugFlashRegions(display, repaintEverything);
1678 doComposition(display, repaintEverything);
1679 }
1680
Adrian Roos1e1a1282017-11-01 19:05:31 +01001681 doTracing("handleRefresh");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001682 logLayerStats();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001683
1684 postFrame();
David Sodman2b406362017-12-15 13:33:47 -08001685 postComposition();
Dan Stoza05dacfb2016-07-01 13:33:38 -07001686
Dan Stozabfbffeb2016-07-21 14:49:33 -07001687 mHadClientComposition = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001688 for (const auto& [token, displayDevice] : mDisplays) {
1689 auto display = displayDevice->getCompositionDisplay();
1690 const auto displayId = display->getId();
Lloyd Pique441d5042018-10-18 16:49:51 -07001691 mHadClientComposition =
Lloyd Pique32cbe282018-10-19 13:09:22 -07001692 mHadClientComposition || getHwComposer().hasClientComposition(displayId);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001693 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08001694
Jorim Jaggi90535212018-05-23 23:44:06 +02001695 mVsyncModulator.onRefreshed(mHadClientComposition);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001696
David Sodman7e4ae112018-02-09 15:02:28 -08001697 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001698}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001699
David Sodmanfa9b2af2017-12-24 13:28:59 -08001700
1701bool SurfaceFlinger::handleMessageInvalidate() {
1702 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001703 bool refreshNeeded = handlePageFlip();
1704
Vishnu Nair4351ad52019-02-11 14:13:02 -08001705 if (mVisibleRegionsDirty) {
1706 computeLayerBounds();
1707 }
1708
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001709 for (auto& layer : mLayersPendingRefresh) {
1710 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08001711 visibleReg.set(layer->getScreenBounds());
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001712 invalidateLayerStack(layer, visibleReg);
1713 }
1714 mLayersPendingRefresh.clear();
1715 return refreshNeeded;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001716}
1717
David Sodman79bba0e2018-08-05 18:07:49 -07001718void SurfaceFlinger::calculateWorkingSet() {
1719 ATRACE_CALL();
1720 ALOGV(__FUNCTION__);
1721
David Sodman79bba0e2018-08-05 18:07:49 -07001722 // build the h/w work list
1723 if (CC_UNLIKELY(mGeometryInvalid)) {
1724 mGeometryInvalid = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001725 for (const auto& [token, displayDevice] : mDisplays) {
1726 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001727 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001728 if (!displayId) {
1729 continue;
1730 }
David Sodman79bba0e2018-08-05 18:07:49 -07001731
Lloyd Pique32cbe282018-10-19 13:09:22 -07001732 const Vector<sp<Layer>>& currentLayers = displayDevice->getVisibleLayersSortedByZ();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001733 for (size_t i = 0; i < currentLayers.size(); i++) {
1734 const auto& layer = currentLayers[i];
David Sodman79bba0e2018-08-05 18:07:49 -07001735
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001736 if (!layer->hasHwcLayer(displayDevice)) {
Lloyd Pique07e33212018-12-18 16:33:37 -08001737 layer->forceClientComposition(displayDevice);
1738 continue;
David Sodman79bba0e2018-08-05 18:07:49 -07001739 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001740
Lloyd Pique32cbe282018-10-19 13:09:22 -07001741 layer->setGeometry(displayDevice, i);
Dominik Laskowski075d3172018-05-24 15:50:06 -07001742 if (mDebugDisableHWC || mDebugRegion) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001743 layer->forceClientComposition(displayDevice);
Dominik Laskowski075d3172018-05-24 15:50:06 -07001744 }
David Sodman79bba0e2018-08-05 18:07:49 -07001745 }
1746 }
1747 }
1748
1749 // Set the per-frame data
Lloyd Pique32cbe282018-10-19 13:09:22 -07001750 for (const auto& [token, displayDevice] : mDisplays) {
1751 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001752 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001753 if (!displayId) {
David Sodman79bba0e2018-08-05 18:07:49 -07001754 continue;
1755 }
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001756 auto* profile = display->getDisplayColorProfile();
David Sodman79bba0e2018-08-05 18:07:49 -07001757
1758 if (mDrawingState.colorMatrixChanged) {
1759 display->setColorTransform(mDrawingState.colorMatrix);
David Sodman79bba0e2018-08-05 18:07:49 -07001760 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07001761 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
David Sodman79bba0e2018-08-05 18:07:49 -07001762 if (layer->isHdrY410()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001763 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001764 } else if ((layer->getDataSpace() == Dataspace::BT2020_PQ ||
1765 layer->getDataSpace() == Dataspace::BT2020_ITU_PQ) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001766 !profile->hasHDR10Support()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001767 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001768 } else if ((layer->getDataSpace() == Dataspace::BT2020_HLG ||
1769 layer->getDataSpace() == Dataspace::BT2020_ITU_HLG) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001770 !profile->hasHLGSupport()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001771 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001772 }
1773
Peiyong Lind3788632018-09-18 16:01:31 -07001774 // TODO(b/111562338) remove when composer 2.3 is shipped.
1775 if (layer->hasColorTransform()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001776 layer->forceClientComposition(displayDevice);
Peiyong Lind3788632018-09-18 16:01:31 -07001777 }
1778
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001779 if (layer->getRoundedCornerState().radius > 0.0f) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001780 layer->forceClientComposition(displayDevice);
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001781 }
1782
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001783 if (layer->getForceClientComposition(displayDevice)) {
David Sodman79bba0e2018-08-05 18:07:49 -07001784 ALOGV("[%s] Requesting Client composition", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001785 layer->setCompositionType(displayDevice,
1786 Hwc2::IComposerClient::Composition::CLIENT);
David Sodman79bba0e2018-08-05 18:07:49 -07001787 continue;
1788 }
1789
Lloyd Pique32cbe282018-10-19 13:09:22 -07001790 const auto& displayState = display->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001791 layer->setPerFrameData(displayDevice, displayState.transform, displayState.viewport,
Lloyd Pique32cbe282018-10-19 13:09:22 -07001792 displayDevice->getSupportedPerFrameMetadata());
David Sodman79bba0e2018-08-05 18:07:49 -07001793 }
1794
Peiyong Lin13effd12018-07-24 17:01:47 -07001795 if (useColorManagement) {
David Sodman79bba0e2018-08-05 18:07:49 -07001796 ColorMode colorMode;
1797 Dataspace dataSpace;
1798 RenderIntent renderIntent;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001799 pickColorMode(displayDevice, &colorMode, &dataSpace, &renderIntent);
Lloyd Pique32cbe282018-10-19 13:09:22 -07001800 display->setColorMode(colorMode, dataSpace, renderIntent);
David Sodman79bba0e2018-08-05 18:07:49 -07001801 }
1802 }
1803
1804 mDrawingState.colorMatrixChanged = false;
David Sodmanba340492018-08-05 21:51:33 -07001805
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001806 for (const auto& [token, displayDevice] : mDisplays) {
1807 auto display = displayDevice->getCompositionDisplay();
1808 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -08001809 auto& layerState = layer->getCompositionLayer()->editState().frontEnd;
1810 layerState.compositionType = static_cast<Hwc2::IComposerClient::Composition>(
1811 layer->getCompositionType(displayDevice));
David Sodmanba340492018-08-05 21:51:33 -07001812 }
1813 }
David Sodman79bba0e2018-08-05 18:07:49 -07001814}
1815
Lloyd Pique32cbe282018-10-19 13:09:22 -07001816void SurfaceFlinger::doDebugFlashRegions(const sp<DisplayDevice>& displayDevice,
1817 bool repaintEverything) {
1818 auto display = displayDevice->getCompositionDisplay();
1819 const auto& displayState = display->getState();
1820
Mathias Agopiancd60f992012-08-16 16:28:27 -07001821 // is debugging enabled
1822 if (CC_LIKELY(!mDebugRegion))
1823 return;
1824
Lloyd Pique32cbe282018-10-19 13:09:22 -07001825 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08001826 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001827 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
David Sodmanfa9b2af2017-12-24 13:28:59 -08001828 if (!dirtyRegion.isEmpty()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001829 base::unique_fd readyFence;
David Sodmanfa9b2af2017-12-24 13:28:59 -08001830 // redraw the whole screen
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001831 doComposeSurfaces(displayDevice, dirtyRegion, &readyFence);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001832
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001833 display->getRenderSurface()->queueBuffer(std::move(readyFence));
Mathias Agopiancd60f992012-08-16 16:28:27 -07001834 }
1835 }
1836
Lloyd Pique32cbe282018-10-19 13:09:22 -07001837 postFramebuffer(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001838
1839 if (mDebugRegion > 1) {
1840 usleep(mDebugRegion * 1000);
1841 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001842
Lloyd Pique32cbe282018-10-19 13:09:22 -07001843 prepareFrame(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001844}
1845
Adrian Roos1e1a1282017-11-01 19:05:31 +01001846void SurfaceFlinger::doTracing(const char* where) {
1847 ATRACE_CALL();
1848 ATRACE_NAME(where);
1849 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001850 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001851 }
1852}
1853
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001854void SurfaceFlinger::logLayerStats() {
1855 ATRACE_CALL();
1856 if (CC_UNLIKELY(mLayerStats.isEnabled())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07001857 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001858 if (display->isPrimary()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001859 mLayerStats.logLayerStats(dumpVisibleLayersProtoInfo(display));
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001860 return;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001861 }
1862 }
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001863
1864 ALOGE("logLayerStats: no primary display");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001865 }
1866}
1867
David Sodman2b406362017-12-15 13:33:47 -08001868void SurfaceFlinger::preComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001869{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001870 ATRACE_CALL();
1871 ALOGV("preComposition");
1872
David Sodman2b406362017-12-15 13:33:47 -08001873 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
1874
Mathias Agopiancd60f992012-08-16 16:28:27 -07001875 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001876 mDrawingState.traverseInZOrder([&](Layer* layer) {
David Sodman2b406362017-12-15 13:33:47 -08001877 if (layer->onPreComposition(mRefreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001878 needExtraInvalidate = true;
1879 }
Robert Carr2047fae2016-11-28 14:09:09 -08001880 });
1881
Mathias Agopiancd60f992012-08-16 16:28:27 -07001882 if (needExtraInvalidate) {
1883 signalLayerUpdate();
1884 }
1885}
1886
Ana Krulece588e312018-09-18 12:32:24 -07001887void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime,
1888 std::shared_ptr<FenceTime>& presentFenceTime) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001889 // Update queue of past composite+present times and determine the
1890 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001891 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001892 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001893 while (!getBE().mCompositePresentTimes.empty()) {
1894 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001895 // Cached values should have been updated before calling this method,
1896 // which helps avoid duplicate syscalls.
1897 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1898 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1899 break;
1900 }
1901 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001902 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001903 }
1904
1905 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001906 while (getBE().mCompositePresentTimes.size() > 16) {
1907 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001908 }
1909
Ana Krulece588e312018-09-18 12:32:24 -07001910 setCompositorTimingSnapped(stats, compositeToPresentLatency);
Brian Andersond0010582017-03-07 13:20:31 -08001911}
1912
Ana Krulece588e312018-09-18 12:32:24 -07001913void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats,
1914 nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001915 // Integer division and modulo round toward 0 not -inf, so we need to
1916 // treat negative and positive offsets differently.
Ana Krulec757f63a2019-01-25 10:46:18 -08001917 nsecs_t idealLatency = (mPhaseOffsets->getCurrentSfOffset() > 0)
1918 ? (stats.vsyncPeriod - (mPhaseOffsets->getCurrentSfOffset() % stats.vsyncPeriod))
1919 : ((-mPhaseOffsets->getCurrentSfOffset()) % stats.vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001920
Ana Krulec757f63a2019-01-25 10:46:18 -08001921 // Just in case mPhaseOffsets->getCurrentSfOffset() == -vsyncInterval.
Brian Andersond0010582017-03-07 13:20:31 -08001922 if (idealLatency <= 0) {
Ana Krulece588e312018-09-18 12:32:24 -07001923 idealLatency = stats.vsyncPeriod;
Brian Andersond0010582017-03-07 13:20:31 -08001924 }
1925
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001926 // Snap the latency to a value that removes scheduling jitter from the
1927 // composition and present times, which often have >1ms of jitter.
1928 // Reducing jitter is important if an app attempts to extrapolate
1929 // something (such as user input) to an accurate diasplay time.
Ana Krulec757f63a2019-01-25 10:46:18 -08001930 // Snapping also allows an app to precisely calculate mPhaseOffsets->getCurrentSfOffset()
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001931 // with (presentLatency % interval).
Ana Krulece588e312018-09-18 12:32:24 -07001932 nsecs_t bias = stats.vsyncPeriod / 2;
1933 int64_t extraVsyncs = (compositeToPresentLatency - idealLatency + bias) / stats.vsyncPeriod;
1934 nsecs_t snappedCompositeToPresentLatency =
1935 (extraVsyncs > 0) ? idealLatency + (extraVsyncs * stats.vsyncPeriod) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001936
David Sodman99974d22017-11-28 12:04:33 -08001937 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
Ana Krulece588e312018-09-18 12:32:24 -07001938 getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency;
1939 getBE().mCompositorTiming.interval = stats.vsyncPeriod;
David Sodman99974d22017-11-28 12:04:33 -08001940 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001941}
1942
David Sodman2b406362017-12-15 13:33:47 -08001943void SurfaceFlinger::postComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001944{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001945 ATRACE_CALL();
1946 ALOGV("postComposition");
1947
Brian Anderson3546a3f2016-07-14 11:51:14 -07001948 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001949 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001950 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001951 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001952 }
1953
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001954 // |mStateLock| not needed as we are on the main thread
Lloyd Pique32cbe282018-10-19 13:09:22 -07001955 const auto displayDevice = getDefaultDisplayDeviceLocked();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001956
David Sodman73beded2017-11-15 11:56:06 -08001957 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001958 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001959 if (displayDevice && getHwComposer().hasClientComposition(displayDevice->getId())) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001960 glCompositionDoneFenceTime =
Lloyd Pique31cb2942018-10-19 17:23:03 -07001961 std::make_shared<FenceTime>(displayDevice->getCompositionDisplay()
1962 ->getRenderSurface()
1963 ->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001964 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001965 } else {
1966 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1967 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001968
David Sodman73beded2017-11-15 11:56:06 -08001969 getBE().mDisplayTimeline.updateSignalTimes();
Lloyd Pique32cbe282018-10-19 13:09:22 -07001970 mPreviousPresentFence = displayDevice ? getHwComposer().getPresentFence(*displayDevice->getId())
1971 : Fence::NO_FENCE;
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001972 auto presentFenceTime = std::make_shared<FenceTime>(mPreviousPresentFence);
David Sodman73beded2017-11-15 11:56:06 -08001973 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001974
Ana Krulece588e312018-09-18 12:32:24 -07001975 DisplayStatInfo stats;
Ana Krulecc2870422019-01-29 19:00:58 -08001976 mScheduler->getDisplayStatInfo(&stats);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001977
David Sodman2b406362017-12-15 13:33:47 -08001978 // We use the mRefreshStartTime which might be sampled a little later than
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001979 // when we started doing work for this frame, but that should be okay
1980 // since updateCompositorTiming has snapping logic.
Ana Krulece588e312018-09-18 12:32:24 -07001981 updateCompositorTiming(stats, mRefreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001982 CompositorTiming compositorTiming;
1983 {
David Sodman99974d22017-11-28 12:04:33 -08001984 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1985 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001986 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001987
Robert Carr2047fae2016-11-28 14:09:09 -08001988 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001989 bool frameLatched =
1990 layer->onPostComposition(displayDevice->getId(), glCompositionDoneFenceTime,
1991 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001992 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001993 recordBufferingStats(layer->getName().string(),
1994 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001995 }
Robert Carr2047fae2016-11-28 14:09:09 -08001996 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001997
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001998 if (presentFenceTime->isValid()) {
Ana Krulecc2870422019-01-29 19:00:58 -08001999 mScheduler->addPresentFence(presentFenceTime);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002000 }
2001
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08002002 if (!hasSyncFramework) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002003 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2004 displayDevice->isPoweredOn()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002005 mScheduler->enableHardwareVsync();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002006 }
2007 }
2008
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002009 if (mAnimCompositionPending) {
2010 mAnimCompositionPending = false;
2011
Brian Anderson4e606e32017-03-16 15:34:57 -07002012 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002013 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07002014 std::move(presentFenceTime));
Lloyd Pique32cbe282018-10-19 13:09:22 -07002015 } else if (displayDevice && getHwComposer().isConnected(*displayDevice->getId())) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002016 // The HWC doesn't support present fences, so use the refresh
2017 // timestamp instead.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002018 const nsecs_t presentTime =
2019 getHwComposer().getRefreshTimestamp(*displayDevice->getId());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002020 mAnimFrameTracker.setActualPresentTime(presentTime);
2021 }
2022 mAnimFrameTracker.advanceFrame();
2023 }
Dan Stozab90cf072015-03-05 11:05:59 -08002024
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002025 mTimeStats->incrementTotalFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002026 if (mHadClientComposition) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002027 mTimeStats->incrementClientCompositionFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002028 }
2029
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002030 mTimeStats->setPresentFenceGlobal(presentFenceTime);
Yiwei Zhangce6ebc02018-10-20 12:42:38 -07002031
Lloyd Pique32cbe282018-10-19 13:09:22 -07002032 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2033 !displayDevice->isPoweredOn()) {
Dan Stozab90cf072015-03-05 11:05:59 -08002034 return;
2035 }
2036
2037 nsecs_t currentTime = systemTime();
2038 if (mHasPoweredOff) {
2039 mHasPoweredOff = false;
2040 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002041 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Ana Krulece588e312018-09-18 12:32:24 -07002042 size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod);
David Sodman4a36e932017-11-07 14:29:47 -08002043 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
2044 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002045 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002046 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002047 }
David Sodman4a36e932017-11-07 14:29:47 -08002048 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002049 }
David Sodman4a36e932017-11-07 14:29:47 -08002050 getBE().mLastSwapTime = currentTime;
Dan Stoza436ccf32018-06-21 12:10:12 -07002051
2052 {
2053 std::lock_guard lock(mTexturePoolMutex);
2054 const size_t refillCount = mTexturePoolSize - mTexturePool.size();
2055 if (refillCount > 0) {
2056 const size_t offset = mTexturePool.size();
2057 mTexturePool.resize(mTexturePoolSize);
2058 getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset);
2059 ATRACE_INT("TexturePoolSize", mTexturePool.size());
2060 }
2061 }
Marissa Walle2ffb422018-10-12 11:33:52 -07002062
Marissa Wallfda30bb2018-10-12 11:34:28 -07002063 mTransactionCompletedThread.addPresentFence(mPreviousPresentFence);
Marissa Walle2ffb422018-10-12 11:33:52 -07002064 mTransactionCompletedThread.sendCallbacks();
Ady Abraham8164d482019-01-11 14:47:59 -08002065
Dan Stozaec460082018-12-17 15:35:09 -08002066 if (mLumaSampling) {
2067 mRegionSamplingThread->sampleNow();
2068 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002069}
2070
Vishnu Nair4351ad52019-02-11 14:13:02 -08002071void SurfaceFlinger::computeLayerBounds() {
2072 for (const auto& pair : mDisplays) {
2073 const auto& displayDevice = pair.second;
2074 const auto display = displayDevice->getCompositionDisplay();
2075 for (const auto& layer : mDrawingState.layersSortedByZ) {
2076 // only consider the layers on the given layer stack
2077 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Vishnu Nair01ace762019-02-12 14:25:24 -08002078 continue;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002079 }
2080
2081 layer->computeBounds(displayDevice->getViewport().toFloatRect(), ui::Transform());
2082 }
2083 }
2084}
2085
Mathias Agopiancd60f992012-08-16 16:28:27 -07002086void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002087 ATRACE_CALL();
2088 ALOGV("rebuildLayerStacks");
2089
Mathias Agopiancd60f992012-08-16 16:28:27 -07002090 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07002091 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07002092 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07002093 mVisibleRegionsDirty = false;
2094 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002095
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002096 for (const auto& pair : mDisplays) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002097 const auto& displayDevice = pair.second;
2098 auto display = displayDevice->getCompositionDisplay();
2099 const auto& displayState = display->getState();
Jeff Sharkey76488112017-02-27 14:15:18 -07002100 Region opaqueRegion;
2101 Region dirtyRegion;
Lloyd Piquecc01a452018-12-04 17:24:00 -08002102 compositionengine::Output::OutputLayers layersSortedByZ;
2103 Vector<sp<Layer>> deprecated_layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08002104 Vector<sp<Layer>> layersNeedingFences;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002105 const ui::Transform& tr = displayState.transform;
2106 const Rect bounds = displayState.bounds;
2107 if (displayState.isEnabled) {
2108 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002109
Jeff Sharkey76488112017-02-27 14:15:18 -07002110 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Piquecc01a452018-12-04 17:24:00 -08002111 auto compositionLayer = layer->getCompositionLayer();
2112 if (compositionLayer == nullptr) {
2113 return;
2114 }
2115
Lloyd Pique32cbe282018-10-19 13:09:22 -07002116 const auto displayId = displayDevice->getId();
Lloyd Piquecc01a452018-12-04 17:24:00 -08002117 sp<compositionengine::LayerFE> layerFE = compositionLayer->getLayerFE();
2118 LOG_ALWAYS_FATAL_IF(layerFE.get() == nullptr);
2119
Lloyd Pique07e33212018-12-18 16:33:37 -08002120 bool needsOutputLayer = false;
2121
Lloyd Piqueef36b002019-01-23 17:52:04 -08002122 if (display->belongsInOutput(layer->getLayerStack(),
2123 layer->getPrimaryDisplayOnly())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07002124 Region drawRegion(tr.transform(
2125 layer->visibleNonTransparentRegion));
2126 drawRegion.andSelf(bounds);
2127 if (!drawRegion.isEmpty()) {
Lloyd Pique07e33212018-12-18 16:33:37 -08002128 needsOutputLayer = true;
Jeff Sharkey76488112017-02-27 14:15:18 -07002129 }
Chia-I Wu83806892017-11-16 10:50:20 -08002130 }
2131
Lloyd Pique07e33212018-12-18 16:33:37 -08002132 if (needsOutputLayer) {
2133 layersSortedByZ.emplace_back(
2134 display->getOrCreateOutputLayer(displayId, compositionLayer,
2135 layerFE));
2136 deprecated_layersSortedByZ.add(layer);
2137
2138 auto& outputLayerState = layersSortedByZ.back()->editState();
2139 outputLayerState.visibleRegion =
2140 tr.transform(layer->visibleRegion.intersect(displayState.viewport));
2141 } else if (displayId) {
2142 // For layers that are being removed from a HWC display,
2143 // and that have queued frames, add them to a a list of
2144 // released layers so we can properly set a fence.
2145 bool hasExistingOutputLayer =
2146 display->getOutputLayerForLayer(compositionLayer.get()) != nullptr;
2147 bool hasQueuedFrames = std::find(mLayersWithQueuedFrames.cbegin(),
2148 mLayersWithQueuedFrames.cend(),
2149 layer) != mLayersWithQueuedFrames.cend();
2150
2151 if (hasExistingOutputLayer && hasQueuedFrames) {
Chia-I Wu83806892017-11-16 10:50:20 -08002152 layersNeedingFences.add(layer);
2153 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002154 }
Jeff Sharkey76488112017-02-27 14:15:18 -07002155 });
2156 }
Lloyd Piquecc01a452018-12-04 17:24:00 -08002157
2158 display->setOutputLayersOrderedByZ(std::move(layersSortedByZ));
2159
2160 displayDevice->setVisibleLayersSortedByZ(deprecated_layersSortedByZ);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002161 displayDevice->setLayersNeedingFences(layersNeedingFences);
2162
2163 Region undefinedRegion{bounds};
2164 undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
2165
2166 display->editState().undefinedRegion = undefinedRegion;
2167 display->editState().dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002168 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002169 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002170}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002171
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002172// Returns a data space that fits all visible layers. The returned data space
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002173// can only be one of
Chia-I Wu7a28ecb2018-05-04 10:38:39 -07002174// - Dataspace::SRGB (use legacy dataspace and let HWC saturate when colors are enhanced)
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002175// - Dataspace::DISPLAY_P3
Valerie Hau9758ae02018-10-09 16:05:09 -07002176// - Dataspace::DISPLAY_BT2020
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002177// The returned HDR data space is one of
2178// - Dataspace::UNKNOWN
2179// - Dataspace::BT2020_HLG
2180// - Dataspace::BT2020_PQ
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002181Dataspace SurfaceFlinger::getBestDataspace(const sp<const DisplayDevice>& display,
2182 Dataspace* outHdrDataSpace) const {
Peiyong Lin14724e62018-12-05 07:27:30 -08002183 Dataspace bestDataSpace = Dataspace::V0_SRGB;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002184 *outHdrDataSpace = Dataspace::UNKNOWN;
2185
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002186 for (const auto& layer : display->getVisibleLayersSortedByZ()) {
Chia-I Wu01591c92018-05-22 12:03:00 -07002187 switch (layer->getDataSpace()) {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002188 case Dataspace::V0_SCRGB:
2189 case Dataspace::V0_SCRGB_LINEAR:
Valerie Hau9758ae02018-10-09 16:05:09 -07002190 case Dataspace::BT2020:
2191 case Dataspace::BT2020_ITU:
2192 case Dataspace::BT2020_LINEAR:
2193 case Dataspace::DISPLAY_BT2020:
2194 bestDataSpace = Dataspace::DISPLAY_BT2020;
2195 break;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002196 case Dataspace::DISPLAY_P3:
Chia-I Wube02ec02018-05-18 10:59:36 -07002197 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002198 break;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002199 case Dataspace::BT2020_PQ:
2200 case Dataspace::BT2020_ITU_PQ:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002201 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002202 *outHdrDataSpace = Dataspace::BT2020_PQ;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002203 break;
Peiyong Linf59a7192018-04-25 11:19:31 -07002204 case Dataspace::BT2020_HLG:
2205 case Dataspace::BT2020_ITU_HLG:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002206 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002207 // When there's mixed PQ content and HLG content, we set the HDR
2208 // data space to be BT2020_PQ and convert HLG to PQ.
2209 if (*outHdrDataSpace == Dataspace::UNKNOWN) {
2210 *outHdrDataSpace = Dataspace::BT2020_HLG;
Peiyong Linf59a7192018-04-25 11:19:31 -07002211 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002212 break;
2213 default:
2214 break;
2215 }
Romain Guy54f154a2017-10-24 21:40:32 +01002216 }
2217
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002218 return bestDataSpace;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002219}
2220
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002221// Pick the ColorMode / Dataspace for the display device.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002222void SurfaceFlinger::pickColorMode(const sp<DisplayDevice>& display, ColorMode* outMode,
2223 Dataspace* outDataSpace, RenderIntent* outRenderIntent) const {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002224 if (mDisplayColorSetting == DisplayColorSetting::UNMANAGED) {
2225 *outMode = ColorMode::NATIVE;
2226 *outDataSpace = Dataspace::UNKNOWN;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002227 *outRenderIntent = RenderIntent::COLORIMETRIC;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002228 return;
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002229 }
Romain Guy88d37dd2017-05-26 17:57:05 -07002230
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002231 Dataspace hdrDataSpace;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002232 Dataspace bestDataSpace = getBestDataspace(display, &hdrDataSpace);
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002233
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002234 auto* profile = display->getCompositionDisplay()->getDisplayColorProfile();
2235
Peiyong Lina3ea5592019-02-10 14:45:00 -08002236 switch (mForceColorMode) {
2237 case ColorMode::SRGB:
2238 bestDataSpace = Dataspace::V0_SRGB;
2239 break;
2240 case ColorMode::DISPLAY_P3:
2241 bestDataSpace = Dataspace::DISPLAY_P3;
2242 break;
2243 default:
2244 break;
2245 }
2246
Peiyong Lindfde5112018-06-05 10:58:41 -07002247 // respect hdrDataSpace only when there is no legacy HDR support
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002248 const bool isHdr =
2249 hdrDataSpace != Dataspace::UNKNOWN && !profile->hasLegacyHdrSupport(hdrDataSpace);
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002250 if (isHdr) {
2251 bestDataSpace = hdrDataSpace;
2252 }
2253
Chia-I Wu0d711262018-05-21 15:19:35 -07002254 RenderIntent intent;
2255 switch (mDisplayColorSetting) {
2256 case DisplayColorSetting::MANAGED:
2257 case DisplayColorSetting::UNMANAGED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002258 intent = isHdr ? RenderIntent::TONE_MAP_COLORIMETRIC : RenderIntent::COLORIMETRIC;
Chia-I Wu0d711262018-05-21 15:19:35 -07002259 break;
2260 case DisplayColorSetting::ENHANCED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002261 intent = isHdr ? RenderIntent::TONE_MAP_ENHANCE : RenderIntent::ENHANCE;
Chia-I Wu0d711262018-05-21 15:19:35 -07002262 break;
2263 default: // vendor display color setting
2264 intent = static_cast<RenderIntent>(mDisplayColorSetting);
2265 break;
2266 }
Chia-I Wube02ec02018-05-18 10:59:36 -07002267
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002268 profile->getBestColorMode(bestDataSpace, intent, outDataSpace, outMode, outRenderIntent);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002269}
2270
Lloyd Pique32cbe282018-10-19 13:09:22 -07002271void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) {
2272 auto display = displayDevice->getCompositionDisplay();
2273 const auto& displayState = display->getState();
2274
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002275 bool dirty = !display->getDirtyRegion(false).isEmpty();
Lloyd Pique32cbe282018-10-19 13:09:22 -07002276 bool empty = displayDevice->getVisibleLayersSortedByZ().size() == 0;
2277 bool wasEmpty = !displayState.lastCompositionHadVisibleLayers;
David Sodman2b406362017-12-15 13:33:47 -08002278
David Sodmanfa9b2af2017-12-24 13:28:59 -08002279 // If nothing has changed (!dirty), don't recompose.
2280 // If something changed, but we don't currently have any visible layers,
2281 // and didn't when we last did a composition, then skip it this time.
2282 // The second rule does two things:
2283 // - When all layers are removed from a display, we'll emit one black
2284 // frame, then nothing more until we get new layers.
2285 // - When a display is created with a private layer stack, we won't
2286 // emit any black frames until a layer is added to the layer stack.
2287 bool mustRecompose = dirty && !(empty && wasEmpty);
David Sodman2b406362017-12-15 13:33:47 -08002288
Dominik Laskowski075d3172018-05-24 15:50:06 -07002289 const char flagPrefix[] = {'-', '+'};
2290 static_cast<void>(flagPrefix);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002291 ALOGV_IF(displayDevice->isVirtual(), "%s: %s composition for %s (%cdirty %cempty %cwasEmpty)",
2292 __FUNCTION__, mustRecompose ? "doing" : "skipping",
2293 displayDevice->getDebugName().c_str(), flagPrefix[dirty], flagPrefix[empty],
2294 flagPrefix[wasEmpty]);
David Sodman2b406362017-12-15 13:33:47 -08002295
Lloyd Pique31cb2942018-10-19 17:23:03 -07002296 display->getRenderSurface()->beginFrame(mustRecompose);
David Sodman2b406362017-12-15 13:33:47 -08002297
David Sodmanfa9b2af2017-12-24 13:28:59 -08002298 if (mustRecompose) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002299 display->editState().lastCompositionHadVisibleLayers = !empty;
David Sodman2b406362017-12-15 13:33:47 -08002300 }
2301}
2302
Lloyd Pique32cbe282018-10-19 13:09:22 -07002303void SurfaceFlinger::prepareFrame(const sp<DisplayDevice>& displayDevice) {
2304 auto display = displayDevice->getCompositionDisplay();
2305 const auto& displayState = display->getState();
2306
2307 if (!displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002308 return;
David Sodman2b406362017-12-15 13:33:47 -08002309 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08002310
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002311 status_t result = display->getRenderSurface()->prepareFrame();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002312 ALOGE_IF(result != NO_ERROR, "prepareFrame failed for %s: %d (%s)",
Lloyd Pique32cbe282018-10-19 13:09:22 -07002313 displayDevice->getDebugName().c_str(), result, strerror(-result));
David Sodman2b406362017-12-15 13:33:47 -08002314}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002315
Lloyd Pique32cbe282018-10-19 13:09:22 -07002316void SurfaceFlinger::doComposition(const sp<DisplayDevice>& displayDevice, bool repaintEverything) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002317 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002318 ALOGV("doComposition");
2319
Lloyd Pique32cbe282018-10-19 13:09:22 -07002320 auto display = displayDevice->getCompositionDisplay();
2321 const auto& displayState = display->getState();
2322
2323 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002324 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002325 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
Mathias Agopian02b95102012-11-05 17:50:57 -08002326
David Sodmanfa9b2af2017-12-24 13:28:59 -08002327 // repaint the framebuffer (if needed)
Lloyd Pique32cbe282018-10-19 13:09:22 -07002328 doDisplayComposition(displayDevice, dirtyRegion);
Mathias Agopian02b95102012-11-05 17:50:57 -08002329
Lloyd Pique32cbe282018-10-19 13:09:22 -07002330 display->editState().dirtyRegion.clear();
Lloyd Pique31cb2942018-10-19 17:23:03 -07002331 display->getRenderSurface()->flip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002332 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002333 postFramebuffer(displayDevice);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002334}
2335
David Sodmanfa9b2af2017-12-24 13:28:59 -08002336void SurfaceFlinger::postFrame()
2337{
2338 // |mStateLock| not needed as we are on the main thread
Dominik Laskowski075d3172018-05-24 15:50:06 -07002339 const auto display = getDefaultDisplayDeviceLocked();
2340 if (display && getHwComposer().isConnected(*display->getId())) {
2341 uint32_t flipCount = display->getPageFlipCount();
David Sodmanfa9b2af2017-12-24 13:28:59 -08002342 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2343 logFrameStats();
2344 }
2345 }
2346}
2347
Lloyd Pique32cbe282018-10-19 13:09:22 -07002348void SurfaceFlinger::postFramebuffer(const sp<DisplayDevice>& displayDevice) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002349 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002350 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08002351
Lloyd Pique32cbe282018-10-19 13:09:22 -07002352 auto display = displayDevice->getCompositionDisplay();
2353 const auto& displayState = display->getState();
2354 const auto displayId = display->getId();
2355
David Sodmanfa9b2af2017-12-24 13:28:59 -08002356 mPostFramebufferTime = systemTime();
Jesse Hallc5c5a142012-07-02 16:49:28 -07002357
Lloyd Pique32cbe282018-10-19 13:09:22 -07002358 if (displayState.isEnabled) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002359 if (displayId) {
2360 getHwComposer().presentAndGetReleaseFences(*displayId);
Mathias Agopian2a231842012-09-24 18:12:35 -07002361 }
Lloyd Pique31cb2942018-10-19 17:23:03 -07002362 display->getRenderSurface()->onPresentDisplayCompleted();
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002363 for (auto& layer : display->getOutputLayersOrderedByZ()) {
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002364 sp<Fence> releaseFence = Fence::NO_FENCE;
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002365 bool usedClientComposition = true;
David Sodman15094112018-10-11 09:39:37 -07002366
Chia-I Wu7b549592017-11-15 09:14:57 -08002367 // The layer buffer from the previous frame (if any) is released
2368 // by HWC only when the release fence from this frame (if any) is
2369 // signaled. Always get the release fence from HWC first.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002370 if (layer->getState().hwc) {
2371 const auto& hwcState = *layer->getState().hwc;
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002372 releaseFence =
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002373 getHwComposer().getLayerReleaseFence(*displayId, hwcState.hwcLayer.get());
2374 usedClientComposition =
2375 hwcState.hwcCompositionType == Hwc2::IComposerClient::Composition::CLIENT;
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002376 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002377
2378 // If the layer was client composited in the previous frame, we
2379 // need to merge with the previous client target acquire fence.
2380 // Since we do not track that, always merge with the current
2381 // client target acquire fence when it is available, even though
2382 // this is suboptimal.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002383 if (usedClientComposition) {
Lloyd Pique31cb2942018-10-19 17:23:03 -07002384 releaseFence =
2385 Fence::merge("LayerRelease", releaseFence,
2386 display->getRenderSurface()->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002387 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002388
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002389 layer->getLayerFE().onLayerDisplayed(releaseFence);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002390 }
Chia-I Wu83806892017-11-16 10:50:20 -08002391
2392 // We've got a list of layers needing fences, that are disjoint with
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002393 // display->getVisibleLayersSortedByZ. The best we can do is to
Chia-I Wu83806892017-11-16 10:50:20 -08002394 // supply them with the present fence.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002395 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002396 sp<Fence> presentFence =
Lloyd Pique441d5042018-10-18 16:49:51 -07002397 displayId ? getHwComposer().getPresentFence(*displayId) : Fence::NO_FENCE;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002398 for (auto& layer : displayDevice->getLayersNeedingFences()) {
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002399 layer->getCompositionLayer()->getLayerFE()->onLayerDisplayed(presentFence);
Chia-I Wu83806892017-11-16 10:50:20 -08002400 }
2401 }
2402
Dominik Laskowski075d3172018-05-24 15:50:06 -07002403 if (displayId) {
2404 getHwComposer().clearReleaseFences(*displayId);
Jesse Hallef194142012-06-14 14:45:17 -07002405 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002406 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002407}
2408
Mathias Agopian87baae12012-07-31 12:38:26 -07002409void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002410{
Mathias Agopian841cde52012-03-01 15:44:37 -08002411 ATRACE_CALL();
2412
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002413 // here we keep a copy of the drawing state (that is the state that's
2414 // going to be overwritten by handleTransactionLocked()) outside of
2415 // mStateLock so that the side-effects of the State assignment
2416 // don't happen with mStateLock held (which can cause deadlocks).
2417 State drawingState(mDrawingState);
2418
Mathias Agopianca4d3602011-05-19 15:38:14 -07002419 Mutex::Autolock _l(mStateLock);
2420 const nsecs_t now = systemTime();
2421 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002422
Mathias Agopianca4d3602011-05-19 15:38:14 -07002423 // Here we're guaranteed that some transaction flags are set
2424 // so we can call handleTransactionLocked() unconditionally.
2425 // We call getTransactionFlags(), which will also clear the flags,
2426 // with mStateLock held to guarantee that mCurrentState won't change
2427 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002428
Jorim Jaggif15c3be2018-04-12 12:56:58 +01002429 mVsyncModulator.onTransactionHandled();
Mathias Agopiane57f2922012-08-09 16:29:12 -07002430 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002431 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002432
Mathias Agopianca4d3602011-05-19 15:38:14 -07002433 mLastTransactionTime = systemTime() - now;
2434 mDebugInTransaction = 0;
2435 invalidateHwcGeometry();
2436 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002437}
2438
Lloyd Piqueba04e622017-12-14 17:11:26 -08002439void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2440 for (const auto& event : mPendingHotplugEvents) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002441 const std::optional<DisplayIdentificationInfo> info =
2442 getHwComposer().onHotplug(event.hwcDisplayId, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002443
Dominik Laskowski075d3172018-05-24 15:50:06 -07002444 if (!info) {
Lloyd Piqueba04e622017-12-14 17:11:26 -08002445 continue;
2446 }
2447
Lloyd Piqueba04e622017-12-14 17:11:26 -08002448 if (event.connection == HWC2::Connection::Connected) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002449 if (!mPhysicalDisplayTokens.count(info->id)) {
Dominik Laskowski34157762018-10-31 13:07:19 -07002450 ALOGV("Creating display %s", to_string(info->id).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07002451 mPhysicalDisplayTokens[info->id] = new BBinder();
2452 DisplayDeviceState state;
2453 state.displayId = info->id;
2454 state.isSecure = true; // All physical displays are currently considered secure.
2455 state.displayName = info->name;
2456 mCurrentState.displays.add(mPhysicalDisplayTokens[info->id], state);
2457 mInterceptor->saveDisplayCreation(state);
Steven Thomaseb6d2052018-03-20 15:40:48 -07002458 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002459 } else {
Dominik Laskowski34157762018-10-31 13:07:19 -07002460 ALOGV("Removing display %s", to_string(info->id).c_str());
Lloyd Piqueba04e622017-12-14 17:11:26 -08002461
Dominik Laskowski075d3172018-05-24 15:50:06 -07002462 ssize_t index = mCurrentState.displays.indexOfKey(mPhysicalDisplayTokens[info->id]);
2463 if (index >= 0) {
2464 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
2465 mInterceptor->saveDisplayDeletion(state.sequenceId);
2466 mCurrentState.displays.removeItemsAt(index);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002467 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002468 mPhysicalDisplayTokens.erase(info->id);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002469 }
2470
2471 processDisplayChangesLocked();
2472 }
2473
2474 mPendingHotplugEvents.clear();
2475}
2476
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002477void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) {
Ana Krulecc2870422019-01-29 19:00:58 -08002478 mScheduler->hotplugReceived(mAppConnectionHandle, displayId, connected);
2479 mScheduler->hotplugReceived(mSfConnectionHandle, displayId, connected);
Dominik Laskowski1eba0202019-01-24 09:14:40 -08002480}
2481
Lloyd Pique99d3da52018-01-22 17:48:03 -08002482sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal(
Dominik Laskowski075d3172018-05-24 15:50:06 -07002483 const wp<IBinder>& displayToken, const std::optional<DisplayId>& displayId,
Lloyd Pique542307f2018-10-19 13:24:08 -07002484 const DisplayDeviceState& state, const sp<compositionengine::DisplaySurface>& dispSurface,
Dominik Laskowski075d3172018-05-24 15:50:06 -07002485 const sp<IGraphicBufferProducer>& producer) {
2486 DisplayDeviceCreationArgs creationArgs(this, displayToken, displayId);
Dominik Laskowskie9774092018-12-11 10:04:24 -08002487 creationArgs.sequenceId = state.sequenceId;
Dominik Laskowski075d3172018-05-24 15:50:06 -07002488 creationArgs.isVirtual = state.isVirtual();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002489 creationArgs.isSecure = state.isSecure;
2490 creationArgs.displaySurface = dispSurface;
2491 creationArgs.hasWideColorGamut = false;
2492 creationArgs.supportedPerFrameMetadata = 0;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002493
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002494 const bool isInternalDisplay = displayId && displayId == getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002495 creationArgs.isPrimary = isInternalDisplay;
2496
2497 if (useColorManagement && displayId) {
2498 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002499 for (ColorMode colorMode : modes) {
Peiyong Linfca547f2018-07-09 13:03:33 -07002500 if (isWideColorMode(colorMode)) {
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002501 creationArgs.hasWideColorGamut = true;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002502 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002503
Dominik Laskowski7e045462018-05-30 13:02:02 -07002504 std::vector<RenderIntent> renderIntents =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002505 getHwComposer().getRenderIntents(*displayId, colorMode);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002506 creationArgs.hwcColorModes.emplace(colorMode, renderIntents);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002507 }
tangrobin6753a022018-08-10 10:58:54 +08002508 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002509
Dominik Laskowski075d3172018-05-24 15:50:06 -07002510 if (displayId) {
2511 getHwComposer().getHdrCapabilities(*displayId, &creationArgs.hdrCapabilities);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002512 creationArgs.supportedPerFrameMetadata =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002513 getHwComposer().getSupportedPerFrameMetadata(*displayId);
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002514 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002515
Lloyd Pique90c115d2018-09-18 21:39:42 -07002516 auto nativeWindowSurface = getFactory().createNativeWindowSurface(producer);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002517 auto nativeWindow = nativeWindowSurface->getNativeWindow();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002518 creationArgs.nativeWindow = nativeWindow;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002519
Lloyd Pique99d3da52018-01-22 17:48:03 -08002520 // Make sure that composition can never be stalled by a virtual display
2521 // consumer that isn't processing buffers fast enough. We have to do this
Alec Mouri0a9c7b82018-11-16 13:05:25 -08002522 // here, in case the display is composed entirely by HWC.
Dominik Laskowski281644e2018-04-19 15:47:35 -07002523 if (state.isVirtual()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002524 nativeWindow->setSwapInterval(nativeWindow.get(), 0);
2525 }
2526
Dominik Laskowski075d3172018-05-24 15:50:06 -07002527 creationArgs.displayInstallOrientation =
2528 isInternalDisplay ? primaryDisplayOrientation : DisplayState::eOrientationDefault;
Chia-I Wua02871c2018-08-27 14:38:23 -07002529
Lloyd Pique99d3da52018-01-22 17:48:03 -08002530 // virtual displays are always considered enabled
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002531 creationArgs.initialPowerMode = state.isVirtual() ? HWC_POWER_MODE_NORMAL : HWC_POWER_MODE_OFF;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002532
Lloyd Pique90c115d2018-09-18 21:39:42 -07002533 sp<DisplayDevice> display = getFactory().createDisplayDevice(std::move(creationArgs));
Lloyd Pique99d3da52018-01-22 17:48:03 -08002534
2535 if (maxFrameBufferAcquiredBuffers >= 3) {
2536 nativeWindowSurface->preallocateBuffers();
2537 }
2538
2539 ColorMode defaultColorMode = ColorMode::NATIVE;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002540 Dataspace defaultDataSpace = Dataspace::UNKNOWN;
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002541 if (display->hasWideColorGamut()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002542 defaultColorMode = ColorMode::SRGB;
Peiyong Lin14724e62018-12-05 07:27:30 -08002543 defaultDataSpace = Dataspace::V0_SRGB;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002544 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002545 display->getCompositionDisplay()->setColorMode(defaultColorMode, defaultDataSpace,
2546 RenderIntent::COLORIMETRIC);
Dominik Laskowski075d3172018-05-24 15:50:06 -07002547 if (!state.isVirtual()) {
2548 LOG_ALWAYS_FATAL_IF(!displayId);
2549 display->setActiveConfig(getHwComposer().getActiveConfigIndex(*displayId));
Lloyd Pique3c085a02018-05-09 19:38:32 -07002550 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002551
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002552 display->setLayerStack(state.layerStack);
2553 display->setProjection(state.orientation, state.viewport, state.frame);
2554 display->setDisplayName(state.displayName);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002555
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002556 return display;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002557}
2558
Lloyd Pique347200f2017-12-14 17:00:15 -08002559void SurfaceFlinger::processDisplayChangesLocked() {
2560 // here we take advantage of Vector's copy-on-write semantics to
2561 // improve performance by skipping the transaction entirely when
2562 // know that the lists are identical
2563 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2564 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2565 if (!curr.isIdenticalTo(draw)) {
2566 mVisibleRegionsDirty = true;
2567 const size_t cc = curr.size();
2568 size_t dc = draw.size();
2569
2570 // find the displays that were removed
2571 // (ie: in drawing state but not in current state)
2572 // also handle displays that changed
2573 // (ie: displays that are in both lists)
2574 for (size_t i = 0; i < dc;) {
2575 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2576 if (j < 0) {
2577 // in drawing state but not in current state
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002578 if (const auto display = getDisplayDeviceLocked(draw.keyAt(i))) {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002579 // Save display ID before disconnecting.
2580 const auto displayId = display->getId();
Lloyd Pique45a165a2018-10-19 11:54:47 -07002581 display->disconnect();
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002582
2583 if (!display->isVirtual()) {
2584 LOG_ALWAYS_FATAL_IF(!displayId);
2585 dispatchDisplayHotplugEvent(displayId->value, false);
2586 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002587 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002588
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002589 mDisplays.erase(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002590 } else {
2591 // this display is in both lists. see if something changed.
2592 const DisplayDeviceState& state(curr[j]);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002593 const wp<IBinder>& displayToken = curr.keyAt(j);
Lloyd Pique347200f2017-12-14 17:00:15 -08002594 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2595 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2596 if (state_binder != draw_binder) {
2597 // changing the surface is like destroying and
2598 // recreating the DisplayDevice, so we just remove it
2599 // from the drawing state, so that it get re-added
2600 // below.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002601 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique45a165a2018-10-19 11:54:47 -07002602 display->disconnect();
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002603 }
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002604 mDisplays.erase(displayToken);
Lloyd Pique347200f2017-12-14 17:00:15 -08002605 mDrawingState.displays.removeItemsAt(i);
2606 dc--;
2607 // at this point we must loop to the next item
2608 continue;
2609 }
2610
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002611 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002612 if (state.layerStack != draw[i].layerStack) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002613 display->setLayerStack(state.layerStack);
Lloyd Pique347200f2017-12-14 17:00:15 -08002614 }
2615 if ((state.orientation != draw[i].orientation) ||
2616 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002617 display->setProjection(state.orientation, state.viewport, state.frame);
Lloyd Pique347200f2017-12-14 17:00:15 -08002618 }
2619 if (state.width != draw[i].width || state.height != draw[i].height) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002620 display->setDisplaySize(state.width, state.height);
Lloyd Pique347200f2017-12-14 17:00:15 -08002621 }
2622 }
2623 }
2624 ++i;
2625 }
2626
2627 // find displays that were added
2628 // (ie: in current state but not in drawing state)
2629 for (size_t i = 0; i < cc; i++) {
2630 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2631 const DisplayDeviceState& state(curr[i]);
2632
Lloyd Pique542307f2018-10-19 13:24:08 -07002633 sp<compositionengine::DisplaySurface> dispSurface;
Lloyd Pique347200f2017-12-14 17:00:15 -08002634 sp<IGraphicBufferProducer> producer;
2635 sp<IGraphicBufferProducer> bqProducer;
2636 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique90c115d2018-09-18 21:39:42 -07002637 getFactory().createBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002638
Dominik Laskowski075d3172018-05-24 15:50:06 -07002639 std::optional<DisplayId> displayId;
Dominik Laskowski663bd282018-04-19 15:26:54 -07002640 if (state.isVirtual()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002641 // Virtual displays without a surface are dormant:
2642 // they have external state (layer stack, projection,
2643 // etc.) but no internal state (i.e. a DisplayDevice).
2644 if (state.surface != nullptr) {
2645 // Allow VR composer to use virtual displays.
Dominik Laskowski075d3172018-05-24 15:50:06 -07002646 if (mUseHwcVirtualDisplays || getHwComposer().isUsingVrComposer()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002647 int width = 0;
2648 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2649 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2650 int height = 0;
2651 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2652 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2653 int intFormat = 0;
2654 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2655 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
Peiyong Lin34beb7a2018-03-28 11:57:12 -07002656 auto format = static_cast<ui::PixelFormat>(intFormat);
Lloyd Pique347200f2017-12-14 17:00:15 -08002657
Dominik Laskowski075d3172018-05-24 15:50:06 -07002658 displayId =
2659 getHwComposer().allocateVirtualDisplay(width, height, &format);
Lloyd Pique347200f2017-12-14 17:00:15 -08002660 }
2661
2662 // TODO: Plumb requested format back up to consumer
2663
2664 sp<VirtualDisplaySurface> vds =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002665 new VirtualDisplaySurface(getHwComposer(), displayId, state.surface,
Lloyd Pique347200f2017-12-14 17:00:15 -08002666 bqProducer, bqConsumer,
2667 state.displayName);
2668
2669 dispSurface = vds;
2670 producer = vds;
2671 }
2672 } else {
2673 ALOGE_IF(state.surface != nullptr,
2674 "adding a supported display, but rendering "
2675 "surface is provided (%p), ignoring it",
2676 state.surface.get());
2677
Dominik Laskowski075d3172018-05-24 15:50:06 -07002678 displayId = state.displayId;
2679 LOG_ALWAYS_FATAL_IF(!displayId);
2680 dispSurface = new FramebufferSurface(getHwComposer(), *displayId, bqConsumer);
Lloyd Pique347200f2017-12-14 17:00:15 -08002681 producer = bqProducer;
2682 }
2683
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002684 const wp<IBinder>& displayToken = curr.keyAt(i);
Lloyd Pique347200f2017-12-14 17:00:15 -08002685 if (dispSurface != nullptr) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002686 mDisplays.emplace(displayToken,
Dominik Laskowski7e045462018-05-30 13:02:02 -07002687 setupNewDisplayDeviceInternal(displayToken, displayId, state,
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002688 dispSurface, producer));
Dominik Laskowski663bd282018-04-19 15:26:54 -07002689 if (!state.isVirtual()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002690 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002691 dispatchDisplayHotplugEvent(displayId->value, true);
Lloyd Pique347200f2017-12-14 17:00:15 -08002692 }
2693 }
2694 }
2695 }
2696 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002697
2698 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002699}
2700
Mathias Agopian87baae12012-07-31 12:38:26 -07002701void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002702{
Dan Stoza7dde5992015-05-22 09:51:44 -07002703 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002704 mCurrentState.traverseInZOrder([](Layer* layer) {
2705 layer->notifyAvailableFrames();
2706 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002707
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002708 /*
2709 * Traversal of the children
2710 * (perform the transaction for each of them if needed)
2711 */
2712
Mathias Agopian3559b072012-08-15 13:46:03 -07002713 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002714 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002715 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002716 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002717
2718 const uint32_t flags = layer->doTransaction(0);
2719 if (flags & Layer::eVisibleRegion)
2720 mVisibleRegionsDirty = true;
Robert Carr720e5062018-07-30 17:45:14 -07002721
2722 if (flags & Layer::eInputInfoChanged) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002723 mInputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002724 }
Robert Carr2047fae2016-11-28 14:09:09 -08002725 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002726 }
2727
2728 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002729 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002730 */
2731
Mathias Agopiane57f2922012-08-09 16:29:12 -07002732 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002733 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002734 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002735 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002736
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002737 if (transactionFlags & (eDisplayLayerStackChanged|eDisplayTransactionNeeded)) {
Mathias Agopian84300952012-11-21 16:02:13 -08002738 // The transform hint might have changed for some layers
2739 // (either because a display has changed, or because a layer
2740 // as changed).
2741 //
2742 // Walk through all the layers in currentLayers,
2743 // and update their transform hint.
2744 //
2745 // If a layer is visible only on a single display, then that
2746 // display is used to calculate the hint, otherwise we use the
2747 // default display.
2748 //
2749 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2750 // the hint is set before we acquire a buffer from the surface texture.
2751 //
2752 // NOTE: layer transactions have taken place already, so we use their
2753 // drawing state. However, SurfaceFlinger's own transaction has not
2754 // happened yet, so we must use the current state layer list
2755 // (soon to become the drawing state list).
2756 //
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002757 sp<const DisplayDevice> hintDisplay;
Mathias Agopian84300952012-11-21 16:02:13 -08002758 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002759 bool first = true;
2760 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002761 // NOTE: we rely on the fact that layers are sorted by
2762 // layerStack first (so we don't have to traverse the list
2763 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002764 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002765 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002766 currentlayerStack = layerStack;
2767 // figure out if this layerstack is mirrored
2768 // (more than one display) if so, pick the default display,
2769 // if not, pick the only display it's on.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002770 hintDisplay = nullptr;
2771 for (const auto& [token, display] : mDisplays) {
Lloyd Piqueef36b002019-01-23 17:52:04 -08002772 if (display->getCompositionDisplay()
2773 ->belongsInOutput(layer->getLayerStack(),
2774 layer->getPrimaryDisplayOnly())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002775 if (hintDisplay) {
2776 hintDisplay = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002777 break;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002778 } else {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002779 hintDisplay = display;
Mathias Agopian84300952012-11-21 16:02:13 -08002780 }
2781 }
2782 }
2783 }
Chet Haase91d25932013-04-11 15:24:55 -07002784
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002785 if (!hintDisplay) {
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002786 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2787 // redraw after transform hint changes. See bug 8508397.
Robert Carr56a0b9a2017-12-04 16:06:13 -08002788
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002789 // could be null when this layer is using a layerStack
2790 // that is not visible on any display. Also can occur at
2791 // screen off/on times.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002792 hintDisplay = getDefaultDisplayDeviceLocked();
Mathias Agopian84300952012-11-21 16:02:13 -08002793 }
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002794
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002795 // could be null if there is no display available at all to get
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002796 // the transform hint from.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002797 if (hintDisplay) {
2798 layer->updateTransformHint(hintDisplay);
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002799 }
Robert Carr2047fae2016-11-28 14:09:09 -08002800
2801 first = false;
2802 });
Mathias Agopian84300952012-11-21 16:02:13 -08002803 }
2804
2805
Mathias Agopian3559b072012-08-15 13:46:03 -07002806 /*
2807 * Perform our own transaction if needed
2808 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002809
2810 if (mLayersAdded) {
2811 mLayersAdded = false;
2812 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002813 mVisibleRegionsDirty = true;
2814 }
2815
2816 // some layers might have been removed, so
2817 // we need to update the regions they're exposing.
2818 if (mLayersRemoved) {
2819 mLayersRemoved = false;
2820 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002821 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002822 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002823 // this layer is not visible anymore
Robert Carr1f0a16a2016-10-24 16:27:39 -07002824 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002825 visibleReg.set(layer->getScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002826 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002827 }
Robert Carr2047fae2016-11-28 14:09:09 -08002828 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002829 }
2830
Vishnu Nairec0ab382019-02-13 15:32:56 -08002831 commitInputWindowCommands();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002832 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002833}
2834
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002835void SurfaceFlinger::updateInputFlinger() {
Robert Carr720e5062018-07-30 17:45:14 -07002836 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002837 if (!mInputFlinger) {
Vishnu Nairde19f852018-12-18 16:11:53 -08002838 return;
2839 }
2840
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002841 if (mVisibleRegionsDirty || mInputInfoChanged) {
2842 mInputInfoChanged = false;
2843 updateInputWindowInfo();
chaviw95ef3c42019-02-14 10:55:09 -08002844 } else if (mInputWindowCommands.syncInputWindows) {
2845 // If the caller requested to sync input windows, but there are no
2846 // changes to input windows, notify immediately.
2847 setInputWindowsFinished();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002848 }
2849
2850 executeInputWindowCommands();
2851}
2852
2853void SurfaceFlinger::updateInputWindowInfo() {
Robert Carr720e5062018-07-30 17:45:14 -07002854 Vector<InputWindowInfo> inputHandles;
2855
2856 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
2857 if (layer->hasInput()) {
Vishnu Nair51625fa2018-12-06 13:54:33 -08002858 // When calculating the screen bounds we ignore the transparent region since it may
2859 // result in an unwanted offset.
Arthur Hungd20b2702019-01-14 18:16:16 +08002860 inputHandles.add(layer->fillInputInfo());
Robert Carr720e5062018-07-30 17:45:14 -07002861 }
2862 });
chaviw291d88a2019-02-14 10:33:58 -08002863
2864 mInputFlinger->setInputWindows(inputHandles,
2865 mInputWindowCommands.syncInputWindows ? mSetInputWindowsListener
2866 : nullptr);
Robert Carr720e5062018-07-30 17:45:14 -07002867}
2868
Vishnu Nairec0ab382019-02-13 15:32:56 -08002869void SurfaceFlinger::commitInputWindowCommands() {
2870 mInputWindowCommands.merge(mPendingInputWindowCommands);
2871 mPendingInputWindowCommands.clear();
2872}
2873
chaviwfbe5d9c2018-12-26 12:23:37 -08002874void SurfaceFlinger::executeInputWindowCommands() {
chaviwfbe5d9c2018-12-26 12:23:37 -08002875 for (const auto& transferTouchFocusCommand : mInputWindowCommands.transferTouchFocusCommands) {
2876 if (transferTouchFocusCommand.fromToken != nullptr &&
2877 transferTouchFocusCommand.toToken != nullptr &&
2878 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) {
2879 mInputFlinger->transferTouchFocus(transferTouchFocusCommand.fromToken,
2880 transferTouchFocusCommand.toToken);
2881 }
2882 }
2883
2884 mInputWindowCommands.clear();
2885}
2886
Riley Andrews03414a12014-07-01 14:22:59 -07002887void SurfaceFlinger::updateCursorAsync()
2888{
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002889 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002890 if (!display->getId()) {
Riley Andrews03414a12014-07-01 14:22:59 -07002891 continue;
2892 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002893
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002894 for (auto& layer : display->getVisibleLayersSortedByZ()) {
2895 layer->updateCursorPosition(display);
Riley Andrews03414a12014-07-01 14:22:59 -07002896 }
2897 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002898}
2899
chaviw61626f22018-11-15 16:26:27 -08002900void SurfaceFlinger::latchAndReleaseBuffer(const sp<Layer>& layer) {
2901 if (layer->hasReadyFrame()) {
Robert Carra0629232019-02-07 15:28:54 -08002902 bool ignored = false;
Alec Mouri56e538f2019-01-14 15:22:01 -08002903 layer->latchBuffer(ignored, systemTime());
chaviw61626f22018-11-15 16:26:27 -08002904 }
2905 layer->releasePendingBuffer(systemTime());
2906}
2907
Mathias Agopian4fec8732012-06-29 14:12:52 -07002908void SurfaceFlinger::commitTransaction()
2909{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002910 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002911 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002912 for (const auto& l : mLayersPendingRemoval) {
2913 recordBufferingStats(l->getName().string(),
2914 l->getOccupancyHistory(true));
Robert Carr2e102c92018-10-23 12:11:15 -07002915
Lloyd Pique07e33212018-12-18 16:33:37 -08002916 // Ensure any buffers set to display on any children are released.
Robert Carr2e102c92018-10-23 12:11:15 -07002917 if (l->isRemovedFromCurrentState()) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08002918 latchAndReleaseBuffer(l);
Robert Carr2e102c92018-10-23 12:11:15 -07002919 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002920 }
2921 mLayersPendingRemoval.clear();
2922 }
2923
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002924 // If this transaction is part of a window animation then the next frame
2925 // we composite should be considered an animation as well.
2926 mAnimCompositionPending = mAnimTransactionPending;
2927
Mathias Agopian4fec8732012-06-29 14:12:52 -07002928 mDrawingState = mCurrentState;
Chia-I Wu28f320b2018-05-03 11:02:56 -07002929 // clear the "changed" flags in current state
2930 mCurrentState.colorMatrixChanged = false;
2931
Robert Carr1f0a16a2016-10-24 16:27:39 -07002932 mDrawingState.traverseInZOrder([](Layer* layer) {
2933 layer->commitChildList();
2934 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002935 mTransactionPending = false;
2936 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002937 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002938}
2939
Lloyd Pique32cbe282018-10-19 13:09:22 -07002940void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002941 Region& outDirtyRegion, Region& outOpaqueRegion) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002942 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002943 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002944
Lloyd Pique32cbe282018-10-19 13:09:22 -07002945 auto display = displayDevice->getCompositionDisplay();
2946
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002947 Region aboveOpaqueLayers;
2948 Region aboveCoveredLayers;
2949 Region dirty;
2950
Mathias Agopian87baae12012-07-31 12:38:26 -07002951 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002952
Robert Carr2047fae2016-11-28 14:09:09 -08002953 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002954 // start with the whole surface at its current location
2955 const Layer::State& s(layer->getDrawingState());
2956
Jesse Hall01e29052013-02-19 16:13:35 -08002957 // only consider the layers on the given layer stack
Lloyd Piqueef36b002019-01-23 17:52:04 -08002958 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Robert Carr2047fae2016-11-28 14:09:09 -08002959 return;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002960 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002961
Mathias Agopianab028732010-03-16 16:41:46 -07002962 /*
2963 * opaqueRegion: area of a surface that is fully opaque.
2964 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002965 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002966
2967 /*
2968 * visibleRegion: area of a surface that is visible on screen
2969 * and not fully transparent. This is essentially the layer's
2970 * footprint minus the opaque regions above it.
2971 * Areas covered by a translucent surface are considered visible.
2972 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002973 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002974
2975 /*
2976 * coveredRegion: area of a surface that is covered by all
2977 * visible regions above it (which includes the translucent areas).
2978 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002979 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002980
Jesse Halla8026d22012-09-25 13:25:04 -07002981 /*
2982 * transparentRegion: area of a surface that is hinted to be completely
2983 * transparent. This is only used to tell when the layer has no visible
2984 * non-transparent regions and can be removed from the layer list. It
2985 * does not affect the visibleRegion of this layer or any layers
2986 * beneath it. The hint may not be correct if apps don't respect the
2987 * SurfaceView restrictions (which, sadly, some don't).
2988 */
2989 Region transparentRegion;
2990
Mathias Agopianab028732010-03-16 16:41:46 -07002991
2992 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002993 if (CC_LIKELY(layer->isVisible())) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002994 const bool translucent = !layer->isOpaque(s);
Vishnu Nair4351ad52019-02-11 14:13:02 -08002995 Rect bounds(layer->getScreenBounds());
Robert Carr720e5062018-07-30 17:45:14 -07002996
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002997 visibleRegion.set(bounds);
Peiyong Linefefaac2018-08-17 12:27:51 -07002998 ui::Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002999 if (!visibleRegion.isEmpty()) {
3000 // Remove the transparent area from the visible region
3001 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003002 if (tr.preserveRects()) {
3003 // transform the transparent region
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003004 transparentRegion = tr.transform(layer->getActiveTransparentRegion(s));
Mathias Agopian4fec8732012-06-29 14:12:52 -07003005 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003006 // transformation too complex, can't do the
3007 // transparent region optimization.
3008 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07003009 }
Mathias Agopianab028732010-03-16 16:41:46 -07003010 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003011
Mathias Agopianab028732010-03-16 16:41:46 -07003012 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07003013 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02003014 if (layer->getAlpha() == 1.0f && !translucent &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003015 layer->getRoundedCornerState().radius == 0.0f &&
Peiyong Linefefaac2018-08-17 12:27:51 -07003016 ((layerOrientation & ui::Transform::ROT_INVALID) == false)) {
Mathias Agopianab028732010-03-16 16:41:46 -07003017 // the opaque region is the layer's footprint
3018 opaqueRegion = visibleRegion;
3019 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003020 }
3021 }
3022
Robert Carre5f4f692018-01-12 13:12:28 -08003023 if (visibleRegion.isEmpty()) {
3024 layer->clearVisibilityRegions();
3025 return;
3026 }
3027
Mathias Agopianab028732010-03-16 16:41:46 -07003028 // Clip the covered region to the visible region
3029 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
3030
3031 // Update aboveCoveredLayers for next (lower) layer
3032 aboveCoveredLayers.orSelf(visibleRegion);
3033
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003034 // subtract the opaque region covered by the layers above us
3035 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003036
3037 // compute this layer's dirty region
3038 if (layer->contentDirty) {
3039 // we need to invalidate the whole region
3040 dirty = visibleRegion;
3041 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07003042 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003043 layer->contentDirty = false;
3044 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003045 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07003046 * the exposed region consists of two components:
3047 * 1) what's VISIBLE now and was COVERED before
3048 * 2) what's EXPOSED now less what was EXPOSED before
3049 *
3050 * note that (1) is conservative, we start with the whole
3051 * visible region but only keep what used to be covered by
3052 * something -- which mean it may have been exposed.
3053 *
3054 * (2) handles areas that were not covered by anything but got
3055 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003056 */
Mathias Agopianab028732010-03-16 16:41:46 -07003057 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003058 const Region oldVisibleRegion = layer->visibleRegion;
3059 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003060 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
3061 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003062 }
3063 dirty.subtractSelf(aboveOpaqueLayers);
3064
3065 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07003066 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003067
Mathias Agopianab028732010-03-16 16:41:46 -07003068 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003069 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003070
Jesse Halla8026d22012-09-25 13:25:04 -07003071 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003072 layer->setVisibleRegion(visibleRegion);
3073 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07003074 layer->setVisibleNonTransparentRegion(
3075 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08003076 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003077
Mathias Agopian87baae12012-07-31 12:38:26 -07003078 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003079}
3080
Chia-I Wuab0c3192017-08-01 11:29:00 -07003081void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003082 for (const auto& [token, displayDevice] : mDisplays) {
3083 auto display = displayDevice->getCompositionDisplay();
Lloyd Piqueef36b002019-01-23 17:52:04 -08003084 if (display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003085 display->editState().dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07003086 }
3087 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003088}
3089
Dan Stoza6b9454d2014-11-07 16:00:59 -08003090bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003091{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003092 ALOGV("handlePageFlip");
3093
Brian Andersond6927fb2016-07-23 23:37:30 -07003094 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003095
Mathias Agopian4fec8732012-06-29 14:12:52 -07003096 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003097 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06003098 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07003099
3100 // Store the set of layers that need updates. This set must not change as
3101 // buffers are being latched, as this could result in a deadlock.
3102 // Example: Two producers share the same command stream and:
3103 // 1.) Layer 0 is latched
3104 // 2.) Layer 0 gets a new frame
3105 // 2.) Layer 1 gets a new frame
3106 // 3.) Layer 1 is latched.
3107 // Display is now waiting on Layer 1's frame, which is behind layer 0's
3108 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08003109 mDrawingState.traverseInZOrder([&](Layer* layer) {
Marissa Wallfd668622018-05-10 10:21:13 -07003110 if (layer->hasReadyFrame()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003111 frameQueued = true;
Ady Abrahamc3e21312019-02-07 14:30:23 -08003112 nsecs_t expectedPresentTime;
Ana Krulecc2870422019-01-29 19:00:58 -08003113 expectedPresentTime = mScheduler->expectedPresentTime();
Ana Krulec010d2192018-10-08 06:29:54 -07003114 if (layer->shouldPresentNow(expectedPresentTime)) {
Robert Carr2047fae2016-11-28 14:09:09 -08003115 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07003116 } else {
3117 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003118 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003119 } else {
3120 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003121 }
Robert Carr2047fae2016-11-28 14:09:09 -08003122 });
3123
Lloyd Piquef2c79392018-12-20 16:23:33 -08003124 if (!mLayersWithQueuedFrames.empty()) {
3125 // mStateLock is needed for latchBuffer as LayerRejecter::reject()
3126 // writes to Layer current state. See also b/119481871
3127 Mutex::Autolock lock(mStateLock);
3128
3129 for (auto& layer : mLayersWithQueuedFrames) {
Alec Mouri56e538f2019-01-14 15:22:01 -08003130 if (layer->latchBuffer(visibleRegions, latchTime)) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08003131 mLayersPendingRefresh.push_back(layer);
3132 }
Lloyd Piquef2c79392018-12-20 16:23:33 -08003133 layer->useSurfaceDamage();
Lloyd Piquef2c79392018-12-20 16:23:33 -08003134 if (layer->isBufferLatched()) {
3135 newDataLatched = true;
3136 }
Mike Stroyan0cd76192017-04-20 12:10:48 -06003137 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003138 }
Mathias Agopian4da75192010-08-10 17:19:56 -07003139
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07003140 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003141
3142 // If we will need to wake up at some time in the future to deal with a
3143 // queued frame that shouldn't be displayed during this vsync period, wake
3144 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07003145 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003146 signalLayerUpdate();
3147 }
3148
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08003149 // enter boot animation on first buffer latch
3150 if (CC_UNLIKELY(mBootStage == BootStage::BOOTLOADER && newDataLatched)) {
3151 ALOGI("Enter boot animation");
3152 mBootStage = BootStage::BOOTANIMATION;
3153 }
3154
Dan Stoza6b9454d2014-11-07 16:00:59 -08003155 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06003156 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003157}
3158
Mathias Agopianad456f92011-01-13 17:53:01 -08003159void SurfaceFlinger::invalidateHwcGeometry()
3160{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003161 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08003162}
3163
Lloyd Pique32cbe282018-10-19 13:09:22 -07003164void SurfaceFlinger::doDisplayComposition(const sp<DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003165 const Region& inDirtyRegion) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003166 auto display = displayDevice->getCompositionDisplay();
Dan Stoza71433162014-02-04 16:22:36 -08003167 // We only need to actually compose the display if:
3168 // 1) It is being handled by hardware composer, which may need this to
3169 // keep its virtual display state machine in sync, or
3170 // 2) There is work to be done (the dirty region isn't empty)
Lloyd Pique32cbe282018-10-19 13:09:22 -07003171 if (!displayDevice->getId() && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08003172 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08003173 return;
3174 }
3175
Dan Stoza9e56aa02015-11-02 13:00:03 -08003176 ALOGV("doDisplayComposition");
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003177 base::unique_fd readyFence;
3178 if (!doComposeSurfaces(displayDevice, Region::INVALID_REGION, &readyFence)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07003179
3180 // swap buffers (presentation)
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003181 display->getRenderSurface()->queueBuffer(std::move(readyFence));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003182}
3183
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003184bool SurfaceFlinger::doComposeSurfaces(const sp<DisplayDevice>& displayDevice,
3185 const Region& debugRegion, base::unique_fd* readyFence) {
Alec Mouri820c7402019-01-23 13:02:39 -08003186 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003187 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07003188
Lloyd Pique32cbe282018-10-19 13:09:22 -07003189 auto display = displayDevice->getCompositionDisplay();
3190 const auto& displayState = display->getState();
Dominik Laskowski7e045462018-05-30 13:02:02 -07003191 const auto displayId = display->getId();
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003192 auto& renderEngine = getRenderEngine();
3193 const bool supportProtectedContent =
3194 mDebugEnableProtectedContent && renderEngine.supportsProtectedContent();
Lloyd Pique32cbe282018-10-19 13:09:22 -07003195
3196 const Region bounds(displayState.bounds);
3197 const DisplayRenderArea renderArea(displayDevice);
Lloyd Pique441d5042018-10-18 16:49:51 -07003198 const bool hasClientComposition = getHwComposer().hasClientComposition(displayId);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08003199 ATRACE_INT("hasClientComposition", hasClientComposition);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003200
Peiyong Lind3788632018-09-18 16:01:31 -07003201 mat4 colorMatrix;
Chia-I Wu8e50e692018-05-04 10:12:37 -07003202 bool applyColorMatrix = false;
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003203
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003204 renderengine::DisplaySettings clientCompositionDisplay;
3205 std::vector<renderengine::LayerSettings> clientCompositionLayers;
3206 sp<GraphicBuffer> buf;
Alec Mouri6338c9d2019-02-07 16:57:51 -08003207 base::unique_fd fd;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003208
Dan Stoza9e56aa02015-11-02 13:00:03 -08003209 if (hasClientComposition) {
3210 ALOGV("hasClientComposition");
3211
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003212 if (displayDevice->isPrimary() && supportProtectedContent) {
3213 bool needsProtected = false;
3214 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
3215 // If the layer is a protected layer, mark protected context is needed.
3216 if (layer->isProtected()) {
3217 needsProtected = true;
3218 break;
3219 }
3220 }
3221 if (needsProtected != renderEngine.isProtected() &&
3222 renderEngine.useProtectedContext(needsProtected)) {
3223 display->getRenderSurface()->setProtected(needsProtected);
3224 }
3225 }
3226
Alec Mouri6338c9d2019-02-07 16:57:51 -08003227 buf = display->getRenderSurface()->dequeueBuffer(&fd);
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003228
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003229 if (buf == nullptr) {
3230 ALOGW("Dequeuing buffer for display [%s] failed, bailing out of "
3231 "client composition for this frame",
Lloyd Pique32cbe282018-10-19 13:09:22 -07003232 displayDevice->getDisplayName().c_str());
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003233 return false;
3234 }
3235
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003236 clientCompositionDisplay.physicalDisplay = displayState.scissor;
3237 clientCompositionDisplay.clip = displayState.scissor;
3238 const ui::Transform& displayTransform = displayState.transform;
3239 mat4 m;
3240 m[0][0] = displayTransform[0][0];
3241 m[0][1] = displayTransform[0][1];
3242 m[0][3] = displayTransform[0][2];
3243 m[1][0] = displayTransform[1][0];
3244 m[1][1] = displayTransform[1][1];
3245 m[1][3] = displayTransform[1][2];
3246 m[3][0] = displayTransform[2][0];
3247 m[3][1] = displayTransform[2][1];
3248 m[3][3] = displayTransform[2][2];
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003249 clientCompositionDisplay.globalTransform = m;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003250
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003251 const auto* profile = display->getDisplayColorProfile();
Peiyong Lin34beb7a2018-03-28 11:57:12 -07003252 Dataspace outputDataspace = Dataspace::UNKNOWN;
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003253 if (profile->hasWideColorGamut()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003254 outputDataspace = displayState.dataspace;
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003255 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003256 clientCompositionDisplay.outputDataspace = outputDataspace;
3257 clientCompositionDisplay.maxLuminance =
3258 profile->getHdrCapabilities().getDesiredMaxLuminance();
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003259
Lloyd Pique441d5042018-10-18 16:49:51 -07003260 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId);
Peiyong Lined531a32018-10-26 18:27:56 -07003261 const bool skipClientColorTransform =
Lloyd Pique441d5042018-10-18 16:49:51 -07003262 getHwComposer()
3263 .hasDisplayCapability(displayId,
3264 HWC2::DisplayCapability::SkipClientColorTransform);
Chia-I Wu8e50e692018-05-04 10:12:37 -07003265
Peiyong Lind3788632018-09-18 16:01:31 -07003266 // Compute the global color transform matrix.
Chia-I Wu8e50e692018-05-04 10:12:37 -07003267 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform;
3268 if (applyColorMatrix) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003269 clientCompositionDisplay.colorTransform = colorMatrix;
Mathias Agopianf45c5102012-10-24 16:29:17 -07003270 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07003271 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003272
Mathias Agopian85d751c2012-08-29 16:59:24 -07003273 /*
3274 * and then, render the layers targeted at the framebuffer
3275 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003276
Dan Stoza9e56aa02015-11-02 13:00:03 -08003277 ALOGV("Rendering client layers");
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003278 bool firstLayer = true;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003279 Region clearRegion = Region::INVALID_REGION;
Lloyd Pique32cbe282018-10-19 13:09:22 -07003280 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003281 const Region viewportRegion(displayState.viewport);
3282 const Region clip(viewportRegion.intersect(layer->visibleRegion));
David Sodmanc1498e62018-09-12 14:36:26 -07003283 ALOGV("Layer: %s", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003284 ALOGV(" Composition type: %s", toString(layer->getCompositionType(displayDevice)).c_str());
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003285 if (!clip.isEmpty()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003286 switch (layer->getCompositionType(displayDevice)) {
3287 case Hwc2::IComposerClient::Composition::CURSOR:
3288 case Hwc2::IComposerClient::Composition::DEVICE:
3289 case Hwc2::IComposerClient::Composition::SIDEBAND:
3290 case Hwc2::IComposerClient::Composition::SOLID_COLOR: {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003291 LOG_ALWAYS_FATAL_IF(!displayId);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003292 const Layer::State& state(layer->getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003293 if (layer->getClearClientTarget(displayDevice) && !firstLayer &&
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003294 layer->isOpaque(state) && (layer->getAlpha() == 1.0f) &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003295 layer->getRoundedCornerState().radius == 0.0f && hasClientComposition) {
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003296 // never clear the very first layer since we're
3297 // guaranteed the FB is already cleared
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003298 renderengine::LayerSettings layerSettings;
3299 Region dummyRegion;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003300 bool prepared =
3301 layer->prepareClientLayer(renderArea, clip, dummyRegion,
3302 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003303
3304 if (prepared) {
3305 layerSettings.source.buffer.buffer = nullptr;
3306 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
3307 layerSettings.alpha = half(0.0);
3308 layerSettings.disableBlending = true;
3309 clientCompositionLayers.push_back(layerSettings);
3310 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07003311 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003312 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07003313 }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003314 case Hwc2::IComposerClient::Composition::CLIENT: {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003315 renderengine::LayerSettings layerSettings;
3316 bool prepared =
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003317 layer->prepareClientLayer(renderArea, clip, clearRegion,
3318 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003319 if (prepared) {
3320 clientCompositionLayers.push_back(layerSettings);
Peiyong Lind3788632018-09-18 16:01:31 -07003321 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003322 break;
3323 }
3324 default:
3325 break;
Mathias Agopian85d751c2012-08-29 16:59:24 -07003326 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003327 } else {
3328 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07003329 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003330 firstLayer = false;
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003331 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07003332
Alec Mouri820c7402019-01-23 13:02:39 -08003333 // Perform some cleanup steps if we used client composition.
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003334 if (hasClientComposition) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003335 clientCompositionDisplay.clearRegion = clearRegion;
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003336
3337 // We boost GPU frequency here because there will be color spaces conversion
3338 // and it's expensive. We boost the GPU frequency so that GPU composition can
3339 // finish in time. We must reset GPU frequency afterwards, because high frequency
3340 // consumes extra battery.
3341 const bool expensiveRenderingExpected =
3342 clientCompositionDisplay.outputDataspace == Dataspace::DISPLAY_P3;
3343 if (expensiveRenderingExpected && displayId) {
3344 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, true);
3345 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003346 if (!debugRegion.isEmpty()) {
3347 Region::const_iterator it = debugRegion.begin();
3348 Region::const_iterator end = debugRegion.end();
3349 while (it != end) {
3350 const Rect& rect = *it++;
3351 renderengine::LayerSettings layerSettings;
3352 layerSettings.source.buffer.buffer = nullptr;
3353 layerSettings.source.solidColor = half3(1.0, 0.0, 1.0);
3354 layerSettings.geometry.boundaries = rect.toFloatRect();
3355 layerSettings.alpha = half(1.0);
3356 clientCompositionLayers.push_back(layerSettings);
3357 }
3358 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003359 renderEngine.drawLayers(clientCompositionDisplay, clientCompositionLayers,
3360 buf->getNativeBuffer(), std::move(fd), readyFence);
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003361 if (expensiveRenderingExpected && displayId) {
3362 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, false);
3363 }
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003364 }
Michael Lentine3f121fc2014-10-01 11:17:28 -07003365 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003366}
3367
Chia-I Wu28e3a252018-09-07 12:05:02 -07003368void SurfaceFlinger::drawWormhole(const Region& region) const {
Lloyd Pique144e1162017-12-20 16:44:52 -08003369 auto& engine(getRenderEngine());
Chia-I Wu28e3a252018-09-07 12:05:02 -07003370 engine.fillRegionWithColor(region, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003371}
3372
Dan Stoza7d89d062015-04-30 13:29:25 -07003373status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08003374 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07003375 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07003376 const sp<Layer>& lbc,
Robert Carrb89ea9d2018-12-10 13:01:14 -08003377 const sp<Layer>& parent,
3378 bool addToCurrentState)
Mathias Agopian96f08192010-06-02 23:28:45 -07003379{
Dan Stoza7d89d062015-04-30 13:29:25 -07003380 // add this layer to the current state list
3381 {
3382 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003383 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06003384 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
3385 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07003386 return NO_MEMORY;
3387 }
Robert Carrb89ea9d2018-12-10 13:01:14 -08003388 if (parent == nullptr && addToCurrentState) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003389 mCurrentState.layersSortedByZ.add(lbc);
chaviwac841852019-01-16 16:04:43 -08003390 } else if (parent == nullptr) {
3391 lbc->onRemovedFromCurrentState();
3392 } else if (parent->isRemovedFromCurrentState()) {
3393 parent->addChild(lbc);
3394 lbc->onRemovedFromCurrentState();
Robert Carrb89ea9d2018-12-10 13:01:14 -08003395 } else {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003396 parent->addChild(lbc);
3397 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07003398
Yiwei Zhang243b3782018-05-15 17:40:04 -07003399 if (gbc != nullptr) {
3400 mGraphicBufferProducerList.insert(IInterface::asBinder(gbc).get());
3401 LOG_ALWAYS_FATAL_IF(mGraphicBufferProducerList.size() >
3402 mMaxGraphicBufferProducerListSize,
3403 "Suspected IGBP leak: %zu IGBPs (%zu max), %zu Layers",
3404 mGraphicBufferProducerList.size(),
3405 mMaxGraphicBufferProducerListSize, mNumLayers);
3406 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07003407 mLayersAdded = true;
Dan Stoza7d89d062015-04-30 13:29:25 -07003408 }
3409
Mathias Agopian96f08192010-06-02 23:28:45 -07003410 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08003411 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07003412
Dan Stoza7d89d062015-04-30 13:29:25 -07003413 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07003414}
3415
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08003416uint32_t SurfaceFlinger::peekTransactionFlags() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003417 return mTransactionFlags;
Mathias Agopiandea20b12011-05-03 17:04:02 -07003418}
3419
Mathias Agopian3f844832013-08-07 21:24:32 -07003420uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003421 return mTransactionFlags.fetch_and(~flags) & flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003422}
3423
Mathias Agopian3f844832013-08-07 21:24:32 -07003424uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003425 return setTransactionFlags(flags, Scheduler::TransactionStart::NORMAL);
Dan Stoza84d619e2018-03-28 17:07:36 -07003426}
3427
3428uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags,
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003429 Scheduler::TransactionStart transactionStart) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003430 uint32_t old = mTransactionFlags.fetch_or(flags);
Dan Stoza84d619e2018-03-28 17:07:36 -07003431 mVsyncModulator.setTransactionStart(transactionStart);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003432 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003433 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003434 }
3435 return old;
3436}
3437
Marissa Wall713b63f2018-10-17 15:42:43 -07003438bool SurfaceFlinger::flushTransactionQueues() {
3439 Mutex::Autolock _l(mStateLock);
3440 auto it = mTransactionQueues.begin();
3441 while (it != mTransactionQueues.end()) {
3442 auto& [applyToken, transactionQueue] = *it;
3443
3444 while (!transactionQueue.empty()) {
Robert Carr14167e02019-02-13 13:50:55 -08003445 const auto& [states, displays, flags, desiredPresentTime, privileged] =
3446 transactionQueue.front();
Marissa Wall17b4e452018-12-26 16:32:34 -08003447 if (!transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003448 break;
3449 }
Robert Carr14167e02019-02-13 13:50:55 -08003450 applyTransactionState(states, displays, flags, mPendingInputWindowCommands, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003451 transactionQueue.pop();
3452 }
3453
3454 it = (transactionQueue.empty()) ? mTransactionQueues.erase(it) : std::next(it, 1);
3455 }
3456 return mTransactionQueues.empty();
3457}
3458
chaviwca27f252018-02-06 16:46:39 -08003459bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
3460 for (const ComposerState& state : states) {
3461 // Here we need to check that the interface we're given is indeed
3462 // one of our own. A malicious client could give us a nullptr
3463 // IInterface, or one of its own or even one of our own but a
3464 // different type. All these situations would cause us to crash.
3465 if (state.client == nullptr) {
3466 return true;
3467 }
3468
3469 sp<IBinder> binder = IInterface::asBinder(state.client);
3470 if (binder == nullptr) {
3471 return true;
3472 }
3473
3474 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
3475 return true;
3476 }
3477 }
3478 return false;
3479}
3480
Marissa Wall17b4e452018-12-26 16:32:34 -08003481bool SurfaceFlinger::transactionIsReadyToBeApplied(int64_t desiredPresentTime,
3482 const Vector<ComposerState>& states) {
Ana Krulecc2870422019-01-29 19:00:58 -08003483 nsecs_t expectedPresentTime = mScheduler->expectedPresentTime();
Marissa Wall17b4e452018-12-26 16:32:34 -08003484 // Do not present if the desiredPresentTime has not passed unless it is more than one second
3485 // in the future. We ignore timestamps more than 1 second in the future for stability reasons.
3486 if (desiredPresentTime >= 0 && desiredPresentTime >= expectedPresentTime &&
3487 desiredPresentTime < expectedPresentTime + s2ns(1)) {
3488 return false;
3489 }
3490
Marissa Wall713b63f2018-10-17 15:42:43 -07003491 for (const ComposerState& state : states) {
3492 const layer_state_t& s = state.state;
3493 if (!(s.what & layer_state_t::eAcquireFenceChanged)) {
3494 continue;
3495 }
3496 if (s.acquireFence && s.acquireFence->getStatus() == Fence::Status::Unsignaled) {
Marissa Wall17b4e452018-12-26 16:32:34 -08003497 return false;
Marissa Wall713b63f2018-10-17 15:42:43 -07003498 }
3499 }
Marissa Wall17b4e452018-12-26 16:32:34 -08003500 return true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003501}
3502
3503void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& states,
3504 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -08003505 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -08003506 const InputWindowCommands& inputWindowCommands,
3507 int64_t desiredPresentTime) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003508 ATRACE_CALL();
Robert Carr14167e02019-02-13 13:50:55 -08003509
3510 bool privileged = callingThreadHasUnscopedSurfaceFlingerAccess();
3511
Mathias Agopian698c0872011-06-28 19:09:31 -07003512 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07003513
chaviwca27f252018-02-06 16:46:39 -08003514 if (containsAnyInvalidClientState(states)) {
3515 return;
3516 }
3517
Marissa Wall713b63f2018-10-17 15:42:43 -07003518 // If its TransactionQueue already has a pending TransactionState or if it is pending
3519 if (mTransactionQueues.find(applyToken) != mTransactionQueues.end() ||
Marissa Wall17b4e452018-12-26 16:32:34 -08003520 !transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Robert Carr14167e02019-02-13 13:50:55 -08003521 mTransactionQueues[applyToken].emplace(states, displays, flags, desiredPresentTime,
3522 privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003523 setTransactionFlags(eTransactionNeeded);
3524 return;
3525 }
3526
Robert Carr14167e02019-02-13 13:50:55 -08003527 applyTransactionState(states, displays, flags, inputWindowCommands, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003528}
3529
3530void SurfaceFlinger::applyTransactionState(const Vector<ComposerState>& states,
chaviw273171b2018-12-26 11:46:30 -08003531 const Vector<DisplayState>& displays, uint32_t flags,
Robert Carr14167e02019-02-13 13:50:55 -08003532 const InputWindowCommands& inputWindowCommands,
3533 bool privileged) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003534 uint32_t transactionFlags = 0;
3535
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003536 if (flags & eAnimation) {
3537 // For window updates that are part of an animation we must wait for
3538 // previous animation "frames" to be handled.
3539 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003540 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003541 if (CC_UNLIKELY(err != NO_ERROR)) {
3542 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003543 // caller after a few seconds.
3544 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3545 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003546 mAnimTransactionPending = false;
3547 break;
3548 }
3549 }
3550 }
3551
chaviwca27f252018-02-06 16:46:39 -08003552 for (const DisplayState& display : displays) {
3553 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003554 }
3555
Marissa Walle2ffb422018-10-12 11:33:52 -07003556 uint32_t clientStateFlags = 0;
chaviwca27f252018-02-06 16:46:39 -08003557 for (const ComposerState& state : states) {
Robert Carr14167e02019-02-13 13:50:55 -08003558 clientStateFlags |= setClientStateLocked(state, privileged);
chaviwca27f252018-02-06 16:46:39 -08003559 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003560 // If the state doesn't require a traversal and there are callbacks, send them now
3561 if (!(clientStateFlags & eTraversalNeeded)) {
3562 mTransactionCompletedThread.sendCallbacks();
3563 }
3564 transactionFlags |= clientStateFlags;
chaviwca27f252018-02-06 16:46:39 -08003565
chaviw273171b2018-12-26 11:46:30 -08003566 transactionFlags |= addInputWindowCommands(inputWindowCommands);
3567
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003568 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3569 // anyway. This can be used as a flush mechanism for previous async transactions.
3570 // Empty animation transaction can be used to simulate back-pressure, so also force a
3571 // transaction for empty animation transactions.
3572 if (transactionFlags == 0 &&
3573 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003574 transactionFlags = eTransactionNeeded;
3575 }
3576
Mathias Agopian386aa982011-11-07 21:58:03 -08003577 if (transactionFlags) {
Lloyd Pique4dccc412018-01-22 17:21:36 -08003578 if (mInterceptor->isEnabled()) {
3579 mInterceptor->saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003580 }
Irvel468051e2016-06-13 16:44:44 -07003581
Mathias Agopian386aa982011-11-07 21:58:03 -08003582 // this triggers the transaction
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003583 const auto start = (flags & eEarlyWakeup) ? Scheduler::TransactionStart::EARLY
3584 : Scheduler::TransactionStart::NORMAL;
Dan Stoza84d619e2018-03-28 17:07:36 -07003585 setTransactionFlags(transactionFlags, start);
Mathias Agopian386aa982011-11-07 21:58:03 -08003586
3587 // if this is a synchronous transaction, wait for it to take effect
3588 // before returning.
3589 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003590 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003591 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003592 if (flags & eAnimation) {
3593 mAnimTransactionPending = true;
3594 }
chaviw95ef3c42019-02-14 10:55:09 -08003595
3596 mPendingSyncInputWindows = mPendingInputWindowCommands.syncInputWindows;
3597 while (mTransactionPending || mPendingSyncInputWindows) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003598 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3599 if (CC_UNLIKELY(err != NO_ERROR)) {
3600 // just in case something goes wrong in SF, return to the
3601 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003602 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3603 mTransactionPending = false;
chaviw95ef3c42019-02-14 10:55:09 -08003604 mPendingSyncInputWindows = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003605 break;
3606 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003607 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003608 }
3609}
3610
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003611uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) {
3612 const ssize_t index = mCurrentState.displays.indexOfKey(s.token);
3613 if (index < 0) return 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003614
Mathias Agopiane57f2922012-08-09 16:29:12 -07003615 uint32_t flags = 0;
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003616 DisplayDeviceState& state = mCurrentState.displays.editValueAt(index);
3617
3618 const uint32_t what = s.what;
3619 if (what & DisplayState::eSurfaceChanged) {
3620 if (IInterface::asBinder(state.surface) != IInterface::asBinder(s.surface)) {
3621 state.surface = s.surface;
3622 flags |= eDisplayTransactionNeeded;
Michael Lentine47e45402014-07-18 15:34:25 -07003623 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003624 }
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003625 if (what & DisplayState::eLayerStackChanged) {
3626 if (state.layerStack != s.layerStack) {
3627 state.layerStack = s.layerStack;
3628 flags |= eDisplayTransactionNeeded;
3629 }
3630 }
3631 if (what & DisplayState::eDisplayProjectionChanged) {
3632 if (state.orientation != s.orientation) {
3633 state.orientation = s.orientation;
3634 flags |= eDisplayTransactionNeeded;
3635 }
3636 if (state.frame != s.frame) {
3637 state.frame = s.frame;
3638 flags |= eDisplayTransactionNeeded;
3639 }
3640 if (state.viewport != s.viewport) {
3641 state.viewport = s.viewport;
3642 flags |= eDisplayTransactionNeeded;
3643 }
3644 }
3645 if (what & DisplayState::eDisplaySizeChanged) {
3646 if (state.width != s.width) {
3647 state.width = s.width;
3648 flags |= eDisplayTransactionNeeded;
3649 }
3650 if (state.height != s.height) {
3651 state.height = s.height;
3652 flags |= eDisplayTransactionNeeded;
3653 }
3654 }
3655
Mathias Agopiane57f2922012-08-09 16:29:12 -07003656 return flags;
3657}
3658
Robert Carr14167e02019-02-13 13:50:55 -08003659bool SurfaceFlinger::callingThreadHasUnscopedSurfaceFlingerAccess() {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003660 IPCThreadState* ipc = IPCThreadState::self();
3661 const int pid = ipc->getCallingPid();
3662 const int uid = ipc->getCallingUid();
Robert Carrd4ae7f32018-06-07 16:10:57 -07003663 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Ana Krulec13be8ad2018-08-21 02:43:56 +00003664 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003665 return false;
3666 }
3667 return true;
3668}
3669
Robert Carr14167e02019-02-13 13:50:55 -08003670uint32_t SurfaceFlinger::setClientStateLocked(const ComposerState& composerState,
3671 bool privileged) {
chaviwca27f252018-02-06 16:46:39 -08003672 const layer_state_t& s = composerState.state;
3673 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3674
Mathias Agopian13127d82013-03-05 17:47:11 -08003675 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003676 if (layer == nullptr) {
3677 return 0;
3678 }
3679
chaviw8b3871a2017-11-01 17:41:01 -07003680 uint32_t flags = 0;
3681
Garfield Tan8a3083e2018-12-03 13:21:07 -08003682 const uint64_t what = s.what;
chaviw8b3871a2017-11-01 17:41:01 -07003683 bool geometryAppliesWithResize =
3684 what & layer_state_t::eGeometryAppliesWithResize;
Jorim Jaggidba32732018-05-28 17:43:52 +02003685
3686 // If we are deferring transaction, make sure to push the pending state, as otherwise the
3687 // pending state will also be deferred.
Marissa Wallf58c14b2018-07-24 10:50:43 -07003688 if (what & layer_state_t::eDeferTransaction_legacy) {
Jorim Jaggidba32732018-05-28 17:43:52 +02003689 layer->pushPendingState();
3690 }
3691
chaviw8b3871a2017-11-01 17:41:01 -07003692 if (what & layer_state_t::ePositionChanged) {
3693 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3694 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003695 }
chaviw8b3871a2017-11-01 17:41:01 -07003696 }
3697 if (what & layer_state_t::eLayerChanged) {
3698 // NOTE: index needs to be calculated before we update the state
3699 const auto& p = layer->getParent();
3700 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003701 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003702 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003703 mCurrentState.layersSortedByZ.removeAt(idx);
3704 mCurrentState.layersSortedByZ.add(layer);
3705 // we need traversal (state changed)
3706 // AND transaction (list changed)
3707 flags |= eTransactionNeeded|eTraversalNeeded;
3708 }
chaviw8b3871a2017-11-01 17:41:01 -07003709 } else {
3710 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003711 flags |= eTransactionNeeded|eTraversalNeeded;
3712 }
3713 }
chaviw8b3871a2017-11-01 17:41:01 -07003714 }
3715 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003716 // NOTE: index needs to be calculated before we update the state
3717 const auto& p = layer->getParent();
3718 if (p == nullptr) {
3719 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3720 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3721 mCurrentState.layersSortedByZ.removeAt(idx);
3722 mCurrentState.layersSortedByZ.add(layer);
3723 // we need traversal (state changed)
3724 // AND transaction (list changed)
3725 flags |= eTransactionNeeded|eTraversalNeeded;
3726 }
3727 } else {
3728 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3729 flags |= eTransactionNeeded|eTraversalNeeded;
3730 }
chaviw8b3871a2017-11-01 17:41:01 -07003731 }
3732 }
3733 if (what & layer_state_t::eSizeChanged) {
3734 if (layer->setSize(s.w, s.h)) {
3735 flags |= eTraversalNeeded;
3736 }
3737 }
3738 if (what & layer_state_t::eAlphaChanged) {
3739 if (layer->setAlpha(s.alpha))
3740 flags |= eTraversalNeeded;
3741 }
3742 if (what & layer_state_t::eColorChanged) {
3743 if (layer->setColor(s.color))
3744 flags |= eTraversalNeeded;
3745 }
Peiyong Lind3788632018-09-18 16:01:31 -07003746 if (what & layer_state_t::eColorTransformChanged) {
3747 if (layer->setColorTransform(s.colorTransform)) {
3748 flags |= eTraversalNeeded;
3749 }
3750 }
Valerie Haudd0b7572019-01-29 14:59:27 -08003751 if (what & layer_state_t::eBackgroundColorChanged) {
3752 if (layer->setBackgroundColor(s.color, s.bgColorAlpha, s.bgColorDataspace)) {
3753 flags |= eTraversalNeeded;
3754 }
3755 }
chaviw8b3871a2017-11-01 17:41:01 -07003756 if (what & layer_state_t::eMatrixChanged) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003757 // TODO: b/109894387
3758 //
3759 // SurfaceFlinger's renderer is not prepared to handle cropping in the face of arbitrary
3760 // rotation. To see the problem observe that if we have a square parent, and a child
3761 // of the same size, then we rotate the child 45 degrees around it's center, the child
3762 // must now be cropped to a non rectangular 8 sided region.
3763 //
3764 // Of course we can fix this in the future. For now, we are lucky, SurfaceControl is
3765 // private API, and the WindowManager only uses rotation in one case, which is on a top
3766 // level layer in which cropping is not an issue.
3767 //
3768 // However given that abuse of rotation matrices could lead to surfaces extending outside
3769 // of cropped areas, we need to prevent non-root clients without permission ACCESS_SURFACE_FLINGER
3770 // (a.k.a. everyone except WindowManager and tests) from setting non rectangle preserving
3771 // transformations.
Robert Carr14167e02019-02-13 13:50:55 -08003772 if (layer->setMatrix(s.matrix, privileged))
chaviw8b3871a2017-11-01 17:41:01 -07003773 flags |= eTraversalNeeded;
3774 }
3775 if (what & layer_state_t::eTransparentRegionChanged) {
3776 if (layer->setTransparentRegionHint(s.transparentRegion))
3777 flags |= eTraversalNeeded;
3778 }
3779 if (what & layer_state_t::eFlagsChanged) {
3780 if (layer->setFlags(s.flags, s.mask))
3781 flags |= eTraversalNeeded;
3782 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07003783 if (what & layer_state_t::eCropChanged_legacy) {
3784 if (layer->setCrop_legacy(s.crop_legacy, !geometryAppliesWithResize))
chaviw8b3871a2017-11-01 17:41:01 -07003785 flags |= eTraversalNeeded;
3786 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003787 if (what & layer_state_t::eCornerRadiusChanged) {
3788 if (layer->setCornerRadius(s.cornerRadius))
3789 flags |= eTraversalNeeded;
3790 }
chaviw8b3871a2017-11-01 17:41:01 -07003791 if (what & layer_state_t::eLayerStackChanged) {
3792 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3793 // We only allow setting layer stacks for top level layers,
3794 // everything else inherits layer stack from its parent.
3795 if (layer->hasParent()) {
3796 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3797 layer->getName().string());
3798 } else if (idx < 0) {
3799 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3800 "that also does not appear in the top level layer list. Something"
3801 " has gone wrong.", layer->getName().string());
3802 } else if (layer->setLayerStack(s.layerStack)) {
3803 mCurrentState.layersSortedByZ.removeAt(idx);
3804 mCurrentState.layersSortedByZ.add(layer);
3805 // we need traversal (state changed)
3806 // AND transaction (list changed)
Lloyd Piqued432a7c2018-03-23 16:05:31 -07003807 flags |= eTransactionNeeded|eTraversalNeeded|eDisplayLayerStackChanged;
chaviw8b3871a2017-11-01 17:41:01 -07003808 }
3809 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07003810 if (what & layer_state_t::eDeferTransaction_legacy) {
3811 if (s.barrierHandle_legacy != nullptr) {
3812 layer->deferTransactionUntil_legacy(s.barrierHandle_legacy, s.frameNumber_legacy);
3813 } else if (s.barrierGbp_legacy != nullptr) {
3814 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp_legacy;
chaviw8b3871a2017-11-01 17:41:01 -07003815 if (authenticateSurfaceTextureLocked(gbp)) {
3816 const auto& otherLayer =
3817 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
Marissa Wallf58c14b2018-07-24 10:50:43 -07003818 layer->deferTransactionUntil_legacy(otherLayer, s.frameNumber_legacy);
chaviw8b3871a2017-11-01 17:41:01 -07003819 } else {
3820 ALOGE("Attempt to defer transaction to to an"
3821 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003822 }
3823 }
chaviw8b3871a2017-11-01 17:41:01 -07003824 // We don't trigger a traversal here because if no other state is
3825 // changed, we don't want this to cause any more work
3826 }
3827 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003828 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003829 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003830 if (!hadParent) {
3831 mCurrentState.layersSortedByZ.remove(layer);
3832 }
chaviw8b3871a2017-11-01 17:41:01 -07003833 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003834 }
chaviw8b3871a2017-11-01 17:41:01 -07003835 }
3836 if (what & layer_state_t::eReparentChildren) {
3837 if (layer->reparentChildren(s.reparentHandle)) {
3838 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003839 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003840 }
chaviw8b3871a2017-11-01 17:41:01 -07003841 if (what & layer_state_t::eDetachChildren) {
3842 layer->detachChildren();
3843 }
3844 if (what & layer_state_t::eOverrideScalingModeChanged) {
3845 layer->setOverrideScalingMode(s.overrideScalingMode);
3846 // We don't trigger a traversal here because if no other state is
3847 // changed, we don't want this to cause any more work
3848 }
Marissa Wall61c58622018-07-18 10:12:20 -07003849 if (what & layer_state_t::eTransformChanged) {
3850 if (layer->setTransform(s.transform)) flags |= eTraversalNeeded;
3851 }
3852 if (what & layer_state_t::eTransformToDisplayInverseChanged) {
3853 if (layer->setTransformToDisplayInverse(s.transformToDisplayInverse))
3854 flags |= eTraversalNeeded;
3855 }
3856 if (what & layer_state_t::eCropChanged) {
3857 if (layer->setCrop(s.crop)) flags |= eTraversalNeeded;
3858 }
Marissa Wall861616d2018-10-22 12:52:23 -07003859 if (what & layer_state_t::eFrameChanged) {
3860 if (layer->setFrame(s.frame)) flags |= eTraversalNeeded;
3861 }
Marissa Wall61c58622018-07-18 10:12:20 -07003862 if (what & layer_state_t::eAcquireFenceChanged) {
3863 if (layer->setAcquireFence(s.acquireFence)) flags |= eTraversalNeeded;
3864 }
3865 if (what & layer_state_t::eDataspaceChanged) {
3866 if (layer->setDataspace(s.dataspace)) flags |= eTraversalNeeded;
3867 }
3868 if (what & layer_state_t::eHdrMetadataChanged) {
3869 if (layer->setHdrMetadata(s.hdrMetadata)) flags |= eTraversalNeeded;
3870 }
3871 if (what & layer_state_t::eSurfaceDamageRegionChanged) {
3872 if (layer->setSurfaceDamageRegion(s.surfaceDamageRegion)) flags |= eTraversalNeeded;
3873 }
3874 if (what & layer_state_t::eApiChanged) {
3875 if (layer->setApi(s.api)) flags |= eTraversalNeeded;
3876 }
3877 if (what & layer_state_t::eSidebandStreamChanged) {
3878 if (layer->setSidebandStream(s.sidebandStream)) flags |= eTraversalNeeded;
3879 }
Robert Carr720e5062018-07-30 17:45:14 -07003880 if (what & layer_state_t::eInputInfoChanged) {
Robert Carr11ac2012019-01-22 09:05:25 -08003881 if (callingThreadHasUnscopedSurfaceFlingerAccess()) {
3882 layer->setInputInfo(s.inputInfo);
3883 flags |= eTraversalNeeded;
3884 } else {
3885 ALOGE("Attempt to update InputWindowInfo without permission ACCESS_SURFACE_FLINGER");
3886 }
Robert Carr720e5062018-07-30 17:45:14 -07003887 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003888 if (what & layer_state_t::eMetadataChanged) {
3889 if (layer->setMetadata(s.metadata)) flags |= eTraversalNeeded;
3890 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003891 std::vector<sp<CallbackHandle>> callbackHandles;
3892 if ((what & layer_state_t::eListenerCallbacksChanged) && (!s.listenerCallbacks.empty())) {
3893 mTransactionCompletedThread.run();
3894 for (const auto& [listener, callbackIds] : s.listenerCallbacks) {
3895 callbackHandles.emplace_back(new CallbackHandle(listener, callbackIds, s.surface));
3896 }
3897 }
Marissa Wall73411622019-01-25 10:45:41 -08003898
3899 if (what & layer_state_t::eBufferChanged) {
3900 // Add the new buffer to the cache. This should always come before eCachedBufferChanged.
3901 BufferStateLayerCache::getInstance().add(s.cachedBuffer.token, s.cachedBuffer.bufferId,
3902 s.buffer);
3903 }
Marissa Wallebc2c052019-01-16 19:16:55 -08003904 if (what & layer_state_t::eCachedBufferChanged) {
3905 sp<GraphicBuffer> buffer =
Marissa Wall73411622019-01-25 10:45:41 -08003906 BufferStateLayerCache::getInstance().get(s.cachedBuffer.token,
3907 s.cachedBuffer.bufferId);
Marissa Wallebc2c052019-01-16 19:16:55 -08003908 if (layer->setBuffer(buffer)) flags |= eTraversalNeeded;
3909 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003910 if (layer->setTransactionCompletedListeners(callbackHandles)) flags |= eTraversalNeeded;
3911 // Do not put anything that updates layer state or modifies flags after
3912 // setTransactionCompletedListener
Mathias Agopiane57f2922012-08-09 16:29:12 -07003913 return flags;
3914}
3915
chaviw273171b2018-12-26 11:46:30 -08003916uint32_t SurfaceFlinger::addInputWindowCommands(const InputWindowCommands& inputWindowCommands) {
3917 uint32_t flags = 0;
3918 if (!inputWindowCommands.transferTouchFocusCommands.empty()) {
3919 flags |= eTraversalNeeded;
3920 }
3921
chaviwa911b102019-02-14 10:18:33 -08003922 if (inputWindowCommands.syncInputWindows) {
3923 flags |= eTraversalNeeded;
3924 }
3925
Vishnu Nairec0ab382019-02-13 15:32:56 -08003926 mPendingInputWindowCommands.merge(inputWindowCommands);
chaviw273171b2018-12-26 11:46:30 -08003927 return flags;
3928}
3929
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003930status_t SurfaceFlinger::createLayer(const String8& name, const sp<Client>& client, uint32_t w,
3931 uint32_t h, PixelFormat format, uint32_t flags,
3932 LayerMetadata metadata, sp<IBinder>* handle,
3933 sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent) {
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003934 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003935 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003936 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003937 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003938 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003939
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003940 status_t result = NO_ERROR;
3941
3942 sp<Layer> layer;
3943
Cody Northropbc755282017-03-31 12:00:08 -06003944 String8 uniqueName = getUniqueLayerName(name);
3945
Mathias Agopian3165cc22012-08-08 19:42:09 -07003946 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
Marissa Wall61c58622018-07-18 10:12:20 -07003947 case ISurfaceComposerClient::eFXSurfaceBufferQueue:
Marissa Wallfd668622018-05-10 10:21:13 -07003948 result = createBufferQueueLayer(client, uniqueName, w, h, flags, format, handle, gbp,
3949 &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07003950
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003951 break;
Marissa Wall61c58622018-07-18 10:12:20 -07003952 case ISurfaceComposerClient::eFXSurfaceBufferState:
3953 result = createBufferStateLayer(client, uniqueName, w, h, flags, handle, &layer);
3954 break;
chaviw13fdc492017-06-27 12:40:18 -07003955 case ISurfaceComposerClient::eFXSurfaceColor:
Vishnu Nair88a11f22018-11-28 18:30:57 -08003956 // check if buffer size is set for color layer.
3957 if (w > 0 || h > 0) {
3958 ALOGE("createLayer() failed, w or h cannot be set for color layer (w=%d, h=%d)",
3959 int(w), int(h));
3960 return BAD_VALUE;
3961 }
3962
chaviw13fdc492017-06-27 12:40:18 -07003963 result = createColorLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003964 uniqueName, w, h, flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003965 handle, &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003966 break;
Robert Carr6b3f6c52018-08-13 13:05:17 -07003967 case ISurfaceComposerClient::eFXSurfaceContainer:
Vishnu Nair88a11f22018-11-28 18:30:57 -08003968 // check if buffer size is set for container layer.
3969 if (w > 0 || h > 0) {
3970 ALOGE("createLayer() failed, w or h cannot be set for container layer (w=%d, h=%d)",
3971 int(w), int(h));
3972 return BAD_VALUE;
3973 }
Robert Carr6b3f6c52018-08-13 13:05:17 -07003974 result = createContainerLayer(client,
3975 uniqueName, w, h, flags,
3976 handle, &layer);
3977 break;
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003978 default:
3979 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003980 break;
3981 }
3982
Dan Stoza7d89d062015-04-30 13:29:25 -07003983 if (result != NO_ERROR) {
3984 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003985 }
Dan Stoza7d89d062015-04-30 13:29:25 -07003986
Chia-I Wuab0c3192017-08-01 11:29:00 -07003987 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
3988 // TODO b/64227542
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003989 if (metadata.has(METADATA_WINDOW_TYPE)) {
3990 int32_t windowType = metadata.getInt32(METADATA_WINDOW_TYPE, 0);
3991 if (windowType == 441731) {
3992 metadata.setInt32(METADATA_WINDOW_TYPE, 2024); // TYPE_NAVIGATION_BAR_PANEL
3993 layer->setPrimaryDisplayOnly();
3994 }
Chia-I Wuab0c3192017-08-01 11:29:00 -07003995 }
3996
Evan Roskyef876c92019-01-25 17:46:06 -08003997 layer->setMetadata(metadata);
Albert Chaulk479c60c2017-01-27 14:21:34 -05003998
Robert Carrb89ea9d2018-12-10 13:01:14 -08003999 bool addToCurrentState = callingThreadHasUnscopedSurfaceFlingerAccess();
4000 result = addClientLayer(client, *handle, *gbp, layer, *parent,
4001 addToCurrentState);
Dan Stoza7d89d062015-04-30 13:29:25 -07004002 if (result != NO_ERROR) {
4003 return result;
4004 }
Lloyd Pique4dccc412018-01-22 17:21:36 -08004005 mInterceptor->saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07004006
4007 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004008 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004009}
4010
Cody Northropbc755282017-03-31 12:00:08 -06004011String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
4012{
4013 bool matchFound = true;
4014 uint32_t dupeCounter = 0;
4015
4016 // Tack on our counter whether there is a hit or not, so everyone gets a tag
4017 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
4018
Dan Stoza436ccf32018-06-21 12:10:12 -07004019 // Grab the state lock since we're accessing mCurrentState
4020 Mutex::Autolock lock(mStateLock);
4021
Cody Northropbc755282017-03-31 12:00:08 -06004022 // Loop over layers until we're sure there is no matching name
4023 while (matchFound) {
4024 matchFound = false;
Dan Stoza436ccf32018-06-21 12:10:12 -07004025 mCurrentState.traverseInZOrder([&](Layer* layer) {
Cody Northropbc755282017-03-31 12:00:08 -06004026 if (layer->getName() == uniqueName) {
4027 matchFound = true;
4028 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
4029 }
4030 });
4031 }
4032
Marissa Wallf1de4bd2018-05-22 13:05:01 -07004033 ALOGV_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(),
4034 uniqueName.c_str());
Cody Northropbc755282017-03-31 12:00:08 -06004035
4036 return uniqueName;
4037}
4038
Marissa Wallfd668622018-05-10 10:21:13 -07004039status_t SurfaceFlinger::createBufferQueueLayer(const sp<Client>& client, const String8& name,
4040 uint32_t w, uint32_t h, uint32_t flags,
4041 PixelFormat& format, sp<IBinder>* handle,
4042 sp<IGraphicBufferProducer>* gbp,
4043 sp<Layer>* outLayer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004044 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07004045 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004046 case PIXEL_FORMAT_TRANSPARENT:
4047 case PIXEL_FORMAT_TRANSLUCENT:
4048 format = PIXEL_FORMAT_RGBA_8888;
4049 break;
4050 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07004051 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004052 break;
4053 }
4054
Lloyd Pique42ab75e2018-09-12 20:46:03 -07004055 sp<BufferQueueLayer> layer =
Lloyd Pique90c115d2018-09-18 21:39:42 -07004056 getFactory().createBufferQueueLayer(LayerCreationArgs(this, client, name, w, h, flags));
Marissa Wallfd668622018-05-10 10:21:13 -07004057 status_t err = layer->setDefaultBufferProperties(w, h, format);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004058 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07004059 *handle = layer->getHandle();
4060 *gbp = layer->getProducer();
4061 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004062 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004063
Marissa Wallfd668622018-05-10 10:21:13 -07004064 ALOGE_IF(err, "createBufferQueueLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004065 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004066}
4067
Marissa Wall61c58622018-07-18 10:12:20 -07004068status_t SurfaceFlinger::createBufferStateLayer(const sp<Client>& client, const String8& name,
4069 uint32_t w, uint32_t h, uint32_t flags,
4070 sp<IBinder>* handle, sp<Layer>* outLayer) {
Lloyd Pique42ab75e2018-09-12 20:46:03 -07004071 sp<BufferStateLayer> layer =
Lloyd Pique90c115d2018-09-18 21:39:42 -07004072 getFactory().createBufferStateLayer(LayerCreationArgs(this, client, name, w, h, flags));
Marissa Wall61c58622018-07-18 10:12:20 -07004073 *handle = layer->getHandle();
4074 *outLayer = layer;
4075
4076 return NO_ERROR;
4077}
4078
chaviw13fdc492017-06-27 12:40:18 -07004079status_t SurfaceFlinger::createColorLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004080 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
David Sodman0c69cad2017-08-21 12:12:51 -07004081 sp<IBinder>* handle, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004082{
Lloyd Pique90c115d2018-09-18 21:39:42 -07004083 *outLayer = getFactory().createColorLayer(LayerCreationArgs(this, client, name, w, h, flags));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004084 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004085 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07004086}
4087
Robert Carr6b3f6c52018-08-13 13:05:17 -07004088status_t SurfaceFlinger::createContainerLayer(const sp<Client>& client,
4089 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
4090 sp<IBinder>* handle, sp<Layer>* outLayer)
4091{
Lloyd Pique90c115d2018-09-18 21:39:42 -07004092 *outLayer =
4093 getFactory().createContainerLayer(LayerCreationArgs(this, client, name, w, h, flags));
Robert Carr6b3f6c52018-08-13 13:05:17 -07004094 *handle = (*outLayer)->getHandle();
4095 return NO_ERROR;
4096}
4097
4098
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004099void SurfaceFlinger::markLayerPendingRemovalLocked(const sp<Layer>& layer) {
Robert Carr2e102c92018-10-23 12:11:15 -07004100 mLayersPendingRemoval.add(layer);
4101 mLayersRemoved = true;
4102 setTransactionFlags(eTransactionNeeded);
4103}
4104
Robert Carr695d5282018-12-18 15:27:58 -08004105void SurfaceFlinger::onHandleDestroyed(sp<Layer>& layer)
Rob Carr4bba3702018-10-08 21:53:30 +00004106{
Robert Carr2e102c92018-10-23 12:11:15 -07004107 Mutex::Autolock lock(mStateLock);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004108 // If a layer has a parent, we allow it to out-live it's handle
4109 // with the idea that the parent holds a reference and will eventually
4110 // be cleaned up. However no one cleans up the top-level so we do so
4111 // here.
4112 if (layer->getParent() == nullptr) {
4113 mCurrentState.layersSortedByZ.remove(layer);
4114 }
4115 markLayerPendingRemovalLocked(layer);
Robert Carr695d5282018-12-18 15:27:58 -08004116 layer.clear();
Rob Carr4bba3702018-10-08 21:53:30 +00004117}
4118
Mathias Agopianb60314a2012-04-10 22:09:54 -07004119// ---------------------------------------------------------------------------
4120
Andy McFadden13a082e2012-08-24 10:16:42 -07004121void SurfaceFlinger::onInitializeDisplays() {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004122 const auto display = getDefaultDisplayDeviceLocked();
4123 if (!display) return;
4124
4125 const sp<IBinder> token = display->getDisplayToken().promote();
4126 LOG_ALWAYS_FATAL_IF(token == nullptr);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004127
Jesse Hall01e29052013-02-19 16:13:35 -08004128 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07004129 Vector<ComposerState> state;
4130 Vector<DisplayState> displays;
4131 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08004132 d.what = DisplayState::eDisplayProjectionChanged |
4133 DisplayState::eLayerStackChanged;
Dominik Laskowski83b88212018-12-11 13:34:06 -08004134 d.token = token;
Jesse Hall01e29052013-02-19 16:13:35 -08004135 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004136 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07004137 d.frame.makeInvalid();
4138 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07004139 d.width = 0;
4140 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004141 displays.add(d);
Vishnu Nairec0ab382019-02-13 15:32:56 -08004142 setTransactionState(state, displays, 0, nullptr, mPendingInputWindowCommands, -1);
Jamie Gennis6547ff42013-07-16 20:12:42 -07004143
Dominik Laskowskie9774092018-12-11 10:04:24 -08004144 setPowerModeInternal(display, HWC_POWER_MODE_NORMAL);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004145
Dominik Laskowski83b88212018-12-11 13:34:06 -08004146 const nsecs_t vsyncPeriod = getVsyncPeriod();
4147 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08004148
Brian Andersond0010582017-03-07 13:20:31 -08004149 // Use phase of 0 since phase is not known.
4150 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004151 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07004152 setCompositorTimingSnapped(stats, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07004153}
4154
4155void SurfaceFlinger::initializeDisplays() {
Dominik Laskowski8c001672018-05-30 16:52:06 -07004156 // Async since we may be called from the main thread.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004157 postMessageAsync(
4158 new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS { onInitializeDisplays(); }));
Andy McFadden13a082e2012-08-24 10:16:42 -07004159}
4160
Dominik Laskowskie9774092018-12-11 10:04:24 -08004161void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& display, int mode) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004162 if (display->isVirtual()) {
4163 ALOGE("%s: Invalid operation on virtual display", __FUNCTION__);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004164 return;
4165 }
4166
Dominik Laskowski075d3172018-05-24 15:50:06 -07004167 const auto displayId = display->getId();
4168 LOG_ALWAYS_FATAL_IF(!displayId);
4169
Dominik Laskowski34157762018-10-31 13:07:19 -07004170 ALOGD("Setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004171
4172 int currentMode = display->getPowerMode();
4173 if (mode == currentMode) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004174 return;
4175 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004176
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004177 display->setPowerMode(mode);
4178
Lloyd Pique4dccc412018-01-22 17:21:36 -08004179 if (mInterceptor->isEnabled()) {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004180 mInterceptor->savePowerModeUpdate(display->getSequenceId(), mode);
Irvelffc9efc2016-07-27 15:16:37 -07004181 }
4182
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004183 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004184 // Turn on the display
Dominik Laskowski075d3172018-05-24 15:50:06 -07004185 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004186 if (display->isPrimary() && mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004187 mScheduler->onScreenAcquired(mAppConnectionHandle);
4188 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004189 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004190
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004191 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08004192 mHasPoweredOff = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07004193 repaintEverything();
Tim Murrayf9d4e442016-08-02 15:43:59 -07004194
4195 struct sched_param param = {0};
4196 param.sched_priority = 1;
4197 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
4198 ALOGW("Couldn't set SCHED_FIFO on display on");
4199 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004200 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004201 // Turn off the display
4202 struct sched_param param = {0};
4203 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
4204 ALOGW("Couldn't set SCHED_OTHER on display off");
4205 }
4206
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004207 if (display->isPrimary() && currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004208 mScheduler->disableHardwareVsync(true);
4209 mScheduler->onScreenReleased(mAppConnectionHandle);
Mathias Agopiancde87a32012-09-13 14:09:01 -07004210 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004211
Dominik Laskowski075d3172018-05-24 15:50:06 -07004212 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004213 mVisibleRegionsDirty = true;
4214 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07004215 } else if (mode == HWC_POWER_MODE_DOZE ||
4216 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004217 // Update display while dozing
Dominik Laskowski075d3172018-05-24 15:50:06 -07004218 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004219 if (display->isPrimary() && currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004220 mScheduler->onScreenAcquired(mAppConnectionHandle);
4221 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004222 }
4223 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
4224 // Leave display going to doze
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004225 if (display->isPrimary()) {
Ana Krulecc2870422019-01-29 19:00:58 -08004226 mScheduler->disableHardwareVsync(true);
4227 mScheduler->onScreenReleased(mAppConnectionHandle);
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004228 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07004229 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004230 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07004231 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Dominik Laskowski075d3172018-05-24 15:50:06 -07004232 getHwComposer().setPowerMode(*displayId, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004233 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004234
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004235 if (display->isPrimary()) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08004236 mTimeStats->setPowerMode(mode);
Ana Krulecc2870422019-01-29 19:00:58 -08004237 if (mRefreshRateStats) {
Ana Krulecb43429d2019-01-09 14:28:51 -08004238 // Update refresh rate stats.
4239 mRefreshRateStats->setPowerMode(mode);
4240 }
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004241 }
4242
Dominik Laskowski34157762018-10-31 13:07:19 -07004243 ALOGD("Finished setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004244}
4245
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004246void SurfaceFlinger::setPowerMode(const sp<IBinder>& displayToken, int mode) {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004247 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004248 const auto display = getDisplayDevice(displayToken);
4249 if (!display) {
4250 ALOGE("Attempt to set power mode %d for invalid display token %p", mode,
4251 displayToken.get());
4252 } else if (display->isVirtual()) {
4253 ALOGW("Attempt to set power mode %d for virtual display", mode);
4254 } else {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004255 setPowerModeInternal(display, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004256 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004257 }));
Mathias Agopianb60314a2012-04-10 22:09:54 -07004258}
4259
4260// ---------------------------------------------------------------------------
4261
Dominik Laskowskic2867142019-01-21 11:33:38 -08004262status_t SurfaceFlinger::doDump(int fd, const DumpArgs& args,
4263 bool asProto) NO_THREAD_SAFETY_ANALYSIS {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004264 std::string result;
Mathias Agopian99b49842011-06-27 16:05:52 -07004265
Mathias Agopianbd115332013-04-18 16:41:04 -07004266 IPCThreadState* ipc = IPCThreadState::self();
4267 const int pid = ipc->getCallingPid();
4268 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07004269
Mathias Agopianbd115332013-04-18 16:41:04 -07004270 if ((uid != AID_SHELL) &&
4271 !PermissionCache::checkPermission(sDump, pid, uid)) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004272 StringAppendF(&result, "Permission Denial: can't dump SurfaceFlinger from pid=%d, uid=%d\n",
4273 pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004274 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08004275 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07004276 // (this would indicate SF is stuck, but we want to be able to
4277 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08004278 status_t err = mStateLock.timedLock(s2ns(1));
4279 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07004280 if (!locked) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004281 StringAppendF(&result,
4282 "SurfaceFlinger appears to be unresponsive (%s [%d]), dumping anyways "
4283 "(no locks held)\n",
4284 strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07004285 }
4286
Dominik Laskowskic2867142019-01-21 11:33:38 -08004287 using namespace std::string_literals;
chaviwa3d7bd32017-11-03 09:41:53 -07004288
Dominik Laskowskic2867142019-01-21 11:33:38 -08004289 static const std::unordered_map<std::string, Dumper> dumpers = {
4290 {"--clear-layer-stats"s, dumper([this](std::string&) { mLayerStats.clear(); })},
4291 {"--disable-layer-stats"s, dumper([this](std::string&) { mLayerStats.disable(); })},
4292 {"--display-id"s, dumper(&SurfaceFlinger::dumpDisplayIdentificationData)},
Ady Abraham3aff9172019-02-07 19:10:26 -08004293 {"--dispsync"s, dumper([this](std::string& s) {
Ady Abraham3aff9172019-02-07 19:10:26 -08004294 mScheduler->dumpPrimaryDispSync(s);
Ady Abraham3aff9172019-02-07 19:10:26 -08004295 })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004296 {"--dump-layer-stats"s, dumper([this](std::string& s) { mLayerStats.dump(s); })},
4297 {"--enable-layer-stats"s, dumper([this](std::string&) { mLayerStats.enable(); })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004298 {"--frame-events"s, dumper(&SurfaceFlinger::dumpFrameEventsLocked)},
4299 {"--latency"s, argsDumper(&SurfaceFlinger::dumpStatsLocked)},
4300 {"--latency-clear"s, argsDumper(&SurfaceFlinger::clearStatsLocked)},
4301 {"--list"s, dumper(&SurfaceFlinger::listLayersLocked)},
4302 {"--static-screen"s, dumper(&SurfaceFlinger::dumpStaticScreenStats)},
4303 {"--timestats"s, protoDumper(&SurfaceFlinger::dumpTimeStats)},
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004304 {"--vsync"s, dumper(&SurfaceFlinger::dumpVSync)},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004305 {"--wide-color"s, dumper(&SurfaceFlinger::dumpWideColorInfo)},
4306 };
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004307
Dominik Laskowskic2867142019-01-21 11:33:38 -08004308 const auto flag = args.empty() ? ""s : std::string(String8(args[0]));
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004309
Dominik Laskowskic2867142019-01-21 11:33:38 -08004310 if (const auto it = dumpers.find(flag); it != dumpers.end()) {
4311 (it->second)(args, asProto, result);
4312 } else {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004313 if (asProto) {
4314 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4315 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
4316 } else {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004317 dumpAllLocked(args, result);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004318 }
Mathias Agopian48b888a2011-01-19 16:15:53 -08004319 }
4320
Mathias Agopian9795c422009-08-26 16:36:26 -07004321 if (locked) {
4322 mStateLock.unlock();
4323 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004324 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004325 write(fd, result.c_str(), result.size());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004326 return NO_ERROR;
4327}
4328
Dominik Laskowskic2867142019-01-21 11:33:38 -08004329void SurfaceFlinger::listLayersLocked(std::string& result) const {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004330 mCurrentState.traverseInZOrder(
4331 [&](Layer* layer) { StringAppendF(&result, "%s\n", layer->getName().string()); });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004332}
4333
Dominik Laskowskic2867142019-01-21 11:33:38 -08004334void SurfaceFlinger::dumpStatsLocked(const DumpArgs& args, std::string& result) const {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004335 StringAppendF(&result, "%" PRId64 "\n", getVsyncPeriod());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004336
Dominik Laskowskic2867142019-01-21 11:33:38 -08004337 if (args.size() > 1) {
4338 const auto name = String8(args[1]);
Robert Carr2047fae2016-11-28 14:09:09 -08004339 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004340 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004341 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004342 }
Robert Carr2047fae2016-11-28 14:09:09 -08004343 });
Dominik Laskowskic2867142019-01-21 11:33:38 -08004344 } else {
4345 mAnimFrameTracker.dumpStats(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004346 }
4347}
4348
Dominik Laskowskic2867142019-01-21 11:33:38 -08004349void SurfaceFlinger::clearStatsLocked(const DumpArgs& args, std::string&) {
Robert Carr2047fae2016-11-28 14:09:09 -08004350 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004351 if (args.size() < 2 || String8(args[1]) == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004352 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004353 }
Robert Carr2047fae2016-11-28 14:09:09 -08004354 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004355
Svetoslavd85084b2014-03-20 10:28:31 -07004356 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004357}
4358
Dominik Laskowskic2867142019-01-21 11:33:38 -08004359void SurfaceFlinger::dumpTimeStats(const DumpArgs& args, bool asProto, std::string& result) const {
4360 mTimeStats->parseArgs(asProto, args, result);
4361}
4362
Jamie Gennis6547ff42013-07-16 20:12:42 -07004363// This should only be called from the main thread. Otherwise it would need
4364// the lock and should use mCurrentState rather than mDrawingState.
4365void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08004366 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07004367 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08004368 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07004369
4370 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
4371}
4372
Yiwei Zhang5434a782018-12-05 18:06:32 -08004373void SurfaceFlinger::appendSfConfigString(std::string& result) const {
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004374 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07004375
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004376 if (isLayerTripleBufferingDisabled())
4377 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07004378
Yiwei Zhang5434a782018-12-05 18:06:32 -08004379 StringAppendF(&result, " PRESENT_TIME_OFFSET=%" PRId64, dispSyncPresentTimeOffset);
4380 StringAppendF(&result, " FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
4381 StringAppendF(&result, " MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
4382 StringAppendF(&result, " RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
4383 StringAppendF(&result, " NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
4384 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004385 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07004386}
4387
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004388void SurfaceFlinger::dumpVSync(std::string& result) const {
Ana Krulec757f63a2019-01-25 10:46:18 -08004389 mPhaseOffsets->dump(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004390 StringAppendF(&result,
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004391 " present offset: %9" PRId64 " ns\t VSYNC period: %9" PRId64 " ns\n\n",
Ana Krulec757f63a2019-01-25 10:46:18 -08004392 dispSyncPresentTimeOffset, getVsyncPeriod());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004393
Ana Krulecba13ab32019-02-20 14:14:12 -08004394 StringAppendF(&result, "Scheduler enabled. 90Hz feature: %s\n", mUse90Hz ? "on" : "off");
4395 StringAppendF(&result, "+ Smart 90 for video detection: %s\n\n",
4396 mUseSmart90ForVideo ? "on" : "off");
Ana Krulecc2870422019-01-29 19:00:58 -08004397 mScheduler->dump(mAppConnectionHandle, result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004398}
4399
Yiwei Zhang5434a782018-12-05 18:06:32 -08004400void SurfaceFlinger::dumpStaticScreenStats(std::string& result) const {
4401 result.append("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08004402 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
4403 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004404 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004405 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004406 StringAppendF(&result, " < %zd frames: %.3f s (%.1f%%)\n", b + 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004407 }
David Sodman4a36e932017-11-07 14:29:47 -08004408 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004409 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004410 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004411 StringAppendF(&result, " %zd+ frames: %.3f s (%.1f%%)\n", SurfaceFlingerBE::NUM_BUCKETS - 1,
4412 bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004413}
4414
Dan Stozae77c7662016-05-13 11:37:28 -07004415void SurfaceFlinger::recordBufferingStats(const char* layerName,
4416 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08004417 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
4418 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07004419 for (const auto& segment : history) {
4420 if (!segment.usedThirdBuffer) {
4421 stats.twoBufferTime += segment.totalTime;
4422 }
4423 if (segment.occupancyAverage < 1.0f) {
4424 stats.doubleBufferedTime += segment.totalTime;
4425 } else if (segment.occupancyAverage < 2.0f) {
4426 stats.tripleBufferedTime += segment.totalTime;
4427 }
4428 ++stats.numSegments;
4429 stats.totalTime += segment.totalTime;
4430 }
4431}
4432
Yiwei Zhang5434a782018-12-05 18:06:32 -08004433void SurfaceFlinger::dumpFrameEventsLocked(std::string& result) {
4434 result.append("Layer frame timestamps:\n");
Brian Andersond6927fb2016-07-23 23:37:30 -07004435
4436 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
4437 const size_t count = currentLayers.size();
4438 for (size_t i=0 ; i<count ; i++) {
4439 currentLayers[i]->dumpFrameEvents(result);
4440 }
4441}
4442
Yiwei Zhang5434a782018-12-05 18:06:32 -08004443void SurfaceFlinger::dumpBufferingStats(std::string& result) const {
Dan Stozae77c7662016-05-13 11:37:28 -07004444 result.append("Buffering stats:\n");
4445 result.append(" [Layer name] <Active time> <Two buffer> "
4446 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08004447 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07004448 typedef std::tuple<std::string, float, float, float> BufferTuple;
4449 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08004450 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07004451 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08004452 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07004453 if (stats.numSegments == 0) {
4454 continue;
4455 }
4456 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
4457 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
4458 stats.totalTime;
4459 float doubleBufferRatio = static_cast<float>(
4460 stats.doubleBufferedTime) / stats.totalTime;
4461 float tripleBufferRatio = static_cast<float>(
4462 stats.tripleBufferedTime) / stats.totalTime;
4463 sorted.insert({activeTime, {name, twoBufferRatio,
4464 doubleBufferRatio, tripleBufferRatio}});
4465 }
4466 for (const auto& sortedPair : sorted) {
4467 float activeTime = sortedPair.first;
4468 const BufferTuple& values = sortedPair.second;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004469 StringAppendF(&result, " [%s] %.2f %.3f %.3f %.3f\n", std::get<0>(values).c_str(),
4470 activeTime, std::get<1>(values), std::get<2>(values), std::get<3>(values));
Dan Stozae77c7662016-05-13 11:37:28 -07004471 }
4472 result.append("\n");
4473}
4474
Yiwei Zhang5434a782018-12-05 18:06:32 -08004475void SurfaceFlinger::dumpDisplayIdentificationData(std::string& result) const {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004476 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004477 const auto displayId = display->getId();
4478 if (!displayId) {
4479 continue;
4480 }
4481 const auto hwcDisplayId = getHwComposer().fromPhysicalDisplayId(*displayId);
Dominik Laskowski7e045462018-05-30 13:02:02 -07004482 if (!hwcDisplayId) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004483 continue;
4484 }
4485
Yiwei Zhang5434a782018-12-05 18:06:32 -08004486 StringAppendF(&result,
4487 "Display %s (HWC display %" PRIu64 "): ", to_string(*displayId).c_str(),
4488 *hwcDisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004489 uint8_t port;
4490 DisplayIdentificationData data;
Dominik Laskowski7e045462018-05-30 13:02:02 -07004491 if (!getHwComposer().getDisplayIdentificationData(*hwcDisplayId, &port, &data)) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004492 result.append("no identification data\n");
4493 continue;
4494 }
4495
4496 if (!isEdid(data)) {
4497 result.append("unknown identification data: ");
4498 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004499 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004500 }
4501 result.append("\n");
4502 continue;
4503 }
4504
4505 const auto edid = parseEdid(data);
4506 if (!edid) {
4507 result.append("invalid EDID: ");
4508 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004509 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004510 }
4511 result.append("\n");
4512 continue;
4513 }
4514
Yiwei Zhang5434a782018-12-05 18:06:32 -08004515 StringAppendF(&result, "port=%u pnpId=%s displayName=\"", port, edid->pnpId.data());
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004516 result.append(edid->displayName.data(), edid->displayName.length());
4517 result.append("\"\n");
4518 }
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004519}
4520
Yiwei Zhang5434a782018-12-05 18:06:32 -08004521void SurfaceFlinger::dumpWideColorInfo(std::string& result) const {
4522 StringAppendF(&result, "Device has wide color display: %d\n", hasWideColorDisplay);
4523 StringAppendF(&result, "Device uses color management: %d\n", useColorManagement);
4524 StringAppendF(&result, "DisplayColorSetting: %s\n",
4525 decodeDisplayColorSetting(mDisplayColorSetting).c_str());
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004526
4527 // TODO: print out if wide-color mode is active or not
4528
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004529 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004530 const auto displayId = display->getId();
4531 if (!displayId) {
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004532 continue;
4533 }
4534
Yiwei Zhang5434a782018-12-05 18:06:32 -08004535 StringAppendF(&result, "Display %s color modes:\n", to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004536 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004537 for (auto&& mode : modes) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004538 StringAppendF(&result, " %s (%d)\n", decodeColorMode(mode).c_str(), mode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004539 }
4540
Lloyd Pique32cbe282018-10-19 13:09:22 -07004541 ColorMode currentMode = display->getCompositionDisplay()->getState().colorMode;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004542 StringAppendF(&result, " Current color mode: %s (%d)\n",
4543 decodeColorMode(currentMode).c_str(), currentMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004544 }
4545 result.append("\n");
4546}
4547
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004548LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet) const {
chaviw1d044282017-09-27 12:19:28 -07004549 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004550 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
4551 const State& state = useDrawing ? mDrawingState : mCurrentState;
4552 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07004553 LayerProto* layerProto = layersProto.add_layers();
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004554 layer->writeToProto(layerProto, stateSet);
chaviw1d044282017-09-27 12:19:28 -07004555 });
4556
4557 return layersProto;
4558}
4559
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004560LayersProto SurfaceFlinger::dumpVisibleLayersProtoInfo(
4561 const sp<DisplayDevice>& displayDevice) const {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004562 LayersProto layersProto;
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004563
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004564 SizeProto* resolution = layersProto.mutable_resolution();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004565 resolution->set_w(displayDevice->getWidth());
4566 resolution->set_h(displayDevice->getHeight());
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004567
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004568 auto display = displayDevice->getCompositionDisplay();
Lloyd Pique32cbe282018-10-19 13:09:22 -07004569 const auto& displayState = display->getState();
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004570
Lloyd Pique32cbe282018-10-19 13:09:22 -07004571 layersProto.set_color_mode(decodeColorMode(displayState.colorMode));
4572 layersProto.set_color_transform(decodeColorTransform(displayState.colorTransform));
4573 layersProto.set_global_transform(displayState.orientation);
4574
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004575 const auto displayId = displayDevice->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004576 LOG_ALWAYS_FATAL_IF(!displayId);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004577 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004578 if (!layer->visibleRegion.isEmpty() && !display->getOutputLayersOrderedByZ().empty()) {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004579 LayerProto* layerProto = layersProto.add_layers();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004580 layer->writeToProto(layerProto, displayDevice);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004581 }
4582 });
4583
4584 return layersProto;
4585}
4586
Dominik Laskowskic2867142019-01-21 11:33:38 -08004587void SurfaceFlinger::dumpAllLocked(const DumpArgs& args, std::string& result) const {
4588 const bool colorize = !args.empty() && args[0] == String16("--color");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004589 Colorizer colorizer(colorize);
4590
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004591 // figure out if we're stuck somewhere
4592 const nsecs_t now = systemTime();
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004593 const nsecs_t inTransaction(mDebugInTransaction);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004594 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
4595
4596 /*
Andy McFadden4803b742012-09-24 19:07:20 -07004597 * Dump library configuration.
4598 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004599
4600 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004601 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004602 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004603 appendSfConfigString(result);
4604 appendUiConfigString(result);
4605 appendGuiConfigString(result);
4606 result.append("\n");
4607
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004608 result.append("\nDisplay identification data:\n");
4609 dumpDisplayIdentificationData(result);
4610
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004611 result.append("\nWide-Color information:\n");
4612 dumpWideColorInfo(result);
4613
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004614 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004615 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004616 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004617 result.append(SyncFeatures::getInstance().toString());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004618 result.append("\n\n");
Mathias Agopianca088332013-03-28 17:44:13 -07004619
Andy McFadden41d67d72014-04-25 16:58:34 -07004620 colorizer.bold(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004621 result.append("VSYNC configuration:\n");
Andy McFadden41d67d72014-04-25 16:58:34 -07004622 colorizer.reset(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004623 dumpVSync(result);
Dan Stozab90cf072015-03-05 11:05:59 -08004624 result.append("\n");
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004625
Dan Stozab90cf072015-03-05 11:05:59 -08004626 dumpStaticScreenStats(result);
4627 result.append("\n");
4628
Yiwei Zhang5434a782018-12-05 18:06:32 -08004629 StringAppendF(&result, "Missed frame count: %u\n\n", mFrameMissedCount.load());
Marissa Wallcfcdaa52018-05-21 15:45:59 -07004630
Dan Stozae77c7662016-05-13 11:37:28 -07004631 dumpBufferingStats(result);
4632
Andy McFadden4803b742012-09-24 19:07:20 -07004633 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004634 * Dump the visible layer list
4635 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004636 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004637 StringAppendF(&result, "Visible layers (count = %zu)\n", mNumLayers);
4638 StringAppendF(&result, "GraphicBufferProducers: %zu, max %zu\n",
4639 mGraphicBufferProducerList.size(), mMaxGraphicBufferProducerListSize);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004640 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07004641
Chia-I Wu2f884132018-09-13 15:17:58 -07004642 {
4643 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4644 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004645 result.append(LayerProtoParser::layerTreeToString(layerTree));
Chia-I Wu2f884132018-09-13 15:17:58 -07004646 result.append("\n");
4647 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004648
4649 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004650 * Dump Display state
4651 */
4652
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004653 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004654 StringAppendF(&result, "Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004655 colorizer.reset(result);
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004656 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004657 display->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004658 }
Chia-I Wu1e043612018-03-01 09:45:09 -08004659 result.append("\n");
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004660
4661 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004662 * Dump SurfaceFlinger global state
4663 */
4664
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004665 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004666 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004667 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004668
Lloyd Piqueb97e04f2018-10-18 17:07:05 -07004669 getRenderEngine().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004670
Dominik Laskowski075d3172018-05-24 15:50:06 -07004671 if (const auto display = getDefaultDisplayDeviceLocked()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07004672 display->getCompositionDisplay()->getState().undefinedRegion.dump(result,
4673 "undefinedRegion");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004674 StringAppendF(&result, " orientation=%d, isPoweredOn=%d\n", display->getOrientation(),
4675 display->isPoweredOn());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08004676 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004677 StringAppendF(&result,
4678 " transaction-flags : %08x\n"
4679 " gpu_to_cpu_unsupported : %d\n",
4680 mTransactionFlags.load(), !mGpuToCpuSupported);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004681
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08004682 if (const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004683 displayId && getHwComposer().isConnected(*displayId)) {
4684 const auto activeConfig = getHwComposer().getActiveConfig(*displayId);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004685 StringAppendF(&result,
4686 " refresh-rate : %f fps\n"
4687 " x-dpi : %f\n"
4688 " y-dpi : %f\n",
4689 1e9 / activeConfig->getVsyncPeriod(), activeConfig->getDpiX(),
4690 activeConfig->getDpiY());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004691 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004692
Yiwei Zhang5434a782018-12-05 18:06:32 -08004693 StringAppendF(&result, " transaction time: %f us\n", inTransactionDuration / 1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004694
Dan Stozae22aec72016-08-01 13:20:59 -07004695 /*
Yichi Chenadc69612018-09-15 14:51:18 +08004696 * Tracing state
4697 */
4698 mTracing.dump(result);
4699 result.append("\n");
4700
4701 /*
Dan Stozae22aec72016-08-01 13:20:59 -07004702 * HWC layer minidump
4703 */
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004704 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004705 const auto displayId = display->getId();
4706 if (!displayId) {
Dan Stozae22aec72016-08-01 13:20:59 -07004707 continue;
4708 }
4709
Yiwei Zhang5434a782018-12-05 18:06:32 -08004710 StringAppendF(&result, "Display %s HWC layers:\n", to_string(*displayId).c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07004711 Layer::miniDumpHeader(result);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004712 const sp<DisplayDevice> displayDevice = display;
4713 mCurrentState.traverseInZOrder(
4714 [&](Layer* layer) { layer->miniDump(result, displayDevice); });
Dan Stozae22aec72016-08-01 13:20:59 -07004715 result.append("\n");
4716 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004717
4718 /*
4719 * Dump HWComposer state
4720 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004721 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004722 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004723 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004724 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004725 StringAppendF(&result, " h/w composer %s\n", hwcDisabled ? "disabled" : "enabled");
Dominik Laskowski075d3172018-05-24 15:50:06 -07004726 getHwComposer().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004727
4728 /*
4729 * Dump gralloc state
4730 */
4731 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
4732 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004733
4734 /*
4735 * Dump VrFlinger state if in use.
4736 */
4737 if (mVrFlingerRequestsDisplay && mVrFlinger) {
4738 result.append("VrFlinger state:\n");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004739 result.append(mVrFlinger->Dump());
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004740 result.append("\n");
4741 }
Ana Krulecb43429d2019-01-09 14:28:51 -08004742
4743 /**
4744 * Scheduler dump state.
4745 */
Ana Krulecc2870422019-01-29 19:00:58 -08004746 result.append("\nScheduler state:\n");
4747 result.append(mScheduler->doDump() + "\n");
4748 result.append(mRefreshRateStats->doDump() + "\n");
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004749}
4750
Dominik Laskowski075d3172018-05-24 15:50:06 -07004751const Vector<sp<Layer>>& SurfaceFlinger::getLayerSortedByZForHwcDisplay(DisplayId displayId) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07004752 // Note: mStateLock is held here
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004753 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski7e045462018-05-30 13:02:02 -07004754 if (display->getId() == displayId) {
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004755 return getDisplayDeviceLocked(token)->getVisibleLayersSortedByZ();
Jesse Hall48bc05b2013-03-21 14:06:52 -07004756 }
4757 }
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004758
Dominik Laskowski34157762018-10-31 13:07:19 -07004759 ALOGE("%s: Invalid display %s", __FUNCTION__, to_string(displayId).c_str());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004760 static const Vector<sp<Layer>> empty;
4761 return empty;
Mathias Agopiancb558572012-10-04 15:58:54 -07004762}
4763
Chia-I Wu28f320b2018-05-03 11:02:56 -07004764void SurfaceFlinger::updateColorMatrixLocked() {
4765 mat4 colorMatrix;
4766 if (mGlobalSaturationFactor != 1.0f) {
4767 // Rec.709 luma coefficients
4768 float3 luminance{0.213f, 0.715f, 0.072f};
4769 luminance *= 1.0f - mGlobalSaturationFactor;
4770 mat4 saturationMatrix = mat4(
4771 vec4{luminance.r + mGlobalSaturationFactor, luminance.r, luminance.r, 0.0f},
4772 vec4{luminance.g, luminance.g + mGlobalSaturationFactor, luminance.g, 0.0f},
4773 vec4{luminance.b, luminance.b, luminance.b + mGlobalSaturationFactor, 0.0f},
4774 vec4{0.0f, 0.0f, 0.0f, 1.0f}
4775 );
4776 colorMatrix = mClientColorMatrix * saturationMatrix * mDaltonizer();
4777 } else {
4778 colorMatrix = mClientColorMatrix * mDaltonizer();
4779 }
4780
4781 if (mCurrentState.colorMatrix != colorMatrix) {
4782 mCurrentState.colorMatrix = colorMatrix;
4783 mCurrentState.colorMatrixChanged = true;
4784 setTransactionFlags(eTransactionNeeded);
4785 }
4786}
4787
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004788status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004789#pragma clang diagnostic push
4790#pragma clang diagnostic error "-Wswitch-enum"
4791 switch (static_cast<ISurfaceComposerTag>(code)) {
4792 // These methods should at minimum make sure that the client requested
4793 // access to SF.
Dan Stozae3344402018-08-20 19:53:42 +00004794 case BOOT_FINISHED:
4795 case CLEAR_ANIMATION_FRAME_STATS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004796 case CREATE_DISPLAY:
4797 case DESTROY_DISPLAY:
Dan Stozae3344402018-08-20 19:53:42 +00004798 case ENABLE_VSYNC_INJECTIONS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004799 case GET_ACTIVE_COLOR_MODE:
4800 case GET_ANIMATION_FRAME_STATS:
4801 case GET_HDR_CAPABILITIES:
4802 case SET_ACTIVE_CONFIG:
Ady Abraham838de062019-02-04 10:24:03 -08004803 case SET_ALLOWED_DISPLAY_CONFIGS:
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08004804 case GET_ALLOWED_DISPLAY_CONFIGS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004805 case SET_ACTIVE_COLOR_MODE:
Chia-I Wu90f669f2017-10-05 14:24:41 -07004806 case INJECT_VSYNC:
Kevin DuBois9c0a1762018-10-16 13:32:31 -07004807 case SET_POWER_MODE:
Kevin DuBois74e53772018-11-19 10:52:38 -08004808 case GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES:
Kevin DuBois1d4249a2018-08-29 10:45:14 -07004809 case SET_DISPLAY_CONTENT_SAMPLING_ENABLED:
4810 case GET_DISPLAYED_CONTENT_SAMPLE: {
Robert Carrd4ae7f32018-06-07 16:10:57 -07004811 if (!callingThreadHasUnscopedSurfaceFlingerAccess()) {
4812 IPCThreadState* ipc = IPCThreadState::self();
4813 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d",
4814 ipc->getCallingPid(), ipc->getCallingUid());
Mathias Agopian375f5632009-06-15 18:24:59 -07004815 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004816 }
Robert Carr1db73f62016-12-21 12:58:51 -08004817 return OK;
4818 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004819 case GET_LAYER_DEBUG_INFO: {
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004820 IPCThreadState* ipc = IPCThreadState::self();
4821 const int pid = ipc->getCallingPid();
4822 const int uid = ipc->getCallingUid();
Ana Krulec13be8ad2018-08-21 02:43:56 +00004823 if ((uid != AID_SHELL) && !PermissionCache::checkPermission(sDump, pid, uid)) {
4824 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004825 return PERMISSION_DENIED;
4826 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004827 return OK;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004828 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004829 // Used by apps to hook Choreographer to SurfaceFlinger.
4830 case CREATE_DISPLAY_EVENT_CONNECTION:
4831 // The following calls are currently used by clients that do not
4832 // request necessary permissions. However, they do not expose any secret
4833 // information, so it is OK to pass them.
4834 case AUTHENTICATE_SURFACE:
4835 case GET_ACTIVE_CONFIG:
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08004836 case GET_PHYSICAL_DISPLAY_IDS:
4837 case GET_PHYSICAL_DISPLAY_TOKEN:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004838 case GET_DISPLAY_COLOR_MODES:
Daniel Solomon42d04562019-01-20 21:03:19 -08004839 case GET_DISPLAY_NATIVE_PRIMARIES:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004840 case GET_DISPLAY_CONFIGS:
4841 case GET_DISPLAY_STATS:
4842 case GET_SUPPORTED_FRAME_TIMESTAMPS:
4843 // Calling setTransactionState is safe, because you need to have been
4844 // granted a reference to Client* and Handle* to do anything with it.
4845 case SET_TRANSACTION_STATE:
Robert Carrb89ea9d2018-12-10 13:01:14 -08004846 case CREATE_CONNECTION:
Ady Abraham37965d42018-11-01 13:43:32 -07004847 case GET_COLOR_MANAGEMENT:
Peiyong Lin3c2791e2019-01-14 17:05:18 -08004848 case GET_COMPOSITION_PREFERENCE:
Marissa Wallebc2c052019-01-16 19:16:55 -08004849 case GET_PROTECTED_CONTENT_SUPPORT:
chaviw291d88a2019-02-14 10:33:58 -08004850 case IS_WIDE_COLOR_DISPLAY: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004851 return OK;
4852 }
4853 case CAPTURE_LAYERS:
Dan Stoza84ab9372018-12-17 15:27:57 -08004854 case CAPTURE_SCREEN:
4855 case ADD_REGION_SAMPLING_LISTENER:
4856 case REMOVE_REGION_SAMPLING_LISTENER: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004857 // codes that require permission check
chaviwa76b2712017-09-20 12:02:26 -07004858 IPCThreadState* ipc = IPCThreadState::self();
4859 const int pid = ipc->getCallingPid();
4860 const int uid = ipc->getCallingUid();
4861 if ((uid != AID_GRAPHICS) &&
4862 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
4863 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
4864 return PERMISSION_DENIED;
4865 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004866 return OK;
4867 }
4868 // The following codes are deprecated and should never be allowed to access SF.
4869 case CONNECT_DISPLAY_UNUSED:
4870 case CREATE_GRAPHIC_BUFFER_ALLOC_UNUSED: {
4871 ALOGE("Attempting to access SurfaceFlinger with unused code: %u", code);
4872 return PERMISSION_DENIED;
chaviwa76b2712017-09-20 12:02:26 -07004873 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004874 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004875
4876 // These codes are used for the IBinder protocol to either interrogate the recipient
4877 // side of the transaction for its canonical interface descriptor or to dump its state.
4878 // We let them pass by default.
4879 if (code == IBinder::INTERFACE_TRANSACTION || code == IBinder::DUMP_TRANSACTION ||
4880 code == IBinder::PING_TRANSACTION || code == IBinder::SHELL_COMMAND_TRANSACTION ||
4881 code == IBinder::SYSPROPS_TRANSACTION) {
4882 return OK;
4883 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08004884 // Numbers from 1000 to 1032 are currently use for backdoors. The code
Ana Krulec13be8ad2018-08-21 02:43:56 +00004885 // in onTransact verifies that the user is root, and has access to use SF.
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08004886 if (code >= 1000 && code <= 1032) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004887 ALOGV("Accessing SurfaceFlinger through backdoor code: %u", code);
4888 return OK;
4889 }
4890 ALOGE("Permission Denial: SurfaceFlinger did not recognize request code: %u", code);
4891 return PERMISSION_DENIED;
4892#pragma clang diagnostic pop
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004893}
4894
Ana Krulec13be8ad2018-08-21 02:43:56 +00004895status_t SurfaceFlinger::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
4896 uint32_t flags) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004897 status_t credentialCheck = CheckTransactCodeCredentials(code);
4898 if (credentialCheck != OK) {
4899 return credentialCheck;
4900 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004901
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004902 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
4903 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07004904 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07004905 IPCThreadState* ipc = IPCThreadState::self();
4906 const int uid = ipc->getCallingUid();
4907 if (CC_UNLIKELY(uid != AID_SYSTEM
4908 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07004909 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00004910 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07004911 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004912 return PERMISSION_DENIED;
4913 }
4914 int n;
4915 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07004916 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07004917 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004918 return NO_ERROR;
4919 case 1002: // SHOW_UPDATES
4920 n = data.readInt32();
4921 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07004922 invalidateHwcGeometry();
4923 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004924 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004925 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07004926 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004927 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004928 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004929 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07004930 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07004931 setTransactionFlags(
4932 eTransactionNeeded|
4933 eDisplayTransactionNeeded|
4934 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004935 return NO_ERROR;
4936 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08004937 case 1006:{ // send empty update
4938 signalRefresh();
4939 return NO_ERROR;
4940 }
Mathias Agopian53331da2011-08-22 21:44:41 -07004941 case 1008: // toggle use of hw composer
4942 n = data.readInt32();
4943 mDebugDisableHWC = n ? 1 : 0;
4944 invalidateHwcGeometry();
4945 repaintEverything();
4946 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07004947 case 1009: // toggle use of transform hint
4948 n = data.readInt32();
4949 mDebugDisableTransformHint = n ? 1 : 0;
4950 invalidateHwcGeometry();
4951 repaintEverything();
4952 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004953 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07004954 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004955 reply->writeInt32(0);
4956 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07004957 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08004958 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004959 return NO_ERROR;
4960 case 1013: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004961 const auto display = getDefaultDisplayDevice();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004962 if (!display) {
4963 return NAME_NOT_FOUND;
4964 }
4965
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004966 reply->writeInt32(display->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07004967 return NO_ERROR;
4968 }
4969 case 1014: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07004970 Mutex::Autolock _l(mStateLock);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004971 // daltonize
4972 n = data.readInt32();
4973 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004974 case 1:
4975 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
4976 break;
4977 case 2:
4978 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
4979 break;
4980 case 3:
4981 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
4982 break;
4983 default:
4984 mDaltonizer.setType(ColorBlindnessType::None);
4985 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07004986 }
4987 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004988 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004989 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004990 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004991 }
Chia-I Wu28f320b2018-05-03 11:02:56 -07004992
4993 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004994 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004995 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004996 case 1015: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07004997 Mutex::Autolock _l(mStateLock);
Alan Viverette9c5a3332013-09-12 20:04:35 -07004998 // apply a color matrix
4999 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005000 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07005001 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07005002 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005003 for (size_t j = 0; j < 4; j++) {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005004 mClientColorMatrix[i][j] = data.readFloat();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005005 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005006 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005007 } else {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005008 mClientColorMatrix = mat4();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005009 }
Romain Guy88d37dd2017-05-26 17:57:05 -07005010
5011 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
5012 // the division by w in the fragment shader
Chia-I Wu28f320b2018-05-03 11:02:56 -07005013 float4 lastRow(transpose(mClientColorMatrix)[3]);
Romain Guy88d37dd2017-05-26 17:57:05 -07005014 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
5015 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
5016 }
5017
Chia-I Wu28f320b2018-05-03 11:02:56 -07005018 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005019 return NO_ERROR;
5020 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005021 // This is an experimental interface
5022 // Needs to be shifted to proper binder interface when we productize
5023 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07005024 n = data.readInt32();
Ana Krulece588e312018-09-18 12:32:24 -07005025 // TODO(b/113612090): Evaluate if this can be removed.
Ana Krulecc2870422019-01-29 19:00:58 -08005026 mScheduler->setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005027 return NO_ERROR;
5028 }
Dan Stozaee44edd2015-03-23 15:50:23 -07005029 case 1017: {
5030 n = data.readInt32();
5031 mForceFullDamage = static_cast<bool>(n);
5032 return NO_ERROR;
5033 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005034 case 1018: { // Modify Choreographer's phase offset
5035 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005036 mScheduler->setPhaseOffset(mAppConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005037 return NO_ERROR;
5038 }
5039 case 1019: { // Modify SurfaceFlinger's phase offset
5040 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005041 mScheduler->setPhaseOffset(mSfConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005042 return NO_ERROR;
5043 }
Irvel468051e2016-06-13 16:44:44 -07005044 case 1020: { // Layer updates interceptor
5045 n = data.readInt32();
5046 if (n) {
5047 ALOGV("Interceptor enabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005048 mInterceptor->enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07005049 }
5050 else{
5051 ALOGV("Interceptor disabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005052 mInterceptor->disable();
Irvel468051e2016-06-13 16:44:44 -07005053 }
5054 return NO_ERROR;
5055 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07005056 case 1021: { // Disable HWC virtual displays
5057 n = data.readInt32();
5058 mUseHwcVirtualDisplays = !n;
5059 return NO_ERROR;
5060 }
Romain Guy0147a172017-06-01 13:53:56 -07005061 case 1022: { // Set saturation boost
Chia-I Wu28f320b2018-05-03 11:02:56 -07005062 Mutex::Autolock _l(mStateLock);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005063 mGlobalSaturationFactor = std::max(0.0f, std::min(data.readFloat(), 2.0f));
Romain Guy0147a172017-06-01 13:53:56 -07005064
Chia-I Wu28f320b2018-05-03 11:02:56 -07005065 updateColorMatrixLocked();
Romain Guy0147a172017-06-01 13:53:56 -07005066 return NO_ERROR;
5067 }
Romain Guy54f154a2017-10-24 21:40:32 +01005068 case 1023: { // Set native mode
Chia-I Wu0d711262018-05-21 15:19:35 -07005069 mDisplayColorSetting = static_cast<DisplayColorSetting>(data.readInt32());
Romain Guy54f154a2017-10-24 21:40:32 +01005070 invalidateHwcGeometry();
5071 repaintEverything();
5072 return NO_ERROR;
5073 }
Peiyong Lin4bac91c2018-10-25 09:48:33 -07005074 // Deprecate, use 1030 to check whether the device is color managed.
5075 case 1024: {
5076 return NAME_NOT_FOUND;
Romain Guy54f154a2017-10-24 21:40:32 +01005077 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005078 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01005079 n = data.readInt32();
5080 if (n) {
Yichi Chenadc69612018-09-15 14:51:18 +08005081 ALOGD("LayerTracing enabled");
Adrian Roos1e1a1282017-11-01 19:05:31 +01005082 mTracing.enable();
5083 doTracing("tracing.enable");
5084 reply->writeInt32(NO_ERROR);
5085 } else {
Yichi Chenadc69612018-09-15 14:51:18 +08005086 ALOGD("LayerTracing disabled");
Adrian Roos1e1a1282017-11-01 19:05:31 +01005087 status_t err = mTracing.disable();
5088 reply->writeInt32(err);
5089 }
5090 return NO_ERROR;
5091 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005092 case 1026: { // Get layer tracing status
5093 reply->writeBool(mTracing.isEnabled());
5094 return NO_ERROR;
5095 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005096 // Is a DisplayColorSetting supported?
5097 case 1027: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005098 const auto display = getDefaultDisplayDevice();
5099 if (!display) {
Chia-I Wu0d711262018-05-21 15:19:35 -07005100 return NAME_NOT_FOUND;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005101 }
Chia-I Wu0d711262018-05-21 15:19:35 -07005102
5103 DisplayColorSetting setting = static_cast<DisplayColorSetting>(data.readInt32());
5104 switch (setting) {
5105 case DisplayColorSetting::MANAGED:
Peiyong Lin13effd12018-07-24 17:01:47 -07005106 reply->writeBool(useColorManagement);
Chia-I Wu0d711262018-05-21 15:19:35 -07005107 break;
5108 case DisplayColorSetting::UNMANAGED:
5109 reply->writeBool(true);
5110 break;
5111 case DisplayColorSetting::ENHANCED:
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005112 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE));
Chia-I Wu0d711262018-05-21 15:19:35 -07005113 break;
5114 default: // vendor display color setting
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005115 reply->writeBool(
5116 display->hasRenderIntent(static_cast<RenderIntent>(setting)));
Chia-I Wu0d711262018-05-21 15:19:35 -07005117 break;
5118 }
5119 return NO_ERROR;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005120 }
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005121 // Is VrFlinger active?
5122 case 1028: {
5123 Mutex::Autolock _l(mStateLock);
Lloyd Pique441d5042018-10-18 16:49:51 -07005124 reply->writeBool(getHwComposer().isUsingVrComposer());
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005125 return NO_ERROR;
5126 }
Peiyong Lin13effd12018-07-24 17:01:47 -07005127 // Is device color managed?
5128 case 1030: {
5129 reply->writeBool(useColorManagement);
5130 return NO_ERROR;
5131 }
Peiyong Lin9d846a52018-11-05 13:18:20 -08005132 // Override default composition data space
5133 // adb shell service call SurfaceFlinger 1031 i32 1 DATASPACE_NUMBER DATASPACE_NUMBER \
5134 // && adb shell stop zygote && adb shell start zygote
5135 // to restore: adb shell service call SurfaceFlinger 1031 i32 0 && \
5136 // adb shell stop zygote && adb shell start zygote
5137 case 1031: {
5138 Mutex::Autolock _l(mStateLock);
5139 n = data.readInt32();
5140 if (n) {
5141 n = data.readInt32();
5142 if (n) {
5143 Dataspace dataspace = static_cast<Dataspace>(n);
5144 if (!validateCompositionDataspace(dataspace)) {
5145 return BAD_VALUE;
5146 }
5147 mDefaultCompositionDataspace = dataspace;
5148 }
5149 n = data.readInt32();
5150 if (n) {
5151 Dataspace dataspace = static_cast<Dataspace>(n);
5152 if (!validateCompositionDataspace(dataspace)) {
5153 return BAD_VALUE;
5154 }
5155 mWideColorGamutCompositionDataspace = dataspace;
5156 }
5157 } else {
5158 // restore composition data space.
5159 mDefaultCompositionDataspace = defaultCompositionDataspace;
5160 mWideColorGamutCompositionDataspace = wideColorGamutCompositionDataspace;
5161 }
5162 return NO_ERROR;
5163 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005164 case 1032: {
5165 n = data.readInt32();
5166 mDebugEnableProtectedContent = n;
5167 return NO_ERROR;
5168 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005169 }
5170 }
5171 return err;
5172}
5173
Steven Thomas6d8110b2017-08-31 18:24:21 -07005174void SurfaceFlinger::repaintEverything() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07005175 mRepaintEverything = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07005176 signalTransaction();
Steven Thomas6d8110b2017-08-31 18:24:21 -07005177}
5178
Ana Krulec7d1d6832018-12-27 11:10:09 -08005179void SurfaceFlinger::repaintEverythingForHWC() {
5180 mRepaintEverything = true;
5181 mEventQueue->invalidateForHWC();
5182}
5183
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005184// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
5185class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005186public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005187 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
5188 ~WindowDisconnector() {
5189 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005190 }
5191
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005192private:
5193 ANativeWindow* mWindow;
5194 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005195};
5196
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005197status_t SurfaceFlinger::captureScreen(const sp<IBinder>& displayToken,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005198 sp<GraphicBuffer>* outBuffer, const Dataspace reqDataspace,
5199 const ui::PixelFormat reqPixelFormat, Rect sourceCrop,
chaviw0e3479f2018-09-10 16:49:30 -07005200 uint32_t reqWidth, uint32_t reqHeight,
5201 bool useIdentityTransform,
Robert Carrfa8855f2019-02-19 10:05:00 -08005202 ISurfaceComposer::Rotation rotation,
5203 bool captureSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005204 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005205
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005206 if (!displayToken) return BAD_VALUE;
chaviwa76b2712017-09-20 12:02:26 -07005207
Chia-I Wuc80dcbb2018-08-24 15:34:02 -07005208 auto renderAreaRotation = fromSurfaceComposerRotation(rotation);
5209
Chia-I Wu20261cb2018-08-23 12:55:44 -07005210 sp<DisplayDevice> display;
5211 {
5212 Mutex::Autolock _l(mStateLock);
Garfield Tan3b1b8af2018-03-16 17:37:33 -07005213
Chia-I Wu20261cb2018-08-23 12:55:44 -07005214 display = getDisplayDeviceLocked(displayToken);
5215 if (!display) return BAD_VALUE;
5216
Chia-I Wucb023152018-08-28 12:57:23 -07005217 // set the requested width/height to the logical display viewport size
5218 // by default
5219 if (reqWidth == 0 || reqHeight == 0) {
5220 reqWidth = uint32_t(display->getViewport().width());
5221 reqHeight = uint32_t(display->getViewport().height());
Chia-I Wu20261cb2018-08-23 12:55:44 -07005222 }
Yiwei Zhang06a58e22018-08-20 16:42:23 -07005223 }
5224
Peiyong Lin0e003c92018-09-17 11:09:51 -07005225 DisplayRenderArea renderArea(display, sourceCrop, reqWidth, reqHeight, reqDataspace,
Robert Carrfa8855f2019-02-19 10:05:00 -08005226 renderAreaRotation, captureSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005227
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08005228 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5229 std::placeholders::_1);
Peiyong Lin0e003c92018-09-17 11:09:51 -07005230 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat,
5231 useIdentityTransform);
chaviwa76b2712017-09-20 12:02:26 -07005232}
5233
5234status_t SurfaceFlinger::captureLayers(const sp<IBinder>& layerHandleBinder,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005235 sp<GraphicBuffer>* outBuffer, const Dataspace reqDataspace,
5236 const ui::PixelFormat reqPixelFormat, const Rect& sourceCrop,
Robert Carr578038f2018-03-09 12:25:24 -08005237 float frameScale, bool childrenOnly) {
chaviwa76b2712017-09-20 12:02:26 -07005238 ATRACE_CALL();
5239
5240 class LayerRenderArea : public RenderArea {
5241 public:
Robert Carr578038f2018-03-09 12:25:24 -08005242 LayerRenderArea(SurfaceFlinger* flinger, const sp<Layer>& layer, const Rect crop,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005243 int32_t reqWidth, int32_t reqHeight, Dataspace reqDataSpace,
5244 bool childrenOnly)
5245 : RenderArea(reqWidth, reqHeight, CaptureFill::CLEAR, reqDataSpace),
Robert Carr578038f2018-03-09 12:25:24 -08005246 mLayer(layer),
5247 mCrop(crop),
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005248 mNeedsFiltering(false),
Robert Carr578038f2018-03-09 12:25:24 -08005249 mFlinger(flinger),
5250 mChildrenOnly(childrenOnly) {}
Peiyong Linefefaac2018-08-17 12:27:51 -07005251 const ui::Transform& getTransform() const override { return mTransform; }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005252 Rect getBounds() const override {
5253 const Layer::State& layerState(mLayer->getDrawingState());
5254 return mLayer->getBufferSize(layerState);
5255 }
Marissa Wall61c58622018-07-18 10:12:20 -07005256 int getHeight() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005257 return mLayer->getBufferSize(mLayer->getDrawingState()).getHeight();
Marissa Wall61c58622018-07-18 10:12:20 -07005258 }
Vishnu Nair88a11f22018-11-28 18:30:57 -08005259 int getWidth() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005260 return mLayer->getBufferSize(mLayer->getDrawingState()).getWidth();
Vishnu Nair88a11f22018-11-28 18:30:57 -08005261 }
chaviwa76b2712017-09-20 12:02:26 -07005262 bool isSecure() const override { return false; }
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005263 bool needsFiltering() const override { return mNeedsFiltering; }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005264 const sp<const DisplayDevice> getDisplayDevice() const override { return nullptr; }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005265 Rect getSourceCrop() const override {
5266 if (mCrop.isEmpty()) {
5267 return getBounds();
5268 } else {
5269 return mCrop;
5270 }
5271 }
Robert Carr578038f2018-03-09 12:25:24 -08005272 class ReparentForDrawing {
5273 public:
5274 const sp<Layer>& oldParent;
5275 const sp<Layer>& newParent;
5276
Vishnu Nair4351ad52019-02-11 14:13:02 -08005277 ReparentForDrawing(const sp<Layer>& oldParent, const sp<Layer>& newParent,
5278 const Rect& drawingBounds)
Robert Carr578038f2018-03-09 12:25:24 -08005279 : oldParent(oldParent), newParent(newParent) {
Vishnu Nair4351ad52019-02-11 14:13:02 -08005280 // Compute and cache the bounds for the new parent layer.
5281 newParent->computeBounds(drawingBounds.toFloatRect(), ui::Transform());
Robert Carr15eae092018-03-23 13:43:53 -07005282 oldParent->setChildrenDrawingParent(newParent);
Robert Carr578038f2018-03-09 12:25:24 -08005283 }
Vishnu Nairbce6ffd2019-02-14 10:58:59 -08005284 ~ReparentForDrawing() { oldParent->setChildrenDrawingParent(oldParent); }
Robert Carr578038f2018-03-09 12:25:24 -08005285 };
5286
5287 void render(std::function<void()> drawLayers) override {
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005288 const Rect sourceCrop = getSourceCrop();
5289 // no need to check rotation because there is none
5290 mNeedsFiltering = sourceCrop.width() != getReqWidth() ||
5291 sourceCrop.height() != getReqHeight();
5292
Robert Carr578038f2018-03-09 12:25:24 -08005293 if (!mChildrenOnly) {
5294 mTransform = mLayer->getTransform().inverse();
5295 drawLayers();
5296 } else {
5297 Rect bounds = getBounds();
Lloyd Pique90c115d2018-09-18 21:39:42 -07005298 screenshotParentLayer = mFlinger->getFactory().createContainerLayer(
Lloyd Pique42ab75e2018-09-12 20:46:03 -07005299 LayerCreationArgs(mFlinger, nullptr, String8("Screenshot Parent"),
5300 bounds.getWidth(), bounds.getHeight(), 0));
Robert Carr578038f2018-03-09 12:25:24 -08005301
Vishnu Nair4351ad52019-02-11 14:13:02 -08005302 ReparentForDrawing reparent(mLayer, screenshotParentLayer, sourceCrop);
Robert Carr578038f2018-03-09 12:25:24 -08005303 drawLayers();
5304 }
5305 }
chaviwa76b2712017-09-20 12:02:26 -07005306
chaviwa76b2712017-09-20 12:02:26 -07005307 private:
chaviw7206d492017-11-10 16:16:12 -08005308 const sp<Layer> mLayer;
5309 const Rect mCrop;
Robert Carr578038f2018-03-09 12:25:24 -08005310
5311 // In the "childrenOnly" case we reparent the children to a screenshot
5312 // layer which has no properties set and which does not draw.
5313 sp<ContainerLayer> screenshotParentLayer;
Peiyong Linefefaac2018-08-17 12:27:51 -07005314 ui::Transform mTransform;
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005315 bool mNeedsFiltering;
Robert Carr578038f2018-03-09 12:25:24 -08005316
5317 SurfaceFlinger* mFlinger;
5318 const bool mChildrenOnly;
chaviwa76b2712017-09-20 12:02:26 -07005319 };
5320
5321 auto layerHandle = reinterpret_cast<Layer::Handle*>(layerHandleBinder.get());
5322 auto parent = layerHandle->owner.promote();
5323
Robert Carr2e102c92018-10-23 12:11:15 -07005324 if (parent == nullptr || parent->isRemovedFromCurrentState()) {
chaviw7206d492017-11-10 16:16:12 -08005325 ALOGE("captureLayers called with a removed parent");
5326 return NAME_NOT_FOUND;
5327 }
5328
Robert Carr578038f2018-03-09 12:25:24 -08005329 const int uid = IPCThreadState::self()->getCallingUid();
5330 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005331 if (!forSystem && parent->getCurrentState().flags & layer_state_t::eLayerSecure) {
Robert Carr578038f2018-03-09 12:25:24 -08005332 ALOGW("Attempting to capture secure layer: PERMISSION_DENIED");
5333 return PERMISSION_DENIED;
5334 }
5335
chaviw7206d492017-11-10 16:16:12 -08005336 Rect crop(sourceCrop);
5337 if (sourceCrop.width() <= 0) {
5338 crop.left = 0;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005339 crop.right = parent->getBufferSize(parent->getCurrentState()).getWidth();
chaviw7206d492017-11-10 16:16:12 -08005340 }
5341
5342 if (sourceCrop.height() <= 0) {
5343 crop.top = 0;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005344 crop.bottom = parent->getBufferSize(parent->getCurrentState()).getHeight();
chaviw7206d492017-11-10 16:16:12 -08005345 }
5346
5347 int32_t reqWidth = crop.width() * frameScale;
5348 int32_t reqHeight = crop.height() * frameScale;
5349
Chia-I Wu20261cb2018-08-23 12:55:44 -07005350 // really small crop or frameScale
5351 if (reqWidth <= 0) {
5352 reqWidth = 1;
5353 }
5354 if (reqHeight <= 0) {
5355 reqHeight = 1;
5356 }
5357
Peiyong Lin0e003c92018-09-17 11:09:51 -07005358 LayerRenderArea renderArea(this, parent, crop, reqWidth, reqHeight, reqDataspace, childrenOnly);
chaviw7206d492017-11-10 16:16:12 -08005359
Robert Carr578038f2018-03-09 12:25:24 -08005360 auto traverseLayers = [parent, childrenOnly](const LayerVector::Visitor& visitor) {
chaviwa76b2712017-09-20 12:02:26 -07005361 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
5362 if (!layer->isVisible()) {
5363 return;
Robert Carr578038f2018-03-09 12:25:24 -08005364 } else if (childrenOnly && layer == parent.get()) {
5365 return;
chaviwa76b2712017-09-20 12:02:26 -07005366 }
5367 visitor(layer);
5368 });
5369 };
Peiyong Lin0e003c92018-09-17 11:09:51 -07005370 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat, false);
chaviwa76b2712017-09-20 12:02:26 -07005371}
5372
5373status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5374 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005375 sp<GraphicBuffer>* outBuffer,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005376 const ui::PixelFormat reqPixelFormat,
chaviwa76b2712017-09-20 12:02:26 -07005377 bool useIdentityTransform) {
5378 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005379
Peiyong Lin0e003c92018-09-17 11:09:51 -07005380 // TODO(b/116112787) Make buffer usage a parameter.
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005381 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
5382 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Lloyd Pique90c115d2018-09-18 21:39:42 -07005383 *outBuffer =
5384 getFactory().createGraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
5385 static_cast<android_pixel_format>(reqPixelFormat), 1,
5386 usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005387
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005388 return captureScreenCommon(renderArea, traverseLayers, *outBuffer, useIdentityTransform);
Dan Stozaec460082018-12-17 15:35:09 -08005389}
5390
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005391status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5392 TraverseLayersFunction traverseLayers,
5393 const sp<GraphicBuffer>& buffer,
5394 bool useIdentityTransform) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005395 // This mutex protects syncFd and captureResult for communication of the return values from the
5396 // main thread back to this Binder thread
5397 std::mutex captureMutex;
5398 std::condition_variable captureCondition;
5399 std::unique_lock<std::mutex> captureLock(captureMutex);
5400 int syncFd = -1;
5401 std::optional<status_t> captureResult;
5402
Robert Carr03480e22018-01-04 16:02:06 -08005403 const int uid = IPCThreadState::self()->getCallingUid();
5404 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5405
Dominik Laskowski8c001672018-05-30 16:52:06 -07005406 sp<LambdaMessage> message = new LambdaMessage([&] {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005407 // If there is a refresh pending, bug out early and tell the binder thread to try again
5408 // after the refresh.
5409 if (mRefreshPending) {
5410 ATRACE_NAME("Skipping screenshot for now");
5411 std::unique_lock<std::mutex> captureLock(captureMutex);
5412 captureResult = std::make_optional<status_t>(EAGAIN);
5413 captureCondition.notify_one();
5414 return;
5415 }
5416
5417 status_t result = NO_ERROR;
5418 int fd = -1;
5419 {
5420 Mutex::Autolock _l(mStateLock);
Dominik Laskowski8c001672018-05-30 16:52:06 -07005421 renderArea.render([&] {
Dan Stozaec460082018-12-17 15:35:09 -08005422 result = captureScreenImplLocked(renderArea, traverseLayers, buffer.get(),
Robert Carr578038f2018-03-09 12:25:24 -08005423 useIdentityTransform, forSystem, &fd);
5424 });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005425 }
5426
5427 {
5428 std::unique_lock<std::mutex> captureLock(captureMutex);
5429 syncFd = fd;
5430 captureResult = std::make_optional<status_t>(result);
5431 captureCondition.notify_one();
5432 }
5433 });
5434
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005435 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005436 if (result == NO_ERROR) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07005437 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005438 while (*captureResult == EAGAIN) {
5439 captureResult.reset();
5440 result = postMessageAsync(message);
5441 if (result != NO_ERROR) {
5442 return result;
5443 }
Dominik Laskowski8c001672018-05-30 16:52:06 -07005444 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005445 }
5446 result = *captureResult;
5447 }
5448
5449 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005450 sync_wait(syncFd, -1);
5451 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005452 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005453
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005454 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005455}
5456
chaviwa76b2712017-09-20 12:02:26 -07005457void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
Chia-I Wu1be50b52018-08-29 10:44:48 -07005458 TraverseLayersFunction traverseLayers,
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005459 ANativeWindowBuffer* buffer, bool useIdentityTransform,
5460 int* outSyncFd) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07005461 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07005462
chaviwa76b2712017-09-20 12:02:26 -07005463 const auto reqWidth = renderArea.getReqWidth();
5464 const auto reqHeight = renderArea.getReqHeight();
Chia-I Wuf2aa3112018-08-27 14:54:37 -07005465 const auto sourceCrop = renderArea.getSourceCrop();
5466 const auto rotation = renderArea.getRotationFlags();
Dan Stozac1879002014-05-22 15:59:05 -07005467
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005468 renderengine::DisplaySettings clientCompositionDisplay;
5469 std::vector<renderengine::LayerSettings> clientCompositionLayers;
Romain Guy88d37dd2017-05-26 17:57:05 -07005470
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005471 // assume that bounds are never offset, and that they are the same as the
5472 // buffer bounds.
5473 clientCompositionDisplay.physicalDisplay = Rect(reqWidth, reqHeight);
5474 ui::Transform transform = renderArea.getTransform();
5475 mat4 m;
5476 m[0][0] = transform[0][0];
5477 m[0][1] = transform[0][1];
5478 m[0][3] = transform[0][2];
5479 m[1][0] = transform[1][0];
5480 m[1][1] = transform[1][1];
5481 m[1][3] = transform[1][2];
5482 m[3][0] = transform[2][0];
5483 m[3][1] = transform[2][1];
5484 m[3][3] = transform[2][2];
Mathias Agopian180f10d2013-04-10 22:55:41 -07005485
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005486 clientCompositionDisplay.globalTransform = m;
5487 mat4 rotMatrix;
5488 // Displacement for repositioning the clipping rectangle after rotating it
5489 // with the rotation hint.
5490 int displacementX = 0;
5491 int displacementY = 0;
5492 float rot90InRadians = 2.0f * static_cast<float>(M_PI) / 4.0f;
5493 switch (rotation) {
5494 case ui::Transform::ROT_90:
5495 rotMatrix = mat4::rotate(rot90InRadians, vec3(0, 0, 1));
5496 displacementX = reqWidth;
5497 break;
5498 case ui::Transform::ROT_180:
5499 rotMatrix = mat4::rotate(rot90InRadians * 2.0f, vec3(0, 0, 1));
5500 displacementX = reqWidth;
5501 displacementY = reqHeight;
5502 break;
5503 case ui::Transform::ROT_270:
5504 rotMatrix = mat4::rotate(rot90InRadians * 3.0f, vec3(0, 0, 1));
5505 displacementY = reqHeight;
5506 break;
5507 default:
5508 break;
5509 }
5510 // We need to transform the clipping window into the right spot.
5511 // First, rotate the clipping rectangle by the rotation hint to get the
5512 // right orientation
5513 const vec4 clipTL = vec4(sourceCrop.left, sourceCrop.top, 0, 1);
5514 const vec4 clipBR = vec4(sourceCrop.right, sourceCrop.bottom, 0, 1);
5515 const vec4 rotClipTL = rotMatrix * clipTL;
5516 const vec4 rotClipBR = rotMatrix * clipBR;
5517 const int newClipLeft = std::min(rotClipTL[0], rotClipBR[0]);
5518 const int newClipTop = std::min(rotClipTL[1], rotClipBR[1]);
5519 const int newClipRight = std::max(rotClipTL[0], rotClipBR[0]);
5520 const int newClipBottom = std::max(rotClipTL[1], rotClipBR[1]);
5521
5522 // Now reposition the clipping rectangle with the displacement vector
5523 // computed above.
5524 const mat4 displacementMat = mat4::translate(vec4(displacementX, displacementY, 0, 1));
5525
5526 clientCompositionDisplay.clip =
5527 Rect(newClipLeft + displacementX, newClipTop + displacementY,
5528 newClipRight + displacementX, newClipBottom + displacementY);
5529
5530 // We need to perform the same transformation in layer space, so propagate
5531 // it to the global transform.
5532 mat4 clipTransform = displacementMat * rotMatrix;
5533 clientCompositionDisplay.globalTransform *= clipTransform;
5534 clientCompositionDisplay.outputDataspace = renderArea.getReqDataSpace();
5535 clientCompositionDisplay.maxLuminance = DisplayDevice::sDefaultMaxLumiance;
Mathias Agopian180f10d2013-04-10 22:55:41 -07005536
chaviw50da5042018-04-09 13:49:37 -07005537 const float alpha = RenderArea::getCaptureFillValue(renderArea.getCaptureFill());
Mathias Agopian180f10d2013-04-10 22:55:41 -07005538
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005539 renderengine::LayerSettings fillLayer;
5540 fillLayer.source.buffer.buffer = nullptr;
5541 fillLayer.source.solidColor = half3(0.0, 0.0, 0.0);
5542 fillLayer.geometry.boundaries = FloatRect(0.0, 0.0, 1.0, 1.0);
5543 fillLayer.alpha = half(alpha);
5544 clientCompositionLayers.push_back(fillLayer);
5545
5546 Region clearRegion = Region::INVALID_REGION;
chaviwa76b2712017-09-20 12:02:26 -07005547 traverseLayers([&](Layer* layer) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005548 renderengine::LayerSettings layerSettings;
5549 bool prepared = layer->prepareClientLayer(renderArea, useIdentityTransform, clearRegion,
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005550 false, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005551 if (prepared) {
5552 clientCompositionLayers.push_back(layerSettings);
5553 }
chaviwa76b2712017-09-20 12:02:26 -07005554 });
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005555
5556 clientCompositionDisplay.clearRegion = clearRegion;
Alec Mouri6338c9d2019-02-07 16:57:51 -08005557 // Use an empty fence for the buffer fence, since we just created the buffer so
5558 // there is no need for synchronization with the GPU.
5559 base::unique_fd bufferFence;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005560 base::unique_fd drawFence;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005561 getRenderEngine().useProtectedContext(false);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005562 getRenderEngine().drawLayers(clientCompositionDisplay, clientCompositionLayers, buffer,
Alec Mouri6338c9d2019-02-07 16:57:51 -08005563 std::move(bufferFence), &drawFence);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005564
5565 *outSyncFd = drawFence.release();
Mathias Agopian180f10d2013-04-10 22:55:41 -07005566}
5567
chaviwa76b2712017-09-20 12:02:26 -07005568status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
5569 TraverseLayersFunction traverseLayers,
5570 ANativeWindowBuffer* buffer,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005571 bool useIdentityTransform,
Robert Carr03480e22018-01-04 16:02:06 -08005572 bool forSystem,
chaviwa76b2712017-09-20 12:02:26 -07005573 int* outSyncFd) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005574 ATRACE_CALL();
5575
Pablo Ceballosb5b35632016-02-23 11:18:51 -08005576 bool secureLayerIsVisible = false;
chaviwa76b2712017-09-20 12:02:26 -07005577
5578 traverseLayers([&](Layer* layer) {
5579 secureLayerIsVisible = secureLayerIsVisible || (layer->isVisible() && layer->isSecure());
5580 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08005581
Robert Carr03480e22018-01-04 16:02:06 -08005582 // We allow the system server to take screenshots of secure layers for
5583 // use in situations like the Screen-rotation animation and place
5584 // the impetus on WindowManager to not persist them.
5585 if (secureLayerIsVisible && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08005586 ALOGW("FB is protected: PERMISSION_DENIED");
5587 return PERMISSION_DENIED;
5588 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005589 renderScreenImplLocked(renderArea, traverseLayers, buffer, useIdentityTransform, outSyncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005590 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07005591}
5592
chaviw95ef3c42019-02-14 10:55:09 -08005593void SurfaceFlinger::setInputWindowsFinished() {
5594 Mutex::Autolock _l(mStateLock);
5595
5596 mPendingSyncInputWindows = false;
5597 mTransactionCV.broadcast();
5598}
chaviw5f21a5e2019-02-14 10:00:34 -08005599
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005600// ---------------------------------------------------------------------------
5601
Dan Stoza412903f2017-04-27 13:42:17 -07005602void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
5603 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07005604}
5605
Dan Stoza412903f2017-04-27 13:42:17 -07005606void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
5607 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07005608}
5609
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005610void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& display,
chaviwa76b2712017-09-20 12:02:26 -07005611 const LayerVector::Visitor& visitor) {
5612 // We loop through the first level of layers without traversing,
chaviw0e3479f2018-09-10 16:49:30 -07005613 // as we need to determine which layers belong to the requested display.
chaviwa76b2712017-09-20 12:02:26 -07005614 for (const auto& layer : mDrawingState.layersSortedByZ) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005615 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
chaviwa76b2712017-09-20 12:02:26 -07005616 continue;
5617 }
Chia-I Wuec2d9852017-11-21 09:21:01 -08005618 // relative layers are traversed in Layer::traverseInZOrder
chaviwa76b2712017-09-20 12:02:26 -07005619 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005620 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01005621 return;
5622 }
chaviwa76b2712017-09-20 12:02:26 -07005623 if (!layer->isVisible()) {
5624 return;
5625 }
5626 visitor(layer);
5627 });
5628 }
5629}
5630
Ady Abraham838de062019-02-04 10:24:03 -08005631void SurfaceFlinger::setAllowedDisplayConfigsInternal(
5632 const android::sp<android::IBinder>& displayToken,
5633 std::unique_ptr<const AllowedDisplayConfigs>&& allowedConfigs) {
5634 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5635 if (!displayId) {
5636 ALOGE("setAllowedDisplayConfigsInternal: getPhysicalDisplayId failed");
5637 return;
5638 }
5639
5640 ALOGV("Updating allowed configs");
5641 {
5642 std::lock_guard lock(mAllowedConfigsLock);
5643 mAllowedConfigs[*displayId] = std::move(allowedConfigs);
5644 }
5645
5646 // make sure that the current config is still allowed
5647 int currentConfigIndex = getHwComposer().getActiveConfigIndex(*displayId);
5648 if (!isConfigAllowed(*displayId, currentConfigIndex)) {
Ady Abraham1902d072019-03-01 17:18:59 -08005649 for (const auto& [type, config] : mRefreshRateConfigs[*displayId]->getRefreshRates()) {
5650 if (isConfigAllowed(*displayId, config.configId)) {
Ady Abraham838de062019-02-04 10:24:03 -08005651 // TODO: we switch to the first allowed config. In the future
5652 // we may want to enhance this logic to pick a similar config
5653 // to the current one
Ady Abraham1902d072019-03-01 17:18:59 -08005654 ALOGV("Old config is not allowed - switching to config %d", config.configId);
5655 setDesiredActiveConfig(displayToken, config.configId, ConfigEvent::Changed);
Ady Abraham838de062019-02-04 10:24:03 -08005656 break;
5657 }
5658 }
5659 }
5660}
5661
5662status_t SurfaceFlinger::setAllowedDisplayConfigs(const android::sp<android::IBinder>& displayToken,
5663 const std::vector<int32_t>& allowedConfigs) {
5664 ATRACE_CALL();
5665
5666 if (!displayToken) {
5667 ALOGE("setAllowedDisplayConfigs: displayToken is null");
5668 return BAD_VALUE;
5669 }
5670
5671 if (!allowedConfigs.size()) {
5672 ALOGE("setAllowedDisplayConfigs: empty config set provided");
5673 return BAD_VALUE;
5674 }
5675
5676 {
5677 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
5678 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5679 if (!displayId) {
5680 ALOGE("setAllowedDisplayConfigs: display not found");
5681 return NAME_NOT_FOUND;
5682 }
5683 }
5684
5685 auto allowedDisplayConfigsBuilder = AllowedDisplayConfigs::Builder();
5686 for (int config : allowedConfigs) {
5687 ALOGV("setAllowedDisplayConfigs: Adding config to the allowed configs = %d", config);
5688 allowedDisplayConfigsBuilder.addConfig(config);
5689 }
5690 auto allowedDisplayConfigs = allowedDisplayConfigsBuilder.build();
5691 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
5692 setAllowedDisplayConfigsInternal(displayToken, std::move(allowedDisplayConfigs));
5693 }));
5694 return NO_ERROR;
5695}
5696
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08005697status_t SurfaceFlinger::getAllowedDisplayConfigs(const android::sp<android::IBinder>& displayToken,
5698 std::vector<int32_t>* outAllowedConfigs) {
5699 ATRACE_CALL();
5700
5701 if (!displayToken) {
5702 ALOGE("getAllowedDisplayConfigs: displayToken is null");
5703 return BAD_VALUE;
5704 }
5705
5706 if (!outAllowedConfigs) {
5707 ALOGE("getAllowedDisplayConfigs: outAllowedConfigs is null");
5708 return BAD_VALUE;
5709 }
5710
5711 ConditionalLock stateLock(mStateLock, std::this_thread::get_id() != mMainThreadId);
5712 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5713 if (!displayId) {
5714 ALOGE("getAllowedDisplayConfigs: display not found");
5715 return NAME_NOT_FOUND;
5716 }
5717
5718 std::lock_guard allowedConfigLock(mAllowedConfigsLock);
5719 auto allowedConfigIterator = mAllowedConfigs.find(displayId.value());
5720 if (allowedConfigIterator != mAllowedConfigs.end()) {
5721 allowedConfigIterator->second->getAllowedConfigs(outAllowedConfigs);
5722 }
5723
5724 return NO_ERROR;
5725}
5726
chaviw291d88a2019-02-14 10:33:58 -08005727// ----------------------------------------------------------------------------
5728
5729void SetInputWindowsListener::onSetInputWindowsFinished() {
5730 mFlinger->setInputWindowsFinished();
5731}
5732
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005733}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07005734
Lloyd Pique074e8122018-07-26 12:57:23 -07005735
Mathias Agopian3f844832013-08-07 21:24:32 -07005736#if defined(__gl_h_)
5737#error "don't include gl/gl.h in this file"
5738#endif
5739
5740#if defined(__gl2_h_)
5741#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08005742#endif