blob: b7ee952aee8ee0124b35be21bfe1d424be7c17a5 [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));
Peiyong Lin8cabfc32019-06-14 14:25:43 -0700305 mWideColorGamutCompositionDataspace = static_cast<ui::Dataspace>(wcg_composition_dataspace(
306 hasWideColorDisplay ? Dataspace::DISPLAY_P3 : Dataspace::V0_SRGB));
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900307 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
Ady Abraham4658e112019-07-22 13:07:26 -0700356 property_get("debug.sf.enable_gl_backpressure", value, "0");
357 mPropagateBackpressureClientComposition = atoi(value);
358 ALOGI_IF(mPropagateBackpressureClientComposition,
359 "Enabling backpressure propagation for Client Composition");
360
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800361 property_get("debug.sf.enable_hwc_vds", value, "0");
362 mUseHwcVirtualDisplays = atoi(value);
Chia-I Wu11d10612018-06-21 15:41:13 +0800363 ALOGI_IF(mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800364
Yiwei Zhangb770ed32018-12-17 17:44:28 -0800365 property_get("ro.sf.disable_triple_buffer", value, "0");
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800366 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800367 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700368
Yiwei Zhang243b3782018-05-15 17:40:04 -0700369 const size_t defaultListSize = MAX_LAYERS;
Dan Stoza0a0158c2018-03-16 13:38:54 -0700370 auto listSize = property_get_int32("debug.sf.max_igbp_list_size", int32_t(defaultListSize));
371 mMaxGraphicBufferProducerListSize = (listSize > 0) ? size_t(listSize) : defaultListSize;
372
Ana Krulece5a06e02019-03-06 17:09:03 -0800373 mUseSmart90ForVideo = use_smart_90_for_video(false);
Ana Krulecba13ab32019-02-20 14:14:12 -0800374 property_get("debug.sf.use_smart_90_for_video", value, "0");
Ana Krulece5a06e02019-03-06 17:09:03 -0800375
376 int int_value = atoi(value);
377 if (int_value) {
378 mUseSmart90ForVideo = true;
379 }
Ana Krulecba13ab32019-02-20 14:14:12 -0800380
Dan Stozaec460082018-12-17 15:35:09 -0800381 property_get("debug.sf.luma_sampling", value, "1");
382 mLumaSampling = atoi(value);
383
Ana Krulec757f63a2019-01-25 10:46:18 -0800384 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abrahamf8713e12019-06-07 18:20:51 -0700385 mVsyncModulator.setPhaseOffsets(early, gl, late,
386 mPhaseOffsets->getOffsetThresholdForNextVsync());
Dan Stoza84d619e2018-03-28 17:07:36 -0700387
Romain Guy11d63f42017-07-20 12:47:14 -0700388 // We should be reading 'persist.sys.sf.color_saturation' here
389 // but since /data may be encrypted, we need to wait until after vold
390 // comes online to attempt to read the property. The property is
391 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800392
393 if (useTrebleTestingOverride()) {
394 // Without the override SurfaceFlinger cannot connect to HIDL
395 // services that are not listed in the manifests. Considered
396 // deriving the setting from the set service name, but it
397 // would be brittle if the name that's not 'default' is used
398 // for production purposes later on.
399 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
400 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800401}
402
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800403void SurfaceFlinger::onFirstRef()
404{
Lloyd Pique3fcdef12018-01-22 17:14:00 -0800405 mEventQueue->init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800406}
407
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700408SurfaceFlinger::~SurfaceFlinger() = default;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800409
Dan Stozac7014012014-02-14 15:03:43 -0800410void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800411{
412 // the window manager died on us. prepare its eulogy.
413
Andy McFadden13a082e2012-08-24 10:16:42 -0700414 // restore initial conditions (default device unblank, etc)
415 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800416
417 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700418 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800419}
420
Robert Carr1db73f62016-12-21 12:58:51 -0800421static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700422 status_t err = client->initCheck();
423 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800424 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800425 }
Robert Carr1db73f62016-12-21 12:58:51 -0800426 return nullptr;
427}
428
429sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
430 return initClient(new Client(this));
431}
432
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700433sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
434 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700435{
436 class DisplayToken : public BBinder {
437 sp<SurfaceFlinger> flinger;
438 virtual ~DisplayToken() {
439 // no more references, this display must be terminated
440 Mutex::Autolock _l(flinger->mStateLock);
441 flinger->mCurrentState.displays.removeItem(this);
442 flinger->setTransactionFlags(eDisplayTransactionNeeded);
443 }
444 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700445 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700446 : flinger(flinger) {
447 }
448 };
449
450 sp<BBinder> token = new DisplayToken(this);
451
452 Mutex::Autolock _l(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700453 // Display ID is assigned when virtual display is allocated by HWC.
454 DisplayDeviceState state;
455 state.isSecure = secure;
456 state.displayName = displayName;
457 mCurrentState.displays.add(token, state);
458 mInterceptor->saveDisplayCreation(state);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700459 return token;
460}
461
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700462void SurfaceFlinger::destroyDisplay(const sp<IBinder>& displayToken) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700463 Mutex::Autolock _l(mStateLock);
464
Dominik Laskowski075d3172018-05-24 15:50:06 -0700465 ssize_t index = mCurrentState.displays.indexOfKey(displayToken);
466 if (index < 0) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700467 ALOGE("destroyDisplay: Invalid display token %p", displayToken.get());
Jesse Hall6c913be2013-08-08 12:15:49 -0700468 return;
469 }
470
Dominik Laskowski075d3172018-05-24 15:50:06 -0700471 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
472 if (!state.isVirtual()) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700473 ALOGE("destroyDisplay called for non-virtual display");
474 return;
475 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700476 mInterceptor->saveDisplayDeletion(state.sequenceId);
477 mCurrentState.displays.removeItemsAt(index);
Jesse Hall6c913be2013-08-08 12:15:49 -0700478 setTransactionFlags(eDisplayTransactionNeeded);
479}
480
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800481std::vector<PhysicalDisplayId> SurfaceFlinger::getPhysicalDisplayIds() const {
482 Mutex::Autolock lock(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700483
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800484 const auto internalDisplayId = getInternalDisplayIdLocked();
485 if (!internalDisplayId) {
486 return {};
Dominik Laskowski075d3172018-05-24 15:50:06 -0700487 }
488
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800489 std::vector<PhysicalDisplayId> displayIds;
490 displayIds.reserve(mPhysicalDisplayTokens.size());
491 displayIds.push_back(internalDisplayId->value);
492
493 for (const auto& [id, token] : mPhysicalDisplayTokens) {
494 if (id != *internalDisplayId) {
495 displayIds.push_back(id.value);
496 }
Mathias Agopiane57f2922012-08-09 16:29:12 -0700497 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700498
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800499 return displayIds;
500}
501
502sp<IBinder> SurfaceFlinger::getPhysicalDisplayToken(PhysicalDisplayId displayId) const {
503 Mutex::Autolock lock(mStateLock);
504 return getPhysicalDisplayTokenLocked(DisplayId{displayId});
Mathias Agopiane57f2922012-08-09 16:29:12 -0700505}
506
Ady Abraham37965d42018-11-01 13:43:32 -0700507status_t SurfaceFlinger::getColorManagement(bool* outGetColorManagement) const {
508 if (!outGetColorManagement) {
509 return BAD_VALUE;
510 }
511 *outGetColorManagement = useColorManagement;
512 return NO_ERROR;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700513}
514
Lloyd Pique441d5042018-10-18 16:49:51 -0700515HWComposer& SurfaceFlinger::getHwComposer() const {
516 return mCompositionEngine->getHwComposer();
517}
518
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700519renderengine::RenderEngine& SurfaceFlinger::getRenderEngine() const {
520 return mCompositionEngine->getRenderEngine();
521}
522
Lloyd Pique70d91362018-10-18 16:02:55 -0700523compositionengine::CompositionEngine& SurfaceFlinger::getCompositionEngine() const {
524 return *mCompositionEngine.get();
525}
526
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800527void SurfaceFlinger::bootFinished()
528{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700529 if (mStartPropertySetThread->join() != NO_ERROR) {
530 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800531 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800532 const nsecs_t now = systemTime();
533 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000534 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700535
536 // wait patiently for the window manager death
537 const String16 name("window");
538 sp<IBinder> window(defaultServiceManager()->getService(name));
539 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700540 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700541 }
Robert Carr720e5062018-07-30 17:45:14 -0700542 sp<IBinder> input(defaultServiceManager()->getService(
543 String16("inputflinger")));
544 if (input == nullptr) {
545 ALOGE("Failed to link to input service");
546 } else {
547 mInputFlinger = interface_cast<IInputFlinger>(input);
548 }
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700549
Steven Thomas050b2c82017-03-06 11:45:16 -0800550 if (mVrFlinger) {
551 mVrFlinger->OnBootFinished();
552 }
553
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700554 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700555 // formerly we would just kill the process, but we now ask it to exit so it
556 // can choose where to stop the animation.
557 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700558
559 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
560 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
561 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700562
Ana Krulecbd6654b2019-02-15 15:18:15 -0800563 postMessageAsync(new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS {
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800564 readPersistentProperties();
565 mBootStage = BootStage::FINISHED;
Ana Krulecbd6654b2019-02-15 15:18:15 -0800566
Ady Abraham97d04232019-03-05 19:48:12 -0800567 // set the refresh rate according to the policy
Alec Mouri0a1cc962019-03-14 12:33:02 -0700568 const auto& performanceRefreshRate =
Dominik Laskowski22488f62019-03-28 09:53:04 -0700569 mRefreshRateConfigs.getRefreshRate(RefreshRateType::PERFORMANCE);
Ady Abraham97d04232019-03-05 19:48:12 -0800570
Dominik Laskowski22488f62019-03-28 09:53:04 -0700571 if (performanceRefreshRate && isDisplayConfigAllowed(performanceRefreshRate->configId)) {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800572 setRefreshRateTo(RefreshRateType::PERFORMANCE, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800573 } else {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800574 setRefreshRateTo(RefreshRateType::DEFAULT, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800575 }
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800576 }));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800577}
578
Dan Stoza436ccf32018-06-21 12:10:12 -0700579uint32_t SurfaceFlinger::getNewTexture() {
580 {
581 std::lock_guard lock(mTexturePoolMutex);
582 if (!mTexturePool.empty()) {
583 uint32_t name = mTexturePool.back();
584 mTexturePool.pop_back();
585 ATRACE_INT("TexturePoolSize", mTexturePool.size());
586 return name;
587 }
588
589 // The pool was too small, so increase it for the future
590 ++mTexturePoolSize;
591 }
592
593 // The pool was empty, so we need to get a new texture name directly using a
594 // blocking call to the main thread
595 uint32_t name = 0;
596 postMessageSync(new LambdaMessage([&]() { getRenderEngine().genTextures(1, &name); }));
597 return name;
598}
599
Mathias Agopian3f844832013-08-07 21:24:32 -0700600void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Dan Stoza67765d82019-05-07 14:58:27 -0700601 std::lock_guard lock(mTexturePoolMutex);
602 // We don't change the pool size, so the fix-up logic in postComposition will decide whether
603 // to actually delete this or not based on mTexturePoolSize
604 mTexturePool.push_back(texture);
605 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700606}
607
Wei Wangf9b05ee2017-07-19 20:59:39 -0700608// Do not call property_set on main thread which will be blocked by init
609// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700610void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700611 ALOGI( "SurfaceFlinger's main thread ready to run. "
612 "Initializing graphics H/W...");
613
Ana Krulec757f63a2019-01-25 10:46:18 -0800614 ALOGI("Phase offset NS: %" PRId64 "", mPhaseOffsets->getCurrentAppOffset());
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900615
Steven Thomasb02664d2017-07-26 18:48:28 -0700616 Mutex::Autolock _l(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -0700617 // start the EventThread
Ana Krulecc2870422019-01-29 19:00:58 -0800618 mScheduler =
Ady Abraham09bd3922019-04-08 10:44:56 -0700619 getFactory().createScheduler([this](bool enabled) { setPrimaryVsyncEnabled(enabled); },
620 mRefreshRateConfigs);
Ana Krulecc2870422019-01-29 19:00:58 -0800621 auto resyncCallback =
622 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800623
Ana Krulecc2870422019-01-29 19:00:58 -0800624 mAppConnectionHandle =
Ady Abrahamf8713e12019-06-07 18:20:51 -0700625 mScheduler->createConnection("app", mVsyncModulator.getOffsets().app,
626 mPhaseOffsets->getOffsetThresholdForNextVsync(),
Ana Krulecc2870422019-01-29 19:00:58 -0800627 resyncCallback,
628 impl::EventThread::InterceptVSyncsCallback());
Ady Abrahamf8713e12019-06-07 18:20:51 -0700629 mSfConnectionHandle =
630 mScheduler->createConnection("sf", mVsyncModulator.getOffsets().sf,
631 mPhaseOffsets->getOffsetThresholdForNextVsync(),
632 resyncCallback, [this](nsecs_t timestamp) {
633 mInterceptor->saveVSyncEvent(timestamp);
634 });
Ana Krulecc2870422019-01-29 19:00:58 -0800635
636 mEventQueue->setEventConnection(mScheduler->getEventConnection(mSfConnectionHandle));
637 mVsyncModulator.setSchedulerAndHandles(mScheduler.get(), mAppConnectionHandle.get(),
638 mSfConnectionHandle.get());
639
Kevin DuBois413287f2019-02-25 08:46:47 -0800640 mRegionSamplingThread =
641 new RegionSamplingThread(*this, *mScheduler,
642 RegionSamplingThread::EnvironmentTimingTunables());
643
Steven Thomasb02664d2017-07-26 18:48:28 -0700644 // Get a RenderEngine for the given display / config (can't fail)
Peiyong Lin13effd12018-07-24 17:01:47 -0700645 int32_t renderEngineFeature = 0;
Peiyong Lin833074a2018-08-28 11:53:54 -0700646 renderEngineFeature |= (useColorManagement ?
647 renderengine::RenderEngine::USE_COLOR_MANAGEMENT : 0);
Peiyong Linb3839ad2018-09-05 15:37:19 -0700648 renderEngineFeature |= (useContextPriority ?
649 renderengine::RenderEngine::USE_HIGH_PRIORITY_CONTEXT : 0);
Peiyong Lin6a043d52019-04-01 17:18:21 -0700650 renderEngineFeature |=
651 (enable_protected_contents(false) ? renderengine::RenderEngine::ENABLE_PROTECTED_CONTEXT
652 : 0);
Peiyong Lin0256f722018-08-31 15:45:10 -0700653
654 // TODO(b/77156734): We need to stop casting and use HAL types when possible.
Alec Mourida4cf3b2019-02-12 15:33:01 -0800655 // Sending maxFrameBufferAcquiredBuffers as the cache size is tightly tuned to single-display.
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700656 mCompositionEngine->setRenderEngine(
Peiyong Linc6780972018-10-28 15:24:08 -0700657 renderengine::RenderEngine::create(static_cast<int32_t>(defaultCompositionPixelFormat),
Alec Mourida4cf3b2019-02-12 15:33:01 -0800658 renderEngineFeature, maxFrameBufferAcquiredBuffers));
Steven Thomasb02664d2017-07-26 18:48:28 -0700659
660 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
661 "Starting with vr flinger active is not currently supported.");
Lloyd Pique441d5042018-10-18 16:49:51 -0700662 mCompositionEngine->setHwComposer(getFactory().createHWComposer(getBE().mHwcServiceName));
663 mCompositionEngine->getHwComposer().registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800664 // Process any initial hotplug and resulting display changes.
665 processDisplayHotplugEventsLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700666 const auto display = getDefaultDisplayDeviceLocked();
667 LOG_ALWAYS_FATAL_IF(!display, "Missing internal display after registering composer callback.");
Dominik Laskowski075d3172018-05-24 15:50:06 -0700668 LOG_ALWAYS_FATAL_IF(!getHwComposer().isConnected(*display->getId()),
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700669 "Internal display is disconnected.");
Jesse Hall692c7232012-11-08 15:41:56 -0800670
Steven Thomas050b2c82017-03-06 11:45:16 -0800671 if (useVrFlinger) {
Dominik Laskowski8c001672018-05-30 16:52:06 -0700672 auto vrFlingerRequestDisplayCallback = [this](bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700673 // This callback is called from the vr flinger dispatch thread. We
674 // need to call signalTransaction(), which requires holding
675 // mStateLock when we're not on the main thread. Acquiring
676 // mStateLock from the vr flinger dispatch thread might trigger a
677 // deadlock in surface flinger (see b/66916578), so post a message
678 // to be handled on the main thread instead.
Dominik Laskowski8c001672018-05-30 16:52:06 -0700679 postMessageAsync(new LambdaMessage([=] {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700680 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
681 mVrFlingerRequestsDisplay = requestDisplay;
682 signalTransaction();
Dominik Laskowski8c001672018-05-30 16:52:06 -0700683 }));
Steven Thomas050b2c82017-03-06 11:45:16 -0800684 };
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700685 mVrFlinger = dvr::VrFlinger::Create(getHwComposer().getComposer(),
686 getHwComposer()
Dominik Laskowski075d3172018-05-24 15:50:06 -0700687 .fromPhysicalDisplayId(*display->getId())
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700688 .value_or(0),
689 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800690 if (!mVrFlinger) {
691 ALOGE("Failed to start vrflinger");
692 }
693 }
694
Mathias Agopian92a979a2012-08-02 18:32:23 -0700695 // initialize our drawing state
696 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700697
Andy McFadden13a082e2012-08-24 10:16:42 -0700698 // set initial conditions (e.g. unblank default device)
699 initializeDisplays();
700
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700701 getRenderEngine().primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700702
Wei Wangf9b05ee2017-07-19 20:59:39 -0700703 // Inform native graphics APIs whether the present timestamp is supported:
Lloyd Pique90c115d2018-09-18 21:39:42 -0700704
705 const bool presentFenceReliable =
706 !getHwComposer().hasCapability(HWC2::Capability::PresentFenceIsNotReliable);
707 mStartPropertySetThread = getFactory().createStartPropertySetThread(presentFenceReliable);
Wei Wangf9b05ee2017-07-19 20:59:39 -0700708
709 if (mStartPropertySetThread->Start() != NO_ERROR) {
710 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800711 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800712
Alec Mouri93bc83d2019-04-17 14:47:43 -0700713 mScheduler->setChangeRefreshRateCallback(
714 [this](RefreshRateType type, Scheduler::ConfigEvent event) {
715 Mutex::Autolock lock(mStateLock);
716 setRefreshRateTo(type, event);
717 });
Alec Mouridc28b372019-04-18 21:17:13 -0700718 mScheduler->setGetVsyncPeriodCallback([this] {
719 Mutex::Autolock lock(mStateLock);
720 return getVsyncPeriod();
721 });
Ady Abraham09bd3922019-04-08 10:44:56 -0700722
Dominik Laskowski22488f62019-03-28 09:53:04 -0700723 mRefreshRateConfigs.populate(getHwComposer().getConfigs(*display->getId()));
724 mRefreshRateStats.setConfigMode(getHwComposer().getActiveConfigIndex(*display->getId()));
Ana Krulec7d1d6832018-12-27 11:10:09 -0800725
Dan Stoza9e56aa02015-11-02 13:00:03 -0800726 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700727}
728
Romain Guy11d63f42017-07-20 12:47:14 -0700729void SurfaceFlinger::readPersistentProperties() {
Chia-I Wu28f320b2018-05-03 11:02:56 -0700730 Mutex::Autolock _l(mStateLock);
731
Romain Guy11d63f42017-07-20 12:47:14 -0700732 char value[PROPERTY_VALUE_MAX];
733
734 property_get("persist.sys.sf.color_saturation", value, "1.0");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800735 mGlobalSaturationFactor = atof(value);
Chia-I Wu28f320b2018-05-03 11:02:56 -0700736 updateColorMatrixLocked();
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800737 ALOGV("Saturation is set to %.2f", mGlobalSaturationFactor);
Romain Guy54f154a2017-10-24 21:40:32 +0100738
739 property_get("persist.sys.sf.native_mode", value, "0");
Chia-I Wu0d711262018-05-21 15:19:35 -0700740 mDisplayColorSetting = static_cast<DisplayColorSetting>(atoi(value));
Peiyong Lina3ea5592019-02-10 14:45:00 -0800741
742 property_get("persist.sys.sf.color_mode", value, "0");
743 mForceColorMode = static_cast<ColorMode>(atoi(value));
Romain Guy11d63f42017-07-20 12:47:14 -0700744}
745
Mathias Agopiana67e4182012-06-19 17:26:12 -0700746void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800747 // Start boot animation service by setting a property mailbox
748 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700749 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800750 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700751 if (mStartPropertySetThread->join() != NO_ERROR) {
752 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800753 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700754}
755
Mathias Agopian875d8e12013-06-07 15:35:48 -0700756size_t SurfaceFlinger::getMaxTextureSize() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700757 return getRenderEngine().getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700758}
759
Mathias Agopian875d8e12013-06-07 15:35:48 -0700760size_t SurfaceFlinger::getMaxViewportDims() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700761 return getRenderEngine().getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700762}
763
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800764// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800765
Jamie Gennis582270d2011-08-17 18:19:00 -0700766bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800767 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800768 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800769 return authenticateSurfaceTextureLocked(bufferProducer);
770}
771
772bool SurfaceFlinger::authenticateSurfaceTextureLocked(
773 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800774 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Dan Stoza101d8dc2018-02-27 15:42:25 -0800775 return mGraphicBufferProducerList.count(surfaceTextureBinder.get()) > 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800776}
777
Brian Anderson6b376712017-04-04 10:51:39 -0700778status_t SurfaceFlinger::getSupportedFrameTimestamps(
779 std::vector<FrameEvent>* outSupported) const {
780 *outSupported = {
781 FrameEvent::REQUESTED_PRESENT,
782 FrameEvent::ACQUIRE,
783 FrameEvent::LATCH,
784 FrameEvent::FIRST_REFRESH_START,
785 FrameEvent::LAST_REFRESH_START,
786 FrameEvent::GPU_COMPOSITION_DONE,
787 FrameEvent::DEQUEUE_READY,
788 FrameEvent::RELEASE,
789 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700790 ConditionalLock _l(mStateLock,
791 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700792 if (!getHwComposer().hasCapability(
793 HWC2::Capability::PresentFenceIsNotReliable)) {
794 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
795 }
796 return NO_ERROR;
797}
798
Dominik Laskowski22488f62019-03-28 09:53:04 -0700799status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& displayToken,
800 Vector<DisplayInfo>* configs) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700801 if (!displayToken || !configs) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700802 return BAD_VALUE;
803 }
804
Dominik Laskowski22488f62019-03-28 09:53:04 -0700805 Mutex::Autolock lock(mStateLock);
806
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800807 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700808 if (!displayId) {
809 return NAME_NOT_FOUND;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700810 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700811
Mathias Agopian8b736f12012-08-13 17:54:26 -0700812 // TODO: Not sure if display density should handled by SF any longer
813 class Density {
Hernan Liatis57568932018-08-16 17:07:08 -0700814 static float getDensityFromProperty(char const* propName) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700815 char property[PROPERTY_VALUE_MAX];
Hernan Liatis57568932018-08-16 17:07:08 -0700816 float density = 0.0f;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800817 if (property_get(propName, property, nullptr) > 0) {
Hernan Liatis57568932018-08-16 17:07:08 -0700818 density = strtof(property, nullptr);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700819 }
820 return density;
821 }
822 public:
Hernan Liatis57568932018-08-16 17:07:08 -0700823 static float getEmuDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700824 return getDensityFromProperty("qemu.sf.lcd_density"); }
Hernan Liatis57568932018-08-16 17:07:08 -0700825 static float getBuildDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700826 return getDensityFromProperty("ro.sf.lcd_density"); }
827 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700828
Dan Stoza7f7da322014-05-02 15:26:25 -0700829 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700830
Dominik Laskowski075d3172018-05-24 15:50:06 -0700831 for (const auto& hwConfig : getHwComposer().getConfigs(*displayId)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700832 DisplayInfo info = DisplayInfo();
833
Dan Stoza9e56aa02015-11-02 13:00:03 -0800834 float xdpi = hwConfig->getDpiX();
835 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700836
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700837 info.w = hwConfig->getWidth();
838 info.h = hwConfig->getHeight();
839 // Default display viewport to display width and height
840 info.viewportW = info.w;
841 info.viewportH = info.h;
842
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800843 if (displayId == getInternalDisplayIdLocked()) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700844 // The density of the device is provided by a build property
845 float density = Density::getBuildDensity() / 160.0f;
846 if (density == 0) {
847 // the build doesn't provide a density -- this is wrong!
848 // use xdpi instead
849 ALOGE("ro.sf.lcd_density must be defined as a build property");
850 density = xdpi / 160.0f;
851 }
852 if (Density::getEmuDensity()) {
853 // if "qemu.sf.lcd_density" is specified, it overrides everything
854 xdpi = ydpi = density = Density::getEmuDensity();
855 density /= 160.0f;
856 }
857 info.density = density;
858
859 // TODO: this needs to go away (currently needed only by webkit)
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700860 const auto display = getDefaultDisplayDeviceLocked();
861 info.orientation = display ? display->getOrientation() : 0;
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700862
863 // This is for screenrecord
864 const Rect viewport = display->getViewport();
865 if (viewport.isValid()) {
866 info.viewportW = uint32_t(viewport.getWidth());
867 info.viewportH = uint32_t(viewport.getHeight());
868 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700869 } else {
870 // TODO: where should this value come from?
871 static const int TV_DENSITY = 213;
872 info.density = TV_DENSITY / 160.0f;
873 info.orientation = 0;
874 }
875
Dan Stoza7f7da322014-05-02 15:26:25 -0700876 info.xdpi = xdpi;
877 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800878 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Ady Abraham796beb02019-04-11 15:23:07 -0700879 const auto refreshRateType = mRefreshRateConfigs.getRefreshRateType(hwConfig->getId());
880 const auto offset = mPhaseOffsets->getOffsetsForRefreshRate(refreshRateType);
881 info.appVsyncOffset = offset.late.app;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800882
Andy McFadden91b2ca82014-06-13 14:04:23 -0700883 // This is how far in advance a buffer must be queued for
884 // presentation at a given time. If you want a buffer to appear
885 // on the screen at time N, you must submit the buffer before
886 // (N - presentationDeadline).
887 //
888 // Normally it's one full refresh period (to give SF a chance to
889 // latch the buffer), but this can be reduced by configuring a
890 // DispSync offset. Any additional delays introduced by the hardware
891 // composer or panel must be accounted for here.
892 //
893 // We add an additional 1ms to allow for processing time and
894 // differences between the ideal and actual refresh rate.
Ady Abraham796beb02019-04-11 15:23:07 -0700895 info.presentationDeadline = hwConfig->getVsyncPeriod() - offset.late.sf + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700896
897 // All non-virtual displays are currently considered secure.
898 info.secure = true;
899
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800900 if (displayId == getInternalDisplayIdLocked() &&
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700901 primaryDisplayOrientation & DisplayState::eOrientationSwapMask) {
Iris Chang7501ed62018-04-30 14:45:42 +0800902 std::swap(info.w, info.h);
903 }
904
Michael Wright28f24d02016-07-12 13:30:53 -0700905 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700906 }
907
Dan Stoza7f7da322014-05-02 15:26:25 -0700908 return NO_ERROR;
909}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700910
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700911status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>&, DisplayStatInfo* stats) {
912 if (!stats) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700913 return BAD_VALUE;
914 }
915
Ana Krulecc2870422019-01-29 19:00:58 -0800916 mScheduler->getDisplayStatInfo(stats);
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700917 return NO_ERROR;
918}
919
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700920int SurfaceFlinger::getActiveConfig(const sp<IBinder>& displayToken) {
921 const auto display = getDisplayDevice(displayToken);
922 if (!display) {
923 ALOGE("getActiveConfig: Invalid display token %p", displayToken.get());
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800924 return BAD_VALUE;
925 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700926
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700927 return display->getActiveConfig();
Dan Stoza7f7da322014-05-02 15:26:25 -0700928}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700929
Ady Abraham03b02dd2019-03-21 15:40:11 -0700930void SurfaceFlinger::setDesiredActiveConfig(const ActiveConfigInfo& info) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800931 ATRACE_CALL();
Ana Krulec7d1d6832018-12-27 11:10:09 -0800932
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800933 // Don't check against the current mode yet. Worst case we set the desired
Ady Abraham9360a222019-02-27 17:05:30 -0800934 // config twice. However event generation config might have changed so we need to update it
935 // accordingly
Ady Abrahamb838aed2019-02-12 15:30:16 -0800936 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abraham03b02dd2019-03-21 15:40:11 -0700937 const Scheduler::ConfigEvent prevConfig = mDesiredActiveConfig.event;
938 mDesiredActiveConfig = info;
939 mDesiredActiveConfig.event = mDesiredActiveConfig.event | prevConfig;
Ady Abrahamb838aed2019-02-12 15:30:16 -0800940
941 if (!mDesiredActiveConfigChanged) {
Ady Abrahamb838aed2019-02-12 15:30:16 -0800942 // This will trigger HWC refresh without resetting the idle timer.
943 repaintEverythingForHWC();
Alec Mouri754c98a2019-03-18 18:53:42 -0700944 // Start receiving vsync samples now, so that we can detect a period
945 // switch.
946 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Ady Abraham7849f2a2019-05-28 18:07:44 -0700947 // As we called to set period, we will call to onRefreshRateChangeCompleted once
948 // DispSync model is locked.
949 mVsyncModulator.onRefreshRateChangeInitiated();
Alec Mouri754c98a2019-03-18 18:53:42 -0700950 mPhaseOffsets->setRefreshRateType(info.type);
951 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abrahamf8713e12019-06-07 18:20:51 -0700952 mVsyncModulator.setPhaseOffsets(early, gl, late,
953 mPhaseOffsets->getOffsetThresholdForNextVsync());
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800954 }
Ady Abrahamb838aed2019-02-12 15:30:16 -0800955 mDesiredActiveConfigChanged = true;
956 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
Ady Abraham03b02dd2019-03-21 15:40:11 -0700957
958 if (mRefreshRateOverlay) {
959 mRefreshRateOverlay->changeRefreshRate(mDesiredActiveConfig.type);
960 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800961}
962
963status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& displayToken, int mode) {
964 ATRACE_CALL();
Ady Abraham838de062019-02-04 10:24:03 -0800965
966 std::vector<int32_t> allowedConfig;
967 allowedConfig.push_back(mode);
968
969 return setAllowedDisplayConfigs(displayToken, allowedConfig);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800970}
971
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800972void SurfaceFlinger::setActiveConfigInternal() {
973 ATRACE_CALL();
974
Dominik Laskowski22488f62019-03-28 09:53:04 -0700975 const auto display = getDefaultDisplayDeviceLocked();
976 if (!display) {
977 return;
978 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800979
Dominik Laskowski22488f62019-03-28 09:53:04 -0700980 std::lock_guard<std::mutex> lock(mActiveConfigLock);
981 mRefreshRateStats.setConfigMode(mUpcomingActiveConfig.configId);
982
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800983 display->setActiveConfig(mUpcomingActiveConfig.configId);
984
Alec Mouri754c98a2019-03-18 18:53:42 -0700985 mPhaseOffsets->setRefreshRateType(mUpcomingActiveConfig.type);
Alec Mouri1c9e82b2019-03-07 12:24:05 -0800986 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abrahamf8713e12019-06-07 18:20:51 -0700987 mVsyncModulator.setPhaseOffsets(early, gl, late,
988 mPhaseOffsets->getOffsetThresholdForNextVsync());
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800989 ATRACE_INT("ActiveConfigMode", mUpcomingActiveConfig.configId);
Dominik Laskowski22488f62019-03-28 09:53:04 -0700990
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800991 if (mUpcomingActiveConfig.event != Scheduler::ConfigEvent::None) {
Ady Abraham447052e2019-02-13 16:07:27 -0800992 mScheduler->onConfigChanged(mAppConnectionHandle, display->getId()->value,
993 mUpcomingActiveConfig.configId);
994 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800995}
996
Ady Abraham7849f2a2019-05-28 18:07:44 -0700997void SurfaceFlinger::desiredActiveConfigChangeDone() {
998 std::lock_guard<std::mutex> lock(mActiveConfigLock);
999 mDesiredActiveConfig.event = Scheduler::ConfigEvent::None;
1000 mDesiredActiveConfigChanged = false;
1001 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
1002
1003 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
1004 mPhaseOffsets->setRefreshRateType(mUpcomingActiveConfig.type);
1005 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Ady Abrahamf8713e12019-06-07 18:20:51 -07001006 mVsyncModulator.setPhaseOffsets(early, gl, late,
1007 mPhaseOffsets->getOffsetThresholdForNextVsync());
Ady Abraham7849f2a2019-05-28 18:07:44 -07001008}
1009
Dominik Laskowski22488f62019-03-28 09:53:04 -07001010bool SurfaceFlinger::performSetActiveConfig() {
Alec Mourife3dc942019-02-12 14:19:18 -08001011 ATRACE_CALL();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001012 if (mCheckPendingFence) {
Ady Abrahambe0f9482019-04-24 15:41:53 -07001013 if (previousFrameMissed()) {
Ady Abrahamb838aed2019-02-12 15:30:16 -08001014 // fence has not signaled yet. wait for the next invalidate
Ady Abraham8532d012019-05-08 14:50:56 -07001015 mEventQueue->invalidate();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001016 return true;
1017 }
1018
1019 // We received the present fence from the HWC, so we assume it successfully updated
1020 // the config, hence we update SF.
1021 mCheckPendingFence = false;
1022 setActiveConfigInternal();
1023 }
1024
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001025 // Store the local variable to release the lock.
1026 ActiveConfigInfo desiredActiveConfig;
1027 {
1028 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001029 if (!mDesiredActiveConfigChanged) {
1030 return false;
1031 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001032 desiredActiveConfig = mDesiredActiveConfig;
1033 }
1034
Dominik Laskowski22488f62019-03-28 09:53:04 -07001035 const auto display = getDefaultDisplayDeviceLocked();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001036 if (!display || display->getActiveConfig() == desiredActiveConfig.configId) {
1037 // display is not valid or we are already in the requested mode
1038 // on both cases there is nothing left to do
Ady Abraham7849f2a2019-05-28 18:07:44 -07001039 desiredActiveConfigChangeDone();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001040 return false;
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001041 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001042
Ady Abraham838de062019-02-04 10:24:03 -08001043 // Desired active config was set, it is different than the config currently in use, however
1044 // allowed configs might have change by the time we process the refresh.
1045 // Make sure the desired config is still allowed
Dominik Laskowski22488f62019-03-28 09:53:04 -07001046 if (!isDisplayConfigAllowed(desiredActiveConfig.configId)) {
Ady Abraham7849f2a2019-05-28 18:07:44 -07001047 desiredActiveConfigChangeDone();
Ady Abraham838de062019-02-04 10:24:03 -08001048 return false;
1049 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001050 mUpcomingActiveConfig = desiredActiveConfig;
1051 const auto displayId = display->getId();
1052 LOG_ALWAYS_FATAL_IF(!displayId);
1053
1054 ATRACE_INT("ActiveConfigModeHWC", mUpcomingActiveConfig.configId);
1055 getHwComposer().setActiveConfig(*displayId, mUpcomingActiveConfig.configId);
1056
1057 // we need to submit an empty frame to HWC to start the process
Ady Abrahamb838aed2019-02-12 15:30:16 -08001058 mCheckPendingFence = true;
Ady Abraham8532d012019-05-08 14:50:56 -07001059 mEventQueue->invalidate();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001060 return false;
Mathias Agopianc666cae2012-07-25 18:56:13 -07001061}
Dominik Laskowski075d3172018-05-24 15:50:06 -07001062
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001063status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& displayToken,
1064 Vector<ColorMode>* outColorModes) {
1065 if (!displayToken || !outColorModes) {
Michael Wright28f24d02016-07-12 13:30:53 -07001066 return BAD_VALUE;
1067 }
1068
Peiyong Lina52f0292018-03-14 17:26:31 -07001069 std::vector<ColorMode> modes;
Peiyong Linff84a152019-05-17 18:36:19 -07001070 bool isInternalDisplay = false;
Steven Thomas6d8110b2017-08-31 18:24:21 -07001071 {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001072 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
1073
1074 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1075 if (!displayId) {
1076 return NAME_NOT_FOUND;
1077 }
1078
Dominik Laskowski075d3172018-05-24 15:50:06 -07001079 modes = getHwComposer().getColorModes(*displayId);
Peiyong Linff84a152019-05-17 18:36:19 -07001080 isInternalDisplay = displayId == getInternalDisplayIdLocked();
Steven Thomas6d8110b2017-08-31 18:24:21 -07001081 }
Michael Wright28f24d02016-07-12 13:30:53 -07001082 outColorModes->clear();
Peiyong Linff84a152019-05-17 18:36:19 -07001083
1084 // If it's built-in display and the configuration claims it's not wide color capable,
1085 // filter out all wide color modes. The typical reason why this happens is that the
1086 // hardware is not good enough to support GPU composition of wide color, and thus the
1087 // OEMs choose to disable this capability.
1088 if (isInternalDisplay && !hasWideColorDisplay) {
1089 std::remove_copy_if(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes),
1090 isWideColorMode);
1091 } else {
1092 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
1093 }
Michael Wright28f24d02016-07-12 13:30:53 -07001094
1095 return NO_ERROR;
1096}
1097
Daniel Solomon42d04562019-01-20 21:03:19 -08001098status_t SurfaceFlinger::getDisplayNativePrimaries(const sp<IBinder>& displayToken,
1099 ui::DisplayPrimaries &primaries) {
1100 if (!displayToken) {
1101 return BAD_VALUE;
1102 }
1103
1104 // Currently we only support this API for a single internal display.
1105 if (getInternalDisplayToken() != displayToken) {
1106 return BAD_VALUE;
1107 }
1108
1109 memcpy(&primaries, &mInternalDisplayPrimaries, sizeof(ui::DisplayPrimaries));
1110 return NO_ERROR;
1111}
1112
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001113ColorMode SurfaceFlinger::getActiveColorMode(const sp<IBinder>& displayToken) {
1114 if (const auto display = getDisplayDevice(displayToken)) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001115 return display->getCompositionDisplay()->getState().colorMode;
Michael Wright28f24d02016-07-12 13:30:53 -07001116 }
Peiyong Lina52f0292018-03-14 17:26:31 -07001117 return static_cast<ColorMode>(BAD_VALUE);
Michael Wright28f24d02016-07-12 13:30:53 -07001118}
1119
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001120status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& displayToken, ColorMode mode) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001121 postMessageSync(new LambdaMessage([&] {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001122 Vector<ColorMode> modes;
1123 getDisplayColorModes(displayToken, &modes);
1124 bool exists = std::find(std::begin(modes), std::end(modes), mode) != std::end(modes);
1125 if (mode < ColorMode::NATIVE || !exists) {
1126 ALOGE("Attempt to set invalid active color mode %s (%d) for display token %p",
1127 decodeColorMode(mode).c_str(), mode, displayToken.get());
1128 return;
Michael Wright28f24d02016-07-12 13:30:53 -07001129 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001130 const auto display = getDisplayDevice(displayToken);
1131 if (!display) {
1132 ALOGE("Attempt to set active color mode %s (%d) for invalid display token %p",
1133 decodeColorMode(mode).c_str(), mode, displayToken.get());
1134 } else if (display->isVirtual()) {
1135 ALOGW("Attempt to set active color mode %s (%d) for virtual display",
1136 decodeColorMode(mode).c_str(), mode);
1137 } else {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001138 display->getCompositionDisplay()->setColorMode(mode, Dataspace::UNKNOWN,
1139 RenderIntent::COLORIMETRIC);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001140 }
1141 }));
1142
Michael Wright28f24d02016-07-12 13:30:53 -07001143 return NO_ERROR;
1144}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001145
Svetoslavd85084b2014-03-20 10:28:31 -07001146status_t SurfaceFlinger::clearAnimationFrameStats() {
1147 Mutex::Autolock _l(mStateLock);
1148 mAnimFrameTracker.clearStats();
1149 return NO_ERROR;
1150}
1151
1152status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1153 Mutex::Autolock _l(mStateLock);
1154 mAnimFrameTracker.getStats(outStats);
1155 return NO_ERROR;
1156}
1157
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001158status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& displayToken,
1159 HdrCapabilities* outCapabilities) const {
Dan Stozac4f471e2016-03-24 09:31:08 -07001160 Mutex::Autolock _l(mStateLock);
1161
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001162 const auto display = getDisplayDeviceLocked(displayToken);
1163 if (!display) {
1164 ALOGE("getHdrCapabilities: Invalid display token %p", displayToken.get());
Dan Stozac4f471e2016-03-24 09:31:08 -07001165 return BAD_VALUE;
1166 }
1167
Peiyong Linfb069302018-04-25 14:34:31 -07001168 // At this point the DisplayDeivce should already be set up,
1169 // meaning the luminance information is already queried from
1170 // hardware composer and stored properly.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001171 const HdrCapabilities& capabilities = display->getHdrCapabilities();
Peiyong Linfb069302018-04-25 14:34:31 -07001172 *outCapabilities = HdrCapabilities(capabilities.getSupportedHdrTypes(),
1173 capabilities.getDesiredMaxLuminance(),
1174 capabilities.getDesiredMaxAverageLuminance(),
1175 capabilities.getDesiredMinLuminance());
Dan Stozac4f471e2016-03-24 09:31:08 -07001176
1177 return NO_ERROR;
1178}
1179
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001180status_t SurfaceFlinger::getDisplayedContentSamplingAttributes(const sp<IBinder>& displayToken,
1181 ui::PixelFormat* outFormat,
1182 ui::Dataspace* outDataspace,
1183 uint8_t* outComponentMask) const {
1184 if (!outFormat || !outDataspace || !outComponentMask) {
1185 return BAD_VALUE;
1186 }
Kevin DuBois74e53772018-11-19 10:52:38 -08001187 const auto display = getDisplayDevice(displayToken);
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001188 if (!display || !display->getId()) {
1189 ALOGE("getDisplayedContentSamplingAttributes: Bad display token: %p", display.get());
1190 return BAD_VALUE;
1191 }
1192 return getHwComposer().getDisplayedContentSamplingAttributes(*display->getId(), outFormat,
1193 outDataspace, outComponentMask);
1194}
1195
Kevin DuBois74e53772018-11-19 10:52:38 -08001196status_t SurfaceFlinger::setDisplayContentSamplingEnabled(const sp<IBinder>& displayToken,
1197 bool enable, uint8_t componentMask,
1198 uint64_t maxFrames) const {
1199 const auto display = getDisplayDevice(displayToken);
1200 if (!display || !display->getId()) {
1201 ALOGE("setDisplayContentSamplingEnabled: Bad display token: %p", display.get());
1202 return BAD_VALUE;
1203 }
1204
1205 return getHwComposer().setDisplayContentSamplingEnabled(*display->getId(), enable,
1206 componentMask, maxFrames);
1207}
1208
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001209status_t SurfaceFlinger::getDisplayedContentSample(const sp<IBinder>& displayToken,
1210 uint64_t maxFrames, uint64_t timestamp,
1211 DisplayedFrameStats* outStats) const {
1212 const auto display = getDisplayDevice(displayToken);
1213 if (!display || !display->getId()) {
1214 ALOGE("getDisplayContentSample: Bad display token: %p", displayToken.get());
1215 return BAD_VALUE;
1216 }
1217
1218 return getHwComposer().getDisplayedContentSample(*display->getId(), maxFrames, timestamp,
1219 outStats);
1220}
1221
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001222status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const {
1223 if (!outSupported) {
1224 return BAD_VALUE;
1225 }
1226 *outSupported = getRenderEngine().supportsProtectedContent();
1227 return NO_ERROR;
1228}
1229
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001230status_t SurfaceFlinger::isWideColorDisplay(const sp<IBinder>& displayToken,
1231 bool* outIsWideColorDisplay) const {
1232 if (!displayToken || !outIsWideColorDisplay) {
1233 return BAD_VALUE;
1234 }
1235 Mutex::Autolock _l(mStateLock);
1236 const auto display = getDisplayDeviceLocked(displayToken);
1237 if (!display) {
1238 return BAD_VALUE;
1239 }
Peiyong Linff84a152019-05-17 18:36:19 -07001240
1241 // Use hasWideColorDisplay to override built-in display.
1242 const auto displayId = display->getId();
1243 if (displayId && displayId == getInternalDisplayIdLocked()) {
1244 *outIsWideColorDisplay = hasWideColorDisplay;
1245 return NO_ERROR;
1246 }
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001247 *outIsWideColorDisplay = display->hasWideColorGamut();
1248 return NO_ERROR;
1249}
1250
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001251status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001252 postMessageSync(new LambdaMessage([&] {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001253 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001254
Chia-I Wu90f669f2017-10-05 14:24:41 -07001255 if (mInjectVSyncs == enable) {
1256 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001257 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001258
Ana Krulecc2870422019-01-29 19:00:58 -08001259 auto resyncCallback =
1260 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskif654d572018-12-20 11:03:06 -08001261
Ady Abraham46e2f3e2019-03-18 16:40:15 -07001262 // TODO(b/128863962): Part of the Injector should be refactored, so that it
Ana Krulec98b5b242018-08-10 15:03:23 -07001263 // can be passed to Scheduler.
Chia-I Wu90f669f2017-10-05 14:24:41 -07001264 if (enable) {
1265 ALOGV("VSync Injections enabled");
1266 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001267 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique24b0a482018-03-09 18:52:26 -08001268 mInjectorEventThread = std::make_unique<
Dominik Laskowskif654d572018-12-20 11:03:06 -08001269 impl::EventThread>(mVSyncInjector.get(),
Lloyd Pique24b0a482018-03-09 18:52:26 -08001270 impl::EventThread::InterceptVSyncsCallback(),
1271 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001272 }
Dominik Laskowskif654d572018-12-20 11:03:06 -08001273 mEventQueue->setEventThread(mInjectorEventThread.get(), std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001274 } else {
1275 ALOGV("VSync Injections disabled");
Ana Krulecc2870422019-01-29 19:00:58 -08001276 mEventQueue->setEventThread(mScheduler->getEventThread(mSfConnectionHandle),
1277 std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001278 }
1279
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001280 mInjectVSyncs = enable;
Dominik Laskowski8c001672018-05-30 16:52:06 -07001281 }));
1282
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001283 return NO_ERROR;
1284}
1285
1286status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001287 Mutex::Autolock _l(mStateLock);
1288
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001289 if (!mInjectVSyncs) {
1290 ALOGE("VSync Injections not enabled");
1291 return BAD_VALUE;
1292 }
1293 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1294 ALOGV("Injecting VSync inside SurfaceFlinger");
1295 mVSyncInjector->onInjectSyncEvent(when);
1296 }
1297 return NO_ERROR;
1298}
1299
Lloyd Pique755e3192018-01-31 16:46:15 -08001300status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1301 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001302 // Try to acquire a lock for 1s, fail gracefully
1303 const status_t err = mStateLock.timedLock(s2ns(1));
1304 const bool locked = (err == NO_ERROR);
1305 if (!locked) {
1306 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1307 return TIMED_OUT;
1308 }
1309
1310 outLayers->clear();
1311 mCurrentState.traverseInZOrder([&](Layer* layer) {
1312 outLayers->push_back(layer->getLayerDebugInfo());
1313 });
1314
1315 mStateLock.unlock();
1316 return NO_ERROR;
1317}
1318
Peiyong Linc6780972018-10-28 15:24:08 -07001319status_t SurfaceFlinger::getCompositionPreference(
1320 Dataspace* outDataspace, ui::PixelFormat* outPixelFormat,
1321 Dataspace* outWideColorGamutDataspace,
1322 ui::PixelFormat* outWideColorGamutPixelFormat) const {
Peiyong Lin9d846a52018-11-05 13:18:20 -08001323 *outDataspace = mDefaultCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001324 *outPixelFormat = defaultCompositionPixelFormat;
Peiyong Lin9d846a52018-11-05 13:18:20 -08001325 *outWideColorGamutDataspace = mWideColorGamutCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001326 *outWideColorGamutPixelFormat = wideColorGamutCompositionPixelFormat;
Peiyong Lin0256f722018-08-31 15:45:10 -07001327 return NO_ERROR;
1328}
1329
Dan Stozaec460082018-12-17 15:35:09 -08001330status_t SurfaceFlinger::addRegionSamplingListener(const Rect& samplingArea,
1331 const sp<IBinder>& stopLayerHandle,
1332 const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001333 if (!listener || samplingArea == Rect::INVALID_RECT) {
Dan Stozaec460082018-12-17 15:35:09 -08001334 return BAD_VALUE;
1335 }
1336 mRegionSamplingThread->addListener(samplingArea, stopLayerHandle, listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001337 return NO_ERROR;
1338}
1339
Dan Stozaec460082018-12-17 15:35:09 -08001340status_t SurfaceFlinger::removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001341 if (!listener) {
1342 return BAD_VALUE;
1343 }
Dan Stozaec460082018-12-17 15:35:09 -08001344 mRegionSamplingThread->removeListener(listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001345 return NO_ERROR;
1346}
Dan Gittik57e63c52019-01-18 16:37:54 +00001347
1348status_t SurfaceFlinger::getDisplayBrightnessSupport(const sp<IBinder>& displayToken,
1349 bool* outSupport) const {
1350 if (!displayToken || !outSupport) {
1351 return BAD_VALUE;
1352 }
1353 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1354 if (!displayId) {
1355 return NAME_NOT_FOUND;
1356 }
1357 *outSupport =
1358 getHwComposer().hasDisplayCapability(displayId, HWC2::DisplayCapability::Brightness);
1359 return NO_ERROR;
1360}
1361
1362status_t SurfaceFlinger::setDisplayBrightness(const sp<IBinder>& displayToken,
1363 float brightness) const {
1364 if (!displayToken) {
1365 return BAD_VALUE;
1366 }
1367 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1368 if (!displayId) {
1369 return NAME_NOT_FOUND;
1370 }
1371 return getHwComposer().setDisplayBrightness(*displayId, brightness);
1372}
1373
Ady Abraham8532d012019-05-08 14:50:56 -07001374status_t SurfaceFlinger::notifyPowerHint(int32_t hintId) {
1375 PowerHint powerHint = static_cast<PowerHint>(hintId);
1376
1377 if (powerHint == PowerHint::INTERACTION) {
1378 mScheduler->notifyTouchEvent();
1379 }
1380
1381 return NO_ERROR;
1382}
1383
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001384// ----------------------------------------------------------------------------
1385
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001386sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
Ady Abraham9b586692019-06-04 16:04:04 -07001387 ISurfaceComposer::VsyncSource vsyncSource, ISurfaceComposer::ConfigChanged configChanged) {
Ana Krulecc2870422019-01-29 19:00:58 -08001388 auto resyncCallback = mScheduler->makeResyncCallback([this] {
Dominik Laskowski83b88212018-12-11 13:34:06 -08001389 Mutex::Autolock lock(mStateLock);
1390 return getVsyncPeriod();
1391 });
Dominik Laskowskif654d572018-12-20 11:03:06 -08001392
Ana Krulecc2870422019-01-29 19:00:58 -08001393 const auto& handle =
1394 vsyncSource == eVsyncSourceSurfaceFlinger ? mSfConnectionHandle : mAppConnectionHandle;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001395
Ady Abraham9b586692019-06-04 16:04:04 -07001396 return mScheduler->createDisplayEventConnection(handle, std::move(resyncCallback),
1397 configChanged);
Mathias Agopianbb641242010-05-18 17:06:55 -07001398}
1399
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001400// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001401
1402void SurfaceFlinger::waitForEvent() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001403 mEventQueue->waitMessage();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001404}
1405
1406void SurfaceFlinger::signalTransaction() {
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::signalLayerUpdate() {
Ady Abraham8532d012019-05-08 14:50:56 -07001412 mScheduler->resetIdleTimer();
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001413 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001414}
1415
1416void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001417 mRefreshPending = true;
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001418 mEventQueue->refresh();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001419}
1420
1421status_t SurfaceFlinger::postMessageAsync(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 return mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001424}
1425
1426status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001427 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001428 status_t res = mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001429 if (res == NO_ERROR) {
1430 msg->wait();
1431 }
1432 return res;
1433}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001434
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001435void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001436 do {
1437 waitForEvent();
1438 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001439}
1440
Dominik Laskowski83b88212018-12-11 13:34:06 -08001441nsecs_t SurfaceFlinger::getVsyncPeriod() const {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001442 const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski83b88212018-12-11 13:34:06 -08001443 if (!displayId || !getHwComposer().isConnected(*displayId)) {
1444 return 0;
1445 }
1446
1447 const auto config = getHwComposer().getActiveConfig(*displayId);
1448 return config ? config->getVsyncPeriod() : 0;
1449}
1450
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001451void SurfaceFlinger::onVsyncReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
1452 int64_t timestamp) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001453 ATRACE_NAME("SF onVsync");
1454
Steven Thomas3cfac282017-02-06 12:29:30 -08001455 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001456 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001457 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001458 return;
1459 }
1460
Dominik Laskowski075d3172018-05-24 15:50:06 -07001461 if (!getHwComposer().onVsync(hwcDisplayId, timestamp)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001462 return;
1463 }
1464
Dominik Laskowski075d3172018-05-24 15:50:06 -07001465 if (hwcDisplayId != getHwComposer().getInternalHwcDisplayId()) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001466 // For now, we don't do anything with external display vsyncs.
1467 return;
1468 }
1469
Alec Mouri5b3f19b2019-05-20 18:32:22 -07001470 bool periodFlushed = false;
1471 mScheduler->addResyncSample(timestamp, &periodFlushed);
1472 if (periodFlushed) {
1473 mVsyncModulator.onRefreshRateChangeCompleted();
Alec Mouri754c98a2019-03-18 18:53:42 -07001474 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001475}
1476
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001477void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001478 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1479 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001480}
1481
Dominik Laskowski22488f62019-03-28 09:53:04 -07001482bool SurfaceFlinger::isDisplayConfigAllowed(int32_t configId) {
1483 return mAllowedDisplayConfigs.empty() || mAllowedDisplayConfigs.count(configId);
Ady Abraham838de062019-02-04 10:24:03 -08001484}
1485
Ana Krulec8d3e4f32019-03-05 10:40:33 -08001486void SurfaceFlinger::setRefreshRateTo(RefreshRateType refreshRate, Scheduler::ConfigEvent event) {
Dominik Laskowski22488f62019-03-28 09:53:04 -07001487 const auto display = getDefaultDisplayDeviceLocked();
1488 if (!display || mBootStage != BootStage::FINISHED) {
Ana Krulec7d1d6832018-12-27 11:10:09 -08001489 return;
1490 }
Alec Mouri1c9e82b2019-03-07 12:24:05 -08001491 ATRACE_CALL();
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001492
Ana Krulec7d1d6832018-12-27 11:10:09 -08001493 // Don't do any updating if the current fps is the same as the new one.
Dominik Laskowski22488f62019-03-28 09:53:04 -07001494 const auto& refreshRateConfig = mRefreshRateConfigs.getRefreshRate(refreshRate);
Alec Mouri0a1cc962019-03-14 12:33:02 -07001495 if (!refreshRateConfig) {
1496 ALOGV("Skipping refresh rate change request for unsupported rate.");
Ady Abraham1902d072019-03-01 17:18:59 -08001497 return;
Ana Krulec7d1d6832018-12-27 11:10:09 -08001498 }
Ady Abraham1902d072019-03-01 17:18:59 -08001499
Alec Mouri0a1cc962019-03-14 12:33:02 -07001500 const int desiredConfigId = refreshRateConfig->configId;
1501
Dominik Laskowski22488f62019-03-28 09:53:04 -07001502 if (!isDisplayConfigAllowed(desiredConfigId)) {
Ady Abraham1902d072019-03-01 17:18:59 -08001503 ALOGV("Skipping config %d as it is not part of allowed configs", desiredConfigId);
1504 return;
1505 }
1506
Dominik Laskowski22488f62019-03-28 09:53:04 -07001507 setDesiredActiveConfig({refreshRate, desiredConfigId, event});
Ana Krulec7d1d6832018-12-27 11:10:09 -08001508}
1509
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001510void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001511 HWC2::Connection connection) {
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001512 ALOGV("%s(%d, %" PRIu64 ", %s)", __FUNCTION__, sequenceId, hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001513 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001514
Lloyd Piqueba04e622017-12-14 17:11:26 -08001515 // Ignore events that do not have the right sequenceId.
1516 if (sequenceId != getBE().mComposerSequenceId) {
1517 return;
1518 }
1519
Steven Thomasb02664d2017-07-26 18:48:28 -07001520 // Only lock if we're not on the main thread. This function is normally
1521 // called on a hwbinder thread, but for the primary display it's called on
1522 // the main thread with the state lock already held, so don't attempt to
1523 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001524 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001525
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001526 mPendingHotplugEvents.emplace_back(HotplugEvent{hwcDisplayId, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001527
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001528 if (std::this_thread::get_id() == mMainThreadId) {
1529 // Process all pending hot plug events immediately if we are on the main thread.
1530 processDisplayHotplugEventsLocked();
1531 }
1532
Lloyd Piqueba04e622017-12-14 17:11:26 -08001533 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001534}
1535
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001536void SurfaceFlinger::onRefreshReceived(int sequenceId, hwc2_display_t /*hwcDisplayId*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001537 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001538 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001539 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001540 }
Ana Krulec7d1d6832018-12-27 11:10:09 -08001541 repaintEverythingForHWC();
Steven Thomas3cfac282017-02-06 12:29:30 -08001542}
1543
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001544void SurfaceFlinger::setPrimaryVsyncEnabled(bool enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001545 ATRACE_CALL();
Ady Abraham48630142019-06-03 17:10:55 -07001546
1547 // Enable / Disable HWVsync from the main thread to avoid race conditions with
1548 // display power state.
1549 postMessageAsync(new LambdaMessage(
1550 [=]() NO_THREAD_SAFETY_ANALYSIS { setPrimaryVsyncEnabledInternal(enabled); }));
1551}
1552
1553void SurfaceFlinger::setPrimaryVsyncEnabledInternal(bool enabled) {
1554 ATRACE_CALL();
1555
Ady Abrahamb0006972019-06-11 10:52:26 -07001556 mHWCVsyncPendingState = enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable;
1557
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001558 if (const auto displayId = getInternalDisplayIdLocked()) {
Ady Abraham48630142019-06-03 17:10:55 -07001559 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
1560 if (display && display->isPoweredOn()) {
Ady Abrahamb0006972019-06-11 10:52:26 -07001561 setVsyncEnabledInHWC(*displayId, mHWCVsyncPendingState);
Ady Abraham48630142019-06-03 17:10:55 -07001562 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001563 }
Mathias Agopian86303202012-07-24 22:46:10 -07001564}
1565
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001566// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001567void SurfaceFlinger::resetDisplayState() {
Ana Krulecc2870422019-01-29 19:00:58 -08001568 mScheduler->disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001569 // Clear the drawing state so that the logic inside of
1570 // handleTransactionLocked will fire. It will determine the delta between
1571 // mCurrentState and mDrawingState and re-apply all changes when we make the
1572 // transition.
1573 mDrawingState.displays.clear();
1574 mDisplays.clear();
1575}
1576
Steven Thomas050b2c82017-03-06 11:45:16 -08001577void SurfaceFlinger::updateVrFlinger() {
Alec Mourife3dc942019-02-12 14:19:18 -08001578 ATRACE_CALL();
Steven Thomas050b2c82017-03-06 11:45:16 -08001579 if (!mVrFlinger)
1580 return;
1581 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
Lloyd Pique441d5042018-10-18 16:49:51 -07001582 if (vrFlingerRequestsDisplay == getHwComposer().isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001583 return;
1584 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001585
Lloyd Pique441d5042018-10-18 16:49:51 -07001586 if (vrFlingerRequestsDisplay && !getHwComposer().getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001587 ALOGE("Vr flinger is only supported for remote hardware composer"
1588 " service connections. Ignoring request to transition to vr"
1589 " flinger.");
1590 mVrFlingerRequestsDisplay = false;
1591 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001592 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001593
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001594 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001595
Steven Thomas0123ac62018-07-12 11:32:34 -07001596 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001597 LOG_ALWAYS_FATAL_IF(!display);
Lloyd Pique07e33212018-12-18 16:33:37 -08001598
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001599 const int currentDisplayPowerMode = display->getPowerMode();
Lloyd Pique07e33212018-12-18 16:33:37 -08001600
1601 // Clear out all the output layers from the composition engine for all
1602 // displays before destroying the hardware composer interface. This ensures
1603 // any HWC layers are destroyed through that interface before it becomes
1604 // invalid.
1605 for (const auto& [token, displayDevice] : mDisplays) {
1606 displayDevice->getCompositionDisplay()->setOutputLayersOrderedByZ(
1607 compositionengine::Output::OutputLayers());
1608 }
1609
Steven Thomas0123ac62018-07-12 11:32:34 -07001610 // This DisplayDevice will no longer be relevant once resetDisplayState() is
1611 // called below. Clear the reference now so we don't accidentally use it
1612 // later.
1613 display.clear();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001614
Steven Thomasb02664d2017-07-26 18:48:28 -07001615 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001616 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001617 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001618
Steven Thomasb02664d2017-07-26 18:48:28 -07001619 resetDisplayState();
Lloyd Pique441d5042018-10-18 16:49:51 -07001620 // Delete the current instance before creating the new one
1621 mCompositionEngine->setHwComposer(std::unique_ptr<HWComposer>());
1622 mCompositionEngine->setHwComposer(getFactory().createHWComposer(
1623 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName));
1624 getHwComposer().registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001625
Lloyd Pique441d5042018-10-18 16:49:51 -07001626 LOG_ALWAYS_FATAL_IF(!getHwComposer().getComposer()->isRemote(),
David Sodman105b7dc2017-11-04 20:28:14 -07001627 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001628
1629 if (vrFlingerRequestsDisplay) {
1630 mVrFlinger->GrantDisplayOwnership();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001631 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001632
1633 mVisibleRegionsDirty = true;
1634 invalidateHwcGeometry();
1635
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001636 // Re-enable default display.
Steven Thomas0123ac62018-07-12 11:32:34 -07001637 display = getDefaultDisplayDeviceLocked();
1638 LOG_ALWAYS_FATAL_IF(!display);
Dominik Laskowskie9774092018-12-11 10:04:24 -08001639 setPowerModeInternal(display, currentDisplayPowerMode);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001640
Steven Thomasb02664d2017-07-26 18:48:28 -07001641 // Reset the timing values to account for the period of the swapped in HWC
Dominik Laskowski83b88212018-12-11 13:34:06 -08001642 const nsecs_t vsyncPeriod = getVsyncPeriod();
1643 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001644
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001645 // The present fences returned from vr_hwc are not an accurate
1646 // representation of vsync times.
Ana Krulecc2870422019-01-29 19:00:58 -08001647 mScheduler->setIgnorePresentFences(getHwComposer().isUsingVrComposer() || !hasSyncFramework);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001648
Steven Thomasb02664d2017-07-26 18:48:28 -07001649 // Use phase of 0 since phase is not known.
1650 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08001651 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07001652 setCompositorTimingSnapped(stats, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001653
Ana Krulecc2870422019-01-29 19:00:58 -08001654 mScheduler->resyncToHardwareVsync(false, vsyncPeriod);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001655
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001656 mRepaintEverything = true;
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001657 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001658}
1659
Ady Abrahambe0f9482019-04-24 15:41:53 -07001660bool SurfaceFlinger::previousFrameMissed() NO_THREAD_SAFETY_ANALYSIS {
1661 // We are storing the last 2 present fences. If sf's phase offset is to be
1662 // woken up before the actual vsync but targeting the next vsync, we need to check
1663 // fence N-2
1664 const sp<Fence>& fence =
1665 mVsyncModulator.getOffsets().sf < mPhaseOffsets->getOffsetThresholdForNextVsync()
1666 ? mPreviousPresentFences[0]
1667 : mPreviousPresentFences[1];
1668
1669 return fence != Fence::NO_FENCE && (fence->getStatus() == Fence::Status::Unsignaled);
1670}
1671
Alec Mouri746654a2019-06-06 13:28:34 -07001672nsecs_t SurfaceFlinger::getExpectedPresentTime() NO_THREAD_SAFETY_ANALYSIS {
1673 DisplayStatInfo stats;
1674 mScheduler->getDisplayStatInfo(&stats);
Ady Abraham83127b72019-06-12 17:11:12 -07001675 const nsecs_t presentTime = mScheduler->getDispSyncExpectedPresentTime();
Alec Mouri746654a2019-06-06 13:28:34 -07001676 // Inflate the expected present time if we're targetting the next vsync.
1677 const nsecs_t correctedTime =
1678 mVsyncModulator.getOffsets().sf < mPhaseOffsets->getOffsetThresholdForNextVsync()
1679 ? presentTime
1680 : presentTime + stats.vsyncPeriod;
1681 return correctedTime;
1682}
1683
Dominik Laskowski22488f62019-03-28 09:53:04 -07001684void SurfaceFlinger::onMessageReceived(int32_t what) NO_THREAD_SAFETY_ANALYSIS {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001685 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001686 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001687 case MessageQueue::INVALIDATE: {
Ady Abrahambe0f9482019-04-24 15:41:53 -07001688 bool frameMissed = previousFrameMissed();
Alec Mouricc0fc602019-02-26 21:45:19 -08001689 bool hwcFrameMissed = mHadDeviceComposition && frameMissed;
1690 bool gpuFrameMissed = mHadClientComposition && frameMissed;
1691 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
1692 ATRACE_INT("HwcFrameMissed", static_cast<int>(hwcFrameMissed));
1693 ATRACE_INT("GpuFrameMissed", static_cast<int>(gpuFrameMissed));
1694 if (frameMissed) {
1695 mFrameMissedCount++;
1696 mTimeStats->incrementMissedFrames();
1697 }
1698
Alec Mouri40189b02019-03-05 15:07:54 -08001699 if (hwcFrameMissed) {
1700 mHwcFrameMissedCount++;
1701 }
1702
1703 if (gpuFrameMissed) {
1704 mGpuFrameMissedCount++;
1705 }
1706
Ana Krulecfefd6ae2019-02-13 17:53:08 -08001707 if (mUseSmart90ForVideo) {
1708 // This call is made each time SF wakes up and creates a new frame. It is part
1709 // of video detection feature.
Ady Abraham09bd3922019-04-08 10:44:56 -07001710 mScheduler->updateFpsBasedOnContent();
Ana Krulecfefd6ae2019-02-13 17:53:08 -08001711 }
1712
Ady Abrahamb838aed2019-02-12 15:30:16 -08001713 if (performSetActiveConfig()) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001714 break;
1715 }
1716
Ady Abraham4658e112019-07-22 13:07:26 -07001717 if (frameMissed && mPropagateBackpressure) {
1718 if ((hwcFrameMissed && !gpuFrameMissed) ||
1719 mPropagateBackpressureClientComposition) {
Yiwei Zhang621f9d42018-05-07 10:40:55 -07001720 signalLayerUpdate();
1721 break;
1722 }
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001723 }
Dan Stoza50182882016-07-08 12:02:20 -07001724
Steven Thomas050b2c82017-03-06 11:45:16 -08001725 // Now that we're going to make it to the handleMessageTransaction()
1726 // call below it's safe to call updateVrFlinger(), which will
1727 // potentially trigger a display handoff.
1728 updateVrFlinger();
1729
Dan Stoza6b9454d2014-11-07 16:00:59 -08001730 bool refreshNeeded = handleMessageTransaction();
1731 refreshNeeded |= handleMessageInvalidate();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001732
1733 updateCursorAsync();
1734 updateInputFlinger();
1735
Dan Stoza58784442014-12-02 16:58:17 -08001736 refreshNeeded |= mRepaintEverything;
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08001737 if (refreshNeeded && CC_LIKELY(mBootStage != BootStage::BOOTLOADER)) {
Dan Stoza58784442014-12-02 16:58:17 -08001738 // Signal a refresh if a transaction modified the window state,
1739 // a new buffer was latched, or if HWC has requested a full
1740 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001741 signalRefresh();
1742 }
1743 break;
1744 }
1745 case MessageQueue::REFRESH: {
1746 handleMessageRefresh();
1747 break;
1748 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001749 }
1750}
1751
Dan Stoza6b9454d2014-11-07 16:00:59 -08001752bool SurfaceFlinger::handleMessageTransaction() {
Alec Mourife3dc942019-02-12 14:19:18 -08001753 ATRACE_CALL();
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001754 uint32_t transactionFlags = peekTransactionFlags();
Marissa Wall713b63f2018-10-17 15:42:43 -07001755
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001756 bool flushedATransaction = flushTransactionQueues();
1757
1758 bool runHandleTransaction = transactionFlags &&
1759 ((transactionFlags != eTransactionFlushNeeded) || flushedATransaction);
1760
1761 if (runHandleTransaction) {
1762 handleTransaction(eTransactionMask);
1763 } else {
1764 getTransactionFlags(eTransactionFlushNeeded);
Marissa Wall713b63f2018-10-17 15:42:43 -07001765 }
1766
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001767 if (transactionFlushNeeded()) {
1768 setTransactionFlags(eTransactionFlushNeeded);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001769 }
Marissa Wall713b63f2018-10-17 15:42:43 -07001770
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001771 return runHandleTransaction;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001772}
1773
Mathias Agopian4fec8732012-06-29 14:12:52 -07001774void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001775 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001776
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001777 mRefreshPending = false;
1778
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001779 const bool repaintEverything = mRepaintEverything.exchange(false);
David Sodman2b406362017-12-15 13:33:47 -08001780 preComposition();
Lloyd Pique074e8122018-07-26 12:57:23 -07001781 rebuildLayerStacks();
David Sodman79bba0e2018-08-05 18:07:49 -07001782 calculateWorkingSet();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001783 for (const auto& [token, display] : mDisplays) {
1784 beginFrame(display);
1785 prepareFrame(display);
1786 doDebugFlashRegions(display, repaintEverything);
1787 doComposition(display, repaintEverything);
1788 }
1789
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001790 logLayerStats();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001791
1792 postFrame();
David Sodman2b406362017-12-15 13:33:47 -08001793 postComposition();
Dan Stoza05dacfb2016-07-01 13:33:38 -07001794
Dan Stozabfbffeb2016-07-21 14:49:33 -07001795 mHadClientComposition = false;
Alec Mouricc0fc602019-02-26 21:45:19 -08001796 mHadDeviceComposition = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001797 for (const auto& [token, displayDevice] : mDisplays) {
1798 auto display = displayDevice->getCompositionDisplay();
1799 const auto displayId = display->getId();
Lloyd Pique441d5042018-10-18 16:49:51 -07001800 mHadClientComposition =
Lloyd Pique32cbe282018-10-19 13:09:22 -07001801 mHadClientComposition || getHwComposer().hasClientComposition(displayId);
Alec Mouricc0fc602019-02-26 21:45:19 -08001802 mHadDeviceComposition =
1803 mHadDeviceComposition || getHwComposer().hasDeviceComposition(displayId);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001804 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08001805
Jorim Jaggi90535212018-05-23 23:44:06 +02001806 mVsyncModulator.onRefreshed(mHadClientComposition);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001807
David Sodman7e4ae112018-02-09 15:02:28 -08001808 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001809}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001810
David Sodmanfa9b2af2017-12-24 13:28:59 -08001811
1812bool SurfaceFlinger::handleMessageInvalidate() {
1813 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001814 bool refreshNeeded = handlePageFlip();
1815
Vishnu Nair4351ad52019-02-11 14:13:02 -08001816 if (mVisibleRegionsDirty) {
1817 computeLayerBounds();
Nataniel Borges2b796da2019-02-15 13:32:18 -08001818 if (mTracingEnabled) {
1819 mTracing.notify("visibleRegionsDirty");
1820 }
Vishnu Nair4351ad52019-02-11 14:13:02 -08001821 }
1822
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001823 for (auto& layer : mLayersPendingRefresh) {
1824 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08001825 visibleReg.set(layer->getScreenBounds());
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001826 invalidateLayerStack(layer, visibleReg);
1827 }
1828 mLayersPendingRefresh.clear();
1829 return refreshNeeded;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001830}
1831
David Sodman79bba0e2018-08-05 18:07:49 -07001832void SurfaceFlinger::calculateWorkingSet() {
1833 ATRACE_CALL();
1834 ALOGV(__FUNCTION__);
1835
David Sodman79bba0e2018-08-05 18:07:49 -07001836 // build the h/w work list
1837 if (CC_UNLIKELY(mGeometryInvalid)) {
1838 mGeometryInvalid = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001839 for (const auto& [token, displayDevice] : mDisplays) {
1840 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001841
Lloyd Piquea83776c2019-01-29 18:42:32 -08001842 uint32_t zOrder = 0;
David Sodman79bba0e2018-08-05 18:07:49 -07001843
Lloyd Piquea83776c2019-01-29 18:42:32 -08001844 for (auto& layer : display->getOutputLayersOrderedByZ()) {
1845 auto& compositionState = layer->editState();
1846 compositionState.forceClientComposition = false;
1847 if (!compositionState.hwc || mDebugDisableHWC || mDebugRegion) {
1848 compositionState.forceClientComposition = true;
David Sodman79bba0e2018-08-05 18:07:49 -07001849 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001850
Lloyd Piquea83776c2019-01-29 18:42:32 -08001851 // The output Z order is set here based on a simple counter.
1852 compositionState.z = zOrder++;
1853
1854 // Update the display independent composition state. This goes
1855 // to the general composition layer state structure.
1856 // TODO: Do this once per compositionengine::CompositionLayer.
1857 layer->getLayerFE().latchCompositionState(layer->getLayer().editState().frontEnd,
1858 true);
1859
1860 // Recalculate the geometry state of the output layer.
1861 layer->updateCompositionState(true);
1862
1863 // Write the updated geometry state to the HWC
1864 layer->writeStateToHWC(true);
David Sodman79bba0e2018-08-05 18:07:49 -07001865 }
1866 }
1867 }
1868
1869 // Set the per-frame data
Lloyd Pique32cbe282018-10-19 13:09:22 -07001870 for (const auto& [token, displayDevice] : mDisplays) {
1871 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001872 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001873 if (!displayId) {
David Sodman79bba0e2018-08-05 18:07:49 -07001874 continue;
1875 }
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001876 auto* profile = display->getDisplayColorProfile();
David Sodman79bba0e2018-08-05 18:07:49 -07001877
1878 if (mDrawingState.colorMatrixChanged) {
1879 display->setColorTransform(mDrawingState.colorMatrix);
David Sodman79bba0e2018-08-05 18:07:49 -07001880 }
Peiyong Linc502cb72019-03-01 15:00:23 -08001881 Dataspace targetDataspace = Dataspace::UNKNOWN;
1882 if (useColorManagement) {
1883 ColorMode colorMode;
1884 RenderIntent renderIntent;
1885 pickColorMode(displayDevice, &colorMode, &targetDataspace, &renderIntent);
1886 display->setColorMode(colorMode, targetDataspace, renderIntent);
1887 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07001888 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
David Sodman79bba0e2018-08-05 18:07:49 -07001889 if (layer->isHdrY410()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001890 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001891 } else if ((layer->getDataSpace() == Dataspace::BT2020_PQ ||
1892 layer->getDataSpace() == Dataspace::BT2020_ITU_PQ) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001893 !profile->hasHDR10Support()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001894 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001895 } else if ((layer->getDataSpace() == Dataspace::BT2020_HLG ||
1896 layer->getDataSpace() == Dataspace::BT2020_ITU_HLG) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001897 !profile->hasHLGSupport()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001898 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001899 }
1900
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001901 if (layer->getRoundedCornerState().radius > 0.0f) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001902 layer->forceClientComposition(displayDevice);
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001903 }
1904
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001905 if (layer->getForceClientComposition(displayDevice)) {
David Sodman79bba0e2018-08-05 18:07:49 -07001906 ALOGV("[%s] Requesting Client composition", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001907 layer->setCompositionType(displayDevice,
1908 Hwc2::IComposerClient::Composition::CLIENT);
David Sodman79bba0e2018-08-05 18:07:49 -07001909 continue;
1910 }
1911
Lloyd Pique32cbe282018-10-19 13:09:22 -07001912 const auto& displayState = display->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001913 layer->setPerFrameData(displayDevice, displayState.transform, displayState.viewport,
Peiyong Lin34ea5b92019-03-15 18:40:15 -07001914 displayDevice->getSupportedPerFrameMetadata(),
1915 isHdrColorMode(displayState.colorMode) ? Dataspace::UNKNOWN
1916 : targetDataspace);
David Sodman79bba0e2018-08-05 18:07:49 -07001917 }
1918 }
1919
1920 mDrawingState.colorMatrixChanged = false;
David Sodmanba340492018-08-05 21:51:33 -07001921
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001922 for (const auto& [token, displayDevice] : mDisplays) {
1923 auto display = displayDevice->getCompositionDisplay();
1924 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -08001925 auto& layerState = layer->getCompositionLayer()->editState().frontEnd;
1926 layerState.compositionType = static_cast<Hwc2::IComposerClient::Composition>(
1927 layer->getCompositionType(displayDevice));
David Sodmanba340492018-08-05 21:51:33 -07001928 }
1929 }
David Sodman79bba0e2018-08-05 18:07:49 -07001930}
1931
Lloyd Pique32cbe282018-10-19 13:09:22 -07001932void SurfaceFlinger::doDebugFlashRegions(const sp<DisplayDevice>& displayDevice,
1933 bool repaintEverything) {
1934 auto display = displayDevice->getCompositionDisplay();
1935 const auto& displayState = display->getState();
1936
Mathias Agopiancd60f992012-08-16 16:28:27 -07001937 // is debugging enabled
1938 if (CC_LIKELY(!mDebugRegion))
1939 return;
1940
Lloyd Pique32cbe282018-10-19 13:09:22 -07001941 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08001942 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001943 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
David Sodmanfa9b2af2017-12-24 13:28:59 -08001944 if (!dirtyRegion.isEmpty()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001945 base::unique_fd readyFence;
David Sodmanfa9b2af2017-12-24 13:28:59 -08001946 // redraw the whole screen
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001947 doComposeSurfaces(displayDevice, dirtyRegion, &readyFence);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001948
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001949 display->getRenderSurface()->queueBuffer(std::move(readyFence));
Mathias Agopiancd60f992012-08-16 16:28:27 -07001950 }
1951 }
1952
Lloyd Pique32cbe282018-10-19 13:09:22 -07001953 postFramebuffer(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001954
1955 if (mDebugRegion > 1) {
1956 usleep(mDebugRegion * 1000);
1957 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001958
Lloyd Pique32cbe282018-10-19 13:09:22 -07001959 prepareFrame(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001960}
1961
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001962void SurfaceFlinger::logLayerStats() {
1963 ATRACE_CALL();
1964 if (CC_UNLIKELY(mLayerStats.isEnabled())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07001965 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001966 if (display->isPrimary()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001967 mLayerStats.logLayerStats(dumpVisibleLayersProtoInfo(display));
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001968 return;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001969 }
1970 }
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001971
1972 ALOGE("logLayerStats: no primary display");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001973 }
1974}
1975
David Sodman2b406362017-12-15 13:33:47 -08001976void SurfaceFlinger::preComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001977{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001978 ATRACE_CALL();
1979 ALOGV("preComposition");
1980
David Sodman2b406362017-12-15 13:33:47 -08001981 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
1982
Mathias Agopiancd60f992012-08-16 16:28:27 -07001983 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001984 mDrawingState.traverseInZOrder([&](Layer* layer) {
David Sodman2b406362017-12-15 13:33:47 -08001985 if (layer->onPreComposition(mRefreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001986 needExtraInvalidate = true;
1987 }
Robert Carr2047fae2016-11-28 14:09:09 -08001988 });
1989
Mathias Agopiancd60f992012-08-16 16:28:27 -07001990 if (needExtraInvalidate) {
1991 signalLayerUpdate();
1992 }
1993}
1994
Ana Krulece588e312018-09-18 12:32:24 -07001995void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime,
1996 std::shared_ptr<FenceTime>& presentFenceTime) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001997 // Update queue of past composite+present times and determine the
1998 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001999 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002000 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08002001 while (!getBE().mCompositePresentTimes.empty()) {
2002 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002003 // Cached values should have been updated before calling this method,
2004 // which helps avoid duplicate syscalls.
2005 nsecs_t displayTime = cpt.display->getCachedSignalTime();
2006 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
2007 break;
2008 }
2009 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08002010 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002011 }
2012
2013 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08002014 while (getBE().mCompositePresentTimes.size() > 16) {
2015 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002016 }
2017
Ana Krulece588e312018-09-18 12:32:24 -07002018 setCompositorTimingSnapped(stats, compositeToPresentLatency);
Brian Andersond0010582017-03-07 13:20:31 -08002019}
2020
Ana Krulece588e312018-09-18 12:32:24 -07002021void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats,
2022 nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002023 // Integer division and modulo round toward 0 not -inf, so we need to
2024 // treat negative and positive offsets differently.
Ana Krulec757f63a2019-01-25 10:46:18 -08002025 nsecs_t idealLatency = (mPhaseOffsets->getCurrentSfOffset() > 0)
2026 ? (stats.vsyncPeriod - (mPhaseOffsets->getCurrentSfOffset() % stats.vsyncPeriod))
2027 : ((-mPhaseOffsets->getCurrentSfOffset()) % stats.vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002028
Ana Krulec757f63a2019-01-25 10:46:18 -08002029 // Just in case mPhaseOffsets->getCurrentSfOffset() == -vsyncInterval.
Brian Andersond0010582017-03-07 13:20:31 -08002030 if (idealLatency <= 0) {
Ana Krulece588e312018-09-18 12:32:24 -07002031 idealLatency = stats.vsyncPeriod;
Brian Andersond0010582017-03-07 13:20:31 -08002032 }
2033
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002034 // Snap the latency to a value that removes scheduling jitter from the
2035 // composition and present times, which often have >1ms of jitter.
2036 // Reducing jitter is important if an app attempts to extrapolate
2037 // something (such as user input) to an accurate diasplay time.
Ana Krulec757f63a2019-01-25 10:46:18 -08002038 // Snapping also allows an app to precisely calculate mPhaseOffsets->getCurrentSfOffset()
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002039 // with (presentLatency % interval).
Ana Krulece588e312018-09-18 12:32:24 -07002040 nsecs_t bias = stats.vsyncPeriod / 2;
2041 int64_t extraVsyncs = (compositeToPresentLatency - idealLatency + bias) / stats.vsyncPeriod;
2042 nsecs_t snappedCompositeToPresentLatency =
2043 (extraVsyncs > 0) ? idealLatency + (extraVsyncs * stats.vsyncPeriod) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002044
David Sodman99974d22017-11-28 12:04:33 -08002045 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
Ana Krulece588e312018-09-18 12:32:24 -07002046 getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency;
2047 getBE().mCompositorTiming.interval = stats.vsyncPeriod;
David Sodman99974d22017-11-28 12:04:33 -08002048 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002049}
2050
David Sodman2b406362017-12-15 13:33:47 -08002051void SurfaceFlinger::postComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07002052{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002053 ATRACE_CALL();
2054 ALOGV("postComposition");
2055
Brian Anderson3546a3f2016-07-14 11:51:14 -07002056 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07002057 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07002058 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07002059 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07002060 }
2061
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002062 // |mStateLock| not needed as we are on the main thread
Lloyd Pique32cbe282018-10-19 13:09:22 -07002063 const auto displayDevice = getDefaultDisplayDeviceLocked();
Brian Anderson3d4039d2016-09-23 16:31:30 -07002064
David Sodman73beded2017-11-15 11:56:06 -08002065 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07002066 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002067 if (displayDevice && getHwComposer().hasClientComposition(displayDevice->getId())) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002068 glCompositionDoneFenceTime =
Lloyd Pique31cb2942018-10-19 17:23:03 -07002069 std::make_shared<FenceTime>(displayDevice->getCompositionDisplay()
2070 ->getRenderSurface()
2071 ->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08002072 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07002073 } else {
2074 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
2075 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07002076
David Sodman73beded2017-11-15 11:56:06 -08002077 getBE().mDisplayTimeline.updateSignalTimes();
Ady Abrahambe0f9482019-04-24 15:41:53 -07002078 mPreviousPresentFences[1] = mPreviousPresentFences[0];
2079 mPreviousPresentFences[0] = displayDevice
2080 ? getHwComposer().getPresentFence(*displayDevice->getId())
2081 : Fence::NO_FENCE;
2082 auto presentFenceTime = std::make_shared<FenceTime>(mPreviousPresentFences[0]);
David Sodman73beded2017-11-15 11:56:06 -08002083 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07002084
Ana Krulece588e312018-09-18 12:32:24 -07002085 DisplayStatInfo stats;
Ana Krulecc2870422019-01-29 19:00:58 -08002086 mScheduler->getDisplayStatInfo(&stats);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002087
David Sodman2b406362017-12-15 13:33:47 -08002088 // We use the mRefreshStartTime which might be sampled a little later than
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002089 // when we started doing work for this frame, but that should be okay
2090 // since updateCompositorTiming has snapping logic.
Ana Krulece588e312018-09-18 12:32:24 -07002091 updateCompositorTiming(stats, mRefreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08002092 CompositorTiming compositorTiming;
2093 {
David Sodman99974d22017-11-28 12:04:33 -08002094 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
2095 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08002096 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002097
Robert Carr2047fae2016-11-28 14:09:09 -08002098 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002099 bool frameLatched =
2100 layer->onPostComposition(displayDevice->getId(), glCompositionDoneFenceTime,
2101 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07002102 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08002103 recordBufferingStats(layer->getName().string(),
2104 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07002105 }
Robert Carr2047fae2016-11-28 14:09:09 -08002106 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002107
Brian Andersonfbc80ae2017-05-26 16:23:54 -07002108 if (presentFenceTime->isValid()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002109 mScheduler->addPresentFence(presentFenceTime);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002110 }
2111
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08002112 if (!hasSyncFramework) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002113 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2114 displayDevice->isPoweredOn()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002115 mScheduler->enableHardwareVsync();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002116 }
2117 }
2118
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002119 if (mAnimCompositionPending) {
2120 mAnimCompositionPending = false;
2121
Brian Anderson4e606e32017-03-16 15:34:57 -07002122 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002123 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07002124 std::move(presentFenceTime));
Lloyd Pique32cbe282018-10-19 13:09:22 -07002125 } else if (displayDevice && getHwComposer().isConnected(*displayDevice->getId())) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002126 // The HWC doesn't support present fences, so use the refresh
2127 // timestamp instead.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002128 const nsecs_t presentTime =
2129 getHwComposer().getRefreshTimestamp(*displayDevice->getId());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002130 mAnimFrameTracker.setActualPresentTime(presentTime);
2131 }
2132 mAnimFrameTracker.advanceFrame();
2133 }
Dan Stozab90cf072015-03-05 11:05:59 -08002134
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002135 mTimeStats->incrementTotalFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002136 if (mHadClientComposition) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002137 mTimeStats->incrementClientCompositionFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002138 }
2139
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002140 mTimeStats->setPresentFenceGlobal(presentFenceTime);
Yiwei Zhangce6ebc02018-10-20 12:42:38 -07002141
Lloyd Pique32cbe282018-10-19 13:09:22 -07002142 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2143 !displayDevice->isPoweredOn()) {
Dan Stozab90cf072015-03-05 11:05:59 -08002144 return;
2145 }
2146
2147 nsecs_t currentTime = systemTime();
2148 if (mHasPoweredOff) {
2149 mHasPoweredOff = false;
2150 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002151 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Ana Krulece588e312018-09-18 12:32:24 -07002152 size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod);
David Sodman4a36e932017-11-07 14:29:47 -08002153 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
2154 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002155 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002156 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002157 }
David Sodman4a36e932017-11-07 14:29:47 -08002158 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002159 }
David Sodman4a36e932017-11-07 14:29:47 -08002160 getBE().mLastSwapTime = currentTime;
Dan Stoza436ccf32018-06-21 12:10:12 -07002161
2162 {
2163 std::lock_guard lock(mTexturePoolMutex);
Dan Stoza67765d82019-05-07 14:58:27 -07002164 if (mTexturePool.size() < mTexturePoolSize) {
2165 const size_t refillCount = mTexturePoolSize - mTexturePool.size();
Dan Stoza436ccf32018-06-21 12:10:12 -07002166 const size_t offset = mTexturePool.size();
2167 mTexturePool.resize(mTexturePoolSize);
2168 getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset);
2169 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Dan Stoza67765d82019-05-07 14:58:27 -07002170 } else if (mTexturePool.size() > mTexturePoolSize) {
2171 const size_t deleteCount = mTexturePool.size() - mTexturePoolSize;
2172 const size_t offset = mTexturePoolSize;
2173 getRenderEngine().deleteTextures(deleteCount, mTexturePool.data() + offset);
2174 mTexturePool.resize(mTexturePoolSize);
2175 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Dan Stoza436ccf32018-06-21 12:10:12 -07002176 }
2177 }
Marissa Walle2ffb422018-10-12 11:33:52 -07002178
Ady Abrahambe0f9482019-04-24 15:41:53 -07002179 mTransactionCompletedThread.addPresentFence(mPreviousPresentFences[0]);
Marissa Wallf384e052019-06-12 13:25:07 -07002180
2181 // Lock the mStateLock in case SurfaceFlinger is in the middle of applying a transaction.
2182 // If we do not lock here, a callback could be sent without all of its SurfaceControls and
2183 // metrics.
2184 {
2185 Mutex::Autolock _l(mStateLock);
2186 mTransactionCompletedThread.sendCallbacks();
2187 }
Ady Abraham8164d482019-01-11 14:47:59 -08002188
Kevin DuBois413287f2019-02-25 08:46:47 -08002189 if (mLumaSampling && mRegionSamplingThread) {
2190 mRegionSamplingThread->notifyNewContent();
Dan Stozaec460082018-12-17 15:35:09 -08002191 }
Dan Stoza45de5ba2019-04-25 14:12:09 -07002192
2193 // Even though ATRACE_INT64 already checks if tracing is enabled, it doesn't prevent the
2194 // side-effect of getTotalSize(), so we check that again here
2195 if (ATRACE_ENABLED()) {
2196 ATRACE_INT64("Total Buffer Size", GraphicBufferAllocator::get().getTotalSize());
2197 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002198}
2199
Vishnu Nair4351ad52019-02-11 14:13:02 -08002200void SurfaceFlinger::computeLayerBounds() {
2201 for (const auto& pair : mDisplays) {
2202 const auto& displayDevice = pair.second;
2203 const auto display = displayDevice->getCompositionDisplay();
2204 for (const auto& layer : mDrawingState.layersSortedByZ) {
2205 // only consider the layers on the given layer stack
2206 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Vishnu Nair01ace762019-02-12 14:25:24 -08002207 continue;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002208 }
2209
2210 layer->computeBounds(displayDevice->getViewport().toFloatRect(), ui::Transform());
2211 }
2212 }
2213}
2214
Mathias Agopiancd60f992012-08-16 16:28:27 -07002215void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002216 ATRACE_CALL();
2217 ALOGV("rebuildLayerStacks");
2218
Mathias Agopiancd60f992012-08-16 16:28:27 -07002219 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07002220 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07002221 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07002222 mVisibleRegionsDirty = false;
2223 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002224
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002225 for (const auto& pair : mDisplays) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002226 const auto& displayDevice = pair.second;
2227 auto display = displayDevice->getCompositionDisplay();
2228 const auto& displayState = display->getState();
Jeff Sharkey76488112017-02-27 14:15:18 -07002229 Region opaqueRegion;
2230 Region dirtyRegion;
Lloyd Piquecc01a452018-12-04 17:24:00 -08002231 compositionengine::Output::OutputLayers layersSortedByZ;
2232 Vector<sp<Layer>> deprecated_layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08002233 Vector<sp<Layer>> layersNeedingFences;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002234 const ui::Transform& tr = displayState.transform;
2235 const Rect bounds = displayState.bounds;
2236 if (displayState.isEnabled) {
2237 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002238
Jeff Sharkey76488112017-02-27 14:15:18 -07002239 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Piquecc01a452018-12-04 17:24:00 -08002240 auto compositionLayer = layer->getCompositionLayer();
2241 if (compositionLayer == nullptr) {
2242 return;
2243 }
2244
Lloyd Pique32cbe282018-10-19 13:09:22 -07002245 const auto displayId = displayDevice->getId();
Lloyd Piquecc01a452018-12-04 17:24:00 -08002246 sp<compositionengine::LayerFE> layerFE = compositionLayer->getLayerFE();
2247 LOG_ALWAYS_FATAL_IF(layerFE.get() == nullptr);
2248
Lloyd Pique07e33212018-12-18 16:33:37 -08002249 bool needsOutputLayer = false;
2250
Lloyd Piqueef36b002019-01-23 17:52:04 -08002251 if (display->belongsInOutput(layer->getLayerStack(),
2252 layer->getPrimaryDisplayOnly())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07002253 Region drawRegion(tr.transform(
2254 layer->visibleNonTransparentRegion));
2255 drawRegion.andSelf(bounds);
2256 if (!drawRegion.isEmpty()) {
Lloyd Pique07e33212018-12-18 16:33:37 -08002257 needsOutputLayer = true;
Jeff Sharkey76488112017-02-27 14:15:18 -07002258 }
Chia-I Wu83806892017-11-16 10:50:20 -08002259 }
2260
Lloyd Pique07e33212018-12-18 16:33:37 -08002261 if (needsOutputLayer) {
2262 layersSortedByZ.emplace_back(
2263 display->getOrCreateOutputLayer(displayId, compositionLayer,
2264 layerFE));
2265 deprecated_layersSortedByZ.add(layer);
2266
2267 auto& outputLayerState = layersSortedByZ.back()->editState();
2268 outputLayerState.visibleRegion =
2269 tr.transform(layer->visibleRegion.intersect(displayState.viewport));
2270 } else if (displayId) {
2271 // For layers that are being removed from a HWC display,
2272 // and that have queued frames, add them to a a list of
2273 // released layers so we can properly set a fence.
2274 bool hasExistingOutputLayer =
2275 display->getOutputLayerForLayer(compositionLayer.get()) != nullptr;
2276 bool hasQueuedFrames = std::find(mLayersWithQueuedFrames.cbegin(),
2277 mLayersWithQueuedFrames.cend(),
2278 layer) != mLayersWithQueuedFrames.cend();
2279
2280 if (hasExistingOutputLayer && hasQueuedFrames) {
Chia-I Wu83806892017-11-16 10:50:20 -08002281 layersNeedingFences.add(layer);
2282 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002283 }
Jeff Sharkey76488112017-02-27 14:15:18 -07002284 });
2285 }
Lloyd Piquecc01a452018-12-04 17:24:00 -08002286
2287 display->setOutputLayersOrderedByZ(std::move(layersSortedByZ));
2288
2289 displayDevice->setVisibleLayersSortedByZ(deprecated_layersSortedByZ);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002290 displayDevice->setLayersNeedingFences(layersNeedingFences);
2291
2292 Region undefinedRegion{bounds};
2293 undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
2294
2295 display->editState().undefinedRegion = undefinedRegion;
2296 display->editState().dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002297 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002298 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002299}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002300
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002301// Returns a data space that fits all visible layers. The returned data space
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002302// can only be one of
Chia-I Wu7a28ecb2018-05-04 10:38:39 -07002303// - Dataspace::SRGB (use legacy dataspace and let HWC saturate when colors are enhanced)
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002304// - Dataspace::DISPLAY_P3
Valerie Hau9758ae02018-10-09 16:05:09 -07002305// - Dataspace::DISPLAY_BT2020
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002306// The returned HDR data space is one of
2307// - Dataspace::UNKNOWN
2308// - Dataspace::BT2020_HLG
2309// - Dataspace::BT2020_PQ
Peiyong Lin03912882019-04-16 15:34:46 -07002310Dataspace SurfaceFlinger::getBestDataspace(const sp<DisplayDevice>& display,
2311 Dataspace* outHdrDataSpace,
2312 bool* outIsHdrClientComposition) const {
Peiyong Lin14724e62018-12-05 07:27:30 -08002313 Dataspace bestDataSpace = Dataspace::V0_SRGB;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002314 *outHdrDataSpace = Dataspace::UNKNOWN;
2315
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002316 for (const auto& layer : display->getVisibleLayersSortedByZ()) {
Chia-I Wu01591c92018-05-22 12:03:00 -07002317 switch (layer->getDataSpace()) {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002318 case Dataspace::V0_SCRGB:
2319 case Dataspace::V0_SCRGB_LINEAR:
Valerie Hau9758ae02018-10-09 16:05:09 -07002320 case Dataspace::BT2020:
2321 case Dataspace::BT2020_ITU:
2322 case Dataspace::BT2020_LINEAR:
2323 case Dataspace::DISPLAY_BT2020:
2324 bestDataSpace = Dataspace::DISPLAY_BT2020;
2325 break;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002326 case Dataspace::DISPLAY_P3:
Chia-I Wube02ec02018-05-18 10:59:36 -07002327 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002328 break;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002329 case Dataspace::BT2020_PQ:
2330 case Dataspace::BT2020_ITU_PQ:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002331 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002332 *outHdrDataSpace = Dataspace::BT2020_PQ;
Peiyong Lin03912882019-04-16 15:34:46 -07002333 *outIsHdrClientComposition = layer->getForceClientComposition(display);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002334 break;
Peiyong Linf59a7192018-04-25 11:19:31 -07002335 case Dataspace::BT2020_HLG:
2336 case Dataspace::BT2020_ITU_HLG:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002337 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002338 // When there's mixed PQ content and HLG content, we set the HDR
2339 // data space to be BT2020_PQ and convert HLG to PQ.
2340 if (*outHdrDataSpace == Dataspace::UNKNOWN) {
2341 *outHdrDataSpace = Dataspace::BT2020_HLG;
Peiyong Linf59a7192018-04-25 11:19:31 -07002342 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002343 break;
2344 default:
2345 break;
2346 }
Romain Guy54f154a2017-10-24 21:40:32 +01002347 }
2348
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002349 return bestDataSpace;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002350}
2351
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002352// Pick the ColorMode / Dataspace for the display device.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002353void SurfaceFlinger::pickColorMode(const sp<DisplayDevice>& display, ColorMode* outMode,
2354 Dataspace* outDataSpace, RenderIntent* outRenderIntent) const {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002355 if (mDisplayColorSetting == DisplayColorSetting::UNMANAGED) {
2356 *outMode = ColorMode::NATIVE;
2357 *outDataSpace = Dataspace::UNKNOWN;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002358 *outRenderIntent = RenderIntent::COLORIMETRIC;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002359 return;
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002360 }
Romain Guy88d37dd2017-05-26 17:57:05 -07002361
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002362 Dataspace hdrDataSpace;
Peiyong Lin03912882019-04-16 15:34:46 -07002363 bool isHdrClientComposition = false;
2364 Dataspace bestDataSpace = getBestDataspace(display, &hdrDataSpace, &isHdrClientComposition);
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002365
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002366 auto* profile = display->getCompositionDisplay()->getDisplayColorProfile();
2367
Peiyong Lina3ea5592019-02-10 14:45:00 -08002368 switch (mForceColorMode) {
2369 case ColorMode::SRGB:
2370 bestDataSpace = Dataspace::V0_SRGB;
2371 break;
2372 case ColorMode::DISPLAY_P3:
2373 bestDataSpace = Dataspace::DISPLAY_P3;
2374 break;
2375 default:
2376 break;
2377 }
2378
Peiyong Lindfde5112018-06-05 10:58:41 -07002379 // respect hdrDataSpace only when there is no legacy HDR support
Peiyong Lin03912882019-04-16 15:34:46 -07002380 const bool isHdr = hdrDataSpace != Dataspace::UNKNOWN &&
2381 !profile->hasLegacyHdrSupport(hdrDataSpace) && !isHdrClientComposition;
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002382 if (isHdr) {
2383 bestDataSpace = hdrDataSpace;
2384 }
2385
Chia-I Wu0d711262018-05-21 15:19:35 -07002386 RenderIntent intent;
2387 switch (mDisplayColorSetting) {
2388 case DisplayColorSetting::MANAGED:
2389 case DisplayColorSetting::UNMANAGED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002390 intent = isHdr ? RenderIntent::TONE_MAP_COLORIMETRIC : RenderIntent::COLORIMETRIC;
Chia-I Wu0d711262018-05-21 15:19:35 -07002391 break;
2392 case DisplayColorSetting::ENHANCED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002393 intent = isHdr ? RenderIntent::TONE_MAP_ENHANCE : RenderIntent::ENHANCE;
Chia-I Wu0d711262018-05-21 15:19:35 -07002394 break;
2395 default: // vendor display color setting
2396 intent = static_cast<RenderIntent>(mDisplayColorSetting);
2397 break;
2398 }
Chia-I Wube02ec02018-05-18 10:59:36 -07002399
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002400 profile->getBestColorMode(bestDataSpace, intent, outDataSpace, outMode, outRenderIntent);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002401}
2402
Lloyd Pique32cbe282018-10-19 13:09:22 -07002403void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) {
2404 auto display = displayDevice->getCompositionDisplay();
2405 const auto& displayState = display->getState();
2406
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002407 bool dirty = !display->getDirtyRegion(false).isEmpty();
Lloyd Pique32cbe282018-10-19 13:09:22 -07002408 bool empty = displayDevice->getVisibleLayersSortedByZ().size() == 0;
2409 bool wasEmpty = !displayState.lastCompositionHadVisibleLayers;
David Sodman2b406362017-12-15 13:33:47 -08002410
David Sodmanfa9b2af2017-12-24 13:28:59 -08002411 // If nothing has changed (!dirty), don't recompose.
2412 // If something changed, but we don't currently have any visible layers,
2413 // and didn't when we last did a composition, then skip it this time.
2414 // The second rule does two things:
2415 // - When all layers are removed from a display, we'll emit one black
2416 // frame, then nothing more until we get new layers.
2417 // - When a display is created with a private layer stack, we won't
2418 // emit any black frames until a layer is added to the layer stack.
2419 bool mustRecompose = dirty && !(empty && wasEmpty);
David Sodman2b406362017-12-15 13:33:47 -08002420
Dominik Laskowski075d3172018-05-24 15:50:06 -07002421 const char flagPrefix[] = {'-', '+'};
2422 static_cast<void>(flagPrefix);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002423 ALOGV_IF(displayDevice->isVirtual(), "%s: %s composition for %s (%cdirty %cempty %cwasEmpty)",
2424 __FUNCTION__, mustRecompose ? "doing" : "skipping",
2425 displayDevice->getDebugName().c_str(), flagPrefix[dirty], flagPrefix[empty],
2426 flagPrefix[wasEmpty]);
David Sodman2b406362017-12-15 13:33:47 -08002427
Lloyd Pique31cb2942018-10-19 17:23:03 -07002428 display->getRenderSurface()->beginFrame(mustRecompose);
David Sodman2b406362017-12-15 13:33:47 -08002429
David Sodmanfa9b2af2017-12-24 13:28:59 -08002430 if (mustRecompose) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002431 display->editState().lastCompositionHadVisibleLayers = !empty;
David Sodman2b406362017-12-15 13:33:47 -08002432 }
2433}
2434
Lloyd Pique32cbe282018-10-19 13:09:22 -07002435void SurfaceFlinger::prepareFrame(const sp<DisplayDevice>& displayDevice) {
2436 auto display = displayDevice->getCompositionDisplay();
2437 const auto& displayState = display->getState();
2438
2439 if (!displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002440 return;
David Sodman2b406362017-12-15 13:33:47 -08002441 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08002442
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002443 status_t result = display->getRenderSurface()->prepareFrame();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002444 ALOGE_IF(result != NO_ERROR, "prepareFrame failed for %s: %d (%s)",
Lloyd Pique32cbe282018-10-19 13:09:22 -07002445 displayDevice->getDebugName().c_str(), result, strerror(-result));
David Sodman2b406362017-12-15 13:33:47 -08002446}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002447
Lloyd Pique32cbe282018-10-19 13:09:22 -07002448void SurfaceFlinger::doComposition(const sp<DisplayDevice>& displayDevice, bool repaintEverything) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002449 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002450 ALOGV("doComposition");
2451
Lloyd Pique32cbe282018-10-19 13:09:22 -07002452 auto display = displayDevice->getCompositionDisplay();
2453 const auto& displayState = display->getState();
2454
2455 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002456 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002457 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
Mathias Agopian02b95102012-11-05 17:50:57 -08002458
David Sodmanfa9b2af2017-12-24 13:28:59 -08002459 // repaint the framebuffer (if needed)
Lloyd Pique32cbe282018-10-19 13:09:22 -07002460 doDisplayComposition(displayDevice, dirtyRegion);
Mathias Agopian02b95102012-11-05 17:50:57 -08002461
Lloyd Pique32cbe282018-10-19 13:09:22 -07002462 display->editState().dirtyRegion.clear();
Lloyd Pique31cb2942018-10-19 17:23:03 -07002463 display->getRenderSurface()->flip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002464 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002465 postFramebuffer(displayDevice);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002466}
2467
David Sodmanfa9b2af2017-12-24 13:28:59 -08002468void SurfaceFlinger::postFrame()
2469{
2470 // |mStateLock| not needed as we are on the main thread
Dominik Laskowski075d3172018-05-24 15:50:06 -07002471 const auto display = getDefaultDisplayDeviceLocked();
2472 if (display && getHwComposer().isConnected(*display->getId())) {
2473 uint32_t flipCount = display->getPageFlipCount();
David Sodmanfa9b2af2017-12-24 13:28:59 -08002474 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2475 logFrameStats();
2476 }
2477 }
2478}
2479
Lloyd Pique32cbe282018-10-19 13:09:22 -07002480void SurfaceFlinger::postFramebuffer(const sp<DisplayDevice>& displayDevice) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002481 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002482 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08002483
Lloyd Pique32cbe282018-10-19 13:09:22 -07002484 auto display = displayDevice->getCompositionDisplay();
2485 const auto& displayState = display->getState();
2486 const auto displayId = display->getId();
2487
Lloyd Pique32cbe282018-10-19 13:09:22 -07002488 if (displayState.isEnabled) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002489 if (displayId) {
2490 getHwComposer().presentAndGetReleaseFences(*displayId);
Mathias Agopian2a231842012-09-24 18:12:35 -07002491 }
Lloyd Pique31cb2942018-10-19 17:23:03 -07002492 display->getRenderSurface()->onPresentDisplayCompleted();
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002493 for (auto& layer : display->getOutputLayersOrderedByZ()) {
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002494 sp<Fence> releaseFence = Fence::NO_FENCE;
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002495 bool usedClientComposition = true;
David Sodman15094112018-10-11 09:39:37 -07002496
Chia-I Wu7b549592017-11-15 09:14:57 -08002497 // The layer buffer from the previous frame (if any) is released
2498 // by HWC only when the release fence from this frame (if any) is
2499 // signaled. Always get the release fence from HWC first.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002500 if (layer->getState().hwc) {
2501 const auto& hwcState = *layer->getState().hwc;
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002502 releaseFence =
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002503 getHwComposer().getLayerReleaseFence(*displayId, hwcState.hwcLayer.get());
2504 usedClientComposition =
2505 hwcState.hwcCompositionType == Hwc2::IComposerClient::Composition::CLIENT;
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002506 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002507
2508 // If the layer was client composited in the previous frame, we
2509 // need to merge with the previous client target acquire fence.
2510 // Since we do not track that, always merge with the current
2511 // client target acquire fence when it is available, even though
2512 // this is suboptimal.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002513 if (usedClientComposition) {
Lloyd Pique31cb2942018-10-19 17:23:03 -07002514 releaseFence =
2515 Fence::merge("LayerRelease", releaseFence,
2516 display->getRenderSurface()->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002517 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002518
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002519 layer->getLayerFE().onLayerDisplayed(releaseFence);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002520 }
Chia-I Wu83806892017-11-16 10:50:20 -08002521
2522 // We've got a list of layers needing fences, that are disjoint with
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002523 // display->getVisibleLayersSortedByZ. The best we can do is to
Chia-I Wu83806892017-11-16 10:50:20 -08002524 // supply them with the present fence.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002525 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002526 sp<Fence> presentFence =
Lloyd Pique441d5042018-10-18 16:49:51 -07002527 displayId ? getHwComposer().getPresentFence(*displayId) : Fence::NO_FENCE;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002528 for (auto& layer : displayDevice->getLayersNeedingFences()) {
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002529 layer->getCompositionLayer()->getLayerFE()->onLayerDisplayed(presentFence);
Chia-I Wu83806892017-11-16 10:50:20 -08002530 }
2531 }
2532
Dominik Laskowski075d3172018-05-24 15:50:06 -07002533 if (displayId) {
2534 getHwComposer().clearReleaseFences(*displayId);
Jesse Hallef194142012-06-14 14:45:17 -07002535 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002536 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002537}
2538
Mathias Agopian87baae12012-07-31 12:38:26 -07002539void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002540{
Mathias Agopian841cde52012-03-01 15:44:37 -08002541 ATRACE_CALL();
2542
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002543 // here we keep a copy of the drawing state (that is the state that's
2544 // going to be overwritten by handleTransactionLocked()) outside of
2545 // mStateLock so that the side-effects of the State assignment
2546 // don't happen with mStateLock held (which can cause deadlocks).
2547 State drawingState(mDrawingState);
2548
Mathias Agopianca4d3602011-05-19 15:38:14 -07002549 Mutex::Autolock _l(mStateLock);
Dominik Laskowski9dab3432019-03-27 13:21:10 -07002550 mDebugInTransaction = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002551
Mathias Agopianca4d3602011-05-19 15:38:14 -07002552 // Here we're guaranteed that some transaction flags are set
2553 // so we can call handleTransactionLocked() unconditionally.
2554 // We call getTransactionFlags(), which will also clear the flags,
2555 // with mStateLock held to guarantee that mCurrentState won't change
2556 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002557
Jorim Jaggif15c3be2018-04-12 12:56:58 +01002558 mVsyncModulator.onTransactionHandled();
Mathias Agopiane57f2922012-08-09 16:29:12 -07002559 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002560 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002561
Mathias Agopianca4d3602011-05-19 15:38:14 -07002562 mDebugInTransaction = 0;
2563 invalidateHwcGeometry();
2564 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002565}
2566
Lloyd Piqueba04e622017-12-14 17:11:26 -08002567void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2568 for (const auto& event : mPendingHotplugEvents) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002569 const std::optional<DisplayIdentificationInfo> info =
2570 getHwComposer().onHotplug(event.hwcDisplayId, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002571
Dominik Laskowski075d3172018-05-24 15:50:06 -07002572 if (!info) {
Lloyd Piqueba04e622017-12-14 17:11:26 -08002573 continue;
2574 }
2575
Lloyd Piqueba04e622017-12-14 17:11:26 -08002576 if (event.connection == HWC2::Connection::Connected) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002577 if (!mPhysicalDisplayTokens.count(info->id)) {
Dominik Laskowski34157762018-10-31 13:07:19 -07002578 ALOGV("Creating display %s", to_string(info->id).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07002579 mPhysicalDisplayTokens[info->id] = new BBinder();
2580 DisplayDeviceState state;
2581 state.displayId = info->id;
2582 state.isSecure = true; // All physical displays are currently considered secure.
2583 state.displayName = info->name;
2584 mCurrentState.displays.add(mPhysicalDisplayTokens[info->id], state);
2585 mInterceptor->saveDisplayCreation(state);
Steven Thomaseb6d2052018-03-20 15:40:48 -07002586 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002587 } else {
Dominik Laskowski34157762018-10-31 13:07:19 -07002588 ALOGV("Removing display %s", to_string(info->id).c_str());
Lloyd Piqueba04e622017-12-14 17:11:26 -08002589
Dominik Laskowski075d3172018-05-24 15:50:06 -07002590 ssize_t index = mCurrentState.displays.indexOfKey(mPhysicalDisplayTokens[info->id]);
2591 if (index >= 0) {
2592 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
2593 mInterceptor->saveDisplayDeletion(state.sequenceId);
2594 mCurrentState.displays.removeItemsAt(index);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002595 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002596 mPhysicalDisplayTokens.erase(info->id);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002597 }
2598
2599 processDisplayChangesLocked();
2600 }
2601
2602 mPendingHotplugEvents.clear();
2603}
2604
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002605void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) {
Ana Krulecc2870422019-01-29 19:00:58 -08002606 mScheduler->hotplugReceived(mAppConnectionHandle, displayId, connected);
2607 mScheduler->hotplugReceived(mSfConnectionHandle, displayId, connected);
Dominik Laskowski1eba0202019-01-24 09:14:40 -08002608}
2609
Lloyd Pique99d3da52018-01-22 17:48:03 -08002610sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal(
Dominik Laskowski075d3172018-05-24 15:50:06 -07002611 const wp<IBinder>& displayToken, const std::optional<DisplayId>& displayId,
Lloyd Pique542307f2018-10-19 13:24:08 -07002612 const DisplayDeviceState& state, const sp<compositionengine::DisplaySurface>& dispSurface,
Dominik Laskowski075d3172018-05-24 15:50:06 -07002613 const sp<IGraphicBufferProducer>& producer) {
2614 DisplayDeviceCreationArgs creationArgs(this, displayToken, displayId);
Dominik Laskowskie9774092018-12-11 10:04:24 -08002615 creationArgs.sequenceId = state.sequenceId;
Dominik Laskowski075d3172018-05-24 15:50:06 -07002616 creationArgs.isVirtual = state.isVirtual();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002617 creationArgs.isSecure = state.isSecure;
2618 creationArgs.displaySurface = dispSurface;
2619 creationArgs.hasWideColorGamut = false;
2620 creationArgs.supportedPerFrameMetadata = 0;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002621
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002622 const bool isInternalDisplay = displayId && displayId == getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002623 creationArgs.isPrimary = isInternalDisplay;
2624
2625 if (useColorManagement && displayId) {
2626 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002627 for (ColorMode colorMode : modes) {
Peiyong Linfca547f2018-07-09 13:03:33 -07002628 if (isWideColorMode(colorMode)) {
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002629 creationArgs.hasWideColorGamut = true;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002630 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002631
Dominik Laskowski7e045462018-05-30 13:02:02 -07002632 std::vector<RenderIntent> renderIntents =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002633 getHwComposer().getRenderIntents(*displayId, colorMode);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002634 creationArgs.hwcColorModes.emplace(colorMode, renderIntents);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002635 }
tangrobin6753a022018-08-10 10:58:54 +08002636 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002637
Dominik Laskowski075d3172018-05-24 15:50:06 -07002638 if (displayId) {
2639 getHwComposer().getHdrCapabilities(*displayId, &creationArgs.hdrCapabilities);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002640 creationArgs.supportedPerFrameMetadata =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002641 getHwComposer().getSupportedPerFrameMetadata(*displayId);
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002642 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002643
Lloyd Pique90c115d2018-09-18 21:39:42 -07002644 auto nativeWindowSurface = getFactory().createNativeWindowSurface(producer);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002645 auto nativeWindow = nativeWindowSurface->getNativeWindow();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002646 creationArgs.nativeWindow = nativeWindow;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002647
Lloyd Pique99d3da52018-01-22 17:48:03 -08002648 // Make sure that composition can never be stalled by a virtual display
2649 // consumer that isn't processing buffers fast enough. We have to do this
Alec Mouri0a9c7b82018-11-16 13:05:25 -08002650 // here, in case the display is composed entirely by HWC.
Dominik Laskowski281644e2018-04-19 15:47:35 -07002651 if (state.isVirtual()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002652 nativeWindow->setSwapInterval(nativeWindow.get(), 0);
2653 }
2654
Dominik Laskowski075d3172018-05-24 15:50:06 -07002655 creationArgs.displayInstallOrientation =
2656 isInternalDisplay ? primaryDisplayOrientation : DisplayState::eOrientationDefault;
Chia-I Wua02871c2018-08-27 14:38:23 -07002657
Lloyd Pique99d3da52018-01-22 17:48:03 -08002658 // virtual displays are always considered enabled
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002659 creationArgs.initialPowerMode = state.isVirtual() ? HWC_POWER_MODE_NORMAL : HWC_POWER_MODE_OFF;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002660
Lloyd Pique90c115d2018-09-18 21:39:42 -07002661 sp<DisplayDevice> display = getFactory().createDisplayDevice(std::move(creationArgs));
Lloyd Pique99d3da52018-01-22 17:48:03 -08002662
2663 if (maxFrameBufferAcquiredBuffers >= 3) {
2664 nativeWindowSurface->preallocateBuffers();
2665 }
2666
2667 ColorMode defaultColorMode = ColorMode::NATIVE;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002668 Dataspace defaultDataSpace = Dataspace::UNKNOWN;
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002669 if (display->hasWideColorGamut()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002670 defaultColorMode = ColorMode::SRGB;
Peiyong Lin14724e62018-12-05 07:27:30 -08002671 defaultDataSpace = Dataspace::V0_SRGB;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002672 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002673 display->getCompositionDisplay()->setColorMode(defaultColorMode, defaultDataSpace,
2674 RenderIntent::COLORIMETRIC);
Dominik Laskowski075d3172018-05-24 15:50:06 -07002675 if (!state.isVirtual()) {
2676 LOG_ALWAYS_FATAL_IF(!displayId);
2677 display->setActiveConfig(getHwComposer().getActiveConfigIndex(*displayId));
Lloyd Pique3c085a02018-05-09 19:38:32 -07002678 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002679
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002680 display->setLayerStack(state.layerStack);
2681 display->setProjection(state.orientation, state.viewport, state.frame);
2682 display->setDisplayName(state.displayName);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002683
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002684 return display;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002685}
2686
Lloyd Pique347200f2017-12-14 17:00:15 -08002687void SurfaceFlinger::processDisplayChangesLocked() {
2688 // here we take advantage of Vector's copy-on-write semantics to
2689 // improve performance by skipping the transaction entirely when
2690 // know that the lists are identical
2691 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2692 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2693 if (!curr.isIdenticalTo(draw)) {
2694 mVisibleRegionsDirty = true;
2695 const size_t cc = curr.size();
2696 size_t dc = draw.size();
2697
2698 // find the displays that were removed
2699 // (ie: in drawing state but not in current state)
2700 // also handle displays that changed
2701 // (ie: displays that are in both lists)
2702 for (size_t i = 0; i < dc;) {
2703 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2704 if (j < 0) {
2705 // in drawing state but not in current state
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002706 if (const auto display = getDisplayDeviceLocked(draw.keyAt(i))) {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002707 // Save display ID before disconnecting.
2708 const auto displayId = display->getId();
Lloyd Pique45a165a2018-10-19 11:54:47 -07002709 display->disconnect();
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002710
2711 if (!display->isVirtual()) {
2712 LOG_ALWAYS_FATAL_IF(!displayId);
2713 dispatchDisplayHotplugEvent(displayId->value, false);
2714 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002715 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002716
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002717 mDisplays.erase(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002718 } else {
2719 // this display is in both lists. see if something changed.
2720 const DisplayDeviceState& state(curr[j]);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002721 const wp<IBinder>& displayToken = curr.keyAt(j);
Lloyd Pique347200f2017-12-14 17:00:15 -08002722 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2723 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2724 if (state_binder != draw_binder) {
2725 // changing the surface is like destroying and
2726 // recreating the DisplayDevice, so we just remove it
2727 // from the drawing state, so that it get re-added
2728 // below.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002729 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique45a165a2018-10-19 11:54:47 -07002730 display->disconnect();
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002731 }
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002732 mDisplays.erase(displayToken);
Lloyd Pique347200f2017-12-14 17:00:15 -08002733 mDrawingState.displays.removeItemsAt(i);
2734 dc--;
2735 // at this point we must loop to the next item
2736 continue;
2737 }
2738
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002739 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002740 if (state.layerStack != draw[i].layerStack) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002741 display->setLayerStack(state.layerStack);
Lloyd Pique347200f2017-12-14 17:00:15 -08002742 }
2743 if ((state.orientation != draw[i].orientation) ||
2744 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002745 display->setProjection(state.orientation, state.viewport, state.frame);
Lloyd Pique347200f2017-12-14 17:00:15 -08002746 }
2747 if (state.width != draw[i].width || state.height != draw[i].height) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002748 display->setDisplaySize(state.width, state.height);
Lloyd Pique347200f2017-12-14 17:00:15 -08002749 }
2750 }
2751 }
2752 ++i;
2753 }
2754
2755 // find displays that were added
2756 // (ie: in current state but not in drawing state)
2757 for (size_t i = 0; i < cc; i++) {
2758 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2759 const DisplayDeviceState& state(curr[i]);
2760
Lloyd Pique542307f2018-10-19 13:24:08 -07002761 sp<compositionengine::DisplaySurface> dispSurface;
Lloyd Pique347200f2017-12-14 17:00:15 -08002762 sp<IGraphicBufferProducer> producer;
2763 sp<IGraphicBufferProducer> bqProducer;
2764 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique90c115d2018-09-18 21:39:42 -07002765 getFactory().createBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002766
Dominik Laskowski075d3172018-05-24 15:50:06 -07002767 std::optional<DisplayId> displayId;
Dominik Laskowski663bd282018-04-19 15:26:54 -07002768 if (state.isVirtual()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002769 // Virtual displays without a surface are dormant:
2770 // they have external state (layer stack, projection,
2771 // etc.) but no internal state (i.e. a DisplayDevice).
2772 if (state.surface != nullptr) {
2773 // Allow VR composer to use virtual displays.
Dominik Laskowski075d3172018-05-24 15:50:06 -07002774 if (mUseHwcVirtualDisplays || getHwComposer().isUsingVrComposer()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002775 int width = 0;
2776 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2777 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2778 int height = 0;
2779 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2780 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2781 int intFormat = 0;
2782 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2783 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
Peiyong Lin34beb7a2018-03-28 11:57:12 -07002784 auto format = static_cast<ui::PixelFormat>(intFormat);
Lloyd Pique347200f2017-12-14 17:00:15 -08002785
Dominik Laskowski075d3172018-05-24 15:50:06 -07002786 displayId =
2787 getHwComposer().allocateVirtualDisplay(width, height, &format);
Lloyd Pique347200f2017-12-14 17:00:15 -08002788 }
2789
2790 // TODO: Plumb requested format back up to consumer
2791
2792 sp<VirtualDisplaySurface> vds =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002793 new VirtualDisplaySurface(getHwComposer(), displayId, state.surface,
Lloyd Pique347200f2017-12-14 17:00:15 -08002794 bqProducer, bqConsumer,
2795 state.displayName);
2796
2797 dispSurface = vds;
2798 producer = vds;
2799 }
2800 } else {
2801 ALOGE_IF(state.surface != nullptr,
2802 "adding a supported display, but rendering "
2803 "surface is provided (%p), ignoring it",
2804 state.surface.get());
2805
Dominik Laskowski075d3172018-05-24 15:50:06 -07002806 displayId = state.displayId;
2807 LOG_ALWAYS_FATAL_IF(!displayId);
2808 dispSurface = new FramebufferSurface(getHwComposer(), *displayId, bqConsumer);
Lloyd Pique347200f2017-12-14 17:00:15 -08002809 producer = bqProducer;
2810 }
2811
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002812 const wp<IBinder>& displayToken = curr.keyAt(i);
Lloyd Pique347200f2017-12-14 17:00:15 -08002813 if (dispSurface != nullptr) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002814 mDisplays.emplace(displayToken,
Dominik Laskowski7e045462018-05-30 13:02:02 -07002815 setupNewDisplayDeviceInternal(displayToken, displayId, state,
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002816 dispSurface, producer));
Dominik Laskowski663bd282018-04-19 15:26:54 -07002817 if (!state.isVirtual()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002818 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002819 dispatchDisplayHotplugEvent(displayId->value, true);
Lloyd Pique347200f2017-12-14 17:00:15 -08002820 }
2821 }
2822 }
2823 }
2824 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002825
2826 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002827}
2828
Mathias Agopian87baae12012-07-31 12:38:26 -07002829void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002830{
Dan Stoza7dde5992015-05-22 09:51:44 -07002831 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002832 mCurrentState.traverseInZOrder([](Layer* layer) {
2833 layer->notifyAvailableFrames();
2834 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002835
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002836 /*
2837 * Traversal of the children
2838 * (perform the transaction for each of them if needed)
2839 */
2840
Marissa Wall06255332019-03-27 13:48:27 -07002841 if ((transactionFlags & eTraversalNeeded) || mTraversalNeededMainThread) {
Robert Carr2047fae2016-11-28 14:09:09 -08002842 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002843 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002844 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002845
2846 const uint32_t flags = layer->doTransaction(0);
2847 if (flags & Layer::eVisibleRegion)
2848 mVisibleRegionsDirty = true;
Robert Carr720e5062018-07-30 17:45:14 -07002849
2850 if (flags & Layer::eInputInfoChanged) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002851 mInputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002852 }
Robert Carr2047fae2016-11-28 14:09:09 -08002853 });
Marissa Wall06255332019-03-27 13:48:27 -07002854 mTraversalNeededMainThread = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002855 }
2856
2857 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002858 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002859 */
2860
Mathias Agopiane57f2922012-08-09 16:29:12 -07002861 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002862 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002863 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002864 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002865
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002866 if (transactionFlags & (eDisplayLayerStackChanged|eDisplayTransactionNeeded)) {
Mathias Agopian84300952012-11-21 16:02:13 -08002867 // The transform hint might have changed for some layers
2868 // (either because a display has changed, or because a layer
2869 // as changed).
2870 //
2871 // Walk through all the layers in currentLayers,
2872 // and update their transform hint.
2873 //
2874 // If a layer is visible only on a single display, then that
2875 // display is used to calculate the hint, otherwise we use the
2876 // default display.
2877 //
2878 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2879 // the hint is set before we acquire a buffer from the surface texture.
2880 //
2881 // NOTE: layer transactions have taken place already, so we use their
2882 // drawing state. However, SurfaceFlinger's own transaction has not
2883 // happened yet, so we must use the current state layer list
2884 // (soon to become the drawing state list).
2885 //
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002886 sp<const DisplayDevice> hintDisplay;
Mathias Agopian84300952012-11-21 16:02:13 -08002887 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002888 bool first = true;
2889 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002890 // NOTE: we rely on the fact that layers are sorted by
2891 // layerStack first (so we don't have to traverse the list
2892 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002893 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002894 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002895 currentlayerStack = layerStack;
2896 // figure out if this layerstack is mirrored
2897 // (more than one display) if so, pick the default display,
2898 // if not, pick the only display it's on.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002899 hintDisplay = nullptr;
2900 for (const auto& [token, display] : mDisplays) {
Lloyd Piqueef36b002019-01-23 17:52:04 -08002901 if (display->getCompositionDisplay()
2902 ->belongsInOutput(layer->getLayerStack(),
2903 layer->getPrimaryDisplayOnly())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002904 if (hintDisplay) {
2905 hintDisplay = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002906 break;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002907 } else {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002908 hintDisplay = display;
Mathias Agopian84300952012-11-21 16:02:13 -08002909 }
2910 }
2911 }
2912 }
Chet Haase91d25932013-04-11 15:24:55 -07002913
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002914 if (!hintDisplay) {
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002915 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2916 // redraw after transform hint changes. See bug 8508397.
Robert Carr56a0b9a2017-12-04 16:06:13 -08002917
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002918 // could be null when this layer is using a layerStack
2919 // that is not visible on any display. Also can occur at
2920 // screen off/on times.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002921 hintDisplay = getDefaultDisplayDeviceLocked();
Mathias Agopian84300952012-11-21 16:02:13 -08002922 }
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002923
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002924 // could be null if there is no display available at all to get
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002925 // the transform hint from.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002926 if (hintDisplay) {
2927 layer->updateTransformHint(hintDisplay);
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002928 }
Robert Carr2047fae2016-11-28 14:09:09 -08002929
2930 first = false;
2931 });
Mathias Agopian84300952012-11-21 16:02:13 -08002932 }
2933
2934
Mathias Agopian3559b072012-08-15 13:46:03 -07002935 /*
2936 * Perform our own transaction if needed
2937 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002938
2939 if (mLayersAdded) {
2940 mLayersAdded = false;
2941 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002942 mVisibleRegionsDirty = true;
2943 }
2944
2945 // some layers might have been removed, so
2946 // we need to update the regions they're exposing.
2947 if (mLayersRemoved) {
2948 mLayersRemoved = false;
2949 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002950 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002951 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002952 // this layer is not visible anymore
Robert Carr1f0a16a2016-10-24 16:27:39 -07002953 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002954 visibleReg.set(layer->getScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002955 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002956 }
Robert Carr2047fae2016-11-28 14:09:09 -08002957 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002958 }
2959
Vishnu Nairec0ab382019-02-13 15:32:56 -08002960 commitInputWindowCommands();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002961 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002962}
2963
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002964void SurfaceFlinger::updateInputFlinger() {
Robert Carr720e5062018-07-30 17:45:14 -07002965 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002966 if (!mInputFlinger) {
Vishnu Nairde19f852018-12-18 16:11:53 -08002967 return;
2968 }
2969
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002970 if (mVisibleRegionsDirty || mInputInfoChanged) {
2971 mInputInfoChanged = false;
2972 updateInputWindowInfo();
chaviw95ef3c42019-02-14 10:55:09 -08002973 } else if (mInputWindowCommands.syncInputWindows) {
2974 // If the caller requested to sync input windows, but there are no
2975 // changes to input windows, notify immediately.
2976 setInputWindowsFinished();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002977 }
2978
2979 executeInputWindowCommands();
2980}
2981
2982void SurfaceFlinger::updateInputWindowInfo() {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002983 std::vector<InputWindowInfo> inputHandles;
Robert Carr720e5062018-07-30 17:45:14 -07002984
2985 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
2986 if (layer->hasInput()) {
Vishnu Nair51625fa2018-12-06 13:54:33 -08002987 // When calculating the screen bounds we ignore the transparent region since it may
2988 // result in an unwanted offset.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002989 inputHandles.push_back(layer->fillInputInfo());
Robert Carr720e5062018-07-30 17:45:14 -07002990 }
2991 });
chaviw291d88a2019-02-14 10:33:58 -08002992
2993 mInputFlinger->setInputWindows(inputHandles,
2994 mInputWindowCommands.syncInputWindows ? mSetInputWindowsListener
2995 : nullptr);
Robert Carr720e5062018-07-30 17:45:14 -07002996}
2997
Vishnu Nairec0ab382019-02-13 15:32:56 -08002998void SurfaceFlinger::commitInputWindowCommands() {
chaviw4fe36852019-04-15 16:25:49 -07002999 mInputWindowCommands = mPendingInputWindowCommands;
Vishnu Nairec0ab382019-02-13 15:32:56 -08003000 mPendingInputWindowCommands.clear();
3001}
3002
chaviwfbe5d9c2018-12-26 12:23:37 -08003003void SurfaceFlinger::executeInputWindowCommands() {
chaviwfbe5d9c2018-12-26 12:23:37 -08003004 for (const auto& transferTouchFocusCommand : mInputWindowCommands.transferTouchFocusCommands) {
3005 if (transferTouchFocusCommand.fromToken != nullptr &&
3006 transferTouchFocusCommand.toToken != nullptr &&
3007 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) {
3008 mInputFlinger->transferTouchFocus(transferTouchFocusCommand.fromToken,
3009 transferTouchFocusCommand.toToken);
3010 }
3011 }
3012
3013 mInputWindowCommands.clear();
3014}
3015
Riley Andrews03414a12014-07-01 14:22:59 -07003016void SurfaceFlinger::updateCursorAsync()
3017{
Dominik Laskowski9fae1022018-05-29 13:17:40 -07003018 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003019 if (!display->getId()) {
Riley Andrews03414a12014-07-01 14:22:59 -07003020 continue;
3021 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08003022
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003023 for (auto& layer : display->getVisibleLayersSortedByZ()) {
3024 layer->updateCursorPosition(display);
Riley Andrews03414a12014-07-01 14:22:59 -07003025 }
3026 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003027}
3028
chaviw61626f22018-11-15 16:26:27 -08003029void SurfaceFlinger::latchAndReleaseBuffer(const sp<Layer>& layer) {
3030 if (layer->hasReadyFrame()) {
Robert Carra0629232019-02-07 15:28:54 -08003031 bool ignored = false;
Alec Mouri56e538f2019-01-14 15:22:01 -08003032 layer->latchBuffer(ignored, systemTime());
chaviw61626f22018-11-15 16:26:27 -08003033 }
3034 layer->releasePendingBuffer(systemTime());
3035}
3036
Mathias Agopian4fec8732012-06-29 14:12:52 -07003037void SurfaceFlinger::commitTransaction()
3038{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00003039 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07003040 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07003041 for (const auto& l : mLayersPendingRemoval) {
3042 recordBufferingStats(l->getName().string(),
3043 l->getOccupancyHistory(true));
Robert Carr2e102c92018-10-23 12:11:15 -07003044
Lloyd Pique07e33212018-12-18 16:33:37 -08003045 // Ensure any buffers set to display on any children are released.
Robert Carr2e102c92018-10-23 12:11:15 -07003046 if (l->isRemovedFromCurrentState()) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08003047 latchAndReleaseBuffer(l);
Robert Carr2e102c92018-10-23 12:11:15 -07003048 }
chaviw74d90ad2019-04-26 14:45:26 -07003049
3050 // If the layer has been removed and has no parent, then it will not be reachable
3051 // when traversing layers on screen. Add the layer to the offscreenLayers set to
3052 // ensure we can copy its current to drawing state.
3053 if (!l->getParent()) {
3054 mOffscreenLayers.emplace(l.get());
3055 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003056 }
3057 mLayersPendingRemoval.clear();
3058 }
3059
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003060 // If this transaction is part of a window animation then the next frame
3061 // we composite should be considered an animation as well.
3062 mAnimCompositionPending = mAnimTransactionPending;
3063
Nataniel Borges2b796da2019-02-15 13:32:18 -08003064 withTracingLock([&]() {
3065 mDrawingState = mCurrentState;
3066 // clear the "changed" flags in current state
3067 mCurrentState.colorMatrixChanged = false;
Chia-I Wu28f320b2018-05-03 11:02:56 -07003068
chaviw74d90ad2019-04-26 14:45:26 -07003069 mDrawingState.traverseInZOrder([&](Layer* layer) {
3070 layer->commitChildList();
3071
3072 // If the layer can be reached when traversing mDrawingState, then the layer is no
3073 // longer offscreen. Remove the layer from the offscreenLayer set.
3074 if (mOffscreenLayers.count(layer)) {
3075 mOffscreenLayers.erase(layer);
3076 }
3077 });
3078
3079 commitOffscreenLayers();
Robert Carr1f0a16a2016-10-24 16:27:39 -07003080 });
Nataniel Borges2b796da2019-02-15 13:32:18 -08003081
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003082 mTransactionPending = false;
3083 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003084 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003085}
3086
Nataniel Borges2b796da2019-02-15 13:32:18 -08003087void SurfaceFlinger::withTracingLock(std::function<void()> lockedOperation) {
3088 if (mTracingEnabledChanged) {
3089 mTracingEnabled = mTracing.isEnabled();
3090 mTracingEnabledChanged = false;
3091 }
3092
3093 // Synchronize with Tracing thread
3094 std::unique_lock<std::mutex> lock;
3095 if (mTracingEnabled) {
3096 lock = std::unique_lock<std::mutex>(mDrawingStateLock);
3097 }
3098
3099 lockedOperation();
3100
3101 // Synchronize with Tracing thread
3102 if (mTracingEnabled) {
3103 lock.unlock();
3104 }
3105}
3106
chaviw74d90ad2019-04-26 14:45:26 -07003107void SurfaceFlinger::commitOffscreenLayers() {
3108 for (Layer* offscreenLayer : mOffscreenLayers) {
3109 offscreenLayer->traverseInZOrder(LayerVector::StateSet::Drawing, [](Layer* layer) {
3110 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
3111 if (!trFlags) return;
3112
3113 layer->doTransaction(0);
3114 layer->commitChildList();
3115 });
3116 }
3117}
3118
Lloyd Pique32cbe282018-10-19 13:09:22 -07003119void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003120 Region& outDirtyRegion, Region& outOpaqueRegion) {
Mathias Agopian841cde52012-03-01 15:44:37 -08003121 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003122 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08003123
Lloyd Pique32cbe282018-10-19 13:09:22 -07003124 auto display = displayDevice->getCompositionDisplay();
3125
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003126 Region aboveOpaqueLayers;
3127 Region aboveCoveredLayers;
3128 Region dirty;
3129
Mathias Agopian87baae12012-07-31 12:38:26 -07003130 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003131
Robert Carr2047fae2016-11-28 14:09:09 -08003132 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003133 // start with the whole surface at its current location
3134 const Layer::State& s(layer->getDrawingState());
3135
Jesse Hall01e29052013-02-19 16:13:35 -08003136 // only consider the layers on the given layer stack
Lloyd Piqueef36b002019-01-23 17:52:04 -08003137 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Robert Carr2047fae2016-11-28 14:09:09 -08003138 return;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003139 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003140
Mathias Agopianab028732010-03-16 16:41:46 -07003141 /*
3142 * opaqueRegion: area of a surface that is fully opaque.
3143 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003144 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003145
3146 /*
3147 * visibleRegion: area of a surface that is visible on screen
3148 * and not fully transparent. This is essentially the layer's
3149 * footprint minus the opaque regions above it.
3150 * Areas covered by a translucent surface are considered visible.
3151 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003152 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003153
3154 /*
3155 * coveredRegion: area of a surface that is covered by all
3156 * visible regions above it (which includes the translucent areas).
3157 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003158 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003159
Jesse Halla8026d22012-09-25 13:25:04 -07003160 /*
3161 * transparentRegion: area of a surface that is hinted to be completely
3162 * transparent. This is only used to tell when the layer has no visible
3163 * non-transparent regions and can be removed from the layer list. It
3164 * does not affect the visibleRegion of this layer or any layers
3165 * beneath it. The hint may not be correct if apps don't respect the
3166 * SurfaceView restrictions (which, sadly, some don't).
3167 */
3168 Region transparentRegion;
3169
Mathias Agopianab028732010-03-16 16:41:46 -07003170
3171 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07003172 if (CC_LIKELY(layer->isVisible())) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003173 const bool translucent = !layer->isOpaque(s);
Vishnu Nair4351ad52019-02-11 14:13:02 -08003174 Rect bounds(layer->getScreenBounds());
Robert Carr720e5062018-07-30 17:45:14 -07003175
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003176 visibleRegion.set(bounds);
Peiyong Linefefaac2018-08-17 12:27:51 -07003177 ui::Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07003178 if (!visibleRegion.isEmpty()) {
3179 // Remove the transparent area from the visible region
3180 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003181 if (tr.preserveRects()) {
3182 // transform the transparent region
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003183 transparentRegion = tr.transform(layer->getActiveTransparentRegion(s));
Mathias Agopian4fec8732012-06-29 14:12:52 -07003184 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003185 // transformation too complex, can't do the
3186 // transparent region optimization.
3187 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07003188 }
Mathias Agopianab028732010-03-16 16:41:46 -07003189 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003190
Mathias Agopianab028732010-03-16 16:41:46 -07003191 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07003192 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02003193 if (layer->getAlpha() == 1.0f && !translucent &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003194 layer->getRoundedCornerState().radius == 0.0f &&
Peiyong Linefefaac2018-08-17 12:27:51 -07003195 ((layerOrientation & ui::Transform::ROT_INVALID) == false)) {
Mathias Agopianab028732010-03-16 16:41:46 -07003196 // the opaque region is the layer's footprint
3197 opaqueRegion = visibleRegion;
3198 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003199 }
3200 }
3201
Robert Carre5f4f692018-01-12 13:12:28 -08003202 if (visibleRegion.isEmpty()) {
3203 layer->clearVisibilityRegions();
3204 return;
3205 }
3206
Mathias Agopianab028732010-03-16 16:41:46 -07003207 // Clip the covered region to the visible region
3208 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
3209
3210 // Update aboveCoveredLayers for next (lower) layer
3211 aboveCoveredLayers.orSelf(visibleRegion);
3212
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003213 // subtract the opaque region covered by the layers above us
3214 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003215
3216 // compute this layer's dirty region
3217 if (layer->contentDirty) {
3218 // we need to invalidate the whole region
3219 dirty = visibleRegion;
3220 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07003221 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003222 layer->contentDirty = false;
3223 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003224 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07003225 * the exposed region consists of two components:
3226 * 1) what's VISIBLE now and was COVERED before
3227 * 2) what's EXPOSED now less what was EXPOSED before
3228 *
3229 * note that (1) is conservative, we start with the whole
3230 * visible region but only keep what used to be covered by
3231 * something -- which mean it may have been exposed.
3232 *
3233 * (2) handles areas that were not covered by anything but got
3234 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003235 */
Mathias Agopianab028732010-03-16 16:41:46 -07003236 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003237 const Region oldVisibleRegion = layer->visibleRegion;
3238 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003239 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
3240 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003241 }
3242 dirty.subtractSelf(aboveOpaqueLayers);
3243
3244 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07003245 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003246
Mathias Agopianab028732010-03-16 16:41:46 -07003247 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003248 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003249
Jesse Halla8026d22012-09-25 13:25:04 -07003250 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003251 layer->setVisibleRegion(visibleRegion);
3252 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07003253 layer->setVisibleNonTransparentRegion(
3254 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08003255 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003256
Mathias Agopian87baae12012-07-31 12:38:26 -07003257 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003258}
3259
Chia-I Wuab0c3192017-08-01 11:29:00 -07003260void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003261 for (const auto& [token, displayDevice] : mDisplays) {
3262 auto display = displayDevice->getCompositionDisplay();
Lloyd Piqueef36b002019-01-23 17:52:04 -08003263 if (display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003264 display->editState().dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07003265 }
3266 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003267}
3268
Dan Stoza6b9454d2014-11-07 16:00:59 -08003269bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003270{
Ady Abraham09bd3922019-04-08 10:44:56 -07003271 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003272 ALOGV("handlePageFlip");
3273
Brian Andersond6927fb2016-07-23 23:37:30 -07003274 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003275
Mathias Agopian4fec8732012-06-29 14:12:52 -07003276 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003277 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06003278 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07003279
3280 // Store the set of layers that need updates. This set must not change as
3281 // buffers are being latched, as this could result in a deadlock.
3282 // Example: Two producers share the same command stream and:
3283 // 1.) Layer 0 is latched
3284 // 2.) Layer 0 gets a new frame
3285 // 2.) Layer 1 gets a new frame
3286 // 3.) Layer 1 is latched.
3287 // Display is now waiting on Layer 1's frame, which is behind layer 0's
3288 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08003289 mDrawingState.traverseInZOrder([&](Layer* layer) {
Marissa Wallfd668622018-05-10 10:21:13 -07003290 if (layer->hasReadyFrame()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003291 frameQueued = true;
Alec Mouri746654a2019-06-06 13:28:34 -07003292 const nsecs_t expectedPresentTime = getExpectedPresentTime();
Ana Krulec010d2192018-10-08 06:29:54 -07003293 if (layer->shouldPresentNow(expectedPresentTime)) {
Robert Carr2047fae2016-11-28 14:09:09 -08003294 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07003295 } else {
Ady Abraham09bd3922019-04-08 10:44:56 -07003296 ATRACE_NAME("!layer->shouldPresentNow()");
Dan Stozaee44edd2015-03-23 15:50:23 -07003297 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003298 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003299 } else {
3300 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003301 }
Robert Carr2047fae2016-11-28 14:09:09 -08003302 });
3303
Lloyd Piquef2c79392018-12-20 16:23:33 -08003304 if (!mLayersWithQueuedFrames.empty()) {
3305 // mStateLock is needed for latchBuffer as LayerRejecter::reject()
3306 // writes to Layer current state. See also b/119481871
3307 Mutex::Autolock lock(mStateLock);
3308
3309 for (auto& layer : mLayersWithQueuedFrames) {
Alec Mouri56e538f2019-01-14 15:22:01 -08003310 if (layer->latchBuffer(visibleRegions, latchTime)) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08003311 mLayersPendingRefresh.push_back(layer);
3312 }
Lloyd Piquef2c79392018-12-20 16:23:33 -08003313 layer->useSurfaceDamage();
Lloyd Piquef2c79392018-12-20 16:23:33 -08003314 if (layer->isBufferLatched()) {
3315 newDataLatched = true;
3316 }
Mike Stroyan0cd76192017-04-20 12:10:48 -06003317 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003318 }
Mathias Agopian4da75192010-08-10 17:19:56 -07003319
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07003320 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003321
3322 // If we will need to wake up at some time in the future to deal with a
3323 // queued frame that shouldn't be displayed during this vsync period, wake
3324 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07003325 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003326 signalLayerUpdate();
3327 }
3328
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08003329 // enter boot animation on first buffer latch
3330 if (CC_UNLIKELY(mBootStage == BootStage::BOOTLOADER && newDataLatched)) {
3331 ALOGI("Enter boot animation");
3332 mBootStage = BootStage::BOOTANIMATION;
3333 }
3334
Dan Stoza6b9454d2014-11-07 16:00:59 -08003335 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06003336 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003337}
3338
Mathias Agopianad456f92011-01-13 17:53:01 -08003339void SurfaceFlinger::invalidateHwcGeometry()
3340{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003341 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08003342}
3343
Lloyd Pique32cbe282018-10-19 13:09:22 -07003344void SurfaceFlinger::doDisplayComposition(const sp<DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003345 const Region& inDirtyRegion) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003346 auto display = displayDevice->getCompositionDisplay();
Dan Stoza71433162014-02-04 16:22:36 -08003347 // We only need to actually compose the display if:
3348 // 1) It is being handled by hardware composer, which may need this to
3349 // keep its virtual display state machine in sync, or
3350 // 2) There is work to be done (the dirty region isn't empty)
Lloyd Pique32cbe282018-10-19 13:09:22 -07003351 if (!displayDevice->getId() && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08003352 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08003353 return;
3354 }
3355
Dan Stoza9e56aa02015-11-02 13:00:03 -08003356 ALOGV("doDisplayComposition");
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003357 base::unique_fd readyFence;
3358 if (!doComposeSurfaces(displayDevice, Region::INVALID_REGION, &readyFence)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07003359
3360 // swap buffers (presentation)
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003361 display->getRenderSurface()->queueBuffer(std::move(readyFence));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003362}
3363
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003364bool SurfaceFlinger::doComposeSurfaces(const sp<DisplayDevice>& displayDevice,
3365 const Region& debugRegion, base::unique_fd* readyFence) {
Alec Mouri820c7402019-01-23 13:02:39 -08003366 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003367 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07003368
Lloyd Pique32cbe282018-10-19 13:09:22 -07003369 auto display = displayDevice->getCompositionDisplay();
3370 const auto& displayState = display->getState();
Dominik Laskowski7e045462018-05-30 13:02:02 -07003371 const auto displayId = display->getId();
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003372 auto& renderEngine = getRenderEngine();
Peiyong Lin548d4fa2019-04-02 18:14:44 -07003373 const bool supportProtectedContent = renderEngine.supportsProtectedContent();
Lloyd Pique32cbe282018-10-19 13:09:22 -07003374
3375 const Region bounds(displayState.bounds);
3376 const DisplayRenderArea renderArea(displayDevice);
Lloyd Pique441d5042018-10-18 16:49:51 -07003377 const bool hasClientComposition = getHwComposer().hasClientComposition(displayId);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08003378 ATRACE_INT("hasClientComposition", hasClientComposition);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003379
Chia-I Wu8e50e692018-05-04 10:12:37 -07003380 bool applyColorMatrix = false;
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003381
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003382 renderengine::DisplaySettings clientCompositionDisplay;
3383 std::vector<renderengine::LayerSettings> clientCompositionLayers;
3384 sp<GraphicBuffer> buf;
Alec Mouri6338c9d2019-02-07 16:57:51 -08003385 base::unique_fd fd;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003386
Dan Stoza9e56aa02015-11-02 13:00:03 -08003387 if (hasClientComposition) {
3388 ALOGV("hasClientComposition");
3389
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003390 if (displayDevice->isPrimary() && supportProtectedContent) {
3391 bool needsProtected = false;
3392 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
3393 // If the layer is a protected layer, mark protected context is needed.
3394 if (layer->isProtected()) {
3395 needsProtected = true;
3396 break;
3397 }
3398 }
Peiyong Lin52010312019-05-02 14:22:16 -07003399 if (needsProtected != renderEngine.isProtected()) {
3400 renderEngine.useProtectedContext(needsProtected);
3401 }
3402 if (needsProtected != display->getRenderSurface()->isProtected() &&
3403 needsProtected == renderEngine.isProtected()) {
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003404 display->getRenderSurface()->setProtected(needsProtected);
3405 }
3406 }
3407
Alec Mouri6338c9d2019-02-07 16:57:51 -08003408 buf = display->getRenderSurface()->dequeueBuffer(&fd);
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003409
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003410 if (buf == nullptr) {
3411 ALOGW("Dequeuing buffer for display [%s] failed, bailing out of "
3412 "client composition for this frame",
Lloyd Pique32cbe282018-10-19 13:09:22 -07003413 displayDevice->getDisplayName().c_str());
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003414 return false;
3415 }
3416
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003417 clientCompositionDisplay.physicalDisplay = displayState.scissor;
3418 clientCompositionDisplay.clip = displayState.scissor;
3419 const ui::Transform& displayTransform = displayState.transform;
Lloyd Pique7e06e7f2019-03-15 18:36:44 -07003420 clientCompositionDisplay.globalTransform = displayTransform.asMatrix4();
Peiyong Linb1925962019-04-01 16:37:10 -07003421 clientCompositionDisplay.orientation = displayState.orientation;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003422
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003423 const auto* profile = display->getDisplayColorProfile();
Peiyong Lin34beb7a2018-03-28 11:57:12 -07003424 Dataspace outputDataspace = Dataspace::UNKNOWN;
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003425 if (profile->hasWideColorGamut()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003426 outputDataspace = displayState.dataspace;
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003427 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003428 clientCompositionDisplay.outputDataspace = outputDataspace;
3429 clientCompositionDisplay.maxLuminance =
3430 profile->getHdrCapabilities().getDesiredMaxLuminance();
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003431
Lloyd Pique441d5042018-10-18 16:49:51 -07003432 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId);
Peiyong Lined531a32018-10-26 18:27:56 -07003433 const bool skipClientColorTransform =
Lloyd Pique441d5042018-10-18 16:49:51 -07003434 getHwComposer()
3435 .hasDisplayCapability(displayId,
3436 HWC2::DisplayCapability::SkipClientColorTransform);
Chia-I Wu8e50e692018-05-04 10:12:37 -07003437
Peiyong Lind3788632018-09-18 16:01:31 -07003438 // Compute the global color transform matrix.
Chia-I Wu8e50e692018-05-04 10:12:37 -07003439 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform;
3440 if (applyColorMatrix) {
Alec Mouric7e8ce82019-04-02 12:28:05 -07003441 clientCompositionDisplay.colorTransform = displayState.colorTransformMat;
Mathias Agopianf45c5102012-10-24 16:29:17 -07003442 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07003443 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003444
Mathias Agopian85d751c2012-08-29 16:59:24 -07003445 /*
3446 * and then, render the layers targeted at the framebuffer
3447 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003448
Dan Stoza9e56aa02015-11-02 13:00:03 -08003449 ALOGV("Rendering client layers");
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003450 bool firstLayer = true;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003451 Region clearRegion = Region::INVALID_REGION;
Lloyd Pique32cbe282018-10-19 13:09:22 -07003452 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003453 const Region viewportRegion(displayState.viewport);
3454 const Region clip(viewportRegion.intersect(layer->visibleRegion));
David Sodmanc1498e62018-09-12 14:36:26 -07003455 ALOGV("Layer: %s", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003456 ALOGV(" Composition type: %s", toString(layer->getCompositionType(displayDevice)).c_str());
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003457 if (!clip.isEmpty()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003458 switch (layer->getCompositionType(displayDevice)) {
3459 case Hwc2::IComposerClient::Composition::CURSOR:
3460 case Hwc2::IComposerClient::Composition::DEVICE:
3461 case Hwc2::IComposerClient::Composition::SIDEBAND:
3462 case Hwc2::IComposerClient::Composition::SOLID_COLOR: {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003463 LOG_ALWAYS_FATAL_IF(!displayId);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003464 const Layer::State& state(layer->getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003465 if (layer->getClearClientTarget(displayDevice) && !firstLayer &&
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003466 layer->isOpaque(state) && (layer->getAlpha() == 1.0f) &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003467 layer->getRoundedCornerState().radius == 0.0f && hasClientComposition) {
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003468 // never clear the very first layer since we're
3469 // guaranteed the FB is already cleared
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003470 renderengine::LayerSettings layerSettings;
3471 Region dummyRegion;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003472 bool prepared =
3473 layer->prepareClientLayer(renderArea, clip, dummyRegion,
3474 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003475
3476 if (prepared) {
3477 layerSettings.source.buffer.buffer = nullptr;
3478 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
3479 layerSettings.alpha = half(0.0);
3480 layerSettings.disableBlending = true;
3481 clientCompositionLayers.push_back(layerSettings);
3482 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07003483 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003484 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07003485 }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003486 case Hwc2::IComposerClient::Composition::CLIENT: {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003487 renderengine::LayerSettings layerSettings;
3488 bool prepared =
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003489 layer->prepareClientLayer(renderArea, clip, clearRegion,
3490 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003491 if (prepared) {
3492 clientCompositionLayers.push_back(layerSettings);
Peiyong Lind3788632018-09-18 16:01:31 -07003493 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003494 break;
3495 }
3496 default:
3497 break;
Mathias Agopian85d751c2012-08-29 16:59:24 -07003498 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003499 } else {
3500 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07003501 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003502 firstLayer = false;
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003503 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07003504
Alec Mouri820c7402019-01-23 13:02:39 -08003505 // Perform some cleanup steps if we used client composition.
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003506 if (hasClientComposition) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003507 clientCompositionDisplay.clearRegion = clearRegion;
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003508
3509 // We boost GPU frequency here because there will be color spaces conversion
3510 // and it's expensive. We boost the GPU frequency so that GPU composition can
3511 // finish in time. We must reset GPU frequency afterwards, because high frequency
3512 // consumes extra battery.
3513 const bool expensiveRenderingExpected =
3514 clientCompositionDisplay.outputDataspace == Dataspace::DISPLAY_P3;
3515 if (expensiveRenderingExpected && displayId) {
3516 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, true);
3517 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003518 if (!debugRegion.isEmpty()) {
3519 Region::const_iterator it = debugRegion.begin();
3520 Region::const_iterator end = debugRegion.end();
3521 while (it != end) {
3522 const Rect& rect = *it++;
3523 renderengine::LayerSettings layerSettings;
3524 layerSettings.source.buffer.buffer = nullptr;
3525 layerSettings.source.solidColor = half3(1.0, 0.0, 1.0);
3526 layerSettings.geometry.boundaries = rect.toFloatRect();
3527 layerSettings.alpha = half(1.0);
3528 clientCompositionLayers.push_back(layerSettings);
3529 }
3530 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003531 renderEngine.drawLayers(clientCompositionDisplay, clientCompositionLayers,
Alec Mourife0d72b2019-03-21 14:05:56 -07003532 buf->getNativeBuffer(), /*useFramebufferCache=*/true, std::move(fd),
3533 readyFence);
Peiyong Lin8ec87f82019-04-05 11:30:51 -07003534 } else if (displayId) {
3535 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, false);
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003536 }
Michael Lentine3f121fc2014-10-01 11:17:28 -07003537 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003538}
3539
Chia-I Wu28e3a252018-09-07 12:05:02 -07003540void SurfaceFlinger::drawWormhole(const Region& region) const {
Lloyd Pique144e1162017-12-20 16:44:52 -08003541 auto& engine(getRenderEngine());
Chia-I Wu28e3a252018-09-07 12:05:02 -07003542 engine.fillRegionWithColor(region, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003543}
3544
Robert Carrc0df3122019-04-11 13:18:21 -07003545status_t SurfaceFlinger::addClientLayer(const sp<Client>& client, const sp<IBinder>& handle,
3546 const sp<IGraphicBufferProducer>& gbc, const sp<Layer>& lbc,
3547 const sp<IBinder>& parentHandle,
3548 const sp<Layer>& parentLayer, bool addToCurrentState) {
Dan Stoza7d89d062015-04-30 13:29:25 -07003549 // add this layer to the current state list
3550 {
3551 Mutex::Autolock _l(mStateLock);
Robert Carrc0df3122019-04-11 13:18:21 -07003552 sp<Layer> parent;
3553 if (parentHandle != nullptr) {
3554 parent = fromHandle(parentHandle);
3555 if (parent == nullptr) {
3556 return NAME_NOT_FOUND;
3557 }
3558 } else {
3559 parent = parentLayer;
3560 }
3561
Robert Carr1f0a16a2016-10-24 16:27:39 -07003562 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06003563 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
3564 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07003565 return NO_MEMORY;
3566 }
Robert Carrc0df3122019-04-11 13:18:21 -07003567
3568 mLayersByLocalBinderToken.emplace(handle->localBinder(), lbc);
3569
Robert Carrb89ea9d2018-12-10 13:01:14 -08003570 if (parent == nullptr && addToCurrentState) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003571 mCurrentState.layersSortedByZ.add(lbc);
chaviwac841852019-01-16 16:04:43 -08003572 } else if (parent == nullptr) {
3573 lbc->onRemovedFromCurrentState();
3574 } else if (parent->isRemovedFromCurrentState()) {
3575 parent->addChild(lbc);
3576 lbc->onRemovedFromCurrentState();
Robert Carrb89ea9d2018-12-10 13:01:14 -08003577 } else {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003578 parent->addChild(lbc);
3579 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07003580
Yiwei Zhang243b3782018-05-15 17:40:04 -07003581 if (gbc != nullptr) {
3582 mGraphicBufferProducerList.insert(IInterface::asBinder(gbc).get());
3583 LOG_ALWAYS_FATAL_IF(mGraphicBufferProducerList.size() >
3584 mMaxGraphicBufferProducerListSize,
3585 "Suspected IGBP leak: %zu IGBPs (%zu max), %zu Layers",
3586 mGraphicBufferProducerList.size(),
3587 mMaxGraphicBufferProducerListSize, mNumLayers);
3588 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07003589 mLayersAdded = true;
Dan Stoza7d89d062015-04-30 13:29:25 -07003590 }
3591
Mathias Agopian96f08192010-06-02 23:28:45 -07003592 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08003593 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07003594
Dan Stoza7d89d062015-04-30 13:29:25 -07003595 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07003596}
3597
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08003598uint32_t SurfaceFlinger::peekTransactionFlags() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003599 return mTransactionFlags;
Mathias Agopiandea20b12011-05-03 17:04:02 -07003600}
3601
Mathias Agopian3f844832013-08-07 21:24:32 -07003602uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003603 return mTransactionFlags.fetch_and(~flags) & flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003604}
3605
Mathias Agopian3f844832013-08-07 21:24:32 -07003606uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003607 return setTransactionFlags(flags, Scheduler::TransactionStart::NORMAL);
Dan Stoza84d619e2018-03-28 17:07:36 -07003608}
3609
3610uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags,
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003611 Scheduler::TransactionStart transactionStart) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003612 uint32_t old = mTransactionFlags.fetch_or(flags);
Dan Stoza84d619e2018-03-28 17:07:36 -07003613 mVsyncModulator.setTransactionStart(transactionStart);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003614 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003615 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003616 }
3617 return old;
3618}
3619
Marissa Wall713b63f2018-10-17 15:42:43 -07003620bool SurfaceFlinger::flushTransactionQueues() {
Valerie Haufce31b82019-04-30 16:41:14 -07003621 // to prevent onHandleDestroyed from being called while the lock is held,
3622 // we must keep a copy of the transactions (specifically the composer
3623 // states) around outside the scope of the lock
3624 std::vector<const TransactionState> transactions;
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003625 bool flushedATransaction = false;
Valerie Haufce31b82019-04-30 16:41:14 -07003626 {
3627 Mutex::Autolock _l(mStateLock);
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003628
Valerie Haufce31b82019-04-30 16:41:14 -07003629 auto it = mTransactionQueues.begin();
3630 while (it != mTransactionQueues.end()) {
3631 auto& [applyToken, transactionQueue] = *it;
Marissa Wall713b63f2018-10-17 15:42:43 -07003632
Valerie Haufce31b82019-04-30 16:41:14 -07003633 while (!transactionQueue.empty()) {
3634 const auto& transaction = transactionQueue.front();
3635 if (!transactionIsReadyToBeApplied(transaction.desiredPresentTime,
3636 transaction.states)) {
3637 setTransactionFlags(eTransactionFlushNeeded);
3638 break;
3639 }
3640 transactions.push_back(transaction);
3641 applyTransactionState(transaction.states, transaction.displays, transaction.flags,
3642 mPendingInputWindowCommands, transaction.desiredPresentTime,
3643 transaction.buffer, transaction.callback,
3644 transaction.postTime, transaction.privileged,
3645 /*isMainThread*/ true);
3646 transactionQueue.pop();
3647 flushedATransaction = true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003648 }
Marissa Wall713b63f2018-10-17 15:42:43 -07003649
Valerie Haufce31b82019-04-30 16:41:14 -07003650 if (transactionQueue.empty()) {
3651 it = mTransactionQueues.erase(it);
3652 mTransactionCV.broadcast();
3653 } else {
Valerie Haue5562ec2019-05-14 12:39:16 -07003654 it = std::next(it, 1);
Valerie Haufce31b82019-04-30 16:41:14 -07003655 }
Valerie Hauf6016b62019-03-28 10:49:59 -07003656 }
Marissa Wall713b63f2018-10-17 15:42:43 -07003657 }
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003658 return flushedATransaction;
3659}
3660
3661bool SurfaceFlinger::transactionFlushNeeded() {
3662 return !mTransactionQueues.empty();
Marissa Wall713b63f2018-10-17 15:42:43 -07003663}
3664
chaviwca27f252018-02-06 16:46:39 -08003665bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
3666 for (const ComposerState& state : states) {
3667 // Here we need to check that the interface we're given is indeed
3668 // one of our own. A malicious client could give us a nullptr
3669 // IInterface, or one of its own or even one of our own but a
3670 // different type. All these situations would cause us to crash.
3671 if (state.client == nullptr) {
3672 return true;
3673 }
3674
3675 sp<IBinder> binder = IInterface::asBinder(state.client);
3676 if (binder == nullptr) {
3677 return true;
3678 }
3679
3680 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
3681 return true;
3682 }
3683 }
3684 return false;
3685}
3686
Marissa Wall17b4e452018-12-26 16:32:34 -08003687bool SurfaceFlinger::transactionIsReadyToBeApplied(int64_t desiredPresentTime,
3688 const Vector<ComposerState>& states) {
Ady Abraham83127b72019-06-12 17:11:12 -07003689 nsecs_t expectedPresentTime = getExpectedPresentTime();
Marissa Wall17b4e452018-12-26 16:32:34 -08003690 // Do not present if the desiredPresentTime has not passed unless it is more than one second
3691 // in the future. We ignore timestamps more than 1 second in the future for stability reasons.
3692 if (desiredPresentTime >= 0 && desiredPresentTime >= expectedPresentTime &&
3693 desiredPresentTime < expectedPresentTime + s2ns(1)) {
3694 return false;
3695 }
3696
Marissa Wall713b63f2018-10-17 15:42:43 -07003697 for (const ComposerState& state : states) {
3698 const layer_state_t& s = state.state;
3699 if (!(s.what & layer_state_t::eAcquireFenceChanged)) {
3700 continue;
3701 }
3702 if (s.acquireFence && s.acquireFence->getStatus() == Fence::Status::Unsignaled) {
Marissa Wall17b4e452018-12-26 16:32:34 -08003703 return false;
Marissa Wall713b63f2018-10-17 15:42:43 -07003704 }
3705 }
Marissa Wall17b4e452018-12-26 16:32:34 -08003706 return true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003707}
3708
3709void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& states,
3710 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -08003711 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -08003712 const InputWindowCommands& inputWindowCommands,
Marissa Wall78b72202019-03-15 14:58:34 -07003713 int64_t desiredPresentTime,
Marissa Wall947d34e2019-03-29 14:03:53 -07003714 const client_cache_t& uncacheBuffer,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003715 const std::vector<ListenerCallbacks>& listenerCallbacks) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003716 ATRACE_CALL();
Robert Carr14167e02019-02-13 13:50:55 -08003717
Valerie Haubc6ddb12019-03-08 11:10:15 -08003718 const int64_t postTime = systemTime();
3719
Robert Carr14167e02019-02-13 13:50:55 -08003720 bool privileged = callingThreadHasUnscopedSurfaceFlingerAccess();
3721
Mathias Agopian698c0872011-06-28 19:09:31 -07003722 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07003723
chaviwca27f252018-02-06 16:46:39 -08003724 if (containsAnyInvalidClientState(states)) {
3725 return;
3726 }
3727
Marissa Wall713b63f2018-10-17 15:42:43 -07003728 // If its TransactionQueue already has a pending TransactionState or if it is pending
Valerie Hauf6016b62019-03-28 10:49:59 -07003729 auto itr = mTransactionQueues.find(applyToken);
3730 // if this is an animation frame, wait until prior animation frame has
3731 // been applied by SF
3732 if (flags & eAnimation) {
3733 while (itr != mTransactionQueues.end()) {
3734 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3735 if (CC_UNLIKELY(err != NO_ERROR)) {
3736 ALOGW_IF(err == TIMED_OUT,
3737 "setTransactionState timed out "
3738 "waiting for animation frame to apply");
3739 break;
3740 }
3741 itr = mTransactionQueues.find(applyToken);
3742 }
3743 }
3744 if (itr != mTransactionQueues.end() ||
Marissa Wall17b4e452018-12-26 16:32:34 -08003745 !transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Robert Carr14167e02019-02-13 13:50:55 -08003746 mTransactionQueues[applyToken].emplace(states, displays, flags, desiredPresentTime,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003747 uncacheBuffer, listenerCallbacks, postTime,
3748 privileged);
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003749 setTransactionFlags(eTransactionFlushNeeded);
Marissa Wall713b63f2018-10-17 15:42:43 -07003750 return;
3751 }
3752
Valerie Haubc6ddb12019-03-08 11:10:15 -08003753 applyTransactionState(states, displays, flags, inputWindowCommands, desiredPresentTime,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003754 uncacheBuffer, listenerCallbacks, postTime, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003755}
3756
3757void SurfaceFlinger::applyTransactionState(const Vector<ComposerState>& states,
chaviw273171b2018-12-26 11:46:30 -08003758 const Vector<DisplayState>& displays, uint32_t flags,
Robert Carr14167e02019-02-13 13:50:55 -08003759 const InputWindowCommands& inputWindowCommands,
Marissa Wall78b72202019-03-15 14:58:34 -07003760 const int64_t desiredPresentTime,
Marissa Wall947d34e2019-03-29 14:03:53 -07003761 const client_cache_t& uncacheBuffer,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003762 const std::vector<ListenerCallbacks>& listenerCallbacks,
Marissa Wall78b72202019-03-15 14:58:34 -07003763 const int64_t postTime, bool privileged,
3764 bool isMainThread) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003765 uint32_t transactionFlags = 0;
3766
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003767 if (flags & eAnimation) {
3768 // For window updates that are part of an animation we must wait for
3769 // previous animation "frames" to be handled.
Valerie Hau38448362019-04-11 14:49:33 -07003770 while (!isMainThread && mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003771 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003772 if (CC_UNLIKELY(err != NO_ERROR)) {
3773 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003774 // caller after a few seconds.
3775 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3776 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003777 mAnimTransactionPending = false;
3778 break;
3779 }
3780 }
3781 }
3782
chaviwca27f252018-02-06 16:46:39 -08003783 for (const DisplayState& display : displays) {
3784 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003785 }
3786
Marissa Walld600d572019-03-26 15:38:50 -07003787 // In case the client has sent a Transaction that should receive callbacks but without any
3788 // SurfaceControls that should be included in the callback, send the listener and callbackIds
3789 // to the callback thread so it can send an empty callback
3790 if (!listenerCallbacks.empty()) {
3791 mTransactionCompletedThread.run();
3792 }
3793 for (const auto& [listener, callbackIds] : listenerCallbacks) {
3794 mTransactionCompletedThread.addCallback(listener, callbackIds);
3795 }
3796
Marissa Walle2ffb422018-10-12 11:33:52 -07003797 uint32_t clientStateFlags = 0;
chaviwca27f252018-02-06 16:46:39 -08003798 for (const ComposerState& state : states) {
Marissa Wall3dad52d2019-03-22 14:03:19 -07003799 clientStateFlags |= setClientStateLocked(state, desiredPresentTime, listenerCallbacks,
3800 postTime, privileged);
3801 }
3802
Marissa Walle2ffb422018-10-12 11:33:52 -07003803 // If the state doesn't require a traversal and there are callbacks, send them now
Marissa Wallb0022cc2019-04-16 14:19:55 -07003804 if (!(clientStateFlags & eTraversalNeeded) && !listenerCallbacks.empty()) {
Marissa Walle2ffb422018-10-12 11:33:52 -07003805 mTransactionCompletedThread.sendCallbacks();
3806 }
3807 transactionFlags |= clientStateFlags;
chaviwca27f252018-02-06 16:46:39 -08003808
chaviw273171b2018-12-26 11:46:30 -08003809 transactionFlags |= addInputWindowCommands(inputWindowCommands);
3810
Marissa Wall947d34e2019-03-29 14:03:53 -07003811 if (uncacheBuffer.isValid()) {
3812 ClientCache::getInstance().erase(uncacheBuffer);
Marissa Wall78b72202019-03-15 14:58:34 -07003813 }
3814
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003815 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3816 // anyway. This can be used as a flush mechanism for previous async transactions.
3817 // Empty animation transaction can be used to simulate back-pressure, so also force a
3818 // transaction for empty animation transactions.
3819 if (transactionFlags == 0 &&
3820 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003821 transactionFlags = eTransactionNeeded;
3822 }
3823
Marissa Wall06255332019-03-27 13:48:27 -07003824 // If we are on the main thread, we are about to preform a traversal. Clear the traversal bit
3825 // so we don't have to wake up again next frame to preform an uneeded traversal.
3826 if (isMainThread && (transactionFlags & eTraversalNeeded)) {
3827 transactionFlags = transactionFlags & (~eTraversalNeeded);
3828 mTraversalNeededMainThread = true;
3829 }
3830
Mathias Agopian386aa982011-11-07 21:58:03 -08003831 if (transactionFlags) {
Lloyd Pique4dccc412018-01-22 17:21:36 -08003832 if (mInterceptor->isEnabled()) {
3833 mInterceptor->saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003834 }
Irvel468051e2016-06-13 16:44:44 -07003835
Mathias Agopian386aa982011-11-07 21:58:03 -08003836 // this triggers the transaction
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003837 const auto start = (flags & eEarlyWakeup) ? Scheduler::TransactionStart::EARLY
3838 : Scheduler::TransactionStart::NORMAL;
Dan Stoza84d619e2018-03-28 17:07:36 -07003839 setTransactionFlags(transactionFlags, start);
Mathias Agopian386aa982011-11-07 21:58:03 -08003840
3841 // if this is a synchronous transaction, wait for it to take effect
3842 // before returning.
3843 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003844 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003845 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003846 if (flags & eAnimation) {
3847 mAnimTransactionPending = true;
3848 }
chaviw4fe36852019-04-15 16:25:49 -07003849 if (mPendingInputWindowCommands.syncInputWindows) {
3850 mPendingSyncInputWindows = true;
3851 }
Valerie Hau0779ded2019-03-19 12:43:04 -07003852
3853 // applyTransactionState can be called by either the main SF thread or by
3854 // another process through setTransactionState. While a given process may wish
3855 // to wait on synchronous transactions, the main SF thread should never
3856 // be blocked. Therefore, we only wait if isMainThread is false.
3857 while (!isMainThread && (mTransactionPending || mPendingSyncInputWindows)) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003858 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3859 if (CC_UNLIKELY(err != NO_ERROR)) {
3860 // just in case something goes wrong in SF, return to the
3861 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003862 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3863 mTransactionPending = false;
chaviw95ef3c42019-02-14 10:55:09 -08003864 mPendingSyncInputWindows = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003865 break;
3866 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003867 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003868 }
3869}
3870
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003871uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) {
3872 const ssize_t index = mCurrentState.displays.indexOfKey(s.token);
3873 if (index < 0) return 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003874
Mathias Agopiane57f2922012-08-09 16:29:12 -07003875 uint32_t flags = 0;
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003876 DisplayDeviceState& state = mCurrentState.displays.editValueAt(index);
3877
3878 const uint32_t what = s.what;
3879 if (what & DisplayState::eSurfaceChanged) {
3880 if (IInterface::asBinder(state.surface) != IInterface::asBinder(s.surface)) {
3881 state.surface = s.surface;
3882 flags |= eDisplayTransactionNeeded;
Michael Lentine47e45402014-07-18 15:34:25 -07003883 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003884 }
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003885 if (what & DisplayState::eLayerStackChanged) {
3886 if (state.layerStack != s.layerStack) {
3887 state.layerStack = s.layerStack;
3888 flags |= eDisplayTransactionNeeded;
3889 }
3890 }
3891 if (what & DisplayState::eDisplayProjectionChanged) {
3892 if (state.orientation != s.orientation) {
3893 state.orientation = s.orientation;
3894 flags |= eDisplayTransactionNeeded;
3895 }
3896 if (state.frame != s.frame) {
3897 state.frame = s.frame;
3898 flags |= eDisplayTransactionNeeded;
3899 }
3900 if (state.viewport != s.viewport) {
3901 state.viewport = s.viewport;
3902 flags |= eDisplayTransactionNeeded;
3903 }
3904 }
3905 if (what & DisplayState::eDisplaySizeChanged) {
3906 if (state.width != s.width) {
3907 state.width = s.width;
3908 flags |= eDisplayTransactionNeeded;
3909 }
3910 if (state.height != s.height) {
3911 state.height = s.height;
3912 flags |= eDisplayTransactionNeeded;
3913 }
3914 }
3915
Mathias Agopiane57f2922012-08-09 16:29:12 -07003916 return flags;
3917}
3918
Robert Carr14167e02019-02-13 13:50:55 -08003919bool SurfaceFlinger::callingThreadHasUnscopedSurfaceFlingerAccess() {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003920 IPCThreadState* ipc = IPCThreadState::self();
3921 const int pid = ipc->getCallingPid();
3922 const int uid = ipc->getCallingUid();
Robert Carrd4ae7f32018-06-07 16:10:57 -07003923 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Ana Krulec13be8ad2018-08-21 02:43:56 +00003924 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003925 return false;
3926 }
3927 return true;
3928}
3929
Marissa Wall3dad52d2019-03-22 14:03:19 -07003930uint32_t SurfaceFlinger::setClientStateLocked(
3931 const ComposerState& composerState, int64_t desiredPresentTime,
3932 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime,
3933 bool privileged) {
chaviwca27f252018-02-06 16:46:39 -08003934 const layer_state_t& s = composerState.state;
3935 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3936
Mathias Agopian13127d82013-03-05 17:47:11 -08003937 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003938 if (layer == nullptr) {
3939 return 0;
3940 }
3941
chaviw8b3871a2017-11-01 17:41:01 -07003942 uint32_t flags = 0;
3943
Garfield Tan8a3083e2018-12-03 13:21:07 -08003944 const uint64_t what = s.what;
chaviw8b3871a2017-11-01 17:41:01 -07003945 bool geometryAppliesWithResize =
3946 what & layer_state_t::eGeometryAppliesWithResize;
Jorim Jaggidba32732018-05-28 17:43:52 +02003947
3948 // If we are deferring transaction, make sure to push the pending state, as otherwise the
3949 // pending state will also be deferred.
Marissa Wallf58c14b2018-07-24 10:50:43 -07003950 if (what & layer_state_t::eDeferTransaction_legacy) {
Jorim Jaggidba32732018-05-28 17:43:52 +02003951 layer->pushPendingState();
3952 }
3953
chaviw8b3871a2017-11-01 17:41:01 -07003954 if (what & layer_state_t::ePositionChanged) {
3955 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3956 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003957 }
chaviw8b3871a2017-11-01 17:41:01 -07003958 }
3959 if (what & layer_state_t::eLayerChanged) {
3960 // NOTE: index needs to be calculated before we update the state
3961 const auto& p = layer->getParent();
3962 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003963 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003964 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003965 mCurrentState.layersSortedByZ.removeAt(idx);
3966 mCurrentState.layersSortedByZ.add(layer);
3967 // we need traversal (state changed)
3968 // AND transaction (list changed)
3969 flags |= eTransactionNeeded|eTraversalNeeded;
3970 }
chaviw8b3871a2017-11-01 17:41:01 -07003971 } else {
3972 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003973 flags |= eTransactionNeeded|eTraversalNeeded;
3974 }
3975 }
chaviw8b3871a2017-11-01 17:41:01 -07003976 }
3977 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003978 // NOTE: index needs to be calculated before we update the state
3979 const auto& p = layer->getParent();
3980 if (p == nullptr) {
3981 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3982 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3983 mCurrentState.layersSortedByZ.removeAt(idx);
3984 mCurrentState.layersSortedByZ.add(layer);
3985 // we need traversal (state changed)
3986 // AND transaction (list changed)
3987 flags |= eTransactionNeeded|eTraversalNeeded;
3988 }
3989 } else {
3990 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3991 flags |= eTransactionNeeded|eTraversalNeeded;
3992 }
chaviw8b3871a2017-11-01 17:41:01 -07003993 }
3994 }
3995 if (what & layer_state_t::eSizeChanged) {
3996 if (layer->setSize(s.w, s.h)) {
3997 flags |= eTraversalNeeded;
3998 }
3999 }
4000 if (what & layer_state_t::eAlphaChanged) {
4001 if (layer->setAlpha(s.alpha))
4002 flags |= eTraversalNeeded;
4003 }
4004 if (what & layer_state_t::eColorChanged) {
4005 if (layer->setColor(s.color))
4006 flags |= eTraversalNeeded;
4007 }
Peiyong Lind3788632018-09-18 16:01:31 -07004008 if (what & layer_state_t::eColorTransformChanged) {
4009 if (layer->setColorTransform(s.colorTransform)) {
4010 flags |= eTraversalNeeded;
4011 }
4012 }
Valerie Haudd0b7572019-01-29 14:59:27 -08004013 if (what & layer_state_t::eBackgroundColorChanged) {
4014 if (layer->setBackgroundColor(s.color, s.bgColorAlpha, s.bgColorDataspace)) {
4015 flags |= eTraversalNeeded;
4016 }
4017 }
chaviw8b3871a2017-11-01 17:41:01 -07004018 if (what & layer_state_t::eMatrixChanged) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07004019 // TODO: b/109894387
4020 //
4021 // SurfaceFlinger's renderer is not prepared to handle cropping in the face of arbitrary
4022 // rotation. To see the problem observe that if we have a square parent, and a child
4023 // of the same size, then we rotate the child 45 degrees around it's center, the child
4024 // must now be cropped to a non rectangular 8 sided region.
4025 //
4026 // Of course we can fix this in the future. For now, we are lucky, SurfaceControl is
4027 // private API, and the WindowManager only uses rotation in one case, which is on a top
4028 // level layer in which cropping is not an issue.
4029 //
4030 // However given that abuse of rotation matrices could lead to surfaces extending outside
4031 // of cropped areas, we need to prevent non-root clients without permission ACCESS_SURFACE_FLINGER
4032 // (a.k.a. everyone except WindowManager and tests) from setting non rectangle preserving
4033 // transformations.
Robert Carr14167e02019-02-13 13:50:55 -08004034 if (layer->setMatrix(s.matrix, privileged))
chaviw8b3871a2017-11-01 17:41:01 -07004035 flags |= eTraversalNeeded;
4036 }
4037 if (what & layer_state_t::eTransparentRegionChanged) {
4038 if (layer->setTransparentRegionHint(s.transparentRegion))
4039 flags |= eTraversalNeeded;
4040 }
4041 if (what & layer_state_t::eFlagsChanged) {
4042 if (layer->setFlags(s.flags, s.mask))
4043 flags |= eTraversalNeeded;
4044 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07004045 if (what & layer_state_t::eCropChanged_legacy) {
4046 if (layer->setCrop_legacy(s.crop_legacy, !geometryAppliesWithResize))
chaviw8b3871a2017-11-01 17:41:01 -07004047 flags |= eTraversalNeeded;
4048 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -07004049 if (what & layer_state_t::eCornerRadiusChanged) {
4050 if (layer->setCornerRadius(s.cornerRadius))
4051 flags |= eTraversalNeeded;
4052 }
chaviw8b3871a2017-11-01 17:41:01 -07004053 if (what & layer_state_t::eLayerStackChanged) {
4054 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
4055 // We only allow setting layer stacks for top level layers,
4056 // everything else inherits layer stack from its parent.
4057 if (layer->hasParent()) {
4058 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
4059 layer->getName().string());
4060 } else if (idx < 0) {
4061 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
4062 "that also does not appear in the top level layer list. Something"
4063 " has gone wrong.", layer->getName().string());
4064 } else if (layer->setLayerStack(s.layerStack)) {
4065 mCurrentState.layersSortedByZ.removeAt(idx);
4066 mCurrentState.layersSortedByZ.add(layer);
4067 // we need traversal (state changed)
4068 // AND transaction (list changed)
Lloyd Piqued432a7c2018-03-23 16:05:31 -07004069 flags |= eTransactionNeeded|eTraversalNeeded|eDisplayLayerStackChanged;
chaviw8b3871a2017-11-01 17:41:01 -07004070 }
4071 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07004072 if (what & layer_state_t::eDeferTransaction_legacy) {
4073 if (s.barrierHandle_legacy != nullptr) {
4074 layer->deferTransactionUntil_legacy(s.barrierHandle_legacy, s.frameNumber_legacy);
4075 } else if (s.barrierGbp_legacy != nullptr) {
4076 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp_legacy;
chaviw8b3871a2017-11-01 17:41:01 -07004077 if (authenticateSurfaceTextureLocked(gbp)) {
4078 const auto& otherLayer =
4079 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
Marissa Wallf58c14b2018-07-24 10:50:43 -07004080 layer->deferTransactionUntil_legacy(otherLayer, s.frameNumber_legacy);
chaviw8b3871a2017-11-01 17:41:01 -07004081 } else {
4082 ALOGE("Attempt to defer transaction to to an"
4083 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08004084 }
4085 }
chaviw8b3871a2017-11-01 17:41:01 -07004086 // We don't trigger a traversal here because if no other state is
4087 // changed, we don't want this to cause any more work
4088 }
4089 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08004090 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07004091 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08004092 if (!hadParent) {
4093 mCurrentState.layersSortedByZ.remove(layer);
4094 }
chaviw8b3871a2017-11-01 17:41:01 -07004095 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08004096 }
chaviw8b3871a2017-11-01 17:41:01 -07004097 }
4098 if (what & layer_state_t::eReparentChildren) {
4099 if (layer->reparentChildren(s.reparentHandle)) {
4100 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07004101 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07004102 }
chaviw8b3871a2017-11-01 17:41:01 -07004103 if (what & layer_state_t::eDetachChildren) {
4104 layer->detachChildren();
4105 }
4106 if (what & layer_state_t::eOverrideScalingModeChanged) {
4107 layer->setOverrideScalingMode(s.overrideScalingMode);
4108 // We don't trigger a traversal here because if no other state is
4109 // changed, we don't want this to cause any more work
4110 }
Marissa Wall61c58622018-07-18 10:12:20 -07004111 if (what & layer_state_t::eTransformChanged) {
4112 if (layer->setTransform(s.transform)) flags |= eTraversalNeeded;
4113 }
4114 if (what & layer_state_t::eTransformToDisplayInverseChanged) {
4115 if (layer->setTransformToDisplayInverse(s.transformToDisplayInverse))
4116 flags |= eTraversalNeeded;
4117 }
4118 if (what & layer_state_t::eCropChanged) {
4119 if (layer->setCrop(s.crop)) flags |= eTraversalNeeded;
4120 }
Marissa Wall861616d2018-10-22 12:52:23 -07004121 if (what & layer_state_t::eFrameChanged) {
4122 if (layer->setFrame(s.frame)) flags |= eTraversalNeeded;
4123 }
Marissa Wall61c58622018-07-18 10:12:20 -07004124 if (what & layer_state_t::eAcquireFenceChanged) {
4125 if (layer->setAcquireFence(s.acquireFence)) flags |= eTraversalNeeded;
4126 }
4127 if (what & layer_state_t::eDataspaceChanged) {
4128 if (layer->setDataspace(s.dataspace)) flags |= eTraversalNeeded;
4129 }
4130 if (what & layer_state_t::eHdrMetadataChanged) {
4131 if (layer->setHdrMetadata(s.hdrMetadata)) flags |= eTraversalNeeded;
4132 }
4133 if (what & layer_state_t::eSurfaceDamageRegionChanged) {
4134 if (layer->setSurfaceDamageRegion(s.surfaceDamageRegion)) flags |= eTraversalNeeded;
4135 }
4136 if (what & layer_state_t::eApiChanged) {
4137 if (layer->setApi(s.api)) flags |= eTraversalNeeded;
4138 }
4139 if (what & layer_state_t::eSidebandStreamChanged) {
4140 if (layer->setSidebandStream(s.sidebandStream)) flags |= eTraversalNeeded;
4141 }
Robert Carr720e5062018-07-30 17:45:14 -07004142 if (what & layer_state_t::eInputInfoChanged) {
Vishnu Nairce5d0cc2019-02-28 14:38:41 -08004143 if (privileged) {
Robert Carr11ac2012019-01-22 09:05:25 -08004144 layer->setInputInfo(s.inputInfo);
4145 flags |= eTraversalNeeded;
4146 } else {
4147 ALOGE("Attempt to update InputWindowInfo without permission ACCESS_SURFACE_FLINGER");
4148 }
Robert Carr720e5062018-07-30 17:45:14 -07004149 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08004150 if (what & layer_state_t::eMetadataChanged) {
4151 if (layer->setMetadata(s.metadata)) flags |= eTraversalNeeded;
4152 }
Peiyong Linc502cb72019-03-01 15:00:23 -08004153 if (what & layer_state_t::eColorSpaceAgnosticChanged) {
4154 if (layer->setColorSpaceAgnostic(s.colorSpaceAgnostic)) {
4155 flags |= eTraversalNeeded;
4156 }
4157 }
Marissa Walle2ffb422018-10-12 11:33:52 -07004158 std::vector<sp<CallbackHandle>> callbackHandles;
Marissa Wall3dad52d2019-03-22 14:03:19 -07004159 if ((what & layer_state_t::eHasListenerCallbacksChanged) && (!listenerCallbacks.empty())) {
Marissa Wall3dad52d2019-03-22 14:03:19 -07004160 for (const auto& [listener, callbackIds] : listenerCallbacks) {
Marissa Walle2ffb422018-10-12 11:33:52 -07004161 callbackHandles.emplace_back(new CallbackHandle(listener, callbackIds, s.surface));
4162 }
4163 }
Marissa Wall78b72202019-03-15 14:58:34 -07004164 bool bufferChanged = what & layer_state_t::eBufferChanged;
4165 bool cacheIdChanged = what & layer_state_t::eCachedBufferChanged;
4166 sp<GraphicBuffer> buffer;
4167 if (bufferChanged && cacheIdChanged) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004168 ClientCache::getInstance().add(s.cachedBuffer, s.buffer);
Alec Mouri0ff5e8c2019-06-01 18:51:35 -07004169 ClientCache::getInstance().registerErasedRecipient(s.cachedBuffer,
4170 wp<ClientCache::ErasedRecipient>(layer));
4171 getRenderEngine().cacheExternalTextureBuffer(s.buffer);
Marissa Wall78b72202019-03-15 14:58:34 -07004172 buffer = s.buffer;
4173 } else if (cacheIdChanged) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004174 buffer = ClientCache::getInstance().get(s.cachedBuffer);
Marissa Wall78b72202019-03-15 14:58:34 -07004175 } else if (bufferChanged) {
4176 buffer = s.buffer;
Marissa Wall73411622019-01-25 10:45:41 -08004177 }
Marissa Wall78b72202019-03-15 14:58:34 -07004178 if (buffer) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004179 if (layer->setBuffer(buffer, postTime, desiredPresentTime, s.cachedBuffer)) {
Valerie Haubc6ddb12019-03-08 11:10:15 -08004180 flags |= eTraversalNeeded;
Valerie Haubc6ddb12019-03-08 11:10:15 -08004181 }
Marissa Wallebc2c052019-01-16 19:16:55 -08004182 }
Marissa Walle2ffb422018-10-12 11:33:52 -07004183 if (layer->setTransactionCompletedListeners(callbackHandles)) flags |= eTraversalNeeded;
4184 // Do not put anything that updates layer state or modifies flags after
4185 // setTransactionCompletedListener
Mathias Agopiane57f2922012-08-09 16:29:12 -07004186 return flags;
4187}
4188
chaviw273171b2018-12-26 11:46:30 -08004189uint32_t SurfaceFlinger::addInputWindowCommands(const InputWindowCommands& inputWindowCommands) {
4190 uint32_t flags = 0;
4191 if (!inputWindowCommands.transferTouchFocusCommands.empty()) {
4192 flags |= eTraversalNeeded;
4193 }
4194
chaviwa911b102019-02-14 10:18:33 -08004195 if (inputWindowCommands.syncInputWindows) {
4196 flags |= eTraversalNeeded;
4197 }
4198
Vishnu Nairec0ab382019-02-13 15:32:56 -08004199 mPendingInputWindowCommands.merge(inputWindowCommands);
chaviw273171b2018-12-26 11:46:30 -08004200 return flags;
4201}
4202
Marissa Wall2d814fb2019-04-09 18:52:57 +00004203status_t SurfaceFlinger::createLayer(const String8& name, const sp<Client>& client, uint32_t w,
4204 uint32_t h, PixelFormat format, uint32_t flags,
4205 LayerMetadata metadata, sp<IBinder>* handle,
Robert Carrc0df3122019-04-11 13:18:21 -07004206 sp<IGraphicBufferProducer>* gbp,
4207 const sp<IBinder>& parentHandle,
4208 const sp<Layer>& parentLayer) {
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004209 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004210 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004211 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004212 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004213 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07004214
Robert Carrc0df3122019-04-11 13:18:21 -07004215 ALOG_ASSERT(parentLayer == nullptr || parentHandle == nullptr,
4216 "Expected only one of parentLayer or parentHandle to be non-null. "
4217 "Programmer error?");
4218
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004219 status_t result = NO_ERROR;
4220
4221 sp<Layer> layer;
4222
Cody Northropbc755282017-03-31 12:00:08 -06004223 String8 uniqueName = getUniqueLayerName(name);
4224
Evan Roskya1f1e152019-01-24 16:17:46 -08004225 bool primaryDisplayOnly = false;
4226
4227 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
4228 // TODO b/64227542
4229 if (metadata.has(METADATA_WINDOW_TYPE)) {
4230 int32_t windowType = metadata.getInt32(METADATA_WINDOW_TYPE, 0);
4231 if (windowType == 441731) {
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07004232 metadata.setInt32(METADATA_WINDOW_TYPE, InputWindowInfo::TYPE_NAVIGATION_BAR_PANEL);
Evan Roskya1f1e152019-01-24 16:17:46 -08004233 primaryDisplayOnly = true;
4234 }
4235 }
4236
Mathias Agopian3165cc22012-08-08 19:42:09 -07004237 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
Marissa Wall61c58622018-07-18 10:12:20 -07004238 case ISurfaceComposerClient::eFXSurfaceBufferQueue:
Evan Roskya1f1e152019-01-24 16:17:46 -08004239 result = createBufferQueueLayer(client, uniqueName, w, h, flags, std::move(metadata),
4240 format, handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07004241
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004242 break;
Marissa Wall61c58622018-07-18 10:12:20 -07004243 case ISurfaceComposerClient::eFXSurfaceBufferState:
Evan Roskya1f1e152019-01-24 16:17:46 -08004244 result = createBufferStateLayer(client, uniqueName, w, h, flags, std::move(metadata),
4245 handle, &layer);
Marissa Wall61c58622018-07-18 10:12:20 -07004246 break;
chaviw13fdc492017-06-27 12:40:18 -07004247 case ISurfaceComposerClient::eFXSurfaceColor:
Vishnu Nair88a11f22018-11-28 18:30:57 -08004248 // check if buffer size is set for color layer.
4249 if (w > 0 || h > 0) {
4250 ALOGE("createLayer() failed, w or h cannot be set for color layer (w=%d, h=%d)",
4251 int(w), int(h));
4252 return BAD_VALUE;
4253 }
4254
Evan Roskya1f1e152019-01-24 16:17:46 -08004255 result = createColorLayer(client, uniqueName, w, h, flags, std::move(metadata), handle,
4256 &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004257 break;
Robert Carr6b3f6c52018-08-13 13:05:17 -07004258 case ISurfaceComposerClient::eFXSurfaceContainer:
Vishnu Nair88a11f22018-11-28 18:30:57 -08004259 // check if buffer size is set for container layer.
4260 if (w > 0 || h > 0) {
4261 ALOGE("createLayer() failed, w or h cannot be set for container layer (w=%d, h=%d)",
4262 int(w), int(h));
4263 return BAD_VALUE;
4264 }
Evan Roskya1f1e152019-01-24 16:17:46 -08004265 result = createContainerLayer(client, uniqueName, w, h, flags, std::move(metadata),
4266 handle, &layer);
Robert Carr6b3f6c52018-08-13 13:05:17 -07004267 break;
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004268 default:
4269 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004270 break;
4271 }
4272
Dan Stoza7d89d062015-04-30 13:29:25 -07004273 if (result != NO_ERROR) {
4274 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004275 }
Dan Stoza7d89d062015-04-30 13:29:25 -07004276
Evan Roskya1f1e152019-01-24 16:17:46 -08004277 if (primaryDisplayOnly) {
4278 layer->setPrimaryDisplayOnly();
Chia-I Wuab0c3192017-08-01 11:29:00 -07004279 }
4280
Robert Carrb89ea9d2018-12-10 13:01:14 -08004281 bool addToCurrentState = callingThreadHasUnscopedSurfaceFlingerAccess();
Robert Carrc0df3122019-04-11 13:18:21 -07004282 result = addClientLayer(client, *handle, *gbp, layer, parentHandle, parentLayer,
4283 addToCurrentState);
Dan Stoza7d89d062015-04-30 13:29:25 -07004284 if (result != NO_ERROR) {
4285 return result;
4286 }
Lloyd Pique4dccc412018-01-22 17:21:36 -08004287 mInterceptor->saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07004288
4289 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004290 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004291}
4292
Cody Northropbc755282017-03-31 12:00:08 -06004293String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
4294{
4295 bool matchFound = true;
4296 uint32_t dupeCounter = 0;
4297
4298 // Tack on our counter whether there is a hit or not, so everyone gets a tag
4299 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
4300
Dan Stoza436ccf32018-06-21 12:10:12 -07004301 // Grab the state lock since we're accessing mCurrentState
4302 Mutex::Autolock lock(mStateLock);
4303
Cody Northropbc755282017-03-31 12:00:08 -06004304 // Loop over layers until we're sure there is no matching name
4305 while (matchFound) {
4306 matchFound = false;
Dan Stoza436ccf32018-06-21 12:10:12 -07004307 mCurrentState.traverseInZOrder([&](Layer* layer) {
Cody Northropbc755282017-03-31 12:00:08 -06004308 if (layer->getName() == uniqueName) {
4309 matchFound = true;
4310 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
4311 }
4312 });
4313 }
4314
Marissa Wallf1de4bd2018-05-22 13:05:01 -07004315 ALOGV_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(),
4316 uniqueName.c_str());
Cody Northropbc755282017-03-31 12:00:08 -06004317
4318 return uniqueName;
4319}
4320
Marissa Wallfd668622018-05-10 10:21:13 -07004321status_t SurfaceFlinger::createBufferQueueLayer(const sp<Client>& client, const String8& name,
4322 uint32_t w, uint32_t h, uint32_t flags,
Evan Roskya1f1e152019-01-24 16:17:46 -08004323 LayerMetadata metadata, PixelFormat& format,
4324 sp<IBinder>* handle,
Marissa Wallfd668622018-05-10 10:21:13 -07004325 sp<IGraphicBufferProducer>* gbp,
4326 sp<Layer>* outLayer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004327 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07004328 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004329 case PIXEL_FORMAT_TRANSPARENT:
4330 case PIXEL_FORMAT_TRANSLUCENT:
4331 format = PIXEL_FORMAT_RGBA_8888;
4332 break;
4333 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07004334 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004335 break;
4336 }
4337
Evan Roskya1f1e152019-01-24 16:17:46 -08004338 sp<BufferQueueLayer> layer = getFactory().createBufferQueueLayer(
4339 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Marissa Wallfd668622018-05-10 10:21:13 -07004340 status_t err = layer->setDefaultBufferProperties(w, h, format);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004341 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07004342 *handle = layer->getHandle();
4343 *gbp = layer->getProducer();
4344 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004345 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004346
Marissa Wallfd668622018-05-10 10:21:13 -07004347 ALOGE_IF(err, "createBufferQueueLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004348 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004349}
4350
Marissa Wall61c58622018-07-18 10:12:20 -07004351status_t SurfaceFlinger::createBufferStateLayer(const sp<Client>& client, const String8& name,
4352 uint32_t w, uint32_t h, uint32_t flags,
Evan Roskya1f1e152019-01-24 16:17:46 -08004353 LayerMetadata metadata, sp<IBinder>* handle,
4354 sp<Layer>* outLayer) {
4355 sp<BufferStateLayer> layer = getFactory().createBufferStateLayer(
4356 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Marissa Wall61c58622018-07-18 10:12:20 -07004357 *handle = layer->getHandle();
4358 *outLayer = layer;
4359
4360 return NO_ERROR;
4361}
4362
Evan Roskya1f1e152019-01-24 16:17:46 -08004363status_t SurfaceFlinger::createColorLayer(const sp<Client>& client, const String8& name, uint32_t w,
4364 uint32_t h, uint32_t flags, LayerMetadata metadata,
4365 sp<IBinder>* handle, sp<Layer>* outLayer) {
4366 *outLayer = getFactory().createColorLayer(
4367 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004368 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004369 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07004370}
4371
Evan Roskya1f1e152019-01-24 16:17:46 -08004372status_t SurfaceFlinger::createContainerLayer(const sp<Client>& client, const String8& name,
4373 uint32_t w, uint32_t h, uint32_t flags,
4374 LayerMetadata metadata, sp<IBinder>* handle,
4375 sp<Layer>* outLayer) {
4376 *outLayer = getFactory().createContainerLayer(
4377 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Robert Carr6b3f6c52018-08-13 13:05:17 -07004378 *handle = (*outLayer)->getHandle();
4379 return NO_ERROR;
4380}
4381
4382
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004383void SurfaceFlinger::markLayerPendingRemovalLocked(const sp<Layer>& layer) {
Robert Carr2e102c92018-10-23 12:11:15 -07004384 mLayersPendingRemoval.add(layer);
4385 mLayersRemoved = true;
4386 setTransactionFlags(eTransactionNeeded);
4387}
4388
Robert Carr695d5282018-12-18 15:27:58 -08004389void SurfaceFlinger::onHandleDestroyed(sp<Layer>& layer)
Rob Carr4bba3702018-10-08 21:53:30 +00004390{
Robert Carr2e102c92018-10-23 12:11:15 -07004391 Mutex::Autolock lock(mStateLock);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004392 // If a layer has a parent, we allow it to out-live it's handle
4393 // with the idea that the parent holds a reference and will eventually
4394 // be cleaned up. However no one cleans up the top-level so we do so
4395 // here.
4396 if (layer->getParent() == nullptr) {
4397 mCurrentState.layersSortedByZ.remove(layer);
4398 }
4399 markLayerPendingRemovalLocked(layer);
Robert Carrc0df3122019-04-11 13:18:21 -07004400
4401 auto it = mLayersByLocalBinderToken.begin();
4402 while (it != mLayersByLocalBinderToken.end()) {
4403 if (it->second == layer) {
4404 it = mLayersByLocalBinderToken.erase(it);
4405 } else {
4406 it++;
4407 }
4408 }
4409
Robert Carr695d5282018-12-18 15:27:58 -08004410 layer.clear();
Rob Carr4bba3702018-10-08 21:53:30 +00004411}
4412
Mathias Agopianb60314a2012-04-10 22:09:54 -07004413// ---------------------------------------------------------------------------
4414
Andy McFadden13a082e2012-08-24 10:16:42 -07004415void SurfaceFlinger::onInitializeDisplays() {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004416 const auto display = getDefaultDisplayDeviceLocked();
4417 if (!display) return;
4418
4419 const sp<IBinder> token = display->getDisplayToken().promote();
4420 LOG_ALWAYS_FATAL_IF(token == nullptr);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004421
Jesse Hall01e29052013-02-19 16:13:35 -08004422 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07004423 Vector<ComposerState> state;
4424 Vector<DisplayState> displays;
4425 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08004426 d.what = DisplayState::eDisplayProjectionChanged |
4427 DisplayState::eLayerStackChanged;
Dominik Laskowski83b88212018-12-11 13:34:06 -08004428 d.token = token;
Jesse Hall01e29052013-02-19 16:13:35 -08004429 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004430 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07004431 d.frame.makeInvalid();
4432 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07004433 d.width = 0;
4434 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004435 displays.add(d);
Marissa Wall3dad52d2019-03-22 14:03:19 -07004436 setTransactionState(state, displays, 0, nullptr, mPendingInputWindowCommands, -1, {}, {});
Jamie Gennis6547ff42013-07-16 20:12:42 -07004437
Dominik Laskowskie9774092018-12-11 10:04:24 -08004438 setPowerModeInternal(display, HWC_POWER_MODE_NORMAL);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004439
Dominik Laskowski83b88212018-12-11 13:34:06 -08004440 const nsecs_t vsyncPeriod = getVsyncPeriod();
4441 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08004442
Brian Andersond0010582017-03-07 13:20:31 -08004443 // Use phase of 0 since phase is not known.
4444 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004445 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07004446 setCompositorTimingSnapped(stats, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07004447}
4448
4449void SurfaceFlinger::initializeDisplays() {
Dominik Laskowski8c001672018-05-30 16:52:06 -07004450 // Async since we may be called from the main thread.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004451 postMessageAsync(
4452 new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS { onInitializeDisplays(); }));
Andy McFadden13a082e2012-08-24 10:16:42 -07004453}
4454
Ady Abrahamb0006972019-06-11 10:52:26 -07004455void SurfaceFlinger::setVsyncEnabledInHWC(DisplayId displayId, HWC2::Vsync enabled) {
4456 if (mHWCVsyncState != enabled) {
4457 getHwComposer().setVsyncEnabled(displayId, enabled);
4458 mHWCVsyncState = enabled;
4459 }
4460}
4461
Dominik Laskowskie9774092018-12-11 10:04:24 -08004462void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& display, int mode) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004463 if (display->isVirtual()) {
4464 ALOGE("%s: Invalid operation on virtual display", __FUNCTION__);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004465 return;
4466 }
4467
Dominik Laskowski075d3172018-05-24 15:50:06 -07004468 const auto displayId = display->getId();
4469 LOG_ALWAYS_FATAL_IF(!displayId);
4470
Dominik Laskowski34157762018-10-31 13:07:19 -07004471 ALOGD("Setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004472
4473 int currentMode = display->getPowerMode();
4474 if (mode == currentMode) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004475 return;
4476 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004477
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004478 display->setPowerMode(mode);
4479
Lloyd Pique4dccc412018-01-22 17:21:36 -08004480 if (mInterceptor->isEnabled()) {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004481 mInterceptor->savePowerModeUpdate(display->getSequenceId(), mode);
Irvelffc9efc2016-07-27 15:16:37 -07004482 }
4483
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004484 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004485 // Turn on the display
Dominik Laskowski075d3172018-05-24 15:50:06 -07004486 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004487 if (display->isPrimary() && mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ady Abrahamb0006972019-06-11 10:52:26 -07004488 setVsyncEnabledInHWC(*displayId, mHWCVsyncPendingState);
Ana Krulecc2870422019-01-29 19:00:58 -08004489 mScheduler->onScreenAcquired(mAppConnectionHandle);
4490 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004491 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004492
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004493 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08004494 mHasPoweredOff = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07004495 repaintEverything();
Tim Murrayf9d4e442016-08-02 15:43:59 -07004496
4497 struct sched_param param = {0};
4498 param.sched_priority = 1;
4499 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
4500 ALOGW("Couldn't set SCHED_FIFO on display on");
4501 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004502 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004503 // Turn off the display
4504 struct sched_param param = {0};
4505 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
4506 ALOGW("Couldn't set SCHED_OTHER on display off");
4507 }
4508
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004509 if (display->isPrimary() && currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004510 mScheduler->disableHardwareVsync(true);
4511 mScheduler->onScreenReleased(mAppConnectionHandle);
Mathias Agopiancde87a32012-09-13 14:09:01 -07004512 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004513
Ady Abrahamb0006972019-06-11 10:52:26 -07004514 // Make sure HWVsync is disabled before turning off the display
4515 setVsyncEnabledInHWC(*displayId, HWC2::Vsync::Disable);
4516
Dominik Laskowski075d3172018-05-24 15:50:06 -07004517 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004518 mVisibleRegionsDirty = true;
4519 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07004520 } else if (mode == HWC_POWER_MODE_DOZE ||
4521 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004522 // Update display while dozing
Dominik Laskowski075d3172018-05-24 15:50:06 -07004523 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004524 if (display->isPrimary() && currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004525 mScheduler->onScreenAcquired(mAppConnectionHandle);
4526 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004527 }
4528 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
4529 // Leave display going to doze
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004530 if (display->isPrimary()) {
Ana Krulecc2870422019-01-29 19:00:58 -08004531 mScheduler->disableHardwareVsync(true);
4532 mScheduler->onScreenReleased(mAppConnectionHandle);
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004533 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07004534 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004535 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07004536 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Dominik Laskowski075d3172018-05-24 15:50:06 -07004537 getHwComposer().setPowerMode(*displayId, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004538 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004539
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004540 if (display->isPrimary()) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08004541 mTimeStats->setPowerMode(mode);
Dominik Laskowski22488f62019-03-28 09:53:04 -07004542 mRefreshRateStats.setPowerMode(mode);
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004543 }
4544
Dominik Laskowski34157762018-10-31 13:07:19 -07004545 ALOGD("Finished setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004546}
4547
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004548void SurfaceFlinger::setPowerMode(const sp<IBinder>& displayToken, int mode) {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004549 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004550 const auto display = getDisplayDevice(displayToken);
4551 if (!display) {
4552 ALOGE("Attempt to set power mode %d for invalid display token %p", mode,
4553 displayToken.get());
4554 } else if (display->isVirtual()) {
4555 ALOGW("Attempt to set power mode %d for virtual display", mode);
4556 } else {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004557 setPowerModeInternal(display, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004558 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004559 }));
Mathias Agopianb60314a2012-04-10 22:09:54 -07004560}
4561
4562// ---------------------------------------------------------------------------
4563
Dominik Laskowskic2867142019-01-21 11:33:38 -08004564status_t SurfaceFlinger::doDump(int fd, const DumpArgs& args,
4565 bool asProto) NO_THREAD_SAFETY_ANALYSIS {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004566 std::string result;
Mathias Agopian99b49842011-06-27 16:05:52 -07004567
Mathias Agopianbd115332013-04-18 16:41:04 -07004568 IPCThreadState* ipc = IPCThreadState::self();
4569 const int pid = ipc->getCallingPid();
4570 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07004571
Mathias Agopianbd115332013-04-18 16:41:04 -07004572 if ((uid != AID_SHELL) &&
4573 !PermissionCache::checkPermission(sDump, pid, uid)) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004574 StringAppendF(&result, "Permission Denial: can't dump SurfaceFlinger from pid=%d, uid=%d\n",
4575 pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004576 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08004577 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07004578 // (this would indicate SF is stuck, but we want to be able to
4579 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08004580 status_t err = mStateLock.timedLock(s2ns(1));
4581 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07004582 if (!locked) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004583 StringAppendF(&result,
4584 "SurfaceFlinger appears to be unresponsive (%s [%d]), dumping anyways "
4585 "(no locks held)\n",
4586 strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07004587 }
4588
Dominik Laskowskic2867142019-01-21 11:33:38 -08004589 using namespace std::string_literals;
chaviwa3d7bd32017-11-03 09:41:53 -07004590
Dominik Laskowskic2867142019-01-21 11:33:38 -08004591 static const std::unordered_map<std::string, Dumper> dumpers = {
4592 {"--clear-layer-stats"s, dumper([this](std::string&) { mLayerStats.clear(); })},
4593 {"--disable-layer-stats"s, dumper([this](std::string&) { mLayerStats.disable(); })},
4594 {"--display-id"s, dumper(&SurfaceFlinger::dumpDisplayIdentificationData)},
Ady Abraham3aff9172019-02-07 19:10:26 -08004595 {"--dispsync"s, dumper([this](std::string& s) {
Ady Abraham3aff9172019-02-07 19:10:26 -08004596 mScheduler->dumpPrimaryDispSync(s);
Ady Abraham3aff9172019-02-07 19:10:26 -08004597 })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004598 {"--dump-layer-stats"s, dumper([this](std::string& s) { mLayerStats.dump(s); })},
4599 {"--enable-layer-stats"s, dumper([this](std::string&) { mLayerStats.enable(); })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004600 {"--frame-events"s, dumper(&SurfaceFlinger::dumpFrameEventsLocked)},
4601 {"--latency"s, argsDumper(&SurfaceFlinger::dumpStatsLocked)},
4602 {"--latency-clear"s, argsDumper(&SurfaceFlinger::clearStatsLocked)},
4603 {"--list"s, dumper(&SurfaceFlinger::listLayersLocked)},
4604 {"--static-screen"s, dumper(&SurfaceFlinger::dumpStaticScreenStats)},
4605 {"--timestats"s, protoDumper(&SurfaceFlinger::dumpTimeStats)},
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004606 {"--vsync"s, dumper(&SurfaceFlinger::dumpVSync)},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004607 {"--wide-color"s, dumper(&SurfaceFlinger::dumpWideColorInfo)},
4608 };
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004609
Dominik Laskowskic2867142019-01-21 11:33:38 -08004610 const auto flag = args.empty() ? ""s : std::string(String8(args[0]));
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004611
Dominik Laskowskic2867142019-01-21 11:33:38 -08004612 if (const auto it = dumpers.find(flag); it != dumpers.end()) {
4613 (it->second)(args, asProto, result);
4614 } else {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004615 if (asProto) {
4616 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4617 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
4618 } else {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004619 dumpAllLocked(args, result);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004620 }
Mathias Agopian48b888a2011-01-19 16:15:53 -08004621 }
4622
Mathias Agopian9795c422009-08-26 16:36:26 -07004623 if (locked) {
4624 mStateLock.unlock();
4625 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004626 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004627 write(fd, result.c_str(), result.size());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004628 return NO_ERROR;
4629}
4630
Nataniel Borges8e7dc722019-02-28 15:10:28 -08004631status_t SurfaceFlinger::dumpCritical(int fd, const DumpArgs&, bool asProto) {
4632 if (asProto && mTracing.isEnabled()) {
4633 mTracing.writeToFileAsync();
4634 }
4635
4636 return doDump(fd, DumpArgs(), asProto);
4637}
4638
Dominik Laskowskic2867142019-01-21 11:33:38 -08004639void SurfaceFlinger::listLayersLocked(std::string& result) const {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004640 mCurrentState.traverseInZOrder(
4641 [&](Layer* layer) { StringAppendF(&result, "%s\n", layer->getName().string()); });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004642}
4643
Dominik Laskowskic2867142019-01-21 11:33:38 -08004644void SurfaceFlinger::dumpStatsLocked(const DumpArgs& args, std::string& result) const {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004645 StringAppendF(&result, "%" PRId64 "\n", getVsyncPeriod());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004646
Dominik Laskowskic2867142019-01-21 11:33:38 -08004647 if (args.size() > 1) {
4648 const auto name = String8(args[1]);
Robert Carr2047fae2016-11-28 14:09:09 -08004649 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004650 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004651 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004652 }
Robert Carr2047fae2016-11-28 14:09:09 -08004653 });
Dominik Laskowskic2867142019-01-21 11:33:38 -08004654 } else {
4655 mAnimFrameTracker.dumpStats(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004656 }
4657}
4658
Dominik Laskowskic2867142019-01-21 11:33:38 -08004659void SurfaceFlinger::clearStatsLocked(const DumpArgs& args, std::string&) {
Robert Carr2047fae2016-11-28 14:09:09 -08004660 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004661 if (args.size() < 2 || String8(args[1]) == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004662 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004663 }
Robert Carr2047fae2016-11-28 14:09:09 -08004664 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004665
Svetoslavd85084b2014-03-20 10:28:31 -07004666 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004667}
4668
Dominik Laskowskic2867142019-01-21 11:33:38 -08004669void SurfaceFlinger::dumpTimeStats(const DumpArgs& args, bool asProto, std::string& result) const {
4670 mTimeStats->parseArgs(asProto, args, result);
4671}
4672
Jamie Gennis6547ff42013-07-16 20:12:42 -07004673// This should only be called from the main thread. Otherwise it would need
4674// the lock and should use mCurrentState rather than mDrawingState.
4675void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08004676 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07004677 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08004678 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07004679
4680 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
4681}
4682
Yiwei Zhang5434a782018-12-05 18:06:32 -08004683void SurfaceFlinger::appendSfConfigString(std::string& result) const {
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004684 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07004685
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004686 if (isLayerTripleBufferingDisabled())
4687 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07004688
Yiwei Zhang5434a782018-12-05 18:06:32 -08004689 StringAppendF(&result, " PRESENT_TIME_OFFSET=%" PRId64, dispSyncPresentTimeOffset);
4690 StringAppendF(&result, " FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
4691 StringAppendF(&result, " MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
4692 StringAppendF(&result, " RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
4693 StringAppendF(&result, " NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
4694 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004695 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07004696}
4697
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004698void SurfaceFlinger::dumpVSync(std::string& result) const {
Ana Krulec757f63a2019-01-25 10:46:18 -08004699 mPhaseOffsets->dump(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004700 StringAppendF(&result,
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004701 " present offset: %9" PRId64 " ns\t VSYNC period: %9" PRId64 " ns\n\n",
Ana Krulec757f63a2019-01-25 10:46:18 -08004702 dispSyncPresentTimeOffset, getVsyncPeriod());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004703
Ady Abraham97d04232019-03-05 19:48:12 -08004704 StringAppendF(&result, "Scheduler enabled.");
Ana Krulecba13ab32019-02-20 14:14:12 -08004705 StringAppendF(&result, "+ Smart 90 for video detection: %s\n\n",
4706 mUseSmart90ForVideo ? "on" : "off");
Ana Krulecc2870422019-01-29 19:00:58 -08004707 mScheduler->dump(mAppConnectionHandle, result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004708}
4709
Yiwei Zhang5434a782018-12-05 18:06:32 -08004710void SurfaceFlinger::dumpStaticScreenStats(std::string& result) const {
4711 result.append("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08004712 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
4713 float bucketTimeSec = getBE().mFrameBuckets[b] / 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[b]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004716 StringAppendF(&result, " < %zd frames: %.3f s (%.1f%%)\n", b + 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004717 }
David Sodman4a36e932017-11-07 14:29:47 -08004718 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004719 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004720 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004721 StringAppendF(&result, " %zd+ frames: %.3f s (%.1f%%)\n", SurfaceFlingerBE::NUM_BUCKETS - 1,
4722 bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004723}
4724
Dan Stozae77c7662016-05-13 11:37:28 -07004725void SurfaceFlinger::recordBufferingStats(const char* layerName,
4726 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08004727 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
4728 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07004729 for (const auto& segment : history) {
4730 if (!segment.usedThirdBuffer) {
4731 stats.twoBufferTime += segment.totalTime;
4732 }
4733 if (segment.occupancyAverage < 1.0f) {
4734 stats.doubleBufferedTime += segment.totalTime;
4735 } else if (segment.occupancyAverage < 2.0f) {
4736 stats.tripleBufferedTime += segment.totalTime;
4737 }
4738 ++stats.numSegments;
4739 stats.totalTime += segment.totalTime;
4740 }
4741}
4742
Yiwei Zhang5434a782018-12-05 18:06:32 -08004743void SurfaceFlinger::dumpFrameEventsLocked(std::string& result) {
4744 result.append("Layer frame timestamps:\n");
Brian Andersond6927fb2016-07-23 23:37:30 -07004745
4746 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
4747 const size_t count = currentLayers.size();
4748 for (size_t i=0 ; i<count ; i++) {
4749 currentLayers[i]->dumpFrameEvents(result);
4750 }
4751}
4752
Yiwei Zhang5434a782018-12-05 18:06:32 -08004753void SurfaceFlinger::dumpBufferingStats(std::string& result) const {
Dan Stozae77c7662016-05-13 11:37:28 -07004754 result.append("Buffering stats:\n");
4755 result.append(" [Layer name] <Active time> <Two buffer> "
4756 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08004757 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07004758 typedef std::tuple<std::string, float, float, float> BufferTuple;
4759 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08004760 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07004761 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08004762 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07004763 if (stats.numSegments == 0) {
4764 continue;
4765 }
4766 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
4767 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
4768 stats.totalTime;
4769 float doubleBufferRatio = static_cast<float>(
4770 stats.doubleBufferedTime) / stats.totalTime;
4771 float tripleBufferRatio = static_cast<float>(
4772 stats.tripleBufferedTime) / stats.totalTime;
4773 sorted.insert({activeTime, {name, twoBufferRatio,
4774 doubleBufferRatio, tripleBufferRatio}});
4775 }
4776 for (const auto& sortedPair : sorted) {
4777 float activeTime = sortedPair.first;
4778 const BufferTuple& values = sortedPair.second;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004779 StringAppendF(&result, " [%s] %.2f %.3f %.3f %.3f\n", std::get<0>(values).c_str(),
4780 activeTime, std::get<1>(values), std::get<2>(values), std::get<3>(values));
Dan Stozae77c7662016-05-13 11:37:28 -07004781 }
4782 result.append("\n");
4783}
4784
Yiwei Zhang5434a782018-12-05 18:06:32 -08004785void SurfaceFlinger::dumpDisplayIdentificationData(std::string& result) const {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004786 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004787 const auto displayId = display->getId();
4788 if (!displayId) {
4789 continue;
4790 }
4791 const auto hwcDisplayId = getHwComposer().fromPhysicalDisplayId(*displayId);
Dominik Laskowski7e045462018-05-30 13:02:02 -07004792 if (!hwcDisplayId) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004793 continue;
4794 }
4795
Yiwei Zhang5434a782018-12-05 18:06:32 -08004796 StringAppendF(&result,
4797 "Display %s (HWC display %" PRIu64 "): ", to_string(*displayId).c_str(),
4798 *hwcDisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004799 uint8_t port;
4800 DisplayIdentificationData data;
Dominik Laskowski7e045462018-05-30 13:02:02 -07004801 if (!getHwComposer().getDisplayIdentificationData(*hwcDisplayId, &port, &data)) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004802 result.append("no identification data\n");
4803 continue;
4804 }
4805
4806 if (!isEdid(data)) {
4807 result.append("unknown identification data: ");
4808 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004809 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004810 }
4811 result.append("\n");
4812 continue;
4813 }
4814
4815 const auto edid = parseEdid(data);
4816 if (!edid) {
4817 result.append("invalid EDID: ");
4818 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004819 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004820 }
4821 result.append("\n");
4822 continue;
4823 }
4824
Yiwei Zhang5434a782018-12-05 18:06:32 -08004825 StringAppendF(&result, "port=%u pnpId=%s displayName=\"", port, edid->pnpId.data());
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004826 result.append(edid->displayName.data(), edid->displayName.length());
4827 result.append("\"\n");
4828 }
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004829}
4830
Yiwei Zhang5434a782018-12-05 18:06:32 -08004831void SurfaceFlinger::dumpWideColorInfo(std::string& result) const {
Peiyong Linff84a152019-05-17 18:36:19 -07004832 StringAppendF(&result, "Device has wide color built-in display: %d\n", hasWideColorDisplay);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004833 StringAppendF(&result, "Device uses color management: %d\n", useColorManagement);
4834 StringAppendF(&result, "DisplayColorSetting: %s\n",
4835 decodeDisplayColorSetting(mDisplayColorSetting).c_str());
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004836
4837 // TODO: print out if wide-color mode is active or not
4838
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004839 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004840 const auto displayId = display->getId();
4841 if (!displayId) {
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004842 continue;
4843 }
4844
Yiwei Zhang5434a782018-12-05 18:06:32 -08004845 StringAppendF(&result, "Display %s color modes:\n", to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004846 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004847 for (auto&& mode : modes) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004848 StringAppendF(&result, " %s (%d)\n", decodeColorMode(mode).c_str(), mode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004849 }
4850
Lloyd Pique32cbe282018-10-19 13:09:22 -07004851 ColorMode currentMode = display->getCompositionDisplay()->getState().colorMode;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004852 StringAppendF(&result, " Current color mode: %s (%d)\n",
4853 decodeColorMode(currentMode).c_str(), currentMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004854 }
4855 result.append("\n");
4856}
4857
Vishnu Nair9245d3b2019-03-22 13:38:56 -07004858LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet,
4859 uint32_t traceFlags) const {
chaviw1d044282017-09-27 12:19:28 -07004860 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004861 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
4862 const State& state = useDrawing ? mDrawingState : mCurrentState;
4863 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07004864 LayerProto* layerProto = layersProto.add_layers();
Vishnu Nair9245d3b2019-03-22 13:38:56 -07004865 layer->writeToProto(layerProto, stateSet, traceFlags);
chaviw1d044282017-09-27 12:19:28 -07004866 });
4867
4868 return layersProto;
4869}
4870
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004871LayersProto SurfaceFlinger::dumpVisibleLayersProtoInfo(
4872 const sp<DisplayDevice>& displayDevice) const {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004873 LayersProto layersProto;
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004874
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004875 SizeProto* resolution = layersProto.mutable_resolution();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004876 resolution->set_w(displayDevice->getWidth());
4877 resolution->set_h(displayDevice->getHeight());
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004878
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004879 auto display = displayDevice->getCompositionDisplay();
Lloyd Pique32cbe282018-10-19 13:09:22 -07004880 const auto& displayState = display->getState();
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004881
Lloyd Pique32cbe282018-10-19 13:09:22 -07004882 layersProto.set_color_mode(decodeColorMode(displayState.colorMode));
4883 layersProto.set_color_transform(decodeColorTransform(displayState.colorTransform));
4884 layersProto.set_global_transform(displayState.orientation);
4885
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004886 const auto displayId = displayDevice->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004887 LOG_ALWAYS_FATAL_IF(!displayId);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004888 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004889 if (!layer->visibleRegion.isEmpty() && !display->getOutputLayersOrderedByZ().empty()) {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004890 LayerProto* layerProto = layersProto.add_layers();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004891 layer->writeToProto(layerProto, displayDevice);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004892 }
4893 });
4894
4895 return layersProto;
4896}
4897
Dominik Laskowskic2867142019-01-21 11:33:38 -08004898void SurfaceFlinger::dumpAllLocked(const DumpArgs& args, std::string& result) const {
4899 const bool colorize = !args.empty() && args[0] == String16("--color");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004900 Colorizer colorizer(colorize);
4901
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004902 // figure out if we're stuck somewhere
4903 const nsecs_t now = systemTime();
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004904 const nsecs_t inTransaction(mDebugInTransaction);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004905 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
4906
4907 /*
Andy McFadden4803b742012-09-24 19:07:20 -07004908 * Dump library configuration.
4909 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004910
4911 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004912 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004913 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004914 appendSfConfigString(result);
4915 appendUiConfigString(result);
4916 appendGuiConfigString(result);
4917 result.append("\n");
4918
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004919 result.append("\nDisplay identification data:\n");
4920 dumpDisplayIdentificationData(result);
4921
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004922 result.append("\nWide-Color information:\n");
4923 dumpWideColorInfo(result);
4924
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004925 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004926 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004927 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004928 result.append(SyncFeatures::getInstance().toString());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004929 result.append("\n\n");
Mathias Agopianca088332013-03-28 17:44:13 -07004930
Andy McFadden41d67d72014-04-25 16:58:34 -07004931 colorizer.bold(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004932 result.append("VSYNC configuration:\n");
Andy McFadden41d67d72014-04-25 16:58:34 -07004933 colorizer.reset(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004934 dumpVSync(result);
Dan Stozab90cf072015-03-05 11:05:59 -08004935 result.append("\n");
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004936
Dan Stozab90cf072015-03-05 11:05:59 -08004937 dumpStaticScreenStats(result);
4938 result.append("\n");
4939
Alec Mouri40189b02019-03-05 15:07:54 -08004940 StringAppendF(&result, "Total missed frame count: %u\n", mFrameMissedCount.load());
4941 StringAppendF(&result, "HWC missed frame count: %u\n", mHwcFrameMissedCount.load());
4942 StringAppendF(&result, "GPU missed frame count: %u\n\n", mGpuFrameMissedCount.load());
Marissa Wallcfcdaa52018-05-21 15:45:59 -07004943
Dan Stozae77c7662016-05-13 11:37:28 -07004944 dumpBufferingStats(result);
4945
Andy McFadden4803b742012-09-24 19:07:20 -07004946 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004947 * Dump the visible layer list
4948 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004949 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004950 StringAppendF(&result, "Visible layers (count = %zu)\n", mNumLayers);
4951 StringAppendF(&result, "GraphicBufferProducers: %zu, max %zu\n",
4952 mGraphicBufferProducerList.size(), mMaxGraphicBufferProducerListSize);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004953 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07004954
Chia-I Wu2f884132018-09-13 15:17:58 -07004955 {
4956 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4957 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004958 result.append(LayerProtoParser::layerTreeToString(layerTree));
Chia-I Wu2f884132018-09-13 15:17:58 -07004959 result.append("\n");
4960 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004961
Lloyd Pique207def92019-02-28 16:09:52 -08004962 {
4963 StringAppendF(&result, "Composition layers\n");
4964 mDrawingState.traverseInZOrder([&](Layer* layer) {
4965 auto compositionLayer = layer->getCompositionLayer();
4966 if (compositionLayer) compositionLayer->dump(result);
4967 });
4968 }
4969
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004970 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004971 * Dump Display state
4972 */
4973
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004974 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004975 StringAppendF(&result, "Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004976 colorizer.reset(result);
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004977 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004978 display->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004979 }
Chia-I Wu1e043612018-03-01 09:45:09 -08004980 result.append("\n");
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004981
4982 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004983 * Dump SurfaceFlinger global state
4984 */
4985
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004986 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004987 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004988 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004989
Lloyd Piqueb97e04f2018-10-18 17:07:05 -07004990 getRenderEngine().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004991
Dominik Laskowski075d3172018-05-24 15:50:06 -07004992 if (const auto display = getDefaultDisplayDeviceLocked()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07004993 display->getCompositionDisplay()->getState().undefinedRegion.dump(result,
4994 "undefinedRegion");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004995 StringAppendF(&result, " orientation=%d, isPoweredOn=%d\n", display->getOrientation(),
4996 display->isPoweredOn());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08004997 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004998 StringAppendF(&result,
4999 " transaction-flags : %08x\n"
5000 " gpu_to_cpu_unsupported : %d\n",
5001 mTransactionFlags.load(), !mGpuToCpuSupported);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005002
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08005003 if (const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07005004 displayId && getHwComposer().isConnected(*displayId)) {
5005 const auto activeConfig = getHwComposer().getActiveConfig(*displayId);
Yiwei Zhang5434a782018-12-05 18:06:32 -08005006 StringAppendF(&result,
5007 " refresh-rate : %f fps\n"
5008 " x-dpi : %f\n"
5009 " y-dpi : %f\n",
5010 1e9 / activeConfig->getVsyncPeriod(), activeConfig->getDpiX(),
5011 activeConfig->getDpiY());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005012 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005013
Yiwei Zhang5434a782018-12-05 18:06:32 -08005014 StringAppendF(&result, " transaction time: %f us\n", inTransactionDuration / 1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005015
Dan Stozae22aec72016-08-01 13:20:59 -07005016 /*
Yichi Chenadc69612018-09-15 14:51:18 +08005017 * Tracing state
5018 */
5019 mTracing.dump(result);
5020 result.append("\n");
5021
5022 /*
Dan Stozae22aec72016-08-01 13:20:59 -07005023 * HWC layer minidump
5024 */
Dominik Laskowski9fae1022018-05-29 13:17:40 -07005025 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07005026 const auto displayId = display->getId();
5027 if (!displayId) {
Dan Stozae22aec72016-08-01 13:20:59 -07005028 continue;
5029 }
5030
Yiwei Zhang5434a782018-12-05 18:06:32 -08005031 StringAppendF(&result, "Display %s HWC layers:\n", to_string(*displayId).c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07005032 Layer::miniDumpHeader(result);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005033 const sp<DisplayDevice> displayDevice = display;
5034 mCurrentState.traverseInZOrder(
5035 [&](Layer* layer) { layer->miniDump(result, displayDevice); });
Dan Stozae22aec72016-08-01 13:20:59 -07005036 result.append("\n");
5037 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005038
5039 /*
5040 * Dump HWComposer state
5041 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02005042 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02005043 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02005044 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005045 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Yiwei Zhang5434a782018-12-05 18:06:32 -08005046 StringAppendF(&result, " h/w composer %s\n", hwcDisabled ? "disabled" : "enabled");
Dominik Laskowski075d3172018-05-24 15:50:06 -07005047 getHwComposer().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005048
5049 /*
5050 * Dump gralloc state
5051 */
5052 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
5053 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07005054
5055 /*
5056 * Dump VrFlinger state if in use.
5057 */
5058 if (mVrFlingerRequestsDisplay && mVrFlinger) {
5059 result.append("VrFlinger state:\n");
Yiwei Zhang5434a782018-12-05 18:06:32 -08005060 result.append(mVrFlinger->Dump());
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07005061 result.append("\n");
5062 }
Ana Krulecb43429d2019-01-09 14:28:51 -08005063
5064 /**
5065 * Scheduler dump state.
5066 */
Ana Krulecc2870422019-01-29 19:00:58 -08005067 result.append("\nScheduler state:\n");
5068 result.append(mScheduler->doDump() + "\n");
Ana Krulecfefd6ae2019-02-13 17:53:08 -08005069 StringAppendF(&result, "+ Smart video mode: %s\n\n", mUseSmart90ForVideo ? "on" : "off");
Dominik Laskowski22488f62019-03-28 09:53:04 -07005070 result.append(mRefreshRateStats.doDump() + "\n");
Yiwei Zhang7eb58b72019-04-22 19:00:02 -07005071
5072 result.append(mTimeStats->miniDump());
5073 result.append("\n");
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005074}
5075
Dominik Laskowski075d3172018-05-24 15:50:06 -07005076const Vector<sp<Layer>>& SurfaceFlinger::getLayerSortedByZForHwcDisplay(DisplayId displayId) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07005077 // Note: mStateLock is held here
Dominik Laskowski9fae1022018-05-29 13:17:40 -07005078 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski7e045462018-05-30 13:02:02 -07005079 if (display->getId() == displayId) {
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005080 return getDisplayDeviceLocked(token)->getVisibleLayersSortedByZ();
Jesse Hall48bc05b2013-03-21 14:06:52 -07005081 }
5082 }
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005083
Dominik Laskowski34157762018-10-31 13:07:19 -07005084 ALOGE("%s: Invalid display %s", __FUNCTION__, to_string(displayId).c_str());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005085 static const Vector<sp<Layer>> empty;
5086 return empty;
Mathias Agopiancb558572012-10-04 15:58:54 -07005087}
5088
Chia-I Wu28f320b2018-05-03 11:02:56 -07005089void SurfaceFlinger::updateColorMatrixLocked() {
5090 mat4 colorMatrix;
5091 if (mGlobalSaturationFactor != 1.0f) {
5092 // Rec.709 luma coefficients
5093 float3 luminance{0.213f, 0.715f, 0.072f};
5094 luminance *= 1.0f - mGlobalSaturationFactor;
5095 mat4 saturationMatrix = mat4(
5096 vec4{luminance.r + mGlobalSaturationFactor, luminance.r, luminance.r, 0.0f},
5097 vec4{luminance.g, luminance.g + mGlobalSaturationFactor, luminance.g, 0.0f},
5098 vec4{luminance.b, luminance.b, luminance.b + mGlobalSaturationFactor, 0.0f},
5099 vec4{0.0f, 0.0f, 0.0f, 1.0f}
5100 );
5101 colorMatrix = mClientColorMatrix * saturationMatrix * mDaltonizer();
5102 } else {
5103 colorMatrix = mClientColorMatrix * mDaltonizer();
5104 }
5105
5106 if (mCurrentState.colorMatrix != colorMatrix) {
5107 mCurrentState.colorMatrix = colorMatrix;
5108 mCurrentState.colorMatrixChanged = true;
5109 setTransactionFlags(eTransactionNeeded);
5110 }
5111}
5112
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005113status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005114#pragma clang diagnostic push
5115#pragma clang diagnostic error "-Wswitch-enum"
5116 switch (static_cast<ISurfaceComposerTag>(code)) {
5117 // These methods should at minimum make sure that the client requested
5118 // access to SF.
Dan Stozae3344402018-08-20 19:53:42 +00005119 case BOOT_FINISHED:
5120 case CLEAR_ANIMATION_FRAME_STATS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005121 case CREATE_DISPLAY:
5122 case DESTROY_DISPLAY:
Dan Stozae3344402018-08-20 19:53:42 +00005123 case ENABLE_VSYNC_INJECTIONS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005124 case GET_ANIMATION_FRAME_STATS:
5125 case GET_HDR_CAPABILITIES:
5126 case SET_ACTIVE_CONFIG:
Ady Abraham838de062019-02-04 10:24:03 -08005127 case SET_ALLOWED_DISPLAY_CONFIGS:
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08005128 case GET_ALLOWED_DISPLAY_CONFIGS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005129 case SET_ACTIVE_COLOR_MODE:
Chia-I Wu90f669f2017-10-05 14:24:41 -07005130 case INJECT_VSYNC:
Kevin DuBois9c0a1762018-10-16 13:32:31 -07005131 case SET_POWER_MODE:
Kevin DuBois74e53772018-11-19 10:52:38 -08005132 case GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES:
Kevin DuBois1d4249a2018-08-29 10:45:14 -07005133 case SET_DISPLAY_CONTENT_SAMPLING_ENABLED:
Ady Abraham8532d012019-05-08 14:50:56 -07005134 case GET_DISPLAYED_CONTENT_SAMPLE:
5135 case NOTIFY_POWER_HINT: {
Robert Carrd4ae7f32018-06-07 16:10:57 -07005136 if (!callingThreadHasUnscopedSurfaceFlingerAccess()) {
5137 IPCThreadState* ipc = IPCThreadState::self();
5138 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d",
5139 ipc->getCallingPid(), ipc->getCallingUid());
Mathias Agopian375f5632009-06-15 18:24:59 -07005140 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005141 }
Robert Carr1db73f62016-12-21 12:58:51 -08005142 return OK;
5143 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005144 case GET_LAYER_DEBUG_INFO: {
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005145 IPCThreadState* ipc = IPCThreadState::self();
5146 const int pid = ipc->getCallingPid();
5147 const int uid = ipc->getCallingUid();
Ana Krulec13be8ad2018-08-21 02:43:56 +00005148 if ((uid != AID_SHELL) && !PermissionCache::checkPermission(sDump, pid, uid)) {
5149 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005150 return PERMISSION_DENIED;
5151 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005152 return OK;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005153 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005154 // Used by apps to hook Choreographer to SurfaceFlinger.
5155 case CREATE_DISPLAY_EVENT_CONNECTION:
5156 // The following calls are currently used by clients that do not
5157 // request necessary permissions. However, they do not expose any secret
5158 // information, so it is OK to pass them.
5159 case AUTHENTICATE_SURFACE:
Peiyong Lind1fedb42019-03-11 17:48:41 -07005160 case GET_ACTIVE_COLOR_MODE:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005161 case GET_ACTIVE_CONFIG:
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08005162 case GET_PHYSICAL_DISPLAY_IDS:
5163 case GET_PHYSICAL_DISPLAY_TOKEN:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005164 case GET_DISPLAY_COLOR_MODES:
Daniel Solomon42d04562019-01-20 21:03:19 -08005165 case GET_DISPLAY_NATIVE_PRIMARIES:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005166 case GET_DISPLAY_CONFIGS:
5167 case GET_DISPLAY_STATS:
5168 case GET_SUPPORTED_FRAME_TIMESTAMPS:
5169 // Calling setTransactionState is safe, because you need to have been
5170 // granted a reference to Client* and Handle* to do anything with it.
5171 case SET_TRANSACTION_STATE:
Robert Carrb89ea9d2018-12-10 13:01:14 -08005172 case CREATE_CONNECTION:
Ady Abraham37965d42018-11-01 13:43:32 -07005173 case GET_COLOR_MANAGEMENT:
Peiyong Lin3c2791e2019-01-14 17:05:18 -08005174 case GET_COMPOSITION_PREFERENCE:
Marissa Wallebc2c052019-01-16 19:16:55 -08005175 case GET_PROTECTED_CONTENT_SUPPORT:
Dan Gittik57e63c52019-01-18 16:37:54 +00005176 case IS_WIDE_COLOR_DISPLAY:
5177 case GET_DISPLAY_BRIGHTNESS_SUPPORT:
5178 case SET_DISPLAY_BRIGHTNESS: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005179 return OK;
5180 }
5181 case CAPTURE_LAYERS:
Dan Stoza84ab9372018-12-17 15:27:57 -08005182 case CAPTURE_SCREEN:
5183 case ADD_REGION_SAMPLING_LISTENER:
5184 case REMOVE_REGION_SAMPLING_LISTENER: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005185 // codes that require permission check
chaviwa76b2712017-09-20 12:02:26 -07005186 IPCThreadState* ipc = IPCThreadState::self();
5187 const int pid = ipc->getCallingPid();
5188 const int uid = ipc->getCallingUid();
5189 if ((uid != AID_GRAPHICS) &&
5190 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
5191 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
5192 return PERMISSION_DENIED;
5193 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005194 return OK;
5195 }
5196 // The following codes are deprecated and should never be allowed to access SF.
5197 case CONNECT_DISPLAY_UNUSED:
5198 case CREATE_GRAPHIC_BUFFER_ALLOC_UNUSED: {
5199 ALOGE("Attempting to access SurfaceFlinger with unused code: %u", code);
5200 return PERMISSION_DENIED;
chaviwa76b2712017-09-20 12:02:26 -07005201 }
chaviw93df2ea2019-04-30 16:45:12 -07005202 case CAPTURE_SCREEN_BY_ID: {
5203 IPCThreadState* ipc = IPCThreadState::self();
5204 const int uid = ipc->getCallingUid();
Peiyong Lin96cfebc2019-05-15 11:36:13 -07005205 if (uid == AID_ROOT || uid == AID_GRAPHICS || uid == AID_SYSTEM || uid == AID_SHELL) {
chaviw93df2ea2019-04-30 16:45:12 -07005206 return OK;
5207 }
5208 return PERMISSION_DENIED;
5209 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005210 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005211
5212 // These codes are used for the IBinder protocol to either interrogate the recipient
5213 // side of the transaction for its canonical interface descriptor or to dump its state.
5214 // We let them pass by default.
5215 if (code == IBinder::INTERFACE_TRANSACTION || code == IBinder::DUMP_TRANSACTION ||
5216 code == IBinder::PING_TRANSACTION || code == IBinder::SHELL_COMMAND_TRANSACTION ||
5217 code == IBinder::SYSPROPS_TRANSACTION) {
5218 return OK;
5219 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005220 // Numbers from 1000 to 1034 are currently used for backdoors. The code
Ana Krulec13be8ad2018-08-21 02:43:56 +00005221 // in onTransact verifies that the user is root, and has access to use SF.
Ady Abraham34392f72019-04-10 11:29:27 -07005222 if (code >= 1000 && code <= 1035) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005223 ALOGV("Accessing SurfaceFlinger through backdoor code: %u", code);
5224 return OK;
5225 }
5226 ALOGE("Permission Denial: SurfaceFlinger did not recognize request code: %u", code);
5227 return PERMISSION_DENIED;
5228#pragma clang diagnostic pop
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005229}
5230
Ana Krulec13be8ad2018-08-21 02:43:56 +00005231status_t SurfaceFlinger::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
5232 uint32_t flags) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005233 status_t credentialCheck = CheckTransactCodeCredentials(code);
5234 if (credentialCheck != OK) {
5235 return credentialCheck;
5236 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005237
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005238 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
5239 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07005240 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07005241 IPCThreadState* ipc = IPCThreadState::self();
5242 const int uid = ipc->getCallingUid();
5243 if (CC_UNLIKELY(uid != AID_SYSTEM
5244 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07005245 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00005246 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07005247 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005248 return PERMISSION_DENIED;
5249 }
5250 int n;
5251 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07005252 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07005253 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005254 return NO_ERROR;
5255 case 1002: // SHOW_UPDATES
5256 n = data.readInt32();
5257 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07005258 invalidateHwcGeometry();
5259 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005260 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005261 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07005262 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005263 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005264 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005265 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07005266 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07005267 setTransactionFlags(
5268 eTransactionNeeded|
5269 eDisplayTransactionNeeded|
5270 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005271 return NO_ERROR;
5272 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08005273 case 1006:{ // send empty update
5274 signalRefresh();
5275 return NO_ERROR;
5276 }
Mathias Agopian53331da2011-08-22 21:44:41 -07005277 case 1008: // toggle use of hw composer
5278 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005279 mDebugDisableHWC = n != 0;
Mathias Agopian53331da2011-08-22 21:44:41 -07005280 invalidateHwcGeometry();
5281 repaintEverything();
5282 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07005283 case 1009: // toggle use of transform hint
5284 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005285 mDebugDisableTransformHint = n != 0;
Mathias Agopiana4583642011-08-23 18:03:18 -07005286 invalidateHwcGeometry();
5287 repaintEverything();
5288 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005289 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07005290 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005291 reply->writeInt32(0);
5292 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07005293 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08005294 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005295 return NO_ERROR;
5296 case 1013: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005297 const auto display = getDefaultDisplayDevice();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005298 if (!display) {
5299 return NAME_NOT_FOUND;
5300 }
5301
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005302 reply->writeInt32(display->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07005303 return NO_ERROR;
5304 }
5305 case 1014: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005306 Mutex::Autolock _l(mStateLock);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005307 // daltonize
5308 n = data.readInt32();
5309 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005310 case 1:
5311 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
5312 break;
5313 case 2:
5314 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
5315 break;
5316 case 3:
5317 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
5318 break;
5319 default:
5320 mDaltonizer.setType(ColorBlindnessType::None);
5321 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07005322 }
5323 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005324 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005325 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005326 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005327 }
Chia-I Wu28f320b2018-05-03 11:02:56 -07005328
5329 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005330 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005331 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005332 case 1015: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005333 Mutex::Autolock _l(mStateLock);
Alan Viverette9c5a3332013-09-12 20:04:35 -07005334 // apply a color matrix
5335 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005336 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07005337 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07005338 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005339 for (size_t j = 0; j < 4; j++) {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005340 mClientColorMatrix[i][j] = data.readFloat();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005341 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005342 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005343 } else {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005344 mClientColorMatrix = mat4();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005345 }
Romain Guy88d37dd2017-05-26 17:57:05 -07005346
5347 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
5348 // the division by w in the fragment shader
Chia-I Wu28f320b2018-05-03 11:02:56 -07005349 float4 lastRow(transpose(mClientColorMatrix)[3]);
Romain Guy88d37dd2017-05-26 17:57:05 -07005350 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
5351 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
5352 }
5353
Chia-I Wu28f320b2018-05-03 11:02:56 -07005354 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005355 return NO_ERROR;
5356 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005357 // This is an experimental interface
5358 // Needs to be shifted to proper binder interface when we productize
5359 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07005360 n = data.readInt32();
Ana Krulece588e312018-09-18 12:32:24 -07005361 // TODO(b/113612090): Evaluate if this can be removed.
Ana Krulecc2870422019-01-29 19:00:58 -08005362 mScheduler->setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005363 return NO_ERROR;
5364 }
Dan Stozaee44edd2015-03-23 15:50:23 -07005365 case 1017: {
5366 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005367 mForceFullDamage = n != 0;
Dan Stozaee44edd2015-03-23 15:50:23 -07005368 return NO_ERROR;
5369 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005370 case 1018: { // Modify Choreographer's phase offset
5371 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005372 mScheduler->setPhaseOffset(mAppConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005373 return NO_ERROR;
5374 }
5375 case 1019: { // Modify SurfaceFlinger's phase offset
5376 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005377 mScheduler->setPhaseOffset(mSfConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005378 return NO_ERROR;
5379 }
Irvel468051e2016-06-13 16:44:44 -07005380 case 1020: { // Layer updates interceptor
5381 n = data.readInt32();
5382 if (n) {
5383 ALOGV("Interceptor enabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005384 mInterceptor->enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07005385 }
5386 else{
5387 ALOGV("Interceptor disabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005388 mInterceptor->disable();
Irvel468051e2016-06-13 16:44:44 -07005389 }
5390 return NO_ERROR;
5391 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07005392 case 1021: { // Disable HWC virtual displays
5393 n = data.readInt32();
5394 mUseHwcVirtualDisplays = !n;
5395 return NO_ERROR;
5396 }
Romain Guy0147a172017-06-01 13:53:56 -07005397 case 1022: { // Set saturation boost
Chia-I Wu28f320b2018-05-03 11:02:56 -07005398 Mutex::Autolock _l(mStateLock);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005399 mGlobalSaturationFactor = std::max(0.0f, std::min(data.readFloat(), 2.0f));
Romain Guy0147a172017-06-01 13:53:56 -07005400
Chia-I Wu28f320b2018-05-03 11:02:56 -07005401 updateColorMatrixLocked();
Romain Guy0147a172017-06-01 13:53:56 -07005402 return NO_ERROR;
5403 }
Romain Guy54f154a2017-10-24 21:40:32 +01005404 case 1023: { // Set native mode
Chia-I Wu0d711262018-05-21 15:19:35 -07005405 mDisplayColorSetting = static_cast<DisplayColorSetting>(data.readInt32());
Romain Guy54f154a2017-10-24 21:40:32 +01005406 invalidateHwcGeometry();
5407 repaintEverything();
5408 return NO_ERROR;
5409 }
Peiyong Lin4bac91c2018-10-25 09:48:33 -07005410 // Deprecate, use 1030 to check whether the device is color managed.
5411 case 1024: {
5412 return NAME_NOT_FOUND;
Romain Guy54f154a2017-10-24 21:40:32 +01005413 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005414 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01005415 n = data.readInt32();
5416 if (n) {
Yichi Chenadc69612018-09-15 14:51:18 +08005417 ALOGD("LayerTracing enabled");
Nataniel Borges2b796da2019-02-15 13:32:18 -08005418 Mutex::Autolock lock(mStateLock);
5419 mTracingEnabledChanged = true;
Adrian Roos1e1a1282017-11-01 19:05:31 +01005420 mTracing.enable();
Adrian Roos1e1a1282017-11-01 19:05:31 +01005421 reply->writeInt32(NO_ERROR);
5422 } else {
Yichi Chenadc69612018-09-15 14:51:18 +08005423 ALOGD("LayerTracing disabled");
Nataniel Borges2b796da2019-02-15 13:32:18 -08005424 bool writeFile = false;
5425 {
5426 Mutex::Autolock lock(mStateLock);
5427 mTracingEnabledChanged = true;
5428 writeFile = mTracing.disable();
5429 }
5430
5431 if (writeFile) {
5432 reply->writeInt32(mTracing.writeToFile());
5433 } else {
5434 reply->writeInt32(NO_ERROR);
5435 }
Adrian Roos1e1a1282017-11-01 19:05:31 +01005436 }
5437 return NO_ERROR;
5438 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005439 case 1026: { // Get layer tracing status
5440 reply->writeBool(mTracing.isEnabled());
5441 return NO_ERROR;
5442 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005443 // Is a DisplayColorSetting supported?
5444 case 1027: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005445 const auto display = getDefaultDisplayDevice();
5446 if (!display) {
Chia-I Wu0d711262018-05-21 15:19:35 -07005447 return NAME_NOT_FOUND;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005448 }
Chia-I Wu0d711262018-05-21 15:19:35 -07005449
5450 DisplayColorSetting setting = static_cast<DisplayColorSetting>(data.readInt32());
5451 switch (setting) {
5452 case DisplayColorSetting::MANAGED:
Peiyong Lin13effd12018-07-24 17:01:47 -07005453 reply->writeBool(useColorManagement);
Chia-I Wu0d711262018-05-21 15:19:35 -07005454 break;
5455 case DisplayColorSetting::UNMANAGED:
5456 reply->writeBool(true);
5457 break;
5458 case DisplayColorSetting::ENHANCED:
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005459 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE));
Chia-I Wu0d711262018-05-21 15:19:35 -07005460 break;
5461 default: // vendor display color setting
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005462 reply->writeBool(
5463 display->hasRenderIntent(static_cast<RenderIntent>(setting)));
Chia-I Wu0d711262018-05-21 15:19:35 -07005464 break;
5465 }
5466 return NO_ERROR;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005467 }
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005468 // Is VrFlinger active?
5469 case 1028: {
5470 Mutex::Autolock _l(mStateLock);
Lloyd Pique441d5042018-10-18 16:49:51 -07005471 reply->writeBool(getHwComposer().isUsingVrComposer());
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005472 return NO_ERROR;
5473 }
Nataniel Borges2b796da2019-02-15 13:32:18 -08005474 // Set buffer size for SF tracing (value in KB)
5475 case 1029: {
5476 n = data.readInt32();
5477 if (n <= 0 || n > MAX_TRACING_MEMORY) {
5478 ALOGW("Invalid buffer size: %d KB", n);
5479 reply->writeInt32(BAD_VALUE);
5480 return BAD_VALUE;
5481 }
5482
5483 ALOGD("Updating trace buffer to %d KB", n);
5484 mTracing.setBufferSize(n * 1024);
5485 reply->writeInt32(NO_ERROR);
5486 return NO_ERROR;
5487 }
Peiyong Lin13effd12018-07-24 17:01:47 -07005488 // Is device color managed?
5489 case 1030: {
5490 reply->writeBool(useColorManagement);
5491 return NO_ERROR;
5492 }
Peiyong Lin9d846a52018-11-05 13:18:20 -08005493 // Override default composition data space
5494 // adb shell service call SurfaceFlinger 1031 i32 1 DATASPACE_NUMBER DATASPACE_NUMBER \
5495 // && adb shell stop zygote && adb shell start zygote
5496 // to restore: adb shell service call SurfaceFlinger 1031 i32 0 && \
5497 // adb shell stop zygote && adb shell start zygote
5498 case 1031: {
5499 Mutex::Autolock _l(mStateLock);
5500 n = data.readInt32();
5501 if (n) {
5502 n = data.readInt32();
5503 if (n) {
5504 Dataspace dataspace = static_cast<Dataspace>(n);
5505 if (!validateCompositionDataspace(dataspace)) {
5506 return BAD_VALUE;
5507 }
5508 mDefaultCompositionDataspace = dataspace;
5509 }
5510 n = data.readInt32();
5511 if (n) {
5512 Dataspace dataspace = static_cast<Dataspace>(n);
5513 if (!validateCompositionDataspace(dataspace)) {
5514 return BAD_VALUE;
5515 }
5516 mWideColorGamutCompositionDataspace = dataspace;
5517 }
5518 } else {
5519 // restore composition data space.
5520 mDefaultCompositionDataspace = defaultCompositionDataspace;
5521 mWideColorGamutCompositionDataspace = wideColorGamutCompositionDataspace;
5522 }
5523 return NO_ERROR;
5524 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07005525 // Set trace flags
5526 case 1033: {
5527 n = data.readUint32();
5528 ALOGD("Updating trace flags to 0x%x", n);
5529 mTracing.setTraceFlags(n);
5530 reply->writeInt32(NO_ERROR);
5531 return NO_ERROR;
5532 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005533 case 1034: {
5534 // TODO(b/129297325): expose this via developer menu option
5535 n = data.readInt32();
5536 if (n && !mRefreshRateOverlay) {
Ady Abrahamfed164b2019-05-10 17:12:54 -07005537 RefreshRateType type;
5538 {
5539 std::lock_guard<std::mutex> lock(mActiveConfigLock);
5540 type = mDesiredActiveConfig.type;
5541 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005542 mRefreshRateOverlay = std::make_unique<RefreshRateOverlay>(*this);
Ady Abrahamfed164b2019-05-10 17:12:54 -07005543 mRefreshRateOverlay->changeRefreshRate(type);
Ady Abraham03b02dd2019-03-21 15:40:11 -07005544 } else if (!n) {
5545 mRefreshRateOverlay.reset();
5546 }
5547 return NO_ERROR;
5548 }
Ady Abraham34392f72019-04-10 11:29:27 -07005549 case 1035: {
5550 n = data.readInt32();
5551 mDebugDisplayConfigSetByBackdoor = false;
5552 if (n >= 0) {
5553 const auto displayToken = getInternalDisplayToken();
5554 status_t result = setAllowedDisplayConfigs(displayToken, {n});
5555 if (result != NO_ERROR) {
5556 return result;
5557 }
5558 mDebugDisplayConfigSetByBackdoor = true;
5559 }
5560 return NO_ERROR;
5561 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005562 }
5563 }
5564 return err;
5565}
5566
Steven Thomas6d8110b2017-08-31 18:24:21 -07005567void SurfaceFlinger::repaintEverything() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07005568 mRepaintEverything = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07005569 signalTransaction();
Steven Thomas6d8110b2017-08-31 18:24:21 -07005570}
5571
Ana Krulec7d1d6832018-12-27 11:10:09 -08005572void SurfaceFlinger::repaintEverythingForHWC() {
5573 mRepaintEverything = true;
Ady Abraham8532d012019-05-08 14:50:56 -07005574 mEventQueue->invalidate();
Ana Krulec7d1d6832018-12-27 11:10:09 -08005575}
5576
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005577// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
5578class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005579public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005580 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
5581 ~WindowDisconnector() {
5582 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005583 }
5584
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005585private:
5586 ANativeWindow* mWindow;
5587 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005588};
5589
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005590status_t SurfaceFlinger::captureScreen(const sp<IBinder>& displayToken,
Robert Carr108b2c72019-04-02 16:32:58 -07005591 sp<GraphicBuffer>* outBuffer, bool& outCapturedSecureLayers,
5592 const Dataspace reqDataspace,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005593 const ui::PixelFormat reqPixelFormat, Rect sourceCrop,
chaviw0e3479f2018-09-10 16:49:30 -07005594 uint32_t reqWidth, uint32_t reqHeight,
5595 bool useIdentityTransform,
Robert Carrfa8855f2019-02-19 10:05:00 -08005596 ISurfaceComposer::Rotation rotation,
5597 bool captureSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005598 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005599
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005600 if (!displayToken) return BAD_VALUE;
chaviwa76b2712017-09-20 12:02:26 -07005601
Chia-I Wuc80dcbb2018-08-24 15:34:02 -07005602 auto renderAreaRotation = fromSurfaceComposerRotation(rotation);
5603
Chia-I Wu20261cb2018-08-23 12:55:44 -07005604 sp<DisplayDevice> display;
5605 {
5606 Mutex::Autolock _l(mStateLock);
Garfield Tan3b1b8af2018-03-16 17:37:33 -07005607
Chia-I Wu20261cb2018-08-23 12:55:44 -07005608 display = getDisplayDeviceLocked(displayToken);
5609 if (!display) return BAD_VALUE;
5610
Chia-I Wucb023152018-08-28 12:57:23 -07005611 // set the requested width/height to the logical display viewport size
5612 // by default
5613 if (reqWidth == 0 || reqHeight == 0) {
5614 reqWidth = uint32_t(display->getViewport().width());
5615 reqHeight = uint32_t(display->getViewport().height());
Chia-I Wu20261cb2018-08-23 12:55:44 -07005616 }
Yiwei Zhang06a58e22018-08-20 16:42:23 -07005617 }
5618
Peiyong Lin0e003c92018-09-17 11:09:51 -07005619 DisplayRenderArea renderArea(display, sourceCrop, reqWidth, reqHeight, reqDataspace,
Robert Carrfa8855f2019-02-19 10:05:00 -08005620 renderAreaRotation, captureSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005621
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08005622 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5623 std::placeholders::_1);
Peiyong Lin0e003c92018-09-17 11:09:51 -07005624 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat,
Robert Carr108b2c72019-04-02 16:32:58 -07005625 useIdentityTransform, outCapturedSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005626}
5627
chaviw93df2ea2019-04-30 16:45:12 -07005628static Dataspace pickDataspaceFromColorMode(const ColorMode colorMode) {
5629 switch (colorMode) {
5630 case ColorMode::DISPLAY_P3:
5631 case ColorMode::BT2100_PQ:
5632 case ColorMode::BT2100_HLG:
5633 case ColorMode::DISPLAY_BT2020:
5634 return Dataspace::DISPLAY_P3;
5635 default:
5636 return Dataspace::V0_SRGB;
5637 }
5638}
5639
5640const sp<DisplayDevice> SurfaceFlinger::getDisplayByIdOrLayerStack(uint64_t displayOrLayerStack) {
5641 const sp<IBinder> displayToken = getPhysicalDisplayTokenLocked(DisplayId{displayOrLayerStack});
5642 if (displayToken) {
5643 return getDisplayDeviceLocked(displayToken);
5644 }
5645 // Couldn't find display by displayId. Try to get display by layerStack since virtual displays
5646 // may not have a displayId.
5647 for (const auto& [token, display] : mDisplays) {
5648 if (display->getLayerStack() == displayOrLayerStack) {
5649 return display;
5650 }
5651 }
5652 return nullptr;
5653}
5654
5655status_t SurfaceFlinger::captureScreen(uint64_t displayOrLayerStack, Dataspace* outDataspace,
5656 sp<GraphicBuffer>* outBuffer) {
5657 sp<DisplayDevice> display;
5658 uint32_t width;
5659 uint32_t height;
5660 ui::Transform::orientation_flags captureOrientation;
5661 {
5662 Mutex::Autolock _l(mStateLock);
5663 display = getDisplayByIdOrLayerStack(displayOrLayerStack);
5664 if (!display) {
5665 return BAD_VALUE;
5666 }
5667
5668 width = uint32_t(display->getViewport().width());
5669 height = uint32_t(display->getViewport().height());
5670
5671 captureOrientation = fromSurfaceComposerRotation(
5672 static_cast<ISurfaceComposer::Rotation>(display->getOrientation()));
Alec Mouri21fab752019-06-20 14:12:17 -07005673 if (captureOrientation == ui::Transform::orientation_flags::ROT_90) {
5674 captureOrientation = ui::Transform::orientation_flags::ROT_270;
5675 } else if (captureOrientation == ui::Transform::orientation_flags::ROT_270) {
5676 captureOrientation = ui::Transform::orientation_flags::ROT_90;
5677 }
chaviw93df2ea2019-04-30 16:45:12 -07005678 *outDataspace =
5679 pickDataspaceFromColorMode(display->getCompositionDisplay()->getState().colorMode);
5680 }
5681
5682 DisplayRenderArea renderArea(display, Rect(), width, height, *outDataspace, captureOrientation,
5683 false /* captureSecureLayers */);
5684
5685 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5686 std::placeholders::_1);
5687 bool ignored = false;
5688 return captureScreenCommon(renderArea, traverseLayers, outBuffer, ui::PixelFormat::RGBA_8888,
5689 false /* useIdentityTransform */,
5690 ignored /* outCapturedSecureLayers */);
5691}
5692
Robert Carr866455f2019-04-02 16:28:26 -07005693status_t SurfaceFlinger::captureLayers(
5694 const sp<IBinder>& layerHandleBinder, sp<GraphicBuffer>* outBuffer,
5695 const Dataspace reqDataspace, const ui::PixelFormat reqPixelFormat, const Rect& sourceCrop,
5696 const std::unordered_set<sp<IBinder>, ISurfaceComposer::SpHash<IBinder>>& excludeHandles,
5697 float frameScale, bool childrenOnly) {
chaviwa76b2712017-09-20 12:02:26 -07005698 ATRACE_CALL();
5699
5700 class LayerRenderArea : public RenderArea {
5701 public:
Robert Carr578038f2018-03-09 12:25:24 -08005702 LayerRenderArea(SurfaceFlinger* flinger, const sp<Layer>& layer, const Rect crop,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005703 int32_t reqWidth, int32_t reqHeight, Dataspace reqDataSpace,
5704 bool childrenOnly)
5705 : RenderArea(reqWidth, reqHeight, CaptureFill::CLEAR, reqDataSpace),
Robert Carr578038f2018-03-09 12:25:24 -08005706 mLayer(layer),
5707 mCrop(crop),
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005708 mNeedsFiltering(false),
Robert Carr578038f2018-03-09 12:25:24 -08005709 mFlinger(flinger),
5710 mChildrenOnly(childrenOnly) {}
Peiyong Linefefaac2018-08-17 12:27:51 -07005711 const ui::Transform& getTransform() const override { return mTransform; }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005712 Rect getBounds() const override {
5713 const Layer::State& layerState(mLayer->getDrawingState());
5714 return mLayer->getBufferSize(layerState);
5715 }
Marissa Wall61c58622018-07-18 10:12:20 -07005716 int getHeight() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005717 return mLayer->getBufferSize(mLayer->getDrawingState()).getHeight();
Marissa Wall61c58622018-07-18 10:12:20 -07005718 }
Vishnu Nair88a11f22018-11-28 18:30:57 -08005719 int getWidth() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005720 return mLayer->getBufferSize(mLayer->getDrawingState()).getWidth();
Vishnu Nair88a11f22018-11-28 18:30:57 -08005721 }
chaviwa76b2712017-09-20 12:02:26 -07005722 bool isSecure() const override { return false; }
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005723 bool needsFiltering() const override { return mNeedsFiltering; }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005724 const sp<const DisplayDevice> getDisplayDevice() const override { return nullptr; }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005725 Rect getSourceCrop() const override {
5726 if (mCrop.isEmpty()) {
5727 return getBounds();
5728 } else {
5729 return mCrop;
5730 }
5731 }
Robert Carr578038f2018-03-09 12:25:24 -08005732 class ReparentForDrawing {
5733 public:
5734 const sp<Layer>& oldParent;
5735 const sp<Layer>& newParent;
5736
Vishnu Nair4351ad52019-02-11 14:13:02 -08005737 ReparentForDrawing(const sp<Layer>& oldParent, const sp<Layer>& newParent,
5738 const Rect& drawingBounds)
Robert Carr578038f2018-03-09 12:25:24 -08005739 : oldParent(oldParent), newParent(newParent) {
Vishnu Nair4351ad52019-02-11 14:13:02 -08005740 // Compute and cache the bounds for the new parent layer.
5741 newParent->computeBounds(drawingBounds.toFloatRect(), ui::Transform());
Robert Carr15eae092018-03-23 13:43:53 -07005742 oldParent->setChildrenDrawingParent(newParent);
Robert Carr578038f2018-03-09 12:25:24 -08005743 }
Vishnu Nairbce6ffd2019-02-14 10:58:59 -08005744 ~ReparentForDrawing() { oldParent->setChildrenDrawingParent(oldParent); }
Robert Carr578038f2018-03-09 12:25:24 -08005745 };
5746
5747 void render(std::function<void()> drawLayers) override {
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005748 const Rect sourceCrop = getSourceCrop();
5749 // no need to check rotation because there is none
5750 mNeedsFiltering = sourceCrop.width() != getReqWidth() ||
5751 sourceCrop.height() != getReqHeight();
5752
Robert Carr578038f2018-03-09 12:25:24 -08005753 if (!mChildrenOnly) {
5754 mTransform = mLayer->getTransform().inverse();
5755 drawLayers();
5756 } else {
5757 Rect bounds = getBounds();
Lloyd Pique90c115d2018-09-18 21:39:42 -07005758 screenshotParentLayer = mFlinger->getFactory().createContainerLayer(
Lloyd Pique42ab75e2018-09-12 20:46:03 -07005759 LayerCreationArgs(mFlinger, nullptr, String8("Screenshot Parent"),
Evan Roskya1f1e152019-01-24 16:17:46 -08005760 bounds.getWidth(), bounds.getHeight(), 0,
5761 LayerMetadata()));
Robert Carr578038f2018-03-09 12:25:24 -08005762
Vishnu Nair4351ad52019-02-11 14:13:02 -08005763 ReparentForDrawing reparent(mLayer, screenshotParentLayer, sourceCrop);
Robert Carr578038f2018-03-09 12:25:24 -08005764 drawLayers();
5765 }
5766 }
chaviwa76b2712017-09-20 12:02:26 -07005767
chaviwa76b2712017-09-20 12:02:26 -07005768 private:
chaviw7206d492017-11-10 16:16:12 -08005769 const sp<Layer> mLayer;
5770 const Rect mCrop;
Robert Carr578038f2018-03-09 12:25:24 -08005771
5772 // In the "childrenOnly" case we reparent the children to a screenshot
5773 // layer which has no properties set and which does not draw.
5774 sp<ContainerLayer> screenshotParentLayer;
Peiyong Linefefaac2018-08-17 12:27:51 -07005775 ui::Transform mTransform;
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005776 bool mNeedsFiltering;
Robert Carr578038f2018-03-09 12:25:24 -08005777
5778 SurfaceFlinger* mFlinger;
5779 const bool mChildrenOnly;
chaviwa76b2712017-09-20 12:02:26 -07005780 };
5781
Robert Carrc0df3122019-04-11 13:18:21 -07005782 int reqWidth = 0;
5783 int reqHeight = 0;
5784 sp<Layer> parent;
chaviw7206d492017-11-10 16:16:12 -08005785 Rect crop(sourceCrop);
Robert Carrc0df3122019-04-11 13:18:21 -07005786 std::unordered_set<sp<Layer>, ISurfaceComposer::SpHash<Layer>> excludeLayers;
chaviw7206d492017-11-10 16:16:12 -08005787
Robert Carrc0df3122019-04-11 13:18:21 -07005788 {
5789 Mutex::Autolock _l(mStateLock);
chaviw7206d492017-11-10 16:16:12 -08005790
Robert Carrc0df3122019-04-11 13:18:21 -07005791 parent = fromHandle(layerHandleBinder);
5792 if (parent == nullptr || parent->isRemovedFromCurrentState()) {
5793 ALOGE("captureLayers called with an invalid or removed parent");
5794 return NAME_NOT_FOUND;
5795 }
5796
5797 const int uid = IPCThreadState::self()->getCallingUid();
5798 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5799 if (!forSystem && parent->getCurrentState().flags & layer_state_t::eLayerSecure) {
5800 ALOGW("Attempting to capture secure layer: PERMISSION_DENIED");
5801 return PERMISSION_DENIED;
5802 }
5803
5804 if (sourceCrop.width() <= 0) {
5805 crop.left = 0;
5806 crop.right = parent->getBufferSize(parent->getCurrentState()).getWidth();
5807 }
5808
5809 if (sourceCrop.height() <= 0) {
5810 crop.top = 0;
5811 crop.bottom = parent->getBufferSize(parent->getCurrentState()).getHeight();
5812 }
5813 reqWidth = crop.width() * frameScale;
5814 reqHeight = crop.height() * frameScale;
5815
5816 for (const auto& handle : excludeHandles) {
5817 sp<Layer> excludeLayer = fromHandle(handle);
5818 if (excludeLayer != nullptr) {
5819 excludeLayers.emplace(excludeLayer);
5820 } else {
5821 ALOGW("Invalid layer handle passed as excludeLayer to captureLayers");
5822 return NAME_NOT_FOUND;
5823 }
5824 }
5825 } // mStateLock
chaviw7206d492017-11-10 16:16:12 -08005826
Chia-I Wu20261cb2018-08-23 12:55:44 -07005827 // really small crop or frameScale
5828 if (reqWidth <= 0) {
5829 reqWidth = 1;
5830 }
5831 if (reqHeight <= 0) {
5832 reqHeight = 1;
5833 }
5834
Robert Carr866455f2019-04-02 16:28:26 -07005835 LayerRenderArea renderArea(this, parent, crop, reqWidth, reqHeight, reqDataspace, childrenOnly);
5836 auto traverseLayers = [parent, childrenOnly,
5837 &excludeLayers](const LayerVector::Visitor& visitor) {
chaviwa76b2712017-09-20 12:02:26 -07005838 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
5839 if (!layer->isVisible()) {
5840 return;
Robert Carr578038f2018-03-09 12:25:24 -08005841 } else if (childrenOnly && layer == parent.get()) {
5842 return;
chaviwa76b2712017-09-20 12:02:26 -07005843 }
Robert Carr866455f2019-04-02 16:28:26 -07005844
5845 sp<Layer> p = layer;
5846 while (p != nullptr) {
5847 if (excludeLayers.count(p) != 0) {
5848 return;
5849 }
5850 p = p->getParent();
5851 }
5852
chaviwa76b2712017-09-20 12:02:26 -07005853 visitor(layer);
5854 });
5855 };
Robert Carr108b2c72019-04-02 16:32:58 -07005856
5857 bool outCapturedSecureLayers = false;
5858 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat, false,
5859 outCapturedSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005860}
5861
5862status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5863 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005864 sp<GraphicBuffer>* outBuffer,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005865 const ui::PixelFormat reqPixelFormat,
Robert Carr108b2c72019-04-02 16:32:58 -07005866 bool useIdentityTransform,
5867 bool& outCapturedSecureLayers) {
chaviwa76b2712017-09-20 12:02:26 -07005868 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005869
Peiyong Lin0e003c92018-09-17 11:09:51 -07005870 // TODO(b/116112787) Make buffer usage a parameter.
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005871 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
5872 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Lloyd Pique90c115d2018-09-18 21:39:42 -07005873 *outBuffer =
5874 getFactory().createGraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
5875 static_cast<android_pixel_format>(reqPixelFormat), 1,
5876 usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005877
Robert Carr108b2c72019-04-02 16:32:58 -07005878 return captureScreenCommon(renderArea, traverseLayers, *outBuffer, useIdentityTransform,
5879 outCapturedSecureLayers);
Dan Stozaec460082018-12-17 15:35:09 -08005880}
5881
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005882status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5883 TraverseLayersFunction traverseLayers,
5884 const sp<GraphicBuffer>& buffer,
Robert Carr108b2c72019-04-02 16:32:58 -07005885 bool useIdentityTransform,
5886 bool& outCapturedSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005887 // This mutex protects syncFd and captureResult for communication of the return values from the
5888 // main thread back to this Binder thread
5889 std::mutex captureMutex;
5890 std::condition_variable captureCondition;
5891 std::unique_lock<std::mutex> captureLock(captureMutex);
5892 int syncFd = -1;
5893 std::optional<status_t> captureResult;
5894
Robert Carr03480e22018-01-04 16:02:06 -08005895 const int uid = IPCThreadState::self()->getCallingUid();
5896 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5897
Dominik Laskowski8c001672018-05-30 16:52:06 -07005898 sp<LambdaMessage> message = new LambdaMessage([&] {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005899 // If there is a refresh pending, bug out early and tell the binder thread to try again
5900 // after the refresh.
5901 if (mRefreshPending) {
5902 ATRACE_NAME("Skipping screenshot for now");
5903 std::unique_lock<std::mutex> captureLock(captureMutex);
5904 captureResult = std::make_optional<status_t>(EAGAIN);
5905 captureCondition.notify_one();
5906 return;
5907 }
5908
5909 status_t result = NO_ERROR;
5910 int fd = -1;
5911 {
5912 Mutex::Autolock _l(mStateLock);
Dominik Laskowski8c001672018-05-30 16:52:06 -07005913 renderArea.render([&] {
Dan Stozaec460082018-12-17 15:35:09 -08005914 result = captureScreenImplLocked(renderArea, traverseLayers, buffer.get(),
Robert Carr108b2c72019-04-02 16:32:58 -07005915 useIdentityTransform, forSystem, &fd,
5916 outCapturedSecureLayers);
Robert Carr578038f2018-03-09 12:25:24 -08005917 });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005918 }
5919
5920 {
5921 std::unique_lock<std::mutex> captureLock(captureMutex);
5922 syncFd = fd;
5923 captureResult = std::make_optional<status_t>(result);
5924 captureCondition.notify_one();
5925 }
5926 });
5927
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005928 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005929 if (result == NO_ERROR) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07005930 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005931 while (*captureResult == EAGAIN) {
5932 captureResult.reset();
5933 result = postMessageAsync(message);
5934 if (result != NO_ERROR) {
5935 return result;
5936 }
Dominik Laskowski8c001672018-05-30 16:52:06 -07005937 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005938 }
5939 result = *captureResult;
5940 }
5941
5942 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005943 sync_wait(syncFd, -1);
5944 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005945 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005946
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005947 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005948}
5949
chaviwa76b2712017-09-20 12:02:26 -07005950void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
Chia-I Wu1be50b52018-08-29 10:44:48 -07005951 TraverseLayersFunction traverseLayers,
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005952 ANativeWindowBuffer* buffer, bool useIdentityTransform,
5953 int* outSyncFd) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07005954 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07005955
chaviwa76b2712017-09-20 12:02:26 -07005956 const auto reqWidth = renderArea.getReqWidth();
5957 const auto reqHeight = renderArea.getReqHeight();
Chia-I Wuf2aa3112018-08-27 14:54:37 -07005958 const auto rotation = renderArea.getRotationFlags();
Alec Mouriadb75f42019-03-28 21:42:24 -07005959 const auto transform = renderArea.getTransform();
5960 const auto sourceCrop = renderArea.getSourceCrop();
Dan Stozac1879002014-05-22 15:59:05 -07005961
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005962 renderengine::DisplaySettings clientCompositionDisplay;
5963 std::vector<renderengine::LayerSettings> clientCompositionLayers;
Romain Guy88d37dd2017-05-26 17:57:05 -07005964
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005965 // assume that bounds are never offset, and that they are the same as the
5966 // buffer bounds.
5967 clientCompositionDisplay.physicalDisplay = Rect(reqWidth, reqHeight);
Alec Mouriadb75f42019-03-28 21:42:24 -07005968 clientCompositionDisplay.clip = sourceCrop;
Lloyd Pique7e06e7f2019-03-15 18:36:44 -07005969 clientCompositionDisplay.globalTransform = transform.asMatrix4();
Alec Mouriadb75f42019-03-28 21:42:24 -07005970
5971 // Now take into account the rotation flag. We append a transform that
5972 // rotates the layer stack about the origin, then translate by buffer
5973 // boundaries to be in the right quadrant.
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005974 mat4 rotMatrix;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005975 int displacementX = 0;
5976 int displacementY = 0;
5977 float rot90InRadians = 2.0f * static_cast<float>(M_PI) / 4.0f;
5978 switch (rotation) {
5979 case ui::Transform::ROT_90:
5980 rotMatrix = mat4::rotate(rot90InRadians, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005981 displacementX = renderArea.getBounds().getHeight();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005982 break;
5983 case ui::Transform::ROT_180:
5984 rotMatrix = mat4::rotate(rot90InRadians * 2.0f, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005985 displacementY = renderArea.getBounds().getWidth();
5986 displacementX = renderArea.getBounds().getHeight();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005987 break;
5988 case ui::Transform::ROT_270:
5989 rotMatrix = mat4::rotate(rot90InRadians * 3.0f, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005990 displacementY = renderArea.getBounds().getWidth();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005991 break;
5992 default:
5993 break;
5994 }
Alec Mouriadb75f42019-03-28 21:42:24 -07005995
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005996 // We need to transform the clipping window into the right spot.
5997 // First, rotate the clipping rectangle by the rotation hint to get the
5998 // right orientation
5999 const vec4 clipTL = vec4(sourceCrop.left, sourceCrop.top, 0, 1);
6000 const vec4 clipBR = vec4(sourceCrop.right, sourceCrop.bottom, 0, 1);
6001 const vec4 rotClipTL = rotMatrix * clipTL;
6002 const vec4 rotClipBR = rotMatrix * clipBR;
6003 const int newClipLeft = std::min(rotClipTL[0], rotClipBR[0]);
6004 const int newClipTop = std::min(rotClipTL[1], rotClipBR[1]);
6005 const int newClipRight = std::max(rotClipTL[0], rotClipBR[0]);
6006 const int newClipBottom = std::max(rotClipTL[1], rotClipBR[1]);
6007
6008 // Now reposition the clipping rectangle with the displacement vector
6009 // computed above.
6010 const mat4 displacementMat = mat4::translate(vec4(displacementX, displacementY, 0, 1));
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006011 clientCompositionDisplay.clip =
6012 Rect(newClipLeft + displacementX, newClipTop + displacementY,
6013 newClipRight + displacementX, newClipBottom + displacementY);
6014
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006015 mat4 clipTransform = displacementMat * rotMatrix;
Alec Mouriadb75f42019-03-28 21:42:24 -07006016 clientCompositionDisplay.globalTransform =
6017 clipTransform * clientCompositionDisplay.globalTransform;
6018
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006019 clientCompositionDisplay.outputDataspace = renderArea.getReqDataSpace();
6020 clientCompositionDisplay.maxLuminance = DisplayDevice::sDefaultMaxLumiance;
Mathias Agopian180f10d2013-04-10 22:55:41 -07006021
chaviw50da5042018-04-09 13:49:37 -07006022 const float alpha = RenderArea::getCaptureFillValue(renderArea.getCaptureFill());
Mathias Agopian180f10d2013-04-10 22:55:41 -07006023
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006024 renderengine::LayerSettings fillLayer;
6025 fillLayer.source.buffer.buffer = nullptr;
6026 fillLayer.source.solidColor = half3(0.0, 0.0, 0.0);
6027 fillLayer.geometry.boundaries = FloatRect(0.0, 0.0, 1.0, 1.0);
6028 fillLayer.alpha = half(alpha);
6029 clientCompositionLayers.push_back(fillLayer);
6030
6031 Region clearRegion = Region::INVALID_REGION;
chaviwa76b2712017-09-20 12:02:26 -07006032 traverseLayers([&](Layer* layer) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006033 renderengine::LayerSettings layerSettings;
6034 bool prepared = layer->prepareClientLayer(renderArea, useIdentityTransform, clearRegion,
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08006035 false, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006036 if (prepared) {
6037 clientCompositionLayers.push_back(layerSettings);
6038 }
chaviwa76b2712017-09-20 12:02:26 -07006039 });
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006040
6041 clientCompositionDisplay.clearRegion = clearRegion;
Alec Mouri6338c9d2019-02-07 16:57:51 -08006042 // Use an empty fence for the buffer fence, since we just created the buffer so
6043 // there is no need for synchronization with the GPU.
6044 base::unique_fd bufferFence;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006045 base::unique_fd drawFence;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08006046 getRenderEngine().useProtectedContext(false);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006047 getRenderEngine().drawLayers(clientCompositionDisplay, clientCompositionLayers, buffer,
Alec Mourife0d72b2019-03-21 14:05:56 -07006048 /*useFramebufferCache=*/false, std::move(bufferFence), &drawFence);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006049
6050 *outSyncFd = drawFence.release();
Mathias Agopian180f10d2013-04-10 22:55:41 -07006051}
6052
chaviwa76b2712017-09-20 12:02:26 -07006053status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
6054 TraverseLayersFunction traverseLayers,
6055 ANativeWindowBuffer* buffer,
Robert Carr108b2c72019-04-02 16:32:58 -07006056 bool useIdentityTransform, bool forSystem,
6057 int* outSyncFd, bool& outCapturedSecureLayers) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08006058 ATRACE_CALL();
6059
chaviwa76b2712017-09-20 12:02:26 -07006060 traverseLayers([&](Layer* layer) {
Robert Carr108b2c72019-04-02 16:32:58 -07006061 outCapturedSecureLayers =
6062 outCapturedSecureLayers || (layer->isVisible() && layer->isSecure());
chaviwa76b2712017-09-20 12:02:26 -07006063 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08006064
Robert Carr03480e22018-01-04 16:02:06 -08006065 // We allow the system server to take screenshots of secure layers for
6066 // use in situations like the Screen-rotation animation and place
6067 // the impetus on WindowManager to not persist them.
Robert Carr108b2c72019-04-02 16:32:58 -07006068 if (outCapturedSecureLayers && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08006069 ALOGW("FB is protected: PERMISSION_DENIED");
6070 return PERMISSION_DENIED;
6071 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006072 renderScreenImplLocked(renderArea, traverseLayers, buffer, useIdentityTransform, outSyncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07006073 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07006074}
6075
chaviw95ef3c42019-02-14 10:55:09 -08006076void SurfaceFlinger::setInputWindowsFinished() {
6077 Mutex::Autolock _l(mStateLock);
6078
6079 mPendingSyncInputWindows = false;
6080 mTransactionCV.broadcast();
6081}
chaviw5f21a5e2019-02-14 10:00:34 -08006082
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07006083// ---------------------------------------------------------------------------
6084
Dan Stoza412903f2017-04-27 13:42:17 -07006085void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
6086 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07006087}
6088
Dan Stoza412903f2017-04-27 13:42:17 -07006089void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
6090 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07006091}
6092
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006093void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& display,
chaviwa76b2712017-09-20 12:02:26 -07006094 const LayerVector::Visitor& visitor) {
6095 // We loop through the first level of layers without traversing,
chaviw0e3479f2018-09-10 16:49:30 -07006096 // as we need to determine which layers belong to the requested display.
chaviwa76b2712017-09-20 12:02:26 -07006097 for (const auto& layer : mDrawingState.layersSortedByZ) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006098 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
chaviwa76b2712017-09-20 12:02:26 -07006099 continue;
6100 }
Chia-I Wuec2d9852017-11-21 09:21:01 -08006101 // relative layers are traversed in Layer::traverseInZOrder
chaviwa76b2712017-09-20 12:02:26 -07006102 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006103 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01006104 return;
6105 }
chaviwa76b2712017-09-20 12:02:26 -07006106 if (!layer->isVisible()) {
6107 return;
6108 }
6109 visitor(layer);
6110 });
6111 }
6112}
6113
Dominik Laskowski22488f62019-03-28 09:53:04 -07006114void SurfaceFlinger::setAllowedDisplayConfigsInternal(const sp<DisplayDevice>& display,
6115 const std::vector<int32_t>& allowedConfigs) {
6116 if (!display->isPrimary()) {
Ady Abraham838de062019-02-04 10:24:03 -08006117 return;
6118 }
6119
6120 ALOGV("Updating allowed configs");
Dominik Laskowski22488f62019-03-28 09:53:04 -07006121 mAllowedDisplayConfigs = DisplayConfigs(allowedConfigs.begin(), allowedConfigs.end());
Ady Abraham838de062019-02-04 10:24:03 -08006122
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006123 // Set the highest allowed config by iterating backwards on available refresh rates
Dominik Laskowski22488f62019-03-28 09:53:04 -07006124 const auto& refreshRates = mRefreshRateConfigs.getRefreshRates();
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006125 for (auto iter = refreshRates.crbegin(); iter != refreshRates.crend(); ++iter) {
Dominik Laskowski22488f62019-03-28 09:53:04 -07006126 if (iter->second && isDisplayConfigAllowed(iter->second->configId)) {
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006127 ALOGV("switching to config %d", iter->second->configId);
Dominik Laskowski22488f62019-03-28 09:53:04 -07006128 setDesiredActiveConfig(
6129 {iter->first, iter->second->configId, Scheduler::ConfigEvent::Changed});
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006130 break;
Ady Abraham97d04232019-03-05 19:48:12 -08006131 }
6132 }
Ady Abraham838de062019-02-04 10:24:03 -08006133}
6134
Dominik Laskowski22488f62019-03-28 09:53:04 -07006135status_t SurfaceFlinger::setAllowedDisplayConfigs(const sp<IBinder>& displayToken,
Ady Abraham838de062019-02-04 10:24:03 -08006136 const std::vector<int32_t>& allowedConfigs) {
6137 ATRACE_CALL();
6138
Dominik Laskowski22488f62019-03-28 09:53:04 -07006139 if (!displayToken || allowedConfigs.empty()) {
Ady Abraham838de062019-02-04 10:24:03 -08006140 return BAD_VALUE;
6141 }
6142
Ady Abraham34392f72019-04-10 11:29:27 -07006143 if (mDebugDisplayConfigSetByBackdoor) {
6144 // ignore this request as config is overridden by backdoor
6145 return NO_ERROR;
6146 }
6147
Ady Abraham838de062019-02-04 10:24:03 -08006148 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowski22488f62019-03-28 09:53:04 -07006149 const auto display = getDisplayDeviceLocked(displayToken);
6150 if (!display) {
6151 ALOGE("Attempt to set allowed display configs for invalid display token %p",
6152 displayToken.get());
6153 } else if (display->isVirtual()) {
6154 ALOGW("Attempt to set allowed display configs for virtual display");
6155 } else {
6156 setAllowedDisplayConfigsInternal(display, allowedConfigs);
6157 }
Ady Abraham838de062019-02-04 10:24:03 -08006158 }));
Dominik Laskowski22488f62019-03-28 09:53:04 -07006159
Ady Abraham838de062019-02-04 10:24:03 -08006160 return NO_ERROR;
6161}
6162
Dominik Laskowski22488f62019-03-28 09:53:04 -07006163status_t SurfaceFlinger::getAllowedDisplayConfigs(const sp<IBinder>& displayToken,
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006164 std::vector<int32_t>* outAllowedConfigs) {
6165 ATRACE_CALL();
6166
Dominik Laskowski22488f62019-03-28 09:53:04 -07006167 if (!displayToken || !outAllowedConfigs) {
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006168 return BAD_VALUE;
6169 }
6170
Dominik Laskowski22488f62019-03-28 09:53:04 -07006171 Mutex::Autolock lock(mStateLock);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006172
Dominik Laskowski4f1dd8c2019-04-17 15:54:30 -07006173 const auto display = getDisplayDeviceLocked(displayToken);
6174 if (!display) {
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006175 return NAME_NOT_FOUND;
6176 }
6177
Dominik Laskowski4f1dd8c2019-04-17 15:54:30 -07006178 if (display->isPrimary()) {
6179 outAllowedConfigs->assign(mAllowedDisplayConfigs.begin(), mAllowedDisplayConfigs.end());
6180 }
6181
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006182 return NO_ERROR;
6183}
6184
Dominik Laskowski9dab3432019-03-27 13:21:10 -07006185void SurfaceFlinger::SetInputWindowsListener::onSetInputWindowsFinished() {
chaviw291d88a2019-02-14 10:33:58 -08006186 mFlinger->setInputWindowsFinished();
6187}
6188
Robert Carrc0df3122019-04-11 13:18:21 -07006189sp<Layer> SurfaceFlinger::fromHandle(const sp<IBinder>& handle) {
6190 BBinder *b = handle->localBinder();
6191 if (b == nullptr) {
6192 return nullptr;
6193 }
6194 auto it = mLayersByLocalBinderToken.find(b);
6195 if (it != mLayersByLocalBinderToken.end()) {
6196 return it->second.promote();
6197 }
6198 return nullptr;
6199}
6200
Dominik Laskowski9dab3432019-03-27 13:21:10 -07006201} // namespace android
Lloyd Pique074e8122018-07-26 12:57:23 -07006202
Mathias Agopian3f844832013-08-07 21:24:32 -07006203#if defined(__gl_h_)
6204#error "don't include gl/gl.h in this file"
6205#endif
6206
6207#if defined(__gl2_h_)
6208#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08006209#endif