blob: ea43c584acad9d65ecc1a32441150b074d63675d [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
Dan Stoza9e56aa02015-11-02 13:00:03 -080017// #define LOG_NDEBUG 0
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080018#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020#include <stdint.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070021#include <sys/types.h>
Romain Guy0147a172017-06-01 13:53:56 -070022#include <algorithm>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023#include <errno.h>
24#include <math.h>
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -070025#include <mutex>
Keun young Park63f165f2012-08-31 10:53:36 -070026#include <dlfcn.h>
Greg Hackmann86efcc02014-03-07 12:44:02 -080027#include <inttypes.h>
Jesse Hallb154c422014-07-13 12:47:02 -070028#include <stdatomic.h>
Dan Stoza2b6d38e2017-06-01 16:40:30 -070029#include <optional>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070030
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080031#include <cutils/properties.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070032#include <log/log.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/IPCThreadState.h>
35#include <binder/IServiceManager.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070036#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070037
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080038#include <dvr/vr_flinger.h>
39
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -060040#include <ui/DebugUtils.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070041#include <ui/DisplayInfo.h>
Lajos Molnar67d8bd62014-09-11 14:58:45 -070042#include <ui/DisplayStatInfo.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070043
Jamie Gennis1a4d8832012-08-02 20:11:05 -070044#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070045#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070046#include <gui/IDisplayEventConnection.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080047#include <gui/LayerDebugInfo.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080048#include <gui/Surface.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070049
50#include <ui/GraphicBufferAllocator.h>
51#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070052#include <ui/UiConfig.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080053
Mathias Agopiancde87a32012-09-13 14:09:01 -070054#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055#include <utils/String8.h>
56#include <utils/String16.h>
57#include <utils/StopWatch.h>
Yusuke Sato0a688f52015-07-30 23:05:39 -070058#include <utils/Timers.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080059#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060
Mathias Agopian921e6ac2012-07-23 23:11:29 -070061#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070062#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063
Mathias Agopian3e25fd82013-04-22 17:52:16 +020064#include "Client.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020066#include "Colorizer.h"
Mathias Agopian90ac7992012-02-25 18:48:35 -080067#include "DdmConnection.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070068#include "DisplayDevice.h"
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070069#include "DispSync.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070070#include "EventControlThread.h"
Mathias Agopiand0566bc2011-11-17 17:49:17 -080071#include "EventThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080072#include "Layer.h"
David Sodman0c69cad2017-08-21 12:12:51 -070073#include "BufferLayer.h"
Robert Carr1f0a16a2016-10-24 16:27:39 -070074#include "LayerVector.h"
chaviw13fdc492017-06-27 12:40:18 -070075#include "ColorLayer.h"
Robert Carr1db73f62016-12-21 12:58:51 -080076#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080078
Steven Thomasb02664d2017-07-26 18:48:28 -070079#include "DisplayHardware/ComposerHal.h"
Mathias Agopiana4912602012-07-12 14:25:33 -070080#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070081#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070082#include "DisplayHardware/VirtualDisplaySurface.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083
Mathias Agopianff2ed702013-09-01 21:36:12 -070084#include "Effects/Daltonizer.h"
85
Mathias Agopian875d8e12013-06-07 15:35:48 -070086#include "RenderEngine/RenderEngine.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070087#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -070088
Jiyong Park4b20c2e2017-01-14 19:45:11 +090089#include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h>
Jaesoo Lee43518572017-01-23 19:03:16 +090090#include <configstore/Utils.h>
Jiyong Park4b20c2e2017-01-14 19:45:11 +090091
chaviw1d044282017-09-27 12:19:28 -070092#include <layerproto/LayerProtoParser.h>
93
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094#define DISPLAY_COUNT 1
95
Mathias Agopianfee2b462013-07-03 12:34:01 -070096/*
97 * DEBUG_SCREENSHOTS: set to true to check that screenshots are not all
98 * black pixels.
99 */
100#define DEBUG_SCREENSHOTS false
101
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700103
Jaesoo Lee43518572017-01-23 19:03:16 +0900104using namespace android::hardware::configstore;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900105using namespace android::hardware::configstore::V1_0;
106
Steven Thomasb02664d2017-07-26 18:48:28 -0700107namespace {
108class ConditionalLock {
109public:
110 ConditionalLock(Mutex& mutex, bool lock) : mMutex(mutex), mLocked(lock) {
111 if (lock) {
112 mMutex.lock();
113 }
114 }
115 ~ConditionalLock() { if (mLocked) mMutex.unlock(); }
116private:
117 Mutex& mMutex;
118 bool mLocked;
119};
120} // namespace anonymous
121
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122// ---------------------------------------------------------------------------
123
Mathias Agopian99b49842011-06-27 16:05:52 -0700124const String16 sHardwareTest("android.permission.HARDWARE_TEST");
125const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
126const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
127const String16 sDump("android.permission.DUMP");
128
129// ---------------------------------------------------------------------------
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800130int64_t SurfaceFlinger::vsyncPhaseOffsetNs;
131int64_t SurfaceFlinger::sfVsyncPhaseOffsetNs;
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700132int64_t SurfaceFlinger::dispSyncPresentTimeOffset;
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700133bool SurfaceFlinger::useHwcForRgbToYuv;
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800134uint64_t SurfaceFlinger::maxVirtualDisplaySize;
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800135bool SurfaceFlinger::hasSyncFramework;
Steven Thomas050b2c82017-03-06 11:45:16 -0800136bool SurfaceFlinger::useVrFlinger;
Fabien Sanglard1971b632017-03-10 14:50:03 -0800137int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers;
Lloyd Piquec5208312018-01-08 17:59:02 -0800138// TODO(courtneygo): Rename hasWideColorDisplay to clarify its actual meaning.
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600139bool SurfaceFlinger::hasWideColorDisplay;
Mathias Agopian99b49842011-06-27 16:05:52 -0700140
Kalle Raitaa099a242017-01-11 11:17:29 -0800141
142std::string getHwcServiceName() {
143 char value[PROPERTY_VALUE_MAX] = {};
144 property_get("debug.sf.hwc_service_name", value, "default");
145 ALOGI("Using HWComposer service: '%s'", value);
146 return std::string(value);
147}
148
149bool useTrebleTestingOverride() {
150 char value[PROPERTY_VALUE_MAX] = {};
151 property_get("debug.sf.treble_testing_override", value, "false");
152 ALOGI("Treble testing override: '%s'", value);
153 return std::string(value) == "true";
154}
155
David Sodmanbc815282017-11-05 18:57:52 -0800156SurfaceFlingerBE::SurfaceFlingerBE()
157 : mHwcServiceName(getHwcServiceName()),
158 mRenderEngine(nullptr),
David Sodman4a36e932017-11-07 14:29:47 -0800159 mFrameBuckets(),
160 mTotalTime(0),
161 mLastSwapTime(0),
David Sodmanbc815282017-11-05 18:57:52 -0800162 mComposerSequenceId(0) {
163}
164
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800165SurfaceFlinger::SurfaceFlinger()
Mathias Agopian4f4f0942013-08-19 17:26:18 -0700166 : BnSurfaceComposer(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800167 mTransactionFlags(0),
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700168 mTransactionPending(false),
169 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700170 mLayersRemoved(false),
Robert Carr1f0a16a2016-10-24 16:27:39 -0700171 mLayersAdded(false),
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700172 mRepaintEverything(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800173 mBootTime(systemTime()),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800174 mBuiltinDisplays(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800175 mVisibleRegionsDirty(false),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800176 mGeometryInvalid(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800177 mAnimCompositionPending(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800178 mDebugRegion(0),
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700179 mDebugDDMS(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -0700180 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700181 mDebugDisableTransformHint(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700182 mDebugInSwapBuffers(0),
183 mLastSwapBufferTime(0),
184 mDebugInTransaction(0),
185 mLastTransactionTime(0),
Mathias Agopianff2ed702013-09-01 21:36:12 -0700186 mBootFinished(false),
Dan Stozaee44edd2015-03-23 15:50:23 -0700187 mForceFullDamage(false),
Robert Carr0d480722017-01-10 16:42:54 -0800188 mInterceptor(this),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000189 mPrimaryDispSync("PrimaryDispSync"),
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700190 mPrimaryHWVsyncEnabled(false),
Jesse Hall948fe0c2013-10-14 12:56:09 -0700191 mHWVsyncAvailable(false),
Romain Guya9638732017-06-01 12:05:21 -0700192 mHasColorMatrix(false),
Dan Stozab90cf072015-03-05 11:05:59 -0800193 mHasPoweredOff(false),
Steven Thomas050b2c82017-03-06 11:45:16 -0800194 mNumLayers(0),
Steven Thomasb02664d2017-07-26 18:48:28 -0700195 mVrFlingerRequestsDisplay(false),
David Sodman105b7dc2017-11-04 20:28:14 -0700196 mMainThreadId(std::this_thread::get_id())
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800197{
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800198 ALOGI("SurfaceFlinger is starting");
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800199
200 vsyncPhaseOffsetNs = getInt64< ISurfaceFlingerConfigs,
201 &ISurfaceFlingerConfigs::vsyncEventPhaseOffsetNs>(1000000);
202
203 sfVsyncPhaseOffsetNs = getInt64< ISurfaceFlingerConfigs,
204 &ISurfaceFlingerConfigs::vsyncSfEventPhaseOffsetNs>(1000000);
205
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800206 hasSyncFramework = getBool< ISurfaceFlingerConfigs,
207 &ISurfaceFlingerConfigs::hasSyncFramework>(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800208
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700209 dispSyncPresentTimeOffset = getInt64< ISurfaceFlingerConfigs,
210 &ISurfaceFlingerConfigs::presentTimeOffsetFromVSyncNs>(0);
211
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700212 useHwcForRgbToYuv = getBool< ISurfaceFlingerConfigs,
213 &ISurfaceFlingerConfigs::useHwcForRGBtoYUV>(false);
214
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800215 maxVirtualDisplaySize = getUInt64<ISurfaceFlingerConfigs,
216 &ISurfaceFlingerConfigs::maxVirtualDisplaySize>(0);
217
Steven Thomas050b2c82017-03-06 11:45:16 -0800218 // Vr flinger is only enabled on Daydream ready devices.
219 useVrFlinger = getBool< ISurfaceFlingerConfigs,
220 &ISurfaceFlingerConfigs::useVrFlinger>(false);
221
Fabien Sanglard1971b632017-03-10 14:50:03 -0800222 maxFrameBufferAcquiredBuffers = getInt64< ISurfaceFlingerConfigs,
223 &ISurfaceFlingerConfigs::maxFrameBufferAcquiredBuffers>(2);
224
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600225 hasWideColorDisplay =
226 getBool<ISurfaceFlingerConfigs, &ISurfaceFlingerConfigs::hasWideColorDisplay>(false);
227
David Sodman99974d22017-11-28 12:04:33 -0800228 mPrimaryDispSync.init(SurfaceFlinger::hasSyncFramework, SurfaceFlinger::dispSyncPresentTimeOffset);
Saurabh Shahf4174532017-07-13 10:45:07 -0700229
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230 // debugging stuff...
231 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700232
Mathias Agopianb4b17302013-03-20 18:36:41 -0700233 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700234 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700235
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236 property_get("debug.sf.showupdates", value, "0");
237 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700238
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700239 property_get("debug.sf.ddms", value, "0");
240 mDebugDDMS = atoi(value);
241 if (mDebugDDMS) {
Keun young Park63f165f2012-08-31 10:53:36 -0700242 if (!startDdmConnection()) {
243 // start failed, and DDMS debugging not enabled
244 mDebugDDMS = 0;
245 }
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700246 }
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700247 ALOGI_IF(mDebugRegion, "showupdates enabled");
248 ALOGI_IF(mDebugDDMS, "DDMS debugging enabled");
Dan Stozac5da2712016-07-20 15:38:12 -0700249
250 property_get("debug.sf.disable_backpressure", value, "0");
251 mPropagateBackpressure = !atoi(value);
252 ALOGI_IF(!mPropagateBackpressure, "Disabling backpressure propagation");
Dan Stoza8cf150a2016-08-02 10:27:31 -0700253
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800254 property_get("debug.sf.enable_hwc_vds", value, "0");
255 mUseHwcVirtualDisplays = atoi(value);
256 ALOGI_IF(!mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800257
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800258 property_get("ro.sf.disable_triple_buffer", value, "1");
259 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800260 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700261
Romain Guy11d63f42017-07-20 12:47:14 -0700262 // We should be reading 'persist.sys.sf.color_saturation' here
263 // but since /data may be encrypted, we need to wait until after vold
264 // comes online to attempt to read the property. The property is
265 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800266
267 if (useTrebleTestingOverride()) {
268 // Without the override SurfaceFlinger cannot connect to HIDL
269 // services that are not listed in the manifests. Considered
270 // deriving the setting from the set service name, but it
271 // would be brittle if the name that's not 'default' is used
272 // for production purposes later on.
273 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
274 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800275}
276
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800277void SurfaceFlinger::onFirstRef()
278{
279 mEventQueue.init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800280}
281
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800282SurfaceFlinger::~SurfaceFlinger()
283{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800284}
285
Dan Stozac7014012014-02-14 15:03:43 -0800286void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800287{
288 // the window manager died on us. prepare its eulogy.
289
Andy McFadden13a082e2012-08-24 10:16:42 -0700290 // restore initial conditions (default device unblank, etc)
291 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800292
293 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700294 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800295}
296
Robert Carr1db73f62016-12-21 12:58:51 -0800297static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700298 status_t err = client->initCheck();
299 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800300 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800301 }
Robert Carr1db73f62016-12-21 12:58:51 -0800302 return nullptr;
303}
304
305sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
306 return initClient(new Client(this));
307}
308
309sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection(
310 const sp<IGraphicBufferProducer>& gbp) {
311 if (authenticateSurfaceTexture(gbp) == false) {
312 return nullptr;
313 }
314 const auto& layer = (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
315 if (layer == nullptr) {
316 return nullptr;
317 }
318
319 return initClient(new Client(this, layer));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800320}
321
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700322sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
323 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700324{
325 class DisplayToken : public BBinder {
326 sp<SurfaceFlinger> flinger;
327 virtual ~DisplayToken() {
328 // no more references, this display must be terminated
329 Mutex::Autolock _l(flinger->mStateLock);
330 flinger->mCurrentState.displays.removeItem(this);
331 flinger->setTransactionFlags(eDisplayTransactionNeeded);
332 }
333 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700334 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700335 : flinger(flinger) {
336 }
337 };
338
339 sp<BBinder> token = new DisplayToken(this);
340
341 Mutex::Autolock _l(mStateLock);
Pablo Ceballos53390e12015-08-04 11:25:59 -0700342 DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL, secure);
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700343 info.displayName = displayName;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700344 mCurrentState.displays.add(token, info);
Irvelffc9efc2016-07-27 15:16:37 -0700345 mInterceptor.saveDisplayCreation(info);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700346 return token;
347}
348
Jesse Hall6c913be2013-08-08 12:15:49 -0700349void SurfaceFlinger::destroyDisplay(const sp<IBinder>& display) {
350 Mutex::Autolock _l(mStateLock);
351
352 ssize_t idx = mCurrentState.displays.indexOfKey(display);
353 if (idx < 0) {
354 ALOGW("destroyDisplay: invalid display token");
355 return;
356 }
357
358 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
359 if (!info.isVirtualDisplay()) {
360 ALOGE("destroyDisplay called for non-virtual display");
361 return;
362 }
Irvelffc9efc2016-07-27 15:16:37 -0700363 mInterceptor.saveDisplayDeletion(info.displayId);
Jesse Hall6c913be2013-08-08 12:15:49 -0700364 mCurrentState.displays.removeItemsAt(idx);
365 setTransactionFlags(eDisplayTransactionNeeded);
366}
367
Mathias Agopiane57f2922012-08-09 16:29:12 -0700368sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700369 if (uint32_t(id) >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700370 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
Peiyong Lin566a3b42018-01-09 18:22:43 -0800371 return nullptr;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700372 }
Jesse Hall692c7232012-11-08 15:41:56 -0800373 return mBuiltinDisplays[id];
Mathias Agopiane57f2922012-08-09 16:29:12 -0700374}
375
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800376void SurfaceFlinger::bootFinished()
377{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700378 if (mStartPropertySetThread->join() != NO_ERROR) {
379 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800380 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800381 const nsecs_t now = systemTime();
382 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000383 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700384
385 // wait patiently for the window manager death
386 const String16 name("window");
387 sp<IBinder> window(defaultServiceManager()->getService(name));
388 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700389 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700390 }
391
Steven Thomas050b2c82017-03-06 11:45:16 -0800392 if (mVrFlinger) {
393 mVrFlinger->OnBootFinished();
394 }
395
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700396 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700397 // formerly we would just kill the process, but we now ask it to exit so it
398 // can choose where to stop the animation.
399 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700400
401 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
402 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
403 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700404
Thierry Strudel2924d012017-08-14 15:19:37 -0700405 sp<LambdaMessage> readProperties = new LambdaMessage([&]() {
Romain Guy11d63f42017-07-20 12:47:14 -0700406 readPersistentProperties();
407 });
Thierry Strudel2924d012017-08-14 15:19:37 -0700408 postMessageAsync(readProperties);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800409}
410
Mathias Agopian3f844832013-08-07 21:24:32 -0700411void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700412 class MessageDestroyGLTexture : public MessageBase {
Lloyd Pique144e1162017-12-20 16:44:52 -0800413 RE::RenderEngine& engine;
Mathias Agopian3f844832013-08-07 21:24:32 -0700414 uint32_t texture;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700415 public:
Lloyd Pique144e1162017-12-20 16:44:52 -0800416 MessageDestroyGLTexture(RE::RenderEngine& engine, uint32_t texture)
417 : engine(engine), texture(texture) {}
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700418 virtual bool handler() {
Mathias Agopian3f844832013-08-07 21:24:32 -0700419 engine.deleteTextures(1, &texture);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700420 return true;
421 }
422 };
Mathias Agopian3f844832013-08-07 21:24:32 -0700423 postMessageAsync(new MessageDestroyGLTexture(getRenderEngine(), texture));
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700424}
425
Lloyd Piquee83f9312018-02-01 12:53:17 -0800426class DispSyncSource final : public VSyncSource, private DispSync::Callback {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700427public:
Andy McFadden5167ec62014-05-22 13:08:43 -0700428 DispSyncSource(DispSync* dispSync, nsecs_t phaseOffset, bool traceVsync,
Tim Murray4a4e4a22016-04-19 16:29:23 +0000429 const char* name) :
430 mName(name),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700431 mValue(0),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700432 mTraceVsync(traceVsync),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000433 mVsyncOnLabel(String8::format("VsyncOn-%s", name)),
434 mVsyncEventLabel(String8::format("VSYNC-%s", name)),
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700435 mDispSync(dispSync),
436 mCallbackMutex(),
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700437 mVsyncMutex(),
438 mPhaseOffset(phaseOffset),
439 mEnabled(false) {}
Mathias Agopiana4912602012-07-12 14:25:33 -0700440
Lloyd Piquee83f9312018-02-01 12:53:17 -0800441 ~DispSyncSource() override = default;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700442
Lloyd Piquee83f9312018-02-01 12:53:17 -0800443 void setVSyncEnabled(bool enable) override {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700444 Mutex::Autolock lock(mVsyncMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700445 if (enable) {
Tim Murray4a4e4a22016-04-19 16:29:23 +0000446 status_t err = mDispSync->addEventListener(mName, mPhaseOffset,
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700447 static_cast<DispSync::Callback*>(this));
448 if (err != NO_ERROR) {
449 ALOGE("error registering vsync callback: %s (%d)",
450 strerror(-err), err);
451 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700452 //ATRACE_INT(mVsyncOnLabel.string(), 1);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700453 } else {
454 status_t err = mDispSync->removeEventListener(
455 static_cast<DispSync::Callback*>(this));
456 if (err != NO_ERROR) {
457 ALOGE("error unregistering vsync callback: %s (%d)",
458 strerror(-err), err);
459 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700460 //ATRACE_INT(mVsyncOnLabel.string(), 0);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700461 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700462 mEnabled = enable;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700463 }
464
Lloyd Piquee83f9312018-02-01 12:53:17 -0800465 void setCallback(VSyncSource::Callback* callback) override{
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700466 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700467 mCallback = callback;
468 }
469
Lloyd Piquee83f9312018-02-01 12:53:17 -0800470 void setPhaseOffset(nsecs_t phaseOffset) override {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700471 Mutex::Autolock lock(mVsyncMutex);
472
473 // Normalize phaseOffset to [0, period)
474 auto period = mDispSync->getPeriod();
475 phaseOffset %= period;
476 if (phaseOffset < 0) {
477 // If we're here, then phaseOffset is in (-period, 0). After this
478 // operation, it will be in (0, period)
479 phaseOffset += period;
480 }
481 mPhaseOffset = phaseOffset;
482
483 // If we're not enabled, we don't need to mess with the listeners
484 if (!mEnabled) {
485 return;
486 }
487
488 // Remove the listener with the old offset
489 status_t err = mDispSync->removeEventListener(
490 static_cast<DispSync::Callback*>(this));
491 if (err != NO_ERROR) {
492 ALOGE("error unregistering vsync callback: %s (%d)",
493 strerror(-err), err);
494 }
495
496 // Add a listener with the new offset
Tim Murray4a4e4a22016-04-19 16:29:23 +0000497 err = mDispSync->addEventListener(mName, mPhaseOffset,
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700498 static_cast<DispSync::Callback*>(this));
499 if (err != NO_ERROR) {
500 ALOGE("error registering vsync callback: %s (%d)",
501 strerror(-err), err);
502 }
503 }
504
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700505private:
506 virtual void onDispSyncEvent(nsecs_t when) {
Lloyd Piquee83f9312018-02-01 12:53:17 -0800507 VSyncSource::Callback* callback;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700508 {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700509 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700510 callback = mCallback;
511
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700512 if (mTraceVsync) {
513 mValue = (mValue + 1) % 2;
Andy McFadden5167ec62014-05-22 13:08:43 -0700514 ATRACE_INT(mVsyncEventLabel.string(), mValue);
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700515 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700516 }
517
Peiyong Lin566a3b42018-01-09 18:22:43 -0800518 if (callback != nullptr) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700519 callback->onVSyncEvent(when);
520 }
521 }
522
Tim Murray4a4e4a22016-04-19 16:29:23 +0000523 const char* const mName;
524
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700525 int mValue;
526
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700527 const bool mTraceVsync;
Andy McFadden5167ec62014-05-22 13:08:43 -0700528 const String8 mVsyncOnLabel;
529 const String8 mVsyncEventLabel;
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700530
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700531 DispSync* mDispSync;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700532
533 Mutex mCallbackMutex; // Protects the following
Lloyd Piquee83f9312018-02-01 12:53:17 -0800534 VSyncSource::Callback* mCallback = nullptr;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700535
536 Mutex mVsyncMutex; // Protects the following
537 nsecs_t mPhaseOffset;
538 bool mEnabled;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700539};
540
Lloyd Piquee83f9312018-02-01 12:53:17 -0800541class InjectVSyncSource final : public VSyncSource {
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700542public:
Lloyd Piquee83f9312018-02-01 12:53:17 -0800543 InjectVSyncSource() = default;
544 ~InjectVSyncSource() override = default;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700545
Lloyd Piquee83f9312018-02-01 12:53:17 -0800546 void setCallback(VSyncSource::Callback* callback) override {
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700547 std::lock_guard<std::mutex> lock(mCallbackMutex);
548 mCallback = callback;
549 }
550
Lloyd Piquee83f9312018-02-01 12:53:17 -0800551 void onInjectSyncEvent(nsecs_t when) {
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700552 std::lock_guard<std::mutex> lock(mCallbackMutex);
Chia-I Wu90f669f2017-10-05 14:24:41 -0700553 if (mCallback) {
554 mCallback->onVSyncEvent(when);
555 }
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700556 }
557
Lloyd Piquee83f9312018-02-01 12:53:17 -0800558 void setVSyncEnabled(bool) override {}
559 void setPhaseOffset(nsecs_t) override {}
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700560
561private:
562 std::mutex mCallbackMutex; // Protects the following
Lloyd Piquee83f9312018-02-01 12:53:17 -0800563 VSyncSource::Callback* mCallback = nullptr;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700564};
565
Wei Wangf9b05ee2017-07-19 20:59:39 -0700566// Do not call property_set on main thread which will be blocked by init
567// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700568void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700569 ALOGI( "SurfaceFlinger's main thread ready to run. "
570 "Initializing graphics H/W...");
571
Thierry Strudel2924d012017-08-14 15:19:37 -0700572 ALOGI("Phase offest NS: %" PRId64 "", vsyncPhaseOffsetNs);
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900573
Steven Thomasb02664d2017-07-26 18:48:28 -0700574 Mutex::Autolock _l(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800575
Steven Thomasb02664d2017-07-26 18:48:28 -0700576 // start the EventThread
Lloyd Pique0fcde1b2017-12-20 16:50:21 -0800577 mEventThreadSource =
578 std::make_unique<DispSyncSource>(&mPrimaryDispSync, SurfaceFlinger::vsyncPhaseOffsetNs,
579 true, "app");
580 mEventThread = std::make_unique<impl::EventThread>(mEventThreadSource.get(), *this, false,
581 "appEventThread");
582 mSfEventThreadSource =
583 std::make_unique<DispSyncSource>(&mPrimaryDispSync,
584 SurfaceFlinger::sfVsyncPhaseOffsetNs, true, "sf");
585 mSFEventThread = std::make_unique<impl::EventThread>(mSfEventThreadSource.get(), *this, true,
586 "sfEventThread");
Lloyd Piquee83f9312018-02-01 12:53:17 -0800587 mEventQueue.setEventThread(mSFEventThread.get());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800588
Steven Thomasb02664d2017-07-26 18:48:28 -0700589 // Get a RenderEngine for the given display / config (can't fail)
Lloyd Pique144e1162017-12-20 16:44:52 -0800590 getBE().mRenderEngine =
591 RE::impl::RenderEngine::create(HAL_PIXEL_FORMAT_RGBA_8888,
592 hasWideColorDisplay
593 ? RE::RenderEngine::WIDE_COLOR_SUPPORT
594 : 0);
David Sodmanbc815282017-11-05 18:57:52 -0800595 LOG_ALWAYS_FATAL_IF(getBE().mRenderEngine == nullptr, "couldn't create RenderEngine");
Steven Thomasb02664d2017-07-26 18:48:28 -0700596
597 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
598 "Starting with vr flinger active is not currently supported.");
Lloyd Piquea822d522017-12-20 16:42:57 -0800599 getBE().mHwc.reset(
600 new HWComposer(std::make_unique<Hwc2::impl::Composer>(getBE().mHwcServiceName)));
David Sodman105b7dc2017-11-04 20:28:14 -0700601 getBE().mHwc->registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800602 // Process any initial hotplug and resulting display changes.
603 processDisplayHotplugEventsLocked();
604 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY),
605 "Registered composer callback but didn't create the default primary display");
Jesse Hall692c7232012-11-08 15:41:56 -0800606
Lloyd Piquefcd86612017-12-14 17:15:36 -0800607 // make the default display GLContext current so that we can create textures
608 // when creating Layers (which may happens before we render something)
609 getDefaultDisplayDeviceLocked()->makeCurrent();
610
Steven Thomas050b2c82017-03-06 11:45:16 -0800611 if (useVrFlinger) {
612 auto vrFlingerRequestDisplayCallback = [this] (bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700613 // This callback is called from the vr flinger dispatch thread. We
614 // need to call signalTransaction(), which requires holding
615 // mStateLock when we're not on the main thread. Acquiring
616 // mStateLock from the vr flinger dispatch thread might trigger a
617 // deadlock in surface flinger (see b/66916578), so post a message
618 // to be handled on the main thread instead.
619 sp<LambdaMessage> message = new LambdaMessage([=]() {
620 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
621 mVrFlingerRequestsDisplay = requestDisplay;
622 signalTransaction();
623 });
624 postMessageAsync(message);
Steven Thomas050b2c82017-03-06 11:45:16 -0800625 };
David Sodman105b7dc2017-11-04 20:28:14 -0700626 mVrFlinger = dvr::VrFlinger::Create(getBE().mHwc->getComposer(),
627 getBE().mHwc->getHwcDisplayId(HWC_DISPLAY_PRIMARY).value_or(0),
Steven Thomas6e8f7062017-11-22 14:15:29 -0800628 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800629 if (!mVrFlinger) {
630 ALOGE("Failed to start vrflinger");
631 }
632 }
633
Lloyd Pique755e3192018-01-31 16:46:15 -0800634 mEventControlThread = std::make_unique<EventControlThread>([this](bool enabled) {
635 setVsyncEnabled(HWC_DISPLAY_PRIMARY, enabled);
636 });
Jamie Gennisd1700752013-10-14 12:22:52 -0700637
Mathias Agopian92a979a2012-08-02 18:32:23 -0700638 // initialize our drawing state
639 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700640
Andy McFadden13a082e2012-08-24 10:16:42 -0700641 // set initial conditions (e.g. unblank default device)
642 initializeDisplays();
643
David Sodmanbc815282017-11-05 18:57:52 -0800644 getBE().mRenderEngine->primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700645
Wei Wangf9b05ee2017-07-19 20:59:39 -0700646 // Inform native graphics APIs whether the present timestamp is supported:
647 if (getHwComposer().hasCapability(
648 HWC2::Capability::PresentFenceIsNotReliable)) {
649 mStartPropertySetThread = new StartPropertySetThread(false);
650 } else {
651 mStartPropertySetThread = new StartPropertySetThread(true);
652 }
653
654 if (mStartPropertySetThread->Start() != NO_ERROR) {
655 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800656 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800657
Dan Stoza9e56aa02015-11-02 13:00:03 -0800658 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700659}
660
Romain Guy11d63f42017-07-20 12:47:14 -0700661void SurfaceFlinger::readPersistentProperties() {
662 char value[PROPERTY_VALUE_MAX];
663
664 property_get("persist.sys.sf.color_saturation", value, "1.0");
665 mSaturation = atof(value);
666 ALOGV("Saturation is set to %.2f", mSaturation);
Romain Guy54f154a2017-10-24 21:40:32 +0100667
668 property_get("persist.sys.sf.native_mode", value, "0");
669 mForceNativeColorMode = atoi(value) == 1;
670 if (mForceNativeColorMode) {
671 ALOGV("Forcing native color mode");
672 }
Romain Guy11d63f42017-07-20 12:47:14 -0700673}
674
Mathias Agopiana67e4182012-06-19 17:26:12 -0700675void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800676 // Start boot animation service by setting a property mailbox
677 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700678 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800679 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700680 if (mStartPropertySetThread->join() != NO_ERROR) {
681 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800682 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700683}
684
Mathias Agopian875d8e12013-06-07 15:35:48 -0700685size_t SurfaceFlinger::getMaxTextureSize() const {
David Sodmanbc815282017-11-05 18:57:52 -0800686 return getBE().mRenderEngine->getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700687}
688
Mathias Agopian875d8e12013-06-07 15:35:48 -0700689size_t SurfaceFlinger::getMaxViewportDims() const {
David Sodmanbc815282017-11-05 18:57:52 -0800690 return getBE().mRenderEngine->getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700691}
692
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800693// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800694
Jamie Gennis582270d2011-08-17 18:19:00 -0700695bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800696 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800697 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800698 return authenticateSurfaceTextureLocked(bufferProducer);
699}
700
701bool SurfaceFlinger::authenticateSurfaceTextureLocked(
702 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800703 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Mathias Agopian67106042013-03-14 19:18:13 -0700704 return mGraphicBufferProducerList.indexOf(surfaceTextureBinder) >= 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800705}
706
Brian Anderson6b376712017-04-04 10:51:39 -0700707status_t SurfaceFlinger::getSupportedFrameTimestamps(
708 std::vector<FrameEvent>* outSupported) const {
709 *outSupported = {
710 FrameEvent::REQUESTED_PRESENT,
711 FrameEvent::ACQUIRE,
712 FrameEvent::LATCH,
713 FrameEvent::FIRST_REFRESH_START,
714 FrameEvent::LAST_REFRESH_START,
715 FrameEvent::GPU_COMPOSITION_DONE,
716 FrameEvent::DEQUEUE_READY,
717 FrameEvent::RELEASE,
718 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700719 ConditionalLock _l(mStateLock,
720 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700721 if (!getHwComposer().hasCapability(
722 HWC2::Capability::PresentFenceIsNotReliable)) {
723 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
724 }
725 return NO_ERROR;
726}
727
Dan Stoza7f7da322014-05-02 15:26:25 -0700728status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& display,
729 Vector<DisplayInfo>* configs) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800730 if (configs == nullptr || display.get() == nullptr) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700731 return BAD_VALUE;
732 }
733
Naseer Ahmed7aa0c472014-11-03 14:49:23 -0500734 if (!display.get())
735 return NAME_NOT_FOUND;
736
Jesse Hall692c7232012-11-08 15:41:56 -0800737 int32_t type = NAME_NOT_FOUND;
Jesse Hall9e663de2013-08-16 14:28:37 -0700738 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
Jesse Hall692c7232012-11-08 15:41:56 -0800739 if (display == mBuiltinDisplays[i]) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700740 type = i;
741 break;
742 }
743 }
744
745 if (type < 0) {
746 return type;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700747 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700748
Mathias Agopian8b736f12012-08-13 17:54:26 -0700749 // TODO: Not sure if display density should handled by SF any longer
750 class Density {
751 static int getDensityFromProperty(char const* propName) {
752 char property[PROPERTY_VALUE_MAX];
753 int density = 0;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800754 if (property_get(propName, property, nullptr) > 0) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700755 density = atoi(property);
756 }
757 return density;
758 }
759 public:
760 static int getEmuDensity() {
761 return getDensityFromProperty("qemu.sf.lcd_density"); }
762 static int getBuildDensity() {
763 return getDensityFromProperty("ro.sf.lcd_density"); }
764 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700765
Dan Stoza7f7da322014-05-02 15:26:25 -0700766 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700767
Steven Thomas6d8110b2017-08-31 18:24:21 -0700768 ConditionalLock _l(mStateLock,
769 std::this_thread::get_id() != mMainThreadId);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800770 for (const auto& hwConfig : getHwComposer().getConfigs(type)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700771 DisplayInfo info = DisplayInfo();
772
Dan Stoza9e56aa02015-11-02 13:00:03 -0800773 float xdpi = hwConfig->getDpiX();
774 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700775
776 if (type == DisplayDevice::DISPLAY_PRIMARY) {
777 // The density of the device is provided by a build property
778 float density = Density::getBuildDensity() / 160.0f;
779 if (density == 0) {
780 // the build doesn't provide a density -- this is wrong!
781 // use xdpi instead
782 ALOGE("ro.sf.lcd_density must be defined as a build property");
783 density = xdpi / 160.0f;
784 }
785 if (Density::getEmuDensity()) {
786 // if "qemu.sf.lcd_density" is specified, it overrides everything
787 xdpi = ydpi = density = Density::getEmuDensity();
788 density /= 160.0f;
789 }
790 info.density = density;
791
792 // TODO: this needs to go away (currently needed only by webkit)
Steven Thomas6d8110b2017-08-31 18:24:21 -0700793 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -0800794 info.orientation = hw ? hw->getOrientation() : 0;
Dan Stoza7f7da322014-05-02 15:26:25 -0700795 } else {
796 // TODO: where should this value come from?
797 static const int TV_DENSITY = 213;
798 info.density = TV_DENSITY / 160.0f;
799 info.orientation = 0;
800 }
801
Dan Stoza9e56aa02015-11-02 13:00:03 -0800802 info.w = hwConfig->getWidth();
803 info.h = hwConfig->getHeight();
Dan Stoza7f7da322014-05-02 15:26:25 -0700804 info.xdpi = xdpi;
805 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800806 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900807 info.appVsyncOffset = vsyncPhaseOffsetNs;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800808
Andy McFadden91b2ca82014-06-13 14:04:23 -0700809 // This is how far in advance a buffer must be queued for
810 // presentation at a given time. If you want a buffer to appear
811 // on the screen at time N, you must submit the buffer before
812 // (N - presentationDeadline).
813 //
814 // Normally it's one full refresh period (to give SF a chance to
815 // latch the buffer), but this can be reduced by configuring a
816 // DispSync offset. Any additional delays introduced by the hardware
817 // composer or panel must be accounted for here.
818 //
819 // We add an additional 1ms to allow for processing time and
820 // differences between the ideal and actual refresh rate.
Dan Stoza9e56aa02015-11-02 13:00:03 -0800821 info.presentationDeadline = hwConfig->getVsyncPeriod() -
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800822 sfVsyncPhaseOffsetNs + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700823
824 // All non-virtual displays are currently considered secure.
825 info.secure = true;
826
Michael Wright28f24d02016-07-12 13:30:53 -0700827 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700828 }
829
Dan Stoza7f7da322014-05-02 15:26:25 -0700830 return NO_ERROR;
831}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700832
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800833status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>& /* display */,
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700834 DisplayStatInfo* stats) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800835 if (stats == nullptr) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700836 return BAD_VALUE;
837 }
838
839 // FIXME for now we always return stats for the primary display
840 memset(stats, 0, sizeof(*stats));
841 stats->vsyncTime = mPrimaryDispSync.computeNextRefresh(0);
842 stats->vsyncPeriod = mPrimaryDispSync.getPeriod();
843 return NO_ERROR;
844}
845
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700846int SurfaceFlinger::getActiveConfig(const sp<IBinder>& display) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800847 if (display == nullptr) {
848 ALOGE("%s : display is nullptr", __func__);
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800849 return BAD_VALUE;
850 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700851
852 sp<const DisplayDevice> device(getDisplayDevice(display));
Peiyong Lin566a3b42018-01-09 18:22:43 -0800853 if (device != nullptr) {
Dan Stoza24a42e92015-03-09 10:04:11 -0700854 return device->getActiveConfig();
855 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700856
Dan Stoza24a42e92015-03-09 10:04:11 -0700857 return BAD_VALUE;
Dan Stoza7f7da322014-05-02 15:26:25 -0700858}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700859
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700860void SurfaceFlinger::setActiveConfigInternal(const sp<DisplayDevice>& hw, int mode) {
861 ALOGD("Set active config mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
862 this);
863 int32_t type = hw->getDisplayType();
864 int currentMode = hw->getActiveConfig();
865
866 if (mode == currentMode) {
867 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
868 return;
869 }
870
871 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
872 ALOGW("Trying to set config for virtual display");
873 return;
874 }
875
876 hw->setActiveConfig(mode);
877 getHwComposer().setActiveConfig(type, mode);
878}
879
880status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& display, int mode) {
881 class MessageSetActiveConfig: public MessageBase {
882 SurfaceFlinger& mFlinger;
883 sp<IBinder> mDisplay;
884 int mMode;
885 public:
886 MessageSetActiveConfig(SurfaceFlinger& flinger, const sp<IBinder>& disp,
887 int mode) :
888 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
889 virtual bool handler() {
Michael Lentine7306c672014-07-30 13:00:37 -0700890 Vector<DisplayInfo> configs;
891 mFlinger.getDisplayConfigs(mDisplay, &configs);
Jesse Hall78442112014-08-07 22:43:06 -0700892 if (mMode < 0 || mMode >= static_cast<int>(configs.size())) {
Michael Lentine9ae79d82014-07-30 16:42:12 -0700893 ALOGE("Attempt to set active config = %d for display with %zu configs",
Michael Lentine7306c672014-07-30 13:00:37 -0700894 mMode, configs.size());
Michael Wright28f24d02016-07-12 13:30:53 -0700895 return true;
Michael Lentine7306c672014-07-30 13:00:37 -0700896 }
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700897 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -0800898 if (hw == nullptr) {
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700899 ALOGE("Attempt to set active config = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -0700900 mMode, mDisplay.get());
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700901 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
902 ALOGW("Attempt to set active config = %d for virtual display",
903 mMode);
904 } else {
905 mFlinger.setActiveConfigInternal(hw, mMode);
906 }
907 return true;
908 }
909 };
910 sp<MessageBase> msg = new MessageSetActiveConfig(*this, display, mode);
911 postMessageSync(msg);
Mathias Agopian888c8222012-08-04 21:10:38 -0700912 return NO_ERROR;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700913}
Michael Wright28f24d02016-07-12 13:30:53 -0700914status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& display,
915 Vector<android_color_mode_t>* outColorModes) {
916 if ((outColorModes == nullptr) || (display.get() == nullptr)) {
917 return BAD_VALUE;
918 }
919
920 if (!display.get()) {
921 return NAME_NOT_FOUND;
922 }
923
924 int32_t type = NAME_NOT_FOUND;
925 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
926 if (display == mBuiltinDisplays[i]) {
927 type = i;
928 break;
929 }
930 }
931
932 if (type < 0) {
933 return type;
934 }
935
Steven Thomas6d8110b2017-08-31 18:24:21 -0700936 std::vector<android_color_mode_t> modes;
937 {
938 ConditionalLock _l(mStateLock,
939 std::this_thread::get_id() != mMainThreadId);
940 modes = getHwComposer().getColorModes(type);
941 }
Michael Wright28f24d02016-07-12 13:30:53 -0700942 outColorModes->clear();
943 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
944
945 return NO_ERROR;
946}
947
948android_color_mode_t SurfaceFlinger::getActiveColorMode(const sp<IBinder>& display) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700949 sp<const DisplayDevice> device(getDisplayDevice(display));
Michael Wright28f24d02016-07-12 13:30:53 -0700950 if (device != nullptr) {
951 return device->getActiveColorMode();
952 }
953 return static_cast<android_color_mode_t>(BAD_VALUE);
954}
955
956void SurfaceFlinger::setActiveColorModeInternal(const sp<DisplayDevice>& hw,
957 android_color_mode_t mode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700958 int32_t type = hw->getDisplayType();
959 android_color_mode_t currentMode = hw->getActiveColorMode();
960
961 if (mode == currentMode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700962 return;
963 }
964
965 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
966 ALOGW("Trying to set config for virtual display");
967 return;
968 }
969
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600970 ALOGD("Set active color mode: %s (%d), type=%d", decodeColorMode(mode).c_str(), mode,
971 hw->getDisplayType());
972
Michael Wright28f24d02016-07-12 13:30:53 -0700973 hw->setActiveColorMode(mode);
974 getHwComposer().setActiveColorMode(type, mode);
975}
976
977
978status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& display,
979 android_color_mode_t colorMode) {
980 class MessageSetActiveColorMode: public MessageBase {
981 SurfaceFlinger& mFlinger;
982 sp<IBinder> mDisplay;
983 android_color_mode_t mMode;
984 public:
985 MessageSetActiveColorMode(SurfaceFlinger& flinger, const sp<IBinder>& disp,
986 android_color_mode_t mode) :
987 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
988 virtual bool handler() {
989 Vector<android_color_mode_t> modes;
990 mFlinger.getDisplayColorModes(mDisplay, &modes);
991 bool exists = std::find(std::begin(modes), std::end(modes), mMode) != std::end(modes);
992 if (mMode < 0 || !exists) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600993 ALOGE("Attempt to set invalid active color mode %s (%d) for display %p",
994 decodeColorMode(mMode).c_str(), mMode, mDisplay.get());
Michael Wright28f24d02016-07-12 13:30:53 -0700995 return true;
996 }
997 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
998 if (hw == nullptr) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600999 ALOGE("Attempt to set active color mode %s (%d) for null display %p",
1000 decodeColorMode(mMode).c_str(), mMode, mDisplay.get());
Michael Wright28f24d02016-07-12 13:30:53 -07001001 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001002 ALOGW("Attempt to set active color mode %s %d for virtual display",
1003 decodeColorMode(mMode).c_str(), mMode);
Michael Wright28f24d02016-07-12 13:30:53 -07001004 } else {
1005 mFlinger.setActiveColorModeInternal(hw, mMode);
1006 }
1007 return true;
1008 }
1009 };
1010 sp<MessageBase> msg = new MessageSetActiveColorMode(*this, display, colorMode);
1011 postMessageSync(msg);
1012 return NO_ERROR;
1013}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001014
Svetoslavd85084b2014-03-20 10:28:31 -07001015status_t SurfaceFlinger::clearAnimationFrameStats() {
1016 Mutex::Autolock _l(mStateLock);
1017 mAnimFrameTracker.clearStats();
1018 return NO_ERROR;
1019}
1020
1021status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1022 Mutex::Autolock _l(mStateLock);
1023 mAnimFrameTracker.getStats(outStats);
1024 return NO_ERROR;
1025}
1026
Dan Stozac4f471e2016-03-24 09:31:08 -07001027status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& display,
1028 HdrCapabilities* outCapabilities) const {
1029 Mutex::Autolock _l(mStateLock);
1030
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001031 sp<const DisplayDevice> displayDevice(getDisplayDeviceLocked(display));
Dan Stozac4f471e2016-03-24 09:31:08 -07001032 if (displayDevice == nullptr) {
1033 ALOGE("getHdrCapabilities: Invalid display %p", displayDevice.get());
1034 return BAD_VALUE;
1035 }
1036
1037 std::unique_ptr<HdrCapabilities> capabilities =
David Sodman105b7dc2017-11-04 20:28:14 -07001038 getBE().mHwc->getHdrCapabilities(displayDevice->getHwcDisplayId());
Dan Stozac4f471e2016-03-24 09:31:08 -07001039 if (capabilities) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001040 if (displayDevice->getWideColorSupport() && !displayDevice->getHdrSupport()) {
1041 // insert HDR10 as we will force client composition for HDR10
1042 // layers
1043 std::vector<int32_t> types = capabilities->getSupportedHdrTypes();
1044 types.push_back(HAL_HDR_HDR10);
1045
1046 *outCapabilities = HdrCapabilities(types,
1047 capabilities->getDesiredMaxLuminance(),
1048 capabilities->getDesiredMaxAverageLuminance(),
1049 capabilities->getDesiredMinLuminance());
1050 } else {
1051 *outCapabilities = std::move(*capabilities);
1052 }
Dan Stozac4f471e2016-03-24 09:31:08 -07001053 } else {
1054 return BAD_VALUE;
1055 }
1056
1057 return NO_ERROR;
1058}
1059
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001060status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001061 sp<LambdaMessage> enableVSyncInjections = new LambdaMessage([&]() {
1062 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001063
Chia-I Wu90f669f2017-10-05 14:24:41 -07001064 if (mInjectVSyncs == enable) {
1065 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001066 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001067
1068 if (enable) {
1069 ALOGV("VSync Injections enabled");
1070 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001071 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique0fcde1b2017-12-20 16:50:21 -08001072 mInjectorEventThread =
1073 std::make_unique<impl::EventThread>(mVSyncInjector.get(), *this, false,
1074 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001075 }
Lloyd Piquee83f9312018-02-01 12:53:17 -08001076 mEventQueue.setEventThread(mInjectorEventThread.get());
Chia-I Wu90f669f2017-10-05 14:24:41 -07001077 } else {
1078 ALOGV("VSync Injections disabled");
Lloyd Piquee83f9312018-02-01 12:53:17 -08001079 mEventQueue.setEventThread(mSFEventThread.get());
Chia-I Wu90f669f2017-10-05 14:24:41 -07001080 }
1081
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001082 mInjectVSyncs = enable;
Chia-I Wu90f669f2017-10-05 14:24:41 -07001083 });
1084 postMessageSync(enableVSyncInjections);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001085 return NO_ERROR;
1086}
1087
1088status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001089 Mutex::Autolock _l(mStateLock);
1090
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001091 if (!mInjectVSyncs) {
1092 ALOGE("VSync Injections not enabled");
1093 return BAD_VALUE;
1094 }
1095 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1096 ALOGV("Injecting VSync inside SurfaceFlinger");
1097 mVSyncInjector->onInjectSyncEvent(when);
1098 }
1099 return NO_ERROR;
1100}
1101
Lloyd Pique755e3192018-01-31 16:46:15 -08001102status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1103 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001104 IPCThreadState* ipc = IPCThreadState::self();
1105 const int pid = ipc->getCallingPid();
1106 const int uid = ipc->getCallingUid();
1107 if ((uid != AID_SHELL) &&
1108 !PermissionCache::checkPermission(sDump, pid, uid)) {
1109 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
1110 return PERMISSION_DENIED;
1111 }
1112
1113 // Try to acquire a lock for 1s, fail gracefully
1114 const status_t err = mStateLock.timedLock(s2ns(1));
1115 const bool locked = (err == NO_ERROR);
1116 if (!locked) {
1117 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1118 return TIMED_OUT;
1119 }
1120
1121 outLayers->clear();
1122 mCurrentState.traverseInZOrder([&](Layer* layer) {
1123 outLayers->push_back(layer->getLayerDebugInfo());
1124 });
1125
1126 mStateLock.unlock();
1127 return NO_ERROR;
1128}
1129
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001130// ----------------------------------------------------------------------------
1131
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001132sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
1133 ISurfaceComposer::VsyncSource vsyncSource) {
1134 if (vsyncSource == eVsyncSourceSurfaceFlinger) {
1135 return mSFEventThread->createEventConnection();
1136 } else {
1137 return mEventThread->createEventConnection();
1138 }
Mathias Agopianbb641242010-05-18 17:06:55 -07001139}
1140
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001141// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001142
1143void SurfaceFlinger::waitForEvent() {
1144 mEventQueue.waitMessage();
1145}
1146
1147void SurfaceFlinger::signalTransaction() {
1148 mEventQueue.invalidate();
1149}
1150
1151void SurfaceFlinger::signalLayerUpdate() {
1152 mEventQueue.invalidate();
1153}
1154
1155void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001156 mRefreshPending = true;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001157 mEventQueue.refresh();
1158}
1159
1160status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001161 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001162 return mEventQueue.postMessage(msg, reltime);
1163}
1164
1165status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001166 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001167 status_t res = mEventQueue.postMessage(msg, reltime);
1168 if (res == NO_ERROR) {
1169 msg->wait();
1170 }
1171 return res;
1172}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001173
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001174void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001175 do {
1176 waitForEvent();
1177 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001178}
1179
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001180void SurfaceFlinger::enableHardwareVsync() {
1181 Mutex::Autolock _l(mHWVsyncLock);
Jesse Hall948fe0c2013-10-14 12:56:09 -07001182 if (!mPrimaryHWVsyncEnabled && mHWVsyncAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001183 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -07001184 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
1185 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001186 mPrimaryHWVsyncEnabled = true;
Andy McFadden43601a22012-09-11 15:15:13 -07001187 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001188}
1189
Jesse Hall948fe0c2013-10-14 12:56:09 -07001190void SurfaceFlinger::resyncToHardwareVsync(bool makeAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001191 Mutex::Autolock _l(mHWVsyncLock);
1192
Jesse Hall948fe0c2013-10-14 12:56:09 -07001193 if (makeAvailable) {
1194 mHWVsyncAvailable = true;
1195 } else if (!mHWVsyncAvailable) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -07001196 // Hardware vsync is not currently available, so abort the resync
1197 // attempt for now
Jesse Hall948fe0c2013-10-14 12:56:09 -07001198 return;
1199 }
1200
David Sodman105b7dc2017-11-04 20:28:14 -07001201 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001202 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001203
1204 mPrimaryDispSync.reset();
1205 mPrimaryDispSync.setPeriod(period);
1206
1207 if (!mPrimaryHWVsyncEnabled) {
1208 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -07001209 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
1210 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001211 mPrimaryHWVsyncEnabled = true;
1212 }
1213}
1214
Jesse Hall948fe0c2013-10-14 12:56:09 -07001215void SurfaceFlinger::disableHardwareVsync(bool makeUnavailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001216 Mutex::Autolock _l(mHWVsyncLock);
1217 if (mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -07001218 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, false);
1219 mEventControlThread->setVsyncEnabled(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001220 mPrimaryDispSync.endResync();
1221 mPrimaryHWVsyncEnabled = false;
1222 }
Jesse Hall948fe0c2013-10-14 12:56:09 -07001223 if (makeUnavailable) {
1224 mHWVsyncAvailable = false;
1225 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001226}
1227
Tim Murray4a4e4a22016-04-19 16:29:23 +00001228void SurfaceFlinger::resyncWithRateLimit() {
1229 static constexpr nsecs_t kIgnoreDelay = ms2ns(500);
Dan Stoza57164302017-05-08 14:03:54 -07001230
1231 // No explicit locking is needed here since EventThread holds a lock while calling this method
1232 static nsecs_t sLastResyncAttempted = 0;
1233 const nsecs_t now = systemTime();
1234 if (now - sLastResyncAttempted > kIgnoreDelay) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -07001235 resyncToHardwareVsync(false);
Tim Murray4a4e4a22016-04-19 16:29:23 +00001236 }
Dan Stoza57164302017-05-08 14:03:54 -07001237 sLastResyncAttempted = now;
Tim Murray4a4e4a22016-04-19 16:29:23 +00001238}
1239
Steven Thomasb02664d2017-07-26 18:48:28 -07001240void SurfaceFlinger::onVsyncReceived(int32_t sequenceId,
1241 hwc2_display_t displayId, int64_t timestamp) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001242 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001243 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001244 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001245 return;
1246 }
1247
1248 int32_t type;
David Sodman105b7dc2017-11-04 20:28:14 -07001249 if (!getBE().mHwc->onVsync(displayId, timestamp, &type)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001250 return;
1251 }
1252
Jamie Gennisd1700752013-10-14 12:22:52 -07001253 bool needsHwVsync = false;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001254
Jamie Gennisd1700752013-10-14 12:22:52 -07001255 { // Scope for the lock
1256 Mutex::Autolock _l(mHWVsyncLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001257 if (type == DisplayDevice::DISPLAY_PRIMARY && mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -07001258 needsHwVsync = mPrimaryDispSync.addResyncSample(timestamp);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001259 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001260 }
Jamie Gennisd1700752013-10-14 12:22:52 -07001261
1262 if (needsHwVsync) {
1263 enableHardwareVsync();
1264 } else {
1265 disableHardwareVsync(false);
1266 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001267}
1268
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001269void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001270 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1271 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001272}
1273
Lloyd Pique715a2c12017-12-14 17:18:08 -08001274void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t display,
1275 HWC2::Connection connection) {
1276 ALOGV("onHotplugReceived(%d, %" PRIu64 ", %s)", sequenceId, display,
1277 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001278
Lloyd Piqueba04e622017-12-14 17:11:26 -08001279 // Ignore events that do not have the right sequenceId.
1280 if (sequenceId != getBE().mComposerSequenceId) {
1281 return;
1282 }
1283
Steven Thomasb02664d2017-07-26 18:48:28 -07001284 // Only lock if we're not on the main thread. This function is normally
1285 // called on a hwbinder thread, but for the primary display it's called on
1286 // the main thread with the state lock already held, so don't attempt to
1287 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001288 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001289
Lloyd Pique715a2c12017-12-14 17:18:08 -08001290 mPendingHotplugEvents.emplace_back(HotplugEvent{display, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001291
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001292 if (std::this_thread::get_id() == mMainThreadId) {
1293 // Process all pending hot plug events immediately if we are on the main thread.
1294 processDisplayHotplugEventsLocked();
1295 }
1296
Lloyd Piqueba04e622017-12-14 17:11:26 -08001297 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001298}
1299
Steven Thomasb02664d2017-07-26 18:48:28 -07001300void SurfaceFlinger::onRefreshReceived(int sequenceId,
1301 hwc2_display_t /*display*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001302 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001303 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001304 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001305 }
Steven Thomas6d8110b2017-08-31 18:24:21 -07001306 repaintEverythingLocked();
Steven Thomas3cfac282017-02-06 12:29:30 -08001307}
1308
Dan Stoza9e56aa02015-11-02 13:00:03 -08001309void SurfaceFlinger::setVsyncEnabled(int disp, int enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001310 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001311 Mutex::Autolock lock(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001312 getHwComposer().setVsyncEnabled(disp,
1313 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
Mathias Agopian86303202012-07-24 22:46:10 -07001314}
1315
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001316// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001317void SurfaceFlinger::resetDisplayState() {
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001318 disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001319 // Clear the drawing state so that the logic inside of
1320 // handleTransactionLocked will fire. It will determine the delta between
1321 // mCurrentState and mDrawingState and re-apply all changes when we make the
1322 // transition.
1323 mDrawingState.displays.clear();
Chia-I Wu7f402902017-11-09 12:51:10 -08001324 getRenderEngine().resetCurrentSurface();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001325 mDisplays.clear();
1326}
1327
Steven Thomas050b2c82017-03-06 11:45:16 -08001328void SurfaceFlinger::updateVrFlinger() {
1329 if (!mVrFlinger)
1330 return;
1331 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
David Sodman105b7dc2017-11-04 20:28:14 -07001332 if (vrFlingerRequestsDisplay == getBE().mHwc->isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001333 return;
1334 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001335
David Sodman105b7dc2017-11-04 20:28:14 -07001336 if (vrFlingerRequestsDisplay && !getBE().mHwc->getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001337 ALOGE("Vr flinger is only supported for remote hardware composer"
1338 " service connections. Ignoring request to transition to vr"
1339 " flinger.");
1340 mVrFlingerRequestsDisplay = false;
1341 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001342 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001343
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001344 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001345
Steven Thomasb02664d2017-07-26 18:48:28 -07001346 int currentDisplayPowerMode = getDisplayDeviceLocked(
1347 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY])->getPowerMode();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001348
Steven Thomasb02664d2017-07-26 18:48:28 -07001349 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001350 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001351 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001352
Steven Thomasb02664d2017-07-26 18:48:28 -07001353 resetDisplayState();
David Sodman105b7dc2017-11-04 20:28:14 -07001354 getBE().mHwc.reset(); // Delete the current instance before creating the new one
Lloyd Piquea822d522017-12-20 16:42:57 -08001355 getBE().mHwc.reset(new HWComposer(std::make_unique<Hwc2::impl::Composer>(
1356 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName)));
David Sodman105b7dc2017-11-04 20:28:14 -07001357 getBE().mHwc->registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001358
David Sodman105b7dc2017-11-04 20:28:14 -07001359 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->getComposer()->isRemote(),
1360 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001361
1362 if (vrFlingerRequestsDisplay) {
1363 mVrFlinger->GrantDisplayOwnership();
1364 } else {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001365 enableHardwareVsync();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001366 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001367
1368 mVisibleRegionsDirty = true;
1369 invalidateHwcGeometry();
1370
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001371 // Re-enable default display.
Steven Thomasb02664d2017-07-26 18:48:28 -07001372 sp<DisplayDevice> hw(getDisplayDeviceLocked(
1373 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY]));
1374 setPowerModeInternal(hw, currentDisplayPowerMode, /*stateLockHeld*/ true);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001375
Steven Thomasb02664d2017-07-26 18:48:28 -07001376 // Reset the timing values to account for the period of the swapped in HWC
David Sodman105b7dc2017-11-04 20:28:14 -07001377 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Steven Thomasb02664d2017-07-26 18:48:28 -07001378 const nsecs_t period = activeConfig->getVsyncPeriod();
1379 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001380
Steven Thomasb02664d2017-07-26 18:48:28 -07001381 // Use phase of 0 since phase is not known.
1382 // Use latency of 0, which will snap to the ideal latency.
1383 setCompositorTimingSnapped(0, period, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001384
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001385 android_atomic_or(1, &mRepaintEverything);
1386 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001387}
1388
Mathias Agopian4fec8732012-06-29 14:12:52 -07001389void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001390 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001391 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001392 case MessageQueue::INVALIDATE: {
Dan Stoza50182882016-07-08 12:02:20 -07001393 bool frameMissed = !mHadClientComposition &&
1394 mPreviousPresentFence != Fence::NO_FENCE &&
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001395 (mPreviousPresentFence->getSignalTime() ==
1396 Fence::SIGNAL_TIME_PENDING);
Dan Stoza50182882016-07-08 12:02:20 -07001397 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
Dan Stozac5da2712016-07-20 15:38:12 -07001398 if (mPropagateBackpressure && frameMissed) {
Dan Stoza50182882016-07-08 12:02:20 -07001399 signalLayerUpdate();
1400 break;
1401 }
1402
Steven Thomas050b2c82017-03-06 11:45:16 -08001403 // Now that we're going to make it to the handleMessageTransaction()
1404 // call below it's safe to call updateVrFlinger(), which will
1405 // potentially trigger a display handoff.
1406 updateVrFlinger();
1407
Dan Stoza6b9454d2014-11-07 16:00:59 -08001408 bool refreshNeeded = handleMessageTransaction();
1409 refreshNeeded |= handleMessageInvalidate();
Dan Stoza58784442014-12-02 16:58:17 -08001410 refreshNeeded |= mRepaintEverything;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001411 if (refreshNeeded) {
Dan Stoza58784442014-12-02 16:58:17 -08001412 // Signal a refresh if a transaction modified the window state,
1413 // a new buffer was latched, or if HWC has requested a full
1414 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001415 signalRefresh();
1416 }
1417 break;
1418 }
1419 case MessageQueue::REFRESH: {
1420 handleMessageRefresh();
1421 break;
1422 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001423 }
1424}
1425
Dan Stoza6b9454d2014-11-07 16:00:59 -08001426bool SurfaceFlinger::handleMessageTransaction() {
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001427 uint32_t transactionFlags = peekTransactionFlags();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001428 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001429 handleTransaction(transactionFlags);
Dan Stoza6b9454d2014-11-07 16:00:59 -08001430 return true;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001431 }
Dan Stoza6b9454d2014-11-07 16:00:59 -08001432 return false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001433}
1434
Dan Stoza6b9454d2014-11-07 16:00:59 -08001435bool SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001436 ATRACE_CALL();
Dan Stoza6b9454d2014-11-07 16:00:59 -08001437 return handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001438}
1439
1440void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001441 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001442
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001443 mRefreshPending = false;
1444
Pablo Ceballos40845df2016-01-25 17:41:15 -08001445 nsecs_t refreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001446
Brian Andersond6927fb2016-07-23 23:37:30 -07001447 preComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001448 rebuildLayerStacks();
1449 setUpHWComposer();
1450 doDebugFlashRegions();
Adrian Roos1e1a1282017-11-01 19:05:31 +01001451 doTracing("handleRefresh");
Dan Stoza05dacfb2016-07-01 13:33:38 -07001452 doComposition();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001453 postComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001454
David Sodman105b7dc2017-11-04 20:28:14 -07001455 mPreviousPresentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001456
1457 mHadClientComposition = false;
1458 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1459 const sp<DisplayDevice>& displayDevice = mDisplays[displayId];
1460 mHadClientComposition = mHadClientComposition ||
David Sodman105b7dc2017-11-04 20:28:14 -07001461 getBE().mHwc->hasClientComposition(displayDevice->getHwcDisplayId());
Dan Stozabfbffeb2016-07-21 14:49:33 -07001462 }
Dan Stoza14cd37c2015-07-09 12:43:33 -07001463
Dan Stoza9e56aa02015-11-02 13:00:03 -08001464 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001465}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001466
Mathias Agopiancd60f992012-08-16 16:28:27 -07001467void SurfaceFlinger::doDebugFlashRegions()
1468{
1469 // is debugging enabled
1470 if (CC_LIKELY(!mDebugRegion))
1471 return;
1472
1473 const bool repaintEverything = mRepaintEverything;
1474 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1475 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001476 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001477 // transform the dirty region into this screen's coordinate space
1478 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
1479 if (!dirtyRegion.isEmpty()) {
1480 // redraw the whole screen
Chia-I Wub02087d2017-11-09 10:19:54 -08001481 doComposeSurfaces(hw);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001482
1483 // and draw the dirty region
Mathias Agopiancd60f992012-08-16 16:28:27 -07001484 const int32_t height = hw->getHeight();
Lloyd Pique144e1162017-12-20 16:44:52 -08001485 auto& engine(getRenderEngine());
Mathias Agopian3f844832013-08-07 21:24:32 -07001486 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
1487
Mathias Agopianda27af92012-09-13 18:17:13 -07001488 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -07001489 }
1490 }
1491 }
1492
1493 postFramebuffer();
1494
1495 if (mDebugRegion > 1) {
1496 usleep(mDebugRegion * 1000);
1497 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001498
Dan Stoza9e56aa02015-11-02 13:00:03 -08001499 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001500 auto& displayDevice = mDisplays[displayId];
1501 if (!displayDevice->isDisplayOn()) {
1502 continue;
1503 }
1504
David Sodman105b7dc2017-11-04 20:28:14 -07001505 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
1506 ALOGE_IF(result != NO_ERROR,
1507 "prepareFrame for display %zd failed:"
1508 " %d (%s)",
1509 displayId, result, strerror(-result));
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001510 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001511}
1512
Adrian Roos1e1a1282017-11-01 19:05:31 +01001513void SurfaceFlinger::doTracing(const char* where) {
1514 ATRACE_CALL();
1515 ATRACE_NAME(where);
1516 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001517 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001518 }
1519}
1520
Brian Andersond6927fb2016-07-23 23:37:30 -07001521void SurfaceFlinger::preComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001522{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001523 ATRACE_CALL();
1524 ALOGV("preComposition");
1525
Mathias Agopiancd60f992012-08-16 16:28:27 -07001526 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001527 mDrawingState.traverseInZOrder([&](Layer* layer) {
1528 if (layer->onPreComposition(refreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001529 needExtraInvalidate = true;
1530 }
Robert Carr2047fae2016-11-28 14:09:09 -08001531 });
1532
Mathias Agopiancd60f992012-08-16 16:28:27 -07001533 if (needExtraInvalidate) {
1534 signalLayerUpdate();
1535 }
1536}
1537
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001538void SurfaceFlinger::updateCompositorTiming(
1539 nsecs_t vsyncPhase, nsecs_t vsyncInterval, nsecs_t compositeTime,
1540 std::shared_ptr<FenceTime>& presentFenceTime) {
1541 // Update queue of past composite+present times and determine the
1542 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001543 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001544 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001545 while (!getBE().mCompositePresentTimes.empty()) {
1546 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001547 // Cached values should have been updated before calling this method,
1548 // which helps avoid duplicate syscalls.
1549 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1550 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1551 break;
1552 }
1553 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001554 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001555 }
1556
1557 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001558 while (getBE().mCompositePresentTimes.size() > 16) {
1559 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001560 }
1561
Brian Andersond0010582017-03-07 13:20:31 -08001562 setCompositorTimingSnapped(
1563 vsyncPhase, vsyncInterval, compositeToPresentLatency);
1564}
1565
1566void SurfaceFlinger::setCompositorTimingSnapped(nsecs_t vsyncPhase,
1567 nsecs_t vsyncInterval, nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001568 // Integer division and modulo round toward 0 not -inf, so we need to
1569 // treat negative and positive offsets differently.
Brian Andersond0010582017-03-07 13:20:31 -08001570 nsecs_t idealLatency = (sfVsyncPhaseOffsetNs > 0) ?
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001571 (vsyncInterval - (sfVsyncPhaseOffsetNs % vsyncInterval)) :
1572 ((-sfVsyncPhaseOffsetNs) % vsyncInterval);
1573
Brian Andersond0010582017-03-07 13:20:31 -08001574 // Just in case sfVsyncPhaseOffsetNs == -vsyncInterval.
1575 if (idealLatency <= 0) {
1576 idealLatency = vsyncInterval;
1577 }
1578
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001579 // Snap the latency to a value that removes scheduling jitter from the
1580 // composition and present times, which often have >1ms of jitter.
1581 // Reducing jitter is important if an app attempts to extrapolate
1582 // something (such as user input) to an accurate diasplay time.
1583 // Snapping also allows an app to precisely calculate sfVsyncPhaseOffsetNs
1584 // with (presentLatency % interval).
Brian Andersond0010582017-03-07 13:20:31 -08001585 nsecs_t bias = vsyncInterval / 2;
1586 int64_t extraVsyncs =
1587 (compositeToPresentLatency - idealLatency + bias) / vsyncInterval;
1588 nsecs_t snappedCompositeToPresentLatency = (extraVsyncs > 0) ?
1589 idealLatency + (extraVsyncs * vsyncInterval) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001590
David Sodman99974d22017-11-28 12:04:33 -08001591 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1592 getBE().mCompositorTiming.deadline = vsyncPhase - idealLatency;
1593 getBE().mCompositorTiming.interval = vsyncInterval;
1594 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001595}
1596
1597void SurfaceFlinger::postComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001598{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001599 ATRACE_CALL();
1600 ALOGV("postComposition");
1601
Brian Anderson3546a3f2016-07-14 11:51:14 -07001602 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001603 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001604 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001605 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001606 }
1607
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001608 // |mStateLock| not needed as we are on the main thread
1609 const sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Brian Anderson3d4039d2016-09-23 16:31:30 -07001610
David Sodman73beded2017-11-15 11:56:06 -08001611 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001612 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001613 if (hw && getBE().mHwc->hasClientComposition(HWC_DISPLAY_PRIMARY)) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001614 glCompositionDoneFenceTime =
1615 std::make_shared<FenceTime>(hw->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001616 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001617 } else {
1618 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1619 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001620
David Sodman73beded2017-11-15 11:56:06 -08001621 getBE().mDisplayTimeline.updateSignalTimes();
David Sodman105b7dc2017-11-04 20:28:14 -07001622 sp<Fence> presentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Brian Anderson4e606e32017-03-16 15:34:57 -07001623 auto presentFenceTime = std::make_shared<FenceTime>(presentFence);
David Sodman73beded2017-11-15 11:56:06 -08001624 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001625
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001626 nsecs_t vsyncPhase = mPrimaryDispSync.computeNextRefresh(0);
1627 nsecs_t vsyncInterval = mPrimaryDispSync.getPeriod();
1628
1629 // We use the refreshStartTime which might be sampled a little later than
1630 // when we started doing work for this frame, but that should be okay
1631 // since updateCompositorTiming has snapping logic.
1632 updateCompositorTiming(
Brian Anderson4e606e32017-03-16 15:34:57 -07001633 vsyncPhase, vsyncInterval, refreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001634 CompositorTiming compositorTiming;
1635 {
David Sodman99974d22017-11-28 12:04:33 -08001636 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1637 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001638 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001639
Robert Carr2047fae2016-11-28 14:09:09 -08001640 mDrawingState.traverseInZOrder([&](Layer* layer) {
1641 bool frameLatched = layer->onPostComposition(glCompositionDoneFenceTime,
Brian Anderson4e606e32017-03-16 15:34:57 -07001642 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001643 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001644 recordBufferingStats(layer->getName().string(),
1645 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001646 }
Robert Carr2047fae2016-11-28 14:09:09 -08001647 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001648
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001649 if (presentFenceTime->isValid()) {
1650 if (mPrimaryDispSync.addPresentFence(presentFenceTime)) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001651 enableHardwareVsync();
1652 } else {
Jesse Hall948fe0c2013-10-14 12:56:09 -07001653 disableHardwareVsync(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001654 }
1655 }
1656
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08001657 if (!hasSyncFramework) {
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001658 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) && hw->isDisplayOn()) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001659 enableHardwareVsync();
1660 }
1661 }
1662
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001663 if (mAnimCompositionPending) {
1664 mAnimCompositionPending = false;
1665
Brian Anderson4e606e32017-03-16 15:34:57 -07001666 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001667 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07001668 std::move(presentFenceTime));
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001669 } else if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001670 // The HWC doesn't support present fences, so use the refresh
1671 // timestamp instead.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001672 nsecs_t presentTime =
David Sodman105b7dc2017-11-04 20:28:14 -07001673 getBE().mHwc->getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001674 mAnimFrameTracker.setActualPresentTime(presentTime);
1675 }
1676 mAnimFrameTracker.advanceFrame();
1677 }
Dan Stozab90cf072015-03-05 11:05:59 -08001678
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001679 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) &&
1680 hw->getPowerMode() == HWC_POWER_MODE_OFF) {
Dan Stozab90cf072015-03-05 11:05:59 -08001681 return;
1682 }
1683
1684 nsecs_t currentTime = systemTime();
1685 if (mHasPoweredOff) {
1686 mHasPoweredOff = false;
1687 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001688 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001689 size_t numPeriods = static_cast<size_t>(elapsedTime / vsyncInterval);
David Sodman4a36e932017-11-07 14:29:47 -08001690 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
1691 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001692 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001693 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001694 }
David Sodman4a36e932017-11-07 14:29:47 -08001695 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001696 }
David Sodman4a36e932017-11-07 14:29:47 -08001697 getBE().mLastSwapTime = currentTime;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001698}
1699
1700void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001701 ATRACE_CALL();
1702 ALOGV("rebuildLayerStacks");
1703
Mathias Agopiancd60f992012-08-16 16:28:27 -07001704 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07001705 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07001706 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07001707 mVisibleRegionsDirty = false;
1708 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001709
Jeff Sharkey76488112017-02-27 14:15:18 -07001710 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1711 Region opaqueRegion;
1712 Region dirtyRegion;
1713 Vector<sp<Layer>> layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08001714 Vector<sp<Layer>> layersNeedingFences;
Jeff Sharkey76488112017-02-27 14:15:18 -07001715 const sp<DisplayDevice>& displayDevice(mDisplays[dpy]);
1716 const Transform& tr(displayDevice->getTransform());
1717 const Rect bounds(displayDevice->getBounds());
1718 if (displayDevice->isDisplayOn()) {
Chia-I Wuab0c3192017-08-01 11:29:00 -07001719 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001720
Jeff Sharkey76488112017-02-27 14:15:18 -07001721 mDrawingState.traverseInZOrder([&](Layer* layer) {
Chia-I Wu83806892017-11-16 10:50:20 -08001722 bool hwcLayerDestroyed = false;
Chia-I Wuab0c3192017-08-01 11:29:00 -07001723 if (layer->belongsToDisplay(displayDevice->getLayerStack(),
1724 displayDevice->isPrimary())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07001725 Region drawRegion(tr.transform(
1726 layer->visibleNonTransparentRegion));
1727 drawRegion.andSelf(bounds);
1728 if (!drawRegion.isEmpty()) {
1729 layersSortedByZ.add(layer);
1730 } else {
1731 // Clear out the HWC layer if this layer was
1732 // previously visible, but no longer is
Chia-I Wu83806892017-11-16 10:50:20 -08001733 hwcLayerDestroyed = layer->destroyHwcLayer(
Steven Thomasb02664d2017-07-26 18:48:28 -07001734 displayDevice->getHwcDisplayId());
Jeff Sharkey76488112017-02-27 14:15:18 -07001735 }
Fabien Sanglard06a76c02017-03-03 11:19:30 -08001736 } else {
Fabien Sanglard82260512017-03-03 14:58:52 -08001737 // WM changes displayDevice->layerStack upon sleep/awake.
1738 // Here we make sure we delete the HWC layers even if
1739 // WM changed their layer stack.
Chia-I Wu83806892017-11-16 10:50:20 -08001740 hwcLayerDestroyed = layer->destroyHwcLayer(
1741 displayDevice->getHwcDisplayId());
1742 }
1743
1744 // If a layer is not going to get a release fence because
1745 // it is invisible, but it is also going to release its
1746 // old buffer, add it to the list of layers needing
1747 // fences.
1748 if (hwcLayerDestroyed) {
1749 auto found = std::find(mLayersWithQueuedFrames.cbegin(),
1750 mLayersWithQueuedFrames.cend(), layer);
1751 if (found != mLayersWithQueuedFrames.cend()) {
1752 layersNeedingFences.add(layer);
1753 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001754 }
Jeff Sharkey76488112017-02-27 14:15:18 -07001755 });
1756 }
1757 displayDevice->setVisibleLayersSortedByZ(layersSortedByZ);
Chia-I Wu83806892017-11-16 10:50:20 -08001758 displayDevice->setLayersNeedingFences(layersNeedingFences);
Jeff Sharkey76488112017-02-27 14:15:18 -07001759 displayDevice->undefinedRegion.set(bounds);
1760 displayDevice->undefinedRegion.subtractSelf(
1761 tr.transform(opaqueRegion));
1762 displayDevice->dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001763 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001764 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001765}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001766
Romain Guy0147a172017-06-01 13:53:56 -07001767mat4 SurfaceFlinger::computeSaturationMatrix() const {
1768 if (mSaturation == 1.0f) {
1769 return mat4();
1770 }
1771
1772 // Rec.709 luma coefficients
1773 float3 luminance{0.213f, 0.715f, 0.072f};
1774 luminance *= 1.0f - mSaturation;
1775 return mat4(
1776 vec4{luminance.r + mSaturation, luminance.r, luminance.r, 0.0f},
1777 vec4{luminance.g, luminance.g + mSaturation, luminance.g, 0.0f},
1778 vec4{luminance.b, luminance.b, luminance.b + mSaturation, 0.0f},
1779 vec4{0.0f, 0.0f, 0.0f, 1.0f}
1780 );
1781}
1782
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001783// pickColorMode translates a given dataspace into the best available color mode.
1784// Currently only support sRGB and Display-P3.
Romain Guy0147a172017-06-01 13:53:56 -07001785android_color_mode SurfaceFlinger::pickColorMode(android_dataspace dataSpace) const {
Romain Guy54f154a2017-10-24 21:40:32 +01001786 if (mForceNativeColorMode) {
1787 return HAL_COLOR_MODE_NATIVE;
1788 }
1789
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001790 switch (dataSpace) {
1791 // treat Unknown as regular SRGB buffer, since that's what the rest of the
1792 // system expects.
1793 case HAL_DATASPACE_UNKNOWN:
1794 case HAL_DATASPACE_SRGB:
1795 case HAL_DATASPACE_V0_SRGB:
1796 return HAL_COLOR_MODE_SRGB;
1797 break;
1798
1799 case HAL_DATASPACE_DISPLAY_P3:
1800 return HAL_COLOR_MODE_DISPLAY_P3;
1801 break;
1802
1803 default:
1804 // TODO (courtneygo): Do we want to assert an error here?
1805 ALOGE("No color mode mapping for %s (%#x)", dataspaceDetails(dataSpace).c_str(),
1806 dataSpace);
1807 return HAL_COLOR_MODE_SRGB;
1808 break;
1809 }
1810}
1811
Romain Guy0147a172017-06-01 13:53:56 -07001812android_dataspace SurfaceFlinger::bestTargetDataSpace(
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001813 android_dataspace a, android_dataspace b, bool hasHdr) const {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001814 // Only support sRGB and Display-P3 right now.
1815 if (a == HAL_DATASPACE_DISPLAY_P3 || b == HAL_DATASPACE_DISPLAY_P3) {
1816 return HAL_DATASPACE_DISPLAY_P3;
1817 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001818 if (a == HAL_DATASPACE_V0_SCRGB_LINEAR || b == HAL_DATASPACE_V0_SCRGB_LINEAR) {
1819 return HAL_DATASPACE_DISPLAY_P3;
1820 }
1821 if (a == HAL_DATASPACE_V0_SCRGB || b == HAL_DATASPACE_V0_SCRGB) {
1822 return HAL_DATASPACE_DISPLAY_P3;
1823 }
Chia-I Wu8d2651e2018-01-24 12:18:49 -08001824 if (!hasHdr) {
1825 if (a == HAL_DATASPACE_BT2020_PQ || b == HAL_DATASPACE_BT2020_PQ) {
1826 return HAL_DATASPACE_DISPLAY_P3;
1827 }
1828 if (a == HAL_DATASPACE_BT2020_ITU_PQ || b == HAL_DATASPACE_BT2020_ITU_PQ) {
1829 return HAL_DATASPACE_DISPLAY_P3;
1830 }
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001831 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001832
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001833 return HAL_DATASPACE_V0_SRGB;
1834}
1835
Mathias Agopiancd60f992012-08-16 16:28:27 -07001836void SurfaceFlinger::setUpHWComposer() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001837 ATRACE_CALL();
1838 ALOGV("setUpHWComposer");
1839
Jesse Hall028dc8f2013-08-20 16:35:32 -07001840 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Jesse Hallb7a05492014-08-14 15:45:06 -07001841 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty();
1842 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0;
1843 bool wasEmpty = !mDisplays[dpy]->lastCompositionHadVisibleLayers;
1844
1845 // If nothing has changed (!dirty), don't recompose.
1846 // If something changed, but we don't currently have any visible layers,
1847 // and didn't when we last did a composition, then skip it this time.
1848 // The second rule does two things:
1849 // - When all layers are removed from a display, we'll emit one black
1850 // frame, then nothing more until we get new layers.
1851 // - When a display is created with a private layer stack, we won't
1852 // emit any black frames until a layer is added to the layer stack.
1853 bool mustRecompose = dirty && !(empty && wasEmpty);
1854
1855 ALOGV_IF(mDisplays[dpy]->getDisplayType() == DisplayDevice::DISPLAY_VIRTUAL,
1856 "dpy[%zu]: %s composition (%sdirty %sempty %swasEmpty)", dpy,
1857 mustRecompose ? "doing" : "skipping",
1858 dirty ? "+" : "-",
1859 empty ? "+" : "-",
1860 wasEmpty ? "+" : "-");
1861
Dan Stoza71433162014-02-04 16:22:36 -08001862 mDisplays[dpy]->beginFrame(mustRecompose);
Jesse Hallb7a05492014-08-14 15:45:06 -07001863
1864 if (mustRecompose) {
1865 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1866 }
Jesse Hall028dc8f2013-08-20 16:35:32 -07001867 }
1868
Dan Stoza9e56aa02015-11-02 13:00:03 -08001869 // build the h/w work list
1870 if (CC_UNLIKELY(mGeometryInvalid)) {
1871 mGeometryInvalid = false;
1872 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1873 sp<const DisplayDevice> displayDevice(mDisplays[dpy]);
1874 const auto hwcId = displayDevice->getHwcDisplayId();
1875 if (hwcId >= 0) {
1876 const Vector<sp<Layer>>& currentLayers(
1877 displayDevice->getVisibleLayersSortedByZ());
Robert Carrae060832016-11-28 10:51:00 -08001878 for (size_t i = 0; i < currentLayers.size(); i++) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001879 const auto& layer = currentLayers[i];
Dan Stoza9e56aa02015-11-02 13:00:03 -08001880 if (!layer->hasHwcLayer(hwcId)) {
David Sodman105b7dc2017-11-04 20:28:14 -07001881 if (!layer->createHwcLayer(getBE().mHwc.get(), hwcId)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001882 layer->forceClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001883 continue;
Jamie Gennisa4310c82012-09-25 20:26:00 -07001884 }
1885 }
Jamie Gennisa4310c82012-09-25 20:26:00 -07001886
Robert Carrae060832016-11-28 10:51:00 -08001887 layer->setGeometry(displayDevice, i);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001888 if (mDebugDisableHWC || mDebugRegion) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001889 layer->forceClientComposition(hwcId);
Riley Andrews03414a12014-07-01 14:22:59 -07001890 }
1891 }
1892 }
1893 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001894 }
Riley Andrews03414a12014-07-01 14:22:59 -07001895
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001896
Romain Guy0147a172017-06-01 13:53:56 -07001897 mat4 colorMatrix = mColorMatrix * computeSaturationMatrix() * mDaltonizer();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001898
Dan Stoza9e56aa02015-11-02 13:00:03 -08001899 // Set the per-frame data
1900 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1901 auto& displayDevice = mDisplays[displayId];
1902 const auto hwcId = displayDevice->getHwcDisplayId();
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001903
Dan Stoza9e56aa02015-11-02 13:00:03 -08001904 if (hwcId < 0) {
1905 continue;
Jesse Hall38efe862013-04-06 23:12:29 -07001906 }
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001907 if (colorMatrix != mPreviousColorMatrix) {
David Sodman105b7dc2017-11-04 20:28:14 -07001908 status_t result = getBE().mHwc->setColorTransform(hwcId, colorMatrix);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001909 ALOGE_IF(result != NO_ERROR, "Failed to set color transform on "
1910 "display %zd: %d", displayId, result);
1911 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001912 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu8d2651e2018-01-24 12:18:49 -08001913 if ((layer->getDataSpace() == HAL_DATASPACE_BT2020_PQ ||
1914 layer->getDataSpace() == HAL_DATASPACE_BT2020_ITU_PQ) &&
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001915 !displayDevice->getHdrSupport()) {
1916 layer->forceClientComposition(hwcId);
1917 }
1918
chaviwc9232ed2017-11-14 15:31:15 -08001919 if (layer->getForceClientComposition(hwcId)) {
1920 ALOGV("[%s] Requesting Client composition", layer->getName().string());
1921 layer->setCompositionType(hwcId, HWC2::Composition::Client);
1922 continue;
1923 }
1924
Dan Stoza9e56aa02015-11-02 13:00:03 -08001925 layer->setPerFrameData(displayDevice);
1926 }
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001927
1928 if (hasWideColorDisplay) {
1929 android_color_mode newColorMode;
1930 android_dataspace newDataSpace = HAL_DATASPACE_V0_SRGB;
1931
1932 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001933 newDataSpace = bestTargetDataSpace(layer->getDataSpace(), newDataSpace,
1934 displayDevice->getHdrSupport());
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001935 ALOGV("layer: %s, dataspace: %s (%#x), newDataSpace: %s (%#x)",
1936 layer->getName().string(), dataspaceDetails(layer->getDataSpace()).c_str(),
1937 layer->getDataSpace(), dataspaceDetails(newDataSpace).c_str(), newDataSpace);
1938 }
1939 newColorMode = pickColorMode(newDataSpace);
1940
Thierry Strudel2924d012017-08-14 15:19:37 -07001941 setActiveColorModeInternal(displayDevice, newColorMode);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001942 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001943 }
1944
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001945 mPreviousColorMatrix = colorMatrix;
1946
Dan Stoza9e56aa02015-11-02 13:00:03 -08001947 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001948 auto& displayDevice = mDisplays[displayId];
1949 if (!displayDevice->isDisplayOn()) {
1950 continue;
1951 }
1952
David Sodman105b7dc2017-11-04 20:28:14 -07001953 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001954 ALOGE_IF(result != NO_ERROR, "prepareFrame for display %zd failed:"
1955 " %d (%s)", displayId, result, strerror(-result));
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001956 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001957}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001958
Mathias Agopiancd60f992012-08-16 16:28:27 -07001959void SurfaceFlinger::doComposition() {
1960 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001961 ALOGV("doComposition");
1962
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001963 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001964 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001965 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001966 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001967 // transform the dirty region into this screen's coordinate space
1968 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -08001969
1970 // repaint the framebuffer (if needed)
1971 doDisplayComposition(hw, dirtyRegion);
1972
Mathias Agopiancd60f992012-08-16 16:28:27 -07001973 hw->dirtyRegion.clear();
Chia-I Wub02087d2017-11-09 10:19:54 -08001974 hw->flip();
Mathias Agopian87baae12012-07-31 12:38:26 -07001975 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001976 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001977 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001978}
1979
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001980void SurfaceFlinger::postFramebuffer()
1981{
Mathias Agopian841cde52012-03-01 15:44:37 -08001982 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001983 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08001984
Mathias Agopiana44b0412011-10-16 18:46:35 -07001985 const nsecs_t now = systemTime();
1986 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001987
Dan Stoza9e56aa02015-11-02 13:00:03 -08001988 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1989 auto& displayDevice = mDisplays[displayId];
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001990 if (!displayDevice->isDisplayOn()) {
1991 continue;
1992 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001993 const auto hwcId = displayDevice->getHwcDisplayId();
1994 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07001995 getBE().mHwc->presentAndGetReleaseFences(hwcId);
Mathias Agopian2a231842012-09-24 18:12:35 -07001996 }
Dan Stoza2dc3be82016-04-06 14:05:37 -07001997 displayDevice->onSwapBuffersCompleted();
Chia-I Wu7f402902017-11-09 12:51:10 -08001998 displayDevice->makeCurrent();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001999 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu7b549592017-11-15 09:14:57 -08002000 // The layer buffer from the previous frame (if any) is released
2001 // by HWC only when the release fence from this frame (if any) is
2002 // signaled. Always get the release fence from HWC first.
2003 auto hwcLayer = layer->getHwcLayer(hwcId);
David Sodman105b7dc2017-11-04 20:28:14 -07002004 sp<Fence> releaseFence = getBE().mHwc->getLayerReleaseFence(hwcId, hwcLayer);
Chia-I Wu7b549592017-11-15 09:14:57 -08002005
2006 // If the layer was client composited in the previous frame, we
2007 // need to merge with the previous client target acquire fence.
2008 // Since we do not track that, always merge with the current
2009 // client target acquire fence when it is available, even though
2010 // this is suboptimal.
Dan Stoza9e56aa02015-11-02 13:00:03 -08002011 if (layer->getCompositionType(hwcId) == HWC2::Composition::Client) {
Chia-I Wu7b549592017-11-15 09:14:57 -08002012 releaseFence = Fence::merge("LayerRelease", releaseFence,
2013 displayDevice->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002014 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002015
Dan Stoza9e56aa02015-11-02 13:00:03 -08002016 layer->onLayerDisplayed(releaseFence);
2017 }
Chia-I Wu83806892017-11-16 10:50:20 -08002018
2019 // We've got a list of layers needing fences, that are disjoint with
2020 // displayDevice->getVisibleLayersSortedByZ. The best we can do is to
2021 // supply them with the present fence.
2022 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
David Sodman105b7dc2017-11-04 20:28:14 -07002023 sp<Fence> presentFence = getBE().mHwc->getPresentFence(hwcId);
Chia-I Wu83806892017-11-16 10:50:20 -08002024 for (auto& layer : displayDevice->getLayersNeedingFences()) {
2025 layer->onLayerDisplayed(presentFence);
2026 }
2027 }
2028
Dan Stoza9e56aa02015-11-02 13:00:03 -08002029 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07002030 getBE().mHwc->clearReleaseFences(hwcId);
Jesse Hallef194142012-06-14 14:45:17 -07002031 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002032 }
2033
Mathias Agopiana44b0412011-10-16 18:46:35 -07002034 mLastSwapBufferTime = systemTime() - now;
2035 mDebugInSwapBuffers = 0;
Jamie Gennis6547ff42013-07-16 20:12:42 -07002036
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002037 // |mStateLock| not needed as we are on the main thread
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002038 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
2039 uint32_t flipCount = getDefaultDisplayDeviceLocked()->getPageFlipCount();
2040 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2041 logFrameStats();
2042 }
Jamie Gennis6547ff42013-07-16 20:12:42 -07002043 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002044}
2045
Mathias Agopian87baae12012-07-31 12:38:26 -07002046void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002047{
Mathias Agopian841cde52012-03-01 15:44:37 -08002048 ATRACE_CALL();
2049
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002050 // here we keep a copy of the drawing state (that is the state that's
2051 // going to be overwritten by handleTransactionLocked()) outside of
2052 // mStateLock so that the side-effects of the State assignment
2053 // don't happen with mStateLock held (which can cause deadlocks).
2054 State drawingState(mDrawingState);
2055
Mathias Agopianca4d3602011-05-19 15:38:14 -07002056 Mutex::Autolock _l(mStateLock);
2057 const nsecs_t now = systemTime();
2058 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002059
Mathias Agopianca4d3602011-05-19 15:38:14 -07002060 // Here we're guaranteed that some transaction flags are set
2061 // so we can call handleTransactionLocked() unconditionally.
2062 // We call getTransactionFlags(), which will also clear the flags,
2063 // with mStateLock held to guarantee that mCurrentState won't change
2064 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002065
Mathias Agopiane57f2922012-08-09 16:29:12 -07002066 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002067 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002068
Mathias Agopianca4d3602011-05-19 15:38:14 -07002069 mLastTransactionTime = systemTime() - now;
2070 mDebugInTransaction = 0;
2071 invalidateHwcGeometry();
2072 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002073}
2074
Lloyd Pique715a2c12017-12-14 17:18:08 -08002075DisplayDevice::DisplayType SurfaceFlinger::determineDisplayType(hwc2_display_t display,
2076 HWC2::Connection connection) const {
2077 // Figure out whether the event is for the primary display or an
2078 // external display by matching the Hwc display id against one for a
2079 // connected display. If we did not find a match, we then check what
2080 // displays are not already connected to determine the type. If we don't
2081 // have a connected primary display, we assume the new display is meant to
2082 // be the primary display, and then if we don't have an external display,
2083 // we assume it is that.
2084 const auto primaryDisplayId =
2085 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_PRIMARY);
2086 const auto externalDisplayId =
2087 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_EXTERNAL);
2088 if (primaryDisplayId && primaryDisplayId == display) {
2089 return DisplayDevice::DISPLAY_PRIMARY;
2090 } else if (externalDisplayId && externalDisplayId == display) {
2091 return DisplayDevice::DISPLAY_EXTERNAL;
2092 } else if (connection == HWC2::Connection::Connected && !primaryDisplayId) {
2093 return DisplayDevice::DISPLAY_PRIMARY;
2094 } else if (connection == HWC2::Connection::Connected && !externalDisplayId) {
2095 return DisplayDevice::DISPLAY_EXTERNAL;
2096 }
2097
2098 return DisplayDevice::DISPLAY_ID_INVALID;
2099}
2100
Lloyd Piqueba04e622017-12-14 17:11:26 -08002101void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2102 for (const auto& event : mPendingHotplugEvents) {
Lloyd Pique715a2c12017-12-14 17:18:08 -08002103 auto displayType = determineDisplayType(event.display, event.connection);
2104 if (displayType == DisplayDevice::DISPLAY_ID_INVALID) {
2105 ALOGW("Unable to determine the display type for display %" PRIu64, event.display);
2106 continue;
2107 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002108
2109 if (getBE().mHwc->isUsingVrComposer() && displayType == DisplayDevice::DISPLAY_EXTERNAL) {
2110 ALOGE("External displays are not supported by the vr hardware composer.");
2111 continue;
2112 }
2113
Lloyd Pique715a2c12017-12-14 17:18:08 -08002114 getBE().mHwc->onHotplug(event.display, displayType, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002115
2116 if (event.connection == HWC2::Connection::Connected) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002117 ALOGV("Creating built in display %d", displayType);
2118 ALOGW_IF(mBuiltinDisplays[displayType],
2119 "Overwriting display token for display type %d", displayType);
2120 mBuiltinDisplays[displayType] = new BBinder();
2121 // All non-virtual displays are currently considered secure.
2122 DisplayDeviceState info(displayType, true);
2123 info.displayName = displayType == DisplayDevice::DISPLAY_PRIMARY ?
2124 "Built-in Screen" : "External Screen";
2125 mCurrentState.displays.add(mBuiltinDisplays[displayType], info);
2126 mInterceptor.saveDisplayCreation(info);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002127 } else {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002128 ALOGV("Removing built in display %d", displayType);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002129
Lloyd Piquefcd86612017-12-14 17:15:36 -08002130 ssize_t idx = mCurrentState.displays.indexOfKey(mBuiltinDisplays[displayType]);
2131 if (idx >= 0) {
2132 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
2133 mInterceptor.saveDisplayDeletion(info.displayId);
2134 mCurrentState.displays.removeItemsAt(idx);
2135 }
2136 mBuiltinDisplays[displayType].clear();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002137 }
2138
2139 processDisplayChangesLocked();
2140 }
2141
2142 mPendingHotplugEvents.clear();
2143}
2144
Lloyd Pique347200f2017-12-14 17:00:15 -08002145void SurfaceFlinger::processDisplayChangesLocked() {
2146 // here we take advantage of Vector's copy-on-write semantics to
2147 // improve performance by skipping the transaction entirely when
2148 // know that the lists are identical
2149 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2150 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2151 if (!curr.isIdenticalTo(draw)) {
2152 mVisibleRegionsDirty = true;
2153 const size_t cc = curr.size();
2154 size_t dc = draw.size();
2155
2156 // find the displays that were removed
2157 // (ie: in drawing state but not in current state)
2158 // also handle displays that changed
2159 // (ie: displays that are in both lists)
2160 for (size_t i = 0; i < dc;) {
2161 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2162 if (j < 0) {
2163 // in drawing state but not in current state
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002164 // Call makeCurrent() on the primary display so we can
2165 // be sure that nothing associated with this display
2166 // is current.
2167 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDeviceLocked());
2168 if (defaultDisplay != nullptr) defaultDisplay->makeCurrent();
2169 sp<DisplayDevice> hw(getDisplayDeviceLocked(draw.keyAt(i)));
2170 if (hw != nullptr) hw->disconnect(getHwComposer());
2171 if (draw[i].type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES)
2172 mEventThread->onHotplugReceived(draw[i].type, false);
2173 mDisplays.removeItem(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002174 } else {
2175 // this display is in both lists. see if something changed.
2176 const DisplayDeviceState& state(curr[j]);
2177 const wp<IBinder>& display(curr.keyAt(j));
2178 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2179 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2180 if (state_binder != draw_binder) {
2181 // changing the surface is like destroying and
2182 // recreating the DisplayDevice, so we just remove it
2183 // from the drawing state, so that it get re-added
2184 // below.
2185 sp<DisplayDevice> hw(getDisplayDeviceLocked(display));
2186 if (hw != nullptr) hw->disconnect(getHwComposer());
2187 mDisplays.removeItem(display);
2188 mDrawingState.displays.removeItemsAt(i);
2189 dc--;
2190 // at this point we must loop to the next item
2191 continue;
2192 }
2193
2194 const sp<DisplayDevice> disp(getDisplayDeviceLocked(display));
2195 if (disp != nullptr) {
2196 if (state.layerStack != draw[i].layerStack) {
2197 disp->setLayerStack(state.layerStack);
2198 }
2199 if ((state.orientation != draw[i].orientation) ||
2200 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
2201 disp->setProjection(state.orientation, state.viewport, state.frame);
2202 }
2203 if (state.width != draw[i].width || state.height != draw[i].height) {
2204 disp->setDisplaySize(state.width, state.height);
2205 }
2206 }
2207 }
2208 ++i;
2209 }
2210
2211 // find displays that were added
2212 // (ie: in current state but not in drawing state)
2213 for (size_t i = 0; i < cc; i++) {
2214 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2215 const DisplayDeviceState& state(curr[i]);
2216
2217 sp<DisplaySurface> dispSurface;
2218 sp<IGraphicBufferProducer> producer;
2219 sp<IGraphicBufferProducer> bqProducer;
2220 sp<IGraphicBufferConsumer> bqConsumer;
2221 BufferQueue::createBufferQueue(&bqProducer, &bqConsumer);
2222
2223 int32_t hwcId = -1;
2224 if (state.isVirtualDisplay()) {
2225 // Virtual displays without a surface are dormant:
2226 // they have external state (layer stack, projection,
2227 // etc.) but no internal state (i.e. a DisplayDevice).
2228 if (state.surface != nullptr) {
2229 // Allow VR composer to use virtual displays.
2230 if (mUseHwcVirtualDisplays || getBE().mHwc->isUsingVrComposer()) {
2231 int width = 0;
2232 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2233 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2234 int height = 0;
2235 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2236 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2237 int intFormat = 0;
2238 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2239 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
2240 auto format = static_cast<android_pixel_format_t>(intFormat);
2241
2242 getBE().mHwc->allocateVirtualDisplay(width, height, &format, &hwcId);
2243 }
2244
2245 // TODO: Plumb requested format back up to consumer
2246
2247 sp<VirtualDisplaySurface> vds =
2248 new VirtualDisplaySurface(*getBE().mHwc, hwcId, state.surface,
2249 bqProducer, bqConsumer,
2250 state.displayName);
2251
2252 dispSurface = vds;
2253 producer = vds;
2254 }
2255 } else {
2256 ALOGE_IF(state.surface != nullptr,
2257 "adding a supported display, but rendering "
2258 "surface is provided (%p), ignoring it",
2259 state.surface.get());
2260
2261 hwcId = state.type;
2262 dispSurface = new FramebufferSurface(*getBE().mHwc, hwcId, bqConsumer);
2263 producer = bqProducer;
2264 }
2265
2266 const wp<IBinder>& display(curr.keyAt(i));
Lloyd Piquefcd86612017-12-14 17:15:36 -08002267
Lloyd Pique347200f2017-12-14 17:00:15 -08002268 if (dispSurface != nullptr) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002269 bool useWideColorMode = hasWideColorDisplay;
Lloyd Piquec5208312018-01-08 17:59:02 -08002270 if (!mForceNativeColorMode) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002271 bool hasWideColorModes = false;
2272 std::vector<android_color_mode_t> modes =
2273 getHwComposer().getColorModes(state.type);
2274 for (android_color_mode_t colorMode : modes) {
2275 switch (colorMode) {
2276 case HAL_COLOR_MODE_DISPLAY_P3:
2277 case HAL_COLOR_MODE_ADOBE_RGB:
2278 case HAL_COLOR_MODE_DCI_P3:
2279 hasWideColorModes = true;
2280 break;
2281 default:
2282 break;
2283 }
2284 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002285 useWideColorMode = hasWideColorModes && hasWideColorDisplay;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002286 }
2287
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002288 bool hasHdrSupport = false;
2289 std::unique_ptr<HdrCapabilities> hdrCapabilities =
2290 getHwComposer().getHdrCapabilities(state.type);
2291 if (hdrCapabilities) {
2292 const std::vector<int32_t> types = hdrCapabilities->getSupportedHdrTypes();
2293 auto iter = std::find(types.cbegin(), types.cend(), HAL_HDR_HDR10);
2294 hasHdrSupport = iter != types.cend();
2295 }
2296
Lloyd Pique347200f2017-12-14 17:00:15 -08002297 sp<DisplayDevice> hw =
2298 new DisplayDevice(this, state.type, hwcId, state.isSecure, display,
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002299 dispSurface, producer, useWideColorMode,
2300 hasHdrSupport);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002301
Lloyd Piquec5208312018-01-08 17:59:02 -08002302 android_color_mode defaultColorMode = HAL_COLOR_MODE_NATIVE;
2303 if (useWideColorMode) {
2304 defaultColorMode = HAL_COLOR_MODE_SRGB;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002305 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002306 setActiveColorModeInternal(hw, defaultColorMode);
2307 hw->setCompositionDataSpace(HAL_DATASPACE_UNKNOWN);
Lloyd Pique347200f2017-12-14 17:00:15 -08002308 hw->setLayerStack(state.layerStack);
2309 hw->setProjection(state.orientation, state.viewport, state.frame);
2310 hw->setDisplayName(state.displayName);
Lloyd Piquec5208312018-01-08 17:59:02 -08002311
Lloyd Pique347200f2017-12-14 17:00:15 -08002312 mDisplays.add(display, hw);
2313 if (!state.isVirtualDisplay()) {
2314 mEventThread->onHotplugReceived(state.type, true);
2315 }
2316 }
2317 }
2318 }
2319 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002320
2321 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002322}
2323
Mathias Agopian87baae12012-07-31 12:38:26 -07002324void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002325{
Dan Stoza7dde5992015-05-22 09:51:44 -07002326 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002327 mCurrentState.traverseInZOrder([](Layer* layer) {
2328 layer->notifyAvailableFrames();
2329 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002330
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002331 /*
2332 * Traversal of the children
2333 * (perform the transaction for each of them if needed)
2334 */
2335
Mathias Agopian3559b072012-08-15 13:46:03 -07002336 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002337 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002338 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002339 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002340
2341 const uint32_t flags = layer->doTransaction(0);
2342 if (flags & Layer::eVisibleRegion)
2343 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002344 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002345 }
2346
2347 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002348 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002349 */
2350
Mathias Agopiane57f2922012-08-09 16:29:12 -07002351 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002352 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002353 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002354 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002355
Mathias Agopian84300952012-11-21 16:02:13 -08002356 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
2357 // The transform hint might have changed for some layers
2358 // (either because a display has changed, or because a layer
2359 // as changed).
2360 //
2361 // Walk through all the layers in currentLayers,
2362 // and update their transform hint.
2363 //
2364 // If a layer is visible only on a single display, then that
2365 // display is used to calculate the hint, otherwise we use the
2366 // default display.
2367 //
2368 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2369 // the hint is set before we acquire a buffer from the surface texture.
2370 //
2371 // NOTE: layer transactions have taken place already, so we use their
2372 // drawing state. However, SurfaceFlinger's own transaction has not
2373 // happened yet, so we must use the current state layer list
2374 // (soon to become the drawing state list).
2375 //
2376 sp<const DisplayDevice> disp;
2377 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002378 bool first = true;
2379 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002380 // NOTE: we rely on the fact that layers are sorted by
2381 // layerStack first (so we don't have to traverse the list
2382 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002383 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002384 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002385 currentlayerStack = layerStack;
2386 // figure out if this layerstack is mirrored
2387 // (more than one display) if so, pick the default display,
2388 // if not, pick the only display it's on.
2389 disp.clear();
2390 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2391 sp<const DisplayDevice> hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002392 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002393 if (disp == nullptr) {
George Burgess IV406a2852017-08-29 17:57:25 -07002394 disp = std::move(hw);
Mathias Agopian84300952012-11-21 16:02:13 -08002395 } else {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002396 disp = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002397 break;
2398 }
2399 }
2400 }
2401 }
Chet Haase91d25932013-04-11 15:24:55 -07002402
Robert Carr56a0b9a2017-12-04 16:06:13 -08002403 if (transactionFlags & eDisplayTransactionNeeded) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002404 if (disp == nullptr) {
Robert Carr56a0b9a2017-12-04 16:06:13 -08002405 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2406 // redraw after transform hint changes. See bug 8508397.
2407
2408 // could be null when this layer is using a layerStack
2409 // that is not visible on any display. Also can occur at
2410 // screen off/on times.
2411 disp = getDefaultDisplayDeviceLocked();
2412 }
2413 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08002414 }
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002415 if (disp != nullptr) {
2416 layer->updateTransformHint(disp);
2417 }
Robert Carr2047fae2016-11-28 14:09:09 -08002418
2419 first = false;
2420 });
Mathias Agopian84300952012-11-21 16:02:13 -08002421 }
2422
2423
Mathias Agopian3559b072012-08-15 13:46:03 -07002424 /*
2425 * Perform our own transaction if needed
2426 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002427
2428 if (mLayersAdded) {
2429 mLayersAdded = false;
2430 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002431 mVisibleRegionsDirty = true;
2432 }
2433
2434 // some layers might have been removed, so
2435 // we need to update the regions they're exposing.
2436 if (mLayersRemoved) {
2437 mLayersRemoved = false;
2438 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002439 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002440 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002441 // this layer is not visible anymore
2442 // TODO: we could traverse the tree from front to back and
2443 // compute the actual visible region
2444 // TODO: we could cache the transformed region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002445 Region visibleReg;
2446 visibleReg.set(layer->computeScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002447 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002448 }
Robert Carr2047fae2016-11-28 14:09:09 -08002449 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002450 }
2451
2452 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002453
2454 updateCursorAsync();
2455}
2456
2457void SurfaceFlinger::updateCursorAsync()
2458{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002459 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
2460 auto& displayDevice = mDisplays[displayId];
2461 if (displayDevice->getHwcDisplayId() < 0) {
Riley Andrews03414a12014-07-01 14:22:59 -07002462 continue;
2463 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002464
2465 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
2466 layer->updateCursorPosition(displayDevice);
Riley Andrews03414a12014-07-01 14:22:59 -07002467 }
2468 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002469}
2470
2471void SurfaceFlinger::commitTransaction()
2472{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002473 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002474 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002475 for (const auto& l : mLayersPendingRemoval) {
2476 recordBufferingStats(l->getName().string(),
2477 l->getOccupancyHistory(true));
2478 l->onRemoved();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002479 }
2480 mLayersPendingRemoval.clear();
2481 }
2482
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002483 // If this transaction is part of a window animation then the next frame
2484 // we composite should be considered an animation as well.
2485 mAnimCompositionPending = mAnimTransactionPending;
2486
Mathias Agopian4fec8732012-06-29 14:12:52 -07002487 mDrawingState = mCurrentState;
Robert Carr1f0a16a2016-10-24 16:27:39 -07002488 mDrawingState.traverseInZOrder([](Layer* layer) {
2489 layer->commitChildList();
2490 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002491 mTransactionPending = false;
2492 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002493 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002494}
2495
Chia-I Wuab0c3192017-08-01 11:29:00 -07002496void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002497 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002498{
Mathias Agopian841cde52012-03-01 15:44:37 -08002499 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002500 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002501
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002502 Region aboveOpaqueLayers;
2503 Region aboveCoveredLayers;
2504 Region dirty;
2505
Mathias Agopian87baae12012-07-31 12:38:26 -07002506 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002507
Robert Carr2047fae2016-11-28 14:09:09 -08002508 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002509 // start with the whole surface at its current location
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002510 const Layer::State& s(layer->getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002511
Jesse Hall01e29052013-02-19 16:13:35 -08002512 // only consider the layers on the given layer stack
Chia-I Wuab0c3192017-08-01 11:29:00 -07002513 if (!layer->belongsToDisplay(displayDevice->getLayerStack(), displayDevice->isPrimary()))
Robert Carr2047fae2016-11-28 14:09:09 -08002514 return;
Mathias Agopian87baae12012-07-31 12:38:26 -07002515
Mathias Agopianab028732010-03-16 16:41:46 -07002516 /*
2517 * opaqueRegion: area of a surface that is fully opaque.
2518 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002519 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002520
2521 /*
2522 * visibleRegion: area of a surface that is visible on screen
2523 * and not fully transparent. This is essentially the layer's
2524 * footprint minus the opaque regions above it.
2525 * Areas covered by a translucent surface are considered visible.
2526 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002527 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002528
2529 /*
2530 * coveredRegion: area of a surface that is covered by all
2531 * visible regions above it (which includes the translucent areas).
2532 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002533 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002534
Jesse Halla8026d22012-09-25 13:25:04 -07002535 /*
2536 * transparentRegion: area of a surface that is hinted to be completely
2537 * transparent. This is only used to tell when the layer has no visible
2538 * non-transparent regions and can be removed from the layer list. It
2539 * does not affect the visibleRegion of this layer or any layers
2540 * beneath it. The hint may not be correct if apps don't respect the
2541 * SurfaceView restrictions (which, sadly, some don't).
2542 */
2543 Region transparentRegion;
2544
Mathias Agopianab028732010-03-16 16:41:46 -07002545
2546 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002547 if (CC_LIKELY(layer->isVisible())) {
Andy McFadden4125a4f2014-01-29 17:17:11 -08002548 const bool translucent = !layer->isOpaque(s);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002549 Rect bounds(layer->computeScreenBounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002550 visibleRegion.set(bounds);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002551 Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002552 if (!visibleRegion.isEmpty()) {
2553 // Remove the transparent area from the visible region
2554 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002555 if (tr.preserveRects()) {
2556 // transform the transparent region
2557 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002558 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002559 // transformation too complex, can't do the
2560 // transparent region optimization.
2561 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002562 }
Mathias Agopianab028732010-03-16 16:41:46 -07002563 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002564
Mathias Agopianab028732010-03-16 16:41:46 -07002565 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002566 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02002567 if (layer->getAlpha() == 1.0f && !translucent &&
Mathias Agopianab028732010-03-16 16:41:46 -07002568 ((layerOrientation & Transform::ROT_INVALID) == false)) {
2569 // the opaque region is the layer's footprint
2570 opaqueRegion = visibleRegion;
2571 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002572 }
2573 }
2574
Robert Carre5f4f692018-01-12 13:12:28 -08002575 if (visibleRegion.isEmpty()) {
2576 layer->clearVisibilityRegions();
2577 return;
2578 }
2579
Mathias Agopianab028732010-03-16 16:41:46 -07002580 // Clip the covered region to the visible region
2581 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
2582
2583 // Update aboveCoveredLayers for next (lower) layer
2584 aboveCoveredLayers.orSelf(visibleRegion);
2585
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002586 // subtract the opaque region covered by the layers above us
2587 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002588
2589 // compute this layer's dirty region
2590 if (layer->contentDirty) {
2591 // we need to invalidate the whole region
2592 dirty = visibleRegion;
2593 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07002594 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002595 layer->contentDirty = false;
2596 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002597 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07002598 * the exposed region consists of two components:
2599 * 1) what's VISIBLE now and was COVERED before
2600 * 2) what's EXPOSED now less what was EXPOSED before
2601 *
2602 * note that (1) is conservative, we start with the whole
2603 * visible region but only keep what used to be covered by
2604 * something -- which mean it may have been exposed.
2605 *
2606 * (2) handles areas that were not covered by anything but got
2607 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002608 */
Mathias Agopianab028732010-03-16 16:41:46 -07002609 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002610 const Region oldVisibleRegion = layer->visibleRegion;
2611 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002612 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
2613 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002614 }
2615 dirty.subtractSelf(aboveOpaqueLayers);
2616
2617 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07002618 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002619
Mathias Agopianab028732010-03-16 16:41:46 -07002620 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002621 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07002622
Jesse Halla8026d22012-09-25 13:25:04 -07002623 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002624 layer->setVisibleRegion(visibleRegion);
2625 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07002626 layer->setVisibleNonTransparentRegion(
2627 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08002628 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002629
Mathias Agopian87baae12012-07-31 12:38:26 -07002630 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002631}
2632
Chia-I Wuab0c3192017-08-01 11:29:00 -07002633void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07002634 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07002635 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002636 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Mathias Agopian42977342012-08-05 00:40:46 -07002637 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07002638 }
2639 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002640}
2641
Dan Stoza6b9454d2014-11-07 16:00:59 -08002642bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002643{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002644 ALOGV("handlePageFlip");
2645
Brian Andersond6927fb2016-07-23 23:37:30 -07002646 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002647
Mathias Agopian4fec8732012-06-29 14:12:52 -07002648 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002649 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06002650 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07002651
2652 // Store the set of layers that need updates. This set must not change as
2653 // buffers are being latched, as this could result in a deadlock.
2654 // Example: Two producers share the same command stream and:
2655 // 1.) Layer 0 is latched
2656 // 2.) Layer 0 gets a new frame
2657 // 2.) Layer 1 gets a new frame
2658 // 3.) Layer 1 is latched.
2659 // Display is now waiting on Layer 1's frame, which is behind layer 0's
2660 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08002661 mDrawingState.traverseInZOrder([&](Layer* layer) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002662 if (layer->hasQueuedFrame()) {
2663 frameQueued = true;
2664 if (layer->shouldPresentNow(mPrimaryDispSync)) {
Robert Carr2047fae2016-11-28 14:09:09 -08002665 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07002666 } else {
2667 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002668 }
Dan Stozaee44edd2015-03-23 15:50:23 -07002669 } else {
2670 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002671 }
Robert Carr2047fae2016-11-28 14:09:09 -08002672 });
2673
Dan Stoza9e56aa02015-11-02 13:00:03 -08002674 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersond6927fb2016-07-23 23:37:30 -07002675 const Region dirty(layer->latchBuffer(visibleRegions, latchTime));
Dan Stozaee44edd2015-03-23 15:50:23 -07002676 layer->useSurfaceDamage();
Chia-I Wuab0c3192017-08-01 11:29:00 -07002677 invalidateLayerStack(layer, dirty);
Chia-I Wua36bf922017-06-30 12:51:05 -07002678 if (layer->isBufferLatched()) {
Mike Stroyan0cd76192017-04-20 12:10:48 -06002679 newDataLatched = true;
2680 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002681 }
Mathias Agopian4da75192010-08-10 17:19:56 -07002682
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002683 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002684
2685 // If we will need to wake up at some time in the future to deal with a
2686 // queued frame that shouldn't be displayed during this vsync period, wake
2687 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07002688 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002689 signalLayerUpdate();
2690 }
2691
2692 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06002693 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002694}
2695
Mathias Agopianad456f92011-01-13 17:53:01 -08002696void SurfaceFlinger::invalidateHwcGeometry()
2697{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002698 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08002699}
2700
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002701
Fabien Sanglard830b8472016-11-30 16:35:58 -08002702void SurfaceFlinger::doDisplayComposition(
2703 const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002704 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002705{
Dan Stoza71433162014-02-04 16:22:36 -08002706 // We only need to actually compose the display if:
2707 // 1) It is being handled by hardware composer, which may need this to
2708 // keep its virtual display state machine in sync, or
2709 // 2) There is work to be done (the dirty region isn't empty)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002710 bool isHwcDisplay = displayDevice->getHwcDisplayId() >= 0;
Dan Stoza71433162014-02-04 16:22:36 -08002711 if (!isHwcDisplay && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002712 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08002713 return;
2714 }
2715
Dan Stoza9e56aa02015-11-02 13:00:03 -08002716 ALOGV("doDisplayComposition");
Chia-I Wub02087d2017-11-09 10:19:54 -08002717 if (!doComposeSurfaces(displayDevice)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07002718
2719 // swap buffers (presentation)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002720 displayDevice->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002721}
2722
Chia-I Wub02087d2017-11-09 10:19:54 -08002723bool SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& displayDevice)
Mathias Agopianf384cc32011-09-08 18:31:55 -07002724{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002725 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07002726
Chia-I Wub02087d2017-11-09 10:19:54 -08002727 const Region bounds(displayDevice->bounds());
chaviwa76b2712017-09-20 12:02:26 -07002728 const DisplayRenderArea renderArea(displayDevice);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002729 const auto hwcId = displayDevice->getHwcDisplayId();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002730
2731 mat4 oldColorMatrix;
David Sodman105b7dc2017-11-04 20:28:14 -07002732 const bool applyColorMatrix = !getBE().mHwc->hasDeviceComposition(hwcId) &&
2733 !getBE().mHwc->hasCapability(HWC2::Capability::SkipClientColorTransform);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002734 if (applyColorMatrix) {
2735 mat4 colorMatrix = mColorMatrix * mDaltonizer();
2736 oldColorMatrix = getRenderEngine().setupColorTransform(colorMatrix);
2737 }
2738
David Sodman105b7dc2017-11-04 20:28:14 -07002739 bool hasClientComposition = getBE().mHwc->hasClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002740 if (hasClientComposition) {
2741 ALOGV("hasClientComposition");
2742
David Sodmanbc815282017-11-05 18:57:52 -08002743 getBE().mRenderEngine->setWideColor(
Romain Guy54f154a2017-10-24 21:40:32 +01002744 displayDevice->getWideColorSupport() && !mForceNativeColorMode);
David Sodmanbc815282017-11-05 18:57:52 -08002745 getBE().mRenderEngine->setColorMode(mForceNativeColorMode ?
Romain Guy54f154a2017-10-24 21:40:32 +01002746 HAL_COLOR_MODE_NATIVE : displayDevice->getActiveColorMode());
Chia-I Wu7f402902017-11-09 12:51:10 -08002747 if (!displayDevice->makeCurrent()) {
Michael Chockc8c71092013-03-04 15:15:46 -08002748 ALOGW("DisplayDevice::makeCurrent failed. Aborting surface composition for display %s",
Dan Stoza9e56aa02015-11-02 13:00:03 -08002749 displayDevice->getDisplayName().string());
Chia-I Wu7f402902017-11-09 12:51:10 -08002750 getRenderEngine().resetCurrentSurface();
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002751
2752 // |mStateLock| not needed as we are on the main thread
Chia-I Wu7f402902017-11-09 12:51:10 -08002753 if(!getDefaultDisplayDeviceLocked()->makeCurrent()) {
Michael Lentine3f121fc2014-10-01 11:17:28 -07002754 ALOGE("DisplayDevice::makeCurrent on default display failed. Aborting.");
2755 }
2756 return false;
Michael Chockc8c71092013-03-04 15:15:46 -08002757 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002758
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002759 // Never touch the framebuffer if we don't have any framebuffer layers
David Sodman105b7dc2017-11-04 20:28:14 -07002760 const bool hasDeviceComposition = getBE().mHwc->hasDeviceComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002761 if (hasDeviceComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002762 // when using overlays, we assume a fully transparent framebuffer
2763 // NOTE: we could reduce how much we need to clear, for instance
2764 // remove where there are opaque FB layers. however, on some
Mathias Agopian3f844832013-08-07 21:24:32 -07002765 // GPUs doing a "clean slate" clear might be more efficient.
Mathias Agopianb9494d52012-04-18 02:28:45 -07002766 // We'll revisit later if needed.
David Sodmanbc815282017-11-05 18:57:52 -08002767 getBE().mRenderEngine->clearWithColor(0, 0, 0, 0);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002768 } else {
Chia-I Wub02087d2017-11-09 10:19:54 -08002769 // we start with the whole screen area and remove the scissor part
Mathias Agopian766dc492012-10-30 18:08:06 -07002770 // we're left with the letterbox region
2771 // (common case is that letterbox ends-up being empty)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002772 const Region letterbox(bounds.subtract(displayDevice->getScissor()));
Mathias Agopian766dc492012-10-30 18:08:06 -07002773
2774 // compute the area to clear
Dan Stoza9e56aa02015-11-02 13:00:03 -08002775 Region region(displayDevice->undefinedRegion.merge(letterbox));
Mathias Agopian766dc492012-10-30 18:08:06 -07002776
Mathias Agopianb9494d52012-04-18 02:28:45 -07002777 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07002778 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002779 // can happen with SurfaceView
Dan Stoza9e56aa02015-11-02 13:00:03 -08002780 drawWormhole(displayDevice, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002781 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07002782 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002783
Dan Stoza9e56aa02015-11-02 13:00:03 -08002784 if (displayDevice->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
Mathias Agopian766dc492012-10-30 18:08:06 -07002785 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07002786 // scissor on the main display. It should never be needed
2787 // anyways (though in theory it could since the API allows it).
Dan Stoza9e56aa02015-11-02 13:00:03 -08002788 const Rect& bounds(displayDevice->getBounds());
2789 const Rect& scissor(displayDevice->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002790 if (scissor != bounds) {
2791 // scissor doesn't match the screen's dimensions, so we
2792 // need to clear everything outside of it and enable
2793 // the GL scissor so we don't draw anything where we shouldn't
Mathias Agopian3f844832013-08-07 21:24:32 -07002794
Mathias Agopianf45c5102012-10-24 16:29:17 -07002795 // enable scissor for this frame
Dan Stoza9e56aa02015-11-02 13:00:03 -08002796 const uint32_t height = displayDevice->getHeight();
David Sodmanbc815282017-11-05 18:57:52 -08002797 getBE().mRenderEngine->setScissor(scissor.left, height - scissor.bottom,
Mathias Agopian3f844832013-08-07 21:24:32 -07002798 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002799 }
2800 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002801 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002802
Mathias Agopian85d751c2012-08-29 16:59:24 -07002803 /*
2804 * and then, render the layers targeted at the framebuffer
2805 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002806
Dan Stoza9e56aa02015-11-02 13:00:03 -08002807 ALOGV("Rendering client layers");
2808 const Transform& displayTransform = displayDevice->getTransform();
2809 if (hwcId >= 0) {
Mathias Agopian85d751c2012-08-29 16:59:24 -07002810 // we're using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002811 bool firstLayer = true;
2812 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002813 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002814 displayTransform.transform(layer->visibleRegion)));
2815 ALOGV("Layer: %s", layer->getName().string());
2816 ALOGV(" Composition type: %s",
2817 to_string(layer->getCompositionType(hwcId)).c_str());
Mathias Agopian85d751c2012-08-29 16:59:24 -07002818 if (!clip.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002819 switch (layer->getCompositionType(hwcId)) {
2820 case HWC2::Composition::Cursor:
2821 case HWC2::Composition::Device:
Gray Huang267ab792017-01-11 13:41:09 +08002822 case HWC2::Composition::Sideband:
Dan Stoza9e56aa02015-11-02 13:00:03 -08002823 case HWC2::Composition::SolidColor: {
Mathias Agopianac683022013-10-01 15:36:52 -07002824 const Layer::State& state(layer->getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -08002825 if (layer->getClearClientTarget(hwcId) && !firstLayer &&
chaviw13fdc492017-06-27 12:40:18 -07002826 layer->isOpaque(state) && (state.color.a == 1.0f)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002827 && hasClientComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002828 // never clear the very first layer since we're
2829 // guaranteed the FB is already cleared
chaviwa76b2712017-09-20 12:02:26 -07002830 layer->clearWithOpenGL(renderArea);
Mathias Agopiancd60f992012-08-16 16:28:27 -07002831 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002832 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002833 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002834 case HWC2::Composition::Client: {
chaviwa76b2712017-09-20 12:02:26 -07002835 layer->draw(renderArea, clip);
Mathias Agopian85d751c2012-08-29 16:59:24 -07002836 break;
2837 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002838 default:
Mathias Agopianda27af92012-09-13 18:17:13 -07002839 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002840 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002841 } else {
2842 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07002843 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002844 firstLayer = false;
Mathias Agopian85d751c2012-08-29 16:59:24 -07002845 }
2846 } else {
2847 // we're not using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002848 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002849 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002850 displayTransform.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07002851 if (!clip.isEmpty()) {
chaviwa76b2712017-09-20 12:02:26 -07002852 layer->draw(renderArea, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07002853 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002854 }
2855 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002856
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002857 if (applyColorMatrix) {
2858 getRenderEngine().setupColorTransform(oldColorMatrix);
2859 }
2860
Mathias Agopianf45c5102012-10-24 16:29:17 -07002861 // disable scissor at the end of the frame
David Sodmanbc815282017-11-05 18:57:52 -08002862 getBE().mRenderEngine->disableScissor();
Michael Lentine3f121fc2014-10-01 11:17:28 -07002863 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002864}
2865
Fabien Sanglard830b8472016-11-30 16:35:58 -08002866void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& displayDevice, const Region& region) const {
2867 const int32_t height = displayDevice->getHeight();
Lloyd Pique144e1162017-12-20 16:44:52 -08002868 auto& engine(getRenderEngine());
Mathias Agopian3f844832013-08-07 21:24:32 -07002869 engine.fillRegionWithColor(region, height, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002870}
2871
Dan Stoza7d89d062015-04-30 13:29:25 -07002872status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08002873 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07002874 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07002875 const sp<Layer>& lbc,
2876 const sp<Layer>& parent)
Mathias Agopian96f08192010-06-02 23:28:45 -07002877{
Dan Stoza7d89d062015-04-30 13:29:25 -07002878 // add this layer to the current state list
2879 {
2880 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002881 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06002882 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
2883 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07002884 return NO_MEMORY;
2885 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002886 if (parent == nullptr) {
2887 mCurrentState.layersSortedByZ.add(lbc);
2888 } else {
Robert Carrebd62af2017-11-28 08:49:59 -08002889 if (parent->isPendingRemoval()) {
Chia-I Wu98f1c102017-05-30 14:54:08 -07002890 ALOGE("addClientLayer called with a removed parent");
2891 return NAME_NOT_FOUND;
2892 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002893 parent->addChild(lbc);
2894 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07002895
Dan Stoza7d89d062015-04-30 13:29:25 -07002896 mGraphicBufferProducerList.add(IInterface::asBinder(gbc));
Robert Carr1f0a16a2016-10-24 16:27:39 -07002897 mLayersAdded = true;
2898 mNumLayers++;
Dan Stoza7d89d062015-04-30 13:29:25 -07002899 }
2900
Mathias Agopian96f08192010-06-02 23:28:45 -07002901 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08002902 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07002903
Dan Stoza7d89d062015-04-30 13:29:25 -07002904 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07002905}
2906
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002907status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer, bool topLevelOnly) {
Robert Carr7f9b8992017-03-10 11:08:39 -08002908 Mutex::Autolock _l(mStateLock);
chaviwca27f252018-02-06 16:46:39 -08002909 return removeLayerLocked(mStateLock, layer, topLevelOnly);
2910}
Robert Carr7f9b8992017-03-10 11:08:39 -08002911
chaviwca27f252018-02-06 16:46:39 -08002912status_t SurfaceFlinger::removeLayerLocked(const Mutex&, const sp<Layer>& layer,
2913 bool topLevelOnly) {
chaviw8b3871a2017-11-01 17:41:01 -07002914 if (layer->isPendingRemoval()) {
2915 return NO_ERROR;
2916 }
2917
Robert Carr1f0a16a2016-10-24 16:27:39 -07002918 const auto& p = layer->getParent();
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002919 ssize_t index;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002920 if (p != nullptr) {
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002921 if (topLevelOnly) {
2922 return NO_ERROR;
2923 }
2924
Chia-I Wu98f1c102017-05-30 14:54:08 -07002925 sp<Layer> ancestor = p;
2926 while (ancestor->getParent() != nullptr) {
2927 ancestor = ancestor->getParent();
2928 }
2929 if (mCurrentState.layersSortedByZ.indexOf(ancestor) < 0) {
2930 ALOGE("removeLayer called with a layer whose parent has been removed");
2931 return NAME_NOT_FOUND;
2932 }
Chia-I Wufae51c42017-06-15 12:53:59 -07002933
2934 index = p->removeChild(layer);
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002935 } else {
2936 index = mCurrentState.layersSortedByZ.remove(layer);
Chia-I Wu98f1c102017-05-30 14:54:08 -07002937 }
2938
Robert Carr136e2f62017-02-08 17:54:29 -08002939 // As a matter of normal operation, the LayerCleaner will produce a second
2940 // attempt to remove the surface. The Layer will be kept alive in mDrawingState
2941 // so we will succeed in promoting it, but it's already been removed
2942 // from mCurrentState. As long as we can find it in mDrawingState we have no problem
2943 // otherwise something has gone wrong and we are leaking the layer.
2944 if (index < 0 && mDrawingState.layersSortedByZ.indexOf(layer) < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002945 ALOGE("Failed to find layer (%s) in layer parent (%s).",
2946 layer->getName().string(),
2947 (p != nullptr) ? p->getName().string() : "no-parent");
2948 return BAD_VALUE;
Robert Carr136e2f62017-02-08 17:54:29 -08002949 } else if (index < 0) {
2950 return NO_ERROR;
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002951 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002952
Chia-I Wuc6657022017-08-15 11:18:17 -07002953 layer->onRemovedFromCurrentState();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002954 mLayersPendingRemoval.add(layer);
2955 mLayersRemoved = true;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002956 mNumLayers -= 1 + layer->getChildrenCount();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002957 setTransactionFlags(eTransactionNeeded);
2958 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002959}
2960
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08002961uint32_t SurfaceFlinger::peekTransactionFlags() {
Mathias Agopiandea20b12011-05-03 17:04:02 -07002962 return android_atomic_release_load(&mTransactionFlags);
2963}
2964
Mathias Agopian3f844832013-08-07 21:24:32 -07002965uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002966 return android_atomic_and(~flags, &mTransactionFlags) & flags;
2967}
2968
Mathias Agopian3f844832013-08-07 21:24:32 -07002969uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002970 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
2971 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002972 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002973 }
2974 return old;
2975}
2976
chaviwca27f252018-02-06 16:46:39 -08002977bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
2978 for (const ComposerState& state : states) {
2979 // Here we need to check that the interface we're given is indeed
2980 // one of our own. A malicious client could give us a nullptr
2981 // IInterface, or one of its own or even one of our own but a
2982 // different type. All these situations would cause us to crash.
2983 if (state.client == nullptr) {
2984 return true;
2985 }
2986
2987 sp<IBinder> binder = IInterface::asBinder(state.client);
2988 if (binder == nullptr) {
2989 return true;
2990 }
2991
2992 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
2993 return true;
2994 }
2995 }
2996 return false;
2997}
2998
Mathias Agopian8b33f032012-07-24 20:43:54 -07002999void SurfaceFlinger::setTransactionState(
chaviwca27f252018-02-06 16:46:39 -08003000 const Vector<ComposerState>& states,
Mathias Agopian8b33f032012-07-24 20:43:54 -07003001 const Vector<DisplayState>& displays,
3002 uint32_t flags)
3003{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003004 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07003005 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07003006 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003007
chaviwca27f252018-02-06 16:46:39 -08003008 if (containsAnyInvalidClientState(states)) {
3009 return;
3010 }
3011
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003012 if (flags & eAnimation) {
3013 // For window updates that are part of an animation we must wait for
3014 // previous animation "frames" to be handled.
3015 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003016 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003017 if (CC_UNLIKELY(err != NO_ERROR)) {
3018 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003019 // caller after a few seconds.
3020 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3021 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003022 mAnimTransactionPending = false;
3023 break;
3024 }
3025 }
3026 }
3027
chaviwca27f252018-02-06 16:46:39 -08003028 for (const DisplayState& display : displays) {
3029 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003030 }
3031
chaviwca27f252018-02-06 16:46:39 -08003032 for (const ComposerState& state : states) {
3033 transactionFlags |= setClientStateLocked(state);
3034 }
3035
3036 // Iterate through all layers again to determine if any need to be destroyed. Marking layers
3037 // as destroyed should only occur after setting all other states. This is to allow for a
3038 // child re-parent to happen before marking its original parent as destroyed (which would
3039 // then mark the child as destroyed).
3040 for (const ComposerState& state : states) {
3041 setDestroyStateLocked(state);
Mathias Agopian698c0872011-06-28 19:09:31 -07003042 }
Mathias Agopian698c0872011-06-28 19:09:31 -07003043
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003044 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3045 // anyway. This can be used as a flush mechanism for previous async transactions.
3046 // Empty animation transaction can be used to simulate back-pressure, so also force a
3047 // transaction for empty animation transactions.
3048 if (transactionFlags == 0 &&
3049 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003050 transactionFlags = eTransactionNeeded;
3051 }
3052
Mathias Agopian386aa982011-11-07 21:58:03 -08003053 if (transactionFlags) {
Irvelffc9efc2016-07-27 15:16:37 -07003054 if (mInterceptor.isEnabled()) {
chaviwca27f252018-02-06 16:46:39 -08003055 mInterceptor.saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003056 }
Irvel468051e2016-06-13 16:44:44 -07003057
Mathias Agopian386aa982011-11-07 21:58:03 -08003058 // this triggers the transaction
3059 setTransactionFlags(transactionFlags);
3060
3061 // if this is a synchronous transaction, wait for it to take effect
3062 // before returning.
3063 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003064 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003065 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003066 if (flags & eAnimation) {
3067 mAnimTransactionPending = true;
3068 }
3069 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003070 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3071 if (CC_UNLIKELY(err != NO_ERROR)) {
3072 // just in case something goes wrong in SF, return to the
3073 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003074 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3075 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003076 break;
3077 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003078 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003079 }
3080}
3081
Mathias Agopiane57f2922012-08-09 16:29:12 -07003082uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
3083{
Jesse Hall9a143922012-10-04 16:29:19 -07003084 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
3085 if (dpyIdx < 0)
3086 return 0;
3087
Mathias Agopiane57f2922012-08-09 16:29:12 -07003088 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003089 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003090 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003091 const uint32_t what = s.what;
3092 if (what & DisplayState::eSurfaceChanged) {
Marco Nelissen097ca272014-11-14 08:01:01 -08003093 if (IInterface::asBinder(disp.surface) != IInterface::asBinder(s.surface)) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003094 disp.surface = s.surface;
3095 flags |= eDisplayTransactionNeeded;
3096 }
3097 }
3098 if (what & DisplayState::eLayerStackChanged) {
3099 if (disp.layerStack != s.layerStack) {
3100 disp.layerStack = s.layerStack;
3101 flags |= eDisplayTransactionNeeded;
3102 }
3103 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07003104 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003105 if (disp.orientation != s.orientation) {
3106 disp.orientation = s.orientation;
3107 flags |= eDisplayTransactionNeeded;
3108 }
3109 if (disp.frame != s.frame) {
3110 disp.frame = s.frame;
3111 flags |= eDisplayTransactionNeeded;
3112 }
3113 if (disp.viewport != s.viewport) {
3114 disp.viewport = s.viewport;
3115 flags |= eDisplayTransactionNeeded;
3116 }
3117 }
Michael Lentine47e45402014-07-18 15:34:25 -07003118 if (what & DisplayState::eDisplaySizeChanged) {
3119 if (disp.width != s.width) {
3120 disp.width = s.width;
3121 flags |= eDisplayTransactionNeeded;
3122 }
3123 if (disp.height != s.height) {
3124 disp.height = s.height;
3125 flags |= eDisplayTransactionNeeded;
3126 }
3127 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003128 }
3129 return flags;
3130}
3131
chaviwca27f252018-02-06 16:46:39 -08003132uint32_t SurfaceFlinger::setClientStateLocked(const ComposerState& composerState) {
3133 const layer_state_t& s = composerState.state;
3134 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3135
Mathias Agopian13127d82013-03-05 17:47:11 -08003136 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003137 if (layer == nullptr) {
3138 return 0;
3139 }
3140
3141 if (layer->isPendingRemoval()) {
3142 ALOGW("Attempting to set client state on removed layer: %s", layer->getName().string());
3143 return 0;
3144 }
3145
3146 uint32_t flags = 0;
3147
3148 const uint32_t what = s.what;
3149 bool geometryAppliesWithResize =
3150 what & layer_state_t::eGeometryAppliesWithResize;
3151 if (what & layer_state_t::ePositionChanged) {
3152 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3153 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003154 }
chaviw8b3871a2017-11-01 17:41:01 -07003155 }
3156 if (what & layer_state_t::eLayerChanged) {
3157 // NOTE: index needs to be calculated before we update the state
3158 const auto& p = layer->getParent();
3159 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003160 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003161 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003162 mCurrentState.layersSortedByZ.removeAt(idx);
3163 mCurrentState.layersSortedByZ.add(layer);
3164 // we need traversal (state changed)
3165 // AND transaction (list changed)
3166 flags |= eTransactionNeeded|eTraversalNeeded;
3167 }
chaviw8b3871a2017-11-01 17:41:01 -07003168 } else {
3169 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003170 flags |= eTransactionNeeded|eTraversalNeeded;
3171 }
3172 }
chaviw8b3871a2017-11-01 17:41:01 -07003173 }
3174 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003175 // NOTE: index needs to be calculated before we update the state
3176 const auto& p = layer->getParent();
3177 if (p == nullptr) {
3178 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3179 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3180 mCurrentState.layersSortedByZ.removeAt(idx);
3181 mCurrentState.layersSortedByZ.add(layer);
3182 // we need traversal (state changed)
3183 // AND transaction (list changed)
3184 flags |= eTransactionNeeded|eTraversalNeeded;
3185 }
3186 } else {
3187 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3188 flags |= eTransactionNeeded|eTraversalNeeded;
3189 }
chaviw8b3871a2017-11-01 17:41:01 -07003190 }
3191 }
3192 if (what & layer_state_t::eSizeChanged) {
3193 if (layer->setSize(s.w, s.h)) {
3194 flags |= eTraversalNeeded;
3195 }
3196 }
3197 if (what & layer_state_t::eAlphaChanged) {
3198 if (layer->setAlpha(s.alpha))
3199 flags |= eTraversalNeeded;
3200 }
3201 if (what & layer_state_t::eColorChanged) {
3202 if (layer->setColor(s.color))
3203 flags |= eTraversalNeeded;
3204 }
3205 if (what & layer_state_t::eMatrixChanged) {
3206 if (layer->setMatrix(s.matrix))
3207 flags |= eTraversalNeeded;
3208 }
3209 if (what & layer_state_t::eTransparentRegionChanged) {
3210 if (layer->setTransparentRegionHint(s.transparentRegion))
3211 flags |= eTraversalNeeded;
3212 }
3213 if (what & layer_state_t::eFlagsChanged) {
3214 if (layer->setFlags(s.flags, s.mask))
3215 flags |= eTraversalNeeded;
3216 }
3217 if (what & layer_state_t::eCropChanged) {
3218 if (layer->setCrop(s.crop, !geometryAppliesWithResize))
3219 flags |= eTraversalNeeded;
3220 }
3221 if (what & layer_state_t::eFinalCropChanged) {
3222 if (layer->setFinalCrop(s.finalCrop, !geometryAppliesWithResize))
3223 flags |= eTraversalNeeded;
3224 }
3225 if (what & layer_state_t::eLayerStackChanged) {
3226 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3227 // We only allow setting layer stacks for top level layers,
3228 // everything else inherits layer stack from its parent.
3229 if (layer->hasParent()) {
3230 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3231 layer->getName().string());
3232 } else if (idx < 0) {
3233 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3234 "that also does not appear in the top level layer list. Something"
3235 " has gone wrong.", layer->getName().string());
3236 } else if (layer->setLayerStack(s.layerStack)) {
3237 mCurrentState.layersSortedByZ.removeAt(idx);
3238 mCurrentState.layersSortedByZ.add(layer);
3239 // we need traversal (state changed)
3240 // AND transaction (list changed)
3241 flags |= eTransactionNeeded|eTraversalNeeded;
3242 }
3243 }
3244 if (what & layer_state_t::eDeferTransaction) {
3245 if (s.barrierHandle != nullptr) {
3246 layer->deferTransactionUntil(s.barrierHandle, s.frameNumber);
3247 } else if (s.barrierGbp != nullptr) {
3248 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp;
3249 if (authenticateSurfaceTextureLocked(gbp)) {
3250 const auto& otherLayer =
3251 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
3252 layer->deferTransactionUntil(otherLayer, s.frameNumber);
3253 } else {
3254 ALOGE("Attempt to defer transaction to to an"
3255 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003256 }
3257 }
chaviw8b3871a2017-11-01 17:41:01 -07003258 // We don't trigger a traversal here because if no other state is
3259 // changed, we don't want this to cause any more work
3260 }
3261 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003262 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003263 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003264 if (!hadParent) {
3265 mCurrentState.layersSortedByZ.remove(layer);
3266 }
chaviw8b3871a2017-11-01 17:41:01 -07003267 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003268 }
chaviw8b3871a2017-11-01 17:41:01 -07003269 }
3270 if (what & layer_state_t::eReparentChildren) {
3271 if (layer->reparentChildren(s.reparentHandle)) {
3272 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003273 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003274 }
chaviw8b3871a2017-11-01 17:41:01 -07003275 if (what & layer_state_t::eDetachChildren) {
3276 layer->detachChildren();
3277 }
3278 if (what & layer_state_t::eOverrideScalingModeChanged) {
3279 layer->setOverrideScalingMode(s.overrideScalingMode);
3280 // We don't trigger a traversal here because if no other state is
3281 // changed, we don't want this to cause any more work
3282 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003283 return flags;
3284}
3285
chaviwca27f252018-02-06 16:46:39 -08003286void SurfaceFlinger::setDestroyStateLocked(const ComposerState& composerState) {
3287 const layer_state_t& state = composerState.state;
3288 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3289
3290 sp<Layer> layer(client->getLayerUser(state.surface));
3291 if (layer == nullptr) {
3292 return;
3293 }
3294
3295 if (layer->isPendingRemoval()) {
3296 ALOGW("Attempting to destroy on removed layer: %s", layer->getName().string());
3297 return;
3298 }
3299
3300 if (state.what & layer_state_t::eDestroySurface) {
3301 removeLayerLocked(mStateLock, layer);
3302 }
3303}
3304
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003305status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07003306 const String8& name,
3307 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003308 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
Albert Chaulk479c60c2017-01-27 14:21:34 -05003309 uint32_t windowType, uint32_t ownerUid, sp<IBinder>* handle,
3310 sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003311{
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003312 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003313 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003314 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003315 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003316 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003317
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003318 status_t result = NO_ERROR;
3319
3320 sp<Layer> layer;
3321
Cody Northropbc755282017-03-31 12:00:08 -06003322 String8 uniqueName = getUniqueLayerName(name);
3323
Mathias Agopian3165cc22012-08-08 19:42:09 -07003324 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
3325 case ISurfaceComposerClient::eFXSurfaceNormal:
David Sodman0c69cad2017-08-21 12:12:51 -07003326 result = createBufferLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003327 uniqueName, w, h, flags, format,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003328 handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07003329
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003330 break;
chaviw13fdc492017-06-27 12:40:18 -07003331 case ISurfaceComposerClient::eFXSurfaceColor:
3332 result = createColorLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003333 uniqueName, w, h, flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003334 handle, &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003335 break;
3336 default:
3337 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003338 break;
3339 }
3340
Dan Stoza7d89d062015-04-30 13:29:25 -07003341 if (result != NO_ERROR) {
3342 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003343 }
Dan Stoza7d89d062015-04-30 13:29:25 -07003344
Chia-I Wuab0c3192017-08-01 11:29:00 -07003345 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
3346 // TODO b/64227542
3347 if (windowType == 441731) {
3348 windowType = 2024; // TYPE_NAVIGATION_BAR_PANEL
3349 layer->setPrimaryDisplayOnly();
3350 }
3351
Albert Chaulk479c60c2017-01-27 14:21:34 -05003352 layer->setInfo(windowType, ownerUid);
3353
Robert Carr1f0a16a2016-10-24 16:27:39 -07003354 result = addClientLayer(client, *handle, *gbp, layer, *parent);
Dan Stoza7d89d062015-04-30 13:29:25 -07003355 if (result != NO_ERROR) {
3356 return result;
3357 }
Irvelffc9efc2016-07-27 15:16:37 -07003358 mInterceptor.saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07003359
3360 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003361 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003362}
3363
Cody Northropbc755282017-03-31 12:00:08 -06003364String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
3365{
3366 bool matchFound = true;
3367 uint32_t dupeCounter = 0;
3368
3369 // Tack on our counter whether there is a hit or not, so everyone gets a tag
3370 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
3371
3372 // Loop over layers until we're sure there is no matching name
3373 while (matchFound) {
3374 matchFound = false;
3375 mDrawingState.traverseInZOrder([&](Layer* layer) {
3376 if (layer->getName() == uniqueName) {
3377 matchFound = true;
3378 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
3379 }
3380 });
3381 }
3382
3383 ALOGD_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(), uniqueName.c_str());
3384
3385 return uniqueName;
3386}
3387
David Sodman0c69cad2017-08-21 12:12:51 -07003388status_t SurfaceFlinger::createBufferLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003389 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
3390 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003391{
3392 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07003393 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003394 case PIXEL_FORMAT_TRANSPARENT:
3395 case PIXEL_FORMAT_TRANSLUCENT:
3396 format = PIXEL_FORMAT_RGBA_8888;
3397 break;
3398 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07003399 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003400 break;
3401 }
3402
David Sodman0c69cad2017-08-21 12:12:51 -07003403 sp<BufferLayer> layer = new BufferLayer(this, client, name, w, h, flags);
3404 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003405 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07003406 *handle = layer->getHandle();
3407 *gbp = layer->getProducer();
3408 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003409 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003410
David Sodman0c69cad2017-08-21 12:12:51 -07003411 ALOGE_IF(err, "createBufferLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003412 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003413}
3414
chaviw13fdc492017-06-27 12:40:18 -07003415status_t SurfaceFlinger::createColorLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003416 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003417 sp<IBinder>* handle, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003418{
chaviw13fdc492017-06-27 12:40:18 -07003419 *outLayer = new ColorLayer(this, client, name, w, h, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003420 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003421 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07003422}
3423
Mathias Agopianac9fa422013-02-11 16:40:36 -08003424status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003425{
Robert Carr9524cb32017-02-13 11:32:32 -08003426 // called by a client when it wants to remove a Layer
Mathias Agopian67106042013-03-14 19:18:13 -07003427 status_t err = NO_ERROR;
3428 sp<Layer> l(client->getLayerUser(handle));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003429 if (l != nullptr) {
Irvelffc9efc2016-07-27 15:16:37 -07003430 mInterceptor.saveSurfaceDeletion(l);
Mathias Agopian67106042013-03-14 19:18:13 -07003431 err = removeLayer(l);
3432 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
3433 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07003434 }
3435 return err;
3436}
3437
Mathias Agopian13127d82013-03-05 17:47:11 -08003438status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07003439{
Mathias Agopian67106042013-03-14 19:18:13 -07003440 // called by ~LayerCleaner() when all references to the IBinder (handle)
3441 // are gone
Robert Carr9524cb32017-02-13 11:32:32 -08003442 sp<Layer> l = layer.promote();
3443 if (l == nullptr) {
3444 // The layer has already been removed, carry on
3445 return NO_ERROR;
Robert Carr9524cb32017-02-13 11:32:32 -08003446 }
Chia-I Wu515dc9c2017-06-15 12:53:59 -07003447 // If we have a parent, then we can continue to live as long as it does.
3448 return removeLayer(l, true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003449}
3450
Mathias Agopianb60314a2012-04-10 22:09:54 -07003451// ---------------------------------------------------------------------------
3452
Andy McFadden13a082e2012-08-24 10:16:42 -07003453void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08003454 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07003455 Vector<ComposerState> state;
3456 Vector<DisplayState> displays;
3457 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08003458 d.what = DisplayState::eDisplayProjectionChanged |
3459 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08003460 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08003461 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003462 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07003463 d.frame.makeInvalid();
3464 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07003465 d.width = 0;
3466 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003467 displays.add(d);
3468 setTransactionState(state, displays, 0);
Steven Thomasb02664d2017-07-26 18:48:28 -07003469 setPowerModeInternal(getDisplayDevice(d.token), HWC_POWER_MODE_NORMAL,
3470 /*stateLockHeld*/ false);
Jamie Gennis6547ff42013-07-16 20:12:42 -07003471
David Sodman105b7dc2017-11-04 20:28:14 -07003472 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003473 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennis6547ff42013-07-16 20:12:42 -07003474 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08003475
Brian Andersond0010582017-03-07 13:20:31 -08003476 // Use phase of 0 since phase is not known.
3477 // Use latency of 0, which will snap to the ideal latency.
3478 setCompositorTimingSnapped(0, period, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07003479}
3480
3481void SurfaceFlinger::initializeDisplays() {
3482 class MessageScreenInitialized : public MessageBase {
3483 SurfaceFlinger* flinger;
3484 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -07003485 explicit MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
Andy McFadden13a082e2012-08-24 10:16:42 -07003486 virtual bool handler() {
3487 flinger->onInitializeDisplays();
3488 return true;
3489 }
3490 };
3491 sp<MessageBase> msg = new MessageScreenInitialized(this);
3492 postMessageAsync(msg); // we may be called from main thread, use async message
3493}
3494
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003495void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& hw,
Steven Thomasb02664d2017-07-26 18:48:28 -07003496 int mode, bool stateLockHeld) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003497 ALOGD("Set power mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
3498 this);
3499 int32_t type = hw->getDisplayType();
3500 int currentMode = hw->getPowerMode();
Andy McFadden13a082e2012-08-24 10:16:42 -07003501
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003502 if (mode == currentMode) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003503 return;
3504 }
3505
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003506 hw->setPowerMode(mode);
3507 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
3508 ALOGW("Trying to set power mode for virtual display");
3509 return;
3510 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003511
Irvelffc9efc2016-07-27 15:16:37 -07003512 if (mInterceptor.isEnabled()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07003513 ConditionalLock lock(mStateLock, !stateLockHeld);
Irvelffc9efc2016-07-27 15:16:37 -07003514 ssize_t idx = mCurrentState.displays.indexOfKey(hw->getDisplayToken());
3515 if (idx < 0) {
3516 ALOGW("Surface Interceptor SavePowerMode: invalid display token");
3517 return;
3518 }
3519 mInterceptor.savePowerModeUpdate(mCurrentState.displays.valueAt(idx).displayId, mode);
3520 }
3521
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003522 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003523 // Turn on the display
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003524 getHwComposer().setPowerMode(type, mode);
Matthew Bouyack38d49612017-05-12 12:49:32 -07003525 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3526 mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003527 // FIXME: eventthread only knows about the main display right now
3528 mEventThread->onScreenAcquired();
Jesse Hall948fe0c2013-10-14 12:56:09 -07003529 resyncToHardwareVsync(true);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003530 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003531
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003532 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08003533 mHasPoweredOff = true;
Steven Thomas6d8110b2017-08-31 18:24:21 -07003534 repaintEverythingLocked();
Tim Murrayf9d4e442016-08-02 15:43:59 -07003535
3536 struct sched_param param = {0};
3537 param.sched_priority = 1;
3538 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
3539 ALOGW("Couldn't set SCHED_FIFO on display on");
3540 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003541 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003542 // Turn off the display
3543 struct sched_param param = {0};
3544 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
3545 ALOGW("Couldn't set SCHED_OTHER on display off");
3546 }
3547
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003548 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3549 currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Jesse Hall948fe0c2013-10-14 12:56:09 -07003550 disableHardwareVsync(true); // also cancels any in-progress resync
3551
Mathias Agopiancde87a32012-09-13 14:09:01 -07003552 // FIXME: eventthread only knows about the main display right now
3553 mEventThread->onScreenReleased();
3554 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003555
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003556 getHwComposer().setPowerMode(type, mode);
3557 mVisibleRegionsDirty = true;
3558 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07003559 } else if (mode == HWC_POWER_MODE_DOZE ||
3560 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003561 // Update display while dozing
3562 getHwComposer().setPowerMode(type, mode);
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003563 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3564 currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003565 // FIXME: eventthread only knows about the main display right now
3566 mEventThread->onScreenAcquired();
3567 resyncToHardwareVsync(true);
3568 }
3569 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
3570 // Leave display going to doze
3571 if (type == DisplayDevice::DISPLAY_PRIMARY) {
3572 disableHardwareVsync(true); // also cancels any in-progress resync
3573 // FIXME: eventthread only knows about the main display right now
3574 mEventThread->onScreenReleased();
3575 }
3576 getHwComposer().setPowerMode(type, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003577 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07003578 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003579 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003580 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003581}
3582
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003583void SurfaceFlinger::setPowerMode(const sp<IBinder>& display, int mode) {
3584 class MessageSetPowerMode: public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003585 SurfaceFlinger& mFlinger;
3586 sp<IBinder> mDisplay;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003587 int mMode;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003588 public:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003589 MessageSetPowerMode(SurfaceFlinger& flinger,
3590 const sp<IBinder>& disp, int mode) : mFlinger(flinger),
3591 mDisplay(disp) { mMode = mode; }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003592 virtual bool handler() {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003593 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003594 if (hw == nullptr) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003595 ALOGE("Attempt to set power mode = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -07003596 mMode, mDisplay.get());
Jesse Hall9e663de2013-08-16 14:28:37 -07003597 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003598 ALOGW("Attempt to set power mode = %d for virtual display",
3599 mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003600 } else {
Steven Thomasb02664d2017-07-26 18:48:28 -07003601 mFlinger.setPowerModeInternal(
3602 hw, mMode, /*stateLockHeld*/ false);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003603 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003604 return true;
3605 }
3606 };
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003607 sp<MessageBase> msg = new MessageSetPowerMode(*this, display, mode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003608 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07003609}
3610
3611// ---------------------------------------------------------------------------
3612
Lloyd Pique755e3192018-01-31 16:46:15 -08003613status_t SurfaceFlinger::doDump(int fd, const Vector<String16>& args, bool asProto)
3614 NO_THREAD_SAFETY_ANALYSIS {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003615 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07003616
Mathias Agopianbd115332013-04-18 16:41:04 -07003617 IPCThreadState* ipc = IPCThreadState::self();
3618 const int pid = ipc->getCallingPid();
3619 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07003620
Mathias Agopianbd115332013-04-18 16:41:04 -07003621 if ((uid != AID_SHELL) &&
3622 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003623 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07003624 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003625 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003626 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07003627 // (this would indicate SF is stuck, but we want to be able to
3628 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08003629 status_t err = mStateLock.timedLock(s2ns(1));
3630 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07003631 if (!locked) {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003632 result.appendFormat(
3633 "SurfaceFlinger appears to be unresponsive (%s [%d]), "
3634 "dumping anyways (no locks held)\n", strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07003635 }
3636
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003637 bool dumpAll = true;
3638 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003639 size_t numArgs = args.size();
chaviwa3d7bd32017-11-03 09:41:53 -07003640
3641 if (asProto) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003642 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviwa3d7bd32017-11-03 09:41:53 -07003643 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
3644 dumpAll = false;
3645 }
3646
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003647 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003648 if ((index < numArgs) &&
3649 (args[index] == String16("--list"))) {
3650 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003651 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003652 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003653 }
3654
3655 if ((index < numArgs) &&
3656 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003657 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003658 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003659 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003660 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003661
3662 if ((index < numArgs) &&
3663 (args[index] == String16("--latency-clear"))) {
3664 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003665 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003666 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003667 }
Andy McFaddenc751e922014-05-08 14:53:26 -07003668
3669 if ((index < numArgs) &&
3670 (args[index] == String16("--dispsync"))) {
3671 index++;
3672 mPrimaryDispSync.dump(result);
3673 dumpAll = false;
3674 }
Dan Stozab90cf072015-03-05 11:05:59 -08003675
3676 if ((index < numArgs) &&
3677 (args[index] == String16("--static-screen"))) {
3678 index++;
3679 dumpStaticScreenStats(result);
3680 dumpAll = false;
3681 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08003682
3683 if ((index < numArgs) &&
Brian Andersond6927fb2016-07-23 23:37:30 -07003684 (args[index] == String16("--frame-events"))) {
Pablo Ceballos40845df2016-01-25 17:41:15 -08003685 index++;
Brian Andersond6927fb2016-07-23 23:37:30 -07003686 dumpFrameEventsLocked(result);
Pablo Ceballos40845df2016-01-25 17:41:15 -08003687 dumpAll = false;
3688 }
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003689
3690 if ((index < numArgs) && (args[index] == String16("--wide-color"))) {
3691 index++;
3692 dumpWideColorInfo(result);
3693 dumpAll = false;
3694 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003695 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07003696
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003697 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003698 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08003699 }
3700
Mathias Agopian9795c422009-08-26 16:36:26 -07003701 if (locked) {
3702 mStateLock.unlock();
3703 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003704 }
3705 write(fd, result.string(), result.size());
3706 return NO_ERROR;
3707}
3708
Dan Stozac7014012014-02-14 15:03:43 -08003709void SurfaceFlinger::listLayersLocked(const Vector<String16>& /* args */,
3710 size_t& /* index */, String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003711{
Robert Carr2047fae2016-11-28 14:09:09 -08003712 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003713 result.appendFormat("%s\n", layer->getName().string());
Robert Carr2047fae2016-11-28 14:09:09 -08003714 });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003715}
3716
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003717void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02003718 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003719{
3720 String8 name;
3721 if (index < args.size()) {
3722 name = String8(args[index]);
3723 index++;
3724 }
3725
David Sodman105b7dc2017-11-04 20:28:14 -07003726 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003727 const nsecs_t period = activeConfig->getVsyncPeriod();
Greg Hackmann86efcc02014-03-07 12:44:02 -08003728 result.appendFormat("%" PRId64 "\n", period);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003729
3730 if (name.isEmpty()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003731 mAnimFrameTracker.dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003732 } else {
Robert Carr2047fae2016-11-28 14:09:09 -08003733 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003734 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003735 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003736 }
Robert Carr2047fae2016-11-28 14:09:09 -08003737 });
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003738 }
3739}
3740
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003741void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Dan Stozac7014012014-02-14 15:03:43 -08003742 String8& /* result */)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003743{
3744 String8 name;
3745 if (index < args.size()) {
3746 name = String8(args[index]);
3747 index++;
3748 }
3749
Robert Carr2047fae2016-11-28 14:09:09 -08003750 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003751 if (name.isEmpty() || (name == layer->getName())) {
Svetoslavd85084b2014-03-20 10:28:31 -07003752 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003753 }
Robert Carr2047fae2016-11-28 14:09:09 -08003754 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003755
Svetoslavd85084b2014-03-20 10:28:31 -07003756 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003757}
3758
Jamie Gennis6547ff42013-07-16 20:12:42 -07003759// This should only be called from the main thread. Otherwise it would need
3760// the lock and should use mCurrentState rather than mDrawingState.
3761void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08003762 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07003763 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08003764 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07003765
3766 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
3767}
3768
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003769void SurfaceFlinger::appendSfConfigString(String8& result) const
Andy McFadden4803b742012-09-24 19:07:20 -07003770{
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003771 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07003772
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003773 if (isLayerTripleBufferingDisabled())
3774 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003775
3776 result.appendFormat(" PRESENT_TIME_OFFSET=%" PRId64 , dispSyncPresentTimeOffset);
Fabien Sanglarda34ed632017-03-14 11:43:52 -07003777 result.appendFormat(" FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -08003778 result.appendFormat(" MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08003779 result.appendFormat(" RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
Fabien Sanglard1971b632017-03-10 14:50:03 -08003780 result.appendFormat(" NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
3781 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003782 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07003783}
3784
Dan Stozab90cf072015-03-05 11:05:59 -08003785void SurfaceFlinger::dumpStaticScreenStats(String8& result) const
3786{
3787 result.appendFormat("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08003788 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
3789 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003790 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003791 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003792 result.appendFormat(" < %zd frames: %.3f s (%.1f%%)\n",
3793 b + 1, bucketTimeSec, percent);
3794 }
David Sodman4a36e932017-11-07 14:29:47 -08003795 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003796 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003797 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003798 result.appendFormat(" %zd+ frames: %.3f s (%.1f%%)\n",
David Sodman4a36e932017-11-07 14:29:47 -08003799 SurfaceFlingerBE::NUM_BUCKETS - 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08003800}
3801
Dan Stozae77c7662016-05-13 11:37:28 -07003802void SurfaceFlinger::recordBufferingStats(const char* layerName,
3803 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08003804 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
3805 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07003806 for (const auto& segment : history) {
3807 if (!segment.usedThirdBuffer) {
3808 stats.twoBufferTime += segment.totalTime;
3809 }
3810 if (segment.occupancyAverage < 1.0f) {
3811 stats.doubleBufferedTime += segment.totalTime;
3812 } else if (segment.occupancyAverage < 2.0f) {
3813 stats.tripleBufferedTime += segment.totalTime;
3814 }
3815 ++stats.numSegments;
3816 stats.totalTime += segment.totalTime;
3817 }
3818}
3819
Brian Andersond6927fb2016-07-23 23:37:30 -07003820void SurfaceFlinger::dumpFrameEventsLocked(String8& result) {
3821 result.appendFormat("Layer frame timestamps:\n");
3822
3823 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
3824 const size_t count = currentLayers.size();
3825 for (size_t i=0 ; i<count ; i++) {
3826 currentLayers[i]->dumpFrameEvents(result);
3827 }
3828}
3829
Dan Stozae77c7662016-05-13 11:37:28 -07003830void SurfaceFlinger::dumpBufferingStats(String8& result) const {
3831 result.append("Buffering stats:\n");
3832 result.append(" [Layer name] <Active time> <Two buffer> "
3833 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08003834 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07003835 typedef std::tuple<std::string, float, float, float> BufferTuple;
3836 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08003837 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07003838 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08003839 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07003840 if (stats.numSegments == 0) {
3841 continue;
3842 }
3843 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
3844 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
3845 stats.totalTime;
3846 float doubleBufferRatio = static_cast<float>(
3847 stats.doubleBufferedTime) / stats.totalTime;
3848 float tripleBufferRatio = static_cast<float>(
3849 stats.tripleBufferedTime) / stats.totalTime;
3850 sorted.insert({activeTime, {name, twoBufferRatio,
3851 doubleBufferRatio, tripleBufferRatio}});
3852 }
3853 for (const auto& sortedPair : sorted) {
3854 float activeTime = sortedPair.first;
3855 const BufferTuple& values = sortedPair.second;
3856 result.appendFormat(" [%s] %.2f %.3f %.3f %.3f\n",
3857 std::get<0>(values).c_str(), activeTime,
3858 std::get<1>(values), std::get<2>(values),
3859 std::get<3>(values));
3860 }
3861 result.append("\n");
3862}
3863
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003864void SurfaceFlinger::dumpWideColorInfo(String8& result) const {
3865 result.appendFormat("hasWideColorDisplay: %d\n", hasWideColorDisplay);
Romain Guy54f154a2017-10-24 21:40:32 +01003866 result.appendFormat("forceNativeColorMode: %d\n", mForceNativeColorMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003867
3868 // TODO: print out if wide-color mode is active or not
3869
3870 for (size_t d = 0; d < mDisplays.size(); d++) {
3871 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
3872 int32_t hwcId = displayDevice->getHwcDisplayId();
3873 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
3874 continue;
3875 }
3876
3877 result.appendFormat("Display %d color modes:\n", hwcId);
3878 std::vector<android_color_mode_t> modes = getHwComposer().getColorModes(hwcId);
3879 for (auto&& mode : modes) {
3880 result.appendFormat(" %s (%d)\n", decodeColorMode(mode).c_str(), mode);
3881 }
3882
3883 android_color_mode_t currentMode = displayDevice->getActiveColorMode();
3884 result.appendFormat(" Current color mode: %s (%d)\n",
3885 decodeColorMode(currentMode).c_str(), currentMode);
3886 }
3887 result.append("\n");
3888}
3889
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003890LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet) const {
chaviw1d044282017-09-27 12:19:28 -07003891 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003892 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
3893 const State& state = useDrawing ? mDrawingState : mCurrentState;
3894 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07003895 LayerProto* layerProto = layersProto.add_layers();
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003896 layer->writeToProto(layerProto, stateSet);
chaviw1d044282017-09-27 12:19:28 -07003897 });
3898
3899 return layersProto;
3900}
3901
Mathias Agopian74d211a2013-04-22 16:55:35 +02003902void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
3903 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003904{
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003905 bool colorize = false;
3906 if (index < args.size()
3907 && (args[index] == String16("--color"))) {
3908 colorize = true;
3909 index++;
3910 }
3911
3912 Colorizer colorizer(colorize);
3913
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003914 // figure out if we're stuck somewhere
3915 const nsecs_t now = systemTime();
3916 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
3917 const nsecs_t inTransaction(mDebugInTransaction);
3918 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
3919 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
3920
3921 /*
Andy McFadden4803b742012-09-24 19:07:20 -07003922 * Dump library configuration.
3923 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003924
3925 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003926 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003927 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003928 appendSfConfigString(result);
3929 appendUiConfigString(result);
3930 appendGuiConfigString(result);
3931 result.append("\n");
3932
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003933 result.append("\nWide-Color information:\n");
3934 dumpWideColorInfo(result);
3935
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003936 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003937 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003938 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003939 result.append(SyncFeatures::getInstance().toString());
3940 result.append("\n");
3941
David Sodman105b7dc2017-11-04 20:28:14 -07003942 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003943
Andy McFadden41d67d72014-04-25 16:58:34 -07003944 colorizer.bold(result);
3945 result.append("DispSync configuration: ");
3946 colorizer.reset(result);
Jesse Hall24cd98e2014-07-13 14:37:16 -07003947 result.appendFormat("app phase %" PRId64 " ns, sf phase %" PRId64 " ns, "
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003948 "present offset %" PRId64 " ns (refresh %" PRId64 " ns)",
Dan Stoza9e56aa02015-11-02 13:00:03 -08003949 vsyncPhaseOffsetNs, sfVsyncPhaseOffsetNs,
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003950 dispSyncPresentTimeOffset, activeConfig->getVsyncPeriod());
Andy McFadden41d67d72014-04-25 16:58:34 -07003951 result.append("\n");
3952
Dan Stozab90cf072015-03-05 11:05:59 -08003953 // Dump static screen stats
3954 result.append("\n");
3955 dumpStaticScreenStats(result);
3956 result.append("\n");
3957
Dan Stozae77c7662016-05-13 11:37:28 -07003958 dumpBufferingStats(result);
3959
Andy McFadden4803b742012-09-24 19:07:20 -07003960 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003961 * Dump the visible layer list
3962 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003963 colorizer.bold(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003964 result.appendFormat("Visible layers (count = %zu)\n", mNumLayers);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003965 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07003966
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003967 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviw1d044282017-09-27 12:19:28 -07003968 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
3969 result.append(LayerProtoParser::layersToString(layerTree).c_str());
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003970
3971 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003972 * Dump Display state
3973 */
3974
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003975 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08003976 result.appendFormat("Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003977 colorizer.reset(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003978 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
3979 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003980 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003981 }
3982
3983 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003984 * Dump SurfaceFlinger global state
3985 */
3986
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003987 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003988 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003989 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003990
Mathias Agopian888c8222012-08-04 21:10:38 -07003991 HWComposer& hwc(getHwComposer());
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07003992 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Mathias Agopianca088332013-03-28 17:44:13 -07003993
David Sodmanbc815282017-11-05 18:57:52 -08003994 getBE().mRenderEngine->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003995
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08003996 if (hw) {
3997 hw->undefinedRegion.dump(result, "undefinedRegion");
3998 result.appendFormat(" orientation=%d, isDisplayOn=%d\n",
3999 hw->getOrientation(), hw->isDisplayOn());
4000 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02004001 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004002 " last eglSwapBuffers() time: %f us\n"
4003 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08004004 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004005 " refresh-rate : %f fps\n"
4006 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07004007 " y-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07004008 " gpu_to_cpu_unsupported : %d\n"
4009 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004010 mLastSwapBufferTime/1000.0,
4011 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08004012 mTransactionFlags,
Dan Stoza9e56aa02015-11-02 13:00:03 -08004013 1e9 / activeConfig->getVsyncPeriod(),
4014 activeConfig->getDpiX(),
4015 activeConfig->getDpiY(),
Mathias Agopianed985572013-03-22 00:24:39 -07004016 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004017
Mathias Agopian74d211a2013-04-22 16:55:35 +02004018 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004019 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004020
Mathias Agopian74d211a2013-04-22 16:55:35 +02004021 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004022 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004023
4024 /*
4025 * VSYNC state
4026 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02004027 mEventThread->dump(result);
Dan Stozae22aec72016-08-01 13:20:59 -07004028 result.append("\n");
4029
4030 /*
4031 * HWC layer minidump
4032 */
4033 for (size_t d = 0; d < mDisplays.size(); d++) {
4034 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
4035 int32_t hwcId = displayDevice->getHwcDisplayId();
4036 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
4037 continue;
4038 }
4039
4040 result.appendFormat("Display %d HWC layers:\n", hwcId);
4041 Layer::miniDumpHeader(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07004042 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dan Stozae22aec72016-08-01 13:20:59 -07004043 layer->miniDump(result, hwcId);
Robert Carr1f0a16a2016-10-24 16:27:39 -07004044 });
Dan Stozae22aec72016-08-01 13:20:59 -07004045 result.append("\n");
4046 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004047
4048 /*
4049 * Dump HWComposer state
4050 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004051 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004052 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004053 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004054 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Dan Stoza9e56aa02015-11-02 13:00:03 -08004055 result.appendFormat(" h/w composer %s\n",
4056 hwcDisabled ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02004057 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004058
4059 /*
4060 * Dump gralloc state
4061 */
4062 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
4063 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004064
4065 /*
4066 * Dump VrFlinger state if in use.
4067 */
4068 if (mVrFlingerRequestsDisplay && mVrFlinger) {
4069 result.append("VrFlinger state:\n");
4070 result.append(mVrFlinger->Dump().c_str());
4071 result.append("\n");
4072 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004073}
4074
Mathias Agopian13127d82013-03-05 17:47:11 -08004075const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07004076SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07004077 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07004078 wp<IBinder> dpy;
4079 for (size_t i=0 ; i<mDisplays.size() ; i++) {
4080 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
4081 dpy = mDisplays.keyAt(i);
4082 break;
4083 }
4084 }
Peiyong Lin566a3b42018-01-09 18:22:43 -08004085 if (dpy == nullptr) {
Jesse Hall48bc05b2013-03-21 14:06:52 -07004086 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
4087 // Just use the primary display so we have something to return
4088 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
4089 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07004090 return getDisplayDeviceLocked(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07004091}
4092
Keun young Park63f165f2012-08-31 10:53:36 -07004093bool SurfaceFlinger::startDdmConnection()
4094{
4095 void* libddmconnection_dso =
4096 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
4097 if (!libddmconnection_dso) {
4098 return false;
4099 }
4100 void (*DdmConnection_start)(const char* name);
4101 DdmConnection_start =
Jesse Hall24cd98e2014-07-13 14:37:16 -07004102 (decltype(DdmConnection_start))dlsym(libddmconnection_dso, "DdmConnection_start");
Keun young Park63f165f2012-08-31 10:53:36 -07004103 if (!DdmConnection_start) {
4104 dlclose(libddmconnection_dso);
4105 return false;
4106 }
4107 (*DdmConnection_start)(getServiceName());
4108 return true;
4109}
4110
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004111status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004112 switch (code) {
4113 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07004114 case CREATE_DISPLAY:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004115 case BOOT_FINISHED:
Svetoslavd85084b2014-03-20 10:28:31 -07004116 case CLEAR_ANIMATION_FRAME_STATS:
4117 case GET_ANIMATION_FRAME_STATS:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004118 case SET_POWER_MODE:
Dan Stozac4f471e2016-03-24 09:31:08 -07004119 case GET_HDR_CAPABILITIES:
Chia-I Wu90f669f2017-10-05 14:24:41 -07004120 case ENABLE_VSYNC_INJECTIONS:
4121 case INJECT_VSYNC:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004122 {
4123 // codes that require permission check
4124 IPCThreadState* ipc = IPCThreadState::self();
4125 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07004126 const int uid = ipc->getCallingUid();
Jeff Brown3bfe51d2015-04-10 20:20:13 -07004127 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Mathias Agopian99b49842011-06-27 16:05:52 -07004128 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004129 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
Mathias Agopian375f5632009-06-15 18:24:59 -07004130 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004131 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004132 break;
4133 }
Robert Carr1db73f62016-12-21 12:58:51 -08004134 /*
4135 * Calling setTransactionState is safe, because you need to have been
4136 * granted a reference to Client* and Handle* to do anything with it.
4137 *
4138 * Creating a scoped connection is safe, as per discussion in ISurfaceComposer.h
4139 */
4140 case SET_TRANSACTION_STATE:
4141 case CREATE_SCOPED_CONNECTION:
4142 {
4143 return OK;
4144 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004145 case CAPTURE_SCREEN:
4146 {
4147 // codes that require permission check
4148 IPCThreadState* ipc = IPCThreadState::self();
4149 const int pid = ipc->getCallingPid();
4150 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07004151 if ((uid != AID_GRAPHICS) &&
4152 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004153 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004154 return PERMISSION_DENIED;
4155 }
4156 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004157 }
chaviwa76b2712017-09-20 12:02:26 -07004158 case CAPTURE_LAYERS: {
4159 IPCThreadState* ipc = IPCThreadState::self();
4160 const int pid = ipc->getCallingPid();
4161 const int uid = ipc->getCallingUid();
4162 if ((uid != AID_GRAPHICS) &&
4163 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
4164 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
4165 return PERMISSION_DENIED;
4166 }
4167 break;
4168 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004169 }
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004170 return OK;
4171}
4172
4173status_t SurfaceFlinger::onTransact(
4174 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4175{
4176 status_t credentialCheck = CheckTransactCodeCredentials(code);
4177 if (credentialCheck != OK) {
4178 return credentialCheck;
4179 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004180
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004181 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
4182 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07004183 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07004184 IPCThreadState* ipc = IPCThreadState::self();
4185 const int uid = ipc->getCallingUid();
4186 if (CC_UNLIKELY(uid != AID_SYSTEM
4187 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07004188 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00004189 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07004190 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004191 return PERMISSION_DENIED;
4192 }
4193 int n;
4194 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07004195 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07004196 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004197 return NO_ERROR;
4198 case 1002: // SHOW_UPDATES
4199 n = data.readInt32();
4200 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07004201 invalidateHwcGeometry();
4202 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004203 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004204 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07004205 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004206 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004207 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004208 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07004209 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07004210 setTransactionFlags(
4211 eTransactionNeeded|
4212 eDisplayTransactionNeeded|
4213 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004214 return NO_ERROR;
4215 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08004216 case 1006:{ // send empty update
4217 signalRefresh();
4218 return NO_ERROR;
4219 }
Mathias Agopian53331da2011-08-22 21:44:41 -07004220 case 1008: // toggle use of hw composer
4221 n = data.readInt32();
4222 mDebugDisableHWC = n ? 1 : 0;
4223 invalidateHwcGeometry();
4224 repaintEverything();
4225 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07004226 case 1009: // toggle use of transform hint
4227 n = data.readInt32();
4228 mDebugDisableTransformHint = n ? 1 : 0;
4229 invalidateHwcGeometry();
4230 repaintEverything();
4231 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004232 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07004233 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004234 reply->writeInt32(0);
4235 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07004236 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08004237 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004238 return NO_ERROR;
4239 case 1013: {
Tomasz Wasilczyk8722a312017-04-13 19:14:30 +00004240 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopian42977342012-08-05 00:40:46 -07004241 reply->writeInt32(hw->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07004242 return NO_ERROR;
4243 }
4244 case 1014: {
4245 // daltonize
4246 n = data.readInt32();
4247 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004248 case 1:
4249 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
4250 break;
4251 case 2:
4252 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
4253 break;
4254 case 3:
4255 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
4256 break;
4257 default:
4258 mDaltonizer.setType(ColorBlindnessType::None);
4259 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07004260 }
4261 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004262 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004263 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004264 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004265 }
Mathias Agopianff2ed702013-09-01 21:36:12 -07004266 invalidateHwcGeometry();
4267 repaintEverything();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004268 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004269 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004270 case 1015: {
4271 // apply a color matrix
4272 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004273 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07004274 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07004275 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004276 for (size_t j = 0; j < 4; j++) {
4277 mColorMatrix[i][j] = data.readFloat();
4278 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004279 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004280 } else {
4281 mColorMatrix = mat4();
4282 }
Romain Guy88d37dd2017-05-26 17:57:05 -07004283
4284 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
4285 // the division by w in the fragment shader
4286 float4 lastRow(transpose(mColorMatrix)[3]);
4287 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
4288 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
4289 }
4290
Alan Viverette9c5a3332013-09-12 20:04:35 -07004291 invalidateHwcGeometry();
4292 repaintEverything();
4293 return NO_ERROR;
4294 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004295 // This is an experimental interface
4296 // Needs to be shifted to proper binder interface when we productize
4297 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07004298 n = data.readInt32();
4299 mPrimaryDispSync.setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004300 return NO_ERROR;
4301 }
Dan Stozaee44edd2015-03-23 15:50:23 -07004302 case 1017: {
4303 n = data.readInt32();
4304 mForceFullDamage = static_cast<bool>(n);
4305 return NO_ERROR;
4306 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07004307 case 1018: { // Modify Choreographer's phase offset
4308 n = data.readInt32();
4309 mEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4310 return NO_ERROR;
4311 }
4312 case 1019: { // Modify SurfaceFlinger's phase offset
4313 n = data.readInt32();
4314 mSFEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4315 return NO_ERROR;
4316 }
Irvel468051e2016-06-13 16:44:44 -07004317 case 1020: { // Layer updates interceptor
4318 n = data.readInt32();
4319 if (n) {
4320 ALOGV("Interceptor enabled");
Irvelffc9efc2016-07-27 15:16:37 -07004321 mInterceptor.enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07004322 }
4323 else{
4324 ALOGV("Interceptor disabled");
4325 mInterceptor.disable();
4326 }
4327 return NO_ERROR;
4328 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07004329 case 1021: { // Disable HWC virtual displays
4330 n = data.readInt32();
4331 mUseHwcVirtualDisplays = !n;
4332 return NO_ERROR;
4333 }
Romain Guy0147a172017-06-01 13:53:56 -07004334 case 1022: { // Set saturation boost
4335 mSaturation = std::max(0.0f, std::min(data.readFloat(), 2.0f));
4336
4337 invalidateHwcGeometry();
4338 repaintEverything();
4339 return NO_ERROR;
4340 }
Romain Guy54f154a2017-10-24 21:40:32 +01004341 case 1023: { // Set native mode
4342 mForceNativeColorMode = data.readInt32() == 1;
4343
4344 invalidateHwcGeometry();
4345 repaintEverything();
4346 return NO_ERROR;
4347 }
4348 case 1024: { // Is wide color gamut rendering/color management supported?
4349 reply->writeBool(hasWideColorDisplay);
4350 return NO_ERROR;
4351 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004352 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01004353 n = data.readInt32();
4354 if (n) {
4355 ALOGV("LayerTracing enabled");
4356 mTracing.enable();
4357 doTracing("tracing.enable");
4358 reply->writeInt32(NO_ERROR);
4359 } else {
4360 ALOGV("LayerTracing disabled");
4361 status_t err = mTracing.disable();
4362 reply->writeInt32(err);
4363 }
4364 return NO_ERROR;
4365 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004366 case 1026: { // Get layer tracing status
4367 reply->writeBool(mTracing.isEnabled());
4368 return NO_ERROR;
4369 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004370 }
4371 }
4372 return err;
4373}
4374
Steven Thomas6d8110b2017-08-31 18:24:21 -07004375void SurfaceFlinger::repaintEverythingLocked() {
Mathias Agopian87baae12012-07-31 12:38:26 -07004376 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08004377 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07004378}
4379
Steven Thomas6d8110b2017-08-31 18:24:21 -07004380void SurfaceFlinger::repaintEverything() {
4381 ConditionalLock _l(mStateLock,
4382 std::this_thread::get_id() != mMainThreadId);
4383 repaintEverythingLocked();
4384}
4385
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004386// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
4387class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004388public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004389 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
4390 ~WindowDisconnector() {
4391 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004392 }
4393
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004394private:
4395 ANativeWindow* mWindow;
4396 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004397};
4398
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004399status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display, sp<GraphicBuffer>* outBuffer,
4400 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
4401 int32_t minLayerZ, int32_t maxLayerZ,
4402 bool useIdentityTransform,
chaviwa76b2712017-09-20 12:02:26 -07004403 ISurfaceComposer::Rotation rotation) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004404 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004405
chaviwa76b2712017-09-20 12:02:26 -07004406 if (CC_UNLIKELY(display == 0)) return BAD_VALUE;
4407
4408 const sp<const DisplayDevice> device(getDisplayDeviceLocked(display));
4409 DisplayRenderArea renderArea(device, sourceCrop, reqHeight, reqWidth, rotation);
4410
4411 auto traverseLayers = std::bind(std::mem_fn(&SurfaceFlinger::traverseLayersInDisplay), this,
4412 device, minLayerZ, maxLayerZ, std::placeholders::_1);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004413 return captureScreenCommon(renderArea, traverseLayers, outBuffer, useIdentityTransform);
chaviwa76b2712017-09-20 12:02:26 -07004414}
4415
4416status_t SurfaceFlinger::captureLayers(const sp<IBinder>& layerHandleBinder,
Vishnu Nair87704c92018-01-08 15:32:57 -08004417 sp<GraphicBuffer>* outBuffer, const Rect& sourceCrop,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004418 float frameScale) {
chaviwa76b2712017-09-20 12:02:26 -07004419 ATRACE_CALL();
4420
4421 class LayerRenderArea : public RenderArea {
4422 public:
chaviw7206d492017-11-10 16:16:12 -08004423 LayerRenderArea(const sp<Layer>& layer, const Rect crop, int32_t reqWidth,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004424 int32_t reqHeight)
chaviw7206d492017-11-10 16:16:12 -08004425 : RenderArea(reqHeight, reqWidth), mLayer(layer), mCrop(crop) {}
chaviwa76b2712017-09-20 12:02:26 -07004426 const Transform& getTransform() const override {
4427 // Make the top level transform the inverse the transform and it's parent so it sets
4428 // the whole capture back to 0,0
4429 return *new Transform(mLayer->getTransform().inverse());
4430 }
4431 Rect getBounds() const override {
4432 const Layer::State& layerState(mLayer->getDrawingState());
4433 return Rect(layerState.active.w, layerState.active.h);
4434 }
4435 int getHeight() const override { return mLayer->getDrawingState().active.h; }
4436 int getWidth() const override { return mLayer->getDrawingState().active.w; }
4437 bool isSecure() const override { return false; }
4438 bool needsFiltering() const override { return false; }
4439
chaviw7206d492017-11-10 16:16:12 -08004440 Rect getSourceCrop() const override {
4441 if (mCrop.isEmpty()) {
4442 return getBounds();
4443 } else {
4444 return mCrop;
4445 }
4446 }
chaviwa76b2712017-09-20 12:02:26 -07004447 bool getWideColorSupport() const override { return false; }
4448 android_color_mode_t getActiveColorMode() const override { return HAL_COLOR_MODE_NATIVE; }
4449
4450 private:
chaviw7206d492017-11-10 16:16:12 -08004451 const sp<Layer> mLayer;
4452 const Rect mCrop;
chaviwa76b2712017-09-20 12:02:26 -07004453 };
4454
4455 auto layerHandle = reinterpret_cast<Layer::Handle*>(layerHandleBinder.get());
4456 auto parent = layerHandle->owner.promote();
4457
chaviw7206d492017-11-10 16:16:12 -08004458 if (parent == nullptr || parent->isPendingRemoval()) {
4459 ALOGE("captureLayers called with a removed parent");
4460 return NAME_NOT_FOUND;
4461 }
4462
4463 Rect crop(sourceCrop);
4464 if (sourceCrop.width() <= 0) {
4465 crop.left = 0;
4466 crop.right = parent->getCurrentState().active.w;
4467 }
4468
4469 if (sourceCrop.height() <= 0) {
4470 crop.top = 0;
4471 crop.bottom = parent->getCurrentState().active.h;
4472 }
4473
4474 int32_t reqWidth = crop.width() * frameScale;
4475 int32_t reqHeight = crop.height() * frameScale;
4476
4477 LayerRenderArea renderArea(parent, crop, reqWidth, reqHeight);
4478
chaviwa76b2712017-09-20 12:02:26 -07004479 auto traverseLayers = [parent](const LayerVector::Visitor& visitor) {
4480 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
4481 if (!layer->isVisible()) {
4482 return;
4483 }
4484 visitor(layer);
4485 });
4486 };
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004487 return captureScreenCommon(renderArea, traverseLayers, outBuffer, false);
chaviwa76b2712017-09-20 12:02:26 -07004488}
4489
4490status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
4491 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004492 sp<GraphicBuffer>* outBuffer,
chaviwa76b2712017-09-20 12:02:26 -07004493 bool useIdentityTransform) {
4494 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004495
chaviwa76b2712017-09-20 12:02:26 -07004496 renderArea.updateDimensions();
4497
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004498 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
4499 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
4500 *outBuffer = new GraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
4501 HAL_PIXEL_FORMAT_RGBA_8888, 1, usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004502
4503 // This mutex protects syncFd and captureResult for communication of the return values from the
4504 // main thread back to this Binder thread
4505 std::mutex captureMutex;
4506 std::condition_variable captureCondition;
4507 std::unique_lock<std::mutex> captureLock(captureMutex);
4508 int syncFd = -1;
4509 std::optional<status_t> captureResult;
4510
Robert Carr03480e22018-01-04 16:02:06 -08004511 const int uid = IPCThreadState::self()->getCallingUid();
4512 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
4513
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004514 sp<LambdaMessage> message = new LambdaMessage([&]() {
4515 // If there is a refresh pending, bug out early and tell the binder thread to try again
4516 // after the refresh.
4517 if (mRefreshPending) {
4518 ATRACE_NAME("Skipping screenshot for now");
4519 std::unique_lock<std::mutex> captureLock(captureMutex);
4520 captureResult = std::make_optional<status_t>(EAGAIN);
4521 captureCondition.notify_one();
4522 return;
4523 }
4524
4525 status_t result = NO_ERROR;
4526 int fd = -1;
4527 {
4528 Mutex::Autolock _l(mStateLock);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004529 result = captureScreenImplLocked(renderArea, traverseLayers, (*outBuffer).get(),
Robert Carr03480e22018-01-04 16:02:06 -08004530 useIdentityTransform, forSystem, &fd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004531 }
4532
4533 {
4534 std::unique_lock<std::mutex> captureLock(captureMutex);
4535 syncFd = fd;
4536 captureResult = std::make_optional<status_t>(result);
4537 captureCondition.notify_one();
4538 }
4539 });
4540
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004541 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004542 if (result == NO_ERROR) {
4543 captureCondition.wait(captureLock, [&]() { return captureResult; });
4544 while (*captureResult == EAGAIN) {
4545 captureResult.reset();
4546 result = postMessageAsync(message);
4547 if (result != NO_ERROR) {
4548 return result;
4549 }
4550 captureCondition.wait(captureLock, [&]() { return captureResult; });
4551 }
4552 result = *captureResult;
4553 }
4554
4555 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004556 sync_wait(syncFd, -1);
4557 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004558 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004559
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004560 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004561}
4562
chaviwa76b2712017-09-20 12:02:26 -07004563void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
4564 TraverseLayersFunction traverseLayers, bool yswap,
4565 bool useIdentityTransform) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07004566 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07004567
Lloyd Pique144e1162017-12-20 16:44:52 -08004568 auto& engine(getRenderEngine());
Mathias Agopian180f10d2013-04-10 22:55:41 -07004569
4570 // get screen geometry
chaviwa76b2712017-09-20 12:02:26 -07004571 const auto raWidth = renderArea.getWidth();
4572 const auto raHeight = renderArea.getHeight();
4573
4574 const auto reqWidth = renderArea.getReqWidth();
4575 const auto reqHeight = renderArea.getReqHeight();
4576 Rect sourceCrop = renderArea.getSourceCrop();
4577
4578 const bool filtering = static_cast<int32_t>(reqWidth) != raWidth ||
4579 static_cast<int32_t>(reqHeight) != raHeight;
Mathias Agopian180f10d2013-04-10 22:55:41 -07004580
Dan Stozac1879002014-05-22 15:59:05 -07004581 // if a default or invalid sourceCrop is passed in, set reasonable values
chaviwa76b2712017-09-20 12:02:26 -07004582 if (sourceCrop.width() == 0 || sourceCrop.height() == 0 || !sourceCrop.isValid()) {
Dan Stozac1879002014-05-22 15:59:05 -07004583 sourceCrop.setLeftTop(Point(0, 0));
chaviwa76b2712017-09-20 12:02:26 -07004584 sourceCrop.setRightBottom(Point(raWidth, raHeight));
Dan Stozac1879002014-05-22 15:59:05 -07004585 }
4586
4587 // ensure that sourceCrop is inside screen
4588 if (sourceCrop.left < 0) {
4589 ALOGE("Invalid crop rect: l = %d (< 0)", sourceCrop.left);
4590 }
chaviwa76b2712017-09-20 12:02:26 -07004591 if (sourceCrop.right > raWidth) {
4592 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, raWidth);
Dan Stozac1879002014-05-22 15:59:05 -07004593 }
4594 if (sourceCrop.top < 0) {
4595 ALOGE("Invalid crop rect: t = %d (< 0)", sourceCrop.top);
4596 }
chaviwa76b2712017-09-20 12:02:26 -07004597 if (sourceCrop.bottom > raHeight) {
4598 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, raHeight);
Dan Stozac1879002014-05-22 15:59:05 -07004599 }
4600
chaviwa76b2712017-09-20 12:02:26 -07004601 engine.setWideColor(renderArea.getWideColorSupport() && !mForceNativeColorMode);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004602 engine.setColorMode(mForceNativeColorMode ? HAL_COLOR_MODE_NATIVE
4603 : renderArea.getActiveColorMode());
Romain Guy88d37dd2017-05-26 17:57:05 -07004604
Mathias Agopian180f10d2013-04-10 22:55:41 -07004605 // make sure to clear all GL error flags
Mathias Agopian3f844832013-08-07 21:24:32 -07004606 engine.checkErrors();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004607
4608 // set-up our viewport
chaviwa76b2712017-09-20 12:02:26 -07004609 engine.setViewportAndProjection(reqWidth, reqHeight, sourceCrop, raHeight, yswap,
4610 renderArea.getRotationFlags());
Mathias Agopian3f844832013-08-07 21:24:32 -07004611 engine.disableTexturing();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004612
4613 // redraw the screen entirely...
Mathias Agopian3f844832013-08-07 21:24:32 -07004614 engine.clearWithColor(0, 0, 0, 1);
Mathias Agopian180f10d2013-04-10 22:55:41 -07004615
chaviwa76b2712017-09-20 12:02:26 -07004616 traverseLayers([&](Layer* layer) {
4617 if (filtering) layer->setFiltering(true);
4618 layer->draw(renderArea, useIdentityTransform);
4619 if (filtering) layer->setFiltering(false);
4620 });
Mathias Agopian180f10d2013-04-10 22:55:41 -07004621}
4622
chaviwa76b2712017-09-20 12:02:26 -07004623status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
4624 TraverseLayersFunction traverseLayers,
4625 ANativeWindowBuffer* buffer,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004626 bool useIdentityTransform,
Robert Carr03480e22018-01-04 16:02:06 -08004627 bool forSystem,
chaviwa76b2712017-09-20 12:02:26 -07004628 int* outSyncFd) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004629 ATRACE_CALL();
4630
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004631 bool secureLayerIsVisible = false;
chaviwa76b2712017-09-20 12:02:26 -07004632
4633 traverseLayers([&](Layer* layer) {
4634 secureLayerIsVisible = secureLayerIsVisible || (layer->isVisible() && layer->isSecure());
4635 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004636
Robert Carr03480e22018-01-04 16:02:06 -08004637 // We allow the system server to take screenshots of secure layers for
4638 // use in situations like the Screen-rotation animation and place
4639 // the impetus on WindowManager to not persist them.
4640 if (secureLayerIsVisible && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004641 ALOGW("FB is protected: PERMISSION_DENIED");
4642 return PERMISSION_DENIED;
4643 }
4644
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004645 // this binds the given EGLImage as a framebuffer for the
4646 // duration of this scope.
Lloyd Pique144e1162017-12-20 16:44:52 -08004647 RE::BindNativeBufferAsFramebuffer bufferBond(getRenderEngine(), buffer);
Chia-I Wueadbaa62017-11-09 11:26:15 -08004648 if (bufferBond.getStatus() != NO_ERROR) {
4649 ALOGE("got ANWB binding error while taking screenshot");
Dan Stozaabcda352017-06-01 14:37:39 -07004650 return INVALID_OPERATION;
4651 }
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004652
Dan Stozaabcda352017-06-01 14:37:39 -07004653 // this will in fact render into our dequeued buffer
4654 // via an FBO, which means we didn't have to create
4655 // an EGLSurface and therefore we're not
4656 // dependent on the context's EGLConfig.
chaviwa76b2712017-09-20 12:02:26 -07004657 renderScreenImplLocked(renderArea, traverseLayers, true, useIdentityTransform);
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004658
Dan Stozaabcda352017-06-01 14:37:39 -07004659 if (DEBUG_SCREENSHOTS) {
Chia-I Wu767fcf72017-11-30 22:07:38 -08004660 getRenderEngine().finish();
4661 *outSyncFd = -1;
4662
chaviwa76b2712017-09-20 12:02:26 -07004663 const auto reqWidth = renderArea.getReqWidth();
4664 const auto reqHeight = renderArea.getReqHeight();
4665
Dan Stozaabcda352017-06-01 14:37:39 -07004666 uint32_t* pixels = new uint32_t[reqWidth*reqHeight];
4667 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
chaviwa76b2712017-09-20 12:02:26 -07004668 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels, traverseLayers);
Dan Stozaabcda352017-06-01 14:37:39 -07004669 delete [] pixels;
Chia-I Wu767fcf72017-11-30 22:07:38 -08004670 } else {
4671 base::unique_fd syncFd = getRenderEngine().flush();
4672 if (syncFd < 0) {
4673 getRenderEngine().finish();
4674 }
4675 *outSyncFd = syncFd.release();
Dan Stozaabcda352017-06-01 14:37:39 -07004676 }
4677
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004678 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07004679}
4680
Mathias Agopiand5556842013-09-19 17:08:37 -07004681void SurfaceFlinger::checkScreenshot(size_t w, size_t s, size_t h, void const* vaddr,
chaviwa76b2712017-09-20 12:02:26 -07004682 TraverseLayersFunction traverseLayers) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004683 if (DEBUG_SCREENSHOTS) {
chaviwa76b2712017-09-20 12:02:26 -07004684 for (size_t y = 0; y < h; y++) {
4685 uint32_t const* p = (uint32_t const*)vaddr + y * s;
4686 for (size_t x = 0; x < w; x++) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004687 if (p[x] != 0xFF000000) return;
4688 }
4689 }
chaviwa76b2712017-09-20 12:02:26 -07004690 ALOGE("*** we just took a black screenshot ***");
Robert Carr1f0a16a2016-10-24 16:27:39 -07004691
Robert Carr2047fae2016-11-28 14:09:09 -08004692 size_t i = 0;
chaviwa76b2712017-09-20 12:02:26 -07004693 traverseLayers([&](Layer* layer) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004694 const Layer::State& state(layer->getDrawingState());
chaviwa76b2712017-09-20 12:02:26 -07004695 ALOGE("%c index=%zu, name=%s, layerStack=%d, z=%d, visible=%d, flags=%x, alpha=%.3f",
4696 layer->isVisible() ? '+' : '-', i, layer->getName().string(),
4697 layer->getLayerStack(), state.z, layer->isVisible(), state.flags,
4698 static_cast<float>(state.color.a));
4699 i++;
4700 });
Mathias Agopianfee2b462013-07-03 12:34:01 -07004701 }
4702}
4703
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004704// ---------------------------------------------------------------------------
4705
Dan Stoza412903f2017-04-27 13:42:17 -07004706void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
4707 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004708}
4709
Dan Stoza412903f2017-04-27 13:42:17 -07004710void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
4711 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004712}
4713
chaviwa76b2712017-09-20 12:02:26 -07004714void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& hw, int32_t minLayerZ,
4715 int32_t maxLayerZ,
4716 const LayerVector::Visitor& visitor) {
4717 // We loop through the first level of layers without traversing,
4718 // as we need to interpret min/max layer Z in the top level Z space.
4719 for (const auto& layer : mDrawingState.layersSortedByZ) {
4720 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4721 continue;
4722 }
4723 const Layer::State& state(layer->getDrawingState());
Chia-I Wuec2d9852017-11-21 09:21:01 -08004724 // relative layers are traversed in Layer::traverseInZOrder
4725 if (state.zOrderRelativeOf != nullptr || state.z < minLayerZ || state.z > maxLayerZ) {
chaviwa76b2712017-09-20 12:02:26 -07004726 continue;
4727 }
4728 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01004729 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4730 return;
4731 }
chaviwa76b2712017-09-20 12:02:26 -07004732 if (!layer->isVisible()) {
4733 return;
4734 }
4735 visitor(layer);
4736 });
4737 }
4738}
4739
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004740}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07004741
4742
4743#if defined(__gl_h_)
4744#error "don't include gl/gl.h in this file"
4745#endif
4746
4747#if defined(__gl2_h_)
4748#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08004749#endif