blob: dadb3fed0507bcf4d63479ad30ff350f4a11be7e [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Alec Mourie7d1d4a2019-02-05 01:13:46 +000017//#define LOG_NDEBUG 0
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080018#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19
Mathias Agopian921e6ac2012-07-23 23:11:29 -070020#include <sys/types.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021#include <errno.h>
Keun young Park63f165f2012-08-31 10:53:36 -070022#include <dlfcn.h>
Dominik Laskowski83b88212018-12-11 13:34:06 -080023
24#include <algorithm>
25#include <cinttypes>
26#include <cmath>
27#include <cstdint>
28#include <functional>
29#include <mutex>
Dan Stoza2b6d38e2017-06-01 16:40:30 -070030#include <optional>
Dominik Laskowskic2867142019-01-21 11:33:38 -080031#include <unordered_map>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070032
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033#include <cutils/properties.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070034#include <log/log.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080035
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070036#include <binder/IPCThreadState.h>
37#include <binder/IServiceManager.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070038#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070039
Lloyd Pique70d91362018-10-18 16:02:55 -070040#include <compositionengine/CompositionEngine.h>
Lloyd Pique32cbe282018-10-19 13:09:22 -070041#include <compositionengine/Display.h>
Lloyd Pique3d0c02e2018-10-19 18:38:12 -070042#include <compositionengine/DisplayColorProfile.h>
Lloyd Piquecc01a452018-12-04 17:24:00 -080043#include <compositionengine/Layer.h>
44#include <compositionengine/OutputLayer.h>
Lloyd Pique31cb2942018-10-19 17:23:03 -070045#include <compositionengine/RenderSurface.h>
Lloyd Pique0b785d82018-12-04 17:25:27 -080046#include <compositionengine/impl/LayerCompositionState.h>
Lloyd Pique32cbe282018-10-19 13:09:22 -070047#include <compositionengine/impl/OutputCompositionState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080048#include <compositionengine/impl/OutputLayerCompositionState.h>
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080049#include <dvr/vr_flinger.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070050#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070051#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070052#include <gui/IDisplayEventConnection.h>
Alec Mouri0a9c7b82018-11-16 13:05:25 -080053#include <gui/IProducerListener.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080054#include <gui/LayerDebugInfo.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080055#include <gui/Surface.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070056#include <input/IInputFlinger.h>
Peiyong Lincbc184f2018-08-22 13:24:10 -070057#include <renderengine/RenderEngine.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070058#include <ui/ColorSpace.h>
59#include <ui/DebugUtils.h>
60#include <ui/DisplayInfo.h>
61#include <ui/DisplayStatInfo.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070062#include <ui/GraphicBufferAllocator.h>
63#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070064#include <ui/UiConfig.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065#include <utils/StopWatch.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070066#include <utils/String16.h>
67#include <utils/String8.h>
Yusuke Sato0a688f52015-07-30 23:05:39 -070068#include <utils/Timers.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080069#include <utils/Trace.h>
Lloyd Pique70d91362018-10-18 16:02:55 -070070#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071
Mathias Agopian921e6ac2012-07-23 23:11:29 -070072#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070073#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080074
Robert Carr578038f2018-03-09 12:25:24 -080075#include "BufferLayer.h"
Marissa Wallfd668622018-05-10 10:21:13 -070076#include "BufferQueueLayer.h"
Marissa Wall61c58622018-07-18 10:12:20 -070077#include "BufferStateLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020078#include "Client.h"
Robert Carr578038f2018-03-09 12:25:24 -080079#include "ColorLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020080#include "Colorizer.h"
Robert Carr578038f2018-03-09 12:25:24 -080081#include "ContainerLayer.h"
Robert Carr578038f2018-03-09 12:25:24 -080082#include "DisplayDevice.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083#include "Layer.h"
Robert Carr1f0a16a2016-10-24 16:27:39 -070084#include "LayerVector.h"
Robert Carr1db73f62016-12-21 12:58:51 -080085#include "MonitoredProducer.h"
Lloyd Pique22098362018-09-13 11:46:49 -070086#include "NativeWindowSurface.h"
Ady Abraham03b02dd2019-03-21 15:40:11 -070087#include "RefreshRateOverlay.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -070088#include "StartPropertySetThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080089#include "SurfaceFlinger.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -070090#include "SurfaceInterceptor.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080091
Steven Thomasb02664d2017-07-26 18:48:28 -070092#include "DisplayHardware/ComposerHal.h"
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -070093#include "DisplayHardware/DisplayIdentification.h"
Mathias Agopiana4912602012-07-12 14:25:33 -070094#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070095#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070096#include "DisplayHardware/VirtualDisplaySurface.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070097#include "Effects/Daltonizer.h"
Dominik Laskowski9dab3432019-03-27 13:21:10 -070098#include "RegionSamplingThread.h"
Ana Krulecfefcb582018-08-07 14:22:37 -070099#include "Scheduler/DispSync.h"
Ana Krulec241cf832018-08-10 15:03:23 -0700100#include "Scheduler/DispSyncSource.h"
Ana Krulecfefcb582018-08-07 14:22:37 -0700101#include "Scheduler/EventControlThread.h"
102#include "Scheduler/EventThread.h"
Ana Krulec47454452018-08-14 11:04:14 -0700103#include "Scheduler/InjectVSyncSource.h"
Lloyd Pique90c115d2018-09-18 21:39:42 -0700104#include "Scheduler/MessageQueue.h"
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700105#include "Scheduler/PhaseOffsets.h"
Ana Krulec98b5b242018-08-10 15:03:23 -0700106#include "Scheduler/Scheduler.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -0800107#include "TimeStats/TimeStats.h"
Ana Krulecfefcb582018-08-07 14:22:37 -0700108
Mathias Agopianff2ed702013-09-01 21:36:12 -0700109#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -0700110
David Sodman7e4ae112018-02-09 15:02:28 -0800111#include "android-base/stringprintf.h"
112
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900113#include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h>
Iris Chang7501ed62018-04-30 14:45:42 +0800114#include <android/hardware/configstore/1.1/ISurfaceFlingerConfigs.h>
115#include <android/hardware/configstore/1.1/types.h>
Ady Abraham8532d012019-05-08 14:50:56 -0700116#include <android/hardware/power/1.0/IPower.h>
Jaesoo Lee43518572017-01-23 19:03:16 +0900117#include <configstore/Utils.h>
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900118
chaviw1d044282017-09-27 12:19:28 -0700119#include <layerproto/LayerProtoParser.h>
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900120#include "SurfaceFlingerProperties.h"
chaviw1d044282017-09-27 12:19:28 -0700121
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700123
Jaesoo Lee43518572017-01-23 19:03:16 +0900124using namespace android::hardware::configstore;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900125using namespace android::hardware::configstore::V1_0;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900126using namespace android::sysprop;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -0800127
Ady Abraham8532d012019-05-08 14:50:56 -0700128using android::hardware::power::V1_0::PowerHint;
Yiwei Zhang5434a782018-12-05 18:06:32 -0800129using base::StringAppendF;
Peiyong Lin9f034472018-03-28 15:29:00 -0700130using ui::ColorMode;
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700131using ui::Dataspace;
Daniel Solomon42d04562019-01-20 21:03:19 -0800132using ui::DisplayPrimaries;
Peiyong Lin62665892018-04-16 11:07:44 -0700133using ui::Hdr;
Peiyong Lin0e7a7912018-04-05 14:36:36 -0700134using ui::RenderIntent;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900135
Steven Thomasb02664d2017-07-26 18:48:28 -0700136namespace {
Peiyong Linfca547f2018-07-09 13:03:33 -0700137
138#pragma clang diagnostic push
139#pragma clang diagnostic error "-Wswitch-enum"
140
141bool isWideColorMode(const ColorMode colorMode) {
142 switch (colorMode) {
143 case ColorMode::DISPLAY_P3:
144 case ColorMode::ADOBE_RGB:
145 case ColorMode::DCI_P3:
146 case ColorMode::BT2020:
Valerie Hau9758ae02018-10-09 16:05:09 -0700147 case ColorMode::DISPLAY_BT2020:
Peiyong Linfca547f2018-07-09 13:03:33 -0700148 case ColorMode::BT2100_PQ:
149 case ColorMode::BT2100_HLG:
150 return true;
151 case ColorMode::NATIVE:
152 case ColorMode::STANDARD_BT601_625:
153 case ColorMode::STANDARD_BT601_625_UNADJUSTED:
154 case ColorMode::STANDARD_BT601_525:
155 case ColorMode::STANDARD_BT601_525_UNADJUSTED:
156 case ColorMode::STANDARD_BT709:
157 case ColorMode::SRGB:
158 return false;
159 }
160 return false;
161}
162
Peiyong Lin34ea5b92019-03-15 18:40:15 -0700163bool isHdrColorMode(const ColorMode colorMode) {
164 switch (colorMode) {
165 case ColorMode::BT2100_PQ:
166 case ColorMode::BT2100_HLG:
167 return true;
168 case ColorMode::DISPLAY_P3:
169 case ColorMode::ADOBE_RGB:
170 case ColorMode::DCI_P3:
171 case ColorMode::BT2020:
172 case ColorMode::DISPLAY_BT2020:
173 case ColorMode::NATIVE:
174 case ColorMode::STANDARD_BT601_625:
175 case ColorMode::STANDARD_BT601_625_UNADJUSTED:
176 case ColorMode::STANDARD_BT601_525:
177 case ColorMode::STANDARD_BT601_525_UNADJUSTED:
178 case ColorMode::STANDARD_BT709:
179 case ColorMode::SRGB:
180 return false;
181 }
182 return false;
183}
184
Chia-I Wuc80dcbb2018-08-24 15:34:02 -0700185ui::Transform::orientation_flags fromSurfaceComposerRotation(ISurfaceComposer::Rotation rotation) {
186 switch (rotation) {
187 case ISurfaceComposer::eRotateNone:
188 return ui::Transform::ROT_0;
189 case ISurfaceComposer::eRotate90:
190 return ui::Transform::ROT_90;
191 case ISurfaceComposer::eRotate180:
192 return ui::Transform::ROT_180;
193 case ISurfaceComposer::eRotate270:
194 return ui::Transform::ROT_270;
195 }
196 ALOGE("Invalid rotation passed to captureScreen(): %d\n", rotation);
197 return ui::Transform::ROT_0;
198}
199
Peiyong Linfca547f2018-07-09 13:03:33 -0700200#pragma clang diagnostic pop
201
Steven Thomasb02664d2017-07-26 18:48:28 -0700202class ConditionalLock {
203public:
204 ConditionalLock(Mutex& mutex, bool lock) : mMutex(mutex), mLocked(lock) {
205 if (lock) {
206 mMutex.lock();
207 }
208 }
209 ~ConditionalLock() { if (mLocked) mMutex.unlock(); }
210private:
211 Mutex& mMutex;
212 bool mLocked;
213};
Peiyong Linfca547f2018-07-09 13:03:33 -0700214
Peiyong Lin9d846a52018-11-05 13:18:20 -0800215// Currently we only support V0_SRGB and DISPLAY_P3 as composition preference.
216bool validateCompositionDataspace(Dataspace dataspace) {
217 return dataspace == Dataspace::V0_SRGB || dataspace == Dataspace::DISPLAY_P3;
218}
219
Steven Thomasb02664d2017-07-26 18:48:28 -0700220} // namespace anonymous
221
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800222// ---------------------------------------------------------------------------
223
Mathias Agopian99b49842011-06-27 16:05:52 -0700224const String16 sHardwareTest("android.permission.HARDWARE_TEST");
225const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
226const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
227const String16 sDump("android.permission.DUMP");
228
229// ---------------------------------------------------------------------------
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700230int64_t SurfaceFlinger::dispSyncPresentTimeOffset;
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700231bool SurfaceFlinger::useHwcForRgbToYuv;
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800232uint64_t SurfaceFlinger::maxVirtualDisplaySize;
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800233bool SurfaceFlinger::hasSyncFramework;
Steven Thomas050b2c82017-03-06 11:45:16 -0800234bool SurfaceFlinger::useVrFlinger;
Fabien Sanglard1971b632017-03-10 14:50:03 -0800235int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600236bool SurfaceFlinger::hasWideColorDisplay;
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700237int SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientationDefault;
Peiyong Lin13effd12018-07-24 17:01:47 -0700238bool SurfaceFlinger::useColorManagement;
Peiyong Linb3839ad2018-09-05 15:37:19 -0700239bool SurfaceFlinger::useContextPriority;
Peiyong Linc6780972018-10-28 15:24:08 -0700240Dataspace SurfaceFlinger::defaultCompositionDataspace = Dataspace::V0_SRGB;
241ui::PixelFormat SurfaceFlinger::defaultCompositionPixelFormat = ui::PixelFormat::RGBA_8888;
242Dataspace SurfaceFlinger::wideColorGamutCompositionDataspace = Dataspace::V0_SRGB;
243ui::PixelFormat SurfaceFlinger::wideColorGamutCompositionPixelFormat = ui::PixelFormat::RGBA_8888;
Mathias Agopian99b49842011-06-27 16:05:52 -0700244
Kalle Raitaa099a242017-01-11 11:17:29 -0800245std::string getHwcServiceName() {
246 char value[PROPERTY_VALUE_MAX] = {};
247 property_get("debug.sf.hwc_service_name", value, "default");
248 ALOGI("Using HWComposer service: '%s'", value);
249 return std::string(value);
250}
251
252bool useTrebleTestingOverride() {
253 char value[PROPERTY_VALUE_MAX] = {};
254 property_get("debug.sf.treble_testing_override", value, "false");
255 ALOGI("Treble testing override: '%s'", value);
256 return std::string(value) == "true";
257}
258
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800259std::string decodeDisplayColorSetting(DisplayColorSetting displayColorSetting) {
260 switch(displayColorSetting) {
261 case DisplayColorSetting::MANAGED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700262 return std::string("Managed");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800263 case DisplayColorSetting::UNMANAGED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700264 return std::string("Unmanaged");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800265 case DisplayColorSetting::ENHANCED:
Chia-I Wu0d711262018-05-21 15:19:35 -0700266 return std::string("Enhanced");
267 default:
268 return std::string("Unknown ") +
269 std::to_string(static_cast<int>(displayColorSetting));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800270 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800271}
272
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700273SurfaceFlingerBE::SurfaceFlingerBE() : mHwcServiceName(getHwcServiceName()) {}
David Sodmanbc815282017-11-05 18:57:52 -0800274
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700275SurfaceFlinger::SurfaceFlinger(Factory& factory, SkipInitializationTag)
276 : mFactory(factory),
277 mPhaseOffsets(mFactory.createPhaseOffsets()),
278 mInterceptor(mFactory.createSurfaceInterceptor(this)),
279 mTimeStats(mFactory.createTimeStats()),
280 mEventQueue(mFactory.createMessageQueue()),
281 mCompositionEngine(mFactory.createCompositionEngine()) {}
Lloyd Piqueac648ee2018-01-17 13:42:24 -0800282
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700283SurfaceFlinger::SurfaceFlinger(Factory& factory) : SurfaceFlinger(factory, SkipInitialization) {
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800284 ALOGI("SurfaceFlinger is starting");
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800285
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900286 hasSyncFramework = running_without_sync_framework(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800287
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900288 dispSyncPresentTimeOffset = present_time_offset_from_vsync_ns(0);
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700289
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900290 useHwcForRgbToYuv = force_hwc_copy_for_virtual_displays(false);
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700291
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900292 maxVirtualDisplaySize = max_virtual_display_dimension(0);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800293
Steven Thomas050b2c82017-03-06 11:45:16 -0800294 // Vr flinger is only enabled on Daydream ready devices.
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900295 useVrFlinger = use_vr_flinger(false);
Steven Thomas050b2c82017-03-06 11:45:16 -0800296
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900297 maxFrameBufferAcquiredBuffers = max_frame_buffer_acquired_buffers(2);
Fabien Sanglard1971b632017-03-10 14:50:03 -0800298
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900299 hasWideColorDisplay = has_wide_color_display(false);
Peiyong Lin0256f722018-08-31 15:45:10 -0700300
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900301 useColorManagement = use_color_management(false);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600302
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900303 mDefaultCompositionDataspace =
304 static_cast<ui::Dataspace>(default_composition_dataspace(Dataspace::V0_SRGB));
305 mWideColorGamutCompositionDataspace =
306 static_cast<ui::Dataspace>(wcg_composition_dataspace(Dataspace::V0_SRGB));
307 defaultCompositionDataspace = mDefaultCompositionDataspace;
308 wideColorGamutCompositionDataspace = mWideColorGamutCompositionDataspace;
309 defaultCompositionPixelFormat = static_cast<ui::PixelFormat>(
310 default_composition_pixel_format(ui::PixelFormat::RGBA_8888));
311 wideColorGamutCompositionPixelFormat =
312 static_cast<ui::PixelFormat>(wcg_composition_pixel_format(ui::PixelFormat::RGBA_8888));
Peiyong Linb3839ad2018-09-05 15:37:19 -0700313
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900314 useContextPriority = use_context_priority(true);
Iris Chang7501ed62018-04-30 14:45:42 +0800315
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900316 auto tmpPrimaryDisplayOrientation = primary_display_orientation(
317 SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_0);
318 switch (tmpPrimaryDisplayOrientation) {
319 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_90:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700320 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation90;
Iris Chang7501ed62018-04-30 14:45:42 +0800321 break;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900322 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_180:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700323 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation180;
Iris Chang7501ed62018-04-30 14:45:42 +0800324 break;
Sundong Ahnd5e08f62018-12-12 20:27:28 +0900325 case SurfaceFlingerProperties::primary_display_orientation_values::ORIENTATION_270:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700326 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientation270;
Iris Chang7501ed62018-04-30 14:45:42 +0800327 break;
328 default:
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700329 SurfaceFlinger::primaryDisplayOrientation = DisplayState::eOrientationDefault;
Iris Chang7501ed62018-04-30 14:45:42 +0800330 break;
331 }
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700332 ALOGV("Primary Display Orientation is set to %2d.", SurfaceFlinger::primaryDisplayOrientation);
Iris Chang7501ed62018-04-30 14:45:42 +0800333
Sundong Ahn85131bd2019-02-18 15:51:53 +0900334 mInternalDisplayPrimaries = sysprop::getDisplayNativePrimaries();
Daniel Solomon42d04562019-01-20 21:03:19 -0800335
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800336 // debugging stuff...
337 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700338
Mathias Agopianb4b17302013-03-20 18:36:41 -0700339 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700340 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700341
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800342 property_get("debug.sf.showupdates", value, "0");
343 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700344
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700345 ALOGI_IF(mDebugRegion, "showupdates enabled");
Orion Hodson34397da2019-02-04 09:36:10 +0000346
347 // DDMS debugging deprecated (b/120782499)
348 property_get("debug.sf.ddms", value, "0");
349 int debugDdms = atoi(value);
350 ALOGI_IF(debugDdms, "DDMS debugging not supported");
Dan Stozac5da2712016-07-20 15:38:12 -0700351
352 property_get("debug.sf.disable_backpressure", value, "0");
353 mPropagateBackpressure = !atoi(value);
354 ALOGI_IF(!mPropagateBackpressure, "Disabling backpressure propagation");
Dan Stoza8cf150a2016-08-02 10:27:31 -0700355
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800356 property_get("debug.sf.enable_hwc_vds", value, "0");
357 mUseHwcVirtualDisplays = atoi(value);
Chia-I Wu11d10612018-06-21 15:41:13 +0800358 ALOGI_IF(mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800359
Yiwei Zhangb770ed32018-12-17 17:44:28 -0800360 property_get("ro.sf.disable_triple_buffer", value, "0");
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800361 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800362 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700363
Yiwei Zhang243b3782018-05-15 17:40:04 -0700364 const size_t defaultListSize = MAX_LAYERS;
Dan Stoza0a0158c2018-03-16 13:38:54 -0700365 auto listSize = property_get_int32("debug.sf.max_igbp_list_size", int32_t(defaultListSize));
366 mMaxGraphicBufferProducerListSize = (listSize > 0) ? size_t(listSize) : defaultListSize;
367
Ana Krulece5a06e02019-03-06 17:09:03 -0800368 mUseSmart90ForVideo = use_smart_90_for_video(false);
Ana Krulecba13ab32019-02-20 14:14:12 -0800369 property_get("debug.sf.use_smart_90_for_video", value, "0");
Ana Krulece5a06e02019-03-06 17:09:03 -0800370
371 int int_value = atoi(value);
372 if (int_value) {
373 mUseSmart90ForVideo = true;
374 }
Ana Krulecba13ab32019-02-20 14:14:12 -0800375
Dan Stozaec460082018-12-17 15:35:09 -0800376 property_get("debug.sf.luma_sampling", value, "1");
377 mLumaSampling = atoi(value);
378
Ana Krulec757f63a2019-01-25 10:46:18 -0800379 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
380 mVsyncModulator.setPhaseOffsets(early, gl, late);
Dan Stoza84d619e2018-03-28 17:07:36 -0700381
Romain Guy11d63f42017-07-20 12:47:14 -0700382 // We should be reading 'persist.sys.sf.color_saturation' here
383 // but since /data may be encrypted, we need to wait until after vold
384 // comes online to attempt to read the property. The property is
385 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800386
387 if (useTrebleTestingOverride()) {
388 // Without the override SurfaceFlinger cannot connect to HIDL
389 // services that are not listed in the manifests. Considered
390 // deriving the setting from the set service name, but it
391 // would be brittle if the name that's not 'default' is used
392 // for production purposes later on.
393 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
394 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800395}
396
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800397void SurfaceFlinger::onFirstRef()
398{
Lloyd Pique3fcdef12018-01-22 17:14:00 -0800399 mEventQueue->init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800400}
401
Dominik Laskowski9dab3432019-03-27 13:21:10 -0700402SurfaceFlinger::~SurfaceFlinger() = default;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800403
Dan Stozac7014012014-02-14 15:03:43 -0800404void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800405{
406 // the window manager died on us. prepare its eulogy.
407
Andy McFadden13a082e2012-08-24 10:16:42 -0700408 // restore initial conditions (default device unblank, etc)
409 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800410
411 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700412 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800413}
414
Robert Carr1db73f62016-12-21 12:58:51 -0800415static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700416 status_t err = client->initCheck();
417 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800418 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800419 }
Robert Carr1db73f62016-12-21 12:58:51 -0800420 return nullptr;
421}
422
423sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
424 return initClient(new Client(this));
425}
426
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700427sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
428 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700429{
430 class DisplayToken : public BBinder {
431 sp<SurfaceFlinger> flinger;
432 virtual ~DisplayToken() {
433 // no more references, this display must be terminated
434 Mutex::Autolock _l(flinger->mStateLock);
435 flinger->mCurrentState.displays.removeItem(this);
436 flinger->setTransactionFlags(eDisplayTransactionNeeded);
437 }
438 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700439 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700440 : flinger(flinger) {
441 }
442 };
443
444 sp<BBinder> token = new DisplayToken(this);
445
446 Mutex::Autolock _l(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700447 // Display ID is assigned when virtual display is allocated by HWC.
448 DisplayDeviceState state;
449 state.isSecure = secure;
450 state.displayName = displayName;
451 mCurrentState.displays.add(token, state);
452 mInterceptor->saveDisplayCreation(state);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700453 return token;
454}
455
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700456void SurfaceFlinger::destroyDisplay(const sp<IBinder>& displayToken) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700457 Mutex::Autolock _l(mStateLock);
458
Dominik Laskowski075d3172018-05-24 15:50:06 -0700459 ssize_t index = mCurrentState.displays.indexOfKey(displayToken);
460 if (index < 0) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700461 ALOGE("destroyDisplay: Invalid display token %p", displayToken.get());
Jesse Hall6c913be2013-08-08 12:15:49 -0700462 return;
463 }
464
Dominik Laskowski075d3172018-05-24 15:50:06 -0700465 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
466 if (!state.isVirtual()) {
Jesse Hall6c913be2013-08-08 12:15:49 -0700467 ALOGE("destroyDisplay called for non-virtual display");
468 return;
469 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700470 mInterceptor->saveDisplayDeletion(state.sequenceId);
471 mCurrentState.displays.removeItemsAt(index);
Jesse Hall6c913be2013-08-08 12:15:49 -0700472 setTransactionFlags(eDisplayTransactionNeeded);
473}
474
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800475std::vector<PhysicalDisplayId> SurfaceFlinger::getPhysicalDisplayIds() const {
476 Mutex::Autolock lock(mStateLock);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700477
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800478 const auto internalDisplayId = getInternalDisplayIdLocked();
479 if (!internalDisplayId) {
480 return {};
Dominik Laskowski075d3172018-05-24 15:50:06 -0700481 }
482
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800483 std::vector<PhysicalDisplayId> displayIds;
484 displayIds.reserve(mPhysicalDisplayTokens.size());
485 displayIds.push_back(internalDisplayId->value);
486
487 for (const auto& [id, token] : mPhysicalDisplayTokens) {
488 if (id != *internalDisplayId) {
489 displayIds.push_back(id.value);
490 }
Mathias Agopiane57f2922012-08-09 16:29:12 -0700491 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700492
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800493 return displayIds;
494}
495
496sp<IBinder> SurfaceFlinger::getPhysicalDisplayToken(PhysicalDisplayId displayId) const {
497 Mutex::Autolock lock(mStateLock);
498 return getPhysicalDisplayTokenLocked(DisplayId{displayId});
Mathias Agopiane57f2922012-08-09 16:29:12 -0700499}
500
Ady Abraham37965d42018-11-01 13:43:32 -0700501status_t SurfaceFlinger::getColorManagement(bool* outGetColorManagement) const {
502 if (!outGetColorManagement) {
503 return BAD_VALUE;
504 }
505 *outGetColorManagement = useColorManagement;
506 return NO_ERROR;
Ady Abraham2a6ab2a2018-10-26 14:25:30 -0700507}
508
Lloyd Pique441d5042018-10-18 16:49:51 -0700509HWComposer& SurfaceFlinger::getHwComposer() const {
510 return mCompositionEngine->getHwComposer();
511}
512
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700513renderengine::RenderEngine& SurfaceFlinger::getRenderEngine() const {
514 return mCompositionEngine->getRenderEngine();
515}
516
Lloyd Pique70d91362018-10-18 16:02:55 -0700517compositionengine::CompositionEngine& SurfaceFlinger::getCompositionEngine() const {
518 return *mCompositionEngine.get();
519}
520
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800521void SurfaceFlinger::bootFinished()
522{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700523 if (mStartPropertySetThread->join() != NO_ERROR) {
524 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800525 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800526 const nsecs_t now = systemTime();
527 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000528 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700529
530 // wait patiently for the window manager death
531 const String16 name("window");
532 sp<IBinder> window(defaultServiceManager()->getService(name));
533 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700534 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700535 }
Robert Carr720e5062018-07-30 17:45:14 -0700536 sp<IBinder> input(defaultServiceManager()->getService(
537 String16("inputflinger")));
538 if (input == nullptr) {
539 ALOGE("Failed to link to input service");
540 } else {
541 mInputFlinger = interface_cast<IInputFlinger>(input);
542 }
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700543
Steven Thomas050b2c82017-03-06 11:45:16 -0800544 if (mVrFlinger) {
545 mVrFlinger->OnBootFinished();
546 }
547
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700548 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700549 // formerly we would just kill the process, but we now ask it to exit so it
550 // can choose where to stop the animation.
551 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700552
553 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
554 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
555 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700556
Ana Krulecbd6654b2019-02-15 15:18:15 -0800557 postMessageAsync(new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS {
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800558 readPersistentProperties();
559 mBootStage = BootStage::FINISHED;
Ana Krulecbd6654b2019-02-15 15:18:15 -0800560
Ady Abraham97d04232019-03-05 19:48:12 -0800561 // set the refresh rate according to the policy
Alec Mouri0a1cc962019-03-14 12:33:02 -0700562 const auto& performanceRefreshRate =
Dominik Laskowski22488f62019-03-28 09:53:04 -0700563 mRefreshRateConfigs.getRefreshRate(RefreshRateType::PERFORMANCE);
Ady Abraham97d04232019-03-05 19:48:12 -0800564
Dominik Laskowski22488f62019-03-28 09:53:04 -0700565 if (performanceRefreshRate && isDisplayConfigAllowed(performanceRefreshRate->configId)) {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800566 setRefreshRateTo(RefreshRateType::PERFORMANCE, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800567 } else {
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800568 setRefreshRateTo(RefreshRateType::DEFAULT, Scheduler::ConfigEvent::None);
Ana Krulecbd6654b2019-02-15 15:18:15 -0800569 }
Chia-I Wu14c9c7b2018-06-26 10:18:18 +0800570 }));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800571}
572
Dan Stoza436ccf32018-06-21 12:10:12 -0700573uint32_t SurfaceFlinger::getNewTexture() {
574 {
575 std::lock_guard lock(mTexturePoolMutex);
576 if (!mTexturePool.empty()) {
577 uint32_t name = mTexturePool.back();
578 mTexturePool.pop_back();
579 ATRACE_INT("TexturePoolSize", mTexturePool.size());
580 return name;
581 }
582
583 // The pool was too small, so increase it for the future
584 ++mTexturePoolSize;
585 }
586
587 // The pool was empty, so we need to get a new texture name directly using a
588 // blocking call to the main thread
589 uint32_t name = 0;
590 postMessageSync(new LambdaMessage([&]() { getRenderEngine().genTextures(1, &name); }));
591 return name;
592}
593
Mathias Agopian3f844832013-08-07 21:24:32 -0700594void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Dan Stoza67765d82019-05-07 14:58:27 -0700595 std::lock_guard lock(mTexturePoolMutex);
596 // We don't change the pool size, so the fix-up logic in postComposition will decide whether
597 // to actually delete this or not based on mTexturePoolSize
598 mTexturePool.push_back(texture);
599 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700600}
601
Wei Wangf9b05ee2017-07-19 20:59:39 -0700602// Do not call property_set on main thread which will be blocked by init
603// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700604void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700605 ALOGI( "SurfaceFlinger's main thread ready to run. "
606 "Initializing graphics H/W...");
607
Ana Krulec757f63a2019-01-25 10:46:18 -0800608 ALOGI("Phase offset NS: %" PRId64 "", mPhaseOffsets->getCurrentAppOffset());
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900609
Steven Thomasb02664d2017-07-26 18:48:28 -0700610 Mutex::Autolock _l(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -0700611 // start the EventThread
Ana Krulecc2870422019-01-29 19:00:58 -0800612 mScheduler =
Ady Abraham09bd3922019-04-08 10:44:56 -0700613 getFactory().createScheduler([this](bool enabled) { setPrimaryVsyncEnabled(enabled); },
614 mRefreshRateConfigs);
Ana Krulecc2870422019-01-29 19:00:58 -0800615 auto resyncCallback =
616 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800617
Ana Krulecc2870422019-01-29 19:00:58 -0800618 mAppConnectionHandle =
619 mScheduler->createConnection("app", mPhaseOffsets->getCurrentAppOffset(),
620 resyncCallback,
621 impl::EventThread::InterceptVSyncsCallback());
622 mSfConnectionHandle = mScheduler->createConnection("sf", mPhaseOffsets->getCurrentSfOffset(),
623 resyncCallback, [this](nsecs_t timestamp) {
624 mInterceptor->saveVSyncEvent(timestamp);
625 });
626
627 mEventQueue->setEventConnection(mScheduler->getEventConnection(mSfConnectionHandle));
628 mVsyncModulator.setSchedulerAndHandles(mScheduler.get(), mAppConnectionHandle.get(),
629 mSfConnectionHandle.get());
630
Kevin DuBois413287f2019-02-25 08:46:47 -0800631 mRegionSamplingThread =
632 new RegionSamplingThread(*this, *mScheduler,
633 RegionSamplingThread::EnvironmentTimingTunables());
634
Steven Thomasb02664d2017-07-26 18:48:28 -0700635 // Get a RenderEngine for the given display / config (can't fail)
Peiyong Lin13effd12018-07-24 17:01:47 -0700636 int32_t renderEngineFeature = 0;
Peiyong Lin833074a2018-08-28 11:53:54 -0700637 renderEngineFeature |= (useColorManagement ?
638 renderengine::RenderEngine::USE_COLOR_MANAGEMENT : 0);
Peiyong Linb3839ad2018-09-05 15:37:19 -0700639 renderEngineFeature |= (useContextPriority ?
640 renderengine::RenderEngine::USE_HIGH_PRIORITY_CONTEXT : 0);
Peiyong Lin6a043d52019-04-01 17:18:21 -0700641 renderEngineFeature |=
642 (enable_protected_contents(false) ? renderengine::RenderEngine::ENABLE_PROTECTED_CONTEXT
643 : 0);
Peiyong Lin0256f722018-08-31 15:45:10 -0700644
645 // TODO(b/77156734): We need to stop casting and use HAL types when possible.
Alec Mourida4cf3b2019-02-12 15:33:01 -0800646 // Sending maxFrameBufferAcquiredBuffers as the cache size is tightly tuned to single-display.
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700647 mCompositionEngine->setRenderEngine(
Peiyong Linc6780972018-10-28 15:24:08 -0700648 renderengine::RenderEngine::create(static_cast<int32_t>(defaultCompositionPixelFormat),
Alec Mourida4cf3b2019-02-12 15:33:01 -0800649 renderEngineFeature, maxFrameBufferAcquiredBuffers));
Steven Thomasb02664d2017-07-26 18:48:28 -0700650
651 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
652 "Starting with vr flinger active is not currently supported.");
Lloyd Pique441d5042018-10-18 16:49:51 -0700653 mCompositionEngine->setHwComposer(getFactory().createHWComposer(getBE().mHwcServiceName));
654 mCompositionEngine->getHwComposer().registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800655 // Process any initial hotplug and resulting display changes.
656 processDisplayHotplugEventsLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700657 const auto display = getDefaultDisplayDeviceLocked();
658 LOG_ALWAYS_FATAL_IF(!display, "Missing internal display after registering composer callback.");
Dominik Laskowski075d3172018-05-24 15:50:06 -0700659 LOG_ALWAYS_FATAL_IF(!getHwComposer().isConnected(*display->getId()),
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700660 "Internal display is disconnected.");
Jesse Hall692c7232012-11-08 15:41:56 -0800661
Steven Thomas050b2c82017-03-06 11:45:16 -0800662 if (useVrFlinger) {
Dominik Laskowski8c001672018-05-30 16:52:06 -0700663 auto vrFlingerRequestDisplayCallback = [this](bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700664 // This callback is called from the vr flinger dispatch thread. We
665 // need to call signalTransaction(), which requires holding
666 // mStateLock when we're not on the main thread. Acquiring
667 // mStateLock from the vr flinger dispatch thread might trigger a
668 // deadlock in surface flinger (see b/66916578), so post a message
669 // to be handled on the main thread instead.
Dominik Laskowski8c001672018-05-30 16:52:06 -0700670 postMessageAsync(new LambdaMessage([=] {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700671 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
672 mVrFlingerRequestsDisplay = requestDisplay;
673 signalTransaction();
Dominik Laskowski8c001672018-05-30 16:52:06 -0700674 }));
Steven Thomas050b2c82017-03-06 11:45:16 -0800675 };
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700676 mVrFlinger = dvr::VrFlinger::Create(getHwComposer().getComposer(),
677 getHwComposer()
Dominik Laskowski075d3172018-05-24 15:50:06 -0700678 .fromPhysicalDisplayId(*display->getId())
Dominik Laskowski45de9bd2018-06-11 17:44:10 -0700679 .value_or(0),
680 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800681 if (!mVrFlinger) {
682 ALOGE("Failed to start vrflinger");
683 }
684 }
685
Mathias Agopian92a979a2012-08-02 18:32:23 -0700686 // initialize our drawing state
687 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700688
Andy McFadden13a082e2012-08-24 10:16:42 -0700689 // set initial conditions (e.g. unblank default device)
690 initializeDisplays();
691
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700692 getRenderEngine().primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700693
Wei Wangf9b05ee2017-07-19 20:59:39 -0700694 // Inform native graphics APIs whether the present timestamp is supported:
Lloyd Pique90c115d2018-09-18 21:39:42 -0700695
696 const bool presentFenceReliable =
697 !getHwComposer().hasCapability(HWC2::Capability::PresentFenceIsNotReliable);
698 mStartPropertySetThread = getFactory().createStartPropertySetThread(presentFenceReliable);
Wei Wangf9b05ee2017-07-19 20:59:39 -0700699
700 if (mStartPropertySetThread->Start() != NO_ERROR) {
701 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800702 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800703
Alec Mouri93bc83d2019-04-17 14:47:43 -0700704 mScheduler->setChangeRefreshRateCallback(
705 [this](RefreshRateType type, Scheduler::ConfigEvent event) {
706 Mutex::Autolock lock(mStateLock);
707 setRefreshRateTo(type, event);
708 });
Alec Mouridc28b372019-04-18 21:17:13 -0700709 mScheduler->setGetVsyncPeriodCallback([this] {
710 Mutex::Autolock lock(mStateLock);
711 return getVsyncPeriod();
712 });
Ady Abraham09bd3922019-04-08 10:44:56 -0700713
Dominik Laskowski22488f62019-03-28 09:53:04 -0700714 mRefreshRateConfigs.populate(getHwComposer().getConfigs(*display->getId()));
715 mRefreshRateStats.setConfigMode(getHwComposer().getActiveConfigIndex(*display->getId()));
Ana Krulec7d1d6832018-12-27 11:10:09 -0800716
Dan Stoza9e56aa02015-11-02 13:00:03 -0800717 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700718}
719
Romain Guy11d63f42017-07-20 12:47:14 -0700720void SurfaceFlinger::readPersistentProperties() {
Chia-I Wu28f320b2018-05-03 11:02:56 -0700721 Mutex::Autolock _l(mStateLock);
722
Romain Guy11d63f42017-07-20 12:47:14 -0700723 char value[PROPERTY_VALUE_MAX];
724
725 property_get("persist.sys.sf.color_saturation", value, "1.0");
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800726 mGlobalSaturationFactor = atof(value);
Chia-I Wu28f320b2018-05-03 11:02:56 -0700727 updateColorMatrixLocked();
Peiyong Lindd9b2ae2018-03-01 16:22:45 -0800728 ALOGV("Saturation is set to %.2f", mGlobalSaturationFactor);
Romain Guy54f154a2017-10-24 21:40:32 +0100729
730 property_get("persist.sys.sf.native_mode", value, "0");
Chia-I Wu0d711262018-05-21 15:19:35 -0700731 mDisplayColorSetting = static_cast<DisplayColorSetting>(atoi(value));
Peiyong Lina3ea5592019-02-10 14:45:00 -0800732
733 property_get("persist.sys.sf.color_mode", value, "0");
734 mForceColorMode = static_cast<ColorMode>(atoi(value));
Romain Guy11d63f42017-07-20 12:47:14 -0700735}
736
Mathias Agopiana67e4182012-06-19 17:26:12 -0700737void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800738 // Start boot animation service by setting a property mailbox
739 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700740 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800741 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700742 if (mStartPropertySetThread->join() != NO_ERROR) {
743 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800744 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700745}
746
Mathias Agopian875d8e12013-06-07 15:35:48 -0700747size_t SurfaceFlinger::getMaxTextureSize() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700748 return getRenderEngine().getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700749}
750
Mathias Agopian875d8e12013-06-07 15:35:48 -0700751size_t SurfaceFlinger::getMaxViewportDims() const {
Lloyd Piqueb97e04f2018-10-18 17:07:05 -0700752 return getRenderEngine().getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700753}
754
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800755// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800756
Jamie Gennis582270d2011-08-17 18:19:00 -0700757bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800758 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800759 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800760 return authenticateSurfaceTextureLocked(bufferProducer);
761}
762
763bool SurfaceFlinger::authenticateSurfaceTextureLocked(
764 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800765 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Dan Stoza101d8dc2018-02-27 15:42:25 -0800766 return mGraphicBufferProducerList.count(surfaceTextureBinder.get()) > 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800767}
768
Brian Anderson6b376712017-04-04 10:51:39 -0700769status_t SurfaceFlinger::getSupportedFrameTimestamps(
770 std::vector<FrameEvent>* outSupported) const {
771 *outSupported = {
772 FrameEvent::REQUESTED_PRESENT,
773 FrameEvent::ACQUIRE,
774 FrameEvent::LATCH,
775 FrameEvent::FIRST_REFRESH_START,
776 FrameEvent::LAST_REFRESH_START,
777 FrameEvent::GPU_COMPOSITION_DONE,
778 FrameEvent::DEQUEUE_READY,
779 FrameEvent::RELEASE,
780 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700781 ConditionalLock _l(mStateLock,
782 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700783 if (!getHwComposer().hasCapability(
784 HWC2::Capability::PresentFenceIsNotReliable)) {
785 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
786 }
787 return NO_ERROR;
788}
789
Dominik Laskowski22488f62019-03-28 09:53:04 -0700790status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& displayToken,
791 Vector<DisplayInfo>* configs) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700792 if (!displayToken || !configs) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700793 return BAD_VALUE;
794 }
795
Dominik Laskowski22488f62019-03-28 09:53:04 -0700796 Mutex::Autolock lock(mStateLock);
797
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800798 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700799 if (!displayId) {
800 return NAME_NOT_FOUND;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700801 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700802
Mathias Agopian8b736f12012-08-13 17:54:26 -0700803 // TODO: Not sure if display density should handled by SF any longer
804 class Density {
Hernan Liatis57568932018-08-16 17:07:08 -0700805 static float getDensityFromProperty(char const* propName) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700806 char property[PROPERTY_VALUE_MAX];
Hernan Liatis57568932018-08-16 17:07:08 -0700807 float density = 0.0f;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800808 if (property_get(propName, property, nullptr) > 0) {
Hernan Liatis57568932018-08-16 17:07:08 -0700809 density = strtof(property, nullptr);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700810 }
811 return density;
812 }
813 public:
Hernan Liatis57568932018-08-16 17:07:08 -0700814 static float getEmuDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700815 return getDensityFromProperty("qemu.sf.lcd_density"); }
Hernan Liatis57568932018-08-16 17:07:08 -0700816 static float getBuildDensity() {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700817 return getDensityFromProperty("ro.sf.lcd_density"); }
818 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700819
Dan Stoza7f7da322014-05-02 15:26:25 -0700820 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700821
Dominik Laskowski075d3172018-05-24 15:50:06 -0700822 for (const auto& hwConfig : getHwComposer().getConfigs(*displayId)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700823 DisplayInfo info = DisplayInfo();
824
Dan Stoza9e56aa02015-11-02 13:00:03 -0800825 float xdpi = hwConfig->getDpiX();
826 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700827
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700828 info.w = hwConfig->getWidth();
829 info.h = hwConfig->getHeight();
830 // Default display viewport to display width and height
831 info.viewportW = info.w;
832 info.viewportH = info.h;
833
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800834 if (displayId == getInternalDisplayIdLocked()) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700835 // The density of the device is provided by a build property
836 float density = Density::getBuildDensity() / 160.0f;
837 if (density == 0) {
838 // the build doesn't provide a density -- this is wrong!
839 // use xdpi instead
840 ALOGE("ro.sf.lcd_density must be defined as a build property");
841 density = xdpi / 160.0f;
842 }
843 if (Density::getEmuDensity()) {
844 // if "qemu.sf.lcd_density" is specified, it overrides everything
845 xdpi = ydpi = density = Density::getEmuDensity();
846 density /= 160.0f;
847 }
848 info.density = density;
849
850 // TODO: this needs to go away (currently needed only by webkit)
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700851 const auto display = getDefaultDisplayDeviceLocked();
852 info.orientation = display ? display->getOrientation() : 0;
Yiwei Zhang27de5df2018-08-23 17:04:51 -0700853
854 // This is for screenrecord
855 const Rect viewport = display->getViewport();
856 if (viewport.isValid()) {
857 info.viewportW = uint32_t(viewport.getWidth());
858 info.viewportH = uint32_t(viewport.getHeight());
859 }
Dan Stoza7f7da322014-05-02 15:26:25 -0700860 } else {
861 // TODO: where should this value come from?
862 static const int TV_DENSITY = 213;
863 info.density = TV_DENSITY / 160.0f;
864 info.orientation = 0;
865 }
866
Dan Stoza7f7da322014-05-02 15:26:25 -0700867 info.xdpi = xdpi;
868 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800869 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Ady Abraham796beb02019-04-11 15:23:07 -0700870 const auto refreshRateType = mRefreshRateConfigs.getRefreshRateType(hwConfig->getId());
871 const auto offset = mPhaseOffsets->getOffsetsForRefreshRate(refreshRateType);
872 info.appVsyncOffset = offset.late.app;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800873
Andy McFadden91b2ca82014-06-13 14:04:23 -0700874 // This is how far in advance a buffer must be queued for
875 // presentation at a given time. If you want a buffer to appear
876 // on the screen at time N, you must submit the buffer before
877 // (N - presentationDeadline).
878 //
879 // Normally it's one full refresh period (to give SF a chance to
880 // latch the buffer), but this can be reduced by configuring a
881 // DispSync offset. Any additional delays introduced by the hardware
882 // composer or panel must be accounted for here.
883 //
884 // We add an additional 1ms to allow for processing time and
885 // differences between the ideal and actual refresh rate.
Ady Abraham796beb02019-04-11 15:23:07 -0700886 info.presentationDeadline = hwConfig->getVsyncPeriod() - offset.late.sf + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700887
888 // All non-virtual displays are currently considered secure.
889 info.secure = true;
890
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800891 if (displayId == getInternalDisplayIdLocked() &&
Chia-I Wu304d9cd2018-08-27 14:38:14 -0700892 primaryDisplayOrientation & DisplayState::eOrientationSwapMask) {
Iris Chang7501ed62018-04-30 14:45:42 +0800893 std::swap(info.w, info.h);
894 }
895
Michael Wright28f24d02016-07-12 13:30:53 -0700896 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700897 }
898
Dan Stoza7f7da322014-05-02 15:26:25 -0700899 return NO_ERROR;
900}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700901
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700902status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>&, DisplayStatInfo* stats) {
903 if (!stats) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700904 return BAD_VALUE;
905 }
906
Ana Krulecc2870422019-01-29 19:00:58 -0800907 mScheduler->getDisplayStatInfo(stats);
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700908 return NO_ERROR;
909}
910
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700911int SurfaceFlinger::getActiveConfig(const sp<IBinder>& displayToken) {
912 const auto display = getDisplayDevice(displayToken);
913 if (!display) {
914 ALOGE("getActiveConfig: Invalid display token %p", displayToken.get());
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800915 return BAD_VALUE;
916 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700917
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700918 return display->getActiveConfig();
Dan Stoza7f7da322014-05-02 15:26:25 -0700919}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700920
Ady Abraham03b02dd2019-03-21 15:40:11 -0700921void SurfaceFlinger::setDesiredActiveConfig(const ActiveConfigInfo& info) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800922 ATRACE_CALL();
Ana Krulec7d1d6832018-12-27 11:10:09 -0800923
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800924 // Don't check against the current mode yet. Worst case we set the desired
Ady Abraham9360a222019-02-27 17:05:30 -0800925 // config twice. However event generation config might have changed so we need to update it
926 // accordingly
Ady Abrahamb838aed2019-02-12 15:30:16 -0800927 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abraham03b02dd2019-03-21 15:40:11 -0700928 const Scheduler::ConfigEvent prevConfig = mDesiredActiveConfig.event;
929 mDesiredActiveConfig = info;
930 mDesiredActiveConfig.event = mDesiredActiveConfig.event | prevConfig;
Ady Abrahamb838aed2019-02-12 15:30:16 -0800931
932 if (!mDesiredActiveConfigChanged) {
Ady Abrahamb838aed2019-02-12 15:30:16 -0800933 // This will trigger HWC refresh without resetting the idle timer.
934 repaintEverythingForHWC();
Alec Mouri754c98a2019-03-18 18:53:42 -0700935 // Start receiving vsync samples now, so that we can detect a period
936 // switch.
937 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Ady Abraham53852a52019-05-28 18:07:44 -0700938 // As we called to set period, we will call to onRefreshRateChangeCompleted once
939 // DispSync model is locked.
940 mVsyncModulator.onRefreshRateChangeInitiated();
Alec Mouri754c98a2019-03-18 18:53:42 -0700941 mPhaseOffsets->setRefreshRateType(info.type);
942 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
Alec Mouri754c98a2019-03-18 18:53:42 -0700943 mVsyncModulator.setPhaseOffsets(early, gl, late);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800944 }
Ady Abrahamb838aed2019-02-12 15:30:16 -0800945 mDesiredActiveConfigChanged = true;
946 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
Ady Abraham03b02dd2019-03-21 15:40:11 -0700947
948 if (mRefreshRateOverlay) {
949 mRefreshRateOverlay->changeRefreshRate(mDesiredActiveConfig.type);
950 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800951}
952
953status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& displayToken, int mode) {
954 ATRACE_CALL();
Ady Abraham838de062019-02-04 10:24:03 -0800955
956 std::vector<int32_t> allowedConfig;
957 allowedConfig.push_back(mode);
958
959 return setAllowedDisplayConfigs(displayToken, allowedConfig);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800960}
961
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800962void SurfaceFlinger::setActiveConfigInternal() {
963 ATRACE_CALL();
964
Dominik Laskowski22488f62019-03-28 09:53:04 -0700965 const auto display = getDefaultDisplayDeviceLocked();
966 if (!display) {
967 return;
968 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800969
Dominik Laskowski22488f62019-03-28 09:53:04 -0700970 std::lock_guard<std::mutex> lock(mActiveConfigLock);
971 mRefreshRateStats.setConfigMode(mUpcomingActiveConfig.configId);
972
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800973 display->setActiveConfig(mUpcomingActiveConfig.configId);
974
Alec Mouri754c98a2019-03-18 18:53:42 -0700975 mPhaseOffsets->setRefreshRateType(mUpcomingActiveConfig.type);
Alec Mouri1c9e82b2019-03-07 12:24:05 -0800976 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
977 mVsyncModulator.setPhaseOffsets(early, gl, late);
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800978 ATRACE_INT("ActiveConfigMode", mUpcomingActiveConfig.configId);
Dominik Laskowski22488f62019-03-28 09:53:04 -0700979
Ana Krulec8d3e4f32019-03-05 10:40:33 -0800980 if (mUpcomingActiveConfig.event != Scheduler::ConfigEvent::None) {
Ady Abraham447052e2019-02-13 16:07:27 -0800981 mScheduler->onConfigChanged(mAppConnectionHandle, display->getId()->value,
982 mUpcomingActiveConfig.configId);
983 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -0800984}
985
Ady Abraham53852a52019-05-28 18:07:44 -0700986void SurfaceFlinger::desiredActiveConfigChangeDone() {
987 std::lock_guard<std::mutex> lock(mActiveConfigLock);
988 mDesiredActiveConfig.event = Scheduler::ConfigEvent::None;
989 mDesiredActiveConfigChanged = false;
990 ATRACE_INT("DesiredActiveConfigChanged", mDesiredActiveConfigChanged);
991
992 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
993 mPhaseOffsets->setRefreshRateType(mUpcomingActiveConfig.type);
994 const auto [early, gl, late] = mPhaseOffsets->getCurrentOffsets();
995 mVsyncModulator.setPhaseOffsets(early, gl, late);
996}
997
Dominik Laskowski22488f62019-03-28 09:53:04 -0700998bool SurfaceFlinger::performSetActiveConfig() {
Alec Mourife3dc942019-02-12 14:19:18 -0800999 ATRACE_CALL();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001000 if (mCheckPendingFence) {
Ady Abrahambe0f9482019-04-24 15:41:53 -07001001 if (previousFrameMissed()) {
Ady Abrahamb838aed2019-02-12 15:30:16 -08001002 // fence has not signaled yet. wait for the next invalidate
Ady Abraham8532d012019-05-08 14:50:56 -07001003 mEventQueue->invalidate();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001004 return true;
1005 }
1006
1007 // We received the present fence from the HWC, so we assume it successfully updated
1008 // the config, hence we update SF.
1009 mCheckPendingFence = false;
1010 setActiveConfigInternal();
1011 }
1012
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001013 // Store the local variable to release the lock.
1014 ActiveConfigInfo desiredActiveConfig;
1015 {
1016 std::lock_guard<std::mutex> lock(mActiveConfigLock);
Ady Abrahamb838aed2019-02-12 15:30:16 -08001017 if (!mDesiredActiveConfigChanged) {
1018 return false;
1019 }
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001020 desiredActiveConfig = mDesiredActiveConfig;
1021 }
1022
Dominik Laskowski22488f62019-03-28 09:53:04 -07001023 const auto display = getDefaultDisplayDeviceLocked();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001024 if (!display || display->getActiveConfig() == desiredActiveConfig.configId) {
1025 // display is not valid or we are already in the requested mode
1026 // on both cases there is nothing left to do
Ady Abraham53852a52019-05-28 18:07:44 -07001027 desiredActiveConfigChangeDone();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001028 return false;
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001029 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001030
Ady Abraham838de062019-02-04 10:24:03 -08001031 // Desired active config was set, it is different than the config currently in use, however
1032 // allowed configs might have change by the time we process the refresh.
1033 // Make sure the desired config is still allowed
Dominik Laskowski22488f62019-03-28 09:53:04 -07001034 if (!isDisplayConfigAllowed(desiredActiveConfig.configId)) {
Ady Abraham53852a52019-05-28 18:07:44 -07001035 desiredActiveConfigChangeDone();
Ady Abraham838de062019-02-04 10:24:03 -08001036 return false;
1037 }
Ady Abrahamb838aed2019-02-12 15:30:16 -08001038 mUpcomingActiveConfig = desiredActiveConfig;
1039 const auto displayId = display->getId();
1040 LOG_ALWAYS_FATAL_IF(!displayId);
1041
1042 ATRACE_INT("ActiveConfigModeHWC", mUpcomingActiveConfig.configId);
1043 getHwComposer().setActiveConfig(*displayId, mUpcomingActiveConfig.configId);
1044
1045 // we need to submit an empty frame to HWC to start the process
Ady Abrahamb838aed2019-02-12 15:30:16 -08001046 mCheckPendingFence = true;
Ady Abraham8532d012019-05-08 14:50:56 -07001047 mEventQueue->invalidate();
Ady Abrahamb838aed2019-02-12 15:30:16 -08001048 return false;
Mathias Agopianc666cae2012-07-25 18:56:13 -07001049}
Dominik Laskowski075d3172018-05-24 15:50:06 -07001050
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001051status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& displayToken,
1052 Vector<ColorMode>* outColorModes) {
1053 if (!displayToken || !outColorModes) {
Michael Wright28f24d02016-07-12 13:30:53 -07001054 return BAD_VALUE;
1055 }
1056
Peiyong Lina52f0292018-03-14 17:26:31 -07001057 std::vector<ColorMode> modes;
Peiyong Linff84a152019-05-17 18:36:19 -07001058 bool isInternalDisplay = false;
Steven Thomas6d8110b2017-08-31 18:24:21 -07001059 {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001060 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
1061
1062 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1063 if (!displayId) {
1064 return NAME_NOT_FOUND;
1065 }
1066
Dominik Laskowski075d3172018-05-24 15:50:06 -07001067 modes = getHwComposer().getColorModes(*displayId);
Peiyong Linff84a152019-05-17 18:36:19 -07001068 isInternalDisplay = displayId == getInternalDisplayIdLocked();
Steven Thomas6d8110b2017-08-31 18:24:21 -07001069 }
Michael Wright28f24d02016-07-12 13:30:53 -07001070 outColorModes->clear();
Peiyong Linff84a152019-05-17 18:36:19 -07001071
1072 // If it's built-in display and the configuration claims it's not wide color capable,
1073 // filter out all wide color modes. The typical reason why this happens is that the
1074 // hardware is not good enough to support GPU composition of wide color, and thus the
1075 // OEMs choose to disable this capability.
1076 if (isInternalDisplay && !hasWideColorDisplay) {
1077 std::remove_copy_if(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes),
1078 isWideColorMode);
1079 } else {
1080 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
1081 }
Michael Wright28f24d02016-07-12 13:30:53 -07001082
1083 return NO_ERROR;
1084}
1085
Daniel Solomon42d04562019-01-20 21:03:19 -08001086status_t SurfaceFlinger::getDisplayNativePrimaries(const sp<IBinder>& displayToken,
1087 ui::DisplayPrimaries &primaries) {
1088 if (!displayToken) {
1089 return BAD_VALUE;
1090 }
1091
1092 // Currently we only support this API for a single internal display.
1093 if (getInternalDisplayToken() != displayToken) {
1094 return BAD_VALUE;
1095 }
1096
1097 memcpy(&primaries, &mInternalDisplayPrimaries, sizeof(ui::DisplayPrimaries));
1098 return NO_ERROR;
1099}
1100
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001101ColorMode SurfaceFlinger::getActiveColorMode(const sp<IBinder>& displayToken) {
1102 if (const auto display = getDisplayDevice(displayToken)) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001103 return display->getCompositionDisplay()->getState().colorMode;
Michael Wright28f24d02016-07-12 13:30:53 -07001104 }
Peiyong Lina52f0292018-03-14 17:26:31 -07001105 return static_cast<ColorMode>(BAD_VALUE);
Michael Wright28f24d02016-07-12 13:30:53 -07001106}
1107
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001108status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& displayToken, ColorMode mode) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001109 postMessageSync(new LambdaMessage([&] {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001110 Vector<ColorMode> modes;
1111 getDisplayColorModes(displayToken, &modes);
1112 bool exists = std::find(std::begin(modes), std::end(modes), mode) != std::end(modes);
1113 if (mode < ColorMode::NATIVE || !exists) {
1114 ALOGE("Attempt to set invalid active color mode %s (%d) for display token %p",
1115 decodeColorMode(mode).c_str(), mode, displayToken.get());
1116 return;
Michael Wright28f24d02016-07-12 13:30:53 -07001117 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001118 const auto display = getDisplayDevice(displayToken);
1119 if (!display) {
1120 ALOGE("Attempt to set active color mode %s (%d) for invalid display token %p",
1121 decodeColorMode(mode).c_str(), mode, displayToken.get());
1122 } else if (display->isVirtual()) {
1123 ALOGW("Attempt to set active color mode %s (%d) for virtual display",
1124 decodeColorMode(mode).c_str(), mode);
1125 } else {
Lloyd Pique32cbe282018-10-19 13:09:22 -07001126 display->getCompositionDisplay()->setColorMode(mode, Dataspace::UNKNOWN,
1127 RenderIntent::COLORIMETRIC);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001128 }
1129 }));
1130
Michael Wright28f24d02016-07-12 13:30:53 -07001131 return NO_ERROR;
1132}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001133
Svetoslavd85084b2014-03-20 10:28:31 -07001134status_t SurfaceFlinger::clearAnimationFrameStats() {
1135 Mutex::Autolock _l(mStateLock);
1136 mAnimFrameTracker.clearStats();
1137 return NO_ERROR;
1138}
1139
1140status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1141 Mutex::Autolock _l(mStateLock);
1142 mAnimFrameTracker.getStats(outStats);
1143 return NO_ERROR;
1144}
1145
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001146status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& displayToken,
1147 HdrCapabilities* outCapabilities) const {
Dan Stozac4f471e2016-03-24 09:31:08 -07001148 Mutex::Autolock _l(mStateLock);
1149
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001150 const auto display = getDisplayDeviceLocked(displayToken);
1151 if (!display) {
1152 ALOGE("getHdrCapabilities: Invalid display token %p", displayToken.get());
Dan Stozac4f471e2016-03-24 09:31:08 -07001153 return BAD_VALUE;
1154 }
1155
Peiyong Linfb069302018-04-25 14:34:31 -07001156 // At this point the DisplayDeivce should already be set up,
1157 // meaning the luminance information is already queried from
1158 // hardware composer and stored properly.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001159 const HdrCapabilities& capabilities = display->getHdrCapabilities();
Peiyong Linfb069302018-04-25 14:34:31 -07001160 *outCapabilities = HdrCapabilities(capabilities.getSupportedHdrTypes(),
1161 capabilities.getDesiredMaxLuminance(),
1162 capabilities.getDesiredMaxAverageLuminance(),
1163 capabilities.getDesiredMinLuminance());
Dan Stozac4f471e2016-03-24 09:31:08 -07001164
1165 return NO_ERROR;
1166}
1167
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001168status_t SurfaceFlinger::getDisplayedContentSamplingAttributes(const sp<IBinder>& displayToken,
1169 ui::PixelFormat* outFormat,
1170 ui::Dataspace* outDataspace,
1171 uint8_t* outComponentMask) const {
1172 if (!outFormat || !outDataspace || !outComponentMask) {
1173 return BAD_VALUE;
1174 }
Kevin DuBois74e53772018-11-19 10:52:38 -08001175 const auto display = getDisplayDevice(displayToken);
Kevin DuBois9c0a1762018-10-16 13:32:31 -07001176 if (!display || !display->getId()) {
1177 ALOGE("getDisplayedContentSamplingAttributes: Bad display token: %p", display.get());
1178 return BAD_VALUE;
1179 }
1180 return getHwComposer().getDisplayedContentSamplingAttributes(*display->getId(), outFormat,
1181 outDataspace, outComponentMask);
1182}
1183
Kevin DuBois74e53772018-11-19 10:52:38 -08001184status_t SurfaceFlinger::setDisplayContentSamplingEnabled(const sp<IBinder>& displayToken,
1185 bool enable, uint8_t componentMask,
1186 uint64_t maxFrames) const {
1187 const auto display = getDisplayDevice(displayToken);
1188 if (!display || !display->getId()) {
1189 ALOGE("setDisplayContentSamplingEnabled: Bad display token: %p", display.get());
1190 return BAD_VALUE;
1191 }
1192
1193 return getHwComposer().setDisplayContentSamplingEnabled(*display->getId(), enable,
1194 componentMask, maxFrames);
1195}
1196
Kevin DuBois1d4249a2018-08-29 10:45:14 -07001197status_t SurfaceFlinger::getDisplayedContentSample(const sp<IBinder>& displayToken,
1198 uint64_t maxFrames, uint64_t timestamp,
1199 DisplayedFrameStats* outStats) const {
1200 const auto display = getDisplayDevice(displayToken);
1201 if (!display || !display->getId()) {
1202 ALOGE("getDisplayContentSample: Bad display token: %p", displayToken.get());
1203 return BAD_VALUE;
1204 }
1205
1206 return getHwComposer().getDisplayedContentSample(*display->getId(), maxFrames, timestamp,
1207 outStats);
1208}
1209
Peiyong Lin3c2791e2019-01-14 17:05:18 -08001210status_t SurfaceFlinger::getProtectedContentSupport(bool* outSupported) const {
1211 if (!outSupported) {
1212 return BAD_VALUE;
1213 }
1214 *outSupported = getRenderEngine().supportsProtectedContent();
1215 return NO_ERROR;
1216}
1217
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001218status_t SurfaceFlinger::isWideColorDisplay(const sp<IBinder>& displayToken,
1219 bool* outIsWideColorDisplay) const {
1220 if (!displayToken || !outIsWideColorDisplay) {
1221 return BAD_VALUE;
1222 }
1223 Mutex::Autolock _l(mStateLock);
1224 const auto display = getDisplayDeviceLocked(displayToken);
1225 if (!display) {
1226 return BAD_VALUE;
1227 }
Peiyong Linff84a152019-05-17 18:36:19 -07001228
1229 // Use hasWideColorDisplay to override built-in display.
1230 const auto displayId = display->getId();
1231 if (displayId && displayId == getInternalDisplayIdLocked()) {
1232 *outIsWideColorDisplay = hasWideColorDisplay;
1233 return NO_ERROR;
1234 }
Peiyong Lin4f3fddf2019-01-24 17:21:24 -08001235 *outIsWideColorDisplay = display->hasWideColorGamut();
1236 return NO_ERROR;
1237}
1238
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001239status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07001240 postMessageSync(new LambdaMessage([&] {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001241 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001242
Chia-I Wu90f669f2017-10-05 14:24:41 -07001243 if (mInjectVSyncs == enable) {
1244 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001245 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001246
Ana Krulecc2870422019-01-29 19:00:58 -08001247 auto resyncCallback =
1248 mScheduler->makeResyncCallback(std::bind(&SurfaceFlinger::getVsyncPeriod, this));
Dominik Laskowskif654d572018-12-20 11:03:06 -08001249
Ady Abraham46e2f3e2019-03-18 16:40:15 -07001250 // TODO(b/128863962): Part of the Injector should be refactored, so that it
Ana Krulec98b5b242018-08-10 15:03:23 -07001251 // can be passed to Scheduler.
Chia-I Wu90f669f2017-10-05 14:24:41 -07001252 if (enable) {
1253 ALOGV("VSync Injections enabled");
1254 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001255 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique24b0a482018-03-09 18:52:26 -08001256 mInjectorEventThread = std::make_unique<
Dominik Laskowskif654d572018-12-20 11:03:06 -08001257 impl::EventThread>(mVSyncInjector.get(),
Lloyd Pique24b0a482018-03-09 18:52:26 -08001258 impl::EventThread::InterceptVSyncsCallback(),
1259 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001260 }
Dominik Laskowskif654d572018-12-20 11:03:06 -08001261 mEventQueue->setEventThread(mInjectorEventThread.get(), std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001262 } else {
1263 ALOGV("VSync Injections disabled");
Ana Krulecc2870422019-01-29 19:00:58 -08001264 mEventQueue->setEventThread(mScheduler->getEventThread(mSfConnectionHandle),
1265 std::move(resyncCallback));
Chia-I Wu90f669f2017-10-05 14:24:41 -07001266 }
1267
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001268 mInjectVSyncs = enable;
Dominik Laskowski8c001672018-05-30 16:52:06 -07001269 }));
1270
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001271 return NO_ERROR;
1272}
1273
1274status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001275 Mutex::Autolock _l(mStateLock);
1276
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001277 if (!mInjectVSyncs) {
1278 ALOGE("VSync Injections not enabled");
1279 return BAD_VALUE;
1280 }
1281 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1282 ALOGV("Injecting VSync inside SurfaceFlinger");
1283 mVSyncInjector->onInjectSyncEvent(when);
1284 }
1285 return NO_ERROR;
1286}
1287
Lloyd Pique755e3192018-01-31 16:46:15 -08001288status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1289 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001290 // Try to acquire a lock for 1s, fail gracefully
1291 const status_t err = mStateLock.timedLock(s2ns(1));
1292 const bool locked = (err == NO_ERROR);
1293 if (!locked) {
1294 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1295 return TIMED_OUT;
1296 }
1297
1298 outLayers->clear();
1299 mCurrentState.traverseInZOrder([&](Layer* layer) {
1300 outLayers->push_back(layer->getLayerDebugInfo());
1301 });
1302
1303 mStateLock.unlock();
1304 return NO_ERROR;
1305}
1306
Peiyong Linc6780972018-10-28 15:24:08 -07001307status_t SurfaceFlinger::getCompositionPreference(
1308 Dataspace* outDataspace, ui::PixelFormat* outPixelFormat,
1309 Dataspace* outWideColorGamutDataspace,
1310 ui::PixelFormat* outWideColorGamutPixelFormat) const {
Peiyong Lin9d846a52018-11-05 13:18:20 -08001311 *outDataspace = mDefaultCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001312 *outPixelFormat = defaultCompositionPixelFormat;
Peiyong Lin9d846a52018-11-05 13:18:20 -08001313 *outWideColorGamutDataspace = mWideColorGamutCompositionDataspace;
Peiyong Linc6780972018-10-28 15:24:08 -07001314 *outWideColorGamutPixelFormat = wideColorGamutCompositionPixelFormat;
Peiyong Lin0256f722018-08-31 15:45:10 -07001315 return NO_ERROR;
1316}
1317
Dan Stozaec460082018-12-17 15:35:09 -08001318status_t SurfaceFlinger::addRegionSamplingListener(const Rect& samplingArea,
1319 const sp<IBinder>& stopLayerHandle,
1320 const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001321 if (!listener || samplingArea == Rect::INVALID_RECT) {
Dan Stozaec460082018-12-17 15:35:09 -08001322 return BAD_VALUE;
1323 }
1324 mRegionSamplingThread->addListener(samplingArea, stopLayerHandle, listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001325 return NO_ERROR;
1326}
1327
Dan Stozaec460082018-12-17 15:35:09 -08001328status_t SurfaceFlinger::removeRegionSamplingListener(const sp<IRegionSamplingListener>& listener) {
tangrobinaf45f012019-02-26 18:10:10 +08001329 if (!listener) {
1330 return BAD_VALUE;
1331 }
Dan Stozaec460082018-12-17 15:35:09 -08001332 mRegionSamplingThread->removeListener(listener);
Dan Stoza84ab9372018-12-17 15:27:57 -08001333 return NO_ERROR;
1334}
Dan Gittik57e63c52019-01-18 16:37:54 +00001335
1336status_t SurfaceFlinger::getDisplayBrightnessSupport(const sp<IBinder>& displayToken,
1337 bool* outSupport) const {
1338 if (!displayToken || !outSupport) {
1339 return BAD_VALUE;
1340 }
1341 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1342 if (!displayId) {
1343 return NAME_NOT_FOUND;
1344 }
1345 *outSupport =
1346 getHwComposer().hasDisplayCapability(displayId, HWC2::DisplayCapability::Brightness);
1347 return NO_ERROR;
1348}
1349
1350status_t SurfaceFlinger::setDisplayBrightness(const sp<IBinder>& displayToken,
1351 float brightness) const {
1352 if (!displayToken) {
1353 return BAD_VALUE;
1354 }
1355 const auto displayId = getPhysicalDisplayIdLocked(displayToken);
1356 if (!displayId) {
1357 return NAME_NOT_FOUND;
1358 }
1359 return getHwComposer().setDisplayBrightness(*displayId, brightness);
1360}
1361
Ady Abraham8532d012019-05-08 14:50:56 -07001362status_t SurfaceFlinger::notifyPowerHint(int32_t hintId) {
1363 PowerHint powerHint = static_cast<PowerHint>(hintId);
1364
1365 if (powerHint == PowerHint::INTERACTION) {
1366 mScheduler->notifyTouchEvent();
1367 }
1368
1369 return NO_ERROR;
1370}
1371
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001372// ----------------------------------------------------------------------------
1373
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001374sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
1375 ISurfaceComposer::VsyncSource vsyncSource) {
Ana Krulecc2870422019-01-29 19:00:58 -08001376 auto resyncCallback = mScheduler->makeResyncCallback([this] {
Dominik Laskowski83b88212018-12-11 13:34:06 -08001377 Mutex::Autolock lock(mStateLock);
1378 return getVsyncPeriod();
1379 });
Dominik Laskowskif654d572018-12-20 11:03:06 -08001380
Ana Krulecc2870422019-01-29 19:00:58 -08001381 const auto& handle =
1382 vsyncSource == eVsyncSourceSurfaceFlinger ? mSfConnectionHandle : mAppConnectionHandle;
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001383
Ana Krulecc2870422019-01-29 19:00:58 -08001384 return mScheduler->createDisplayEventConnection(handle, std::move(resyncCallback));
Mathias Agopianbb641242010-05-18 17:06:55 -07001385}
1386
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001387// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001388
1389void SurfaceFlinger::waitForEvent() {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001390 mEventQueue->waitMessage();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001391}
1392
1393void SurfaceFlinger::signalTransaction() {
Ady Abraham8532d012019-05-08 14:50:56 -07001394 mScheduler->resetIdleTimer();
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001395 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001396}
1397
1398void SurfaceFlinger::signalLayerUpdate() {
Ady Abraham8532d012019-05-08 14:50:56 -07001399 mScheduler->resetIdleTimer();
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001400 mEventQueue->invalidate();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001401}
1402
1403void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001404 mRefreshPending = true;
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001405 mEventQueue->refresh();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001406}
1407
1408status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001409 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001410 return mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001411}
1412
1413status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001414 nsecs_t reltime, uint32_t /* flags */) {
Lloyd Pique3fcdef12018-01-22 17:14:00 -08001415 status_t res = mEventQueue->postMessage(msg, reltime);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001416 if (res == NO_ERROR) {
1417 msg->wait();
1418 }
1419 return res;
1420}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001421
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001422void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001423 do {
1424 waitForEvent();
1425 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001426}
1427
Dominik Laskowski83b88212018-12-11 13:34:06 -08001428nsecs_t SurfaceFlinger::getVsyncPeriod() const {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001429 const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski83b88212018-12-11 13:34:06 -08001430 if (!displayId || !getHwComposer().isConnected(*displayId)) {
1431 return 0;
1432 }
1433
1434 const auto config = getHwComposer().getActiveConfig(*displayId);
1435 return config ? config->getVsyncPeriod() : 0;
1436}
1437
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001438void SurfaceFlinger::onVsyncReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
1439 int64_t timestamp) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001440 ATRACE_NAME("SF onVsync");
1441
Steven Thomas3cfac282017-02-06 12:29:30 -08001442 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001443 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001444 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001445 return;
1446 }
1447
Dominik Laskowski075d3172018-05-24 15:50:06 -07001448 if (!getHwComposer().onVsync(hwcDisplayId, timestamp)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001449 return;
1450 }
1451
Dominik Laskowski075d3172018-05-24 15:50:06 -07001452 if (hwcDisplayId != getHwComposer().getInternalHwcDisplayId()) {
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001453 // For now, we don't do anything with external display vsyncs.
1454 return;
1455 }
1456
Alec Mourif8e689c2019-05-20 18:32:22 -07001457 bool periodFlushed = false;
1458 mScheduler->addResyncSample(timestamp, &periodFlushed);
1459 if (periodFlushed) {
1460 mVsyncModulator.onRefreshRateChangeCompleted();
Alec Mouri754c98a2019-03-18 18:53:42 -07001461 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001462}
1463
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001464void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001465 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1466 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001467}
1468
Dominik Laskowski22488f62019-03-28 09:53:04 -07001469bool SurfaceFlinger::isDisplayConfigAllowed(int32_t configId) {
1470 return mAllowedDisplayConfigs.empty() || mAllowedDisplayConfigs.count(configId);
Ady Abraham838de062019-02-04 10:24:03 -08001471}
1472
Ana Krulec8d3e4f32019-03-05 10:40:33 -08001473void SurfaceFlinger::setRefreshRateTo(RefreshRateType refreshRate, Scheduler::ConfigEvent event) {
Dominik Laskowski22488f62019-03-28 09:53:04 -07001474 const auto display = getDefaultDisplayDeviceLocked();
1475 if (!display || mBootStage != BootStage::FINISHED) {
Ana Krulec7d1d6832018-12-27 11:10:09 -08001476 return;
1477 }
Alec Mouri1c9e82b2019-03-07 12:24:05 -08001478 ATRACE_CALL();
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08001479
Ana Krulec7d1d6832018-12-27 11:10:09 -08001480 // Don't do any updating if the current fps is the same as the new one.
Dominik Laskowski22488f62019-03-28 09:53:04 -07001481 const auto& refreshRateConfig = mRefreshRateConfigs.getRefreshRate(refreshRate);
Alec Mouri0a1cc962019-03-14 12:33:02 -07001482 if (!refreshRateConfig) {
1483 ALOGV("Skipping refresh rate change request for unsupported rate.");
Ady Abraham1902d072019-03-01 17:18:59 -08001484 return;
Ana Krulec7d1d6832018-12-27 11:10:09 -08001485 }
Ady Abraham1902d072019-03-01 17:18:59 -08001486
Alec Mouri0a1cc962019-03-14 12:33:02 -07001487 const int desiredConfigId = refreshRateConfig->configId;
1488
Dominik Laskowski22488f62019-03-28 09:53:04 -07001489 if (!isDisplayConfigAllowed(desiredConfigId)) {
Ady Abraham1902d072019-03-01 17:18:59 -08001490 ALOGV("Skipping config %d as it is not part of allowed configs", desiredConfigId);
1491 return;
1492 }
1493
Dominik Laskowski22488f62019-03-28 09:53:04 -07001494 setDesiredActiveConfig({refreshRate, desiredConfigId, event});
Ana Krulec7d1d6832018-12-27 11:10:09 -08001495}
1496
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001497void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001498 HWC2::Connection connection) {
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001499 ALOGV("%s(%d, %" PRIu64 ", %s)", __FUNCTION__, sequenceId, hwcDisplayId,
Lloyd Pique715a2c12017-12-14 17:18:08 -08001500 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001501
Lloyd Piqueba04e622017-12-14 17:11:26 -08001502 // Ignore events that do not have the right sequenceId.
1503 if (sequenceId != getBE().mComposerSequenceId) {
1504 return;
1505 }
1506
Steven Thomasb02664d2017-07-26 18:48:28 -07001507 // Only lock if we're not on the main thread. This function is normally
1508 // called on a hwbinder thread, but for the primary display it's called on
1509 // the main thread with the state lock already held, so don't attempt to
1510 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001511 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001512
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001513 mPendingHotplugEvents.emplace_back(HotplugEvent{hwcDisplayId, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001514
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001515 if (std::this_thread::get_id() == mMainThreadId) {
1516 // Process all pending hot plug events immediately if we are on the main thread.
1517 processDisplayHotplugEventsLocked();
1518 }
1519
Lloyd Piqueba04e622017-12-14 17:11:26 -08001520 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001521}
1522
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001523void SurfaceFlinger::onRefreshReceived(int sequenceId, hwc2_display_t /*hwcDisplayId*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001524 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001525 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001526 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001527 }
Ana Krulec7d1d6832018-12-27 11:10:09 -08001528 repaintEverythingForHWC();
Steven Thomas3cfac282017-02-06 12:29:30 -08001529}
1530
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001531void SurfaceFlinger::setPrimaryVsyncEnabled(bool enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001532 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001533 Mutex::Autolock lock(mStateLock);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08001534 if (const auto displayId = getInternalDisplayIdLocked()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07001535 getHwComposer().setVsyncEnabled(*displayId,
1536 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
1537 }
Mathias Agopian86303202012-07-24 22:46:10 -07001538}
1539
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001540// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001541void SurfaceFlinger::resetDisplayState() {
Ana Krulecc2870422019-01-29 19:00:58 -08001542 mScheduler->disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001543 // Clear the drawing state so that the logic inside of
1544 // handleTransactionLocked will fire. It will determine the delta between
1545 // mCurrentState and mDrawingState and re-apply all changes when we make the
1546 // transition.
1547 mDrawingState.displays.clear();
1548 mDisplays.clear();
1549}
1550
Steven Thomas050b2c82017-03-06 11:45:16 -08001551void SurfaceFlinger::updateVrFlinger() {
Alec Mourife3dc942019-02-12 14:19:18 -08001552 ATRACE_CALL();
Steven Thomas050b2c82017-03-06 11:45:16 -08001553 if (!mVrFlinger)
1554 return;
1555 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
Lloyd Pique441d5042018-10-18 16:49:51 -07001556 if (vrFlingerRequestsDisplay == getHwComposer().isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001557 return;
1558 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001559
Lloyd Pique441d5042018-10-18 16:49:51 -07001560 if (vrFlingerRequestsDisplay && !getHwComposer().getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001561 ALOGE("Vr flinger is only supported for remote hardware composer"
1562 " service connections. Ignoring request to transition to vr"
1563 " flinger.");
1564 mVrFlingerRequestsDisplay = false;
1565 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001566 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001567
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001568 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001569
Steven Thomas0123ac62018-07-12 11:32:34 -07001570 sp<DisplayDevice> display = getDefaultDisplayDeviceLocked();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001571 LOG_ALWAYS_FATAL_IF(!display);
Lloyd Pique07e33212018-12-18 16:33:37 -08001572
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07001573 const int currentDisplayPowerMode = display->getPowerMode();
Lloyd Pique07e33212018-12-18 16:33:37 -08001574
1575 // Clear out all the output layers from the composition engine for all
1576 // displays before destroying the hardware composer interface. This ensures
1577 // any HWC layers are destroyed through that interface before it becomes
1578 // invalid.
1579 for (const auto& [token, displayDevice] : mDisplays) {
1580 displayDevice->getCompositionDisplay()->setOutputLayersOrderedByZ(
1581 compositionengine::Output::OutputLayers());
1582 }
1583
Steven Thomas0123ac62018-07-12 11:32:34 -07001584 // This DisplayDevice will no longer be relevant once resetDisplayState() is
1585 // called below. Clear the reference now so we don't accidentally use it
1586 // later.
1587 display.clear();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001588
Steven Thomasb02664d2017-07-26 18:48:28 -07001589 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001590 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001591 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001592
Steven Thomasb02664d2017-07-26 18:48:28 -07001593 resetDisplayState();
Lloyd Pique441d5042018-10-18 16:49:51 -07001594 // Delete the current instance before creating the new one
1595 mCompositionEngine->setHwComposer(std::unique_ptr<HWComposer>());
1596 mCompositionEngine->setHwComposer(getFactory().createHWComposer(
1597 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName));
1598 getHwComposer().registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001599
Lloyd Pique441d5042018-10-18 16:49:51 -07001600 LOG_ALWAYS_FATAL_IF(!getHwComposer().getComposer()->isRemote(),
David Sodman105b7dc2017-11-04 20:28:14 -07001601 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001602
1603 if (vrFlingerRequestsDisplay) {
1604 mVrFlinger->GrantDisplayOwnership();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001605 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001606
1607 mVisibleRegionsDirty = true;
1608 invalidateHwcGeometry();
1609
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001610 // Re-enable default display.
Steven Thomas0123ac62018-07-12 11:32:34 -07001611 display = getDefaultDisplayDeviceLocked();
1612 LOG_ALWAYS_FATAL_IF(!display);
Dominik Laskowskie9774092018-12-11 10:04:24 -08001613 setPowerModeInternal(display, currentDisplayPowerMode);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001614
Steven Thomasb02664d2017-07-26 18:48:28 -07001615 // Reset the timing values to account for the period of the swapped in HWC
Dominik Laskowski83b88212018-12-11 13:34:06 -08001616 const nsecs_t vsyncPeriod = getVsyncPeriod();
1617 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001618
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001619 // The present fences returned from vr_hwc are not an accurate
1620 // representation of vsync times.
Ana Krulecc2870422019-01-29 19:00:58 -08001621 mScheduler->setIgnorePresentFences(getHwComposer().isUsingVrComposer() || !hasSyncFramework);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001622
Steven Thomasb02664d2017-07-26 18:48:28 -07001623 // Use phase of 0 since phase is not known.
1624 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08001625 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07001626 setCompositorTimingSnapped(stats, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001627
Ana Krulecc2870422019-01-29 19:00:58 -08001628 mScheduler->resyncToHardwareVsync(false, vsyncPeriod);
Steven Thomasdfde8fa2018-04-19 16:00:58 -07001629
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001630 mRepaintEverything = true;
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001631 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001632}
1633
Ady Abrahambe0f9482019-04-24 15:41:53 -07001634bool SurfaceFlinger::previousFrameMissed() NO_THREAD_SAFETY_ANALYSIS {
1635 // We are storing the last 2 present fences. If sf's phase offset is to be
1636 // woken up before the actual vsync but targeting the next vsync, we need to check
1637 // fence N-2
1638 const sp<Fence>& fence =
1639 mVsyncModulator.getOffsets().sf < mPhaseOffsets->getOffsetThresholdForNextVsync()
1640 ? mPreviousPresentFences[0]
1641 : mPreviousPresentFences[1];
1642
1643 return fence != Fence::NO_FENCE && (fence->getStatus() == Fence::Status::Unsignaled);
1644}
1645
Alec Mouriaa614192019-06-06 13:28:34 -07001646nsecs_t SurfaceFlinger::getExpectedPresentTime() NO_THREAD_SAFETY_ANALYSIS {
1647 DisplayStatInfo stats;
1648 mScheduler->getDisplayStatInfo(&stats);
1649 const nsecs_t presentTime = mScheduler->expectedPresentTime();
1650 // Inflate the expected present time if we're targetting the next vsync.
1651 const nsecs_t correctedTime =
1652 mVsyncModulator.getOffsets().sf < mPhaseOffsets->getOffsetThresholdForNextVsync()
1653 ? presentTime
1654 : presentTime + stats.vsyncPeriod;
1655 return correctedTime;
1656}
1657
Dominik Laskowski22488f62019-03-28 09:53:04 -07001658void SurfaceFlinger::onMessageReceived(int32_t what) NO_THREAD_SAFETY_ANALYSIS {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001659 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001660 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001661 case MessageQueue::INVALIDATE: {
Ady Abrahambe0f9482019-04-24 15:41:53 -07001662 bool frameMissed = previousFrameMissed();
Alec Mouricc0fc602019-02-26 21:45:19 -08001663 bool hwcFrameMissed = mHadDeviceComposition && frameMissed;
1664 bool gpuFrameMissed = mHadClientComposition && frameMissed;
1665 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
1666 ATRACE_INT("HwcFrameMissed", static_cast<int>(hwcFrameMissed));
1667 ATRACE_INT("GpuFrameMissed", static_cast<int>(gpuFrameMissed));
1668 if (frameMissed) {
1669 mFrameMissedCount++;
1670 mTimeStats->incrementMissedFrames();
1671 }
1672
Alec Mouri40189b02019-03-05 15:07:54 -08001673 if (hwcFrameMissed) {
1674 mHwcFrameMissedCount++;
1675 }
1676
1677 if (gpuFrameMissed) {
1678 mGpuFrameMissedCount++;
1679 }
1680
Ana Krulecfefd6ae2019-02-13 17:53:08 -08001681 if (mUseSmart90ForVideo) {
1682 // This call is made each time SF wakes up and creates a new frame. It is part
1683 // of video detection feature.
Ady Abraham09bd3922019-04-08 10:44:56 -07001684 mScheduler->updateFpsBasedOnContent();
Ana Krulecfefd6ae2019-02-13 17:53:08 -08001685 }
1686
Ady Abrahamb838aed2019-02-12 15:30:16 -08001687 if (performSetActiveConfig()) {
Ana Kruleca5bdd9d2019-01-29 19:00:58 -08001688 break;
1689 }
1690
Alec Mourife3dc942019-02-12 14:19:18 -08001691 // For now, only propagate backpressure when missing a hwc frame.
Alec Mourib0f45822019-05-06 11:01:35 -07001692 if (hwcFrameMissed && !gpuFrameMissed) {
Yiwei Zhang621f9d42018-05-07 10:40:55 -07001693 if (mPropagateBackpressure) {
1694 signalLayerUpdate();
1695 break;
1696 }
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001697 }
Dan Stoza50182882016-07-08 12:02:20 -07001698
Steven Thomas050b2c82017-03-06 11:45:16 -08001699 // Now that we're going to make it to the handleMessageTransaction()
1700 // call below it's safe to call updateVrFlinger(), which will
1701 // potentially trigger a display handoff.
1702 updateVrFlinger();
1703
Dan Stoza6b9454d2014-11-07 16:00:59 -08001704 bool refreshNeeded = handleMessageTransaction();
1705 refreshNeeded |= handleMessageInvalidate();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001706
1707 updateCursorAsync();
1708 updateInputFlinger();
1709
Dan Stoza58784442014-12-02 16:58:17 -08001710 refreshNeeded |= mRepaintEverything;
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08001711 if (refreshNeeded && CC_LIKELY(mBootStage != BootStage::BOOTLOADER)) {
Dan Stoza58784442014-12-02 16:58:17 -08001712 // Signal a refresh if a transaction modified the window state,
1713 // a new buffer was latched, or if HWC has requested a full
1714 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001715 signalRefresh();
1716 }
1717 break;
1718 }
1719 case MessageQueue::REFRESH: {
1720 handleMessageRefresh();
1721 break;
1722 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001723 }
1724}
1725
Dan Stoza6b9454d2014-11-07 16:00:59 -08001726bool SurfaceFlinger::handleMessageTransaction() {
Alec Mourife3dc942019-02-12 14:19:18 -08001727 ATRACE_CALL();
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001728 uint32_t transactionFlags = peekTransactionFlags();
Marissa Wall713b63f2018-10-17 15:42:43 -07001729
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001730 bool flushedATransaction = flushTransactionQueues();
1731
1732 bool runHandleTransaction = transactionFlags &&
1733 ((transactionFlags != eTransactionFlushNeeded) || flushedATransaction);
1734
1735 if (runHandleTransaction) {
1736 handleTransaction(eTransactionMask);
1737 } else {
1738 getTransactionFlags(eTransactionFlushNeeded);
Marissa Wall713b63f2018-10-17 15:42:43 -07001739 }
1740
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001741 if (transactionFlushNeeded()) {
1742 setTransactionFlags(eTransactionFlushNeeded);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001743 }
Marissa Wall713b63f2018-10-17 15:42:43 -07001744
Marissa Walle6e3c0d2019-03-29 10:28:30 -07001745 return runHandleTransaction;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001746}
1747
Mathias Agopian4fec8732012-06-29 14:12:52 -07001748void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001749 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001750
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001751 mRefreshPending = false;
1752
Lloyd Piquef1c675b2018-09-12 20:45:39 -07001753 const bool repaintEverything = mRepaintEverything.exchange(false);
David Sodman2b406362017-12-15 13:33:47 -08001754 preComposition();
Lloyd Pique074e8122018-07-26 12:57:23 -07001755 rebuildLayerStacks();
David Sodman79bba0e2018-08-05 18:07:49 -07001756 calculateWorkingSet();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001757 for (const auto& [token, display] : mDisplays) {
1758 beginFrame(display);
1759 prepareFrame(display);
1760 doDebugFlashRegions(display, repaintEverything);
1761 doComposition(display, repaintEverything);
1762 }
1763
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001764 logLayerStats();
David Sodmanfa9b2af2017-12-24 13:28:59 -08001765
1766 postFrame();
David Sodman2b406362017-12-15 13:33:47 -08001767 postComposition();
Dan Stoza05dacfb2016-07-01 13:33:38 -07001768
Dan Stozabfbffeb2016-07-21 14:49:33 -07001769 mHadClientComposition = false;
Alec Mouricc0fc602019-02-26 21:45:19 -08001770 mHadDeviceComposition = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001771 for (const auto& [token, displayDevice] : mDisplays) {
1772 auto display = displayDevice->getCompositionDisplay();
1773 const auto displayId = display->getId();
Lloyd Pique441d5042018-10-18 16:49:51 -07001774 mHadClientComposition =
Lloyd Pique32cbe282018-10-19 13:09:22 -07001775 mHadClientComposition || getHwComposer().hasClientComposition(displayId);
Alec Mouricc0fc602019-02-26 21:45:19 -08001776 mHadDeviceComposition =
1777 mHadDeviceComposition || getHwComposer().hasDeviceComposition(displayId);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001778 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08001779
Jorim Jaggi90535212018-05-23 23:44:06 +02001780 mVsyncModulator.onRefreshed(mHadClientComposition);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001781
David Sodman7e4ae112018-02-09 15:02:28 -08001782 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001783}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001784
David Sodmanfa9b2af2017-12-24 13:28:59 -08001785
1786bool SurfaceFlinger::handleMessageInvalidate() {
1787 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001788 bool refreshNeeded = handlePageFlip();
1789
Vishnu Nair4351ad52019-02-11 14:13:02 -08001790 if (mVisibleRegionsDirty) {
1791 computeLayerBounds();
Nataniel Borges2b796da2019-02-15 13:32:18 -08001792 if (mTracingEnabled) {
1793 mTracing.notify("visibleRegionsDirty");
1794 }
Vishnu Nair4351ad52019-02-11 14:13:02 -08001795 }
1796
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001797 for (auto& layer : mLayersPendingRefresh) {
1798 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08001799 visibleReg.set(layer->getScreenBounds());
Vishnu Nair6194e2e2019-02-06 12:58:39 -08001800 invalidateLayerStack(layer, visibleReg);
1801 }
1802 mLayersPendingRefresh.clear();
1803 return refreshNeeded;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001804}
1805
David Sodman79bba0e2018-08-05 18:07:49 -07001806void SurfaceFlinger::calculateWorkingSet() {
1807 ATRACE_CALL();
1808 ALOGV(__FUNCTION__);
1809
David Sodman79bba0e2018-08-05 18:07:49 -07001810 // build the h/w work list
1811 if (CC_UNLIKELY(mGeometryInvalid)) {
1812 mGeometryInvalid = false;
Lloyd Pique32cbe282018-10-19 13:09:22 -07001813 for (const auto& [token, displayDevice] : mDisplays) {
1814 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001815
Lloyd Piquea83776c2019-01-29 18:42:32 -08001816 uint32_t zOrder = 0;
David Sodman79bba0e2018-08-05 18:07:49 -07001817
Lloyd Piquea83776c2019-01-29 18:42:32 -08001818 for (auto& layer : display->getOutputLayersOrderedByZ()) {
1819 auto& compositionState = layer->editState();
1820 compositionState.forceClientComposition = false;
1821 if (!compositionState.hwc || mDebugDisableHWC || mDebugRegion) {
1822 compositionState.forceClientComposition = true;
David Sodman79bba0e2018-08-05 18:07:49 -07001823 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07001824
Lloyd Piquea83776c2019-01-29 18:42:32 -08001825 // The output Z order is set here based on a simple counter.
1826 compositionState.z = zOrder++;
1827
1828 // Update the display independent composition state. This goes
1829 // to the general composition layer state structure.
1830 // TODO: Do this once per compositionengine::CompositionLayer.
1831 layer->getLayerFE().latchCompositionState(layer->getLayer().editState().frontEnd,
1832 true);
1833
1834 // Recalculate the geometry state of the output layer.
1835 layer->updateCompositionState(true);
1836
1837 // Write the updated geometry state to the HWC
1838 layer->writeStateToHWC(true);
David Sodman79bba0e2018-08-05 18:07:49 -07001839 }
1840 }
1841 }
1842
1843 // Set the per-frame data
Lloyd Pique32cbe282018-10-19 13:09:22 -07001844 for (const auto& [token, displayDevice] : mDisplays) {
1845 auto display = displayDevice->getCompositionDisplay();
David Sodman79bba0e2018-08-05 18:07:49 -07001846 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07001847 if (!displayId) {
David Sodman79bba0e2018-08-05 18:07:49 -07001848 continue;
1849 }
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001850 auto* profile = display->getDisplayColorProfile();
David Sodman79bba0e2018-08-05 18:07:49 -07001851
1852 if (mDrawingState.colorMatrixChanged) {
1853 display->setColorTransform(mDrawingState.colorMatrix);
David Sodman79bba0e2018-08-05 18:07:49 -07001854 }
Peiyong Linc502cb72019-03-01 15:00:23 -08001855 Dataspace targetDataspace = Dataspace::UNKNOWN;
1856 if (useColorManagement) {
1857 ColorMode colorMode;
1858 RenderIntent renderIntent;
1859 pickColorMode(displayDevice, &colorMode, &targetDataspace, &renderIntent);
1860 display->setColorMode(colorMode, targetDataspace, renderIntent);
1861 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07001862 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
David Sodman79bba0e2018-08-05 18:07:49 -07001863 if (layer->isHdrY410()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001864 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001865 } else if ((layer->getDataSpace() == Dataspace::BT2020_PQ ||
1866 layer->getDataSpace() == Dataspace::BT2020_ITU_PQ) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001867 !profile->hasHDR10Support()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001868 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001869 } else if ((layer->getDataSpace() == Dataspace::BT2020_HLG ||
1870 layer->getDataSpace() == Dataspace::BT2020_ITU_HLG) &&
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07001871 !profile->hasHLGSupport()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001872 layer->forceClientComposition(displayDevice);
David Sodman79bba0e2018-08-05 18:07:49 -07001873 }
1874
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001875 if (layer->getRoundedCornerState().radius > 0.0f) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001876 layer->forceClientComposition(displayDevice);
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001877 }
1878
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001879 if (layer->getForceClientComposition(displayDevice)) {
David Sodman79bba0e2018-08-05 18:07:49 -07001880 ALOGV("[%s] Requesting Client composition", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001881 layer->setCompositionType(displayDevice,
1882 Hwc2::IComposerClient::Composition::CLIENT);
David Sodman79bba0e2018-08-05 18:07:49 -07001883 continue;
1884 }
1885
Lloyd Pique32cbe282018-10-19 13:09:22 -07001886 const auto& displayState = display->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001887 layer->setPerFrameData(displayDevice, displayState.transform, displayState.viewport,
Peiyong Lin34ea5b92019-03-15 18:40:15 -07001888 displayDevice->getSupportedPerFrameMetadata(),
1889 isHdrColorMode(displayState.colorMode) ? Dataspace::UNKNOWN
1890 : targetDataspace);
David Sodman79bba0e2018-08-05 18:07:49 -07001891 }
1892 }
1893
1894 mDrawingState.colorMatrixChanged = false;
David Sodmanba340492018-08-05 21:51:33 -07001895
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001896 for (const auto& [token, displayDevice] : mDisplays) {
1897 auto display = displayDevice->getCompositionDisplay();
1898 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -08001899 auto& layerState = layer->getCompositionLayer()->editState().frontEnd;
1900 layerState.compositionType = static_cast<Hwc2::IComposerClient::Composition>(
1901 layer->getCompositionType(displayDevice));
David Sodmanba340492018-08-05 21:51:33 -07001902 }
1903 }
David Sodman79bba0e2018-08-05 18:07:49 -07001904}
1905
Lloyd Pique32cbe282018-10-19 13:09:22 -07001906void SurfaceFlinger::doDebugFlashRegions(const sp<DisplayDevice>& displayDevice,
1907 bool repaintEverything) {
1908 auto display = displayDevice->getCompositionDisplay();
1909 const auto& displayState = display->getState();
1910
Mathias Agopiancd60f992012-08-16 16:28:27 -07001911 // is debugging enabled
1912 if (CC_LIKELY(!mDebugRegion))
1913 return;
1914
Lloyd Pique32cbe282018-10-19 13:09:22 -07001915 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08001916 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001917 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
David Sodmanfa9b2af2017-12-24 13:28:59 -08001918 if (!dirtyRegion.isEmpty()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001919 base::unique_fd readyFence;
David Sodmanfa9b2af2017-12-24 13:28:59 -08001920 // redraw the whole screen
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001921 doComposeSurfaces(displayDevice, dirtyRegion, &readyFence);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001922
Alec Mourie7d1d4a2019-02-05 01:13:46 +00001923 display->getRenderSurface()->queueBuffer(std::move(readyFence));
Mathias Agopiancd60f992012-08-16 16:28:27 -07001924 }
1925 }
1926
Lloyd Pique32cbe282018-10-19 13:09:22 -07001927 postFramebuffer(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001928
1929 if (mDebugRegion > 1) {
1930 usleep(mDebugRegion * 1000);
1931 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001932
Lloyd Pique32cbe282018-10-19 13:09:22 -07001933 prepareFrame(displayDevice);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001934}
1935
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001936void SurfaceFlinger::logLayerStats() {
1937 ATRACE_CALL();
1938 if (CC_UNLIKELY(mLayerStats.isEnabled())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07001939 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07001940 if (display->isPrimary()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001941 mLayerStats.logLayerStats(dumpVisibleLayersProtoInfo(display));
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001942 return;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001943 }
1944 }
Dominik Laskowski63165dc2018-05-25 18:36:52 -07001945
1946 ALOGE("logLayerStats: no primary display");
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001947 }
1948}
1949
David Sodman2b406362017-12-15 13:33:47 -08001950void SurfaceFlinger::preComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07001951{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001952 ATRACE_CALL();
1953 ALOGV("preComposition");
1954
David Sodman2b406362017-12-15 13:33:47 -08001955 mRefreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
1956
Mathias Agopiancd60f992012-08-16 16:28:27 -07001957 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001958 mDrawingState.traverseInZOrder([&](Layer* layer) {
David Sodman2b406362017-12-15 13:33:47 -08001959 if (layer->onPreComposition(mRefreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001960 needExtraInvalidate = true;
1961 }
Robert Carr2047fae2016-11-28 14:09:09 -08001962 });
1963
Mathias Agopiancd60f992012-08-16 16:28:27 -07001964 if (needExtraInvalidate) {
1965 signalLayerUpdate();
1966 }
1967}
1968
Ana Krulece588e312018-09-18 12:32:24 -07001969void SurfaceFlinger::updateCompositorTiming(const DisplayStatInfo& stats, nsecs_t compositeTime,
1970 std::shared_ptr<FenceTime>& presentFenceTime) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001971 // Update queue of past composite+present times and determine the
1972 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001973 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001974 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001975 while (!getBE().mCompositePresentTimes.empty()) {
1976 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001977 // Cached values should have been updated before calling this method,
1978 // which helps avoid duplicate syscalls.
1979 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1980 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1981 break;
1982 }
1983 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001984 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001985 }
1986
1987 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001988 while (getBE().mCompositePresentTimes.size() > 16) {
1989 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001990 }
1991
Ana Krulece588e312018-09-18 12:32:24 -07001992 setCompositorTimingSnapped(stats, compositeToPresentLatency);
Brian Andersond0010582017-03-07 13:20:31 -08001993}
1994
Ana Krulece588e312018-09-18 12:32:24 -07001995void SurfaceFlinger::setCompositorTimingSnapped(const DisplayStatInfo& stats,
1996 nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001997 // Integer division and modulo round toward 0 not -inf, so we need to
1998 // treat negative and positive offsets differently.
Ana Krulec757f63a2019-01-25 10:46:18 -08001999 nsecs_t idealLatency = (mPhaseOffsets->getCurrentSfOffset() > 0)
2000 ? (stats.vsyncPeriod - (mPhaseOffsets->getCurrentSfOffset() % stats.vsyncPeriod))
2001 : ((-mPhaseOffsets->getCurrentSfOffset()) % stats.vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002002
Ana Krulec757f63a2019-01-25 10:46:18 -08002003 // Just in case mPhaseOffsets->getCurrentSfOffset() == -vsyncInterval.
Brian Andersond0010582017-03-07 13:20:31 -08002004 if (idealLatency <= 0) {
Ana Krulece588e312018-09-18 12:32:24 -07002005 idealLatency = stats.vsyncPeriod;
Brian Andersond0010582017-03-07 13:20:31 -08002006 }
2007
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002008 // Snap the latency to a value that removes scheduling jitter from the
2009 // composition and present times, which often have >1ms of jitter.
2010 // Reducing jitter is important if an app attempts to extrapolate
2011 // something (such as user input) to an accurate diasplay time.
Ana Krulec757f63a2019-01-25 10:46:18 -08002012 // Snapping also allows an app to precisely calculate mPhaseOffsets->getCurrentSfOffset()
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002013 // with (presentLatency % interval).
Ana Krulece588e312018-09-18 12:32:24 -07002014 nsecs_t bias = stats.vsyncPeriod / 2;
2015 int64_t extraVsyncs = (compositeToPresentLatency - idealLatency + bias) / stats.vsyncPeriod;
2016 nsecs_t snappedCompositeToPresentLatency =
2017 (extraVsyncs > 0) ? idealLatency + (extraVsyncs * stats.vsyncPeriod) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002018
David Sodman99974d22017-11-28 12:04:33 -08002019 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
Ana Krulece588e312018-09-18 12:32:24 -07002020 getBE().mCompositorTiming.deadline = stats.vsyncTime - idealLatency;
2021 getBE().mCompositorTiming.interval = stats.vsyncPeriod;
David Sodman99974d22017-11-28 12:04:33 -08002022 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002023}
2024
David Sodman2b406362017-12-15 13:33:47 -08002025void SurfaceFlinger::postComposition()
Mathias Agopiancd60f992012-08-16 16:28:27 -07002026{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002027 ATRACE_CALL();
2028 ALOGV("postComposition");
2029
Brian Anderson3546a3f2016-07-14 11:51:14 -07002030 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07002031 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07002032 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07002033 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07002034 }
2035
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002036 // |mStateLock| not needed as we are on the main thread
Lloyd Pique32cbe282018-10-19 13:09:22 -07002037 const auto displayDevice = getDefaultDisplayDeviceLocked();
Brian Anderson3d4039d2016-09-23 16:31:30 -07002038
David Sodman73beded2017-11-15 11:56:06 -08002039 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07002040 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002041 if (displayDevice && getHwComposer().hasClientComposition(displayDevice->getId())) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002042 glCompositionDoneFenceTime =
Lloyd Pique31cb2942018-10-19 17:23:03 -07002043 std::make_shared<FenceTime>(displayDevice->getCompositionDisplay()
2044 ->getRenderSurface()
2045 ->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08002046 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07002047 } else {
2048 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
2049 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07002050
David Sodman73beded2017-11-15 11:56:06 -08002051 getBE().mDisplayTimeline.updateSignalTimes();
Ady Abrahambe0f9482019-04-24 15:41:53 -07002052 mPreviousPresentFences[1] = mPreviousPresentFences[0];
2053 mPreviousPresentFences[0] = displayDevice
2054 ? getHwComposer().getPresentFence(*displayDevice->getId())
2055 : Fence::NO_FENCE;
2056 auto presentFenceTime = std::make_shared<FenceTime>(mPreviousPresentFences[0]);
David Sodman73beded2017-11-15 11:56:06 -08002057 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07002058
Ana Krulece588e312018-09-18 12:32:24 -07002059 DisplayStatInfo stats;
Ana Krulecc2870422019-01-29 19:00:58 -08002060 mScheduler->getDisplayStatInfo(&stats);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002061
David Sodman2b406362017-12-15 13:33:47 -08002062 // We use the mRefreshStartTime which might be sampled a little later than
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002063 // when we started doing work for this frame, but that should be okay
2064 // since updateCompositorTiming has snapping logic.
Ana Krulece588e312018-09-18 12:32:24 -07002065 updateCompositorTiming(stats, mRefreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08002066 CompositorTiming compositorTiming;
2067 {
David Sodman99974d22017-11-28 12:04:33 -08002068 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
2069 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08002070 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08002071
Robert Carr2047fae2016-11-28 14:09:09 -08002072 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002073 bool frameLatched =
2074 layer->onPostComposition(displayDevice->getId(), glCompositionDoneFenceTime,
2075 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07002076 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08002077 recordBufferingStats(layer->getName().string(),
2078 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07002079 }
Robert Carr2047fae2016-11-28 14:09:09 -08002080 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002081
Brian Andersonfbc80ae2017-05-26 16:23:54 -07002082 if (presentFenceTime->isValid()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002083 mScheduler->addPresentFence(presentFenceTime);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002084 }
2085
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08002086 if (!hasSyncFramework) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002087 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2088 displayDevice->isPoweredOn()) {
Ana Krulecc2870422019-01-29 19:00:58 -08002089 mScheduler->enableHardwareVsync();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07002090 }
2091 }
2092
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002093 if (mAnimCompositionPending) {
2094 mAnimCompositionPending = false;
2095
Brian Anderson4e606e32017-03-16 15:34:57 -07002096 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002097 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07002098 std::move(presentFenceTime));
Lloyd Pique32cbe282018-10-19 13:09:22 -07002099 } else if (displayDevice && getHwComposer().isConnected(*displayDevice->getId())) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002100 // The HWC doesn't support present fences, so use the refresh
2101 // timestamp instead.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002102 const nsecs_t presentTime =
2103 getHwComposer().getRefreshTimestamp(*displayDevice->getId());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002104 mAnimFrameTracker.setActualPresentTime(presentTime);
2105 }
2106 mAnimFrameTracker.advanceFrame();
2107 }
Dan Stozab90cf072015-03-05 11:05:59 -08002108
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002109 mTimeStats->incrementTotalFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002110 if (mHadClientComposition) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002111 mTimeStats->incrementClientCompositionFrames();
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07002112 }
2113
Yiwei Zhang7e666a52018-11-15 13:33:42 -08002114 mTimeStats->setPresentFenceGlobal(presentFenceTime);
Yiwei Zhangce6ebc02018-10-20 12:42:38 -07002115
Lloyd Pique32cbe282018-10-19 13:09:22 -07002116 if (displayDevice && getHwComposer().isConnected(*displayDevice->getId()) &&
2117 !displayDevice->isPoweredOn()) {
Dan Stozab90cf072015-03-05 11:05:59 -08002118 return;
2119 }
2120
2121 nsecs_t currentTime = systemTime();
2122 if (mHasPoweredOff) {
2123 mHasPoweredOff = false;
2124 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002125 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Ana Krulece588e312018-09-18 12:32:24 -07002126 size_t numPeriods = static_cast<size_t>(elapsedTime / stats.vsyncPeriod);
David Sodman4a36e932017-11-07 14:29:47 -08002127 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
2128 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002129 } else {
David Sodman4a36e932017-11-07 14:29:47 -08002130 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002131 }
David Sodman4a36e932017-11-07 14:29:47 -08002132 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08002133 }
David Sodman4a36e932017-11-07 14:29:47 -08002134 getBE().mLastSwapTime = currentTime;
Dan Stoza436ccf32018-06-21 12:10:12 -07002135
2136 {
2137 std::lock_guard lock(mTexturePoolMutex);
Dan Stoza67765d82019-05-07 14:58:27 -07002138 if (mTexturePool.size() < mTexturePoolSize) {
2139 const size_t refillCount = mTexturePoolSize - mTexturePool.size();
Dan Stoza436ccf32018-06-21 12:10:12 -07002140 const size_t offset = mTexturePool.size();
2141 mTexturePool.resize(mTexturePoolSize);
2142 getRenderEngine().genTextures(refillCount, mTexturePool.data() + offset);
2143 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Dan Stoza67765d82019-05-07 14:58:27 -07002144 } else if (mTexturePool.size() > mTexturePoolSize) {
2145 const size_t deleteCount = mTexturePool.size() - mTexturePoolSize;
2146 const size_t offset = mTexturePoolSize;
2147 getRenderEngine().deleteTextures(deleteCount, mTexturePool.data() + offset);
2148 mTexturePool.resize(mTexturePoolSize);
2149 ATRACE_INT("TexturePoolSize", mTexturePool.size());
Dan Stoza436ccf32018-06-21 12:10:12 -07002150 }
2151 }
Marissa Walle2ffb422018-10-12 11:33:52 -07002152
Ady Abrahambe0f9482019-04-24 15:41:53 -07002153 mTransactionCompletedThread.addPresentFence(mPreviousPresentFences[0]);
Marissa Walle2ffb422018-10-12 11:33:52 -07002154 mTransactionCompletedThread.sendCallbacks();
Ady Abraham8164d482019-01-11 14:47:59 -08002155
Kevin DuBois413287f2019-02-25 08:46:47 -08002156 if (mLumaSampling && mRegionSamplingThread) {
2157 mRegionSamplingThread->notifyNewContent();
Dan Stozaec460082018-12-17 15:35:09 -08002158 }
Dan Stoza45de5ba2019-04-25 14:12:09 -07002159
2160 // Even though ATRACE_INT64 already checks if tracing is enabled, it doesn't prevent the
2161 // side-effect of getTotalSize(), so we check that again here
2162 if (ATRACE_ENABLED()) {
2163 ATRACE_INT64("Total Buffer Size", GraphicBufferAllocator::get().getTotalSize());
2164 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002165}
2166
Vishnu Nair4351ad52019-02-11 14:13:02 -08002167void SurfaceFlinger::computeLayerBounds() {
2168 for (const auto& pair : mDisplays) {
2169 const auto& displayDevice = pair.second;
2170 const auto display = displayDevice->getCompositionDisplay();
2171 for (const auto& layer : mDrawingState.layersSortedByZ) {
2172 // only consider the layers on the given layer stack
2173 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Vishnu Nair01ace762019-02-12 14:25:24 -08002174 continue;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002175 }
2176
2177 layer->computeBounds(displayDevice->getViewport().toFloatRect(), ui::Transform());
2178 }
2179 }
2180}
2181
Mathias Agopiancd60f992012-08-16 16:28:27 -07002182void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002183 ATRACE_CALL();
2184 ALOGV("rebuildLayerStacks");
2185
Mathias Agopiancd60f992012-08-16 16:28:27 -07002186 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07002187 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07002188 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07002189 mVisibleRegionsDirty = false;
2190 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002191
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002192 for (const auto& pair : mDisplays) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002193 const auto& displayDevice = pair.second;
2194 auto display = displayDevice->getCompositionDisplay();
2195 const auto& displayState = display->getState();
Jeff Sharkey76488112017-02-27 14:15:18 -07002196 Region opaqueRegion;
2197 Region dirtyRegion;
Lloyd Piquecc01a452018-12-04 17:24:00 -08002198 compositionengine::Output::OutputLayers layersSortedByZ;
2199 Vector<sp<Layer>> deprecated_layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08002200 Vector<sp<Layer>> layersNeedingFences;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002201 const ui::Transform& tr = displayState.transform;
2202 const Rect bounds = displayState.bounds;
2203 if (displayState.isEnabled) {
2204 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002205
Jeff Sharkey76488112017-02-27 14:15:18 -07002206 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Piquecc01a452018-12-04 17:24:00 -08002207 auto compositionLayer = layer->getCompositionLayer();
2208 if (compositionLayer == nullptr) {
2209 return;
2210 }
2211
Lloyd Pique32cbe282018-10-19 13:09:22 -07002212 const auto displayId = displayDevice->getId();
Lloyd Piquecc01a452018-12-04 17:24:00 -08002213 sp<compositionengine::LayerFE> layerFE = compositionLayer->getLayerFE();
2214 LOG_ALWAYS_FATAL_IF(layerFE.get() == nullptr);
2215
Lloyd Pique07e33212018-12-18 16:33:37 -08002216 bool needsOutputLayer = false;
2217
Lloyd Piqueef36b002019-01-23 17:52:04 -08002218 if (display->belongsInOutput(layer->getLayerStack(),
2219 layer->getPrimaryDisplayOnly())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07002220 Region drawRegion(tr.transform(
2221 layer->visibleNonTransparentRegion));
2222 drawRegion.andSelf(bounds);
2223 if (!drawRegion.isEmpty()) {
Lloyd Pique07e33212018-12-18 16:33:37 -08002224 needsOutputLayer = true;
Jeff Sharkey76488112017-02-27 14:15:18 -07002225 }
Chia-I Wu83806892017-11-16 10:50:20 -08002226 }
2227
Lloyd Pique07e33212018-12-18 16:33:37 -08002228 if (needsOutputLayer) {
2229 layersSortedByZ.emplace_back(
2230 display->getOrCreateOutputLayer(displayId, compositionLayer,
2231 layerFE));
2232 deprecated_layersSortedByZ.add(layer);
2233
2234 auto& outputLayerState = layersSortedByZ.back()->editState();
2235 outputLayerState.visibleRegion =
2236 tr.transform(layer->visibleRegion.intersect(displayState.viewport));
2237 } else if (displayId) {
2238 // For layers that are being removed from a HWC display,
2239 // and that have queued frames, add them to a a list of
2240 // released layers so we can properly set a fence.
2241 bool hasExistingOutputLayer =
2242 display->getOutputLayerForLayer(compositionLayer.get()) != nullptr;
2243 bool hasQueuedFrames = std::find(mLayersWithQueuedFrames.cbegin(),
2244 mLayersWithQueuedFrames.cend(),
2245 layer) != mLayersWithQueuedFrames.cend();
2246
2247 if (hasExistingOutputLayer && hasQueuedFrames) {
Chia-I Wu83806892017-11-16 10:50:20 -08002248 layersNeedingFences.add(layer);
2249 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002250 }
Jeff Sharkey76488112017-02-27 14:15:18 -07002251 });
2252 }
Lloyd Piquecc01a452018-12-04 17:24:00 -08002253
2254 display->setOutputLayersOrderedByZ(std::move(layersSortedByZ));
2255
2256 displayDevice->setVisibleLayersSortedByZ(deprecated_layersSortedByZ);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002257 displayDevice->setLayersNeedingFences(layersNeedingFences);
2258
2259 Region undefinedRegion{bounds};
2260 undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
2261
2262 display->editState().undefinedRegion = undefinedRegion;
2263 display->editState().dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002264 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08002265 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07002266}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002267
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002268// Returns a data space that fits all visible layers. The returned data space
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002269// can only be one of
Chia-I Wu7a28ecb2018-05-04 10:38:39 -07002270// - Dataspace::SRGB (use legacy dataspace and let HWC saturate when colors are enhanced)
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002271// - Dataspace::DISPLAY_P3
Valerie Hau9758ae02018-10-09 16:05:09 -07002272// - Dataspace::DISPLAY_BT2020
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002273// The returned HDR data space is one of
2274// - Dataspace::UNKNOWN
2275// - Dataspace::BT2020_HLG
2276// - Dataspace::BT2020_PQ
Peiyong Lin03912882019-04-16 15:34:46 -07002277Dataspace SurfaceFlinger::getBestDataspace(const sp<DisplayDevice>& display,
2278 Dataspace* outHdrDataSpace,
2279 bool* outIsHdrClientComposition) const {
Peiyong Lin14724e62018-12-05 07:27:30 -08002280 Dataspace bestDataSpace = Dataspace::V0_SRGB;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002281 *outHdrDataSpace = Dataspace::UNKNOWN;
2282
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002283 for (const auto& layer : display->getVisibleLayersSortedByZ()) {
Chia-I Wu01591c92018-05-22 12:03:00 -07002284 switch (layer->getDataSpace()) {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002285 case Dataspace::V0_SCRGB:
2286 case Dataspace::V0_SCRGB_LINEAR:
Valerie Hau9758ae02018-10-09 16:05:09 -07002287 case Dataspace::BT2020:
2288 case Dataspace::BT2020_ITU:
2289 case Dataspace::BT2020_LINEAR:
2290 case Dataspace::DISPLAY_BT2020:
2291 bestDataSpace = Dataspace::DISPLAY_BT2020;
2292 break;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002293 case Dataspace::DISPLAY_P3:
Chia-I Wube02ec02018-05-18 10:59:36 -07002294 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002295 break;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002296 case Dataspace::BT2020_PQ:
2297 case Dataspace::BT2020_ITU_PQ:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002298 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002299 *outHdrDataSpace = Dataspace::BT2020_PQ;
Peiyong Lin03912882019-04-16 15:34:46 -07002300 *outIsHdrClientComposition = layer->getForceClientComposition(display);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002301 break;
Peiyong Linf59a7192018-04-25 11:19:31 -07002302 case Dataspace::BT2020_HLG:
2303 case Dataspace::BT2020_ITU_HLG:
Peiyong Linf6eb7662019-02-05 15:39:15 -08002304 bestDataSpace = Dataspace::DISPLAY_P3;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002305 // When there's mixed PQ content and HLG content, we set the HDR
2306 // data space to be BT2020_PQ and convert HLG to PQ.
2307 if (*outHdrDataSpace == Dataspace::UNKNOWN) {
2308 *outHdrDataSpace = Dataspace::BT2020_HLG;
Peiyong Linf59a7192018-04-25 11:19:31 -07002309 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002310 break;
2311 default:
2312 break;
2313 }
Romain Guy54f154a2017-10-24 21:40:32 +01002314 }
2315
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002316 return bestDataSpace;
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002317}
2318
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002319// Pick the ColorMode / Dataspace for the display device.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002320void SurfaceFlinger::pickColorMode(const sp<DisplayDevice>& display, ColorMode* outMode,
2321 Dataspace* outDataSpace, RenderIntent* outRenderIntent) const {
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002322 if (mDisplayColorSetting == DisplayColorSetting::UNMANAGED) {
2323 *outMode = ColorMode::NATIVE;
2324 *outDataSpace = Dataspace::UNKNOWN;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002325 *outRenderIntent = RenderIntent::COLORIMETRIC;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002326 return;
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002327 }
Romain Guy88d37dd2017-05-26 17:57:05 -07002328
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002329 Dataspace hdrDataSpace;
Peiyong Lin03912882019-04-16 15:34:46 -07002330 bool isHdrClientComposition = false;
2331 Dataspace bestDataSpace = getBestDataspace(display, &hdrDataSpace, &isHdrClientComposition);
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002332
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002333 auto* profile = display->getCompositionDisplay()->getDisplayColorProfile();
2334
Peiyong Lina3ea5592019-02-10 14:45:00 -08002335 switch (mForceColorMode) {
2336 case ColorMode::SRGB:
2337 bestDataSpace = Dataspace::V0_SRGB;
2338 break;
2339 case ColorMode::DISPLAY_P3:
2340 bestDataSpace = Dataspace::DISPLAY_P3;
2341 break;
2342 default:
2343 break;
2344 }
2345
Peiyong Lindfde5112018-06-05 10:58:41 -07002346 // respect hdrDataSpace only when there is no legacy HDR support
Peiyong Lin03912882019-04-16 15:34:46 -07002347 const bool isHdr = hdrDataSpace != Dataspace::UNKNOWN &&
2348 !profile->hasLegacyHdrSupport(hdrDataSpace) && !isHdrClientComposition;
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002349 if (isHdr) {
2350 bestDataSpace = hdrDataSpace;
2351 }
2352
Chia-I Wu0d711262018-05-21 15:19:35 -07002353 RenderIntent intent;
2354 switch (mDisplayColorSetting) {
2355 case DisplayColorSetting::MANAGED:
2356 case DisplayColorSetting::UNMANAGED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002357 intent = isHdr ? RenderIntent::TONE_MAP_COLORIMETRIC : RenderIntent::COLORIMETRIC;
Chia-I Wu0d711262018-05-21 15:19:35 -07002358 break;
2359 case DisplayColorSetting::ENHANCED:
Chia-I Wuc4b08bd2018-05-29 12:57:23 -07002360 intent = isHdr ? RenderIntent::TONE_MAP_ENHANCE : RenderIntent::ENHANCE;
Chia-I Wu0d711262018-05-21 15:19:35 -07002361 break;
2362 default: // vendor display color setting
2363 intent = static_cast<RenderIntent>(mDisplayColorSetting);
2364 break;
2365 }
Chia-I Wube02ec02018-05-18 10:59:36 -07002366
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07002367 profile->getBestColorMode(bestDataSpace, intent, outDataSpace, outMode, outRenderIntent);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06002368}
2369
Lloyd Pique32cbe282018-10-19 13:09:22 -07002370void SurfaceFlinger::beginFrame(const sp<DisplayDevice>& displayDevice) {
2371 auto display = displayDevice->getCompositionDisplay();
2372 const auto& displayState = display->getState();
2373
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002374 bool dirty = !display->getDirtyRegion(false).isEmpty();
Lloyd Pique32cbe282018-10-19 13:09:22 -07002375 bool empty = displayDevice->getVisibleLayersSortedByZ().size() == 0;
2376 bool wasEmpty = !displayState.lastCompositionHadVisibleLayers;
David Sodman2b406362017-12-15 13:33:47 -08002377
David Sodmanfa9b2af2017-12-24 13:28:59 -08002378 // If nothing has changed (!dirty), don't recompose.
2379 // If something changed, but we don't currently have any visible layers,
2380 // and didn't when we last did a composition, then skip it this time.
2381 // The second rule does two things:
2382 // - When all layers are removed from a display, we'll emit one black
2383 // frame, then nothing more until we get new layers.
2384 // - When a display is created with a private layer stack, we won't
2385 // emit any black frames until a layer is added to the layer stack.
2386 bool mustRecompose = dirty && !(empty && wasEmpty);
David Sodman2b406362017-12-15 13:33:47 -08002387
Dominik Laskowski075d3172018-05-24 15:50:06 -07002388 const char flagPrefix[] = {'-', '+'};
2389 static_cast<void>(flagPrefix);
Lloyd Pique32cbe282018-10-19 13:09:22 -07002390 ALOGV_IF(displayDevice->isVirtual(), "%s: %s composition for %s (%cdirty %cempty %cwasEmpty)",
2391 __FUNCTION__, mustRecompose ? "doing" : "skipping",
2392 displayDevice->getDebugName().c_str(), flagPrefix[dirty], flagPrefix[empty],
2393 flagPrefix[wasEmpty]);
David Sodman2b406362017-12-15 13:33:47 -08002394
Lloyd Pique31cb2942018-10-19 17:23:03 -07002395 display->getRenderSurface()->beginFrame(mustRecompose);
David Sodman2b406362017-12-15 13:33:47 -08002396
David Sodmanfa9b2af2017-12-24 13:28:59 -08002397 if (mustRecompose) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07002398 display->editState().lastCompositionHadVisibleLayers = !empty;
David Sodman2b406362017-12-15 13:33:47 -08002399 }
2400}
2401
Lloyd Pique32cbe282018-10-19 13:09:22 -07002402void SurfaceFlinger::prepareFrame(const sp<DisplayDevice>& displayDevice) {
2403 auto display = displayDevice->getCompositionDisplay();
2404 const auto& displayState = display->getState();
2405
2406 if (!displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002407 return;
David Sodman2b406362017-12-15 13:33:47 -08002408 }
David Sodmanfa9b2af2017-12-24 13:28:59 -08002409
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002410 status_t result = display->getRenderSurface()->prepareFrame();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002411 ALOGE_IF(result != NO_ERROR, "prepareFrame failed for %s: %d (%s)",
Lloyd Pique32cbe282018-10-19 13:09:22 -07002412 displayDevice->getDebugName().c_str(), result, strerror(-result));
David Sodman2b406362017-12-15 13:33:47 -08002413}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002414
Lloyd Pique32cbe282018-10-19 13:09:22 -07002415void SurfaceFlinger::doComposition(const sp<DisplayDevice>& displayDevice, bool repaintEverything) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002416 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002417 ALOGV("doComposition");
2418
Lloyd Pique32cbe282018-10-19 13:09:22 -07002419 auto display = displayDevice->getCompositionDisplay();
2420 const auto& displayState = display->getState();
2421
2422 if (displayState.isEnabled) {
David Sodmanfa9b2af2017-12-24 13:28:59 -08002423 // transform the dirty region into this screen's coordinate space
Alec Mourie7d1d4a2019-02-05 01:13:46 +00002424 const Region dirtyRegion = display->getDirtyRegion(repaintEverything);
Mathias Agopian02b95102012-11-05 17:50:57 -08002425
David Sodmanfa9b2af2017-12-24 13:28:59 -08002426 // repaint the framebuffer (if needed)
Lloyd Pique32cbe282018-10-19 13:09:22 -07002427 doDisplayComposition(displayDevice, dirtyRegion);
Mathias Agopian02b95102012-11-05 17:50:57 -08002428
Lloyd Pique32cbe282018-10-19 13:09:22 -07002429 display->editState().dirtyRegion.clear();
Lloyd Pique31cb2942018-10-19 17:23:03 -07002430 display->getRenderSurface()->flip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002431 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002432 postFramebuffer(displayDevice);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002433}
2434
David Sodmanfa9b2af2017-12-24 13:28:59 -08002435void SurfaceFlinger::postFrame()
2436{
2437 // |mStateLock| not needed as we are on the main thread
Dominik Laskowski075d3172018-05-24 15:50:06 -07002438 const auto display = getDefaultDisplayDeviceLocked();
2439 if (display && getHwComposer().isConnected(*display->getId())) {
2440 uint32_t flipCount = display->getPageFlipCount();
David Sodmanfa9b2af2017-12-24 13:28:59 -08002441 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2442 logFrameStats();
2443 }
2444 }
2445}
2446
Lloyd Pique32cbe282018-10-19 13:09:22 -07002447void SurfaceFlinger::postFramebuffer(const sp<DisplayDevice>& displayDevice) {
Mathias Agopian841cde52012-03-01 15:44:37 -08002448 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002449 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08002450
Lloyd Pique32cbe282018-10-19 13:09:22 -07002451 auto display = displayDevice->getCompositionDisplay();
2452 const auto& displayState = display->getState();
2453 const auto displayId = display->getId();
2454
Lloyd Pique32cbe282018-10-19 13:09:22 -07002455 if (displayState.isEnabled) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002456 if (displayId) {
2457 getHwComposer().presentAndGetReleaseFences(*displayId);
Mathias Agopian2a231842012-09-24 18:12:35 -07002458 }
Lloyd Pique31cb2942018-10-19 17:23:03 -07002459 display->getRenderSurface()->onPresentDisplayCompleted();
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002460 for (auto& layer : display->getOutputLayersOrderedByZ()) {
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002461 sp<Fence> releaseFence = Fence::NO_FENCE;
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002462 bool usedClientComposition = true;
David Sodman15094112018-10-11 09:39:37 -07002463
Chia-I Wu7b549592017-11-15 09:14:57 -08002464 // The layer buffer from the previous frame (if any) is released
2465 // by HWC only when the release fence from this frame (if any) is
2466 // signaled. Always get the release fence from HWC first.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002467 if (layer->getState().hwc) {
2468 const auto& hwcState = *layer->getState().hwc;
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002469 releaseFence =
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002470 getHwComposer().getLayerReleaseFence(*displayId, hwcState.hwcLayer.get());
2471 usedClientComposition =
2472 hwcState.hwcCompositionType == Hwc2::IComposerClient::Composition::CLIENT;
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002473 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002474
2475 // If the layer was client composited in the previous frame, we
2476 // need to merge with the previous client target acquire fence.
2477 // Since we do not track that, always merge with the current
2478 // client target acquire fence when it is available, even though
2479 // this is suboptimal.
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002480 if (usedClientComposition) {
Lloyd Pique31cb2942018-10-19 17:23:03 -07002481 releaseFence =
2482 Fence::merge("LayerRelease", releaseFence,
2483 display->getRenderSurface()->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002484 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002485
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002486 layer->getLayerFE().onLayerDisplayed(releaseFence);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002487 }
Chia-I Wu83806892017-11-16 10:50:20 -08002488
2489 // We've got a list of layers needing fences, that are disjoint with
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002490 // display->getVisibleLayersSortedByZ. The best we can do is to
Chia-I Wu83806892017-11-16 10:50:20 -08002491 // supply them with the present fence.
Lloyd Pique32cbe282018-10-19 13:09:22 -07002492 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002493 sp<Fence> presentFence =
Lloyd Pique441d5042018-10-18 16:49:51 -07002494 displayId ? getHwComposer().getPresentFence(*displayId) : Fence::NO_FENCE;
Lloyd Pique32cbe282018-10-19 13:09:22 -07002495 for (auto& layer : displayDevice->getLayersNeedingFences()) {
Lloyd Piquecb54b3b2019-01-29 18:42:54 -08002496 layer->getCompositionLayer()->getLayerFE()->onLayerDisplayed(presentFence);
Chia-I Wu83806892017-11-16 10:50:20 -08002497 }
2498 }
2499
Dominik Laskowski075d3172018-05-24 15:50:06 -07002500 if (displayId) {
2501 getHwComposer().clearReleaseFences(*displayId);
Jesse Hallef194142012-06-14 14:45:17 -07002502 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002503 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002504}
2505
Mathias Agopian87baae12012-07-31 12:38:26 -07002506void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002507{
Mathias Agopian841cde52012-03-01 15:44:37 -08002508 ATRACE_CALL();
2509
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002510 // here we keep a copy of the drawing state (that is the state that's
2511 // going to be overwritten by handleTransactionLocked()) outside of
2512 // mStateLock so that the side-effects of the State assignment
2513 // don't happen with mStateLock held (which can cause deadlocks).
2514 State drawingState(mDrawingState);
2515
Mathias Agopianca4d3602011-05-19 15:38:14 -07002516 Mutex::Autolock _l(mStateLock);
Dominik Laskowski9dab3432019-03-27 13:21:10 -07002517 mDebugInTransaction = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002518
Mathias Agopianca4d3602011-05-19 15:38:14 -07002519 // Here we're guaranteed that some transaction flags are set
2520 // so we can call handleTransactionLocked() unconditionally.
2521 // We call getTransactionFlags(), which will also clear the flags,
2522 // with mStateLock held to guarantee that mCurrentState won't change
2523 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002524
Jorim Jaggif15c3be2018-04-12 12:56:58 +01002525 mVsyncModulator.onTransactionHandled();
Mathias Agopiane57f2922012-08-09 16:29:12 -07002526 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002527 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002528
Mathias Agopianca4d3602011-05-19 15:38:14 -07002529 mDebugInTransaction = 0;
2530 invalidateHwcGeometry();
2531 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002532}
2533
Lloyd Piqueba04e622017-12-14 17:11:26 -08002534void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2535 for (const auto& event : mPendingHotplugEvents) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002536 const std::optional<DisplayIdentificationInfo> info =
2537 getHwComposer().onHotplug(event.hwcDisplayId, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002538
Dominik Laskowski075d3172018-05-24 15:50:06 -07002539 if (!info) {
Lloyd Piqueba04e622017-12-14 17:11:26 -08002540 continue;
2541 }
2542
Lloyd Piqueba04e622017-12-14 17:11:26 -08002543 if (event.connection == HWC2::Connection::Connected) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002544 if (!mPhysicalDisplayTokens.count(info->id)) {
Dominik Laskowski34157762018-10-31 13:07:19 -07002545 ALOGV("Creating display %s", to_string(info->id).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07002546 mPhysicalDisplayTokens[info->id] = new BBinder();
2547 DisplayDeviceState state;
2548 state.displayId = info->id;
2549 state.isSecure = true; // All physical displays are currently considered secure.
2550 state.displayName = info->name;
2551 mCurrentState.displays.add(mPhysicalDisplayTokens[info->id], state);
2552 mInterceptor->saveDisplayCreation(state);
Steven Thomaseb6d2052018-03-20 15:40:48 -07002553 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002554 } else {
Dominik Laskowski34157762018-10-31 13:07:19 -07002555 ALOGV("Removing display %s", to_string(info->id).c_str());
Lloyd Piqueba04e622017-12-14 17:11:26 -08002556
Dominik Laskowski075d3172018-05-24 15:50:06 -07002557 ssize_t index = mCurrentState.displays.indexOfKey(mPhysicalDisplayTokens[info->id]);
2558 if (index >= 0) {
2559 const DisplayDeviceState& state = mCurrentState.displays.valueAt(index);
2560 mInterceptor->saveDisplayDeletion(state.sequenceId);
2561 mCurrentState.displays.removeItemsAt(index);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002562 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002563 mPhysicalDisplayTokens.erase(info->id);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002564 }
2565
2566 processDisplayChangesLocked();
2567 }
2568
2569 mPendingHotplugEvents.clear();
2570}
2571
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002572void SurfaceFlinger::dispatchDisplayHotplugEvent(PhysicalDisplayId displayId, bool connected) {
Ana Krulecc2870422019-01-29 19:00:58 -08002573 mScheduler->hotplugReceived(mAppConnectionHandle, displayId, connected);
2574 mScheduler->hotplugReceived(mSfConnectionHandle, displayId, connected);
Dominik Laskowski1eba0202019-01-24 09:14:40 -08002575}
2576
Lloyd Pique99d3da52018-01-22 17:48:03 -08002577sp<DisplayDevice> SurfaceFlinger::setupNewDisplayDeviceInternal(
Dominik Laskowski075d3172018-05-24 15:50:06 -07002578 const wp<IBinder>& displayToken, const std::optional<DisplayId>& displayId,
Lloyd Pique542307f2018-10-19 13:24:08 -07002579 const DisplayDeviceState& state, const sp<compositionengine::DisplaySurface>& dispSurface,
Dominik Laskowski075d3172018-05-24 15:50:06 -07002580 const sp<IGraphicBufferProducer>& producer) {
2581 DisplayDeviceCreationArgs creationArgs(this, displayToken, displayId);
Dominik Laskowskie9774092018-12-11 10:04:24 -08002582 creationArgs.sequenceId = state.sequenceId;
Dominik Laskowski075d3172018-05-24 15:50:06 -07002583 creationArgs.isVirtual = state.isVirtual();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002584 creationArgs.isSecure = state.isSecure;
2585 creationArgs.displaySurface = dispSurface;
2586 creationArgs.hasWideColorGamut = false;
2587 creationArgs.supportedPerFrameMetadata = 0;
Peiyong Lin136fbbc2018-04-17 15:09:44 -07002588
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002589 const bool isInternalDisplay = displayId && displayId == getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07002590 creationArgs.isPrimary = isInternalDisplay;
2591
2592 if (useColorManagement && displayId) {
2593 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002594 for (ColorMode colorMode : modes) {
Peiyong Linfca547f2018-07-09 13:03:33 -07002595 if (isWideColorMode(colorMode)) {
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002596 creationArgs.hasWideColorGamut = true;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002597 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002598
Dominik Laskowski7e045462018-05-30 13:02:02 -07002599 std::vector<RenderIntent> renderIntents =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002600 getHwComposer().getRenderIntents(*displayId, colorMode);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002601 creationArgs.hwcColorModes.emplace(colorMode, renderIntents);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002602 }
tangrobin6753a022018-08-10 10:58:54 +08002603 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002604
Dominik Laskowski075d3172018-05-24 15:50:06 -07002605 if (displayId) {
2606 getHwComposer().getHdrCapabilities(*displayId, &creationArgs.hdrCapabilities);
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002607 creationArgs.supportedPerFrameMetadata =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002608 getHwComposer().getSupportedPerFrameMetadata(*displayId);
Chia-I Wu0f509fb2018-06-21 15:52:50 +08002609 }
Lloyd Pique99d3da52018-01-22 17:48:03 -08002610
Lloyd Pique90c115d2018-09-18 21:39:42 -07002611 auto nativeWindowSurface = getFactory().createNativeWindowSurface(producer);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002612 auto nativeWindow = nativeWindowSurface->getNativeWindow();
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002613 creationArgs.nativeWindow = nativeWindow;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002614
Lloyd Pique99d3da52018-01-22 17:48:03 -08002615 // Make sure that composition can never be stalled by a virtual display
2616 // consumer that isn't processing buffers fast enough. We have to do this
Alec Mouri0a9c7b82018-11-16 13:05:25 -08002617 // here, in case the display is composed entirely by HWC.
Dominik Laskowski281644e2018-04-19 15:47:35 -07002618 if (state.isVirtual()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002619 nativeWindow->setSwapInterval(nativeWindow.get(), 0);
2620 }
2621
Dominik Laskowski075d3172018-05-24 15:50:06 -07002622 creationArgs.displayInstallOrientation =
2623 isInternalDisplay ? primaryDisplayOrientation : DisplayState::eOrientationDefault;
Chia-I Wua02871c2018-08-27 14:38:23 -07002624
Lloyd Pique99d3da52018-01-22 17:48:03 -08002625 // virtual displays are always considered enabled
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002626 creationArgs.initialPowerMode = state.isVirtual() ? HWC_POWER_MODE_NORMAL : HWC_POWER_MODE_OFF;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002627
Lloyd Pique90c115d2018-09-18 21:39:42 -07002628 sp<DisplayDevice> display = getFactory().createDisplayDevice(std::move(creationArgs));
Lloyd Pique99d3da52018-01-22 17:48:03 -08002629
2630 if (maxFrameBufferAcquiredBuffers >= 3) {
2631 nativeWindowSurface->preallocateBuffers();
2632 }
2633
2634 ColorMode defaultColorMode = ColorMode::NATIVE;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08002635 Dataspace defaultDataSpace = Dataspace::UNKNOWN;
Lloyd Pique2eef1d22018-09-18 21:30:04 -07002636 if (display->hasWideColorGamut()) {
Lloyd Pique99d3da52018-01-22 17:48:03 -08002637 defaultColorMode = ColorMode::SRGB;
Peiyong Lin14724e62018-12-05 07:27:30 -08002638 defaultDataSpace = Dataspace::V0_SRGB;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002639 }
Lloyd Pique32cbe282018-10-19 13:09:22 -07002640 display->getCompositionDisplay()->setColorMode(defaultColorMode, defaultDataSpace,
2641 RenderIntent::COLORIMETRIC);
Dominik Laskowski075d3172018-05-24 15:50:06 -07002642 if (!state.isVirtual()) {
2643 LOG_ALWAYS_FATAL_IF(!displayId);
2644 display->setActiveConfig(getHwComposer().getActiveConfigIndex(*displayId));
Lloyd Pique3c085a02018-05-09 19:38:32 -07002645 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07002646
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002647 display->setLayerStack(state.layerStack);
2648 display->setProjection(state.orientation, state.viewport, state.frame);
2649 display->setDisplayName(state.displayName);
Lloyd Pique99d3da52018-01-22 17:48:03 -08002650
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002651 return display;
Lloyd Pique99d3da52018-01-22 17:48:03 -08002652}
2653
Lloyd Pique347200f2017-12-14 17:00:15 -08002654void SurfaceFlinger::processDisplayChangesLocked() {
2655 // here we take advantage of Vector's copy-on-write semantics to
2656 // improve performance by skipping the transaction entirely when
2657 // know that the lists are identical
2658 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2659 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2660 if (!curr.isIdenticalTo(draw)) {
2661 mVisibleRegionsDirty = true;
2662 const size_t cc = curr.size();
2663 size_t dc = draw.size();
2664
2665 // find the displays that were removed
2666 // (ie: in drawing state but not in current state)
2667 // also handle displays that changed
2668 // (ie: displays that are in both lists)
2669 for (size_t i = 0; i < dc;) {
2670 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2671 if (j < 0) {
2672 // in drawing state but not in current state
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002673 if (const auto display = getDisplayDeviceLocked(draw.keyAt(i))) {
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002674 // Save display ID before disconnecting.
2675 const auto displayId = display->getId();
Lloyd Pique45a165a2018-10-19 11:54:47 -07002676 display->disconnect();
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002677
2678 if (!display->isVirtual()) {
2679 LOG_ALWAYS_FATAL_IF(!displayId);
2680 dispatchDisplayHotplugEvent(displayId->value, false);
2681 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002682 }
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002683
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002684 mDisplays.erase(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002685 } else {
2686 // this display is in both lists. see if something changed.
2687 const DisplayDeviceState& state(curr[j]);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002688 const wp<IBinder>& displayToken = curr.keyAt(j);
Lloyd Pique347200f2017-12-14 17:00:15 -08002689 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2690 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2691 if (state_binder != draw_binder) {
2692 // changing the surface is like destroying and
2693 // recreating the DisplayDevice, so we just remove it
2694 // from the drawing state, so that it get re-added
2695 // below.
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002696 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique45a165a2018-10-19 11:54:47 -07002697 display->disconnect();
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002698 }
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002699 mDisplays.erase(displayToken);
Lloyd Pique347200f2017-12-14 17:00:15 -08002700 mDrawingState.displays.removeItemsAt(i);
2701 dc--;
2702 // at this point we must loop to the next item
2703 continue;
2704 }
2705
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002706 if (const auto display = getDisplayDeviceLocked(displayToken)) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002707 if (state.layerStack != draw[i].layerStack) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002708 display->setLayerStack(state.layerStack);
Lloyd Pique347200f2017-12-14 17:00:15 -08002709 }
2710 if ((state.orientation != draw[i].orientation) ||
2711 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002712 display->setProjection(state.orientation, state.viewport, state.frame);
Lloyd Pique347200f2017-12-14 17:00:15 -08002713 }
2714 if (state.width != draw[i].width || state.height != draw[i].height) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002715 display->setDisplaySize(state.width, state.height);
Lloyd Pique347200f2017-12-14 17:00:15 -08002716 }
2717 }
2718 }
2719 ++i;
2720 }
2721
2722 // find displays that were added
2723 // (ie: in current state but not in drawing state)
2724 for (size_t i = 0; i < cc; i++) {
2725 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2726 const DisplayDeviceState& state(curr[i]);
2727
Lloyd Pique542307f2018-10-19 13:24:08 -07002728 sp<compositionengine::DisplaySurface> dispSurface;
Lloyd Pique347200f2017-12-14 17:00:15 -08002729 sp<IGraphicBufferProducer> producer;
2730 sp<IGraphicBufferProducer> bqProducer;
2731 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique90c115d2018-09-18 21:39:42 -07002732 getFactory().createBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002733
Dominik Laskowski075d3172018-05-24 15:50:06 -07002734 std::optional<DisplayId> displayId;
Dominik Laskowski663bd282018-04-19 15:26:54 -07002735 if (state.isVirtual()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002736 // Virtual displays without a surface are dormant:
2737 // they have external state (layer stack, projection,
2738 // etc.) but no internal state (i.e. a DisplayDevice).
2739 if (state.surface != nullptr) {
2740 // Allow VR composer to use virtual displays.
Dominik Laskowski075d3172018-05-24 15:50:06 -07002741 if (mUseHwcVirtualDisplays || getHwComposer().isUsingVrComposer()) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002742 int width = 0;
2743 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2744 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2745 int height = 0;
2746 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2747 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2748 int intFormat = 0;
2749 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2750 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
Peiyong Lin34beb7a2018-03-28 11:57:12 -07002751 auto format = static_cast<ui::PixelFormat>(intFormat);
Lloyd Pique347200f2017-12-14 17:00:15 -08002752
Dominik Laskowski075d3172018-05-24 15:50:06 -07002753 displayId =
2754 getHwComposer().allocateVirtualDisplay(width, height, &format);
Lloyd Pique347200f2017-12-14 17:00:15 -08002755 }
2756
2757 // TODO: Plumb requested format back up to consumer
2758
2759 sp<VirtualDisplaySurface> vds =
Dominik Laskowski075d3172018-05-24 15:50:06 -07002760 new VirtualDisplaySurface(getHwComposer(), displayId, state.surface,
Lloyd Pique347200f2017-12-14 17:00:15 -08002761 bqProducer, bqConsumer,
2762 state.displayName);
2763
2764 dispSurface = vds;
2765 producer = vds;
2766 }
2767 } else {
2768 ALOGE_IF(state.surface != nullptr,
2769 "adding a supported display, but rendering "
2770 "surface is provided (%p), ignoring it",
2771 state.surface.get());
2772
Dominik Laskowski075d3172018-05-24 15:50:06 -07002773 displayId = state.displayId;
2774 LOG_ALWAYS_FATAL_IF(!displayId);
2775 dispSurface = new FramebufferSurface(getHwComposer(), *displayId, bqConsumer);
Lloyd Pique347200f2017-12-14 17:00:15 -08002776 producer = bqProducer;
2777 }
2778
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002779 const wp<IBinder>& displayToken = curr.keyAt(i);
Lloyd Pique347200f2017-12-14 17:00:15 -08002780 if (dispSurface != nullptr) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002781 mDisplays.emplace(displayToken,
Dominik Laskowski7e045462018-05-30 13:02:02 -07002782 setupNewDisplayDeviceInternal(displayToken, displayId, state,
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002783 dispSurface, producer));
Dominik Laskowski663bd282018-04-19 15:26:54 -07002784 if (!state.isVirtual()) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002785 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08002786 dispatchDisplayHotplugEvent(displayId->value, true);
Lloyd Pique347200f2017-12-14 17:00:15 -08002787 }
2788 }
2789 }
2790 }
2791 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002792
2793 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002794}
2795
Mathias Agopian87baae12012-07-31 12:38:26 -07002796void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002797{
Dan Stoza7dde5992015-05-22 09:51:44 -07002798 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002799 mCurrentState.traverseInZOrder([](Layer* layer) {
2800 layer->notifyAvailableFrames();
2801 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002802
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002803 /*
2804 * Traversal of the children
2805 * (perform the transaction for each of them if needed)
2806 */
2807
Marissa Wall06255332019-03-27 13:48:27 -07002808 if ((transactionFlags & eTraversalNeeded) || mTraversalNeededMainThread) {
Robert Carr2047fae2016-11-28 14:09:09 -08002809 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002810 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002811 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002812
2813 const uint32_t flags = layer->doTransaction(0);
2814 if (flags & Layer::eVisibleRegion)
2815 mVisibleRegionsDirty = true;
Robert Carr720e5062018-07-30 17:45:14 -07002816
2817 if (flags & Layer::eInputInfoChanged) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002818 mInputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002819 }
Robert Carr2047fae2016-11-28 14:09:09 -08002820 });
Marissa Wall06255332019-03-27 13:48:27 -07002821 mTraversalNeededMainThread = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002822 }
2823
2824 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002825 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002826 */
2827
Mathias Agopiane57f2922012-08-09 16:29:12 -07002828 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002829 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002830 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002831 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002832
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002833 if (transactionFlags & (eDisplayLayerStackChanged|eDisplayTransactionNeeded)) {
Mathias Agopian84300952012-11-21 16:02:13 -08002834 // The transform hint might have changed for some layers
2835 // (either because a display has changed, or because a layer
2836 // as changed).
2837 //
2838 // Walk through all the layers in currentLayers,
2839 // and update their transform hint.
2840 //
2841 // If a layer is visible only on a single display, then that
2842 // display is used to calculate the hint, otherwise we use the
2843 // default display.
2844 //
2845 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2846 // the hint is set before we acquire a buffer from the surface texture.
2847 //
2848 // NOTE: layer transactions have taken place already, so we use their
2849 // drawing state. However, SurfaceFlinger's own transaction has not
2850 // happened yet, so we must use the current state layer list
2851 // (soon to become the drawing state list).
2852 //
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002853 sp<const DisplayDevice> hintDisplay;
Mathias Agopian84300952012-11-21 16:02:13 -08002854 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002855 bool first = true;
2856 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002857 // NOTE: we rely on the fact that layers are sorted by
2858 // layerStack first (so we don't have to traverse the list
2859 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002860 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002861 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002862 currentlayerStack = layerStack;
2863 // figure out if this layerstack is mirrored
2864 // (more than one display) if so, pick the default display,
2865 // if not, pick the only display it's on.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002866 hintDisplay = nullptr;
2867 for (const auto& [token, display] : mDisplays) {
Lloyd Piqueef36b002019-01-23 17:52:04 -08002868 if (display->getCompositionDisplay()
2869 ->belongsInOutput(layer->getLayerStack(),
2870 layer->getPrimaryDisplayOnly())) {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002871 if (hintDisplay) {
2872 hintDisplay = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002873 break;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002874 } else {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002875 hintDisplay = display;
Mathias Agopian84300952012-11-21 16:02:13 -08002876 }
2877 }
2878 }
2879 }
Chet Haase91d25932013-04-11 15:24:55 -07002880
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002881 if (!hintDisplay) {
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002882 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2883 // redraw after transform hint changes. See bug 8508397.
Robert Carr56a0b9a2017-12-04 16:06:13 -08002884
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002885 // could be null when this layer is using a layerStack
2886 // that is not visible on any display. Also can occur at
2887 // screen off/on times.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002888 hintDisplay = getDefaultDisplayDeviceLocked();
Mathias Agopian84300952012-11-21 16:02:13 -08002889 }
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002890
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002891 // could be null if there is no display available at all to get
Lloyd Piqued432a7c2018-03-23 16:05:31 -07002892 // the transform hint from.
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002893 if (hintDisplay) {
2894 layer->updateTransformHint(hintDisplay);
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002895 }
Robert Carr2047fae2016-11-28 14:09:09 -08002896
2897 first = false;
2898 });
Mathias Agopian84300952012-11-21 16:02:13 -08002899 }
2900
2901
Mathias Agopian3559b072012-08-15 13:46:03 -07002902 /*
2903 * Perform our own transaction if needed
2904 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002905
2906 if (mLayersAdded) {
2907 mLayersAdded = false;
2908 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002909 mVisibleRegionsDirty = true;
2910 }
2911
2912 // some layers might have been removed, so
2913 // we need to update the regions they're exposing.
2914 if (mLayersRemoved) {
2915 mLayersRemoved = false;
2916 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002917 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002918 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002919 // this layer is not visible anymore
Robert Carr1f0a16a2016-10-24 16:27:39 -07002920 Region visibleReg;
Vishnu Nair4351ad52019-02-11 14:13:02 -08002921 visibleReg.set(layer->getScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002922 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002923 }
Robert Carr2047fae2016-11-28 14:09:09 -08002924 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002925 }
2926
Vishnu Nairec0ab382019-02-13 15:32:56 -08002927 commitInputWindowCommands();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002928 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002929}
2930
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002931void SurfaceFlinger::updateInputFlinger() {
Robert Carr720e5062018-07-30 17:45:14 -07002932 ATRACE_CALL();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002933 if (!mInputFlinger) {
Vishnu Nairde19f852018-12-18 16:11:53 -08002934 return;
2935 }
2936
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002937 if (mVisibleRegionsDirty || mInputInfoChanged) {
2938 mInputInfoChanged = false;
2939 updateInputWindowInfo();
chaviw95ef3c42019-02-14 10:55:09 -08002940 } else if (mInputWindowCommands.syncInputWindows) {
2941 // If the caller requested to sync input windows, but there are no
2942 // changes to input windows, notify immediately.
2943 setInputWindowsFinished();
Vishnu Nair6194e2e2019-02-06 12:58:39 -08002944 }
2945
2946 executeInputWindowCommands();
2947}
2948
2949void SurfaceFlinger::updateInputWindowInfo() {
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002950 std::vector<InputWindowInfo> inputHandles;
Robert Carr720e5062018-07-30 17:45:14 -07002951
2952 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
2953 if (layer->hasInput()) {
Vishnu Nair51625fa2018-12-06 13:54:33 -08002954 // When calculating the screen bounds we ignore the transparent region since it may
2955 // result in an unwanted offset.
Arthur Hung7c3ae9c2019-03-11 11:23:03 +08002956 inputHandles.push_back(layer->fillInputInfo());
Robert Carr720e5062018-07-30 17:45:14 -07002957 }
2958 });
chaviw291d88a2019-02-14 10:33:58 -08002959
2960 mInputFlinger->setInputWindows(inputHandles,
2961 mInputWindowCommands.syncInputWindows ? mSetInputWindowsListener
2962 : nullptr);
Robert Carr720e5062018-07-30 17:45:14 -07002963}
2964
Vishnu Nairec0ab382019-02-13 15:32:56 -08002965void SurfaceFlinger::commitInputWindowCommands() {
chaviw4fe36852019-04-15 16:25:49 -07002966 mInputWindowCommands = mPendingInputWindowCommands;
Vishnu Nairec0ab382019-02-13 15:32:56 -08002967 mPendingInputWindowCommands.clear();
2968}
2969
chaviwfbe5d9c2018-12-26 12:23:37 -08002970void SurfaceFlinger::executeInputWindowCommands() {
chaviwfbe5d9c2018-12-26 12:23:37 -08002971 for (const auto& transferTouchFocusCommand : mInputWindowCommands.transferTouchFocusCommands) {
2972 if (transferTouchFocusCommand.fromToken != nullptr &&
2973 transferTouchFocusCommand.toToken != nullptr &&
2974 transferTouchFocusCommand.fromToken != transferTouchFocusCommand.toToken) {
2975 mInputFlinger->transferTouchFocus(transferTouchFocusCommand.fromToken,
2976 transferTouchFocusCommand.toToken);
2977 }
2978 }
2979
2980 mInputWindowCommands.clear();
2981}
2982
Riley Andrews03414a12014-07-01 14:22:59 -07002983void SurfaceFlinger::updateCursorAsync()
2984{
Dominik Laskowski9fae1022018-05-29 13:17:40 -07002985 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07002986 if (!display->getId()) {
Riley Andrews03414a12014-07-01 14:22:59 -07002987 continue;
2988 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002989
Dominik Laskowskieecd6592018-05-29 10:25:41 -07002990 for (auto& layer : display->getVisibleLayersSortedByZ()) {
2991 layer->updateCursorPosition(display);
Riley Andrews03414a12014-07-01 14:22:59 -07002992 }
2993 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002994}
2995
chaviw61626f22018-11-15 16:26:27 -08002996void SurfaceFlinger::latchAndReleaseBuffer(const sp<Layer>& layer) {
2997 if (layer->hasReadyFrame()) {
Robert Carra0629232019-02-07 15:28:54 -08002998 bool ignored = false;
Alec Mouri56e538f2019-01-14 15:22:01 -08002999 layer->latchBuffer(ignored, systemTime());
chaviw61626f22018-11-15 16:26:27 -08003000 }
3001 layer->releasePendingBuffer(systemTime());
3002}
3003
Mathias Agopian4fec8732012-06-29 14:12:52 -07003004void SurfaceFlinger::commitTransaction()
3005{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00003006 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07003007 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07003008 for (const auto& l : mLayersPendingRemoval) {
3009 recordBufferingStats(l->getName().string(),
3010 l->getOccupancyHistory(true));
Robert Carr2e102c92018-10-23 12:11:15 -07003011
Lloyd Pique07e33212018-12-18 16:33:37 -08003012 // Ensure any buffers set to display on any children are released.
Robert Carr2e102c92018-10-23 12:11:15 -07003013 if (l->isRemovedFromCurrentState()) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08003014 latchAndReleaseBuffer(l);
Robert Carr2e102c92018-10-23 12:11:15 -07003015 }
chaviw74d90ad2019-04-26 14:45:26 -07003016
3017 // If the layer has been removed and has no parent, then it will not be reachable
3018 // when traversing layers on screen. Add the layer to the offscreenLayers set to
3019 // ensure we can copy its current to drawing state.
3020 if (!l->getParent()) {
3021 mOffscreenLayers.emplace(l.get());
3022 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003023 }
3024 mLayersPendingRemoval.clear();
3025 }
3026
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003027 // If this transaction is part of a window animation then the next frame
3028 // we composite should be considered an animation as well.
3029 mAnimCompositionPending = mAnimTransactionPending;
3030
Nataniel Borges2b796da2019-02-15 13:32:18 -08003031 withTracingLock([&]() {
3032 mDrawingState = mCurrentState;
3033 // clear the "changed" flags in current state
3034 mCurrentState.colorMatrixChanged = false;
Chia-I Wu28f320b2018-05-03 11:02:56 -07003035
chaviw74d90ad2019-04-26 14:45:26 -07003036 mDrawingState.traverseInZOrder([&](Layer* layer) {
3037 layer->commitChildList();
3038
3039 // If the layer can be reached when traversing mDrawingState, then the layer is no
3040 // longer offscreen. Remove the layer from the offscreenLayer set.
3041 if (mOffscreenLayers.count(layer)) {
3042 mOffscreenLayers.erase(layer);
3043 }
3044 });
3045
3046 commitOffscreenLayers();
Robert Carr1f0a16a2016-10-24 16:27:39 -07003047 });
Nataniel Borges2b796da2019-02-15 13:32:18 -08003048
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003049 mTransactionPending = false;
3050 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003051 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003052}
3053
Nataniel Borges2b796da2019-02-15 13:32:18 -08003054void SurfaceFlinger::withTracingLock(std::function<void()> lockedOperation) {
3055 if (mTracingEnabledChanged) {
3056 mTracingEnabled = mTracing.isEnabled();
3057 mTracingEnabledChanged = false;
3058 }
3059
3060 // Synchronize with Tracing thread
3061 std::unique_lock<std::mutex> lock;
3062 if (mTracingEnabled) {
3063 lock = std::unique_lock<std::mutex>(mDrawingStateLock);
3064 }
3065
3066 lockedOperation();
3067
3068 // Synchronize with Tracing thread
3069 if (mTracingEnabled) {
3070 lock.unlock();
3071 }
3072}
3073
chaviw74d90ad2019-04-26 14:45:26 -07003074void SurfaceFlinger::commitOffscreenLayers() {
3075 for (Layer* offscreenLayer : mOffscreenLayers) {
3076 offscreenLayer->traverseInZOrder(LayerVector::StateSet::Drawing, [](Layer* layer) {
3077 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
3078 if (!trFlags) return;
3079
3080 layer->doTransaction(0);
3081 layer->commitChildList();
3082 });
3083 }
3084}
3085
Lloyd Pique32cbe282018-10-19 13:09:22 -07003086void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003087 Region& outDirtyRegion, Region& outOpaqueRegion) {
Mathias Agopian841cde52012-03-01 15:44:37 -08003088 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003089 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08003090
Lloyd Pique32cbe282018-10-19 13:09:22 -07003091 auto display = displayDevice->getCompositionDisplay();
3092
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003093 Region aboveOpaqueLayers;
3094 Region aboveCoveredLayers;
3095 Region dirty;
3096
Mathias Agopian87baae12012-07-31 12:38:26 -07003097 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003098
Robert Carr2047fae2016-11-28 14:09:09 -08003099 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003100 // start with the whole surface at its current location
3101 const Layer::State& s(layer->getDrawingState());
3102
Jesse Hall01e29052013-02-19 16:13:35 -08003103 // only consider the layers on the given layer stack
Lloyd Piqueef36b002019-01-23 17:52:04 -08003104 if (!display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Robert Carr2047fae2016-11-28 14:09:09 -08003105 return;
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003106 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003107
Mathias Agopianab028732010-03-16 16:41:46 -07003108 /*
3109 * opaqueRegion: area of a surface that is fully opaque.
3110 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003111 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003112
3113 /*
3114 * visibleRegion: area of a surface that is visible on screen
3115 * and not fully transparent. This is essentially the layer's
3116 * footprint minus the opaque regions above it.
3117 * Areas covered by a translucent surface are considered visible.
3118 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003119 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003120
3121 /*
3122 * coveredRegion: area of a surface that is covered by all
3123 * visible regions above it (which includes the translucent areas).
3124 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003125 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003126
Jesse Halla8026d22012-09-25 13:25:04 -07003127 /*
3128 * transparentRegion: area of a surface that is hinted to be completely
3129 * transparent. This is only used to tell when the layer has no visible
3130 * non-transparent regions and can be removed from the layer list. It
3131 * does not affect the visibleRegion of this layer or any layers
3132 * beneath it. The hint may not be correct if apps don't respect the
3133 * SurfaceView restrictions (which, sadly, some don't).
3134 */
3135 Region transparentRegion;
3136
Mathias Agopianab028732010-03-16 16:41:46 -07003137
3138 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07003139 if (CC_LIKELY(layer->isVisible())) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003140 const bool translucent = !layer->isOpaque(s);
Vishnu Nair4351ad52019-02-11 14:13:02 -08003141 Rect bounds(layer->getScreenBounds());
Robert Carr720e5062018-07-30 17:45:14 -07003142
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003143 visibleRegion.set(bounds);
Peiyong Linefefaac2018-08-17 12:27:51 -07003144 ui::Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07003145 if (!visibleRegion.isEmpty()) {
3146 // Remove the transparent area from the visible region
3147 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003148 if (tr.preserveRects()) {
3149 // transform the transparent region
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003150 transparentRegion = tr.transform(layer->getActiveTransparentRegion(s));
Mathias Agopian4fec8732012-06-29 14:12:52 -07003151 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07003152 // transformation too complex, can't do the
3153 // transparent region optimization.
3154 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07003155 }
Mathias Agopianab028732010-03-16 16:41:46 -07003156 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003157
Mathias Agopianab028732010-03-16 16:41:46 -07003158 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07003159 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02003160 if (layer->getAlpha() == 1.0f && !translucent &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003161 layer->getRoundedCornerState().radius == 0.0f &&
Peiyong Linefefaac2018-08-17 12:27:51 -07003162 ((layerOrientation & ui::Transform::ROT_INVALID) == false)) {
Mathias Agopianab028732010-03-16 16:41:46 -07003163 // the opaque region is the layer's footprint
3164 opaqueRegion = visibleRegion;
3165 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003166 }
3167 }
3168
Robert Carre5f4f692018-01-12 13:12:28 -08003169 if (visibleRegion.isEmpty()) {
3170 layer->clearVisibilityRegions();
3171 return;
3172 }
3173
Mathias Agopianab028732010-03-16 16:41:46 -07003174 // Clip the covered region to the visible region
3175 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
3176
3177 // Update aboveCoveredLayers for next (lower) layer
3178 aboveCoveredLayers.orSelf(visibleRegion);
3179
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003180 // subtract the opaque region covered by the layers above us
3181 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003182
3183 // compute this layer's dirty region
3184 if (layer->contentDirty) {
3185 // we need to invalidate the whole region
3186 dirty = visibleRegion;
3187 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07003188 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003189 layer->contentDirty = false;
3190 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003191 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07003192 * the exposed region consists of two components:
3193 * 1) what's VISIBLE now and was COVERED before
3194 * 2) what's EXPOSED now less what was EXPOSED before
3195 *
3196 * note that (1) is conservative, we start with the whole
3197 * visible region but only keep what used to be covered by
3198 * something -- which mean it may have been exposed.
3199 *
3200 * (2) handles areas that were not covered by anything but got
3201 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07003202 */
Mathias Agopianab028732010-03-16 16:41:46 -07003203 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07003204 const Region oldVisibleRegion = layer->visibleRegion;
3205 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07003206 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
3207 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003208 }
3209 dirty.subtractSelf(aboveOpaqueLayers);
3210
3211 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07003212 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003213
Mathias Agopianab028732010-03-16 16:41:46 -07003214 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003215 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003216
Jesse Halla8026d22012-09-25 13:25:04 -07003217 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003218 layer->setVisibleRegion(visibleRegion);
3219 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07003220 layer->setVisibleNonTransparentRegion(
3221 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08003222 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003223
Mathias Agopian87baae12012-07-31 12:38:26 -07003224 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003225}
3226
Chia-I Wuab0c3192017-08-01 11:29:00 -07003227void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003228 for (const auto& [token, displayDevice] : mDisplays) {
3229 auto display = displayDevice->getCompositionDisplay();
Lloyd Piqueef36b002019-01-23 17:52:04 -08003230 if (display->belongsInOutput(layer->getLayerStack(), layer->getPrimaryDisplayOnly())) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003231 display->editState().dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07003232 }
3233 }
Mathias Agopian87baae12012-07-31 12:38:26 -07003234}
3235
Dan Stoza6b9454d2014-11-07 16:00:59 -08003236bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003237{
Ady Abraham09bd3922019-04-08 10:44:56 -07003238 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003239 ALOGV("handlePageFlip");
3240
Brian Andersond6927fb2016-07-23 23:37:30 -07003241 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003242
Mathias Agopian4fec8732012-06-29 14:12:52 -07003243 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003244 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06003245 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07003246
3247 // Store the set of layers that need updates. This set must not change as
3248 // buffers are being latched, as this could result in a deadlock.
3249 // Example: Two producers share the same command stream and:
3250 // 1.) Layer 0 is latched
3251 // 2.) Layer 0 gets a new frame
3252 // 2.) Layer 1 gets a new frame
3253 // 3.) Layer 1 is latched.
3254 // Display is now waiting on Layer 1's frame, which is behind layer 0's
3255 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08003256 mDrawingState.traverseInZOrder([&](Layer* layer) {
Marissa Wallfd668622018-05-10 10:21:13 -07003257 if (layer->hasReadyFrame()) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003258 frameQueued = true;
Alec Mouriaa614192019-06-06 13:28:34 -07003259 const nsecs_t expectedPresentTime = getExpectedPresentTime();
Ana Krulec010d2192018-10-08 06:29:54 -07003260 if (layer->shouldPresentNow(expectedPresentTime)) {
Robert Carr2047fae2016-11-28 14:09:09 -08003261 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07003262 } else {
Ady Abraham09bd3922019-04-08 10:44:56 -07003263 ATRACE_NAME("!layer->shouldPresentNow()");
Dan Stozaee44edd2015-03-23 15:50:23 -07003264 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003265 }
Dan Stozaee44edd2015-03-23 15:50:23 -07003266 } else {
3267 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08003268 }
Robert Carr2047fae2016-11-28 14:09:09 -08003269 });
3270
Lloyd Piquef2c79392018-12-20 16:23:33 -08003271 if (!mLayersWithQueuedFrames.empty()) {
3272 // mStateLock is needed for latchBuffer as LayerRejecter::reject()
3273 // writes to Layer current state. See also b/119481871
3274 Mutex::Autolock lock(mStateLock);
3275
3276 for (auto& layer : mLayersWithQueuedFrames) {
Alec Mouri56e538f2019-01-14 15:22:01 -08003277 if (layer->latchBuffer(visibleRegions, latchTime)) {
Vishnu Nair6194e2e2019-02-06 12:58:39 -08003278 mLayersPendingRefresh.push_back(layer);
3279 }
Lloyd Piquef2c79392018-12-20 16:23:33 -08003280 layer->useSurfaceDamage();
Lloyd Piquef2c79392018-12-20 16:23:33 -08003281 if (layer->isBufferLatched()) {
3282 newDataLatched = true;
3283 }
Mike Stroyan0cd76192017-04-20 12:10:48 -06003284 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07003285 }
Mathias Agopian4da75192010-08-10 17:19:56 -07003286
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07003287 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08003288
3289 // If we will need to wake up at some time in the future to deal with a
3290 // queued frame that shouldn't be displayed during this vsync period, wake
3291 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07003292 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08003293 signalLayerUpdate();
3294 }
3295
Chia-I Wu14c9c7b2018-06-26 10:18:18 +08003296 // enter boot animation on first buffer latch
3297 if (CC_UNLIKELY(mBootStage == BootStage::BOOTLOADER && newDataLatched)) {
3298 ALOGI("Enter boot animation");
3299 mBootStage = BootStage::BOOTANIMATION;
3300 }
3301
Dan Stoza6b9454d2014-11-07 16:00:59 -08003302 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06003303 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003304}
3305
Mathias Agopianad456f92011-01-13 17:53:01 -08003306void SurfaceFlinger::invalidateHwcGeometry()
3307{
Dan Stoza9e56aa02015-11-02 13:00:03 -08003308 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08003309}
3310
Lloyd Pique32cbe282018-10-19 13:09:22 -07003311void SurfaceFlinger::doDisplayComposition(const sp<DisplayDevice>& displayDevice,
Dominik Laskowskieecd6592018-05-29 10:25:41 -07003312 const Region& inDirtyRegion) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003313 auto display = displayDevice->getCompositionDisplay();
Dan Stoza71433162014-02-04 16:22:36 -08003314 // We only need to actually compose the display if:
3315 // 1) It is being handled by hardware composer, which may need this to
3316 // keep its virtual display state machine in sync, or
3317 // 2) There is work to be done (the dirty region isn't empty)
Lloyd Pique32cbe282018-10-19 13:09:22 -07003318 if (!displayDevice->getId() && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08003319 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08003320 return;
3321 }
3322
Dan Stoza9e56aa02015-11-02 13:00:03 -08003323 ALOGV("doDisplayComposition");
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003324 base::unique_fd readyFence;
3325 if (!doComposeSurfaces(displayDevice, Region::INVALID_REGION, &readyFence)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07003326
3327 // swap buffers (presentation)
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003328 display->getRenderSurface()->queueBuffer(std::move(readyFence));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003329}
3330
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003331bool SurfaceFlinger::doComposeSurfaces(const sp<DisplayDevice>& displayDevice,
3332 const Region& debugRegion, base::unique_fd* readyFence) {
Alec Mouri820c7402019-01-23 13:02:39 -08003333 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08003334 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07003335
Lloyd Pique32cbe282018-10-19 13:09:22 -07003336 auto display = displayDevice->getCompositionDisplay();
3337 const auto& displayState = display->getState();
Dominik Laskowski7e045462018-05-30 13:02:02 -07003338 const auto displayId = display->getId();
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003339 auto& renderEngine = getRenderEngine();
Peiyong Lin548d4fa2019-04-02 18:14:44 -07003340 const bool supportProtectedContent = renderEngine.supportsProtectedContent();
Lloyd Pique32cbe282018-10-19 13:09:22 -07003341
3342 const Region bounds(displayState.bounds);
3343 const DisplayRenderArea renderArea(displayDevice);
Lloyd Pique441d5042018-10-18 16:49:51 -07003344 const bool hasClientComposition = getHwComposer().hasClientComposition(displayId);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08003345 ATRACE_INT("hasClientComposition", hasClientComposition);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003346
Chia-I Wu8e50e692018-05-04 10:12:37 -07003347 bool applyColorMatrix = false;
Dan Stoza9f26a9c2016-06-22 14:51:09 -07003348
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003349 renderengine::DisplaySettings clientCompositionDisplay;
3350 std::vector<renderengine::LayerSettings> clientCompositionLayers;
3351 sp<GraphicBuffer> buf;
Alec Mouri6338c9d2019-02-07 16:57:51 -08003352 base::unique_fd fd;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003353
Dan Stoza9e56aa02015-11-02 13:00:03 -08003354 if (hasClientComposition) {
3355 ALOGV("hasClientComposition");
3356
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003357 if (displayDevice->isPrimary() && supportProtectedContent) {
3358 bool needsProtected = false;
3359 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
3360 // If the layer is a protected layer, mark protected context is needed.
3361 if (layer->isProtected()) {
3362 needsProtected = true;
3363 break;
3364 }
3365 }
Peiyong Lin52010312019-05-02 14:22:16 -07003366 if (needsProtected != renderEngine.isProtected()) {
3367 renderEngine.useProtectedContext(needsProtected);
3368 }
3369 if (needsProtected != display->getRenderSurface()->isProtected() &&
3370 needsProtected == renderEngine.isProtected()) {
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003371 display->getRenderSurface()->setProtected(needsProtected);
3372 }
3373 }
3374
Alec Mouri6338c9d2019-02-07 16:57:51 -08003375 buf = display->getRenderSurface()->dequeueBuffer(&fd);
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003376
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003377 if (buf == nullptr) {
3378 ALOGW("Dequeuing buffer for display [%s] failed, bailing out of "
3379 "client composition for this frame",
Lloyd Pique32cbe282018-10-19 13:09:22 -07003380 displayDevice->getDisplayName().c_str());
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003381 return false;
3382 }
3383
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003384 clientCompositionDisplay.physicalDisplay = displayState.scissor;
3385 clientCompositionDisplay.clip = displayState.scissor;
3386 const ui::Transform& displayTransform = displayState.transform;
Lloyd Pique7e06e7f2019-03-15 18:36:44 -07003387 clientCompositionDisplay.globalTransform = displayTransform.asMatrix4();
Peiyong Linb1925962019-04-01 16:37:10 -07003388 clientCompositionDisplay.orientation = displayState.orientation;
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003389
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003390 const auto* profile = display->getDisplayColorProfile();
Peiyong Lin34beb7a2018-03-28 11:57:12 -07003391 Dataspace outputDataspace = Dataspace::UNKNOWN;
Lloyd Pique3d0c02e2018-10-19 18:38:12 -07003392 if (profile->hasWideColorGamut()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07003393 outputDataspace = displayState.dataspace;
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003394 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003395 clientCompositionDisplay.outputDataspace = outputDataspace;
3396 clientCompositionDisplay.maxLuminance =
3397 profile->getHdrCapabilities().getDesiredMaxLuminance();
Chia-I Wu69bf10f2018-02-20 13:04:50 -08003398
Lloyd Pique441d5042018-10-18 16:49:51 -07003399 const bool hasDeviceComposition = getHwComposer().hasDeviceComposition(displayId);
Peiyong Lined531a32018-10-26 18:27:56 -07003400 const bool skipClientColorTransform =
Lloyd Pique441d5042018-10-18 16:49:51 -07003401 getHwComposer()
3402 .hasDisplayCapability(displayId,
3403 HWC2::DisplayCapability::SkipClientColorTransform);
Chia-I Wu8e50e692018-05-04 10:12:37 -07003404
Peiyong Lind3788632018-09-18 16:01:31 -07003405 // Compute the global color transform matrix.
Chia-I Wu8e50e692018-05-04 10:12:37 -07003406 applyColorMatrix = !hasDeviceComposition && !skipClientColorTransform;
3407 if (applyColorMatrix) {
Alec Mouric7e8ce82019-04-02 12:28:05 -07003408 clientCompositionDisplay.colorTransform = displayState.colorTransformMat;
Mathias Agopianf45c5102012-10-24 16:29:17 -07003409 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07003410 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003411
Mathias Agopian85d751c2012-08-29 16:59:24 -07003412 /*
3413 * and then, render the layers targeted at the framebuffer
3414 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003415
Dan Stoza9e56aa02015-11-02 13:00:03 -08003416 ALOGV("Rendering client layers");
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003417 bool firstLayer = true;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003418 Region clearRegion = Region::INVALID_REGION;
Lloyd Pique32cbe282018-10-19 13:09:22 -07003419 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003420 const Region viewportRegion(displayState.viewport);
3421 const Region clip(viewportRegion.intersect(layer->visibleRegion));
David Sodmanc1498e62018-09-12 14:36:26 -07003422 ALOGV("Layer: %s", layer->getName().string());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003423 ALOGV(" Composition type: %s", toString(layer->getCompositionType(displayDevice)).c_str());
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003424 if (!clip.isEmpty()) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003425 switch (layer->getCompositionType(displayDevice)) {
3426 case Hwc2::IComposerClient::Composition::CURSOR:
3427 case Hwc2::IComposerClient::Composition::DEVICE:
3428 case Hwc2::IComposerClient::Composition::SIDEBAND:
3429 case Hwc2::IComposerClient::Composition::SOLID_COLOR: {
Dominik Laskowski075d3172018-05-24 15:50:06 -07003430 LOG_ALWAYS_FATAL_IF(!displayId);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003431 const Layer::State& state(layer->getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003432 if (layer->getClearClientTarget(displayDevice) && !firstLayer &&
Lloyd Pique0449b0f2018-12-20 16:23:45 -08003433 layer->isOpaque(state) && (layer->getAlpha() == 1.0f) &&
Lucas Dupin1b6531c2018-07-05 17:18:21 -07003434 layer->getRoundedCornerState().radius == 0.0f && hasClientComposition) {
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003435 // never clear the very first layer since we're
3436 // guaranteed the FB is already cleared
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003437 renderengine::LayerSettings layerSettings;
3438 Region dummyRegion;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003439 bool prepared =
3440 layer->prepareClientLayer(renderArea, clip, dummyRegion,
3441 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003442
3443 if (prepared) {
3444 layerSettings.source.buffer.buffer = nullptr;
3445 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
3446 layerSettings.alpha = half(0.0);
3447 layerSettings.disableBlending = true;
3448 clientCompositionLayers.push_back(layerSettings);
3449 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07003450 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003451 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07003452 }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08003453 case Hwc2::IComposerClient::Composition::CLIENT: {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003454 renderengine::LayerSettings layerSettings;
3455 bool prepared =
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003456 layer->prepareClientLayer(renderArea, clip, clearRegion,
3457 supportProtectedContent, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003458 if (prepared) {
3459 clientCompositionLayers.push_back(layerSettings);
Peiyong Lind3788632018-09-18 16:01:31 -07003460 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003461 break;
3462 }
3463 default:
3464 break;
Mathias Agopian85d751c2012-08-29 16:59:24 -07003465 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003466 } else {
3467 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07003468 }
Chia-I Wu5e9a43e2018-05-03 14:27:39 -07003469 firstLayer = false;
Mathias Agopian4b2ba532012-03-29 12:23:51 -07003470 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07003471
Alec Mouri820c7402019-01-23 13:02:39 -08003472 // Perform some cleanup steps if we used client composition.
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003473 if (hasClientComposition) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003474 clientCompositionDisplay.clearRegion = clearRegion;
Peiyong Lin74ca2f42019-01-14 19:36:57 -08003475
3476 // We boost GPU frequency here because there will be color spaces conversion
3477 // and it's expensive. We boost the GPU frequency so that GPU composition can
3478 // finish in time. We must reset GPU frequency afterwards, because high frequency
3479 // consumes extra battery.
3480 const bool expensiveRenderingExpected =
3481 clientCompositionDisplay.outputDataspace == Dataspace::DISPLAY_P3;
3482 if (expensiveRenderingExpected && displayId) {
3483 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, true);
3484 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00003485 if (!debugRegion.isEmpty()) {
3486 Region::const_iterator it = debugRegion.begin();
3487 Region::const_iterator end = debugRegion.end();
3488 while (it != end) {
3489 const Rect& rect = *it++;
3490 renderengine::LayerSettings layerSettings;
3491 layerSettings.source.buffer.buffer = nullptr;
3492 layerSettings.source.solidColor = half3(1.0, 0.0, 1.0);
3493 layerSettings.geometry.boundaries = rect.toFloatRect();
3494 layerSettings.alpha = half(1.0);
3495 clientCompositionLayers.push_back(layerSettings);
3496 }
3497 }
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08003498 renderEngine.drawLayers(clientCompositionDisplay, clientCompositionLayers,
Alec Mourife0d72b2019-03-21 14:05:56 -07003499 buf->getNativeBuffer(), /*useFramebufferCache=*/true, std::move(fd),
3500 readyFence);
Peiyong Lin8ec87f82019-04-05 11:30:51 -07003501 } else if (displayId) {
3502 mPowerAdvisor.setExpensiveRenderingExpected(*displayId, false);
Alec Mouri0a9c7b82018-11-16 13:05:25 -08003503 }
Michael Lentine3f121fc2014-10-01 11:17:28 -07003504 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003505}
3506
Chia-I Wu28e3a252018-09-07 12:05:02 -07003507void SurfaceFlinger::drawWormhole(const Region& region) const {
Lloyd Pique144e1162017-12-20 16:44:52 -08003508 auto& engine(getRenderEngine());
Chia-I Wu28e3a252018-09-07 12:05:02 -07003509 engine.fillRegionWithColor(region, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003510}
3511
Robert Carrc0df3122019-04-11 13:18:21 -07003512status_t SurfaceFlinger::addClientLayer(const sp<Client>& client, const sp<IBinder>& handle,
3513 const sp<IGraphicBufferProducer>& gbc, const sp<Layer>& lbc,
3514 const sp<IBinder>& parentHandle,
3515 const sp<Layer>& parentLayer, bool addToCurrentState) {
Dan Stoza7d89d062015-04-30 13:29:25 -07003516 // add this layer to the current state list
3517 {
3518 Mutex::Autolock _l(mStateLock);
Robert Carrc0df3122019-04-11 13:18:21 -07003519 sp<Layer> parent;
3520 if (parentHandle != nullptr) {
3521 parent = fromHandle(parentHandle);
3522 if (parent == nullptr) {
3523 return NAME_NOT_FOUND;
3524 }
3525 } else {
3526 parent = parentLayer;
3527 }
3528
Robert Carr1f0a16a2016-10-24 16:27:39 -07003529 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06003530 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
3531 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07003532 return NO_MEMORY;
3533 }
Robert Carrc0df3122019-04-11 13:18:21 -07003534
3535 mLayersByLocalBinderToken.emplace(handle->localBinder(), lbc);
3536
Robert Carrb89ea9d2018-12-10 13:01:14 -08003537 if (parent == nullptr && addToCurrentState) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003538 mCurrentState.layersSortedByZ.add(lbc);
chaviwac841852019-01-16 16:04:43 -08003539 } else if (parent == nullptr) {
3540 lbc->onRemovedFromCurrentState();
3541 } else if (parent->isRemovedFromCurrentState()) {
3542 parent->addChild(lbc);
3543 lbc->onRemovedFromCurrentState();
Robert Carrb89ea9d2018-12-10 13:01:14 -08003544 } else {
Robert Carr1f0a16a2016-10-24 16:27:39 -07003545 parent->addChild(lbc);
3546 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07003547
Yiwei Zhang243b3782018-05-15 17:40:04 -07003548 if (gbc != nullptr) {
3549 mGraphicBufferProducerList.insert(IInterface::asBinder(gbc).get());
3550 LOG_ALWAYS_FATAL_IF(mGraphicBufferProducerList.size() >
3551 mMaxGraphicBufferProducerListSize,
3552 "Suspected IGBP leak: %zu IGBPs (%zu max), %zu Layers",
3553 mGraphicBufferProducerList.size(),
3554 mMaxGraphicBufferProducerListSize, mNumLayers);
3555 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07003556 mLayersAdded = true;
Dan Stoza7d89d062015-04-30 13:29:25 -07003557 }
3558
Mathias Agopian96f08192010-06-02 23:28:45 -07003559 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08003560 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07003561
Dan Stoza7d89d062015-04-30 13:29:25 -07003562 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07003563}
3564
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08003565uint32_t SurfaceFlinger::peekTransactionFlags() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003566 return mTransactionFlags;
Mathias Agopiandea20b12011-05-03 17:04:02 -07003567}
3568
Mathias Agopian3f844832013-08-07 21:24:32 -07003569uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003570 return mTransactionFlags.fetch_and(~flags) & flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003571}
3572
Mathias Agopian3f844832013-08-07 21:24:32 -07003573uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003574 return setTransactionFlags(flags, Scheduler::TransactionStart::NORMAL);
Dan Stoza84d619e2018-03-28 17:07:36 -07003575}
3576
3577uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags,
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003578 Scheduler::TransactionStart transactionStart) {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07003579 uint32_t old = mTransactionFlags.fetch_or(flags);
Dan Stoza84d619e2018-03-28 17:07:36 -07003580 mVsyncModulator.setTransactionStart(transactionStart);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003581 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08003582 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003583 }
3584 return old;
3585}
3586
Marissa Wall713b63f2018-10-17 15:42:43 -07003587bool SurfaceFlinger::flushTransactionQueues() {
Valerie Haufce31b82019-04-30 16:41:14 -07003588 // to prevent onHandleDestroyed from being called while the lock is held,
3589 // we must keep a copy of the transactions (specifically the composer
3590 // states) around outside the scope of the lock
3591 std::vector<const TransactionState> transactions;
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003592 bool flushedATransaction = false;
Valerie Haufce31b82019-04-30 16:41:14 -07003593 {
3594 Mutex::Autolock _l(mStateLock);
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003595
Valerie Haufce31b82019-04-30 16:41:14 -07003596 auto it = mTransactionQueues.begin();
3597 while (it != mTransactionQueues.end()) {
3598 auto& [applyToken, transactionQueue] = *it;
Marissa Wall713b63f2018-10-17 15:42:43 -07003599
Valerie Haufce31b82019-04-30 16:41:14 -07003600 while (!transactionQueue.empty()) {
3601 const auto& transaction = transactionQueue.front();
3602 if (!transactionIsReadyToBeApplied(transaction.desiredPresentTime,
3603 transaction.states)) {
3604 setTransactionFlags(eTransactionFlushNeeded);
3605 break;
3606 }
3607 transactions.push_back(transaction);
3608 applyTransactionState(transaction.states, transaction.displays, transaction.flags,
3609 mPendingInputWindowCommands, transaction.desiredPresentTime,
3610 transaction.buffer, transaction.callback,
3611 transaction.postTime, transaction.privileged,
3612 /*isMainThread*/ true);
3613 transactionQueue.pop();
3614 flushedATransaction = true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003615 }
Marissa Wall713b63f2018-10-17 15:42:43 -07003616
Valerie Haufce31b82019-04-30 16:41:14 -07003617 if (transactionQueue.empty()) {
3618 it = mTransactionQueues.erase(it);
3619 mTransactionCV.broadcast();
3620 } else {
Valerie Haue5562ec2019-05-14 12:39:16 -07003621 it = std::next(it, 1);
Valerie Haufce31b82019-04-30 16:41:14 -07003622 }
Valerie Hauf6016b62019-03-28 10:49:59 -07003623 }
Marissa Wall713b63f2018-10-17 15:42:43 -07003624 }
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003625 return flushedATransaction;
3626}
3627
3628bool SurfaceFlinger::transactionFlushNeeded() {
3629 return !mTransactionQueues.empty();
Marissa Wall713b63f2018-10-17 15:42:43 -07003630}
3631
chaviwca27f252018-02-06 16:46:39 -08003632bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
3633 for (const ComposerState& state : states) {
3634 // Here we need to check that the interface we're given is indeed
3635 // one of our own. A malicious client could give us a nullptr
3636 // IInterface, or one of its own or even one of our own but a
3637 // different type. All these situations would cause us to crash.
3638 if (state.client == nullptr) {
3639 return true;
3640 }
3641
3642 sp<IBinder> binder = IInterface::asBinder(state.client);
3643 if (binder == nullptr) {
3644 return true;
3645 }
3646
3647 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
3648 return true;
3649 }
3650 }
3651 return false;
3652}
3653
Marissa Wall17b4e452018-12-26 16:32:34 -08003654bool SurfaceFlinger::transactionIsReadyToBeApplied(int64_t desiredPresentTime,
3655 const Vector<ComposerState>& states) {
Ana Krulecc2870422019-01-29 19:00:58 -08003656 nsecs_t expectedPresentTime = mScheduler->expectedPresentTime();
Marissa Wall17b4e452018-12-26 16:32:34 -08003657 // Do not present if the desiredPresentTime has not passed unless it is more than one second
3658 // in the future. We ignore timestamps more than 1 second in the future for stability reasons.
3659 if (desiredPresentTime >= 0 && desiredPresentTime >= expectedPresentTime &&
3660 desiredPresentTime < expectedPresentTime + s2ns(1)) {
3661 return false;
3662 }
3663
Marissa Wall713b63f2018-10-17 15:42:43 -07003664 for (const ComposerState& state : states) {
3665 const layer_state_t& s = state.state;
3666 if (!(s.what & layer_state_t::eAcquireFenceChanged)) {
3667 continue;
3668 }
3669 if (s.acquireFence && s.acquireFence->getStatus() == Fence::Status::Unsignaled) {
Marissa Wall17b4e452018-12-26 16:32:34 -08003670 return false;
Marissa Wall713b63f2018-10-17 15:42:43 -07003671 }
3672 }
Marissa Wall17b4e452018-12-26 16:32:34 -08003673 return true;
Marissa Wall713b63f2018-10-17 15:42:43 -07003674}
3675
3676void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& states,
3677 const Vector<DisplayState>& displays, uint32_t flags,
chaviw273171b2018-12-26 11:46:30 -08003678 const sp<IBinder>& applyToken,
Marissa Wall17b4e452018-12-26 16:32:34 -08003679 const InputWindowCommands& inputWindowCommands,
Marissa Wall78b72202019-03-15 14:58:34 -07003680 int64_t desiredPresentTime,
Marissa Wall947d34e2019-03-29 14:03:53 -07003681 const client_cache_t& uncacheBuffer,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003682 const std::vector<ListenerCallbacks>& listenerCallbacks) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003683 ATRACE_CALL();
Robert Carr14167e02019-02-13 13:50:55 -08003684
Valerie Haubc6ddb12019-03-08 11:10:15 -08003685 const int64_t postTime = systemTime();
3686
Robert Carr14167e02019-02-13 13:50:55 -08003687 bool privileged = callingThreadHasUnscopedSurfaceFlingerAccess();
3688
Mathias Agopian698c0872011-06-28 19:09:31 -07003689 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07003690
chaviwca27f252018-02-06 16:46:39 -08003691 if (containsAnyInvalidClientState(states)) {
3692 return;
3693 }
3694
Marissa Wall713b63f2018-10-17 15:42:43 -07003695 // If its TransactionQueue already has a pending TransactionState or if it is pending
Valerie Hauf6016b62019-03-28 10:49:59 -07003696 auto itr = mTransactionQueues.find(applyToken);
3697 // if this is an animation frame, wait until prior animation frame has
3698 // been applied by SF
3699 if (flags & eAnimation) {
3700 while (itr != mTransactionQueues.end()) {
3701 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3702 if (CC_UNLIKELY(err != NO_ERROR)) {
3703 ALOGW_IF(err == TIMED_OUT,
3704 "setTransactionState timed out "
3705 "waiting for animation frame to apply");
3706 break;
3707 }
3708 itr = mTransactionQueues.find(applyToken);
3709 }
3710 }
3711 if (itr != mTransactionQueues.end() ||
Marissa Wall17b4e452018-12-26 16:32:34 -08003712 !transactionIsReadyToBeApplied(desiredPresentTime, states)) {
Robert Carr14167e02019-02-13 13:50:55 -08003713 mTransactionQueues[applyToken].emplace(states, displays, flags, desiredPresentTime,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003714 uncacheBuffer, listenerCallbacks, postTime,
3715 privileged);
Marissa Walle6e3c0d2019-03-29 10:28:30 -07003716 setTransactionFlags(eTransactionFlushNeeded);
Marissa Wall713b63f2018-10-17 15:42:43 -07003717 return;
3718 }
3719
Valerie Haubc6ddb12019-03-08 11:10:15 -08003720 applyTransactionState(states, displays, flags, inputWindowCommands, desiredPresentTime,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003721 uncacheBuffer, listenerCallbacks, postTime, privileged);
Marissa Wall713b63f2018-10-17 15:42:43 -07003722}
3723
3724void SurfaceFlinger::applyTransactionState(const Vector<ComposerState>& states,
chaviw273171b2018-12-26 11:46:30 -08003725 const Vector<DisplayState>& displays, uint32_t flags,
Robert Carr14167e02019-02-13 13:50:55 -08003726 const InputWindowCommands& inputWindowCommands,
Marissa Wall78b72202019-03-15 14:58:34 -07003727 const int64_t desiredPresentTime,
Marissa Wall947d34e2019-03-29 14:03:53 -07003728 const client_cache_t& uncacheBuffer,
Marissa Wall3dad52d2019-03-22 14:03:19 -07003729 const std::vector<ListenerCallbacks>& listenerCallbacks,
Marissa Wall78b72202019-03-15 14:58:34 -07003730 const int64_t postTime, bool privileged,
3731 bool isMainThread) {
Marissa Wall713b63f2018-10-17 15:42:43 -07003732 uint32_t transactionFlags = 0;
3733
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003734 if (flags & eAnimation) {
3735 // For window updates that are part of an animation we must wait for
3736 // previous animation "frames" to be handled.
Valerie Hau38448362019-04-11 14:49:33 -07003737 while (!isMainThread && mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003738 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003739 if (CC_UNLIKELY(err != NO_ERROR)) {
3740 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003741 // caller after a few seconds.
3742 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3743 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003744 mAnimTransactionPending = false;
3745 break;
3746 }
3747 }
3748 }
3749
chaviwca27f252018-02-06 16:46:39 -08003750 for (const DisplayState& display : displays) {
3751 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003752 }
3753
Marissa Walld600d572019-03-26 15:38:50 -07003754 // In case the client has sent a Transaction that should receive callbacks but without any
3755 // SurfaceControls that should be included in the callback, send the listener and callbackIds
3756 // to the callback thread so it can send an empty callback
3757 if (!listenerCallbacks.empty()) {
3758 mTransactionCompletedThread.run();
3759 }
3760 for (const auto& [listener, callbackIds] : listenerCallbacks) {
3761 mTransactionCompletedThread.addCallback(listener, callbackIds);
3762 }
3763
Marissa Walle2ffb422018-10-12 11:33:52 -07003764 uint32_t clientStateFlags = 0;
chaviwca27f252018-02-06 16:46:39 -08003765 for (const ComposerState& state : states) {
Marissa Wall3dad52d2019-03-22 14:03:19 -07003766 clientStateFlags |= setClientStateLocked(state, desiredPresentTime, listenerCallbacks,
3767 postTime, privileged);
3768 }
3769
Marissa Walle2ffb422018-10-12 11:33:52 -07003770 // If the state doesn't require a traversal and there are callbacks, send them now
Marissa Wallb0022cc2019-04-16 14:19:55 -07003771 if (!(clientStateFlags & eTraversalNeeded) && !listenerCallbacks.empty()) {
Marissa Walle2ffb422018-10-12 11:33:52 -07003772 mTransactionCompletedThread.sendCallbacks();
3773 }
3774 transactionFlags |= clientStateFlags;
chaviwca27f252018-02-06 16:46:39 -08003775
chaviw273171b2018-12-26 11:46:30 -08003776 transactionFlags |= addInputWindowCommands(inputWindowCommands);
3777
Marissa Wall947d34e2019-03-29 14:03:53 -07003778 if (uncacheBuffer.isValid()) {
3779 ClientCache::getInstance().erase(uncacheBuffer);
Marissa Wall78b72202019-03-15 14:58:34 -07003780 }
3781
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003782 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3783 // anyway. This can be used as a flush mechanism for previous async transactions.
3784 // Empty animation transaction can be used to simulate back-pressure, so also force a
3785 // transaction for empty animation transactions.
3786 if (transactionFlags == 0 &&
3787 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003788 transactionFlags = eTransactionNeeded;
3789 }
3790
Marissa Wall06255332019-03-27 13:48:27 -07003791 // If we are on the main thread, we are about to preform a traversal. Clear the traversal bit
3792 // so we don't have to wake up again next frame to preform an uneeded traversal.
3793 if (isMainThread && (transactionFlags & eTraversalNeeded)) {
3794 transactionFlags = transactionFlags & (~eTraversalNeeded);
3795 mTraversalNeededMainThread = true;
3796 }
3797
Mathias Agopian386aa982011-11-07 21:58:03 -08003798 if (transactionFlags) {
Lloyd Pique4dccc412018-01-22 17:21:36 -08003799 if (mInterceptor->isEnabled()) {
3800 mInterceptor->saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003801 }
Irvel468051e2016-06-13 16:44:44 -07003802
Mathias Agopian386aa982011-11-07 21:58:03 -08003803 // this triggers the transaction
Ana Krulec7ecce8c2018-10-12 13:44:41 -07003804 const auto start = (flags & eEarlyWakeup) ? Scheduler::TransactionStart::EARLY
3805 : Scheduler::TransactionStart::NORMAL;
Dan Stoza84d619e2018-03-28 17:07:36 -07003806 setTransactionFlags(transactionFlags, start);
Mathias Agopian386aa982011-11-07 21:58:03 -08003807
3808 // if this is a synchronous transaction, wait for it to take effect
3809 // before returning.
3810 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003811 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003812 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003813 if (flags & eAnimation) {
3814 mAnimTransactionPending = true;
3815 }
chaviw4fe36852019-04-15 16:25:49 -07003816 if (mPendingInputWindowCommands.syncInputWindows) {
3817 mPendingSyncInputWindows = true;
3818 }
Valerie Hau0779ded2019-03-19 12:43:04 -07003819
3820 // applyTransactionState can be called by either the main SF thread or by
3821 // another process through setTransactionState. While a given process may wish
3822 // to wait on synchronous transactions, the main SF thread should never
3823 // be blocked. Therefore, we only wait if isMainThread is false.
3824 while (!isMainThread && (mTransactionPending || mPendingSyncInputWindows)) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003825 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3826 if (CC_UNLIKELY(err != NO_ERROR)) {
3827 // just in case something goes wrong in SF, return to the
3828 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003829 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3830 mTransactionPending = false;
chaviw95ef3c42019-02-14 10:55:09 -08003831 mPendingSyncInputWindows = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003832 break;
3833 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003834 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003835 }
3836}
3837
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003838uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) {
3839 const ssize_t index = mCurrentState.displays.indexOfKey(s.token);
3840 if (index < 0) return 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003841
Mathias Agopiane57f2922012-08-09 16:29:12 -07003842 uint32_t flags = 0;
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003843 DisplayDeviceState& state = mCurrentState.displays.editValueAt(index);
3844
3845 const uint32_t what = s.what;
3846 if (what & DisplayState::eSurfaceChanged) {
3847 if (IInterface::asBinder(state.surface) != IInterface::asBinder(s.surface)) {
3848 state.surface = s.surface;
3849 flags |= eDisplayTransactionNeeded;
Michael Lentine47e45402014-07-18 15:34:25 -07003850 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003851 }
Dominik Laskowskif07b85b2018-06-11 12:49:15 -07003852 if (what & DisplayState::eLayerStackChanged) {
3853 if (state.layerStack != s.layerStack) {
3854 state.layerStack = s.layerStack;
3855 flags |= eDisplayTransactionNeeded;
3856 }
3857 }
3858 if (what & DisplayState::eDisplayProjectionChanged) {
3859 if (state.orientation != s.orientation) {
3860 state.orientation = s.orientation;
3861 flags |= eDisplayTransactionNeeded;
3862 }
3863 if (state.frame != s.frame) {
3864 state.frame = s.frame;
3865 flags |= eDisplayTransactionNeeded;
3866 }
3867 if (state.viewport != s.viewport) {
3868 state.viewport = s.viewport;
3869 flags |= eDisplayTransactionNeeded;
3870 }
3871 }
3872 if (what & DisplayState::eDisplaySizeChanged) {
3873 if (state.width != s.width) {
3874 state.width = s.width;
3875 flags |= eDisplayTransactionNeeded;
3876 }
3877 if (state.height != s.height) {
3878 state.height = s.height;
3879 flags |= eDisplayTransactionNeeded;
3880 }
3881 }
3882
Mathias Agopiane57f2922012-08-09 16:29:12 -07003883 return flags;
3884}
3885
Robert Carr14167e02019-02-13 13:50:55 -08003886bool SurfaceFlinger::callingThreadHasUnscopedSurfaceFlingerAccess() {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003887 IPCThreadState* ipc = IPCThreadState::self();
3888 const int pid = ipc->getCallingPid();
3889 const int uid = ipc->getCallingUid();
Robert Carrd4ae7f32018-06-07 16:10:57 -07003890 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Ana Krulec13be8ad2018-08-21 02:43:56 +00003891 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003892 return false;
3893 }
3894 return true;
3895}
3896
Marissa Wall3dad52d2019-03-22 14:03:19 -07003897uint32_t SurfaceFlinger::setClientStateLocked(
3898 const ComposerState& composerState, int64_t desiredPresentTime,
3899 const std::vector<ListenerCallbacks>& listenerCallbacks, int64_t postTime,
3900 bool privileged) {
chaviwca27f252018-02-06 16:46:39 -08003901 const layer_state_t& s = composerState.state;
3902 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3903
Mathias Agopian13127d82013-03-05 17:47:11 -08003904 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003905 if (layer == nullptr) {
3906 return 0;
3907 }
3908
chaviw8b3871a2017-11-01 17:41:01 -07003909 uint32_t flags = 0;
3910
Garfield Tan8a3083e2018-12-03 13:21:07 -08003911 const uint64_t what = s.what;
chaviw8b3871a2017-11-01 17:41:01 -07003912 bool geometryAppliesWithResize =
3913 what & layer_state_t::eGeometryAppliesWithResize;
Jorim Jaggidba32732018-05-28 17:43:52 +02003914
3915 // If we are deferring transaction, make sure to push the pending state, as otherwise the
3916 // pending state will also be deferred.
Marissa Wallf58c14b2018-07-24 10:50:43 -07003917 if (what & layer_state_t::eDeferTransaction_legacy) {
Jorim Jaggidba32732018-05-28 17:43:52 +02003918 layer->pushPendingState();
3919 }
3920
chaviw8b3871a2017-11-01 17:41:01 -07003921 if (what & layer_state_t::ePositionChanged) {
3922 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3923 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003924 }
chaviw8b3871a2017-11-01 17:41:01 -07003925 }
3926 if (what & layer_state_t::eLayerChanged) {
3927 // NOTE: index needs to be calculated before we update the state
3928 const auto& p = layer->getParent();
3929 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003930 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003931 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003932 mCurrentState.layersSortedByZ.removeAt(idx);
3933 mCurrentState.layersSortedByZ.add(layer);
3934 // we need traversal (state changed)
3935 // AND transaction (list changed)
3936 flags |= eTransactionNeeded|eTraversalNeeded;
3937 }
chaviw8b3871a2017-11-01 17:41:01 -07003938 } else {
3939 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003940 flags |= eTransactionNeeded|eTraversalNeeded;
3941 }
3942 }
chaviw8b3871a2017-11-01 17:41:01 -07003943 }
3944 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003945 // NOTE: index needs to be calculated before we update the state
3946 const auto& p = layer->getParent();
3947 if (p == nullptr) {
3948 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3949 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3950 mCurrentState.layersSortedByZ.removeAt(idx);
3951 mCurrentState.layersSortedByZ.add(layer);
3952 // we need traversal (state changed)
3953 // AND transaction (list changed)
3954 flags |= eTransactionNeeded|eTraversalNeeded;
3955 }
3956 } else {
3957 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3958 flags |= eTransactionNeeded|eTraversalNeeded;
3959 }
chaviw8b3871a2017-11-01 17:41:01 -07003960 }
3961 }
3962 if (what & layer_state_t::eSizeChanged) {
3963 if (layer->setSize(s.w, s.h)) {
3964 flags |= eTraversalNeeded;
3965 }
3966 }
3967 if (what & layer_state_t::eAlphaChanged) {
3968 if (layer->setAlpha(s.alpha))
3969 flags |= eTraversalNeeded;
3970 }
3971 if (what & layer_state_t::eColorChanged) {
3972 if (layer->setColor(s.color))
3973 flags |= eTraversalNeeded;
3974 }
Peiyong Lind3788632018-09-18 16:01:31 -07003975 if (what & layer_state_t::eColorTransformChanged) {
3976 if (layer->setColorTransform(s.colorTransform)) {
3977 flags |= eTraversalNeeded;
3978 }
3979 }
Valerie Haudd0b7572019-01-29 14:59:27 -08003980 if (what & layer_state_t::eBackgroundColorChanged) {
3981 if (layer->setBackgroundColor(s.color, s.bgColorAlpha, s.bgColorDataspace)) {
3982 flags |= eTraversalNeeded;
3983 }
3984 }
chaviw8b3871a2017-11-01 17:41:01 -07003985 if (what & layer_state_t::eMatrixChanged) {
Robert Carrd4ae7f32018-06-07 16:10:57 -07003986 // TODO: b/109894387
3987 //
3988 // SurfaceFlinger's renderer is not prepared to handle cropping in the face of arbitrary
3989 // rotation. To see the problem observe that if we have a square parent, and a child
3990 // of the same size, then we rotate the child 45 degrees around it's center, the child
3991 // must now be cropped to a non rectangular 8 sided region.
3992 //
3993 // Of course we can fix this in the future. For now, we are lucky, SurfaceControl is
3994 // private API, and the WindowManager only uses rotation in one case, which is on a top
3995 // level layer in which cropping is not an issue.
3996 //
3997 // However given that abuse of rotation matrices could lead to surfaces extending outside
3998 // of cropped areas, we need to prevent non-root clients without permission ACCESS_SURFACE_FLINGER
3999 // (a.k.a. everyone except WindowManager and tests) from setting non rectangle preserving
4000 // transformations.
Robert Carr14167e02019-02-13 13:50:55 -08004001 if (layer->setMatrix(s.matrix, privileged))
chaviw8b3871a2017-11-01 17:41:01 -07004002 flags |= eTraversalNeeded;
4003 }
4004 if (what & layer_state_t::eTransparentRegionChanged) {
4005 if (layer->setTransparentRegionHint(s.transparentRegion))
4006 flags |= eTraversalNeeded;
4007 }
4008 if (what & layer_state_t::eFlagsChanged) {
4009 if (layer->setFlags(s.flags, s.mask))
4010 flags |= eTraversalNeeded;
4011 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07004012 if (what & layer_state_t::eCropChanged_legacy) {
4013 if (layer->setCrop_legacy(s.crop_legacy, !geometryAppliesWithResize))
chaviw8b3871a2017-11-01 17:41:01 -07004014 flags |= eTraversalNeeded;
4015 }
Lucas Dupin1b6531c2018-07-05 17:18:21 -07004016 if (what & layer_state_t::eCornerRadiusChanged) {
4017 if (layer->setCornerRadius(s.cornerRadius))
4018 flags |= eTraversalNeeded;
4019 }
chaviw8b3871a2017-11-01 17:41:01 -07004020 if (what & layer_state_t::eLayerStackChanged) {
4021 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
4022 // We only allow setting layer stacks for top level layers,
4023 // everything else inherits layer stack from its parent.
4024 if (layer->hasParent()) {
4025 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
4026 layer->getName().string());
4027 } else if (idx < 0) {
4028 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
4029 "that also does not appear in the top level layer list. Something"
4030 " has gone wrong.", layer->getName().string());
4031 } else if (layer->setLayerStack(s.layerStack)) {
4032 mCurrentState.layersSortedByZ.removeAt(idx);
4033 mCurrentState.layersSortedByZ.add(layer);
4034 // we need traversal (state changed)
4035 // AND transaction (list changed)
Lloyd Piqued432a7c2018-03-23 16:05:31 -07004036 flags |= eTransactionNeeded|eTraversalNeeded|eDisplayLayerStackChanged;
chaviw8b3871a2017-11-01 17:41:01 -07004037 }
4038 }
Marissa Wallf58c14b2018-07-24 10:50:43 -07004039 if (what & layer_state_t::eDeferTransaction_legacy) {
4040 if (s.barrierHandle_legacy != nullptr) {
4041 layer->deferTransactionUntil_legacy(s.barrierHandle_legacy, s.frameNumber_legacy);
4042 } else if (s.barrierGbp_legacy != nullptr) {
4043 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp_legacy;
chaviw8b3871a2017-11-01 17:41:01 -07004044 if (authenticateSurfaceTextureLocked(gbp)) {
4045 const auto& otherLayer =
4046 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
Marissa Wallf58c14b2018-07-24 10:50:43 -07004047 layer->deferTransactionUntil_legacy(otherLayer, s.frameNumber_legacy);
chaviw8b3871a2017-11-01 17:41:01 -07004048 } else {
4049 ALOGE("Attempt to defer transaction to to an"
4050 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08004051 }
4052 }
chaviw8b3871a2017-11-01 17:41:01 -07004053 // We don't trigger a traversal here because if no other state is
4054 // changed, we don't want this to cause any more work
4055 }
4056 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08004057 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07004058 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08004059 if (!hadParent) {
4060 mCurrentState.layersSortedByZ.remove(layer);
4061 }
chaviw8b3871a2017-11-01 17:41:01 -07004062 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08004063 }
chaviw8b3871a2017-11-01 17:41:01 -07004064 }
4065 if (what & layer_state_t::eReparentChildren) {
4066 if (layer->reparentChildren(s.reparentHandle)) {
4067 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07004068 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07004069 }
chaviw8b3871a2017-11-01 17:41:01 -07004070 if (what & layer_state_t::eDetachChildren) {
4071 layer->detachChildren();
4072 }
4073 if (what & layer_state_t::eOverrideScalingModeChanged) {
4074 layer->setOverrideScalingMode(s.overrideScalingMode);
4075 // We don't trigger a traversal here because if no other state is
4076 // changed, we don't want this to cause any more work
4077 }
Marissa Wall61c58622018-07-18 10:12:20 -07004078 if (what & layer_state_t::eTransformChanged) {
4079 if (layer->setTransform(s.transform)) flags |= eTraversalNeeded;
4080 }
4081 if (what & layer_state_t::eTransformToDisplayInverseChanged) {
4082 if (layer->setTransformToDisplayInverse(s.transformToDisplayInverse))
4083 flags |= eTraversalNeeded;
4084 }
4085 if (what & layer_state_t::eCropChanged) {
4086 if (layer->setCrop(s.crop)) flags |= eTraversalNeeded;
4087 }
Marissa Wall861616d2018-10-22 12:52:23 -07004088 if (what & layer_state_t::eFrameChanged) {
4089 if (layer->setFrame(s.frame)) flags |= eTraversalNeeded;
4090 }
Marissa Wall61c58622018-07-18 10:12:20 -07004091 if (what & layer_state_t::eAcquireFenceChanged) {
4092 if (layer->setAcquireFence(s.acquireFence)) flags |= eTraversalNeeded;
4093 }
4094 if (what & layer_state_t::eDataspaceChanged) {
4095 if (layer->setDataspace(s.dataspace)) flags |= eTraversalNeeded;
4096 }
4097 if (what & layer_state_t::eHdrMetadataChanged) {
4098 if (layer->setHdrMetadata(s.hdrMetadata)) flags |= eTraversalNeeded;
4099 }
4100 if (what & layer_state_t::eSurfaceDamageRegionChanged) {
4101 if (layer->setSurfaceDamageRegion(s.surfaceDamageRegion)) flags |= eTraversalNeeded;
4102 }
4103 if (what & layer_state_t::eApiChanged) {
4104 if (layer->setApi(s.api)) flags |= eTraversalNeeded;
4105 }
4106 if (what & layer_state_t::eSidebandStreamChanged) {
4107 if (layer->setSidebandStream(s.sidebandStream)) flags |= eTraversalNeeded;
4108 }
Robert Carr720e5062018-07-30 17:45:14 -07004109 if (what & layer_state_t::eInputInfoChanged) {
Vishnu Nairce5d0cc2019-02-28 14:38:41 -08004110 if (privileged) {
Robert Carr11ac2012019-01-22 09:05:25 -08004111 layer->setInputInfo(s.inputInfo);
4112 flags |= eTraversalNeeded;
4113 } else {
4114 ALOGE("Attempt to update InputWindowInfo without permission ACCESS_SURFACE_FLINGER");
4115 }
Robert Carr720e5062018-07-30 17:45:14 -07004116 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08004117 if (what & layer_state_t::eMetadataChanged) {
4118 if (layer->setMetadata(s.metadata)) flags |= eTraversalNeeded;
4119 }
Peiyong Linc502cb72019-03-01 15:00:23 -08004120 if (what & layer_state_t::eColorSpaceAgnosticChanged) {
4121 if (layer->setColorSpaceAgnostic(s.colorSpaceAgnostic)) {
4122 flags |= eTraversalNeeded;
4123 }
4124 }
Marissa Walle2ffb422018-10-12 11:33:52 -07004125 std::vector<sp<CallbackHandle>> callbackHandles;
Marissa Wall3dad52d2019-03-22 14:03:19 -07004126 if ((what & layer_state_t::eHasListenerCallbacksChanged) && (!listenerCallbacks.empty())) {
Marissa Wall3dad52d2019-03-22 14:03:19 -07004127 for (const auto& [listener, callbackIds] : listenerCallbacks) {
Marissa Walle2ffb422018-10-12 11:33:52 -07004128 callbackHandles.emplace_back(new CallbackHandle(listener, callbackIds, s.surface));
4129 }
4130 }
Marissa Wall78b72202019-03-15 14:58:34 -07004131 bool bufferChanged = what & layer_state_t::eBufferChanged;
4132 bool cacheIdChanged = what & layer_state_t::eCachedBufferChanged;
4133 sp<GraphicBuffer> buffer;
4134 if (bufferChanged && cacheIdChanged) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004135 ClientCache::getInstance().add(s.cachedBuffer, s.buffer);
Marissa Wall78b72202019-03-15 14:58:34 -07004136 buffer = s.buffer;
4137 } else if (cacheIdChanged) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004138 buffer = ClientCache::getInstance().get(s.cachedBuffer);
Marissa Wall78b72202019-03-15 14:58:34 -07004139 } else if (bufferChanged) {
4140 buffer = s.buffer;
Marissa Wall73411622019-01-25 10:45:41 -08004141 }
Marissa Wall78b72202019-03-15 14:58:34 -07004142 if (buffer) {
Marissa Wall947d34e2019-03-29 14:03:53 -07004143 if (layer->setBuffer(buffer, postTime, desiredPresentTime, s.cachedBuffer)) {
Valerie Haubc6ddb12019-03-08 11:10:15 -08004144 flags |= eTraversalNeeded;
Valerie Haubc6ddb12019-03-08 11:10:15 -08004145 }
Marissa Wallebc2c052019-01-16 19:16:55 -08004146 }
Marissa Walle2ffb422018-10-12 11:33:52 -07004147 if (layer->setTransactionCompletedListeners(callbackHandles)) flags |= eTraversalNeeded;
4148 // Do not put anything that updates layer state or modifies flags after
4149 // setTransactionCompletedListener
Mathias Agopiane57f2922012-08-09 16:29:12 -07004150 return flags;
4151}
4152
chaviw273171b2018-12-26 11:46:30 -08004153uint32_t SurfaceFlinger::addInputWindowCommands(const InputWindowCommands& inputWindowCommands) {
4154 uint32_t flags = 0;
4155 if (!inputWindowCommands.transferTouchFocusCommands.empty()) {
4156 flags |= eTraversalNeeded;
4157 }
4158
chaviwa911b102019-02-14 10:18:33 -08004159 if (inputWindowCommands.syncInputWindows) {
4160 flags |= eTraversalNeeded;
4161 }
4162
Vishnu Nairec0ab382019-02-13 15:32:56 -08004163 mPendingInputWindowCommands.merge(inputWindowCommands);
chaviw273171b2018-12-26 11:46:30 -08004164 return flags;
4165}
4166
Marissa Wall2d814fb2019-04-09 18:52:57 +00004167status_t SurfaceFlinger::createLayer(const String8& name, const sp<Client>& client, uint32_t w,
4168 uint32_t h, PixelFormat format, uint32_t flags,
4169 LayerMetadata metadata, sp<IBinder>* handle,
Robert Carrc0df3122019-04-11 13:18:21 -07004170 sp<IGraphicBufferProducer>* gbp,
4171 const sp<IBinder>& parentHandle,
4172 const sp<Layer>& parentLayer) {
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004173 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004174 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004175 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004176 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07004177 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07004178
Robert Carrc0df3122019-04-11 13:18:21 -07004179 ALOG_ASSERT(parentLayer == nullptr || parentHandle == nullptr,
4180 "Expected only one of parentLayer or parentHandle to be non-null. "
4181 "Programmer error?");
4182
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004183 status_t result = NO_ERROR;
4184
4185 sp<Layer> layer;
4186
Cody Northropbc755282017-03-31 12:00:08 -06004187 String8 uniqueName = getUniqueLayerName(name);
4188
Evan Roskya1f1e152019-01-24 16:17:46 -08004189 bool primaryDisplayOnly = false;
4190
4191 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
4192 // TODO b/64227542
4193 if (metadata.has(METADATA_WINDOW_TYPE)) {
4194 int32_t windowType = metadata.getInt32(METADATA_WINDOW_TYPE, 0);
4195 if (windowType == 441731) {
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07004196 metadata.setInt32(METADATA_WINDOW_TYPE, InputWindowInfo::TYPE_NAVIGATION_BAR_PANEL);
Evan Roskya1f1e152019-01-24 16:17:46 -08004197 primaryDisplayOnly = true;
4198 }
4199 }
4200
Mathias Agopian3165cc22012-08-08 19:42:09 -07004201 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
Marissa Wall61c58622018-07-18 10:12:20 -07004202 case ISurfaceComposerClient::eFXSurfaceBufferQueue:
Evan Roskya1f1e152019-01-24 16:17:46 -08004203 result = createBufferQueueLayer(client, uniqueName, w, h, flags, std::move(metadata),
4204 format, handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07004205
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004206 break;
Marissa Wall61c58622018-07-18 10:12:20 -07004207 case ISurfaceComposerClient::eFXSurfaceBufferState:
Evan Roskya1f1e152019-01-24 16:17:46 -08004208 result = createBufferStateLayer(client, uniqueName, w, h, flags, std::move(metadata),
4209 handle, &layer);
Marissa Wall61c58622018-07-18 10:12:20 -07004210 break;
chaviw13fdc492017-06-27 12:40:18 -07004211 case ISurfaceComposerClient::eFXSurfaceColor:
Vishnu Nair88a11f22018-11-28 18:30:57 -08004212 // check if buffer size is set for color layer.
4213 if (w > 0 || h > 0) {
4214 ALOGE("createLayer() failed, w or h cannot be set for color layer (w=%d, h=%d)",
4215 int(w), int(h));
4216 return BAD_VALUE;
4217 }
4218
Evan Roskya1f1e152019-01-24 16:17:46 -08004219 result = createColorLayer(client, uniqueName, w, h, flags, std::move(metadata), handle,
4220 &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004221 break;
Robert Carr6b3f6c52018-08-13 13:05:17 -07004222 case ISurfaceComposerClient::eFXSurfaceContainer:
Vishnu Nair88a11f22018-11-28 18:30:57 -08004223 // check if buffer size is set for container layer.
4224 if (w > 0 || h > 0) {
4225 ALOGE("createLayer() failed, w or h cannot be set for container layer (w=%d, h=%d)",
4226 int(w), int(h));
4227 return BAD_VALUE;
4228 }
Evan Roskya1f1e152019-01-24 16:17:46 -08004229 result = createContainerLayer(client, uniqueName, w, h, flags, std::move(metadata),
4230 handle, &layer);
Robert Carr6b3f6c52018-08-13 13:05:17 -07004231 break;
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004232 default:
4233 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004234 break;
4235 }
4236
Dan Stoza7d89d062015-04-30 13:29:25 -07004237 if (result != NO_ERROR) {
4238 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004239 }
Dan Stoza7d89d062015-04-30 13:29:25 -07004240
Evan Roskya1f1e152019-01-24 16:17:46 -08004241 if (primaryDisplayOnly) {
4242 layer->setPrimaryDisplayOnly();
Chia-I Wuab0c3192017-08-01 11:29:00 -07004243 }
4244
Robert Carrb89ea9d2018-12-10 13:01:14 -08004245 bool addToCurrentState = callingThreadHasUnscopedSurfaceFlingerAccess();
Robert Carrc0df3122019-04-11 13:18:21 -07004246 result = addClientLayer(client, *handle, *gbp, layer, parentHandle, parentLayer,
4247 addToCurrentState);
Dan Stoza7d89d062015-04-30 13:29:25 -07004248 if (result != NO_ERROR) {
4249 return result;
4250 }
Lloyd Pique4dccc412018-01-22 17:21:36 -08004251 mInterceptor->saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07004252
4253 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004254 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004255}
4256
Cody Northropbc755282017-03-31 12:00:08 -06004257String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
4258{
4259 bool matchFound = true;
4260 uint32_t dupeCounter = 0;
4261
4262 // Tack on our counter whether there is a hit or not, so everyone gets a tag
4263 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
4264
Dan Stoza436ccf32018-06-21 12:10:12 -07004265 // Grab the state lock since we're accessing mCurrentState
4266 Mutex::Autolock lock(mStateLock);
4267
Cody Northropbc755282017-03-31 12:00:08 -06004268 // Loop over layers until we're sure there is no matching name
4269 while (matchFound) {
4270 matchFound = false;
Dan Stoza436ccf32018-06-21 12:10:12 -07004271 mCurrentState.traverseInZOrder([&](Layer* layer) {
Cody Northropbc755282017-03-31 12:00:08 -06004272 if (layer->getName() == uniqueName) {
4273 matchFound = true;
4274 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
4275 }
4276 });
4277 }
4278
Marissa Wallf1de4bd2018-05-22 13:05:01 -07004279 ALOGV_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(),
4280 uniqueName.c_str());
Cody Northropbc755282017-03-31 12:00:08 -06004281
4282 return uniqueName;
4283}
4284
Marissa Wallfd668622018-05-10 10:21:13 -07004285status_t SurfaceFlinger::createBufferQueueLayer(const sp<Client>& client, const String8& name,
4286 uint32_t w, uint32_t h, uint32_t flags,
Evan Roskya1f1e152019-01-24 16:17:46 -08004287 LayerMetadata metadata, PixelFormat& format,
4288 sp<IBinder>* handle,
Marissa Wallfd668622018-05-10 10:21:13 -07004289 sp<IGraphicBufferProducer>* gbp,
4290 sp<Layer>* outLayer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004291 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07004292 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004293 case PIXEL_FORMAT_TRANSPARENT:
4294 case PIXEL_FORMAT_TRANSLUCENT:
4295 format = PIXEL_FORMAT_RGBA_8888;
4296 break;
4297 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07004298 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004299 break;
4300 }
4301
Evan Roskya1f1e152019-01-24 16:17:46 -08004302 sp<BufferQueueLayer> layer = getFactory().createBufferQueueLayer(
4303 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Marissa Wallfd668622018-05-10 10:21:13 -07004304 status_t err = layer->setDefaultBufferProperties(w, h, format);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004305 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07004306 *handle = layer->getHandle();
4307 *gbp = layer->getProducer();
4308 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004309 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004310
Marissa Wallfd668622018-05-10 10:21:13 -07004311 ALOGE_IF(err, "createBufferQueueLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004312 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004313}
4314
Marissa Wall61c58622018-07-18 10:12:20 -07004315status_t SurfaceFlinger::createBufferStateLayer(const sp<Client>& client, const String8& name,
4316 uint32_t w, uint32_t h, uint32_t flags,
Evan Roskya1f1e152019-01-24 16:17:46 -08004317 LayerMetadata metadata, sp<IBinder>* handle,
4318 sp<Layer>* outLayer) {
4319 sp<BufferStateLayer> layer = getFactory().createBufferStateLayer(
4320 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Marissa Wall61c58622018-07-18 10:12:20 -07004321 *handle = layer->getHandle();
4322 *outLayer = layer;
4323
4324 return NO_ERROR;
4325}
4326
Evan Roskya1f1e152019-01-24 16:17:46 -08004327status_t SurfaceFlinger::createColorLayer(const sp<Client>& client, const String8& name, uint32_t w,
4328 uint32_t h, uint32_t flags, LayerMetadata metadata,
4329 sp<IBinder>* handle, sp<Layer>* outLayer) {
4330 *outLayer = getFactory().createColorLayer(
4331 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004332 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07004333 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07004334}
4335
Evan Roskya1f1e152019-01-24 16:17:46 -08004336status_t SurfaceFlinger::createContainerLayer(const sp<Client>& client, const String8& name,
4337 uint32_t w, uint32_t h, uint32_t flags,
4338 LayerMetadata metadata, sp<IBinder>* handle,
4339 sp<Layer>* outLayer) {
4340 *outLayer = getFactory().createContainerLayer(
4341 LayerCreationArgs(this, client, name, w, h, flags, std::move(metadata)));
Robert Carr6b3f6c52018-08-13 13:05:17 -07004342 *handle = (*outLayer)->getHandle();
4343 return NO_ERROR;
4344}
4345
4346
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004347void SurfaceFlinger::markLayerPendingRemovalLocked(const sp<Layer>& layer) {
Robert Carr2e102c92018-10-23 12:11:15 -07004348 mLayersPendingRemoval.add(layer);
4349 mLayersRemoved = true;
4350 setTransactionFlags(eTransactionNeeded);
4351}
4352
Robert Carr695d5282018-12-18 15:27:58 -08004353void SurfaceFlinger::onHandleDestroyed(sp<Layer>& layer)
Rob Carr4bba3702018-10-08 21:53:30 +00004354{
Robert Carr2e102c92018-10-23 12:11:15 -07004355 Mutex::Autolock lock(mStateLock);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08004356 // If a layer has a parent, we allow it to out-live it's handle
4357 // with the idea that the parent holds a reference and will eventually
4358 // be cleaned up. However no one cleans up the top-level so we do so
4359 // here.
4360 if (layer->getParent() == nullptr) {
4361 mCurrentState.layersSortedByZ.remove(layer);
4362 }
4363 markLayerPendingRemovalLocked(layer);
Robert Carrc0df3122019-04-11 13:18:21 -07004364
4365 auto it = mLayersByLocalBinderToken.begin();
4366 while (it != mLayersByLocalBinderToken.end()) {
4367 if (it->second == layer) {
4368 it = mLayersByLocalBinderToken.erase(it);
4369 } else {
4370 it++;
4371 }
4372 }
4373
Robert Carr695d5282018-12-18 15:27:58 -08004374 layer.clear();
Rob Carr4bba3702018-10-08 21:53:30 +00004375}
4376
Mathias Agopianb60314a2012-04-10 22:09:54 -07004377// ---------------------------------------------------------------------------
4378
Andy McFadden13a082e2012-08-24 10:16:42 -07004379void SurfaceFlinger::onInitializeDisplays() {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004380 const auto display = getDefaultDisplayDeviceLocked();
4381 if (!display) return;
4382
4383 const sp<IBinder> token = display->getDisplayToken().promote();
4384 LOG_ALWAYS_FATAL_IF(token == nullptr);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004385
Jesse Hall01e29052013-02-19 16:13:35 -08004386 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07004387 Vector<ComposerState> state;
4388 Vector<DisplayState> displays;
4389 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08004390 d.what = DisplayState::eDisplayProjectionChanged |
4391 DisplayState::eLayerStackChanged;
Dominik Laskowski83b88212018-12-11 13:34:06 -08004392 d.token = token;
Jesse Hall01e29052013-02-19 16:13:35 -08004393 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004394 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07004395 d.frame.makeInvalid();
4396 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07004397 d.width = 0;
4398 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07004399 displays.add(d);
Marissa Wall3dad52d2019-03-22 14:03:19 -07004400 setTransactionState(state, displays, 0, nullptr, mPendingInputWindowCommands, -1, {}, {});
Jamie Gennis6547ff42013-07-16 20:12:42 -07004401
Dominik Laskowskie9774092018-12-11 10:04:24 -08004402 setPowerModeInternal(display, HWC_POWER_MODE_NORMAL);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004403
Dominik Laskowski83b88212018-12-11 13:34:06 -08004404 const nsecs_t vsyncPeriod = getVsyncPeriod();
4405 mAnimFrameTracker.setDisplayRefreshPeriod(vsyncPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08004406
Brian Andersond0010582017-03-07 13:20:31 -08004407 // Use phase of 0 since phase is not known.
4408 // Use latency of 0, which will snap to the ideal latency.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004409 DisplayStatInfo stats{0 /* vsyncTime */, vsyncPeriod};
Ana Krulece588e312018-09-18 12:32:24 -07004410 setCompositorTimingSnapped(stats, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07004411}
4412
4413void SurfaceFlinger::initializeDisplays() {
Dominik Laskowski8c001672018-05-30 16:52:06 -07004414 // Async since we may be called from the main thread.
Dominik Laskowski83b88212018-12-11 13:34:06 -08004415 postMessageAsync(
4416 new LambdaMessage([this]() NO_THREAD_SAFETY_ANALYSIS { onInitializeDisplays(); }));
Andy McFadden13a082e2012-08-24 10:16:42 -07004417}
4418
Dominik Laskowskie9774092018-12-11 10:04:24 -08004419void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& display, int mode) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004420 if (display->isVirtual()) {
4421 ALOGE("%s: Invalid operation on virtual display", __FUNCTION__);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004422 return;
4423 }
4424
Dominik Laskowski075d3172018-05-24 15:50:06 -07004425 const auto displayId = display->getId();
4426 LOG_ALWAYS_FATAL_IF(!displayId);
4427
Dominik Laskowski34157762018-10-31 13:07:19 -07004428 ALOGD("Setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004429
4430 int currentMode = display->getPowerMode();
4431 if (mode == currentMode) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004432 return;
4433 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004434
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004435 display->setPowerMode(mode);
4436
Lloyd Pique4dccc412018-01-22 17:21:36 -08004437 if (mInterceptor->isEnabled()) {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004438 mInterceptor->savePowerModeUpdate(display->getSequenceId(), mode);
Irvelffc9efc2016-07-27 15:16:37 -07004439 }
4440
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004441 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004442 // Turn on the display
Dominik Laskowski075d3172018-05-24 15:50:06 -07004443 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004444 if (display->isPrimary() && mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004445 mScheduler->onScreenAcquired(mAppConnectionHandle);
4446 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004447 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004448
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004449 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08004450 mHasPoweredOff = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07004451 repaintEverything();
Tim Murrayf9d4e442016-08-02 15:43:59 -07004452
4453 struct sched_param param = {0};
4454 param.sched_priority = 1;
4455 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
4456 ALOGW("Couldn't set SCHED_FIFO on display on");
4457 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004458 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07004459 // Turn off the display
4460 struct sched_param param = {0};
4461 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
4462 ALOGW("Couldn't set SCHED_OTHER on display off");
4463 }
4464
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004465 if (display->isPrimary() && currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004466 mScheduler->disableHardwareVsync(true);
4467 mScheduler->onScreenReleased(mAppConnectionHandle);
Mathias Agopiancde87a32012-09-13 14:09:01 -07004468 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004469
Dominik Laskowski075d3172018-05-24 15:50:06 -07004470 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004471 mVisibleRegionsDirty = true;
4472 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07004473 } else if (mode == HWC_POWER_MODE_DOZE ||
4474 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004475 // Update display while dozing
Dominik Laskowski075d3172018-05-24 15:50:06 -07004476 getHwComposer().setPowerMode(*displayId, mode);
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004477 if (display->isPrimary() && currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Ana Krulecc2870422019-01-29 19:00:58 -08004478 mScheduler->onScreenAcquired(mAppConnectionHandle);
4479 mScheduler->resyncToHardwareVsync(true, getVsyncPeriod());
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004480 }
4481 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
4482 // Leave display going to doze
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004483 if (display->isPrimary()) {
Ana Krulecc2870422019-01-29 19:00:58 -08004484 mScheduler->disableHardwareVsync(true);
4485 mScheduler->onScreenReleased(mAppConnectionHandle);
Zheng Zhang8a43fe62017-03-17 11:19:39 +01004486 }
Dominik Laskowski075d3172018-05-24 15:50:06 -07004487 getHwComposer().setPowerMode(*displayId, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004488 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07004489 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Dominik Laskowski075d3172018-05-24 15:50:06 -07004490 getHwComposer().setPowerMode(*displayId, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004491 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004492
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004493 if (display->isPrimary()) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08004494 mTimeStats->setPowerMode(mode);
Dominik Laskowski22488f62019-03-28 09:53:04 -07004495 mRefreshRateStats.setPowerMode(mode);
Yiwei Zhang3a226d22018-10-16 09:23:03 -07004496 }
4497
Dominik Laskowski34157762018-10-31 13:07:19 -07004498 ALOGD("Finished setting power mode %d on display %s", mode, to_string(*displayId).c_str());
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004499}
4500
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004501void SurfaceFlinger::setPowerMode(const sp<IBinder>& displayToken, int mode) {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004502 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004503 const auto display = getDisplayDevice(displayToken);
4504 if (!display) {
4505 ALOGE("Attempt to set power mode %d for invalid display token %p", mode,
4506 displayToken.get());
4507 } else if (display->isVirtual()) {
4508 ALOGW("Attempt to set power mode %d for virtual display", mode);
4509 } else {
Dominik Laskowskie9774092018-12-11 10:04:24 -08004510 setPowerModeInternal(display, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07004511 }
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004512 }));
Mathias Agopianb60314a2012-04-10 22:09:54 -07004513}
4514
4515// ---------------------------------------------------------------------------
4516
Dominik Laskowskic2867142019-01-21 11:33:38 -08004517status_t SurfaceFlinger::doDump(int fd, const DumpArgs& args,
4518 bool asProto) NO_THREAD_SAFETY_ANALYSIS {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004519 std::string result;
Mathias Agopian99b49842011-06-27 16:05:52 -07004520
Mathias Agopianbd115332013-04-18 16:41:04 -07004521 IPCThreadState* ipc = IPCThreadState::self();
4522 const int pid = ipc->getCallingPid();
4523 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07004524
Mathias Agopianbd115332013-04-18 16:41:04 -07004525 if ((uid != AID_SHELL) &&
4526 !PermissionCache::checkPermission(sDump, pid, uid)) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004527 StringAppendF(&result, "Permission Denial: can't dump SurfaceFlinger from pid=%d, uid=%d\n",
4528 pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004529 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08004530 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07004531 // (this would indicate SF is stuck, but we want to be able to
4532 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08004533 status_t err = mStateLock.timedLock(s2ns(1));
4534 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07004535 if (!locked) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004536 StringAppendF(&result,
4537 "SurfaceFlinger appears to be unresponsive (%s [%d]), dumping anyways "
4538 "(no locks held)\n",
4539 strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07004540 }
4541
Dominik Laskowskic2867142019-01-21 11:33:38 -08004542 using namespace std::string_literals;
chaviwa3d7bd32017-11-03 09:41:53 -07004543
Dominik Laskowskic2867142019-01-21 11:33:38 -08004544 static const std::unordered_map<std::string, Dumper> dumpers = {
4545 {"--clear-layer-stats"s, dumper([this](std::string&) { mLayerStats.clear(); })},
4546 {"--disable-layer-stats"s, dumper([this](std::string&) { mLayerStats.disable(); })},
4547 {"--display-id"s, dumper(&SurfaceFlinger::dumpDisplayIdentificationData)},
Ady Abraham3aff9172019-02-07 19:10:26 -08004548 {"--dispsync"s, dumper([this](std::string& s) {
Ady Abraham3aff9172019-02-07 19:10:26 -08004549 mScheduler->dumpPrimaryDispSync(s);
Ady Abraham3aff9172019-02-07 19:10:26 -08004550 })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004551 {"--dump-layer-stats"s, dumper([this](std::string& s) { mLayerStats.dump(s); })},
4552 {"--enable-layer-stats"s, dumper([this](std::string&) { mLayerStats.enable(); })},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004553 {"--frame-events"s, dumper(&SurfaceFlinger::dumpFrameEventsLocked)},
4554 {"--latency"s, argsDumper(&SurfaceFlinger::dumpStatsLocked)},
4555 {"--latency-clear"s, argsDumper(&SurfaceFlinger::clearStatsLocked)},
4556 {"--list"s, dumper(&SurfaceFlinger::listLayersLocked)},
4557 {"--static-screen"s, dumper(&SurfaceFlinger::dumpStaticScreenStats)},
4558 {"--timestats"s, protoDumper(&SurfaceFlinger::dumpTimeStats)},
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004559 {"--vsync"s, dumper(&SurfaceFlinger::dumpVSync)},
Dominik Laskowskic2867142019-01-21 11:33:38 -08004560 {"--wide-color"s, dumper(&SurfaceFlinger::dumpWideColorInfo)},
4561 };
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004562
Dominik Laskowskic2867142019-01-21 11:33:38 -08004563 const auto flag = args.empty() ? ""s : std::string(String8(args[0]));
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004564
Dominik Laskowskic2867142019-01-21 11:33:38 -08004565 if (const auto it = dumpers.find(flag); it != dumpers.end()) {
4566 (it->second)(args, asProto, result);
4567 } else {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004568 if (asProto) {
4569 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4570 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
4571 } else {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004572 dumpAllLocked(args, result);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07004573 }
Mathias Agopian48b888a2011-01-19 16:15:53 -08004574 }
4575
Mathias Agopian9795c422009-08-26 16:36:26 -07004576 if (locked) {
4577 mStateLock.unlock();
4578 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004579 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004580 write(fd, result.c_str(), result.size());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004581 return NO_ERROR;
4582}
4583
Nataniel Borges8e7dc722019-02-28 15:10:28 -08004584status_t SurfaceFlinger::dumpCritical(int fd, const DumpArgs&, bool asProto) {
4585 if (asProto && mTracing.isEnabled()) {
4586 mTracing.writeToFileAsync();
4587 }
4588
4589 return doDump(fd, DumpArgs(), asProto);
4590}
4591
Dominik Laskowskic2867142019-01-21 11:33:38 -08004592void SurfaceFlinger::listLayersLocked(std::string& result) const {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004593 mCurrentState.traverseInZOrder(
4594 [&](Layer* layer) { StringAppendF(&result, "%s\n", layer->getName().string()); });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004595}
4596
Dominik Laskowskic2867142019-01-21 11:33:38 -08004597void SurfaceFlinger::dumpStatsLocked(const DumpArgs& args, std::string& result) const {
Dominik Laskowski83b88212018-12-11 13:34:06 -08004598 StringAppendF(&result, "%" PRId64 "\n", getVsyncPeriod());
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004599
Dominik Laskowskic2867142019-01-21 11:33:38 -08004600 if (args.size() > 1) {
4601 const auto name = String8(args[1]);
Robert Carr2047fae2016-11-28 14:09:09 -08004602 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004603 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004604 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004605 }
Robert Carr2047fae2016-11-28 14:09:09 -08004606 });
Dominik Laskowskic2867142019-01-21 11:33:38 -08004607 } else {
4608 mAnimFrameTracker.dumpStats(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004609 }
4610}
4611
Dominik Laskowskic2867142019-01-21 11:33:38 -08004612void SurfaceFlinger::clearStatsLocked(const DumpArgs& args, std::string&) {
Robert Carr2047fae2016-11-28 14:09:09 -08004613 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dominik Laskowskic2867142019-01-21 11:33:38 -08004614 if (args.size() < 2 || String8(args[1]) == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07004615 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004616 }
Robert Carr2047fae2016-11-28 14:09:09 -08004617 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08004618
Svetoslavd85084b2014-03-20 10:28:31 -07004619 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08004620}
4621
Dominik Laskowskic2867142019-01-21 11:33:38 -08004622void SurfaceFlinger::dumpTimeStats(const DumpArgs& args, bool asProto, std::string& result) const {
4623 mTimeStats->parseArgs(asProto, args, result);
4624}
4625
Jamie Gennis6547ff42013-07-16 20:12:42 -07004626// This should only be called from the main thread. Otherwise it would need
4627// the lock and should use mCurrentState rather than mDrawingState.
4628void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08004629 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07004630 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08004631 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07004632
4633 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
4634}
4635
Yiwei Zhang5434a782018-12-05 18:06:32 -08004636void SurfaceFlinger::appendSfConfigString(std::string& result) const {
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004637 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07004638
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004639 if (isLayerTripleBufferingDisabled())
4640 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07004641
Yiwei Zhang5434a782018-12-05 18:06:32 -08004642 StringAppendF(&result, " PRESENT_TIME_OFFSET=%" PRId64, dispSyncPresentTimeOffset);
4643 StringAppendF(&result, " FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
4644 StringAppendF(&result, " MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
4645 StringAppendF(&result, " RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
4646 StringAppendF(&result, " NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
4647 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08004648 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07004649}
4650
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004651void SurfaceFlinger::dumpVSync(std::string& result) const {
Ana Krulec757f63a2019-01-25 10:46:18 -08004652 mPhaseOffsets->dump(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004653 StringAppendF(&result,
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004654 " present offset: %9" PRId64 " ns\t VSYNC period: %9" PRId64 " ns\n\n",
Ana Krulec757f63a2019-01-25 10:46:18 -08004655 dispSyncPresentTimeOffset, getVsyncPeriod());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004656
Ady Abraham97d04232019-03-05 19:48:12 -08004657 StringAppendF(&result, "Scheduler enabled.");
Ana Krulecba13ab32019-02-20 14:14:12 -08004658 StringAppendF(&result, "+ Smart 90 for video detection: %s\n\n",
4659 mUseSmart90ForVideo ? "on" : "off");
Ana Krulecc2870422019-01-29 19:00:58 -08004660 mScheduler->dump(mAppConnectionHandle, result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004661}
4662
Yiwei Zhang5434a782018-12-05 18:06:32 -08004663void SurfaceFlinger::dumpStaticScreenStats(std::string& result) const {
4664 result.append("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08004665 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
4666 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004667 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004668 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004669 StringAppendF(&result, " < %zd frames: %.3f s (%.1f%%)\n", b + 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004670 }
David Sodman4a36e932017-11-07 14:29:47 -08004671 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08004672 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08004673 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004674 StringAppendF(&result, " %zd+ frames: %.3f s (%.1f%%)\n", SurfaceFlingerBE::NUM_BUCKETS - 1,
4675 bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08004676}
4677
Dan Stozae77c7662016-05-13 11:37:28 -07004678void SurfaceFlinger::recordBufferingStats(const char* layerName,
4679 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08004680 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
4681 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07004682 for (const auto& segment : history) {
4683 if (!segment.usedThirdBuffer) {
4684 stats.twoBufferTime += segment.totalTime;
4685 }
4686 if (segment.occupancyAverage < 1.0f) {
4687 stats.doubleBufferedTime += segment.totalTime;
4688 } else if (segment.occupancyAverage < 2.0f) {
4689 stats.tripleBufferedTime += segment.totalTime;
4690 }
4691 ++stats.numSegments;
4692 stats.totalTime += segment.totalTime;
4693 }
4694}
4695
Yiwei Zhang5434a782018-12-05 18:06:32 -08004696void SurfaceFlinger::dumpFrameEventsLocked(std::string& result) {
4697 result.append("Layer frame timestamps:\n");
Brian Andersond6927fb2016-07-23 23:37:30 -07004698
4699 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
4700 const size_t count = currentLayers.size();
4701 for (size_t i=0 ; i<count ; i++) {
4702 currentLayers[i]->dumpFrameEvents(result);
4703 }
4704}
4705
Yiwei Zhang5434a782018-12-05 18:06:32 -08004706void SurfaceFlinger::dumpBufferingStats(std::string& result) const {
Dan Stozae77c7662016-05-13 11:37:28 -07004707 result.append("Buffering stats:\n");
4708 result.append(" [Layer name] <Active time> <Two buffer> "
4709 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08004710 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07004711 typedef std::tuple<std::string, float, float, float> BufferTuple;
4712 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08004713 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07004714 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08004715 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07004716 if (stats.numSegments == 0) {
4717 continue;
4718 }
4719 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
4720 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
4721 stats.totalTime;
4722 float doubleBufferRatio = static_cast<float>(
4723 stats.doubleBufferedTime) / stats.totalTime;
4724 float tripleBufferRatio = static_cast<float>(
4725 stats.tripleBufferedTime) / stats.totalTime;
4726 sorted.insert({activeTime, {name, twoBufferRatio,
4727 doubleBufferRatio, tripleBufferRatio}});
4728 }
4729 for (const auto& sortedPair : sorted) {
4730 float activeTime = sortedPair.first;
4731 const BufferTuple& values = sortedPair.second;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004732 StringAppendF(&result, " [%s] %.2f %.3f %.3f %.3f\n", std::get<0>(values).c_str(),
4733 activeTime, std::get<1>(values), std::get<2>(values), std::get<3>(values));
Dan Stozae77c7662016-05-13 11:37:28 -07004734 }
4735 result.append("\n");
4736}
4737
Yiwei Zhang5434a782018-12-05 18:06:32 -08004738void SurfaceFlinger::dumpDisplayIdentificationData(std::string& result) const {
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004739 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004740 const auto displayId = display->getId();
4741 if (!displayId) {
4742 continue;
4743 }
4744 const auto hwcDisplayId = getHwComposer().fromPhysicalDisplayId(*displayId);
Dominik Laskowski7e045462018-05-30 13:02:02 -07004745 if (!hwcDisplayId) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004746 continue;
4747 }
4748
Yiwei Zhang5434a782018-12-05 18:06:32 -08004749 StringAppendF(&result,
4750 "Display %s (HWC display %" PRIu64 "): ", to_string(*displayId).c_str(),
4751 *hwcDisplayId);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004752 uint8_t port;
4753 DisplayIdentificationData data;
Dominik Laskowski7e045462018-05-30 13:02:02 -07004754 if (!getHwComposer().getDisplayIdentificationData(*hwcDisplayId, &port, &data)) {
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004755 result.append("no identification data\n");
4756 continue;
4757 }
4758
4759 if (!isEdid(data)) {
4760 result.append("unknown identification data: ");
4761 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004762 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004763 }
4764 result.append("\n");
4765 continue;
4766 }
4767
4768 const auto edid = parseEdid(data);
4769 if (!edid) {
4770 result.append("invalid EDID: ");
4771 for (uint8_t byte : data) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004772 StringAppendF(&result, "%x ", byte);
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004773 }
4774 result.append("\n");
4775 continue;
4776 }
4777
Yiwei Zhang5434a782018-12-05 18:06:32 -08004778 StringAppendF(&result, "port=%u pnpId=%s displayName=\"", port, edid->pnpId.data());
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004779 result.append(edid->displayName.data(), edid->displayName.length());
4780 result.append("\"\n");
4781 }
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004782}
4783
Yiwei Zhang5434a782018-12-05 18:06:32 -08004784void SurfaceFlinger::dumpWideColorInfo(std::string& result) const {
Peiyong Linff84a152019-05-17 18:36:19 -07004785 StringAppendF(&result, "Device has wide color built-in display: %d\n", hasWideColorDisplay);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004786 StringAppendF(&result, "Device uses color management: %d\n", useColorManagement);
4787 StringAppendF(&result, "DisplayColorSetting: %s\n",
4788 decodeDisplayColorSetting(mDisplayColorSetting).c_str());
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004789
4790 // TODO: print out if wide-color mode is active or not
4791
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004792 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004793 const auto displayId = display->getId();
4794 if (!displayId) {
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004795 continue;
4796 }
4797
Yiwei Zhang5434a782018-12-05 18:06:32 -08004798 StringAppendF(&result, "Display %s color modes:\n", to_string(*displayId).c_str());
Dominik Laskowski075d3172018-05-24 15:50:06 -07004799 std::vector<ColorMode> modes = getHwComposer().getColorModes(*displayId);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004800 for (auto&& mode : modes) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08004801 StringAppendF(&result, " %s (%d)\n", decodeColorMode(mode).c_str(), mode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004802 }
4803
Lloyd Pique32cbe282018-10-19 13:09:22 -07004804 ColorMode currentMode = display->getCompositionDisplay()->getState().colorMode;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004805 StringAppendF(&result, " Current color mode: %s (%d)\n",
4806 decodeColorMode(currentMode).c_str(), currentMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004807 }
4808 result.append("\n");
4809}
4810
Vishnu Nair9245d3b2019-03-22 13:38:56 -07004811LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet,
4812 uint32_t traceFlags) const {
chaviw1d044282017-09-27 12:19:28 -07004813 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01004814 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
4815 const State& state = useDrawing ? mDrawingState : mCurrentState;
4816 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07004817 LayerProto* layerProto = layersProto.add_layers();
Vishnu Nair9245d3b2019-03-22 13:38:56 -07004818 layer->writeToProto(layerProto, stateSet, traceFlags);
chaviw1d044282017-09-27 12:19:28 -07004819 });
4820
4821 return layersProto;
4822}
4823
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004824LayersProto SurfaceFlinger::dumpVisibleLayersProtoInfo(
4825 const sp<DisplayDevice>& displayDevice) const {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004826 LayersProto layersProto;
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004827
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004828 SizeProto* resolution = layersProto.mutable_resolution();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004829 resolution->set_w(displayDevice->getWidth());
4830 resolution->set_h(displayDevice->getHeight());
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004831
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004832 auto display = displayDevice->getCompositionDisplay();
Lloyd Pique32cbe282018-10-19 13:09:22 -07004833 const auto& displayState = display->getState();
Yiwei Zhang60d1a192018-03-07 14:52:28 -08004834
Lloyd Pique32cbe282018-10-19 13:09:22 -07004835 layersProto.set_color_mode(decodeColorMode(displayState.colorMode));
4836 layersProto.set_color_transform(decodeColorTransform(displayState.colorTransform));
4837 layersProto.set_global_transform(displayState.orientation);
4838
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004839 const auto displayId = displayDevice->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004840 LOG_ALWAYS_FATAL_IF(!displayId);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004841 mDrawingState.traverseInZOrder([&](Layer* layer) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004842 if (!layer->visibleRegion.isEmpty() && !display->getOutputLayersOrderedByZ().empty()) {
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004843 LayerProto* layerProto = layersProto.add_layers();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004844 layer->writeToProto(layerProto, displayDevice);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08004845 }
4846 });
4847
4848 return layersProto;
4849}
4850
Dominik Laskowskic2867142019-01-21 11:33:38 -08004851void SurfaceFlinger::dumpAllLocked(const DumpArgs& args, std::string& result) const {
4852 const bool colorize = !args.empty() && args[0] == String16("--color");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004853 Colorizer colorizer(colorize);
4854
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004855 // figure out if we're stuck somewhere
4856 const nsecs_t now = systemTime();
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004857 const nsecs_t inTransaction(mDebugInTransaction);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004858 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
4859
4860 /*
Andy McFadden4803b742012-09-24 19:07:20 -07004861 * Dump library configuration.
4862 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004863
4864 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004865 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004866 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07004867 appendSfConfigString(result);
4868 appendUiConfigString(result);
4869 appendGuiConfigString(result);
4870 result.append("\n");
4871
Dominik Laskowskie9ef7c42018-03-12 19:34:30 -07004872 result.append("\nDisplay identification data:\n");
4873 dumpDisplayIdentificationData(result);
4874
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06004875 result.append("\nWide-Color information:\n");
4876 dumpWideColorInfo(result);
4877
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004878 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004879 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004880 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07004881 result.append(SyncFeatures::getInstance().toString());
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004882 result.append("\n\n");
Mathias Agopianca088332013-03-28 17:44:13 -07004883
Andy McFadden41d67d72014-04-25 16:58:34 -07004884 colorizer.bold(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004885 result.append("VSYNC configuration:\n");
Andy McFadden41d67d72014-04-25 16:58:34 -07004886 colorizer.reset(result);
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004887 dumpVSync(result);
Dan Stozab90cf072015-03-05 11:05:59 -08004888 result.append("\n");
Dominik Laskowskid9e4de62019-01-21 14:23:01 -08004889
Dan Stozab90cf072015-03-05 11:05:59 -08004890 dumpStaticScreenStats(result);
4891 result.append("\n");
4892
Alec Mouri40189b02019-03-05 15:07:54 -08004893 StringAppendF(&result, "Total missed frame count: %u\n", mFrameMissedCount.load());
4894 StringAppendF(&result, "HWC missed frame count: %u\n", mHwcFrameMissedCount.load());
4895 StringAppendF(&result, "GPU missed frame count: %u\n\n", mGpuFrameMissedCount.load());
Marissa Wallcfcdaa52018-05-21 15:45:59 -07004896
Dan Stozae77c7662016-05-13 11:37:28 -07004897 dumpBufferingStats(result);
4898
Andy McFadden4803b742012-09-24 19:07:20 -07004899 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004900 * Dump the visible layer list
4901 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004902 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004903 StringAppendF(&result, "Visible layers (count = %zu)\n", mNumLayers);
4904 StringAppendF(&result, "GraphicBufferProducers: %zu, max %zu\n",
4905 mGraphicBufferProducerList.size(), mMaxGraphicBufferProducerListSize);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004906 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07004907
Chia-I Wu2f884132018-09-13 15:17:58 -07004908 {
4909 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
4910 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004911 result.append(LayerProtoParser::layerTreeToString(layerTree));
Chia-I Wu2f884132018-09-13 15:17:58 -07004912 result.append("\n");
4913 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004914
Lloyd Pique207def92019-02-28 16:09:52 -08004915 {
4916 StringAppendF(&result, "Composition layers\n");
4917 mDrawingState.traverseInZOrder([&](Layer* layer) {
4918 auto compositionLayer = layer->getCompositionLayer();
4919 if (compositionLayer) compositionLayer->dump(result);
4920 });
4921 }
4922
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004923 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004924 * Dump Display state
4925 */
4926
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004927 colorizer.bold(result);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004928 StringAppendF(&result, "Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004929 colorizer.reset(result);
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004930 for (const auto& [token, display] : mDisplays) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07004931 display->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004932 }
Chia-I Wu1e043612018-03-01 09:45:09 -08004933 result.append("\n");
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07004934
4935 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004936 * Dump SurfaceFlinger global state
4937 */
4938
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004939 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004940 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004941 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004942
Lloyd Piqueb97e04f2018-10-18 17:07:05 -07004943 getRenderEngine().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004944
Dominik Laskowski075d3172018-05-24 15:50:06 -07004945 if (const auto display = getDefaultDisplayDeviceLocked()) {
Lloyd Pique32cbe282018-10-19 13:09:22 -07004946 display->getCompositionDisplay()->getState().undefinedRegion.dump(result,
4947 "undefinedRegion");
Yiwei Zhang5434a782018-12-05 18:06:32 -08004948 StringAppendF(&result, " orientation=%d, isPoweredOn=%d\n", display->getOrientation(),
4949 display->isPoweredOn());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08004950 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08004951 StringAppendF(&result,
4952 " transaction-flags : %08x\n"
4953 " gpu_to_cpu_unsupported : %d\n",
4954 mTransactionFlags.load(), !mGpuToCpuSupported);
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004955
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08004956 if (const auto displayId = getInternalDisplayIdLocked();
Dominik Laskowski075d3172018-05-24 15:50:06 -07004957 displayId && getHwComposer().isConnected(*displayId)) {
4958 const auto activeConfig = getHwComposer().getActiveConfig(*displayId);
Yiwei Zhang5434a782018-12-05 18:06:32 -08004959 StringAppendF(&result,
4960 " refresh-rate : %f fps\n"
4961 " x-dpi : %f\n"
4962 " y-dpi : %f\n",
4963 1e9 / activeConfig->getVsyncPeriod(), activeConfig->getDpiX(),
4964 activeConfig->getDpiY());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07004965 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004966
Yiwei Zhang5434a782018-12-05 18:06:32 -08004967 StringAppendF(&result, " transaction time: %f us\n", inTransactionDuration / 1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004968
Dan Stozae22aec72016-08-01 13:20:59 -07004969 /*
Yichi Chenadc69612018-09-15 14:51:18 +08004970 * Tracing state
4971 */
4972 mTracing.dump(result);
4973 result.append("\n");
4974
4975 /*
Dan Stozae22aec72016-08-01 13:20:59 -07004976 * HWC layer minidump
4977 */
Dominik Laskowski9fae1022018-05-29 13:17:40 -07004978 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski075d3172018-05-24 15:50:06 -07004979 const auto displayId = display->getId();
4980 if (!displayId) {
Dan Stozae22aec72016-08-01 13:20:59 -07004981 continue;
4982 }
4983
Yiwei Zhang5434a782018-12-05 18:06:32 -08004984 StringAppendF(&result, "Display %s HWC layers:\n", to_string(*displayId).c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07004985 Layer::miniDumpHeader(result);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08004986 const sp<DisplayDevice> displayDevice = display;
4987 mCurrentState.traverseInZOrder(
4988 [&](Layer* layer) { layer->miniDump(result, displayDevice); });
Dan Stozae22aec72016-08-01 13:20:59 -07004989 result.append("\n");
4990 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004991
4992 /*
4993 * Dump HWComposer state
4994 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004995 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004996 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004997 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004998 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Yiwei Zhang5434a782018-12-05 18:06:32 -08004999 StringAppendF(&result, " h/w composer %s\n", hwcDisabled ? "disabled" : "enabled");
Dominik Laskowski075d3172018-05-24 15:50:06 -07005000 getHwComposer().dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005001
5002 /*
5003 * Dump gralloc state
5004 */
5005 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
5006 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07005007
5008 /*
5009 * Dump VrFlinger state if in use.
5010 */
5011 if (mVrFlingerRequestsDisplay && mVrFlinger) {
5012 result.append("VrFlinger state:\n");
Yiwei Zhang5434a782018-12-05 18:06:32 -08005013 result.append(mVrFlinger->Dump());
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07005014 result.append("\n");
5015 }
Ana Krulecb43429d2019-01-09 14:28:51 -08005016
5017 /**
5018 * Scheduler dump state.
5019 */
Ana Krulecc2870422019-01-29 19:00:58 -08005020 result.append("\nScheduler state:\n");
5021 result.append(mScheduler->doDump() + "\n");
Ana Krulecfefd6ae2019-02-13 17:53:08 -08005022 StringAppendF(&result, "+ Smart video mode: %s\n\n", mUseSmart90ForVideo ? "on" : "off");
Dominik Laskowski22488f62019-03-28 09:53:04 -07005023 result.append(mRefreshRateStats.doDump() + "\n");
Yiwei Zhang7eb58b72019-04-22 19:00:02 -07005024
5025 result.append(mTimeStats->miniDump());
5026 result.append("\n");
Mathias Agopian82d7ab62012-01-19 18:34:40 -08005027}
5028
Dominik Laskowski075d3172018-05-24 15:50:06 -07005029const Vector<sp<Layer>>& SurfaceFlinger::getLayerSortedByZForHwcDisplay(DisplayId displayId) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07005030 // Note: mStateLock is held here
Dominik Laskowski9fae1022018-05-29 13:17:40 -07005031 for (const auto& [token, display] : mDisplays) {
Dominik Laskowski7e045462018-05-30 13:02:02 -07005032 if (display->getId() == displayId) {
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005033 return getDisplayDeviceLocked(token)->getVisibleLayersSortedByZ();
Jesse Hall48bc05b2013-03-21 14:06:52 -07005034 }
5035 }
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005036
Dominik Laskowski34157762018-10-31 13:07:19 -07005037 ALOGE("%s: Invalid display %s", __FUNCTION__, to_string(displayId).c_str());
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005038 static const Vector<sp<Layer>> empty;
5039 return empty;
Mathias Agopiancb558572012-10-04 15:58:54 -07005040}
5041
Chia-I Wu28f320b2018-05-03 11:02:56 -07005042void SurfaceFlinger::updateColorMatrixLocked() {
5043 mat4 colorMatrix;
5044 if (mGlobalSaturationFactor != 1.0f) {
5045 // Rec.709 luma coefficients
5046 float3 luminance{0.213f, 0.715f, 0.072f};
5047 luminance *= 1.0f - mGlobalSaturationFactor;
5048 mat4 saturationMatrix = mat4(
5049 vec4{luminance.r + mGlobalSaturationFactor, luminance.r, luminance.r, 0.0f},
5050 vec4{luminance.g, luminance.g + mGlobalSaturationFactor, luminance.g, 0.0f},
5051 vec4{luminance.b, luminance.b, luminance.b + mGlobalSaturationFactor, 0.0f},
5052 vec4{0.0f, 0.0f, 0.0f, 1.0f}
5053 );
5054 colorMatrix = mClientColorMatrix * saturationMatrix * mDaltonizer();
5055 } else {
5056 colorMatrix = mClientColorMatrix * mDaltonizer();
5057 }
5058
5059 if (mCurrentState.colorMatrix != colorMatrix) {
5060 mCurrentState.colorMatrix = colorMatrix;
5061 mCurrentState.colorMatrixChanged = true;
5062 setTransactionFlags(eTransactionNeeded);
5063 }
5064}
5065
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005066status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005067#pragma clang diagnostic push
5068#pragma clang diagnostic error "-Wswitch-enum"
5069 switch (static_cast<ISurfaceComposerTag>(code)) {
5070 // These methods should at minimum make sure that the client requested
5071 // access to SF.
Dan Stozae3344402018-08-20 19:53:42 +00005072 case BOOT_FINISHED:
5073 case CLEAR_ANIMATION_FRAME_STATS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005074 case CREATE_DISPLAY:
5075 case DESTROY_DISPLAY:
Dan Stozae3344402018-08-20 19:53:42 +00005076 case ENABLE_VSYNC_INJECTIONS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005077 case GET_ANIMATION_FRAME_STATS:
5078 case GET_HDR_CAPABILITIES:
5079 case SET_ACTIVE_CONFIG:
Ady Abraham838de062019-02-04 10:24:03 -08005080 case SET_ALLOWED_DISPLAY_CONFIGS:
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08005081 case GET_ALLOWED_DISPLAY_CONFIGS:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005082 case SET_ACTIVE_COLOR_MODE:
Chia-I Wu90f669f2017-10-05 14:24:41 -07005083 case INJECT_VSYNC:
Kevin DuBois9c0a1762018-10-16 13:32:31 -07005084 case SET_POWER_MODE:
Kevin DuBois74e53772018-11-19 10:52:38 -08005085 case GET_DISPLAYED_CONTENT_SAMPLING_ATTRIBUTES:
Kevin DuBois1d4249a2018-08-29 10:45:14 -07005086 case SET_DISPLAY_CONTENT_SAMPLING_ENABLED:
Ady Abraham8532d012019-05-08 14:50:56 -07005087 case GET_DISPLAYED_CONTENT_SAMPLE:
5088 case NOTIFY_POWER_HINT: {
Robert Carrd4ae7f32018-06-07 16:10:57 -07005089 if (!callingThreadHasUnscopedSurfaceFlingerAccess()) {
5090 IPCThreadState* ipc = IPCThreadState::self();
5091 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d",
5092 ipc->getCallingPid(), ipc->getCallingUid());
Mathias Agopian375f5632009-06-15 18:24:59 -07005093 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005094 }
Robert Carr1db73f62016-12-21 12:58:51 -08005095 return OK;
5096 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005097 case GET_LAYER_DEBUG_INFO: {
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005098 IPCThreadState* ipc = IPCThreadState::self();
5099 const int pid = ipc->getCallingPid();
5100 const int uid = ipc->getCallingUid();
Ana Krulec13be8ad2018-08-21 02:43:56 +00005101 if ((uid != AID_SHELL) && !PermissionCache::checkPermission(sDump, pid, uid)) {
5102 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005103 return PERMISSION_DENIED;
5104 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005105 return OK;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005106 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005107 // Used by apps to hook Choreographer to SurfaceFlinger.
5108 case CREATE_DISPLAY_EVENT_CONNECTION:
5109 // The following calls are currently used by clients that do not
5110 // request necessary permissions. However, they do not expose any secret
5111 // information, so it is OK to pass them.
5112 case AUTHENTICATE_SURFACE:
Peiyong Lind1fedb42019-03-11 17:48:41 -07005113 case GET_ACTIVE_COLOR_MODE:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005114 case GET_ACTIVE_CONFIG:
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -08005115 case GET_PHYSICAL_DISPLAY_IDS:
5116 case GET_PHYSICAL_DISPLAY_TOKEN:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005117 case GET_DISPLAY_COLOR_MODES:
Daniel Solomon42d04562019-01-20 21:03:19 -08005118 case GET_DISPLAY_NATIVE_PRIMARIES:
Ana Krulec13be8ad2018-08-21 02:43:56 +00005119 case GET_DISPLAY_CONFIGS:
5120 case GET_DISPLAY_STATS:
5121 case GET_SUPPORTED_FRAME_TIMESTAMPS:
5122 // Calling setTransactionState is safe, because you need to have been
5123 // granted a reference to Client* and Handle* to do anything with it.
5124 case SET_TRANSACTION_STATE:
Robert Carrb89ea9d2018-12-10 13:01:14 -08005125 case CREATE_CONNECTION:
Ady Abraham37965d42018-11-01 13:43:32 -07005126 case GET_COLOR_MANAGEMENT:
Peiyong Lin3c2791e2019-01-14 17:05:18 -08005127 case GET_COMPOSITION_PREFERENCE:
Marissa Wallebc2c052019-01-16 19:16:55 -08005128 case GET_PROTECTED_CONTENT_SUPPORT:
Dan Gittik57e63c52019-01-18 16:37:54 +00005129 case IS_WIDE_COLOR_DISPLAY:
5130 case GET_DISPLAY_BRIGHTNESS_SUPPORT:
5131 case SET_DISPLAY_BRIGHTNESS: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005132 return OK;
5133 }
5134 case CAPTURE_LAYERS:
Dan Stoza84ab9372018-12-17 15:27:57 -08005135 case CAPTURE_SCREEN:
5136 case ADD_REGION_SAMPLING_LISTENER:
5137 case REMOVE_REGION_SAMPLING_LISTENER: {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005138 // codes that require permission check
chaviwa76b2712017-09-20 12:02:26 -07005139 IPCThreadState* ipc = IPCThreadState::self();
5140 const int pid = ipc->getCallingPid();
5141 const int uid = ipc->getCallingUid();
5142 if ((uid != AID_GRAPHICS) &&
5143 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
5144 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
5145 return PERMISSION_DENIED;
5146 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005147 return OK;
5148 }
5149 // The following codes are deprecated and should never be allowed to access SF.
5150 case CONNECT_DISPLAY_UNUSED:
5151 case CREATE_GRAPHIC_BUFFER_ALLOC_UNUSED: {
5152 ALOGE("Attempting to access SurfaceFlinger with unused code: %u", code);
5153 return PERMISSION_DENIED;
chaviwa76b2712017-09-20 12:02:26 -07005154 }
chaviw93df2ea2019-04-30 16:45:12 -07005155 case CAPTURE_SCREEN_BY_ID: {
5156 IPCThreadState* ipc = IPCThreadState::self();
5157 const int uid = ipc->getCallingUid();
Peiyong Lin96cfebc2019-05-15 11:36:13 -07005158 if (uid == AID_ROOT || uid == AID_GRAPHICS || uid == AID_SYSTEM || uid == AID_SHELL) {
chaviw93df2ea2019-04-30 16:45:12 -07005159 return OK;
5160 }
5161 return PERMISSION_DENIED;
5162 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005163 }
Ana Krulec13be8ad2018-08-21 02:43:56 +00005164
5165 // These codes are used for the IBinder protocol to either interrogate the recipient
5166 // side of the transaction for its canonical interface descriptor or to dump its state.
5167 // We let them pass by default.
5168 if (code == IBinder::INTERFACE_TRANSACTION || code == IBinder::DUMP_TRANSACTION ||
5169 code == IBinder::PING_TRANSACTION || code == IBinder::SHELL_COMMAND_TRANSACTION ||
5170 code == IBinder::SYSPROPS_TRANSACTION) {
5171 return OK;
5172 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005173 // Numbers from 1000 to 1034 are currently used for backdoors. The code
Ana Krulec13be8ad2018-08-21 02:43:56 +00005174 // in onTransact verifies that the user is root, and has access to use SF.
Ady Abraham34392f72019-04-10 11:29:27 -07005175 if (code >= 1000 && code <= 1035) {
Ana Krulec13be8ad2018-08-21 02:43:56 +00005176 ALOGV("Accessing SurfaceFlinger through backdoor code: %u", code);
5177 return OK;
5178 }
5179 ALOGE("Permission Denial: SurfaceFlinger did not recognize request code: %u", code);
5180 return PERMISSION_DENIED;
5181#pragma clang diagnostic pop
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005182}
5183
Ana Krulec13be8ad2018-08-21 02:43:56 +00005184status_t SurfaceFlinger::onTransact(uint32_t code, const Parcel& data, Parcel* reply,
5185 uint32_t flags) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07005186 status_t credentialCheck = CheckTransactCodeCredentials(code);
5187 if (credentialCheck != OK) {
5188 return credentialCheck;
5189 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07005190
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005191 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
5192 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07005193 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07005194 IPCThreadState* ipc = IPCThreadState::self();
5195 const int uid = ipc->getCallingUid();
5196 if (CC_UNLIKELY(uid != AID_SYSTEM
5197 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07005198 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00005199 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07005200 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005201 return PERMISSION_DENIED;
5202 }
5203 int n;
5204 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07005205 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07005206 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005207 return NO_ERROR;
5208 case 1002: // SHOW_UPDATES
5209 n = data.readInt32();
5210 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07005211 invalidateHwcGeometry();
5212 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005213 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005214 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07005215 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005216 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005217 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005218 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07005219 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07005220 setTransactionFlags(
5221 eTransactionNeeded|
5222 eDisplayTransactionNeeded|
5223 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07005224 return NO_ERROR;
5225 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08005226 case 1006:{ // send empty update
5227 signalRefresh();
5228 return NO_ERROR;
5229 }
Mathias Agopian53331da2011-08-22 21:44:41 -07005230 case 1008: // toggle use of hw composer
5231 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005232 mDebugDisableHWC = n != 0;
Mathias Agopian53331da2011-08-22 21:44:41 -07005233 invalidateHwcGeometry();
5234 repaintEverything();
5235 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07005236 case 1009: // toggle use of transform hint
5237 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005238 mDebugDisableTransformHint = n != 0;
Mathias Agopiana4583642011-08-23 18:03:18 -07005239 invalidateHwcGeometry();
5240 repaintEverything();
5241 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005242 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07005243 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005244 reply->writeInt32(0);
5245 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07005246 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08005247 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005248 return NO_ERROR;
5249 case 1013: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005250 const auto display = getDefaultDisplayDevice();
Dominik Laskowski45de9bd2018-06-11 17:44:10 -07005251 if (!display) {
5252 return NAME_NOT_FOUND;
5253 }
5254
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005255 reply->writeInt32(display->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07005256 return NO_ERROR;
5257 }
5258 case 1014: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005259 Mutex::Autolock _l(mStateLock);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005260 // daltonize
5261 n = data.readInt32();
5262 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005263 case 1:
5264 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
5265 break;
5266 case 2:
5267 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
5268 break;
5269 case 3:
5270 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
5271 break;
5272 default:
5273 mDaltonizer.setType(ColorBlindnessType::None);
5274 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07005275 }
5276 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005277 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005278 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005279 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07005280 }
Chia-I Wu28f320b2018-05-03 11:02:56 -07005281
5282 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005283 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005284 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005285 case 1015: {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005286 Mutex::Autolock _l(mStateLock);
Alan Viverette9c5a3332013-09-12 20:04:35 -07005287 // apply a color matrix
5288 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005289 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07005290 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07005291 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005292 for (size_t j = 0; j < 4; j++) {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005293 mClientColorMatrix[i][j] = data.readFloat();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07005294 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005295 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07005296 } else {
Chia-I Wu28f320b2018-05-03 11:02:56 -07005297 mClientColorMatrix = mat4();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005298 }
Romain Guy88d37dd2017-05-26 17:57:05 -07005299
5300 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
5301 // the division by w in the fragment shader
Chia-I Wu28f320b2018-05-03 11:02:56 -07005302 float4 lastRow(transpose(mClientColorMatrix)[3]);
Romain Guy88d37dd2017-05-26 17:57:05 -07005303 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
5304 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
5305 }
5306
Chia-I Wu28f320b2018-05-03 11:02:56 -07005307 updateColorMatrixLocked();
Alan Viverette9c5a3332013-09-12 20:04:35 -07005308 return NO_ERROR;
5309 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005310 // This is an experimental interface
5311 // Needs to be shifted to proper binder interface when we productize
5312 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07005313 n = data.readInt32();
Ana Krulece588e312018-09-18 12:32:24 -07005314 // TODO(b/113612090): Evaluate if this can be removed.
Ana Krulecc2870422019-01-29 19:00:58 -08005315 mScheduler->setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07005316 return NO_ERROR;
5317 }
Dan Stozaee44edd2015-03-23 15:50:23 -07005318 case 1017: {
5319 n = data.readInt32();
Dominik Laskowski9dab3432019-03-27 13:21:10 -07005320 mForceFullDamage = n != 0;
Dan Stozaee44edd2015-03-23 15:50:23 -07005321 return NO_ERROR;
5322 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005323 case 1018: { // Modify Choreographer's phase offset
5324 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005325 mScheduler->setPhaseOffset(mAppConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005326 return NO_ERROR;
5327 }
5328 case 1019: { // Modify SurfaceFlinger's phase offset
5329 n = data.readInt32();
Ana Krulecc2870422019-01-29 19:00:58 -08005330 mScheduler->setPhaseOffset(mSfConnectionHandle, static_cast<nsecs_t>(n));
Dan Stozadb4ac3c2015-04-14 11:34:01 -07005331 return NO_ERROR;
5332 }
Irvel468051e2016-06-13 16:44:44 -07005333 case 1020: { // Layer updates interceptor
5334 n = data.readInt32();
5335 if (n) {
5336 ALOGV("Interceptor enabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005337 mInterceptor->enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07005338 }
5339 else{
5340 ALOGV("Interceptor disabled");
Lloyd Pique4dccc412018-01-22 17:21:36 -08005341 mInterceptor->disable();
Irvel468051e2016-06-13 16:44:44 -07005342 }
5343 return NO_ERROR;
5344 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07005345 case 1021: { // Disable HWC virtual displays
5346 n = data.readInt32();
5347 mUseHwcVirtualDisplays = !n;
5348 return NO_ERROR;
5349 }
Romain Guy0147a172017-06-01 13:53:56 -07005350 case 1022: { // Set saturation boost
Chia-I Wu28f320b2018-05-03 11:02:56 -07005351 Mutex::Autolock _l(mStateLock);
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005352 mGlobalSaturationFactor = std::max(0.0f, std::min(data.readFloat(), 2.0f));
Romain Guy0147a172017-06-01 13:53:56 -07005353
Chia-I Wu28f320b2018-05-03 11:02:56 -07005354 updateColorMatrixLocked();
Romain Guy0147a172017-06-01 13:53:56 -07005355 return NO_ERROR;
5356 }
Romain Guy54f154a2017-10-24 21:40:32 +01005357 case 1023: { // Set native mode
Chia-I Wu0d711262018-05-21 15:19:35 -07005358 mDisplayColorSetting = static_cast<DisplayColorSetting>(data.readInt32());
Romain Guy54f154a2017-10-24 21:40:32 +01005359 invalidateHwcGeometry();
5360 repaintEverything();
5361 return NO_ERROR;
5362 }
Peiyong Lin4bac91c2018-10-25 09:48:33 -07005363 // Deprecate, use 1030 to check whether the device is color managed.
5364 case 1024: {
5365 return NAME_NOT_FOUND;
Romain Guy54f154a2017-10-24 21:40:32 +01005366 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005367 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01005368 n = data.readInt32();
5369 if (n) {
Yichi Chenadc69612018-09-15 14:51:18 +08005370 ALOGD("LayerTracing enabled");
Nataniel Borges2b796da2019-02-15 13:32:18 -08005371 Mutex::Autolock lock(mStateLock);
5372 mTracingEnabledChanged = true;
Adrian Roos1e1a1282017-11-01 19:05:31 +01005373 mTracing.enable();
Adrian Roos1e1a1282017-11-01 19:05:31 +01005374 reply->writeInt32(NO_ERROR);
5375 } else {
Yichi Chenadc69612018-09-15 14:51:18 +08005376 ALOGD("LayerTracing disabled");
Nataniel Borges2b796da2019-02-15 13:32:18 -08005377 bool writeFile = false;
5378 {
5379 Mutex::Autolock lock(mStateLock);
5380 mTracingEnabledChanged = true;
5381 writeFile = mTracing.disable();
5382 }
5383
5384 if (writeFile) {
5385 reply->writeInt32(mTracing.writeToFile());
5386 } else {
5387 reply->writeInt32(NO_ERROR);
5388 }
Adrian Roos1e1a1282017-11-01 19:05:31 +01005389 }
5390 return NO_ERROR;
5391 }
Vishnu Nair87704c92018-01-08 15:32:57 -08005392 case 1026: { // Get layer tracing status
5393 reply->writeBool(mTracing.isEnabled());
5394 return NO_ERROR;
5395 }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005396 // Is a DisplayColorSetting supported?
5397 case 1027: {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005398 const auto display = getDefaultDisplayDevice();
5399 if (!display) {
Chia-I Wu0d711262018-05-21 15:19:35 -07005400 return NAME_NOT_FOUND;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005401 }
Chia-I Wu0d711262018-05-21 15:19:35 -07005402
5403 DisplayColorSetting setting = static_cast<DisplayColorSetting>(data.readInt32());
5404 switch (setting) {
5405 case DisplayColorSetting::MANAGED:
Peiyong Lin13effd12018-07-24 17:01:47 -07005406 reply->writeBool(useColorManagement);
Chia-I Wu0d711262018-05-21 15:19:35 -07005407 break;
5408 case DisplayColorSetting::UNMANAGED:
5409 reply->writeBool(true);
5410 break;
5411 case DisplayColorSetting::ENHANCED:
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005412 reply->writeBool(display->hasRenderIntent(RenderIntent::ENHANCE));
Chia-I Wu0d711262018-05-21 15:19:35 -07005413 break;
5414 default: // vendor display color setting
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005415 reply->writeBool(
5416 display->hasRenderIntent(static_cast<RenderIntent>(setting)));
Chia-I Wu0d711262018-05-21 15:19:35 -07005417 break;
5418 }
5419 return NO_ERROR;
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005420 }
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005421 // Is VrFlinger active?
5422 case 1028: {
5423 Mutex::Autolock _l(mStateLock);
Lloyd Pique441d5042018-10-18 16:49:51 -07005424 reply->writeBool(getHwComposer().isUsingVrComposer());
Steven Thomas97f1f4c2018-06-01 12:04:16 -07005425 return NO_ERROR;
5426 }
Nataniel Borges2b796da2019-02-15 13:32:18 -08005427 // Set buffer size for SF tracing (value in KB)
5428 case 1029: {
5429 n = data.readInt32();
5430 if (n <= 0 || n > MAX_TRACING_MEMORY) {
5431 ALOGW("Invalid buffer size: %d KB", n);
5432 reply->writeInt32(BAD_VALUE);
5433 return BAD_VALUE;
5434 }
5435
5436 ALOGD("Updating trace buffer to %d KB", n);
5437 mTracing.setBufferSize(n * 1024);
5438 reply->writeInt32(NO_ERROR);
5439 return NO_ERROR;
5440 }
Peiyong Lin13effd12018-07-24 17:01:47 -07005441 // Is device color managed?
5442 case 1030: {
5443 reply->writeBool(useColorManagement);
5444 return NO_ERROR;
5445 }
Peiyong Lin9d846a52018-11-05 13:18:20 -08005446 // Override default composition data space
5447 // adb shell service call SurfaceFlinger 1031 i32 1 DATASPACE_NUMBER DATASPACE_NUMBER \
5448 // && adb shell stop zygote && adb shell start zygote
5449 // to restore: adb shell service call SurfaceFlinger 1031 i32 0 && \
5450 // adb shell stop zygote && adb shell start zygote
5451 case 1031: {
5452 Mutex::Autolock _l(mStateLock);
5453 n = data.readInt32();
5454 if (n) {
5455 n = data.readInt32();
5456 if (n) {
5457 Dataspace dataspace = static_cast<Dataspace>(n);
5458 if (!validateCompositionDataspace(dataspace)) {
5459 return BAD_VALUE;
5460 }
5461 mDefaultCompositionDataspace = dataspace;
5462 }
5463 n = data.readInt32();
5464 if (n) {
5465 Dataspace dataspace = static_cast<Dataspace>(n);
5466 if (!validateCompositionDataspace(dataspace)) {
5467 return BAD_VALUE;
5468 }
5469 mWideColorGamutCompositionDataspace = dataspace;
5470 }
5471 } else {
5472 // restore composition data space.
5473 mDefaultCompositionDataspace = defaultCompositionDataspace;
5474 mWideColorGamutCompositionDataspace = wideColorGamutCompositionDataspace;
5475 }
5476 return NO_ERROR;
5477 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07005478 // Set trace flags
5479 case 1033: {
5480 n = data.readUint32();
5481 ALOGD("Updating trace flags to 0x%x", n);
5482 mTracing.setTraceFlags(n);
5483 reply->writeInt32(NO_ERROR);
5484 return NO_ERROR;
5485 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005486 case 1034: {
5487 // TODO(b/129297325): expose this via developer menu option
5488 n = data.readInt32();
5489 if (n && !mRefreshRateOverlay) {
Ady Abrahamfed164b2019-05-10 17:12:54 -07005490 RefreshRateType type;
5491 {
5492 std::lock_guard<std::mutex> lock(mActiveConfigLock);
5493 type = mDesiredActiveConfig.type;
5494 }
Ady Abraham03b02dd2019-03-21 15:40:11 -07005495 mRefreshRateOverlay = std::make_unique<RefreshRateOverlay>(*this);
Ady Abrahamfed164b2019-05-10 17:12:54 -07005496 mRefreshRateOverlay->changeRefreshRate(type);
Ady Abraham03b02dd2019-03-21 15:40:11 -07005497 } else if (!n) {
5498 mRefreshRateOverlay.reset();
5499 }
5500 return NO_ERROR;
5501 }
Ady Abraham34392f72019-04-10 11:29:27 -07005502 case 1035: {
5503 n = data.readInt32();
5504 mDebugDisplayConfigSetByBackdoor = false;
5505 if (n >= 0) {
5506 const auto displayToken = getInternalDisplayToken();
5507 status_t result = setAllowedDisplayConfigs(displayToken, {n});
5508 if (result != NO_ERROR) {
5509 return result;
5510 }
5511 mDebugDisplayConfigSetByBackdoor = true;
5512 }
5513 return NO_ERROR;
5514 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08005515 }
5516 }
5517 return err;
5518}
5519
Steven Thomas6d8110b2017-08-31 18:24:21 -07005520void SurfaceFlinger::repaintEverything() {
Lloyd Piquef1c675b2018-09-12 20:45:39 -07005521 mRepaintEverything = true;
Dan Stozac7a25ad2018-04-12 11:45:09 -07005522 signalTransaction();
Steven Thomas6d8110b2017-08-31 18:24:21 -07005523}
5524
Ana Krulec7d1d6832018-12-27 11:10:09 -08005525void SurfaceFlinger::repaintEverythingForHWC() {
5526 mRepaintEverything = true;
Ady Abraham8532d012019-05-08 14:50:56 -07005527 mEventQueue->invalidate();
Ana Krulec7d1d6832018-12-27 11:10:09 -08005528}
5529
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005530// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
5531class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005532public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005533 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
5534 ~WindowDisconnector() {
5535 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005536 }
5537
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005538private:
5539 ANativeWindow* mWindow;
5540 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07005541};
5542
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005543status_t SurfaceFlinger::captureScreen(const sp<IBinder>& displayToken,
Robert Carr108b2c72019-04-02 16:32:58 -07005544 sp<GraphicBuffer>* outBuffer, bool& outCapturedSecureLayers,
5545 const Dataspace reqDataspace,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005546 const ui::PixelFormat reqPixelFormat, Rect sourceCrop,
chaviw0e3479f2018-09-10 16:49:30 -07005547 uint32_t reqWidth, uint32_t reqHeight,
5548 bool useIdentityTransform,
Robert Carrfa8855f2019-02-19 10:05:00 -08005549 ISurfaceComposer::Rotation rotation,
5550 bool captureSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005551 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005552
Dominik Laskowskieecd6592018-05-29 10:25:41 -07005553 if (!displayToken) return BAD_VALUE;
chaviwa76b2712017-09-20 12:02:26 -07005554
Chia-I Wuc80dcbb2018-08-24 15:34:02 -07005555 auto renderAreaRotation = fromSurfaceComposerRotation(rotation);
5556
Chia-I Wu20261cb2018-08-23 12:55:44 -07005557 sp<DisplayDevice> display;
5558 {
5559 Mutex::Autolock _l(mStateLock);
Garfield Tan3b1b8af2018-03-16 17:37:33 -07005560
Chia-I Wu20261cb2018-08-23 12:55:44 -07005561 display = getDisplayDeviceLocked(displayToken);
5562 if (!display) return BAD_VALUE;
5563
Chia-I Wucb023152018-08-28 12:57:23 -07005564 // set the requested width/height to the logical display viewport size
5565 // by default
5566 if (reqWidth == 0 || reqHeight == 0) {
5567 reqWidth = uint32_t(display->getViewport().width());
5568 reqHeight = uint32_t(display->getViewport().height());
Chia-I Wu20261cb2018-08-23 12:55:44 -07005569 }
Yiwei Zhang06a58e22018-08-20 16:42:23 -07005570 }
5571
Peiyong Lin0e003c92018-09-17 11:09:51 -07005572 DisplayRenderArea renderArea(display, sourceCrop, reqWidth, reqHeight, reqDataspace,
Robert Carrfa8855f2019-02-19 10:05:00 -08005573 renderAreaRotation, captureSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005574
Dominik Laskowskiccf37d72019-02-01 16:47:58 -08005575 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5576 std::placeholders::_1);
Peiyong Lin0e003c92018-09-17 11:09:51 -07005577 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat,
Robert Carr108b2c72019-04-02 16:32:58 -07005578 useIdentityTransform, outCapturedSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005579}
5580
chaviw93df2ea2019-04-30 16:45:12 -07005581static Dataspace pickDataspaceFromColorMode(const ColorMode colorMode) {
5582 switch (colorMode) {
5583 case ColorMode::DISPLAY_P3:
5584 case ColorMode::BT2100_PQ:
5585 case ColorMode::BT2100_HLG:
5586 case ColorMode::DISPLAY_BT2020:
5587 return Dataspace::DISPLAY_P3;
5588 default:
5589 return Dataspace::V0_SRGB;
5590 }
5591}
5592
5593const sp<DisplayDevice> SurfaceFlinger::getDisplayByIdOrLayerStack(uint64_t displayOrLayerStack) {
5594 const sp<IBinder> displayToken = getPhysicalDisplayTokenLocked(DisplayId{displayOrLayerStack});
5595 if (displayToken) {
5596 return getDisplayDeviceLocked(displayToken);
5597 }
5598 // Couldn't find display by displayId. Try to get display by layerStack since virtual displays
5599 // may not have a displayId.
5600 for (const auto& [token, display] : mDisplays) {
5601 if (display->getLayerStack() == displayOrLayerStack) {
5602 return display;
5603 }
5604 }
5605 return nullptr;
5606}
5607
5608status_t SurfaceFlinger::captureScreen(uint64_t displayOrLayerStack, Dataspace* outDataspace,
5609 sp<GraphicBuffer>* outBuffer) {
5610 sp<DisplayDevice> display;
5611 uint32_t width;
5612 uint32_t height;
5613 ui::Transform::orientation_flags captureOrientation;
5614 {
5615 Mutex::Autolock _l(mStateLock);
5616 display = getDisplayByIdOrLayerStack(displayOrLayerStack);
5617 if (!display) {
5618 return BAD_VALUE;
5619 }
5620
5621 width = uint32_t(display->getViewport().width());
5622 height = uint32_t(display->getViewport().height());
5623
5624 captureOrientation = fromSurfaceComposerRotation(
5625 static_cast<ISurfaceComposer::Rotation>(display->getOrientation()));
5626 *outDataspace =
5627 pickDataspaceFromColorMode(display->getCompositionDisplay()->getState().colorMode);
5628 }
5629
5630 DisplayRenderArea renderArea(display, Rect(), width, height, *outDataspace, captureOrientation,
5631 false /* captureSecureLayers */);
5632
5633 auto traverseLayers = std::bind(&SurfaceFlinger::traverseLayersInDisplay, this, display,
5634 std::placeholders::_1);
5635 bool ignored = false;
5636 return captureScreenCommon(renderArea, traverseLayers, outBuffer, ui::PixelFormat::RGBA_8888,
5637 false /* useIdentityTransform */,
5638 ignored /* outCapturedSecureLayers */);
5639}
5640
Robert Carr866455f2019-04-02 16:28:26 -07005641status_t SurfaceFlinger::captureLayers(
5642 const sp<IBinder>& layerHandleBinder, sp<GraphicBuffer>* outBuffer,
5643 const Dataspace reqDataspace, const ui::PixelFormat reqPixelFormat, const Rect& sourceCrop,
5644 const std::unordered_set<sp<IBinder>, ISurfaceComposer::SpHash<IBinder>>& excludeHandles,
5645 float frameScale, bool childrenOnly) {
chaviwa76b2712017-09-20 12:02:26 -07005646 ATRACE_CALL();
5647
5648 class LayerRenderArea : public RenderArea {
5649 public:
Robert Carr578038f2018-03-09 12:25:24 -08005650 LayerRenderArea(SurfaceFlinger* flinger, const sp<Layer>& layer, const Rect crop,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005651 int32_t reqWidth, int32_t reqHeight, Dataspace reqDataSpace,
5652 bool childrenOnly)
5653 : RenderArea(reqWidth, reqHeight, CaptureFill::CLEAR, reqDataSpace),
Robert Carr578038f2018-03-09 12:25:24 -08005654 mLayer(layer),
5655 mCrop(crop),
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005656 mNeedsFiltering(false),
Robert Carr578038f2018-03-09 12:25:24 -08005657 mFlinger(flinger),
5658 mChildrenOnly(childrenOnly) {}
Peiyong Linefefaac2018-08-17 12:27:51 -07005659 const ui::Transform& getTransform() const override { return mTransform; }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005660 Rect getBounds() const override {
5661 const Layer::State& layerState(mLayer->getDrawingState());
5662 return mLayer->getBufferSize(layerState);
5663 }
Marissa Wall61c58622018-07-18 10:12:20 -07005664 int getHeight() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005665 return mLayer->getBufferSize(mLayer->getDrawingState()).getHeight();
Marissa Wall61c58622018-07-18 10:12:20 -07005666 }
Vishnu Nair88a11f22018-11-28 18:30:57 -08005667 int getWidth() const override {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08005668 return mLayer->getBufferSize(mLayer->getDrawingState()).getWidth();
Vishnu Nair88a11f22018-11-28 18:30:57 -08005669 }
chaviwa76b2712017-09-20 12:02:26 -07005670 bool isSecure() const override { return false; }
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005671 bool needsFiltering() const override { return mNeedsFiltering; }
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08005672 const sp<const DisplayDevice> getDisplayDevice() const override { return nullptr; }
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08005673 Rect getSourceCrop() const override {
5674 if (mCrop.isEmpty()) {
5675 return getBounds();
5676 } else {
5677 return mCrop;
5678 }
5679 }
Robert Carr578038f2018-03-09 12:25:24 -08005680 class ReparentForDrawing {
5681 public:
5682 const sp<Layer>& oldParent;
5683 const sp<Layer>& newParent;
5684
Vishnu Nair4351ad52019-02-11 14:13:02 -08005685 ReparentForDrawing(const sp<Layer>& oldParent, const sp<Layer>& newParent,
5686 const Rect& drawingBounds)
Robert Carr578038f2018-03-09 12:25:24 -08005687 : oldParent(oldParent), newParent(newParent) {
Vishnu Nair4351ad52019-02-11 14:13:02 -08005688 // Compute and cache the bounds for the new parent layer.
5689 newParent->computeBounds(drawingBounds.toFloatRect(), ui::Transform());
Robert Carr15eae092018-03-23 13:43:53 -07005690 oldParent->setChildrenDrawingParent(newParent);
Robert Carr578038f2018-03-09 12:25:24 -08005691 }
Vishnu Nairbce6ffd2019-02-14 10:58:59 -08005692 ~ReparentForDrawing() { oldParent->setChildrenDrawingParent(oldParent); }
Robert Carr578038f2018-03-09 12:25:24 -08005693 };
5694
5695 void render(std::function<void()> drawLayers) override {
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005696 const Rect sourceCrop = getSourceCrop();
5697 // no need to check rotation because there is none
5698 mNeedsFiltering = sourceCrop.width() != getReqWidth() ||
5699 sourceCrop.height() != getReqHeight();
5700
Robert Carr578038f2018-03-09 12:25:24 -08005701 if (!mChildrenOnly) {
5702 mTransform = mLayer->getTransform().inverse();
5703 drawLayers();
5704 } else {
5705 Rect bounds = getBounds();
Lloyd Pique90c115d2018-09-18 21:39:42 -07005706 screenshotParentLayer = mFlinger->getFactory().createContainerLayer(
Lloyd Pique42ab75e2018-09-12 20:46:03 -07005707 LayerCreationArgs(mFlinger, nullptr, String8("Screenshot Parent"),
Evan Roskya1f1e152019-01-24 16:17:46 -08005708 bounds.getWidth(), bounds.getHeight(), 0,
5709 LayerMetadata()));
Robert Carr578038f2018-03-09 12:25:24 -08005710
Vishnu Nair4351ad52019-02-11 14:13:02 -08005711 ReparentForDrawing reparent(mLayer, screenshotParentLayer, sourceCrop);
Robert Carr578038f2018-03-09 12:25:24 -08005712 drawLayers();
5713 }
5714 }
chaviwa76b2712017-09-20 12:02:26 -07005715
chaviwa76b2712017-09-20 12:02:26 -07005716 private:
chaviw7206d492017-11-10 16:16:12 -08005717 const sp<Layer> mLayer;
5718 const Rect mCrop;
Robert Carr578038f2018-03-09 12:25:24 -08005719
5720 // In the "childrenOnly" case we reparent the children to a screenshot
5721 // layer which has no properties set and which does not draw.
5722 sp<ContainerLayer> screenshotParentLayer;
Peiyong Linefefaac2018-08-17 12:27:51 -07005723 ui::Transform mTransform;
Chia-I Wu5f6664c2018-08-28 11:01:44 -07005724 bool mNeedsFiltering;
Robert Carr578038f2018-03-09 12:25:24 -08005725
5726 SurfaceFlinger* mFlinger;
5727 const bool mChildrenOnly;
chaviwa76b2712017-09-20 12:02:26 -07005728 };
5729
Robert Carrc0df3122019-04-11 13:18:21 -07005730 int reqWidth = 0;
5731 int reqHeight = 0;
5732 sp<Layer> parent;
chaviw7206d492017-11-10 16:16:12 -08005733 Rect crop(sourceCrop);
Robert Carrc0df3122019-04-11 13:18:21 -07005734 std::unordered_set<sp<Layer>, ISurfaceComposer::SpHash<Layer>> excludeLayers;
chaviw7206d492017-11-10 16:16:12 -08005735
Robert Carrc0df3122019-04-11 13:18:21 -07005736 {
5737 Mutex::Autolock _l(mStateLock);
chaviw7206d492017-11-10 16:16:12 -08005738
Robert Carrc0df3122019-04-11 13:18:21 -07005739 parent = fromHandle(layerHandleBinder);
5740 if (parent == nullptr || parent->isRemovedFromCurrentState()) {
5741 ALOGE("captureLayers called with an invalid or removed parent");
5742 return NAME_NOT_FOUND;
5743 }
5744
5745 const int uid = IPCThreadState::self()->getCallingUid();
5746 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5747 if (!forSystem && parent->getCurrentState().flags & layer_state_t::eLayerSecure) {
5748 ALOGW("Attempting to capture secure layer: PERMISSION_DENIED");
5749 return PERMISSION_DENIED;
5750 }
5751
5752 if (sourceCrop.width() <= 0) {
5753 crop.left = 0;
5754 crop.right = parent->getBufferSize(parent->getCurrentState()).getWidth();
5755 }
5756
5757 if (sourceCrop.height() <= 0) {
5758 crop.top = 0;
5759 crop.bottom = parent->getBufferSize(parent->getCurrentState()).getHeight();
5760 }
5761 reqWidth = crop.width() * frameScale;
5762 reqHeight = crop.height() * frameScale;
5763
5764 for (const auto& handle : excludeHandles) {
5765 sp<Layer> excludeLayer = fromHandle(handle);
5766 if (excludeLayer != nullptr) {
5767 excludeLayers.emplace(excludeLayer);
5768 } else {
5769 ALOGW("Invalid layer handle passed as excludeLayer to captureLayers");
5770 return NAME_NOT_FOUND;
5771 }
5772 }
5773 } // mStateLock
chaviw7206d492017-11-10 16:16:12 -08005774
Chia-I Wu20261cb2018-08-23 12:55:44 -07005775 // really small crop or frameScale
5776 if (reqWidth <= 0) {
5777 reqWidth = 1;
5778 }
5779 if (reqHeight <= 0) {
5780 reqHeight = 1;
5781 }
5782
Robert Carr866455f2019-04-02 16:28:26 -07005783 LayerRenderArea renderArea(this, parent, crop, reqWidth, reqHeight, reqDataspace, childrenOnly);
5784 auto traverseLayers = [parent, childrenOnly,
5785 &excludeLayers](const LayerVector::Visitor& visitor) {
chaviwa76b2712017-09-20 12:02:26 -07005786 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
5787 if (!layer->isVisible()) {
5788 return;
Robert Carr578038f2018-03-09 12:25:24 -08005789 } else if (childrenOnly && layer == parent.get()) {
5790 return;
chaviwa76b2712017-09-20 12:02:26 -07005791 }
Robert Carr866455f2019-04-02 16:28:26 -07005792
5793 sp<Layer> p = layer;
5794 while (p != nullptr) {
5795 if (excludeLayers.count(p) != 0) {
5796 return;
5797 }
5798 p = p->getParent();
5799 }
5800
chaviwa76b2712017-09-20 12:02:26 -07005801 visitor(layer);
5802 });
5803 };
Robert Carr108b2c72019-04-02 16:32:58 -07005804
5805 bool outCapturedSecureLayers = false;
5806 return captureScreenCommon(renderArea, traverseLayers, outBuffer, reqPixelFormat, false,
5807 outCapturedSecureLayers);
chaviwa76b2712017-09-20 12:02:26 -07005808}
5809
5810status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5811 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005812 sp<GraphicBuffer>* outBuffer,
Peiyong Lin0e003c92018-09-17 11:09:51 -07005813 const ui::PixelFormat reqPixelFormat,
Robert Carr108b2c72019-04-02 16:32:58 -07005814 bool useIdentityTransform,
5815 bool& outCapturedSecureLayers) {
chaviwa76b2712017-09-20 12:02:26 -07005816 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005817
Peiyong Lin0e003c92018-09-17 11:09:51 -07005818 // TODO(b/116112787) Make buffer usage a parameter.
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005819 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
5820 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
Lloyd Pique90c115d2018-09-18 21:39:42 -07005821 *outBuffer =
5822 getFactory().createGraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
5823 static_cast<android_pixel_format>(reqPixelFormat), 1,
5824 usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005825
Robert Carr108b2c72019-04-02 16:32:58 -07005826 return captureScreenCommon(renderArea, traverseLayers, *outBuffer, useIdentityTransform,
5827 outCapturedSecureLayers);
Dan Stozaec460082018-12-17 15:35:09 -08005828}
5829
Kevin DuBois7cbcc372019-02-25 14:53:28 -08005830status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
5831 TraverseLayersFunction traverseLayers,
5832 const sp<GraphicBuffer>& buffer,
Robert Carr108b2c72019-04-02 16:32:58 -07005833 bool useIdentityTransform,
5834 bool& outCapturedSecureLayers) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005835 // This mutex protects syncFd and captureResult for communication of the return values from the
5836 // main thread back to this Binder thread
5837 std::mutex captureMutex;
5838 std::condition_variable captureCondition;
5839 std::unique_lock<std::mutex> captureLock(captureMutex);
5840 int syncFd = -1;
5841 std::optional<status_t> captureResult;
5842
Robert Carr03480e22018-01-04 16:02:06 -08005843 const int uid = IPCThreadState::self()->getCallingUid();
5844 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
5845
Dominik Laskowski8c001672018-05-30 16:52:06 -07005846 sp<LambdaMessage> message = new LambdaMessage([&] {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005847 // If there is a refresh pending, bug out early and tell the binder thread to try again
5848 // after the refresh.
5849 if (mRefreshPending) {
5850 ATRACE_NAME("Skipping screenshot for now");
5851 std::unique_lock<std::mutex> captureLock(captureMutex);
5852 captureResult = std::make_optional<status_t>(EAGAIN);
5853 captureCondition.notify_one();
5854 return;
5855 }
5856
5857 status_t result = NO_ERROR;
5858 int fd = -1;
5859 {
5860 Mutex::Autolock _l(mStateLock);
Dominik Laskowski8c001672018-05-30 16:52:06 -07005861 renderArea.render([&] {
Dan Stozaec460082018-12-17 15:35:09 -08005862 result = captureScreenImplLocked(renderArea, traverseLayers, buffer.get(),
Robert Carr108b2c72019-04-02 16:32:58 -07005863 useIdentityTransform, forSystem, &fd,
5864 outCapturedSecureLayers);
Robert Carr578038f2018-03-09 12:25:24 -08005865 });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005866 }
5867
5868 {
5869 std::unique_lock<std::mutex> captureLock(captureMutex);
5870 syncFd = fd;
5871 captureResult = std::make_optional<status_t>(result);
5872 captureCondition.notify_one();
5873 }
5874 });
5875
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005876 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005877 if (result == NO_ERROR) {
Dominik Laskowski8c001672018-05-30 16:52:06 -07005878 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005879 while (*captureResult == EAGAIN) {
5880 captureResult.reset();
5881 result = postMessageAsync(message);
5882 if (result != NO_ERROR) {
5883 return result;
5884 }
Dominik Laskowski8c001672018-05-30 16:52:06 -07005885 captureCondition.wait(captureLock, [&] { return captureResult; });
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005886 }
5887 result = *captureResult;
5888 }
5889
5890 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005891 sync_wait(syncFd, -1);
5892 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005893 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00005894
Dan Stoza2b6d38e2017-06-01 16:40:30 -07005895 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08005896}
5897
chaviwa76b2712017-09-20 12:02:26 -07005898void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
Chia-I Wu1be50b52018-08-29 10:44:48 -07005899 TraverseLayersFunction traverseLayers,
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005900 ANativeWindowBuffer* buffer, bool useIdentityTransform,
5901 int* outSyncFd) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07005902 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07005903
chaviwa76b2712017-09-20 12:02:26 -07005904 const auto reqWidth = renderArea.getReqWidth();
5905 const auto reqHeight = renderArea.getReqHeight();
Chia-I Wuf2aa3112018-08-27 14:54:37 -07005906 const auto rotation = renderArea.getRotationFlags();
Alec Mouriadb75f42019-03-28 21:42:24 -07005907 const auto transform = renderArea.getTransform();
5908 const auto sourceCrop = renderArea.getSourceCrop();
Dan Stozac1879002014-05-22 15:59:05 -07005909
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005910 renderengine::DisplaySettings clientCompositionDisplay;
5911 std::vector<renderengine::LayerSettings> clientCompositionLayers;
Romain Guy88d37dd2017-05-26 17:57:05 -07005912
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005913 // assume that bounds are never offset, and that they are the same as the
5914 // buffer bounds.
5915 clientCompositionDisplay.physicalDisplay = Rect(reqWidth, reqHeight);
Alec Mouriadb75f42019-03-28 21:42:24 -07005916 clientCompositionDisplay.clip = sourceCrop;
Lloyd Pique7e06e7f2019-03-15 18:36:44 -07005917 clientCompositionDisplay.globalTransform = transform.asMatrix4();
Alec Mouriadb75f42019-03-28 21:42:24 -07005918
5919 // Now take into account the rotation flag. We append a transform that
5920 // rotates the layer stack about the origin, then translate by buffer
5921 // boundaries to be in the right quadrant.
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005922 mat4 rotMatrix;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005923 int displacementX = 0;
5924 int displacementY = 0;
5925 float rot90InRadians = 2.0f * static_cast<float>(M_PI) / 4.0f;
5926 switch (rotation) {
5927 case ui::Transform::ROT_90:
5928 rotMatrix = mat4::rotate(rot90InRadians, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005929 displacementX = renderArea.getBounds().getHeight();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005930 break;
5931 case ui::Transform::ROT_180:
5932 rotMatrix = mat4::rotate(rot90InRadians * 2.0f, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005933 displacementY = renderArea.getBounds().getWidth();
5934 displacementX = renderArea.getBounds().getHeight();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005935 break;
5936 case ui::Transform::ROT_270:
5937 rotMatrix = mat4::rotate(rot90InRadians * 3.0f, vec3(0, 0, 1));
Alec Mouriadb75f42019-03-28 21:42:24 -07005938 displacementY = renderArea.getBounds().getWidth();
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005939 break;
5940 default:
5941 break;
5942 }
Alec Mouriadb75f42019-03-28 21:42:24 -07005943
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005944 // We need to transform the clipping window into the right spot.
5945 // First, rotate the clipping rectangle by the rotation hint to get the
5946 // right orientation
5947 const vec4 clipTL = vec4(sourceCrop.left, sourceCrop.top, 0, 1);
5948 const vec4 clipBR = vec4(sourceCrop.right, sourceCrop.bottom, 0, 1);
5949 const vec4 rotClipTL = rotMatrix * clipTL;
5950 const vec4 rotClipBR = rotMatrix * clipBR;
5951 const int newClipLeft = std::min(rotClipTL[0], rotClipBR[0]);
5952 const int newClipTop = std::min(rotClipTL[1], rotClipBR[1]);
5953 const int newClipRight = std::max(rotClipTL[0], rotClipBR[0]);
5954 const int newClipBottom = std::max(rotClipTL[1], rotClipBR[1]);
5955
5956 // Now reposition the clipping rectangle with the displacement vector
5957 // computed above.
5958 const mat4 displacementMat = mat4::translate(vec4(displacementX, displacementY, 0, 1));
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005959 clientCompositionDisplay.clip =
5960 Rect(newClipLeft + displacementX, newClipTop + displacementY,
5961 newClipRight + displacementX, newClipBottom + displacementY);
5962
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005963 mat4 clipTransform = displacementMat * rotMatrix;
Alec Mouriadb75f42019-03-28 21:42:24 -07005964 clientCompositionDisplay.globalTransform =
5965 clipTransform * clientCompositionDisplay.globalTransform;
5966
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005967 clientCompositionDisplay.outputDataspace = renderArea.getReqDataSpace();
5968 clientCompositionDisplay.maxLuminance = DisplayDevice::sDefaultMaxLumiance;
Mathias Agopian180f10d2013-04-10 22:55:41 -07005969
chaviw50da5042018-04-09 13:49:37 -07005970 const float alpha = RenderArea::getCaptureFillValue(renderArea.getCaptureFill());
Mathias Agopian180f10d2013-04-10 22:55:41 -07005971
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005972 renderengine::LayerSettings fillLayer;
5973 fillLayer.source.buffer.buffer = nullptr;
5974 fillLayer.source.solidColor = half3(0.0, 0.0, 0.0);
5975 fillLayer.geometry.boundaries = FloatRect(0.0, 0.0, 1.0, 1.0);
5976 fillLayer.alpha = half(alpha);
5977 clientCompositionLayers.push_back(fillLayer);
5978
5979 Region clearRegion = Region::INVALID_REGION;
chaviwa76b2712017-09-20 12:02:26 -07005980 traverseLayers([&](Layer* layer) {
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005981 renderengine::LayerSettings layerSettings;
5982 bool prepared = layer->prepareClientLayer(renderArea, useIdentityTransform, clearRegion,
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005983 false, layerSettings);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005984 if (prepared) {
5985 clientCompositionLayers.push_back(layerSettings);
5986 }
chaviwa76b2712017-09-20 12:02:26 -07005987 });
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005988
5989 clientCompositionDisplay.clearRegion = clearRegion;
Alec Mouri6338c9d2019-02-07 16:57:51 -08005990 // Use an empty fence for the buffer fence, since we just created the buffer so
5991 // there is no need for synchronization with the GPU.
5992 base::unique_fd bufferFence;
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005993 base::unique_fd drawFence;
Peiyong Lin8f28a1d2019-02-07 17:25:12 -08005994 getRenderEngine().useProtectedContext(false);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005995 getRenderEngine().drawLayers(clientCompositionDisplay, clientCompositionLayers, buffer,
Alec Mourife0d72b2019-03-21 14:05:56 -07005996 /*useFramebufferCache=*/false, std::move(bufferFence), &drawFence);
Alec Mourie7d1d4a2019-02-05 01:13:46 +00005997
5998 *outSyncFd = drawFence.release();
Mathias Agopian180f10d2013-04-10 22:55:41 -07005999}
6000
chaviwa76b2712017-09-20 12:02:26 -07006001status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
6002 TraverseLayersFunction traverseLayers,
6003 ANativeWindowBuffer* buffer,
Robert Carr108b2c72019-04-02 16:32:58 -07006004 bool useIdentityTransform, bool forSystem,
6005 int* outSyncFd, bool& outCapturedSecureLayers) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08006006 ATRACE_CALL();
6007
chaviwa76b2712017-09-20 12:02:26 -07006008 traverseLayers([&](Layer* layer) {
Robert Carr108b2c72019-04-02 16:32:58 -07006009 outCapturedSecureLayers =
6010 outCapturedSecureLayers || (layer->isVisible() && layer->isSecure());
chaviwa76b2712017-09-20 12:02:26 -07006011 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08006012
Robert Carr03480e22018-01-04 16:02:06 -08006013 // We allow the system server to take screenshots of secure layers for
6014 // use in situations like the Screen-rotation animation and place
6015 // the impetus on WindowManager to not persist them.
Robert Carr108b2c72019-04-02 16:32:58 -07006016 if (outCapturedSecureLayers && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08006017 ALOGW("FB is protected: PERMISSION_DENIED");
6018 return PERMISSION_DENIED;
6019 }
Alec Mourie7d1d4a2019-02-05 01:13:46 +00006020 renderScreenImplLocked(renderArea, traverseLayers, buffer, useIdentityTransform, outSyncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07006021 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07006022}
6023
chaviw95ef3c42019-02-14 10:55:09 -08006024void SurfaceFlinger::setInputWindowsFinished() {
6025 Mutex::Autolock _l(mStateLock);
6026
6027 mPendingSyncInputWindows = false;
6028 mTransactionCV.broadcast();
6029}
chaviw5f21a5e2019-02-14 10:00:34 -08006030
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07006031// ---------------------------------------------------------------------------
6032
Dan Stoza412903f2017-04-27 13:42:17 -07006033void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
6034 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07006035}
6036
Dan Stoza412903f2017-04-27 13:42:17 -07006037void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
6038 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07006039}
6040
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006041void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& display,
chaviwa76b2712017-09-20 12:02:26 -07006042 const LayerVector::Visitor& visitor) {
6043 // We loop through the first level of layers without traversing,
chaviw0e3479f2018-09-10 16:49:30 -07006044 // as we need to determine which layers belong to the requested display.
chaviwa76b2712017-09-20 12:02:26 -07006045 for (const auto& layer : mDrawingState.layersSortedByZ) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006046 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
chaviwa76b2712017-09-20 12:02:26 -07006047 continue;
6048 }
Chia-I Wuec2d9852017-11-21 09:21:01 -08006049 // relative layers are traversed in Layer::traverseInZOrder
chaviwa76b2712017-09-20 12:02:26 -07006050 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Dominik Laskowskieecd6592018-05-29 10:25:41 -07006051 if (!layer->belongsToDisplay(display->getLayerStack(), false)) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01006052 return;
6053 }
chaviwa76b2712017-09-20 12:02:26 -07006054 if (!layer->isVisible()) {
6055 return;
6056 }
6057 visitor(layer);
6058 });
6059 }
6060}
6061
Dominik Laskowski22488f62019-03-28 09:53:04 -07006062void SurfaceFlinger::setAllowedDisplayConfigsInternal(const sp<DisplayDevice>& display,
6063 const std::vector<int32_t>& allowedConfigs) {
6064 if (!display->isPrimary()) {
Ady Abraham838de062019-02-04 10:24:03 -08006065 return;
6066 }
6067
6068 ALOGV("Updating allowed configs");
Dominik Laskowski22488f62019-03-28 09:53:04 -07006069 mAllowedDisplayConfigs = DisplayConfigs(allowedConfigs.begin(), allowedConfigs.end());
Ady Abraham838de062019-02-04 10:24:03 -08006070
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006071 // Set the highest allowed config by iterating backwards on available refresh rates
Dominik Laskowski22488f62019-03-28 09:53:04 -07006072 const auto& refreshRates = mRefreshRateConfigs.getRefreshRates();
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006073 for (auto iter = refreshRates.crbegin(); iter != refreshRates.crend(); ++iter) {
Dominik Laskowski22488f62019-03-28 09:53:04 -07006074 if (iter->second && isDisplayConfigAllowed(iter->second->configId)) {
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006075 ALOGV("switching to config %d", iter->second->configId);
Dominik Laskowski22488f62019-03-28 09:53:04 -07006076 setDesiredActiveConfig(
6077 {iter->first, iter->second->configId, Scheduler::ConfigEvent::Changed});
Ady Abrahamde3b67b2019-03-25 16:38:10 -07006078 break;
Ady Abraham97d04232019-03-05 19:48:12 -08006079 }
6080 }
Ady Abraham838de062019-02-04 10:24:03 -08006081}
6082
Dominik Laskowski22488f62019-03-28 09:53:04 -07006083status_t SurfaceFlinger::setAllowedDisplayConfigs(const sp<IBinder>& displayToken,
Ady Abraham838de062019-02-04 10:24:03 -08006084 const std::vector<int32_t>& allowedConfigs) {
6085 ATRACE_CALL();
6086
Dominik Laskowski22488f62019-03-28 09:53:04 -07006087 if (!displayToken || allowedConfigs.empty()) {
Ady Abraham838de062019-02-04 10:24:03 -08006088 return BAD_VALUE;
6089 }
6090
Ady Abraham34392f72019-04-10 11:29:27 -07006091 if (mDebugDisplayConfigSetByBackdoor) {
6092 // ignore this request as config is overridden by backdoor
6093 return NO_ERROR;
6094 }
6095
Ady Abraham838de062019-02-04 10:24:03 -08006096 postMessageSync(new LambdaMessage([&]() NO_THREAD_SAFETY_ANALYSIS {
Dominik Laskowski22488f62019-03-28 09:53:04 -07006097 const auto display = getDisplayDeviceLocked(displayToken);
6098 if (!display) {
6099 ALOGE("Attempt to set allowed display configs for invalid display token %p",
6100 displayToken.get());
6101 } else if (display->isVirtual()) {
6102 ALOGW("Attempt to set allowed display configs for virtual display");
6103 } else {
6104 setAllowedDisplayConfigsInternal(display, allowedConfigs);
6105 }
Ady Abraham838de062019-02-04 10:24:03 -08006106 }));
Dominik Laskowski22488f62019-03-28 09:53:04 -07006107
Ady Abraham838de062019-02-04 10:24:03 -08006108 return NO_ERROR;
6109}
6110
Dominik Laskowski22488f62019-03-28 09:53:04 -07006111status_t SurfaceFlinger::getAllowedDisplayConfigs(const sp<IBinder>& displayToken,
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006112 std::vector<int32_t>* outAllowedConfigs) {
6113 ATRACE_CALL();
6114
Dominik Laskowski22488f62019-03-28 09:53:04 -07006115 if (!displayToken || !outAllowedConfigs) {
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006116 return BAD_VALUE;
6117 }
6118
Dominik Laskowski22488f62019-03-28 09:53:04 -07006119 Mutex::Autolock lock(mStateLock);
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006120
Dominik Laskowski4f1dd8c2019-04-17 15:54:30 -07006121 const auto display = getDisplayDeviceLocked(displayToken);
6122 if (!display) {
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006123 return NAME_NOT_FOUND;
6124 }
6125
Dominik Laskowski4f1dd8c2019-04-17 15:54:30 -07006126 if (display->isPrimary()) {
6127 outAllowedConfigs->assign(mAllowedDisplayConfigs.begin(), mAllowedDisplayConfigs.end());
6128 }
6129
Ady Abrahamd9b3ea62019-02-26 14:08:03 -08006130 return NO_ERROR;
6131}
6132
Dominik Laskowski9dab3432019-03-27 13:21:10 -07006133void SurfaceFlinger::SetInputWindowsListener::onSetInputWindowsFinished() {
chaviw291d88a2019-02-14 10:33:58 -08006134 mFlinger->setInputWindowsFinished();
6135}
6136
Robert Carrc0df3122019-04-11 13:18:21 -07006137sp<Layer> SurfaceFlinger::fromHandle(const sp<IBinder>& handle) {
6138 BBinder *b = handle->localBinder();
6139 if (b == nullptr) {
6140 return nullptr;
6141 }
6142 auto it = mLayersByLocalBinderToken.find(b);
6143 if (it != mLayersByLocalBinderToken.end()) {
6144 return it->second.promote();
6145 }
6146 return nullptr;
6147}
6148
Dominik Laskowski9dab3432019-03-27 13:21:10 -07006149} // namespace android
Lloyd Pique074e8122018-07-26 12:57:23 -07006150
Mathias Agopian3f844832013-08-07 21:24:32 -07006151#if defined(__gl_h_)
6152#error "don't include gl/gl.h in this file"
6153#endif
6154
6155#if defined(__gl2_h_)
6156#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08006157#endif