blob: 96f7d1e6841f8251ffd8e7c89bfd420468bc08a0 [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 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07001757 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
David Sodman79bba0e2018-08-05 18:07:49 -07001758 if (layer->isHdrY410()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001759 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001760 } else if ((layer->getDataSpace() == Dataspace::BT2020_PQ ||
1761 layer->getDataSpace() == Dataspace::BT2020_ITU_PQ) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001762 !profile->hasHDR10Support()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001763 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001764 } else if ((layer->getDataSpace() == Dataspace::BT2020_HLG ||
1765 layer->getDataSpace() == Dataspace::BT2020_ITU_HLG) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001766 !profile->hasHLGSupport()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001767 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001768 }
1769
Peiyong Lind3788632018-09-18 16:01:31 -07001770 // TODO(b/111562338) remove when composer 2.3 is shipped.
1771 if (layer->hasColorTransform()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001772 layer->forceClientComposition(displayDevice);
Peiyong Lind3788632018-09-18 16:01:31 -07001773 }
1774
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001775 if (layer->getRoundedCornerState().radius > 0.0f) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001776 layer->forceClientComposition(displayDevice);
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001777 }
1778
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001779 if (layer->getForceClientComposition(displayDevice)) {
David Sodman79bba0e2018-08-05 18:07:49 -07001780 ALOGV("[%s] Requesting Client composition", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001781 layer->setCompositionType(displayDevice,
1782 Hwc2::IComposerClient::Composition::CLIENT);
David Sodman79bba0e2018-08-05 18:07:49 -07001783 continue;
1784 }
1785
Lloyd Pique32cbe282018-10-19 13:09:22 -07001786 const auto& displayState = display->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001787 layer->setPerFrameData(displayDevice, displayState.transform, displayState.viewport,
Lloyd Pique32cbe282018-10-19 13:09:22 -07001788 displayDevice->getSupportedPerFrameMetadata());
David Sodman79bba0e2018-08-05 18:07:49 -07001789 }
1790
Peiyong Lin13effd12018-07-24 17:01:47 -07001791 if (useColorManagement) {
David Sodman79bba0e2018-08-05 18:07:49 -07001792 ColorMode colorMode;
1793 Dataspace dataSpace;
1794 RenderIntent renderIntent;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001795 pickColorMode(displayDevice, &colorMode, &dataSpace, &renderIntent);
Lloyd Pique32cbe282018-10-19 13:09:22 -07001796 display->setColorMode(colorMode, dataSpace, renderIntent);
David Sodman79bba0e2018-08-05 18:07:49 -07001797 }
1798 }
1799
1800 mDrawingState.colorMatrixChanged = false;
David Sodmanba340492018-08-05 21:51:33 -07001801
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001802 for (const auto& [token, displayDevice] : mDisplays) {
1803 auto display = displayDevice->getCompositionDisplay();
1804 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -08001805 auto& layerState = layer->getCompositionLayer()->editState().frontEnd;
1806 layerState.compositionType = static_cast<Hwc2::IComposerClient::Composition>(
1807 layer->getCompositionType(displayDevice));
David Sodmanba340492018-08-05 21:51:33 -07001808 }
1809 }
David Sodman79bba0e2018-08-05 18:07:49 -07001810}
1811
Lloyd Pique32cbe282018-10-19 13:09:22 -07001812void SurfaceFlinger::doDebugFlashRegions(const sp<DisplayDevice>& displayDevice,
1813 bool repaintEverything) {
1814 auto display = displayDevice->getCompositionDisplay();
1815 const auto& displayState = display->getState();
1816
Mathias Agopiancd60f992012-08-16 16:28:27 -07001817 // is debugging enabled
1818 if (CC_LIKELY(!mDebugRegion))
1819 return;
1820
Lloyd Pique32cbe282018-10-19 13:09:22 -07001821 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08001822 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001823 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
David Sodmanfa9b2af2017-12-24 13:28:59 -08001824 if (!dirtyRegion.isEmpty()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001825 base::unique_fd readyFence;
David Sodmanfa9b2af2017-12-24 13:28:59 -08001826 // redraw the whole screen
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001827 doComposeSurfaces(displayDevice, dirtyRegion, &readyFence);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001828
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001829 display->getRenderSurface()->queueBuffer(std::move(readyFence));
Mathias Agopiancd60f992012-08-16 16:28:27 -07001830 }
1831 }
1832
Lloyd Pique32cbe282018-10-19 13:09:22 -07001833 postFramebuffer(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001834
1835 if (mDebugRegion > 1) {
1836 usleep(mDebugRegion * 1000);
1837 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001838
Lloyd Pique32cbe282018-10-19 13:09:22 -07001839 prepareFrame(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001840}
1841
Adrian Roos1e1a1282017-11-01 19:05:31 +01001842void SurfaceFlinger::doTracing(const char* where) {
1843 ATRACE_CALL();
1844 ATRACE_NAME(where);
1845 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001846 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001847 }
1848}
1849
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001850void SurfaceFlinger::logLayerStats() {
1851 ATRACE_CALL();
1852 if (CC_UNLIKELY(mLayerStats.isEnabled())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07001853 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001854 if (display->isPrimary()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001855 mLayerStats.logLayerStats(dumpVisibleLayersProtoInfo(display));
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001856 return;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001857 }
1858 }
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001859
1860 ALOGE("logLayerStats: no primary display");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001861 }
1862}
1863
David Sodman2b406362017-12-15 13:33:47 -08001864void SurfaceFlinger::preComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001865{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001866 ATRACE_CALL();
1867 ALOGV("preComposition");
1868
David Sodman2b406362017-12-15 13:33:47 -08001869 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
1870
Mathias Agopiancd60f992012-08-16 16:28:27 -07001871 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001872 mDrawingState.traverseInZOrder([&](Layer* layer) {
David Sodman2b406362017-12-15 13:33:47 -08001873 if (layer->onPreComposition(mRefreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001874 needExtraInvalidate = true;
1875 }
Robert Carr2047fae2016-11-28 14:09:09 -08001876 });
1877
Mathias Agopiancd60f992012-08-16 16:28:27 -07001878 if (needExtraInvalidate) {
1879 signalLayerUpdate();
1880 }
1881}
1882
Ana Krulece588e312018-09-18 12:32:24 -07001883void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime,
1884 std::shared_ptr<FenceTime>& presentFenceTime) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001885 // Update queue of past composite+present times and determine the
1886 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001887 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001888 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001889 while (!getBE().mCompositePresentTimes.empty()) {
1890 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001891 // Cached values should have been updated before calling this method,
1892 // which helps avoid duplicate syscalls.
1893 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1894 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1895 break;
1896 }
1897 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001898 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001899 }
1900
1901 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001902 while (getBE().mCompositePresentTimes.size() > 16) {
1903 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001904 }
1905
Ana Krulece588e312018-09-18 12:32:24 -07001906 setCompositorTimingSnapped(stats, compositeToPresentLatency);
Brian Andersond0010582017-03-07 13:20:31 -08001907}
1908
Ana Krulece588e312018-09-18 12:32:24 -07001909void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats,
1910 nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001911 // Integer division and modulo round toward 0 not -inf, so we need to
1912 // treat negative and positive offsets differently.
Ana Krulec757f63a2019-01-25 10:46:18 -08001913 nsecs_t idealLatency = (mPhaseOffsets->getCurrentSfOffset() > 0)
1914 ? (stats.vsyncPeriod - (mPhaseOffsets->getCurrentSfOffset() % stats.vsyncPeriod))
1915 : ((-mPhaseOffsets->getCurrentSfOffset()) % stats.vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001916
Ana Krulec757f63a2019-01-25 10:46:18 -08001917 // Just in case mPhaseOffsets->getCurrentSfOffset() == -vsyncInterval.
Brian Andersond0010582017-03-07 13:20:31 -08001918 if (idealLatency <= 0) {
Ana Krulece588e312018-09-18 12:32:24 -07001919 idealLatency = stats.vsyncPeriod;
Brian Andersond0010582017-03-07 13:20:31 -08001920 }
1921
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001922 // Snap the latency to a value that removes scheduling jitter from the
1923 // composition and present times, which often have >1ms of jitter.
1924 // Reducing jitter is important if an app attempts to extrapolate
1925 // something (such as user input) to an accurate diasplay time.
Ana Krulec757f63a2019-01-25 10:46:18 -08001926 // Snapping also allows an app to precisely calculate mPhaseOffsets->getCurrentSfOffset()
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001927 // with (presentLatency % interval).
Ana Krulece588e312018-09-18 12:32:24 -07001928 nsecs_t bias = stats.vsyncPeriod / 2;
1929 int64_t extraVsyncs = (compositeToPresentLatency - idealLatency + bias) / stats.vsyncPeriod;
1930 nsecs_t snappedCompositeToPresentLatency =
1931 (extraVsyncs > 0) ? idealLatency + (extraVsyncs * stats.vsyncPeriod) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001932
David Sodman99974d22017-11-28 12:04:33 -08001933 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
Ana Krulece588e312018-09-18 12:32:24 -07001934 getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency;
1935 getBE().mCompositorTiming.interval = stats.vsyncPeriod;
David Sodman99974d22017-11-28 12:04:33 -08001936 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001937}
1938
David Sodman2b406362017-12-15 13:33:47 -08001939void SurfaceFlinger::postComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001940{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001941 ATRACE_CALL();
1942 ALOGV("postComposition");
1943
Brian Anderson3546a3f2016-07-14 11:51:14 -07001944 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001945 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001946 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001947 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001948 }
1949
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001950 // |mStateLock| not needed as we are on the main thread
Lloyd Pique32cbe282018-10-19 13:09:22 -07001951 const auto displayDevice = getDefaultDisplayDeviceLocked();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001952
David Sodman73beded2017-11-15 11:56:06 -08001953 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001954 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001955 if (displayDevice && getHwComposer().hasClientComposition(displayDevice->getId())) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001956 glCompositionDoneFenceTime =
Lloyd Pique31cb2942018-10-19 17:23:03 -07001957 std::make_shared<FenceTime>(displayDevice->getCompositionDisplay()
1958 ->getRenderSurface()
1959 ->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001960 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001961 } else {
1962 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1963 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001964
David Sodman73beded2017-11-15 11:56:06 -08001965 getBE().mDisplayTimeline.updateSignalTimes();
Lloyd Pique32cbe282018-10-19 13:09:22 -07001966 mPreviousPresentFence = displayDevice ? getHwComposer().getPresentFence(*displayDevice->getId())
1967 : Fence::NO_FENCE;
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001968 auto presentFenceTime = std::make_shared<FenceTime>(mPreviousPresentFence);
David Sodman73beded2017-11-15 11:56:06 -08001969 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001970
Ana Krulece588e312018-09-18 12:32:24 -07001971 DisplayStatInfo stats;
Ana Krulecc2870422019-01-29 19:00:58 -08001972 mScheduler->getDisplayStatInfo(&stats);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001973
David Sodman2b406362017-12-15 13:33:47 -08001974 // We use the mRefreshStartTime which might be sampled a little later than
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001975 // when we started doing work for this frame, but that should be okay
1976 // since updateCompositorTiming has snapping logic.
Ana Krulece588e312018-09-18 12:32:24 -07001977 updateCompositorTiming(stats, mRefreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001978 CompositorTiming compositorTiming;
1979 {
David Sodman99974d22017-11-28 12:04:33 -08001980 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1981 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001982 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001983
Robert Carr2047fae2016-11-28 14:09:09 -08001984 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001985 bool frameLatched =
1986 layer->onPostComposition(displayDevice->getId(), glCompositionDoneFenceTime,
1987 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001988 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001989 recordBufferingStats(layer->getName().string(),
1990 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001991 }
Robert Carr2047fae2016-11-28 14:09:09 -08001992 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001993
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001994 if (presentFenceTime->isValid()) {
Ana Krulecc2870422019-01-29 19:00:58 -08001995 mScheduler->addPresentFence(presentFenceTime);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001996 }
1997
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08001998 if (!hasSyncFramework) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001999 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2000 displayDevice->isPoweredOn()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002001 mScheduler->enableHardwareVsync();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002002 }
2003 }
2004
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002005 if (mAnimCompositionPending) {
2006 mAnimCompositionPending = false;
2007
Brian Anderson4e606e32017-03-16 15:34:57 -07002008 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002009 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07002010 std::move(presentFenceTime));
Lloyd Pique32cbe282018-10-19 13:09:22 -07002011 } else if (displayDevice && getHwComposer().isConnected(*displayDevice->getId())) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002012 // The HWC doesn't support present fences, so use the refresh
2013 // timestamp instead.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002014 const nsecs_t presentTime =
2015 getHwComposer().getRefreshTimestamp(*displayDevice->getId());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002016 mAnimFrameTracker.setActualPresentTime(presentTime);
2017 }
2018 mAnimFrameTracker.advanceFrame();
2019 }
Dan Stozab90cf072015-03-05 11:05:59 -08002020
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002021 mTimeStats->incrementTotalFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002022 if (mHadClientComposition) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002023 mTimeStats->incrementClientCompositionFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002024 }
2025
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002026 mTimeStats->setPresentFenceGlobal(presentFenceTime);
Yiwei Zhangce6ebc02018-10-20 12:42:38 -07002027
Lloyd Pique32cbe282018-10-19 13:09:22 -07002028 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2029 !displayDevice->isPoweredOn()) {
Dan Stozab90cf072015-03-05 11:05:59 -08002030 return;
2031 }
2032
2033 nsecs_t currentTime = systemTime();
2034 if (mHasPoweredOff) {
2035 mHasPoweredOff = false;
2036 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002037 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Ana Krulece588e312018-09-18 12:32:24 -07002038 size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod);
David Sodman4a36e932017-11-07 14:29:47 -08002039 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
2040 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002041 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002042 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002043 }
David Sodman4a36e932017-11-07 14:29:47 -08002044 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002045 }
David Sodman4a36e932017-11-07 14:29:47 -08002046 getBE().mLastSwapTime = currentTime;
Dan Stoza436ccf32018-06-21 12:10:12 -07002047
2048 {
2049 std::lock_guard lock(mTexturePoolMutex);
2050 const size_t refillCount = mTexturePoolSize - mTexturePool.size();
2051 if (refillCount > 0) {
2052 const size_t offset = mTexturePool.size();
2053 mTexturePool.resize(mTexturePoolSize);
2054 getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset);
2055 ATRACE_INT("TexturePoolSize", mTexturePool.size());
2056 }
2057 }
Marissa Walle2ffb422018-10-12 11:33:52 -07002058
Marissa Wallfda30bb2018-10-12 11:34:28 -07002059 mTransactionCompletedThread.addPresentFence(mPreviousPresentFence);
Marissa Walle2ffb422018-10-12 11:33:52 -07002060 mTransactionCompletedThread.sendCallbacks();
Ady Abraham8164d482019-01-11 14:47:59 -08002061
Dan Stozaec460082018-12-17 15:35:09 -08002062 if (mLumaSampling) {
2063 mRegionSamplingThread->sampleNow();
2064 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002065}
2066
Vishnu Nair4351ad52019-02-11 14:13:02 -08002067void SurfaceFlinger::computeLayerBounds() {
2068 for (const auto& pair : mDisplays) {
2069 const auto& displayDevice = pair.second;
2070 const auto display = displayDevice->getCompositionDisplay();
2071 for (const auto& layer : mDrawingState.layersSortedByZ) {
2072 // only consider the layers on the given layer stack
2073 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Vishnu Nair01ace762019-02-12 14:25:24 -08002074 continue;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002075 }
2076
2077 layer->computeBounds(displayDevice->getViewport().toFloatRect(), ui::Transform());
2078 }
2079 }
2080}
2081
Mathias Agopiancd60f992012-08-16 16:28:27 -07002082void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002083 ATRACE_CALL();
2084 ALOGV("rebuildLayerStacks");
2085
Mathias Agopiancd60f992012-08-16 16:28:27 -07002086 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07002087 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07002088 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07002089 mVisibleRegionsDirty = false;
2090 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002091
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002092 for (const auto& pair : mDisplays) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002093 const auto& displayDevice = pair.second;
2094 auto display = displayDevice->getCompositionDisplay();
2095 const auto& displayState = display->getState();
Jeff Sharkey76488112017-02-27 14:15:18 -07002096 Region opaqueRegion;
2097 Region dirtyRegion;
Lloyd Piquecc01a452018-12-04 17:24:00 -08002098 compositionengine::Output::OutputLayers layersSortedByZ;
2099 Vector<sp<Layer>> deprecated_layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08002100 Vector<sp<Layer>> layersNeedingFences;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002101 const ui::Transform& tr = displayState.transform;
2102 const Rect bounds = displayState.bounds;
2103 if (displayState.isEnabled) {
2104 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002105
Jeff Sharkey76488112017-02-27 14:15:18 -07002106 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Piquecc01a452018-12-04 17:24:00 -08002107 auto compositionLayer = layer->getCompositionLayer();
2108 if (compositionLayer == nullptr) {
2109 return;
2110 }
2111
Lloyd Pique32cbe282018-10-19 13:09:22 -07002112 const auto displayId = displayDevice->getId();
Lloyd Piquecc01a452018-12-04 17:24:00 -08002113 sp<compositionengine::LayerFE> layerFE = compositionLayer->getLayerFE();
2114 LOG_ALWAYS_FATAL_IF(layerFE.get() == nullptr);
2115
Lloyd Pique07e33212018-12-18 16:33:37 -08002116 bool needsOutputLayer = false;
2117
Lloyd Piqueef36b002019-01-23 17:52:04 -08002118 if (display->belongsInOutput(layer->getLayerStack(),
2119 layer->getPrimaryDisplayOnly())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07002120 Region drawRegion(tr.transform(
2121 layer->visibleNonTransparentRegion));
2122 drawRegion.andSelf(bounds);
2123 if (!drawRegion.isEmpty()) {
Lloyd Pique07e33212018-12-18 16:33:37 -08002124 needsOutputLayer = true;
Jeff Sharkey76488112017-02-27 14:15:18 -07002125 }
Chia-I Wu83806892017-11-16 10:50:20 -08002126 }
2127
Lloyd Pique07e33212018-12-18 16:33:37 -08002128 if (needsOutputLayer) {
2129 layersSortedByZ.emplace_back(
2130 display->getOrCreateOutputLayer(displayId, compositionLayer,
2131 layerFE));
2132 deprecated_layersSortedByZ.add(layer);
2133
2134 auto& outputLayerState = layersSortedByZ.back()->editState();
2135 outputLayerState.visibleRegion =
2136 tr.transform(layer->visibleRegion.intersect(displayState.viewport));
2137 } else if (displayId) {
2138 // For layers that are being removed from a HWC display,
2139 // and that have queued frames, add them to a a list of
2140 // released layers so we can properly set a fence.
2141 bool hasExistingOutputLayer =
2142 display->getOutputLayerForLayer(compositionLayer.get()) != nullptr;
2143 bool hasQueuedFrames = std::find(mLayersWithQueuedFrames.cbegin(),
2144 mLayersWithQueuedFrames.cend(),
2145 layer) != mLayersWithQueuedFrames.cend();
2146
2147 if (hasExistingOutputLayer && hasQueuedFrames) {
Chia-I Wu83806892017-11-16 10:50:20 -08002148 layersNeedingFences.add(layer);
2149 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002150 }
Jeff Sharkey76488112017-02-27 14:15:18 -07002151 });
2152 }
Lloyd Piquecc01a452018-12-04 17:24:00 -08002153
2154 display->setOutputLayersOrderedByZ(std::move(layersSortedByZ));
2155
2156 displayDevice->setVisibleLayersSortedByZ(deprecated_layersSortedByZ);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002157 displayDevice->setLayersNeedingFences(layersNeedingFences);
2158
2159 Region undefinedRegion{bounds};
2160 undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
2161
2162 display->editState().undefinedRegion = undefinedRegion;
2163 display->editState().dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002164 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002165 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002166}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002167
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002168// Returns a data space that fits all visible layers. The returned data space
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002169// can only be one of
Chia-I Wu7a28ecb2018-05-04 10:38:39 -07002170// - Dataspace::SRGB (use legacy dataspace and let HWC saturate when colors are enhanced)
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002171// - Dataspace::DISPLAY_P3
Valerie Hau9758ae02018-10-09 16:05:09 -07002172// - Dataspace::DISPLAY_BT2020
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002173// The returned HDR data space is one of
2174// - Dataspace::UNKNOWN
2175// - Dataspace::BT2020_HLG
2176// - Dataspace::BT2020_PQ
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002177Dataspace SurfaceFlinger::getBestDataspace(const sp<const DisplayDevice>& display,
2178 Dataspace* outHdrDataSpace) const {
Peiyong Lin14724e62018-12-05 07:27:30 -08002179 Dataspace bestDataSpace = Dataspace::V0_SRGB;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002180 *outHdrDataSpace = Dataspace::UNKNOWN;
2181
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002182 for (const auto& layer : display->getVisibleLayersSortedByZ()) {
Chia-I Wu01591c92018-05-22 12:03:00 -07002183 switch (layer->getDataSpace()) {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002184 case Dataspace::V0_SCRGB:
2185 case Dataspace::V0_SCRGB_LINEAR:
Valerie Hau9758ae02018-10-09 16:05:09 -07002186 case Dataspace::BT2020:
2187 case Dataspace::BT2020_ITU:
2188 case Dataspace::BT2020_LINEAR:
2189 case Dataspace::DISPLAY_BT2020:
2190 bestDataSpace = Dataspace::DISPLAY_BT2020;
2191 break;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002192 case Dataspace::DISPLAY_P3:
Chia-I Wube02ec02018-05-18 10:59:36 -07002193 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002194 break;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002195 case Dataspace::BT2020_PQ:
2196 case Dataspace::BT2020_ITU_PQ:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002197 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002198 *outHdrDataSpace = Dataspace::BT2020_PQ;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002199 break;
Peiyong Linf59a7192018-04-25 11:19:31 -07002200 case Dataspace::BT2020_HLG:
2201 case Dataspace::BT2020_ITU_HLG:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002202 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002203 // When there's mixed PQ content and HLG content, we set the HDR
2204 // data space to be BT2020_PQ and convert HLG to PQ.
2205 if (*outHdrDataSpace == Dataspace::UNKNOWN) {
2206 *outHdrDataSpace = Dataspace::BT2020_HLG;
Peiyong Linf59a7192018-04-25 11:19:31 -07002207 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002208 break;
2209 default:
2210 break;
2211 }
Romain Guy54f154a2017-10-24 21:40:32 +01002212 }
2213
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002214 return bestDataSpace;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002215}
2216
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002217// Pick the ColorMode / Dataspace for the display device.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002218void SurfaceFlinger::pickColorMode(const sp<DisplayDevice>& display, ColorMode* outMode,
2219 Dataspace* outDataSpace, RenderIntent* outRenderIntent) const {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002220 if (mDisplayColorSetting == DisplayColorSetting::UNMANAGED) {
2221 *outMode = ColorMode::NATIVE;
2222 *outDataSpace = Dataspace::UNKNOWN;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002223 *outRenderIntent = RenderIntent::COLORIMETRIC;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002224 return;
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002225 }
Romain Guy88d37dd2017-05-26 17:57:05 -07002226
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002227 Dataspace hdrDataSpace;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002228 Dataspace bestDataSpace = getBestDataspace(display, &hdrDataSpace);
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002229
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002230 auto* profile = display->getCompositionDisplay()->getDisplayColorProfile();
2231
Peiyong Lina3ea5592019-02-10 14:45:00 -08002232 switch (mForceColorMode) {
2233 case ColorMode::SRGB:
2234 bestDataSpace = Dataspace::V0_SRGB;
2235 break;
2236 case ColorMode::DISPLAY_P3:
2237 bestDataSpace = Dataspace::DISPLAY_P3;
2238 break;
2239 default:
2240 break;
2241 }
2242
Peiyong Lindfde5112018-06-05 10:58:41 -07002243 // respect hdrDataSpace only when there is no legacy HDR support
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002244 const bool isHdr =
2245 hdrDataSpace != Dataspace::UNKNOWN && !profile->hasLegacyHdrSupport(hdrDataSpace);
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002246 if (isHdr) {
2247 bestDataSpace = hdrDataSpace;
2248 }
2249
Chia-I Wu0d711262018-05-21 15:19:35 -07002250 RenderIntent intent;
2251 switch (mDisplayColorSetting) {
2252 case DisplayColorSetting::MANAGED:
2253 case DisplayColorSetting::UNMANAGED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002254 intent = isHdr ? RenderIntent::TONE_MAP_COLORIMETRIC : RenderIntent::COLORIMETRIC;
Chia-I Wu0d711262018-05-21 15:19:35 -07002255 break;
2256 case DisplayColorSetting::ENHANCED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002257 intent = isHdr ? RenderIntent::TONE_MAP_ENHANCE : RenderIntent::ENHANCE;
Chia-I Wu0d711262018-05-21 15:19:35 -07002258 break;
2259 default: // vendor display color setting
2260 intent = static_cast<RenderIntent>(mDisplayColorSetting);
2261 break;
2262 }
Chia-I Wube02ec02018-05-18 10:59:36 -07002263
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002264 profile->getBestColorMode(bestDataSpace, intent, outDataSpace, outMode, outRenderIntent);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002265}
2266
Lloyd Pique32cbe282018-10-19 13:09:22 -07002267void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) {
2268 auto display = displayDevice->getCompositionDisplay();
2269 const auto& displayState = display->getState();
2270
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002271 bool dirty = !display->getDirtyRegion(false).isEmpty();
Lloyd Pique32cbe282018-10-19 13:09:22 -07002272 bool empty = displayDevice->getVisibleLayersSortedByZ().size() == 0;
2273 bool wasEmpty = !displayState.lastCompositionHadVisibleLayers;
David Sodman2b406362017-12-15 13:33:47 -08002274
David Sodmanfa9b2af2017-12-24 13:28:59 -08002275 // If nothing has changed (!dirty), don't recompose.
2276 // If something changed, but we don't currently have any visible layers,
2277 // and didn't when we last did a composition, then skip it this time.
2278 // The second rule does two things:
2279 // - When all layers are removed from a display, we'll emit one black
2280 // frame, then nothing more until we get new layers.
2281 // - When a display is created with a private layer stack, we won't
2282 // emit any black frames until a layer is added to the layer stack.
2283 bool mustRecompose = dirty && !(empty && wasEmpty);
David Sodman2b406362017-12-15 13:33:47 -08002284
Dominik Laskowski075d3172018-05-24 15:50:06 -07002285 const char flagPrefix[] = {'-', '+'};
2286 static_cast<void>(flagPrefix);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002287 ALOGV_IF(displayDevice->isVirtual(), "%s: %s composition for %s (%cdirty %cempty %cwasEmpty)",
2288 __FUNCTION__, mustRecompose ? "doing" : "skipping",
2289 displayDevice->getDebugName().c_str(), flagPrefix[dirty], flagPrefix[empty],
2290 flagPrefix[wasEmpty]);
David Sodman2b406362017-12-15 13:33:47 -08002291
Lloyd Pique31cb2942018-10-19 17:23:03 -07002292 display->getRenderSurface()->beginFrame(mustRecompose);
David Sodman2b406362017-12-15 13:33:47 -08002293
David Sodmanfa9b2af2017-12-24 13:28:59 -08002294 if (mustRecompose) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002295 display->editState().lastCompositionHadVisibleLayers = !empty;
David Sodman2b406362017-12-15 13:33:47 -08002296 }
2297}
2298
Lloyd Pique32cbe282018-10-19 13:09:22 -07002299void SurfaceFlinger::prepareFrame(const sp<DisplayDevice>& displayDevice) {
2300 auto display = displayDevice->getCompositionDisplay();
2301 const auto& displayState = display->getState();
2302
2303 if (!displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002304 return;
David Sodman2b406362017-12-15 13:33:47 -08002305 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08002306
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002307 status_t result = display->getRenderSurface()->prepareFrame();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002308 ALOGE_IF(result != NO_ERROR, "prepareFrame failed for %s: %d (%s)",
Lloyd Pique32cbe282018-10-19 13:09:22 -07002309 displayDevice->getDebugName().c_str(), result, strerror(-result));
David Sodman2b406362017-12-15 13:33:47 -08002310}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002311
Lloyd Pique32cbe282018-10-19 13:09:22 -07002312void SurfaceFlinger::doComposition(const sp<DisplayDevice>& displayDevice, bool repaintEverything) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002313 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002314 ALOGV("doComposition");
2315
Lloyd Pique32cbe282018-10-19 13:09:22 -07002316 auto display = displayDevice->getCompositionDisplay();
2317 const auto& displayState = display->getState();
2318
2319 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002320 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002321 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
Mathias Agopian02b95102012-11-05 17:50:57 -08002322
David Sodmanfa9b2af2017-12-24 13:28:59 -08002323 // repaint the framebuffer (if needed)
Lloyd Pique32cbe282018-10-19 13:09:22 -07002324 doDisplayComposition(displayDevice, dirtyRegion);
Mathias Agopian02b95102012-11-05 17:50:57 -08002325
Lloyd Pique32cbe282018-10-19 13:09:22 -07002326 display->editState().dirtyRegion.clear();
Lloyd Pique31cb2942018-10-19 17:23:03 -07002327 display->getRenderSurface()->flip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002328 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002329 postFramebuffer(displayDevice);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002330}
2331
David Sodmanfa9b2af2017-12-24 13:28:59 -08002332void SurfaceFlinger::postFrame()
2333{
2334 // |mStateLock| not needed as we are on the main thread
Dominik Laskowski075d3172018-05-24 15:50:06 -07002335 const auto display = getDefaultDisplayDeviceLocked();
2336 if (display && getHwComposer().isConnected(*display->getId())) {
2337 uint32_t flipCount = display->getPageFlipCount();
David Sodmanfa9b2af2017-12-24 13:28:59 -08002338 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2339 logFrameStats();
2340 }
2341 }
2342}
2343
Lloyd Pique32cbe282018-10-19 13:09:22 -07002344void SurfaceFlinger::postFramebuffer(const sp<DisplayDevice>& displayDevice) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002345 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002346 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08002347
Lloyd Pique32cbe282018-10-19 13:09:22 -07002348 auto display = displayDevice->getCompositionDisplay();
2349 const auto& displayState = display->getState();
2350 const auto displayId = display->getId();
2351
David Sodmanfa9b2af2017-12-24 13:28:59 -08002352 mPostFramebufferTime = systemTime();
Jesse Hallc5c5a142012-07-02 16:49:28 -07002353
Lloyd Pique32cbe282018-10-19 13:09:22 -07002354 if (displayState.isEnabled) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002355 if (displayId) {
2356 getHwComposer().presentAndGetReleaseFences(*displayId);
Mathias Agopian2a231842012-09-24 18:12:35 -07002357 }
Lloyd Pique31cb2942018-10-19 17:23:03 -07002358 display->getRenderSurface()->onPresentDisplayCompleted();
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002359 for (auto& layer : display->getOutputLayersOrderedByZ()) {
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002360 sp<Fence> releaseFence = Fence::NO_FENCE;
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002361 bool usedClientComposition = true;
David Sodman15094112018-10-11 09:39:37 -07002362
Chia-I Wu7b549592017-11-15 09:14:57 -08002363 // The layer buffer from the previous frame (if any) is released
2364 // by HWC only when the release fence from this frame (if any) is
2365 // signaled. Always get the release fence from HWC first.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002366 if (layer->getState().hwc) {
2367 const auto& hwcState = *layer->getState().hwc;
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002368 releaseFence =
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002369 getHwComposer().getLayerReleaseFence(*displayId, hwcState.hwcLayer.get());
2370 usedClientComposition =
2371 hwcState.hwcCompositionType == Hwc2::IComposerClient::Composition::CLIENT;
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002372 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002373
2374 // If the layer was client composited in the previous frame, we
2375 // need to merge with the previous client target acquire fence.
2376 // Since we do not track that, always merge with the current
2377 // client target acquire fence when it is available, even though
2378 // this is suboptimal.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002379 if (usedClientComposition) {
Lloyd Pique31cb2942018-10-19 17:23:03 -07002380 releaseFence =
2381 Fence::merge("LayerRelease", releaseFence,
2382 display->getRenderSurface()->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002383 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002384
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002385 layer->getLayerFE().onLayerDisplayed(releaseFence);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002386 }
Chia-I Wu83806892017-11-16 10:50:20 -08002387
2388 // We've got a list of layers needing fences, that are disjoint with
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002389 // display->getVisibleLayersSortedByZ. The best we can do is to
Chia-I Wu83806892017-11-16 10:50:20 -08002390 // supply them with the present fence.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002391 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002392 sp<Fence> presentFence =
Lloyd Pique441d5042018-10-18 16:49:51 -07002393 displayId ? getHwComposer().getPresentFence(*displayId) : Fence::NO_FENCE;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002394 for (auto& layer : displayDevice->getLayersNeedingFences()) {
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002395 layer->getCompositionLayer()->getLayerFE()->onLayerDisplayed(presentFence);
Chia-I Wu83806892017-11-16 10:50:20 -08002396 }
2397 }
2398
Dominik Laskowski075d3172018-05-24 15:50:06 -07002399 if (displayId) {
2400 getHwComposer().clearReleaseFences(*displayId);
Jesse Hallef194142012-06-14 14:45:17 -07002401 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002402 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002403}
2404
Mathias Agopian87baae12012-07-31 12:38:26 -07002405void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002406{
Mathias Agopian841cde52012-03-01 15:44:37 -08002407 ATRACE_CALL();
2408
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002409 // here we keep a copy of the drawing state (that is the state that's
2410 // going to be overwritten by handleTransactionLocked()) outside of
2411 // mStateLock so that the side-effects of the State assignment
2412 // don't happen with mStateLock held (which can cause deadlocks).
2413 State drawingState(mDrawingState);
2414
Mathias Agopianca4d3602011-05-19 15:38:14 -07002415 Mutex::Autolock _l(mStateLock);
2416 const nsecs_t now = systemTime();
2417 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002418
Mathias Agopianca4d3602011-05-19 15:38:14 -07002419 // Here we're guaranteed that some transaction flags are set
2420 // so we can call handleTransactionLocked() unconditionally.
2421 // We call getTransactionFlags(), which will also clear the flags,
2422 // with mStateLock held to guarantee that mCurrentState won't change
2423 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002424
Jorim Jaggif15c3be2018-04-12 12:56:58 +01002425 mVsyncModulator.onTransactionHandled();
Mathias Agopiane57f2922012-08-09 16:29:12 -07002426 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002427 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002428
Mathias Agopianca4d3602011-05-19 15:38:14 -07002429 mLastTransactionTime = systemTime() - now;
2430 mDebugInTransaction = 0;
2431 invalidateHwcGeometry();
2432 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002433}
2434
Lloyd Piqueba04e622017-12-14 17:11:26 -08002435void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2436 for (const auto& event : mPendingHotplugEvents) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002437 const std::optional<DisplayIdentificationInfo> info =
2438 getHwComposer().onHotplug(event.hwcDisplayId, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002439
Dominik Laskowski075d3172018-05-24 15:50:06 -07002440 if (!info) {
Lloyd Piqueba04e622017-12-14 17:11:26 -08002441 continue;
2442 }
2443
Lloyd Piqueba04e622017-12-14 17:11:26 -08002444 if (event.connection == HWC2::Connection::Connected) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002445 if (!mPhysicalDisplayTokens.count(info->id)) {
Dominik Laskowski34157762018-10-31 13:07:19 -07002446 ALOGV("Creating display %s", to_string(info->id).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07002447 mPhysicalDisplayTokens[info->id] = new BBinder();
2448 DisplayDeviceState state;
2449 state.displayId = info->id;
2450 state.isSecure = true; // All physical displays are currently considered secure.
2451 state.displayName = info->name;
2452 mCurrentState.displays.add(mPhysicalDisplayTokens[info->id], state);
2453 mInterceptor->saveDisplayCreation(state);
Steven Thomaseb6d2052018-03-20 15:40:48 -07002454 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002455 } else {
Dominik Laskowski34157762018-10-31 13:07:19 -07002456 ALOGV("Removing display %s", to_string(info->id).c_str());
Lloyd Piqueba04e622017-12-14 17:11:26 -08002457
Dominik Laskowski075d3172018-05-24 15:50:06 -07002458 ssize_t index = mCurrentState.displays.indexOfKey(mPhysicalDisplayTokens[info->id]);
2459 if (index >= 0) {
2460 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
2461 mInterceptor->saveDisplayDeletion(state.sequenceId);
2462 mCurrentState.displays.removeItemsAt(index);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002463 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002464 mPhysicalDisplayTokens.erase(info->id);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002465 }
2466
2467 processDisplayChangesLocked();
2468 }
2469
2470 mPendingHotplugEvents.clear();
2471}
2472
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002473void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) {
Ana Krulecc2870422019-01-29 19:00:58 -08002474 mScheduler->hotplugReceived(mAppConnectionHandle, displayId, connected);
2475 mScheduler->hotplugReceived(mSfConnectionHandle, displayId, connected);
Dominik Laskowski1eba0202019-01-24 09:14:40 -08002476}
2477
Lloyd Pique99d3da52018-01-22 17:48:03 -08002478sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal(
Dominik Laskowski075d3172018-05-24 15:50:06 -07002479 const wp<IBinder>& displayToken, const std::optional<DisplayId>& displayId,
Lloyd Pique542307f2018-10-19 13:24:08 -07002480 const DisplayDeviceState& state, const sp<compositionengine::DisplaySurface>& dispSurface,
Dominik Laskowski075d3172018-05-24 15:50:06 -07002481 const sp<IGraphicBufferProducer>& producer) {
2482 DisplayDeviceCreationArgs creationArgs(this, displayToken, displayId);
Dominik Laskowskie9774092018-12-11 10:04:24 -08002483 creationArgs.sequenceId = state.sequenceId;
Dominik Laskowski075d3172018-05-24 15:50:06 -07002484 creationArgs.isVirtual = state.isVirtual();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002485 creationArgs.isSecure = state.isSecure;
2486 creationArgs.displaySurface = dispSurface;
2487 creationArgs.hasWideColorGamut = false;
2488 creationArgs.supportedPerFrameMetadata = 0;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002489
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002490 const bool isInternalDisplay = displayId && displayId == getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002491 creationArgs.isPrimary = isInternalDisplay;
2492
2493 if (useColorManagement && displayId) {
2494 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002495 for (ColorMode colorMode : modes) {
Peiyong Linfca547f2018-07-09 13:03:33 -07002496 if (isWideColorMode(colorMode)) {
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002497 creationArgs.hasWideColorGamut = true;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002498 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002499
Dominik Laskowski7e045462018-05-30 13:02:02 -07002500 std::vector<RenderIntent> renderIntents =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002501 getHwComposer().getRenderIntents(*displayId, colorMode);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002502 creationArgs.hwcColorModes.emplace(colorMode, renderIntents);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002503 }
tangrobin6753a022018-08-10 10:58:54 +08002504 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002505
Dominik Laskowski075d3172018-05-24 15:50:06 -07002506 if (displayId) {
2507 getHwComposer().getHdrCapabilities(*displayId, &creationArgs.hdrCapabilities);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002508 creationArgs.supportedPerFrameMetadata =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002509 getHwComposer().getSupportedPerFrameMetadata(*displayId);
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002510 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002511
Lloyd Pique90c115d2018-09-18 21:39:42 -07002512 auto nativeWindowSurface = getFactory().createNativeWindowSurface(producer);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002513 auto nativeWindow = nativeWindowSurface->getNativeWindow();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002514 creationArgs.nativeWindow = nativeWindow;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002515
Lloyd Pique99d3da52018-01-22 17:48:03 -08002516 // Make sure that composition can never be stalled by a virtual display
2517 // consumer that isn't processing buffers fast enough. We have to do this
Alec Mouri0a9c7b82018-11-16 13:05:25 -08002518 // here, in case the display is composed entirely by HWC.
Dominik Laskowski281644e2018-04-19 15:47:35 -07002519 if (state.isVirtual()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002520 nativeWindow->setSwapInterval(nativeWindow.get(), 0);
2521 }
2522
Dominik Laskowski075d3172018-05-24 15:50:06 -07002523 creationArgs.displayInstallOrientation =
2524 isInternalDisplay ? primaryDisplayOrientation : DisplayState::eOrientationDefault;
Chia-I Wua02871c2018-08-27 14:38:23 -07002525
Lloyd Pique99d3da52018-01-22 17:48:03 -08002526 // virtual displays are always considered enabled
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002527 creationArgs.initialPowerMode = state.isVirtual() ? HWC_POWER_MODE_NORMAL : HWC_POWER_MODE_OFF;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002528
Lloyd Pique90c115d2018-09-18 21:39:42 -07002529 sp<DisplayDevice> display = getFactory().createDisplayDevice(std::move(creationArgs));
Lloyd Pique99d3da52018-01-22 17:48:03 -08002530
2531 if (maxFrameBufferAcquiredBuffers >= 3) {
2532 nativeWindowSurface->preallocateBuffers();
2533 }
2534
2535 ColorMode defaultColorMode = ColorMode::NATIVE;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002536 Dataspace defaultDataSpace = Dataspace::UNKNOWN;
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002537 if (display->hasWideColorGamut()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002538 defaultColorMode = ColorMode::SRGB;
Peiyong Lin14724e62018-12-05 07:27:30 -08002539 defaultDataSpace = Dataspace::V0_SRGB;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002540 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002541 display->getCompositionDisplay()->setColorMode(defaultColorMode, defaultDataSpace,
2542 RenderIntent::COLORIMETRIC);
Dominik Laskowski075d3172018-05-24 15:50:06 -07002543 if (!state.isVirtual()) {
2544 LOG_ALWAYS_FATAL_IF(!displayId);
2545 display->setActiveConfig(getHwComposer().getActiveConfigIndex(*displayId));
Lloyd Pique3c085a02018-05-09 19:38:32 -07002546 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002547
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002548 display->setLayerStack(state.layerStack);
2549 display->setProjection(state.orientation, state.viewport, state.frame);
2550 display->setDisplayName(state.displayName);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002551
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002552 return display;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002553}
2554
Lloyd Pique347200f2017-12-14 17:00:15 -08002555void SurfaceFlinger::processDisplayChangesLocked() {
2556 // here we take advantage of Vector's copy-on-write semantics to
2557 // improve performance by skipping the transaction entirely when
2558 // know that the lists are identical
2559 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2560 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2561 if (!curr.isIdenticalTo(draw)) {
2562 mVisibleRegionsDirty = true;
2563 const size_t cc = curr.size();
2564 size_t dc = draw.size();
2565
2566 // find the displays that were removed
2567 // (ie: in drawing state but not in current state)
2568 // also handle displays that changed
2569 // (ie: displays that are in both lists)
2570 for (size_t i = 0; i < dc;) {
2571 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2572 if (j < 0) {
2573 // in drawing state but not in current state
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002574 if (const auto display = getDisplayDeviceLocked(draw.keyAt(i))) {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002575 // Save display ID before disconnecting.
2576 const auto displayId = display->getId();
Lloyd Pique45a165a2018-10-19 11:54:47 -07002577 display->disconnect();
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002578
2579 if (!display->isVirtual()) {
2580 LOG_ALWAYS_FATAL_IF(!displayId);
2581 dispatchDisplayHotplugEvent(displayId->value, false);
2582 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002583 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002584
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002585 mDisplays.erase(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002586 } else {
2587 // this display is in both lists. see if something changed.
2588 const DisplayDeviceState& state(curr[j]);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002589 const wp<IBinder>& displayToken = curr.keyAt(j);
Lloyd Pique347200f2017-12-14 17:00:15 -08002590 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2591 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2592 if (state_binder != draw_binder) {
2593 // changing the surface is like destroying and
2594 // recreating the DisplayDevice, so we just remove it
2595 // from the drawing state, so that it get re-added
2596 // below.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002597 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique45a165a2018-10-19 11:54:47 -07002598 display->disconnect();
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002599 }
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002600 mDisplays.erase(displayToken);
Lloyd Pique347200f2017-12-14 17:00:15 -08002601 mDrawingState.displays.removeItemsAt(i);
2602 dc--;
2603 // at this point we must loop to the next item
2604 continue;
2605 }
2606
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002607 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002608 if (state.layerStack != draw[i].layerStack) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002609 display->setLayerStack(state.layerStack);
Lloyd Pique347200f2017-12-14 17:00:15 -08002610 }
2611 if ((state.orientation != draw[i].orientation) ||
2612 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002613 display->setProjection(state.orientation, state.viewport, state.frame);
Lloyd Pique347200f2017-12-14 17:00:15 -08002614 }
2615 if (state.width != draw[i].width || state.height != draw[i].height) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002616 display->setDisplaySize(state.width, state.height);
Lloyd Pique347200f2017-12-14 17:00:15 -08002617 }
2618 }
2619 }
2620 ++i;
2621 }
2622
2623 // find displays that were added
2624 // (ie: in current state but not in drawing state)
2625 for (size_t i = 0; i < cc; i++) {
2626 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2627 const DisplayDeviceState& state(curr[i]);
2628
Lloyd Pique542307f2018-10-19 13:24:08 -07002629 sp<compositionengine::DisplaySurface> dispSurface;
Lloyd Pique347200f2017-12-14 17:00:15 -08002630 sp<IGraphicBufferProducer> producer;
2631 sp<IGraphicBufferProducer> bqProducer;
2632 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique90c115d2018-09-18 21:39:42 -07002633 getFactory().createBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002634
Dominik Laskowski075d3172018-05-24 15:50:06 -07002635 std::optional<DisplayId> displayId;
Dominik Laskowski663bd282018-04-19 15:26:54 -07002636 if (state.isVirtual()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002637 // Virtual displays without a surface are dormant:
2638 // they have external state (layer stack, projection,
2639 // etc.) but no internal state (i.e. a DisplayDevice).
2640 if (state.surface != nullptr) {
2641 // Allow VR composer to use virtual displays.
Dominik Laskowski075d3172018-05-24 15:50:06 -07002642 if (mUseHwcVirtualDisplays || getHwComposer().isUsingVrComposer()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002643 int width = 0;
2644 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2645 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2646 int height = 0;
2647 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2648 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2649 int intFormat = 0;
2650 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2651 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
Peiyong Lin34beb7a2018-03-28 11:57:12 -07002652 auto format = static_cast<ui::PixelFormat>(intFormat);
Lloyd Pique347200f2017-12-14 17:00:15 -08002653
Dominik Laskowski075d3172018-05-24 15:50:06 -07002654 displayId =
2655 getHwComposer().allocateVirtualDisplay(width, height, &format);
Lloyd Pique347200f2017-12-14 17:00:15 -08002656 }
2657
2658 // TODO: Plumb requested format back up to consumer
2659
2660 sp<VirtualDisplaySurface> vds =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002661 new VirtualDisplaySurface(getHwComposer(), displayId, state.surface,
Lloyd Pique347200f2017-12-14 17:00:15 -08002662 bqProducer, bqConsumer,
2663 state.displayName);
2664
2665 dispSurface = vds;
2666 producer = vds;
2667 }
2668 } else {
2669 ALOGE_IF(state.surface != nullptr,
2670 "adding a supported display, but rendering "
2671 "surface is provided (%p), ignoring it",
2672 state.surface.get());
2673
Dominik Laskowski075d3172018-05-24 15:50:06 -07002674 displayId = state.displayId;
2675 LOG_ALWAYS_FATAL_IF(!displayId);
2676 dispSurface = new FramebufferSurface(getHwComposer(), *displayId, bqConsumer);
Lloyd Pique347200f2017-12-14 17:00:15 -08002677 producer = bqProducer;
2678 }
2679
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002680 const wp<IBinder>& displayToken = curr.keyAt(i);
Lloyd Pique347200f2017-12-14 17:00:15 -08002681 if (dispSurface != nullptr) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002682 mDisplays.emplace(displayToken,
Dominik Laskowski7e045462018-05-30 13:02:02 -07002683 setupNewDisplayDeviceInternal(displayToken, displayId, state,
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002684 dispSurface, producer));
Dominik Laskowski663bd282018-04-19 15:26:54 -07002685 if (!state.isVirtual()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002686 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002687 dispatchDisplayHotplugEvent(displayId->value, true);
Lloyd Pique347200f2017-12-14 17:00:15 -08002688 }
2689 }
2690 }
2691 }
2692 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002693
2694 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002695}
2696
Mathias Agopian87baae12012-07-31 12:38:26 -07002697void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002698{
Dan Stoza7dde5992015-05-22 09:51:44 -07002699 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002700 mCurrentState.traverseInZOrder([](Layer* layer) {
2701 layer->notifyAvailableFrames();
2702 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002703
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002704 /*
2705 * Traversal of the children
2706 * (perform the transaction for each of them if needed)
2707 */
2708
Mathias Agopian3559b072012-08-15 13:46:03 -07002709 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002710 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002711 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002712 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002713
2714 const uint32_t flags = layer->doTransaction(0);
2715 if (flags & Layer::eVisibleRegion)
2716 mVisibleRegionsDirty = true;
Robert Carr720e5062018-07-30 17:45:14 -07002717
2718 if (flags & Layer::eInputInfoChanged) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002719 mInputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002720 }
Robert Carr2047fae2016-11-28 14:09:09 -08002721 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002722 }
2723
2724 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002725 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002726 */
2727
Mathias Agopiane57f2922012-08-09 16:29:12 -07002728 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002729 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002730 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002731 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002732
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002733 if (transactionFlags & (eDisplayLayerStackChanged|eDisplayTransactionNeeded)) {
Mathias Agopian84300952012-11-21 16:02:13 -08002734 // The transform hint might have changed for some layers
2735 // (either because a display has changed, or because a layer
2736 // as changed).
2737 //
2738 // Walk through all the layers in currentLayers,
2739 // and update their transform hint.
2740 //
2741 // If a layer is visible only on a single display, then that
2742 // display is used to calculate the hint, otherwise we use the
2743 // default display.
2744 //
2745 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2746 // the hint is set before we acquire a buffer from the surface texture.
2747 //
2748 // NOTE: layer transactions have taken place already, so we use their
2749 // drawing state. However, SurfaceFlinger's own transaction has not
2750 // happened yet, so we must use the current state layer list
2751 // (soon to become the drawing state list).
2752 //
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002753 sp<const DisplayDevice> hintDisplay;
Mathias Agopian84300952012-11-21 16:02:13 -08002754 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002755 bool first = true;
2756 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002757 // NOTE: we rely on the fact that layers are sorted by
2758 // layerStack first (so we don't have to traverse the list
2759 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002760 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002761 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002762 currentlayerStack = layerStack;
2763 // figure out if this layerstack is mirrored
2764 // (more than one display) if so, pick the default display,
2765 // if not, pick the only display it's on.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002766 hintDisplay = nullptr;
2767 for (const auto& [token, display] : mDisplays) {
Lloyd Piqueef36b002019-01-23 17:52:04 -08002768 if (display->getCompositionDisplay()
2769 ->belongsInOutput(layer->getLayerStack(),
2770 layer->getPrimaryDisplayOnly())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002771 if (hintDisplay) {
2772 hintDisplay = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002773 break;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002774 } else {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002775 hintDisplay = display;
Mathias Agopian84300952012-11-21 16:02:13 -08002776 }
2777 }
2778 }
2779 }
Chet Haase91d25932013-04-11 15:24:55 -07002780
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002781 if (!hintDisplay) {
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002782 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2783 // redraw after transform hint changes. See bug 8508397.
Robert Carr56a0b9a2017-12-04 16:06:13 -08002784
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002785 // could be null when this layer is using a layerStack
2786 // that is not visible on any display. Also can occur at
2787 // screen off/on times.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002788 hintDisplay = getDefaultDisplayDeviceLocked();
Mathias Agopian84300952012-11-21 16:02:13 -08002789 }
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002790
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002791 // could be null if there is no display available at all to get
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002792 // the transform hint from.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002793 if (hintDisplay) {
2794 layer->updateTransformHint(hintDisplay);
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002795 }
Robert Carr2047fae2016-11-28 14:09:09 -08002796
2797 first = false;
2798 });
Mathias Agopian84300952012-11-21 16:02:13 -08002799 }
2800
2801
Mathias Agopian3559b072012-08-15 13:46:03 -07002802 /*
2803 * Perform our own transaction if needed
2804 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002805
2806 if (mLayersAdded) {
2807 mLayersAdded = false;
2808 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002809 mVisibleRegionsDirty = true;
2810 }
2811
2812 // some layers might have been removed, so
2813 // we need to update the regions they're exposing.
2814 if (mLayersRemoved) {
2815 mLayersRemoved = false;
2816 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002817 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002818 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002819 // this layer is not visible anymore
Robert Carr1f0a16a2016-10-24 16:27:39 -07002820 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002821 visibleReg.set(layer->getScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002822 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002823 }
Robert Carr2047fae2016-11-28 14:09:09 -08002824 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002825 }
2826
Vishnu Nairec0ab382019-02-13 15:32:56 -08002827 commitInputWindowCommands();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002828 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002829}
2830
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002831void SurfaceFlinger::updateInputFlinger() {
Robert Carr720e5062018-07-30 17:45:14 -07002832 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002833 if (!mInputFlinger) {
Vishnu Nairde19f852018-12-18 16:11:53 -08002834 return;
2835 }
2836
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002837 if (mVisibleRegionsDirty || mInputInfoChanged) {
2838 mInputInfoChanged = false;
2839 updateInputWindowInfo();
chaviw95ef3c42019-02-14 10:55:09 -08002840 } else if (mInputWindowCommands.syncInputWindows) {
2841 // If the caller requested to sync input windows, but there are no
2842 // changes to input windows, notify immediately.
2843 setInputWindowsFinished();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002844 }
2845
2846 executeInputWindowCommands();
2847}
2848
2849void SurfaceFlinger::updateInputWindowInfo() {
Robert Carr720e5062018-07-30 17:45:14 -07002850 Vector<InputWindowInfo> inputHandles;
2851
2852 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
2853 if (layer->hasInput()) {
Vishnu Nair51625fa2018-12-06 13:54:33 -08002854 // When calculating the screen bounds we ignore the transparent region since it may
2855 // result in an unwanted offset.
Arthur Hungd20b2702019-01-14 18:16:16 +08002856 inputHandles.add(layer->fillInputInfo());
Robert Carr720e5062018-07-30 17:45:14 -07002857 }
2858 });
chaviw291d88a2019-02-14 10:33:58 -08002859
2860 mInputFlinger->setInputWindows(inputHandles,
2861 mInputWindowCommands.syncInputWindows ? mSetInputWindowsListener
2862 : nullptr);
Robert Carr720e5062018-07-30 17:45:14 -07002863}
2864
Vishnu Nairec0ab382019-02-13 15:32:56 -08002865void SurfaceFlinger::commitInputWindowCommands() {
2866 mInputWindowCommands.merge(mPendingInputWindowCommands);
2867 mPendingInputWindowCommands.clear();
2868}
2869
chaviwfbe5d9c2018-12-26 12:23:37 -08002870void SurfaceFlinger::executeInputWindowCommands() {
chaviwfbe5d9c2018-12-26 12:23:37 -08002871 for (const auto& transferTouchFocusCommand : mInputWindowCommands.transferTouchFocusCommands) {
2872 if (transferTouchFocusCommand.fromToken != nullptr &&
2873 transferTouchFocusCommand.toToken != nullptr &&
2874 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) {
2875 mInputFlinger->transferTouchFocus(transferTouchFocusCommand.fromToken,
2876 transferTouchFocusCommand.toToken);
2877 }
2878 }
2879
2880 mInputWindowCommands.clear();
2881}
2882
Riley Andrews03414a12014-07-01 14:22:59 -07002883void SurfaceFlinger::updateCursorAsync()
2884{
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002885 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002886 if (!display->getId()) {
Riley Andrews03414a12014-07-01 14:22:59 -07002887 continue;
2888 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002889
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002890 for (auto& layer : display->getVisibleLayersSortedByZ()) {
2891 layer->updateCursorPosition(display);
Riley Andrews03414a12014-07-01 14:22:59 -07002892 }
2893 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002894}
2895
chaviw61626f22018-11-15 16:26:27 -08002896void SurfaceFlinger::latchAndReleaseBuffer(const sp<Layer>& layer) {
2897 if (layer->hasReadyFrame()) {
Robert Carra0629232019-02-07 15:28:54 -08002898 bool ignored = false;
Alec Mouri56e538f2019-01-14 15:22:01 -08002899 layer->latchBuffer(ignored, systemTime());
chaviw61626f22018-11-15 16:26:27 -08002900 }
2901 layer->releasePendingBuffer(systemTime());
2902}
2903
Mathias Agopian4fec8732012-06-29 14:12:52 -07002904void SurfaceFlinger::commitTransaction()
2905{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002906 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002907 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002908 for (const auto& l : mLayersPendingRemoval) {
2909 recordBufferingStats(l->getName().string(),
2910 l->getOccupancyHistory(true));
Robert Carr2e102c92018-10-23 12:11:15 -07002911
Lloyd Pique07e33212018-12-18 16:33:37 -08002912 // Ensure any buffers set to display on any children are released.
Robert Carr2e102c92018-10-23 12:11:15 -07002913 if (l->isRemovedFromCurrentState()) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08002914 latchAndReleaseBuffer(l);
Robert Carr2e102c92018-10-23 12:11:15 -07002915 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002916 }
2917 mLayersPendingRemoval.clear();
2918 }
2919
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002920 // If this transaction is part of a window animation then the next frame
2921 // we composite should be considered an animation as well.
2922 mAnimCompositionPending = mAnimTransactionPending;
2923
Mathias Agopian4fec8732012-06-29 14:12:52 -07002924 mDrawingState = mCurrentState;
Chia-I Wu28f320b2018-05-03 11:02:56 -07002925 // clear the "changed" flags in current state
2926 mCurrentState.colorMatrixChanged = false;
2927
Robert Carr1f0a16a2016-10-24 16:27:39 -07002928 mDrawingState.traverseInZOrder([](Layer* layer) {
2929 layer->commitChildList();
2930 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002931 mTransactionPending = false;
2932 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002933 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002934}
2935
Lloyd Pique32cbe282018-10-19 13:09:22 -07002936void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002937 Region& outDirtyRegion, Region& outOpaqueRegion) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002938 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002939 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002940
Lloyd Pique32cbe282018-10-19 13:09:22 -07002941 auto display = displayDevice->getCompositionDisplay();
2942
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002943 Region aboveOpaqueLayers;
2944 Region aboveCoveredLayers;
2945 Region dirty;
2946
Mathias Agopian87baae12012-07-31 12:38:26 -07002947 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002948
Robert Carr2047fae2016-11-28 14:09:09 -08002949 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002950 // start with the whole surface at its current location
2951 const Layer::State& s(layer->getDrawingState());
2952
Jesse Hall01e29052013-02-19 16:13:35 -08002953 // only consider the layers on the given layer stack
Lloyd Piqueef36b002019-01-23 17:52:04 -08002954 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Robert Carr2047fae2016-11-28 14:09:09 -08002955 return;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002956 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002957
Mathias Agopianab028732010-03-16 16:41:46 -07002958 /*
2959 * opaqueRegion: area of a surface that is fully opaque.
2960 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002961 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002962
2963 /*
2964 * visibleRegion: area of a surface that is visible on screen
2965 * and not fully transparent. This is essentially the layer's
2966 * footprint minus the opaque regions above it.
2967 * Areas covered by a translucent surface are considered visible.
2968 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002969 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002970
2971 /*
2972 * coveredRegion: area of a surface that is covered by all
2973 * visible regions above it (which includes the translucent areas).
2974 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002975 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002976
Jesse Halla8026d22012-09-25 13:25:04 -07002977 /*
2978 * transparentRegion: area of a surface that is hinted to be completely
2979 * transparent. This is only used to tell when the layer has no visible
2980 * non-transparent regions and can be removed from the layer list. It
2981 * does not affect the visibleRegion of this layer or any layers
2982 * beneath it. The hint may not be correct if apps don't respect the
2983 * SurfaceView restrictions (which, sadly, some don't).
2984 */
2985 Region transparentRegion;
2986
Mathias Agopianab028732010-03-16 16:41:46 -07002987
2988 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002989 if (CC_LIKELY(layer->isVisible())) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002990 const bool translucent = !layer->isOpaque(s);
Vishnu Nair4351ad52019-02-11 14:13:02 -08002991 Rect bounds(layer->getScreenBounds());
Robert Carr720e5062018-07-30 17:45:14 -07002992
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002993 visibleRegion.set(bounds);
Peiyong Linefefaac2018-08-17 12:27:51 -07002994 ui::Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002995 if (!visibleRegion.isEmpty()) {
2996 // Remove the transparent area from the visible region
2997 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002998 if (tr.preserveRects()) {
2999 // transform the transparent region
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003000 transparentRegion = tr.transform(layer->getActiveTransparentRegion(s));
Mathias Agopian4fec8732012-06-29 14:12:52 -07003001 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003002 // transformation too complex, can't do the
3003 // transparent region optimization.
3004 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07003005 }
Mathias Agopianab028732010-03-16 16:41:46 -07003006 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003007
Mathias Agopianab028732010-03-16 16:41:46 -07003008 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07003009 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02003010 if (layer->getAlpha() == 1.0f && !translucent &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003011 layer->getRoundedCornerState().radius == 0.0f &&
Peiyong Linefefaac2018-08-17 12:27:51 -07003012 ((layerOrientation & ui::Transform::ROT_INVALID) == false)) {
Mathias Agopianab028732010-03-16 16:41:46 -07003013 // the opaque region is the layer's footprint
3014 opaqueRegion = visibleRegion;
3015 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003016 }
3017 }
3018
Robert Carre5f4f692018-01-12 13:12:28 -08003019 if (visibleRegion.isEmpty()) {
3020 layer->clearVisibilityRegions();
3021 return;
3022 }
3023
Mathias Agopianab028732010-03-16 16:41:46 -07003024 // Clip the covered region to the visible region
3025 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
3026
3027 // Update aboveCoveredLayers for next (lower) layer
3028 aboveCoveredLayers.orSelf(visibleRegion);
3029
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003030 // subtract the opaque region covered by the layers above us
3031 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003032
3033 // compute this layer's dirty region
3034 if (layer->contentDirty) {
3035 // we need to invalidate the whole region
3036 dirty = visibleRegion;
3037 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07003038 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003039 layer->contentDirty = false;
3040 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003041 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07003042 * the exposed region consists of two components:
3043 * 1) what's VISIBLE now and was COVERED before
3044 * 2) what's EXPOSED now less what was EXPOSED before
3045 *
3046 * note that (1) is conservative, we start with the whole
3047 * visible region but only keep what used to be covered by
3048 * something -- which mean it may have been exposed.
3049 *
3050 * (2) handles areas that were not covered by anything but got
3051 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003052 */
Mathias Agopianab028732010-03-16 16:41:46 -07003053 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003054 const Region oldVisibleRegion = layer->visibleRegion;
3055 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003056 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
3057 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003058 }
3059 dirty.subtractSelf(aboveOpaqueLayers);
3060
3061 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07003062 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003063
Mathias Agopianab028732010-03-16 16:41:46 -07003064 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003065 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003066
Jesse Halla8026d22012-09-25 13:25:04 -07003067 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003068 layer->setVisibleRegion(visibleRegion);
3069 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07003070 layer->setVisibleNonTransparentRegion(
3071 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08003072 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003073
Mathias Agopian87baae12012-07-31 12:38:26 -07003074 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003075}
3076
Chia-I Wuab0c3192017-08-01 11:29:00 -07003077void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003078 for (const auto& [token, displayDevice] : mDisplays) {
3079 auto display = displayDevice->getCompositionDisplay();
Lloyd Piqueef36b002019-01-23 17:52:04 -08003080 if (display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003081 display->editState().dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07003082 }
3083 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003084}
3085
Dan Stoza6b9454d2014-11-07 16:00:59 -08003086bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003087{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003088 ALOGV("handlePageFlip");
3089
Brian Andersond6927fb2016-07-23 23:37:30 -07003090 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003091
Mathias Agopian4fec8732012-06-29 14:12:52 -07003092 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003093 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06003094 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07003095
3096 // Store the set of layers that need updates. This set must not change as
3097 // buffers are being latched, as this could result in a deadlock.
3098 // Example: Two producers share the same command stream and:
3099 // 1.) Layer 0 is latched
3100 // 2.) Layer 0 gets a new frame
3101 // 2.) Layer 1 gets a new frame
3102 // 3.) Layer 1 is latched.
3103 // Display is now waiting on Layer 1's frame, which is behind layer 0's
3104 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08003105 mDrawingState.traverseInZOrder([&](Layer* layer) {
Marissa Wallfd668622018-05-10 10:21:13 -07003106 if (layer->hasReadyFrame()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003107 frameQueued = true;
Ady Abrahamc3e21312019-02-07 14:30:23 -08003108 nsecs_t expectedPresentTime;
Ana Krulecc2870422019-01-29 19:00:58 -08003109 expectedPresentTime = mScheduler->expectedPresentTime();
Ana Krulec010d2192018-10-08 06:29:54 -07003110 if (layer->shouldPresentNow(expectedPresentTime)) {
Robert Carr2047fae2016-11-28 14:09:09 -08003111 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07003112 } else {
3113 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003114 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003115 } else {
3116 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003117 }
Robert Carr2047fae2016-11-28 14:09:09 -08003118 });
3119
Lloyd Piquef2c79392018-12-20 16:23:33 -08003120 if (!mLayersWithQueuedFrames.empty()) {
3121 // mStateLock is needed for latchBuffer as LayerRejecter::reject()
3122 // writes to Layer current state. See also b/119481871
3123 Mutex::Autolock lock(mStateLock);
3124
3125 for (auto& layer : mLayersWithQueuedFrames) {
Alec Mouri56e538f2019-01-14 15:22:01 -08003126 if (layer->latchBuffer(visibleRegions, latchTime)) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08003127 mLayersPendingRefresh.push_back(layer);
3128 }
Lloyd Piquef2c79392018-12-20 16:23:33 -08003129 layer->useSurfaceDamage();
Lloyd Piquef2c79392018-12-20 16:23:33 -08003130 if (layer->isBufferLatched()) {
3131 newDataLatched = true;
3132 }
Mike Stroyan0cd76192017-04-20 12:10:48 -06003133 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003134 }
Mathias Agopian4da75192010-08-10 17:19:56 -07003135
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07003136 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003137
3138 // If we will need to wake up at some time in the future to deal with a
3139 // queued frame that shouldn't be displayed during this vsync period, wake
3140 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07003141 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003142 signalLayerUpdate();
3143 }
3144
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08003145 // enter boot animation on first buffer latch
3146 if (CC_UNLIKELY(mBootStage == BootStage::BOOTLOADER && newDataLatched)) {
3147 ALOGI("Enter boot animation");
3148 mBootStage = BootStage::BOOTANIMATION;
3149 }
3150
Dan Stoza6b9454d2014-11-07 16:00:59 -08003151 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06003152 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003153}
3154
Mathias Agopianad456f92011-01-13 17:53:01 -08003155void SurfaceFlinger::invalidateHwcGeometry()
3156{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003157 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08003158}
3159
Lloyd Pique32cbe282018-10-19 13:09:22 -07003160void SurfaceFlinger::doDisplayComposition(const sp<DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003161 const Region& inDirtyRegion) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003162 auto display = displayDevice->getCompositionDisplay();
Dan Stoza71433162014-02-04 16:22:36 -08003163 // We only need to actually compose the display if:
3164 // 1) It is being handled by hardware composer, which may need this to
3165 // keep its virtual display state machine in sync, or
3166 // 2) There is work to be done (the dirty region isn't empty)
Lloyd Pique32cbe282018-10-19 13:09:22 -07003167 if (!displayDevice->getId() && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08003168 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08003169 return;
3170 }
3171
Dan Stoza9e56aa02015-11-02 13:00:03 -08003172 ALOGV("doDisplayComposition");
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003173 base::unique_fd readyFence;
3174 if (!doComposeSurfaces(displayDevice, Region::INVALID_REGION, &readyFence)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07003175
3176 // swap buffers (presentation)
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003177 display->getRenderSurface()->queueBuffer(std::move(readyFence));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003178}
3179
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003180bool SurfaceFlinger::doComposeSurfaces(const sp<DisplayDevice>& displayDevice,
3181 const Region& debugRegion, base::unique_fd* readyFence) {
Alec Mouri820c7402019-01-23 13:02:39 -08003182 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003183 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07003184
Lloyd Pique32cbe282018-10-19 13:09:22 -07003185 auto display = displayDevice->getCompositionDisplay();
3186 const auto& displayState = display->getState();
Dominik Laskowski7e045462018-05-30 13:02:02 -07003187 const auto displayId = display->getId();
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003188 auto& renderEngine = getRenderEngine();
3189 const bool supportProtectedContent =
3190 mDebugEnableProtectedContent && renderEngine.supportsProtectedContent();
Lloyd Pique32cbe282018-10-19 13:09:22 -07003191
3192 const Region bounds(displayState.bounds);
3193 const DisplayRenderArea renderArea(displayDevice);
Lloyd Pique441d5042018-10-18 16:49:51 -07003194 const bool hasClientComposition = getHwComposer().hasClientComposition(displayId);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08003195 ATRACE_INT("hasClientComposition", hasClientComposition);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003196
Peiyong Lind3788632018-09-18 16:01:31 -07003197 mat4 colorMatrix;
Chia-I Wu8e50e692018-05-04 10:12:37 -07003198 bool applyColorMatrix = false;
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003199
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003200 renderengine::DisplaySettings clientCompositionDisplay;
3201 std::vector<renderengine::LayerSettings> clientCompositionLayers;
3202 sp<GraphicBuffer> buf;
Alec Mouri6338c9d2019-02-07 16:57:51 -08003203 base::unique_fd fd;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003204
Dan Stoza9e56aa02015-11-02 13:00:03 -08003205 if (hasClientComposition) {
3206 ALOGV("hasClientComposition");
3207
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003208 if (displayDevice->isPrimary() && supportProtectedContent) {
3209 bool needsProtected = false;
3210 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
3211 // If the layer is a protected layer, mark protected context is needed.
3212 if (layer->isProtected()) {
3213 needsProtected = true;
3214 break;
3215 }
3216 }
3217 if (needsProtected != renderEngine.isProtected() &&
3218 renderEngine.useProtectedContext(needsProtected)) {
3219 display->getRenderSurface()->setProtected(needsProtected);
3220 }
3221 }
3222
Alec Mouri6338c9d2019-02-07 16:57:51 -08003223 buf = display->getRenderSurface()->dequeueBuffer(&fd);
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003224
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003225 if (buf == nullptr) {
3226 ALOGW("Dequeuing buffer for display [%s] failed, bailing out of "
3227 "client composition for this frame",
Lloyd Pique32cbe282018-10-19 13:09:22 -07003228 displayDevice->getDisplayName().c_str());
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003229 return false;
3230 }
3231
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003232 clientCompositionDisplay.physicalDisplay = displayState.scissor;
3233 clientCompositionDisplay.clip = displayState.scissor;
3234 const ui::Transform& displayTransform = displayState.transform;
3235 mat4 m;
3236 m[0][0] = displayTransform[0][0];
3237 m[0][1] = displayTransform[0][1];
3238 m[0][3] = displayTransform[0][2];
3239 m[1][0] = displayTransform[1][0];
3240 m[1][1] = displayTransform[1][1];
3241 m[1][3] = displayTransform[1][2];
3242 m[3][0] = displayTransform[2][0];
3243 m[3][1] = displayTransform[2][1];
3244 m[3][3] = displayTransform[2][2];
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003245 clientCompositionDisplay.globalTransform = m;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003246
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003247 const auto* profile = display->getDisplayColorProfile();
Peiyong Lin34beb7a2018-03-28 11:57:12 -07003248 Dataspace outputDataspace = Dataspace::UNKNOWN;
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003249 if (profile->hasWideColorGamut()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003250 outputDataspace = displayState.dataspace;
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003251 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003252 clientCompositionDisplay.outputDataspace = outputDataspace;
3253 clientCompositionDisplay.maxLuminance =
3254 profile->getHdrCapabilities().getDesiredMaxLuminance();
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003255
Lloyd Pique441d5042018-10-18 16:49:51 -07003256 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId);
Peiyong Lined531a32018-10-26 18:27:56 -07003257 const bool skipClientColorTransform =
Lloyd Pique441d5042018-10-18 16:49:51 -07003258 getHwComposer()
3259 .hasDisplayCapability(displayId,
3260 HWC2::DisplayCapability::SkipClientColorTransform);
Chia-I Wu8e50e692018-05-04 10:12:37 -07003261
Peiyong Lind3788632018-09-18 16:01:31 -07003262 // Compute the global color transform matrix.
Chia-I Wu8e50e692018-05-04 10:12:37 -07003263 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform;
3264 if (applyColorMatrix) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003265 clientCompositionDisplay.colorTransform = colorMatrix;
Mathias Agopianf45c5102012-10-24 16:29:17 -07003266 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07003267 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003268
Mathias Agopian85d751c2012-08-29 16:59:24 -07003269 /*
3270 * and then, render the layers targeted at the framebuffer
3271 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003272
Dan Stoza9e56aa02015-11-02 13:00:03 -08003273 ALOGV("Rendering client layers");
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003274 bool firstLayer = true;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003275 Region clearRegion = Region::INVALID_REGION;
Lloyd Pique32cbe282018-10-19 13:09:22 -07003276 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003277 const Region viewportRegion(displayState.viewport);
3278 const Region clip(viewportRegion.intersect(layer->visibleRegion));
David Sodmanc1498e62018-09-12 14:36:26 -07003279 ALOGV("Layer: %s", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003280 ALOGV(" Composition type: %s", toString(layer->getCompositionType(displayDevice)).c_str());
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003281 if (!clip.isEmpty()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003282 switch (layer->getCompositionType(displayDevice)) {
3283 case Hwc2::IComposerClient::Composition::CURSOR:
3284 case Hwc2::IComposerClient::Composition::DEVICE:
3285 case Hwc2::IComposerClient::Composition::SIDEBAND:
3286 case Hwc2::IComposerClient::Composition::SOLID_COLOR: {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003287 LOG_ALWAYS_FATAL_IF(!displayId);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003288 const Layer::State& state(layer->getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003289 if (layer->getClearClientTarget(displayDevice) && !firstLayer &&
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003290 layer->isOpaque(state) && (layer->getAlpha() == 1.0f) &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003291 layer->getRoundedCornerState().radius == 0.0f && hasClientComposition) {
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003292 // never clear the very first layer since we're
3293 // guaranteed the FB is already cleared
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003294 renderengine::LayerSettings layerSettings;
3295 Region dummyRegion;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003296 bool prepared =
3297 layer->prepareClientLayer(renderArea, clip, dummyRegion,
3298 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003299
3300 if (prepared) {
3301 layerSettings.source.buffer.buffer = nullptr;
3302 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
3303 layerSettings.alpha = half(0.0);
3304 layerSettings.disableBlending = true;
3305 clientCompositionLayers.push_back(layerSettings);
3306 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07003307 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003308 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07003309 }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003310 case Hwc2::IComposerClient::Composition::CLIENT: {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003311 renderengine::LayerSettings layerSettings;
3312 bool prepared =
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003313 layer->prepareClientLayer(renderArea, clip, clearRegion,
3314 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003315 if (prepared) {
3316 clientCompositionLayers.push_back(layerSettings);
Peiyong Lind3788632018-09-18 16:01:31 -07003317 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003318 break;
3319 }
3320 default:
3321 break;
Mathias Agopian85d751c2012-08-29 16:59:24 -07003322 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003323 } else {
3324 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07003325 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003326 firstLayer = false;
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003327 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07003328
Alec Mouri820c7402019-01-23 13:02:39 -08003329 // Perform some cleanup steps if we used client composition.
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003330 if (hasClientComposition) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003331 clientCompositionDisplay.clearRegion = clearRegion;
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003332
3333 // We boost GPU frequency here because there will be color spaces conversion
3334 // and it's expensive. We boost the GPU frequency so that GPU composition can
3335 // finish in time. We must reset GPU frequency afterwards, because high frequency
3336 // consumes extra battery.
3337 const bool expensiveRenderingExpected =
3338 clientCompositionDisplay.outputDataspace == Dataspace::DISPLAY_P3;
3339 if (expensiveRenderingExpected && displayId) {
3340 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, true);
3341 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003342 if (!debugRegion.isEmpty()) {
3343 Region::const_iterator it = debugRegion.begin();
3344 Region::const_iterator end = debugRegion.end();
3345 while (it != end) {
3346 const Rect& rect = *it++;
3347 renderengine::LayerSettings layerSettings;
3348 layerSettings.source.buffer.buffer = nullptr;
3349 layerSettings.source.solidColor = half3(1.0, 0.0, 1.0);
3350 layerSettings.geometry.boundaries = rect.toFloatRect();
3351 layerSettings.alpha = half(1.0);
3352 clientCompositionLayers.push_back(layerSettings);
3353 }
3354 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003355 renderEngine.drawLayers(clientCompositionDisplay, clientCompositionLayers,
3356 buf->getNativeBuffer(), std::move(fd), readyFence);
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003357 if (expensiveRenderingExpected && displayId) {
3358 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, false);
3359 }
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003360 }
Michael Lentine3f121fc2014-10-01 11:17:28 -07003361 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003362}
3363
Chia-I Wu28e3a252018-09-07 12:05:02 -07003364void SurfaceFlinger::drawWormhole(const Region& region) const {
Lloyd Pique144e1162017-12-20 16:44:52 -08003365 auto& engine(getRenderEngine());
Chia-I Wu28e3a252018-09-07 12:05:02 -07003366 engine.fillRegionWithColor(region, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003367}
3368
Dan Stoza7d89d062015-04-30 13:29:25 -07003369status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08003370 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07003371 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07003372 const sp<Layer>& lbc,
Robert Carrb89ea9d2018-12-10 13:01:14 -08003373 const sp<Layer>& parent,
3374 bool addToCurrentState)
Mathias Agopian96f08192010-06-02 23:28:45 -07003375{
Dan Stoza7d89d062015-04-30 13:29:25 -07003376 // add this layer to the current state list
3377 {
3378 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003379 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06003380 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
3381 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07003382 return NO_MEMORY;
3383 }
Robert Carrb89ea9d2018-12-10 13:01:14 -08003384 if (parent == nullptr && addToCurrentState) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003385 mCurrentState.layersSortedByZ.add(lbc);
chaviwac841852019-01-16 16:04:43 -08003386 } else if (parent == nullptr) {
3387 lbc->onRemovedFromCurrentState();
3388 } else if (parent->isRemovedFromCurrentState()) {
3389 parent->addChild(lbc);
3390 lbc->onRemovedFromCurrentState();
Robert Carrb89ea9d2018-12-10 13:01:14 -08003391 } else {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003392 parent->addChild(lbc);
3393 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07003394
Yiwei Zhang243b3782018-05-15 17:40:04 -07003395 if (gbc != nullptr) {
3396 mGraphicBufferProducerList.insert(IInterface::asBinder(gbc).get());
3397 LOG_ALWAYS_FATAL_IF(mGraphicBufferProducerList.size() >
3398 mMaxGraphicBufferProducerListSize,
3399 "Suspected IGBP leak: %zu IGBPs (%zu max), %zu Layers",
3400 mGraphicBufferProducerList.size(),
3401 mMaxGraphicBufferProducerListSize, mNumLayers);
3402 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07003403 mLayersAdded = true;
Dan Stoza7d89d062015-04-30 13:29:25 -07003404 }
3405
Mathias Agopian96f08192010-06-02 23:28:45 -07003406 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08003407 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07003408
Dan Stoza7d89d062015-04-30 13:29:25 -07003409 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07003410}
3411
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08003412uint32_t SurfaceFlinger::peekTransactionFlags() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003413 return mTransactionFlags;
Mathias Agopiandea20b12011-05-03 17:04:02 -07003414}
3415
Mathias Agopian3f844832013-08-07 21:24:32 -07003416uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003417 return mTransactionFlags.fetch_and(~flags) & flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003418}
3419
Mathias Agopian3f844832013-08-07 21:24:32 -07003420uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003421 return setTransactionFlags(flags, Scheduler::TransactionStart::NORMAL);
Dan Stoza84d619e2018-03-28 17:07:36 -07003422}
3423
3424uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags,
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003425 Scheduler::TransactionStart transactionStart) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003426 uint32_t old = mTransactionFlags.fetch_or(flags);
Dan Stoza84d619e2018-03-28 17:07:36 -07003427 mVsyncModulator.setTransactionStart(transactionStart);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003428 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003429 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003430 }
3431 return old;
3432}
3433
Marissa Wall713b63f2018-10-17 15:42:43 -07003434bool SurfaceFlinger::flushTransactionQueues() {
3435 Mutex::Autolock _l(mStateLock);
3436 auto it = mTransactionQueues.begin();
3437 while (it != mTransactionQueues.end()) {
3438 auto& [applyToken, transactionQueue] = *it;
3439
3440 while (!transactionQueue.empty()) {
Robert Carr14167e02019-02-13 13:50:55 -08003441 const auto& [states, displays, flags, desiredPresentTime, privileged] =
3442 transactionQueue.front();
Marissa Wall17b4e452018-12-26 16:32:34 -08003443 if (!transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003444 break;
3445 }
Robert Carr14167e02019-02-13 13:50:55 -08003446 applyTransactionState(states, displays, flags, mPendingInputWindowCommands, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003447 transactionQueue.pop();
3448 }
3449
3450 it = (transactionQueue.empty()) ? mTransactionQueues.erase(it) : std::next(it, 1);
3451 }
3452 return mTransactionQueues.empty();
3453}
3454
chaviwca27f252018-02-06 16:46:39 -08003455bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
3456 for (const ComposerState& state : states) {
3457 // Here we need to check that the interface we're given is indeed
3458 // one of our own. A malicious client could give us a nullptr
3459 // IInterface, or one of its own or even one of our own but a
3460 // different type. All these situations would cause us to crash.
3461 if (state.client == nullptr) {
3462 return true;
3463 }
3464
3465 sp<IBinder> binder = IInterface::asBinder(state.client);
3466 if (binder == nullptr) {
3467 return true;
3468 }
3469
3470 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
3471 return true;
3472 }
3473 }
3474 return false;
3475}
3476
Marissa Wall17b4e452018-12-26 16:32:34 -08003477bool SurfaceFlinger::transactionIsReadyToBeApplied(int64_t desiredPresentTime,
3478 const Vector<ComposerState>& states) {
Ana Krulecc2870422019-01-29 19:00:58 -08003479 nsecs_t expectedPresentTime = mScheduler->expectedPresentTime();
Marissa Wall17b4e452018-12-26 16:32:34 -08003480 // Do not present if the desiredPresentTime has not passed unless it is more than one second
3481 // in the future. We ignore timestamps more than 1 second in the future for stability reasons.
3482 if (desiredPresentTime >= 0 && desiredPresentTime >= expectedPresentTime &&
3483 desiredPresentTime < expectedPresentTime + s2ns(1)) {
3484 return false;
3485 }
3486
Marissa Wall713b63f2018-10-17 15:42:43 -07003487 for (const ComposerState& state : states) {
3488 const layer_state_t& s = state.state;
3489 if (!(s.what & layer_state_t::eAcquireFenceChanged)) {
3490 continue;
3491 }
3492 if (s.acquireFence && s.acquireFence->getStatus() == Fence::Status::Unsignaled) {
Marissa Wall17b4e452018-12-26 16:32:34 -08003493 return false;
Marissa Wall713b63f2018-10-17 15:42:43 -07003494 }
3495 }
Marissa Wall17b4e452018-12-26 16:32:34 -08003496 return true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003497}
3498
3499void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& states,
3500 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -08003501 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -08003502 const InputWindowCommands& inputWindowCommands,
3503 int64_t desiredPresentTime) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003504 ATRACE_CALL();
Robert Carr14167e02019-02-13 13:50:55 -08003505
3506 bool privileged = callingThreadHasUnscopedSurfaceFlingerAccess();
3507
Mathias Agopian698c0872011-06-28 19:09:31 -07003508 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07003509
chaviwca27f252018-02-06 16:46:39 -08003510 if (containsAnyInvalidClientState(states)) {
3511 return;
3512 }
3513
Marissa Wall713b63f2018-10-17 15:42:43 -07003514 // If its TransactionQueue already has a pending TransactionState or if it is pending
3515 if (mTransactionQueues.find(applyToken) != mTransactionQueues.end() ||
Marissa Wall17b4e452018-12-26 16:32:34 -08003516 !transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Robert Carr14167e02019-02-13 13:50:55 -08003517 mTransactionQueues[applyToken].emplace(states, displays, flags, desiredPresentTime,
3518 privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003519 setTransactionFlags(eTransactionNeeded);
3520 return;
3521 }
3522
Robert Carr14167e02019-02-13 13:50:55 -08003523 applyTransactionState(states, displays, flags, inputWindowCommands, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003524}
3525
3526void SurfaceFlinger::applyTransactionState(const Vector<ComposerState>& states,
chaviw273171b2018-12-26 11:46:30 -08003527 const Vector<DisplayState>& displays, uint32_t flags,
Robert Carr14167e02019-02-13 13:50:55 -08003528 const InputWindowCommands& inputWindowCommands,
3529 bool privileged) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003530 uint32_t transactionFlags = 0;
3531
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003532 if (flags & eAnimation) {
3533 // For window updates that are part of an animation we must wait for
3534 // previous animation "frames" to be handled.
3535 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003536 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003537 if (CC_UNLIKELY(err != NO_ERROR)) {
3538 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003539 // caller after a few seconds.
3540 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3541 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003542 mAnimTransactionPending = false;
3543 break;
3544 }
3545 }
3546 }
3547
chaviwca27f252018-02-06 16:46:39 -08003548 for (const DisplayState& display : displays) {
3549 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003550 }
3551
Marissa Walle2ffb422018-10-12 11:33:52 -07003552 uint32_t clientStateFlags = 0;
chaviwca27f252018-02-06 16:46:39 -08003553 for (const ComposerState& state : states) {
Robert Carr14167e02019-02-13 13:50:55 -08003554 clientStateFlags |= setClientStateLocked(state, privileged);
chaviwca27f252018-02-06 16:46:39 -08003555 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003556 // If the state doesn't require a traversal and there are callbacks, send them now
3557 if (!(clientStateFlags & eTraversalNeeded)) {
3558 mTransactionCompletedThread.sendCallbacks();
3559 }
3560 transactionFlags |= clientStateFlags;
chaviwca27f252018-02-06 16:46:39 -08003561
chaviw273171b2018-12-26 11:46:30 -08003562 transactionFlags |= addInputWindowCommands(inputWindowCommands);
3563
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003564 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3565 // anyway. This can be used as a flush mechanism for previous async transactions.
3566 // Empty animation transaction can be used to simulate back-pressure, so also force a
3567 // transaction for empty animation transactions.
3568 if (transactionFlags == 0 &&
3569 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003570 transactionFlags = eTransactionNeeded;
3571 }
3572
Mathias Agopian386aa982011-11-07 21:58:03 -08003573 if (transactionFlags) {
Lloyd Pique4dccc412018-01-22 17:21:36 -08003574 if (mInterceptor->isEnabled()) {
3575 mInterceptor->saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003576 }
Irvel468051e2016-06-13 16:44:44 -07003577
Mathias Agopian386aa982011-11-07 21:58:03 -08003578 // this triggers the transaction
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003579 const auto start = (flags & eEarlyWakeup) ? Scheduler::TransactionStart::EARLY
3580 : Scheduler::TransactionStart::NORMAL;
Dan Stoza84d619e2018-03-28 17:07:36 -07003581 setTransactionFlags(transactionFlags, start);
Mathias Agopian386aa982011-11-07 21:58:03 -08003582
3583 // if this is a synchronous transaction, wait for it to take effect
3584 // before returning.
3585 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003586 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003587 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003588 if (flags & eAnimation) {
3589 mAnimTransactionPending = true;
3590 }
chaviw95ef3c42019-02-14 10:55:09 -08003591
3592 mPendingSyncInputWindows = mPendingInputWindowCommands.syncInputWindows;
3593 while (mTransactionPending || mPendingSyncInputWindows) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003594 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3595 if (CC_UNLIKELY(err != NO_ERROR)) {
3596 // just in case something goes wrong in SF, return to the
3597 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003598 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3599 mTransactionPending = false;
chaviw95ef3c42019-02-14 10:55:09 -08003600 mPendingSyncInputWindows = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003601 break;
3602 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003603 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003604 }
3605}
3606
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003607uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) {
3608 const ssize_t index = mCurrentState.displays.indexOfKey(s.token);
3609 if (index < 0) return 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003610
Mathias Agopiane57f2922012-08-09 16:29:12 -07003611 uint32_t flags = 0;
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003612 DisplayDeviceState& state = mCurrentState.displays.editValueAt(index);
3613
3614 const uint32_t what = s.what;
3615 if (what & DisplayState::eSurfaceChanged) {
3616 if (IInterface::asBinder(state.surface) != IInterface::asBinder(s.surface)) {
3617 state.surface = s.surface;
3618 flags |= eDisplayTransactionNeeded;
Michael Lentine47e45402014-07-18 15:34:25 -07003619 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003620 }
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003621 if (what & DisplayState::eLayerStackChanged) {
3622 if (state.layerStack != s.layerStack) {
3623 state.layerStack = s.layerStack;
3624 flags |= eDisplayTransactionNeeded;
3625 }
3626 }
3627 if (what & DisplayState::eDisplayProjectionChanged) {
3628 if (state.orientation != s.orientation) {
3629 state.orientation = s.orientation;
3630 flags |= eDisplayTransactionNeeded;
3631 }
3632 if (state.frame != s.frame) {
3633 state.frame = s.frame;
3634 flags |= eDisplayTransactionNeeded;
3635 }
3636 if (state.viewport != s.viewport) {
3637 state.viewport = s.viewport;
3638 flags |= eDisplayTransactionNeeded;
3639 }
3640 }
3641 if (what & DisplayState::eDisplaySizeChanged) {
3642 if (state.width != s.width) {
3643 state.width = s.width;
3644 flags |= eDisplayTransactionNeeded;
3645 }
3646 if (state.height != s.height) {
3647 state.height = s.height;
3648 flags |= eDisplayTransactionNeeded;
3649 }
3650 }
3651
Mathias Agopiane57f2922012-08-09 16:29:12 -07003652 return flags;
3653}
3654
Robert Carr14167e02019-02-13 13:50:55 -08003655bool SurfaceFlinger::callingThreadHasUnscopedSurfaceFlingerAccess() {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003656 IPCThreadState* ipc = IPCThreadState::self();
3657 const int pid = ipc->getCallingPid();
3658 const int uid = ipc->getCallingUid();
Robert Carrd4ae7f32018-06-07 16:10:57 -07003659 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Ana Krulec13be8ad2018-08-21 02:43:56 +00003660 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003661 return false;
3662 }
3663 return true;
3664}
3665
Robert Carr14167e02019-02-13 13:50:55 -08003666uint32_t SurfaceFlinger::setClientStateLocked(const ComposerState& composerState,
3667 bool privileged) {
chaviwca27f252018-02-06 16:46:39 -08003668 const layer_state_t& s = composerState.state;
3669 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3670
Mathias Agopian13127d82013-03-05 17:47:11 -08003671 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003672 if (layer == nullptr) {
3673 return 0;
3674 }
3675
chaviw8b3871a2017-11-01 17:41:01 -07003676 uint32_t flags = 0;
3677
Garfield Tan8a3083e2018-12-03 13:21:07 -08003678 const uint64_t what = s.what;
chaviw8b3871a2017-11-01 17:41:01 -07003679 bool geometryAppliesWithResize =
3680 what & layer_state_t::eGeometryAppliesWithResize;
Jorim Jaggidba32732018-05-28 17:43:52 +02003681
3682 // If we are deferring transaction, make sure to push the pending state, as otherwise the
3683 // pending state will also be deferred.
Marissa Wallf58c14b2018-07-24 10:50:43 -07003684 if (what & layer_state_t::eDeferTransaction_legacy) {
Jorim Jaggidba32732018-05-28 17:43:52 +02003685 layer->pushPendingState();
3686 }
3687
chaviw8b3871a2017-11-01 17:41:01 -07003688 if (what & layer_state_t::ePositionChanged) {
3689 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3690 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003691 }
chaviw8b3871a2017-11-01 17:41:01 -07003692 }
3693 if (what & layer_state_t::eLayerChanged) {
3694 // NOTE: index needs to be calculated before we update the state
3695 const auto& p = layer->getParent();
3696 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003697 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003698 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003699 mCurrentState.layersSortedByZ.removeAt(idx);
3700 mCurrentState.layersSortedByZ.add(layer);
3701 // we need traversal (state changed)
3702 // AND transaction (list changed)
3703 flags |= eTransactionNeeded|eTraversalNeeded;
3704 }
chaviw8b3871a2017-11-01 17:41:01 -07003705 } else {
3706 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003707 flags |= eTransactionNeeded|eTraversalNeeded;
3708 }
3709 }
chaviw8b3871a2017-11-01 17:41:01 -07003710 }
3711 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003712 // NOTE: index needs to be calculated before we update the state
3713 const auto& p = layer->getParent();
3714 if (p == nullptr) {
3715 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3716 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3717 mCurrentState.layersSortedByZ.removeAt(idx);
3718 mCurrentState.layersSortedByZ.add(layer);
3719 // we need traversal (state changed)
3720 // AND transaction (list changed)
3721 flags |= eTransactionNeeded|eTraversalNeeded;
3722 }
3723 } else {
3724 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3725 flags |= eTransactionNeeded|eTraversalNeeded;
3726 }
chaviw8b3871a2017-11-01 17:41:01 -07003727 }
3728 }
3729 if (what & layer_state_t::eSizeChanged) {
3730 if (layer->setSize(s.w, s.h)) {
3731 flags |= eTraversalNeeded;
3732 }
3733 }
3734 if (what & layer_state_t::eAlphaChanged) {
3735 if (layer->setAlpha(s.alpha))
3736 flags |= eTraversalNeeded;
3737 }
3738 if (what & layer_state_t::eColorChanged) {
3739 if (layer->setColor(s.color))
3740 flags |= eTraversalNeeded;
3741 }
Peiyong Lind3788632018-09-18 16:01:31 -07003742 if (what & layer_state_t::eColorTransformChanged) {
3743 if (layer->setColorTransform(s.colorTransform)) {
3744 flags |= eTraversalNeeded;
3745 }
3746 }
Valerie Haudd0b7572019-01-29 14:59:27 -08003747 if (what & layer_state_t::eBackgroundColorChanged) {
3748 if (layer->setBackgroundColor(s.color, s.bgColorAlpha, s.bgColorDataspace)) {
3749 flags |= eTraversalNeeded;
3750 }
3751 }
chaviw8b3871a2017-11-01 17:41:01 -07003752 if (what & layer_state_t::eMatrixChanged) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003753 // TODO: b/109894387
3754 //
3755 // SurfaceFlinger's renderer is not prepared to handle cropping in the face of arbitrary
3756 // rotation. To see the problem observe that if we have a square parent, and a child
3757 // of the same size, then we rotate the child 45 degrees around it's center, the child
3758 // must now be cropped to a non rectangular 8 sided region.
3759 //
3760 // Of course we can fix this in the future. For now, we are lucky, SurfaceControl is
3761 // private API, and the WindowManager only uses rotation in one case, which is on a top
3762 // level layer in which cropping is not an issue.
3763 //
3764 // However given that abuse of rotation matrices could lead to surfaces extending outside
3765 // of cropped areas, we need to prevent non-root clients without permission ACCESS_SURFACE_FLINGER
3766 // (a.k.a. everyone except WindowManager and tests) from setting non rectangle preserving
3767 // transformations.
Robert Carr14167e02019-02-13 13:50:55 -08003768 if (layer->setMatrix(s.matrix, privileged))
chaviw8b3871a2017-11-01 17:41:01 -07003769 flags |= eTraversalNeeded;
3770 }
3771 if (what & layer_state_t::eTransparentRegionChanged) {
3772 if (layer->setTransparentRegionHint(s.transparentRegion))
3773 flags |= eTraversalNeeded;
3774 }
3775 if (what & layer_state_t::eFlagsChanged) {
3776 if (layer->setFlags(s.flags, s.mask))
3777 flags |= eTraversalNeeded;
3778 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07003779 if (what & layer_state_t::eCropChanged_legacy) {
3780 if (layer->setCrop_legacy(s.crop_legacy, !geometryAppliesWithResize))
chaviw8b3871a2017-11-01 17:41:01 -07003781 flags |= eTraversalNeeded;
3782 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003783 if (what & layer_state_t::eCornerRadiusChanged) {
3784 if (layer->setCornerRadius(s.cornerRadius))
3785 flags |= eTraversalNeeded;
3786 }
chaviw8b3871a2017-11-01 17:41:01 -07003787 if (what & layer_state_t::eLayerStackChanged) {
3788 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3789 // We only allow setting layer stacks for top level layers,
3790 // everything else inherits layer stack from its parent.
3791 if (layer->hasParent()) {
3792 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3793 layer->getName().string());
3794 } else if (idx < 0) {
3795 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3796 "that also does not appear in the top level layer list. Something"
3797 " has gone wrong.", layer->getName().string());
3798 } else if (layer->setLayerStack(s.layerStack)) {
3799 mCurrentState.layersSortedByZ.removeAt(idx);
3800 mCurrentState.layersSortedByZ.add(layer);
3801 // we need traversal (state changed)
3802 // AND transaction (list changed)
Lloyd Piqued432a7c2018-03-23 16:05:31 -07003803 flags |= eTransactionNeeded|eTraversalNeeded|eDisplayLayerStackChanged;
chaviw8b3871a2017-11-01 17:41:01 -07003804 }
3805 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07003806 if (what & layer_state_t::eDeferTransaction_legacy) {
3807 if (s.barrierHandle_legacy != nullptr) {
3808 layer->deferTransactionUntil_legacy(s.barrierHandle_legacy, s.frameNumber_legacy);
3809 } else if (s.barrierGbp_legacy != nullptr) {
3810 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp_legacy;
chaviw8b3871a2017-11-01 17:41:01 -07003811 if (authenticateSurfaceTextureLocked(gbp)) {
3812 const auto& otherLayer =
3813 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
Marissa Wallf58c14b2018-07-24 10:50:43 -07003814 layer->deferTransactionUntil_legacy(otherLayer, s.frameNumber_legacy);
chaviw8b3871a2017-11-01 17:41:01 -07003815 } else {
3816 ALOGE("Attempt to defer transaction to to an"
3817 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003818 }
3819 }
chaviw8b3871a2017-11-01 17:41:01 -07003820 // We don't trigger a traversal here because if no other state is
3821 // changed, we don't want this to cause any more work
3822 }
3823 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003824 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003825 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003826 if (!hadParent) {
3827 mCurrentState.layersSortedByZ.remove(layer);
3828 }
chaviw8b3871a2017-11-01 17:41:01 -07003829 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003830 }
chaviw8b3871a2017-11-01 17:41:01 -07003831 }
3832 if (what & layer_state_t::eReparentChildren) {
3833 if (layer->reparentChildren(s.reparentHandle)) {
3834 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003835 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003836 }
chaviw8b3871a2017-11-01 17:41:01 -07003837 if (what & layer_state_t::eDetachChildren) {
3838 layer->detachChildren();
3839 }
3840 if (what & layer_state_t::eOverrideScalingModeChanged) {
3841 layer->setOverrideScalingMode(s.overrideScalingMode);
3842 // We don't trigger a traversal here because if no other state is
3843 // changed, we don't want this to cause any more work
3844 }
Marissa Wall61c58622018-07-18 10:12:20 -07003845 if (what & layer_state_t::eTransformChanged) {
3846 if (layer->setTransform(s.transform)) flags |= eTraversalNeeded;
3847 }
3848 if (what & layer_state_t::eTransformToDisplayInverseChanged) {
3849 if (layer->setTransformToDisplayInverse(s.transformToDisplayInverse))
3850 flags |= eTraversalNeeded;
3851 }
3852 if (what & layer_state_t::eCropChanged) {
3853 if (layer->setCrop(s.crop)) flags |= eTraversalNeeded;
3854 }
Marissa Wall861616d2018-10-22 12:52:23 -07003855 if (what & layer_state_t::eFrameChanged) {
3856 if (layer->setFrame(s.frame)) flags |= eTraversalNeeded;
3857 }
Marissa Wall61c58622018-07-18 10:12:20 -07003858 if (what & layer_state_t::eAcquireFenceChanged) {
3859 if (layer->setAcquireFence(s.acquireFence)) flags |= eTraversalNeeded;
3860 }
3861 if (what & layer_state_t::eDataspaceChanged) {
3862 if (layer->setDataspace(s.dataspace)) flags |= eTraversalNeeded;
3863 }
3864 if (what & layer_state_t::eHdrMetadataChanged) {
3865 if (layer->setHdrMetadata(s.hdrMetadata)) flags |= eTraversalNeeded;
3866 }
3867 if (what & layer_state_t::eSurfaceDamageRegionChanged) {
3868 if (layer->setSurfaceDamageRegion(s.surfaceDamageRegion)) flags |= eTraversalNeeded;
3869 }
3870 if (what & layer_state_t::eApiChanged) {
3871 if (layer->setApi(s.api)) flags |= eTraversalNeeded;
3872 }
3873 if (what & layer_state_t::eSidebandStreamChanged) {
3874 if (layer->setSidebandStream(s.sidebandStream)) flags |= eTraversalNeeded;
3875 }
Robert Carr720e5062018-07-30 17:45:14 -07003876 if (what & layer_state_t::eInputInfoChanged) {
Robert Carr11ac2012019-01-22 09:05:25 -08003877 if (callingThreadHasUnscopedSurfaceFlingerAccess()) {
3878 layer->setInputInfo(s.inputInfo);
3879 flags |= eTraversalNeeded;
3880 } else {
3881 ALOGE("Attempt to update InputWindowInfo without permission ACCESS_SURFACE_FLINGER");
3882 }
Robert Carr720e5062018-07-30 17:45:14 -07003883 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003884 if (what & layer_state_t::eMetadataChanged) {
3885 if (layer->setMetadata(s.metadata)) flags |= eTraversalNeeded;
3886 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003887 std::vector<sp<CallbackHandle>> callbackHandles;
3888 if ((what & layer_state_t::eListenerCallbacksChanged) && (!s.listenerCallbacks.empty())) {
3889 mTransactionCompletedThread.run();
3890 for (const auto& [listener, callbackIds] : s.listenerCallbacks) {
3891 callbackHandles.emplace_back(new CallbackHandle(listener, callbackIds, s.surface));
3892 }
3893 }
Marissa Wall73411622019-01-25 10:45:41 -08003894
3895 if (what & layer_state_t::eBufferChanged) {
3896 // Add the new buffer to the cache. This should always come before eCachedBufferChanged.
3897 BufferStateLayerCache::getInstance().add(s.cachedBuffer.token, s.cachedBuffer.bufferId,
3898 s.buffer);
3899 }
Marissa Wallebc2c052019-01-16 19:16:55 -08003900 if (what & layer_state_t::eCachedBufferChanged) {
3901 sp<GraphicBuffer> buffer =
Marissa Wall73411622019-01-25 10:45:41 -08003902 BufferStateLayerCache::getInstance().get(s.cachedBuffer.token,
3903 s.cachedBuffer.bufferId);
Marissa Wallebc2c052019-01-16 19:16:55 -08003904 if (layer->setBuffer(buffer)) flags |= eTraversalNeeded;
3905 }
Marissa Walle2ffb422018-10-12 11:33:52 -07003906 if (layer->setTransactionCompletedListeners(callbackHandles)) flags |= eTraversalNeeded;
3907 // Do not put anything that updates layer state or modifies flags after
3908 // setTransactionCompletedListener
Mathias Agopiane57f2922012-08-09 16:29:12 -07003909 return flags;
3910}
3911
chaviw273171b2018-12-26 11:46:30 -08003912uint32_t SurfaceFlinger::addInputWindowCommands(const InputWindowCommands& inputWindowCommands) {
3913 uint32_t flags = 0;
3914 if (!inputWindowCommands.transferTouchFocusCommands.empty()) {
3915 flags |= eTraversalNeeded;
3916 }
3917
chaviwa911b102019-02-14 10:18:33 -08003918 if (inputWindowCommands.syncInputWindows) {
3919 flags |= eTraversalNeeded;
3920 }
3921
Vishnu Nairec0ab382019-02-13 15:32:56 -08003922 mPendingInputWindowCommands.merge(inputWindowCommands);
chaviw273171b2018-12-26 11:46:30 -08003923 return flags;
3924}
3925
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003926status_t SurfaceFlinger::createLayer(const String8& name, const sp<Client>& client, uint32_t w,
3927 uint32_t h, PixelFormat format, uint32_t flags,
3928 LayerMetadata metadata, sp<IBinder>* handle,
3929 sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent) {
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003930 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003931 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003932 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003933 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003934 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003935
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003936 status_t result = NO_ERROR;
3937
3938 sp<Layer> layer;
3939
Cody Northropbc755282017-03-31 12:00:08 -06003940 String8 uniqueName = getUniqueLayerName(name);
3941
Mathias Agopian3165cc22012-08-08 19:42:09 -07003942 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
Marissa Wall61c58622018-07-18 10:12:20 -07003943 case ISurfaceComposerClient::eFXSurfaceBufferQueue:
Marissa Wallfd668622018-05-10 10:21:13 -07003944 result = createBufferQueueLayer(client, uniqueName, w, h, flags, format, handle, gbp,
3945 &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07003946
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003947 break;
Marissa Wall61c58622018-07-18 10:12:20 -07003948 case ISurfaceComposerClient::eFXSurfaceBufferState:
3949 result = createBufferStateLayer(client, uniqueName, w, h, flags, handle, &layer);
3950 break;
chaviw13fdc492017-06-27 12:40:18 -07003951 case ISurfaceComposerClient::eFXSurfaceColor:
Vishnu Nair88a11f22018-11-28 18:30:57 -08003952 // check if buffer size is set for color layer.
3953 if (w > 0 || h > 0) {
3954 ALOGE("createLayer() failed, w or h cannot be set for color layer (w=%d, h=%d)",
3955 int(w), int(h));
3956 return BAD_VALUE;
3957 }
3958
chaviw13fdc492017-06-27 12:40:18 -07003959 result = createColorLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003960 uniqueName, w, h, flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003961 handle, &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003962 break;
Robert Carr6b3f6c52018-08-13 13:05:17 -07003963 case ISurfaceComposerClient::eFXSurfaceContainer:
Vishnu Nair88a11f22018-11-28 18:30:57 -08003964 // check if buffer size is set for container layer.
3965 if (w > 0 || h > 0) {
3966 ALOGE("createLayer() failed, w or h cannot be set for container layer (w=%d, h=%d)",
3967 int(w), int(h));
3968 return BAD_VALUE;
3969 }
Robert Carr6b3f6c52018-08-13 13:05:17 -07003970 result = createContainerLayer(client,
3971 uniqueName, w, h, flags,
3972 handle, &layer);
3973 break;
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003974 default:
3975 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003976 break;
3977 }
3978
Dan Stoza7d89d062015-04-30 13:29:25 -07003979 if (result != NO_ERROR) {
3980 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003981 }
Dan Stoza7d89d062015-04-30 13:29:25 -07003982
Chia-I Wuab0c3192017-08-01 11:29:00 -07003983 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
3984 // TODO b/64227542
Evan Rosky1f6d6d52018-12-06 10:47:26 -08003985 if (metadata.has(METADATA_WINDOW_TYPE)) {
3986 int32_t windowType = metadata.getInt32(METADATA_WINDOW_TYPE, 0);
3987 if (windowType == 441731) {
3988 metadata.setInt32(METADATA_WINDOW_TYPE, 2024); // TYPE_NAVIGATION_BAR_PANEL
3989 layer->setPrimaryDisplayOnly();
3990 }
Chia-I Wuab0c3192017-08-01 11:29:00 -07003991 }
3992
Evan Roskyef876c92019-01-25 17:46:06 -08003993 layer->setMetadata(metadata);
Albert Chaulk479c60c2017-01-27 14:21:34 -05003994
Robert Carrb89ea9d2018-12-10 13:01:14 -08003995 bool addToCurrentState = callingThreadHasUnscopedSurfaceFlingerAccess();
3996 result = addClientLayer(client, *handle, *gbp, layer, *parent,
3997 addToCurrentState);
Dan Stoza7d89d062015-04-30 13:29:25 -07003998 if (result != NO_ERROR) {
3999 return result;
4000 }
Lloyd Pique4dccc412018-01-22 17:21:36 -08004001 mInterceptor->saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07004002
4003 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004004 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004005}
4006
Cody Northropbc755282017-03-31 12:00:08 -06004007String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
4008{
4009 bool matchFound = true;
4010 uint32_t dupeCounter = 0;
4011
4012 // Tack on our counter whether there is a hit or not, so everyone gets a tag
4013 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
4014
Dan Stoza436ccf32018-06-21 12:10:12 -07004015 // Grab the state lock since we're accessing mCurrentState
4016 Mutex::Autolock lock(mStateLock);
4017
Cody Northropbc755282017-03-31 12:00:08 -06004018 // Loop over layers until we're sure there is no matching name
4019 while (matchFound) {
4020 matchFound = false;
Dan Stoza436ccf32018-06-21 12:10:12 -07004021 mCurrentState.traverseInZOrder([&](Layer* layer) {
Cody Northropbc755282017-03-31 12:00:08 -06004022 if (layer->getName() == uniqueName) {
4023 matchFound = true;
4024 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
4025 }
4026 });
4027 }
4028
Marissa Wallf1de4bd2018-05-22 13:05:01 -07004029 ALOGV_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(),
4030 uniqueName.c_str());
Cody Northropbc755282017-03-31 12:00:08 -06004031
4032 return uniqueName;
4033}
4034
Marissa Wallfd668622018-05-10 10:21:13 -07004035status_t SurfaceFlinger::createBufferQueueLayer(const sp<Client>& client, const String8& name,
4036 uint32_t w, uint32_t h, uint32_t flags,
4037 PixelFormat& format, sp<IBinder>* handle,
4038 sp<IGraphicBufferProducer>* gbp,
4039 sp<Layer>* outLayer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004040 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07004041 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004042 case PIXEL_FORMAT_TRANSPARENT:
4043 case PIXEL_FORMAT_TRANSLUCENT:
4044 format = PIXEL_FORMAT_RGBA_8888;
4045 break;
4046 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07004047 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004048 break;
4049 }
4050
Lloyd Pique42ab75e2018-09-12 20:46:03 -07004051 sp<BufferQueueLayer> layer =
Lloyd Pique90c115d2018-09-18 21:39:42 -07004052 getFactory().createBufferQueueLayer(LayerCreationArgs(this, client, name, w, h, flags));
Marissa Wallfd668622018-05-10 10:21:13 -07004053 status_t err = layer->setDefaultBufferProperties(w, h, format);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004054 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07004055 *handle = layer->getHandle();
4056 *gbp = layer->getProducer();
4057 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004058 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004059
Marissa Wallfd668622018-05-10 10:21:13 -07004060 ALOGE_IF(err, "createBufferQueueLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004061 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004062}
4063
Marissa Wall61c58622018-07-18 10:12:20 -07004064status_t SurfaceFlinger::createBufferStateLayer(const sp<Client>& client, const String8& name,
4065 uint32_t w, uint32_t h, uint32_t flags,
4066 sp<IBinder>* handle, sp<Layer>* outLayer) {
Lloyd Pique42ab75e2018-09-12 20:46:03 -07004067 sp<BufferStateLayer> layer =
Lloyd Pique90c115d2018-09-18 21:39:42 -07004068 getFactory().createBufferStateLayer(LayerCreationArgs(this, client, name, w, h, flags));
Marissa Wall61c58622018-07-18 10:12:20 -07004069 *handle = layer->getHandle();
4070 *outLayer = layer;
4071
4072 return NO_ERROR;
4073}
4074
chaviw13fdc492017-06-27 12:40:18 -07004075status_t SurfaceFlinger::createColorLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004076 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
David Sodman0c69cad2017-08-21 12:12:51 -07004077 sp<IBinder>* handle, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004078{
Lloyd Pique90c115d2018-09-18 21:39:42 -07004079 *outLayer = getFactory().createColorLayer(LayerCreationArgs(this, client, name, w, h, flags));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004080 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004081 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07004082}
4083
Robert Carr6b3f6c52018-08-13 13:05:17 -07004084status_t SurfaceFlinger::createContainerLayer(const sp<Client>& client,
4085 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
4086 sp<IBinder>* handle, sp<Layer>* outLayer)
4087{
Lloyd Pique90c115d2018-09-18 21:39:42 -07004088 *outLayer =
4089 getFactory().createContainerLayer(LayerCreationArgs(this, client, name, w, h, flags));
Robert Carr6b3f6c52018-08-13 13:05:17 -07004090 *handle = (*outLayer)->getHandle();
4091 return NO_ERROR;
4092}
4093
4094
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004095void SurfaceFlinger::markLayerPendingRemovalLocked(const sp<Layer>& layer) {
Robert Carr2e102c92018-10-23 12:11:15 -07004096 mLayersPendingRemoval.add(layer);
4097 mLayersRemoved = true;
4098 setTransactionFlags(eTransactionNeeded);
4099}
4100
Robert Carr695d5282018-12-18 15:27:58 -08004101void SurfaceFlinger::onHandleDestroyed(sp<Layer>& layer)
Rob Carr4bba3702018-10-08 21:53:30 +00004102{
Robert Carr2e102c92018-10-23 12:11:15 -07004103 Mutex::Autolock lock(mStateLock);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004104 // If a layer has a parent, we allow it to out-live it's handle
4105 // with the idea that the parent holds a reference and will eventually
4106 // be cleaned up. However no one cleans up the top-level so we do so
4107 // here.
4108 if (layer->getParent() == nullptr) {
4109 mCurrentState.layersSortedByZ.remove(layer);
4110 }
4111 markLayerPendingRemovalLocked(layer);
Robert Carr695d5282018-12-18 15:27:58 -08004112 layer.clear();
Rob Carr4bba3702018-10-08 21:53:30 +00004113}
4114
Mathias Agopianb60314a2012-04-10 22:09:54 -07004115// ---------------------------------------------------------------------------
4116
Andy McFadden13a082e2012-08-24 10:16:42 -07004117void SurfaceFlinger::onInitializeDisplays() {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004118 const auto display = getDefaultDisplayDeviceLocked();
4119 if (!display) return;
4120
4121 const sp<IBinder> token = display->getDisplayToken().promote();
4122 LOG_ALWAYS_FATAL_IF(token == nullptr);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004123
Jesse Hall01e29052013-02-19 16:13:35 -08004124 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07004125 Vector<ComposerState> state;
4126 Vector<DisplayState> displays;
4127 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08004128 d.what = DisplayState::eDisplayProjectionChanged |
4129 DisplayState::eLayerStackChanged;
Dominik Laskowski83b88212018-12-11 13:34:06 -08004130 d.token = token;
Jesse Hall01e29052013-02-19 16:13:35 -08004131 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004132 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07004133 d.frame.makeInvalid();
4134 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07004135 d.width = 0;
4136 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004137 displays.add(d);
Vishnu Nairec0ab382019-02-13 15:32:56 -08004138 setTransactionState(state, displays, 0, nullptr, mPendingInputWindowCommands, -1);
Jamie Gennis6547ff42013-07-16 20:12:42 -07004139
Dominik Laskowskie9774092018-12-11 10:04:24 -08004140 setPowerModeInternal(display, HWC_POWER_MODE_NORMAL);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004141
Dominik Laskowski83b88212018-12-11 13:34:06 -08004142 const nsecs_t vsyncPeriod = getVsyncPeriod();
4143 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08004144
Brian Andersond0010582017-03-07 13:20:31 -08004145 // Use phase of 0 since phase is not known.
4146 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004147 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07004148 setCompositorTimingSnapped(stats, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07004149}
4150
4151void SurfaceFlinger::initializeDisplays() {
Dominik Laskowski8c001672018-05-30 16:52:06 -07004152 // Async since we may be called from the main thread.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004153 postMessageAsync(
4154 new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS { onInitializeDisplays(); }));
Andy McFadden13a082e2012-08-24 10:16:42 -07004155}
4156
Dominik Laskowskie9774092018-12-11 10:04:24 -08004157void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& display, int mode) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004158 if (display->isVirtual()) {
4159 ALOGE("%s: Invalid operation on virtual display", __FUNCTION__);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004160 return;
4161 }
4162
Dominik Laskowski075d3172018-05-24 15:50:06 -07004163 const auto displayId = display->getId();
4164 LOG_ALWAYS_FATAL_IF(!displayId);
4165
Dominik Laskowski34157762018-10-31 13:07:19 -07004166 ALOGD("Setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004167
4168 int currentMode = display->getPowerMode();
4169 if (mode == currentMode) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004170 return;
4171 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004172
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004173 display->setPowerMode(mode);
4174
Lloyd Pique4dccc412018-01-22 17:21:36 -08004175 if (mInterceptor->isEnabled()) {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004176 mInterceptor->savePowerModeUpdate(display->getSequenceId(), mode);
Irvelffc9efc2016-07-27 15:16:37 -07004177 }
4178
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004179 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004180 // Turn on the display
Dominik Laskowski075d3172018-05-24 15:50:06 -07004181 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004182 if (display->isPrimary() && mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004183 mScheduler->onScreenAcquired(mAppConnectionHandle);
4184 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004185 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004186
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004187 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08004188 mHasPoweredOff = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07004189 repaintEverything();
Tim Murrayf9d4e442016-08-02 15:43:59 -07004190
4191 struct sched_param param = {0};
4192 param.sched_priority = 1;
4193 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
4194 ALOGW("Couldn't set SCHED_FIFO on display on");
4195 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004196 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004197 // Turn off the display
4198 struct sched_param param = {0};
4199 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
4200 ALOGW("Couldn't set SCHED_OTHER on display off");
4201 }
4202
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004203 if (display->isPrimary() && currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004204 mScheduler->disableHardwareVsync(true);
4205 mScheduler->onScreenReleased(mAppConnectionHandle);
Mathias Agopiancde87a32012-09-13 14:09:01 -07004206 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004207
Dominik Laskowski075d3172018-05-24 15:50:06 -07004208 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004209 mVisibleRegionsDirty = true;
4210 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07004211 } else if (mode == HWC_POWER_MODE_DOZE ||
4212 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004213 // Update display while dozing
Dominik Laskowski075d3172018-05-24 15:50:06 -07004214 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004215 if (display->isPrimary() && currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004216 mScheduler->onScreenAcquired(mAppConnectionHandle);
4217 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004218 }
4219 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
4220 // Leave display going to doze
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004221 if (display->isPrimary()) {
Ana Krulecc2870422019-01-29 19:00:58 -08004222 mScheduler->disableHardwareVsync(true);
4223 mScheduler->onScreenReleased(mAppConnectionHandle);
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004224 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07004225 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004226 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07004227 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Dominik Laskowski075d3172018-05-24 15:50:06 -07004228 getHwComposer().setPowerMode(*displayId, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004229 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004230
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004231 if (display->isPrimary()) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08004232 mTimeStats->setPowerMode(mode);
Ana Krulecc2870422019-01-29 19:00:58 -08004233 if (mRefreshRateStats) {
Ana Krulecb43429d2019-01-09 14:28:51 -08004234 // Update refresh rate stats.
4235 mRefreshRateStats->setPowerMode(mode);
4236 }
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004237 }
4238
Dominik Laskowski34157762018-10-31 13:07:19 -07004239 ALOGD("Finished setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004240}
4241
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004242void SurfaceFlinger::setPowerMode(const sp<IBinder>& displayToken, int mode) {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004243 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004244 const auto display = getDisplayDevice(displayToken);
4245 if (!display) {
4246 ALOGE("Attempt to set power mode %d for invalid display token %p", mode,
4247 displayToken.get());
4248 } else if (display->isVirtual()) {
4249 ALOGW("Attempt to set power mode %d for virtual display", mode);
4250 } else {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004251 setPowerModeInternal(display, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004252 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004253 }));
Mathias Agopianb60314a2012-04-10 22:09:54 -07004254}
4255
4256// ---------------------------------------------------------------------------
4257
Dominik Laskowskic2867142019-01-21 11:33:38 -08004258status_t SurfaceFlinger::doDump(int fd, const DumpArgs& args,
4259 bool asProto) NO_THREAD_SAFETY_ANALYSIS {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004260 std::string result;
Mathias Agopian99b49842011-06-27 16:05:52 -07004261
Mathias Agopianbd115332013-04-18 16:41:04 -07004262 IPCThreadState* ipc = IPCThreadState::self();
4263 const int pid = ipc->getCallingPid();
4264 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07004265
Mathias Agopianbd115332013-04-18 16:41:04 -07004266 if ((uid != AID_SHELL) &&
4267 !PermissionCache::checkPermission(sDump, pid, uid)) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004268 StringAppendF(&result, "Permission Denial: can't dump SurfaceFlinger from pid=%d, uid=%d\n",
4269 pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004270 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08004271 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07004272 // (this would indicate SF is stuck, but we want to be able to
4273 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08004274 status_t err = mStateLock.timedLock(s2ns(1));
4275 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07004276 if (!locked) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004277 StringAppendF(&result,
4278 "SurfaceFlinger appears to be unresponsive (%s [%d]), dumping anyways "
4279 "(no locks held)\n",
4280 strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07004281 }
4282
Dominik Laskowskic2867142019-01-21 11:33:38 -08004283 using namespace std::string_literals;
chaviwa3d7bd32017-11-03 09:41:53 -07004284
Dominik Laskowskic2867142019-01-21 11:33:38 -08004285 static const std::unordered_map<std::string, Dumper> dumpers = {
4286 {"--clear-layer-stats"s, dumper([this](std::string&) { mLayerStats.clear(); })},
4287 {"--disable-layer-stats"s, dumper([this](std::string&) { mLayerStats.disable(); })},
4288 {"--display-id"s, dumper(&SurfaceFlinger::dumpDisplayIdentificationData)},
Ady Abraham3aff9172019-02-07 19:10:26 -08004289 {"--dispsync"s, dumper([this](std::string& s) {
Ady Abraham3aff9172019-02-07 19:10:26 -08004290 mScheduler->dumpPrimaryDispSync(s);
Ady Abraham3aff9172019-02-07 19:10:26 -08004291 })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004292 {"--dump-layer-stats"s, dumper([this](std::string& s) { mLayerStats.dump(s); })},
4293 {"--enable-layer-stats"s, dumper([this](std::string&) { mLayerStats.enable(); })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004294 {"--frame-events"s, dumper(&SurfaceFlinger::dumpFrameEventsLocked)},
4295 {"--latency"s, argsDumper(&SurfaceFlinger::dumpStatsLocked)},
4296 {"--latency-clear"s, argsDumper(&SurfaceFlinger::clearStatsLocked)},
4297 {"--list"s, dumper(&SurfaceFlinger::listLayersLocked)},
4298 {"--static-screen"s, dumper(&SurfaceFlinger::dumpStaticScreenStats)},
4299 {"--timestats"s, protoDumper(&SurfaceFlinger::dumpTimeStats)},
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004300 {"--vsync"s, dumper(&SurfaceFlinger::dumpVSync)},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004301 {"--wide-color"s, dumper(&SurfaceFlinger::dumpWideColorInfo)},
4302 };
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004303
Dominik Laskowskic2867142019-01-21 11:33:38 -08004304 const auto flag = args.empty() ? ""s : std::string(String8(args[0]));
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004305
Dominik Laskowskic2867142019-01-21 11:33:38 -08004306 if (const auto it = dumpers.find(flag); it != dumpers.end()) {
4307 (it->second)(args, asProto, result);
4308 } else {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004309 if (asProto) {
4310 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4311 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
4312 } else {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004313 dumpAllLocked(args, result);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004314 }
Mathias Agopian48b888a2011-01-19 16:15:53 -08004315 }
4316
Mathias Agopian9795c422009-08-26 16:36:26 -07004317 if (locked) {
4318 mStateLock.unlock();
4319 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004320 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004321 write(fd, result.c_str(), result.size());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004322 return NO_ERROR;
4323}
4324
Dominik Laskowskic2867142019-01-21 11:33:38 -08004325void SurfaceFlinger::listLayersLocked(std::string& result) const {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004326 mCurrentState.traverseInZOrder(
4327 [&](Layer* layer) { StringAppendF(&result, "%s\n", layer->getName().string()); });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004328}
4329
Dominik Laskowskic2867142019-01-21 11:33:38 -08004330void SurfaceFlinger::dumpStatsLocked(const DumpArgs& args, std::string& result) const {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004331 StringAppendF(&result, "%" PRId64 "\n", getVsyncPeriod());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004332
Dominik Laskowskic2867142019-01-21 11:33:38 -08004333 if (args.size() > 1) {
4334 const auto name = String8(args[1]);
Robert Carr2047fae2016-11-28 14:09:09 -08004335 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004336 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004337 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004338 }
Robert Carr2047fae2016-11-28 14:09:09 -08004339 });
Dominik Laskowskic2867142019-01-21 11:33:38 -08004340 } else {
4341 mAnimFrameTracker.dumpStats(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004342 }
4343}
4344
Dominik Laskowskic2867142019-01-21 11:33:38 -08004345void SurfaceFlinger::clearStatsLocked(const DumpArgs& args, std::string&) {
Robert Carr2047fae2016-11-28 14:09:09 -08004346 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004347 if (args.size() < 2 || String8(args[1]) == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004348 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004349 }
Robert Carr2047fae2016-11-28 14:09:09 -08004350 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004351
Svetoslavd85084b2014-03-20 10:28:31 -07004352 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004353}
4354
Dominik Laskowskic2867142019-01-21 11:33:38 -08004355void SurfaceFlinger::dumpTimeStats(const DumpArgs& args, bool asProto, std::string& result) const {
4356 mTimeStats->parseArgs(asProto, args, result);
4357}
4358
Jamie Gennis6547ff42013-07-16 20:12:42 -07004359// This should only be called from the main thread. Otherwise it would need
4360// the lock and should use mCurrentState rather than mDrawingState.
4361void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08004362 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07004363 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08004364 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07004365
4366 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
4367}
4368
Yiwei Zhang5434a782018-12-05 18:06:32 -08004369void SurfaceFlinger::appendSfConfigString(std::string& result) const {
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004370 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07004371
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004372 if (isLayerTripleBufferingDisabled())
4373 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07004374
Yiwei Zhang5434a782018-12-05 18:06:32 -08004375 StringAppendF(&result, " PRESENT_TIME_OFFSET=%" PRId64, dispSyncPresentTimeOffset);
4376 StringAppendF(&result, " FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
4377 StringAppendF(&result, " MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
4378 StringAppendF(&result, " RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
4379 StringAppendF(&result, " NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
4380 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004381 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07004382}
4383
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004384void SurfaceFlinger::dumpVSync(std::string& result) const {
Ana Krulec757f63a2019-01-25 10:46:18 -08004385 mPhaseOffsets->dump(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004386 StringAppendF(&result,
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004387 " present offset: %9" PRId64 " ns\t VSYNC period: %9" PRId64 " ns\n\n",
Ana Krulec757f63a2019-01-25 10:46:18 -08004388 dispSyncPresentTimeOffset, getVsyncPeriod());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004389
Ana Krulecba13ab32019-02-20 14:14:12 -08004390 StringAppendF(&result, "Scheduler enabled. 90Hz feature: %s\n", mUse90Hz ? "on" : "off");
4391 StringAppendF(&result, "+ Smart 90 for video detection: %s\n\n",
4392 mUseSmart90ForVideo ? "on" : "off");
Ana Krulecc2870422019-01-29 19:00:58 -08004393 mScheduler->dump(mAppConnectionHandle, result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004394}
4395
Yiwei Zhang5434a782018-12-05 18:06:32 -08004396void SurfaceFlinger::dumpStaticScreenStats(std::string& result) const {
4397 result.append("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08004398 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
4399 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004400 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004401 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004402 StringAppendF(&result, " < %zd frames: %.3f s (%.1f%%)\n", b + 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004403 }
David Sodman4a36e932017-11-07 14:29:47 -08004404 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004405 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004406 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004407 StringAppendF(&result, " %zd+ frames: %.3f s (%.1f%%)\n", SurfaceFlingerBE::NUM_BUCKETS - 1,
4408 bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004409}
4410
Dan Stozae77c7662016-05-13 11:37:28 -07004411void SurfaceFlinger::recordBufferingStats(const char* layerName,
4412 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08004413 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
4414 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07004415 for (const auto& segment : history) {
4416 if (!segment.usedThirdBuffer) {
4417 stats.twoBufferTime += segment.totalTime;
4418 }
4419 if (segment.occupancyAverage < 1.0f) {
4420 stats.doubleBufferedTime += segment.totalTime;
4421 } else if (segment.occupancyAverage < 2.0f) {
4422 stats.tripleBufferedTime += segment.totalTime;
4423 }
4424 ++stats.numSegments;
4425 stats.totalTime += segment.totalTime;
4426 }
4427}
4428
Yiwei Zhang5434a782018-12-05 18:06:32 -08004429void SurfaceFlinger::dumpFrameEventsLocked(std::string& result) {
4430 result.append("Layer frame timestamps:\n");
Brian Andersond6927fb2016-07-23 23:37:30 -07004431
4432 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
4433 const size_t count = currentLayers.size();
4434 for (size_t i=0 ; i<count ; i++) {
4435 currentLayers[i]->dumpFrameEvents(result);
4436 }
4437}
4438
Yiwei Zhang5434a782018-12-05 18:06:32 -08004439void SurfaceFlinger::dumpBufferingStats(std::string& result) const {
Dan Stozae77c7662016-05-13 11:37:28 -07004440 result.append("Buffering stats:\n");
4441 result.append(" [Layer name] <Active time> <Two buffer> "
4442 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08004443 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07004444 typedef std::tuple<std::string, float, float, float> BufferTuple;
4445 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08004446 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07004447 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08004448 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07004449 if (stats.numSegments == 0) {
4450 continue;
4451 }
4452 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
4453 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
4454 stats.totalTime;
4455 float doubleBufferRatio = static_cast<float>(
4456 stats.doubleBufferedTime) / stats.totalTime;
4457 float tripleBufferRatio = static_cast<float>(
4458 stats.tripleBufferedTime) / stats.totalTime;
4459 sorted.insert({activeTime, {name, twoBufferRatio,
4460 doubleBufferRatio, tripleBufferRatio}});
4461 }
4462 for (const auto& sortedPair : sorted) {
4463 float activeTime = sortedPair.first;
4464 const BufferTuple& values = sortedPair.second;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004465 StringAppendF(&result, " [%s] %.2f %.3f %.3f %.3f\n", std::get<0>(values).c_str(),
4466 activeTime, std::get<1>(values), std::get<2>(values), std::get<3>(values));
Dan Stozae77c7662016-05-13 11:37:28 -07004467 }
4468 result.append("\n");
4469}
4470
Yiwei Zhang5434a782018-12-05 18:06:32 -08004471void SurfaceFlinger::dumpDisplayIdentificationData(std::string& result) const {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004472 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004473 const auto displayId = display->getId();
4474 if (!displayId) {
4475 continue;
4476 }
4477 const auto hwcDisplayId = getHwComposer().fromPhysicalDisplayId(*displayId);
Dominik Laskowski7e045462018-05-30 13:02:02 -07004478 if (!hwcDisplayId) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004479 continue;
4480 }
4481
Yiwei Zhang5434a782018-12-05 18:06:32 -08004482 StringAppendF(&result,
4483 "Display %s (HWC display %" PRIu64 "): ", to_string(*displayId).c_str(),
4484 *hwcDisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004485 uint8_t port;
4486 DisplayIdentificationData data;
Dominik Laskowski7e045462018-05-30 13:02:02 -07004487 if (!getHwComposer().getDisplayIdentificationData(*hwcDisplayId, &port, &data)) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004488 result.append("no identification data\n");
4489 continue;
4490 }
4491
4492 if (!isEdid(data)) {
4493 result.append("unknown identification data: ");
4494 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004495 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004496 }
4497 result.append("\n");
4498 continue;
4499 }
4500
4501 const auto edid = parseEdid(data);
4502 if (!edid) {
4503 result.append("invalid EDID: ");
4504 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004505 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004506 }
4507 result.append("\n");
4508 continue;
4509 }
4510
Yiwei Zhang5434a782018-12-05 18:06:32 -08004511 StringAppendF(&result, "port=%u pnpId=%s displayName=\"", port, edid->pnpId.data());
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004512 result.append(edid->displayName.data(), edid->displayName.length());
4513 result.append("\"\n");
4514 }
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004515}
4516
Yiwei Zhang5434a782018-12-05 18:06:32 -08004517void SurfaceFlinger::dumpWideColorInfo(std::string& result) const {
4518 StringAppendF(&result, "Device has wide color display: %d\n", hasWideColorDisplay);
4519 StringAppendF(&result, "Device uses color management: %d\n", useColorManagement);
4520 StringAppendF(&result, "DisplayColorSetting: %s\n",
4521 decodeDisplayColorSetting(mDisplayColorSetting).c_str());
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004522
4523 // TODO: print out if wide-color mode is active or not
4524
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004525 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004526 const auto displayId = display->getId();
4527 if (!displayId) {
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004528 continue;
4529 }
4530
Yiwei Zhang5434a782018-12-05 18:06:32 -08004531 StringAppendF(&result, "Display %s color modes:\n", to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004532 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004533 for (auto&& mode : modes) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004534 StringAppendF(&result, " %s (%d)\n", decodeColorMode(mode).c_str(), mode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004535 }
4536
Lloyd Pique32cbe282018-10-19 13:09:22 -07004537 ColorMode currentMode = display->getCompositionDisplay()->getState().colorMode;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004538 StringAppendF(&result, " Current color mode: %s (%d)\n",
4539 decodeColorMode(currentMode).c_str(), currentMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004540 }
4541 result.append("\n");
4542}
4543
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004544LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet) const {
chaviw1d044282017-09-27 12:19:28 -07004545 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004546 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
4547 const State& state = useDrawing ? mDrawingState : mCurrentState;
4548 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07004549 LayerProto* layerProto = layersProto.add_layers();
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004550 layer->writeToProto(layerProto, stateSet);
chaviw1d044282017-09-27 12:19:28 -07004551 });
4552
4553 return layersProto;
4554}
4555
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004556LayersProto SurfaceFlinger::dumpVisibleLayersProtoInfo(
4557 const sp<DisplayDevice>& displayDevice) const {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004558 LayersProto layersProto;
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004559
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004560 SizeProto* resolution = layersProto.mutable_resolution();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004561 resolution->set_w(displayDevice->getWidth());
4562 resolution->set_h(displayDevice->getHeight());
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004563
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004564 auto display = displayDevice->getCompositionDisplay();
Lloyd Pique32cbe282018-10-19 13:09:22 -07004565 const auto& displayState = display->getState();
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004566
Lloyd Pique32cbe282018-10-19 13:09:22 -07004567 layersProto.set_color_mode(decodeColorMode(displayState.colorMode));
4568 layersProto.set_color_transform(decodeColorTransform(displayState.colorTransform));
4569 layersProto.set_global_transform(displayState.orientation);
4570
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004571 const auto displayId = displayDevice->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004572 LOG_ALWAYS_FATAL_IF(!displayId);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004573 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004574 if (!layer->visibleRegion.isEmpty() && !display->getOutputLayersOrderedByZ().empty()) {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004575 LayerProto* layerProto = layersProto.add_layers();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004576 layer->writeToProto(layerProto, displayDevice);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004577 }
4578 });
4579
4580 return layersProto;
4581}
4582
Dominik Laskowskic2867142019-01-21 11:33:38 -08004583void SurfaceFlinger::dumpAllLocked(const DumpArgs& args, std::string& result) const {
4584 const bool colorize = !args.empty() && args[0] == String16("--color");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004585 Colorizer colorizer(colorize);
4586
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004587 // figure out if we're stuck somewhere
4588 const nsecs_t now = systemTime();
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004589 const nsecs_t inTransaction(mDebugInTransaction);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004590 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
4591
4592 /*
Andy McFadden4803b742012-09-24 19:07:20 -07004593 * Dump library configuration.
4594 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004595
4596 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004597 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004598 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004599 appendSfConfigString(result);
4600 appendUiConfigString(result);
4601 appendGuiConfigString(result);
4602 result.append("\n");
4603
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004604 result.append("\nDisplay identification data:\n");
4605 dumpDisplayIdentificationData(result);
4606
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004607 result.append("\nWide-Color information:\n");
4608 dumpWideColorInfo(result);
4609
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004610 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004611 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004612 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004613 result.append(SyncFeatures::getInstance().toString());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004614 result.append("\n\n");
Mathias Agopianca088332013-03-28 17:44:13 -07004615
Andy McFadden41d67d72014-04-25 16:58:34 -07004616 colorizer.bold(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004617 result.append("VSYNC configuration:\n");
Andy McFadden41d67d72014-04-25 16:58:34 -07004618 colorizer.reset(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004619 dumpVSync(result);
Dan Stozab90cf072015-03-05 11:05:59 -08004620 result.append("\n");
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004621
Dan Stozab90cf072015-03-05 11:05:59 -08004622 dumpStaticScreenStats(result);
4623 result.append("\n");
4624
Yiwei Zhang5434a782018-12-05 18:06:32 -08004625 StringAppendF(&result, "Missed frame count: %u\n\n", mFrameMissedCount.load());
Marissa Wallcfcdaa52018-05-21 15:45:59 -07004626
Dan Stozae77c7662016-05-13 11:37:28 -07004627 dumpBufferingStats(result);
4628
Andy McFadden4803b742012-09-24 19:07:20 -07004629 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004630 * Dump the visible layer list
4631 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004632 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004633 StringAppendF(&result, "Visible layers (count = %zu)\n", mNumLayers);
4634 StringAppendF(&result, "GraphicBufferProducers: %zu, max %zu\n",
4635 mGraphicBufferProducerList.size(), mMaxGraphicBufferProducerListSize);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004636 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07004637
Chia-I Wu2f884132018-09-13 15:17:58 -07004638 {
4639 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4640 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004641 result.append(LayerProtoParser::layerTreeToString(layerTree));
Chia-I Wu2f884132018-09-13 15:17:58 -07004642 result.append("\n");
4643 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004644
4645 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004646 * Dump Display state
4647 */
4648
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004649 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004650 StringAppendF(&result, "Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004651 colorizer.reset(result);
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004652 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004653 display->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004654 }
Chia-I Wu1e043612018-03-01 09:45:09 -08004655 result.append("\n");
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004656
4657 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004658 * Dump SurfaceFlinger global state
4659 */
4660
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004661 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004662 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004663 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004664
Lloyd Piqueb97e04f2018-10-18 17:07:05 -07004665 getRenderEngine().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004666
Dominik Laskowski075d3172018-05-24 15:50:06 -07004667 if (const auto display = getDefaultDisplayDeviceLocked()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07004668 display->getCompositionDisplay()->getState().undefinedRegion.dump(result,
4669 "undefinedRegion");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004670 StringAppendF(&result, " orientation=%d, isPoweredOn=%d\n", display->getOrientation(),
4671 display->isPoweredOn());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08004672 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004673 StringAppendF(&result,
4674 " transaction-flags : %08x\n"
4675 " gpu_to_cpu_unsupported : %d\n",
4676 mTransactionFlags.load(), !mGpuToCpuSupported);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004677
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08004678 if (const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004679 displayId && getHwComposer().isConnected(*displayId)) {
4680 const auto activeConfig = getHwComposer().getActiveConfig(*displayId);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004681 StringAppendF(&result,
4682 " refresh-rate : %f fps\n"
4683 " x-dpi : %f\n"
4684 " y-dpi : %f\n",
4685 1e9 / activeConfig->getVsyncPeriod(), activeConfig->getDpiX(),
4686 activeConfig->getDpiY());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004687 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004688
Yiwei Zhang5434a782018-12-05 18:06:32 -08004689 StringAppendF(&result, " transaction time: %f us\n", inTransactionDuration / 1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004690
Dan Stozae22aec72016-08-01 13:20:59 -07004691 /*
Yichi Chenadc69612018-09-15 14:51:18 +08004692 * Tracing state
4693 */
4694 mTracing.dump(result);
4695 result.append("\n");
4696
4697 /*
Dan Stozae22aec72016-08-01 13:20:59 -07004698 * HWC layer minidump
4699 */
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004700 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004701 const auto displayId = display->getId();
4702 if (!displayId) {
Dan Stozae22aec72016-08-01 13:20:59 -07004703 continue;
4704 }
4705
Yiwei Zhang5434a782018-12-05 18:06:32 -08004706 StringAppendF(&result, "Display %s HWC layers:\n", to_string(*displayId).c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07004707 Layer::miniDumpHeader(result);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004708 const sp<DisplayDevice> displayDevice = display;
4709 mCurrentState.traverseInZOrder(
4710 [&](Layer* layer) { layer->miniDump(result, displayDevice); });
Dan Stozae22aec72016-08-01 13:20:59 -07004711 result.append("\n");
4712 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004713
4714 /*
4715 * Dump HWComposer state
4716 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004717 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004718 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004719 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004720 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004721 StringAppendF(&result, " h/w composer %s\n", hwcDisabled ? "disabled" : "enabled");
Dominik Laskowski075d3172018-05-24 15:50:06 -07004722 getHwComposer().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004723
4724 /*
4725 * Dump gralloc state
4726 */
4727 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
4728 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004729
4730 /*
4731 * Dump VrFlinger state if in use.
4732 */
4733 if (mVrFlingerRequestsDisplay && mVrFlinger) {
4734 result.append("VrFlinger state:\n");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004735 result.append(mVrFlinger->Dump());
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004736 result.append("\n");
4737 }
Ana Krulecb43429d2019-01-09 14:28:51 -08004738
4739 /**
4740 * Scheduler dump state.
4741 */
Ana Krulecc2870422019-01-29 19:00:58 -08004742 result.append("\nScheduler state:\n");
4743 result.append(mScheduler->doDump() + "\n");
4744 result.append(mRefreshRateStats->doDump() + "\n");
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004745}
4746
Dominik Laskowski075d3172018-05-24 15:50:06 -07004747const Vector<sp<Layer>>& SurfaceFlinger::getLayerSortedByZForHwcDisplay(DisplayId displayId) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07004748 // Note: mStateLock is held here
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004749 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski7e045462018-05-30 13:02:02 -07004750 if (display->getId() == displayId) {
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004751 return getDisplayDeviceLocked(token)->getVisibleLayersSortedByZ();
Jesse Hall48bc05b2013-03-21 14:06:52 -07004752 }
4753 }
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004754
Dominik Laskowski34157762018-10-31 13:07:19 -07004755 ALOGE("%s: Invalid display %s", __FUNCTION__, to_string(displayId).c_str());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004756 static const Vector<sp<Layer>> empty;
4757 return empty;
Mathias Agopiancb558572012-10-04 15:58:54 -07004758}
4759
Chia-I Wu28f320b2018-05-03 11:02:56 -07004760void SurfaceFlinger::updateColorMatrixLocked() {
4761 mat4 colorMatrix;
4762 if (mGlobalSaturationFactor != 1.0f) {
4763 // Rec.709 luma coefficients
4764 float3 luminance{0.213f, 0.715f, 0.072f};
4765 luminance *= 1.0f - mGlobalSaturationFactor;
4766 mat4 saturationMatrix = mat4(
4767 vec4{luminance.r + mGlobalSaturationFactor, luminance.r, luminance.r, 0.0f},
4768 vec4{luminance.g, luminance.g + mGlobalSaturationFactor, luminance.g, 0.0f},
4769 vec4{luminance.b, luminance.b, luminance.b + mGlobalSaturationFactor, 0.0f},
4770 vec4{0.0f, 0.0f, 0.0f, 1.0f}
4771 );
4772 colorMatrix = mClientColorMatrix * saturationMatrix * mDaltonizer();
4773 } else {
4774 colorMatrix = mClientColorMatrix * mDaltonizer();
4775 }
4776
4777 if (mCurrentState.colorMatrix != colorMatrix) {
4778 mCurrentState.colorMatrix = colorMatrix;
4779 mCurrentState.colorMatrixChanged = true;
4780 setTransactionFlags(eTransactionNeeded);
4781 }
4782}
4783
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004784status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004785#pragma clang diagnostic push
4786#pragma clang diagnostic error "-Wswitch-enum"
4787 switch (static_cast<ISurfaceComposerTag>(code)) {
4788 // These methods should at minimum make sure that the client requested
4789 // access to SF.
Dan Stozae3344402018-08-20 19:53:42 +00004790 case BOOT_FINISHED:
4791 case CLEAR_ANIMATION_FRAME_STATS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004792 case CREATE_DISPLAY:
4793 case DESTROY_DISPLAY:
Dan Stozae3344402018-08-20 19:53:42 +00004794 case ENABLE_VSYNC_INJECTIONS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004795 case GET_ACTIVE_COLOR_MODE:
4796 case GET_ANIMATION_FRAME_STATS:
4797 case GET_HDR_CAPABILITIES:
4798 case SET_ACTIVE_CONFIG:
Ady Abraham838de062019-02-04 10:24:03 -08004799 case SET_ALLOWED_DISPLAY_CONFIGS:
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08004800 case GET_ALLOWED_DISPLAY_CONFIGS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004801 case SET_ACTIVE_COLOR_MODE:
Chia-I Wu90f669f2017-10-05 14:24:41 -07004802 case INJECT_VSYNC:
Kevin DuBois9c0a1762018-10-16 13:32:31 -07004803 case SET_POWER_MODE:
Kevin DuBois74e53772018-11-19 10:52:38 -08004804 case GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES:
Kevin DuBois1d4249a2018-08-29 10:45:14 -07004805 case SET_DISPLAY_CONTENT_SAMPLING_ENABLED:
4806 case GET_DISPLAYED_CONTENT_SAMPLE: {
Robert Carrd4ae7f32018-06-07 16:10:57 -07004807 if (!callingThreadHasUnscopedSurfaceFlingerAccess()) {
4808 IPCThreadState* ipc = IPCThreadState::self();
4809 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d",
4810 ipc->getCallingPid(), ipc->getCallingUid());
Mathias Agopian375f5632009-06-15 18:24:59 -07004811 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004812 }
Robert Carr1db73f62016-12-21 12:58:51 -08004813 return OK;
4814 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004815 case GET_LAYER_DEBUG_INFO: {
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004816 IPCThreadState* ipc = IPCThreadState::self();
4817 const int pid = ipc->getCallingPid();
4818 const int uid = ipc->getCallingUid();
Ana Krulec13be8ad2018-08-21 02:43:56 +00004819 if ((uid != AID_SHELL) && !PermissionCache::checkPermission(sDump, pid, uid)) {
4820 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004821 return PERMISSION_DENIED;
4822 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004823 return OK;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004824 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004825 // Used by apps to hook Choreographer to SurfaceFlinger.
4826 case CREATE_DISPLAY_EVENT_CONNECTION:
4827 // The following calls are currently used by clients that do not
4828 // request necessary permissions. However, they do not expose any secret
4829 // information, so it is OK to pass them.
4830 case AUTHENTICATE_SURFACE:
4831 case GET_ACTIVE_CONFIG:
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08004832 case GET_PHYSICAL_DISPLAY_IDS:
4833 case GET_PHYSICAL_DISPLAY_TOKEN:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004834 case GET_DISPLAY_COLOR_MODES:
Daniel Solomon42d04562019-01-20 21:03:19 -08004835 case GET_DISPLAY_NATIVE_PRIMARIES:
Ana Krulec13be8ad2018-08-21 02:43:56 +00004836 case GET_DISPLAY_CONFIGS:
4837 case GET_DISPLAY_STATS:
4838 case GET_SUPPORTED_FRAME_TIMESTAMPS:
4839 // Calling setTransactionState is safe, because you need to have been
4840 // granted a reference to Client* and Handle* to do anything with it.
4841 case SET_TRANSACTION_STATE:
Robert Carrb89ea9d2018-12-10 13:01:14 -08004842 case CREATE_CONNECTION:
Ady Abraham37965d42018-11-01 13:43:32 -07004843 case GET_COLOR_MANAGEMENT:
Peiyong Lin3c2791e2019-01-14 17:05:18 -08004844 case GET_COMPOSITION_PREFERENCE:
Marissa Wallebc2c052019-01-16 19:16:55 -08004845 case GET_PROTECTED_CONTENT_SUPPORT:
chaviw291d88a2019-02-14 10:33:58 -08004846 case IS_WIDE_COLOR_DISPLAY: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004847 return OK;
4848 }
4849 case CAPTURE_LAYERS:
Dan Stoza84ab9372018-12-17 15:27:57 -08004850 case CAPTURE_SCREEN:
4851 case ADD_REGION_SAMPLING_LISTENER:
4852 case REMOVE_REGION_SAMPLING_LISTENER: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004853 // codes that require permission check
chaviwa76b2712017-09-20 12:02:26 -07004854 IPCThreadState* ipc = IPCThreadState::self();
4855 const int pid = ipc->getCallingPid();
4856 const int uid = ipc->getCallingUid();
4857 if ((uid != AID_GRAPHICS) &&
4858 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
4859 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
4860 return PERMISSION_DENIED;
4861 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004862 return OK;
4863 }
4864 // The following codes are deprecated and should never be allowed to access SF.
4865 case CONNECT_DISPLAY_UNUSED:
4866 case CREATE_GRAPHIC_BUFFER_ALLOC_UNUSED: {
4867 ALOGE("Attempting to access SurfaceFlinger with unused code: %u", code);
4868 return PERMISSION_DENIED;
chaviwa76b2712017-09-20 12:02:26 -07004869 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004870 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00004871
4872 // These codes are used for the IBinder protocol to either interrogate the recipient
4873 // side of the transaction for its canonical interface descriptor or to dump its state.
4874 // We let them pass by default.
4875 if (code == IBinder::INTERFACE_TRANSACTION || code == IBinder::DUMP_TRANSACTION ||
4876 code == IBinder::PING_TRANSACTION || code == IBinder::SHELL_COMMAND_TRANSACTION ||
4877 code == IBinder::SYSPROPS_TRANSACTION) {
4878 return OK;
4879 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08004880 // Numbers from 1000 to 1032 are currently use for backdoors. The code
Ana Krulec13be8ad2018-08-21 02:43:56 +00004881 // in onTransact verifies that the user is root, and has access to use SF.
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08004882 if (code >= 1000 && code <= 1032) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00004883 ALOGV("Accessing SurfaceFlinger through backdoor code: %u", code);
4884 return OK;
4885 }
4886 ALOGE("Permission Denial: SurfaceFlinger did not recognize request code: %u", code);
4887 return PERMISSION_DENIED;
4888#pragma clang diagnostic pop
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004889}
4890
Ana Krulec13be8ad2018-08-21 02:43:56 +00004891status_t SurfaceFlinger::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
4892 uint32_t flags) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004893 status_t credentialCheck = CheckTransactCodeCredentials(code);
4894 if (credentialCheck != OK) {
4895 return credentialCheck;
4896 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004897
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004898 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
4899 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07004900 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07004901 IPCThreadState* ipc = IPCThreadState::self();
4902 const int uid = ipc->getCallingUid();
4903 if (CC_UNLIKELY(uid != AID_SYSTEM
4904 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07004905 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00004906 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07004907 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004908 return PERMISSION_DENIED;
4909 }
4910 int n;
4911 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07004912 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07004913 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004914 return NO_ERROR;
4915 case 1002: // SHOW_UPDATES
4916 n = data.readInt32();
4917 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07004918 invalidateHwcGeometry();
4919 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004920 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004921 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07004922 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004923 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004924 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004925 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07004926 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07004927 setTransactionFlags(
4928 eTransactionNeeded|
4929 eDisplayTransactionNeeded|
4930 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004931 return NO_ERROR;
4932 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08004933 case 1006:{ // send empty update
4934 signalRefresh();
4935 return NO_ERROR;
4936 }
Mathias Agopian53331da2011-08-22 21:44:41 -07004937 case 1008: // toggle use of hw composer
4938 n = data.readInt32();
4939 mDebugDisableHWC = n ? 1 : 0;
4940 invalidateHwcGeometry();
4941 repaintEverything();
4942 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07004943 case 1009: // toggle use of transform hint
4944 n = data.readInt32();
4945 mDebugDisableTransformHint = n ? 1 : 0;
4946 invalidateHwcGeometry();
4947 repaintEverything();
4948 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004949 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07004950 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004951 reply->writeInt32(0);
4952 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07004953 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08004954 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004955 return NO_ERROR;
4956 case 1013: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004957 const auto display = getDefaultDisplayDevice();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004958 if (!display) {
4959 return NAME_NOT_FOUND;
4960 }
4961
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004962 reply->writeInt32(display->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07004963 return NO_ERROR;
4964 }
4965 case 1014: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07004966 Mutex::Autolock _l(mStateLock);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004967 // daltonize
4968 n = data.readInt32();
4969 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004970 case 1:
4971 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
4972 break;
4973 case 2:
4974 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
4975 break;
4976 case 3:
4977 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
4978 break;
4979 default:
4980 mDaltonizer.setType(ColorBlindnessType::None);
4981 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07004982 }
4983 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004984 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004985 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004986 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004987 }
Chia-I Wu28f320b2018-05-03 11:02:56 -07004988
4989 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004990 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004991 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004992 case 1015: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07004993 Mutex::Autolock _l(mStateLock);
Alan Viverette9c5a3332013-09-12 20:04:35 -07004994 // apply a color matrix
4995 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004996 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07004997 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07004998 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004999 for (size_t j = 0; j < 4; j++) {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005000 mClientColorMatrix[i][j] = data.readFloat();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005001 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005002 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005003 } else {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005004 mClientColorMatrix = mat4();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005005 }
Romain Guy88d37dd2017-05-26 17:57:05 -07005006
5007 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
5008 // the division by w in the fragment shader
Chia-I Wu28f320b2018-05-03 11:02:56 -07005009 float4 lastRow(transpose(mClientColorMatrix)[3]);
Romain Guy88d37dd2017-05-26 17:57:05 -07005010 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
5011 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
5012 }
5013
Chia-I Wu28f320b2018-05-03 11:02:56 -07005014 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005015 return NO_ERROR;
5016 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005017 // This is an experimental interface
5018 // Needs to be shifted to proper binder interface when we productize
5019 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07005020 n = data.readInt32();
Ana Krulece588e312018-09-18 12:32:24 -07005021 // TODO(b/113612090): Evaluate if this can be removed.
Ana Krulecc2870422019-01-29 19:00:58 -08005022 mScheduler->setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005023 return NO_ERROR;
5024 }
Dan Stozaee44edd2015-03-23 15:50:23 -07005025 case 1017: {
5026 n = data.readInt32();
5027 mForceFullDamage = static_cast<bool>(n);
5028 return NO_ERROR;
5029 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005030 case 1018: { // Modify Choreographer's phase offset
5031 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005032 mScheduler->setPhaseOffset(mAppConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005033 return NO_ERROR;
5034 }
5035 case 1019: { // Modify SurfaceFlinger's phase offset
5036 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005037 mScheduler->setPhaseOffset(mSfConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005038 return NO_ERROR;
5039 }
Irvel468051e2016-06-13 16:44:44 -07005040 case 1020: { // Layer updates interceptor
5041 n = data.readInt32();
5042 if (n) {
5043 ALOGV("Interceptor enabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005044 mInterceptor->enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07005045 }
5046 else{
5047 ALOGV("Interceptor disabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005048 mInterceptor->disable();
Irvel468051e2016-06-13 16:44:44 -07005049 }
5050 return NO_ERROR;
5051 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07005052 case 1021: { // Disable HWC virtual displays
5053 n = data.readInt32();
5054 mUseHwcVirtualDisplays = !n;
5055 return NO_ERROR;
5056 }
Romain Guy0147a172017-06-01 13:53:56 -07005057 case 1022: { // Set saturation boost
Chia-I Wu28f320b2018-05-03 11:02:56 -07005058 Mutex::Autolock _l(mStateLock);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005059 mGlobalSaturationFactor = std::max(0.0f, std::min(data.readFloat(), 2.0f));
Romain Guy0147a172017-06-01 13:53:56 -07005060
Chia-I Wu28f320b2018-05-03 11:02:56 -07005061 updateColorMatrixLocked();
Romain Guy0147a172017-06-01 13:53:56 -07005062 return NO_ERROR;
5063 }
Romain Guy54f154a2017-10-24 21:40:32 +01005064 case 1023: { // Set native mode
Chia-I Wu0d711262018-05-21 15:19:35 -07005065 mDisplayColorSetting = static_cast<DisplayColorSetting>(data.readInt32());
Romain Guy54f154a2017-10-24 21:40:32 +01005066 invalidateHwcGeometry();
5067 repaintEverything();
5068 return NO_ERROR;
5069 }
Peiyong Lin4bac91c2018-10-25 09:48:33 -07005070 // Deprecate, use 1030 to check whether the device is color managed.
5071 case 1024: {
5072 return NAME_NOT_FOUND;
Romain Guy54f154a2017-10-24 21:40:32 +01005073 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005074 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01005075 n = data.readInt32();
5076 if (n) {
Yichi Chenadc69612018-09-15 14:51:18 +08005077 ALOGD("LayerTracing enabled");
Adrian Roos1e1a1282017-11-01 19:05:31 +01005078 mTracing.enable();
5079 doTracing("tracing.enable");
5080 reply->writeInt32(NO_ERROR);
5081 } else {
Yichi Chenadc69612018-09-15 14:51:18 +08005082 ALOGD("LayerTracing disabled");
Adrian Roos1e1a1282017-11-01 19:05:31 +01005083 status_t err = mTracing.disable();
5084 reply->writeInt32(err);
5085 }
5086 return NO_ERROR;
5087 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005088 case 1026: { // Get layer tracing status
5089 reply->writeBool(mTracing.isEnabled());
5090 return NO_ERROR;
5091 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005092 // Is a DisplayColorSetting supported?
5093 case 1027: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005094 const auto display = getDefaultDisplayDevice();
5095 if (!display) {
Chia-I Wu0d711262018-05-21 15:19:35 -07005096 return NAME_NOT_FOUND;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005097 }
Chia-I Wu0d711262018-05-21 15:19:35 -07005098
5099 DisplayColorSetting setting = static_cast<DisplayColorSetting>(data.readInt32());
5100 switch (setting) {
5101 case DisplayColorSetting::MANAGED:
Peiyong Lin13effd12018-07-24 17:01:47 -07005102 reply->writeBool(useColorManagement);
Chia-I Wu0d711262018-05-21 15:19:35 -07005103 break;
5104 case DisplayColorSetting::UNMANAGED:
5105 reply->writeBool(true);
5106 break;
5107 case DisplayColorSetting::ENHANCED:
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005108 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE));
Chia-I Wu0d711262018-05-21 15:19:35 -07005109 break;
5110 default: // vendor display color setting
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005111 reply->writeBool(
5112 display->hasRenderIntent(static_cast<RenderIntent>(setting)));
Chia-I Wu0d711262018-05-21 15:19:35 -07005113 break;
5114 }
5115 return NO_ERROR;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005116 }
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005117 // Is VrFlinger active?
5118 case 1028: {
5119 Mutex::Autolock _l(mStateLock);
Lloyd Pique441d5042018-10-18 16:49:51 -07005120 reply->writeBool(getHwComposer().isUsingVrComposer());
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005121 return NO_ERROR;
5122 }
Peiyong Lin13effd12018-07-24 17:01:47 -07005123 // Is device color managed?
5124 case 1030: {
5125 reply->writeBool(useColorManagement);
5126 return NO_ERROR;
5127 }
Peiyong Lin9d846a52018-11-05 13:18:20 -08005128 // Override default composition data space
5129 // adb shell service call SurfaceFlinger 1031 i32 1 DATASPACE_NUMBER DATASPACE_NUMBER \
5130 // && adb shell stop zygote && adb shell start zygote
5131 // to restore: adb shell service call SurfaceFlinger 1031 i32 0 && \
5132 // adb shell stop zygote && adb shell start zygote
5133 case 1031: {
5134 Mutex::Autolock _l(mStateLock);
5135 n = data.readInt32();
5136 if (n) {
5137 n = data.readInt32();
5138 if (n) {
5139 Dataspace dataspace = static_cast<Dataspace>(n);
5140 if (!validateCompositionDataspace(dataspace)) {
5141 return BAD_VALUE;
5142 }
5143 mDefaultCompositionDataspace = dataspace;
5144 }
5145 n = data.readInt32();
5146 if (n) {
5147 Dataspace dataspace = static_cast<Dataspace>(n);
5148 if (!validateCompositionDataspace(dataspace)) {
5149 return BAD_VALUE;
5150 }
5151 mWideColorGamutCompositionDataspace = dataspace;
5152 }
5153 } else {
5154 // restore composition data space.
5155 mDefaultCompositionDataspace = defaultCompositionDataspace;
5156 mWideColorGamutCompositionDataspace = wideColorGamutCompositionDataspace;
5157 }
5158 return NO_ERROR;
5159 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005160 case 1032: {
5161 n = data.readInt32();
5162 mDebugEnableProtectedContent = n;
5163 return NO_ERROR;
5164 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005165 }
5166 }
5167 return err;
5168}
5169
Steven Thomas6d8110b2017-08-31 18:24:21 -07005170void SurfaceFlinger::repaintEverything() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07005171 mRepaintEverything = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07005172 signalTransaction();
Steven Thomas6d8110b2017-08-31 18:24:21 -07005173}
5174
Ana Krulec7d1d6832018-12-27 11:10:09 -08005175void SurfaceFlinger::repaintEverythingForHWC() {
5176 mRepaintEverything = true;
5177 mEventQueue->invalidateForHWC();
5178}
5179
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005180// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
5181class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005182public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005183 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
5184 ~WindowDisconnector() {
5185 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005186 }
5187
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005188private:
5189 ANativeWindow* mWindow;
5190 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005191};
5192
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005193status_t SurfaceFlinger::captureScreen(const sp<IBinder>& displayToken,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005194 sp<GraphicBuffer>* outBuffer, const Dataspace reqDataspace,
5195 const ui::PixelFormat reqPixelFormat, Rect sourceCrop,
chaviw0e3479f2018-09-10 16:49:30 -07005196 uint32_t reqWidth, uint32_t reqHeight,
5197 bool useIdentityTransform,
Robert Carrfa8855f2019-02-19 10:05:00 -08005198 ISurfaceComposer::Rotation rotation,
5199 bool captureSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005200 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005201
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005202 if (!displayToken) return BAD_VALUE;
chaviwa76b2712017-09-20 12:02:26 -07005203
Chia-I Wuc80dcbb2018-08-24 15:34:02 -07005204 auto renderAreaRotation = fromSurfaceComposerRotation(rotation);
5205
Chia-I Wu20261cb2018-08-23 12:55:44 -07005206 sp<DisplayDevice> display;
5207 {
5208 Mutex::Autolock _l(mStateLock);
Garfield Tan3b1b8af2018-03-16 17:37:33 -07005209
Chia-I Wu20261cb2018-08-23 12:55:44 -07005210 display = getDisplayDeviceLocked(displayToken);
5211 if (!display) return BAD_VALUE;
5212
Chia-I Wucb023152018-08-28 12:57:23 -07005213 // set the requested width/height to the logical display viewport size
5214 // by default
5215 if (reqWidth == 0 || reqHeight == 0) {
5216 reqWidth = uint32_t(display->getViewport().width());
5217 reqHeight = uint32_t(display->getViewport().height());
Chia-I Wu20261cb2018-08-23 12:55:44 -07005218 }
Yiwei Zhang06a58e22018-08-20 16:42:23 -07005219 }
5220
Peiyong Lin0e003c92018-09-17 11:09:51 -07005221 DisplayRenderArea renderArea(display, sourceCrop, reqWidth, reqHeight, reqDataspace,
Robert Carrfa8855f2019-02-19 10:05:00 -08005222 renderAreaRotation, captureSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005223
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08005224 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5225 std::placeholders::_1);
Peiyong Lin0e003c92018-09-17 11:09:51 -07005226 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat,
5227 useIdentityTransform);
chaviwa76b2712017-09-20 12:02:26 -07005228}
5229
5230status_t SurfaceFlinger::captureLayers(const sp<IBinder>& layerHandleBinder,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005231 sp<GraphicBuffer>* outBuffer, const Dataspace reqDataspace,
5232 const ui::PixelFormat reqPixelFormat, const Rect& sourceCrop,
Robert Carr578038f2018-03-09 12:25:24 -08005233 float frameScale, bool childrenOnly) {
chaviwa76b2712017-09-20 12:02:26 -07005234 ATRACE_CALL();
5235
5236 class LayerRenderArea : public RenderArea {
5237 public:
Robert Carr578038f2018-03-09 12:25:24 -08005238 LayerRenderArea(SurfaceFlinger* flinger, const sp<Layer>& layer, const Rect crop,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005239 int32_t reqWidth, int32_t reqHeight, Dataspace reqDataSpace,
5240 bool childrenOnly)
5241 : RenderArea(reqWidth, reqHeight, CaptureFill::CLEAR, reqDataSpace),
Robert Carr578038f2018-03-09 12:25:24 -08005242 mLayer(layer),
5243 mCrop(crop),
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005244 mNeedsFiltering(false),
Robert Carr578038f2018-03-09 12:25:24 -08005245 mFlinger(flinger),
5246 mChildrenOnly(childrenOnly) {}
Peiyong Linefefaac2018-08-17 12:27:51 -07005247 const ui::Transform& getTransform() const override { return mTransform; }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005248 Rect getBounds() const override {
5249 const Layer::State& layerState(mLayer->getDrawingState());
5250 return mLayer->getBufferSize(layerState);
5251 }
Marissa Wall61c58622018-07-18 10:12:20 -07005252 int getHeight() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005253 return mLayer->getBufferSize(mLayer->getDrawingState()).getHeight();
Marissa Wall61c58622018-07-18 10:12:20 -07005254 }
Vishnu Nair88a11f22018-11-28 18:30:57 -08005255 int getWidth() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005256 return mLayer->getBufferSize(mLayer->getDrawingState()).getWidth();
Vishnu Nair88a11f22018-11-28 18:30:57 -08005257 }
chaviwa76b2712017-09-20 12:02:26 -07005258 bool isSecure() const override { return false; }
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005259 bool needsFiltering() const override { return mNeedsFiltering; }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005260 const sp<const DisplayDevice> getDisplayDevice() const override { return nullptr; }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005261 Rect getSourceCrop() const override {
5262 if (mCrop.isEmpty()) {
5263 return getBounds();
5264 } else {
5265 return mCrop;
5266 }
5267 }
Robert Carr578038f2018-03-09 12:25:24 -08005268 class ReparentForDrawing {
5269 public:
5270 const sp<Layer>& oldParent;
5271 const sp<Layer>& newParent;
5272
Vishnu Nair4351ad52019-02-11 14:13:02 -08005273 ReparentForDrawing(const sp<Layer>& oldParent, const sp<Layer>& newParent,
5274 const Rect& drawingBounds)
Robert Carr578038f2018-03-09 12:25:24 -08005275 : oldParent(oldParent), newParent(newParent) {
Vishnu Nair4351ad52019-02-11 14:13:02 -08005276 // Compute and cache the bounds for the new parent layer.
5277 newParent->computeBounds(drawingBounds.toFloatRect(), ui::Transform());
Robert Carr15eae092018-03-23 13:43:53 -07005278 oldParent->setChildrenDrawingParent(newParent);
Robert Carr578038f2018-03-09 12:25:24 -08005279 }
Vishnu Nairbce6ffd2019-02-14 10:58:59 -08005280 ~ReparentForDrawing() { oldParent->setChildrenDrawingParent(oldParent); }
Robert Carr578038f2018-03-09 12:25:24 -08005281 };
5282
5283 void render(std::function<void()> drawLayers) override {
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005284 const Rect sourceCrop = getSourceCrop();
5285 // no need to check rotation because there is none
5286 mNeedsFiltering = sourceCrop.width() != getReqWidth() ||
5287 sourceCrop.height() != getReqHeight();
5288
Robert Carr578038f2018-03-09 12:25:24 -08005289 if (!mChildrenOnly) {
5290 mTransform = mLayer->getTransform().inverse();
5291 drawLayers();
5292 } else {
5293 Rect bounds = getBounds();
Lloyd Pique90c115d2018-09-18 21:39:42 -07005294 screenshotParentLayer = mFlinger->getFactory().createContainerLayer(
Lloyd Pique42ab75e2018-09-12 20:46:03 -07005295 LayerCreationArgs(mFlinger, nullptr, String8("Screenshot Parent"),
5296 bounds.getWidth(), bounds.getHeight(), 0));
Robert Carr578038f2018-03-09 12:25:24 -08005297
Vishnu Nair4351ad52019-02-11 14:13:02 -08005298 ReparentForDrawing reparent(mLayer, screenshotParentLayer, sourceCrop);
Robert Carr578038f2018-03-09 12:25:24 -08005299 drawLayers();
5300 }
5301 }
chaviwa76b2712017-09-20 12:02:26 -07005302
chaviwa76b2712017-09-20 12:02:26 -07005303 private:
chaviw7206d492017-11-10 16:16:12 -08005304 const sp<Layer> mLayer;
5305 const Rect mCrop;
Robert Carr578038f2018-03-09 12:25:24 -08005306
5307 // In the "childrenOnly" case we reparent the children to a screenshot
5308 // layer which has no properties set and which does not draw.
5309 sp<ContainerLayer> screenshotParentLayer;
Peiyong Linefefaac2018-08-17 12:27:51 -07005310 ui::Transform mTransform;
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005311 bool mNeedsFiltering;
Robert Carr578038f2018-03-09 12:25:24 -08005312
5313 SurfaceFlinger* mFlinger;
5314 const bool mChildrenOnly;
chaviwa76b2712017-09-20 12:02:26 -07005315 };
5316
5317 auto layerHandle = reinterpret_cast<Layer::Handle*>(layerHandleBinder.get());
5318 auto parent = layerHandle->owner.promote();
5319
Robert Carr2e102c92018-10-23 12:11:15 -07005320 if (parent == nullptr || parent->isRemovedFromCurrentState()) {
chaviw7206d492017-11-10 16:16:12 -08005321 ALOGE("captureLayers called with a removed parent");
5322 return NAME_NOT_FOUND;
5323 }
5324
Robert Carr578038f2018-03-09 12:25:24 -08005325 const int uid = IPCThreadState::self()->getCallingUid();
5326 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005327 if (!forSystem && parent->getCurrentState().flags & layer_state_t::eLayerSecure) {
Robert Carr578038f2018-03-09 12:25:24 -08005328 ALOGW("Attempting to capture secure layer: PERMISSION_DENIED");
5329 return PERMISSION_DENIED;
5330 }
5331
chaviw7206d492017-11-10 16:16:12 -08005332 Rect crop(sourceCrop);
5333 if (sourceCrop.width() <= 0) {
5334 crop.left = 0;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005335 crop.right = parent->getBufferSize(parent->getCurrentState()).getWidth();
chaviw7206d492017-11-10 16:16:12 -08005336 }
5337
5338 if (sourceCrop.height() <= 0) {
5339 crop.top = 0;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005340 crop.bottom = parent->getBufferSize(parent->getCurrentState()).getHeight();
chaviw7206d492017-11-10 16:16:12 -08005341 }
5342
5343 int32_t reqWidth = crop.width() * frameScale;
5344 int32_t reqHeight = crop.height() * frameScale;
5345
Chia-I Wu20261cb2018-08-23 12:55:44 -07005346 // really small crop or frameScale
5347 if (reqWidth <= 0) {
5348 reqWidth = 1;
5349 }
5350 if (reqHeight <= 0) {
5351 reqHeight = 1;
5352 }
5353
Peiyong Lin0e003c92018-09-17 11:09:51 -07005354 LayerRenderArea renderArea(this, parent, crop, reqWidth, reqHeight, reqDataspace, childrenOnly);
chaviw7206d492017-11-10 16:16:12 -08005355
Robert Carr578038f2018-03-09 12:25:24 -08005356 auto traverseLayers = [parent, childrenOnly](const LayerVector::Visitor& visitor) {
chaviwa76b2712017-09-20 12:02:26 -07005357 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
5358 if (!layer->isVisible()) {
5359 return;
Robert Carr578038f2018-03-09 12:25:24 -08005360 } else if (childrenOnly && layer == parent.get()) {
5361 return;
chaviwa76b2712017-09-20 12:02:26 -07005362 }
5363 visitor(layer);
5364 });
5365 };
Peiyong Lin0e003c92018-09-17 11:09:51 -07005366 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat, false);
chaviwa76b2712017-09-20 12:02:26 -07005367}
5368
5369status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5370 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005371 sp<GraphicBuffer>* outBuffer,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005372 const ui::PixelFormat reqPixelFormat,
chaviwa76b2712017-09-20 12:02:26 -07005373 bool useIdentityTransform) {
5374 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005375
Peiyong Lin0e003c92018-09-17 11:09:51 -07005376 // TODO(b/116112787) Make buffer usage a parameter.
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005377 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
5378 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Lloyd Pique90c115d2018-09-18 21:39:42 -07005379 *outBuffer =
5380 getFactory().createGraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
5381 static_cast<android_pixel_format>(reqPixelFormat), 1,
5382 usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005383
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005384 return captureScreenCommon(renderArea, traverseLayers, *outBuffer, useIdentityTransform);
Dan Stozaec460082018-12-17 15:35:09 -08005385}
5386
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005387status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5388 TraverseLayersFunction traverseLayers,
5389 const sp<GraphicBuffer>& buffer,
5390 bool useIdentityTransform) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005391 // This mutex protects syncFd and captureResult for communication of the return values from the
5392 // main thread back to this Binder thread
5393 std::mutex captureMutex;
5394 std::condition_variable captureCondition;
5395 std::unique_lock<std::mutex> captureLock(captureMutex);
5396 int syncFd = -1;
5397 std::optional<status_t> captureResult;
5398
Robert Carr03480e22018-01-04 16:02:06 -08005399 const int uid = IPCThreadState::self()->getCallingUid();
5400 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5401
Dominik Laskowski8c001672018-05-30 16:52:06 -07005402 sp<LambdaMessage> message = new LambdaMessage([&] {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005403 // If there is a refresh pending, bug out early and tell the binder thread to try again
5404 // after the refresh.
5405 if (mRefreshPending) {
5406 ATRACE_NAME("Skipping screenshot for now");
5407 std::unique_lock<std::mutex> captureLock(captureMutex);
5408 captureResult = std::make_optional<status_t>(EAGAIN);
5409 captureCondition.notify_one();
5410 return;
5411 }
5412
5413 status_t result = NO_ERROR;
5414 int fd = -1;
5415 {
5416 Mutex::Autolock _l(mStateLock);
Dominik Laskowski8c001672018-05-30 16:52:06 -07005417 renderArea.render([&] {
Dan Stozaec460082018-12-17 15:35:09 -08005418 result = captureScreenImplLocked(renderArea, traverseLayers, buffer.get(),
Robert Carr578038f2018-03-09 12:25:24 -08005419 useIdentityTransform, forSystem, &fd);
5420 });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005421 }
5422
5423 {
5424 std::unique_lock<std::mutex> captureLock(captureMutex);
5425 syncFd = fd;
5426 captureResult = std::make_optional<status_t>(result);
5427 captureCondition.notify_one();
5428 }
5429 });
5430
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005431 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005432 if (result == NO_ERROR) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07005433 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005434 while (*captureResult == EAGAIN) {
5435 captureResult.reset();
5436 result = postMessageAsync(message);
5437 if (result != NO_ERROR) {
5438 return result;
5439 }
Dominik Laskowski8c001672018-05-30 16:52:06 -07005440 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005441 }
5442 result = *captureResult;
5443 }
5444
5445 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005446 sync_wait(syncFd, -1);
5447 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005448 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005449
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005450 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005451}
5452
chaviwa76b2712017-09-20 12:02:26 -07005453void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
Chia-I Wu1be50b52018-08-29 10:44:48 -07005454 TraverseLayersFunction traverseLayers,
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005455 ANativeWindowBuffer* buffer, bool useIdentityTransform,
5456 int* outSyncFd) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07005457 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07005458
chaviwa76b2712017-09-20 12:02:26 -07005459 const auto reqWidth = renderArea.getReqWidth();
5460 const auto reqHeight = renderArea.getReqHeight();
Chia-I Wuf2aa3112018-08-27 14:54:37 -07005461 const auto sourceCrop = renderArea.getSourceCrop();
5462 const auto rotation = renderArea.getRotationFlags();
Dan Stozac1879002014-05-22 15:59:05 -07005463
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005464 renderengine::DisplaySettings clientCompositionDisplay;
5465 std::vector<renderengine::LayerSettings> clientCompositionLayers;
Romain Guy88d37dd2017-05-26 17:57:05 -07005466
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005467 // assume that bounds are never offset, and that they are the same as the
5468 // buffer bounds.
5469 clientCompositionDisplay.physicalDisplay = Rect(reqWidth, reqHeight);
5470 ui::Transform transform = renderArea.getTransform();
5471 mat4 m;
5472 m[0][0] = transform[0][0];
5473 m[0][1] = transform[0][1];
5474 m[0][3] = transform[0][2];
5475 m[1][0] = transform[1][0];
5476 m[1][1] = transform[1][1];
5477 m[1][3] = transform[1][2];
5478 m[3][0] = transform[2][0];
5479 m[3][1] = transform[2][1];
5480 m[3][3] = transform[2][2];
Mathias Agopian180f10d2013-04-10 22:55:41 -07005481
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005482 clientCompositionDisplay.globalTransform = m;
5483 mat4 rotMatrix;
5484 // Displacement for repositioning the clipping rectangle after rotating it
5485 // with the rotation hint.
5486 int displacementX = 0;
5487 int displacementY = 0;
5488 float rot90InRadians = 2.0f * static_cast<float>(M_PI) / 4.0f;
5489 switch (rotation) {
5490 case ui::Transform::ROT_90:
5491 rotMatrix = mat4::rotate(rot90InRadians, vec3(0, 0, 1));
5492 displacementX = reqWidth;
5493 break;
5494 case ui::Transform::ROT_180:
5495 rotMatrix = mat4::rotate(rot90InRadians * 2.0f, vec3(0, 0, 1));
5496 displacementX = reqWidth;
5497 displacementY = reqHeight;
5498 break;
5499 case ui::Transform::ROT_270:
5500 rotMatrix = mat4::rotate(rot90InRadians * 3.0f, vec3(0, 0, 1));
5501 displacementY = reqHeight;
5502 break;
5503 default:
5504 break;
5505 }
5506 // We need to transform the clipping window into the right spot.
5507 // First, rotate the clipping rectangle by the rotation hint to get the
5508 // right orientation
5509 const vec4 clipTL = vec4(sourceCrop.left, sourceCrop.top, 0, 1);
5510 const vec4 clipBR = vec4(sourceCrop.right, sourceCrop.bottom, 0, 1);
5511 const vec4 rotClipTL = rotMatrix * clipTL;
5512 const vec4 rotClipBR = rotMatrix * clipBR;
5513 const int newClipLeft = std::min(rotClipTL[0], rotClipBR[0]);
5514 const int newClipTop = std::min(rotClipTL[1], rotClipBR[1]);
5515 const int newClipRight = std::max(rotClipTL[0], rotClipBR[0]);
5516 const int newClipBottom = std::max(rotClipTL[1], rotClipBR[1]);
5517
5518 // Now reposition the clipping rectangle with the displacement vector
5519 // computed above.
5520 const mat4 displacementMat = mat4::translate(vec4(displacementX, displacementY, 0, 1));
5521
5522 clientCompositionDisplay.clip =
5523 Rect(newClipLeft + displacementX, newClipTop + displacementY,
5524 newClipRight + displacementX, newClipBottom + displacementY);
5525
5526 // We need to perform the same transformation in layer space, so propagate
5527 // it to the global transform.
5528 mat4 clipTransform = displacementMat * rotMatrix;
5529 clientCompositionDisplay.globalTransform *= clipTransform;
5530 clientCompositionDisplay.outputDataspace = renderArea.getReqDataSpace();
5531 clientCompositionDisplay.maxLuminance = DisplayDevice::sDefaultMaxLumiance;
Mathias Agopian180f10d2013-04-10 22:55:41 -07005532
chaviw50da5042018-04-09 13:49:37 -07005533 const float alpha = RenderArea::getCaptureFillValue(renderArea.getCaptureFill());
Mathias Agopian180f10d2013-04-10 22:55:41 -07005534
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005535 renderengine::LayerSettings fillLayer;
5536 fillLayer.source.buffer.buffer = nullptr;
5537 fillLayer.source.solidColor = half3(0.0, 0.0, 0.0);
5538 fillLayer.geometry.boundaries = FloatRect(0.0, 0.0, 1.0, 1.0);
5539 fillLayer.alpha = half(alpha);
5540 clientCompositionLayers.push_back(fillLayer);
5541
5542 Region clearRegion = Region::INVALID_REGION;
chaviwa76b2712017-09-20 12:02:26 -07005543 traverseLayers([&](Layer* layer) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005544 renderengine::LayerSettings layerSettings;
5545 bool prepared = layer->prepareClientLayer(renderArea, useIdentityTransform, clearRegion,
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005546 false, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005547 if (prepared) {
5548 clientCompositionLayers.push_back(layerSettings);
5549 }
chaviwa76b2712017-09-20 12:02:26 -07005550 });
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005551
5552 clientCompositionDisplay.clearRegion = clearRegion;
Alec Mouri6338c9d2019-02-07 16:57:51 -08005553 // Use an empty fence for the buffer fence, since we just created the buffer so
5554 // there is no need for synchronization with the GPU.
5555 base::unique_fd bufferFence;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005556 base::unique_fd drawFence;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005557 getRenderEngine().useProtectedContext(false);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005558 getRenderEngine().drawLayers(clientCompositionDisplay, clientCompositionLayers, buffer,
Alec Mouri6338c9d2019-02-07 16:57:51 -08005559 std::move(bufferFence), &drawFence);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005560
5561 *outSyncFd = drawFence.release();
Mathias Agopian180f10d2013-04-10 22:55:41 -07005562}
5563
chaviwa76b2712017-09-20 12:02:26 -07005564status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
5565 TraverseLayersFunction traverseLayers,
5566 ANativeWindowBuffer* buffer,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005567 bool useIdentityTransform,
Robert Carr03480e22018-01-04 16:02:06 -08005568 bool forSystem,
chaviwa76b2712017-09-20 12:02:26 -07005569 int* outSyncFd) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005570 ATRACE_CALL();
5571
Pablo Ceballosb5b35632016-02-23 11:18:51 -08005572 bool secureLayerIsVisible = false;
chaviwa76b2712017-09-20 12:02:26 -07005573
5574 traverseLayers([&](Layer* layer) {
5575 secureLayerIsVisible = secureLayerIsVisible || (layer->isVisible() && layer->isSecure());
5576 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08005577
Robert Carr03480e22018-01-04 16:02:06 -08005578 // We allow the system server to take screenshots of secure layers for
5579 // use in situations like the Screen-rotation animation and place
5580 // the impetus on WindowManager to not persist them.
5581 if (secureLayerIsVisible && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08005582 ALOGW("FB is protected: PERMISSION_DENIED");
5583 return PERMISSION_DENIED;
5584 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005585 renderScreenImplLocked(renderArea, traverseLayers, buffer, useIdentityTransform, outSyncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005586 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07005587}
5588
chaviw95ef3c42019-02-14 10:55:09 -08005589void SurfaceFlinger::setInputWindowsFinished() {
5590 Mutex::Autolock _l(mStateLock);
5591
5592 mPendingSyncInputWindows = false;
5593 mTransactionCV.broadcast();
5594}
chaviw5f21a5e2019-02-14 10:00:34 -08005595
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005596// ---------------------------------------------------------------------------
5597
Dan Stoza412903f2017-04-27 13:42:17 -07005598void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
5599 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07005600}
5601
Dan Stoza412903f2017-04-27 13:42:17 -07005602void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
5603 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07005604}
5605
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005606void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& display,
chaviwa76b2712017-09-20 12:02:26 -07005607 const LayerVector::Visitor& visitor) {
5608 // We loop through the first level of layers without traversing,
chaviw0e3479f2018-09-10 16:49:30 -07005609 // as we need to determine which layers belong to the requested display.
chaviwa76b2712017-09-20 12:02:26 -07005610 for (const auto& layer : mDrawingState.layersSortedByZ) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005611 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
chaviwa76b2712017-09-20 12:02:26 -07005612 continue;
5613 }
Chia-I Wuec2d9852017-11-21 09:21:01 -08005614 // relative layers are traversed in Layer::traverseInZOrder
chaviwa76b2712017-09-20 12:02:26 -07005615 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005616 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01005617 return;
5618 }
chaviwa76b2712017-09-20 12:02:26 -07005619 if (!layer->isVisible()) {
5620 return;
5621 }
5622 visitor(layer);
5623 });
5624 }
5625}
5626
Ady Abraham838de062019-02-04 10:24:03 -08005627void SurfaceFlinger::setAllowedDisplayConfigsInternal(
5628 const android::sp<android::IBinder>& displayToken,
5629 std::unique_ptr<const AllowedDisplayConfigs>&& allowedConfigs) {
5630 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5631 if (!displayId) {
5632 ALOGE("setAllowedDisplayConfigsInternal: getPhysicalDisplayId failed");
5633 return;
5634 }
5635
5636 ALOGV("Updating allowed configs");
5637 {
5638 std::lock_guard lock(mAllowedConfigsLock);
5639 mAllowedConfigs[*displayId] = std::move(allowedConfigs);
5640 }
5641
5642 // make sure that the current config is still allowed
5643 int currentConfigIndex = getHwComposer().getActiveConfigIndex(*displayId);
5644 if (!isConfigAllowed(*displayId, currentConfigIndex)) {
Ady Abraham1902d072019-03-01 17:18:59 -08005645 for (const auto& [type, config] : mRefreshRateConfigs[*displayId]->getRefreshRates()) {
5646 if (isConfigAllowed(*displayId, config.configId)) {
Ady Abraham838de062019-02-04 10:24:03 -08005647 // TODO: we switch to the first allowed config. In the future
5648 // we may want to enhance this logic to pick a similar config
5649 // to the current one
Ady Abraham1902d072019-03-01 17:18:59 -08005650 ALOGV("Old config is not allowed - switching to config %d", config.configId);
Ana Krulec8d3e4f32019-03-05 10:40:33 -08005651 setDesiredActiveConfig(displayToken, config.configId,
5652 Scheduler::ConfigEvent::Changed);
Ady Abraham838de062019-02-04 10:24:03 -08005653 break;
5654 }
5655 }
5656 }
5657}
5658
5659status_t SurfaceFlinger::setAllowedDisplayConfigs(const android::sp<android::IBinder>& displayToken,
5660 const std::vector<int32_t>& allowedConfigs) {
5661 ATRACE_CALL();
5662
5663 if (!displayToken) {
5664 ALOGE("setAllowedDisplayConfigs: displayToken is null");
5665 return BAD_VALUE;
5666 }
5667
5668 if (!allowedConfigs.size()) {
5669 ALOGE("setAllowedDisplayConfigs: empty config set provided");
5670 return BAD_VALUE;
5671 }
5672
5673 {
5674 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
5675 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5676 if (!displayId) {
5677 ALOGE("setAllowedDisplayConfigs: display not found");
5678 return NAME_NOT_FOUND;
5679 }
5680 }
5681
5682 auto allowedDisplayConfigsBuilder = AllowedDisplayConfigs::Builder();
5683 for (int config : allowedConfigs) {
5684 ALOGV("setAllowedDisplayConfigs: Adding config to the allowed configs = %d", config);
5685 allowedDisplayConfigsBuilder.addConfig(config);
5686 }
5687 auto allowedDisplayConfigs = allowedDisplayConfigsBuilder.build();
5688 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
5689 setAllowedDisplayConfigsInternal(displayToken, std::move(allowedDisplayConfigs));
5690 }));
5691 return NO_ERROR;
5692}
5693
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08005694status_t SurfaceFlinger::getAllowedDisplayConfigs(const android::sp<android::IBinder>& displayToken,
5695 std::vector<int32_t>* outAllowedConfigs) {
5696 ATRACE_CALL();
5697
5698 if (!displayToken) {
5699 ALOGE("getAllowedDisplayConfigs: displayToken is null");
5700 return BAD_VALUE;
5701 }
5702
5703 if (!outAllowedConfigs) {
5704 ALOGE("getAllowedDisplayConfigs: outAllowedConfigs is null");
5705 return BAD_VALUE;
5706 }
5707
5708 ConditionalLock stateLock(mStateLock, std::this_thread::get_id() != mMainThreadId);
5709 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
5710 if (!displayId) {
5711 ALOGE("getAllowedDisplayConfigs: display not found");
5712 return NAME_NOT_FOUND;
5713 }
5714
5715 std::lock_guard allowedConfigLock(mAllowedConfigsLock);
5716 auto allowedConfigIterator = mAllowedConfigs.find(displayId.value());
5717 if (allowedConfigIterator != mAllowedConfigs.end()) {
5718 allowedConfigIterator->second->getAllowedConfigs(outAllowedConfigs);
5719 }
5720
5721 return NO_ERROR;
5722}
5723
chaviw291d88a2019-02-14 10:33:58 -08005724// ----------------------------------------------------------------------------
5725
5726void SetInputWindowsListener::onSetInputWindowsFinished() {
5727 mFlinger->setInputWindowsFinished();
5728}
5729
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005730}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07005731
Lloyd Pique074e8122018-07-26 12:57:23 -07005732
Mathias Agopian3f844832013-08-07 21:24:32 -07005733#if defined(__gl_h_)
5734#error "don't include gl/gl.h in this file"
5735#endif
5736
5737#if defined(__gl2_h_)
5738#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08005739#endif