blob: a96305e4739fd3836f50aa0c7778719c247a3c51 [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"
Ady Abraham03b02dd2019-03-21 15:40:11 -070087#include "RefreshRateOverlay.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -070088#include "StartPropertySetThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080089#include "SurfaceFlinger.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -070090#include "SurfaceInterceptor.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080091
Steven Thomasb02664d2017-07-26 18:48:28 -070092#include "DisplayHardware/ComposerHal.h"
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070093#include "DisplayHardware/DisplayIdentification.h"
Mathias Agopiana4912602012-07-12 14:25:33 -070094#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070095#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070096#include "DisplayHardware/VirtualDisplaySurface.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070097#include "Effects/Daltonizer.h"
Dominik Laskowski9dab3432019-03-27 13:21:10 -070098#include "RegionSamplingThread.h"
Ana Krulecfefcb582018-08-07 14:22:37 -070099#include "Scheduler/DispSync.h"
Ana Krulec241cf832018-08-10 15:03:23 -0700100#include "Scheduler/DispSyncSource.h"
Ana Krulecfefcb582018-08-07 14:22:37 -0700101#include "Scheduler/EventControlThread.h"
102#include "Scheduler/EventThread.h"
Ana Krulec47454452018-08-14 11:04:14 -0700103#include "Scheduler/InjectVSyncSource.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -0700104#include "Scheduler/MessageQueue.h"
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700105#include "Scheduler/PhaseOffsets.h"
Ana Krulec98b5b242018-08-10 15:03:23 -0700106#include "Scheduler/Scheduler.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -0800107#include "TimeStats/TimeStats.h"
Ana Krulecfefcb582018-08-07 14:22:37 -0700108
Mathias Agopianff2ed702013-09-01 21:36:12 -0700109#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -0700110
David Sodman7e4ae112018-02-09 15:02:28 -0800111#include "android-base/stringprintf.h"
112
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900113#include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h>
Iris Chang7501ed62018-04-30 14:45:42 +0800114#include <android/hardware/configstore/1.1/ISurfaceFlingerConfigs.h>
115#include <android/hardware/configstore/1.1/types.h>
Ady Abraham8532d012019-05-08 14:50:56 -0700116#include <android/hardware/power/1.0/IPower.h>
Jaesoo Lee43518572017-01-23 19:03:16 +0900117#include <configstore/Utils.h>
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900118
chaviw1d044282017-09-27 12:19:28 -0700119#include <layerproto/LayerProtoParser.h>
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900120#include "SurfaceFlingerProperties.h"
chaviw1d044282017-09-27 12:19:28 -0700121
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700123
Jaesoo Lee43518572017-01-23 19:03:16 +0900124using namespace android::hardware::configstore;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900125using namespace android::hardware::configstore::V1_0;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900126using namespace android::sysprop;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -0800127
Ady Abraham8532d012019-05-08 14:50:56 -0700128using android::hardware::power::V1_0::PowerHint;
Yiwei Zhang5434a782018-12-05 18:06:32 -0800129using base::StringAppendF;
Peiyong Lin9f034472018-03-28 15:29:00 -0700130using ui::ColorMode;
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700131using ui::Dataspace;
Daniel Solomon42d04562019-01-20 21:03:19 -0800132using ui::DisplayPrimaries;
Peiyong Lin62665892018-04-16 11:07:44 -0700133using ui::Hdr;
Peiyong Lin0e7a7912018-04-05 14:36:36 -0700134using ui::RenderIntent;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900135
Steven Thomasb02664d2017-07-26 18:48:28 -0700136namespace {
Peiyong Linfca547f2018-07-09 13:03:33 -0700137
138#pragma clang diagnostic push
139#pragma clang diagnostic error "-Wswitch-enum"
140
141bool isWideColorMode(const ColorMode colorMode) {
142 switch (colorMode) {
143 case ColorMode::DISPLAY_P3:
144 case ColorMode::ADOBE_RGB:
145 case ColorMode::DCI_P3:
146 case ColorMode::BT2020:
Valerie Hau9758ae02018-10-09 16:05:09 -0700147 case ColorMode::DISPLAY_BT2020:
Peiyong Linfca547f2018-07-09 13:03:33 -0700148 case ColorMode::BT2100_PQ:
149 case ColorMode::BT2100_HLG:
150 return true;
151 case ColorMode::NATIVE:
152 case ColorMode::STANDARD_BT601_625:
153 case ColorMode::STANDARD_BT601_625_UNADJUSTED:
154 case ColorMode::STANDARD_BT601_525:
155 case ColorMode::STANDARD_BT601_525_UNADJUSTED:
156 case ColorMode::STANDARD_BT709:
157 case ColorMode::SRGB:
158 return false;
159 }
160 return false;
161}
162
Peiyong Lin34ea5b92019-03-15 18:40:15 -0700163bool isHdrColorMode(const ColorMode colorMode) {
164 switch (colorMode) {
165 case ColorMode::BT2100_PQ:
166 case ColorMode::BT2100_HLG:
167 return true;
168 case ColorMode::DISPLAY_P3:
169 case ColorMode::ADOBE_RGB:
170 case ColorMode::DCI_P3:
171 case ColorMode::BT2020:
172 case ColorMode::DISPLAY_BT2020:
173 case ColorMode::NATIVE:
174 case ColorMode::STANDARD_BT601_625:
175 case ColorMode::STANDARD_BT601_625_UNADJUSTED:
176 case ColorMode::STANDARD_BT601_525:
177 case ColorMode::STANDARD_BT601_525_UNADJUSTED:
178 case ColorMode::STANDARD_BT709:
179 case ColorMode::SRGB:
180 return false;
181 }
182 return false;
183}
184
Chia-I Wuc80dcbb2018-08-24 15:34:02 -0700185ui::Transform::orientation_flags fromSurfaceComposerRotation(ISurfaceComposer::Rotation rotation) {
186 switch (rotation) {
187 case ISurfaceComposer::eRotateNone:
188 return ui::Transform::ROT_0;
189 case ISurfaceComposer::eRotate90:
190 return ui::Transform::ROT_90;
191 case ISurfaceComposer::eRotate180:
192 return ui::Transform::ROT_180;
193 case ISurfaceComposer::eRotate270:
194 return ui::Transform::ROT_270;
195 }
196 ALOGE("Invalid rotation passed to captureScreen(): %d\n", rotation);
197 return ui::Transform::ROT_0;
198}
199
Peiyong Linfca547f2018-07-09 13:03:33 -0700200#pragma clang diagnostic pop
201
Steven Thomasb02664d2017-07-26 18:48:28 -0700202class ConditionalLock {
203public:
204 ConditionalLock(Mutex& mutex, bool lock) : mMutex(mutex), mLocked(lock) {
205 if (lock) {
206 mMutex.lock();
207 }
208 }
209 ~ConditionalLock() { if (mLocked) mMutex.unlock(); }
210private:
211 Mutex& mMutex;
212 bool mLocked;
213};
Peiyong Linfca547f2018-07-09 13:03:33 -0700214
Peiyong Lin9d846a52018-11-05 13:18:20 -0800215// Currently we only support V0_SRGB and DISPLAY_P3 as composition preference.
216bool validateCompositionDataspace(Dataspace dataspace) {
217 return dataspace == Dataspace::V0_SRGB || dataspace == Dataspace::DISPLAY_P3;
218}
219
Steven Thomasb02664d2017-07-26 18:48:28 -0700220} // namespace anonymous
221
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800222// ---------------------------------------------------------------------------
223
Mathias Agopian99b49842011-06-27 16:05:52 -0700224const String16 sHardwareTest("android.permission.HARDWARE_TEST");
225const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
226const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
227const String16 sDump("android.permission.DUMP");
228
229// ---------------------------------------------------------------------------
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700230int64_t SurfaceFlinger::dispSyncPresentTimeOffset;
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700231bool SurfaceFlinger::useHwcForRgbToYuv;
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800232uint64_t SurfaceFlinger::maxVirtualDisplaySize;
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800233bool SurfaceFlinger::hasSyncFramework;
Steven Thomas050b2c82017-03-06 11:45:16 -0800234bool SurfaceFlinger::useVrFlinger;
Fabien Sanglard1971b632017-03-10 14:50:03 -0800235int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600236bool SurfaceFlinger::hasWideColorDisplay;
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700237int SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientationDefault;
Peiyong Lin13effd12018-07-24 17:01:47 -0700238bool SurfaceFlinger::useColorManagement;
Peiyong Linb3839ad2018-09-05 15:37:19 -0700239bool SurfaceFlinger::useContextPriority;
Peiyong Linc6780972018-10-28 15:24:08 -0700240Dataspace SurfaceFlinger::defaultCompositionDataspace = Dataspace::V0_SRGB;
241ui::PixelFormat SurfaceFlinger::defaultCompositionPixelFormat = ui::PixelFormat::RGBA_8888;
242Dataspace SurfaceFlinger::wideColorGamutCompositionDataspace = Dataspace::V0_SRGB;
243ui::PixelFormat SurfaceFlinger::wideColorGamutCompositionPixelFormat = ui::PixelFormat::RGBA_8888;
Mathias Agopian99b49842011-06-27 16:05:52 -0700244
Kalle Raitaa099a242017-01-11 11:17:29 -0800245std::string getHwcServiceName() {
246 char value[PROPERTY_VALUE_MAX] = {};
247 property_get("debug.sf.hwc_service_name", value, "default");
248 ALOGI("Using HWComposer service: '%s'", value);
249 return std::string(value);
250}
251
252bool useTrebleTestingOverride() {
253 char value[PROPERTY_VALUE_MAX] = {};
254 property_get("debug.sf.treble_testing_override", value, "false");
255 ALOGI("Treble testing override: '%s'", value);
256 return std::string(value) == "true";
257}
258
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800259std::string decodeDisplayColorSetting(DisplayColorSetting displayColorSetting) {
260 switch(displayColorSetting) {
261 case DisplayColorSetting::MANAGED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700262 return std::string("Managed");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800263 case DisplayColorSetting::UNMANAGED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700264 return std::string("Unmanaged");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800265 case DisplayColorSetting::ENHANCED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700266 return std::string("Enhanced");
267 default:
268 return std::string("Unknown ") +
269 std::to_string(static_cast<int>(displayColorSetting));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800270 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800271}
272
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700273SurfaceFlingerBE::SurfaceFlingerBE() : mHwcServiceName(getHwcServiceName()) {}
David Sodmanbc815282017-11-05 18:57:52 -0800274
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700275SurfaceFlinger::SurfaceFlinger(Factory& factory, SkipInitializationTag)
276 : mFactory(factory),
277 mPhaseOffsets(mFactory.createPhaseOffsets()),
278 mInterceptor(mFactory.createSurfaceInterceptor(this)),
279 mTimeStats(mFactory.createTimeStats()),
280 mEventQueue(mFactory.createMessageQueue()),
281 mCompositionEngine(mFactory.createCompositionEngine()) {}
Lloyd Piqueac648ee2018-01-17 13:42:24 -0800282
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700283SurfaceFlinger::SurfaceFlinger(Factory& factory) : SurfaceFlinger(factory, SkipInitialization) {
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800284 ALOGI("SurfaceFlinger is starting");
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800285
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900286 hasSyncFramework = running_without_sync_framework(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800287
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900288 dispSyncPresentTimeOffset = present_time_offset_from_vsync_ns(0);
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700289
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900290 useHwcForRgbToYuv = force_hwc_copy_for_virtual_displays(false);
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700291
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900292 maxVirtualDisplaySize = max_virtual_display_dimension(0);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800293
Steven Thomas050b2c82017-03-06 11:45:16 -0800294 // Vr flinger is only enabled on Daydream ready devices.
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900295 useVrFlinger = use_vr_flinger(false);
Steven Thomas050b2c82017-03-06 11:45:16 -0800296
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900297 maxFrameBufferAcquiredBuffers = max_frame_buffer_acquired_buffers(2);
Fabien Sanglard1971b632017-03-10 14:50:03 -0800298
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900299 hasWideColorDisplay = has_wide_color_display(false);
Peiyong Lin0256f722018-08-31 15:45:10 -0700300
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900301 useColorManagement = use_color_management(false);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600302
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900303 mDefaultCompositionDataspace =
304 static_cast<ui::Dataspace>(default_composition_dataspace(Dataspace::V0_SRGB));
305 mWideColorGamutCompositionDataspace =
306 static_cast<ui::Dataspace>(wcg_composition_dataspace(Dataspace::V0_SRGB));
307 defaultCompositionDataspace = mDefaultCompositionDataspace;
308 wideColorGamutCompositionDataspace = mWideColorGamutCompositionDataspace;
309 defaultCompositionPixelFormat = static_cast<ui::PixelFormat>(
310 default_composition_pixel_format(ui::PixelFormat::RGBA_8888));
311 wideColorGamutCompositionPixelFormat =
312 static_cast<ui::PixelFormat>(wcg_composition_pixel_format(ui::PixelFormat::RGBA_8888));
Peiyong Linb3839ad2018-09-05 15:37:19 -0700313
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900314 useContextPriority = use_context_priority(true);
Iris Chang7501ed62018-04-30 14:45:42 +0800315
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900316 auto tmpPrimaryDisplayOrientation = primary_display_orientation(
317 SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_0);
318 switch (tmpPrimaryDisplayOrientation) {
319 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_90:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700320 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation90;
Iris Chang7501ed62018-04-30 14:45:42 +0800321 break;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900322 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_180:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700323 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation180;
Iris Chang7501ed62018-04-30 14:45:42 +0800324 break;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900325 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_270:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700326 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation270;
Iris Chang7501ed62018-04-30 14:45:42 +0800327 break;
328 default:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700329 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientationDefault;
Iris Chang7501ed62018-04-30 14:45:42 +0800330 break;
331 }
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700332 ALOGV("Primary Display Orientation is set to %2d.", SurfaceFlinger::primaryDisplayOrientation);
Iris Chang7501ed62018-04-30 14:45:42 +0800333
Sundong Ahn85131bd2019-02-18 15:51:53 +0900334 mInternalDisplayPrimaries = sysprop::getDisplayNativePrimaries();
Daniel Solomon42d04562019-01-20 21:03:19 -0800335
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800336 // debugging stuff...
337 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700338
Mathias Agopianb4b17302013-03-20 18:36:41 -0700339 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700340 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700341
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800342 property_get("debug.sf.showupdates", value, "0");
343 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700344
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700345 ALOGI_IF(mDebugRegion, "showupdates enabled");
Orion Hodson34397da2019-02-04 09:36:10 +0000346
347 // DDMS debugging deprecated (b/120782499)
348 property_get("debug.sf.ddms", value, "0");
349 int debugDdms = atoi(value);
350 ALOGI_IF(debugDdms, "DDMS debugging not supported");
Dan Stozac5da2712016-07-20 15:38:12 -0700351
352 property_get("debug.sf.disable_backpressure", value, "0");
353 mPropagateBackpressure = !atoi(value);
354 ALOGI_IF(!mPropagateBackpressure, "Disabling backpressure propagation");
Dan Stoza8cf150a2016-08-02 10:27:31 -0700355
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800356 property_get("debug.sf.enable_hwc_vds", value, "0");
357 mUseHwcVirtualDisplays = atoi(value);
Chia-I Wu11d10612018-06-21 15:41:13 +0800358 ALOGI_IF(mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800359
Yiwei Zhangb770ed32018-12-17 17:44:28 -0800360 property_get("ro.sf.disable_triple_buffer", value, "0");
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800361 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800362 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700363
Yiwei Zhang243b3782018-05-15 17:40:04 -0700364 const size_t defaultListSize = MAX_LAYERS;
Dan Stoza0a0158c2018-03-16 13:38:54 -0700365 auto listSize = property_get_int32("debug.sf.max_igbp_list_size", int32_t(defaultListSize));
366 mMaxGraphicBufferProducerListSize = (listSize > 0) ? size_t(listSize) : defaultListSize;
367
Ana Krulece5a06e02019-03-06 17:09:03 -0800368 mUseSmart90ForVideo = use_smart_90_for_video(false);
Ana Krulecba13ab32019-02-20 14:14:12 -0800369 property_get("debug.sf.use_smart_90_for_video", value, "0");
Ana Krulece5a06e02019-03-06 17:09:03 -0800370
371 int int_value = atoi(value);
372 if (int_value) {
373 mUseSmart90ForVideo = true;
374 }
Ana Krulecba13ab32019-02-20 14:14:12 -0800375
Dan Stozaec460082018-12-17 15:35:09 -0800376 property_get("debug.sf.luma_sampling", value, "1");
377 mLumaSampling = atoi(value);
378
Ana Krulec757f63a2019-01-25 10:46:18 -0800379 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abraham45e4e362019-06-07 18:20:51 -0700380 mVsyncModulator.setPhaseOffsets(early, gl, late,
381 mPhaseOffsets->getOffsetThresholdForNextVsync());
Dan Stoza84d619e2018-03-28 17:07:36 -0700382
Romain Guy11d63f42017-07-20 12:47:14 -0700383 // We should be reading 'persist.sys.sf.color_saturation' here
384 // but since /data may be encrypted, we need to wait until after vold
385 // comes online to attempt to read the property. The property is
386 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800387
388 if (useTrebleTestingOverride()) {
389 // Without the override SurfaceFlinger cannot connect to HIDL
390 // services that are not listed in the manifests. Considered
391 // deriving the setting from the set service name, but it
392 // would be brittle if the name that's not 'default' is used
393 // for production purposes later on.
394 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
395 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800396}
397
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800398void SurfaceFlinger::onFirstRef()
399{
Lloyd Pique3fcdef12018-01-22 17:14:00 -0800400 mEventQueue->init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800401}
402
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700403SurfaceFlinger::~SurfaceFlinger() = default;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800404
Dan Stozac7014012014-02-14 15:03:43 -0800405void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800406{
407 // the window manager died on us. prepare its eulogy.
408
Andy McFadden13a082e2012-08-24 10:16:42 -0700409 // restore initial conditions (default device unblank, etc)
410 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800411
412 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700413 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800414}
415
Robert Carr1db73f62016-12-21 12:58:51 -0800416static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700417 status_t err = client->initCheck();
418 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800419 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800420 }
Robert Carr1db73f62016-12-21 12:58:51 -0800421 return nullptr;
422}
423
424sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
425 return initClient(new Client(this));
426}
427
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700428sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
429 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700430{
431 class DisplayToken : public BBinder {
432 sp<SurfaceFlinger> flinger;
433 virtual ~DisplayToken() {
434 // no more references, this display must be terminated
435 Mutex::Autolock _l(flinger->mStateLock);
436 flinger->mCurrentState.displays.removeItem(this);
437 flinger->setTransactionFlags(eDisplayTransactionNeeded);
438 }
439 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700440 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700441 : flinger(flinger) {
442 }
443 };
444
445 sp<BBinder> token = new DisplayToken(this);
446
447 Mutex::Autolock _l(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700448 // Display ID is assigned when virtual display is allocated by HWC.
449 DisplayDeviceState state;
450 state.isSecure = secure;
451 state.displayName = displayName;
452 mCurrentState.displays.add(token, state);
453 mInterceptor->saveDisplayCreation(state);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700454 return token;
455}
456
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700457void SurfaceFlinger::destroyDisplay(const sp<IBinder>& displayToken) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700458 Mutex::Autolock _l(mStateLock);
459
Dominik Laskowski075d3172018-05-24 15:50:06 -0700460 ssize_t index = mCurrentState.displays.indexOfKey(displayToken);
461 if (index < 0) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700462 ALOGE("destroyDisplay: Invalid display token %p", displayToken.get());
Jesse Hall6c913be2013-08-08 12:15:49 -0700463 return;
464 }
465
Dominik Laskowski075d3172018-05-24 15:50:06 -0700466 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
467 if (!state.isVirtual()) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700468 ALOGE("destroyDisplay called for non-virtual display");
469 return;
470 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700471 mInterceptor->saveDisplayDeletion(state.sequenceId);
472 mCurrentState.displays.removeItemsAt(index);
Jesse Hall6c913be2013-08-08 12:15:49 -0700473 setTransactionFlags(eDisplayTransactionNeeded);
474}
475
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800476std::vector<PhysicalDisplayId> SurfaceFlinger::getPhysicalDisplayIds() const {
477 Mutex::Autolock lock(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700478
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800479 const auto internalDisplayId = getInternalDisplayIdLocked();
480 if (!internalDisplayId) {
481 return {};
Dominik Laskowski075d3172018-05-24 15:50:06 -0700482 }
483
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800484 std::vector<PhysicalDisplayId> displayIds;
485 displayIds.reserve(mPhysicalDisplayTokens.size());
486 displayIds.push_back(internalDisplayId->value);
487
488 for (const auto& [id, token] : mPhysicalDisplayTokens) {
489 if (id != *internalDisplayId) {
490 displayIds.push_back(id.value);
491 }
Mathias Agopiane57f2922012-08-09 16:29:12 -0700492 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700493
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800494 return displayIds;
495}
496
497sp<IBinder> SurfaceFlinger::getPhysicalDisplayToken(PhysicalDisplayId displayId) const {
498 Mutex::Autolock lock(mStateLock);
499 return getPhysicalDisplayTokenLocked(DisplayId{displayId});
Mathias Agopiane57f2922012-08-09 16:29:12 -0700500}
501
Ady Abraham37965d42018-11-01 13:43:32 -0700502status_t SurfaceFlinger::getColorManagement(bool* outGetColorManagement) const {
503 if (!outGetColorManagement) {
504 return BAD_VALUE;
505 }
506 *outGetColorManagement = useColorManagement;
507 return NO_ERROR;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700508}
509
Lloyd Pique441d5042018-10-18 16:49:51 -0700510HWComposer& SurfaceFlinger::getHwComposer() const {
511 return mCompositionEngine->getHwComposer();
512}
513
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700514renderengine::RenderEngine& SurfaceFlinger::getRenderEngine() const {
515 return mCompositionEngine->getRenderEngine();
516}
517
Lloyd Pique70d91362018-10-18 16:02:55 -0700518compositionengine::CompositionEngine& SurfaceFlinger::getCompositionEngine() const {
519 return *mCompositionEngine.get();
520}
521
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800522void SurfaceFlinger::bootFinished()
523{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700524 if (mStartPropertySetThread->join() != NO_ERROR) {
525 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800526 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800527 const nsecs_t now = systemTime();
528 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000529 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700530
531 // wait patiently for the window manager death
532 const String16 name("window");
533 sp<IBinder> window(defaultServiceManager()->getService(name));
534 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700535 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700536 }
Robert Carr720e5062018-07-30 17:45:14 -0700537 sp<IBinder> input(defaultServiceManager()->getService(
538 String16("inputflinger")));
539 if (input == nullptr) {
540 ALOGE("Failed to link to input service");
541 } else {
542 mInputFlinger = interface_cast<IInputFlinger>(input);
543 }
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700544
Steven Thomas050b2c82017-03-06 11:45:16 -0800545 if (mVrFlinger) {
546 mVrFlinger->OnBootFinished();
547 }
548
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700549 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700550 // formerly we would just kill the process, but we now ask it to exit so it
551 // can choose where to stop the animation.
552 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700553
554 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
555 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
556 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700557
Ana Krulecbd6654b2019-02-15 15:18:15 -0800558 postMessageAsync(new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS {
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800559 readPersistentProperties();
560 mBootStage = BootStage::FINISHED;
Ana Krulecbd6654b2019-02-15 15:18:15 -0800561
Ady Abraham97d04232019-03-05 19:48:12 -0800562 // set the refresh rate according to the policy
Alec Mouri0a1cc962019-03-14 12:33:02 -0700563 const auto& performanceRefreshRate =
Dominik Laskowski22488f62019-03-28 09:53:04 -0700564 mRefreshRateConfigs.getRefreshRate(RefreshRateType::PERFORMANCE);
Ady Abraham97d04232019-03-05 19:48:12 -0800565
Dominik Laskowski22488f62019-03-28 09:53:04 -0700566 if (performanceRefreshRate && isDisplayConfigAllowed(performanceRefreshRate->configId)) {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800567 setRefreshRateTo(RefreshRateType::PERFORMANCE, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800568 } else {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800569 setRefreshRateTo(RefreshRateType::DEFAULT, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800570 }
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800571 }));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800572}
573
Dan Stoza436ccf32018-06-21 12:10:12 -0700574uint32_t SurfaceFlinger::getNewTexture() {
575 {
576 std::lock_guard lock(mTexturePoolMutex);
577 if (!mTexturePool.empty()) {
578 uint32_t name = mTexturePool.back();
579 mTexturePool.pop_back();
580 ATRACE_INT("TexturePoolSize", mTexturePool.size());
581 return name;
582 }
583
584 // The pool was too small, so increase it for the future
585 ++mTexturePoolSize;
586 }
587
588 // The pool was empty, so we need to get a new texture name directly using a
589 // blocking call to the main thread
590 uint32_t name = 0;
591 postMessageSync(new LambdaMessage([&]() { getRenderEngine().genTextures(1, &name); }));
592 return name;
593}
594
Mathias Agopian3f844832013-08-07 21:24:32 -0700595void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Dan Stoza67765d82019-05-07 14:58:27 -0700596 std::lock_guard lock(mTexturePoolMutex);
597 // We don't change the pool size, so the fix-up logic in postComposition will decide whether
598 // to actually delete this or not based on mTexturePoolSize
599 mTexturePool.push_back(texture);
600 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700601}
602
Wei Wangf9b05ee2017-07-19 20:59:39 -0700603// Do not call property_set on main thread which will be blocked by init
604// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700605void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700606 ALOGI( "SurfaceFlinger's main thread ready to run. "
607 "Initializing graphics H/W...");
608
Ana Krulec757f63a2019-01-25 10:46:18 -0800609 ALOGI("Phase offset NS: %" PRId64 "", mPhaseOffsets->getCurrentAppOffset());
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900610
Steven Thomasb02664d2017-07-26 18:48:28 -0700611 Mutex::Autolock _l(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -0700612 // start the EventThread
Ana Krulecc2870422019-01-29 19:00:58 -0800613 mScheduler =
Ady Abraham09bd3922019-04-08 10:44:56 -0700614 getFactory().createScheduler([this](bool enabled) { setPrimaryVsyncEnabled(enabled); },
615 mRefreshRateConfigs);
Ana Krulecc2870422019-01-29 19:00:58 -0800616 auto resyncCallback =
617 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800618
Ana Krulecc2870422019-01-29 19:00:58 -0800619 mAppConnectionHandle =
Ady Abraham45e4e362019-06-07 18:20:51 -0700620 mScheduler->createConnection("app", mVsyncModulator.getOffsets().app,
621 mPhaseOffsets->getOffsetThresholdForNextVsync(),
Ana Krulecc2870422019-01-29 19:00:58 -0800622 resyncCallback,
623 impl::EventThread::InterceptVSyncsCallback());
Ady Abraham45e4e362019-06-07 18:20:51 -0700624 mSfConnectionHandle =
625 mScheduler->createConnection("sf", mVsyncModulator.getOffsets().sf,
626 mPhaseOffsets->getOffsetThresholdForNextVsync(),
627 resyncCallback, [this](nsecs_t timestamp) {
628 mInterceptor->saveVSyncEvent(timestamp);
629 });
Ana Krulecc2870422019-01-29 19:00:58 -0800630
631 mEventQueue->setEventConnection(mScheduler->getEventConnection(mSfConnectionHandle));
632 mVsyncModulator.setSchedulerAndHandles(mScheduler.get(), mAppConnectionHandle.get(),
633 mSfConnectionHandle.get());
634
Kevin DuBois413287f2019-02-25 08:46:47 -0800635 mRegionSamplingThread =
636 new RegionSamplingThread(*this, *mScheduler,
637 RegionSamplingThread::EnvironmentTimingTunables());
638
Steven Thomasb02664d2017-07-26 18:48:28 -0700639 // Get a RenderEngine for the given display / config (can't fail)
Peiyong Lin13effd12018-07-24 17:01:47 -0700640 int32_t renderEngineFeature = 0;
Peiyong Lin833074a2018-08-28 11:53:54 -0700641 renderEngineFeature |= (useColorManagement ?
642 renderengine::RenderEngine::USE_COLOR_MANAGEMENT : 0);
Peiyong Linb3839ad2018-09-05 15:37:19 -0700643 renderEngineFeature |= (useContextPriority ?
644 renderengine::RenderEngine::USE_HIGH_PRIORITY_CONTEXT : 0);
Peiyong Lin6a043d52019-04-01 17:18:21 -0700645 renderEngineFeature |=
646 (enable_protected_contents(false) ? renderengine::RenderEngine::ENABLE_PROTECTED_CONTEXT
647 : 0);
Peiyong Lin0256f722018-08-31 15:45:10 -0700648
649 // TODO(b/77156734): We need to stop casting and use HAL types when possible.
Alec Mourida4cf3b2019-02-12 15:33:01 -0800650 // Sending maxFrameBufferAcquiredBuffers as the cache size is tightly tuned to single-display.
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700651 mCompositionEngine->setRenderEngine(
Peiyong Linc6780972018-10-28 15:24:08 -0700652 renderengine::RenderEngine::create(static_cast<int32_t>(defaultCompositionPixelFormat),
Alec Mourida4cf3b2019-02-12 15:33:01 -0800653 renderEngineFeature, maxFrameBufferAcquiredBuffers));
Steven Thomasb02664d2017-07-26 18:48:28 -0700654
655 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
656 "Starting with vr flinger active is not currently supported.");
Lloyd Pique441d5042018-10-18 16:49:51 -0700657 mCompositionEngine->setHwComposer(getFactory().createHWComposer(getBE().mHwcServiceName));
658 mCompositionEngine->getHwComposer().registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800659 // Process any initial hotplug and resulting display changes.
660 processDisplayHotplugEventsLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700661 const auto display = getDefaultDisplayDeviceLocked();
662 LOG_ALWAYS_FATAL_IF(!display, "Missing internal display after registering composer callback.");
Dominik Laskowski075d3172018-05-24 15:50:06 -0700663 LOG_ALWAYS_FATAL_IF(!getHwComposer().isConnected(*display->getId()),
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700664 "Internal display is disconnected.");
Jesse Hall692c7232012-11-08 15:41:56 -0800665
Steven Thomas050b2c82017-03-06 11:45:16 -0800666 if (useVrFlinger) {
Dominik Laskowski8c001672018-05-30 16:52:06 -0700667 auto vrFlingerRequestDisplayCallback = [this](bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700668 // This callback is called from the vr flinger dispatch thread. We
669 // need to call signalTransaction(), which requires holding
670 // mStateLock when we're not on the main thread. Acquiring
671 // mStateLock from the vr flinger dispatch thread might trigger a
672 // deadlock in surface flinger (see b/66916578), so post a message
673 // to be handled on the main thread instead.
Dominik Laskowski8c001672018-05-30 16:52:06 -0700674 postMessageAsync(new LambdaMessage([=] {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700675 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
676 mVrFlingerRequestsDisplay = requestDisplay;
677 signalTransaction();
Dominik Laskowski8c001672018-05-30 16:52:06 -0700678 }));
Steven Thomas050b2c82017-03-06 11:45:16 -0800679 };
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700680 mVrFlinger = dvr::VrFlinger::Create(getHwComposer().getComposer(),
681 getHwComposer()
Dominik Laskowski075d3172018-05-24 15:50:06 -0700682 .fromPhysicalDisplayId(*display->getId())
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700683 .value_or(0),
684 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800685 if (!mVrFlinger) {
686 ALOGE("Failed to start vrflinger");
687 }
688 }
689
Mathias Agopian92a979a2012-08-02 18:32:23 -0700690 // initialize our drawing state
691 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700692
Andy McFadden13a082e2012-08-24 10:16:42 -0700693 // set initial conditions (e.g. unblank default device)
694 initializeDisplays();
695
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700696 getRenderEngine().primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700697
Wei Wangf9b05ee2017-07-19 20:59:39 -0700698 // Inform native graphics APIs whether the present timestamp is supported:
Lloyd Pique90c115d2018-09-18 21:39:42 -0700699
700 const bool presentFenceReliable =
701 !getHwComposer().hasCapability(HWC2::Capability::PresentFenceIsNotReliable);
702 mStartPropertySetThread = getFactory().createStartPropertySetThread(presentFenceReliable);
Wei Wangf9b05ee2017-07-19 20:59:39 -0700703
704 if (mStartPropertySetThread->Start() != NO_ERROR) {
705 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800706 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800707
Alec Mouri93bc83d2019-04-17 14:47:43 -0700708 mScheduler->setChangeRefreshRateCallback(
709 [this](RefreshRateType type, Scheduler::ConfigEvent event) {
710 Mutex::Autolock lock(mStateLock);
711 setRefreshRateTo(type, event);
712 });
Alec Mouridc28b372019-04-18 21:17:13 -0700713 mScheduler->setGetVsyncPeriodCallback([this] {
714 Mutex::Autolock lock(mStateLock);
715 return getVsyncPeriod();
716 });
Ady Abraham09bd3922019-04-08 10:44:56 -0700717
Dominik Laskowski22488f62019-03-28 09:53:04 -0700718 mRefreshRateConfigs.populate(getHwComposer().getConfigs(*display->getId()));
719 mRefreshRateStats.setConfigMode(getHwComposer().getActiveConfigIndex(*display->getId()));
Ana Krulec7d1d6832018-12-27 11:10:09 -0800720
Dan Stoza9e56aa02015-11-02 13:00:03 -0800721 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700722}
723
Romain Guy11d63f42017-07-20 12:47:14 -0700724void SurfaceFlinger::readPersistentProperties() {
Chia-I Wu28f320b2018-05-03 11:02:56 -0700725 Mutex::Autolock _l(mStateLock);
726
Romain Guy11d63f42017-07-20 12:47:14 -0700727 char value[PROPERTY_VALUE_MAX];
728
729 property_get("persist.sys.sf.color_saturation", value, "1.0");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800730 mGlobalSaturationFactor = atof(value);
Chia-I Wu28f320b2018-05-03 11:02:56 -0700731 updateColorMatrixLocked();
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800732 ALOGV("Saturation is set to %.2f", mGlobalSaturationFactor);
Romain Guy54f154a2017-10-24 21:40:32 +0100733
734 property_get("persist.sys.sf.native_mode", value, "0");
Chia-I Wu0d711262018-05-21 15:19:35 -0700735 mDisplayColorSetting = static_cast<DisplayColorSetting>(atoi(value));
Peiyong Lina3ea5592019-02-10 14:45:00 -0800736
737 property_get("persist.sys.sf.color_mode", value, "0");
738 mForceColorMode = static_cast<ColorMode>(atoi(value));
Romain Guy11d63f42017-07-20 12:47:14 -0700739}
740
Mathias Agopiana67e4182012-06-19 17:26:12 -0700741void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800742 // Start boot animation service by setting a property mailbox
743 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700744 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800745 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700746 if (mStartPropertySetThread->join() != NO_ERROR) {
747 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800748 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700749}
750
Mathias Agopian875d8e12013-06-07 15:35:48 -0700751size_t SurfaceFlinger::getMaxTextureSize() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700752 return getRenderEngine().getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700753}
754
Mathias Agopian875d8e12013-06-07 15:35:48 -0700755size_t SurfaceFlinger::getMaxViewportDims() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700756 return getRenderEngine().getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700757}
758
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800759// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800760
Jamie Gennis582270d2011-08-17 18:19:00 -0700761bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800762 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800763 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800764 return authenticateSurfaceTextureLocked(bufferProducer);
765}
766
767bool SurfaceFlinger::authenticateSurfaceTextureLocked(
768 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800769 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Dan Stoza101d8dc2018-02-27 15:42:25 -0800770 return mGraphicBufferProducerList.count(surfaceTextureBinder.get()) > 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800771}
772
Brian Anderson6b376712017-04-04 10:51:39 -0700773status_t SurfaceFlinger::getSupportedFrameTimestamps(
774 std::vector<FrameEvent>* outSupported) const {
775 *outSupported = {
776 FrameEvent::REQUESTED_PRESENT,
777 FrameEvent::ACQUIRE,
778 FrameEvent::LATCH,
779 FrameEvent::FIRST_REFRESH_START,
780 FrameEvent::LAST_REFRESH_START,
781 FrameEvent::GPU_COMPOSITION_DONE,
782 FrameEvent::DEQUEUE_READY,
783 FrameEvent::RELEASE,
784 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700785 ConditionalLock _l(mStateLock,
786 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700787 if (!getHwComposer().hasCapability(
788 HWC2::Capability::PresentFenceIsNotReliable)) {
789 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
790 }
791 return NO_ERROR;
792}
793
Dominik Laskowski22488f62019-03-28 09:53:04 -0700794status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& displayToken,
795 Vector<DisplayInfo>* configs) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700796 if (!displayToken || !configs) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700797 return BAD_VALUE;
798 }
799
Dominik Laskowski22488f62019-03-28 09:53:04 -0700800 Mutex::Autolock lock(mStateLock);
801
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800802 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700803 if (!displayId) {
804 return NAME_NOT_FOUND;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700805 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700806
Mathias Agopian8b736f12012-08-13 17:54:26 -0700807 // TODO: Not sure if display density should handled by SF any longer
808 class Density {
Hernan Liatis57568932018-08-16 17:07:08 -0700809 static float getDensityFromProperty(char const* propName) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700810 char property[PROPERTY_VALUE_MAX];
Hernan Liatis57568932018-08-16 17:07:08 -0700811 float density = 0.0f;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800812 if (property_get(propName, property, nullptr) > 0) {
Hernan Liatis57568932018-08-16 17:07:08 -0700813 density = strtof(property, nullptr);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700814 }
815 return density;
816 }
817 public:
Hernan Liatis57568932018-08-16 17:07:08 -0700818 static float getEmuDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700819 return getDensityFromProperty("qemu.sf.lcd_density"); }
Hernan Liatis57568932018-08-16 17:07:08 -0700820 static float getBuildDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700821 return getDensityFromProperty("ro.sf.lcd_density"); }
822 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700823
Dan Stoza7f7da322014-05-02 15:26:25 -0700824 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700825
Dominik Laskowski075d3172018-05-24 15:50:06 -0700826 for (const auto& hwConfig : getHwComposer().getConfigs(*displayId)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700827 DisplayInfo info = DisplayInfo();
828
Dan Stoza9e56aa02015-11-02 13:00:03 -0800829 float xdpi = hwConfig->getDpiX();
830 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700831
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700832 info.w = hwConfig->getWidth();
833 info.h = hwConfig->getHeight();
834 // Default display viewport to display width and height
835 info.viewportW = info.w;
836 info.viewportH = info.h;
837
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800838 if (displayId == getInternalDisplayIdLocked()) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700839 // The density of the device is provided by a build property
840 float density = Density::getBuildDensity() / 160.0f;
841 if (density == 0) {
842 // the build doesn't provide a density -- this is wrong!
843 // use xdpi instead
844 ALOGE("ro.sf.lcd_density must be defined as a build property");
845 density = xdpi / 160.0f;
846 }
847 if (Density::getEmuDensity()) {
848 // if "qemu.sf.lcd_density" is specified, it overrides everything
849 xdpi = ydpi = density = Density::getEmuDensity();
850 density /= 160.0f;
851 }
852 info.density = density;
853
854 // TODO: this needs to go away (currently needed only by webkit)
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700855 const auto display = getDefaultDisplayDeviceLocked();
856 info.orientation = display ? display->getOrientation() : 0;
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700857
858 // This is for screenrecord
859 const Rect viewport = display->getViewport();
860 if (viewport.isValid()) {
861 info.viewportW = uint32_t(viewport.getWidth());
862 info.viewportH = uint32_t(viewport.getHeight());
863 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700864 } else {
865 // TODO: where should this value come from?
866 static const int TV_DENSITY = 213;
867 info.density = TV_DENSITY / 160.0f;
868 info.orientation = 0;
869 }
870
Dan Stoza7f7da322014-05-02 15:26:25 -0700871 info.xdpi = xdpi;
872 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800873 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Ady Abraham796beb02019-04-11 15:23:07 -0700874 const auto refreshRateType = mRefreshRateConfigs.getRefreshRateType(hwConfig->getId());
875 const auto offset = mPhaseOffsets->getOffsetsForRefreshRate(refreshRateType);
876 info.appVsyncOffset = offset.late.app;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800877
Andy McFadden91b2ca82014-06-13 14:04:23 -0700878 // This is how far in advance a buffer must be queued for
879 // presentation at a given time. If you want a buffer to appear
880 // on the screen at time N, you must submit the buffer before
881 // (N - presentationDeadline).
882 //
883 // Normally it's one full refresh period (to give SF a chance to
884 // latch the buffer), but this can be reduced by configuring a
885 // DispSync offset. Any additional delays introduced by the hardware
886 // composer or panel must be accounted for here.
887 //
888 // We add an additional 1ms to allow for processing time and
889 // differences between the ideal and actual refresh rate.
Ady Abraham796beb02019-04-11 15:23:07 -0700890 info.presentationDeadline = hwConfig->getVsyncPeriod() - offset.late.sf + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700891
892 // All non-virtual displays are currently considered secure.
893 info.secure = true;
894
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800895 if (displayId == getInternalDisplayIdLocked() &&
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700896 primaryDisplayOrientation & DisplayState::eOrientationSwapMask) {
Iris Chang7501ed62018-04-30 14:45:42 +0800897 std::swap(info.w, info.h);
898 }
899
Michael Wright28f24d02016-07-12 13:30:53 -0700900 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700901 }
902
Dan Stoza7f7da322014-05-02 15:26:25 -0700903 return NO_ERROR;
904}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700905
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700906status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>&, DisplayStatInfo* stats) {
907 if (!stats) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700908 return BAD_VALUE;
909 }
910
Ana Krulecc2870422019-01-29 19:00:58 -0800911 mScheduler->getDisplayStatInfo(stats);
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700912 return NO_ERROR;
913}
914
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700915int SurfaceFlinger::getActiveConfig(const sp<IBinder>& displayToken) {
916 const auto display = getDisplayDevice(displayToken);
917 if (!display) {
918 ALOGE("getActiveConfig: Invalid display token %p", displayToken.get());
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800919 return BAD_VALUE;
920 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700921
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700922 return display->getActiveConfig();
Dan Stoza7f7da322014-05-02 15:26:25 -0700923}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700924
Ady Abraham03b02dd2019-03-21 15:40:11 -0700925void SurfaceFlinger::setDesiredActiveConfig(const ActiveConfigInfo& info) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800926 ATRACE_CALL();
Ana Krulec7d1d6832018-12-27 11:10:09 -0800927
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800928 // Don't check against the current mode yet. Worst case we set the desired
Ady Abraham9360a222019-02-27 17:05:30 -0800929 // config twice. However event generation config might have changed so we need to update it
930 // accordingly
Ady Abrahamb838aed2019-02-12 15:30:16 -0800931 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abraham03b02dd2019-03-21 15:40:11 -0700932 const Scheduler::ConfigEvent prevConfig = mDesiredActiveConfig.event;
933 mDesiredActiveConfig = info;
934 mDesiredActiveConfig.event = mDesiredActiveConfig.event | prevConfig;
Ady Abrahamb838aed2019-02-12 15:30:16 -0800935
936 if (!mDesiredActiveConfigChanged) {
Ady Abrahamb838aed2019-02-12 15:30:16 -0800937 // This will trigger HWC refresh without resetting the idle timer.
938 repaintEverythingForHWC();
Alec Mouri754c98a2019-03-18 18:53:42 -0700939 // Start receiving vsync samples now, so that we can detect a period
940 // switch.
941 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Ady Abraham53852a52019-05-28 18:07:44 -0700942 // As we called to set period, we will call to onRefreshRateChangeCompleted once
943 // DispSync model is locked.
944 mVsyncModulator.onRefreshRateChangeInitiated();
Alec Mouri754c98a2019-03-18 18:53:42 -0700945 mPhaseOffsets->setRefreshRateType(info.type);
946 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abraham45e4e362019-06-07 18:20:51 -0700947 mVsyncModulator.setPhaseOffsets(early, gl, late,
948 mPhaseOffsets->getOffsetThresholdForNextVsync());
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800949 }
Ady Abrahamb838aed2019-02-12 15:30:16 -0800950 mDesiredActiveConfigChanged = true;
951 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
Ady Abraham03b02dd2019-03-21 15:40:11 -0700952
953 if (mRefreshRateOverlay) {
954 mRefreshRateOverlay->changeRefreshRate(mDesiredActiveConfig.type);
955 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800956}
957
958status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& displayToken, int mode) {
959 ATRACE_CALL();
Ady Abraham838de062019-02-04 10:24:03 -0800960
961 std::vector<int32_t> allowedConfig;
962 allowedConfig.push_back(mode);
963
964 return setAllowedDisplayConfigs(displayToken, allowedConfig);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800965}
966
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800967void SurfaceFlinger::setActiveConfigInternal() {
968 ATRACE_CALL();
969
Dominik Laskowski22488f62019-03-28 09:53:04 -0700970 const auto display = getDefaultDisplayDeviceLocked();
971 if (!display) {
972 return;
973 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800974
Dominik Laskowski22488f62019-03-28 09:53:04 -0700975 std::lock_guard<std::mutex> lock(mActiveConfigLock);
976 mRefreshRateStats.setConfigMode(mUpcomingActiveConfig.configId);
977
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800978 display->setActiveConfig(mUpcomingActiveConfig.configId);
979
Alec Mouri754c98a2019-03-18 18:53:42 -0700980 mPhaseOffsets->setRefreshRateType(mUpcomingActiveConfig.type);
Alec Mouri1c9e82b2019-03-07 12:24:05 -0800981 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abraham45e4e362019-06-07 18:20:51 -0700982 mVsyncModulator.setPhaseOffsets(early, gl, late,
983 mPhaseOffsets->getOffsetThresholdForNextVsync());
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800984 ATRACE_INT("ActiveConfigMode", mUpcomingActiveConfig.configId);
Dominik Laskowski22488f62019-03-28 09:53:04 -0700985
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800986 if (mUpcomingActiveConfig.event != Scheduler::ConfigEvent::None) {
Ady Abraham447052e2019-02-13 16:07:27 -0800987 mScheduler->onConfigChanged(mAppConnectionHandle, display->getId()->value,
988 mUpcomingActiveConfig.configId);
989 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800990}
991
Ady Abraham53852a52019-05-28 18:07:44 -0700992void SurfaceFlinger::desiredActiveConfigChangeDone() {
993 std::lock_guard<std::mutex> lock(mActiveConfigLock);
994 mDesiredActiveConfig.event = Scheduler::ConfigEvent::None;
995 mDesiredActiveConfigChanged = false;
996 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
997
998 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
999 mPhaseOffsets->setRefreshRateType(mUpcomingActiveConfig.type);
1000 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abraham45e4e362019-06-07 18:20:51 -07001001 mVsyncModulator.setPhaseOffsets(early, gl, late,
1002 mPhaseOffsets->getOffsetThresholdForNextVsync());
Ady Abraham53852a52019-05-28 18:07:44 -07001003}
1004
Dominik Laskowski22488f62019-03-28 09:53:04 -07001005bool SurfaceFlinger::performSetActiveConfig() {
Alec Mourife3dc942019-02-12 14:19:18 -08001006 ATRACE_CALL();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001007 if (mCheckPendingFence) {
Ady Abrahambe0f9482019-04-24 15:41:53 -07001008 if (previousFrameMissed()) {
Ady Abrahamb838aed2019-02-12 15:30:16 -08001009 // fence has not signaled yet. wait for the next invalidate
Ady Abraham8532d012019-05-08 14:50:56 -07001010 mEventQueue->invalidate();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001011 return true;
1012 }
1013
1014 // We received the present fence from the HWC, so we assume it successfully updated
1015 // the config, hence we update SF.
1016 mCheckPendingFence = false;
1017 setActiveConfigInternal();
1018 }
1019
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001020 // Store the local variable to release the lock.
1021 ActiveConfigInfo desiredActiveConfig;
1022 {
1023 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001024 if (!mDesiredActiveConfigChanged) {
1025 return false;
1026 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001027 desiredActiveConfig = mDesiredActiveConfig;
1028 }
1029
Dominik Laskowski22488f62019-03-28 09:53:04 -07001030 const auto display = getDefaultDisplayDeviceLocked();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001031 if (!display || display->getActiveConfig() == desiredActiveConfig.configId) {
1032 // display is not valid or we are already in the requested mode
1033 // on both cases there is nothing left to do
Ady Abraham53852a52019-05-28 18:07:44 -07001034 desiredActiveConfigChangeDone();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001035 return false;
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001036 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001037
Ady Abraham838de062019-02-04 10:24:03 -08001038 // Desired active config was set, it is different than the config currently in use, however
1039 // allowed configs might have change by the time we process the refresh.
1040 // Make sure the desired config is still allowed
Dominik Laskowski22488f62019-03-28 09:53:04 -07001041 if (!isDisplayConfigAllowed(desiredActiveConfig.configId)) {
Ady Abraham53852a52019-05-28 18:07:44 -07001042 desiredActiveConfigChangeDone();
Ady Abraham838de062019-02-04 10:24:03 -08001043 return false;
1044 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001045 mUpcomingActiveConfig = desiredActiveConfig;
1046 const auto displayId = display->getId();
1047 LOG_ALWAYS_FATAL_IF(!displayId);
1048
1049 ATRACE_INT("ActiveConfigModeHWC", mUpcomingActiveConfig.configId);
1050 getHwComposer().setActiveConfig(*displayId, mUpcomingActiveConfig.configId);
1051
1052 // we need to submit an empty frame to HWC to start the process
Ady Abrahamb838aed2019-02-12 15:30:16 -08001053 mCheckPendingFence = true;
Ady Abraham8532d012019-05-08 14:50:56 -07001054 mEventQueue->invalidate();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001055 return false;
Mathias Agopianc666cae2012-07-25 18:56:13 -07001056}
Dominik Laskowski075d3172018-05-24 15:50:06 -07001057
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001058status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& displayToken,
1059 Vector<ColorMode>* outColorModes) {
1060 if (!displayToken || !outColorModes) {
Michael Wright28f24d02016-07-12 13:30:53 -07001061 return BAD_VALUE;
1062 }
1063
Peiyong Lina52f0292018-03-14 17:26:31 -07001064 std::vector<ColorMode> modes;
Peiyong Linff84a152019-05-17 18:36:19 -07001065 bool isInternalDisplay = false;
Steven Thomas6d8110b2017-08-31 18:24:21 -07001066 {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001067 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
1068
1069 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1070 if (!displayId) {
1071 return NAME_NOT_FOUND;
1072 }
1073
Dominik Laskowski075d3172018-05-24 15:50:06 -07001074 modes = getHwComposer().getColorModes(*displayId);
Peiyong Linff84a152019-05-17 18:36:19 -07001075 isInternalDisplay = displayId == getInternalDisplayIdLocked();
Steven Thomas6d8110b2017-08-31 18:24:21 -07001076 }
Michael Wright28f24d02016-07-12 13:30:53 -07001077 outColorModes->clear();
Peiyong Linff84a152019-05-17 18:36:19 -07001078
1079 // If it's built-in display and the configuration claims it's not wide color capable,
1080 // filter out all wide color modes. The typical reason why this happens is that the
1081 // hardware is not good enough to support GPU composition of wide color, and thus the
1082 // OEMs choose to disable this capability.
1083 if (isInternalDisplay && !hasWideColorDisplay) {
1084 std::remove_copy_if(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes),
1085 isWideColorMode);
1086 } else {
1087 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
1088 }
Michael Wright28f24d02016-07-12 13:30:53 -07001089
1090 return NO_ERROR;
1091}
1092
Daniel Solomon42d04562019-01-20 21:03:19 -08001093status_t SurfaceFlinger::getDisplayNativePrimaries(const sp<IBinder>& displayToken,
1094 ui::DisplayPrimaries &primaries) {
1095 if (!displayToken) {
1096 return BAD_VALUE;
1097 }
1098
1099 // Currently we only support this API for a single internal display.
1100 if (getInternalDisplayToken() != displayToken) {
1101 return BAD_VALUE;
1102 }
1103
1104 memcpy(&primaries, &mInternalDisplayPrimaries, sizeof(ui::DisplayPrimaries));
1105 return NO_ERROR;
1106}
1107
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001108ColorMode SurfaceFlinger::getActiveColorMode(const sp<IBinder>& displayToken) {
1109 if (const auto display = getDisplayDevice(displayToken)) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001110 return display->getCompositionDisplay()->getState().colorMode;
Michael Wright28f24d02016-07-12 13:30:53 -07001111 }
Peiyong Lina52f0292018-03-14 17:26:31 -07001112 return static_cast<ColorMode>(BAD_VALUE);
Michael Wright28f24d02016-07-12 13:30:53 -07001113}
1114
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001115status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& displayToken, ColorMode mode) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001116 postMessageSync(new LambdaMessage([&] {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001117 Vector<ColorMode> modes;
1118 getDisplayColorModes(displayToken, &modes);
1119 bool exists = std::find(std::begin(modes), std::end(modes), mode) != std::end(modes);
1120 if (mode < ColorMode::NATIVE || !exists) {
1121 ALOGE("Attempt to set invalid active color mode %s (%d) for display token %p",
1122 decodeColorMode(mode).c_str(), mode, displayToken.get());
1123 return;
Michael Wright28f24d02016-07-12 13:30:53 -07001124 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001125 const auto display = getDisplayDevice(displayToken);
1126 if (!display) {
1127 ALOGE("Attempt to set active color mode %s (%d) for invalid display token %p",
1128 decodeColorMode(mode).c_str(), mode, displayToken.get());
1129 } else if (display->isVirtual()) {
1130 ALOGW("Attempt to set active color mode %s (%d) for virtual display",
1131 decodeColorMode(mode).c_str(), mode);
1132 } else {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001133 display->getCompositionDisplay()->setColorMode(mode, Dataspace::UNKNOWN,
1134 RenderIntent::COLORIMETRIC);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001135 }
1136 }));
1137
Michael Wright28f24d02016-07-12 13:30:53 -07001138 return NO_ERROR;
1139}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001140
Svetoslavd85084b2014-03-20 10:28:31 -07001141status_t SurfaceFlinger::clearAnimationFrameStats() {
1142 Mutex::Autolock _l(mStateLock);
1143 mAnimFrameTracker.clearStats();
1144 return NO_ERROR;
1145}
1146
1147status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1148 Mutex::Autolock _l(mStateLock);
1149 mAnimFrameTracker.getStats(outStats);
1150 return NO_ERROR;
1151}
1152
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001153status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& displayToken,
1154 HdrCapabilities* outCapabilities) const {
Dan Stozac4f471e2016-03-24 09:31:08 -07001155 Mutex::Autolock _l(mStateLock);
1156
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001157 const auto display = getDisplayDeviceLocked(displayToken);
1158 if (!display) {
1159 ALOGE("getHdrCapabilities: Invalid display token %p", displayToken.get());
Dan Stozac4f471e2016-03-24 09:31:08 -07001160 return BAD_VALUE;
1161 }
1162
Peiyong Linfb069302018-04-25 14:34:31 -07001163 // At this point the DisplayDeivce should already be set up,
1164 // meaning the luminance information is already queried from
1165 // hardware composer and stored properly.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001166 const HdrCapabilities& capabilities = display->getHdrCapabilities();
Peiyong Linfb069302018-04-25 14:34:31 -07001167 *outCapabilities = HdrCapabilities(capabilities.getSupportedHdrTypes(),
1168 capabilities.getDesiredMaxLuminance(),
1169 capabilities.getDesiredMaxAverageLuminance(),
1170 capabilities.getDesiredMinLuminance());
Dan Stozac4f471e2016-03-24 09:31:08 -07001171
1172 return NO_ERROR;
1173}
1174
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001175status_t SurfaceFlinger::getDisplayedContentSamplingAttributes(const sp<IBinder>& displayToken,
1176 ui::PixelFormat* outFormat,
1177 ui::Dataspace* outDataspace,
1178 uint8_t* outComponentMask) const {
1179 if (!outFormat || !outDataspace || !outComponentMask) {
1180 return BAD_VALUE;
1181 }
Kevin DuBois74e53772018-11-19 10:52:38 -08001182 const auto display = getDisplayDevice(displayToken);
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001183 if (!display || !display->getId()) {
1184 ALOGE("getDisplayedContentSamplingAttributes: Bad display token: %p", display.get());
1185 return BAD_VALUE;
1186 }
1187 return getHwComposer().getDisplayedContentSamplingAttributes(*display->getId(), outFormat,
1188 outDataspace, outComponentMask);
1189}
1190
Kevin DuBois74e53772018-11-19 10:52:38 -08001191status_t SurfaceFlinger::setDisplayContentSamplingEnabled(const sp<IBinder>& displayToken,
1192 bool enable, uint8_t componentMask,
1193 uint64_t maxFrames) const {
1194 const auto display = getDisplayDevice(displayToken);
1195 if (!display || !display->getId()) {
1196 ALOGE("setDisplayContentSamplingEnabled: Bad display token: %p", display.get());
1197 return BAD_VALUE;
1198 }
1199
1200 return getHwComposer().setDisplayContentSamplingEnabled(*display->getId(), enable,
1201 componentMask, maxFrames);
1202}
1203
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001204status_t SurfaceFlinger::getDisplayedContentSample(const sp<IBinder>& displayToken,
1205 uint64_t maxFrames, uint64_t timestamp,
1206 DisplayedFrameStats* outStats) const {
1207 const auto display = getDisplayDevice(displayToken);
1208 if (!display || !display->getId()) {
1209 ALOGE("getDisplayContentSample: Bad display token: %p", displayToken.get());
1210 return BAD_VALUE;
1211 }
1212
1213 return getHwComposer().getDisplayedContentSample(*display->getId(), maxFrames, timestamp,
1214 outStats);
1215}
1216
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001217status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const {
1218 if (!outSupported) {
1219 return BAD_VALUE;
1220 }
1221 *outSupported = getRenderEngine().supportsProtectedContent();
1222 return NO_ERROR;
1223}
1224
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001225status_t SurfaceFlinger::isWideColorDisplay(const sp<IBinder>& displayToken,
1226 bool* outIsWideColorDisplay) const {
1227 if (!displayToken || !outIsWideColorDisplay) {
1228 return BAD_VALUE;
1229 }
1230 Mutex::Autolock _l(mStateLock);
1231 const auto display = getDisplayDeviceLocked(displayToken);
1232 if (!display) {
1233 return BAD_VALUE;
1234 }
Peiyong Linff84a152019-05-17 18:36:19 -07001235
1236 // Use hasWideColorDisplay to override built-in display.
1237 const auto displayId = display->getId();
1238 if (displayId && displayId == getInternalDisplayIdLocked()) {
1239 *outIsWideColorDisplay = hasWideColorDisplay;
1240 return NO_ERROR;
1241 }
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001242 *outIsWideColorDisplay = display->hasWideColorGamut();
1243 return NO_ERROR;
1244}
1245
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001246status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001247 postMessageSync(new LambdaMessage([&] {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001248 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001249
Chia-I Wu90f669f2017-10-05 14:24:41 -07001250 if (mInjectVSyncs == enable) {
1251 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001252 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001253
Ana Krulecc2870422019-01-29 19:00:58 -08001254 auto resyncCallback =
1255 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskif654d572018-12-20 11:03:06 -08001256
Ady Abraham46e2f3e2019-03-18 16:40:15 -07001257 // TODO(b/128863962): Part of the Injector should be refactored, so that it
Ana Krulec98b5b242018-08-10 15:03:23 -07001258 // can be passed to Scheduler.
Chia-I Wu90f669f2017-10-05 14:24:41 -07001259 if (enable) {
1260 ALOGV("VSync Injections enabled");
1261 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001262 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique24b0a482018-03-09 18:52:26 -08001263 mInjectorEventThread = std::make_unique<
Dominik Laskowskif654d572018-12-20 11:03:06 -08001264 impl::EventThread>(mVSyncInjector.get(),
Lloyd Pique24b0a482018-03-09 18:52:26 -08001265 impl::EventThread::InterceptVSyncsCallback(),
1266 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001267 }
Dominik Laskowskif654d572018-12-20 11:03:06 -08001268 mEventQueue->setEventThread(mInjectorEventThread.get(), std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001269 } else {
1270 ALOGV("VSync Injections disabled");
Ana Krulecc2870422019-01-29 19:00:58 -08001271 mEventQueue->setEventThread(mScheduler->getEventThread(mSfConnectionHandle),
1272 std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001273 }
1274
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001275 mInjectVSyncs = enable;
Dominik Laskowski8c001672018-05-30 16:52:06 -07001276 }));
1277
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001278 return NO_ERROR;
1279}
1280
1281status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001282 Mutex::Autolock _l(mStateLock);
1283
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001284 if (!mInjectVSyncs) {
1285 ALOGE("VSync Injections not enabled");
1286 return BAD_VALUE;
1287 }
1288 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1289 ALOGV("Injecting VSync inside SurfaceFlinger");
1290 mVSyncInjector->onInjectSyncEvent(when);
1291 }
1292 return NO_ERROR;
1293}
1294
Lloyd Pique755e3192018-01-31 16:46:15 -08001295status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1296 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001297 // Try to acquire a lock for 1s, fail gracefully
1298 const status_t err = mStateLock.timedLock(s2ns(1));
1299 const bool locked = (err == NO_ERROR);
1300 if (!locked) {
1301 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1302 return TIMED_OUT;
1303 }
1304
1305 outLayers->clear();
1306 mCurrentState.traverseInZOrder([&](Layer* layer) {
1307 outLayers->push_back(layer->getLayerDebugInfo());
1308 });
1309
1310 mStateLock.unlock();
1311 return NO_ERROR;
1312}
1313
Peiyong Linc6780972018-10-28 15:24:08 -07001314status_t SurfaceFlinger::getCompositionPreference(
1315 Dataspace* outDataspace, ui::PixelFormat* outPixelFormat,
1316 Dataspace* outWideColorGamutDataspace,
1317 ui::PixelFormat* outWideColorGamutPixelFormat) const {
Peiyong Lin9d846a52018-11-05 13:18:20 -08001318 *outDataspace = mDefaultCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001319 *outPixelFormat = defaultCompositionPixelFormat;
Peiyong Lin9d846a52018-11-05 13:18:20 -08001320 *outWideColorGamutDataspace = mWideColorGamutCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001321 *outWideColorGamutPixelFormat = wideColorGamutCompositionPixelFormat;
Peiyong Lin0256f722018-08-31 15:45:10 -07001322 return NO_ERROR;
1323}
1324
Dan Stozaec460082018-12-17 15:35:09 -08001325status_t SurfaceFlinger::addRegionSamplingListener(const Rect& samplingArea,
1326 const sp<IBinder>& stopLayerHandle,
1327 const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001328 if (!listener || samplingArea == Rect::INVALID_RECT) {
Dan Stozaec460082018-12-17 15:35:09 -08001329 return BAD_VALUE;
1330 }
1331 mRegionSamplingThread->addListener(samplingArea, stopLayerHandle, listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001332 return NO_ERROR;
1333}
1334
Dan Stozaec460082018-12-17 15:35:09 -08001335status_t SurfaceFlinger::removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001336 if (!listener) {
1337 return BAD_VALUE;
1338 }
Dan Stozaec460082018-12-17 15:35:09 -08001339 mRegionSamplingThread->removeListener(listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001340 return NO_ERROR;
1341}
Dan Gittik57e63c52019-01-18 16:37:54 +00001342
1343status_t SurfaceFlinger::getDisplayBrightnessSupport(const sp<IBinder>& displayToken,
1344 bool* outSupport) const {
1345 if (!displayToken || !outSupport) {
1346 return BAD_VALUE;
1347 }
1348 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1349 if (!displayId) {
1350 return NAME_NOT_FOUND;
1351 }
1352 *outSupport =
1353 getHwComposer().hasDisplayCapability(displayId, HWC2::DisplayCapability::Brightness);
1354 return NO_ERROR;
1355}
1356
1357status_t SurfaceFlinger::setDisplayBrightness(const sp<IBinder>& displayToken,
1358 float brightness) const {
1359 if (!displayToken) {
1360 return BAD_VALUE;
1361 }
1362 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1363 if (!displayId) {
1364 return NAME_NOT_FOUND;
1365 }
1366 return getHwComposer().setDisplayBrightness(*displayId, brightness);
1367}
1368
Ady Abraham8532d012019-05-08 14:50:56 -07001369status_t SurfaceFlinger::notifyPowerHint(int32_t hintId) {
1370 PowerHint powerHint = static_cast<PowerHint>(hintId);
1371
1372 if (powerHint == PowerHint::INTERACTION) {
1373 mScheduler->notifyTouchEvent();
1374 }
1375
1376 return NO_ERROR;
1377}
1378
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001379// ----------------------------------------------------------------------------
1380
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001381sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
Ady Abraham0f4a1b12019-06-04 16:04:04 -07001382 ISurfaceComposer::VsyncSource vsyncSource, ISurfaceComposer::ConfigChanged configChanged) {
Ana Krulecc2870422019-01-29 19:00:58 -08001383 auto resyncCallback = mScheduler->makeResyncCallback([this] {
Dominik Laskowski83b88212018-12-11 13:34:06 -08001384 Mutex::Autolock lock(mStateLock);
1385 return getVsyncPeriod();
1386 });
Dominik Laskowskif654d572018-12-20 11:03:06 -08001387
Ana Krulecc2870422019-01-29 19:00:58 -08001388 const auto& handle =
1389 vsyncSource == eVsyncSourceSurfaceFlinger ? mSfConnectionHandle : mAppConnectionHandle;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001390
Ady Abraham0f4a1b12019-06-04 16:04:04 -07001391 return mScheduler->createDisplayEventConnection(handle, std::move(resyncCallback),
1392 configChanged);
Mathias Agopianbb641242010-05-18 17:06:55 -07001393}
1394
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001395// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001396
1397void SurfaceFlinger::waitForEvent() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001398 mEventQueue->waitMessage();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001399}
1400
1401void SurfaceFlinger::signalTransaction() {
Ady Abraham8532d012019-05-08 14:50:56 -07001402 mScheduler->resetIdleTimer();
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001403 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001404}
1405
1406void SurfaceFlinger::signalLayerUpdate() {
Ady Abraham8532d012019-05-08 14:50:56 -07001407 mScheduler->resetIdleTimer();
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001408 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001409}
1410
1411void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001412 mRefreshPending = true;
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001413 mEventQueue->refresh();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001414}
1415
1416status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001417 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001418 return mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001419}
1420
1421status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001422 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001423 status_t res = mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001424 if (res == NO_ERROR) {
1425 msg->wait();
1426 }
1427 return res;
1428}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001429
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001430void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001431 do {
1432 waitForEvent();
1433 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001434}
1435
Dominik Laskowski83b88212018-12-11 13:34:06 -08001436nsecs_t SurfaceFlinger::getVsyncPeriod() const {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001437 const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski83b88212018-12-11 13:34:06 -08001438 if (!displayId || !getHwComposer().isConnected(*displayId)) {
1439 return 0;
1440 }
1441
1442 const auto config = getHwComposer().getActiveConfig(*displayId);
1443 return config ? config->getVsyncPeriod() : 0;
1444}
1445
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001446void SurfaceFlinger::onVsyncReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
1447 int64_t timestamp) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001448 ATRACE_NAME("SF onVsync");
1449
Steven Thomas3cfac282017-02-06 12:29:30 -08001450 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001451 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001452 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001453 return;
1454 }
1455
Dominik Laskowski075d3172018-05-24 15:50:06 -07001456 if (!getHwComposer().onVsync(hwcDisplayId, timestamp)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001457 return;
1458 }
1459
Dominik Laskowski075d3172018-05-24 15:50:06 -07001460 if (hwcDisplayId != getHwComposer().getInternalHwcDisplayId()) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001461 // For now, we don't do anything with external display vsyncs.
1462 return;
1463 }
1464
Alec Mourif8e689c2019-05-20 18:32:22 -07001465 bool periodFlushed = false;
1466 mScheduler->addResyncSample(timestamp, &periodFlushed);
1467 if (periodFlushed) {
1468 mVsyncModulator.onRefreshRateChangeCompleted();
Alec Mouri754c98a2019-03-18 18:53:42 -07001469 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001470}
1471
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001472void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001473 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1474 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001475}
1476
Dominik Laskowski22488f62019-03-28 09:53:04 -07001477bool SurfaceFlinger::isDisplayConfigAllowed(int32_t configId) {
1478 return mAllowedDisplayConfigs.empty() || mAllowedDisplayConfigs.count(configId);
Ady Abraham838de062019-02-04 10:24:03 -08001479}
1480
Ana Krulec8d3e4f32019-03-05 10:40:33 -08001481void SurfaceFlinger::setRefreshRateTo(RefreshRateType refreshRate, Scheduler::ConfigEvent event) {
Dominik Laskowski22488f62019-03-28 09:53:04 -07001482 const auto display = getDefaultDisplayDeviceLocked();
1483 if (!display || mBootStage != BootStage::FINISHED) {
Ana Krulec7d1d6832018-12-27 11:10:09 -08001484 return;
1485 }
Alec Mouri1c9e82b2019-03-07 12:24:05 -08001486 ATRACE_CALL();
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001487
Ana Krulec7d1d6832018-12-27 11:10:09 -08001488 // Don't do any updating if the current fps is the same as the new one.
Dominik Laskowski22488f62019-03-28 09:53:04 -07001489 const auto& refreshRateConfig = mRefreshRateConfigs.getRefreshRate(refreshRate);
Alec Mouri0a1cc962019-03-14 12:33:02 -07001490 if (!refreshRateConfig) {
1491 ALOGV("Skipping refresh rate change request for unsupported rate.");
Ady Abraham1902d072019-03-01 17:18:59 -08001492 return;
Ana Krulec7d1d6832018-12-27 11:10:09 -08001493 }
Ady Abraham1902d072019-03-01 17:18:59 -08001494
Alec Mouri0a1cc962019-03-14 12:33:02 -07001495 const int desiredConfigId = refreshRateConfig->configId;
1496
Dominik Laskowski22488f62019-03-28 09:53:04 -07001497 if (!isDisplayConfigAllowed(desiredConfigId)) {
Ady Abraham1902d072019-03-01 17:18:59 -08001498 ALOGV("Skipping config %d as it is not part of allowed configs", desiredConfigId);
1499 return;
1500 }
1501
Dominik Laskowski22488f62019-03-28 09:53:04 -07001502 setDesiredActiveConfig({refreshRate, desiredConfigId, event});
Ana Krulec7d1d6832018-12-27 11:10:09 -08001503}
1504
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001505void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001506 HWC2::Connection connection) {
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001507 ALOGV("%s(%d, %" PRIu64 ", %s)", __FUNCTION__, sequenceId, hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001508 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001509
Lloyd Piqueba04e622017-12-14 17:11:26 -08001510 // Ignore events that do not have the right sequenceId.
1511 if (sequenceId != getBE().mComposerSequenceId) {
1512 return;
1513 }
1514
Steven Thomasb02664d2017-07-26 18:48:28 -07001515 // Only lock if we're not on the main thread. This function is normally
1516 // called on a hwbinder thread, but for the primary display it's called on
1517 // the main thread with the state lock already held, so don't attempt to
1518 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001519 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001520
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001521 mPendingHotplugEvents.emplace_back(HotplugEvent{hwcDisplayId, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001522
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001523 if (std::this_thread::get_id() == mMainThreadId) {
1524 // Process all pending hot plug events immediately if we are on the main thread.
1525 processDisplayHotplugEventsLocked();
1526 }
1527
Lloyd Piqueba04e622017-12-14 17:11:26 -08001528 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001529}
1530
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001531void SurfaceFlinger::onRefreshReceived(int sequenceId, hwc2_display_t /*hwcDisplayId*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001532 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001533 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001534 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001535 }
Ana Krulec7d1d6832018-12-27 11:10:09 -08001536 repaintEverythingForHWC();
Steven Thomas3cfac282017-02-06 12:29:30 -08001537}
1538
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001539void SurfaceFlinger::setPrimaryVsyncEnabled(bool enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001540 ATRACE_CALL();
Ady Abraham9ba25122019-06-03 17:10:55 -07001541
1542 // Enable / Disable HWVsync from the main thread to avoid race conditions with
1543 // display power state.
1544 postMessageAsync(new LambdaMessage(
1545 [=]() NO_THREAD_SAFETY_ANALYSIS { setPrimaryVsyncEnabledInternal(enabled); }));
1546}
1547
1548void SurfaceFlinger::setPrimaryVsyncEnabledInternal(bool enabled) {
1549 ATRACE_CALL();
1550
Ady Abraham27c70212019-06-11 10:52:26 -07001551 mHWCVsyncPendingState = enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable;
1552
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001553 if (const auto displayId = getInternalDisplayIdLocked()) {
Ady Abraham9ba25122019-06-03 17:10:55 -07001554 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
1555 if (display && display->isPoweredOn()) {
Ady Abraham27c70212019-06-11 10:52:26 -07001556 setVsyncEnabledInHWC(*displayId, mHWCVsyncPendingState);
Ady Abraham9ba25122019-06-03 17:10:55 -07001557 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001558 }
Mathias Agopian86303202012-07-24 22:46:10 -07001559}
1560
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001561// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001562void SurfaceFlinger::resetDisplayState() {
Ana Krulecc2870422019-01-29 19:00:58 -08001563 mScheduler->disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001564 // Clear the drawing state so that the logic inside of
1565 // handleTransactionLocked will fire. It will determine the delta between
1566 // mCurrentState and mDrawingState and re-apply all changes when we make the
1567 // transition.
1568 mDrawingState.displays.clear();
1569 mDisplays.clear();
1570}
1571
Steven Thomas050b2c82017-03-06 11:45:16 -08001572void SurfaceFlinger::updateVrFlinger() {
Alec Mourife3dc942019-02-12 14:19:18 -08001573 ATRACE_CALL();
Steven Thomas050b2c82017-03-06 11:45:16 -08001574 if (!mVrFlinger)
1575 return;
1576 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
Lloyd Pique441d5042018-10-18 16:49:51 -07001577 if (vrFlingerRequestsDisplay == getHwComposer().isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001578 return;
1579 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001580
Lloyd Pique441d5042018-10-18 16:49:51 -07001581 if (vrFlingerRequestsDisplay && !getHwComposer().getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001582 ALOGE("Vr flinger is only supported for remote hardware composer"
1583 " service connections. Ignoring request to transition to vr"
1584 " flinger.");
1585 mVrFlingerRequestsDisplay = false;
1586 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001587 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001588
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001589 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001590
Steven Thomas0123ac62018-07-12 11:32:34 -07001591 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001592 LOG_ALWAYS_FATAL_IF(!display);
Lloyd Pique07e33212018-12-18 16:33:37 -08001593
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001594 const int currentDisplayPowerMode = display->getPowerMode();
Lloyd Pique07e33212018-12-18 16:33:37 -08001595
1596 // Clear out all the output layers from the composition engine for all
1597 // displays before destroying the hardware composer interface. This ensures
1598 // any HWC layers are destroyed through that interface before it becomes
1599 // invalid.
1600 for (const auto& [token, displayDevice] : mDisplays) {
1601 displayDevice->getCompositionDisplay()->setOutputLayersOrderedByZ(
1602 compositionengine::Output::OutputLayers());
1603 }
1604
Steven Thomas0123ac62018-07-12 11:32:34 -07001605 // This DisplayDevice will no longer be relevant once resetDisplayState() is
1606 // called below. Clear the reference now so we don't accidentally use it
1607 // later.
1608 display.clear();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001609
Steven Thomasb02664d2017-07-26 18:48:28 -07001610 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001611 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001612 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001613
Steven Thomasb02664d2017-07-26 18:48:28 -07001614 resetDisplayState();
Lloyd Pique441d5042018-10-18 16:49:51 -07001615 // Delete the current instance before creating the new one
1616 mCompositionEngine->setHwComposer(std::unique_ptr<HWComposer>());
1617 mCompositionEngine->setHwComposer(getFactory().createHWComposer(
1618 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName));
1619 getHwComposer().registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001620
Lloyd Pique441d5042018-10-18 16:49:51 -07001621 LOG_ALWAYS_FATAL_IF(!getHwComposer().getComposer()->isRemote(),
David Sodman105b7dc2017-11-04 20:28:14 -07001622 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001623
1624 if (vrFlingerRequestsDisplay) {
1625 mVrFlinger->GrantDisplayOwnership();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001626 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001627
1628 mVisibleRegionsDirty = true;
1629 invalidateHwcGeometry();
1630
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001631 // Re-enable default display.
Steven Thomas0123ac62018-07-12 11:32:34 -07001632 display = getDefaultDisplayDeviceLocked();
1633 LOG_ALWAYS_FATAL_IF(!display);
Dominik Laskowskie9774092018-12-11 10:04:24 -08001634 setPowerModeInternal(display, currentDisplayPowerMode);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001635
Steven Thomasb02664d2017-07-26 18:48:28 -07001636 // Reset the timing values to account for the period of the swapped in HWC
Dominik Laskowski83b88212018-12-11 13:34:06 -08001637 const nsecs_t vsyncPeriod = getVsyncPeriod();
1638 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001639
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001640 // The present fences returned from vr_hwc are not an accurate
1641 // representation of vsync times.
Ana Krulecc2870422019-01-29 19:00:58 -08001642 mScheduler->setIgnorePresentFences(getHwComposer().isUsingVrComposer() || !hasSyncFramework);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001643
Steven Thomasb02664d2017-07-26 18:48:28 -07001644 // Use phase of 0 since phase is not known.
1645 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08001646 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07001647 setCompositorTimingSnapped(stats, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001648
Ana Krulecc2870422019-01-29 19:00:58 -08001649 mScheduler->resyncToHardwareVsync(false, vsyncPeriod);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001650
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001651 mRepaintEverything = true;
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001652 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001653}
1654
Ady Abrahambe0f9482019-04-24 15:41:53 -07001655bool SurfaceFlinger::previousFrameMissed() NO_THREAD_SAFETY_ANALYSIS {
1656 // We are storing the last 2 present fences. If sf's phase offset is to be
1657 // woken up before the actual vsync but targeting the next vsync, we need to check
1658 // fence N-2
1659 const sp<Fence>& fence =
1660 mVsyncModulator.getOffsets().sf < mPhaseOffsets->getOffsetThresholdForNextVsync()
1661 ? mPreviousPresentFences[0]
1662 : mPreviousPresentFences[1];
1663
1664 return fence != Fence::NO_FENCE && (fence->getStatus() == Fence::Status::Unsignaled);
1665}
1666
Alec Mouriaa614192019-06-06 13:28:34 -07001667nsecs_t SurfaceFlinger::getExpectedPresentTime() NO_THREAD_SAFETY_ANALYSIS {
1668 DisplayStatInfo stats;
1669 mScheduler->getDisplayStatInfo(&stats);
Ady Abraham8fe11022019-06-12 17:11:12 -07001670 const nsecs_t presentTime = mScheduler->getDispSyncExpectedPresentTime();
Alec Mouriaa614192019-06-06 13:28:34 -07001671 // Inflate the expected present time if we're targetting the next vsync.
1672 const nsecs_t correctedTime =
1673 mVsyncModulator.getOffsets().sf < mPhaseOffsets->getOffsetThresholdForNextVsync()
1674 ? presentTime
1675 : presentTime + stats.vsyncPeriod;
1676 return correctedTime;
1677}
1678
Dominik Laskowski22488f62019-03-28 09:53:04 -07001679void SurfaceFlinger::onMessageReceived(int32_t what) NO_THREAD_SAFETY_ANALYSIS {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001680 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001681 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001682 case MessageQueue::INVALIDATE: {
Ady Abrahambe0f9482019-04-24 15:41:53 -07001683 bool frameMissed = previousFrameMissed();
Alec Mouricc0fc602019-02-26 21:45:19 -08001684 bool hwcFrameMissed = mHadDeviceComposition && frameMissed;
1685 bool gpuFrameMissed = mHadClientComposition && frameMissed;
1686 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
1687 ATRACE_INT("HwcFrameMissed", static_cast<int>(hwcFrameMissed));
1688 ATRACE_INT("GpuFrameMissed", static_cast<int>(gpuFrameMissed));
1689 if (frameMissed) {
1690 mFrameMissedCount++;
1691 mTimeStats->incrementMissedFrames();
1692 }
1693
Alec Mouri40189b02019-03-05 15:07:54 -08001694 if (hwcFrameMissed) {
1695 mHwcFrameMissedCount++;
1696 }
1697
1698 if (gpuFrameMissed) {
1699 mGpuFrameMissedCount++;
1700 }
1701
Ana Krulecfefd6ae2019-02-13 17:53:08 -08001702 if (mUseSmart90ForVideo) {
1703 // This call is made each time SF wakes up and creates a new frame. It is part
1704 // of video detection feature.
Ady Abraham09bd3922019-04-08 10:44:56 -07001705 mScheduler->updateFpsBasedOnContent();
Ana Krulecfefd6ae2019-02-13 17:53:08 -08001706 }
1707
Ady Abrahamb838aed2019-02-12 15:30:16 -08001708 if (performSetActiveConfig()) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001709 break;
1710 }
1711
Alec Mourife3dc942019-02-12 14:19:18 -08001712 // For now, only propagate backpressure when missing a hwc frame.
Alec Mourib0f45822019-05-06 11:01:35 -07001713 if (hwcFrameMissed && !gpuFrameMissed) {
Yiwei Zhang621f9d42018-05-07 10:40:55 -07001714 if (mPropagateBackpressure) {
1715 signalLayerUpdate();
1716 break;
1717 }
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001718 }
Dan Stoza50182882016-07-08 12:02:20 -07001719
Steven Thomas050b2c82017-03-06 11:45:16 -08001720 // Now that we're going to make it to the handleMessageTransaction()
1721 // call below it's safe to call updateVrFlinger(), which will
1722 // potentially trigger a display handoff.
1723 updateVrFlinger();
1724
Dan Stoza6b9454d2014-11-07 16:00:59 -08001725 bool refreshNeeded = handleMessageTransaction();
1726 refreshNeeded |= handleMessageInvalidate();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001727
1728 updateCursorAsync();
1729 updateInputFlinger();
1730
Dan Stoza58784442014-12-02 16:58:17 -08001731 refreshNeeded |= mRepaintEverything;
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08001732 if (refreshNeeded && CC_LIKELY(mBootStage != BootStage::BOOTLOADER)) {
Dan Stoza58784442014-12-02 16:58:17 -08001733 // Signal a refresh if a transaction modified the window state,
1734 // a new buffer was latched, or if HWC has requested a full
1735 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001736 signalRefresh();
1737 }
1738 break;
1739 }
1740 case MessageQueue::REFRESH: {
1741 handleMessageRefresh();
1742 break;
1743 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001744 }
1745}
1746
Dan Stoza6b9454d2014-11-07 16:00:59 -08001747bool SurfaceFlinger::handleMessageTransaction() {
Alec Mourife3dc942019-02-12 14:19:18 -08001748 ATRACE_CALL();
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001749 uint32_t transactionFlags = peekTransactionFlags();
Marissa Wall713b63f2018-10-17 15:42:43 -07001750
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001751 bool flushedATransaction = flushTransactionQueues();
1752
1753 bool runHandleTransaction = transactionFlags &&
1754 ((transactionFlags != eTransactionFlushNeeded) || flushedATransaction);
1755
1756 if (runHandleTransaction) {
1757 handleTransaction(eTransactionMask);
1758 } else {
1759 getTransactionFlags(eTransactionFlushNeeded);
Marissa Wall713b63f2018-10-17 15:42:43 -07001760 }
1761
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001762 if (transactionFlushNeeded()) {
1763 setTransactionFlags(eTransactionFlushNeeded);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001764 }
Marissa Wall713b63f2018-10-17 15:42:43 -07001765
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001766 return runHandleTransaction;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001767}
1768
Mathias Agopian4fec8732012-06-29 14:12:52 -07001769void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001770 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001771
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001772 mRefreshPending = false;
1773
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001774 const bool repaintEverything = mRepaintEverything.exchange(false);
David Sodman2b406362017-12-15 13:33:47 -08001775 preComposition();
Lloyd Pique074e8122018-07-26 12:57:23 -07001776 rebuildLayerStacks();
David Sodman79bba0e2018-08-05 18:07:49 -07001777 calculateWorkingSet();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001778 for (const auto& [token, display] : mDisplays) {
1779 beginFrame(display);
1780 prepareFrame(display);
1781 doDebugFlashRegions(display, repaintEverything);
1782 doComposition(display, repaintEverything);
1783 }
1784
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001785 logLayerStats();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001786
1787 postFrame();
David Sodman2b406362017-12-15 13:33:47 -08001788 postComposition();
Dan Stoza05dacfb2016-07-01 13:33:38 -07001789
Dan Stozabfbffeb2016-07-21 14:49:33 -07001790 mHadClientComposition = false;
Alec Mouricc0fc602019-02-26 21:45:19 -08001791 mHadDeviceComposition = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001792 for (const auto& [token, displayDevice] : mDisplays) {
1793 auto display = displayDevice->getCompositionDisplay();
1794 const auto displayId = display->getId();
Lloyd Pique441d5042018-10-18 16:49:51 -07001795 mHadClientComposition =
Lloyd Pique32cbe282018-10-19 13:09:22 -07001796 mHadClientComposition || getHwComposer().hasClientComposition(displayId);
Alec Mouricc0fc602019-02-26 21:45:19 -08001797 mHadDeviceComposition =
1798 mHadDeviceComposition || getHwComposer().hasDeviceComposition(displayId);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001799 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08001800
Jorim Jaggi90535212018-05-23 23:44:06 +02001801 mVsyncModulator.onRefreshed(mHadClientComposition);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001802
David Sodman7e4ae112018-02-09 15:02:28 -08001803 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001804}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001805
David Sodmanfa9b2af2017-12-24 13:28:59 -08001806
1807bool SurfaceFlinger::handleMessageInvalidate() {
1808 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001809 bool refreshNeeded = handlePageFlip();
1810
Vishnu Nair4351ad52019-02-11 14:13:02 -08001811 if (mVisibleRegionsDirty) {
1812 computeLayerBounds();
Nataniel Borges2b796da2019-02-15 13:32:18 -08001813 if (mTracingEnabled) {
1814 mTracing.notify("visibleRegionsDirty");
1815 }
Vishnu Nair4351ad52019-02-11 14:13:02 -08001816 }
1817
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001818 for (auto& layer : mLayersPendingRefresh) {
1819 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08001820 visibleReg.set(layer->getScreenBounds());
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001821 invalidateLayerStack(layer, visibleReg);
1822 }
1823 mLayersPendingRefresh.clear();
1824 return refreshNeeded;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001825}
1826
David Sodman79bba0e2018-08-05 18:07:49 -07001827void SurfaceFlinger::calculateWorkingSet() {
1828 ATRACE_CALL();
1829 ALOGV(__FUNCTION__);
1830
David Sodman79bba0e2018-08-05 18:07:49 -07001831 // build the h/w work list
1832 if (CC_UNLIKELY(mGeometryInvalid)) {
1833 mGeometryInvalid = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001834 for (const auto& [token, displayDevice] : mDisplays) {
1835 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001836
Lloyd Piquea83776c2019-01-29 18:42:32 -08001837 uint32_t zOrder = 0;
David Sodman79bba0e2018-08-05 18:07:49 -07001838
Lloyd Piquea83776c2019-01-29 18:42:32 -08001839 for (auto& layer : display->getOutputLayersOrderedByZ()) {
1840 auto& compositionState = layer->editState();
1841 compositionState.forceClientComposition = false;
1842 if (!compositionState.hwc || mDebugDisableHWC || mDebugRegion) {
1843 compositionState.forceClientComposition = true;
David Sodman79bba0e2018-08-05 18:07:49 -07001844 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001845
Lloyd Piquea83776c2019-01-29 18:42:32 -08001846 // The output Z order is set here based on a simple counter.
1847 compositionState.z = zOrder++;
1848
1849 // Update the display independent composition state. This goes
1850 // to the general composition layer state structure.
1851 // TODO: Do this once per compositionengine::CompositionLayer.
1852 layer->getLayerFE().latchCompositionState(layer->getLayer().editState().frontEnd,
1853 true);
1854
1855 // Recalculate the geometry state of the output layer.
1856 layer->updateCompositionState(true);
1857
1858 // Write the updated geometry state to the HWC
1859 layer->writeStateToHWC(true);
David Sodman79bba0e2018-08-05 18:07:49 -07001860 }
1861 }
1862 }
1863
1864 // Set the per-frame data
Lloyd Pique32cbe282018-10-19 13:09:22 -07001865 for (const auto& [token, displayDevice] : mDisplays) {
1866 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001867 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001868 if (!displayId) {
David Sodman79bba0e2018-08-05 18:07:49 -07001869 continue;
1870 }
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001871 auto* profile = display->getDisplayColorProfile();
David Sodman79bba0e2018-08-05 18:07:49 -07001872
1873 if (mDrawingState.colorMatrixChanged) {
1874 display->setColorTransform(mDrawingState.colorMatrix);
David Sodman79bba0e2018-08-05 18:07:49 -07001875 }
Peiyong Linc502cb72019-03-01 15:00:23 -08001876 Dataspace targetDataspace = Dataspace::UNKNOWN;
1877 if (useColorManagement) {
1878 ColorMode colorMode;
1879 RenderIntent renderIntent;
1880 pickColorMode(displayDevice, &colorMode, &targetDataspace, &renderIntent);
1881 display->setColorMode(colorMode, targetDataspace, renderIntent);
1882 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07001883 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
David Sodman79bba0e2018-08-05 18:07:49 -07001884 if (layer->isHdrY410()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001885 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001886 } else if ((layer->getDataSpace() == Dataspace::BT2020_PQ ||
1887 layer->getDataSpace() == Dataspace::BT2020_ITU_PQ) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001888 !profile->hasHDR10Support()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001889 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001890 } else if ((layer->getDataSpace() == Dataspace::BT2020_HLG ||
1891 layer->getDataSpace() == Dataspace::BT2020_ITU_HLG) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001892 !profile->hasHLGSupport()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001893 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001894 }
1895
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001896 if (layer->getRoundedCornerState().radius > 0.0f) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001897 layer->forceClientComposition(displayDevice);
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001898 }
1899
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001900 if (layer->getForceClientComposition(displayDevice)) {
David Sodman79bba0e2018-08-05 18:07:49 -07001901 ALOGV("[%s] Requesting Client composition", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001902 layer->setCompositionType(displayDevice,
1903 Hwc2::IComposerClient::Composition::CLIENT);
David Sodman79bba0e2018-08-05 18:07:49 -07001904 continue;
1905 }
1906
Lloyd Pique32cbe282018-10-19 13:09:22 -07001907 const auto& displayState = display->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001908 layer->setPerFrameData(displayDevice, displayState.transform, displayState.viewport,
Peiyong Lin34ea5b92019-03-15 18:40:15 -07001909 displayDevice->getSupportedPerFrameMetadata(),
1910 isHdrColorMode(displayState.colorMode) ? Dataspace::UNKNOWN
1911 : targetDataspace);
David Sodman79bba0e2018-08-05 18:07:49 -07001912 }
1913 }
1914
1915 mDrawingState.colorMatrixChanged = false;
David Sodmanba340492018-08-05 21:51:33 -07001916
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001917 for (const auto& [token, displayDevice] : mDisplays) {
1918 auto display = displayDevice->getCompositionDisplay();
1919 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -08001920 auto& layerState = layer->getCompositionLayer()->editState().frontEnd;
1921 layerState.compositionType = static_cast<Hwc2::IComposerClient::Composition>(
1922 layer->getCompositionType(displayDevice));
David Sodmanba340492018-08-05 21:51:33 -07001923 }
1924 }
David Sodman79bba0e2018-08-05 18:07:49 -07001925}
1926
Lloyd Pique32cbe282018-10-19 13:09:22 -07001927void SurfaceFlinger::doDebugFlashRegions(const sp<DisplayDevice>& displayDevice,
1928 bool repaintEverything) {
1929 auto display = displayDevice->getCompositionDisplay();
1930 const auto& displayState = display->getState();
1931
Mathias Agopiancd60f992012-08-16 16:28:27 -07001932 // is debugging enabled
1933 if (CC_LIKELY(!mDebugRegion))
1934 return;
1935
Lloyd Pique32cbe282018-10-19 13:09:22 -07001936 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08001937 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001938 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
David Sodmanfa9b2af2017-12-24 13:28:59 -08001939 if (!dirtyRegion.isEmpty()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001940 base::unique_fd readyFence;
David Sodmanfa9b2af2017-12-24 13:28:59 -08001941 // redraw the whole screen
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001942 doComposeSurfaces(displayDevice, dirtyRegion, &readyFence);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001943
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001944 display->getRenderSurface()->queueBuffer(std::move(readyFence));
Mathias Agopiancd60f992012-08-16 16:28:27 -07001945 }
1946 }
1947
Lloyd Pique32cbe282018-10-19 13:09:22 -07001948 postFramebuffer(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001949
1950 if (mDebugRegion > 1) {
1951 usleep(mDebugRegion * 1000);
1952 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001953
Lloyd Pique32cbe282018-10-19 13:09:22 -07001954 prepareFrame(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001955}
1956
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001957void SurfaceFlinger::logLayerStats() {
1958 ATRACE_CALL();
1959 if (CC_UNLIKELY(mLayerStats.isEnabled())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07001960 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001961 if (display->isPrimary()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001962 mLayerStats.logLayerStats(dumpVisibleLayersProtoInfo(display));
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001963 return;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001964 }
1965 }
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001966
1967 ALOGE("logLayerStats: no primary display");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001968 }
1969}
1970
David Sodman2b406362017-12-15 13:33:47 -08001971void SurfaceFlinger::preComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001972{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001973 ATRACE_CALL();
1974 ALOGV("preComposition");
1975
David Sodman2b406362017-12-15 13:33:47 -08001976 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
1977
Mathias Agopiancd60f992012-08-16 16:28:27 -07001978 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001979 mDrawingState.traverseInZOrder([&](Layer* layer) {
David Sodman2b406362017-12-15 13:33:47 -08001980 if (layer->onPreComposition(mRefreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001981 needExtraInvalidate = true;
1982 }
Robert Carr2047fae2016-11-28 14:09:09 -08001983 });
1984
Mathias Agopiancd60f992012-08-16 16:28:27 -07001985 if (needExtraInvalidate) {
1986 signalLayerUpdate();
1987 }
1988}
1989
Ana Krulece588e312018-09-18 12:32:24 -07001990void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime,
1991 std::shared_ptr<FenceTime>& presentFenceTime) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001992 // Update queue of past composite+present times and determine the
1993 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001994 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001995 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001996 while (!getBE().mCompositePresentTimes.empty()) {
1997 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001998 // Cached values should have been updated before calling this method,
1999 // which helps avoid duplicate syscalls.
2000 nsecs_t displayTime = cpt.display->getCachedSignalTime();
2001 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
2002 break;
2003 }
2004 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08002005 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002006 }
2007
2008 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08002009 while (getBE().mCompositePresentTimes.size() > 16) {
2010 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002011 }
2012
Ana Krulece588e312018-09-18 12:32:24 -07002013 setCompositorTimingSnapped(stats, compositeToPresentLatency);
Brian Andersond0010582017-03-07 13:20:31 -08002014}
2015
Ana Krulece588e312018-09-18 12:32:24 -07002016void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats,
2017 nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002018 // Integer division and modulo round toward 0 not -inf, so we need to
2019 // treat negative and positive offsets differently.
Ana Krulec757f63a2019-01-25 10:46:18 -08002020 nsecs_t idealLatency = (mPhaseOffsets->getCurrentSfOffset() > 0)
2021 ? (stats.vsyncPeriod - (mPhaseOffsets->getCurrentSfOffset() % stats.vsyncPeriod))
2022 : ((-mPhaseOffsets->getCurrentSfOffset()) % stats.vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002023
Ana Krulec757f63a2019-01-25 10:46:18 -08002024 // Just in case mPhaseOffsets->getCurrentSfOffset() == -vsyncInterval.
Brian Andersond0010582017-03-07 13:20:31 -08002025 if (idealLatency <= 0) {
Ana Krulece588e312018-09-18 12:32:24 -07002026 idealLatency = stats.vsyncPeriod;
Brian Andersond0010582017-03-07 13:20:31 -08002027 }
2028
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002029 // Snap the latency to a value that removes scheduling jitter from the
2030 // composition and present times, which often have >1ms of jitter.
2031 // Reducing jitter is important if an app attempts to extrapolate
2032 // something (such as user input) to an accurate diasplay time.
Ana Krulec757f63a2019-01-25 10:46:18 -08002033 // Snapping also allows an app to precisely calculate mPhaseOffsets->getCurrentSfOffset()
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002034 // with (presentLatency % interval).
Ana Krulece588e312018-09-18 12:32:24 -07002035 nsecs_t bias = stats.vsyncPeriod / 2;
2036 int64_t extraVsyncs = (compositeToPresentLatency - idealLatency + bias) / stats.vsyncPeriod;
2037 nsecs_t snappedCompositeToPresentLatency =
2038 (extraVsyncs > 0) ? idealLatency + (extraVsyncs * stats.vsyncPeriod) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002039
David Sodman99974d22017-11-28 12:04:33 -08002040 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
Ana Krulece588e312018-09-18 12:32:24 -07002041 getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency;
2042 getBE().mCompositorTiming.interval = stats.vsyncPeriod;
David Sodman99974d22017-11-28 12:04:33 -08002043 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002044}
2045
David Sodman2b406362017-12-15 13:33:47 -08002046void SurfaceFlinger::postComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07002047{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002048 ATRACE_CALL();
2049 ALOGV("postComposition");
2050
Brian Anderson3546a3f2016-07-14 11:51:14 -07002051 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07002052 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07002053 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07002054 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07002055 }
2056
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002057 // |mStateLock| not needed as we are on the main thread
Lloyd Pique32cbe282018-10-19 13:09:22 -07002058 const auto displayDevice = getDefaultDisplayDeviceLocked();
Brian Anderson3d4039d2016-09-23 16:31:30 -07002059
David Sodman73beded2017-11-15 11:56:06 -08002060 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07002061 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002062 if (displayDevice && getHwComposer().hasClientComposition(displayDevice->getId())) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002063 glCompositionDoneFenceTime =
Lloyd Pique31cb2942018-10-19 17:23:03 -07002064 std::make_shared<FenceTime>(displayDevice->getCompositionDisplay()
2065 ->getRenderSurface()
2066 ->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08002067 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07002068 } else {
2069 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
2070 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07002071
David Sodman73beded2017-11-15 11:56:06 -08002072 getBE().mDisplayTimeline.updateSignalTimes();
Ady Abrahambe0f9482019-04-24 15:41:53 -07002073 mPreviousPresentFences[1] = mPreviousPresentFences[0];
2074 mPreviousPresentFences[0] = displayDevice
2075 ? getHwComposer().getPresentFence(*displayDevice->getId())
2076 : Fence::NO_FENCE;
2077 auto presentFenceTime = std::make_shared<FenceTime>(mPreviousPresentFences[0]);
David Sodman73beded2017-11-15 11:56:06 -08002078 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07002079
Ana Krulece588e312018-09-18 12:32:24 -07002080 DisplayStatInfo stats;
Ana Krulecc2870422019-01-29 19:00:58 -08002081 mScheduler->getDisplayStatInfo(&stats);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002082
David Sodman2b406362017-12-15 13:33:47 -08002083 // We use the mRefreshStartTime which might be sampled a little later than
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002084 // when we started doing work for this frame, but that should be okay
2085 // since updateCompositorTiming has snapping logic.
Ana Krulece588e312018-09-18 12:32:24 -07002086 updateCompositorTiming(stats, mRefreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08002087 CompositorTiming compositorTiming;
2088 {
David Sodman99974d22017-11-28 12:04:33 -08002089 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
2090 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08002091 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002092
Robert Carr2047fae2016-11-28 14:09:09 -08002093 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002094 bool frameLatched =
2095 layer->onPostComposition(displayDevice->getId(), glCompositionDoneFenceTime,
2096 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07002097 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08002098 recordBufferingStats(layer->getName().string(),
2099 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07002100 }
Robert Carr2047fae2016-11-28 14:09:09 -08002101 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002102
Brian Andersonfbc80ae2017-05-26 16:23:54 -07002103 if (presentFenceTime->isValid()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002104 mScheduler->addPresentFence(presentFenceTime);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002105 }
2106
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08002107 if (!hasSyncFramework) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002108 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2109 displayDevice->isPoweredOn()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002110 mScheduler->enableHardwareVsync();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002111 }
2112 }
2113
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002114 if (mAnimCompositionPending) {
2115 mAnimCompositionPending = false;
2116
Brian Anderson4e606e32017-03-16 15:34:57 -07002117 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002118 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07002119 std::move(presentFenceTime));
Lloyd Pique32cbe282018-10-19 13:09:22 -07002120 } else if (displayDevice && getHwComposer().isConnected(*displayDevice->getId())) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002121 // The HWC doesn't support present fences, so use the refresh
2122 // timestamp instead.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002123 const nsecs_t presentTime =
2124 getHwComposer().getRefreshTimestamp(*displayDevice->getId());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002125 mAnimFrameTracker.setActualPresentTime(presentTime);
2126 }
2127 mAnimFrameTracker.advanceFrame();
2128 }
Dan Stozab90cf072015-03-05 11:05:59 -08002129
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002130 mTimeStats->incrementTotalFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002131 if (mHadClientComposition) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002132 mTimeStats->incrementClientCompositionFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002133 }
2134
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002135 mTimeStats->setPresentFenceGlobal(presentFenceTime);
Yiwei Zhangce6ebc02018-10-20 12:42:38 -07002136
Lloyd Pique32cbe282018-10-19 13:09:22 -07002137 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2138 !displayDevice->isPoweredOn()) {
Dan Stozab90cf072015-03-05 11:05:59 -08002139 return;
2140 }
2141
2142 nsecs_t currentTime = systemTime();
2143 if (mHasPoweredOff) {
2144 mHasPoweredOff = false;
2145 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002146 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Ana Krulece588e312018-09-18 12:32:24 -07002147 size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod);
David Sodman4a36e932017-11-07 14:29:47 -08002148 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
2149 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002150 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002151 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002152 }
David Sodman4a36e932017-11-07 14:29:47 -08002153 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002154 }
David Sodman4a36e932017-11-07 14:29:47 -08002155 getBE().mLastSwapTime = currentTime;
Dan Stoza436ccf32018-06-21 12:10:12 -07002156
2157 {
2158 std::lock_guard lock(mTexturePoolMutex);
Dan Stoza67765d82019-05-07 14:58:27 -07002159 if (mTexturePool.size() < mTexturePoolSize) {
2160 const size_t refillCount = mTexturePoolSize - mTexturePool.size();
Dan Stoza436ccf32018-06-21 12:10:12 -07002161 const size_t offset = mTexturePool.size();
2162 mTexturePool.resize(mTexturePoolSize);
2163 getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset);
2164 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Dan Stoza67765d82019-05-07 14:58:27 -07002165 } else if (mTexturePool.size() > mTexturePoolSize) {
2166 const size_t deleteCount = mTexturePool.size() - mTexturePoolSize;
2167 const size_t offset = mTexturePoolSize;
2168 getRenderEngine().deleteTextures(deleteCount, mTexturePool.data() + offset);
2169 mTexturePool.resize(mTexturePoolSize);
2170 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Dan Stoza436ccf32018-06-21 12:10:12 -07002171 }
2172 }
Marissa Walle2ffb422018-10-12 11:33:52 -07002173
Ady Abrahambe0f9482019-04-24 15:41:53 -07002174 mTransactionCompletedThread.addPresentFence(mPreviousPresentFences[0]);
Marissa Wallf384e052019-06-12 13:25:07 -07002175
2176 // Lock the mStateLock in case SurfaceFlinger is in the middle of applying a transaction.
2177 // If we do not lock here, a callback could be sent without all of its SurfaceControls and
2178 // metrics.
2179 {
2180 Mutex::Autolock _l(mStateLock);
2181 mTransactionCompletedThread.sendCallbacks();
2182 }
Ady Abraham8164d482019-01-11 14:47:59 -08002183
Kevin DuBois413287f2019-02-25 08:46:47 -08002184 if (mLumaSampling && mRegionSamplingThread) {
2185 mRegionSamplingThread->notifyNewContent();
Dan Stozaec460082018-12-17 15:35:09 -08002186 }
Dan Stoza45de5ba2019-04-25 14:12:09 -07002187
2188 // Even though ATRACE_INT64 already checks if tracing is enabled, it doesn't prevent the
2189 // side-effect of getTotalSize(), so we check that again here
2190 if (ATRACE_ENABLED()) {
2191 ATRACE_INT64("Total Buffer Size", GraphicBufferAllocator::get().getTotalSize());
2192 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002193}
2194
Vishnu Nair4351ad52019-02-11 14:13:02 -08002195void SurfaceFlinger::computeLayerBounds() {
2196 for (const auto& pair : mDisplays) {
2197 const auto& displayDevice = pair.second;
2198 const auto display = displayDevice->getCompositionDisplay();
2199 for (const auto& layer : mDrawingState.layersSortedByZ) {
2200 // only consider the layers on the given layer stack
2201 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Vishnu Nair01ace762019-02-12 14:25:24 -08002202 continue;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002203 }
2204
2205 layer->computeBounds(displayDevice->getViewport().toFloatRect(), ui::Transform());
2206 }
2207 }
2208}
2209
Mathias Agopiancd60f992012-08-16 16:28:27 -07002210void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002211 ATRACE_CALL();
2212 ALOGV("rebuildLayerStacks");
2213
Mathias Agopiancd60f992012-08-16 16:28:27 -07002214 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07002215 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07002216 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07002217 mVisibleRegionsDirty = false;
2218 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002219
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002220 for (const auto& pair : mDisplays) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002221 const auto& displayDevice = pair.second;
2222 auto display = displayDevice->getCompositionDisplay();
2223 const auto& displayState = display->getState();
Jeff Sharkey76488112017-02-27 14:15:18 -07002224 Region opaqueRegion;
2225 Region dirtyRegion;
Lloyd Piquecc01a452018-12-04 17:24:00 -08002226 compositionengine::Output::OutputLayers layersSortedByZ;
2227 Vector<sp<Layer>> deprecated_layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08002228 Vector<sp<Layer>> layersNeedingFences;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002229 const ui::Transform& tr = displayState.transform;
2230 const Rect bounds = displayState.bounds;
2231 if (displayState.isEnabled) {
2232 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002233
Jeff Sharkey76488112017-02-27 14:15:18 -07002234 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Piquecc01a452018-12-04 17:24:00 -08002235 auto compositionLayer = layer->getCompositionLayer();
2236 if (compositionLayer == nullptr) {
2237 return;
2238 }
2239
Lloyd Pique32cbe282018-10-19 13:09:22 -07002240 const auto displayId = displayDevice->getId();
Lloyd Piquecc01a452018-12-04 17:24:00 -08002241 sp<compositionengine::LayerFE> layerFE = compositionLayer->getLayerFE();
2242 LOG_ALWAYS_FATAL_IF(layerFE.get() == nullptr);
2243
Lloyd Pique07e33212018-12-18 16:33:37 -08002244 bool needsOutputLayer = false;
2245
Lloyd Piqueef36b002019-01-23 17:52:04 -08002246 if (display->belongsInOutput(layer->getLayerStack(),
2247 layer->getPrimaryDisplayOnly())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07002248 Region drawRegion(tr.transform(
2249 layer->visibleNonTransparentRegion));
2250 drawRegion.andSelf(bounds);
2251 if (!drawRegion.isEmpty()) {
Lloyd Pique07e33212018-12-18 16:33:37 -08002252 needsOutputLayer = true;
Jeff Sharkey76488112017-02-27 14:15:18 -07002253 }
Chia-I Wu83806892017-11-16 10:50:20 -08002254 }
2255
Lloyd Pique07e33212018-12-18 16:33:37 -08002256 if (needsOutputLayer) {
2257 layersSortedByZ.emplace_back(
2258 display->getOrCreateOutputLayer(displayId, compositionLayer,
2259 layerFE));
2260 deprecated_layersSortedByZ.add(layer);
2261
2262 auto& outputLayerState = layersSortedByZ.back()->editState();
2263 outputLayerState.visibleRegion =
2264 tr.transform(layer->visibleRegion.intersect(displayState.viewport));
2265 } else if (displayId) {
2266 // For layers that are being removed from a HWC display,
2267 // and that have queued frames, add them to a a list of
2268 // released layers so we can properly set a fence.
2269 bool hasExistingOutputLayer =
2270 display->getOutputLayerForLayer(compositionLayer.get()) != nullptr;
2271 bool hasQueuedFrames = std::find(mLayersWithQueuedFrames.cbegin(),
2272 mLayersWithQueuedFrames.cend(),
2273 layer) != mLayersWithQueuedFrames.cend();
2274
2275 if (hasExistingOutputLayer && hasQueuedFrames) {
Chia-I Wu83806892017-11-16 10:50:20 -08002276 layersNeedingFences.add(layer);
2277 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002278 }
Jeff Sharkey76488112017-02-27 14:15:18 -07002279 });
2280 }
Lloyd Piquecc01a452018-12-04 17:24:00 -08002281
2282 display->setOutputLayersOrderedByZ(std::move(layersSortedByZ));
2283
2284 displayDevice->setVisibleLayersSortedByZ(deprecated_layersSortedByZ);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002285 displayDevice->setLayersNeedingFences(layersNeedingFences);
2286
2287 Region undefinedRegion{bounds};
2288 undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
2289
2290 display->editState().undefinedRegion = undefinedRegion;
2291 display->editState().dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002292 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002293 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002294}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002295
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002296// Returns a data space that fits all visible layers. The returned data space
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002297// can only be one of
Chia-I Wu7a28ecb2018-05-04 10:38:39 -07002298// - Dataspace::SRGB (use legacy dataspace and let HWC saturate when colors are enhanced)
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002299// - Dataspace::DISPLAY_P3
Valerie Hau9758ae02018-10-09 16:05:09 -07002300// - Dataspace::DISPLAY_BT2020
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002301// The returned HDR data space is one of
2302// - Dataspace::UNKNOWN
2303// - Dataspace::BT2020_HLG
2304// - Dataspace::BT2020_PQ
Peiyong Lin03912882019-04-16 15:34:46 -07002305Dataspace SurfaceFlinger::getBestDataspace(const sp<DisplayDevice>& display,
2306 Dataspace* outHdrDataSpace,
2307 bool* outIsHdrClientComposition) const {
Peiyong Lin14724e62018-12-05 07:27:30 -08002308 Dataspace bestDataSpace = Dataspace::V0_SRGB;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002309 *outHdrDataSpace = Dataspace::UNKNOWN;
2310
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002311 for (const auto& layer : display->getVisibleLayersSortedByZ()) {
Chia-I Wu01591c92018-05-22 12:03:00 -07002312 switch (layer->getDataSpace()) {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002313 case Dataspace::V0_SCRGB:
2314 case Dataspace::V0_SCRGB_LINEAR:
Valerie Hau9758ae02018-10-09 16:05:09 -07002315 case Dataspace::BT2020:
2316 case Dataspace::BT2020_ITU:
2317 case Dataspace::BT2020_LINEAR:
2318 case Dataspace::DISPLAY_BT2020:
2319 bestDataSpace = Dataspace::DISPLAY_BT2020;
2320 break;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002321 case Dataspace::DISPLAY_P3:
Chia-I Wube02ec02018-05-18 10:59:36 -07002322 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002323 break;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002324 case Dataspace::BT2020_PQ:
2325 case Dataspace::BT2020_ITU_PQ:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002326 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002327 *outHdrDataSpace = Dataspace::BT2020_PQ;
Peiyong Lin03912882019-04-16 15:34:46 -07002328 *outIsHdrClientComposition = layer->getForceClientComposition(display);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002329 break;
Peiyong Linf59a7192018-04-25 11:19:31 -07002330 case Dataspace::BT2020_HLG:
2331 case Dataspace::BT2020_ITU_HLG:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002332 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002333 // When there's mixed PQ content and HLG content, we set the HDR
2334 // data space to be BT2020_PQ and convert HLG to PQ.
2335 if (*outHdrDataSpace == Dataspace::UNKNOWN) {
2336 *outHdrDataSpace = Dataspace::BT2020_HLG;
Peiyong Linf59a7192018-04-25 11:19:31 -07002337 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002338 break;
2339 default:
2340 break;
2341 }
Romain Guy54f154a2017-10-24 21:40:32 +01002342 }
2343
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002344 return bestDataSpace;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002345}
2346
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002347// Pick the ColorMode / Dataspace for the display device.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002348void SurfaceFlinger::pickColorMode(const sp<DisplayDevice>& display, ColorMode* outMode,
2349 Dataspace* outDataSpace, RenderIntent* outRenderIntent) const {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002350 if (mDisplayColorSetting == DisplayColorSetting::UNMANAGED) {
2351 *outMode = ColorMode::NATIVE;
2352 *outDataSpace = Dataspace::UNKNOWN;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002353 *outRenderIntent = RenderIntent::COLORIMETRIC;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002354 return;
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002355 }
Romain Guy88d37dd2017-05-26 17:57:05 -07002356
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002357 Dataspace hdrDataSpace;
Peiyong Lin03912882019-04-16 15:34:46 -07002358 bool isHdrClientComposition = false;
2359 Dataspace bestDataSpace = getBestDataspace(display, &hdrDataSpace, &isHdrClientComposition);
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002360
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002361 auto* profile = display->getCompositionDisplay()->getDisplayColorProfile();
2362
Peiyong Lina3ea5592019-02-10 14:45:00 -08002363 switch (mForceColorMode) {
2364 case ColorMode::SRGB:
2365 bestDataSpace = Dataspace::V0_SRGB;
2366 break;
2367 case ColorMode::DISPLAY_P3:
2368 bestDataSpace = Dataspace::DISPLAY_P3;
2369 break;
2370 default:
2371 break;
2372 }
2373
Peiyong Lindfde5112018-06-05 10:58:41 -07002374 // respect hdrDataSpace only when there is no legacy HDR support
Peiyong Lin03912882019-04-16 15:34:46 -07002375 const bool isHdr = hdrDataSpace != Dataspace::UNKNOWN &&
2376 !profile->hasLegacyHdrSupport(hdrDataSpace) && !isHdrClientComposition;
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002377 if (isHdr) {
2378 bestDataSpace = hdrDataSpace;
2379 }
2380
Chia-I Wu0d711262018-05-21 15:19:35 -07002381 RenderIntent intent;
2382 switch (mDisplayColorSetting) {
2383 case DisplayColorSetting::MANAGED:
2384 case DisplayColorSetting::UNMANAGED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002385 intent = isHdr ? RenderIntent::TONE_MAP_COLORIMETRIC : RenderIntent::COLORIMETRIC;
Chia-I Wu0d711262018-05-21 15:19:35 -07002386 break;
2387 case DisplayColorSetting::ENHANCED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002388 intent = isHdr ? RenderIntent::TONE_MAP_ENHANCE : RenderIntent::ENHANCE;
Chia-I Wu0d711262018-05-21 15:19:35 -07002389 break;
2390 default: // vendor display color setting
2391 intent = static_cast<RenderIntent>(mDisplayColorSetting);
2392 break;
2393 }
Chia-I Wube02ec02018-05-18 10:59:36 -07002394
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002395 profile->getBestColorMode(bestDataSpace, intent, outDataSpace, outMode, outRenderIntent);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002396}
2397
Lloyd Pique32cbe282018-10-19 13:09:22 -07002398void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) {
2399 auto display = displayDevice->getCompositionDisplay();
2400 const auto& displayState = display->getState();
2401
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002402 bool dirty = !display->getDirtyRegion(false).isEmpty();
Lloyd Pique32cbe282018-10-19 13:09:22 -07002403 bool empty = displayDevice->getVisibleLayersSortedByZ().size() == 0;
2404 bool wasEmpty = !displayState.lastCompositionHadVisibleLayers;
David Sodman2b406362017-12-15 13:33:47 -08002405
David Sodmanfa9b2af2017-12-24 13:28:59 -08002406 // If nothing has changed (!dirty), don't recompose.
2407 // If something changed, but we don't currently have any visible layers,
2408 // and didn't when we last did a composition, then skip it this time.
2409 // The second rule does two things:
2410 // - When all layers are removed from a display, we'll emit one black
2411 // frame, then nothing more until we get new layers.
2412 // - When a display is created with a private layer stack, we won't
2413 // emit any black frames until a layer is added to the layer stack.
2414 bool mustRecompose = dirty && !(empty && wasEmpty);
David Sodman2b406362017-12-15 13:33:47 -08002415
Dominik Laskowski075d3172018-05-24 15:50:06 -07002416 const char flagPrefix[] = {'-', '+'};
2417 static_cast<void>(flagPrefix);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002418 ALOGV_IF(displayDevice->isVirtual(), "%s: %s composition for %s (%cdirty %cempty %cwasEmpty)",
2419 __FUNCTION__, mustRecompose ? "doing" : "skipping",
2420 displayDevice->getDebugName().c_str(), flagPrefix[dirty], flagPrefix[empty],
2421 flagPrefix[wasEmpty]);
David Sodman2b406362017-12-15 13:33:47 -08002422
Lloyd Pique31cb2942018-10-19 17:23:03 -07002423 display->getRenderSurface()->beginFrame(mustRecompose);
David Sodman2b406362017-12-15 13:33:47 -08002424
David Sodmanfa9b2af2017-12-24 13:28:59 -08002425 if (mustRecompose) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002426 display->editState().lastCompositionHadVisibleLayers = !empty;
David Sodman2b406362017-12-15 13:33:47 -08002427 }
2428}
2429
Lloyd Pique32cbe282018-10-19 13:09:22 -07002430void SurfaceFlinger::prepareFrame(const sp<DisplayDevice>& displayDevice) {
2431 auto display = displayDevice->getCompositionDisplay();
2432 const auto& displayState = display->getState();
2433
2434 if (!displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002435 return;
David Sodman2b406362017-12-15 13:33:47 -08002436 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08002437
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002438 status_t result = display->getRenderSurface()->prepareFrame();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002439 ALOGE_IF(result != NO_ERROR, "prepareFrame failed for %s: %d (%s)",
Lloyd Pique32cbe282018-10-19 13:09:22 -07002440 displayDevice->getDebugName().c_str(), result, strerror(-result));
David Sodman2b406362017-12-15 13:33:47 -08002441}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002442
Lloyd Pique32cbe282018-10-19 13:09:22 -07002443void SurfaceFlinger::doComposition(const sp<DisplayDevice>& displayDevice, bool repaintEverything) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002444 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002445 ALOGV("doComposition");
2446
Lloyd Pique32cbe282018-10-19 13:09:22 -07002447 auto display = displayDevice->getCompositionDisplay();
2448 const auto& displayState = display->getState();
2449
2450 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002451 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002452 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
Mathias Agopian02b95102012-11-05 17:50:57 -08002453
David Sodmanfa9b2af2017-12-24 13:28:59 -08002454 // repaint the framebuffer (if needed)
Lloyd Pique32cbe282018-10-19 13:09:22 -07002455 doDisplayComposition(displayDevice, dirtyRegion);
Mathias Agopian02b95102012-11-05 17:50:57 -08002456
Lloyd Pique32cbe282018-10-19 13:09:22 -07002457 display->editState().dirtyRegion.clear();
Lloyd Pique31cb2942018-10-19 17:23:03 -07002458 display->getRenderSurface()->flip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002459 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002460 postFramebuffer(displayDevice);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002461}
2462
David Sodmanfa9b2af2017-12-24 13:28:59 -08002463void SurfaceFlinger::postFrame()
2464{
2465 // |mStateLock| not needed as we are on the main thread
Dominik Laskowski075d3172018-05-24 15:50:06 -07002466 const auto display = getDefaultDisplayDeviceLocked();
2467 if (display && getHwComposer().isConnected(*display->getId())) {
2468 uint32_t flipCount = display->getPageFlipCount();
David Sodmanfa9b2af2017-12-24 13:28:59 -08002469 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2470 logFrameStats();
2471 }
2472 }
2473}
2474
Lloyd Pique32cbe282018-10-19 13:09:22 -07002475void SurfaceFlinger::postFramebuffer(const sp<DisplayDevice>& displayDevice) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002476 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002477 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08002478
Lloyd Pique32cbe282018-10-19 13:09:22 -07002479 auto display = displayDevice->getCompositionDisplay();
2480 const auto& displayState = display->getState();
2481 const auto displayId = display->getId();
2482
Lloyd Pique32cbe282018-10-19 13:09:22 -07002483 if (displayState.isEnabled) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002484 if (displayId) {
2485 getHwComposer().presentAndGetReleaseFences(*displayId);
Mathias Agopian2a231842012-09-24 18:12:35 -07002486 }
Lloyd Pique31cb2942018-10-19 17:23:03 -07002487 display->getRenderSurface()->onPresentDisplayCompleted();
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002488 for (auto& layer : display->getOutputLayersOrderedByZ()) {
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002489 sp<Fence> releaseFence = Fence::NO_FENCE;
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002490 bool usedClientComposition = true;
David Sodman15094112018-10-11 09:39:37 -07002491
Chia-I Wu7b549592017-11-15 09:14:57 -08002492 // The layer buffer from the previous frame (if any) is released
2493 // by HWC only when the release fence from this frame (if any) is
2494 // signaled. Always get the release fence from HWC first.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002495 if (layer->getState().hwc) {
2496 const auto& hwcState = *layer->getState().hwc;
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002497 releaseFence =
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002498 getHwComposer().getLayerReleaseFence(*displayId, hwcState.hwcLayer.get());
2499 usedClientComposition =
2500 hwcState.hwcCompositionType == Hwc2::IComposerClient::Composition::CLIENT;
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002501 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002502
2503 // If the layer was client composited in the previous frame, we
2504 // need to merge with the previous client target acquire fence.
2505 // Since we do not track that, always merge with the current
2506 // client target acquire fence when it is available, even though
2507 // this is suboptimal.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002508 if (usedClientComposition) {
Lloyd Pique31cb2942018-10-19 17:23:03 -07002509 releaseFence =
2510 Fence::merge("LayerRelease", releaseFence,
2511 display->getRenderSurface()->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002512 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002513
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002514 layer->getLayerFE().onLayerDisplayed(releaseFence);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002515 }
Chia-I Wu83806892017-11-16 10:50:20 -08002516
2517 // We've got a list of layers needing fences, that are disjoint with
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002518 // display->getVisibleLayersSortedByZ. The best we can do is to
Chia-I Wu83806892017-11-16 10:50:20 -08002519 // supply them with the present fence.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002520 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002521 sp<Fence> presentFence =
Lloyd Pique441d5042018-10-18 16:49:51 -07002522 displayId ? getHwComposer().getPresentFence(*displayId) : Fence::NO_FENCE;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002523 for (auto& layer : displayDevice->getLayersNeedingFences()) {
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002524 layer->getCompositionLayer()->getLayerFE()->onLayerDisplayed(presentFence);
Chia-I Wu83806892017-11-16 10:50:20 -08002525 }
2526 }
2527
Dominik Laskowski075d3172018-05-24 15:50:06 -07002528 if (displayId) {
2529 getHwComposer().clearReleaseFences(*displayId);
Jesse Hallef194142012-06-14 14:45:17 -07002530 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002531 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002532}
2533
Mathias Agopian87baae12012-07-31 12:38:26 -07002534void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002535{
Mathias Agopian841cde52012-03-01 15:44:37 -08002536 ATRACE_CALL();
2537
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002538 // here we keep a copy of the drawing state (that is the state that's
2539 // going to be overwritten by handleTransactionLocked()) outside of
2540 // mStateLock so that the side-effects of the State assignment
2541 // don't happen with mStateLock held (which can cause deadlocks).
2542 State drawingState(mDrawingState);
2543
Mathias Agopianca4d3602011-05-19 15:38:14 -07002544 Mutex::Autolock _l(mStateLock);
Dominik Laskowski9dab3432019-03-27 13:21:10 -07002545 mDebugInTransaction = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002546
Mathias Agopianca4d3602011-05-19 15:38:14 -07002547 // Here we're guaranteed that some transaction flags are set
2548 // so we can call handleTransactionLocked() unconditionally.
2549 // We call getTransactionFlags(), which will also clear the flags,
2550 // with mStateLock held to guarantee that mCurrentState won't change
2551 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002552
Jorim Jaggif15c3be2018-04-12 12:56:58 +01002553 mVsyncModulator.onTransactionHandled();
Mathias Agopiane57f2922012-08-09 16:29:12 -07002554 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002555 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002556
Mathias Agopianca4d3602011-05-19 15:38:14 -07002557 mDebugInTransaction = 0;
2558 invalidateHwcGeometry();
2559 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002560}
2561
Lloyd Piqueba04e622017-12-14 17:11:26 -08002562void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2563 for (const auto& event : mPendingHotplugEvents) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002564 const std::optional<DisplayIdentificationInfo> info =
2565 getHwComposer().onHotplug(event.hwcDisplayId, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002566
Dominik Laskowski075d3172018-05-24 15:50:06 -07002567 if (!info) {
Lloyd Piqueba04e622017-12-14 17:11:26 -08002568 continue;
2569 }
2570
Lloyd Piqueba04e622017-12-14 17:11:26 -08002571 if (event.connection == HWC2::Connection::Connected) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002572 if (!mPhysicalDisplayTokens.count(info->id)) {
Dominik Laskowski34157762018-10-31 13:07:19 -07002573 ALOGV("Creating display %s", to_string(info->id).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07002574 mPhysicalDisplayTokens[info->id] = new BBinder();
2575 DisplayDeviceState state;
2576 state.displayId = info->id;
2577 state.isSecure = true; // All physical displays are currently considered secure.
2578 state.displayName = info->name;
2579 mCurrentState.displays.add(mPhysicalDisplayTokens[info->id], state);
2580 mInterceptor->saveDisplayCreation(state);
Steven Thomaseb6d2052018-03-20 15:40:48 -07002581 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002582 } else {
Dominik Laskowski34157762018-10-31 13:07:19 -07002583 ALOGV("Removing display %s", to_string(info->id).c_str());
Lloyd Piqueba04e622017-12-14 17:11:26 -08002584
Dominik Laskowski075d3172018-05-24 15:50:06 -07002585 ssize_t index = mCurrentState.displays.indexOfKey(mPhysicalDisplayTokens[info->id]);
2586 if (index >= 0) {
2587 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
2588 mInterceptor->saveDisplayDeletion(state.sequenceId);
2589 mCurrentState.displays.removeItemsAt(index);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002590 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002591 mPhysicalDisplayTokens.erase(info->id);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002592 }
2593
2594 processDisplayChangesLocked();
2595 }
2596
2597 mPendingHotplugEvents.clear();
2598}
2599
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002600void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) {
Ana Krulecc2870422019-01-29 19:00:58 -08002601 mScheduler->hotplugReceived(mAppConnectionHandle, displayId, connected);
2602 mScheduler->hotplugReceived(mSfConnectionHandle, displayId, connected);
Dominik Laskowski1eba0202019-01-24 09:14:40 -08002603}
2604
Lloyd Pique99d3da52018-01-22 17:48:03 -08002605sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal(
Dominik Laskowski075d3172018-05-24 15:50:06 -07002606 const wp<IBinder>& displayToken, const std::optional<DisplayId>& displayId,
Lloyd Pique542307f2018-10-19 13:24:08 -07002607 const DisplayDeviceState& state, const sp<compositionengine::DisplaySurface>& dispSurface,
Dominik Laskowski075d3172018-05-24 15:50:06 -07002608 const sp<IGraphicBufferProducer>& producer) {
2609 DisplayDeviceCreationArgs creationArgs(this, displayToken, displayId);
Dominik Laskowskie9774092018-12-11 10:04:24 -08002610 creationArgs.sequenceId = state.sequenceId;
Dominik Laskowski075d3172018-05-24 15:50:06 -07002611 creationArgs.isVirtual = state.isVirtual();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002612 creationArgs.isSecure = state.isSecure;
2613 creationArgs.displaySurface = dispSurface;
2614 creationArgs.hasWideColorGamut = false;
2615 creationArgs.supportedPerFrameMetadata = 0;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002616
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002617 const bool isInternalDisplay = displayId && displayId == getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002618 creationArgs.isPrimary = isInternalDisplay;
2619
2620 if (useColorManagement && displayId) {
2621 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002622 for (ColorMode colorMode : modes) {
Peiyong Linfca547f2018-07-09 13:03:33 -07002623 if (isWideColorMode(colorMode)) {
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002624 creationArgs.hasWideColorGamut = true;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002625 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002626
Dominik Laskowski7e045462018-05-30 13:02:02 -07002627 std::vector<RenderIntent> renderIntents =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002628 getHwComposer().getRenderIntents(*displayId, colorMode);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002629 creationArgs.hwcColorModes.emplace(colorMode, renderIntents);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002630 }
tangrobin6753a022018-08-10 10:58:54 +08002631 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002632
Dominik Laskowski075d3172018-05-24 15:50:06 -07002633 if (displayId) {
2634 getHwComposer().getHdrCapabilities(*displayId, &creationArgs.hdrCapabilities);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002635 creationArgs.supportedPerFrameMetadata =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002636 getHwComposer().getSupportedPerFrameMetadata(*displayId);
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002637 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002638
Lloyd Pique90c115d2018-09-18 21:39:42 -07002639 auto nativeWindowSurface = getFactory().createNativeWindowSurface(producer);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002640 auto nativeWindow = nativeWindowSurface->getNativeWindow();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002641 creationArgs.nativeWindow = nativeWindow;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002642
Lloyd Pique99d3da52018-01-22 17:48:03 -08002643 // Make sure that composition can never be stalled by a virtual display
2644 // consumer that isn't processing buffers fast enough. We have to do this
Alec Mouri0a9c7b82018-11-16 13:05:25 -08002645 // here, in case the display is composed entirely by HWC.
Dominik Laskowski281644e2018-04-19 15:47:35 -07002646 if (state.isVirtual()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002647 nativeWindow->setSwapInterval(nativeWindow.get(), 0);
2648 }
2649
Dominik Laskowski075d3172018-05-24 15:50:06 -07002650 creationArgs.displayInstallOrientation =
2651 isInternalDisplay ? primaryDisplayOrientation : DisplayState::eOrientationDefault;
Chia-I Wua02871c2018-08-27 14:38:23 -07002652
Lloyd Pique99d3da52018-01-22 17:48:03 -08002653 // virtual displays are always considered enabled
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002654 creationArgs.initialPowerMode = state.isVirtual() ? HWC_POWER_MODE_NORMAL : HWC_POWER_MODE_OFF;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002655
Lloyd Pique90c115d2018-09-18 21:39:42 -07002656 sp<DisplayDevice> display = getFactory().createDisplayDevice(std::move(creationArgs));
Lloyd Pique99d3da52018-01-22 17:48:03 -08002657
2658 if (maxFrameBufferAcquiredBuffers >= 3) {
2659 nativeWindowSurface->preallocateBuffers();
2660 }
2661
2662 ColorMode defaultColorMode = ColorMode::NATIVE;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002663 Dataspace defaultDataSpace = Dataspace::UNKNOWN;
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002664 if (display->hasWideColorGamut()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002665 defaultColorMode = ColorMode::SRGB;
Peiyong Lin14724e62018-12-05 07:27:30 -08002666 defaultDataSpace = Dataspace::V0_SRGB;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002667 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002668 display->getCompositionDisplay()->setColorMode(defaultColorMode, defaultDataSpace,
2669 RenderIntent::COLORIMETRIC);
Dominik Laskowski075d3172018-05-24 15:50:06 -07002670 if (!state.isVirtual()) {
2671 LOG_ALWAYS_FATAL_IF(!displayId);
2672 display->setActiveConfig(getHwComposer().getActiveConfigIndex(*displayId));
Lloyd Pique3c085a02018-05-09 19:38:32 -07002673 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002674
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002675 display->setLayerStack(state.layerStack);
2676 display->setProjection(state.orientation, state.viewport, state.frame);
2677 display->setDisplayName(state.displayName);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002678
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002679 return display;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002680}
2681
Lloyd Pique347200f2017-12-14 17:00:15 -08002682void SurfaceFlinger::processDisplayChangesLocked() {
2683 // here we take advantage of Vector's copy-on-write semantics to
2684 // improve performance by skipping the transaction entirely when
2685 // know that the lists are identical
2686 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2687 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2688 if (!curr.isIdenticalTo(draw)) {
2689 mVisibleRegionsDirty = true;
2690 const size_t cc = curr.size();
2691 size_t dc = draw.size();
2692
2693 // find the displays that were removed
2694 // (ie: in drawing state but not in current state)
2695 // also handle displays that changed
2696 // (ie: displays that are in both lists)
2697 for (size_t i = 0; i < dc;) {
2698 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2699 if (j < 0) {
2700 // in drawing state but not in current state
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002701 if (const auto display = getDisplayDeviceLocked(draw.keyAt(i))) {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002702 // Save display ID before disconnecting.
2703 const auto displayId = display->getId();
Lloyd Pique45a165a2018-10-19 11:54:47 -07002704 display->disconnect();
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002705
2706 if (!display->isVirtual()) {
2707 LOG_ALWAYS_FATAL_IF(!displayId);
2708 dispatchDisplayHotplugEvent(displayId->value, false);
2709 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002710 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002711
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002712 mDisplays.erase(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002713 } else {
2714 // this display is in both lists. see if something changed.
2715 const DisplayDeviceState& state(curr[j]);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002716 const wp<IBinder>& displayToken = curr.keyAt(j);
Lloyd Pique347200f2017-12-14 17:00:15 -08002717 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2718 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2719 if (state_binder != draw_binder) {
2720 // changing the surface is like destroying and
2721 // recreating the DisplayDevice, so we just remove it
2722 // from the drawing state, so that it get re-added
2723 // below.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002724 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique45a165a2018-10-19 11:54:47 -07002725 display->disconnect();
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002726 }
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002727 mDisplays.erase(displayToken);
Lloyd Pique347200f2017-12-14 17:00:15 -08002728 mDrawingState.displays.removeItemsAt(i);
2729 dc--;
2730 // at this point we must loop to the next item
2731 continue;
2732 }
2733
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002734 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002735 if (state.layerStack != draw[i].layerStack) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002736 display->setLayerStack(state.layerStack);
Lloyd Pique347200f2017-12-14 17:00:15 -08002737 }
2738 if ((state.orientation != draw[i].orientation) ||
2739 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002740 display->setProjection(state.orientation, state.viewport, state.frame);
Lloyd Pique347200f2017-12-14 17:00:15 -08002741 }
2742 if (state.width != draw[i].width || state.height != draw[i].height) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002743 display->setDisplaySize(state.width, state.height);
Lloyd Pique347200f2017-12-14 17:00:15 -08002744 }
2745 }
2746 }
2747 ++i;
2748 }
2749
2750 // find displays that were added
2751 // (ie: in current state but not in drawing state)
2752 for (size_t i = 0; i < cc; i++) {
2753 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2754 const DisplayDeviceState& state(curr[i]);
2755
Lloyd Pique542307f2018-10-19 13:24:08 -07002756 sp<compositionengine::DisplaySurface> dispSurface;
Lloyd Pique347200f2017-12-14 17:00:15 -08002757 sp<IGraphicBufferProducer> producer;
2758 sp<IGraphicBufferProducer> bqProducer;
2759 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique90c115d2018-09-18 21:39:42 -07002760 getFactory().createBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002761
Dominik Laskowski075d3172018-05-24 15:50:06 -07002762 std::optional<DisplayId> displayId;
Dominik Laskowski663bd282018-04-19 15:26:54 -07002763 if (state.isVirtual()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002764 // Virtual displays without a surface are dormant:
2765 // they have external state (layer stack, projection,
2766 // etc.) but no internal state (i.e. a DisplayDevice).
2767 if (state.surface != nullptr) {
2768 // Allow VR composer to use virtual displays.
Dominik Laskowski075d3172018-05-24 15:50:06 -07002769 if (mUseHwcVirtualDisplays || getHwComposer().isUsingVrComposer()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002770 int width = 0;
2771 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2772 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2773 int height = 0;
2774 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2775 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2776 int intFormat = 0;
2777 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2778 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
Peiyong Lin34beb7a2018-03-28 11:57:12 -07002779 auto format = static_cast<ui::PixelFormat>(intFormat);
Lloyd Pique347200f2017-12-14 17:00:15 -08002780
Dominik Laskowski075d3172018-05-24 15:50:06 -07002781 displayId =
2782 getHwComposer().allocateVirtualDisplay(width, height, &format);
Lloyd Pique347200f2017-12-14 17:00:15 -08002783 }
2784
2785 // TODO: Plumb requested format back up to consumer
2786
2787 sp<VirtualDisplaySurface> vds =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002788 new VirtualDisplaySurface(getHwComposer(), displayId, state.surface,
Lloyd Pique347200f2017-12-14 17:00:15 -08002789 bqProducer, bqConsumer,
2790 state.displayName);
2791
2792 dispSurface = vds;
2793 producer = vds;
2794 }
2795 } else {
2796 ALOGE_IF(state.surface != nullptr,
2797 "adding a supported display, but rendering "
2798 "surface is provided (%p), ignoring it",
2799 state.surface.get());
2800
Dominik Laskowski075d3172018-05-24 15:50:06 -07002801 displayId = state.displayId;
2802 LOG_ALWAYS_FATAL_IF(!displayId);
2803 dispSurface = new FramebufferSurface(getHwComposer(), *displayId, bqConsumer);
Lloyd Pique347200f2017-12-14 17:00:15 -08002804 producer = bqProducer;
2805 }
2806
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002807 const wp<IBinder>& displayToken = curr.keyAt(i);
Lloyd Pique347200f2017-12-14 17:00:15 -08002808 if (dispSurface != nullptr) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002809 mDisplays.emplace(displayToken,
Dominik Laskowski7e045462018-05-30 13:02:02 -07002810 setupNewDisplayDeviceInternal(displayToken, displayId, state,
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002811 dispSurface, producer));
Dominik Laskowski663bd282018-04-19 15:26:54 -07002812 if (!state.isVirtual()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002813 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002814 dispatchDisplayHotplugEvent(displayId->value, true);
Lloyd Pique347200f2017-12-14 17:00:15 -08002815 }
2816 }
2817 }
2818 }
2819 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002820
2821 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002822}
2823
Mathias Agopian87baae12012-07-31 12:38:26 -07002824void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002825{
Dan Stoza7dde5992015-05-22 09:51:44 -07002826 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002827 mCurrentState.traverseInZOrder([](Layer* layer) {
2828 layer->notifyAvailableFrames();
2829 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002830
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002831 /*
2832 * Traversal of the children
2833 * (perform the transaction for each of them if needed)
2834 */
2835
Marissa Wall06255332019-03-27 13:48:27 -07002836 if ((transactionFlags & eTraversalNeeded) || mTraversalNeededMainThread) {
Robert Carr2047fae2016-11-28 14:09:09 -08002837 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002838 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002839 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002840
2841 const uint32_t flags = layer->doTransaction(0);
2842 if (flags & Layer::eVisibleRegion)
2843 mVisibleRegionsDirty = true;
Robert Carr720e5062018-07-30 17:45:14 -07002844
2845 if (flags & Layer::eInputInfoChanged) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002846 mInputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002847 }
Robert Carr2047fae2016-11-28 14:09:09 -08002848 });
Marissa Wall06255332019-03-27 13:48:27 -07002849 mTraversalNeededMainThread = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002850 }
2851
2852 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002853 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002854 */
2855
Mathias Agopiane57f2922012-08-09 16:29:12 -07002856 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002857 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002858 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002859 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002860
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002861 if (transactionFlags & (eDisplayLayerStackChanged|eDisplayTransactionNeeded)) {
Mathias Agopian84300952012-11-21 16:02:13 -08002862 // The transform hint might have changed for some layers
2863 // (either because a display has changed, or because a layer
2864 // as changed).
2865 //
2866 // Walk through all the layers in currentLayers,
2867 // and update their transform hint.
2868 //
2869 // If a layer is visible only on a single display, then that
2870 // display is used to calculate the hint, otherwise we use the
2871 // default display.
2872 //
2873 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2874 // the hint is set before we acquire a buffer from the surface texture.
2875 //
2876 // NOTE: layer transactions have taken place already, so we use their
2877 // drawing state. However, SurfaceFlinger's own transaction has not
2878 // happened yet, so we must use the current state layer list
2879 // (soon to become the drawing state list).
2880 //
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002881 sp<const DisplayDevice> hintDisplay;
Mathias Agopian84300952012-11-21 16:02:13 -08002882 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002883 bool first = true;
2884 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002885 // NOTE: we rely on the fact that layers are sorted by
2886 // layerStack first (so we don't have to traverse the list
2887 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002888 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002889 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002890 currentlayerStack = layerStack;
2891 // figure out if this layerstack is mirrored
2892 // (more than one display) if so, pick the default display,
2893 // if not, pick the only display it's on.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002894 hintDisplay = nullptr;
2895 for (const auto& [token, display] : mDisplays) {
Lloyd Piqueef36b002019-01-23 17:52:04 -08002896 if (display->getCompositionDisplay()
2897 ->belongsInOutput(layer->getLayerStack(),
2898 layer->getPrimaryDisplayOnly())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002899 if (hintDisplay) {
2900 hintDisplay = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002901 break;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002902 } else {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002903 hintDisplay = display;
Mathias Agopian84300952012-11-21 16:02:13 -08002904 }
2905 }
2906 }
2907 }
Chet Haase91d25932013-04-11 15:24:55 -07002908
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002909 if (!hintDisplay) {
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002910 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2911 // redraw after transform hint changes. See bug 8508397.
Robert Carr56a0b9a2017-12-04 16:06:13 -08002912
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002913 // could be null when this layer is using a layerStack
2914 // that is not visible on any display. Also can occur at
2915 // screen off/on times.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002916 hintDisplay = getDefaultDisplayDeviceLocked();
Mathias Agopian84300952012-11-21 16:02:13 -08002917 }
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002918
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002919 // could be null if there is no display available at all to get
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002920 // the transform hint from.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002921 if (hintDisplay) {
2922 layer->updateTransformHint(hintDisplay);
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002923 }
Robert Carr2047fae2016-11-28 14:09:09 -08002924
2925 first = false;
2926 });
Mathias Agopian84300952012-11-21 16:02:13 -08002927 }
2928
2929
Mathias Agopian3559b072012-08-15 13:46:03 -07002930 /*
2931 * Perform our own transaction if needed
2932 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002933
2934 if (mLayersAdded) {
2935 mLayersAdded = false;
2936 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002937 mVisibleRegionsDirty = true;
2938 }
2939
2940 // some layers might have been removed, so
2941 // we need to update the regions they're exposing.
2942 if (mLayersRemoved) {
2943 mLayersRemoved = false;
2944 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002945 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002946 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002947 // this layer is not visible anymore
Robert Carr1f0a16a2016-10-24 16:27:39 -07002948 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002949 visibleReg.set(layer->getScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002950 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002951 }
Robert Carr2047fae2016-11-28 14:09:09 -08002952 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002953 }
2954
Vishnu Nairec0ab382019-02-13 15:32:56 -08002955 commitInputWindowCommands();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002956 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002957}
2958
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002959void SurfaceFlinger::updateInputFlinger() {
Robert Carr720e5062018-07-30 17:45:14 -07002960 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002961 if (!mInputFlinger) {
Vishnu Nairde19f852018-12-18 16:11:53 -08002962 return;
2963 }
2964
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002965 if (mVisibleRegionsDirty || mInputInfoChanged) {
2966 mInputInfoChanged = false;
2967 updateInputWindowInfo();
chaviw95ef3c42019-02-14 10:55:09 -08002968 } else if (mInputWindowCommands.syncInputWindows) {
2969 // If the caller requested to sync input windows, but there are no
2970 // changes to input windows, notify immediately.
2971 setInputWindowsFinished();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002972 }
2973
2974 executeInputWindowCommands();
2975}
2976
2977void SurfaceFlinger::updateInputWindowInfo() {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002978 std::vector<InputWindowInfo> inputHandles;
Robert Carr720e5062018-07-30 17:45:14 -07002979
2980 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
2981 if (layer->hasInput()) {
Vishnu Nair51625fa2018-12-06 13:54:33 -08002982 // When calculating the screen bounds we ignore the transparent region since it may
2983 // result in an unwanted offset.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002984 inputHandles.push_back(layer->fillInputInfo());
Robert Carr720e5062018-07-30 17:45:14 -07002985 }
2986 });
chaviw291d88a2019-02-14 10:33:58 -08002987
2988 mInputFlinger->setInputWindows(inputHandles,
2989 mInputWindowCommands.syncInputWindows ? mSetInputWindowsListener
2990 : nullptr);
Robert Carr720e5062018-07-30 17:45:14 -07002991}
2992
Vishnu Nairec0ab382019-02-13 15:32:56 -08002993void SurfaceFlinger::commitInputWindowCommands() {
chaviw4fe36852019-04-15 16:25:49 -07002994 mInputWindowCommands = mPendingInputWindowCommands;
Vishnu Nairec0ab382019-02-13 15:32:56 -08002995 mPendingInputWindowCommands.clear();
2996}
2997
chaviwfbe5d9c2018-12-26 12:23:37 -08002998void SurfaceFlinger::executeInputWindowCommands() {
chaviwfbe5d9c2018-12-26 12:23:37 -08002999 for (const auto& transferTouchFocusCommand : mInputWindowCommands.transferTouchFocusCommands) {
3000 if (transferTouchFocusCommand.fromToken != nullptr &&
3001 transferTouchFocusCommand.toToken != nullptr &&
3002 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) {
3003 mInputFlinger->transferTouchFocus(transferTouchFocusCommand.fromToken,
3004 transferTouchFocusCommand.toToken);
3005 }
3006 }
3007
3008 mInputWindowCommands.clear();
3009}
3010
Riley Andrews03414a12014-07-01 14:22:59 -07003011void SurfaceFlinger::updateCursorAsync()
3012{
Dominik Laskowski9fae1022018-05-29 13:17:40 -07003013 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003014 if (!display->getId()) {
Riley Andrews03414a12014-07-01 14:22:59 -07003015 continue;
3016 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08003017
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003018 for (auto& layer : display->getVisibleLayersSortedByZ()) {
3019 layer->updateCursorPosition(display);
Riley Andrews03414a12014-07-01 14:22:59 -07003020 }
3021 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003022}
3023
chaviw61626f22018-11-15 16:26:27 -08003024void SurfaceFlinger::latchAndReleaseBuffer(const sp<Layer>& layer) {
3025 if (layer->hasReadyFrame()) {
Robert Carra0629232019-02-07 15:28:54 -08003026 bool ignored = false;
Alec Mouri56e538f2019-01-14 15:22:01 -08003027 layer->latchBuffer(ignored, systemTime());
chaviw61626f22018-11-15 16:26:27 -08003028 }
3029 layer->releasePendingBuffer(systemTime());
3030}
3031
Mathias Agopian4fec8732012-06-29 14:12:52 -07003032void SurfaceFlinger::commitTransaction()
3033{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00003034 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07003035 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07003036 for (const auto& l : mLayersPendingRemoval) {
3037 recordBufferingStats(l->getName().string(),
3038 l->getOccupancyHistory(true));
Robert Carr2e102c92018-10-23 12:11:15 -07003039
Lloyd Pique07e33212018-12-18 16:33:37 -08003040 // Ensure any buffers set to display on any children are released.
Robert Carr2e102c92018-10-23 12:11:15 -07003041 if (l->isRemovedFromCurrentState()) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08003042 latchAndReleaseBuffer(l);
Robert Carr2e102c92018-10-23 12:11:15 -07003043 }
chaviw74d90ad2019-04-26 14:45:26 -07003044
3045 // If the layer has been removed and has no parent, then it will not be reachable
3046 // when traversing layers on screen. Add the layer to the offscreenLayers set to
3047 // ensure we can copy its current to drawing state.
3048 if (!l->getParent()) {
3049 mOffscreenLayers.emplace(l.get());
3050 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003051 }
3052 mLayersPendingRemoval.clear();
3053 }
3054
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003055 // If this transaction is part of a window animation then the next frame
3056 // we composite should be considered an animation as well.
3057 mAnimCompositionPending = mAnimTransactionPending;
3058
Nataniel Borges2b796da2019-02-15 13:32:18 -08003059 withTracingLock([&]() {
3060 mDrawingState = mCurrentState;
3061 // clear the "changed" flags in current state
3062 mCurrentState.colorMatrixChanged = false;
Chia-I Wu28f320b2018-05-03 11:02:56 -07003063
chaviw74d90ad2019-04-26 14:45:26 -07003064 mDrawingState.traverseInZOrder([&](Layer* layer) {
3065 layer->commitChildList();
3066
3067 // If the layer can be reached when traversing mDrawingState, then the layer is no
3068 // longer offscreen. Remove the layer from the offscreenLayer set.
3069 if (mOffscreenLayers.count(layer)) {
3070 mOffscreenLayers.erase(layer);
3071 }
3072 });
3073
3074 commitOffscreenLayers();
Robert Carr1f0a16a2016-10-24 16:27:39 -07003075 });
Nataniel Borges2b796da2019-02-15 13:32:18 -08003076
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003077 mTransactionPending = false;
3078 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003079 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003080}
3081
Nataniel Borges2b796da2019-02-15 13:32:18 -08003082void SurfaceFlinger::withTracingLock(std::function<void()> lockedOperation) {
3083 if (mTracingEnabledChanged) {
3084 mTracingEnabled = mTracing.isEnabled();
3085 mTracingEnabledChanged = false;
3086 }
3087
3088 // Synchronize with Tracing thread
3089 std::unique_lock<std::mutex> lock;
3090 if (mTracingEnabled) {
3091 lock = std::unique_lock<std::mutex>(mDrawingStateLock);
3092 }
3093
3094 lockedOperation();
3095
3096 // Synchronize with Tracing thread
3097 if (mTracingEnabled) {
3098 lock.unlock();
3099 }
3100}
3101
chaviw74d90ad2019-04-26 14:45:26 -07003102void SurfaceFlinger::commitOffscreenLayers() {
3103 for (Layer* offscreenLayer : mOffscreenLayers) {
3104 offscreenLayer->traverseInZOrder(LayerVector::StateSet::Drawing, [](Layer* layer) {
3105 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
3106 if (!trFlags) return;
3107
3108 layer->doTransaction(0);
3109 layer->commitChildList();
3110 });
3111 }
3112}
3113
Lloyd Pique32cbe282018-10-19 13:09:22 -07003114void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003115 Region& outDirtyRegion, Region& outOpaqueRegion) {
Mathias Agopian841cde52012-03-01 15:44:37 -08003116 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003117 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08003118
Lloyd Pique32cbe282018-10-19 13:09:22 -07003119 auto display = displayDevice->getCompositionDisplay();
3120
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003121 Region aboveOpaqueLayers;
3122 Region aboveCoveredLayers;
3123 Region dirty;
3124
Mathias Agopian87baae12012-07-31 12:38:26 -07003125 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003126
Robert Carr2047fae2016-11-28 14:09:09 -08003127 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003128 // start with the whole surface at its current location
3129 const Layer::State& s(layer->getDrawingState());
3130
Jesse Hall01e29052013-02-19 16:13:35 -08003131 // only consider the layers on the given layer stack
Lloyd Piqueef36b002019-01-23 17:52:04 -08003132 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Robert Carr2047fae2016-11-28 14:09:09 -08003133 return;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003134 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003135
Mathias Agopianab028732010-03-16 16:41:46 -07003136 /*
3137 * opaqueRegion: area of a surface that is fully opaque.
3138 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003139 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003140
3141 /*
3142 * visibleRegion: area of a surface that is visible on screen
3143 * and not fully transparent. This is essentially the layer's
3144 * footprint minus the opaque regions above it.
3145 * Areas covered by a translucent surface are considered visible.
3146 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003147 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003148
3149 /*
3150 * coveredRegion: area of a surface that is covered by all
3151 * visible regions above it (which includes the translucent areas).
3152 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003153 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003154
Jesse Halla8026d22012-09-25 13:25:04 -07003155 /*
3156 * transparentRegion: area of a surface that is hinted to be completely
3157 * transparent. This is only used to tell when the layer has no visible
3158 * non-transparent regions and can be removed from the layer list. It
3159 * does not affect the visibleRegion of this layer or any layers
3160 * beneath it. The hint may not be correct if apps don't respect the
3161 * SurfaceView restrictions (which, sadly, some don't).
3162 */
3163 Region transparentRegion;
3164
Mathias Agopianab028732010-03-16 16:41:46 -07003165
3166 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07003167 if (CC_LIKELY(layer->isVisible())) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003168 const bool translucent = !layer->isOpaque(s);
Vishnu Nair4351ad52019-02-11 14:13:02 -08003169 Rect bounds(layer->getScreenBounds());
Robert Carr720e5062018-07-30 17:45:14 -07003170
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003171 visibleRegion.set(bounds);
Peiyong Linefefaac2018-08-17 12:27:51 -07003172 ui::Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07003173 if (!visibleRegion.isEmpty()) {
3174 // Remove the transparent area from the visible region
3175 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003176 if (tr.preserveRects()) {
3177 // transform the transparent region
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003178 transparentRegion = tr.transform(layer->getActiveTransparentRegion(s));
Mathias Agopian4fec8732012-06-29 14:12:52 -07003179 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003180 // transformation too complex, can't do the
3181 // transparent region optimization.
3182 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07003183 }
Mathias Agopianab028732010-03-16 16:41:46 -07003184 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003185
Mathias Agopianab028732010-03-16 16:41:46 -07003186 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07003187 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02003188 if (layer->getAlpha() == 1.0f && !translucent &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003189 layer->getRoundedCornerState().radius == 0.0f &&
Peiyong Linefefaac2018-08-17 12:27:51 -07003190 ((layerOrientation & ui::Transform::ROT_INVALID) == false)) {
Mathias Agopianab028732010-03-16 16:41:46 -07003191 // the opaque region is the layer's footprint
3192 opaqueRegion = visibleRegion;
3193 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003194 }
3195 }
3196
Robert Carre5f4f692018-01-12 13:12:28 -08003197 if (visibleRegion.isEmpty()) {
3198 layer->clearVisibilityRegions();
3199 return;
3200 }
3201
Mathias Agopianab028732010-03-16 16:41:46 -07003202 // Clip the covered region to the visible region
3203 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
3204
3205 // Update aboveCoveredLayers for next (lower) layer
3206 aboveCoveredLayers.orSelf(visibleRegion);
3207
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003208 // subtract the opaque region covered by the layers above us
3209 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003210
3211 // compute this layer's dirty region
3212 if (layer->contentDirty) {
3213 // we need to invalidate the whole region
3214 dirty = visibleRegion;
3215 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07003216 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003217 layer->contentDirty = false;
3218 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003219 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07003220 * the exposed region consists of two components:
3221 * 1) what's VISIBLE now and was COVERED before
3222 * 2) what's EXPOSED now less what was EXPOSED before
3223 *
3224 * note that (1) is conservative, we start with the whole
3225 * visible region but only keep what used to be covered by
3226 * something -- which mean it may have been exposed.
3227 *
3228 * (2) handles areas that were not covered by anything but got
3229 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003230 */
Mathias Agopianab028732010-03-16 16:41:46 -07003231 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003232 const Region oldVisibleRegion = layer->visibleRegion;
3233 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003234 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
3235 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003236 }
3237 dirty.subtractSelf(aboveOpaqueLayers);
3238
3239 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07003240 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003241
Mathias Agopianab028732010-03-16 16:41:46 -07003242 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003243 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003244
Jesse Halla8026d22012-09-25 13:25:04 -07003245 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003246 layer->setVisibleRegion(visibleRegion);
3247 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07003248 layer->setVisibleNonTransparentRegion(
3249 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08003250 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003251
Mathias Agopian87baae12012-07-31 12:38:26 -07003252 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003253}
3254
Chia-I Wuab0c3192017-08-01 11:29:00 -07003255void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003256 for (const auto& [token, displayDevice] : mDisplays) {
3257 auto display = displayDevice->getCompositionDisplay();
Lloyd Piqueef36b002019-01-23 17:52:04 -08003258 if (display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003259 display->editState().dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07003260 }
3261 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003262}
3263
Dan Stoza6b9454d2014-11-07 16:00:59 -08003264bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003265{
Ady Abraham09bd3922019-04-08 10:44:56 -07003266 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003267 ALOGV("handlePageFlip");
3268
Brian Andersond6927fb2016-07-23 23:37:30 -07003269 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003270
Mathias Agopian4fec8732012-06-29 14:12:52 -07003271 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003272 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06003273 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07003274
3275 // Store the set of layers that need updates. This set must not change as
3276 // buffers are being latched, as this could result in a deadlock.
3277 // Example: Two producers share the same command stream and:
3278 // 1.) Layer 0 is latched
3279 // 2.) Layer 0 gets a new frame
3280 // 2.) Layer 1 gets a new frame
3281 // 3.) Layer 1 is latched.
3282 // Display is now waiting on Layer 1's frame, which is behind layer 0's
3283 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08003284 mDrawingState.traverseInZOrder([&](Layer* layer) {
Marissa Wallfd668622018-05-10 10:21:13 -07003285 if (layer->hasReadyFrame()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003286 frameQueued = true;
Alec Mouriaa614192019-06-06 13:28:34 -07003287 const nsecs_t expectedPresentTime = getExpectedPresentTime();
Ana Krulec010d2192018-10-08 06:29:54 -07003288 if (layer->shouldPresentNow(expectedPresentTime)) {
Robert Carr2047fae2016-11-28 14:09:09 -08003289 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07003290 } else {
Ady Abraham09bd3922019-04-08 10:44:56 -07003291 ATRACE_NAME("!layer->shouldPresentNow()");
Dan Stozaee44edd2015-03-23 15:50:23 -07003292 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003293 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003294 } else {
3295 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003296 }
Robert Carr2047fae2016-11-28 14:09:09 -08003297 });
3298
Lloyd Piquef2c79392018-12-20 16:23:33 -08003299 if (!mLayersWithQueuedFrames.empty()) {
3300 // mStateLock is needed for latchBuffer as LayerRejecter::reject()
3301 // writes to Layer current state. See also b/119481871
3302 Mutex::Autolock lock(mStateLock);
3303
3304 for (auto& layer : mLayersWithQueuedFrames) {
Alec Mouri56e538f2019-01-14 15:22:01 -08003305 if (layer->latchBuffer(visibleRegions, latchTime)) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08003306 mLayersPendingRefresh.push_back(layer);
3307 }
Lloyd Piquef2c79392018-12-20 16:23:33 -08003308 layer->useSurfaceDamage();
Lloyd Piquef2c79392018-12-20 16:23:33 -08003309 if (layer->isBufferLatched()) {
3310 newDataLatched = true;
3311 }
Mike Stroyan0cd76192017-04-20 12:10:48 -06003312 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003313 }
Mathias Agopian4da75192010-08-10 17:19:56 -07003314
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07003315 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003316
3317 // If we will need to wake up at some time in the future to deal with a
3318 // queued frame that shouldn't be displayed during this vsync period, wake
3319 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07003320 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003321 signalLayerUpdate();
3322 }
3323
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08003324 // enter boot animation on first buffer latch
3325 if (CC_UNLIKELY(mBootStage == BootStage::BOOTLOADER && newDataLatched)) {
3326 ALOGI("Enter boot animation");
3327 mBootStage = BootStage::BOOTANIMATION;
3328 }
3329
Dan Stoza6b9454d2014-11-07 16:00:59 -08003330 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06003331 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003332}
3333
Mathias Agopianad456f92011-01-13 17:53:01 -08003334void SurfaceFlinger::invalidateHwcGeometry()
3335{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003336 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08003337}
3338
Lloyd Pique32cbe282018-10-19 13:09:22 -07003339void SurfaceFlinger::doDisplayComposition(const sp<DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003340 const Region& inDirtyRegion) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003341 auto display = displayDevice->getCompositionDisplay();
Dan Stoza71433162014-02-04 16:22:36 -08003342 // We only need to actually compose the display if:
3343 // 1) It is being handled by hardware composer, which may need this to
3344 // keep its virtual display state machine in sync, or
3345 // 2) There is work to be done (the dirty region isn't empty)
Lloyd Pique32cbe282018-10-19 13:09:22 -07003346 if (!displayDevice->getId() && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08003347 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08003348 return;
3349 }
3350
Dan Stoza9e56aa02015-11-02 13:00:03 -08003351 ALOGV("doDisplayComposition");
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003352 base::unique_fd readyFence;
3353 if (!doComposeSurfaces(displayDevice, Region::INVALID_REGION, &readyFence)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07003354
3355 // swap buffers (presentation)
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003356 display->getRenderSurface()->queueBuffer(std::move(readyFence));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003357}
3358
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003359bool SurfaceFlinger::doComposeSurfaces(const sp<DisplayDevice>& displayDevice,
3360 const Region& debugRegion, base::unique_fd* readyFence) {
Alec Mouri820c7402019-01-23 13:02:39 -08003361 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003362 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07003363
Lloyd Pique32cbe282018-10-19 13:09:22 -07003364 auto display = displayDevice->getCompositionDisplay();
3365 const auto& displayState = display->getState();
Dominik Laskowski7e045462018-05-30 13:02:02 -07003366 const auto displayId = display->getId();
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003367 auto& renderEngine = getRenderEngine();
Peiyong Lin548d4fa2019-04-02 18:14:44 -07003368 const bool supportProtectedContent = renderEngine.supportsProtectedContent();
Lloyd Pique32cbe282018-10-19 13:09:22 -07003369
3370 const Region bounds(displayState.bounds);
3371 const DisplayRenderArea renderArea(displayDevice);
Lloyd Pique441d5042018-10-18 16:49:51 -07003372 const bool hasClientComposition = getHwComposer().hasClientComposition(displayId);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08003373 ATRACE_INT("hasClientComposition", hasClientComposition);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003374
Chia-I Wu8e50e692018-05-04 10:12:37 -07003375 bool applyColorMatrix = false;
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003376
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003377 renderengine::DisplaySettings clientCompositionDisplay;
3378 std::vector<renderengine::LayerSettings> clientCompositionLayers;
3379 sp<GraphicBuffer> buf;
Alec Mouri6338c9d2019-02-07 16:57:51 -08003380 base::unique_fd fd;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003381
Dan Stoza9e56aa02015-11-02 13:00:03 -08003382 if (hasClientComposition) {
3383 ALOGV("hasClientComposition");
3384
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003385 if (displayDevice->isPrimary() && supportProtectedContent) {
3386 bool needsProtected = false;
3387 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
3388 // If the layer is a protected layer, mark protected context is needed.
3389 if (layer->isProtected()) {
3390 needsProtected = true;
3391 break;
3392 }
3393 }
Peiyong Lin52010312019-05-02 14:22:16 -07003394 if (needsProtected != renderEngine.isProtected()) {
3395 renderEngine.useProtectedContext(needsProtected);
3396 }
3397 if (needsProtected != display->getRenderSurface()->isProtected() &&
3398 needsProtected == renderEngine.isProtected()) {
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003399 display->getRenderSurface()->setProtected(needsProtected);
3400 }
3401 }
3402
Alec Mouri6338c9d2019-02-07 16:57:51 -08003403 buf = display->getRenderSurface()->dequeueBuffer(&fd);
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003404
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003405 if (buf == nullptr) {
3406 ALOGW("Dequeuing buffer for display [%s] failed, bailing out of "
3407 "client composition for this frame",
Lloyd Pique32cbe282018-10-19 13:09:22 -07003408 displayDevice->getDisplayName().c_str());
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003409 return false;
3410 }
3411
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003412 clientCompositionDisplay.physicalDisplay = displayState.scissor;
3413 clientCompositionDisplay.clip = displayState.scissor;
3414 const ui::Transform& displayTransform = displayState.transform;
Lloyd Pique7e06e7f2019-03-15 18:36:44 -07003415 clientCompositionDisplay.globalTransform = displayTransform.asMatrix4();
Peiyong Linb1925962019-04-01 16:37:10 -07003416 clientCompositionDisplay.orientation = displayState.orientation;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003417
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003418 const auto* profile = display->getDisplayColorProfile();
Peiyong Lin34beb7a2018-03-28 11:57:12 -07003419 Dataspace outputDataspace = Dataspace::UNKNOWN;
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003420 if (profile->hasWideColorGamut()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003421 outputDataspace = displayState.dataspace;
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003422 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003423 clientCompositionDisplay.outputDataspace = outputDataspace;
3424 clientCompositionDisplay.maxLuminance =
3425 profile->getHdrCapabilities().getDesiredMaxLuminance();
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003426
Lloyd Pique441d5042018-10-18 16:49:51 -07003427 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId);
Peiyong Lined531a32018-10-26 18:27:56 -07003428 const bool skipClientColorTransform =
Lloyd Pique441d5042018-10-18 16:49:51 -07003429 getHwComposer()
3430 .hasDisplayCapability(displayId,
3431 HWC2::DisplayCapability::SkipClientColorTransform);
Chia-I Wu8e50e692018-05-04 10:12:37 -07003432
Peiyong Lind3788632018-09-18 16:01:31 -07003433 // Compute the global color transform matrix.
Chia-I Wu8e50e692018-05-04 10:12:37 -07003434 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform;
3435 if (applyColorMatrix) {
Alec Mouric7e8ce82019-04-02 12:28:05 -07003436 clientCompositionDisplay.colorTransform = displayState.colorTransformMat;
Mathias Agopianf45c5102012-10-24 16:29:17 -07003437 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07003438 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003439
Mathias Agopian85d751c2012-08-29 16:59:24 -07003440 /*
3441 * and then, render the layers targeted at the framebuffer
3442 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003443
Dan Stoza9e56aa02015-11-02 13:00:03 -08003444 ALOGV("Rendering client layers");
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003445 bool firstLayer = true;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003446 Region clearRegion = Region::INVALID_REGION;
Lloyd Pique32cbe282018-10-19 13:09:22 -07003447 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003448 const Region viewportRegion(displayState.viewport);
3449 const Region clip(viewportRegion.intersect(layer->visibleRegion));
David Sodmanc1498e62018-09-12 14:36:26 -07003450 ALOGV("Layer: %s", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003451 ALOGV(" Composition type: %s", toString(layer->getCompositionType(displayDevice)).c_str());
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003452 if (!clip.isEmpty()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003453 switch (layer->getCompositionType(displayDevice)) {
3454 case Hwc2::IComposerClient::Composition::CURSOR:
3455 case Hwc2::IComposerClient::Composition::DEVICE:
3456 case Hwc2::IComposerClient::Composition::SIDEBAND:
3457 case Hwc2::IComposerClient::Composition::SOLID_COLOR: {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003458 LOG_ALWAYS_FATAL_IF(!displayId);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003459 const Layer::State& state(layer->getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003460 if (layer->getClearClientTarget(displayDevice) && !firstLayer &&
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003461 layer->isOpaque(state) && (layer->getAlpha() == 1.0f) &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003462 layer->getRoundedCornerState().radius == 0.0f && hasClientComposition) {
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003463 // never clear the very first layer since we're
3464 // guaranteed the FB is already cleared
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003465 renderengine::LayerSettings layerSettings;
3466 Region dummyRegion;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003467 bool prepared =
3468 layer->prepareClientLayer(renderArea, clip, dummyRegion,
3469 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003470
3471 if (prepared) {
3472 layerSettings.source.buffer.buffer = nullptr;
3473 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
3474 layerSettings.alpha = half(0.0);
3475 layerSettings.disableBlending = true;
3476 clientCompositionLayers.push_back(layerSettings);
3477 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07003478 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003479 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07003480 }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003481 case Hwc2::IComposerClient::Composition::CLIENT: {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003482 renderengine::LayerSettings layerSettings;
3483 bool prepared =
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003484 layer->prepareClientLayer(renderArea, clip, clearRegion,
3485 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003486 if (prepared) {
3487 clientCompositionLayers.push_back(layerSettings);
Peiyong Lind3788632018-09-18 16:01:31 -07003488 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003489 break;
3490 }
3491 default:
3492 break;
Mathias Agopian85d751c2012-08-29 16:59:24 -07003493 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003494 } else {
3495 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07003496 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003497 firstLayer = false;
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003498 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07003499
Alec Mouri820c7402019-01-23 13:02:39 -08003500 // Perform some cleanup steps if we used client composition.
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003501 if (hasClientComposition) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003502 clientCompositionDisplay.clearRegion = clearRegion;
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003503
3504 // We boost GPU frequency here because there will be color spaces conversion
3505 // and it's expensive. We boost the GPU frequency so that GPU composition can
3506 // finish in time. We must reset GPU frequency afterwards, because high frequency
3507 // consumes extra battery.
3508 const bool expensiveRenderingExpected =
3509 clientCompositionDisplay.outputDataspace == Dataspace::DISPLAY_P3;
3510 if (expensiveRenderingExpected && displayId) {
3511 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, true);
3512 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003513 if (!debugRegion.isEmpty()) {
3514 Region::const_iterator it = debugRegion.begin();
3515 Region::const_iterator end = debugRegion.end();
3516 while (it != end) {
3517 const Rect& rect = *it++;
3518 renderengine::LayerSettings layerSettings;
3519 layerSettings.source.buffer.buffer = nullptr;
3520 layerSettings.source.solidColor = half3(1.0, 0.0, 1.0);
3521 layerSettings.geometry.boundaries = rect.toFloatRect();
3522 layerSettings.alpha = half(1.0);
3523 clientCompositionLayers.push_back(layerSettings);
3524 }
3525 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003526 renderEngine.drawLayers(clientCompositionDisplay, clientCompositionLayers,
Alec Mourife0d72b2019-03-21 14:05:56 -07003527 buf->getNativeBuffer(), /*useFramebufferCache=*/true, std::move(fd),
3528 readyFence);
Peiyong Lin8ec87f82019-04-05 11:30:51 -07003529 } else if (displayId) {
3530 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, false);
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003531 }
Michael Lentine3f121fc2014-10-01 11:17:28 -07003532 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003533}
3534
Chia-I Wu28e3a252018-09-07 12:05:02 -07003535void SurfaceFlinger::drawWormhole(const Region& region) const {
Lloyd Pique144e1162017-12-20 16:44:52 -08003536 auto& engine(getRenderEngine());
Chia-I Wu28e3a252018-09-07 12:05:02 -07003537 engine.fillRegionWithColor(region, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003538}
3539
Robert Carrc0df3122019-04-11 13:18:21 -07003540status_t SurfaceFlinger::addClientLayer(const sp<Client>& client, const sp<IBinder>& handle,
3541 const sp<IGraphicBufferProducer>& gbc, const sp<Layer>& lbc,
3542 const sp<IBinder>& parentHandle,
3543 const sp<Layer>& parentLayer, bool addToCurrentState) {
Dan Stoza7d89d062015-04-30 13:29:25 -07003544 // add this layer to the current state list
3545 {
3546 Mutex::Autolock _l(mStateLock);
Robert Carrc0df3122019-04-11 13:18:21 -07003547 sp<Layer> parent;
3548 if (parentHandle != nullptr) {
3549 parent = fromHandle(parentHandle);
3550 if (parent == nullptr) {
3551 return NAME_NOT_FOUND;
3552 }
3553 } else {
3554 parent = parentLayer;
3555 }
3556
Robert Carr1f0a16a2016-10-24 16:27:39 -07003557 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06003558 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
3559 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07003560 return NO_MEMORY;
3561 }
Robert Carrc0df3122019-04-11 13:18:21 -07003562
3563 mLayersByLocalBinderToken.emplace(handle->localBinder(), lbc);
3564
Robert Carrb89ea9d2018-12-10 13:01:14 -08003565 if (parent == nullptr && addToCurrentState) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003566 mCurrentState.layersSortedByZ.add(lbc);
chaviwac841852019-01-16 16:04:43 -08003567 } else if (parent == nullptr) {
3568 lbc->onRemovedFromCurrentState();
3569 } else if (parent->isRemovedFromCurrentState()) {
3570 parent->addChild(lbc);
3571 lbc->onRemovedFromCurrentState();
Robert Carrb89ea9d2018-12-10 13:01:14 -08003572 } else {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003573 parent->addChild(lbc);
3574 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07003575
Yiwei Zhang243b3782018-05-15 17:40:04 -07003576 if (gbc != nullptr) {
3577 mGraphicBufferProducerList.insert(IInterface::asBinder(gbc).get());
3578 LOG_ALWAYS_FATAL_IF(mGraphicBufferProducerList.size() >
3579 mMaxGraphicBufferProducerListSize,
3580 "Suspected IGBP leak: %zu IGBPs (%zu max), %zu Layers",
3581 mGraphicBufferProducerList.size(),
3582 mMaxGraphicBufferProducerListSize, mNumLayers);
3583 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07003584 mLayersAdded = true;
Dan Stoza7d89d062015-04-30 13:29:25 -07003585 }
3586
Mathias Agopian96f08192010-06-02 23:28:45 -07003587 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08003588 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07003589
Dan Stoza7d89d062015-04-30 13:29:25 -07003590 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07003591}
3592
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08003593uint32_t SurfaceFlinger::peekTransactionFlags() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003594 return mTransactionFlags;
Mathias Agopiandea20b12011-05-03 17:04:02 -07003595}
3596
Mathias Agopian3f844832013-08-07 21:24:32 -07003597uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003598 return mTransactionFlags.fetch_and(~flags) & flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003599}
3600
Mathias Agopian3f844832013-08-07 21:24:32 -07003601uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003602 return setTransactionFlags(flags, Scheduler::TransactionStart::NORMAL);
Dan Stoza84d619e2018-03-28 17:07:36 -07003603}
3604
3605uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags,
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003606 Scheduler::TransactionStart transactionStart) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003607 uint32_t old = mTransactionFlags.fetch_or(flags);
Dan Stoza84d619e2018-03-28 17:07:36 -07003608 mVsyncModulator.setTransactionStart(transactionStart);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003609 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003610 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003611 }
3612 return old;
3613}
3614
Marissa Wall713b63f2018-10-17 15:42:43 -07003615bool SurfaceFlinger::flushTransactionQueues() {
Valerie Haufce31b82019-04-30 16:41:14 -07003616 // to prevent onHandleDestroyed from being called while the lock is held,
3617 // we must keep a copy of the transactions (specifically the composer
3618 // states) around outside the scope of the lock
3619 std::vector<const TransactionState> transactions;
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003620 bool flushedATransaction = false;
Valerie Haufce31b82019-04-30 16:41:14 -07003621 {
3622 Mutex::Autolock _l(mStateLock);
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003623
Valerie Haufce31b82019-04-30 16:41:14 -07003624 auto it = mTransactionQueues.begin();
3625 while (it != mTransactionQueues.end()) {
3626 auto& [applyToken, transactionQueue] = *it;
Marissa Wall713b63f2018-10-17 15:42:43 -07003627
Valerie Haufce31b82019-04-30 16:41:14 -07003628 while (!transactionQueue.empty()) {
3629 const auto& transaction = transactionQueue.front();
3630 if (!transactionIsReadyToBeApplied(transaction.desiredPresentTime,
3631 transaction.states)) {
3632 setTransactionFlags(eTransactionFlushNeeded);
3633 break;
3634 }
3635 transactions.push_back(transaction);
3636 applyTransactionState(transaction.states, transaction.displays, transaction.flags,
3637 mPendingInputWindowCommands, transaction.desiredPresentTime,
3638 transaction.buffer, transaction.callback,
3639 transaction.postTime, transaction.privileged,
3640 /*isMainThread*/ true);
3641 transactionQueue.pop();
3642 flushedATransaction = true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003643 }
Marissa Wall713b63f2018-10-17 15:42:43 -07003644
Valerie Haufce31b82019-04-30 16:41:14 -07003645 if (transactionQueue.empty()) {
3646 it = mTransactionQueues.erase(it);
3647 mTransactionCV.broadcast();
3648 } else {
Valerie Haue5562ec2019-05-14 12:39:16 -07003649 it = std::next(it, 1);
Valerie Haufce31b82019-04-30 16:41:14 -07003650 }
Valerie Hauf6016b62019-03-28 10:49:59 -07003651 }
Marissa Wall713b63f2018-10-17 15:42:43 -07003652 }
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003653 return flushedATransaction;
3654}
3655
3656bool SurfaceFlinger::transactionFlushNeeded() {
3657 return !mTransactionQueues.empty();
Marissa Wall713b63f2018-10-17 15:42:43 -07003658}
3659
chaviwca27f252018-02-06 16:46:39 -08003660bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
3661 for (const ComposerState& state : states) {
3662 // Here we need to check that the interface we're given is indeed
3663 // one of our own. A malicious client could give us a nullptr
3664 // IInterface, or one of its own or even one of our own but a
3665 // different type. All these situations would cause us to crash.
3666 if (state.client == nullptr) {
3667 return true;
3668 }
3669
3670 sp<IBinder> binder = IInterface::asBinder(state.client);
3671 if (binder == nullptr) {
3672 return true;
3673 }
3674
3675 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
3676 return true;
3677 }
3678 }
3679 return false;
3680}
3681
Marissa Wall17b4e452018-12-26 16:32:34 -08003682bool SurfaceFlinger::transactionIsReadyToBeApplied(int64_t desiredPresentTime,
3683 const Vector<ComposerState>& states) {
Ady Abraham8fe11022019-06-12 17:11:12 -07003684 nsecs_t expectedPresentTime = getExpectedPresentTime();
Marissa Wall17b4e452018-12-26 16:32:34 -08003685 // Do not present if the desiredPresentTime has not passed unless it is more than one second
3686 // in the future. We ignore timestamps more than 1 second in the future for stability reasons.
3687 if (desiredPresentTime >= 0 && desiredPresentTime >= expectedPresentTime &&
3688 desiredPresentTime < expectedPresentTime + s2ns(1)) {
3689 return false;
3690 }
3691
Marissa Wall713b63f2018-10-17 15:42:43 -07003692 for (const ComposerState& state : states) {
3693 const layer_state_t& s = state.state;
3694 if (!(s.what & layer_state_t::eAcquireFenceChanged)) {
3695 continue;
3696 }
3697 if (s.acquireFence && s.acquireFence->getStatus() == Fence::Status::Unsignaled) {
Marissa Wall17b4e452018-12-26 16:32:34 -08003698 return false;
Marissa Wall713b63f2018-10-17 15:42:43 -07003699 }
3700 }
Marissa Wall17b4e452018-12-26 16:32:34 -08003701 return true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003702}
3703
3704void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& states,
3705 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -08003706 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -08003707 const InputWindowCommands& inputWindowCommands,
Marissa Wall78b72202019-03-15 14:58:34 -07003708 int64_t desiredPresentTime,
Marissa Wall947d34e2019-03-29 14:03:53 -07003709 const client_cache_t& uncacheBuffer,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003710 const std::vector<ListenerCallbacks>& listenerCallbacks) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003711 ATRACE_CALL();
Robert Carr14167e02019-02-13 13:50:55 -08003712
Valerie Haubc6ddb12019-03-08 11:10:15 -08003713 const int64_t postTime = systemTime();
3714
Robert Carr14167e02019-02-13 13:50:55 -08003715 bool privileged = callingThreadHasUnscopedSurfaceFlingerAccess();
3716
Mathias Agopian698c0872011-06-28 19:09:31 -07003717 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07003718
chaviwca27f252018-02-06 16:46:39 -08003719 if (containsAnyInvalidClientState(states)) {
3720 return;
3721 }
3722
Marissa Wall713b63f2018-10-17 15:42:43 -07003723 // If its TransactionQueue already has a pending TransactionState or if it is pending
Valerie Hauf6016b62019-03-28 10:49:59 -07003724 auto itr = mTransactionQueues.find(applyToken);
3725 // if this is an animation frame, wait until prior animation frame has
3726 // been applied by SF
3727 if (flags & eAnimation) {
3728 while (itr != mTransactionQueues.end()) {
3729 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3730 if (CC_UNLIKELY(err != NO_ERROR)) {
3731 ALOGW_IF(err == TIMED_OUT,
3732 "setTransactionState timed out "
3733 "waiting for animation frame to apply");
3734 break;
3735 }
3736 itr = mTransactionQueues.find(applyToken);
3737 }
3738 }
3739 if (itr != mTransactionQueues.end() ||
Marissa Wall17b4e452018-12-26 16:32:34 -08003740 !transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Robert Carr14167e02019-02-13 13:50:55 -08003741 mTransactionQueues[applyToken].emplace(states, displays, flags, desiredPresentTime,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003742 uncacheBuffer, listenerCallbacks, postTime,
3743 privileged);
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003744 setTransactionFlags(eTransactionFlushNeeded);
Marissa Wall713b63f2018-10-17 15:42:43 -07003745 return;
3746 }
3747
Valerie Haubc6ddb12019-03-08 11:10:15 -08003748 applyTransactionState(states, displays, flags, inputWindowCommands, desiredPresentTime,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003749 uncacheBuffer, listenerCallbacks, postTime, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003750}
3751
3752void SurfaceFlinger::applyTransactionState(const Vector<ComposerState>& states,
chaviw273171b2018-12-26 11:46:30 -08003753 const Vector<DisplayState>& displays, uint32_t flags,
Robert Carr14167e02019-02-13 13:50:55 -08003754 const InputWindowCommands& inputWindowCommands,
Marissa Wall78b72202019-03-15 14:58:34 -07003755 const int64_t desiredPresentTime,
Marissa Wall947d34e2019-03-29 14:03:53 -07003756 const client_cache_t& uncacheBuffer,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003757 const std::vector<ListenerCallbacks>& listenerCallbacks,
Marissa Wall78b72202019-03-15 14:58:34 -07003758 const int64_t postTime, bool privileged,
3759 bool isMainThread) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003760 uint32_t transactionFlags = 0;
3761
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003762 if (flags & eAnimation) {
3763 // For window updates that are part of an animation we must wait for
3764 // previous animation "frames" to be handled.
Valerie Hau38448362019-04-11 14:49:33 -07003765 while (!isMainThread && mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003766 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003767 if (CC_UNLIKELY(err != NO_ERROR)) {
3768 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003769 // caller after a few seconds.
3770 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3771 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003772 mAnimTransactionPending = false;
3773 break;
3774 }
3775 }
3776 }
3777
chaviwca27f252018-02-06 16:46:39 -08003778 for (const DisplayState& display : displays) {
3779 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003780 }
3781
Marissa Walld600d572019-03-26 15:38:50 -07003782 // In case the client has sent a Transaction that should receive callbacks but without any
3783 // SurfaceControls that should be included in the callback, send the listener and callbackIds
3784 // to the callback thread so it can send an empty callback
3785 if (!listenerCallbacks.empty()) {
3786 mTransactionCompletedThread.run();
3787 }
3788 for (const auto& [listener, callbackIds] : listenerCallbacks) {
3789 mTransactionCompletedThread.addCallback(listener, callbackIds);
3790 }
3791
Marissa Walle2ffb422018-10-12 11:33:52 -07003792 uint32_t clientStateFlags = 0;
chaviwca27f252018-02-06 16:46:39 -08003793 for (const ComposerState& state : states) {
Marissa Wall3dad52d2019-03-22 14:03:19 -07003794 clientStateFlags |= setClientStateLocked(state, desiredPresentTime, listenerCallbacks,
3795 postTime, privileged);
3796 }
3797
Marissa Walle2ffb422018-10-12 11:33:52 -07003798 // If the state doesn't require a traversal and there are callbacks, send them now
Marissa Wallb0022cc2019-04-16 14:19:55 -07003799 if (!(clientStateFlags & eTraversalNeeded) && !listenerCallbacks.empty()) {
Marissa Walle2ffb422018-10-12 11:33:52 -07003800 mTransactionCompletedThread.sendCallbacks();
3801 }
3802 transactionFlags |= clientStateFlags;
chaviwca27f252018-02-06 16:46:39 -08003803
chaviw273171b2018-12-26 11:46:30 -08003804 transactionFlags |= addInputWindowCommands(inputWindowCommands);
3805
Marissa Wall947d34e2019-03-29 14:03:53 -07003806 if (uncacheBuffer.isValid()) {
3807 ClientCache::getInstance().erase(uncacheBuffer);
Marissa Wall78b72202019-03-15 14:58:34 -07003808 }
3809
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003810 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3811 // anyway. This can be used as a flush mechanism for previous async transactions.
3812 // Empty animation transaction can be used to simulate back-pressure, so also force a
3813 // transaction for empty animation transactions.
3814 if (transactionFlags == 0 &&
3815 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003816 transactionFlags = eTransactionNeeded;
3817 }
3818
Marissa Wall06255332019-03-27 13:48:27 -07003819 // If we are on the main thread, we are about to preform a traversal. Clear the traversal bit
3820 // so we don't have to wake up again next frame to preform an uneeded traversal.
3821 if (isMainThread && (transactionFlags & eTraversalNeeded)) {
3822 transactionFlags = transactionFlags & (~eTraversalNeeded);
3823 mTraversalNeededMainThread = true;
3824 }
3825
Mathias Agopian386aa982011-11-07 21:58:03 -08003826 if (transactionFlags) {
Lloyd Pique4dccc412018-01-22 17:21:36 -08003827 if (mInterceptor->isEnabled()) {
3828 mInterceptor->saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003829 }
Irvel468051e2016-06-13 16:44:44 -07003830
Mathias Agopian386aa982011-11-07 21:58:03 -08003831 // this triggers the transaction
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003832 const auto start = (flags & eEarlyWakeup) ? Scheduler::TransactionStart::EARLY
3833 : Scheduler::TransactionStart::NORMAL;
Dan Stoza84d619e2018-03-28 17:07:36 -07003834 setTransactionFlags(transactionFlags, start);
Mathias Agopian386aa982011-11-07 21:58:03 -08003835
3836 // if this is a synchronous transaction, wait for it to take effect
3837 // before returning.
3838 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003839 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003840 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003841 if (flags & eAnimation) {
3842 mAnimTransactionPending = true;
3843 }
chaviw4fe36852019-04-15 16:25:49 -07003844 if (mPendingInputWindowCommands.syncInputWindows) {
3845 mPendingSyncInputWindows = true;
3846 }
Valerie Hau0779ded2019-03-19 12:43:04 -07003847
3848 // applyTransactionState can be called by either the main SF thread or by
3849 // another process through setTransactionState. While a given process may wish
3850 // to wait on synchronous transactions, the main SF thread should never
3851 // be blocked. Therefore, we only wait if isMainThread is false.
3852 while (!isMainThread && (mTransactionPending || mPendingSyncInputWindows)) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003853 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3854 if (CC_UNLIKELY(err != NO_ERROR)) {
3855 // just in case something goes wrong in SF, return to the
3856 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003857 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3858 mTransactionPending = false;
chaviw95ef3c42019-02-14 10:55:09 -08003859 mPendingSyncInputWindows = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003860 break;
3861 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003862 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003863 }
3864}
3865
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003866uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) {
3867 const ssize_t index = mCurrentState.displays.indexOfKey(s.token);
3868 if (index < 0) return 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003869
Mathias Agopiane57f2922012-08-09 16:29:12 -07003870 uint32_t flags = 0;
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003871 DisplayDeviceState& state = mCurrentState.displays.editValueAt(index);
3872
3873 const uint32_t what = s.what;
3874 if (what & DisplayState::eSurfaceChanged) {
3875 if (IInterface::asBinder(state.surface) != IInterface::asBinder(s.surface)) {
3876 state.surface = s.surface;
3877 flags |= eDisplayTransactionNeeded;
Michael Lentine47e45402014-07-18 15:34:25 -07003878 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003879 }
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003880 if (what & DisplayState::eLayerStackChanged) {
3881 if (state.layerStack != s.layerStack) {
3882 state.layerStack = s.layerStack;
3883 flags |= eDisplayTransactionNeeded;
3884 }
3885 }
3886 if (what & DisplayState::eDisplayProjectionChanged) {
3887 if (state.orientation != s.orientation) {
3888 state.orientation = s.orientation;
3889 flags |= eDisplayTransactionNeeded;
3890 }
3891 if (state.frame != s.frame) {
3892 state.frame = s.frame;
3893 flags |= eDisplayTransactionNeeded;
3894 }
3895 if (state.viewport != s.viewport) {
3896 state.viewport = s.viewport;
3897 flags |= eDisplayTransactionNeeded;
3898 }
3899 }
3900 if (what & DisplayState::eDisplaySizeChanged) {
3901 if (state.width != s.width) {
3902 state.width = s.width;
3903 flags |= eDisplayTransactionNeeded;
3904 }
3905 if (state.height != s.height) {
3906 state.height = s.height;
3907 flags |= eDisplayTransactionNeeded;
3908 }
3909 }
3910
Mathias Agopiane57f2922012-08-09 16:29:12 -07003911 return flags;
3912}
3913
Robert Carr14167e02019-02-13 13:50:55 -08003914bool SurfaceFlinger::callingThreadHasUnscopedSurfaceFlingerAccess() {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003915 IPCThreadState* ipc = IPCThreadState::self();
3916 const int pid = ipc->getCallingPid();
3917 const int uid = ipc->getCallingUid();
Robert Carrd4ae7f32018-06-07 16:10:57 -07003918 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Ana Krulec13be8ad2018-08-21 02:43:56 +00003919 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003920 return false;
3921 }
3922 return true;
3923}
3924
Marissa Wall3dad52d2019-03-22 14:03:19 -07003925uint32_t SurfaceFlinger::setClientStateLocked(
3926 const ComposerState& composerState, int64_t desiredPresentTime,
3927 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime,
3928 bool privileged) {
chaviwca27f252018-02-06 16:46:39 -08003929 const layer_state_t& s = composerState.state;
3930 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3931
Mathias Agopian13127d82013-03-05 17:47:11 -08003932 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003933 if (layer == nullptr) {
3934 return 0;
3935 }
3936
chaviw8b3871a2017-11-01 17:41:01 -07003937 uint32_t flags = 0;
3938
Garfield Tan8a3083e2018-12-03 13:21:07 -08003939 const uint64_t what = s.what;
chaviw8b3871a2017-11-01 17:41:01 -07003940 bool geometryAppliesWithResize =
3941 what & layer_state_t::eGeometryAppliesWithResize;
Jorim Jaggidba32732018-05-28 17:43:52 +02003942
3943 // If we are deferring transaction, make sure to push the pending state, as otherwise the
3944 // pending state will also be deferred.
Marissa Wallf58c14b2018-07-24 10:50:43 -07003945 if (what & layer_state_t::eDeferTransaction_legacy) {
Jorim Jaggidba32732018-05-28 17:43:52 +02003946 layer->pushPendingState();
3947 }
3948
chaviw8b3871a2017-11-01 17:41:01 -07003949 if (what & layer_state_t::ePositionChanged) {
3950 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3951 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003952 }
chaviw8b3871a2017-11-01 17:41:01 -07003953 }
3954 if (what & layer_state_t::eLayerChanged) {
3955 // NOTE: index needs to be calculated before we update the state
3956 const auto& p = layer->getParent();
3957 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003958 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003959 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003960 mCurrentState.layersSortedByZ.removeAt(idx);
3961 mCurrentState.layersSortedByZ.add(layer);
3962 // we need traversal (state changed)
3963 // AND transaction (list changed)
3964 flags |= eTransactionNeeded|eTraversalNeeded;
3965 }
chaviw8b3871a2017-11-01 17:41:01 -07003966 } else {
3967 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003968 flags |= eTransactionNeeded|eTraversalNeeded;
3969 }
3970 }
chaviw8b3871a2017-11-01 17:41:01 -07003971 }
3972 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003973 // NOTE: index needs to be calculated before we update the state
3974 const auto& p = layer->getParent();
3975 if (p == nullptr) {
3976 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3977 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3978 mCurrentState.layersSortedByZ.removeAt(idx);
3979 mCurrentState.layersSortedByZ.add(layer);
3980 // we need traversal (state changed)
3981 // AND transaction (list changed)
3982 flags |= eTransactionNeeded|eTraversalNeeded;
3983 }
3984 } else {
3985 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3986 flags |= eTransactionNeeded|eTraversalNeeded;
3987 }
chaviw8b3871a2017-11-01 17:41:01 -07003988 }
3989 }
3990 if (what & layer_state_t::eSizeChanged) {
3991 if (layer->setSize(s.w, s.h)) {
3992 flags |= eTraversalNeeded;
3993 }
3994 }
3995 if (what & layer_state_t::eAlphaChanged) {
3996 if (layer->setAlpha(s.alpha))
3997 flags |= eTraversalNeeded;
3998 }
3999 if (what & layer_state_t::eColorChanged) {
4000 if (layer->setColor(s.color))
4001 flags |= eTraversalNeeded;
4002 }
Peiyong Lind3788632018-09-18 16:01:31 -07004003 if (what & layer_state_t::eColorTransformChanged) {
4004 if (layer->setColorTransform(s.colorTransform)) {
4005 flags |= eTraversalNeeded;
4006 }
4007 }
Valerie Haudd0b7572019-01-29 14:59:27 -08004008 if (what & layer_state_t::eBackgroundColorChanged) {
4009 if (layer->setBackgroundColor(s.color, s.bgColorAlpha, s.bgColorDataspace)) {
4010 flags |= eTraversalNeeded;
4011 }
4012 }
chaviw8b3871a2017-11-01 17:41:01 -07004013 if (what & layer_state_t::eMatrixChanged) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07004014 // TODO: b/109894387
4015 //
4016 // SurfaceFlinger's renderer is not prepared to handle cropping in the face of arbitrary
4017 // rotation. To see the problem observe that if we have a square parent, and a child
4018 // of the same size, then we rotate the child 45 degrees around it's center, the child
4019 // must now be cropped to a non rectangular 8 sided region.
4020 //
4021 // Of course we can fix this in the future. For now, we are lucky, SurfaceControl is
4022 // private API, and the WindowManager only uses rotation in one case, which is on a top
4023 // level layer in which cropping is not an issue.
4024 //
4025 // However given that abuse of rotation matrices could lead to surfaces extending outside
4026 // of cropped areas, we need to prevent non-root clients without permission ACCESS_SURFACE_FLINGER
4027 // (a.k.a. everyone except WindowManager and tests) from setting non rectangle preserving
4028 // transformations.
Robert Carr14167e02019-02-13 13:50:55 -08004029 if (layer->setMatrix(s.matrix, privileged))
chaviw8b3871a2017-11-01 17:41:01 -07004030 flags |= eTraversalNeeded;
4031 }
4032 if (what & layer_state_t::eTransparentRegionChanged) {
4033 if (layer->setTransparentRegionHint(s.transparentRegion))
4034 flags |= eTraversalNeeded;
4035 }
4036 if (what & layer_state_t::eFlagsChanged) {
4037 if (layer->setFlags(s.flags, s.mask))
4038 flags |= eTraversalNeeded;
4039 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07004040 if (what & layer_state_t::eCropChanged_legacy) {
4041 if (layer->setCrop_legacy(s.crop_legacy, !geometryAppliesWithResize))
chaviw8b3871a2017-11-01 17:41:01 -07004042 flags |= eTraversalNeeded;
4043 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -07004044 if (what & layer_state_t::eCornerRadiusChanged) {
4045 if (layer->setCornerRadius(s.cornerRadius))
4046 flags |= eTraversalNeeded;
4047 }
chaviw8b3871a2017-11-01 17:41:01 -07004048 if (what & layer_state_t::eLayerStackChanged) {
4049 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
4050 // We only allow setting layer stacks for top level layers,
4051 // everything else inherits layer stack from its parent.
4052 if (layer->hasParent()) {
4053 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
4054 layer->getName().string());
4055 } else if (idx < 0) {
4056 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
4057 "that also does not appear in the top level layer list. Something"
4058 " has gone wrong.", layer->getName().string());
4059 } else if (layer->setLayerStack(s.layerStack)) {
4060 mCurrentState.layersSortedByZ.removeAt(idx);
4061 mCurrentState.layersSortedByZ.add(layer);
4062 // we need traversal (state changed)
4063 // AND transaction (list changed)
Lloyd Piqued432a7c2018-03-23 16:05:31 -07004064 flags |= eTransactionNeeded|eTraversalNeeded|eDisplayLayerStackChanged;
chaviw8b3871a2017-11-01 17:41:01 -07004065 }
4066 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07004067 if (what & layer_state_t::eDeferTransaction_legacy) {
4068 if (s.barrierHandle_legacy != nullptr) {
4069 layer->deferTransactionUntil_legacy(s.barrierHandle_legacy, s.frameNumber_legacy);
4070 } else if (s.barrierGbp_legacy != nullptr) {
4071 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp_legacy;
chaviw8b3871a2017-11-01 17:41:01 -07004072 if (authenticateSurfaceTextureLocked(gbp)) {
4073 const auto& otherLayer =
4074 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
Marissa Wallf58c14b2018-07-24 10:50:43 -07004075 layer->deferTransactionUntil_legacy(otherLayer, s.frameNumber_legacy);
chaviw8b3871a2017-11-01 17:41:01 -07004076 } else {
4077 ALOGE("Attempt to defer transaction to to an"
4078 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08004079 }
4080 }
chaviw8b3871a2017-11-01 17:41:01 -07004081 // We don't trigger a traversal here because if no other state is
4082 // changed, we don't want this to cause any more work
4083 }
4084 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08004085 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07004086 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08004087 if (!hadParent) {
4088 mCurrentState.layersSortedByZ.remove(layer);
4089 }
chaviw8b3871a2017-11-01 17:41:01 -07004090 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08004091 }
chaviw8b3871a2017-11-01 17:41:01 -07004092 }
4093 if (what & layer_state_t::eReparentChildren) {
4094 if (layer->reparentChildren(s.reparentHandle)) {
4095 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07004096 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07004097 }
chaviw8b3871a2017-11-01 17:41:01 -07004098 if (what & layer_state_t::eDetachChildren) {
4099 layer->detachChildren();
4100 }
4101 if (what & layer_state_t::eOverrideScalingModeChanged) {
4102 layer->setOverrideScalingMode(s.overrideScalingMode);
4103 // We don't trigger a traversal here because if no other state is
4104 // changed, we don't want this to cause any more work
4105 }
Marissa Wall61c58622018-07-18 10:12:20 -07004106 if (what & layer_state_t::eTransformChanged) {
4107 if (layer->setTransform(s.transform)) flags |= eTraversalNeeded;
4108 }
4109 if (what & layer_state_t::eTransformToDisplayInverseChanged) {
4110 if (layer->setTransformToDisplayInverse(s.transformToDisplayInverse))
4111 flags |= eTraversalNeeded;
4112 }
4113 if (what & layer_state_t::eCropChanged) {
4114 if (layer->setCrop(s.crop)) flags |= eTraversalNeeded;
4115 }
Marissa Wall861616d2018-10-22 12:52:23 -07004116 if (what & layer_state_t::eFrameChanged) {
4117 if (layer->setFrame(s.frame)) flags |= eTraversalNeeded;
4118 }
Marissa Wall61c58622018-07-18 10:12:20 -07004119 if (what & layer_state_t::eAcquireFenceChanged) {
4120 if (layer->setAcquireFence(s.acquireFence)) flags |= eTraversalNeeded;
4121 }
4122 if (what & layer_state_t::eDataspaceChanged) {
4123 if (layer->setDataspace(s.dataspace)) flags |= eTraversalNeeded;
4124 }
4125 if (what & layer_state_t::eHdrMetadataChanged) {
4126 if (layer->setHdrMetadata(s.hdrMetadata)) flags |= eTraversalNeeded;
4127 }
4128 if (what & layer_state_t::eSurfaceDamageRegionChanged) {
4129 if (layer->setSurfaceDamageRegion(s.surfaceDamageRegion)) flags |= eTraversalNeeded;
4130 }
4131 if (what & layer_state_t::eApiChanged) {
4132 if (layer->setApi(s.api)) flags |= eTraversalNeeded;
4133 }
4134 if (what & layer_state_t::eSidebandStreamChanged) {
4135 if (layer->setSidebandStream(s.sidebandStream)) flags |= eTraversalNeeded;
4136 }
Robert Carr720e5062018-07-30 17:45:14 -07004137 if (what & layer_state_t::eInputInfoChanged) {
Vishnu Nairce5d0cc2019-02-28 14:38:41 -08004138 if (privileged) {
Robert Carr11ac2012019-01-22 09:05:25 -08004139 layer->setInputInfo(s.inputInfo);
4140 flags |= eTraversalNeeded;
4141 } else {
4142 ALOGE("Attempt to update InputWindowInfo without permission ACCESS_SURFACE_FLINGER");
4143 }
Robert Carr720e5062018-07-30 17:45:14 -07004144 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08004145 if (what & layer_state_t::eMetadataChanged) {
4146 if (layer->setMetadata(s.metadata)) flags |= eTraversalNeeded;
4147 }
Peiyong Linc502cb72019-03-01 15:00:23 -08004148 if (what & layer_state_t::eColorSpaceAgnosticChanged) {
4149 if (layer->setColorSpaceAgnostic(s.colorSpaceAgnostic)) {
4150 flags |= eTraversalNeeded;
4151 }
4152 }
Marissa Walle2ffb422018-10-12 11:33:52 -07004153 std::vector<sp<CallbackHandle>> callbackHandles;
Marissa Wall3dad52d2019-03-22 14:03:19 -07004154 if ((what & layer_state_t::eHasListenerCallbacksChanged) && (!listenerCallbacks.empty())) {
Marissa Wall3dad52d2019-03-22 14:03:19 -07004155 for (const auto& [listener, callbackIds] : listenerCallbacks) {
Marissa Walle2ffb422018-10-12 11:33:52 -07004156 callbackHandles.emplace_back(new CallbackHandle(listener, callbackIds, s.surface));
4157 }
4158 }
Marissa Wall78b72202019-03-15 14:58:34 -07004159 bool bufferChanged = what & layer_state_t::eBufferChanged;
4160 bool cacheIdChanged = what & layer_state_t::eCachedBufferChanged;
4161 sp<GraphicBuffer> buffer;
4162 if (bufferChanged && cacheIdChanged) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004163 ClientCache::getInstance().add(s.cachedBuffer, s.buffer);
Alec Mouri1c8d7202019-06-01 18:51:35 -07004164 ClientCache::getInstance().registerErasedRecipient(s.cachedBuffer,
4165 wp<ClientCache::ErasedRecipient>(layer));
4166 getRenderEngine().cacheExternalTextureBuffer(s.buffer);
Marissa Wall78b72202019-03-15 14:58:34 -07004167 buffer = s.buffer;
4168 } else if (cacheIdChanged) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004169 buffer = ClientCache::getInstance().get(s.cachedBuffer);
Marissa Wall78b72202019-03-15 14:58:34 -07004170 } else if (bufferChanged) {
4171 buffer = s.buffer;
Marissa Wall73411622019-01-25 10:45:41 -08004172 }
Marissa Wall78b72202019-03-15 14:58:34 -07004173 if (buffer) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004174 if (layer->setBuffer(buffer, postTime, desiredPresentTime, s.cachedBuffer)) {
Valerie Haubc6ddb12019-03-08 11:10:15 -08004175 flags |= eTraversalNeeded;
Valerie Haubc6ddb12019-03-08 11:10:15 -08004176 }
Marissa Wallebc2c052019-01-16 19:16:55 -08004177 }
Marissa Walle2ffb422018-10-12 11:33:52 -07004178 if (layer->setTransactionCompletedListeners(callbackHandles)) flags |= eTraversalNeeded;
4179 // Do not put anything that updates layer state or modifies flags after
4180 // setTransactionCompletedListener
Mathias Agopiane57f2922012-08-09 16:29:12 -07004181 return flags;
4182}
4183
chaviw273171b2018-12-26 11:46:30 -08004184uint32_t SurfaceFlinger::addInputWindowCommands(const InputWindowCommands& inputWindowCommands) {
4185 uint32_t flags = 0;
4186 if (!inputWindowCommands.transferTouchFocusCommands.empty()) {
4187 flags |= eTraversalNeeded;
4188 }
4189
chaviwa911b102019-02-14 10:18:33 -08004190 if (inputWindowCommands.syncInputWindows) {
4191 flags |= eTraversalNeeded;
4192 }
4193
Vishnu Nairec0ab382019-02-13 15:32:56 -08004194 mPendingInputWindowCommands.merge(inputWindowCommands);
chaviw273171b2018-12-26 11:46:30 -08004195 return flags;
4196}
4197
Marissa Wall2d814fb2019-04-09 18:52:57 +00004198status_t SurfaceFlinger::createLayer(const String8& name, const sp<Client>& client, uint32_t w,
4199 uint32_t h, PixelFormat format, uint32_t flags,
4200 LayerMetadata metadata, sp<IBinder>* handle,
Robert Carrc0df3122019-04-11 13:18:21 -07004201 sp<IGraphicBufferProducer>* gbp,
4202 const sp<IBinder>& parentHandle,
4203 const sp<Layer>& parentLayer) {
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004204 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004205 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004206 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004207 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004208 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07004209
Robert Carrc0df3122019-04-11 13:18:21 -07004210 ALOG_ASSERT(parentLayer == nullptr || parentHandle == nullptr,
4211 "Expected only one of parentLayer or parentHandle to be non-null. "
4212 "Programmer error?");
4213
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004214 status_t result = NO_ERROR;
4215
4216 sp<Layer> layer;
4217
Cody Northropbc755282017-03-31 12:00:08 -06004218 String8 uniqueName = getUniqueLayerName(name);
4219
Evan Roskya1f1e152019-01-24 16:17:46 -08004220 bool primaryDisplayOnly = false;
4221
4222 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
4223 // TODO b/64227542
4224 if (metadata.has(METADATA_WINDOW_TYPE)) {
4225 int32_t windowType = metadata.getInt32(METADATA_WINDOW_TYPE, 0);
4226 if (windowType == 441731) {
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07004227 metadata.setInt32(METADATA_WINDOW_TYPE, InputWindowInfo::TYPE_NAVIGATION_BAR_PANEL);
Evan Roskya1f1e152019-01-24 16:17:46 -08004228 primaryDisplayOnly = true;
4229 }
4230 }
4231
Mathias Agopian3165cc22012-08-08 19:42:09 -07004232 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
Marissa Wall61c58622018-07-18 10:12:20 -07004233 case ISurfaceComposerClient::eFXSurfaceBufferQueue:
Evan Roskya1f1e152019-01-24 16:17:46 -08004234 result = createBufferQueueLayer(client, uniqueName, w, h, flags, std::move(metadata),
4235 format, handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07004236
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004237 break;
Marissa Wall61c58622018-07-18 10:12:20 -07004238 case ISurfaceComposerClient::eFXSurfaceBufferState:
Evan Roskya1f1e152019-01-24 16:17:46 -08004239 result = createBufferStateLayer(client, uniqueName, w, h, flags, std::move(metadata),
4240 handle, &layer);
Marissa Wall61c58622018-07-18 10:12:20 -07004241 break;
chaviw13fdc492017-06-27 12:40:18 -07004242 case ISurfaceComposerClient::eFXSurfaceColor:
Vishnu Nair88a11f22018-11-28 18:30:57 -08004243 // check if buffer size is set for color layer.
4244 if (w > 0 || h > 0) {
4245 ALOGE("createLayer() failed, w or h cannot be set for color layer (w=%d, h=%d)",
4246 int(w), int(h));
4247 return BAD_VALUE;
4248 }
4249
Evan Roskya1f1e152019-01-24 16:17:46 -08004250 result = createColorLayer(client, uniqueName, w, h, flags, std::move(metadata), handle,
4251 &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004252 break;
Robert Carr6b3f6c52018-08-13 13:05:17 -07004253 case ISurfaceComposerClient::eFXSurfaceContainer:
Vishnu Nair88a11f22018-11-28 18:30:57 -08004254 // check if buffer size is set for container layer.
4255 if (w > 0 || h > 0) {
4256 ALOGE("createLayer() failed, w or h cannot be set for container layer (w=%d, h=%d)",
4257 int(w), int(h));
4258 return BAD_VALUE;
4259 }
Evan Roskya1f1e152019-01-24 16:17:46 -08004260 result = createContainerLayer(client, uniqueName, w, h, flags, std::move(metadata),
4261 handle, &layer);
Robert Carr6b3f6c52018-08-13 13:05:17 -07004262 break;
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004263 default:
4264 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004265 break;
4266 }
4267
Dan Stoza7d89d062015-04-30 13:29:25 -07004268 if (result != NO_ERROR) {
4269 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004270 }
Dan Stoza7d89d062015-04-30 13:29:25 -07004271
Evan Roskya1f1e152019-01-24 16:17:46 -08004272 if (primaryDisplayOnly) {
4273 layer->setPrimaryDisplayOnly();
Chia-I Wuab0c3192017-08-01 11:29:00 -07004274 }
4275
Robert Carrb89ea9d2018-12-10 13:01:14 -08004276 bool addToCurrentState = callingThreadHasUnscopedSurfaceFlingerAccess();
Robert Carrc0df3122019-04-11 13:18:21 -07004277 result = addClientLayer(client, *handle, *gbp, layer, parentHandle, parentLayer,
4278 addToCurrentState);
Dan Stoza7d89d062015-04-30 13:29:25 -07004279 if (result != NO_ERROR) {
4280 return result;
4281 }
Lloyd Pique4dccc412018-01-22 17:21:36 -08004282 mInterceptor->saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07004283
4284 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004285 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004286}
4287
Cody Northropbc755282017-03-31 12:00:08 -06004288String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
4289{
4290 bool matchFound = true;
4291 uint32_t dupeCounter = 0;
4292
4293 // Tack on our counter whether there is a hit or not, so everyone gets a tag
4294 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
4295
Dan Stoza436ccf32018-06-21 12:10:12 -07004296 // Grab the state lock since we're accessing mCurrentState
4297 Mutex::Autolock lock(mStateLock);
4298
Cody Northropbc755282017-03-31 12:00:08 -06004299 // Loop over layers until we're sure there is no matching name
4300 while (matchFound) {
4301 matchFound = false;
Dan Stoza436ccf32018-06-21 12:10:12 -07004302 mCurrentState.traverseInZOrder([&](Layer* layer) {
Cody Northropbc755282017-03-31 12:00:08 -06004303 if (layer->getName() == uniqueName) {
4304 matchFound = true;
4305 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
4306 }
4307 });
4308 }
4309
Marissa Wallf1de4bd2018-05-22 13:05:01 -07004310 ALOGV_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(),
4311 uniqueName.c_str());
Cody Northropbc755282017-03-31 12:00:08 -06004312
4313 return uniqueName;
4314}
4315
Marissa Wallfd668622018-05-10 10:21:13 -07004316status_t SurfaceFlinger::createBufferQueueLayer(const sp<Client>& client, const String8& name,
4317 uint32_t w, uint32_t h, uint32_t flags,
Evan Roskya1f1e152019-01-24 16:17:46 -08004318 LayerMetadata metadata, PixelFormat& format,
4319 sp<IBinder>* handle,
Marissa Wallfd668622018-05-10 10:21:13 -07004320 sp<IGraphicBufferProducer>* gbp,
4321 sp<Layer>* outLayer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004322 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07004323 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004324 case PIXEL_FORMAT_TRANSPARENT:
4325 case PIXEL_FORMAT_TRANSLUCENT:
4326 format = PIXEL_FORMAT_RGBA_8888;
4327 break;
4328 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07004329 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004330 break;
4331 }
4332
Evan Roskya1f1e152019-01-24 16:17:46 -08004333 sp<BufferQueueLayer> layer = getFactory().createBufferQueueLayer(
4334 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Marissa Wallfd668622018-05-10 10:21:13 -07004335 status_t err = layer->setDefaultBufferProperties(w, h, format);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004336 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07004337 *handle = layer->getHandle();
4338 *gbp = layer->getProducer();
4339 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004340 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004341
Marissa Wallfd668622018-05-10 10:21:13 -07004342 ALOGE_IF(err, "createBufferQueueLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004343 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004344}
4345
Marissa Wall61c58622018-07-18 10:12:20 -07004346status_t SurfaceFlinger::createBufferStateLayer(const sp<Client>& client, const String8& name,
4347 uint32_t w, uint32_t h, uint32_t flags,
Evan Roskya1f1e152019-01-24 16:17:46 -08004348 LayerMetadata metadata, sp<IBinder>* handle,
4349 sp<Layer>* outLayer) {
4350 sp<BufferStateLayer> layer = getFactory().createBufferStateLayer(
4351 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Marissa Wall61c58622018-07-18 10:12:20 -07004352 *handle = layer->getHandle();
4353 *outLayer = layer;
4354
4355 return NO_ERROR;
4356}
4357
Evan Roskya1f1e152019-01-24 16:17:46 -08004358status_t SurfaceFlinger::createColorLayer(const sp<Client>& client, const String8& name, uint32_t w,
4359 uint32_t h, uint32_t flags, LayerMetadata metadata,
4360 sp<IBinder>* handle, sp<Layer>* outLayer) {
4361 *outLayer = getFactory().createColorLayer(
4362 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004363 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004364 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07004365}
4366
Evan Roskya1f1e152019-01-24 16:17:46 -08004367status_t SurfaceFlinger::createContainerLayer(const sp<Client>& client, const String8& name,
4368 uint32_t w, uint32_t h, uint32_t flags,
4369 LayerMetadata metadata, sp<IBinder>* handle,
4370 sp<Layer>* outLayer) {
4371 *outLayer = getFactory().createContainerLayer(
4372 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Robert Carr6b3f6c52018-08-13 13:05:17 -07004373 *handle = (*outLayer)->getHandle();
4374 return NO_ERROR;
4375}
4376
4377
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004378void SurfaceFlinger::markLayerPendingRemovalLocked(const sp<Layer>& layer) {
Robert Carr2e102c92018-10-23 12:11:15 -07004379 mLayersPendingRemoval.add(layer);
4380 mLayersRemoved = true;
4381 setTransactionFlags(eTransactionNeeded);
4382}
4383
Robert Carr695d5282018-12-18 15:27:58 -08004384void SurfaceFlinger::onHandleDestroyed(sp<Layer>& layer)
Rob Carr4bba3702018-10-08 21:53:30 +00004385{
Robert Carr2e102c92018-10-23 12:11:15 -07004386 Mutex::Autolock lock(mStateLock);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004387 // If a layer has a parent, we allow it to out-live it's handle
4388 // with the idea that the parent holds a reference and will eventually
4389 // be cleaned up. However no one cleans up the top-level so we do so
4390 // here.
4391 if (layer->getParent() == nullptr) {
4392 mCurrentState.layersSortedByZ.remove(layer);
4393 }
4394 markLayerPendingRemovalLocked(layer);
Robert Carrc0df3122019-04-11 13:18:21 -07004395
4396 auto it = mLayersByLocalBinderToken.begin();
4397 while (it != mLayersByLocalBinderToken.end()) {
4398 if (it->second == layer) {
4399 it = mLayersByLocalBinderToken.erase(it);
4400 } else {
4401 it++;
4402 }
4403 }
4404
Robert Carr695d5282018-12-18 15:27:58 -08004405 layer.clear();
Rob Carr4bba3702018-10-08 21:53:30 +00004406}
4407
Mathias Agopianb60314a2012-04-10 22:09:54 -07004408// ---------------------------------------------------------------------------
4409
Andy McFadden13a082e2012-08-24 10:16:42 -07004410void SurfaceFlinger::onInitializeDisplays() {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004411 const auto display = getDefaultDisplayDeviceLocked();
4412 if (!display) return;
4413
4414 const sp<IBinder> token = display->getDisplayToken().promote();
4415 LOG_ALWAYS_FATAL_IF(token == nullptr);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004416
Jesse Hall01e29052013-02-19 16:13:35 -08004417 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07004418 Vector<ComposerState> state;
4419 Vector<DisplayState> displays;
4420 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08004421 d.what = DisplayState::eDisplayProjectionChanged |
4422 DisplayState::eLayerStackChanged;
Dominik Laskowski83b88212018-12-11 13:34:06 -08004423 d.token = token;
Jesse Hall01e29052013-02-19 16:13:35 -08004424 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004425 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07004426 d.frame.makeInvalid();
4427 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07004428 d.width = 0;
4429 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004430 displays.add(d);
Marissa Wall3dad52d2019-03-22 14:03:19 -07004431 setTransactionState(state, displays, 0, nullptr, mPendingInputWindowCommands, -1, {}, {});
Jamie Gennis6547ff42013-07-16 20:12:42 -07004432
Dominik Laskowskie9774092018-12-11 10:04:24 -08004433 setPowerModeInternal(display, HWC_POWER_MODE_NORMAL);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004434
Dominik Laskowski83b88212018-12-11 13:34:06 -08004435 const nsecs_t vsyncPeriod = getVsyncPeriod();
4436 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08004437
Brian Andersond0010582017-03-07 13:20:31 -08004438 // Use phase of 0 since phase is not known.
4439 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004440 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07004441 setCompositorTimingSnapped(stats, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07004442}
4443
4444void SurfaceFlinger::initializeDisplays() {
Dominik Laskowski8c001672018-05-30 16:52:06 -07004445 // Async since we may be called from the main thread.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004446 postMessageAsync(
4447 new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS { onInitializeDisplays(); }));
Andy McFadden13a082e2012-08-24 10:16:42 -07004448}
4449
Ady Abraham27c70212019-06-11 10:52:26 -07004450void SurfaceFlinger::setVsyncEnabledInHWC(DisplayId displayId, HWC2::Vsync enabled) {
4451 if (mHWCVsyncState != enabled) {
4452 getHwComposer().setVsyncEnabled(displayId, enabled);
4453 mHWCVsyncState = enabled;
4454 }
4455}
4456
Dominik Laskowskie9774092018-12-11 10:04:24 -08004457void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& display, int mode) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004458 if (display->isVirtual()) {
4459 ALOGE("%s: Invalid operation on virtual display", __FUNCTION__);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004460 return;
4461 }
4462
Dominik Laskowski075d3172018-05-24 15:50:06 -07004463 const auto displayId = display->getId();
4464 LOG_ALWAYS_FATAL_IF(!displayId);
4465
Dominik Laskowski34157762018-10-31 13:07:19 -07004466 ALOGD("Setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004467
4468 int currentMode = display->getPowerMode();
4469 if (mode == currentMode) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004470 return;
4471 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004472
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004473 display->setPowerMode(mode);
4474
Lloyd Pique4dccc412018-01-22 17:21:36 -08004475 if (mInterceptor->isEnabled()) {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004476 mInterceptor->savePowerModeUpdate(display->getSequenceId(), mode);
Irvelffc9efc2016-07-27 15:16:37 -07004477 }
4478
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004479 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004480 // Turn on the display
Dominik Laskowski075d3172018-05-24 15:50:06 -07004481 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004482 if (display->isPrimary() && mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ady Abraham27c70212019-06-11 10:52:26 -07004483 setVsyncEnabledInHWC(*displayId, mHWCVsyncPendingState);
Ana Krulecc2870422019-01-29 19:00:58 -08004484 mScheduler->onScreenAcquired(mAppConnectionHandle);
4485 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004486 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004487
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004488 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08004489 mHasPoweredOff = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07004490 repaintEverything();
Tim Murrayf9d4e442016-08-02 15:43:59 -07004491
4492 struct sched_param param = {0};
4493 param.sched_priority = 1;
4494 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
4495 ALOGW("Couldn't set SCHED_FIFO on display on");
4496 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004497 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004498 // Turn off the display
4499 struct sched_param param = {0};
4500 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
4501 ALOGW("Couldn't set SCHED_OTHER on display off");
4502 }
4503
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004504 if (display->isPrimary() && currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004505 mScheduler->disableHardwareVsync(true);
4506 mScheduler->onScreenReleased(mAppConnectionHandle);
Mathias Agopiancde87a32012-09-13 14:09:01 -07004507 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004508
Ady Abraham27c70212019-06-11 10:52:26 -07004509 // Make sure HWVsync is disabled before turning off the display
4510 setVsyncEnabledInHWC(*displayId, HWC2::Vsync::Disable);
4511
Dominik Laskowski075d3172018-05-24 15:50:06 -07004512 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004513 mVisibleRegionsDirty = true;
4514 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07004515 } else if (mode == HWC_POWER_MODE_DOZE ||
4516 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004517 // Update display while dozing
Dominik Laskowski075d3172018-05-24 15:50:06 -07004518 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004519 if (display->isPrimary() && currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004520 mScheduler->onScreenAcquired(mAppConnectionHandle);
4521 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004522 }
4523 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
4524 // Leave display going to doze
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004525 if (display->isPrimary()) {
Ana Krulecc2870422019-01-29 19:00:58 -08004526 mScheduler->disableHardwareVsync(true);
4527 mScheduler->onScreenReleased(mAppConnectionHandle);
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004528 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07004529 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004530 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07004531 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Dominik Laskowski075d3172018-05-24 15:50:06 -07004532 getHwComposer().setPowerMode(*displayId, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004533 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004534
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004535 if (display->isPrimary()) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08004536 mTimeStats->setPowerMode(mode);
Dominik Laskowski22488f62019-03-28 09:53:04 -07004537 mRefreshRateStats.setPowerMode(mode);
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004538 }
4539
Dominik Laskowski34157762018-10-31 13:07:19 -07004540 ALOGD("Finished setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004541}
4542
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004543void SurfaceFlinger::setPowerMode(const sp<IBinder>& displayToken, int mode) {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004544 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004545 const auto display = getDisplayDevice(displayToken);
4546 if (!display) {
4547 ALOGE("Attempt to set power mode %d for invalid display token %p", mode,
4548 displayToken.get());
4549 } else if (display->isVirtual()) {
4550 ALOGW("Attempt to set power mode %d for virtual display", mode);
4551 } else {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004552 setPowerModeInternal(display, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004553 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004554 }));
Mathias Agopianb60314a2012-04-10 22:09:54 -07004555}
4556
4557// ---------------------------------------------------------------------------
4558
Dominik Laskowskic2867142019-01-21 11:33:38 -08004559status_t SurfaceFlinger::doDump(int fd, const DumpArgs& args,
4560 bool asProto) NO_THREAD_SAFETY_ANALYSIS {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004561 std::string result;
Mathias Agopian99b49842011-06-27 16:05:52 -07004562
Mathias Agopianbd115332013-04-18 16:41:04 -07004563 IPCThreadState* ipc = IPCThreadState::self();
4564 const int pid = ipc->getCallingPid();
4565 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07004566
Mathias Agopianbd115332013-04-18 16:41:04 -07004567 if ((uid != AID_SHELL) &&
4568 !PermissionCache::checkPermission(sDump, pid, uid)) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004569 StringAppendF(&result, "Permission Denial: can't dump SurfaceFlinger from pid=%d, uid=%d\n",
4570 pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004571 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08004572 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07004573 // (this would indicate SF is stuck, but we want to be able to
4574 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08004575 status_t err = mStateLock.timedLock(s2ns(1));
4576 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07004577 if (!locked) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004578 StringAppendF(&result,
4579 "SurfaceFlinger appears to be unresponsive (%s [%d]), dumping anyways "
4580 "(no locks held)\n",
4581 strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07004582 }
4583
Dominik Laskowskic2867142019-01-21 11:33:38 -08004584 using namespace std::string_literals;
chaviwa3d7bd32017-11-03 09:41:53 -07004585
Dominik Laskowskic2867142019-01-21 11:33:38 -08004586 static const std::unordered_map<std::string, Dumper> dumpers = {
4587 {"--clear-layer-stats"s, dumper([this](std::string&) { mLayerStats.clear(); })},
4588 {"--disable-layer-stats"s, dumper([this](std::string&) { mLayerStats.disable(); })},
4589 {"--display-id"s, dumper(&SurfaceFlinger::dumpDisplayIdentificationData)},
Ady Abraham3aff9172019-02-07 19:10:26 -08004590 {"--dispsync"s, dumper([this](std::string& s) {
Ady Abraham3aff9172019-02-07 19:10:26 -08004591 mScheduler->dumpPrimaryDispSync(s);
Ady Abraham3aff9172019-02-07 19:10:26 -08004592 })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004593 {"--dump-layer-stats"s, dumper([this](std::string& s) { mLayerStats.dump(s); })},
4594 {"--enable-layer-stats"s, dumper([this](std::string&) { mLayerStats.enable(); })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004595 {"--frame-events"s, dumper(&SurfaceFlinger::dumpFrameEventsLocked)},
4596 {"--latency"s, argsDumper(&SurfaceFlinger::dumpStatsLocked)},
4597 {"--latency-clear"s, argsDumper(&SurfaceFlinger::clearStatsLocked)},
4598 {"--list"s, dumper(&SurfaceFlinger::listLayersLocked)},
4599 {"--static-screen"s, dumper(&SurfaceFlinger::dumpStaticScreenStats)},
4600 {"--timestats"s, protoDumper(&SurfaceFlinger::dumpTimeStats)},
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004601 {"--vsync"s, dumper(&SurfaceFlinger::dumpVSync)},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004602 {"--wide-color"s, dumper(&SurfaceFlinger::dumpWideColorInfo)},
4603 };
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004604
Dominik Laskowskic2867142019-01-21 11:33:38 -08004605 const auto flag = args.empty() ? ""s : std::string(String8(args[0]));
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004606
Dominik Laskowskic2867142019-01-21 11:33:38 -08004607 if (const auto it = dumpers.find(flag); it != dumpers.end()) {
4608 (it->second)(args, asProto, result);
4609 } else {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004610 if (asProto) {
4611 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4612 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
4613 } else {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004614 dumpAllLocked(args, result);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004615 }
Mathias Agopian48b888a2011-01-19 16:15:53 -08004616 }
4617
Mathias Agopian9795c422009-08-26 16:36:26 -07004618 if (locked) {
4619 mStateLock.unlock();
4620 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004621 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004622 write(fd, result.c_str(), result.size());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004623 return NO_ERROR;
4624}
4625
Nataniel Borges8e7dc722019-02-28 15:10:28 -08004626status_t SurfaceFlinger::dumpCritical(int fd, const DumpArgs&, bool asProto) {
4627 if (asProto && mTracing.isEnabled()) {
4628 mTracing.writeToFileAsync();
4629 }
4630
4631 return doDump(fd, DumpArgs(), asProto);
4632}
4633
Dominik Laskowskic2867142019-01-21 11:33:38 -08004634void SurfaceFlinger::listLayersLocked(std::string& result) const {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004635 mCurrentState.traverseInZOrder(
4636 [&](Layer* layer) { StringAppendF(&result, "%s\n", layer->getName().string()); });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004637}
4638
Dominik Laskowskic2867142019-01-21 11:33:38 -08004639void SurfaceFlinger::dumpStatsLocked(const DumpArgs& args, std::string& result) const {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004640 StringAppendF(&result, "%" PRId64 "\n", getVsyncPeriod());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004641
Dominik Laskowskic2867142019-01-21 11:33:38 -08004642 if (args.size() > 1) {
4643 const auto name = String8(args[1]);
Robert Carr2047fae2016-11-28 14:09:09 -08004644 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004645 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004646 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004647 }
Robert Carr2047fae2016-11-28 14:09:09 -08004648 });
Dominik Laskowskic2867142019-01-21 11:33:38 -08004649 } else {
4650 mAnimFrameTracker.dumpStats(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004651 }
4652}
4653
Dominik Laskowskic2867142019-01-21 11:33:38 -08004654void SurfaceFlinger::clearStatsLocked(const DumpArgs& args, std::string&) {
Robert Carr2047fae2016-11-28 14:09:09 -08004655 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004656 if (args.size() < 2 || String8(args[1]) == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004657 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004658 }
Robert Carr2047fae2016-11-28 14:09:09 -08004659 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004660
Svetoslavd85084b2014-03-20 10:28:31 -07004661 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004662}
4663
Dominik Laskowskic2867142019-01-21 11:33:38 -08004664void SurfaceFlinger::dumpTimeStats(const DumpArgs& args, bool asProto, std::string& result) const {
4665 mTimeStats->parseArgs(asProto, args, result);
4666}
4667
Jamie Gennis6547ff42013-07-16 20:12:42 -07004668// This should only be called from the main thread. Otherwise it would need
4669// the lock and should use mCurrentState rather than mDrawingState.
4670void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08004671 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07004672 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08004673 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07004674
4675 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
4676}
4677
Yiwei Zhang5434a782018-12-05 18:06:32 -08004678void SurfaceFlinger::appendSfConfigString(std::string& result) const {
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004679 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07004680
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004681 if (isLayerTripleBufferingDisabled())
4682 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07004683
Yiwei Zhang5434a782018-12-05 18:06:32 -08004684 StringAppendF(&result, " PRESENT_TIME_OFFSET=%" PRId64, dispSyncPresentTimeOffset);
4685 StringAppendF(&result, " FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
4686 StringAppendF(&result, " MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
4687 StringAppendF(&result, " RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
4688 StringAppendF(&result, " NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
4689 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004690 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07004691}
4692
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004693void SurfaceFlinger::dumpVSync(std::string& result) const {
Ana Krulec757f63a2019-01-25 10:46:18 -08004694 mPhaseOffsets->dump(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004695 StringAppendF(&result,
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004696 " present offset: %9" PRId64 " ns\t VSYNC period: %9" PRId64 " ns\n\n",
Ana Krulec757f63a2019-01-25 10:46:18 -08004697 dispSyncPresentTimeOffset, getVsyncPeriod());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004698
Ady Abraham97d04232019-03-05 19:48:12 -08004699 StringAppendF(&result, "Scheduler enabled.");
Ana Krulecba13ab32019-02-20 14:14:12 -08004700 StringAppendF(&result, "+ Smart 90 for video detection: %s\n\n",
4701 mUseSmart90ForVideo ? "on" : "off");
Ana Krulecc2870422019-01-29 19:00:58 -08004702 mScheduler->dump(mAppConnectionHandle, result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004703}
4704
Yiwei Zhang5434a782018-12-05 18:06:32 -08004705void SurfaceFlinger::dumpStaticScreenStats(std::string& result) const {
4706 result.append("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08004707 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
4708 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004709 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004710 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004711 StringAppendF(&result, " < %zd frames: %.3f s (%.1f%%)\n", b + 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004712 }
David Sodman4a36e932017-11-07 14:29:47 -08004713 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004714 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004715 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004716 StringAppendF(&result, " %zd+ frames: %.3f s (%.1f%%)\n", SurfaceFlingerBE::NUM_BUCKETS - 1,
4717 bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004718}
4719
Dan Stozae77c7662016-05-13 11:37:28 -07004720void SurfaceFlinger::recordBufferingStats(const char* layerName,
4721 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08004722 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
4723 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07004724 for (const auto& segment : history) {
4725 if (!segment.usedThirdBuffer) {
4726 stats.twoBufferTime += segment.totalTime;
4727 }
4728 if (segment.occupancyAverage < 1.0f) {
4729 stats.doubleBufferedTime += segment.totalTime;
4730 } else if (segment.occupancyAverage < 2.0f) {
4731 stats.tripleBufferedTime += segment.totalTime;
4732 }
4733 ++stats.numSegments;
4734 stats.totalTime += segment.totalTime;
4735 }
4736}
4737
Yiwei Zhang5434a782018-12-05 18:06:32 -08004738void SurfaceFlinger::dumpFrameEventsLocked(std::string& result) {
4739 result.append("Layer frame timestamps:\n");
Brian Andersond6927fb2016-07-23 23:37:30 -07004740
4741 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
4742 const size_t count = currentLayers.size();
4743 for (size_t i=0 ; i<count ; i++) {
4744 currentLayers[i]->dumpFrameEvents(result);
4745 }
4746}
4747
Yiwei Zhang5434a782018-12-05 18:06:32 -08004748void SurfaceFlinger::dumpBufferingStats(std::string& result) const {
Dan Stozae77c7662016-05-13 11:37:28 -07004749 result.append("Buffering stats:\n");
4750 result.append(" [Layer name] <Active time> <Two buffer> "
4751 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08004752 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07004753 typedef std::tuple<std::string, float, float, float> BufferTuple;
4754 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08004755 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07004756 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08004757 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07004758 if (stats.numSegments == 0) {
4759 continue;
4760 }
4761 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
4762 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
4763 stats.totalTime;
4764 float doubleBufferRatio = static_cast<float>(
4765 stats.doubleBufferedTime) / stats.totalTime;
4766 float tripleBufferRatio = static_cast<float>(
4767 stats.tripleBufferedTime) / stats.totalTime;
4768 sorted.insert({activeTime, {name, twoBufferRatio,
4769 doubleBufferRatio, tripleBufferRatio}});
4770 }
4771 for (const auto& sortedPair : sorted) {
4772 float activeTime = sortedPair.first;
4773 const BufferTuple& values = sortedPair.second;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004774 StringAppendF(&result, " [%s] %.2f %.3f %.3f %.3f\n", std::get<0>(values).c_str(),
4775 activeTime, std::get<1>(values), std::get<2>(values), std::get<3>(values));
Dan Stozae77c7662016-05-13 11:37:28 -07004776 }
4777 result.append("\n");
4778}
4779
Yiwei Zhang5434a782018-12-05 18:06:32 -08004780void SurfaceFlinger::dumpDisplayIdentificationData(std::string& result) const {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004781 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004782 const auto displayId = display->getId();
4783 if (!displayId) {
4784 continue;
4785 }
4786 const auto hwcDisplayId = getHwComposer().fromPhysicalDisplayId(*displayId);
Dominik Laskowski7e045462018-05-30 13:02:02 -07004787 if (!hwcDisplayId) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004788 continue;
4789 }
4790
Yiwei Zhang5434a782018-12-05 18:06:32 -08004791 StringAppendF(&result,
4792 "Display %s (HWC display %" PRIu64 "): ", to_string(*displayId).c_str(),
4793 *hwcDisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004794 uint8_t port;
4795 DisplayIdentificationData data;
Dominik Laskowski7e045462018-05-30 13:02:02 -07004796 if (!getHwComposer().getDisplayIdentificationData(*hwcDisplayId, &port, &data)) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004797 result.append("no identification data\n");
4798 continue;
4799 }
4800
4801 if (!isEdid(data)) {
4802 result.append("unknown identification data: ");
4803 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004804 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004805 }
4806 result.append("\n");
4807 continue;
4808 }
4809
4810 const auto edid = parseEdid(data);
4811 if (!edid) {
4812 result.append("invalid EDID: ");
4813 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004814 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004815 }
4816 result.append("\n");
4817 continue;
4818 }
4819
Yiwei Zhang5434a782018-12-05 18:06:32 -08004820 StringAppendF(&result, "port=%u pnpId=%s displayName=\"", port, edid->pnpId.data());
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004821 result.append(edid->displayName.data(), edid->displayName.length());
4822 result.append("\"\n");
4823 }
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004824}
4825
Yiwei Zhang5434a782018-12-05 18:06:32 -08004826void SurfaceFlinger::dumpWideColorInfo(std::string& result) const {
Peiyong Linff84a152019-05-17 18:36:19 -07004827 StringAppendF(&result, "Device has wide color built-in display: %d\n", hasWideColorDisplay);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004828 StringAppendF(&result, "Device uses color management: %d\n", useColorManagement);
4829 StringAppendF(&result, "DisplayColorSetting: %s\n",
4830 decodeDisplayColorSetting(mDisplayColorSetting).c_str());
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004831
4832 // TODO: print out if wide-color mode is active or not
4833
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004834 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004835 const auto displayId = display->getId();
4836 if (!displayId) {
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004837 continue;
4838 }
4839
Yiwei Zhang5434a782018-12-05 18:06:32 -08004840 StringAppendF(&result, "Display %s color modes:\n", to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004841 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004842 for (auto&& mode : modes) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004843 StringAppendF(&result, " %s (%d)\n", decodeColorMode(mode).c_str(), mode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004844 }
4845
Lloyd Pique32cbe282018-10-19 13:09:22 -07004846 ColorMode currentMode = display->getCompositionDisplay()->getState().colorMode;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004847 StringAppendF(&result, " Current color mode: %s (%d)\n",
4848 decodeColorMode(currentMode).c_str(), currentMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004849 }
4850 result.append("\n");
4851}
4852
Vishnu Nair9245d3b2019-03-22 13:38:56 -07004853LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet,
4854 uint32_t traceFlags) const {
chaviw1d044282017-09-27 12:19:28 -07004855 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004856 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
4857 const State& state = useDrawing ? mDrawingState : mCurrentState;
4858 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07004859 LayerProto* layerProto = layersProto.add_layers();
Vishnu Nair9245d3b2019-03-22 13:38:56 -07004860 layer->writeToProto(layerProto, stateSet, traceFlags);
chaviw1d044282017-09-27 12:19:28 -07004861 });
4862
4863 return layersProto;
4864}
4865
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004866LayersProto SurfaceFlinger::dumpVisibleLayersProtoInfo(
4867 const sp<DisplayDevice>& displayDevice) const {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004868 LayersProto layersProto;
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004869
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004870 SizeProto* resolution = layersProto.mutable_resolution();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004871 resolution->set_w(displayDevice->getWidth());
4872 resolution->set_h(displayDevice->getHeight());
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004873
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004874 auto display = displayDevice->getCompositionDisplay();
Lloyd Pique32cbe282018-10-19 13:09:22 -07004875 const auto& displayState = display->getState();
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004876
Lloyd Pique32cbe282018-10-19 13:09:22 -07004877 layersProto.set_color_mode(decodeColorMode(displayState.colorMode));
4878 layersProto.set_color_transform(decodeColorTransform(displayState.colorTransform));
4879 layersProto.set_global_transform(displayState.orientation);
4880
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004881 const auto displayId = displayDevice->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004882 LOG_ALWAYS_FATAL_IF(!displayId);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004883 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004884 if (!layer->visibleRegion.isEmpty() && !display->getOutputLayersOrderedByZ().empty()) {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004885 LayerProto* layerProto = layersProto.add_layers();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004886 layer->writeToProto(layerProto, displayDevice);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004887 }
4888 });
4889
4890 return layersProto;
4891}
4892
Dominik Laskowskic2867142019-01-21 11:33:38 -08004893void SurfaceFlinger::dumpAllLocked(const DumpArgs& args, std::string& result) const {
4894 const bool colorize = !args.empty() && args[0] == String16("--color");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004895 Colorizer colorizer(colorize);
4896
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004897 // figure out if we're stuck somewhere
4898 const nsecs_t now = systemTime();
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004899 const nsecs_t inTransaction(mDebugInTransaction);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004900 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
4901
4902 /*
Andy McFadden4803b742012-09-24 19:07:20 -07004903 * Dump library configuration.
4904 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004905
4906 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004907 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004908 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004909 appendSfConfigString(result);
4910 appendUiConfigString(result);
4911 appendGuiConfigString(result);
4912 result.append("\n");
4913
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004914 result.append("\nDisplay identification data:\n");
4915 dumpDisplayIdentificationData(result);
4916
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004917 result.append("\nWide-Color information:\n");
4918 dumpWideColorInfo(result);
4919
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004920 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004921 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004922 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004923 result.append(SyncFeatures::getInstance().toString());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004924 result.append("\n\n");
Mathias Agopianca088332013-03-28 17:44:13 -07004925
Andy McFadden41d67d72014-04-25 16:58:34 -07004926 colorizer.bold(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004927 result.append("VSYNC configuration:\n");
Andy McFadden41d67d72014-04-25 16:58:34 -07004928 colorizer.reset(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004929 dumpVSync(result);
Dan Stozab90cf072015-03-05 11:05:59 -08004930 result.append("\n");
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004931
Dan Stozab90cf072015-03-05 11:05:59 -08004932 dumpStaticScreenStats(result);
4933 result.append("\n");
4934
Alec Mouri40189b02019-03-05 15:07:54 -08004935 StringAppendF(&result, "Total missed frame count: %u\n", mFrameMissedCount.load());
4936 StringAppendF(&result, "HWC missed frame count: %u\n", mHwcFrameMissedCount.load());
4937 StringAppendF(&result, "GPU missed frame count: %u\n\n", mGpuFrameMissedCount.load());
Marissa Wallcfcdaa52018-05-21 15:45:59 -07004938
Dan Stozae77c7662016-05-13 11:37:28 -07004939 dumpBufferingStats(result);
4940
Andy McFadden4803b742012-09-24 19:07:20 -07004941 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004942 * Dump the visible layer list
4943 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004944 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004945 StringAppendF(&result, "Visible layers (count = %zu)\n", mNumLayers);
4946 StringAppendF(&result, "GraphicBufferProducers: %zu, max %zu\n",
4947 mGraphicBufferProducerList.size(), mMaxGraphicBufferProducerListSize);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004948 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07004949
Chia-I Wu2f884132018-09-13 15:17:58 -07004950 {
4951 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4952 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004953 result.append(LayerProtoParser::layerTreeToString(layerTree));
Chia-I Wu2f884132018-09-13 15:17:58 -07004954 result.append("\n");
4955 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004956
Lloyd Pique207def92019-02-28 16:09:52 -08004957 {
4958 StringAppendF(&result, "Composition layers\n");
4959 mDrawingState.traverseInZOrder([&](Layer* layer) {
4960 auto compositionLayer = layer->getCompositionLayer();
4961 if (compositionLayer) compositionLayer->dump(result);
4962 });
4963 }
4964
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004965 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004966 * Dump Display state
4967 */
4968
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004969 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004970 StringAppendF(&result, "Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004971 colorizer.reset(result);
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004972 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004973 display->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004974 }
Chia-I Wu1e043612018-03-01 09:45:09 -08004975 result.append("\n");
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004976
4977 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004978 * Dump SurfaceFlinger global state
4979 */
4980
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004981 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004982 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004983 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004984
Lloyd Piqueb97e04f2018-10-18 17:07:05 -07004985 getRenderEngine().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004986
Dominik Laskowski075d3172018-05-24 15:50:06 -07004987 if (const auto display = getDefaultDisplayDeviceLocked()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07004988 display->getCompositionDisplay()->getState().undefinedRegion.dump(result,
4989 "undefinedRegion");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004990 StringAppendF(&result, " orientation=%d, isPoweredOn=%d\n", display->getOrientation(),
4991 display->isPoweredOn());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08004992 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004993 StringAppendF(&result,
4994 " transaction-flags : %08x\n"
4995 " gpu_to_cpu_unsupported : %d\n",
4996 mTransactionFlags.load(), !mGpuToCpuSupported);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004997
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08004998 if (const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004999 displayId && getHwComposer().isConnected(*displayId)) {
5000 const auto activeConfig = getHwComposer().getActiveConfig(*displayId);
Yiwei Zhang5434a782018-12-05 18:06:32 -08005001 StringAppendF(&result,
5002 " refresh-rate : %f fps\n"
5003 " x-dpi : %f\n"
5004 " y-dpi : %f\n",
5005 1e9 / activeConfig->getVsyncPeriod(), activeConfig->getDpiX(),
5006 activeConfig->getDpiY());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005007 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005008
Yiwei Zhang5434a782018-12-05 18:06:32 -08005009 StringAppendF(&result, " transaction time: %f us\n", inTransactionDuration / 1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005010
Dan Stozae22aec72016-08-01 13:20:59 -07005011 /*
Yichi Chenadc69612018-09-15 14:51:18 +08005012 * Tracing state
5013 */
5014 mTracing.dump(result);
5015 result.append("\n");
5016
5017 /*
Dan Stozae22aec72016-08-01 13:20:59 -07005018 * HWC layer minidump
5019 */
Dominik Laskowski9fae1022018-05-29 13:17:40 -07005020 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07005021 const auto displayId = display->getId();
5022 if (!displayId) {
Dan Stozae22aec72016-08-01 13:20:59 -07005023 continue;
5024 }
5025
Yiwei Zhang5434a782018-12-05 18:06:32 -08005026 StringAppendF(&result, "Display %s HWC layers:\n", to_string(*displayId).c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07005027 Layer::miniDumpHeader(result);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005028 const sp<DisplayDevice> displayDevice = display;
5029 mCurrentState.traverseInZOrder(
5030 [&](Layer* layer) { layer->miniDump(result, displayDevice); });
Dan Stozae22aec72016-08-01 13:20:59 -07005031 result.append("\n");
5032 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005033
5034 /*
5035 * Dump HWComposer state
5036 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02005037 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02005038 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02005039 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005040 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Yiwei Zhang5434a782018-12-05 18:06:32 -08005041 StringAppendF(&result, " h/w composer %s\n", hwcDisabled ? "disabled" : "enabled");
Dominik Laskowski075d3172018-05-24 15:50:06 -07005042 getHwComposer().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005043
5044 /*
5045 * Dump gralloc state
5046 */
5047 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
5048 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07005049
5050 /*
5051 * Dump VrFlinger state if in use.
5052 */
5053 if (mVrFlingerRequestsDisplay && mVrFlinger) {
5054 result.append("VrFlinger state:\n");
Yiwei Zhang5434a782018-12-05 18:06:32 -08005055 result.append(mVrFlinger->Dump());
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07005056 result.append("\n");
5057 }
Ana Krulecb43429d2019-01-09 14:28:51 -08005058
5059 /**
5060 * Scheduler dump state.
5061 */
Ana Krulecc2870422019-01-29 19:00:58 -08005062 result.append("\nScheduler state:\n");
5063 result.append(mScheduler->doDump() + "\n");
Ana Krulecfefd6ae2019-02-13 17:53:08 -08005064 StringAppendF(&result, "+ Smart video mode: %s\n\n", mUseSmart90ForVideo ? "on" : "off");
Dominik Laskowski22488f62019-03-28 09:53:04 -07005065 result.append(mRefreshRateStats.doDump() + "\n");
Yiwei Zhang7eb58b72019-04-22 19:00:02 -07005066
5067 result.append(mTimeStats->miniDump());
5068 result.append("\n");
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005069}
5070
Dominik Laskowski075d3172018-05-24 15:50:06 -07005071const Vector<sp<Layer>>& SurfaceFlinger::getLayerSortedByZForHwcDisplay(DisplayId displayId) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07005072 // Note: mStateLock is held here
Dominik Laskowski9fae1022018-05-29 13:17:40 -07005073 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski7e045462018-05-30 13:02:02 -07005074 if (display->getId() == displayId) {
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005075 return getDisplayDeviceLocked(token)->getVisibleLayersSortedByZ();
Jesse Hall48bc05b2013-03-21 14:06:52 -07005076 }
5077 }
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005078
Dominik Laskowski34157762018-10-31 13:07:19 -07005079 ALOGE("%s: Invalid display %s", __FUNCTION__, to_string(displayId).c_str());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005080 static const Vector<sp<Layer>> empty;
5081 return empty;
Mathias Agopiancb558572012-10-04 15:58:54 -07005082}
5083
Chia-I Wu28f320b2018-05-03 11:02:56 -07005084void SurfaceFlinger::updateColorMatrixLocked() {
5085 mat4 colorMatrix;
5086 if (mGlobalSaturationFactor != 1.0f) {
5087 // Rec.709 luma coefficients
5088 float3 luminance{0.213f, 0.715f, 0.072f};
5089 luminance *= 1.0f - mGlobalSaturationFactor;
5090 mat4 saturationMatrix = mat4(
5091 vec4{luminance.r + mGlobalSaturationFactor, luminance.r, luminance.r, 0.0f},
5092 vec4{luminance.g, luminance.g + mGlobalSaturationFactor, luminance.g, 0.0f},
5093 vec4{luminance.b, luminance.b, luminance.b + mGlobalSaturationFactor, 0.0f},
5094 vec4{0.0f, 0.0f, 0.0f, 1.0f}
5095 );
5096 colorMatrix = mClientColorMatrix * saturationMatrix * mDaltonizer();
5097 } else {
5098 colorMatrix = mClientColorMatrix * mDaltonizer();
5099 }
5100
5101 if (mCurrentState.colorMatrix != colorMatrix) {
5102 mCurrentState.colorMatrix = colorMatrix;
5103 mCurrentState.colorMatrixChanged = true;
5104 setTransactionFlags(eTransactionNeeded);
5105 }
5106}
5107
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005108status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005109#pragma clang diagnostic push
5110#pragma clang diagnostic error "-Wswitch-enum"
5111 switch (static_cast<ISurfaceComposerTag>(code)) {
5112 // These methods should at minimum make sure that the client requested
5113 // access to SF.
Dan Stozae3344402018-08-20 19:53:42 +00005114 case BOOT_FINISHED:
5115 case CLEAR_ANIMATION_FRAME_STATS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005116 case CREATE_DISPLAY:
5117 case DESTROY_DISPLAY:
Dan Stozae3344402018-08-20 19:53:42 +00005118 case ENABLE_VSYNC_INJECTIONS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005119 case GET_ANIMATION_FRAME_STATS:
5120 case GET_HDR_CAPABILITIES:
5121 case SET_ACTIVE_CONFIG:
Ady Abraham838de062019-02-04 10:24:03 -08005122 case SET_ALLOWED_DISPLAY_CONFIGS:
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08005123 case GET_ALLOWED_DISPLAY_CONFIGS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005124 case SET_ACTIVE_COLOR_MODE:
Chia-I Wu90f669f2017-10-05 14:24:41 -07005125 case INJECT_VSYNC:
Kevin DuBois9c0a1762018-10-16 13:32:31 -07005126 case SET_POWER_MODE:
Kevin DuBois74e53772018-11-19 10:52:38 -08005127 case GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES:
Kevin DuBois1d4249a2018-08-29 10:45:14 -07005128 case SET_DISPLAY_CONTENT_SAMPLING_ENABLED:
Ady Abraham8532d012019-05-08 14:50:56 -07005129 case GET_DISPLAYED_CONTENT_SAMPLE:
5130 case NOTIFY_POWER_HINT: {
Robert Carrd4ae7f32018-06-07 16:10:57 -07005131 if (!callingThreadHasUnscopedSurfaceFlingerAccess()) {
5132 IPCThreadState* ipc = IPCThreadState::self();
5133 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d",
5134 ipc->getCallingPid(), ipc->getCallingUid());
Mathias Agopian375f5632009-06-15 18:24:59 -07005135 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005136 }
Robert Carr1db73f62016-12-21 12:58:51 -08005137 return OK;
5138 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005139 case GET_LAYER_DEBUG_INFO: {
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005140 IPCThreadState* ipc = IPCThreadState::self();
5141 const int pid = ipc->getCallingPid();
5142 const int uid = ipc->getCallingUid();
Ana Krulec13be8ad2018-08-21 02:43:56 +00005143 if ((uid != AID_SHELL) && !PermissionCache::checkPermission(sDump, pid, uid)) {
5144 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005145 return PERMISSION_DENIED;
5146 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005147 return OK;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005148 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005149 // Used by apps to hook Choreographer to SurfaceFlinger.
5150 case CREATE_DISPLAY_EVENT_CONNECTION:
5151 // The following calls are currently used by clients that do not
5152 // request necessary permissions. However, they do not expose any secret
5153 // information, so it is OK to pass them.
5154 case AUTHENTICATE_SURFACE:
Peiyong Lind1fedb42019-03-11 17:48:41 -07005155 case GET_ACTIVE_COLOR_MODE:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005156 case GET_ACTIVE_CONFIG:
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08005157 case GET_PHYSICAL_DISPLAY_IDS:
5158 case GET_PHYSICAL_DISPLAY_TOKEN:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005159 case GET_DISPLAY_COLOR_MODES:
Daniel Solomon42d04562019-01-20 21:03:19 -08005160 case GET_DISPLAY_NATIVE_PRIMARIES:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005161 case GET_DISPLAY_CONFIGS:
5162 case GET_DISPLAY_STATS:
5163 case GET_SUPPORTED_FRAME_TIMESTAMPS:
5164 // Calling setTransactionState is safe, because you need to have been
5165 // granted a reference to Client* and Handle* to do anything with it.
5166 case SET_TRANSACTION_STATE:
Robert Carrb89ea9d2018-12-10 13:01:14 -08005167 case CREATE_CONNECTION:
Ady Abraham37965d42018-11-01 13:43:32 -07005168 case GET_COLOR_MANAGEMENT:
Peiyong Lin3c2791e2019-01-14 17:05:18 -08005169 case GET_COMPOSITION_PREFERENCE:
Marissa Wallebc2c052019-01-16 19:16:55 -08005170 case GET_PROTECTED_CONTENT_SUPPORT:
Dan Gittik57e63c52019-01-18 16:37:54 +00005171 case IS_WIDE_COLOR_DISPLAY:
5172 case GET_DISPLAY_BRIGHTNESS_SUPPORT:
5173 case SET_DISPLAY_BRIGHTNESS: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005174 return OK;
5175 }
5176 case CAPTURE_LAYERS:
Dan Stoza84ab9372018-12-17 15:27:57 -08005177 case CAPTURE_SCREEN:
5178 case ADD_REGION_SAMPLING_LISTENER:
5179 case REMOVE_REGION_SAMPLING_LISTENER: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005180 // codes that require permission check
chaviwa76b2712017-09-20 12:02:26 -07005181 IPCThreadState* ipc = IPCThreadState::self();
5182 const int pid = ipc->getCallingPid();
5183 const int uid = ipc->getCallingUid();
5184 if ((uid != AID_GRAPHICS) &&
5185 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
5186 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
5187 return PERMISSION_DENIED;
5188 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005189 return OK;
5190 }
5191 // The following codes are deprecated and should never be allowed to access SF.
5192 case CONNECT_DISPLAY_UNUSED:
5193 case CREATE_GRAPHIC_BUFFER_ALLOC_UNUSED: {
5194 ALOGE("Attempting to access SurfaceFlinger with unused code: %u", code);
5195 return PERMISSION_DENIED;
chaviwa76b2712017-09-20 12:02:26 -07005196 }
chaviw93df2ea2019-04-30 16:45:12 -07005197 case CAPTURE_SCREEN_BY_ID: {
5198 IPCThreadState* ipc = IPCThreadState::self();
5199 const int uid = ipc->getCallingUid();
Peiyong Lin96cfebc2019-05-15 11:36:13 -07005200 if (uid == AID_ROOT || uid == AID_GRAPHICS || uid == AID_SYSTEM || uid == AID_SHELL) {
chaviw93df2ea2019-04-30 16:45:12 -07005201 return OK;
5202 }
5203 return PERMISSION_DENIED;
5204 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005205 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005206
5207 // These codes are used for the IBinder protocol to either interrogate the recipient
5208 // side of the transaction for its canonical interface descriptor or to dump its state.
5209 // We let them pass by default.
5210 if (code == IBinder::INTERFACE_TRANSACTION || code == IBinder::DUMP_TRANSACTION ||
5211 code == IBinder::PING_TRANSACTION || code == IBinder::SHELL_COMMAND_TRANSACTION ||
5212 code == IBinder::SYSPROPS_TRANSACTION) {
5213 return OK;
5214 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005215 // Numbers from 1000 to 1034 are currently used for backdoors. The code
Ana Krulec13be8ad2018-08-21 02:43:56 +00005216 // in onTransact verifies that the user is root, and has access to use SF.
Ady Abraham34392f72019-04-10 11:29:27 -07005217 if (code >= 1000 && code <= 1035) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005218 ALOGV("Accessing SurfaceFlinger through backdoor code: %u", code);
5219 return OK;
5220 }
5221 ALOGE("Permission Denial: SurfaceFlinger did not recognize request code: %u", code);
5222 return PERMISSION_DENIED;
5223#pragma clang diagnostic pop
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005224}
5225
Ana Krulec13be8ad2018-08-21 02:43:56 +00005226status_t SurfaceFlinger::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
5227 uint32_t flags) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005228 status_t credentialCheck = CheckTransactCodeCredentials(code);
5229 if (credentialCheck != OK) {
5230 return credentialCheck;
5231 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005232
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005233 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
5234 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07005235 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07005236 IPCThreadState* ipc = IPCThreadState::self();
5237 const int uid = ipc->getCallingUid();
5238 if (CC_UNLIKELY(uid != AID_SYSTEM
5239 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07005240 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00005241 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07005242 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005243 return PERMISSION_DENIED;
5244 }
5245 int n;
5246 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07005247 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07005248 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005249 return NO_ERROR;
5250 case 1002: // SHOW_UPDATES
5251 n = data.readInt32();
5252 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07005253 invalidateHwcGeometry();
5254 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005255 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005256 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07005257 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005258 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005259 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005260 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07005261 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07005262 setTransactionFlags(
5263 eTransactionNeeded|
5264 eDisplayTransactionNeeded|
5265 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005266 return NO_ERROR;
5267 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08005268 case 1006:{ // send empty update
5269 signalRefresh();
5270 return NO_ERROR;
5271 }
Mathias Agopian53331da2011-08-22 21:44:41 -07005272 case 1008: // toggle use of hw composer
5273 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005274 mDebugDisableHWC = n != 0;
Mathias Agopian53331da2011-08-22 21:44:41 -07005275 invalidateHwcGeometry();
5276 repaintEverything();
5277 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07005278 case 1009: // toggle use of transform hint
5279 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005280 mDebugDisableTransformHint = n != 0;
Mathias Agopiana4583642011-08-23 18:03:18 -07005281 invalidateHwcGeometry();
5282 repaintEverything();
5283 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005284 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07005285 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005286 reply->writeInt32(0);
5287 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07005288 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08005289 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005290 return NO_ERROR;
5291 case 1013: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005292 const auto display = getDefaultDisplayDevice();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005293 if (!display) {
5294 return NAME_NOT_FOUND;
5295 }
5296
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005297 reply->writeInt32(display->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07005298 return NO_ERROR;
5299 }
5300 case 1014: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005301 Mutex::Autolock _l(mStateLock);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005302 // daltonize
5303 n = data.readInt32();
5304 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005305 case 1:
5306 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
5307 break;
5308 case 2:
5309 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
5310 break;
5311 case 3:
5312 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
5313 break;
5314 default:
5315 mDaltonizer.setType(ColorBlindnessType::None);
5316 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07005317 }
5318 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005319 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005320 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005321 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005322 }
Chia-I Wu28f320b2018-05-03 11:02:56 -07005323
5324 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005325 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005326 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005327 case 1015: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005328 Mutex::Autolock _l(mStateLock);
Alan Viverette9c5a3332013-09-12 20:04:35 -07005329 // apply a color matrix
5330 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005331 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07005332 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07005333 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005334 for (size_t j = 0; j < 4; j++) {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005335 mClientColorMatrix[i][j] = data.readFloat();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005336 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005337 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005338 } else {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005339 mClientColorMatrix = mat4();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005340 }
Romain Guy88d37dd2017-05-26 17:57:05 -07005341
5342 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
5343 // the division by w in the fragment shader
Chia-I Wu28f320b2018-05-03 11:02:56 -07005344 float4 lastRow(transpose(mClientColorMatrix)[3]);
Romain Guy88d37dd2017-05-26 17:57:05 -07005345 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
5346 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
5347 }
5348
Chia-I Wu28f320b2018-05-03 11:02:56 -07005349 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005350 return NO_ERROR;
5351 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005352 // This is an experimental interface
5353 // Needs to be shifted to proper binder interface when we productize
5354 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07005355 n = data.readInt32();
Ana Krulece588e312018-09-18 12:32:24 -07005356 // TODO(b/113612090): Evaluate if this can be removed.
Ana Krulecc2870422019-01-29 19:00:58 -08005357 mScheduler->setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005358 return NO_ERROR;
5359 }
Dan Stozaee44edd2015-03-23 15:50:23 -07005360 case 1017: {
5361 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005362 mForceFullDamage = n != 0;
Dan Stozaee44edd2015-03-23 15:50:23 -07005363 return NO_ERROR;
5364 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005365 case 1018: { // Modify Choreographer's phase offset
5366 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005367 mScheduler->setPhaseOffset(mAppConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005368 return NO_ERROR;
5369 }
5370 case 1019: { // Modify SurfaceFlinger's phase offset
5371 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005372 mScheduler->setPhaseOffset(mSfConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005373 return NO_ERROR;
5374 }
Irvel468051e2016-06-13 16:44:44 -07005375 case 1020: { // Layer updates interceptor
5376 n = data.readInt32();
5377 if (n) {
5378 ALOGV("Interceptor enabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005379 mInterceptor->enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07005380 }
5381 else{
5382 ALOGV("Interceptor disabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005383 mInterceptor->disable();
Irvel468051e2016-06-13 16:44:44 -07005384 }
5385 return NO_ERROR;
5386 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07005387 case 1021: { // Disable HWC virtual displays
5388 n = data.readInt32();
5389 mUseHwcVirtualDisplays = !n;
5390 return NO_ERROR;
5391 }
Romain Guy0147a172017-06-01 13:53:56 -07005392 case 1022: { // Set saturation boost
Chia-I Wu28f320b2018-05-03 11:02:56 -07005393 Mutex::Autolock _l(mStateLock);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005394 mGlobalSaturationFactor = std::max(0.0f, std::min(data.readFloat(), 2.0f));
Romain Guy0147a172017-06-01 13:53:56 -07005395
Chia-I Wu28f320b2018-05-03 11:02:56 -07005396 updateColorMatrixLocked();
Romain Guy0147a172017-06-01 13:53:56 -07005397 return NO_ERROR;
5398 }
Romain Guy54f154a2017-10-24 21:40:32 +01005399 case 1023: { // Set native mode
Chia-I Wu0d711262018-05-21 15:19:35 -07005400 mDisplayColorSetting = static_cast<DisplayColorSetting>(data.readInt32());
Romain Guy54f154a2017-10-24 21:40:32 +01005401 invalidateHwcGeometry();
5402 repaintEverything();
5403 return NO_ERROR;
5404 }
Peiyong Lin4bac91c2018-10-25 09:48:33 -07005405 // Deprecate, use 1030 to check whether the device is color managed.
5406 case 1024: {
5407 return NAME_NOT_FOUND;
Romain Guy54f154a2017-10-24 21:40:32 +01005408 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005409 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01005410 n = data.readInt32();
5411 if (n) {
Yichi Chenadc69612018-09-15 14:51:18 +08005412 ALOGD("LayerTracing enabled");
Nataniel Borges2b796da2019-02-15 13:32:18 -08005413 Mutex::Autolock lock(mStateLock);
5414 mTracingEnabledChanged = true;
Adrian Roos1e1a1282017-11-01 19:05:31 +01005415 mTracing.enable();
Adrian Roos1e1a1282017-11-01 19:05:31 +01005416 reply->writeInt32(NO_ERROR);
5417 } else {
Yichi Chenadc69612018-09-15 14:51:18 +08005418 ALOGD("LayerTracing disabled");
Nataniel Borges2b796da2019-02-15 13:32:18 -08005419 bool writeFile = false;
5420 {
5421 Mutex::Autolock lock(mStateLock);
5422 mTracingEnabledChanged = true;
5423 writeFile = mTracing.disable();
5424 }
5425
5426 if (writeFile) {
5427 reply->writeInt32(mTracing.writeToFile());
5428 } else {
5429 reply->writeInt32(NO_ERROR);
5430 }
Adrian Roos1e1a1282017-11-01 19:05:31 +01005431 }
5432 return NO_ERROR;
5433 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005434 case 1026: { // Get layer tracing status
5435 reply->writeBool(mTracing.isEnabled());
5436 return NO_ERROR;
5437 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005438 // Is a DisplayColorSetting supported?
5439 case 1027: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005440 const auto display = getDefaultDisplayDevice();
5441 if (!display) {
Chia-I Wu0d711262018-05-21 15:19:35 -07005442 return NAME_NOT_FOUND;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005443 }
Chia-I Wu0d711262018-05-21 15:19:35 -07005444
5445 DisplayColorSetting setting = static_cast<DisplayColorSetting>(data.readInt32());
5446 switch (setting) {
5447 case DisplayColorSetting::MANAGED:
Peiyong Lin13effd12018-07-24 17:01:47 -07005448 reply->writeBool(useColorManagement);
Chia-I Wu0d711262018-05-21 15:19:35 -07005449 break;
5450 case DisplayColorSetting::UNMANAGED:
5451 reply->writeBool(true);
5452 break;
5453 case DisplayColorSetting::ENHANCED:
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005454 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE));
Chia-I Wu0d711262018-05-21 15:19:35 -07005455 break;
5456 default: // vendor display color setting
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005457 reply->writeBool(
5458 display->hasRenderIntent(static_cast<RenderIntent>(setting)));
Chia-I Wu0d711262018-05-21 15:19:35 -07005459 break;
5460 }
5461 return NO_ERROR;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005462 }
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005463 // Is VrFlinger active?
5464 case 1028: {
5465 Mutex::Autolock _l(mStateLock);
Lloyd Pique441d5042018-10-18 16:49:51 -07005466 reply->writeBool(getHwComposer().isUsingVrComposer());
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005467 return NO_ERROR;
5468 }
Nataniel Borges2b796da2019-02-15 13:32:18 -08005469 // Set buffer size for SF tracing (value in KB)
5470 case 1029: {
5471 n = data.readInt32();
5472 if (n <= 0 || n > MAX_TRACING_MEMORY) {
5473 ALOGW("Invalid buffer size: %d KB", n);
5474 reply->writeInt32(BAD_VALUE);
5475 return BAD_VALUE;
5476 }
5477
5478 ALOGD("Updating trace buffer to %d KB", n);
5479 mTracing.setBufferSize(n * 1024);
5480 reply->writeInt32(NO_ERROR);
5481 return NO_ERROR;
5482 }
Peiyong Lin13effd12018-07-24 17:01:47 -07005483 // Is device color managed?
5484 case 1030: {
5485 reply->writeBool(useColorManagement);
5486 return NO_ERROR;
5487 }
Peiyong Lin9d846a52018-11-05 13:18:20 -08005488 // Override default composition data space
5489 // adb shell service call SurfaceFlinger 1031 i32 1 DATASPACE_NUMBER DATASPACE_NUMBER \
5490 // && adb shell stop zygote && adb shell start zygote
5491 // to restore: adb shell service call SurfaceFlinger 1031 i32 0 && \
5492 // adb shell stop zygote && adb shell start zygote
5493 case 1031: {
5494 Mutex::Autolock _l(mStateLock);
5495 n = data.readInt32();
5496 if (n) {
5497 n = data.readInt32();
5498 if (n) {
5499 Dataspace dataspace = static_cast<Dataspace>(n);
5500 if (!validateCompositionDataspace(dataspace)) {
5501 return BAD_VALUE;
5502 }
5503 mDefaultCompositionDataspace = dataspace;
5504 }
5505 n = data.readInt32();
5506 if (n) {
5507 Dataspace dataspace = static_cast<Dataspace>(n);
5508 if (!validateCompositionDataspace(dataspace)) {
5509 return BAD_VALUE;
5510 }
5511 mWideColorGamutCompositionDataspace = dataspace;
5512 }
5513 } else {
5514 // restore composition data space.
5515 mDefaultCompositionDataspace = defaultCompositionDataspace;
5516 mWideColorGamutCompositionDataspace = wideColorGamutCompositionDataspace;
5517 }
5518 return NO_ERROR;
5519 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07005520 // Set trace flags
5521 case 1033: {
5522 n = data.readUint32();
5523 ALOGD("Updating trace flags to 0x%x", n);
5524 mTracing.setTraceFlags(n);
5525 reply->writeInt32(NO_ERROR);
5526 return NO_ERROR;
5527 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005528 case 1034: {
5529 // TODO(b/129297325): expose this via developer menu option
5530 n = data.readInt32();
5531 if (n && !mRefreshRateOverlay) {
Ady Abrahamfed164b2019-05-10 17:12:54 -07005532 RefreshRateType type;
5533 {
5534 std::lock_guard<std::mutex> lock(mActiveConfigLock);
5535 type = mDesiredActiveConfig.type;
5536 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005537 mRefreshRateOverlay = std::make_unique<RefreshRateOverlay>(*this);
Ady Abrahamfed164b2019-05-10 17:12:54 -07005538 mRefreshRateOverlay->changeRefreshRate(type);
Ady Abraham03b02dd2019-03-21 15:40:11 -07005539 } else if (!n) {
5540 mRefreshRateOverlay.reset();
5541 }
5542 return NO_ERROR;
5543 }
Ady Abraham34392f72019-04-10 11:29:27 -07005544 case 1035: {
5545 n = data.readInt32();
5546 mDebugDisplayConfigSetByBackdoor = false;
5547 if (n >= 0) {
5548 const auto displayToken = getInternalDisplayToken();
5549 status_t result = setAllowedDisplayConfigs(displayToken, {n});
5550 if (result != NO_ERROR) {
5551 return result;
5552 }
5553 mDebugDisplayConfigSetByBackdoor = true;
5554 }
5555 return NO_ERROR;
5556 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005557 }
5558 }
5559 return err;
5560}
5561
Steven Thomas6d8110b2017-08-31 18:24:21 -07005562void SurfaceFlinger::repaintEverything() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07005563 mRepaintEverything = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07005564 signalTransaction();
Steven Thomas6d8110b2017-08-31 18:24:21 -07005565}
5566
Ana Krulec7d1d6832018-12-27 11:10:09 -08005567void SurfaceFlinger::repaintEverythingForHWC() {
5568 mRepaintEverything = true;
Ady Abraham8532d012019-05-08 14:50:56 -07005569 mEventQueue->invalidate();
Ana Krulec7d1d6832018-12-27 11:10:09 -08005570}
5571
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005572// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
5573class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005574public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005575 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
5576 ~WindowDisconnector() {
5577 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005578 }
5579
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005580private:
5581 ANativeWindow* mWindow;
5582 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005583};
5584
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005585status_t SurfaceFlinger::captureScreen(const sp<IBinder>& displayToken,
Robert Carr108b2c72019-04-02 16:32:58 -07005586 sp<GraphicBuffer>* outBuffer, bool& outCapturedSecureLayers,
5587 const Dataspace reqDataspace,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005588 const ui::PixelFormat reqPixelFormat, Rect sourceCrop,
chaviw0e3479f2018-09-10 16:49:30 -07005589 uint32_t reqWidth, uint32_t reqHeight,
5590 bool useIdentityTransform,
Robert Carrfa8855f2019-02-19 10:05:00 -08005591 ISurfaceComposer::Rotation rotation,
5592 bool captureSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005593 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005594
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005595 if (!displayToken) return BAD_VALUE;
chaviwa76b2712017-09-20 12:02:26 -07005596
Chia-I Wuc80dcbb2018-08-24 15:34:02 -07005597 auto renderAreaRotation = fromSurfaceComposerRotation(rotation);
5598
Chia-I Wu20261cb2018-08-23 12:55:44 -07005599 sp<DisplayDevice> display;
5600 {
5601 Mutex::Autolock _l(mStateLock);
Garfield Tan3b1b8af2018-03-16 17:37:33 -07005602
Chia-I Wu20261cb2018-08-23 12:55:44 -07005603 display = getDisplayDeviceLocked(displayToken);
5604 if (!display) return BAD_VALUE;
5605
Chia-I Wucb023152018-08-28 12:57:23 -07005606 // set the requested width/height to the logical display viewport size
5607 // by default
5608 if (reqWidth == 0 || reqHeight == 0) {
5609 reqWidth = uint32_t(display->getViewport().width());
5610 reqHeight = uint32_t(display->getViewport().height());
Chia-I Wu20261cb2018-08-23 12:55:44 -07005611 }
Yiwei Zhang06a58e22018-08-20 16:42:23 -07005612 }
5613
Peiyong Lin0e003c92018-09-17 11:09:51 -07005614 DisplayRenderArea renderArea(display, sourceCrop, reqWidth, reqHeight, reqDataspace,
Robert Carrfa8855f2019-02-19 10:05:00 -08005615 renderAreaRotation, captureSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005616
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08005617 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5618 std::placeholders::_1);
Peiyong Lin0e003c92018-09-17 11:09:51 -07005619 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat,
Robert Carr108b2c72019-04-02 16:32:58 -07005620 useIdentityTransform, outCapturedSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005621}
5622
chaviw93df2ea2019-04-30 16:45:12 -07005623static Dataspace pickDataspaceFromColorMode(const ColorMode colorMode) {
5624 switch (colorMode) {
5625 case ColorMode::DISPLAY_P3:
5626 case ColorMode::BT2100_PQ:
5627 case ColorMode::BT2100_HLG:
5628 case ColorMode::DISPLAY_BT2020:
5629 return Dataspace::DISPLAY_P3;
5630 default:
5631 return Dataspace::V0_SRGB;
5632 }
5633}
5634
5635const sp<DisplayDevice> SurfaceFlinger::getDisplayByIdOrLayerStack(uint64_t displayOrLayerStack) {
5636 const sp<IBinder> displayToken = getPhysicalDisplayTokenLocked(DisplayId{displayOrLayerStack});
5637 if (displayToken) {
5638 return getDisplayDeviceLocked(displayToken);
5639 }
5640 // Couldn't find display by displayId. Try to get display by layerStack since virtual displays
5641 // may not have a displayId.
5642 for (const auto& [token, display] : mDisplays) {
5643 if (display->getLayerStack() == displayOrLayerStack) {
5644 return display;
5645 }
5646 }
5647 return nullptr;
5648}
5649
5650status_t SurfaceFlinger::captureScreen(uint64_t displayOrLayerStack, Dataspace* outDataspace,
5651 sp<GraphicBuffer>* outBuffer) {
5652 sp<DisplayDevice> display;
5653 uint32_t width;
5654 uint32_t height;
5655 ui::Transform::orientation_flags captureOrientation;
5656 {
5657 Mutex::Autolock _l(mStateLock);
5658 display = getDisplayByIdOrLayerStack(displayOrLayerStack);
5659 if (!display) {
5660 return BAD_VALUE;
5661 }
5662
5663 width = uint32_t(display->getViewport().width());
5664 height = uint32_t(display->getViewport().height());
5665
5666 captureOrientation = fromSurfaceComposerRotation(
5667 static_cast<ISurfaceComposer::Rotation>(display->getOrientation()));
5668 *outDataspace =
5669 pickDataspaceFromColorMode(display->getCompositionDisplay()->getState().colorMode);
5670 }
5671
5672 DisplayRenderArea renderArea(display, Rect(), width, height, *outDataspace, captureOrientation,
5673 false /* captureSecureLayers */);
5674
5675 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5676 std::placeholders::_1);
5677 bool ignored = false;
5678 return captureScreenCommon(renderArea, traverseLayers, outBuffer, ui::PixelFormat::RGBA_8888,
5679 false /* useIdentityTransform */,
5680 ignored /* outCapturedSecureLayers */);
5681}
5682
Robert Carr866455f2019-04-02 16:28:26 -07005683status_t SurfaceFlinger::captureLayers(
5684 const sp<IBinder>& layerHandleBinder, sp<GraphicBuffer>* outBuffer,
5685 const Dataspace reqDataspace, const ui::PixelFormat reqPixelFormat, const Rect& sourceCrop,
5686 const std::unordered_set<sp<IBinder>, ISurfaceComposer::SpHash<IBinder>>& excludeHandles,
5687 float frameScale, bool childrenOnly) {
chaviwa76b2712017-09-20 12:02:26 -07005688 ATRACE_CALL();
5689
5690 class LayerRenderArea : public RenderArea {
5691 public:
Robert Carr578038f2018-03-09 12:25:24 -08005692 LayerRenderArea(SurfaceFlinger* flinger, const sp<Layer>& layer, const Rect crop,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005693 int32_t reqWidth, int32_t reqHeight, Dataspace reqDataSpace,
5694 bool childrenOnly)
5695 : RenderArea(reqWidth, reqHeight, CaptureFill::CLEAR, reqDataSpace),
Robert Carr578038f2018-03-09 12:25:24 -08005696 mLayer(layer),
5697 mCrop(crop),
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005698 mNeedsFiltering(false),
Robert Carr578038f2018-03-09 12:25:24 -08005699 mFlinger(flinger),
5700 mChildrenOnly(childrenOnly) {}
Peiyong Linefefaac2018-08-17 12:27:51 -07005701 const ui::Transform& getTransform() const override { return mTransform; }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005702 Rect getBounds() const override {
5703 const Layer::State& layerState(mLayer->getDrawingState());
5704 return mLayer->getBufferSize(layerState);
5705 }
Marissa Wall61c58622018-07-18 10:12:20 -07005706 int getHeight() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005707 return mLayer->getBufferSize(mLayer->getDrawingState()).getHeight();
Marissa Wall61c58622018-07-18 10:12:20 -07005708 }
Vishnu Nair88a11f22018-11-28 18:30:57 -08005709 int getWidth() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005710 return mLayer->getBufferSize(mLayer->getDrawingState()).getWidth();
Vishnu Nair88a11f22018-11-28 18:30:57 -08005711 }
chaviwa76b2712017-09-20 12:02:26 -07005712 bool isSecure() const override { return false; }
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005713 bool needsFiltering() const override { return mNeedsFiltering; }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005714 const sp<const DisplayDevice> getDisplayDevice() const override { return nullptr; }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005715 Rect getSourceCrop() const override {
5716 if (mCrop.isEmpty()) {
5717 return getBounds();
5718 } else {
5719 return mCrop;
5720 }
5721 }
Robert Carr578038f2018-03-09 12:25:24 -08005722 class ReparentForDrawing {
5723 public:
5724 const sp<Layer>& oldParent;
5725 const sp<Layer>& newParent;
5726
Vishnu Nair4351ad52019-02-11 14:13:02 -08005727 ReparentForDrawing(const sp<Layer>& oldParent, const sp<Layer>& newParent,
5728 const Rect& drawingBounds)
Robert Carr578038f2018-03-09 12:25:24 -08005729 : oldParent(oldParent), newParent(newParent) {
Vishnu Nair4351ad52019-02-11 14:13:02 -08005730 // Compute and cache the bounds for the new parent layer.
5731 newParent->computeBounds(drawingBounds.toFloatRect(), ui::Transform());
Robert Carr15eae092018-03-23 13:43:53 -07005732 oldParent->setChildrenDrawingParent(newParent);
Robert Carr578038f2018-03-09 12:25:24 -08005733 }
Vishnu Nairbce6ffd2019-02-14 10:58:59 -08005734 ~ReparentForDrawing() { oldParent->setChildrenDrawingParent(oldParent); }
Robert Carr578038f2018-03-09 12:25:24 -08005735 };
5736
5737 void render(std::function<void()> drawLayers) override {
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005738 const Rect sourceCrop = getSourceCrop();
5739 // no need to check rotation because there is none
5740 mNeedsFiltering = sourceCrop.width() != getReqWidth() ||
5741 sourceCrop.height() != getReqHeight();
5742
Robert Carr578038f2018-03-09 12:25:24 -08005743 if (!mChildrenOnly) {
5744 mTransform = mLayer->getTransform().inverse();
5745 drawLayers();
5746 } else {
5747 Rect bounds = getBounds();
Lloyd Pique90c115d2018-09-18 21:39:42 -07005748 screenshotParentLayer = mFlinger->getFactory().createContainerLayer(
Lloyd Pique42ab75e2018-09-12 20:46:03 -07005749 LayerCreationArgs(mFlinger, nullptr, String8("Screenshot Parent"),
Evan Roskya1f1e152019-01-24 16:17:46 -08005750 bounds.getWidth(), bounds.getHeight(), 0,
5751 LayerMetadata()));
Robert Carr578038f2018-03-09 12:25:24 -08005752
Vishnu Nair4351ad52019-02-11 14:13:02 -08005753 ReparentForDrawing reparent(mLayer, screenshotParentLayer, sourceCrop);
Robert Carr578038f2018-03-09 12:25:24 -08005754 drawLayers();
5755 }
5756 }
chaviwa76b2712017-09-20 12:02:26 -07005757
chaviwa76b2712017-09-20 12:02:26 -07005758 private:
chaviw7206d492017-11-10 16:16:12 -08005759 const sp<Layer> mLayer;
5760 const Rect mCrop;
Robert Carr578038f2018-03-09 12:25:24 -08005761
5762 // In the "childrenOnly" case we reparent the children to a screenshot
5763 // layer which has no properties set and which does not draw.
5764 sp<ContainerLayer> screenshotParentLayer;
Peiyong Linefefaac2018-08-17 12:27:51 -07005765 ui::Transform mTransform;
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005766 bool mNeedsFiltering;
Robert Carr578038f2018-03-09 12:25:24 -08005767
5768 SurfaceFlinger* mFlinger;
5769 const bool mChildrenOnly;
chaviwa76b2712017-09-20 12:02:26 -07005770 };
5771
Robert Carrc0df3122019-04-11 13:18:21 -07005772 int reqWidth = 0;
5773 int reqHeight = 0;
5774 sp<Layer> parent;
chaviw7206d492017-11-10 16:16:12 -08005775 Rect crop(sourceCrop);
Robert Carrc0df3122019-04-11 13:18:21 -07005776 std::unordered_set<sp<Layer>, ISurfaceComposer::SpHash<Layer>> excludeLayers;
chaviw7206d492017-11-10 16:16:12 -08005777
Robert Carrc0df3122019-04-11 13:18:21 -07005778 {
5779 Mutex::Autolock _l(mStateLock);
chaviw7206d492017-11-10 16:16:12 -08005780
Robert Carrc0df3122019-04-11 13:18:21 -07005781 parent = fromHandle(layerHandleBinder);
5782 if (parent == nullptr || parent->isRemovedFromCurrentState()) {
5783 ALOGE("captureLayers called with an invalid or removed parent");
5784 return NAME_NOT_FOUND;
5785 }
5786
5787 const int uid = IPCThreadState::self()->getCallingUid();
5788 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5789 if (!forSystem && parent->getCurrentState().flags & layer_state_t::eLayerSecure) {
5790 ALOGW("Attempting to capture secure layer: PERMISSION_DENIED");
5791 return PERMISSION_DENIED;
5792 }
5793
5794 if (sourceCrop.width() <= 0) {
5795 crop.left = 0;
5796 crop.right = parent->getBufferSize(parent->getCurrentState()).getWidth();
5797 }
5798
5799 if (sourceCrop.height() <= 0) {
5800 crop.top = 0;
5801 crop.bottom = parent->getBufferSize(parent->getCurrentState()).getHeight();
5802 }
5803 reqWidth = crop.width() * frameScale;
5804 reqHeight = crop.height() * frameScale;
5805
5806 for (const auto& handle : excludeHandles) {
5807 sp<Layer> excludeLayer = fromHandle(handle);
5808 if (excludeLayer != nullptr) {
5809 excludeLayers.emplace(excludeLayer);
5810 } else {
5811 ALOGW("Invalid layer handle passed as excludeLayer to captureLayers");
5812 return NAME_NOT_FOUND;
5813 }
5814 }
5815 } // mStateLock
chaviw7206d492017-11-10 16:16:12 -08005816
Chia-I Wu20261cb2018-08-23 12:55:44 -07005817 // really small crop or frameScale
5818 if (reqWidth <= 0) {
5819 reqWidth = 1;
5820 }
5821 if (reqHeight <= 0) {
5822 reqHeight = 1;
5823 }
5824
Robert Carr866455f2019-04-02 16:28:26 -07005825 LayerRenderArea renderArea(this, parent, crop, reqWidth, reqHeight, reqDataspace, childrenOnly);
5826 auto traverseLayers = [parent, childrenOnly,
5827 &excludeLayers](const LayerVector::Visitor& visitor) {
chaviwa76b2712017-09-20 12:02:26 -07005828 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
5829 if (!layer->isVisible()) {
5830 return;
Robert Carr578038f2018-03-09 12:25:24 -08005831 } else if (childrenOnly && layer == parent.get()) {
5832 return;
chaviwa76b2712017-09-20 12:02:26 -07005833 }
Robert Carr866455f2019-04-02 16:28:26 -07005834
5835 sp<Layer> p = layer;
5836 while (p != nullptr) {
5837 if (excludeLayers.count(p) != 0) {
5838 return;
5839 }
5840 p = p->getParent();
5841 }
5842
chaviwa76b2712017-09-20 12:02:26 -07005843 visitor(layer);
5844 });
5845 };
Robert Carr108b2c72019-04-02 16:32:58 -07005846
5847 bool outCapturedSecureLayers = false;
5848 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat, false,
5849 outCapturedSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005850}
5851
5852status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5853 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005854 sp<GraphicBuffer>* outBuffer,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005855 const ui::PixelFormat reqPixelFormat,
Robert Carr108b2c72019-04-02 16:32:58 -07005856 bool useIdentityTransform,
5857 bool& outCapturedSecureLayers) {
chaviwa76b2712017-09-20 12:02:26 -07005858 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005859
Peiyong Lin0e003c92018-09-17 11:09:51 -07005860 // TODO(b/116112787) Make buffer usage a parameter.
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005861 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
5862 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Lloyd Pique90c115d2018-09-18 21:39:42 -07005863 *outBuffer =
5864 getFactory().createGraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
5865 static_cast<android_pixel_format>(reqPixelFormat), 1,
5866 usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005867
Robert Carr108b2c72019-04-02 16:32:58 -07005868 return captureScreenCommon(renderArea, traverseLayers, *outBuffer, useIdentityTransform,
5869 outCapturedSecureLayers);
Dan Stozaec460082018-12-17 15:35:09 -08005870}
5871
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005872status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5873 TraverseLayersFunction traverseLayers,
5874 const sp<GraphicBuffer>& buffer,
Robert Carr108b2c72019-04-02 16:32:58 -07005875 bool useIdentityTransform,
5876 bool& outCapturedSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005877 // This mutex protects syncFd and captureResult for communication of the return values from the
5878 // main thread back to this Binder thread
5879 std::mutex captureMutex;
5880 std::condition_variable captureCondition;
5881 std::unique_lock<std::mutex> captureLock(captureMutex);
5882 int syncFd = -1;
5883 std::optional<status_t> captureResult;
5884
Robert Carr03480e22018-01-04 16:02:06 -08005885 const int uid = IPCThreadState::self()->getCallingUid();
5886 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5887
Dominik Laskowski8c001672018-05-30 16:52:06 -07005888 sp<LambdaMessage> message = new LambdaMessage([&] {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005889 // If there is a refresh pending, bug out early and tell the binder thread to try again
5890 // after the refresh.
5891 if (mRefreshPending) {
5892 ATRACE_NAME("Skipping screenshot for now");
5893 std::unique_lock<std::mutex> captureLock(captureMutex);
5894 captureResult = std::make_optional<status_t>(EAGAIN);
5895 captureCondition.notify_one();
5896 return;
5897 }
5898
5899 status_t result = NO_ERROR;
5900 int fd = -1;
5901 {
5902 Mutex::Autolock _l(mStateLock);
Dominik Laskowski8c001672018-05-30 16:52:06 -07005903 renderArea.render([&] {
Dan Stozaec460082018-12-17 15:35:09 -08005904 result = captureScreenImplLocked(renderArea, traverseLayers, buffer.get(),
Robert Carr108b2c72019-04-02 16:32:58 -07005905 useIdentityTransform, forSystem, &fd,
5906 outCapturedSecureLayers);
Robert Carr578038f2018-03-09 12:25:24 -08005907 });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005908 }
5909
5910 {
5911 std::unique_lock<std::mutex> captureLock(captureMutex);
5912 syncFd = fd;
5913 captureResult = std::make_optional<status_t>(result);
5914 captureCondition.notify_one();
5915 }
5916 });
5917
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005918 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005919 if (result == NO_ERROR) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07005920 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005921 while (*captureResult == EAGAIN) {
5922 captureResult.reset();
5923 result = postMessageAsync(message);
5924 if (result != NO_ERROR) {
5925 return result;
5926 }
Dominik Laskowski8c001672018-05-30 16:52:06 -07005927 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005928 }
5929 result = *captureResult;
5930 }
5931
5932 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005933 sync_wait(syncFd, -1);
5934 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005935 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005936
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005937 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005938}
5939
chaviwa76b2712017-09-20 12:02:26 -07005940void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
Chia-I Wu1be50b52018-08-29 10:44:48 -07005941 TraverseLayersFunction traverseLayers,
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005942 ANativeWindowBuffer* buffer, bool useIdentityTransform,
5943 int* outSyncFd) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07005944 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07005945
chaviwa76b2712017-09-20 12:02:26 -07005946 const auto reqWidth = renderArea.getReqWidth();
5947 const auto reqHeight = renderArea.getReqHeight();
Chia-I Wuf2aa3112018-08-27 14:54:37 -07005948 const auto rotation = renderArea.getRotationFlags();
Alec Mouriadb75f42019-03-28 21:42:24 -07005949 const auto transform = renderArea.getTransform();
5950 const auto sourceCrop = renderArea.getSourceCrop();
Dan Stozac1879002014-05-22 15:59:05 -07005951
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005952 renderengine::DisplaySettings clientCompositionDisplay;
5953 std::vector<renderengine::LayerSettings> clientCompositionLayers;
Romain Guy88d37dd2017-05-26 17:57:05 -07005954
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005955 // assume that bounds are never offset, and that they are the same as the
5956 // buffer bounds.
5957 clientCompositionDisplay.physicalDisplay = Rect(reqWidth, reqHeight);
Alec Mouriadb75f42019-03-28 21:42:24 -07005958 clientCompositionDisplay.clip = sourceCrop;
Lloyd Pique7e06e7f2019-03-15 18:36:44 -07005959 clientCompositionDisplay.globalTransform = transform.asMatrix4();
Alec Mouriadb75f42019-03-28 21:42:24 -07005960
5961 // Now take into account the rotation flag. We append a transform that
5962 // rotates the layer stack about the origin, then translate by buffer
5963 // boundaries to be in the right quadrant.
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005964 mat4 rotMatrix;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005965 int displacementX = 0;
5966 int displacementY = 0;
5967 float rot90InRadians = 2.0f * static_cast<float>(M_PI) / 4.0f;
5968 switch (rotation) {
5969 case ui::Transform::ROT_90:
5970 rotMatrix = mat4::rotate(rot90InRadians, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005971 displacementX = renderArea.getBounds().getHeight();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005972 break;
5973 case ui::Transform::ROT_180:
5974 rotMatrix = mat4::rotate(rot90InRadians * 2.0f, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005975 displacementY = renderArea.getBounds().getWidth();
5976 displacementX = renderArea.getBounds().getHeight();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005977 break;
5978 case ui::Transform::ROT_270:
5979 rotMatrix = mat4::rotate(rot90InRadians * 3.0f, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005980 displacementY = renderArea.getBounds().getWidth();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005981 break;
5982 default:
5983 break;
5984 }
Alec Mouriadb75f42019-03-28 21:42:24 -07005985
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005986 // We need to transform the clipping window into the right spot.
5987 // First, rotate the clipping rectangle by the rotation hint to get the
5988 // right orientation
5989 const vec4 clipTL = vec4(sourceCrop.left, sourceCrop.top, 0, 1);
5990 const vec4 clipBR = vec4(sourceCrop.right, sourceCrop.bottom, 0, 1);
5991 const vec4 rotClipTL = rotMatrix * clipTL;
5992 const vec4 rotClipBR = rotMatrix * clipBR;
5993 const int newClipLeft = std::min(rotClipTL[0], rotClipBR[0]);
5994 const int newClipTop = std::min(rotClipTL[1], rotClipBR[1]);
5995 const int newClipRight = std::max(rotClipTL[0], rotClipBR[0]);
5996 const int newClipBottom = std::max(rotClipTL[1], rotClipBR[1]);
5997
5998 // Now reposition the clipping rectangle with the displacement vector
5999 // computed above.
6000 const mat4 displacementMat = mat4::translate(vec4(displacementX, displacementY, 0, 1));
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006001 clientCompositionDisplay.clip =
6002 Rect(newClipLeft + displacementX, newClipTop + displacementY,
6003 newClipRight + displacementX, newClipBottom + displacementY);
6004
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006005 mat4 clipTransform = displacementMat * rotMatrix;
Alec Mouriadb75f42019-03-28 21:42:24 -07006006 clientCompositionDisplay.globalTransform =
6007 clipTransform * clientCompositionDisplay.globalTransform;
6008
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006009 clientCompositionDisplay.outputDataspace = renderArea.getReqDataSpace();
6010 clientCompositionDisplay.maxLuminance = DisplayDevice::sDefaultMaxLumiance;
Mathias Agopian180f10d2013-04-10 22:55:41 -07006011
chaviw50da5042018-04-09 13:49:37 -07006012 const float alpha = RenderArea::getCaptureFillValue(renderArea.getCaptureFill());
Mathias Agopian180f10d2013-04-10 22:55:41 -07006013
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006014 renderengine::LayerSettings fillLayer;
6015 fillLayer.source.buffer.buffer = nullptr;
6016 fillLayer.source.solidColor = half3(0.0, 0.0, 0.0);
6017 fillLayer.geometry.boundaries = FloatRect(0.0, 0.0, 1.0, 1.0);
6018 fillLayer.alpha = half(alpha);
6019 clientCompositionLayers.push_back(fillLayer);
6020
6021 Region clearRegion = Region::INVALID_REGION;
chaviwa76b2712017-09-20 12:02:26 -07006022 traverseLayers([&](Layer* layer) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006023 renderengine::LayerSettings layerSettings;
6024 bool prepared = layer->prepareClientLayer(renderArea, useIdentityTransform, clearRegion,
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08006025 false, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006026 if (prepared) {
6027 clientCompositionLayers.push_back(layerSettings);
6028 }
chaviwa76b2712017-09-20 12:02:26 -07006029 });
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006030
6031 clientCompositionDisplay.clearRegion = clearRegion;
Alec Mouri6338c9d2019-02-07 16:57:51 -08006032 // Use an empty fence for the buffer fence, since we just created the buffer so
6033 // there is no need for synchronization with the GPU.
6034 base::unique_fd bufferFence;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006035 base::unique_fd drawFence;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08006036 getRenderEngine().useProtectedContext(false);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006037 getRenderEngine().drawLayers(clientCompositionDisplay, clientCompositionLayers, buffer,
Alec Mourife0d72b2019-03-21 14:05:56 -07006038 /*useFramebufferCache=*/false, std::move(bufferFence), &drawFence);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006039
6040 *outSyncFd = drawFence.release();
Mathias Agopian180f10d2013-04-10 22:55:41 -07006041}
6042
chaviwa76b2712017-09-20 12:02:26 -07006043status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
6044 TraverseLayersFunction traverseLayers,
6045 ANativeWindowBuffer* buffer,
Robert Carr108b2c72019-04-02 16:32:58 -07006046 bool useIdentityTransform, bool forSystem,
6047 int* outSyncFd, bool& outCapturedSecureLayers) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08006048 ATRACE_CALL();
6049
chaviwa76b2712017-09-20 12:02:26 -07006050 traverseLayers([&](Layer* layer) {
Robert Carr108b2c72019-04-02 16:32:58 -07006051 outCapturedSecureLayers =
6052 outCapturedSecureLayers || (layer->isVisible() && layer->isSecure());
chaviwa76b2712017-09-20 12:02:26 -07006053 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08006054
Robert Carr03480e22018-01-04 16:02:06 -08006055 // We allow the system server to take screenshots of secure layers for
6056 // use in situations like the Screen-rotation animation and place
6057 // the impetus on WindowManager to not persist them.
Robert Carr108b2c72019-04-02 16:32:58 -07006058 if (outCapturedSecureLayers && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08006059 ALOGW("FB is protected: PERMISSION_DENIED");
6060 return PERMISSION_DENIED;
6061 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006062 renderScreenImplLocked(renderArea, traverseLayers, buffer, useIdentityTransform, outSyncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07006063 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07006064}
6065
chaviw95ef3c42019-02-14 10:55:09 -08006066void SurfaceFlinger::setInputWindowsFinished() {
6067 Mutex::Autolock _l(mStateLock);
6068
6069 mPendingSyncInputWindows = false;
6070 mTransactionCV.broadcast();
6071}
chaviw5f21a5e2019-02-14 10:00:34 -08006072
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07006073// ---------------------------------------------------------------------------
6074
Dan Stoza412903f2017-04-27 13:42:17 -07006075void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
6076 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07006077}
6078
Dan Stoza412903f2017-04-27 13:42:17 -07006079void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
6080 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07006081}
6082
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006083void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& display,
chaviwa76b2712017-09-20 12:02:26 -07006084 const LayerVector::Visitor& visitor) {
6085 // We loop through the first level of layers without traversing,
chaviw0e3479f2018-09-10 16:49:30 -07006086 // as we need to determine which layers belong to the requested display.
chaviwa76b2712017-09-20 12:02:26 -07006087 for (const auto& layer : mDrawingState.layersSortedByZ) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006088 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
chaviwa76b2712017-09-20 12:02:26 -07006089 continue;
6090 }
Chia-I Wuec2d9852017-11-21 09:21:01 -08006091 // relative layers are traversed in Layer::traverseInZOrder
chaviwa76b2712017-09-20 12:02:26 -07006092 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006093 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01006094 return;
6095 }
chaviwa76b2712017-09-20 12:02:26 -07006096 if (!layer->isVisible()) {
6097 return;
6098 }
6099 visitor(layer);
6100 });
6101 }
6102}
6103
Dominik Laskowski22488f62019-03-28 09:53:04 -07006104void SurfaceFlinger::setAllowedDisplayConfigsInternal(const sp<DisplayDevice>& display,
6105 const std::vector<int32_t>& allowedConfigs) {
6106 if (!display->isPrimary()) {
Ady Abraham838de062019-02-04 10:24:03 -08006107 return;
6108 }
6109
6110 ALOGV("Updating allowed configs");
Dominik Laskowski22488f62019-03-28 09:53:04 -07006111 mAllowedDisplayConfigs = DisplayConfigs(allowedConfigs.begin(), allowedConfigs.end());
Ady Abraham838de062019-02-04 10:24:03 -08006112
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006113 // Set the highest allowed config by iterating backwards on available refresh rates
Dominik Laskowski22488f62019-03-28 09:53:04 -07006114 const auto& refreshRates = mRefreshRateConfigs.getRefreshRates();
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006115 for (auto iter = refreshRates.crbegin(); iter != refreshRates.crend(); ++iter) {
Dominik Laskowski22488f62019-03-28 09:53:04 -07006116 if (iter->second && isDisplayConfigAllowed(iter->second->configId)) {
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006117 ALOGV("switching to config %d", iter->second->configId);
Dominik Laskowski22488f62019-03-28 09:53:04 -07006118 setDesiredActiveConfig(
6119 {iter->first, iter->second->configId, Scheduler::ConfigEvent::Changed});
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006120 break;
Ady Abraham97d04232019-03-05 19:48:12 -08006121 }
6122 }
Ady Abraham838de062019-02-04 10:24:03 -08006123}
6124
Dominik Laskowski22488f62019-03-28 09:53:04 -07006125status_t SurfaceFlinger::setAllowedDisplayConfigs(const sp<IBinder>& displayToken,
Ady Abraham838de062019-02-04 10:24:03 -08006126 const std::vector<int32_t>& allowedConfigs) {
6127 ATRACE_CALL();
6128
Dominik Laskowski22488f62019-03-28 09:53:04 -07006129 if (!displayToken || allowedConfigs.empty()) {
Ady Abraham838de062019-02-04 10:24:03 -08006130 return BAD_VALUE;
6131 }
6132
Ady Abraham34392f72019-04-10 11:29:27 -07006133 if (mDebugDisplayConfigSetByBackdoor) {
6134 // ignore this request as config is overridden by backdoor
6135 return NO_ERROR;
6136 }
6137
Ady Abraham838de062019-02-04 10:24:03 -08006138 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowski22488f62019-03-28 09:53:04 -07006139 const auto display = getDisplayDeviceLocked(displayToken);
6140 if (!display) {
6141 ALOGE("Attempt to set allowed display configs for invalid display token %p",
6142 displayToken.get());
6143 } else if (display->isVirtual()) {
6144 ALOGW("Attempt to set allowed display configs for virtual display");
6145 } else {
6146 setAllowedDisplayConfigsInternal(display, allowedConfigs);
6147 }
Ady Abraham838de062019-02-04 10:24:03 -08006148 }));
Dominik Laskowski22488f62019-03-28 09:53:04 -07006149
Ady Abraham838de062019-02-04 10:24:03 -08006150 return NO_ERROR;
6151}
6152
Dominik Laskowski22488f62019-03-28 09:53:04 -07006153status_t SurfaceFlinger::getAllowedDisplayConfigs(const sp<IBinder>& displayToken,
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006154 std::vector<int32_t>* outAllowedConfigs) {
6155 ATRACE_CALL();
6156
Dominik Laskowski22488f62019-03-28 09:53:04 -07006157 if (!displayToken || !outAllowedConfigs) {
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006158 return BAD_VALUE;
6159 }
6160
Dominik Laskowski22488f62019-03-28 09:53:04 -07006161 Mutex::Autolock lock(mStateLock);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006162
Dominik Laskowski4f1dd8c2019-04-17 15:54:30 -07006163 const auto display = getDisplayDeviceLocked(displayToken);
6164 if (!display) {
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006165 return NAME_NOT_FOUND;
6166 }
6167
Dominik Laskowski4f1dd8c2019-04-17 15:54:30 -07006168 if (display->isPrimary()) {
6169 outAllowedConfigs->assign(mAllowedDisplayConfigs.begin(), mAllowedDisplayConfigs.end());
6170 }
6171
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006172 return NO_ERROR;
6173}
6174
Dominik Laskowski9dab3432019-03-27 13:21:10 -07006175void SurfaceFlinger::SetInputWindowsListener::onSetInputWindowsFinished() {
chaviw291d88a2019-02-14 10:33:58 -08006176 mFlinger->setInputWindowsFinished();
6177}
6178
Robert Carrc0df3122019-04-11 13:18:21 -07006179sp<Layer> SurfaceFlinger::fromHandle(const sp<IBinder>& handle) {
6180 BBinder *b = handle->localBinder();
6181 if (b == nullptr) {
6182 return nullptr;
6183 }
6184 auto it = mLayersByLocalBinderToken.find(b);
6185 if (it != mLayersByLocalBinderToken.end()) {
6186 return it->second.promote();
6187 }
6188 return nullptr;
6189}
6190
Dominik Laskowski9dab3432019-03-27 13:21:10 -07006191} // namespace android
Lloyd Pique074e8122018-07-26 12:57:23 -07006192
Mathias Agopian3f844832013-08-07 21:24:32 -07006193#if defined(__gl_h_)
6194#error "don't include gl/gl.h in this file"
6195#endif
6196
6197#if defined(__gl2_h_)
6198#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08006199#endif