blob: e445eb6bbf01fbe0f0f0aeec6d93ad992370d328 [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);
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800574 setRefreshRateTo(RefreshRateType::PERFORMANCE, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800575 } else {
576 mPhaseOffsets->setRefreshRateType(
577 scheduler::RefreshRateConfigs::RefreshRateType::DEFAULT);
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800578 setRefreshRateTo(RefreshRateType::DEFAULT, Scheduler::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) {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800703 mScheduler->setChangeRefreshRateCallback(
704 [this](RefreshRateType type, Scheduler::ConfigEvent event) {
705 Mutex::Autolock lock(mStateLock);
706 setRefreshRateTo(type, event);
707 });
Kevin DuBois36233132019-02-19 14:08:55 -0800708 }
Ady Abraham1902d072019-03-01 17:18:59 -0800709 mRefreshRateConfigs[*display->getId()] = std::make_shared<scheduler::RefreshRateConfigs>(
710 getHwComposer().getConfigs(*display->getId()));
711 mRefreshRateStats =
712 std::make_unique<scheduler::RefreshRateStats>(mRefreshRateConfigs[*display->getId()],
713 mTimeStats);
Ana Krulec7d1d6832018-12-27 11:10:09 -0800714
Dan Stoza9e56aa02015-11-02 13:00:03 -0800715 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700716}
717
Romain Guy11d63f42017-07-20 12:47:14 -0700718void SurfaceFlinger::readPersistentProperties() {
Chia-I Wu28f320b2018-05-03 11:02:56 -0700719 Mutex::Autolock _l(mStateLock);
720
Romain Guy11d63f42017-07-20 12:47:14 -0700721 char value[PROPERTY_VALUE_MAX];
722
723 property_get("persist.sys.sf.color_saturation", value, "1.0");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800724 mGlobalSaturationFactor = atof(value);
Chia-I Wu28f320b2018-05-03 11:02:56 -0700725 updateColorMatrixLocked();
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800726 ALOGV("Saturation is set to %.2f", mGlobalSaturationFactor);
Romain Guy54f154a2017-10-24 21:40:32 +0100727
728 property_get("persist.sys.sf.native_mode", value, "0");
Chia-I Wu0d711262018-05-21 15:19:35 -0700729 mDisplayColorSetting = static_cast<DisplayColorSetting>(atoi(value));
Peiyong Lina3ea5592019-02-10 14:45:00 -0800730
731 property_get("persist.sys.sf.color_mode", value, "0");
732 mForceColorMode = static_cast<ColorMode>(atoi(value));
Romain Guy11d63f42017-07-20 12:47:14 -0700733}
734
Mathias Agopiana67e4182012-06-19 17:26:12 -0700735void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800736 // Start boot animation service by setting a property mailbox
737 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700738 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800739 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700740 if (mStartPropertySetThread->join() != NO_ERROR) {
741 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800742 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700743}
744
Mathias Agopian875d8e12013-06-07 15:35:48 -0700745size_t SurfaceFlinger::getMaxTextureSize() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700746 return getRenderEngine().getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700747}
748
Mathias Agopian875d8e12013-06-07 15:35:48 -0700749size_t SurfaceFlinger::getMaxViewportDims() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700750 return getRenderEngine().getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700751}
752
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800753// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800754
Jamie Gennis582270d2011-08-17 18:19:00 -0700755bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800756 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800757 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800758 return authenticateSurfaceTextureLocked(bufferProducer);
759}
760
761bool SurfaceFlinger::authenticateSurfaceTextureLocked(
762 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800763 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Dan Stoza101d8dc2018-02-27 15:42:25 -0800764 return mGraphicBufferProducerList.count(surfaceTextureBinder.get()) > 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800765}
766
Brian Anderson6b376712017-04-04 10:51:39 -0700767status_t SurfaceFlinger::getSupportedFrameTimestamps(
768 std::vector<FrameEvent>* outSupported) const {
769 *outSupported = {
770 FrameEvent::REQUESTED_PRESENT,
771 FrameEvent::ACQUIRE,
772 FrameEvent::LATCH,
773 FrameEvent::FIRST_REFRESH_START,
774 FrameEvent::LAST_REFRESH_START,
775 FrameEvent::GPU_COMPOSITION_DONE,
776 FrameEvent::DEQUEUE_READY,
777 FrameEvent::RELEASE,
778 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700779 ConditionalLock _l(mStateLock,
780 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700781 if (!getHwComposer().hasCapability(
782 HWC2::Capability::PresentFenceIsNotReliable)) {
783 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
784 }
785 return NO_ERROR;
786}
787
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800788status_t SurfaceFlinger::getDisplayConfigsLocked(const sp<IBinder>& displayToken,
789 Vector<DisplayInfo>* configs) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700790 if (!displayToken || !configs) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700791 return BAD_VALUE;
792 }
793
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800794 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700795 if (!displayId) {
796 return NAME_NOT_FOUND;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700797 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700798
Mathias Agopian8b736f12012-08-13 17:54:26 -0700799 // TODO: Not sure if display density should handled by SF any longer
800 class Density {
Hernan Liatis57568932018-08-16 17:07:08 -0700801 static float getDensityFromProperty(char const* propName) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700802 char property[PROPERTY_VALUE_MAX];
Hernan Liatis57568932018-08-16 17:07:08 -0700803 float density = 0.0f;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800804 if (property_get(propName, property, nullptr) > 0) {
Hernan Liatis57568932018-08-16 17:07:08 -0700805 density = strtof(property, nullptr);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700806 }
807 return density;
808 }
809 public:
Hernan Liatis57568932018-08-16 17:07:08 -0700810 static float getEmuDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700811 return getDensityFromProperty("qemu.sf.lcd_density"); }
Hernan Liatis57568932018-08-16 17:07:08 -0700812 static float getBuildDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700813 return getDensityFromProperty("ro.sf.lcd_density"); }
814 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700815
Dan Stoza7f7da322014-05-02 15:26:25 -0700816 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700817
Dominik Laskowski075d3172018-05-24 15:50:06 -0700818 for (const auto& hwConfig : getHwComposer().getConfigs(*displayId)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700819 DisplayInfo info = DisplayInfo();
820
Dan Stoza9e56aa02015-11-02 13:00:03 -0800821 float xdpi = hwConfig->getDpiX();
822 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700823
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700824 info.w = hwConfig->getWidth();
825 info.h = hwConfig->getHeight();
826 // Default display viewport to display width and height
827 info.viewportW = info.w;
828 info.viewportH = info.h;
829
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800830 if (displayId == getInternalDisplayIdLocked()) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700831 // The density of the device is provided by a build property
832 float density = Density::getBuildDensity() / 160.0f;
833 if (density == 0) {
834 // the build doesn't provide a density -- this is wrong!
835 // use xdpi instead
836 ALOGE("ro.sf.lcd_density must be defined as a build property");
837 density = xdpi / 160.0f;
838 }
839 if (Density::getEmuDensity()) {
840 // if "qemu.sf.lcd_density" is specified, it overrides everything
841 xdpi = ydpi = density = Density::getEmuDensity();
842 density /= 160.0f;
843 }
844 info.density = density;
845
846 // TODO: this needs to go away (currently needed only by webkit)
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700847 const auto display = getDefaultDisplayDeviceLocked();
848 info.orientation = display ? display->getOrientation() : 0;
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700849
850 // This is for screenrecord
851 const Rect viewport = display->getViewport();
852 if (viewport.isValid()) {
853 info.viewportW = uint32_t(viewport.getWidth());
854 info.viewportH = uint32_t(viewport.getHeight());
855 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700856 } else {
857 // TODO: where should this value come from?
858 static const int TV_DENSITY = 213;
859 info.density = TV_DENSITY / 160.0f;
860 info.orientation = 0;
861 }
862
Dan Stoza7f7da322014-05-02 15:26:25 -0700863 info.xdpi = xdpi;
864 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800865 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Ana Krulec757f63a2019-01-25 10:46:18 -0800866 info.appVsyncOffset = mPhaseOffsets->getCurrentAppOffset();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800867
Andy McFadden91b2ca82014-06-13 14:04:23 -0700868 // This is how far in advance a buffer must be queued for
869 // presentation at a given time. If you want a buffer to appear
870 // on the screen at time N, you must submit the buffer before
871 // (N - presentationDeadline).
872 //
873 // Normally it's one full refresh period (to give SF a chance to
874 // latch the buffer), but this can be reduced by configuring a
875 // DispSync offset. Any additional delays introduced by the hardware
876 // composer or panel must be accounted for here.
877 //
878 // We add an additional 1ms to allow for processing time and
879 // differences between the ideal and actual refresh rate.
Ana Krulec757f63a2019-01-25 10:46:18 -0800880 info.presentationDeadline =
881 hwConfig->getVsyncPeriod() - mPhaseOffsets->getCurrentSfOffset() + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700882
883 // All non-virtual displays are currently considered secure.
884 info.secure = true;
885
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800886 if (displayId == getInternalDisplayIdLocked() &&
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700887 primaryDisplayOrientation & DisplayState::eOrientationSwapMask) {
Iris Chang7501ed62018-04-30 14:45:42 +0800888 std::swap(info.w, info.h);
889 }
890
Michael Wright28f24d02016-07-12 13:30:53 -0700891 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700892 }
893
Dan Stoza7f7da322014-05-02 15:26:25 -0700894 return NO_ERROR;
895}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700896
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700897status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>&, DisplayStatInfo* stats) {
898 if (!stats) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700899 return BAD_VALUE;
900 }
901
Ana Krulecc2870422019-01-29 19:00:58 -0800902 mScheduler->getDisplayStatInfo(stats);
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700903 return NO_ERROR;
904}
905
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700906int SurfaceFlinger::getActiveConfig(const sp<IBinder>& displayToken) {
907 const auto display = getDisplayDevice(displayToken);
908 if (!display) {
909 ALOGE("getActiveConfig: Invalid display token %p", displayToken.get());
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800910 return BAD_VALUE;
911 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700912
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700913 return display->getActiveConfig();
Dan Stoza7f7da322014-05-02 15:26:25 -0700914}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700915
Ady Abraham447052e2019-02-13 16:07:27 -0800916void SurfaceFlinger::setDesiredActiveConfig(const sp<IBinder>& displayToken, int mode,
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800917 Scheduler::ConfigEvent event) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800918 ATRACE_CALL();
Ana Krulec7d1d6832018-12-27 11:10:09 -0800919
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800920 // Lock is acquired by setRefreshRateTo.
921 const auto display = getDisplayDeviceLocked(displayToken);
Ana Krulec7d1d6832018-12-27 11:10:09 -0800922 if (!display) {
923 ALOGE("Attempt to set active config %d for invalid display token %p", mode,
924 displayToken.get());
925 return;
926 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700927 if (display->isVirtual()) {
Ana Krulec7d1d6832018-12-27 11:10:09 -0800928 ALOGW("Attempt to set active config %d for virtual display", mode);
929 return;
930 }
931 int currentDisplayPowerMode = display->getPowerMode();
932 if (currentDisplayPowerMode != HWC_POWER_MODE_NORMAL) {
933 // Don't change active config when in AoD.
Dominik Laskowski075d3172018-05-24 15:50:06 -0700934 return;
935 }
936
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800937 // Don't check against the current mode yet. Worst case we set the desired
Ady Abraham9360a222019-02-27 17:05:30 -0800938 // config twice. However event generation config might have changed so we need to update it
939 // accordingly
Ady Abrahamb838aed2019-02-12 15:30:16 -0800940 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800941 const Scheduler::ConfigEvent desiredConfig = mDesiredActiveConfig.event | event;
Ady Abraham9360a222019-02-27 17:05:30 -0800942 mDesiredActiveConfig = ActiveConfigInfo{mode, displayToken, desiredConfig};
Ady Abrahamb838aed2019-02-12 15:30:16 -0800943
944 if (!mDesiredActiveConfigChanged) {
945 // This is the first time we set the desired
946 mScheduler->pauseVsyncCallback(mAppConnectionHandle, true);
947
948 // This will trigger HWC refresh without resetting the idle timer.
949 repaintEverythingForHWC();
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800950 }
Ady Abrahamb838aed2019-02-12 15:30:16 -0800951 mDesiredActiveConfigChanged = true;
952 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800953}
954
955status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& displayToken, int mode) {
956 ATRACE_CALL();
Ady Abraham838de062019-02-04 10:24:03 -0800957
958 std::vector<int32_t> allowedConfig;
959 allowedConfig.push_back(mode);
960
961 return setAllowedDisplayConfigs(displayToken, allowedConfig);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800962}
963
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800964void SurfaceFlinger::setActiveConfigInternal() {
965 ATRACE_CALL();
966
967 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ana Krulecc2870422019-01-29 19:00:58 -0800968 mRefreshRateStats->setConfigMode(mUpcomingActiveConfig.configId);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800969
970 const auto display = getDisplayDeviceLocked(mUpcomingActiveConfig.displayToken);
971 display->setActiveConfig(mUpcomingActiveConfig.configId);
972
Ana Krulecc2870422019-01-29 19:00:58 -0800973 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800974 ATRACE_INT("ActiveConfigMode", mUpcomingActiveConfig.configId);
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800975 if (mUpcomingActiveConfig.event != Scheduler::ConfigEvent::None) {
Ady Abraham447052e2019-02-13 16:07:27 -0800976 mScheduler->onConfigChanged(mAppConnectionHandle, display->getId()->value,
977 mUpcomingActiveConfig.configId);
978 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800979}
980
Ady Abrahamb838aed2019-02-12 15:30:16 -0800981bool SurfaceFlinger::performSetActiveConfig() NO_THREAD_SAFETY_ANALYSIS {
Alec Mourife3dc942019-02-12 14:19:18 -0800982 ATRACE_CALL();
Ady Abrahamb838aed2019-02-12 15:30:16 -0800983 // we may be in the process of changing the active state
984 if (mWaitForNextInvalidate) {
985 mWaitForNextInvalidate = false;
986
987 repaintEverythingForHWC();
988 // We do not want to give another frame to HWC while we are transitioning.
989 return true;
990 }
991
992 if (mCheckPendingFence) {
993 if (mPreviousPresentFence != Fence::NO_FENCE &&
994 (mPreviousPresentFence->getStatus() == Fence::Status::Unsignaled)) {
995 // fence has not signaled yet. wait for the next invalidate
996 repaintEverythingForHWC();
997 return true;
998 }
999
1000 // We received the present fence from the HWC, so we assume it successfully updated
1001 // the config, hence we update SF.
1002 mCheckPendingFence = false;
1003 setActiveConfigInternal();
1004 }
1005
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001006 // Store the local variable to release the lock.
1007 ActiveConfigInfo desiredActiveConfig;
1008 {
1009 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001010 if (!mDesiredActiveConfigChanged) {
1011 return false;
1012 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001013 desiredActiveConfig = mDesiredActiveConfig;
1014 }
1015
1016 const auto display = getDisplayDevice(desiredActiveConfig.displayToken);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001017 if (!display || display->getActiveConfig() == desiredActiveConfig.configId) {
1018 // display is not valid or we are already in the requested mode
1019 // on both cases there is nothing left to do
1020 std::lock_guard<std::mutex> lock(mActiveConfigLock);
1021 mScheduler->pauseVsyncCallback(mAppConnectionHandle, false);
1022 mDesiredActiveConfigChanged = false;
1023 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
1024 return false;
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001025 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001026
Ady Abraham838de062019-02-04 10:24:03 -08001027 // Desired active config was set, it is different than the config currently in use, however
1028 // allowed configs might have change by the time we process the refresh.
1029 // Make sure the desired config is still allowed
1030 if (!isConfigAllowed(*display->getId(), desiredActiveConfig.configId)) {
1031 std::lock_guard<std::mutex> lock(mActiveConfigLock);
1032 mDesiredActiveConfig.configId = display->getActiveConfig();
1033 return false;
1034 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001035 mUpcomingActiveConfig = desiredActiveConfig;
1036 const auto displayId = display->getId();
1037 LOG_ALWAYS_FATAL_IF(!displayId);
1038
1039 ATRACE_INT("ActiveConfigModeHWC", mUpcomingActiveConfig.configId);
1040 getHwComposer().setActiveConfig(*displayId, mUpcomingActiveConfig.configId);
1041
1042 // we need to submit an empty frame to HWC to start the process
1043 mWaitForNextInvalidate = true;
1044 mCheckPendingFence = true;
1045
1046 return false;
Mathias Agopianc666cae2012-07-25 18:56:13 -07001047}
Dominik Laskowski075d3172018-05-24 15:50:06 -07001048
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001049status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& displayToken,
1050 Vector<ColorMode>* outColorModes) {
1051 if (!displayToken || !outColorModes) {
Michael Wright28f24d02016-07-12 13:30:53 -07001052 return BAD_VALUE;
1053 }
1054
Peiyong Lina52f0292018-03-14 17:26:31 -07001055 std::vector<ColorMode> modes;
Steven Thomas6d8110b2017-08-31 18:24:21 -07001056 {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001057 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
1058
1059 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1060 if (!displayId) {
1061 return NAME_NOT_FOUND;
1062 }
1063
Dominik Laskowski075d3172018-05-24 15:50:06 -07001064 modes = getHwComposer().getColorModes(*displayId);
Steven Thomas6d8110b2017-08-31 18:24:21 -07001065 }
Michael Wright28f24d02016-07-12 13:30:53 -07001066 outColorModes->clear();
1067 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
1068
1069 return NO_ERROR;
1070}
1071
Daniel Solomon42d04562019-01-20 21:03:19 -08001072status_t SurfaceFlinger::getDisplayNativePrimaries(const sp<IBinder>& displayToken,
1073 ui::DisplayPrimaries &primaries) {
1074 if (!displayToken) {
1075 return BAD_VALUE;
1076 }
1077
1078 // Currently we only support this API for a single internal display.
1079 if (getInternalDisplayToken() != displayToken) {
1080 return BAD_VALUE;
1081 }
1082
1083 memcpy(&primaries, &mInternalDisplayPrimaries, sizeof(ui::DisplayPrimaries));
1084 return NO_ERROR;
1085}
1086
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001087ColorMode SurfaceFlinger::getActiveColorMode(const sp<IBinder>& displayToken) {
1088 if (const auto display = getDisplayDevice(displayToken)) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001089 return display->getCompositionDisplay()->getState().colorMode;
Michael Wright28f24d02016-07-12 13:30:53 -07001090 }
Peiyong Lina52f0292018-03-14 17:26:31 -07001091 return static_cast<ColorMode>(BAD_VALUE);
Michael Wright28f24d02016-07-12 13:30:53 -07001092}
1093
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001094status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& displayToken, ColorMode mode) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001095 postMessageSync(new LambdaMessage([&] {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001096 Vector<ColorMode> modes;
1097 getDisplayColorModes(displayToken, &modes);
1098 bool exists = std::find(std::begin(modes), std::end(modes), mode) != std::end(modes);
1099 if (mode < ColorMode::NATIVE || !exists) {
1100 ALOGE("Attempt to set invalid active color mode %s (%d) for display token %p",
1101 decodeColorMode(mode).c_str(), mode, displayToken.get());
1102 return;
Michael Wright28f24d02016-07-12 13:30:53 -07001103 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001104 const auto display = getDisplayDevice(displayToken);
1105 if (!display) {
1106 ALOGE("Attempt to set active color mode %s (%d) for invalid display token %p",
1107 decodeColorMode(mode).c_str(), mode, displayToken.get());
1108 } else if (display->isVirtual()) {
1109 ALOGW("Attempt to set active color mode %s (%d) for virtual display",
1110 decodeColorMode(mode).c_str(), mode);
1111 } else {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001112 display->getCompositionDisplay()->setColorMode(mode, Dataspace::UNKNOWN,
1113 RenderIntent::COLORIMETRIC);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001114 }
1115 }));
1116
Michael Wright28f24d02016-07-12 13:30:53 -07001117 return NO_ERROR;
1118}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001119
Svetoslavd85084b2014-03-20 10:28:31 -07001120status_t SurfaceFlinger::clearAnimationFrameStats() {
1121 Mutex::Autolock _l(mStateLock);
1122 mAnimFrameTracker.clearStats();
1123 return NO_ERROR;
1124}
1125
1126status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1127 Mutex::Autolock _l(mStateLock);
1128 mAnimFrameTracker.getStats(outStats);
1129 return NO_ERROR;
1130}
1131
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001132status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& displayToken,
1133 HdrCapabilities* outCapabilities) const {
Dan Stozac4f471e2016-03-24 09:31:08 -07001134 Mutex::Autolock _l(mStateLock);
1135
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001136 const auto display = getDisplayDeviceLocked(displayToken);
1137 if (!display) {
1138 ALOGE("getHdrCapabilities: Invalid display token %p", displayToken.get());
Dan Stozac4f471e2016-03-24 09:31:08 -07001139 return BAD_VALUE;
1140 }
1141
Peiyong Linfb069302018-04-25 14:34:31 -07001142 // At this point the DisplayDeivce should already be set up,
1143 // meaning the luminance information is already queried from
1144 // hardware composer and stored properly.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001145 const HdrCapabilities& capabilities = display->getHdrCapabilities();
Peiyong Linfb069302018-04-25 14:34:31 -07001146 *outCapabilities = HdrCapabilities(capabilities.getSupportedHdrTypes(),
1147 capabilities.getDesiredMaxLuminance(),
1148 capabilities.getDesiredMaxAverageLuminance(),
1149 capabilities.getDesiredMinLuminance());
Dan Stozac4f471e2016-03-24 09:31:08 -07001150
1151 return NO_ERROR;
1152}
1153
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001154status_t SurfaceFlinger::getDisplayedContentSamplingAttributes(const sp<IBinder>& displayToken,
1155 ui::PixelFormat* outFormat,
1156 ui::Dataspace* outDataspace,
1157 uint8_t* outComponentMask) const {
1158 if (!outFormat || !outDataspace || !outComponentMask) {
1159 return BAD_VALUE;
1160 }
Kevin DuBois74e53772018-11-19 10:52:38 -08001161 const auto display = getDisplayDevice(displayToken);
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001162 if (!display || !display->getId()) {
1163 ALOGE("getDisplayedContentSamplingAttributes: Bad display token: %p", display.get());
1164 return BAD_VALUE;
1165 }
1166 return getHwComposer().getDisplayedContentSamplingAttributes(*display->getId(), outFormat,
1167 outDataspace, outComponentMask);
1168}
1169
Kevin DuBois74e53772018-11-19 10:52:38 -08001170status_t SurfaceFlinger::setDisplayContentSamplingEnabled(const sp<IBinder>& displayToken,
1171 bool enable, uint8_t componentMask,
1172 uint64_t maxFrames) const {
1173 const auto display = getDisplayDevice(displayToken);
1174 if (!display || !display->getId()) {
1175 ALOGE("setDisplayContentSamplingEnabled: Bad display token: %p", display.get());
1176 return BAD_VALUE;
1177 }
1178
1179 return getHwComposer().setDisplayContentSamplingEnabled(*display->getId(), enable,
1180 componentMask, maxFrames);
1181}
1182
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001183status_t SurfaceFlinger::getDisplayedContentSample(const sp<IBinder>& displayToken,
1184 uint64_t maxFrames, uint64_t timestamp,
1185 DisplayedFrameStats* outStats) const {
1186 const auto display = getDisplayDevice(displayToken);
1187 if (!display || !display->getId()) {
1188 ALOGE("getDisplayContentSample: Bad display token: %p", displayToken.get());
1189 return BAD_VALUE;
1190 }
1191
1192 return getHwComposer().getDisplayedContentSample(*display->getId(), maxFrames, timestamp,
1193 outStats);
1194}
1195
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001196status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const {
1197 if (!outSupported) {
1198 return BAD_VALUE;
1199 }
1200 *outSupported = getRenderEngine().supportsProtectedContent();
1201 return NO_ERROR;
1202}
1203
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001204status_t SurfaceFlinger::isWideColorDisplay(const sp<IBinder>& displayToken,
1205 bool* outIsWideColorDisplay) const {
1206 if (!displayToken || !outIsWideColorDisplay) {
1207 return BAD_VALUE;
1208 }
1209 Mutex::Autolock _l(mStateLock);
1210 const auto display = getDisplayDeviceLocked(displayToken);
1211 if (!display) {
1212 return BAD_VALUE;
1213 }
1214 *outIsWideColorDisplay = display->hasWideColorGamut();
1215 return NO_ERROR;
1216}
1217
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001218status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001219 postMessageSync(new LambdaMessage([&] {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001220 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001221
Chia-I Wu90f669f2017-10-05 14:24:41 -07001222 if (mInjectVSyncs == enable) {
1223 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001224 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001225
Ana Krulecc2870422019-01-29 19:00:58 -08001226 auto resyncCallback =
1227 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskif654d572018-12-20 11:03:06 -08001228
Ana Krulec98b5b242018-08-10 15:03:23 -07001229 // TODO(akrulec): Part of the Injector should be refactored, so that it
1230 // can be passed to Scheduler.
Chia-I Wu90f669f2017-10-05 14:24:41 -07001231 if (enable) {
1232 ALOGV("VSync Injections enabled");
1233 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001234 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique24b0a482018-03-09 18:52:26 -08001235 mInjectorEventThread = std::make_unique<
Dominik Laskowskif654d572018-12-20 11:03:06 -08001236 impl::EventThread>(mVSyncInjector.get(),
Lloyd Pique24b0a482018-03-09 18:52:26 -08001237 impl::EventThread::InterceptVSyncsCallback(),
1238 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001239 }
Dominik Laskowskif654d572018-12-20 11:03:06 -08001240 mEventQueue->setEventThread(mInjectorEventThread.get(), std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001241 } else {
1242 ALOGV("VSync Injections disabled");
Ana Krulecc2870422019-01-29 19:00:58 -08001243 mEventQueue->setEventThread(mScheduler->getEventThread(mSfConnectionHandle),
1244 std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001245 }
1246
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001247 mInjectVSyncs = enable;
Dominik Laskowski8c001672018-05-30 16:52:06 -07001248 }));
1249
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001250 return NO_ERROR;
1251}
1252
1253status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001254 Mutex::Autolock _l(mStateLock);
1255
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001256 if (!mInjectVSyncs) {
1257 ALOGE("VSync Injections not enabled");
1258 return BAD_VALUE;
1259 }
1260 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1261 ALOGV("Injecting VSync inside SurfaceFlinger");
1262 mVSyncInjector->onInjectSyncEvent(when);
1263 }
1264 return NO_ERROR;
1265}
1266
Lloyd Pique755e3192018-01-31 16:46:15 -08001267status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1268 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001269 // Try to acquire a lock for 1s, fail gracefully
1270 const status_t err = mStateLock.timedLock(s2ns(1));
1271 const bool locked = (err == NO_ERROR);
1272 if (!locked) {
1273 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1274 return TIMED_OUT;
1275 }
1276
1277 outLayers->clear();
1278 mCurrentState.traverseInZOrder([&](Layer* layer) {
1279 outLayers->push_back(layer->getLayerDebugInfo());
1280 });
1281
1282 mStateLock.unlock();
1283 return NO_ERROR;
1284}
1285
Peiyong Linc6780972018-10-28 15:24:08 -07001286status_t SurfaceFlinger::getCompositionPreference(
1287 Dataspace* outDataspace, ui::PixelFormat* outPixelFormat,
1288 Dataspace* outWideColorGamutDataspace,
1289 ui::PixelFormat* outWideColorGamutPixelFormat) const {
Peiyong Lin9d846a52018-11-05 13:18:20 -08001290 *outDataspace = mDefaultCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001291 *outPixelFormat = defaultCompositionPixelFormat;
Peiyong Lin9d846a52018-11-05 13:18:20 -08001292 *outWideColorGamutDataspace = mWideColorGamutCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001293 *outWideColorGamutPixelFormat = wideColorGamutCompositionPixelFormat;
Peiyong Lin0256f722018-08-31 15:45:10 -07001294 return NO_ERROR;
1295}
1296
Dan Stozaec460082018-12-17 15:35:09 -08001297status_t SurfaceFlinger::addRegionSamplingListener(const Rect& samplingArea,
1298 const sp<IBinder>& stopLayerHandle,
1299 const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001300 if (!listener || samplingArea == Rect::INVALID_RECT) {
Dan Stozaec460082018-12-17 15:35:09 -08001301 return BAD_VALUE;
1302 }
1303 mRegionSamplingThread->addListener(samplingArea, stopLayerHandle, listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001304 return NO_ERROR;
1305}
1306
Dan Stozaec460082018-12-17 15:35:09 -08001307status_t SurfaceFlinger::removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001308 if (!listener) {
1309 return BAD_VALUE;
1310 }
Dan Stozaec460082018-12-17 15:35:09 -08001311 mRegionSamplingThread->removeListener(listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001312 return NO_ERROR;
1313}
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001314// ----------------------------------------------------------------------------
1315
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001316sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
1317 ISurfaceComposer::VsyncSource vsyncSource) {
Ana Krulecc2870422019-01-29 19:00:58 -08001318 auto resyncCallback = mScheduler->makeResyncCallback([this] {
Dominik Laskowski83b88212018-12-11 13:34:06 -08001319 Mutex::Autolock lock(mStateLock);
1320 return getVsyncPeriod();
1321 });
Dominik Laskowskif654d572018-12-20 11:03:06 -08001322
Ana Krulecc2870422019-01-29 19:00:58 -08001323 const auto& handle =
1324 vsyncSource == eVsyncSourceSurfaceFlinger ? mSfConnectionHandle : mAppConnectionHandle;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001325
Ana Krulecc2870422019-01-29 19:00:58 -08001326 return mScheduler->createDisplayEventConnection(handle, std::move(resyncCallback));
Mathias Agopianbb641242010-05-18 17:06:55 -07001327}
1328
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001329// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001330
1331void SurfaceFlinger::waitForEvent() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001332 mEventQueue->waitMessage();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001333}
1334
1335void SurfaceFlinger::signalTransaction() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001336 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001337}
1338
1339void SurfaceFlinger::signalLayerUpdate() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001340 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001341}
1342
1343void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001344 mRefreshPending = true;
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001345 mEventQueue->refresh();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001346}
1347
1348status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001349 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001350 return mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001351}
1352
1353status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001354 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001355 status_t res = mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001356 if (res == NO_ERROR) {
1357 msg->wait();
1358 }
1359 return res;
1360}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001361
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001362void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001363 do {
1364 waitForEvent();
1365 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001366}
1367
Dominik Laskowski83b88212018-12-11 13:34:06 -08001368nsecs_t SurfaceFlinger::getVsyncPeriod() const {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001369 const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski83b88212018-12-11 13:34:06 -08001370 if (!displayId || !getHwComposer().isConnected(*displayId)) {
1371 return 0;
1372 }
1373
1374 const auto config = getHwComposer().getActiveConfig(*displayId);
1375 return config ? config->getVsyncPeriod() : 0;
1376}
1377
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001378void SurfaceFlinger::onVsyncReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
1379 int64_t timestamp) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001380 ATRACE_NAME("SF onVsync");
1381
Steven Thomas3cfac282017-02-06 12:29:30 -08001382 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001383 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001384 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001385 return;
1386 }
1387
Dominik Laskowski075d3172018-05-24 15:50:06 -07001388 if (!getHwComposer().onVsync(hwcDisplayId, timestamp)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001389 return;
1390 }
1391
Dominik Laskowski075d3172018-05-24 15:50:06 -07001392 if (hwcDisplayId != getHwComposer().getInternalHwcDisplayId()) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001393 // For now, we don't do anything with external display vsyncs.
1394 return;
1395 }
1396
Ana Krulecc2870422019-01-29 19:00:58 -08001397 mScheduler->addResyncSample(timestamp);
Mathias Agopian148994e2012-09-19 17:31:36 -07001398}
1399
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001400void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001401 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1402 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001403}
1404
Ady Abraham838de062019-02-04 10:24:03 -08001405bool SurfaceFlinger::isConfigAllowed(const DisplayId& displayId, int32_t config) {
1406 std::lock_guard lock(mAllowedConfigsLock);
1407
1408 // if allowed configs are not set yet for this display, every config is considered allowed
1409 if (mAllowedConfigs.find(displayId) == mAllowedConfigs.end()) {
1410 return true;
1411 }
1412
1413 return mAllowedConfigs[displayId]->isConfigAllowed(config);
1414}
1415
Ana Krulec8d3e4f32019-03-05 10:40:33 -08001416void SurfaceFlinger::setRefreshRateTo(RefreshRateType refreshRate, Scheduler::ConfigEvent event) {
Ady Abraham1902d072019-03-01 17:18:59 -08001417 ATRACE_CALL();
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001418 mPhaseOffsets->setRefreshRateType(refreshRate);
1419
1420 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
1421 mVsyncModulator.setPhaseOffsets(early, gl, late);
1422
1423 if (mBootStage != BootStage::FINISHED) {
Ana Krulec7d1d6832018-12-27 11:10:09 -08001424 return;
1425 }
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001426
Ana Krulec7d1d6832018-12-27 11:10:09 -08001427 // Don't do any updating if the current fps is the same as the new one.
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001428 const auto displayId = getInternalDisplayIdLocked();
1429 LOG_ALWAYS_FATAL_IF(!displayId);
Ady Abraham1902d072019-03-01 17:18:59 -08001430 const auto displayToken = getInternalDisplayTokenLocked();
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001431
Ady Abraham1902d072019-03-01 17:18:59 -08001432 auto desiredConfigId = mRefreshRateConfigs[*displayId]->getRefreshRate(refreshRate).configId;
1433 const auto display = getDisplayDeviceLocked(displayToken);
1434 if (desiredConfigId == display->getActiveConfig()) {
1435 return;
Ana Krulec7d1d6832018-12-27 11:10:09 -08001436 }
Ady Abraham1902d072019-03-01 17:18:59 -08001437
1438 if (!isConfigAllowed(*displayId, desiredConfigId)) {
1439 ALOGV("Skipping config %d as it is not part of allowed configs", desiredConfigId);
1440 return;
1441 }
1442
1443 setDesiredActiveConfig(getInternalDisplayTokenLocked(), desiredConfigId, event);
Ana Krulec7d1d6832018-12-27 11:10:09 -08001444}
1445
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001446void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001447 HWC2::Connection connection) {
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001448 ALOGV("%s(%d, %" PRIu64 ", %s)", __FUNCTION__, sequenceId, hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001449 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001450
Lloyd Piqueba04e622017-12-14 17:11:26 -08001451 // Ignore events that do not have the right sequenceId.
1452 if (sequenceId != getBE().mComposerSequenceId) {
1453 return;
1454 }
1455
Steven Thomasb02664d2017-07-26 18:48:28 -07001456 // Only lock if we're not on the main thread. This function is normally
1457 // called on a hwbinder thread, but for the primary display it's called on
1458 // the main thread with the state lock already held, so don't attempt to
1459 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001460 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001461
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001462 mPendingHotplugEvents.emplace_back(HotplugEvent{hwcDisplayId, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001463
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001464 if (std::this_thread::get_id() == mMainThreadId) {
1465 // Process all pending hot plug events immediately if we are on the main thread.
1466 processDisplayHotplugEventsLocked();
1467 }
1468
Lloyd Piqueba04e622017-12-14 17:11:26 -08001469 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001470}
1471
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001472void SurfaceFlinger::onRefreshReceived(int sequenceId, hwc2_display_t /*hwcDisplayId*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001473 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001474 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001475 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001476 }
Ana Krulec7d1d6832018-12-27 11:10:09 -08001477 repaintEverythingForHWC();
Steven Thomas3cfac282017-02-06 12:29:30 -08001478}
1479
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001480void SurfaceFlinger::setPrimaryVsyncEnabled(bool enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001481 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001482 Mutex::Autolock lock(mStateLock);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001483 if (const auto displayId = getInternalDisplayIdLocked()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07001484 getHwComposer().setVsyncEnabled(*displayId,
1485 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
1486 }
Mathias Agopian86303202012-07-24 22:46:10 -07001487}
1488
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001489// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001490void SurfaceFlinger::resetDisplayState() {
Ana Krulecc2870422019-01-29 19:00:58 -08001491 mScheduler->disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001492 // Clear the drawing state so that the logic inside of
1493 // handleTransactionLocked will fire. It will determine the delta between
1494 // mCurrentState and mDrawingState and re-apply all changes when we make the
1495 // transition.
1496 mDrawingState.displays.clear();
1497 mDisplays.clear();
1498}
1499
Steven Thomas050b2c82017-03-06 11:45:16 -08001500void SurfaceFlinger::updateVrFlinger() {
Alec Mourife3dc942019-02-12 14:19:18 -08001501 ATRACE_CALL();
Steven Thomas050b2c82017-03-06 11:45:16 -08001502 if (!mVrFlinger)
1503 return;
1504 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
Lloyd Pique441d5042018-10-18 16:49:51 -07001505 if (vrFlingerRequestsDisplay == getHwComposer().isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001506 return;
1507 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001508
Lloyd Pique441d5042018-10-18 16:49:51 -07001509 if (vrFlingerRequestsDisplay && !getHwComposer().getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001510 ALOGE("Vr flinger is only supported for remote hardware composer"
1511 " service connections. Ignoring request to transition to vr"
1512 " flinger.");
1513 mVrFlingerRequestsDisplay = false;
1514 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001515 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001516
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001517 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001518
Steven Thomas0123ac62018-07-12 11:32:34 -07001519 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001520 LOG_ALWAYS_FATAL_IF(!display);
Lloyd Pique07e33212018-12-18 16:33:37 -08001521
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001522 const int currentDisplayPowerMode = display->getPowerMode();
Lloyd Pique07e33212018-12-18 16:33:37 -08001523
1524 // Clear out all the output layers from the composition engine for all
1525 // displays before destroying the hardware composer interface. This ensures
1526 // any HWC layers are destroyed through that interface before it becomes
1527 // invalid.
1528 for (const auto& [token, displayDevice] : mDisplays) {
1529 displayDevice->getCompositionDisplay()->setOutputLayersOrderedByZ(
1530 compositionengine::Output::OutputLayers());
1531 }
1532
Steven Thomas0123ac62018-07-12 11:32:34 -07001533 // This DisplayDevice will no longer be relevant once resetDisplayState() is
1534 // called below. Clear the reference now so we don't accidentally use it
1535 // later.
1536 display.clear();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001537
Steven Thomasb02664d2017-07-26 18:48:28 -07001538 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001539 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001540 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001541
Steven Thomasb02664d2017-07-26 18:48:28 -07001542 resetDisplayState();
Lloyd Pique441d5042018-10-18 16:49:51 -07001543 // Delete the current instance before creating the new one
1544 mCompositionEngine->setHwComposer(std::unique_ptr<HWComposer>());
1545 mCompositionEngine->setHwComposer(getFactory().createHWComposer(
1546 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName));
1547 getHwComposer().registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001548
Lloyd Pique441d5042018-10-18 16:49:51 -07001549 LOG_ALWAYS_FATAL_IF(!getHwComposer().getComposer()->isRemote(),
David Sodman105b7dc2017-11-04 20:28:14 -07001550 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001551
1552 if (vrFlingerRequestsDisplay) {
1553 mVrFlinger->GrantDisplayOwnership();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001554 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001555
1556 mVisibleRegionsDirty = true;
1557 invalidateHwcGeometry();
1558
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001559 // Re-enable default display.
Steven Thomas0123ac62018-07-12 11:32:34 -07001560 display = getDefaultDisplayDeviceLocked();
1561 LOG_ALWAYS_FATAL_IF(!display);
Dominik Laskowskie9774092018-12-11 10:04:24 -08001562 setPowerModeInternal(display, currentDisplayPowerMode);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001563
Steven Thomasb02664d2017-07-26 18:48:28 -07001564 // Reset the timing values to account for the period of the swapped in HWC
Dominik Laskowski83b88212018-12-11 13:34:06 -08001565 const nsecs_t vsyncPeriod = getVsyncPeriod();
1566 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001567
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001568 // The present fences returned from vr_hwc are not an accurate
1569 // representation of vsync times.
Ana Krulecc2870422019-01-29 19:00:58 -08001570 mScheduler->setIgnorePresentFences(getHwComposer().isUsingVrComposer() || !hasSyncFramework);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001571
Steven Thomasb02664d2017-07-26 18:48:28 -07001572 // Use phase of 0 since phase is not known.
1573 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08001574 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07001575 setCompositorTimingSnapped(stats, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001576
Ana Krulecc2870422019-01-29 19:00:58 -08001577 mScheduler->resyncToHardwareVsync(false, vsyncPeriod);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001578
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001579 mRepaintEverything = true;
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001580 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001581}
1582
Mathias Agopian4fec8732012-06-29 14:12:52 -07001583void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001584 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001585 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001586 case MessageQueue::INVALIDATE: {
Ady Abrahamb838aed2019-02-12 15:30:16 -08001587 if (performSetActiveConfig()) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001588 break;
1589 }
1590
Ana Krulecba13ab32019-02-20 14:14:12 -08001591 if (mUse90Hz && mUseSmart90ForVideo) {
1592 // This call is made each time SF wakes up and creates a new frame. It is part
1593 // of video detection feature.
1594 mScheduler->incrementFrameCounter();
1595 }
Alec Mourife3dc942019-02-12 14:19:18 -08001596 bool frameMissed = mPreviousPresentFence != Fence::NO_FENCE &&
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001597 (mPreviousPresentFence->getStatus() == Fence::Status::Unsignaled);
Alec Mourife3dc942019-02-12 14:19:18 -08001598 bool hwcFrameMissed = !mHadClientComposition && frameMissed;
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001599 if (frameMissed) {
Alec Mourife3dc942019-02-12 14:19:18 -08001600 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
1601 mFrameMissedCount++;
Yiwei Zhang7e666a52018-11-15 13:33:42 -08001602 mTimeStats->incrementMissedFrames();
Alec Mourife3dc942019-02-12 14:19:18 -08001603 }
1604 // For now, only propagate backpressure when missing a hwc frame.
1605 if (hwcFrameMissed) {
Yiwei Zhang621f9d42018-05-07 10:40:55 -07001606 if (mPropagateBackpressure) {
1607 signalLayerUpdate();
1608 break;
1609 }
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001610 }
Dan Stoza50182882016-07-08 12:02:20 -07001611
Steven Thomas050b2c82017-03-06 11:45:16 -08001612 // Now that we're going to make it to the handleMessageTransaction()
1613 // call below it's safe to call updateVrFlinger(), which will
1614 // potentially trigger a display handoff.
1615 updateVrFlinger();
1616
Dan Stoza6b9454d2014-11-07 16:00:59 -08001617 bool refreshNeeded = handleMessageTransaction();
1618 refreshNeeded |= handleMessageInvalidate();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001619
1620 updateCursorAsync();
1621 updateInputFlinger();
1622
Dan Stoza58784442014-12-02 16:58:17 -08001623 refreshNeeded |= mRepaintEverything;
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08001624 if (refreshNeeded && CC_LIKELY(mBootStage != BootStage::BOOTLOADER)) {
Dan Stoza58784442014-12-02 16:58:17 -08001625 // Signal a refresh if a transaction modified the window state,
1626 // a new buffer was latched, or if HWC has requested a full
1627 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001628 signalRefresh();
1629 }
1630 break;
1631 }
1632 case MessageQueue::REFRESH: {
1633 handleMessageRefresh();
1634 break;
1635 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001636 }
1637}
1638
Dan Stoza6b9454d2014-11-07 16:00:59 -08001639bool SurfaceFlinger::handleMessageTransaction() {
Alec Mourife3dc942019-02-12 14:19:18 -08001640 ATRACE_CALL();
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001641 uint32_t transactionFlags = peekTransactionFlags();
Marissa Wall713b63f2018-10-17 15:42:43 -07001642
1643 // Apply any ready transactions in the queues if there are still transactions that have not been
1644 // applied, wake up during the next vsync period and check again
1645 bool transactionNeeded = false;
1646 if (!flushTransactionQueues()) {
1647 transactionNeeded = true;
1648 }
1649
Mathias Agopian4fec8732012-06-29 14:12:52 -07001650 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001651 handleTransaction(transactionFlags);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001652 }
Marissa Wall713b63f2018-10-17 15:42:43 -07001653
1654 if (transactionNeeded) {
1655 setTransactionFlags(eTransactionNeeded);
1656 }
1657
1658 return transactionFlags;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001659}
1660
Mathias Agopian4fec8732012-06-29 14:12:52 -07001661void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001662 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001663
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001664 mRefreshPending = false;
1665
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001666 const bool repaintEverything = mRepaintEverything.exchange(false);
David Sodman2b406362017-12-15 13:33:47 -08001667 preComposition();
Lloyd Pique074e8122018-07-26 12:57:23 -07001668 rebuildLayerStacks();
David Sodman79bba0e2018-08-05 18:07:49 -07001669 calculateWorkingSet();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001670 for (const auto& [token, display] : mDisplays) {
1671 beginFrame(display);
1672 prepareFrame(display);
1673 doDebugFlashRegions(display, repaintEverything);
1674 doComposition(display, repaintEverything);
1675 }
1676
Adrian Roos1e1a1282017-11-01 19:05:31 +01001677 doTracing("handleRefresh");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001678 logLayerStats();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001679
1680 postFrame();
David Sodman2b406362017-12-15 13:33:47 -08001681 postComposition();
Dan Stoza05dacfb2016-07-01 13:33:38 -07001682
Dan Stozabfbffeb2016-07-21 14:49:33 -07001683 mHadClientComposition = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001684 for (const auto& [token, displayDevice] : mDisplays) {
1685 auto display = displayDevice->getCompositionDisplay();
1686 const auto displayId = display->getId();
Lloyd Pique441d5042018-10-18 16:49:51 -07001687 mHadClientComposition =
Lloyd Pique32cbe282018-10-19 13:09:22 -07001688 mHadClientComposition || getHwComposer().hasClientComposition(displayId);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001689 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08001690
Jorim Jaggi90535212018-05-23 23:44:06 +02001691 mVsyncModulator.onRefreshed(mHadClientComposition);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001692
David Sodman7e4ae112018-02-09 15:02:28 -08001693 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001694}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001695
David Sodmanfa9b2af2017-12-24 13:28:59 -08001696
1697bool SurfaceFlinger::handleMessageInvalidate() {
1698 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001699 bool refreshNeeded = handlePageFlip();
1700
Vishnu Nair4351ad52019-02-11 14:13:02 -08001701 if (mVisibleRegionsDirty) {
1702 computeLayerBounds();
1703 }
1704
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001705 for (auto& layer : mLayersPendingRefresh) {
1706 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08001707 visibleReg.set(layer->getScreenBounds());
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001708 invalidateLayerStack(layer, visibleReg);
1709 }
1710 mLayersPendingRefresh.clear();
1711 return refreshNeeded;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001712}
1713
David Sodman79bba0e2018-08-05 18:07:49 -07001714void SurfaceFlinger::calculateWorkingSet() {
1715 ATRACE_CALL();
1716 ALOGV(__FUNCTION__);
1717
David Sodman79bba0e2018-08-05 18:07:49 -07001718 // build the h/w work list
1719 if (CC_UNLIKELY(mGeometryInvalid)) {
1720 mGeometryInvalid = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001721 for (const auto& [token, displayDevice] : mDisplays) {
1722 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001723 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001724 if (!displayId) {
1725 continue;
1726 }
David Sodman79bba0e2018-08-05 18:07:49 -07001727
Lloyd Pique32cbe282018-10-19 13:09:22 -07001728 const Vector<sp<Layer>>& currentLayers = displayDevice->getVisibleLayersSortedByZ();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001729 for (size_t i = 0; i < currentLayers.size(); i++) {
1730 const auto& layer = currentLayers[i];
David Sodman79bba0e2018-08-05 18:07:49 -07001731
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001732 if (!layer->hasHwcLayer(displayDevice)) {
Lloyd Pique07e33212018-12-18 16:33:37 -08001733 layer->forceClientComposition(displayDevice);
1734 continue;
David Sodman79bba0e2018-08-05 18:07:49 -07001735 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001736
Lloyd Pique32cbe282018-10-19 13:09:22 -07001737 layer->setGeometry(displayDevice, i);
Dominik Laskowski075d3172018-05-24 15:50:06 -07001738 if (mDebugDisableHWC || mDebugRegion) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001739 layer->forceClientComposition(displayDevice);
Dominik Laskowski075d3172018-05-24 15:50:06 -07001740 }
David Sodman79bba0e2018-08-05 18:07:49 -07001741 }
1742 }
1743 }
1744
1745 // Set the per-frame data
Lloyd Pique32cbe282018-10-19 13:09:22 -07001746 for (const auto& [token, displayDevice] : mDisplays) {
1747 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001748 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001749 if (!displayId) {
David Sodman79bba0e2018-08-05 18:07:49 -07001750 continue;
1751 }
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001752 auto* profile = display->getDisplayColorProfile();
David Sodman79bba0e2018-08-05 18:07:49 -07001753
1754 if (mDrawingState.colorMatrixChanged) {
1755 display->setColorTransform(mDrawingState.colorMatrix);
David Sodman79bba0e2018-08-05 18:07:49 -07001756 }
Peiyong Linc502cb72019-03-01 15:00:23 -08001757 Dataspace targetDataspace = Dataspace::UNKNOWN;
1758 if (useColorManagement) {
1759 ColorMode colorMode;
1760 RenderIntent renderIntent;
1761 pickColorMode(displayDevice, &colorMode, &targetDataspace, &renderIntent);
1762 display->setColorMode(colorMode, targetDataspace, renderIntent);
1763 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07001764 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
David Sodman79bba0e2018-08-05 18:07:49 -07001765 if (layer->isHdrY410()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001766 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001767 } else if ((layer->getDataSpace() == Dataspace::BT2020_PQ ||
1768 layer->getDataSpace() == Dataspace::BT2020_ITU_PQ) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001769 !profile->hasHDR10Support()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001770 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001771 } else if ((layer->getDataSpace() == Dataspace::BT2020_HLG ||
1772 layer->getDataSpace() == Dataspace::BT2020_ITU_HLG) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001773 !profile->hasHLGSupport()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001774 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001775 }
1776
Peiyong Lind3788632018-09-18 16:01:31 -07001777 // TODO(b/111562338) remove when composer 2.3 is shipped.
1778 if (layer->hasColorTransform()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001779 layer->forceClientComposition(displayDevice);
Peiyong Lind3788632018-09-18 16:01:31 -07001780 }
1781
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001782 if (layer->getRoundedCornerState().radius > 0.0f) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001783 layer->forceClientComposition(displayDevice);
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001784 }
1785
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001786 if (layer->getForceClientComposition(displayDevice)) {
David Sodman79bba0e2018-08-05 18:07:49 -07001787 ALOGV("[%s] Requesting Client composition", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001788 layer->setCompositionType(displayDevice,
1789 Hwc2::IComposerClient::Composition::CLIENT);
David Sodman79bba0e2018-08-05 18:07:49 -07001790 continue;
1791 }
1792
Lloyd Pique32cbe282018-10-19 13:09:22 -07001793 const auto& displayState = display->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001794 layer->setPerFrameData(displayDevice, displayState.transform, displayState.viewport,
Peiyong Linc502cb72019-03-01 15:00:23 -08001795 displayDevice->getSupportedPerFrameMetadata(), targetDataspace);
David Sodman79bba0e2018-08-05 18:07:49 -07001796 }
1797 }
1798
1799 mDrawingState.colorMatrixChanged = false;
David Sodmanba340492018-08-05 21:51:33 -07001800
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001801 for (const auto& [token, displayDevice] : mDisplays) {
1802 auto display = displayDevice->getCompositionDisplay();
1803 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -08001804 auto& layerState = layer->getCompositionLayer()->editState().frontEnd;
1805 layerState.compositionType = static_cast<Hwc2::IComposerClient::Composition>(
1806 layer->getCompositionType(displayDevice));
David Sodmanba340492018-08-05 21:51:33 -07001807 }
1808 }
David Sodman79bba0e2018-08-05 18:07:49 -07001809}
1810
Lloyd Pique32cbe282018-10-19 13:09:22 -07001811void SurfaceFlinger::doDebugFlashRegions(const sp<DisplayDevice>& displayDevice,
1812 bool repaintEverything) {
1813 auto display = displayDevice->getCompositionDisplay();
1814 const auto& displayState = display->getState();
1815
Mathias Agopiancd60f992012-08-16 16:28:27 -07001816 // is debugging enabled
1817 if (CC_LIKELY(!mDebugRegion))
1818 return;
1819
Lloyd Pique32cbe282018-10-19 13:09:22 -07001820 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08001821 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001822 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
David Sodmanfa9b2af2017-12-24 13:28:59 -08001823 if (!dirtyRegion.isEmpty()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001824 base::unique_fd readyFence;
David Sodmanfa9b2af2017-12-24 13:28:59 -08001825 // redraw the whole screen
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001826 doComposeSurfaces(displayDevice, dirtyRegion, &readyFence);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001827
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001828 display->getRenderSurface()->queueBuffer(std::move(readyFence));
Mathias Agopiancd60f992012-08-16 16:28:27 -07001829 }
1830 }
1831
Lloyd Pique32cbe282018-10-19 13:09:22 -07001832 postFramebuffer(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001833
1834 if (mDebugRegion > 1) {
1835 usleep(mDebugRegion * 1000);
1836 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001837
Lloyd Pique32cbe282018-10-19 13:09:22 -07001838 prepareFrame(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001839}
1840
Adrian Roos1e1a1282017-11-01 19:05:31 +01001841void SurfaceFlinger::doTracing(const char* where) {
1842 ATRACE_CALL();
1843 ATRACE_NAME(where);
1844 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001845 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001846 }
1847}
1848
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001849void SurfaceFlinger::logLayerStats() {
1850 ATRACE_CALL();
1851 if (CC_UNLIKELY(mLayerStats.isEnabled())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07001852 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001853 if (display->isPrimary()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001854 mLayerStats.logLayerStats(dumpVisibleLayersProtoInfo(display));
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001855 return;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001856 }
1857 }
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001858
1859 ALOGE("logLayerStats: no primary display");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001860 }
1861}
1862
David Sodman2b406362017-12-15 13:33:47 -08001863void SurfaceFlinger::preComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001864{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001865 ATRACE_CALL();
1866 ALOGV("preComposition");
1867
David Sodman2b406362017-12-15 13:33:47 -08001868 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
1869
Mathias Agopiancd60f992012-08-16 16:28:27 -07001870 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001871 mDrawingState.traverseInZOrder([&](Layer* layer) {
David Sodman2b406362017-12-15 13:33:47 -08001872 if (layer->onPreComposition(mRefreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001873 needExtraInvalidate = true;
1874 }
Robert Carr2047fae2016-11-28 14:09:09 -08001875 });
1876
Mathias Agopiancd60f992012-08-16 16:28:27 -07001877 if (needExtraInvalidate) {
1878 signalLayerUpdate();
1879 }
1880}
1881
Ana Krulece588e312018-09-18 12:32:24 -07001882void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime,
1883 std::shared_ptr<FenceTime>& presentFenceTime) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001884 // Update queue of past composite+present times and determine the
1885 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001886 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001887 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001888 while (!getBE().mCompositePresentTimes.empty()) {
1889 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001890 // Cached values should have been updated before calling this method,
1891 // which helps avoid duplicate syscalls.
1892 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1893 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1894 break;
1895 }
1896 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001897 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001898 }
1899
1900 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001901 while (getBE().mCompositePresentTimes.size() > 16) {
1902 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001903 }
1904
Ana Krulece588e312018-09-18 12:32:24 -07001905 setCompositorTimingSnapped(stats, compositeToPresentLatency);
Brian Andersond0010582017-03-07 13:20:31 -08001906}
1907
Ana Krulece588e312018-09-18 12:32:24 -07001908void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats,
1909 nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001910 // Integer division and modulo round toward 0 not -inf, so we need to
1911 // treat negative and positive offsets differently.
Ana Krulec757f63a2019-01-25 10:46:18 -08001912 nsecs_t idealLatency = (mPhaseOffsets->getCurrentSfOffset() > 0)
1913 ? (stats.vsyncPeriod - (mPhaseOffsets->getCurrentSfOffset() % stats.vsyncPeriod))
1914 : ((-mPhaseOffsets->getCurrentSfOffset()) % stats.vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001915
Ana Krulec757f63a2019-01-25 10:46:18 -08001916 // Just in case mPhaseOffsets->getCurrentSfOffset() == -vsyncInterval.
Brian Andersond0010582017-03-07 13:20:31 -08001917 if (idealLatency <= 0) {
Ana Krulece588e312018-09-18 12:32:24 -07001918 idealLatency = stats.vsyncPeriod;
Brian Andersond0010582017-03-07 13:20:31 -08001919 }
1920
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001921 // Snap the latency to a value that removes scheduling jitter from the
1922 // composition and present times, which often have >1ms of jitter.
1923 // Reducing jitter is important if an app attempts to extrapolate
1924 // something (such as user input) to an accurate diasplay time.
Ana Krulec757f63a2019-01-25 10:46:18 -08001925 // Snapping also allows an app to precisely calculate mPhaseOffsets->getCurrentSfOffset()
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001926 // with (presentLatency % interval).
Ana Krulece588e312018-09-18 12:32:24 -07001927 nsecs_t bias = stats.vsyncPeriod / 2;
1928 int64_t extraVsyncs = (compositeToPresentLatency - idealLatency + bias) / stats.vsyncPeriod;
1929 nsecs_t snappedCompositeToPresentLatency =
1930 (extraVsyncs > 0) ? idealLatency + (extraVsyncs * stats.vsyncPeriod) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001931
David Sodman99974d22017-11-28 12:04:33 -08001932 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
Ana Krulece588e312018-09-18 12:32:24 -07001933 getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency;
1934 getBE().mCompositorTiming.interval = stats.vsyncPeriod;
David Sodman99974d22017-11-28 12:04:33 -08001935 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001936}
1937
David Sodman2b406362017-12-15 13:33:47 -08001938void SurfaceFlinger::postComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001939{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001940 ATRACE_CALL();
1941 ALOGV("postComposition");
1942
Brian Anderson3546a3f2016-07-14 11:51:14 -07001943 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001944 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001945 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001946 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001947 }
1948
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001949 // |mStateLock| not needed as we are on the main thread
Lloyd Pique32cbe282018-10-19 13:09:22 -07001950 const auto displayDevice = getDefaultDisplayDeviceLocked();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001951
David Sodman73beded2017-11-15 11:56:06 -08001952 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001953 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001954 if (displayDevice && getHwComposer().hasClientComposition(displayDevice->getId())) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001955 glCompositionDoneFenceTime =
Lloyd Pique31cb2942018-10-19 17:23:03 -07001956 std::make_shared<FenceTime>(displayDevice->getCompositionDisplay()
1957 ->getRenderSurface()
1958 ->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001959 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001960 } else {
1961 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1962 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001963
David Sodman73beded2017-11-15 11:56:06 -08001964 getBE().mDisplayTimeline.updateSignalTimes();
Lloyd Pique32cbe282018-10-19 13:09:22 -07001965 mPreviousPresentFence = displayDevice ? getHwComposer().getPresentFence(*displayDevice->getId())
1966 : Fence::NO_FENCE;
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001967 auto presentFenceTime = std::make_shared<FenceTime>(mPreviousPresentFence);
David Sodman73beded2017-11-15 11:56:06 -08001968 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001969
Ana Krulece588e312018-09-18 12:32:24 -07001970 DisplayStatInfo stats;
Ana Krulecc2870422019-01-29 19:00:58 -08001971 mScheduler->getDisplayStatInfo(&stats);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001972
David Sodman2b406362017-12-15 13:33:47 -08001973 // We use the mRefreshStartTime which might be sampled a little later than
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001974 // when we started doing work for this frame, but that should be okay
1975 // since updateCompositorTiming has snapping logic.
Ana Krulece588e312018-09-18 12:32:24 -07001976 updateCompositorTiming(stats, mRefreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001977 CompositorTiming compositorTiming;
1978 {
David Sodman99974d22017-11-28 12:04:33 -08001979 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1980 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001981 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001982
Robert Carr2047fae2016-11-28 14:09:09 -08001983 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001984 bool frameLatched =
1985 layer->onPostComposition(displayDevice->getId(), glCompositionDoneFenceTime,
1986 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001987 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001988 recordBufferingStats(layer->getName().string(),
1989 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001990 }
Robert Carr2047fae2016-11-28 14:09:09 -08001991 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001992
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001993 if (presentFenceTime->isValid()) {
Ana Krulecc2870422019-01-29 19:00:58 -08001994 mScheduler->addPresentFence(presentFenceTime);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001995 }
1996
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08001997 if (!hasSyncFramework) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001998 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
1999 displayDevice->isPoweredOn()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002000 mScheduler->enableHardwareVsync();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002001 }
2002 }
2003
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002004 if (mAnimCompositionPending) {
2005 mAnimCompositionPending = false;
2006
Brian Anderson4e606e32017-03-16 15:34:57 -07002007 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002008 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07002009 std::move(presentFenceTime));
Lloyd Pique32cbe282018-10-19 13:09:22 -07002010 } else if (displayDevice && getHwComposer().isConnected(*displayDevice->getId())) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002011 // The HWC doesn't support present fences, so use the refresh
2012 // timestamp instead.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002013 const nsecs_t presentTime =
2014 getHwComposer().getRefreshTimestamp(*displayDevice->getId());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002015 mAnimFrameTracker.setActualPresentTime(presentTime);
2016 }
2017 mAnimFrameTracker.advanceFrame();
2018 }
Dan Stozab90cf072015-03-05 11:05:59 -08002019
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002020 mTimeStats->incrementTotalFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002021 if (mHadClientComposition) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002022 mTimeStats->incrementClientCompositionFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002023 }
2024
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002025 mTimeStats->setPresentFenceGlobal(presentFenceTime);
Yiwei Zhangce6ebc02018-10-20 12:42:38 -07002026
Lloyd Pique32cbe282018-10-19 13:09:22 -07002027 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2028 !displayDevice->isPoweredOn()) {
Dan Stozab90cf072015-03-05 11:05:59 -08002029 return;
2030 }
2031
2032 nsecs_t currentTime = systemTime();
2033 if (mHasPoweredOff) {
2034 mHasPoweredOff = false;
2035 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002036 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Ana Krulece588e312018-09-18 12:32:24 -07002037 size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod);
David Sodman4a36e932017-11-07 14:29:47 -08002038 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
2039 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002040 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002041 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002042 }
David Sodman4a36e932017-11-07 14:29:47 -08002043 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002044 }
David Sodman4a36e932017-11-07 14:29:47 -08002045 getBE().mLastSwapTime = currentTime;
Dan Stoza436ccf32018-06-21 12:10:12 -07002046
2047 {
2048 std::lock_guard lock(mTexturePoolMutex);
2049 const size_t refillCount = mTexturePoolSize - mTexturePool.size();
2050 if (refillCount > 0) {
2051 const size_t offset = mTexturePool.size();
2052 mTexturePool.resize(mTexturePoolSize);
2053 getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset);
2054 ATRACE_INT("TexturePoolSize", mTexturePool.size());
2055 }
2056 }
Marissa Walle2ffb422018-10-12 11:33:52 -07002057
Marissa Wallfda30bb2018-10-12 11:34:28 -07002058 mTransactionCompletedThread.addPresentFence(mPreviousPresentFence);
Marissa Walle2ffb422018-10-12 11:33:52 -07002059 mTransactionCompletedThread.sendCallbacks();
Ady Abraham8164d482019-01-11 14:47:59 -08002060
Dan Stozaec460082018-12-17 15:35:09 -08002061 if (mLumaSampling) {
2062 mRegionSamplingThread->sampleNow();
2063 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002064}
2065
Vishnu Nair4351ad52019-02-11 14:13:02 -08002066void SurfaceFlinger::computeLayerBounds() {
2067 for (const auto& pair : mDisplays) {
2068 const auto& displayDevice = pair.second;
2069 const auto display = displayDevice->getCompositionDisplay();
2070 for (const auto& layer : mDrawingState.layersSortedByZ) {
2071 // only consider the layers on the given layer stack
2072 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Vishnu Nair01ace762019-02-12 14:25:24 -08002073 continue;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002074 }
2075
2076 layer->computeBounds(displayDevice->getViewport().toFloatRect(), ui::Transform());
2077 }
2078 }
2079}
2080
Mathias Agopiancd60f992012-08-16 16:28:27 -07002081void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002082 ATRACE_CALL();
2083 ALOGV("rebuildLayerStacks");
2084
Mathias Agopiancd60f992012-08-16 16:28:27 -07002085 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07002086 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07002087 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07002088 mVisibleRegionsDirty = false;
2089 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002090
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002091 for (const auto& pair : mDisplays) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002092 const auto& displayDevice = pair.second;
2093 auto display = displayDevice->getCompositionDisplay();
2094 const auto& displayState = display->getState();
Jeff Sharkey76488112017-02-27 14:15:18 -07002095 Region opaqueRegion;
2096 Region dirtyRegion;
Lloyd Piquecc01a452018-12-04 17:24:00 -08002097 compositionengine::Output::OutputLayers layersSortedByZ;
2098 Vector<sp<Layer>> deprecated_layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08002099 Vector<sp<Layer>> layersNeedingFences;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002100 const ui::Transform& tr = displayState.transform;
2101 const Rect bounds = displayState.bounds;
2102 if (displayState.isEnabled) {
2103 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002104
Jeff Sharkey76488112017-02-27 14:15:18 -07002105 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Piquecc01a452018-12-04 17:24:00 -08002106 auto compositionLayer = layer->getCompositionLayer();
2107 if (compositionLayer == nullptr) {
2108 return;
2109 }
2110
Lloyd Pique32cbe282018-10-19 13:09:22 -07002111 const auto displayId = displayDevice->getId();
Lloyd Piquecc01a452018-12-04 17:24:00 -08002112 sp<compositionengine::LayerFE> layerFE = compositionLayer->getLayerFE();
2113 LOG_ALWAYS_FATAL_IF(layerFE.get() == nullptr);
2114
Lloyd Pique07e33212018-12-18 16:33:37 -08002115 bool needsOutputLayer = false;
2116
Lloyd Piqueef36b002019-01-23 17:52:04 -08002117 if (display->belongsInOutput(layer->getLayerStack(),
2118 layer->getPrimaryDisplayOnly())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07002119 Region drawRegion(tr.transform(
2120 layer->visibleNonTransparentRegion));
2121 drawRegion.andSelf(bounds);
2122 if (!drawRegion.isEmpty()) {
Lloyd Pique07e33212018-12-18 16:33:37 -08002123 needsOutputLayer = true;
Jeff Sharkey76488112017-02-27 14:15:18 -07002124 }
Chia-I Wu83806892017-11-16 10:50:20 -08002125 }
2126
Lloyd Pique07e33212018-12-18 16:33:37 -08002127 if (needsOutputLayer) {
2128 layersSortedByZ.emplace_back(
2129 display->getOrCreateOutputLayer(displayId, compositionLayer,
2130 layerFE));
2131 deprecated_layersSortedByZ.add(layer);
2132
2133 auto& outputLayerState = layersSortedByZ.back()->editState();
2134 outputLayerState.visibleRegion =
2135 tr.transform(layer->visibleRegion.intersect(displayState.viewport));
2136 } else if (displayId) {
2137 // For layers that are being removed from a HWC display,
2138 // and that have queued frames, add them to a a list of
2139 // released layers so we can properly set a fence.
2140 bool hasExistingOutputLayer =
2141 display->getOutputLayerForLayer(compositionLayer.get()) != nullptr;
2142 bool hasQueuedFrames = std::find(mLayersWithQueuedFrames.cbegin(),
2143 mLayersWithQueuedFrames.cend(),
2144 layer) != mLayersWithQueuedFrames.cend();
2145
2146 if (hasExistingOutputLayer && hasQueuedFrames) {
Chia-I Wu83806892017-11-16 10:50:20 -08002147 layersNeedingFences.add(layer);
2148 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002149 }
Jeff Sharkey76488112017-02-27 14:15:18 -07002150 });
2151 }
Lloyd Piquecc01a452018-12-04 17:24:00 -08002152
2153 display->setOutputLayersOrderedByZ(std::move(layersSortedByZ));
2154
2155 displayDevice->setVisibleLayersSortedByZ(deprecated_layersSortedByZ);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002156 displayDevice->setLayersNeedingFences(layersNeedingFences);
2157
2158 Region undefinedRegion{bounds};
2159 undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
2160
2161 display->editState().undefinedRegion = undefinedRegion;
2162 display->editState().dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002163 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002164 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002165}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002166
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002167// Returns a data space that fits all visible layers. The returned data space
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002168// can only be one of
Chia-I Wu7a28ecb2018-05-04 10:38:39 -07002169// - Dataspace::SRGB (use legacy dataspace and let HWC saturate when colors are enhanced)
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002170// - Dataspace::DISPLAY_P3
Valerie Hau9758ae02018-10-09 16:05:09 -07002171// - Dataspace::DISPLAY_BT2020
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002172// The returned HDR data space is one of
2173// - Dataspace::UNKNOWN
2174// - Dataspace::BT2020_HLG
2175// - Dataspace::BT2020_PQ
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002176Dataspace SurfaceFlinger::getBestDataspace(const sp<const DisplayDevice>& display,
2177 Dataspace* outHdrDataSpace) const {
Peiyong Lin14724e62018-12-05 07:27:30 -08002178 Dataspace bestDataSpace = Dataspace::V0_SRGB;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002179 *outHdrDataSpace = Dataspace::UNKNOWN;
2180
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002181 for (const auto& layer : display->getVisibleLayersSortedByZ()) {
Chia-I Wu01591c92018-05-22 12:03:00 -07002182 switch (layer->getDataSpace()) {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002183 case Dataspace::V0_SCRGB:
2184 case Dataspace::V0_SCRGB_LINEAR:
Valerie Hau9758ae02018-10-09 16:05:09 -07002185 case Dataspace::BT2020:
2186 case Dataspace::BT2020_ITU:
2187 case Dataspace::BT2020_LINEAR:
2188 case Dataspace::DISPLAY_BT2020:
2189 bestDataSpace = Dataspace::DISPLAY_BT2020;
2190 break;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002191 case Dataspace::DISPLAY_P3:
Chia-I Wube02ec02018-05-18 10:59:36 -07002192 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002193 break;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002194 case Dataspace::BT2020_PQ:
2195 case Dataspace::BT2020_ITU_PQ:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002196 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002197 *outHdrDataSpace = Dataspace::BT2020_PQ;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002198 break;
Peiyong Linf59a7192018-04-25 11:19:31 -07002199 case Dataspace::BT2020_HLG:
2200 case Dataspace::BT2020_ITU_HLG:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002201 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002202 // When there's mixed PQ content and HLG content, we set the HDR
2203 // data space to be BT2020_PQ and convert HLG to PQ.
2204 if (*outHdrDataSpace == Dataspace::UNKNOWN) {
2205 *outHdrDataSpace = Dataspace::BT2020_HLG;
Peiyong Linf59a7192018-04-25 11:19:31 -07002206 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002207 break;
2208 default:
2209 break;
2210 }
Romain Guy54f154a2017-10-24 21:40:32 +01002211 }
2212
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002213 return bestDataSpace;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002214}
2215
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002216// Pick the ColorMode / Dataspace for the display device.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002217void SurfaceFlinger::pickColorMode(const sp<DisplayDevice>& display, ColorMode* outMode,
2218 Dataspace* outDataSpace, RenderIntent* outRenderIntent) const {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002219 if (mDisplayColorSetting == DisplayColorSetting::UNMANAGED) {
2220 *outMode = ColorMode::NATIVE;
2221 *outDataSpace = Dataspace::UNKNOWN;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002222 *outRenderIntent = RenderIntent::COLORIMETRIC;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002223 return;
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002224 }
Romain Guy88d37dd2017-05-26 17:57:05 -07002225
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002226 Dataspace hdrDataSpace;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002227 Dataspace bestDataSpace = getBestDataspace(display, &hdrDataSpace);
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002228
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002229 auto* profile = display->getCompositionDisplay()->getDisplayColorProfile();
2230
Peiyong Lina3ea5592019-02-10 14:45:00 -08002231 switch (mForceColorMode) {
2232 case ColorMode::SRGB:
2233 bestDataSpace = Dataspace::V0_SRGB;
2234 break;
2235 case ColorMode::DISPLAY_P3:
2236 bestDataSpace = Dataspace::DISPLAY_P3;
2237 break;
2238 default:
2239 break;
2240 }
2241
Peiyong Lindfde5112018-06-05 10:58:41 -07002242 // respect hdrDataSpace only when there is no legacy HDR support
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002243 const bool isHdr =
2244 hdrDataSpace != Dataspace::UNKNOWN && !profile->hasLegacyHdrSupport(hdrDataSpace);
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002245 if (isHdr) {
2246 bestDataSpace = hdrDataSpace;
2247 }
2248
Chia-I Wu0d711262018-05-21 15:19:35 -07002249 RenderIntent intent;
2250 switch (mDisplayColorSetting) {
2251 case DisplayColorSetting::MANAGED:
2252 case DisplayColorSetting::UNMANAGED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002253 intent = isHdr ? RenderIntent::TONE_MAP_COLORIMETRIC : RenderIntent::COLORIMETRIC;
Chia-I Wu0d711262018-05-21 15:19:35 -07002254 break;
2255 case DisplayColorSetting::ENHANCED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002256 intent = isHdr ? RenderIntent::TONE_MAP_ENHANCE : RenderIntent::ENHANCE;
Chia-I Wu0d711262018-05-21 15:19:35 -07002257 break;
2258 default: // vendor display color setting
2259 intent = static_cast<RenderIntent>(mDisplayColorSetting);
2260 break;
2261 }
Chia-I Wube02ec02018-05-18 10:59:36 -07002262
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002263 profile->getBestColorMode(bestDataSpace, intent, outDataSpace, outMode, outRenderIntent);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002264}
2265
Lloyd Pique32cbe282018-10-19 13:09:22 -07002266void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) {
2267 auto display = displayDevice->getCompositionDisplay();
2268 const auto& displayState = display->getState();
2269
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002270 bool dirty = !display->getDirtyRegion(false).isEmpty();
Lloyd Pique32cbe282018-10-19 13:09:22 -07002271 bool empty = displayDevice->getVisibleLayersSortedByZ().size() == 0;
2272 bool wasEmpty = !displayState.lastCompositionHadVisibleLayers;
David Sodman2b406362017-12-15 13:33:47 -08002273
David Sodmanfa9b2af2017-12-24 13:28:59 -08002274 // If nothing has changed (!dirty), don't recompose.
2275 // If something changed, but we don't currently have any visible layers,
2276 // and didn't when we last did a composition, then skip it this time.
2277 // The second rule does two things:
2278 // - When all layers are removed from a display, we'll emit one black
2279 // frame, then nothing more until we get new layers.
2280 // - When a display is created with a private layer stack, we won't
2281 // emit any black frames until a layer is added to the layer stack.
2282 bool mustRecompose = dirty && !(empty && wasEmpty);
David Sodman2b406362017-12-15 13:33:47 -08002283
Dominik Laskowski075d3172018-05-24 15:50:06 -07002284 const char flagPrefix[] = {'-', '+'};
2285 static_cast<void>(flagPrefix);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002286 ALOGV_IF(displayDevice->isVirtual(), "%s: %s composition for %s (%cdirty %cempty %cwasEmpty)",
2287 __FUNCTION__, mustRecompose ? "doing" : "skipping",
2288 displayDevice->getDebugName().c_str(), flagPrefix[dirty], flagPrefix[empty],
2289 flagPrefix[wasEmpty]);
David Sodman2b406362017-12-15 13:33:47 -08002290
Lloyd Pique31cb2942018-10-19 17:23:03 -07002291 display->getRenderSurface()->beginFrame(mustRecompose);
David Sodman2b406362017-12-15 13:33:47 -08002292
David Sodmanfa9b2af2017-12-24 13:28:59 -08002293 if (mustRecompose) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002294 display->editState().lastCompositionHadVisibleLayers = !empty;
David Sodman2b406362017-12-15 13:33:47 -08002295 }
2296}
2297
Lloyd Pique32cbe282018-10-19 13:09:22 -07002298void SurfaceFlinger::prepareFrame(const sp<DisplayDevice>& displayDevice) {
2299 auto display = displayDevice->getCompositionDisplay();
2300 const auto& displayState = display->getState();
2301
2302 if (!displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002303 return;
David Sodman2b406362017-12-15 13:33:47 -08002304 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08002305
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002306 status_t result = display->getRenderSurface()->prepareFrame();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002307 ALOGE_IF(result != NO_ERROR, "prepareFrame failed for %s: %d (%s)",
Lloyd Pique32cbe282018-10-19 13:09:22 -07002308 displayDevice->getDebugName().c_str(), result, strerror(-result));
David Sodman2b406362017-12-15 13:33:47 -08002309}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002310
Lloyd Pique32cbe282018-10-19 13:09:22 -07002311void SurfaceFlinger::doComposition(const sp<DisplayDevice>& displayDevice, bool repaintEverything) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002312 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002313 ALOGV("doComposition");
2314
Lloyd Pique32cbe282018-10-19 13:09:22 -07002315 auto display = displayDevice->getCompositionDisplay();
2316 const auto& displayState = display->getState();
2317
2318 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002319 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002320 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
Mathias Agopian02b95102012-11-05 17:50:57 -08002321
David Sodmanfa9b2af2017-12-24 13:28:59 -08002322 // repaint the framebuffer (if needed)
Lloyd Pique32cbe282018-10-19 13:09:22 -07002323 doDisplayComposition(displayDevice, dirtyRegion);
Mathias Agopian02b95102012-11-05 17:50:57 -08002324
Lloyd Pique32cbe282018-10-19 13:09:22 -07002325 display->editState().dirtyRegion.clear();
Lloyd Pique31cb2942018-10-19 17:23:03 -07002326 display->getRenderSurface()->flip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002327 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002328 postFramebuffer(displayDevice);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002329}
2330
David Sodmanfa9b2af2017-12-24 13:28:59 -08002331void SurfaceFlinger::postFrame()
2332{
2333 // |mStateLock| not needed as we are on the main thread
Dominik Laskowski075d3172018-05-24 15:50:06 -07002334 const auto display = getDefaultDisplayDeviceLocked();
2335 if (display && getHwComposer().isConnected(*display->getId())) {
2336 uint32_t flipCount = display->getPageFlipCount();
David Sodmanfa9b2af2017-12-24 13:28:59 -08002337 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2338 logFrameStats();
2339 }
2340 }
2341}
2342
Lloyd Pique32cbe282018-10-19 13:09:22 -07002343void SurfaceFlinger::postFramebuffer(const sp<DisplayDevice>& displayDevice) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002344 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002345 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08002346
Lloyd Pique32cbe282018-10-19 13:09:22 -07002347 auto display = displayDevice->getCompositionDisplay();
2348 const auto& displayState = display->getState();
2349 const auto displayId = display->getId();
2350
David Sodmanfa9b2af2017-12-24 13:28:59 -08002351 mPostFramebufferTime = systemTime();
Jesse Hallc5c5a142012-07-02 16:49:28 -07002352
Lloyd Pique32cbe282018-10-19 13:09:22 -07002353 if (displayState.isEnabled) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002354 if (displayId) {
2355 getHwComposer().presentAndGetReleaseFences(*displayId);
Mathias Agopian2a231842012-09-24 18:12:35 -07002356 }
Lloyd Pique31cb2942018-10-19 17:23:03 -07002357 display->getRenderSurface()->onPresentDisplayCompleted();
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002358 for (auto& layer : display->getOutputLayersOrderedByZ()) {
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002359 sp<Fence> releaseFence = Fence::NO_FENCE;
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002360 bool usedClientComposition = true;
David Sodman15094112018-10-11 09:39:37 -07002361
Chia-I Wu7b549592017-11-15 09:14:57 -08002362 // The layer buffer from the previous frame (if any) is released
2363 // by HWC only when the release fence from this frame (if any) is
2364 // signaled. Always get the release fence from HWC first.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002365 if (layer->getState().hwc) {
2366 const auto& hwcState = *layer->getState().hwc;
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002367 releaseFence =
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002368 getHwComposer().getLayerReleaseFence(*displayId, hwcState.hwcLayer.get());
2369 usedClientComposition =
2370 hwcState.hwcCompositionType == Hwc2::IComposerClient::Composition::CLIENT;
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002371 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002372
2373 // If the layer was client composited in the previous frame, we
2374 // need to merge with the previous client target acquire fence.
2375 // Since we do not track that, always merge with the current
2376 // client target acquire fence when it is available, even though
2377 // this is suboptimal.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002378 if (usedClientComposition) {
Lloyd Pique31cb2942018-10-19 17:23:03 -07002379 releaseFence =
2380 Fence::merge("LayerRelease", releaseFence,
2381 display->getRenderSurface()->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002382 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002383
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002384 layer->getLayerFE().onLayerDisplayed(releaseFence);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002385 }
Chia-I Wu83806892017-11-16 10:50:20 -08002386
2387 // We've got a list of layers needing fences, that are disjoint with
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002388 // display->getVisibleLayersSortedByZ. The best we can do is to
Chia-I Wu83806892017-11-16 10:50:20 -08002389 // supply them with the present fence.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002390 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002391 sp<Fence> presentFence =
Lloyd Pique441d5042018-10-18 16:49:51 -07002392 displayId ? getHwComposer().getPresentFence(*displayId) : Fence::NO_FENCE;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002393 for (auto& layer : displayDevice->getLayersNeedingFences()) {
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002394 layer->getCompositionLayer()->getLayerFE()->onLayerDisplayed(presentFence);
Chia-I Wu83806892017-11-16 10:50:20 -08002395 }
2396 }
2397
Dominik Laskowski075d3172018-05-24 15:50:06 -07002398 if (displayId) {
2399 getHwComposer().clearReleaseFences(*displayId);
Jesse Hallef194142012-06-14 14:45:17 -07002400 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002401 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002402}
2403
Mathias Agopian87baae12012-07-31 12:38:26 -07002404void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002405{
Mathias Agopian841cde52012-03-01 15:44:37 -08002406 ATRACE_CALL();
2407
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002408 // here we keep a copy of the drawing state (that is the state that's
2409 // going to be overwritten by handleTransactionLocked()) outside of
2410 // mStateLock so that the side-effects of the State assignment
2411 // don't happen with mStateLock held (which can cause deadlocks).
2412 State drawingState(mDrawingState);
2413
Mathias Agopianca4d3602011-05-19 15:38:14 -07002414 Mutex::Autolock _l(mStateLock);
2415 const nsecs_t now = systemTime();
2416 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002417
Mathias Agopianca4d3602011-05-19 15:38:14 -07002418 // Here we're guaranteed that some transaction flags are set
2419 // so we can call handleTransactionLocked() unconditionally.
2420 // We call getTransactionFlags(), which will also clear the flags,
2421 // with mStateLock held to guarantee that mCurrentState won't change
2422 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002423
Jorim Jaggif15c3be2018-04-12 12:56:58 +01002424 mVsyncModulator.onTransactionHandled();
Mathias Agopiane57f2922012-08-09 16:29:12 -07002425 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002426 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002427
Mathias Agopianca4d3602011-05-19 15:38:14 -07002428 mLastTransactionTime = systemTime() - now;
2429 mDebugInTransaction = 0;
2430 invalidateHwcGeometry();
2431 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002432}
2433
Lloyd Piqueba04e622017-12-14 17:11:26 -08002434void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2435 for (const auto& event : mPendingHotplugEvents) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002436 const std::optional<DisplayIdentificationInfo> info =
2437 getHwComposer().onHotplug(event.hwcDisplayId, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002438
Dominik Laskowski075d3172018-05-24 15:50:06 -07002439 if (!info) {
Lloyd Piqueba04e622017-12-14 17:11:26 -08002440 continue;
2441 }
2442
Lloyd Piqueba04e622017-12-14 17:11:26 -08002443 if (event.connection == HWC2::Connection::Connected) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002444 if (!mPhysicalDisplayTokens.count(info->id)) {
Dominik Laskowski34157762018-10-31 13:07:19 -07002445 ALOGV("Creating display %s", to_string(info->id).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07002446 mPhysicalDisplayTokens[info->id] = new BBinder();
2447 DisplayDeviceState state;
2448 state.displayId = info->id;
2449 state.isSecure = true; // All physical displays are currently considered secure.
2450 state.displayName = info->name;
2451 mCurrentState.displays.add(mPhysicalDisplayTokens[info->id], state);
2452 mInterceptor->saveDisplayCreation(state);
Steven Thomaseb6d2052018-03-20 15:40:48 -07002453 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002454 } else {
Dominik Laskowski34157762018-10-31 13:07:19 -07002455 ALOGV("Removing display %s", to_string(info->id).c_str());
Lloyd Piqueba04e622017-12-14 17:11:26 -08002456
Dominik Laskowski075d3172018-05-24 15:50:06 -07002457 ssize_t index = mCurrentState.displays.indexOfKey(mPhysicalDisplayTokens[info->id]);
2458 if (index >= 0) {
2459 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
2460 mInterceptor->saveDisplayDeletion(state.sequenceId);
2461 mCurrentState.displays.removeItemsAt(index);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002462 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002463 mPhysicalDisplayTokens.erase(info->id);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002464 }
2465
2466 processDisplayChangesLocked();
2467 }
2468
2469 mPendingHotplugEvents.clear();
2470}
2471
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002472void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) {
Ana Krulecc2870422019-01-29 19:00:58 -08002473 mScheduler->hotplugReceived(mAppConnectionHandle, displayId, connected);
2474 mScheduler->hotplugReceived(mSfConnectionHandle, displayId, connected);
Dominik Laskowski1eba0202019-01-24 09:14:40 -08002475}
2476
Lloyd Pique99d3da52018-01-22 17:48:03 -08002477sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal(
Dominik Laskowski075d3172018-05-24 15:50:06 -07002478 const wp<IBinder>& displayToken, const std::optional<DisplayId>& displayId,
Lloyd Pique542307f2018-10-19 13:24:08 -07002479 const DisplayDeviceState& state, const sp<compositionengine::DisplaySurface>& dispSurface,
Dominik Laskowski075d3172018-05-24 15:50:06 -07002480 const sp<IGraphicBufferProducer>& producer) {
2481 DisplayDeviceCreationArgs creationArgs(this, displayToken, displayId);
Dominik Laskowskie9774092018-12-11 10:04:24 -08002482 creationArgs.sequenceId = state.sequenceId;
Dominik Laskowski075d3172018-05-24 15:50:06 -07002483 creationArgs.isVirtual = state.isVirtual();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002484 creationArgs.isSecure = state.isSecure;
2485 creationArgs.displaySurface = dispSurface;
2486 creationArgs.hasWideColorGamut = false;
2487 creationArgs.supportedPerFrameMetadata = 0;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002488
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002489 const bool isInternalDisplay = displayId && displayId == getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002490 creationArgs.isPrimary = isInternalDisplay;
2491
2492 if (useColorManagement && displayId) {
2493 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002494 for (ColorMode colorMode : modes) {
Peiyong Linfca547f2018-07-09 13:03:33 -07002495 if (isWideColorMode(colorMode)) {
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002496 creationArgs.hasWideColorGamut = true;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002497 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002498
Dominik Laskowski7e045462018-05-30 13:02:02 -07002499 std::vector<RenderIntent> renderIntents =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002500 getHwComposer().getRenderIntents(*displayId, colorMode);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002501 creationArgs.hwcColorModes.emplace(colorMode, renderIntents);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002502 }
tangrobin6753a022018-08-10 10:58:54 +08002503 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002504
Dominik Laskowski075d3172018-05-24 15:50:06 -07002505 if (displayId) {
2506 getHwComposer().getHdrCapabilities(*displayId, &creationArgs.hdrCapabilities);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002507 creationArgs.supportedPerFrameMetadata =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002508 getHwComposer().getSupportedPerFrameMetadata(*displayId);
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002509 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002510
Lloyd Pique90c115d2018-09-18 21:39:42 -07002511 auto nativeWindowSurface = getFactory().createNativeWindowSurface(producer);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002512 auto nativeWindow = nativeWindowSurface->getNativeWindow();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002513 creationArgs.nativeWindow = nativeWindow;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002514
Lloyd Pique99d3da52018-01-22 17:48:03 -08002515 // Make sure that composition can never be stalled by a virtual display
2516 // consumer that isn't processing buffers fast enough. We have to do this
Alec Mouri0a9c7b82018-11-16 13:05:25 -08002517 // here, in case the display is composed entirely by HWC.
Dominik Laskowski281644e2018-04-19 15:47:35 -07002518 if (state.isVirtual()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002519 nativeWindow->setSwapInterval(nativeWindow.get(), 0);
2520 }
2521
Dominik Laskowski075d3172018-05-24 15:50:06 -07002522 creationArgs.displayInstallOrientation =
2523 isInternalDisplay ? primaryDisplayOrientation : DisplayState::eOrientationDefault;
Chia-I Wua02871c2018-08-27 14:38:23 -07002524
Lloyd Pique99d3da52018-01-22 17:48:03 -08002525 // virtual displays are always considered enabled
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002526 creationArgs.initialPowerMode = state.isVirtual() ? HWC_POWER_MODE_NORMAL : HWC_POWER_MODE_OFF;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002527
Lloyd Pique90c115d2018-09-18 21:39:42 -07002528 sp<DisplayDevice> display = getFactory().createDisplayDevice(std::move(creationArgs));
Lloyd Pique99d3da52018-01-22 17:48:03 -08002529
2530 if (maxFrameBufferAcquiredBuffers >= 3) {
2531 nativeWindowSurface->preallocateBuffers();
2532 }
2533
2534 ColorMode defaultColorMode = ColorMode::NATIVE;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002535 Dataspace defaultDataSpace = Dataspace::UNKNOWN;
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002536 if (display->hasWideColorGamut()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002537 defaultColorMode = ColorMode::SRGB;
Peiyong Lin14724e62018-12-05 07:27:30 -08002538 defaultDataSpace = Dataspace::V0_SRGB;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002539 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002540 display->getCompositionDisplay()->setColorMode(defaultColorMode, defaultDataSpace,
2541 RenderIntent::COLORIMETRIC);
Dominik Laskowski075d3172018-05-24 15:50:06 -07002542 if (!state.isVirtual()) {
2543 LOG_ALWAYS_FATAL_IF(!displayId);
2544 display->setActiveConfig(getHwComposer().getActiveConfigIndex(*displayId));
Lloyd Pique3c085a02018-05-09 19:38:32 -07002545 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002546
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002547 display->setLayerStack(state.layerStack);
2548 display->setProjection(state.orientation, state.viewport, state.frame);
2549 display->setDisplayName(state.displayName);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002550
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002551 return display;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002552}
2553
Lloyd Pique347200f2017-12-14 17:00:15 -08002554void SurfaceFlinger::processDisplayChangesLocked() {
2555 // here we take advantage of Vector's copy-on-write semantics to
2556 // improve performance by skipping the transaction entirely when
2557 // know that the lists are identical
2558 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2559 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2560 if (!curr.isIdenticalTo(draw)) {
2561 mVisibleRegionsDirty = true;
2562 const size_t cc = curr.size();
2563 size_t dc = draw.size();
2564
2565 // find the displays that were removed
2566 // (ie: in drawing state but not in current state)
2567 // also handle displays that changed
2568 // (ie: displays that are in both lists)
2569 for (size_t i = 0; i < dc;) {
2570 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2571 if (j < 0) {
2572 // in drawing state but not in current state
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002573 if (const auto display = getDisplayDeviceLocked(draw.keyAt(i))) {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002574 // Save display ID before disconnecting.
2575 const auto displayId = display->getId();
Lloyd Pique45a165a2018-10-19 11:54:47 -07002576 display->disconnect();
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002577
2578 if (!display->isVirtual()) {
2579 LOG_ALWAYS_FATAL_IF(!displayId);
2580 dispatchDisplayHotplugEvent(displayId->value, false);
2581 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002582 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002583
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002584 mDisplays.erase(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002585 } else {
2586 // this display is in both lists. see if something changed.
2587 const DisplayDeviceState& state(curr[j]);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002588 const wp<IBinder>& displayToken = curr.keyAt(j);
Lloyd Pique347200f2017-12-14 17:00:15 -08002589 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2590 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2591 if (state_binder != draw_binder) {
2592 // changing the surface is like destroying and
2593 // recreating the DisplayDevice, so we just remove it
2594 // from the drawing state, so that it get re-added
2595 // below.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002596 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique45a165a2018-10-19 11:54:47 -07002597 display->disconnect();
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002598 }
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002599 mDisplays.erase(displayToken);
Lloyd Pique347200f2017-12-14 17:00:15 -08002600 mDrawingState.displays.removeItemsAt(i);
2601 dc--;
2602 // at this point we must loop to the next item
2603 continue;
2604 }
2605
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002606 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002607 if (state.layerStack != draw[i].layerStack) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002608 display->setLayerStack(state.layerStack);
Lloyd Pique347200f2017-12-14 17:00:15 -08002609 }
2610 if ((state.orientation != draw[i].orientation) ||
2611 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002612 display->setProjection(state.orientation, state.viewport, state.frame);
Lloyd Pique347200f2017-12-14 17:00:15 -08002613 }
2614 if (state.width != draw[i].width || state.height != draw[i].height) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002615 display->setDisplaySize(state.width, state.height);
Lloyd Pique347200f2017-12-14 17:00:15 -08002616 }
2617 }
2618 }
2619 ++i;
2620 }
2621
2622 // find displays that were added
2623 // (ie: in current state but not in drawing state)
2624 for (size_t i = 0; i < cc; i++) {
2625 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2626 const DisplayDeviceState& state(curr[i]);
2627
Lloyd Pique542307f2018-10-19 13:24:08 -07002628 sp<compositionengine::DisplaySurface> dispSurface;
Lloyd Pique347200f2017-12-14 17:00:15 -08002629 sp<IGraphicBufferProducer> producer;
2630 sp<IGraphicBufferProducer> bqProducer;
2631 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique90c115d2018-09-18 21:39:42 -07002632 getFactory().createBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002633
Dominik Laskowski075d3172018-05-24 15:50:06 -07002634 std::optional<DisplayId> displayId;
Dominik Laskowski663bd282018-04-19 15:26:54 -07002635 if (state.isVirtual()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002636 // Virtual displays without a surface are dormant:
2637 // they have external state (layer stack, projection,
2638 // etc.) but no internal state (i.e. a DisplayDevice).
2639 if (state.surface != nullptr) {
2640 // Allow VR composer to use virtual displays.
Dominik Laskowski075d3172018-05-24 15:50:06 -07002641 if (mUseHwcVirtualDisplays || getHwComposer().isUsingVrComposer()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002642 int width = 0;
2643 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2644 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2645 int height = 0;
2646 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2647 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2648 int intFormat = 0;
2649 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2650 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
Peiyong Lin34beb7a2018-03-28 11:57:12 -07002651 auto format = static_cast<ui::PixelFormat>(intFormat);
Lloyd Pique347200f2017-12-14 17:00:15 -08002652
Dominik Laskowski075d3172018-05-24 15:50:06 -07002653 displayId =
2654 getHwComposer().allocateVirtualDisplay(width, height, &format);
Lloyd Pique347200f2017-12-14 17:00:15 -08002655 }
2656
2657 // TODO: Plumb requested format back up to consumer
2658
2659 sp<VirtualDisplaySurface> vds =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002660 new VirtualDisplaySurface(getHwComposer(), displayId, state.surface,
Lloyd Pique347200f2017-12-14 17:00:15 -08002661 bqProducer, bqConsumer,
2662 state.displayName);
2663
2664 dispSurface = vds;
2665 producer = vds;
2666 }
2667 } else {
2668 ALOGE_IF(state.surface != nullptr,
2669 "adding a supported display, but rendering "
2670 "surface is provided (%p), ignoring it",
2671 state.surface.get());
2672
Dominik Laskowski075d3172018-05-24 15:50:06 -07002673 displayId = state.displayId;
2674 LOG_ALWAYS_FATAL_IF(!displayId);
2675 dispSurface = new FramebufferSurface(getHwComposer(), *displayId, bqConsumer);
Lloyd Pique347200f2017-12-14 17:00:15 -08002676 producer = bqProducer;
2677 }
2678
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002679 const wp<IBinder>& displayToken = curr.keyAt(i);
Lloyd Pique347200f2017-12-14 17:00:15 -08002680 if (dispSurface != nullptr) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002681 mDisplays.emplace(displayToken,
Dominik Laskowski7e045462018-05-30 13:02:02 -07002682 setupNewDisplayDeviceInternal(displayToken, displayId, state,
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002683 dispSurface, producer));
Dominik Laskowski663bd282018-04-19 15:26:54 -07002684 if (!state.isVirtual()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002685 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002686 dispatchDisplayHotplugEvent(displayId->value, true);
Lloyd Pique347200f2017-12-14 17:00:15 -08002687 }
2688 }
2689 }
2690 }
2691 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002692
2693 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002694}
2695
Mathias Agopian87baae12012-07-31 12:38:26 -07002696void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002697{
Dan Stoza7dde5992015-05-22 09:51:44 -07002698 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002699 mCurrentState.traverseInZOrder([](Layer* layer) {
2700 layer->notifyAvailableFrames();
2701 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002702
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002703 /*
2704 * Traversal of the children
2705 * (perform the transaction for each of them if needed)
2706 */
2707
Mathias Agopian3559b072012-08-15 13:46:03 -07002708 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002709 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002710 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002711 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002712
2713 const uint32_t flags = layer->doTransaction(0);
2714 if (flags & Layer::eVisibleRegion)
2715 mVisibleRegionsDirty = true;
Robert Carr720e5062018-07-30 17:45:14 -07002716
2717 if (flags & Layer::eInputInfoChanged) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002718 mInputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002719 }
Robert Carr2047fae2016-11-28 14:09:09 -08002720 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002721 }
2722
2723 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002724 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002725 */
2726
Mathias Agopiane57f2922012-08-09 16:29:12 -07002727 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002728 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002729 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002730 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002731
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002732 if (transactionFlags & (eDisplayLayerStackChanged|eDisplayTransactionNeeded)) {
Mathias Agopian84300952012-11-21 16:02:13 -08002733 // The transform hint might have changed for some layers
2734 // (either because a display has changed, or because a layer
2735 // as changed).
2736 //
2737 // Walk through all the layers in currentLayers,
2738 // and update their transform hint.
2739 //
2740 // If a layer is visible only on a single display, then that
2741 // display is used to calculate the hint, otherwise we use the
2742 // default display.
2743 //
2744 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2745 // the hint is set before we acquire a buffer from the surface texture.
2746 //
2747 // NOTE: layer transactions have taken place already, so we use their
2748 // drawing state. However, SurfaceFlinger's own transaction has not
2749 // happened yet, so we must use the current state layer list
2750 // (soon to become the drawing state list).
2751 //
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002752 sp<const DisplayDevice> hintDisplay;
Mathias Agopian84300952012-11-21 16:02:13 -08002753 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002754 bool first = true;
2755 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002756 // NOTE: we rely on the fact that layers are sorted by
2757 // layerStack first (so we don't have to traverse the list
2758 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002759 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002760 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002761 currentlayerStack = layerStack;
2762 // figure out if this layerstack is mirrored
2763 // (more than one display) if so, pick the default display,
2764 // if not, pick the only display it's on.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002765 hintDisplay = nullptr;
2766 for (const auto& [token, display] : mDisplays) {
Lloyd Piqueef36b002019-01-23 17:52:04 -08002767 if (display->getCompositionDisplay()
2768 ->belongsInOutput(layer->getLayerStack(),
2769 layer->getPrimaryDisplayOnly())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002770 if (hintDisplay) {
2771 hintDisplay = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002772 break;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002773 } else {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002774 hintDisplay = display;
Mathias Agopian84300952012-11-21 16:02:13 -08002775 }
2776 }
2777 }
2778 }
Chet Haase91d25932013-04-11 15:24:55 -07002779
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002780 if (!hintDisplay) {
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002781 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2782 // redraw after transform hint changes. See bug 8508397.
Robert Carr56a0b9a2017-12-04 16:06:13 -08002783
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002784 // could be null when this layer is using a layerStack
2785 // that is not visible on any display. Also can occur at
2786 // screen off/on times.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002787 hintDisplay = getDefaultDisplayDeviceLocked();
Mathias Agopian84300952012-11-21 16:02:13 -08002788 }
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002789
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002790 // could be null if there is no display available at all to get
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002791 // the transform hint from.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002792 if (hintDisplay) {
2793 layer->updateTransformHint(hintDisplay);
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002794 }
Robert Carr2047fae2016-11-28 14:09:09 -08002795
2796 first = false;
2797 });
Mathias Agopian84300952012-11-21 16:02:13 -08002798 }
2799
2800
Mathias Agopian3559b072012-08-15 13:46:03 -07002801 /*
2802 * Perform our own transaction if needed
2803 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002804
2805 if (mLayersAdded) {
2806 mLayersAdded = false;
2807 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002808 mVisibleRegionsDirty = true;
2809 }
2810
2811 // some layers might have been removed, so
2812 // we need to update the regions they're exposing.
2813 if (mLayersRemoved) {
2814 mLayersRemoved = false;
2815 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002816 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002817 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002818 // this layer is not visible anymore
Robert Carr1f0a16a2016-10-24 16:27:39 -07002819 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002820 visibleReg.set(layer->getScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002821 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002822 }
Robert Carr2047fae2016-11-28 14:09:09 -08002823 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002824 }
2825
Vishnu Nairec0ab382019-02-13 15:32:56 -08002826 commitInputWindowCommands();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002827 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002828}
2829
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002830void SurfaceFlinger::updateInputFlinger() {
Robert Carr720e5062018-07-30 17:45:14 -07002831 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002832 if (!mInputFlinger) {
Vishnu Nairde19f852018-12-18 16:11:53 -08002833 return;
2834 }
2835
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002836 if (mVisibleRegionsDirty || mInputInfoChanged) {
2837 mInputInfoChanged = false;
2838 updateInputWindowInfo();
chaviw95ef3c42019-02-14 10:55:09 -08002839 } else if (mInputWindowCommands.syncInputWindows) {
2840 // If the caller requested to sync input windows, but there are no
2841 // changes to input windows, notify immediately.
2842 setInputWindowsFinished();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002843 }
2844
2845 executeInputWindowCommands();
2846}
2847
2848void SurfaceFlinger::updateInputWindowInfo() {
Robert Carr720e5062018-07-30 17:45:14 -07002849 Vector<InputWindowInfo> inputHandles;
2850
2851 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
2852 if (layer->hasInput()) {
Vishnu Nair51625fa2018-12-06 13:54:33 -08002853 // When calculating the screen bounds we ignore the transparent region since it may
2854 // result in an unwanted offset.
Arthur Hungd20b2702019-01-14 18:16:16 +08002855 inputHandles.add(layer->fillInputInfo());
Robert Carr720e5062018-07-30 17:45:14 -07002856 }
2857 });
chaviw291d88a2019-02-14 10:33:58 -08002858
2859 mInputFlinger->setInputWindows(inputHandles,
2860 mInputWindowCommands.syncInputWindows ? mSetInputWindowsListener
2861 : nullptr);
Robert Carr720e5062018-07-30 17:45:14 -07002862}
2863
Vishnu Nairec0ab382019-02-13 15:32:56 -08002864void SurfaceFlinger::commitInputWindowCommands() {
2865 mInputWindowCommands.merge(mPendingInputWindowCommands);
2866 mPendingInputWindowCommands.clear();
2867}
2868
chaviwfbe5d9c2018-12-26 12:23:37 -08002869void SurfaceFlinger::executeInputWindowCommands() {
chaviwfbe5d9c2018-12-26 12:23:37 -08002870 for (const auto& transferTouchFocusCommand : mInputWindowCommands.transferTouchFocusCommands) {
2871 if (transferTouchFocusCommand.fromToken != nullptr &&
2872 transferTouchFocusCommand.toToken != nullptr &&
2873 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) {
2874 mInputFlinger->transferTouchFocus(transferTouchFocusCommand.fromToken,
2875 transferTouchFocusCommand.toToken);
2876 }
2877 }
2878
2879 mInputWindowCommands.clear();
2880}
2881
Riley Andrews03414a12014-07-01 14:22:59 -07002882void SurfaceFlinger::updateCursorAsync()
2883{
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002884 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002885 if (!display->getId()) {
Riley Andrews03414a12014-07-01 14:22:59 -07002886 continue;
2887 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002888
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002889 for (auto& layer : display->getVisibleLayersSortedByZ()) {
2890 layer->updateCursorPosition(display);
Riley Andrews03414a12014-07-01 14:22:59 -07002891 }
2892 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002893}
2894
chaviw61626f22018-11-15 16:26:27 -08002895void SurfaceFlinger::latchAndReleaseBuffer(const sp<Layer>& layer) {
2896 if (layer->hasReadyFrame()) {
Robert Carra0629232019-02-07 15:28:54 -08002897 bool ignored = false;
Alec Mouri56e538f2019-01-14 15:22:01 -08002898 layer->latchBuffer(ignored, systemTime());
chaviw61626f22018-11-15 16:26:27 -08002899 }
2900 layer->releasePendingBuffer(systemTime());
2901}
2902
Mathias Agopian4fec8732012-06-29 14:12:52 -07002903void SurfaceFlinger::commitTransaction()
2904{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002905 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002906 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002907 for (const auto& l : mLayersPendingRemoval) {
2908 recordBufferingStats(l->getName().string(),
2909 l->getOccupancyHistory(true));
Robert Carr2e102c92018-10-23 12:11:15 -07002910
Lloyd Pique07e33212018-12-18 16:33:37 -08002911 // Ensure any buffers set to display on any children are released.
Robert Carr2e102c92018-10-23 12:11:15 -07002912 if (l->isRemovedFromCurrentState()) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08002913 latchAndReleaseBuffer(l);
Robert Carr2e102c92018-10-23 12:11:15 -07002914 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002915 }
2916 mLayersPendingRemoval.clear();
2917 }
2918
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002919 // If this transaction is part of a window animation then the next frame
2920 // we composite should be considered an animation as well.
2921 mAnimCompositionPending = mAnimTransactionPending;
2922
Mathias Agopian4fec8732012-06-29 14:12:52 -07002923 mDrawingState = mCurrentState;
Chia-I Wu28f320b2018-05-03 11:02:56 -07002924 // clear the "changed" flags in current state
2925 mCurrentState.colorMatrixChanged = false;
2926
Robert Carr1f0a16a2016-10-24 16:27:39 -07002927 mDrawingState.traverseInZOrder([](Layer* layer) {
2928 layer->commitChildList();
2929 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002930 mTransactionPending = false;
2931 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002932 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002933}
2934
Lloyd Pique32cbe282018-10-19 13:09:22 -07002935void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002936 Region& outDirtyRegion, Region& outOpaqueRegion) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002937 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002938 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002939
Lloyd Pique32cbe282018-10-19 13:09:22 -07002940 auto display = displayDevice->getCompositionDisplay();
2941
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002942 Region aboveOpaqueLayers;
2943 Region aboveCoveredLayers;
2944 Region dirty;
2945
Mathias Agopian87baae12012-07-31 12:38:26 -07002946 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002947
Robert Carr2047fae2016-11-28 14:09:09 -08002948 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002949 // start with the whole surface at its current location
2950 const Layer::State& s(layer->getDrawingState());
2951
Jesse Hall01e29052013-02-19 16:13:35 -08002952 // only consider the layers on the given layer stack
Lloyd Piqueef36b002019-01-23 17:52:04 -08002953 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Robert Carr2047fae2016-11-28 14:09:09 -08002954 return;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002955 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002956
Mathias Agopianab028732010-03-16 16:41:46 -07002957 /*
2958 * opaqueRegion: area of a surface that is fully opaque.
2959 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002960 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002961
2962 /*
2963 * visibleRegion: area of a surface that is visible on screen
2964 * and not fully transparent. This is essentially the layer's
2965 * footprint minus the opaque regions above it.
2966 * Areas covered by a translucent surface are considered visible.
2967 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002968 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002969
2970 /*
2971 * coveredRegion: area of a surface that is covered by all
2972 * visible regions above it (which includes the translucent areas).
2973 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002974 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002975
Jesse Halla8026d22012-09-25 13:25:04 -07002976 /*
2977 * transparentRegion: area of a surface that is hinted to be completely
2978 * transparent. This is only used to tell when the layer has no visible
2979 * non-transparent regions and can be removed from the layer list. It
2980 * does not affect the visibleRegion of this layer or any layers
2981 * beneath it. The hint may not be correct if apps don't respect the
2982 * SurfaceView restrictions (which, sadly, some don't).
2983 */
2984 Region transparentRegion;
2985
Mathias Agopianab028732010-03-16 16:41:46 -07002986
2987 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002988 if (CC_LIKELY(layer->isVisible())) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002989 const bool translucent = !layer->isOpaque(s);
Vishnu Nair4351ad52019-02-11 14:13:02 -08002990 Rect bounds(layer->getScreenBounds());
Robert Carr720e5062018-07-30 17:45:14 -07002991
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002992 visibleRegion.set(bounds);
Peiyong Linefefaac2018-08-17 12:27:51 -07002993 ui::Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002994 if (!visibleRegion.isEmpty()) {
2995 // Remove the transparent area from the visible region
2996 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002997 if (tr.preserveRects()) {
2998 // transform the transparent region
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002999 transparentRegion = tr.transform(layer->getActiveTransparentRegion(s));
Mathias Agopian4fec8732012-06-29 14:12:52 -07003000 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003001 // transformation too complex, can't do the
3002 // transparent region optimization.
3003 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07003004 }
Mathias Agopianab028732010-03-16 16:41:46 -07003005 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003006
Mathias Agopianab028732010-03-16 16:41:46 -07003007 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07003008 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02003009 if (layer->getAlpha() == 1.0f && !translucent &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003010 layer->getRoundedCornerState().radius == 0.0f &&
Peiyong Linefefaac2018-08-17 12:27:51 -07003011 ((layerOrientation & ui::Transform::ROT_INVALID) == false)) {
Mathias Agopianab028732010-03-16 16:41:46 -07003012 // the opaque region is the layer's footprint
3013 opaqueRegion = visibleRegion;
3014 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003015 }
3016 }
3017
Robert Carre5f4f692018-01-12 13:12:28 -08003018 if (visibleRegion.isEmpty()) {
3019 layer->clearVisibilityRegions();
3020 return;
3021 }
3022
Mathias Agopianab028732010-03-16 16:41:46 -07003023 // Clip the covered region to the visible region
3024 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
3025
3026 // Update aboveCoveredLayers for next (lower) layer
3027 aboveCoveredLayers.orSelf(visibleRegion);
3028
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003029 // subtract the opaque region covered by the layers above us
3030 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003031
3032 // compute this layer's dirty region
3033 if (layer->contentDirty) {
3034 // we need to invalidate the whole region
3035 dirty = visibleRegion;
3036 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07003037 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003038 layer->contentDirty = false;
3039 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003040 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07003041 * the exposed region consists of two components:
3042 * 1) what's VISIBLE now and was COVERED before
3043 * 2) what's EXPOSED now less what was EXPOSED before
3044 *
3045 * note that (1) is conservative, we start with the whole
3046 * visible region but only keep what used to be covered by
3047 * something -- which mean it may have been exposed.
3048 *
3049 * (2) handles areas that were not covered by anything but got
3050 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003051 */
Mathias Agopianab028732010-03-16 16:41:46 -07003052 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003053 const Region oldVisibleRegion = layer->visibleRegion;
3054 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003055 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
3056 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003057 }
3058 dirty.subtractSelf(aboveOpaqueLayers);
3059
3060 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07003061 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003062
Mathias Agopianab028732010-03-16 16:41:46 -07003063 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003064 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003065
Jesse Halla8026d22012-09-25 13:25:04 -07003066 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003067 layer->setVisibleRegion(visibleRegion);
3068 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07003069 layer->setVisibleNonTransparentRegion(
3070 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08003071 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003072
Mathias Agopian87baae12012-07-31 12:38:26 -07003073 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003074}
3075
Chia-I Wuab0c3192017-08-01 11:29:00 -07003076void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003077 for (const auto& [token, displayDevice] : mDisplays) {
3078 auto display = displayDevice->getCompositionDisplay();
Lloyd Piqueef36b002019-01-23 17:52:04 -08003079 if (display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003080 display->editState().dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07003081 }
3082 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003083}
3084
Dan Stoza6b9454d2014-11-07 16:00:59 -08003085bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003086{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003087 ALOGV("handlePageFlip");
3088
Brian Andersond6927fb2016-07-23 23:37:30 -07003089 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003090
Mathias Agopian4fec8732012-06-29 14:12:52 -07003091 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003092 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06003093 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07003094
3095 // Store the set of layers that need updates. This set must not change as
3096 // buffers are being latched, as this could result in a deadlock.
3097 // Example: Two producers share the same command stream and:
3098 // 1.) Layer 0 is latched
3099 // 2.) Layer 0 gets a new frame
3100 // 2.) Layer 1 gets a new frame
3101 // 3.) Layer 1 is latched.
3102 // Display is now waiting on Layer 1's frame, which is behind layer 0's
3103 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08003104 mDrawingState.traverseInZOrder([&](Layer* layer) {
Marissa Wallfd668622018-05-10 10:21:13 -07003105 if (layer->hasReadyFrame()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003106 frameQueued = true;
Ady Abrahamc3e21312019-02-07 14:30:23 -08003107 nsecs_t expectedPresentTime;
Ana Krulecc2870422019-01-29 19:00:58 -08003108 expectedPresentTime = mScheduler->expectedPresentTime();
Ana Krulec010d2192018-10-08 06:29:54 -07003109 if (layer->shouldPresentNow(expectedPresentTime)) {
Robert Carr2047fae2016-11-28 14:09:09 -08003110 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07003111 } else {
3112 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003113 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003114 } else {
3115 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003116 }
Robert Carr2047fae2016-11-28 14:09:09 -08003117 });
3118
Lloyd Piquef2c79392018-12-20 16:23:33 -08003119 if (!mLayersWithQueuedFrames.empty()) {
3120 // mStateLock is needed for latchBuffer as LayerRejecter::reject()
3121 // writes to Layer current state. See also b/119481871
3122 Mutex::Autolock lock(mStateLock);
3123
3124 for (auto& layer : mLayersWithQueuedFrames) {
Alec Mouri56e538f2019-01-14 15:22:01 -08003125 if (layer->latchBuffer(visibleRegions, latchTime)) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08003126 mLayersPendingRefresh.push_back(layer);
3127 }
Lloyd Piquef2c79392018-12-20 16:23:33 -08003128 layer->useSurfaceDamage();
Lloyd Piquef2c79392018-12-20 16:23:33 -08003129 if (layer->isBufferLatched()) {
3130 newDataLatched = true;
3131 }
Mike Stroyan0cd76192017-04-20 12:10:48 -06003132 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003133 }
Mathias Agopian4da75192010-08-10 17:19:56 -07003134
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07003135 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003136
3137 // If we will need to wake up at some time in the future to deal with a
3138 // queued frame that shouldn't be displayed during this vsync period, wake
3139 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07003140 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003141 signalLayerUpdate();
3142 }
3143
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08003144 // enter boot animation on first buffer latch
3145 if (CC_UNLIKELY(mBootStage == BootStage::BOOTLOADER && newDataLatched)) {
3146 ALOGI("Enter boot animation");
3147 mBootStage = BootStage::BOOTANIMATION;
3148 }
3149
Dan Stoza6b9454d2014-11-07 16:00:59 -08003150 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06003151 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003152}
3153
Mathias Agopianad456f92011-01-13 17:53:01 -08003154void SurfaceFlinger::invalidateHwcGeometry()
3155{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003156 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08003157}
3158
Lloyd Pique32cbe282018-10-19 13:09:22 -07003159void SurfaceFlinger::doDisplayComposition(const sp<DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003160 const Region& inDirtyRegion) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003161 auto display = displayDevice->getCompositionDisplay();
Dan Stoza71433162014-02-04 16:22:36 -08003162 // We only need to actually compose the display if:
3163 // 1) It is being handled by hardware composer, which may need this to
3164 // keep its virtual display state machine in sync, or
3165 // 2) There is work to be done (the dirty region isn't empty)
Lloyd Pique32cbe282018-10-19 13:09:22 -07003166 if (!displayDevice->getId() && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08003167 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08003168 return;
3169 }
3170
Dan Stoza9e56aa02015-11-02 13:00:03 -08003171 ALOGV("doDisplayComposition");
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003172 base::unique_fd readyFence;
3173 if (!doComposeSurfaces(displayDevice, Region::INVALID_REGION, &readyFence)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07003174
3175 // swap buffers (presentation)
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003176 display->getRenderSurface()->queueBuffer(std::move(readyFence));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003177}
3178
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003179bool SurfaceFlinger::doComposeSurfaces(const sp<DisplayDevice>& displayDevice,
3180 const Region& debugRegion, base::unique_fd* readyFence) {
Alec Mouri820c7402019-01-23 13:02:39 -08003181 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003182 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07003183
Lloyd Pique32cbe282018-10-19 13:09:22 -07003184 auto display = displayDevice->getCompositionDisplay();
3185 const auto& displayState = display->getState();
Dominik Laskowski7e045462018-05-30 13:02:02 -07003186 const auto displayId = display->getId();
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003187 auto& renderEngine = getRenderEngine();
3188 const bool supportProtectedContent =
3189 mDebugEnableProtectedContent && renderEngine.supportsProtectedContent();
Lloyd Pique32cbe282018-10-19 13:09:22 -07003190
3191 const Region bounds(displayState.bounds);
3192 const DisplayRenderArea renderArea(displayDevice);
Lloyd Pique441d5042018-10-18 16:49:51 -07003193 const bool hasClientComposition = getHwComposer().hasClientComposition(displayId);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08003194 ATRACE_INT("hasClientComposition", hasClientComposition);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003195
Peiyong Lind3788632018-09-18 16:01:31 -07003196 mat4 colorMatrix;
Chia-I Wu8e50e692018-05-04 10:12:37 -07003197 bool applyColorMatrix = false;
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003198
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003199 renderengine::DisplaySettings clientCompositionDisplay;
3200 std::vector<renderengine::LayerSettings> clientCompositionLayers;
3201 sp<GraphicBuffer> buf;
Alec Mouri6338c9d2019-02-07 16:57:51 -08003202 base::unique_fd fd;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003203
Dan Stoza9e56aa02015-11-02 13:00:03 -08003204 if (hasClientComposition) {
3205 ALOGV("hasClientComposition");
3206
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003207 if (displayDevice->isPrimary() && supportProtectedContent) {
3208 bool needsProtected = false;
3209 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
3210 // If the layer is a protected layer, mark protected context is needed.
3211 if (layer->isProtected()) {
3212 needsProtected = true;
3213 break;
3214 }
3215 }
3216 if (needsProtected != renderEngine.isProtected() &&
3217 renderEngine.useProtectedContext(needsProtected)) {
3218 display->getRenderSurface()->setProtected(needsProtected);
3219 }
3220 }
3221
Alec Mouri6338c9d2019-02-07 16:57:51 -08003222 buf = display->getRenderSurface()->dequeueBuffer(&fd);
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003223
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003224 if (buf == nullptr) {
3225 ALOGW("Dequeuing buffer for display [%s] failed, bailing out of "
3226 "client composition for this frame",
Lloyd Pique32cbe282018-10-19 13:09:22 -07003227 displayDevice->getDisplayName().c_str());
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003228 return false;
3229 }
3230
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003231 clientCompositionDisplay.physicalDisplay = displayState.scissor;
3232 clientCompositionDisplay.clip = displayState.scissor;
3233 const ui::Transform& displayTransform = displayState.transform;
3234 mat4 m;
3235 m[0][0] = displayTransform[0][0];
3236 m[0][1] = displayTransform[0][1];
3237 m[0][3] = displayTransform[0][2];
3238 m[1][0] = displayTransform[1][0];
3239 m[1][1] = displayTransform[1][1];
3240 m[1][3] = displayTransform[1][2];
3241 m[3][0] = displayTransform[2][0];
3242 m[3][1] = displayTransform[2][1];
3243 m[3][3] = displayTransform[2][2];
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003244 clientCompositionDisplay.globalTransform = m;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003245
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003246 const auto* profile = display->getDisplayColorProfile();
Peiyong Lin34beb7a2018-03-28 11:57:12 -07003247 Dataspace outputDataspace = Dataspace::UNKNOWN;
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003248 if (profile->hasWideColorGamut()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003249 outputDataspace = displayState.dataspace;
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003250 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003251 clientCompositionDisplay.outputDataspace = outputDataspace;
3252 clientCompositionDisplay.maxLuminance =
3253 profile->getHdrCapabilities().getDesiredMaxLuminance();
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003254
Lloyd Pique441d5042018-10-18 16:49:51 -07003255 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId);
Peiyong Lined531a32018-10-26 18:27:56 -07003256 const bool skipClientColorTransform =
Lloyd Pique441d5042018-10-18 16:49:51 -07003257 getHwComposer()
3258 .hasDisplayCapability(displayId,
3259 HWC2::DisplayCapability::SkipClientColorTransform);
Chia-I Wu8e50e692018-05-04 10:12:37 -07003260
Peiyong Lind3788632018-09-18 16:01:31 -07003261 // Compute the global color transform matrix.
Chia-I Wu8e50e692018-05-04 10:12:37 -07003262 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform;
3263 if (applyColorMatrix) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003264 clientCompositionDisplay.colorTransform = colorMatrix;
Mathias Agopianf45c5102012-10-24 16:29:17 -07003265 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07003266 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003267
Mathias Agopian85d751c2012-08-29 16:59:24 -07003268 /*
3269 * and then, render the layers targeted at the framebuffer
3270 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003271
Dan Stoza9e56aa02015-11-02 13:00:03 -08003272 ALOGV("Rendering client layers");
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003273 bool firstLayer = true;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003274 Region clearRegion = Region::INVALID_REGION;
Lloyd Pique32cbe282018-10-19 13:09:22 -07003275 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003276 const Region viewportRegion(displayState.viewport);
3277 const Region clip(viewportRegion.intersect(layer->visibleRegion));
David Sodmanc1498e62018-09-12 14:36:26 -07003278 ALOGV("Layer: %s", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003279 ALOGV(" Composition type: %s", toString(layer->getCompositionType(displayDevice)).c_str());
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003280 if (!clip.isEmpty()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003281 switch (layer->getCompositionType(displayDevice)) {
3282 case Hwc2::IComposerClient::Composition::CURSOR:
3283 case Hwc2::IComposerClient::Composition::DEVICE:
3284 case Hwc2::IComposerClient::Composition::SIDEBAND:
3285 case Hwc2::IComposerClient::Composition::SOLID_COLOR: {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003286 LOG_ALWAYS_FATAL_IF(!displayId);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003287 const Layer::State& state(layer->getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003288 if (layer->getClearClientTarget(displayDevice) && !firstLayer &&
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003289 layer->isOpaque(state) && (layer->getAlpha() == 1.0f) &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003290 layer->getRoundedCornerState().radius == 0.0f && hasClientComposition) {
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003291 // never clear the very first layer since we're
3292 // guaranteed the FB is already cleared
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003293 renderengine::LayerSettings layerSettings;
3294 Region dummyRegion;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003295 bool prepared =
3296 layer->prepareClientLayer(renderArea, clip, dummyRegion,
3297 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003298
3299 if (prepared) {
3300 layerSettings.source.buffer.buffer = nullptr;
3301 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
3302 layerSettings.alpha = half(0.0);
3303 layerSettings.disableBlending = true;
3304 clientCompositionLayers.push_back(layerSettings);
3305 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07003306 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003307 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07003308 }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003309 case Hwc2::IComposerClient::Composition::CLIENT: {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003310 renderengine::LayerSettings layerSettings;
3311 bool prepared =
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003312 layer->prepareClientLayer(renderArea, clip, clearRegion,
3313 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003314 if (prepared) {
3315 clientCompositionLayers.push_back(layerSettings);
Peiyong Lind3788632018-09-18 16:01:31 -07003316 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003317 break;
3318 }
3319 default:
3320 break;
Mathias Agopian85d751c2012-08-29 16:59:24 -07003321 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003322 } else {
3323 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07003324 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003325 firstLayer = false;
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003326 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07003327
Alec Mouri820c7402019-01-23 13:02:39 -08003328 // Perform some cleanup steps if we used client composition.
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003329 if (hasClientComposition) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003330 clientCompositionDisplay.clearRegion = clearRegion;
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003331
3332 // We boost GPU frequency here because there will be color spaces conversion
3333 // and it's expensive. We boost the GPU frequency so that GPU composition can
3334 // finish in time. We must reset GPU frequency afterwards, because high frequency
3335 // consumes extra battery.
3336 const bool expensiveRenderingExpected =
3337 clientCompositionDisplay.outputDataspace == Dataspace::DISPLAY_P3;
3338 if (expensiveRenderingExpected && displayId) {
3339 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, true);
3340 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003341 if (!debugRegion.isEmpty()) {
3342 Region::const_iterator it = debugRegion.begin();
3343 Region::const_iterator end = debugRegion.end();
3344 while (it != end) {
3345 const Rect& rect = *it++;
3346 renderengine::LayerSettings layerSettings;
3347 layerSettings.source.buffer.buffer = nullptr;
3348 layerSettings.source.solidColor = half3(1.0, 0.0, 1.0);
3349 layerSettings.geometry.boundaries = rect.toFloatRect();
3350 layerSettings.alpha = half(1.0);
3351 clientCompositionLayers.push_back(layerSettings);
3352 }
3353 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003354 renderEngine.drawLayers(clientCompositionDisplay, clientCompositionLayers,
3355 buf->getNativeBuffer(), std::move(fd), readyFence);
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003356 if (expensiveRenderingExpected && displayId) {
3357 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, false);
3358 }
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003359 }
Michael Lentine3f121fc2014-10-01 11:17:28 -07003360 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003361}
3362
Chia-I Wu28e3a252018-09-07 12:05:02 -07003363void SurfaceFlinger::drawWormhole(const Region& region) const {
Lloyd Pique144e1162017-12-20 16:44:52 -08003364 auto& engine(getRenderEngine());
Chia-I Wu28e3a252018-09-07 12:05:02 -07003365 engine.fillRegionWithColor(region, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003366}
3367
Dan Stoza7d89d062015-04-30 13:29:25 -07003368status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08003369 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07003370 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07003371 const sp<Layer>& lbc,
Robert Carrb89ea9d2018-12-10 13:01:14 -08003372 const sp<Layer>& parent,
3373 bool addToCurrentState)
Mathias Agopian96f08192010-06-02 23:28:45 -07003374{
Dan Stoza7d89d062015-04-30 13:29:25 -07003375 // add this layer to the current state list
3376 {
3377 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003378 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06003379 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
3380 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07003381 return NO_MEMORY;
3382 }
Robert Carrb89ea9d2018-12-10 13:01:14 -08003383 if (parent == nullptr && addToCurrentState) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003384 mCurrentState.layersSortedByZ.add(lbc);
chaviwac841852019-01-16 16:04:43 -08003385 } else if (parent == nullptr) {
3386 lbc->onRemovedFromCurrentState();
3387 } else if (parent->isRemovedFromCurrentState()) {
3388 parent->addChild(lbc);
3389 lbc->onRemovedFromCurrentState();
Robert Carrb89ea9d2018-12-10 13:01:14 -08003390 } else {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003391 parent->addChild(lbc);
3392 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07003393
Yiwei Zhang243b3782018-05-15 17:40:04 -07003394 if (gbc != nullptr) {
3395 mGraphicBufferProducerList.insert(IInterface::asBinder(gbc).get());
3396 LOG_ALWAYS_FATAL_IF(mGraphicBufferProducerList.size() >
3397 mMaxGraphicBufferProducerListSize,
3398 "Suspected IGBP leak: %zu IGBPs (%zu max), %zu Layers",
3399 mGraphicBufferProducerList.size(),
3400 mMaxGraphicBufferProducerListSize, mNumLayers);
3401 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07003402 mLayersAdded = true;
Dan Stoza7d89d062015-04-30 13:29:25 -07003403 }
3404
Mathias Agopian96f08192010-06-02 23:28:45 -07003405 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08003406 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07003407
Dan Stoza7d89d062015-04-30 13:29:25 -07003408 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07003409}
3410
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08003411uint32_t SurfaceFlinger::peekTransactionFlags() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003412 return mTransactionFlags;
Mathias Agopiandea20b12011-05-03 17:04:02 -07003413}
3414
Mathias Agopian3f844832013-08-07 21:24:32 -07003415uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003416 return mTransactionFlags.fetch_and(~flags) & flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003417}
3418
Mathias Agopian3f844832013-08-07 21:24:32 -07003419uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003420 return setTransactionFlags(flags, Scheduler::TransactionStart::NORMAL);
Dan Stoza84d619e2018-03-28 17:07:36 -07003421}
3422
3423uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags,
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003424 Scheduler::TransactionStart transactionStart) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003425 uint32_t old = mTransactionFlags.fetch_or(flags);
Dan Stoza84d619e2018-03-28 17:07:36 -07003426 mVsyncModulator.setTransactionStart(transactionStart);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003427 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003428 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003429 }
3430 return old;
3431}
3432
Marissa Wall713b63f2018-10-17 15:42:43 -07003433bool SurfaceFlinger::flushTransactionQueues() {
3434 Mutex::Autolock _l(mStateLock);
3435 auto it = mTransactionQueues.begin();
3436 while (it != mTransactionQueues.end()) {
3437 auto& [applyToken, transactionQueue] = *it;
3438
3439 while (!transactionQueue.empty()) {
Robert Carr14167e02019-02-13 13:50:55 -08003440 const auto& [states, displays, flags, desiredPresentTime, privileged] =
3441 transactionQueue.front();
Marissa Wall17b4e452018-12-26 16:32:34 -08003442 if (!transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003443 break;
3444 }
Robert Carr14167e02019-02-13 13:50:55 -08003445 applyTransactionState(states, displays, flags, mPendingInputWindowCommands, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003446 transactionQueue.pop();
3447 }
3448
3449 it = (transactionQueue.empty()) ? mTransactionQueues.erase(it) : std::next(it, 1);
3450 }
3451 return mTransactionQueues.empty();
3452}
3453
chaviwca27f252018-02-06 16:46:39 -08003454bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
3455 for (const ComposerState& state : states) {
3456 // Here we need to check that the interface we're given is indeed
3457 // one of our own. A malicious client could give us a nullptr
3458 // IInterface, or one of its own or even one of our own but a
3459 // different type. All these situations would cause us to crash.
3460 if (state.client == nullptr) {
3461 return true;
3462 }
3463
3464 sp<IBinder> binder = IInterface::asBinder(state.client);
3465 if (binder == nullptr) {
3466 return true;
3467 }
3468
3469 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
3470 return true;
3471 }
3472 }
3473 return false;
3474}
3475
Marissa Wall17b4e452018-12-26 16:32:34 -08003476bool SurfaceFlinger::transactionIsReadyToBeApplied(int64_t desiredPresentTime,
3477 const Vector<ComposerState>& states) {
Ana Krulecc2870422019-01-29 19:00:58 -08003478 nsecs_t expectedPresentTime = mScheduler->expectedPresentTime();
Marissa Wall17b4e452018-12-26 16:32:34 -08003479 // Do not present if the desiredPresentTime has not passed unless it is more than one second
3480 // in the future. We ignore timestamps more than 1 second in the future for stability reasons.
3481 if (desiredPresentTime >= 0 && desiredPresentTime >= expectedPresentTime &&
3482 desiredPresentTime < expectedPresentTime + s2ns(1)) {
3483 return false;
3484 }
3485
Marissa Wall713b63f2018-10-17 15:42:43 -07003486 for (const ComposerState& state : states) {
3487 const layer_state_t& s = state.state;
3488 if (!(s.what & layer_state_t::eAcquireFenceChanged)) {
3489 continue;
3490 }
3491 if (s.acquireFence && s.acquireFence->getStatus() == Fence::Status::Unsignaled) {
Marissa Wall17b4e452018-12-26 16:32:34 -08003492 return false;
Marissa Wall713b63f2018-10-17 15:42:43 -07003493 }
3494 }
Marissa Wall17b4e452018-12-26 16:32:34 -08003495 return true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003496}
3497
3498void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& states,
3499 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -08003500 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -08003501 const InputWindowCommands& inputWindowCommands,
3502 int64_t desiredPresentTime) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003503 ATRACE_CALL();
Robert Carr14167e02019-02-13 13:50:55 -08003504
3505 bool privileged = callingThreadHasUnscopedSurfaceFlingerAccess();
3506
Mathias Agopian698c0872011-06-28 19:09:31 -07003507 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07003508
chaviwca27f252018-02-06 16:46:39 -08003509 if (containsAnyInvalidClientState(states)) {
3510 return;
3511 }
3512
Marissa Wall713b63f2018-10-17 15:42:43 -07003513 // If its TransactionQueue already has a pending TransactionState or if it is pending
3514 if (mTransactionQueues.find(applyToken) != mTransactionQueues.end() ||
Marissa Wall17b4e452018-12-26 16:32:34 -08003515 !transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Robert Carr14167e02019-02-13 13:50:55 -08003516 mTransactionQueues[applyToken].emplace(states, displays, flags, desiredPresentTime,
3517 privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003518 setTransactionFlags(eTransactionNeeded);
3519 return;
3520 }
3521
Robert Carr14167e02019-02-13 13:50:55 -08003522 applyTransactionState(states, displays, flags, inputWindowCommands, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003523}
3524
3525void SurfaceFlinger::applyTransactionState(const Vector<ComposerState>& states,
chaviw273171b2018-12-26 11:46:30 -08003526 const Vector<DisplayState>& displays, uint32_t flags,
Robert Carr14167e02019-02-13 13:50:55 -08003527 const InputWindowCommands& inputWindowCommands,
3528 bool privileged) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003529 uint32_t transactionFlags = 0;
3530
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003531 if (flags & eAnimation) {
3532 // For window updates that are part of an animation we must wait for
3533 // previous animation "frames" to be handled.
3534 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003535 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003536 if (CC_UNLIKELY(err != NO_ERROR)) {
3537 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003538 // caller after a few seconds.
3539 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3540 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003541 mAnimTransactionPending = false;
3542 break;
3543 }
3544 }
3545 }
3546
chaviwca27f252018-02-06 16:46:39 -08003547 for (const DisplayState& display : displays) {
3548 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003549 }
3550
Marissa Walle2ffb422018-10-12 11:33:52 -07003551 uint32_t clientStateFlags = 0;
chaviwca27f252018-02-06 16:46:39 -08003552 for (const ComposerState& state : states) {
Robert Carr14167e02019-02-13 13:50:55 -08003553 clientStateFlags |= setClientStateLocked(state, privileged);
chaviwca27f252018-02-06 16:46:39 -08003554 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003555 // If the state doesn't require a traversal and there are callbacks, send them now
3556 if (!(clientStateFlags & eTraversalNeeded)) {
3557 mTransactionCompletedThread.sendCallbacks();
3558 }
3559 transactionFlags |= clientStateFlags;
chaviwca27f252018-02-06 16:46:39 -08003560
chaviw273171b2018-12-26 11:46:30 -08003561 transactionFlags |= addInputWindowCommands(inputWindowCommands);
3562
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003563 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3564 // anyway. This can be used as a flush mechanism for previous async transactions.
3565 // Empty animation transaction can be used to simulate back-pressure, so also force a
3566 // transaction for empty animation transactions.
3567 if (transactionFlags == 0 &&
3568 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003569 transactionFlags = eTransactionNeeded;
3570 }
3571
Mathias Agopian386aa982011-11-07 21:58:03 -08003572 if (transactionFlags) {
Lloyd Pique4dccc412018-01-22 17:21:36 -08003573 if (mInterceptor->isEnabled()) {
3574 mInterceptor->saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003575 }
Irvel468051e2016-06-13 16:44:44 -07003576
Mathias Agopian386aa982011-11-07 21:58:03 -08003577 // this triggers the transaction
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003578 const auto start = (flags & eEarlyWakeup) ? Scheduler::TransactionStart::EARLY
3579 : Scheduler::TransactionStart::NORMAL;
Dan Stoza84d619e2018-03-28 17:07:36 -07003580 setTransactionFlags(transactionFlags, start);
Mathias Agopian386aa982011-11-07 21:58:03 -08003581
3582 // if this is a synchronous transaction, wait for it to take effect
3583 // before returning.
3584 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003585 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003586 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003587 if (flags & eAnimation) {
3588 mAnimTransactionPending = true;
3589 }
chaviw95ef3c42019-02-14 10:55:09 -08003590
3591 mPendingSyncInputWindows = mPendingInputWindowCommands.syncInputWindows;
3592 while (mTransactionPending || mPendingSyncInputWindows) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003593 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3594 if (CC_UNLIKELY(err != NO_ERROR)) {
3595 // just in case something goes wrong in SF, return to the
3596 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003597 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3598 mTransactionPending = false;
chaviw95ef3c42019-02-14 10:55:09 -08003599 mPendingSyncInputWindows = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003600 break;
3601 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003602 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003603 }
3604}
3605
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003606uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) {
3607 const ssize_t index = mCurrentState.displays.indexOfKey(s.token);
3608 if (index < 0) return 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003609
Mathias Agopiane57f2922012-08-09 16:29:12 -07003610 uint32_t flags = 0;
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003611 DisplayDeviceState& state = mCurrentState.displays.editValueAt(index);
3612
3613 const uint32_t what = s.what;
3614 if (what & DisplayState::eSurfaceChanged) {
3615 if (IInterface::asBinder(state.surface) != IInterface::asBinder(s.surface)) {
3616 state.surface = s.surface;
3617 flags |= eDisplayTransactionNeeded;
Michael Lentine47e45402014-07-18 15:34:25 -07003618 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003619 }
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003620 if (what & DisplayState::eLayerStackChanged) {
3621 if (state.layerStack != s.layerStack) {
3622 state.layerStack = s.layerStack;
3623 flags |= eDisplayTransactionNeeded;
3624 }
3625 }
3626 if (what & DisplayState::eDisplayProjectionChanged) {
3627 if (state.orientation != s.orientation) {
3628 state.orientation = s.orientation;
3629 flags |= eDisplayTransactionNeeded;
3630 }
3631 if (state.frame != s.frame) {
3632 state.frame = s.frame;
3633 flags |= eDisplayTransactionNeeded;
3634 }
3635 if (state.viewport != s.viewport) {
3636 state.viewport = s.viewport;
3637 flags |= eDisplayTransactionNeeded;
3638 }
3639 }
3640 if (what & DisplayState::eDisplaySizeChanged) {
3641 if (state.width != s.width) {
3642 state.width = s.width;
3643 flags |= eDisplayTransactionNeeded;
3644 }
3645 if (state.height != s.height) {
3646 state.height = s.height;
3647 flags |= eDisplayTransactionNeeded;
3648 }
3649 }
3650
Mathias Agopiane57f2922012-08-09 16:29:12 -07003651 return flags;
3652}
3653
Robert Carr14167e02019-02-13 13:50:55 -08003654bool SurfaceFlinger::callingThreadHasUnscopedSurfaceFlingerAccess() {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003655 IPCThreadState* ipc = IPCThreadState::self();
3656 const int pid = ipc->getCallingPid();
3657 const int uid = ipc->getCallingUid();
Robert Carrd4ae7f32018-06-07 16:10:57 -07003658 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Ana Krulec13be8ad2018-08-21 02:43:56 +00003659 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003660 return false;
3661 }
3662 return true;
3663}
3664
Robert Carr14167e02019-02-13 13:50:55 -08003665uint32_t SurfaceFlinger::setClientStateLocked(const ComposerState& composerState,
3666 bool privileged) {
chaviwca27f252018-02-06 16:46:39 -08003667 const layer_state_t& s = composerState.state;
3668 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3669
Mathias Agopian13127d82013-03-05 17:47:11 -08003670 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003671 if (layer == nullptr) {
3672 return 0;
3673 }
3674
chaviw8b3871a2017-11-01 17:41:01 -07003675 uint32_t flags = 0;
3676
Garfield Tan8a3083e2018-12-03 13:21:07 -08003677 const uint64_t what = s.what;
chaviw8b3871a2017-11-01 17:41:01 -07003678 bool geometryAppliesWithResize =
3679 what & layer_state_t::eGeometryAppliesWithResize;
Jorim Jaggidba32732018-05-28 17:43:52 +02003680
3681 // If we are deferring transaction, make sure to push the pending state, as otherwise the
3682 // pending state will also be deferred.
Marissa Wallf58c14b2018-07-24 10:50:43 -07003683 if (what & layer_state_t::eDeferTransaction_legacy) {
Jorim Jaggidba32732018-05-28 17:43:52 +02003684 layer->pushPendingState();
3685 }
3686
chaviw8b3871a2017-11-01 17:41:01 -07003687 if (what & layer_state_t::ePositionChanged) {
3688 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3689 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003690 }
chaviw8b3871a2017-11-01 17:41:01 -07003691 }
3692 if (what & layer_state_t::eLayerChanged) {
3693 // NOTE: index needs to be calculated before we update the state
3694 const auto& p = layer->getParent();
3695 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003696 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003697 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003698 mCurrentState.layersSortedByZ.removeAt(idx);
3699 mCurrentState.layersSortedByZ.add(layer);
3700 // we need traversal (state changed)
3701 // AND transaction (list changed)
3702 flags |= eTransactionNeeded|eTraversalNeeded;
3703 }
chaviw8b3871a2017-11-01 17:41:01 -07003704 } else {
3705 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003706 flags |= eTransactionNeeded|eTraversalNeeded;
3707 }
3708 }
chaviw8b3871a2017-11-01 17:41:01 -07003709 }
3710 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003711 // NOTE: index needs to be calculated before we update the state
3712 const auto& p = layer->getParent();
3713 if (p == nullptr) {
3714 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3715 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3716 mCurrentState.layersSortedByZ.removeAt(idx);
3717 mCurrentState.layersSortedByZ.add(layer);
3718 // we need traversal (state changed)
3719 // AND transaction (list changed)
3720 flags |= eTransactionNeeded|eTraversalNeeded;
3721 }
3722 } else {
3723 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3724 flags |= eTransactionNeeded|eTraversalNeeded;
3725 }
chaviw8b3871a2017-11-01 17:41:01 -07003726 }
3727 }
3728 if (what & layer_state_t::eSizeChanged) {
3729 if (layer->setSize(s.w, s.h)) {
3730 flags |= eTraversalNeeded;
3731 }
3732 }
3733 if (what & layer_state_t::eAlphaChanged) {
3734 if (layer->setAlpha(s.alpha))
3735 flags |= eTraversalNeeded;
3736 }
3737 if (what & layer_state_t::eColorChanged) {
3738 if (layer->setColor(s.color))
3739 flags |= eTraversalNeeded;
3740 }
Peiyong Lind3788632018-09-18 16:01:31 -07003741 if (what & layer_state_t::eColorTransformChanged) {
3742 if (layer->setColorTransform(s.colorTransform)) {
3743 flags |= eTraversalNeeded;
3744 }
3745 }
Valerie Haudd0b7572019-01-29 14:59:27 -08003746 if (what & layer_state_t::eBackgroundColorChanged) {
3747 if (layer->setBackgroundColor(s.color, s.bgColorAlpha, s.bgColorDataspace)) {
3748 flags |= eTraversalNeeded;
3749 }
3750 }
chaviw8b3871a2017-11-01 17:41:01 -07003751 if (what & layer_state_t::eMatrixChanged) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003752 // TODO: b/109894387
3753 //
3754 // SurfaceFlinger's renderer is not prepared to handle cropping in the face of arbitrary
3755 // rotation. To see the problem observe that if we have a square parent, and a child
3756 // of the same size, then we rotate the child 45 degrees around it's center, the child
3757 // must now be cropped to a non rectangular 8 sided region.
3758 //
3759 // Of course we can fix this in the future. For now, we are lucky, SurfaceControl is
3760 // private API, and the WindowManager only uses rotation in one case, which is on a top
3761 // level layer in which cropping is not an issue.
3762 //
3763 // However given that abuse of rotation matrices could lead to surfaces extending outside
3764 // of cropped areas, we need to prevent non-root clients without permission ACCESS_SURFACE_FLINGER
3765 // (a.k.a. everyone except WindowManager and tests) from setting non rectangle preserving
3766 // transformations.
Robert Carr14167e02019-02-13 13:50:55 -08003767 if (layer->setMatrix(s.matrix, privileged))
chaviw8b3871a2017-11-01 17:41:01 -07003768 flags |= eTraversalNeeded;
3769 }
3770 if (what & layer_state_t::eTransparentRegionChanged) {
3771 if (layer->setTransparentRegionHint(s.transparentRegion))
3772 flags |= eTraversalNeeded;
3773 }
3774 if (what & layer_state_t::eFlagsChanged) {
3775 if (layer->setFlags(s.flags, s.mask))
3776 flags |= eTraversalNeeded;
3777 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07003778 if (what & layer_state_t::eCropChanged_legacy) {
3779 if (layer->setCrop_legacy(s.crop_legacy, !geometryAppliesWithResize))
chaviw8b3871a2017-11-01 17:41:01 -07003780 flags |= eTraversalNeeded;
3781 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003782 if (what & layer_state_t::eCornerRadiusChanged) {
3783 if (layer->setCornerRadius(s.cornerRadius))
3784 flags |= eTraversalNeeded;
3785 }
chaviw8b3871a2017-11-01 17:41:01 -07003786 if (what & layer_state_t::eLayerStackChanged) {
3787 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3788 // We only allow setting layer stacks for top level layers,
3789 // everything else inherits layer stack from its parent.
3790 if (layer->hasParent()) {
3791 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3792 layer->getName().string());
3793 } else if (idx < 0) {
3794 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3795 "that also does not appear in the top level layer list. Something"
3796 " has gone wrong.", layer->getName().string());
3797 } else if (layer->setLayerStack(s.layerStack)) {
3798 mCurrentState.layersSortedByZ.removeAt(idx);
3799 mCurrentState.layersSortedByZ.add(layer);
3800 // we need traversal (state changed)
3801 // AND transaction (list changed)
Lloyd Piqued432a7c2018-03-23 16:05:31 -07003802 flags |= eTransactionNeeded|eTraversalNeeded|eDisplayLayerStackChanged;
chaviw8b3871a2017-11-01 17:41:01 -07003803 }
3804 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07003805 if (what & layer_state_t::eDeferTransaction_legacy) {
3806 if (s.barrierHandle_legacy != nullptr) {
3807 layer->deferTransactionUntil_legacy(s.barrierHandle_legacy, s.frameNumber_legacy);
3808 } else if (s.barrierGbp_legacy != nullptr) {
3809 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp_legacy;
chaviw8b3871a2017-11-01 17:41:01 -07003810 if (authenticateSurfaceTextureLocked(gbp)) {
3811 const auto& otherLayer =
3812 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
Marissa Wallf58c14b2018-07-24 10:50:43 -07003813 layer->deferTransactionUntil_legacy(otherLayer, s.frameNumber_legacy);
chaviw8b3871a2017-11-01 17:41:01 -07003814 } else {
3815 ALOGE("Attempt to defer transaction to to an"
3816 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003817 }
3818 }
chaviw8b3871a2017-11-01 17:41:01 -07003819 // We don't trigger a traversal here because if no other state is
3820 // changed, we don't want this to cause any more work
3821 }
3822 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003823 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003824 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003825 if (!hadParent) {
3826 mCurrentState.layersSortedByZ.remove(layer);
3827 }
chaviw8b3871a2017-11-01 17:41:01 -07003828 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003829 }
chaviw8b3871a2017-11-01 17:41:01 -07003830 }
3831 if (what & layer_state_t::eReparentChildren) {
3832 if (layer->reparentChildren(s.reparentHandle)) {
3833 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003834 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003835 }
chaviw8b3871a2017-11-01 17:41:01 -07003836 if (what & layer_state_t::eDetachChildren) {
3837 layer->detachChildren();
3838 }
3839 if (what & layer_state_t::eOverrideScalingModeChanged) {
3840 layer->setOverrideScalingMode(s.overrideScalingMode);
3841 // We don't trigger a traversal here because if no other state is
3842 // changed, we don't want this to cause any more work
3843 }
Marissa Wall61c58622018-07-18 10:12:20 -07003844 if (what & layer_state_t::eTransformChanged) {
3845 if (layer->setTransform(s.transform)) flags |= eTraversalNeeded;
3846 }
3847 if (what & layer_state_t::eTransformToDisplayInverseChanged) {
3848 if (layer->setTransformToDisplayInverse(s.transformToDisplayInverse))
3849 flags |= eTraversalNeeded;
3850 }
3851 if (what & layer_state_t::eCropChanged) {
3852 if (layer->setCrop(s.crop)) flags |= eTraversalNeeded;
3853 }
Marissa Wall861616d2018-10-22 12:52:23 -07003854 if (what & layer_state_t::eFrameChanged) {
3855 if (layer->setFrame(s.frame)) flags |= eTraversalNeeded;
3856 }
Marissa Wall61c58622018-07-18 10:12:20 -07003857 if (what & layer_state_t::eAcquireFenceChanged) {
3858 if (layer->setAcquireFence(s.acquireFence)) flags |= eTraversalNeeded;
3859 }
3860 if (what & layer_state_t::eDataspaceChanged) {
3861 if (layer->setDataspace(s.dataspace)) flags |= eTraversalNeeded;
3862 }
3863 if (what & layer_state_t::eHdrMetadataChanged) {
3864 if (layer->setHdrMetadata(s.hdrMetadata)) flags |= eTraversalNeeded;
3865 }
3866 if (what & layer_state_t::eSurfaceDamageRegionChanged) {
3867 if (layer->setSurfaceDamageRegion(s.surfaceDamageRegion)) flags |= eTraversalNeeded;
3868 }
3869 if (what & layer_state_t::eApiChanged) {
3870 if (layer->setApi(s.api)) flags |= eTraversalNeeded;
3871 }
3872 if (what & layer_state_t::eSidebandStreamChanged) {
3873 if (layer->setSidebandStream(s.sidebandStream)) flags |= eTraversalNeeded;
3874 }
Robert Carr720e5062018-07-30 17:45:14 -07003875 if (what & layer_state_t::eInputInfoChanged) {
Robert Carr11ac2012019-01-22 09:05:25 -08003876 if (callingThreadHasUnscopedSurfaceFlingerAccess()) {
3877 layer->setInputInfo(s.inputInfo);
3878 flags |= eTraversalNeeded;
3879 } else {
3880 ALOGE("Attempt to update InputWindowInfo without permission ACCESS_SURFACE_FLINGER");
3881 }
Robert Carr720e5062018-07-30 17:45:14 -07003882 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003883 if (what & layer_state_t::eMetadataChanged) {
3884 if (layer->setMetadata(s.metadata)) flags |= eTraversalNeeded;
3885 }
Peiyong Linc502cb72019-03-01 15:00:23 -08003886 if (what & layer_state_t::eColorSpaceAgnosticChanged) {
3887 if (layer->setColorSpaceAgnostic(s.colorSpaceAgnostic)) {
3888 flags |= eTraversalNeeded;
3889 }
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);
Ana Krulec8d3e4f32019-03-05 10:40:33 -08005655 setDesiredActiveConfig(displayToken, config.configId,
5656 Scheduler::ConfigEvent::Changed);
Ady Abraham838de062019-02-04 10:24:03 -08005657 break;
5658 }
5659 }
5660 }
5661}
5662
5663status_t SurfaceFlinger::setAllowedDisplayConfigs(const android::sp<android::IBinder>& displayToken,
5664 const std::vector<int32_t>& allowedConfigs) {
5665 ATRACE_CALL();
5666
5667 if (!displayToken) {
5668 ALOGE("setAllowedDisplayConfigs: displayToken is null");
5669 return BAD_VALUE;
5670 }
5671
5672 if (!allowedConfigs.size()) {
5673 ALOGE("setAllowedDisplayConfigs: empty config set provided");
5674 return BAD_VALUE;
5675 }
5676
5677 {
5678 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
5679 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5680 if (!displayId) {
5681 ALOGE("setAllowedDisplayConfigs: display not found");
5682 return NAME_NOT_FOUND;
5683 }
5684 }
5685
5686 auto allowedDisplayConfigsBuilder = AllowedDisplayConfigs::Builder();
5687 for (int config : allowedConfigs) {
5688 ALOGV("setAllowedDisplayConfigs: Adding config to the allowed configs = %d", config);
5689 allowedDisplayConfigsBuilder.addConfig(config);
5690 }
5691 auto allowedDisplayConfigs = allowedDisplayConfigsBuilder.build();
5692 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
5693 setAllowedDisplayConfigsInternal(displayToken, std::move(allowedDisplayConfigs));
5694 }));
5695 return NO_ERROR;
5696}
5697
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08005698status_t SurfaceFlinger::getAllowedDisplayConfigs(const android::sp<android::IBinder>& displayToken,
5699 std::vector<int32_t>* outAllowedConfigs) {
5700 ATRACE_CALL();
5701
5702 if (!displayToken) {
5703 ALOGE("getAllowedDisplayConfigs: displayToken is null");
5704 return BAD_VALUE;
5705 }
5706
5707 if (!outAllowedConfigs) {
5708 ALOGE("getAllowedDisplayConfigs: outAllowedConfigs is null");
5709 return BAD_VALUE;
5710 }
5711
5712 ConditionalLock stateLock(mStateLock, std::this_thread::get_id() != mMainThreadId);
5713 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5714 if (!displayId) {
5715 ALOGE("getAllowedDisplayConfigs: display not found");
5716 return NAME_NOT_FOUND;
5717 }
5718
5719 std::lock_guard allowedConfigLock(mAllowedConfigsLock);
5720 auto allowedConfigIterator = mAllowedConfigs.find(displayId.value());
5721 if (allowedConfigIterator != mAllowedConfigs.end()) {
5722 allowedConfigIterator->second->getAllowedConfigs(outAllowedConfigs);
5723 }
5724
5725 return NO_ERROR;
5726}
5727
chaviw291d88a2019-02-14 10:33:58 -08005728// ----------------------------------------------------------------------------
5729
5730void SetInputWindowsListener::onSetInputWindowsFinished() {
5731 mFlinger->setInputWindowsFinished();
5732}
5733
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005734}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07005735
Lloyd Pique074e8122018-07-26 12:57:23 -07005736
Mathias Agopian3f844832013-08-07 21:24:32 -07005737#if defined(__gl_h_)
5738#error "don't include gl/gl.h in this file"
5739#endif
5740
5741#if defined(__gl2_h_)
5742#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08005743#endif