blob: 135bfbefa9123b00a62a6652bf5291b04369be22 [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
Lloyd Piqueba04e622017-12-14 17:11:26 -08001292 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001293}
1294
Steven Thomasb02664d2017-07-26 18:48:28 -07001295void SurfaceFlinger::onRefreshReceived(int sequenceId,
1296 hwc2_display_t /*display*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001297 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001298 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001299 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001300 }
Steven Thomas6d8110b2017-08-31 18:24:21 -07001301 repaintEverythingLocked();
Steven Thomas3cfac282017-02-06 12:29:30 -08001302}
1303
Dan Stoza9e56aa02015-11-02 13:00:03 -08001304void SurfaceFlinger::setVsyncEnabled(int disp, int enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001305 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001306 Mutex::Autolock lock(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001307 getHwComposer().setVsyncEnabled(disp,
1308 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
Mathias Agopian86303202012-07-24 22:46:10 -07001309}
1310
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001311// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001312void SurfaceFlinger::resetDisplayState() {
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001313 disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001314 // Clear the drawing state so that the logic inside of
1315 // handleTransactionLocked will fire. It will determine the delta between
1316 // mCurrentState and mDrawingState and re-apply all changes when we make the
1317 // transition.
1318 mDrawingState.displays.clear();
Chia-I Wu7f402902017-11-09 12:51:10 -08001319 getRenderEngine().resetCurrentSurface();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001320 mDisplays.clear();
1321}
1322
Steven Thomas050b2c82017-03-06 11:45:16 -08001323void SurfaceFlinger::updateVrFlinger() {
1324 if (!mVrFlinger)
1325 return;
1326 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
David Sodman105b7dc2017-11-04 20:28:14 -07001327 if (vrFlingerRequestsDisplay == getBE().mHwc->isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001328 return;
1329 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001330
David Sodman105b7dc2017-11-04 20:28:14 -07001331 if (vrFlingerRequestsDisplay && !getBE().mHwc->getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001332 ALOGE("Vr flinger is only supported for remote hardware composer"
1333 " service connections. Ignoring request to transition to vr"
1334 " flinger.");
1335 mVrFlingerRequestsDisplay = false;
1336 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001337 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001338
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001339 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001340
Steven Thomasb02664d2017-07-26 18:48:28 -07001341 int currentDisplayPowerMode = getDisplayDeviceLocked(
1342 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY])->getPowerMode();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001343
Steven Thomasb02664d2017-07-26 18:48:28 -07001344 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001345 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001346 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001347
Steven Thomasb02664d2017-07-26 18:48:28 -07001348 resetDisplayState();
David Sodman105b7dc2017-11-04 20:28:14 -07001349 getBE().mHwc.reset(); // Delete the current instance before creating the new one
Lloyd Piquea822d522017-12-20 16:42:57 -08001350 getBE().mHwc.reset(new HWComposer(std::make_unique<Hwc2::impl::Composer>(
1351 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName)));
David Sodman105b7dc2017-11-04 20:28:14 -07001352 getBE().mHwc->registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001353
David Sodman105b7dc2017-11-04 20:28:14 -07001354 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->getComposer()->isRemote(),
1355 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001356
1357 if (vrFlingerRequestsDisplay) {
1358 mVrFlinger->GrantDisplayOwnership();
1359 } else {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001360 enableHardwareVsync();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001361 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001362
1363 mVisibleRegionsDirty = true;
1364 invalidateHwcGeometry();
1365
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001366 // Re-enable default display.
Steven Thomasb02664d2017-07-26 18:48:28 -07001367 sp<DisplayDevice> hw(getDisplayDeviceLocked(
1368 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY]));
1369 setPowerModeInternal(hw, currentDisplayPowerMode, /*stateLockHeld*/ true);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001370
Steven Thomasb02664d2017-07-26 18:48:28 -07001371 // Reset the timing values to account for the period of the swapped in HWC
David Sodman105b7dc2017-11-04 20:28:14 -07001372 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Steven Thomasb02664d2017-07-26 18:48:28 -07001373 const nsecs_t period = activeConfig->getVsyncPeriod();
1374 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001375
Steven Thomasb02664d2017-07-26 18:48:28 -07001376 // Use phase of 0 since phase is not known.
1377 // Use latency of 0, which will snap to the ideal latency.
1378 setCompositorTimingSnapped(0, period, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001379
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001380 android_atomic_or(1, &mRepaintEverything);
1381 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001382}
1383
Mathias Agopian4fec8732012-06-29 14:12:52 -07001384void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001385 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001386 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001387 case MessageQueue::INVALIDATE: {
Dan Stoza50182882016-07-08 12:02:20 -07001388 bool frameMissed = !mHadClientComposition &&
1389 mPreviousPresentFence != Fence::NO_FENCE &&
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001390 (mPreviousPresentFence->getSignalTime() ==
1391 Fence::SIGNAL_TIME_PENDING);
Dan Stoza50182882016-07-08 12:02:20 -07001392 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
Dan Stozac5da2712016-07-20 15:38:12 -07001393 if (mPropagateBackpressure && frameMissed) {
Dan Stoza50182882016-07-08 12:02:20 -07001394 signalLayerUpdate();
1395 break;
1396 }
1397
Steven Thomas050b2c82017-03-06 11:45:16 -08001398 // Now that we're going to make it to the handleMessageTransaction()
1399 // call below it's safe to call updateVrFlinger(), which will
1400 // potentially trigger a display handoff.
1401 updateVrFlinger();
1402
Dan Stoza6b9454d2014-11-07 16:00:59 -08001403 bool refreshNeeded = handleMessageTransaction();
1404 refreshNeeded |= handleMessageInvalidate();
Dan Stoza58784442014-12-02 16:58:17 -08001405 refreshNeeded |= mRepaintEverything;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001406 if (refreshNeeded) {
Dan Stoza58784442014-12-02 16:58:17 -08001407 // Signal a refresh if a transaction modified the window state,
1408 // a new buffer was latched, or if HWC has requested a full
1409 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001410 signalRefresh();
1411 }
1412 break;
1413 }
1414 case MessageQueue::REFRESH: {
1415 handleMessageRefresh();
1416 break;
1417 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001418 }
1419}
1420
Dan Stoza6b9454d2014-11-07 16:00:59 -08001421bool SurfaceFlinger::handleMessageTransaction() {
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001422 uint32_t transactionFlags = peekTransactionFlags();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001423 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001424 handleTransaction(transactionFlags);
Dan Stoza6b9454d2014-11-07 16:00:59 -08001425 return true;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001426 }
Dan Stoza6b9454d2014-11-07 16:00:59 -08001427 return false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001428}
1429
Dan Stoza6b9454d2014-11-07 16:00:59 -08001430bool SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001431 ATRACE_CALL();
Dan Stoza6b9454d2014-11-07 16:00:59 -08001432 return handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001433}
1434
1435void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001436 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001437
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001438 mRefreshPending = false;
1439
Pablo Ceballos40845df2016-01-25 17:41:15 -08001440 nsecs_t refreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001441
Brian Andersond6927fb2016-07-23 23:37:30 -07001442 preComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001443 rebuildLayerStacks();
1444 setUpHWComposer();
1445 doDebugFlashRegions();
Adrian Roos1e1a1282017-11-01 19:05:31 +01001446 doTracing("handleRefresh");
Dan Stoza05dacfb2016-07-01 13:33:38 -07001447 doComposition();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001448 postComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001449
David Sodman105b7dc2017-11-04 20:28:14 -07001450 mPreviousPresentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001451
1452 mHadClientComposition = false;
1453 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1454 const sp<DisplayDevice>& displayDevice = mDisplays[displayId];
1455 mHadClientComposition = mHadClientComposition ||
David Sodman105b7dc2017-11-04 20:28:14 -07001456 getBE().mHwc->hasClientComposition(displayDevice->getHwcDisplayId());
Dan Stozabfbffeb2016-07-21 14:49:33 -07001457 }
Dan Stoza14cd37c2015-07-09 12:43:33 -07001458
Dan Stoza9e56aa02015-11-02 13:00:03 -08001459 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001460}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001461
Mathias Agopiancd60f992012-08-16 16:28:27 -07001462void SurfaceFlinger::doDebugFlashRegions()
1463{
1464 // is debugging enabled
1465 if (CC_LIKELY(!mDebugRegion))
1466 return;
1467
1468 const bool repaintEverything = mRepaintEverything;
1469 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1470 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001471 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001472 // transform the dirty region into this screen's coordinate space
1473 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
1474 if (!dirtyRegion.isEmpty()) {
1475 // redraw the whole screen
Chia-I Wub02087d2017-11-09 10:19:54 -08001476 doComposeSurfaces(hw);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001477
1478 // and draw the dirty region
Mathias Agopiancd60f992012-08-16 16:28:27 -07001479 const int32_t height = hw->getHeight();
Lloyd Pique144e1162017-12-20 16:44:52 -08001480 auto& engine(getRenderEngine());
Mathias Agopian3f844832013-08-07 21:24:32 -07001481 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
1482
Mathias Agopianda27af92012-09-13 18:17:13 -07001483 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -07001484 }
1485 }
1486 }
1487
1488 postFramebuffer();
1489
1490 if (mDebugRegion > 1) {
1491 usleep(mDebugRegion * 1000);
1492 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001493
Dan Stoza9e56aa02015-11-02 13:00:03 -08001494 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001495 auto& displayDevice = mDisplays[displayId];
1496 if (!displayDevice->isDisplayOn()) {
1497 continue;
1498 }
1499
David Sodman105b7dc2017-11-04 20:28:14 -07001500 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
1501 ALOGE_IF(result != NO_ERROR,
1502 "prepareFrame for display %zd failed:"
1503 " %d (%s)",
1504 displayId, result, strerror(-result));
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001505 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001506}
1507
Adrian Roos1e1a1282017-11-01 19:05:31 +01001508void SurfaceFlinger::doTracing(const char* where) {
1509 ATRACE_CALL();
1510 ATRACE_NAME(where);
1511 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001512 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001513 }
1514}
1515
Brian Andersond6927fb2016-07-23 23:37:30 -07001516void SurfaceFlinger::preComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001517{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001518 ATRACE_CALL();
1519 ALOGV("preComposition");
1520
Mathias Agopiancd60f992012-08-16 16:28:27 -07001521 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001522 mDrawingState.traverseInZOrder([&](Layer* layer) {
1523 if (layer->onPreComposition(refreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001524 needExtraInvalidate = true;
1525 }
Robert Carr2047fae2016-11-28 14:09:09 -08001526 });
1527
Mathias Agopiancd60f992012-08-16 16:28:27 -07001528 if (needExtraInvalidate) {
1529 signalLayerUpdate();
1530 }
1531}
1532
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001533void SurfaceFlinger::updateCompositorTiming(
1534 nsecs_t vsyncPhase, nsecs_t vsyncInterval, nsecs_t compositeTime,
1535 std::shared_ptr<FenceTime>& presentFenceTime) {
1536 // Update queue of past composite+present times and determine the
1537 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001538 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001539 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001540 while (!getBE().mCompositePresentTimes.empty()) {
1541 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001542 // Cached values should have been updated before calling this method,
1543 // which helps avoid duplicate syscalls.
1544 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1545 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1546 break;
1547 }
1548 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001549 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001550 }
1551
1552 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001553 while (getBE().mCompositePresentTimes.size() > 16) {
1554 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001555 }
1556
Brian Andersond0010582017-03-07 13:20:31 -08001557 setCompositorTimingSnapped(
1558 vsyncPhase, vsyncInterval, compositeToPresentLatency);
1559}
1560
1561void SurfaceFlinger::setCompositorTimingSnapped(nsecs_t vsyncPhase,
1562 nsecs_t vsyncInterval, nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001563 // Integer division and modulo round toward 0 not -inf, so we need to
1564 // treat negative and positive offsets differently.
Brian Andersond0010582017-03-07 13:20:31 -08001565 nsecs_t idealLatency = (sfVsyncPhaseOffsetNs > 0) ?
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001566 (vsyncInterval - (sfVsyncPhaseOffsetNs % vsyncInterval)) :
1567 ((-sfVsyncPhaseOffsetNs) % vsyncInterval);
1568
Brian Andersond0010582017-03-07 13:20:31 -08001569 // Just in case sfVsyncPhaseOffsetNs == -vsyncInterval.
1570 if (idealLatency <= 0) {
1571 idealLatency = vsyncInterval;
1572 }
1573
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001574 // Snap the latency to a value that removes scheduling jitter from the
1575 // composition and present times, which often have >1ms of jitter.
1576 // Reducing jitter is important if an app attempts to extrapolate
1577 // something (such as user input) to an accurate diasplay time.
1578 // Snapping also allows an app to precisely calculate sfVsyncPhaseOffsetNs
1579 // with (presentLatency % interval).
Brian Andersond0010582017-03-07 13:20:31 -08001580 nsecs_t bias = vsyncInterval / 2;
1581 int64_t extraVsyncs =
1582 (compositeToPresentLatency - idealLatency + bias) / vsyncInterval;
1583 nsecs_t snappedCompositeToPresentLatency = (extraVsyncs > 0) ?
1584 idealLatency + (extraVsyncs * vsyncInterval) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001585
David Sodman99974d22017-11-28 12:04:33 -08001586 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1587 getBE().mCompositorTiming.deadline = vsyncPhase - idealLatency;
1588 getBE().mCompositorTiming.interval = vsyncInterval;
1589 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001590}
1591
1592void SurfaceFlinger::postComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001593{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001594 ATRACE_CALL();
1595 ALOGV("postComposition");
1596
Brian Anderson3546a3f2016-07-14 11:51:14 -07001597 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001598 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001599 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001600 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001601 }
1602
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001603 // |mStateLock| not needed as we are on the main thread
1604 const sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Brian Anderson3d4039d2016-09-23 16:31:30 -07001605
David Sodman73beded2017-11-15 11:56:06 -08001606 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001607 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001608 if (hw && getBE().mHwc->hasClientComposition(HWC_DISPLAY_PRIMARY)) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001609 glCompositionDoneFenceTime =
1610 std::make_shared<FenceTime>(hw->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001611 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001612 } else {
1613 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1614 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001615
David Sodman73beded2017-11-15 11:56:06 -08001616 getBE().mDisplayTimeline.updateSignalTimes();
David Sodman105b7dc2017-11-04 20:28:14 -07001617 sp<Fence> presentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Brian Anderson4e606e32017-03-16 15:34:57 -07001618 auto presentFenceTime = std::make_shared<FenceTime>(presentFence);
David Sodman73beded2017-11-15 11:56:06 -08001619 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001620
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001621 nsecs_t vsyncPhase = mPrimaryDispSync.computeNextRefresh(0);
1622 nsecs_t vsyncInterval = mPrimaryDispSync.getPeriod();
1623
1624 // We use the refreshStartTime which might be sampled a little later than
1625 // when we started doing work for this frame, but that should be okay
1626 // since updateCompositorTiming has snapping logic.
1627 updateCompositorTiming(
Brian Anderson4e606e32017-03-16 15:34:57 -07001628 vsyncPhase, vsyncInterval, refreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001629 CompositorTiming compositorTiming;
1630 {
David Sodman99974d22017-11-28 12:04:33 -08001631 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1632 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001633 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001634
Robert Carr2047fae2016-11-28 14:09:09 -08001635 mDrawingState.traverseInZOrder([&](Layer* layer) {
1636 bool frameLatched = layer->onPostComposition(glCompositionDoneFenceTime,
Brian Anderson4e606e32017-03-16 15:34:57 -07001637 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001638 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001639 recordBufferingStats(layer->getName().string(),
1640 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001641 }
Robert Carr2047fae2016-11-28 14:09:09 -08001642 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001643
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001644 if (presentFenceTime->isValid()) {
1645 if (mPrimaryDispSync.addPresentFence(presentFenceTime)) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001646 enableHardwareVsync();
1647 } else {
Jesse Hall948fe0c2013-10-14 12:56:09 -07001648 disableHardwareVsync(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001649 }
1650 }
1651
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08001652 if (!hasSyncFramework) {
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001653 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) && hw->isDisplayOn()) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001654 enableHardwareVsync();
1655 }
1656 }
1657
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001658 if (mAnimCompositionPending) {
1659 mAnimCompositionPending = false;
1660
Brian Anderson4e606e32017-03-16 15:34:57 -07001661 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001662 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07001663 std::move(presentFenceTime));
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001664 } else if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001665 // The HWC doesn't support present fences, so use the refresh
1666 // timestamp instead.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001667 nsecs_t presentTime =
David Sodman105b7dc2017-11-04 20:28:14 -07001668 getBE().mHwc->getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001669 mAnimFrameTracker.setActualPresentTime(presentTime);
1670 }
1671 mAnimFrameTracker.advanceFrame();
1672 }
Dan Stozab90cf072015-03-05 11:05:59 -08001673
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001674 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) &&
1675 hw->getPowerMode() == HWC_POWER_MODE_OFF) {
Dan Stozab90cf072015-03-05 11:05:59 -08001676 return;
1677 }
1678
1679 nsecs_t currentTime = systemTime();
1680 if (mHasPoweredOff) {
1681 mHasPoweredOff = false;
1682 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001683 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001684 size_t numPeriods = static_cast<size_t>(elapsedTime / vsyncInterval);
David Sodman4a36e932017-11-07 14:29:47 -08001685 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
1686 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001687 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001688 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001689 }
David Sodman4a36e932017-11-07 14:29:47 -08001690 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001691 }
David Sodman4a36e932017-11-07 14:29:47 -08001692 getBE().mLastSwapTime = currentTime;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001693}
1694
1695void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001696 ATRACE_CALL();
1697 ALOGV("rebuildLayerStacks");
1698
Mathias Agopiancd60f992012-08-16 16:28:27 -07001699 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07001700 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07001701 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07001702 mVisibleRegionsDirty = false;
1703 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001704
Jeff Sharkey76488112017-02-27 14:15:18 -07001705 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1706 Region opaqueRegion;
1707 Region dirtyRegion;
1708 Vector<sp<Layer>> layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08001709 Vector<sp<Layer>> layersNeedingFences;
Jeff Sharkey76488112017-02-27 14:15:18 -07001710 const sp<DisplayDevice>& displayDevice(mDisplays[dpy]);
1711 const Transform& tr(displayDevice->getTransform());
1712 const Rect bounds(displayDevice->getBounds());
1713 if (displayDevice->isDisplayOn()) {
Chia-I Wuab0c3192017-08-01 11:29:00 -07001714 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001715
Jeff Sharkey76488112017-02-27 14:15:18 -07001716 mDrawingState.traverseInZOrder([&](Layer* layer) {
Chia-I Wu83806892017-11-16 10:50:20 -08001717 bool hwcLayerDestroyed = false;
Chia-I Wuab0c3192017-08-01 11:29:00 -07001718 if (layer->belongsToDisplay(displayDevice->getLayerStack(),
1719 displayDevice->isPrimary())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07001720 Region drawRegion(tr.transform(
1721 layer->visibleNonTransparentRegion));
1722 drawRegion.andSelf(bounds);
1723 if (!drawRegion.isEmpty()) {
1724 layersSortedByZ.add(layer);
1725 } else {
1726 // Clear out the HWC layer if this layer was
1727 // previously visible, but no longer is
Chia-I Wu83806892017-11-16 10:50:20 -08001728 hwcLayerDestroyed = layer->destroyHwcLayer(
Steven Thomasb02664d2017-07-26 18:48:28 -07001729 displayDevice->getHwcDisplayId());
Jeff Sharkey76488112017-02-27 14:15:18 -07001730 }
Fabien Sanglard06a76c02017-03-03 11:19:30 -08001731 } else {
Fabien Sanglard82260512017-03-03 14:58:52 -08001732 // WM changes displayDevice->layerStack upon sleep/awake.
1733 // Here we make sure we delete the HWC layers even if
1734 // WM changed their layer stack.
Chia-I Wu83806892017-11-16 10:50:20 -08001735 hwcLayerDestroyed = layer->destroyHwcLayer(
1736 displayDevice->getHwcDisplayId());
1737 }
1738
1739 // If a layer is not going to get a release fence because
1740 // it is invisible, but it is also going to release its
1741 // old buffer, add it to the list of layers needing
1742 // fences.
1743 if (hwcLayerDestroyed) {
1744 auto found = std::find(mLayersWithQueuedFrames.cbegin(),
1745 mLayersWithQueuedFrames.cend(), layer);
1746 if (found != mLayersWithQueuedFrames.cend()) {
1747 layersNeedingFences.add(layer);
1748 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001749 }
Jeff Sharkey76488112017-02-27 14:15:18 -07001750 });
1751 }
1752 displayDevice->setVisibleLayersSortedByZ(layersSortedByZ);
Chia-I Wu83806892017-11-16 10:50:20 -08001753 displayDevice->setLayersNeedingFences(layersNeedingFences);
Jeff Sharkey76488112017-02-27 14:15:18 -07001754 displayDevice->undefinedRegion.set(bounds);
1755 displayDevice->undefinedRegion.subtractSelf(
1756 tr.transform(opaqueRegion));
1757 displayDevice->dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001758 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001759 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001760}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001761
Romain Guy0147a172017-06-01 13:53:56 -07001762mat4 SurfaceFlinger::computeSaturationMatrix() const {
1763 if (mSaturation == 1.0f) {
1764 return mat4();
1765 }
1766
1767 // Rec.709 luma coefficients
1768 float3 luminance{0.213f, 0.715f, 0.072f};
1769 luminance *= 1.0f - mSaturation;
1770 return mat4(
1771 vec4{luminance.r + mSaturation, luminance.r, luminance.r, 0.0f},
1772 vec4{luminance.g, luminance.g + mSaturation, luminance.g, 0.0f},
1773 vec4{luminance.b, luminance.b, luminance.b + mSaturation, 0.0f},
1774 vec4{0.0f, 0.0f, 0.0f, 1.0f}
1775 );
1776}
1777
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001778// pickColorMode translates a given dataspace into the best available color mode.
1779// Currently only support sRGB and Display-P3.
Romain Guy0147a172017-06-01 13:53:56 -07001780android_color_mode SurfaceFlinger::pickColorMode(android_dataspace dataSpace) const {
Romain Guy54f154a2017-10-24 21:40:32 +01001781 if (mForceNativeColorMode) {
1782 return HAL_COLOR_MODE_NATIVE;
1783 }
1784
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001785 switch (dataSpace) {
1786 // treat Unknown as regular SRGB buffer, since that's what the rest of the
1787 // system expects.
1788 case HAL_DATASPACE_UNKNOWN:
1789 case HAL_DATASPACE_SRGB:
1790 case HAL_DATASPACE_V0_SRGB:
1791 return HAL_COLOR_MODE_SRGB;
1792 break;
1793
1794 case HAL_DATASPACE_DISPLAY_P3:
1795 return HAL_COLOR_MODE_DISPLAY_P3;
1796 break;
1797
1798 default:
1799 // TODO (courtneygo): Do we want to assert an error here?
1800 ALOGE("No color mode mapping for %s (%#x)", dataspaceDetails(dataSpace).c_str(),
1801 dataSpace);
1802 return HAL_COLOR_MODE_SRGB;
1803 break;
1804 }
1805}
1806
Romain Guy0147a172017-06-01 13:53:56 -07001807android_dataspace SurfaceFlinger::bestTargetDataSpace(
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001808 android_dataspace a, android_dataspace b, bool hasHdr) const {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001809 // Only support sRGB and Display-P3 right now.
1810 if (a == HAL_DATASPACE_DISPLAY_P3 || b == HAL_DATASPACE_DISPLAY_P3) {
1811 return HAL_DATASPACE_DISPLAY_P3;
1812 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001813 if (a == HAL_DATASPACE_V0_SCRGB_LINEAR || b == HAL_DATASPACE_V0_SCRGB_LINEAR) {
1814 return HAL_DATASPACE_DISPLAY_P3;
1815 }
1816 if (a == HAL_DATASPACE_V0_SCRGB || b == HAL_DATASPACE_V0_SCRGB) {
1817 return HAL_DATASPACE_DISPLAY_P3;
1818 }
Chia-I Wu8d2651e2018-01-24 12:18:49 -08001819 if (!hasHdr) {
1820 if (a == HAL_DATASPACE_BT2020_PQ || b == HAL_DATASPACE_BT2020_PQ) {
1821 return HAL_DATASPACE_DISPLAY_P3;
1822 }
1823 if (a == HAL_DATASPACE_BT2020_ITU_PQ || b == HAL_DATASPACE_BT2020_ITU_PQ) {
1824 return HAL_DATASPACE_DISPLAY_P3;
1825 }
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001826 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001827
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001828 return HAL_DATASPACE_V0_SRGB;
1829}
1830
Mathias Agopiancd60f992012-08-16 16:28:27 -07001831void SurfaceFlinger::setUpHWComposer() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001832 ATRACE_CALL();
1833 ALOGV("setUpHWComposer");
1834
Jesse Hall028dc8f2013-08-20 16:35:32 -07001835 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Jesse Hallb7a05492014-08-14 15:45:06 -07001836 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty();
1837 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0;
1838 bool wasEmpty = !mDisplays[dpy]->lastCompositionHadVisibleLayers;
1839
1840 // If nothing has changed (!dirty), don't recompose.
1841 // If something changed, but we don't currently have any visible layers,
1842 // and didn't when we last did a composition, then skip it this time.
1843 // The second rule does two things:
1844 // - When all layers are removed from a display, we'll emit one black
1845 // frame, then nothing more until we get new layers.
1846 // - When a display is created with a private layer stack, we won't
1847 // emit any black frames until a layer is added to the layer stack.
1848 bool mustRecompose = dirty && !(empty && wasEmpty);
1849
1850 ALOGV_IF(mDisplays[dpy]->getDisplayType() == DisplayDevice::DISPLAY_VIRTUAL,
1851 "dpy[%zu]: %s composition (%sdirty %sempty %swasEmpty)", dpy,
1852 mustRecompose ? "doing" : "skipping",
1853 dirty ? "+" : "-",
1854 empty ? "+" : "-",
1855 wasEmpty ? "+" : "-");
1856
Dan Stoza71433162014-02-04 16:22:36 -08001857 mDisplays[dpy]->beginFrame(mustRecompose);
Jesse Hallb7a05492014-08-14 15:45:06 -07001858
1859 if (mustRecompose) {
1860 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1861 }
Jesse Hall028dc8f2013-08-20 16:35:32 -07001862 }
1863
Dan Stoza9e56aa02015-11-02 13:00:03 -08001864 // build the h/w work list
1865 if (CC_UNLIKELY(mGeometryInvalid)) {
1866 mGeometryInvalid = false;
1867 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1868 sp<const DisplayDevice> displayDevice(mDisplays[dpy]);
1869 const auto hwcId = displayDevice->getHwcDisplayId();
1870 if (hwcId >= 0) {
1871 const Vector<sp<Layer>>& currentLayers(
1872 displayDevice->getVisibleLayersSortedByZ());
Robert Carrae060832016-11-28 10:51:00 -08001873 for (size_t i = 0; i < currentLayers.size(); i++) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001874 const auto& layer = currentLayers[i];
Dan Stoza9e56aa02015-11-02 13:00:03 -08001875 if (!layer->hasHwcLayer(hwcId)) {
David Sodman105b7dc2017-11-04 20:28:14 -07001876 if (!layer->createHwcLayer(getBE().mHwc.get(), hwcId)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001877 layer->forceClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001878 continue;
Jamie Gennisa4310c82012-09-25 20:26:00 -07001879 }
1880 }
Jamie Gennisa4310c82012-09-25 20:26:00 -07001881
Robert Carrae060832016-11-28 10:51:00 -08001882 layer->setGeometry(displayDevice, i);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001883 if (mDebugDisableHWC || mDebugRegion) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001884 layer->forceClientComposition(hwcId);
Riley Andrews03414a12014-07-01 14:22:59 -07001885 }
1886 }
1887 }
1888 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001889 }
Riley Andrews03414a12014-07-01 14:22:59 -07001890
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001891
Romain Guy0147a172017-06-01 13:53:56 -07001892 mat4 colorMatrix = mColorMatrix * computeSaturationMatrix() * mDaltonizer();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001893
Dan Stoza9e56aa02015-11-02 13:00:03 -08001894 // Set the per-frame data
1895 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1896 auto& displayDevice = mDisplays[displayId];
1897 const auto hwcId = displayDevice->getHwcDisplayId();
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001898
Dan Stoza9e56aa02015-11-02 13:00:03 -08001899 if (hwcId < 0) {
1900 continue;
Jesse Hall38efe862013-04-06 23:12:29 -07001901 }
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001902 if (colorMatrix != mPreviousColorMatrix) {
David Sodman105b7dc2017-11-04 20:28:14 -07001903 status_t result = getBE().mHwc->setColorTransform(hwcId, colorMatrix);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001904 ALOGE_IF(result != NO_ERROR, "Failed to set color transform on "
1905 "display %zd: %d", displayId, result);
1906 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001907 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu8d2651e2018-01-24 12:18:49 -08001908 if ((layer->getDataSpace() == HAL_DATASPACE_BT2020_PQ ||
1909 layer->getDataSpace() == HAL_DATASPACE_BT2020_ITU_PQ) &&
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001910 !displayDevice->getHdrSupport()) {
1911 layer->forceClientComposition(hwcId);
1912 }
1913
chaviwc9232ed2017-11-14 15:31:15 -08001914 if (layer->getForceClientComposition(hwcId)) {
1915 ALOGV("[%s] Requesting Client composition", layer->getName().string());
1916 layer->setCompositionType(hwcId, HWC2::Composition::Client);
1917 continue;
1918 }
1919
Dan Stoza9e56aa02015-11-02 13:00:03 -08001920 layer->setPerFrameData(displayDevice);
1921 }
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001922
1923 if (hasWideColorDisplay) {
1924 android_color_mode newColorMode;
1925 android_dataspace newDataSpace = HAL_DATASPACE_V0_SRGB;
1926
1927 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001928 newDataSpace = bestTargetDataSpace(layer->getDataSpace(), newDataSpace,
1929 displayDevice->getHdrSupport());
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001930 ALOGV("layer: %s, dataspace: %s (%#x), newDataSpace: %s (%#x)",
1931 layer->getName().string(), dataspaceDetails(layer->getDataSpace()).c_str(),
1932 layer->getDataSpace(), dataspaceDetails(newDataSpace).c_str(), newDataSpace);
1933 }
1934 newColorMode = pickColorMode(newDataSpace);
1935
Thierry Strudel2924d012017-08-14 15:19:37 -07001936 setActiveColorModeInternal(displayDevice, newColorMode);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001937 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001938 }
1939
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001940 mPreviousColorMatrix = colorMatrix;
1941
Dan Stoza9e56aa02015-11-02 13:00:03 -08001942 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001943 auto& displayDevice = mDisplays[displayId];
1944 if (!displayDevice->isDisplayOn()) {
1945 continue;
1946 }
1947
David Sodman105b7dc2017-11-04 20:28:14 -07001948 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001949 ALOGE_IF(result != NO_ERROR, "prepareFrame for display %zd failed:"
1950 " %d (%s)", displayId, result, strerror(-result));
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001951 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001952}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001953
Mathias Agopiancd60f992012-08-16 16:28:27 -07001954void SurfaceFlinger::doComposition() {
1955 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001956 ALOGV("doComposition");
1957
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001958 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001959 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001960 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001961 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001962 // transform the dirty region into this screen's coordinate space
1963 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -08001964
1965 // repaint the framebuffer (if needed)
1966 doDisplayComposition(hw, dirtyRegion);
1967
Mathias Agopiancd60f992012-08-16 16:28:27 -07001968 hw->dirtyRegion.clear();
Chia-I Wub02087d2017-11-09 10:19:54 -08001969 hw->flip();
Mathias Agopian87baae12012-07-31 12:38:26 -07001970 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001971 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001972 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001973}
1974
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001975void SurfaceFlinger::postFramebuffer()
1976{
Mathias Agopian841cde52012-03-01 15:44:37 -08001977 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001978 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08001979
Mathias Agopiana44b0412011-10-16 18:46:35 -07001980 const nsecs_t now = systemTime();
1981 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001982
Dan Stoza9e56aa02015-11-02 13:00:03 -08001983 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1984 auto& displayDevice = mDisplays[displayId];
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001985 if (!displayDevice->isDisplayOn()) {
1986 continue;
1987 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001988 const auto hwcId = displayDevice->getHwcDisplayId();
1989 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07001990 getBE().mHwc->presentAndGetReleaseFences(hwcId);
Mathias Agopian2a231842012-09-24 18:12:35 -07001991 }
Dan Stoza2dc3be82016-04-06 14:05:37 -07001992 displayDevice->onSwapBuffersCompleted();
Chia-I Wu7f402902017-11-09 12:51:10 -08001993 displayDevice->makeCurrent();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001994 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu7b549592017-11-15 09:14:57 -08001995 // The layer buffer from the previous frame (if any) is released
1996 // by HWC only when the release fence from this frame (if any) is
1997 // signaled. Always get the release fence from HWC first.
1998 auto hwcLayer = layer->getHwcLayer(hwcId);
David Sodman105b7dc2017-11-04 20:28:14 -07001999 sp<Fence> releaseFence = getBE().mHwc->getLayerReleaseFence(hwcId, hwcLayer);
Chia-I Wu7b549592017-11-15 09:14:57 -08002000
2001 // If the layer was client composited in the previous frame, we
2002 // need to merge with the previous client target acquire fence.
2003 // Since we do not track that, always merge with the current
2004 // client target acquire fence when it is available, even though
2005 // this is suboptimal.
Dan Stoza9e56aa02015-11-02 13:00:03 -08002006 if (layer->getCompositionType(hwcId) == HWC2::Composition::Client) {
Chia-I Wu7b549592017-11-15 09:14:57 -08002007 releaseFence = Fence::merge("LayerRelease", releaseFence,
2008 displayDevice->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002009 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002010
Dan Stoza9e56aa02015-11-02 13:00:03 -08002011 layer->onLayerDisplayed(releaseFence);
2012 }
Chia-I Wu83806892017-11-16 10:50:20 -08002013
2014 // We've got a list of layers needing fences, that are disjoint with
2015 // displayDevice->getVisibleLayersSortedByZ. The best we can do is to
2016 // supply them with the present fence.
2017 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
David Sodman105b7dc2017-11-04 20:28:14 -07002018 sp<Fence> presentFence = getBE().mHwc->getPresentFence(hwcId);
Chia-I Wu83806892017-11-16 10:50:20 -08002019 for (auto& layer : displayDevice->getLayersNeedingFences()) {
2020 layer->onLayerDisplayed(presentFence);
2021 }
2022 }
2023
Dan Stoza9e56aa02015-11-02 13:00:03 -08002024 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07002025 getBE().mHwc->clearReleaseFences(hwcId);
Jesse Hallef194142012-06-14 14:45:17 -07002026 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002027 }
2028
Mathias Agopiana44b0412011-10-16 18:46:35 -07002029 mLastSwapBufferTime = systemTime() - now;
2030 mDebugInSwapBuffers = 0;
Jamie Gennis6547ff42013-07-16 20:12:42 -07002031
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002032 // |mStateLock| not needed as we are on the main thread
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002033 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
2034 uint32_t flipCount = getDefaultDisplayDeviceLocked()->getPageFlipCount();
2035 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2036 logFrameStats();
2037 }
Jamie Gennis6547ff42013-07-16 20:12:42 -07002038 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002039}
2040
Mathias Agopian87baae12012-07-31 12:38:26 -07002041void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002042{
Mathias Agopian841cde52012-03-01 15:44:37 -08002043 ATRACE_CALL();
2044
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002045 // here we keep a copy of the drawing state (that is the state that's
2046 // going to be overwritten by handleTransactionLocked()) outside of
2047 // mStateLock so that the side-effects of the State assignment
2048 // don't happen with mStateLock held (which can cause deadlocks).
2049 State drawingState(mDrawingState);
2050
Mathias Agopianca4d3602011-05-19 15:38:14 -07002051 Mutex::Autolock _l(mStateLock);
2052 const nsecs_t now = systemTime();
2053 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002054
Mathias Agopianca4d3602011-05-19 15:38:14 -07002055 // Here we're guaranteed that some transaction flags are set
2056 // so we can call handleTransactionLocked() unconditionally.
2057 // We call getTransactionFlags(), which will also clear the flags,
2058 // with mStateLock held to guarantee that mCurrentState won't change
2059 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002060
Mathias Agopiane57f2922012-08-09 16:29:12 -07002061 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002062 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002063
Mathias Agopianca4d3602011-05-19 15:38:14 -07002064 mLastTransactionTime = systemTime() - now;
2065 mDebugInTransaction = 0;
2066 invalidateHwcGeometry();
2067 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002068}
2069
Lloyd Pique715a2c12017-12-14 17:18:08 -08002070DisplayDevice::DisplayType SurfaceFlinger::determineDisplayType(hwc2_display_t display,
2071 HWC2::Connection connection) const {
2072 // Figure out whether the event is for the primary display or an
2073 // external display by matching the Hwc display id against one for a
2074 // connected display. If we did not find a match, we then check what
2075 // displays are not already connected to determine the type. If we don't
2076 // have a connected primary display, we assume the new display is meant to
2077 // be the primary display, and then if we don't have an external display,
2078 // we assume it is that.
2079 const auto primaryDisplayId =
2080 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_PRIMARY);
2081 const auto externalDisplayId =
2082 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_EXTERNAL);
2083 if (primaryDisplayId && primaryDisplayId == display) {
2084 return DisplayDevice::DISPLAY_PRIMARY;
2085 } else if (externalDisplayId && externalDisplayId == display) {
2086 return DisplayDevice::DISPLAY_EXTERNAL;
2087 } else if (connection == HWC2::Connection::Connected && !primaryDisplayId) {
2088 return DisplayDevice::DISPLAY_PRIMARY;
2089 } else if (connection == HWC2::Connection::Connected && !externalDisplayId) {
2090 return DisplayDevice::DISPLAY_EXTERNAL;
2091 }
2092
2093 return DisplayDevice::DISPLAY_ID_INVALID;
2094}
2095
Lloyd Piqueba04e622017-12-14 17:11:26 -08002096void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2097 for (const auto& event : mPendingHotplugEvents) {
Lloyd Pique715a2c12017-12-14 17:18:08 -08002098 auto displayType = determineDisplayType(event.display, event.connection);
2099 if (displayType == DisplayDevice::DISPLAY_ID_INVALID) {
2100 ALOGW("Unable to determine the display type for display %" PRIu64, event.display);
2101 continue;
2102 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002103
2104 if (getBE().mHwc->isUsingVrComposer() && displayType == DisplayDevice::DISPLAY_EXTERNAL) {
2105 ALOGE("External displays are not supported by the vr hardware composer.");
2106 continue;
2107 }
2108
Lloyd Pique715a2c12017-12-14 17:18:08 -08002109 getBE().mHwc->onHotplug(event.display, displayType, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002110
2111 if (event.connection == HWC2::Connection::Connected) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002112 ALOGV("Creating built in display %d", displayType);
2113 ALOGW_IF(mBuiltinDisplays[displayType],
2114 "Overwriting display token for display type %d", displayType);
2115 mBuiltinDisplays[displayType] = new BBinder();
2116 // All non-virtual displays are currently considered secure.
2117 DisplayDeviceState info(displayType, true);
2118 info.displayName = displayType == DisplayDevice::DISPLAY_PRIMARY ?
2119 "Built-in Screen" : "External Screen";
2120 mCurrentState.displays.add(mBuiltinDisplays[displayType], info);
2121 mInterceptor.saveDisplayCreation(info);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002122 } else {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002123 ALOGV("Removing built in display %d", displayType);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002124
Lloyd Piquefcd86612017-12-14 17:15:36 -08002125 ssize_t idx = mCurrentState.displays.indexOfKey(mBuiltinDisplays[displayType]);
2126 if (idx >= 0) {
2127 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
2128 mInterceptor.saveDisplayDeletion(info.displayId);
2129 mCurrentState.displays.removeItemsAt(idx);
2130 }
2131 mBuiltinDisplays[displayType].clear();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002132 }
2133
2134 processDisplayChangesLocked();
2135 }
2136
2137 mPendingHotplugEvents.clear();
2138}
2139
Lloyd Pique347200f2017-12-14 17:00:15 -08002140void SurfaceFlinger::processDisplayChangesLocked() {
2141 // here we take advantage of Vector's copy-on-write semantics to
2142 // improve performance by skipping the transaction entirely when
2143 // know that the lists are identical
2144 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2145 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2146 if (!curr.isIdenticalTo(draw)) {
2147 mVisibleRegionsDirty = true;
2148 const size_t cc = curr.size();
2149 size_t dc = draw.size();
2150
2151 // find the displays that were removed
2152 // (ie: in drawing state but not in current state)
2153 // also handle displays that changed
2154 // (ie: displays that are in both lists)
2155 for (size_t i = 0; i < dc;) {
2156 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2157 if (j < 0) {
2158 // in drawing state but not in current state
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002159 // Call makeCurrent() on the primary display so we can
2160 // be sure that nothing associated with this display
2161 // is current.
2162 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDeviceLocked());
2163 if (defaultDisplay != nullptr) defaultDisplay->makeCurrent();
2164 sp<DisplayDevice> hw(getDisplayDeviceLocked(draw.keyAt(i)));
2165 if (hw != nullptr) hw->disconnect(getHwComposer());
2166 if (draw[i].type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES)
2167 mEventThread->onHotplugReceived(draw[i].type, false);
2168 mDisplays.removeItem(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002169 } else {
2170 // this display is in both lists. see if something changed.
2171 const DisplayDeviceState& state(curr[j]);
2172 const wp<IBinder>& display(curr.keyAt(j));
2173 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2174 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2175 if (state_binder != draw_binder) {
2176 // changing the surface is like destroying and
2177 // recreating the DisplayDevice, so we just remove it
2178 // from the drawing state, so that it get re-added
2179 // below.
2180 sp<DisplayDevice> hw(getDisplayDeviceLocked(display));
2181 if (hw != nullptr) hw->disconnect(getHwComposer());
2182 mDisplays.removeItem(display);
2183 mDrawingState.displays.removeItemsAt(i);
2184 dc--;
2185 // at this point we must loop to the next item
2186 continue;
2187 }
2188
2189 const sp<DisplayDevice> disp(getDisplayDeviceLocked(display));
2190 if (disp != nullptr) {
2191 if (state.layerStack != draw[i].layerStack) {
2192 disp->setLayerStack(state.layerStack);
2193 }
2194 if ((state.orientation != draw[i].orientation) ||
2195 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
2196 disp->setProjection(state.orientation, state.viewport, state.frame);
2197 }
2198 if (state.width != draw[i].width || state.height != draw[i].height) {
2199 disp->setDisplaySize(state.width, state.height);
2200 }
2201 }
2202 }
2203 ++i;
2204 }
2205
2206 // find displays that were added
2207 // (ie: in current state but not in drawing state)
2208 for (size_t i = 0; i < cc; i++) {
2209 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2210 const DisplayDeviceState& state(curr[i]);
2211
2212 sp<DisplaySurface> dispSurface;
2213 sp<IGraphicBufferProducer> producer;
2214 sp<IGraphicBufferProducer> bqProducer;
2215 sp<IGraphicBufferConsumer> bqConsumer;
2216 BufferQueue::createBufferQueue(&bqProducer, &bqConsumer);
2217
2218 int32_t hwcId = -1;
2219 if (state.isVirtualDisplay()) {
2220 // Virtual displays without a surface are dormant:
2221 // they have external state (layer stack, projection,
2222 // etc.) but no internal state (i.e. a DisplayDevice).
2223 if (state.surface != nullptr) {
2224 // Allow VR composer to use virtual displays.
2225 if (mUseHwcVirtualDisplays || getBE().mHwc->isUsingVrComposer()) {
2226 int width = 0;
2227 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2228 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2229 int height = 0;
2230 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2231 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2232 int intFormat = 0;
2233 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2234 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
2235 auto format = static_cast<android_pixel_format_t>(intFormat);
2236
2237 getBE().mHwc->allocateVirtualDisplay(width, height, &format, &hwcId);
2238 }
2239
2240 // TODO: Plumb requested format back up to consumer
2241
2242 sp<VirtualDisplaySurface> vds =
2243 new VirtualDisplaySurface(*getBE().mHwc, hwcId, state.surface,
2244 bqProducer, bqConsumer,
2245 state.displayName);
2246
2247 dispSurface = vds;
2248 producer = vds;
2249 }
2250 } else {
2251 ALOGE_IF(state.surface != nullptr,
2252 "adding a supported display, but rendering "
2253 "surface is provided (%p), ignoring it",
2254 state.surface.get());
2255
2256 hwcId = state.type;
2257 dispSurface = new FramebufferSurface(*getBE().mHwc, hwcId, bqConsumer);
2258 producer = bqProducer;
2259 }
2260
2261 const wp<IBinder>& display(curr.keyAt(i));
Lloyd Piquefcd86612017-12-14 17:15:36 -08002262
Lloyd Pique347200f2017-12-14 17:00:15 -08002263 if (dispSurface != nullptr) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002264 bool useWideColorMode = hasWideColorDisplay;
Lloyd Piquec5208312018-01-08 17:59:02 -08002265 if (!mForceNativeColorMode) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002266 bool hasWideColorModes = false;
2267 std::vector<android_color_mode_t> modes =
2268 getHwComposer().getColorModes(state.type);
2269 for (android_color_mode_t colorMode : modes) {
2270 switch (colorMode) {
2271 case HAL_COLOR_MODE_DISPLAY_P3:
2272 case HAL_COLOR_MODE_ADOBE_RGB:
2273 case HAL_COLOR_MODE_DCI_P3:
2274 hasWideColorModes = true;
2275 break;
2276 default:
2277 break;
2278 }
2279 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002280 useWideColorMode = hasWideColorModes && hasWideColorDisplay;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002281 }
2282
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002283 bool hasHdrSupport = false;
2284 std::unique_ptr<HdrCapabilities> hdrCapabilities =
2285 getHwComposer().getHdrCapabilities(state.type);
2286 if (hdrCapabilities) {
2287 const std::vector<int32_t> types = hdrCapabilities->getSupportedHdrTypes();
2288 auto iter = std::find(types.cbegin(), types.cend(), HAL_HDR_HDR10);
2289 hasHdrSupport = iter != types.cend();
2290 }
2291
Lloyd Pique347200f2017-12-14 17:00:15 -08002292 sp<DisplayDevice> hw =
2293 new DisplayDevice(this, state.type, hwcId, state.isSecure, display,
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002294 dispSurface, producer, useWideColorMode,
2295 hasHdrSupport);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002296
Lloyd Piquec5208312018-01-08 17:59:02 -08002297 android_color_mode defaultColorMode = HAL_COLOR_MODE_NATIVE;
2298 if (useWideColorMode) {
2299 defaultColorMode = HAL_COLOR_MODE_SRGB;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002300 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002301 setActiveColorModeInternal(hw, defaultColorMode);
2302 hw->setCompositionDataSpace(HAL_DATASPACE_UNKNOWN);
Lloyd Pique347200f2017-12-14 17:00:15 -08002303 hw->setLayerStack(state.layerStack);
2304 hw->setProjection(state.orientation, state.viewport, state.frame);
2305 hw->setDisplayName(state.displayName);
Lloyd Piquec5208312018-01-08 17:59:02 -08002306
Lloyd Pique347200f2017-12-14 17:00:15 -08002307 mDisplays.add(display, hw);
2308 if (!state.isVirtualDisplay()) {
2309 mEventThread->onHotplugReceived(state.type, true);
2310 }
2311 }
2312 }
2313 }
2314 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002315
2316 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002317}
2318
Mathias Agopian87baae12012-07-31 12:38:26 -07002319void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002320{
Dan Stoza7dde5992015-05-22 09:51:44 -07002321 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002322 mCurrentState.traverseInZOrder([](Layer* layer) {
2323 layer->notifyAvailableFrames();
2324 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002325
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002326 /*
2327 * Traversal of the children
2328 * (perform the transaction for each of them if needed)
2329 */
2330
Mathias Agopian3559b072012-08-15 13:46:03 -07002331 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002332 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002333 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002334 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002335
2336 const uint32_t flags = layer->doTransaction(0);
2337 if (flags & Layer::eVisibleRegion)
2338 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002339 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002340 }
2341
2342 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002343 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002344 */
2345
Mathias Agopiane57f2922012-08-09 16:29:12 -07002346 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002347 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002348 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002349 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002350
Mathias Agopian84300952012-11-21 16:02:13 -08002351 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
2352 // The transform hint might have changed for some layers
2353 // (either because a display has changed, or because a layer
2354 // as changed).
2355 //
2356 // Walk through all the layers in currentLayers,
2357 // and update their transform hint.
2358 //
2359 // If a layer is visible only on a single display, then that
2360 // display is used to calculate the hint, otherwise we use the
2361 // default display.
2362 //
2363 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2364 // the hint is set before we acquire a buffer from the surface texture.
2365 //
2366 // NOTE: layer transactions have taken place already, so we use their
2367 // drawing state. However, SurfaceFlinger's own transaction has not
2368 // happened yet, so we must use the current state layer list
2369 // (soon to become the drawing state list).
2370 //
2371 sp<const DisplayDevice> disp;
2372 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002373 bool first = true;
2374 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002375 // NOTE: we rely on the fact that layers are sorted by
2376 // layerStack first (so we don't have to traverse the list
2377 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002378 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002379 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002380 currentlayerStack = layerStack;
2381 // figure out if this layerstack is mirrored
2382 // (more than one display) if so, pick the default display,
2383 // if not, pick the only display it's on.
2384 disp.clear();
2385 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2386 sp<const DisplayDevice> hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002387 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002388 if (disp == nullptr) {
George Burgess IV406a2852017-08-29 17:57:25 -07002389 disp = std::move(hw);
Mathias Agopian84300952012-11-21 16:02:13 -08002390 } else {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002391 disp = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002392 break;
2393 }
2394 }
2395 }
2396 }
Chet Haase91d25932013-04-11 15:24:55 -07002397
Robert Carr56a0b9a2017-12-04 16:06:13 -08002398 if (transactionFlags & eDisplayTransactionNeeded) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002399 if (disp == nullptr) {
Robert Carr56a0b9a2017-12-04 16:06:13 -08002400 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2401 // redraw after transform hint changes. See bug 8508397.
2402
2403 // could be null when this layer is using a layerStack
2404 // that is not visible on any display. Also can occur at
2405 // screen off/on times.
2406 disp = getDefaultDisplayDeviceLocked();
2407 }
2408 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08002409 }
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002410 if (disp != nullptr) {
2411 layer->updateTransformHint(disp);
2412 }
Robert Carr2047fae2016-11-28 14:09:09 -08002413
2414 first = false;
2415 });
Mathias Agopian84300952012-11-21 16:02:13 -08002416 }
2417
2418
Mathias Agopian3559b072012-08-15 13:46:03 -07002419 /*
2420 * Perform our own transaction if needed
2421 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002422
2423 if (mLayersAdded) {
2424 mLayersAdded = false;
2425 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002426 mVisibleRegionsDirty = true;
2427 }
2428
2429 // some layers might have been removed, so
2430 // we need to update the regions they're exposing.
2431 if (mLayersRemoved) {
2432 mLayersRemoved = false;
2433 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002434 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002435 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002436 // this layer is not visible anymore
2437 // TODO: we could traverse the tree from front to back and
2438 // compute the actual visible region
2439 // TODO: we could cache the transformed region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002440 Region visibleReg;
2441 visibleReg.set(layer->computeScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002442 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002443 }
Robert Carr2047fae2016-11-28 14:09:09 -08002444 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002445 }
2446
2447 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002448
2449 updateCursorAsync();
2450}
2451
2452void SurfaceFlinger::updateCursorAsync()
2453{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002454 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
2455 auto& displayDevice = mDisplays[displayId];
2456 if (displayDevice->getHwcDisplayId() < 0) {
Riley Andrews03414a12014-07-01 14:22:59 -07002457 continue;
2458 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002459
2460 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
2461 layer->updateCursorPosition(displayDevice);
Riley Andrews03414a12014-07-01 14:22:59 -07002462 }
2463 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002464}
2465
2466void SurfaceFlinger::commitTransaction()
2467{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002468 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002469 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002470 for (const auto& l : mLayersPendingRemoval) {
2471 recordBufferingStats(l->getName().string(),
2472 l->getOccupancyHistory(true));
2473 l->onRemoved();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002474 }
2475 mLayersPendingRemoval.clear();
2476 }
2477
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002478 // If this transaction is part of a window animation then the next frame
2479 // we composite should be considered an animation as well.
2480 mAnimCompositionPending = mAnimTransactionPending;
2481
Mathias Agopian4fec8732012-06-29 14:12:52 -07002482 mDrawingState = mCurrentState;
Robert Carr1f0a16a2016-10-24 16:27:39 -07002483 mDrawingState.traverseInZOrder([](Layer* layer) {
2484 layer->commitChildList();
2485 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002486 mTransactionPending = false;
2487 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002488 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002489}
2490
Chia-I Wuab0c3192017-08-01 11:29:00 -07002491void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002492 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002493{
Mathias Agopian841cde52012-03-01 15:44:37 -08002494 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002495 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002496
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002497 Region aboveOpaqueLayers;
2498 Region aboveCoveredLayers;
2499 Region dirty;
2500
Mathias Agopian87baae12012-07-31 12:38:26 -07002501 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002502
Robert Carr2047fae2016-11-28 14:09:09 -08002503 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002504 // start with the whole surface at its current location
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002505 const Layer::State& s(layer->getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002506
Jesse Hall01e29052013-02-19 16:13:35 -08002507 // only consider the layers on the given layer stack
Chia-I Wuab0c3192017-08-01 11:29:00 -07002508 if (!layer->belongsToDisplay(displayDevice->getLayerStack(), displayDevice->isPrimary()))
Robert Carr2047fae2016-11-28 14:09:09 -08002509 return;
Mathias Agopian87baae12012-07-31 12:38:26 -07002510
Mathias Agopianab028732010-03-16 16:41:46 -07002511 /*
2512 * opaqueRegion: area of a surface that is fully opaque.
2513 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002514 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002515
2516 /*
2517 * visibleRegion: area of a surface that is visible on screen
2518 * and not fully transparent. This is essentially the layer's
2519 * footprint minus the opaque regions above it.
2520 * Areas covered by a translucent surface are considered visible.
2521 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002522 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002523
2524 /*
2525 * coveredRegion: area of a surface that is covered by all
2526 * visible regions above it (which includes the translucent areas).
2527 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002528 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002529
Jesse Halla8026d22012-09-25 13:25:04 -07002530 /*
2531 * transparentRegion: area of a surface that is hinted to be completely
2532 * transparent. This is only used to tell when the layer has no visible
2533 * non-transparent regions and can be removed from the layer list. It
2534 * does not affect the visibleRegion of this layer or any layers
2535 * beneath it. The hint may not be correct if apps don't respect the
2536 * SurfaceView restrictions (which, sadly, some don't).
2537 */
2538 Region transparentRegion;
2539
Mathias Agopianab028732010-03-16 16:41:46 -07002540
2541 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002542 if (CC_LIKELY(layer->isVisible())) {
Andy McFadden4125a4f2014-01-29 17:17:11 -08002543 const bool translucent = !layer->isOpaque(s);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002544 Rect bounds(layer->computeScreenBounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002545 visibleRegion.set(bounds);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002546 Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002547 if (!visibleRegion.isEmpty()) {
2548 // Remove the transparent area from the visible region
2549 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002550 if (tr.preserveRects()) {
2551 // transform the transparent region
2552 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002553 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002554 // transformation too complex, can't do the
2555 // transparent region optimization.
2556 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002557 }
Mathias Agopianab028732010-03-16 16:41:46 -07002558 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002559
Mathias Agopianab028732010-03-16 16:41:46 -07002560 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002561 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02002562 if (layer->getAlpha() == 1.0f && !translucent &&
Mathias Agopianab028732010-03-16 16:41:46 -07002563 ((layerOrientation & Transform::ROT_INVALID) == false)) {
2564 // the opaque region is the layer's footprint
2565 opaqueRegion = visibleRegion;
2566 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002567 }
2568 }
2569
Robert Carre5f4f692018-01-12 13:12:28 -08002570 if (visibleRegion.isEmpty()) {
2571 layer->clearVisibilityRegions();
2572 return;
2573 }
2574
Mathias Agopianab028732010-03-16 16:41:46 -07002575 // Clip the covered region to the visible region
2576 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
2577
2578 // Update aboveCoveredLayers for next (lower) layer
2579 aboveCoveredLayers.orSelf(visibleRegion);
2580
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002581 // subtract the opaque region covered by the layers above us
2582 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002583
2584 // compute this layer's dirty region
2585 if (layer->contentDirty) {
2586 // we need to invalidate the whole region
2587 dirty = visibleRegion;
2588 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07002589 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002590 layer->contentDirty = false;
2591 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002592 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07002593 * the exposed region consists of two components:
2594 * 1) what's VISIBLE now and was COVERED before
2595 * 2) what's EXPOSED now less what was EXPOSED before
2596 *
2597 * note that (1) is conservative, we start with the whole
2598 * visible region but only keep what used to be covered by
2599 * something -- which mean it may have been exposed.
2600 *
2601 * (2) handles areas that were not covered by anything but got
2602 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002603 */
Mathias Agopianab028732010-03-16 16:41:46 -07002604 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002605 const Region oldVisibleRegion = layer->visibleRegion;
2606 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002607 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
2608 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002609 }
2610 dirty.subtractSelf(aboveOpaqueLayers);
2611
2612 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07002613 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002614
Mathias Agopianab028732010-03-16 16:41:46 -07002615 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002616 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07002617
Jesse Halla8026d22012-09-25 13:25:04 -07002618 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002619 layer->setVisibleRegion(visibleRegion);
2620 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07002621 layer->setVisibleNonTransparentRegion(
2622 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08002623 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002624
Mathias Agopian87baae12012-07-31 12:38:26 -07002625 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002626}
2627
Chia-I Wuab0c3192017-08-01 11:29:00 -07002628void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07002629 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07002630 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002631 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Mathias Agopian42977342012-08-05 00:40:46 -07002632 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07002633 }
2634 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002635}
2636
Dan Stoza6b9454d2014-11-07 16:00:59 -08002637bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002638{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002639 ALOGV("handlePageFlip");
2640
Brian Andersond6927fb2016-07-23 23:37:30 -07002641 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002642
Mathias Agopian4fec8732012-06-29 14:12:52 -07002643 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002644 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06002645 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07002646
2647 // Store the set of layers that need updates. This set must not change as
2648 // buffers are being latched, as this could result in a deadlock.
2649 // Example: Two producers share the same command stream and:
2650 // 1.) Layer 0 is latched
2651 // 2.) Layer 0 gets a new frame
2652 // 2.) Layer 1 gets a new frame
2653 // 3.) Layer 1 is latched.
2654 // Display is now waiting on Layer 1's frame, which is behind layer 0's
2655 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08002656 mDrawingState.traverseInZOrder([&](Layer* layer) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002657 if (layer->hasQueuedFrame()) {
2658 frameQueued = true;
2659 if (layer->shouldPresentNow(mPrimaryDispSync)) {
Robert Carr2047fae2016-11-28 14:09:09 -08002660 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07002661 } else {
2662 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002663 }
Dan Stozaee44edd2015-03-23 15:50:23 -07002664 } else {
2665 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002666 }
Robert Carr2047fae2016-11-28 14:09:09 -08002667 });
2668
Dan Stoza9e56aa02015-11-02 13:00:03 -08002669 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersond6927fb2016-07-23 23:37:30 -07002670 const Region dirty(layer->latchBuffer(visibleRegions, latchTime));
Dan Stozaee44edd2015-03-23 15:50:23 -07002671 layer->useSurfaceDamage();
Chia-I Wuab0c3192017-08-01 11:29:00 -07002672 invalidateLayerStack(layer, dirty);
Chia-I Wua36bf922017-06-30 12:51:05 -07002673 if (layer->isBufferLatched()) {
Mike Stroyan0cd76192017-04-20 12:10:48 -06002674 newDataLatched = true;
2675 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002676 }
Mathias Agopian4da75192010-08-10 17:19:56 -07002677
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002678 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002679
2680 // If we will need to wake up at some time in the future to deal with a
2681 // queued frame that shouldn't be displayed during this vsync period, wake
2682 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07002683 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002684 signalLayerUpdate();
2685 }
2686
2687 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06002688 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002689}
2690
Mathias Agopianad456f92011-01-13 17:53:01 -08002691void SurfaceFlinger::invalidateHwcGeometry()
2692{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002693 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08002694}
2695
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002696
Fabien Sanglard830b8472016-11-30 16:35:58 -08002697void SurfaceFlinger::doDisplayComposition(
2698 const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002699 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002700{
Dan Stoza71433162014-02-04 16:22:36 -08002701 // We only need to actually compose the display if:
2702 // 1) It is being handled by hardware composer, which may need this to
2703 // keep its virtual display state machine in sync, or
2704 // 2) There is work to be done (the dirty region isn't empty)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002705 bool isHwcDisplay = displayDevice->getHwcDisplayId() >= 0;
Dan Stoza71433162014-02-04 16:22:36 -08002706 if (!isHwcDisplay && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002707 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08002708 return;
2709 }
2710
Dan Stoza9e56aa02015-11-02 13:00:03 -08002711 ALOGV("doDisplayComposition");
Chia-I Wub02087d2017-11-09 10:19:54 -08002712 if (!doComposeSurfaces(displayDevice)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07002713
2714 // swap buffers (presentation)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002715 displayDevice->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002716}
2717
Chia-I Wub02087d2017-11-09 10:19:54 -08002718bool SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& displayDevice)
Mathias Agopianf384cc32011-09-08 18:31:55 -07002719{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002720 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07002721
Chia-I Wub02087d2017-11-09 10:19:54 -08002722 const Region bounds(displayDevice->bounds());
chaviwa76b2712017-09-20 12:02:26 -07002723 const DisplayRenderArea renderArea(displayDevice);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002724 const auto hwcId = displayDevice->getHwcDisplayId();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002725
2726 mat4 oldColorMatrix;
David Sodman105b7dc2017-11-04 20:28:14 -07002727 const bool applyColorMatrix = !getBE().mHwc->hasDeviceComposition(hwcId) &&
2728 !getBE().mHwc->hasCapability(HWC2::Capability::SkipClientColorTransform);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002729 if (applyColorMatrix) {
2730 mat4 colorMatrix = mColorMatrix * mDaltonizer();
2731 oldColorMatrix = getRenderEngine().setupColorTransform(colorMatrix);
2732 }
2733
David Sodman105b7dc2017-11-04 20:28:14 -07002734 bool hasClientComposition = getBE().mHwc->hasClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002735 if (hasClientComposition) {
2736 ALOGV("hasClientComposition");
2737
David Sodmanbc815282017-11-05 18:57:52 -08002738 getBE().mRenderEngine->setWideColor(
Romain Guy54f154a2017-10-24 21:40:32 +01002739 displayDevice->getWideColorSupport() && !mForceNativeColorMode);
David Sodmanbc815282017-11-05 18:57:52 -08002740 getBE().mRenderEngine->setColorMode(mForceNativeColorMode ?
Romain Guy54f154a2017-10-24 21:40:32 +01002741 HAL_COLOR_MODE_NATIVE : displayDevice->getActiveColorMode());
Chia-I Wu7f402902017-11-09 12:51:10 -08002742 if (!displayDevice->makeCurrent()) {
Michael Chockc8c71092013-03-04 15:15:46 -08002743 ALOGW("DisplayDevice::makeCurrent failed. Aborting surface composition for display %s",
Dan Stoza9e56aa02015-11-02 13:00:03 -08002744 displayDevice->getDisplayName().string());
Chia-I Wu7f402902017-11-09 12:51:10 -08002745 getRenderEngine().resetCurrentSurface();
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002746
2747 // |mStateLock| not needed as we are on the main thread
Chia-I Wu7f402902017-11-09 12:51:10 -08002748 if(!getDefaultDisplayDeviceLocked()->makeCurrent()) {
Michael Lentine3f121fc2014-10-01 11:17:28 -07002749 ALOGE("DisplayDevice::makeCurrent on default display failed. Aborting.");
2750 }
2751 return false;
Michael Chockc8c71092013-03-04 15:15:46 -08002752 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002753
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002754 // Never touch the framebuffer if we don't have any framebuffer layers
David Sodman105b7dc2017-11-04 20:28:14 -07002755 const bool hasDeviceComposition = getBE().mHwc->hasDeviceComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002756 if (hasDeviceComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002757 // when using overlays, we assume a fully transparent framebuffer
2758 // NOTE: we could reduce how much we need to clear, for instance
2759 // remove where there are opaque FB layers. however, on some
Mathias Agopian3f844832013-08-07 21:24:32 -07002760 // GPUs doing a "clean slate" clear might be more efficient.
Mathias Agopianb9494d52012-04-18 02:28:45 -07002761 // We'll revisit later if needed.
David Sodmanbc815282017-11-05 18:57:52 -08002762 getBE().mRenderEngine->clearWithColor(0, 0, 0, 0);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002763 } else {
Chia-I Wub02087d2017-11-09 10:19:54 -08002764 // we start with the whole screen area and remove the scissor part
Mathias Agopian766dc492012-10-30 18:08:06 -07002765 // we're left with the letterbox region
2766 // (common case is that letterbox ends-up being empty)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002767 const Region letterbox(bounds.subtract(displayDevice->getScissor()));
Mathias Agopian766dc492012-10-30 18:08:06 -07002768
2769 // compute the area to clear
Dan Stoza9e56aa02015-11-02 13:00:03 -08002770 Region region(displayDevice->undefinedRegion.merge(letterbox));
Mathias Agopian766dc492012-10-30 18:08:06 -07002771
Mathias Agopianb9494d52012-04-18 02:28:45 -07002772 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07002773 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002774 // can happen with SurfaceView
Dan Stoza9e56aa02015-11-02 13:00:03 -08002775 drawWormhole(displayDevice, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002776 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07002777 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002778
Dan Stoza9e56aa02015-11-02 13:00:03 -08002779 if (displayDevice->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
Mathias Agopian766dc492012-10-30 18:08:06 -07002780 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07002781 // scissor on the main display. It should never be needed
2782 // anyways (though in theory it could since the API allows it).
Dan Stoza9e56aa02015-11-02 13:00:03 -08002783 const Rect& bounds(displayDevice->getBounds());
2784 const Rect& scissor(displayDevice->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002785 if (scissor != bounds) {
2786 // scissor doesn't match the screen's dimensions, so we
2787 // need to clear everything outside of it and enable
2788 // the GL scissor so we don't draw anything where we shouldn't
Mathias Agopian3f844832013-08-07 21:24:32 -07002789
Mathias Agopianf45c5102012-10-24 16:29:17 -07002790 // enable scissor for this frame
Dan Stoza9e56aa02015-11-02 13:00:03 -08002791 const uint32_t height = displayDevice->getHeight();
David Sodmanbc815282017-11-05 18:57:52 -08002792 getBE().mRenderEngine->setScissor(scissor.left, height - scissor.bottom,
Mathias Agopian3f844832013-08-07 21:24:32 -07002793 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002794 }
2795 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002796 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002797
Mathias Agopian85d751c2012-08-29 16:59:24 -07002798 /*
2799 * and then, render the layers targeted at the framebuffer
2800 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002801
Dan Stoza9e56aa02015-11-02 13:00:03 -08002802 ALOGV("Rendering client layers");
2803 const Transform& displayTransform = displayDevice->getTransform();
2804 if (hwcId >= 0) {
Mathias Agopian85d751c2012-08-29 16:59:24 -07002805 // we're using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002806 bool firstLayer = true;
2807 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002808 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002809 displayTransform.transform(layer->visibleRegion)));
2810 ALOGV("Layer: %s", layer->getName().string());
2811 ALOGV(" Composition type: %s",
2812 to_string(layer->getCompositionType(hwcId)).c_str());
Mathias Agopian85d751c2012-08-29 16:59:24 -07002813 if (!clip.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002814 switch (layer->getCompositionType(hwcId)) {
2815 case HWC2::Composition::Cursor:
2816 case HWC2::Composition::Device:
Gray Huang267ab792017-01-11 13:41:09 +08002817 case HWC2::Composition::Sideband:
Dan Stoza9e56aa02015-11-02 13:00:03 -08002818 case HWC2::Composition::SolidColor: {
Mathias Agopianac683022013-10-01 15:36:52 -07002819 const Layer::State& state(layer->getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -08002820 if (layer->getClearClientTarget(hwcId) && !firstLayer &&
chaviw13fdc492017-06-27 12:40:18 -07002821 layer->isOpaque(state) && (state.color.a == 1.0f)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002822 && hasClientComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002823 // never clear the very first layer since we're
2824 // guaranteed the FB is already cleared
chaviwa76b2712017-09-20 12:02:26 -07002825 layer->clearWithOpenGL(renderArea);
Mathias Agopiancd60f992012-08-16 16:28:27 -07002826 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002827 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002828 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002829 case HWC2::Composition::Client: {
chaviwa76b2712017-09-20 12:02:26 -07002830 layer->draw(renderArea, clip);
Mathias Agopian85d751c2012-08-29 16:59:24 -07002831 break;
2832 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002833 default:
Mathias Agopianda27af92012-09-13 18:17:13 -07002834 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002835 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002836 } else {
2837 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07002838 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002839 firstLayer = false;
Mathias Agopian85d751c2012-08-29 16:59:24 -07002840 }
2841 } else {
2842 // we're not using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002843 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002844 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002845 displayTransform.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07002846 if (!clip.isEmpty()) {
chaviwa76b2712017-09-20 12:02:26 -07002847 layer->draw(renderArea, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07002848 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002849 }
2850 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002851
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002852 if (applyColorMatrix) {
2853 getRenderEngine().setupColorTransform(oldColorMatrix);
2854 }
2855
Mathias Agopianf45c5102012-10-24 16:29:17 -07002856 // disable scissor at the end of the frame
David Sodmanbc815282017-11-05 18:57:52 -08002857 getBE().mRenderEngine->disableScissor();
Michael Lentine3f121fc2014-10-01 11:17:28 -07002858 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002859}
2860
Fabien Sanglard830b8472016-11-30 16:35:58 -08002861void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& displayDevice, const Region& region) const {
2862 const int32_t height = displayDevice->getHeight();
Lloyd Pique144e1162017-12-20 16:44:52 -08002863 auto& engine(getRenderEngine());
Mathias Agopian3f844832013-08-07 21:24:32 -07002864 engine.fillRegionWithColor(region, height, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002865}
2866
Dan Stoza7d89d062015-04-30 13:29:25 -07002867status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08002868 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07002869 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07002870 const sp<Layer>& lbc,
2871 const sp<Layer>& parent)
Mathias Agopian96f08192010-06-02 23:28:45 -07002872{
Dan Stoza7d89d062015-04-30 13:29:25 -07002873 // add this layer to the current state list
2874 {
2875 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002876 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06002877 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
2878 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07002879 return NO_MEMORY;
2880 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002881 if (parent == nullptr) {
2882 mCurrentState.layersSortedByZ.add(lbc);
2883 } else {
Robert Carrebd62af2017-11-28 08:49:59 -08002884 if (parent->isPendingRemoval()) {
Chia-I Wu98f1c102017-05-30 14:54:08 -07002885 ALOGE("addClientLayer called with a removed parent");
2886 return NAME_NOT_FOUND;
2887 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002888 parent->addChild(lbc);
2889 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07002890
Dan Stoza7d89d062015-04-30 13:29:25 -07002891 mGraphicBufferProducerList.add(IInterface::asBinder(gbc));
Robert Carr1f0a16a2016-10-24 16:27:39 -07002892 mLayersAdded = true;
2893 mNumLayers++;
Dan Stoza7d89d062015-04-30 13:29:25 -07002894 }
2895
Mathias Agopian96f08192010-06-02 23:28:45 -07002896 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08002897 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07002898
Dan Stoza7d89d062015-04-30 13:29:25 -07002899 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07002900}
2901
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002902status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer, bool topLevelOnly) {
Robert Carr7f9b8992017-03-10 11:08:39 -08002903 Mutex::Autolock _l(mStateLock);
chaviwca27f252018-02-06 16:46:39 -08002904 return removeLayerLocked(mStateLock, layer, topLevelOnly);
2905}
Robert Carr7f9b8992017-03-10 11:08:39 -08002906
chaviwca27f252018-02-06 16:46:39 -08002907status_t SurfaceFlinger::removeLayerLocked(const Mutex&, const sp<Layer>& layer,
2908 bool topLevelOnly) {
chaviw8b3871a2017-11-01 17:41:01 -07002909 if (layer->isPendingRemoval()) {
2910 return NO_ERROR;
2911 }
2912
Robert Carr1f0a16a2016-10-24 16:27:39 -07002913 const auto& p = layer->getParent();
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002914 ssize_t index;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002915 if (p != nullptr) {
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002916 if (topLevelOnly) {
2917 return NO_ERROR;
2918 }
2919
Chia-I Wu98f1c102017-05-30 14:54:08 -07002920 sp<Layer> ancestor = p;
2921 while (ancestor->getParent() != nullptr) {
2922 ancestor = ancestor->getParent();
2923 }
2924 if (mCurrentState.layersSortedByZ.indexOf(ancestor) < 0) {
2925 ALOGE("removeLayer called with a layer whose parent has been removed");
2926 return NAME_NOT_FOUND;
2927 }
Chia-I Wufae51c42017-06-15 12:53:59 -07002928
2929 index = p->removeChild(layer);
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002930 } else {
2931 index = mCurrentState.layersSortedByZ.remove(layer);
Chia-I Wu98f1c102017-05-30 14:54:08 -07002932 }
2933
Robert Carr136e2f62017-02-08 17:54:29 -08002934 // As a matter of normal operation, the LayerCleaner will produce a second
2935 // attempt to remove the surface. The Layer will be kept alive in mDrawingState
2936 // so we will succeed in promoting it, but it's already been removed
2937 // from mCurrentState. As long as we can find it in mDrawingState we have no problem
2938 // otherwise something has gone wrong and we are leaking the layer.
2939 if (index < 0 && mDrawingState.layersSortedByZ.indexOf(layer) < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002940 ALOGE("Failed to find layer (%s) in layer parent (%s).",
2941 layer->getName().string(),
2942 (p != nullptr) ? p->getName().string() : "no-parent");
2943 return BAD_VALUE;
Robert Carr136e2f62017-02-08 17:54:29 -08002944 } else if (index < 0) {
2945 return NO_ERROR;
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002946 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002947
Chia-I Wuc6657022017-08-15 11:18:17 -07002948 layer->onRemovedFromCurrentState();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002949 mLayersPendingRemoval.add(layer);
2950 mLayersRemoved = true;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002951 mNumLayers -= 1 + layer->getChildrenCount();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002952 setTransactionFlags(eTransactionNeeded);
2953 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002954}
2955
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08002956uint32_t SurfaceFlinger::peekTransactionFlags() {
Mathias Agopiandea20b12011-05-03 17:04:02 -07002957 return android_atomic_release_load(&mTransactionFlags);
2958}
2959
Mathias Agopian3f844832013-08-07 21:24:32 -07002960uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002961 return android_atomic_and(~flags, &mTransactionFlags) & flags;
2962}
2963
Mathias Agopian3f844832013-08-07 21:24:32 -07002964uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002965 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
2966 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002967 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002968 }
2969 return old;
2970}
2971
chaviwca27f252018-02-06 16:46:39 -08002972bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
2973 for (const ComposerState& state : states) {
2974 // Here we need to check that the interface we're given is indeed
2975 // one of our own. A malicious client could give us a nullptr
2976 // IInterface, or one of its own or even one of our own but a
2977 // different type. All these situations would cause us to crash.
2978 if (state.client == nullptr) {
2979 return true;
2980 }
2981
2982 sp<IBinder> binder = IInterface::asBinder(state.client);
2983 if (binder == nullptr) {
2984 return true;
2985 }
2986
2987 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
2988 return true;
2989 }
2990 }
2991 return false;
2992}
2993
Mathias Agopian8b33f032012-07-24 20:43:54 -07002994void SurfaceFlinger::setTransactionState(
chaviwca27f252018-02-06 16:46:39 -08002995 const Vector<ComposerState>& states,
Mathias Agopian8b33f032012-07-24 20:43:54 -07002996 const Vector<DisplayState>& displays,
2997 uint32_t flags)
2998{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07002999 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07003000 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07003001 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003002
chaviwca27f252018-02-06 16:46:39 -08003003 if (containsAnyInvalidClientState(states)) {
3004 return;
3005 }
3006
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003007 if (flags & eAnimation) {
3008 // For window updates that are part of an animation we must wait for
3009 // previous animation "frames" to be handled.
3010 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003011 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003012 if (CC_UNLIKELY(err != NO_ERROR)) {
3013 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003014 // caller after a few seconds.
3015 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3016 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003017 mAnimTransactionPending = false;
3018 break;
3019 }
3020 }
3021 }
3022
chaviwca27f252018-02-06 16:46:39 -08003023 for (const DisplayState& display : displays) {
3024 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003025 }
3026
chaviwca27f252018-02-06 16:46:39 -08003027 for (const ComposerState& state : states) {
3028 transactionFlags |= setClientStateLocked(state);
3029 }
3030
3031 // Iterate through all layers again to determine if any need to be destroyed. Marking layers
3032 // as destroyed should only occur after setting all other states. This is to allow for a
3033 // child re-parent to happen before marking its original parent as destroyed (which would
3034 // then mark the child as destroyed).
3035 for (const ComposerState& state : states) {
3036 setDestroyStateLocked(state);
Mathias Agopian698c0872011-06-28 19:09:31 -07003037 }
Mathias Agopian698c0872011-06-28 19:09:31 -07003038
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003039 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3040 // anyway. This can be used as a flush mechanism for previous async transactions.
3041 // Empty animation transaction can be used to simulate back-pressure, so also force a
3042 // transaction for empty animation transactions.
3043 if (transactionFlags == 0 &&
3044 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003045 transactionFlags = eTransactionNeeded;
3046 }
3047
Mathias Agopian386aa982011-11-07 21:58:03 -08003048 if (transactionFlags) {
Irvelffc9efc2016-07-27 15:16:37 -07003049 if (mInterceptor.isEnabled()) {
chaviwca27f252018-02-06 16:46:39 -08003050 mInterceptor.saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003051 }
Irvel468051e2016-06-13 16:44:44 -07003052
Mathias Agopian386aa982011-11-07 21:58:03 -08003053 // this triggers the transaction
3054 setTransactionFlags(transactionFlags);
3055
3056 // if this is a synchronous transaction, wait for it to take effect
3057 // before returning.
3058 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003059 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003060 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003061 if (flags & eAnimation) {
3062 mAnimTransactionPending = true;
3063 }
3064 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003065 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3066 if (CC_UNLIKELY(err != NO_ERROR)) {
3067 // just in case something goes wrong in SF, return to the
3068 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003069 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3070 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003071 break;
3072 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003073 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003074 }
3075}
3076
Mathias Agopiane57f2922012-08-09 16:29:12 -07003077uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
3078{
Jesse Hall9a143922012-10-04 16:29:19 -07003079 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
3080 if (dpyIdx < 0)
3081 return 0;
3082
Mathias Agopiane57f2922012-08-09 16:29:12 -07003083 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003084 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003085 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003086 const uint32_t what = s.what;
3087 if (what & DisplayState::eSurfaceChanged) {
Marco Nelissen097ca272014-11-14 08:01:01 -08003088 if (IInterface::asBinder(disp.surface) != IInterface::asBinder(s.surface)) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003089 disp.surface = s.surface;
3090 flags |= eDisplayTransactionNeeded;
3091 }
3092 }
3093 if (what & DisplayState::eLayerStackChanged) {
3094 if (disp.layerStack != s.layerStack) {
3095 disp.layerStack = s.layerStack;
3096 flags |= eDisplayTransactionNeeded;
3097 }
3098 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07003099 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003100 if (disp.orientation != s.orientation) {
3101 disp.orientation = s.orientation;
3102 flags |= eDisplayTransactionNeeded;
3103 }
3104 if (disp.frame != s.frame) {
3105 disp.frame = s.frame;
3106 flags |= eDisplayTransactionNeeded;
3107 }
3108 if (disp.viewport != s.viewport) {
3109 disp.viewport = s.viewport;
3110 flags |= eDisplayTransactionNeeded;
3111 }
3112 }
Michael Lentine47e45402014-07-18 15:34:25 -07003113 if (what & DisplayState::eDisplaySizeChanged) {
3114 if (disp.width != s.width) {
3115 disp.width = s.width;
3116 flags |= eDisplayTransactionNeeded;
3117 }
3118 if (disp.height != s.height) {
3119 disp.height = s.height;
3120 flags |= eDisplayTransactionNeeded;
3121 }
3122 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003123 }
3124 return flags;
3125}
3126
chaviwca27f252018-02-06 16:46:39 -08003127uint32_t SurfaceFlinger::setClientStateLocked(const ComposerState& composerState) {
3128 const layer_state_t& s = composerState.state;
3129 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3130
Mathias Agopian13127d82013-03-05 17:47:11 -08003131 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003132 if (layer == nullptr) {
3133 return 0;
3134 }
3135
3136 if (layer->isPendingRemoval()) {
3137 ALOGW("Attempting to set client state on removed layer: %s", layer->getName().string());
3138 return 0;
3139 }
3140
3141 uint32_t flags = 0;
3142
3143 const uint32_t what = s.what;
3144 bool geometryAppliesWithResize =
3145 what & layer_state_t::eGeometryAppliesWithResize;
3146 if (what & layer_state_t::ePositionChanged) {
3147 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3148 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003149 }
chaviw8b3871a2017-11-01 17:41:01 -07003150 }
3151 if (what & layer_state_t::eLayerChanged) {
3152 // NOTE: index needs to be calculated before we update the state
3153 const auto& p = layer->getParent();
3154 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003155 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003156 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003157 mCurrentState.layersSortedByZ.removeAt(idx);
3158 mCurrentState.layersSortedByZ.add(layer);
3159 // we need traversal (state changed)
3160 // AND transaction (list changed)
3161 flags |= eTransactionNeeded|eTraversalNeeded;
3162 }
chaviw8b3871a2017-11-01 17:41:01 -07003163 } else {
3164 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003165 flags |= eTransactionNeeded|eTraversalNeeded;
3166 }
3167 }
chaviw8b3871a2017-11-01 17:41:01 -07003168 }
3169 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003170 // NOTE: index needs to be calculated before we update the state
3171 const auto& p = layer->getParent();
3172 if (p == nullptr) {
3173 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3174 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3175 mCurrentState.layersSortedByZ.removeAt(idx);
3176 mCurrentState.layersSortedByZ.add(layer);
3177 // we need traversal (state changed)
3178 // AND transaction (list changed)
3179 flags |= eTransactionNeeded|eTraversalNeeded;
3180 }
3181 } else {
3182 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3183 flags |= eTransactionNeeded|eTraversalNeeded;
3184 }
chaviw8b3871a2017-11-01 17:41:01 -07003185 }
3186 }
3187 if (what & layer_state_t::eSizeChanged) {
3188 if (layer->setSize(s.w, s.h)) {
3189 flags |= eTraversalNeeded;
3190 }
3191 }
3192 if (what & layer_state_t::eAlphaChanged) {
3193 if (layer->setAlpha(s.alpha))
3194 flags |= eTraversalNeeded;
3195 }
3196 if (what & layer_state_t::eColorChanged) {
3197 if (layer->setColor(s.color))
3198 flags |= eTraversalNeeded;
3199 }
3200 if (what & layer_state_t::eMatrixChanged) {
3201 if (layer->setMatrix(s.matrix))
3202 flags |= eTraversalNeeded;
3203 }
3204 if (what & layer_state_t::eTransparentRegionChanged) {
3205 if (layer->setTransparentRegionHint(s.transparentRegion))
3206 flags |= eTraversalNeeded;
3207 }
3208 if (what & layer_state_t::eFlagsChanged) {
3209 if (layer->setFlags(s.flags, s.mask))
3210 flags |= eTraversalNeeded;
3211 }
3212 if (what & layer_state_t::eCropChanged) {
3213 if (layer->setCrop(s.crop, !geometryAppliesWithResize))
3214 flags |= eTraversalNeeded;
3215 }
3216 if (what & layer_state_t::eFinalCropChanged) {
3217 if (layer->setFinalCrop(s.finalCrop, !geometryAppliesWithResize))
3218 flags |= eTraversalNeeded;
3219 }
3220 if (what & layer_state_t::eLayerStackChanged) {
3221 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3222 // We only allow setting layer stacks for top level layers,
3223 // everything else inherits layer stack from its parent.
3224 if (layer->hasParent()) {
3225 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3226 layer->getName().string());
3227 } else if (idx < 0) {
3228 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3229 "that also does not appear in the top level layer list. Something"
3230 " has gone wrong.", layer->getName().string());
3231 } else if (layer->setLayerStack(s.layerStack)) {
3232 mCurrentState.layersSortedByZ.removeAt(idx);
3233 mCurrentState.layersSortedByZ.add(layer);
3234 // we need traversal (state changed)
3235 // AND transaction (list changed)
3236 flags |= eTransactionNeeded|eTraversalNeeded;
3237 }
3238 }
3239 if (what & layer_state_t::eDeferTransaction) {
3240 if (s.barrierHandle != nullptr) {
3241 layer->deferTransactionUntil(s.barrierHandle, s.frameNumber);
3242 } else if (s.barrierGbp != nullptr) {
3243 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp;
3244 if (authenticateSurfaceTextureLocked(gbp)) {
3245 const auto& otherLayer =
3246 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
3247 layer->deferTransactionUntil(otherLayer, s.frameNumber);
3248 } else {
3249 ALOGE("Attempt to defer transaction to to an"
3250 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003251 }
3252 }
chaviw8b3871a2017-11-01 17:41:01 -07003253 // We don't trigger a traversal here because if no other state is
3254 // changed, we don't want this to cause any more work
3255 }
3256 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003257 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003258 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003259 if (!hadParent) {
3260 mCurrentState.layersSortedByZ.remove(layer);
3261 }
chaviw8b3871a2017-11-01 17:41:01 -07003262 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003263 }
chaviw8b3871a2017-11-01 17:41:01 -07003264 }
3265 if (what & layer_state_t::eReparentChildren) {
3266 if (layer->reparentChildren(s.reparentHandle)) {
3267 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003268 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003269 }
chaviw8b3871a2017-11-01 17:41:01 -07003270 if (what & layer_state_t::eDetachChildren) {
3271 layer->detachChildren();
3272 }
3273 if (what & layer_state_t::eOverrideScalingModeChanged) {
3274 layer->setOverrideScalingMode(s.overrideScalingMode);
3275 // We don't trigger a traversal here because if no other state is
3276 // changed, we don't want this to cause any more work
3277 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003278 return flags;
3279}
3280
chaviwca27f252018-02-06 16:46:39 -08003281void SurfaceFlinger::setDestroyStateLocked(const ComposerState& composerState) {
3282 const layer_state_t& state = composerState.state;
3283 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3284
3285 sp<Layer> layer(client->getLayerUser(state.surface));
3286 if (layer == nullptr) {
3287 return;
3288 }
3289
3290 if (layer->isPendingRemoval()) {
3291 ALOGW("Attempting to destroy on removed layer: %s", layer->getName().string());
3292 return;
3293 }
3294
3295 if (state.what & layer_state_t::eDestroySurface) {
3296 removeLayerLocked(mStateLock, layer);
3297 }
3298}
3299
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003300status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07003301 const String8& name,
3302 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003303 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
Albert Chaulk479c60c2017-01-27 14:21:34 -05003304 uint32_t windowType, uint32_t ownerUid, sp<IBinder>* handle,
3305 sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003306{
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003307 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003308 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003309 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003310 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003311 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003312
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003313 status_t result = NO_ERROR;
3314
3315 sp<Layer> layer;
3316
Cody Northropbc755282017-03-31 12:00:08 -06003317 String8 uniqueName = getUniqueLayerName(name);
3318
Mathias Agopian3165cc22012-08-08 19:42:09 -07003319 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
3320 case ISurfaceComposerClient::eFXSurfaceNormal:
David Sodman0c69cad2017-08-21 12:12:51 -07003321 result = createBufferLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003322 uniqueName, w, h, flags, format,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003323 handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07003324
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003325 break;
chaviw13fdc492017-06-27 12:40:18 -07003326 case ISurfaceComposerClient::eFXSurfaceColor:
3327 result = createColorLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003328 uniqueName, w, h, flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003329 handle, &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003330 break;
3331 default:
3332 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003333 break;
3334 }
3335
Dan Stoza7d89d062015-04-30 13:29:25 -07003336 if (result != NO_ERROR) {
3337 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003338 }
Dan Stoza7d89d062015-04-30 13:29:25 -07003339
Chia-I Wuab0c3192017-08-01 11:29:00 -07003340 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
3341 // TODO b/64227542
3342 if (windowType == 441731) {
3343 windowType = 2024; // TYPE_NAVIGATION_BAR_PANEL
3344 layer->setPrimaryDisplayOnly();
3345 }
3346
Albert Chaulk479c60c2017-01-27 14:21:34 -05003347 layer->setInfo(windowType, ownerUid);
3348
Robert Carr1f0a16a2016-10-24 16:27:39 -07003349 result = addClientLayer(client, *handle, *gbp, layer, *parent);
Dan Stoza7d89d062015-04-30 13:29:25 -07003350 if (result != NO_ERROR) {
3351 return result;
3352 }
Irvelffc9efc2016-07-27 15:16:37 -07003353 mInterceptor.saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07003354
3355 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003356 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003357}
3358
Cody Northropbc755282017-03-31 12:00:08 -06003359String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
3360{
3361 bool matchFound = true;
3362 uint32_t dupeCounter = 0;
3363
3364 // Tack on our counter whether there is a hit or not, so everyone gets a tag
3365 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
3366
3367 // Loop over layers until we're sure there is no matching name
3368 while (matchFound) {
3369 matchFound = false;
3370 mDrawingState.traverseInZOrder([&](Layer* layer) {
3371 if (layer->getName() == uniqueName) {
3372 matchFound = true;
3373 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
3374 }
3375 });
3376 }
3377
3378 ALOGD_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(), uniqueName.c_str());
3379
3380 return uniqueName;
3381}
3382
David Sodman0c69cad2017-08-21 12:12:51 -07003383status_t SurfaceFlinger::createBufferLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003384 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
3385 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003386{
3387 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07003388 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003389 case PIXEL_FORMAT_TRANSPARENT:
3390 case PIXEL_FORMAT_TRANSLUCENT:
3391 format = PIXEL_FORMAT_RGBA_8888;
3392 break;
3393 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07003394 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003395 break;
3396 }
3397
David Sodman0c69cad2017-08-21 12:12:51 -07003398 sp<BufferLayer> layer = new BufferLayer(this, client, name, w, h, flags);
3399 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003400 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07003401 *handle = layer->getHandle();
3402 *gbp = layer->getProducer();
3403 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003404 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003405
David Sodman0c69cad2017-08-21 12:12:51 -07003406 ALOGE_IF(err, "createBufferLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003407 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003408}
3409
chaviw13fdc492017-06-27 12:40:18 -07003410status_t SurfaceFlinger::createColorLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003411 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003412 sp<IBinder>* handle, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003413{
chaviw13fdc492017-06-27 12:40:18 -07003414 *outLayer = new ColorLayer(this, client, name, w, h, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003415 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003416 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07003417}
3418
Mathias Agopianac9fa422013-02-11 16:40:36 -08003419status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003420{
Robert Carr9524cb32017-02-13 11:32:32 -08003421 // called by a client when it wants to remove a Layer
Mathias Agopian67106042013-03-14 19:18:13 -07003422 status_t err = NO_ERROR;
3423 sp<Layer> l(client->getLayerUser(handle));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003424 if (l != nullptr) {
Irvelffc9efc2016-07-27 15:16:37 -07003425 mInterceptor.saveSurfaceDeletion(l);
Mathias Agopian67106042013-03-14 19:18:13 -07003426 err = removeLayer(l);
3427 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
3428 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07003429 }
3430 return err;
3431}
3432
Mathias Agopian13127d82013-03-05 17:47:11 -08003433status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07003434{
Mathias Agopian67106042013-03-14 19:18:13 -07003435 // called by ~LayerCleaner() when all references to the IBinder (handle)
3436 // are gone
Robert Carr9524cb32017-02-13 11:32:32 -08003437 sp<Layer> l = layer.promote();
3438 if (l == nullptr) {
3439 // The layer has already been removed, carry on
3440 return NO_ERROR;
Robert Carr9524cb32017-02-13 11:32:32 -08003441 }
Chia-I Wu515dc9c2017-06-15 12:53:59 -07003442 // If we have a parent, then we can continue to live as long as it does.
3443 return removeLayer(l, true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003444}
3445
Mathias Agopianb60314a2012-04-10 22:09:54 -07003446// ---------------------------------------------------------------------------
3447
Andy McFadden13a082e2012-08-24 10:16:42 -07003448void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08003449 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07003450 Vector<ComposerState> state;
3451 Vector<DisplayState> displays;
3452 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08003453 d.what = DisplayState::eDisplayProjectionChanged |
3454 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08003455 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08003456 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003457 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07003458 d.frame.makeInvalid();
3459 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07003460 d.width = 0;
3461 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003462 displays.add(d);
3463 setTransactionState(state, displays, 0);
Steven Thomasb02664d2017-07-26 18:48:28 -07003464 setPowerModeInternal(getDisplayDevice(d.token), HWC_POWER_MODE_NORMAL,
3465 /*stateLockHeld*/ false);
Jamie Gennis6547ff42013-07-16 20:12:42 -07003466
David Sodman105b7dc2017-11-04 20:28:14 -07003467 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003468 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennis6547ff42013-07-16 20:12:42 -07003469 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08003470
Brian Andersond0010582017-03-07 13:20:31 -08003471 // Use phase of 0 since phase is not known.
3472 // Use latency of 0, which will snap to the ideal latency.
3473 setCompositorTimingSnapped(0, period, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07003474}
3475
3476void SurfaceFlinger::initializeDisplays() {
3477 class MessageScreenInitialized : public MessageBase {
3478 SurfaceFlinger* flinger;
3479 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -07003480 explicit MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
Andy McFadden13a082e2012-08-24 10:16:42 -07003481 virtual bool handler() {
3482 flinger->onInitializeDisplays();
3483 return true;
3484 }
3485 };
3486 sp<MessageBase> msg = new MessageScreenInitialized(this);
3487 postMessageAsync(msg); // we may be called from main thread, use async message
3488}
3489
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003490void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& hw,
Steven Thomasb02664d2017-07-26 18:48:28 -07003491 int mode, bool stateLockHeld) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003492 ALOGD("Set power mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
3493 this);
3494 int32_t type = hw->getDisplayType();
3495 int currentMode = hw->getPowerMode();
Andy McFadden13a082e2012-08-24 10:16:42 -07003496
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003497 if (mode == currentMode) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003498 return;
3499 }
3500
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003501 hw->setPowerMode(mode);
3502 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
3503 ALOGW("Trying to set power mode for virtual display");
3504 return;
3505 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003506
Irvelffc9efc2016-07-27 15:16:37 -07003507 if (mInterceptor.isEnabled()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07003508 ConditionalLock lock(mStateLock, !stateLockHeld);
Irvelffc9efc2016-07-27 15:16:37 -07003509 ssize_t idx = mCurrentState.displays.indexOfKey(hw->getDisplayToken());
3510 if (idx < 0) {
3511 ALOGW("Surface Interceptor SavePowerMode: invalid display token");
3512 return;
3513 }
3514 mInterceptor.savePowerModeUpdate(mCurrentState.displays.valueAt(idx).displayId, mode);
3515 }
3516
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003517 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003518 // Turn on the display
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003519 getHwComposer().setPowerMode(type, mode);
Matthew Bouyack38d49612017-05-12 12:49:32 -07003520 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3521 mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003522 // FIXME: eventthread only knows about the main display right now
3523 mEventThread->onScreenAcquired();
Jesse Hall948fe0c2013-10-14 12:56:09 -07003524 resyncToHardwareVsync(true);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003525 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003526
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003527 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08003528 mHasPoweredOff = true;
Steven Thomas6d8110b2017-08-31 18:24:21 -07003529 repaintEverythingLocked();
Tim Murrayf9d4e442016-08-02 15:43:59 -07003530
3531 struct sched_param param = {0};
3532 param.sched_priority = 1;
3533 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
3534 ALOGW("Couldn't set SCHED_FIFO on display on");
3535 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003536 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003537 // Turn off the display
3538 struct sched_param param = {0};
3539 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
3540 ALOGW("Couldn't set SCHED_OTHER on display off");
3541 }
3542
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003543 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3544 currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Jesse Hall948fe0c2013-10-14 12:56:09 -07003545 disableHardwareVsync(true); // also cancels any in-progress resync
3546
Mathias Agopiancde87a32012-09-13 14:09:01 -07003547 // FIXME: eventthread only knows about the main display right now
3548 mEventThread->onScreenReleased();
3549 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003550
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003551 getHwComposer().setPowerMode(type, mode);
3552 mVisibleRegionsDirty = true;
3553 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07003554 } else if (mode == HWC_POWER_MODE_DOZE ||
3555 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003556 // Update display while dozing
3557 getHwComposer().setPowerMode(type, mode);
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003558 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3559 currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003560 // FIXME: eventthread only knows about the main display right now
3561 mEventThread->onScreenAcquired();
3562 resyncToHardwareVsync(true);
3563 }
3564 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
3565 // Leave display going to doze
3566 if (type == DisplayDevice::DISPLAY_PRIMARY) {
3567 disableHardwareVsync(true); // also cancels any in-progress resync
3568 // FIXME: eventthread only knows about the main display right now
3569 mEventThread->onScreenReleased();
3570 }
3571 getHwComposer().setPowerMode(type, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003572 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07003573 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003574 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003575 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003576}
3577
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003578void SurfaceFlinger::setPowerMode(const sp<IBinder>& display, int mode) {
3579 class MessageSetPowerMode: public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003580 SurfaceFlinger& mFlinger;
3581 sp<IBinder> mDisplay;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003582 int mMode;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003583 public:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003584 MessageSetPowerMode(SurfaceFlinger& flinger,
3585 const sp<IBinder>& disp, int mode) : mFlinger(flinger),
3586 mDisplay(disp) { mMode = mode; }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003587 virtual bool handler() {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003588 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003589 if (hw == nullptr) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003590 ALOGE("Attempt to set power mode = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -07003591 mMode, mDisplay.get());
Jesse Hall9e663de2013-08-16 14:28:37 -07003592 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003593 ALOGW("Attempt to set power mode = %d for virtual display",
3594 mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003595 } else {
Steven Thomasb02664d2017-07-26 18:48:28 -07003596 mFlinger.setPowerModeInternal(
3597 hw, mMode, /*stateLockHeld*/ false);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003598 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003599 return true;
3600 }
3601 };
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003602 sp<MessageBase> msg = new MessageSetPowerMode(*this, display, mode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003603 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07003604}
3605
3606// ---------------------------------------------------------------------------
3607
Lloyd Pique755e3192018-01-31 16:46:15 -08003608status_t SurfaceFlinger::doDump(int fd, const Vector<String16>& args, bool asProto)
3609 NO_THREAD_SAFETY_ANALYSIS {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003610 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07003611
Mathias Agopianbd115332013-04-18 16:41:04 -07003612 IPCThreadState* ipc = IPCThreadState::self();
3613 const int pid = ipc->getCallingPid();
3614 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07003615
Mathias Agopianbd115332013-04-18 16:41:04 -07003616 if ((uid != AID_SHELL) &&
3617 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003618 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07003619 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003620 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003621 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07003622 // (this would indicate SF is stuck, but we want to be able to
3623 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08003624 status_t err = mStateLock.timedLock(s2ns(1));
3625 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07003626 if (!locked) {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003627 result.appendFormat(
3628 "SurfaceFlinger appears to be unresponsive (%s [%d]), "
3629 "dumping anyways (no locks held)\n", strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07003630 }
3631
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003632 bool dumpAll = true;
3633 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003634 size_t numArgs = args.size();
chaviwa3d7bd32017-11-03 09:41:53 -07003635
3636 if (asProto) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003637 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviwa3d7bd32017-11-03 09:41:53 -07003638 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
3639 dumpAll = false;
3640 }
3641
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003642 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003643 if ((index < numArgs) &&
3644 (args[index] == String16("--list"))) {
3645 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003646 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003647 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003648 }
3649
3650 if ((index < numArgs) &&
3651 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003652 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003653 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003654 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003655 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003656
3657 if ((index < numArgs) &&
3658 (args[index] == String16("--latency-clear"))) {
3659 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003660 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003661 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003662 }
Andy McFaddenc751e922014-05-08 14:53:26 -07003663
3664 if ((index < numArgs) &&
3665 (args[index] == String16("--dispsync"))) {
3666 index++;
3667 mPrimaryDispSync.dump(result);
3668 dumpAll = false;
3669 }
Dan Stozab90cf072015-03-05 11:05:59 -08003670
3671 if ((index < numArgs) &&
3672 (args[index] == String16("--static-screen"))) {
3673 index++;
3674 dumpStaticScreenStats(result);
3675 dumpAll = false;
3676 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08003677
3678 if ((index < numArgs) &&
Brian Andersond6927fb2016-07-23 23:37:30 -07003679 (args[index] == String16("--frame-events"))) {
Pablo Ceballos40845df2016-01-25 17:41:15 -08003680 index++;
Brian Andersond6927fb2016-07-23 23:37:30 -07003681 dumpFrameEventsLocked(result);
Pablo Ceballos40845df2016-01-25 17:41:15 -08003682 dumpAll = false;
3683 }
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003684
3685 if ((index < numArgs) && (args[index] == String16("--wide-color"))) {
3686 index++;
3687 dumpWideColorInfo(result);
3688 dumpAll = false;
3689 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003690 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07003691
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003692 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003693 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08003694 }
3695
Mathias Agopian9795c422009-08-26 16:36:26 -07003696 if (locked) {
3697 mStateLock.unlock();
3698 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003699 }
3700 write(fd, result.string(), result.size());
3701 return NO_ERROR;
3702}
3703
Dan Stozac7014012014-02-14 15:03:43 -08003704void SurfaceFlinger::listLayersLocked(const Vector<String16>& /* args */,
3705 size_t& /* index */, String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003706{
Robert Carr2047fae2016-11-28 14:09:09 -08003707 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003708 result.appendFormat("%s\n", layer->getName().string());
Robert Carr2047fae2016-11-28 14:09:09 -08003709 });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003710}
3711
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003712void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02003713 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003714{
3715 String8 name;
3716 if (index < args.size()) {
3717 name = String8(args[index]);
3718 index++;
3719 }
3720
David Sodman105b7dc2017-11-04 20:28:14 -07003721 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003722 const nsecs_t period = activeConfig->getVsyncPeriod();
Greg Hackmann86efcc02014-03-07 12:44:02 -08003723 result.appendFormat("%" PRId64 "\n", period);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003724
3725 if (name.isEmpty()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003726 mAnimFrameTracker.dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003727 } else {
Robert Carr2047fae2016-11-28 14:09:09 -08003728 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003729 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003730 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003731 }
Robert Carr2047fae2016-11-28 14:09:09 -08003732 });
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003733 }
3734}
3735
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003736void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Dan Stozac7014012014-02-14 15:03:43 -08003737 String8& /* result */)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003738{
3739 String8 name;
3740 if (index < args.size()) {
3741 name = String8(args[index]);
3742 index++;
3743 }
3744
Robert Carr2047fae2016-11-28 14:09:09 -08003745 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003746 if (name.isEmpty() || (name == layer->getName())) {
Svetoslavd85084b2014-03-20 10:28:31 -07003747 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003748 }
Robert Carr2047fae2016-11-28 14:09:09 -08003749 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003750
Svetoslavd85084b2014-03-20 10:28:31 -07003751 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003752}
3753
Jamie Gennis6547ff42013-07-16 20:12:42 -07003754// This should only be called from the main thread. Otherwise it would need
3755// the lock and should use mCurrentState rather than mDrawingState.
3756void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08003757 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07003758 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08003759 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07003760
3761 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
3762}
3763
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003764void SurfaceFlinger::appendSfConfigString(String8& result) const
Andy McFadden4803b742012-09-24 19:07:20 -07003765{
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003766 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07003767
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003768 if (isLayerTripleBufferingDisabled())
3769 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003770
3771 result.appendFormat(" PRESENT_TIME_OFFSET=%" PRId64 , dispSyncPresentTimeOffset);
Fabien Sanglarda34ed632017-03-14 11:43:52 -07003772 result.appendFormat(" FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -08003773 result.appendFormat(" MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08003774 result.appendFormat(" RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
Fabien Sanglard1971b632017-03-10 14:50:03 -08003775 result.appendFormat(" NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
3776 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003777 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07003778}
3779
Dan Stozab90cf072015-03-05 11:05:59 -08003780void SurfaceFlinger::dumpStaticScreenStats(String8& result) const
3781{
3782 result.appendFormat("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08003783 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
3784 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003785 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003786 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003787 result.appendFormat(" < %zd frames: %.3f s (%.1f%%)\n",
3788 b + 1, bucketTimeSec, percent);
3789 }
David Sodman4a36e932017-11-07 14:29:47 -08003790 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003791 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003792 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003793 result.appendFormat(" %zd+ frames: %.3f s (%.1f%%)\n",
David Sodman4a36e932017-11-07 14:29:47 -08003794 SurfaceFlingerBE::NUM_BUCKETS - 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08003795}
3796
Dan Stozae77c7662016-05-13 11:37:28 -07003797void SurfaceFlinger::recordBufferingStats(const char* layerName,
3798 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08003799 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
3800 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07003801 for (const auto& segment : history) {
3802 if (!segment.usedThirdBuffer) {
3803 stats.twoBufferTime += segment.totalTime;
3804 }
3805 if (segment.occupancyAverage < 1.0f) {
3806 stats.doubleBufferedTime += segment.totalTime;
3807 } else if (segment.occupancyAverage < 2.0f) {
3808 stats.tripleBufferedTime += segment.totalTime;
3809 }
3810 ++stats.numSegments;
3811 stats.totalTime += segment.totalTime;
3812 }
3813}
3814
Brian Andersond6927fb2016-07-23 23:37:30 -07003815void SurfaceFlinger::dumpFrameEventsLocked(String8& result) {
3816 result.appendFormat("Layer frame timestamps:\n");
3817
3818 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
3819 const size_t count = currentLayers.size();
3820 for (size_t i=0 ; i<count ; i++) {
3821 currentLayers[i]->dumpFrameEvents(result);
3822 }
3823}
3824
Dan Stozae77c7662016-05-13 11:37:28 -07003825void SurfaceFlinger::dumpBufferingStats(String8& result) const {
3826 result.append("Buffering stats:\n");
3827 result.append(" [Layer name] <Active time> <Two buffer> "
3828 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08003829 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07003830 typedef std::tuple<std::string, float, float, float> BufferTuple;
3831 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08003832 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07003833 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08003834 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07003835 if (stats.numSegments == 0) {
3836 continue;
3837 }
3838 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
3839 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
3840 stats.totalTime;
3841 float doubleBufferRatio = static_cast<float>(
3842 stats.doubleBufferedTime) / stats.totalTime;
3843 float tripleBufferRatio = static_cast<float>(
3844 stats.tripleBufferedTime) / stats.totalTime;
3845 sorted.insert({activeTime, {name, twoBufferRatio,
3846 doubleBufferRatio, tripleBufferRatio}});
3847 }
3848 for (const auto& sortedPair : sorted) {
3849 float activeTime = sortedPair.first;
3850 const BufferTuple& values = sortedPair.second;
3851 result.appendFormat(" [%s] %.2f %.3f %.3f %.3f\n",
3852 std::get<0>(values).c_str(), activeTime,
3853 std::get<1>(values), std::get<2>(values),
3854 std::get<3>(values));
3855 }
3856 result.append("\n");
3857}
3858
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003859void SurfaceFlinger::dumpWideColorInfo(String8& result) const {
3860 result.appendFormat("hasWideColorDisplay: %d\n", hasWideColorDisplay);
Romain Guy54f154a2017-10-24 21:40:32 +01003861 result.appendFormat("forceNativeColorMode: %d\n", mForceNativeColorMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003862
3863 // TODO: print out if wide-color mode is active or not
3864
3865 for (size_t d = 0; d < mDisplays.size(); d++) {
3866 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
3867 int32_t hwcId = displayDevice->getHwcDisplayId();
3868 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
3869 continue;
3870 }
3871
3872 result.appendFormat("Display %d color modes:\n", hwcId);
3873 std::vector<android_color_mode_t> modes = getHwComposer().getColorModes(hwcId);
3874 for (auto&& mode : modes) {
3875 result.appendFormat(" %s (%d)\n", decodeColorMode(mode).c_str(), mode);
3876 }
3877
3878 android_color_mode_t currentMode = displayDevice->getActiveColorMode();
3879 result.appendFormat(" Current color mode: %s (%d)\n",
3880 decodeColorMode(currentMode).c_str(), currentMode);
3881 }
3882 result.append("\n");
3883}
3884
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003885LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet) const {
chaviw1d044282017-09-27 12:19:28 -07003886 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003887 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
3888 const State& state = useDrawing ? mDrawingState : mCurrentState;
3889 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07003890 LayerProto* layerProto = layersProto.add_layers();
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003891 layer->writeToProto(layerProto, stateSet);
chaviw1d044282017-09-27 12:19:28 -07003892 });
3893
3894 return layersProto;
3895}
3896
Mathias Agopian74d211a2013-04-22 16:55:35 +02003897void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
3898 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003899{
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003900 bool colorize = false;
3901 if (index < args.size()
3902 && (args[index] == String16("--color"))) {
3903 colorize = true;
3904 index++;
3905 }
3906
3907 Colorizer colorizer(colorize);
3908
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003909 // figure out if we're stuck somewhere
3910 const nsecs_t now = systemTime();
3911 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
3912 const nsecs_t inTransaction(mDebugInTransaction);
3913 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
3914 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
3915
3916 /*
Andy McFadden4803b742012-09-24 19:07:20 -07003917 * Dump library configuration.
3918 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003919
3920 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003921 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003922 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003923 appendSfConfigString(result);
3924 appendUiConfigString(result);
3925 appendGuiConfigString(result);
3926 result.append("\n");
3927
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003928 result.append("\nWide-Color information:\n");
3929 dumpWideColorInfo(result);
3930
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003931 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003932 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003933 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003934 result.append(SyncFeatures::getInstance().toString());
3935 result.append("\n");
3936
David Sodman105b7dc2017-11-04 20:28:14 -07003937 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003938
Andy McFadden41d67d72014-04-25 16:58:34 -07003939 colorizer.bold(result);
3940 result.append("DispSync configuration: ");
3941 colorizer.reset(result);
Jesse Hall24cd98e2014-07-13 14:37:16 -07003942 result.appendFormat("app phase %" PRId64 " ns, sf phase %" PRId64 " ns, "
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003943 "present offset %" PRId64 " ns (refresh %" PRId64 " ns)",
Dan Stoza9e56aa02015-11-02 13:00:03 -08003944 vsyncPhaseOffsetNs, sfVsyncPhaseOffsetNs,
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003945 dispSyncPresentTimeOffset, activeConfig->getVsyncPeriod());
Andy McFadden41d67d72014-04-25 16:58:34 -07003946 result.append("\n");
3947
Dan Stozab90cf072015-03-05 11:05:59 -08003948 // Dump static screen stats
3949 result.append("\n");
3950 dumpStaticScreenStats(result);
3951 result.append("\n");
3952
Dan Stozae77c7662016-05-13 11:37:28 -07003953 dumpBufferingStats(result);
3954
Andy McFadden4803b742012-09-24 19:07:20 -07003955 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003956 * Dump the visible layer list
3957 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003958 colorizer.bold(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003959 result.appendFormat("Visible layers (count = %zu)\n", mNumLayers);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003960 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07003961
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003962 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviw1d044282017-09-27 12:19:28 -07003963 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
3964 result.append(LayerProtoParser::layersToString(layerTree).c_str());
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003965
3966 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003967 * Dump Display state
3968 */
3969
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003970 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08003971 result.appendFormat("Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003972 colorizer.reset(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003973 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
3974 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003975 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003976 }
3977
3978 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003979 * Dump SurfaceFlinger global state
3980 */
3981
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003982 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003983 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003984 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003985
Mathias Agopian888c8222012-08-04 21:10:38 -07003986 HWComposer& hwc(getHwComposer());
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07003987 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Mathias Agopianca088332013-03-28 17:44:13 -07003988
David Sodmanbc815282017-11-05 18:57:52 -08003989 getBE().mRenderEngine->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003990
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08003991 if (hw) {
3992 hw->undefinedRegion.dump(result, "undefinedRegion");
3993 result.appendFormat(" orientation=%d, isDisplayOn=%d\n",
3994 hw->getOrientation(), hw->isDisplayOn());
3995 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02003996 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003997 " last eglSwapBuffers() time: %f us\n"
3998 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08003999 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004000 " refresh-rate : %f fps\n"
4001 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07004002 " y-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07004003 " gpu_to_cpu_unsupported : %d\n"
4004 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004005 mLastSwapBufferTime/1000.0,
4006 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08004007 mTransactionFlags,
Dan Stoza9e56aa02015-11-02 13:00:03 -08004008 1e9 / activeConfig->getVsyncPeriod(),
4009 activeConfig->getDpiX(),
4010 activeConfig->getDpiY(),
Mathias Agopianed985572013-03-22 00:24:39 -07004011 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004012
Mathias Agopian74d211a2013-04-22 16:55:35 +02004013 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004014 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004015
Mathias Agopian74d211a2013-04-22 16:55:35 +02004016 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004017 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004018
4019 /*
4020 * VSYNC state
4021 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02004022 mEventThread->dump(result);
Dan Stozae22aec72016-08-01 13:20:59 -07004023 result.append("\n");
4024
4025 /*
4026 * HWC layer minidump
4027 */
4028 for (size_t d = 0; d < mDisplays.size(); d++) {
4029 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
4030 int32_t hwcId = displayDevice->getHwcDisplayId();
4031 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
4032 continue;
4033 }
4034
4035 result.appendFormat("Display %d HWC layers:\n", hwcId);
4036 Layer::miniDumpHeader(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07004037 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dan Stozae22aec72016-08-01 13:20:59 -07004038 layer->miniDump(result, hwcId);
Robert Carr1f0a16a2016-10-24 16:27:39 -07004039 });
Dan Stozae22aec72016-08-01 13:20:59 -07004040 result.append("\n");
4041 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004042
4043 /*
4044 * Dump HWComposer state
4045 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004046 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004047 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004048 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004049 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Dan Stoza9e56aa02015-11-02 13:00:03 -08004050 result.appendFormat(" h/w composer %s\n",
4051 hwcDisabled ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02004052 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004053
4054 /*
4055 * Dump gralloc state
4056 */
4057 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
4058 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004059
4060 /*
4061 * Dump VrFlinger state if in use.
4062 */
4063 if (mVrFlingerRequestsDisplay && mVrFlinger) {
4064 result.append("VrFlinger state:\n");
4065 result.append(mVrFlinger->Dump().c_str());
4066 result.append("\n");
4067 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004068}
4069
Mathias Agopian13127d82013-03-05 17:47:11 -08004070const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07004071SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07004072 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07004073 wp<IBinder> dpy;
4074 for (size_t i=0 ; i<mDisplays.size() ; i++) {
4075 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
4076 dpy = mDisplays.keyAt(i);
4077 break;
4078 }
4079 }
Peiyong Lin566a3b42018-01-09 18:22:43 -08004080 if (dpy == nullptr) {
Jesse Hall48bc05b2013-03-21 14:06:52 -07004081 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
4082 // Just use the primary display so we have something to return
4083 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
4084 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07004085 return getDisplayDeviceLocked(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07004086}
4087
Keun young Park63f165f2012-08-31 10:53:36 -07004088bool SurfaceFlinger::startDdmConnection()
4089{
4090 void* libddmconnection_dso =
4091 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
4092 if (!libddmconnection_dso) {
4093 return false;
4094 }
4095 void (*DdmConnection_start)(const char* name);
4096 DdmConnection_start =
Jesse Hall24cd98e2014-07-13 14:37:16 -07004097 (decltype(DdmConnection_start))dlsym(libddmconnection_dso, "DdmConnection_start");
Keun young Park63f165f2012-08-31 10:53:36 -07004098 if (!DdmConnection_start) {
4099 dlclose(libddmconnection_dso);
4100 return false;
4101 }
4102 (*DdmConnection_start)(getServiceName());
4103 return true;
4104}
4105
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004106status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004107 switch (code) {
4108 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07004109 case CREATE_DISPLAY:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004110 case BOOT_FINISHED:
Svetoslavd85084b2014-03-20 10:28:31 -07004111 case CLEAR_ANIMATION_FRAME_STATS:
4112 case GET_ANIMATION_FRAME_STATS:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004113 case SET_POWER_MODE:
Dan Stozac4f471e2016-03-24 09:31:08 -07004114 case GET_HDR_CAPABILITIES:
Chia-I Wu90f669f2017-10-05 14:24:41 -07004115 case ENABLE_VSYNC_INJECTIONS:
4116 case INJECT_VSYNC:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004117 {
4118 // codes that require permission check
4119 IPCThreadState* ipc = IPCThreadState::self();
4120 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07004121 const int uid = ipc->getCallingUid();
Jeff Brown3bfe51d2015-04-10 20:20:13 -07004122 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Mathias Agopian99b49842011-06-27 16:05:52 -07004123 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004124 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
Mathias Agopian375f5632009-06-15 18:24:59 -07004125 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004126 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004127 break;
4128 }
Robert Carr1db73f62016-12-21 12:58:51 -08004129 /*
4130 * Calling setTransactionState is safe, because you need to have been
4131 * granted a reference to Client* and Handle* to do anything with it.
4132 *
4133 * Creating a scoped connection is safe, as per discussion in ISurfaceComposer.h
4134 */
4135 case SET_TRANSACTION_STATE:
4136 case CREATE_SCOPED_CONNECTION:
4137 {
4138 return OK;
4139 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004140 case CAPTURE_SCREEN:
4141 {
4142 // codes that require permission check
4143 IPCThreadState* ipc = IPCThreadState::self();
4144 const int pid = ipc->getCallingPid();
4145 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07004146 if ((uid != AID_GRAPHICS) &&
4147 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004148 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004149 return PERMISSION_DENIED;
4150 }
4151 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004152 }
chaviwa76b2712017-09-20 12:02:26 -07004153 case CAPTURE_LAYERS: {
4154 IPCThreadState* ipc = IPCThreadState::self();
4155 const int pid = ipc->getCallingPid();
4156 const int uid = ipc->getCallingUid();
4157 if ((uid != AID_GRAPHICS) &&
4158 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
4159 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
4160 return PERMISSION_DENIED;
4161 }
4162 break;
4163 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004164 }
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004165 return OK;
4166}
4167
4168status_t SurfaceFlinger::onTransact(
4169 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4170{
4171 status_t credentialCheck = CheckTransactCodeCredentials(code);
4172 if (credentialCheck != OK) {
4173 return credentialCheck;
4174 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004175
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004176 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
4177 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07004178 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07004179 IPCThreadState* ipc = IPCThreadState::self();
4180 const int uid = ipc->getCallingUid();
4181 if (CC_UNLIKELY(uid != AID_SYSTEM
4182 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07004183 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00004184 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07004185 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004186 return PERMISSION_DENIED;
4187 }
4188 int n;
4189 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07004190 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07004191 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004192 return NO_ERROR;
4193 case 1002: // SHOW_UPDATES
4194 n = data.readInt32();
4195 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07004196 invalidateHwcGeometry();
4197 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004198 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004199 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07004200 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004201 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004202 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004203 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07004204 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07004205 setTransactionFlags(
4206 eTransactionNeeded|
4207 eDisplayTransactionNeeded|
4208 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004209 return NO_ERROR;
4210 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08004211 case 1006:{ // send empty update
4212 signalRefresh();
4213 return NO_ERROR;
4214 }
Mathias Agopian53331da2011-08-22 21:44:41 -07004215 case 1008: // toggle use of hw composer
4216 n = data.readInt32();
4217 mDebugDisableHWC = n ? 1 : 0;
4218 invalidateHwcGeometry();
4219 repaintEverything();
4220 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07004221 case 1009: // toggle use of transform hint
4222 n = data.readInt32();
4223 mDebugDisableTransformHint = n ? 1 : 0;
4224 invalidateHwcGeometry();
4225 repaintEverything();
4226 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004227 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07004228 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004229 reply->writeInt32(0);
4230 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07004231 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08004232 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004233 return NO_ERROR;
4234 case 1013: {
Tomasz Wasilczyk8722a312017-04-13 19:14:30 +00004235 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopian42977342012-08-05 00:40:46 -07004236 reply->writeInt32(hw->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07004237 return NO_ERROR;
4238 }
4239 case 1014: {
4240 // daltonize
4241 n = data.readInt32();
4242 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004243 case 1:
4244 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
4245 break;
4246 case 2:
4247 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
4248 break;
4249 case 3:
4250 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
4251 break;
4252 default:
4253 mDaltonizer.setType(ColorBlindnessType::None);
4254 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07004255 }
4256 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004257 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004258 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004259 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004260 }
Mathias Agopianff2ed702013-09-01 21:36:12 -07004261 invalidateHwcGeometry();
4262 repaintEverything();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004263 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004264 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004265 case 1015: {
4266 // apply a color matrix
4267 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004268 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07004269 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07004270 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004271 for (size_t j = 0; j < 4; j++) {
4272 mColorMatrix[i][j] = data.readFloat();
4273 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004274 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004275 } else {
4276 mColorMatrix = mat4();
4277 }
Romain Guy88d37dd2017-05-26 17:57:05 -07004278
4279 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
4280 // the division by w in the fragment shader
4281 float4 lastRow(transpose(mColorMatrix)[3]);
4282 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
4283 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
4284 }
4285
Alan Viverette9c5a3332013-09-12 20:04:35 -07004286 invalidateHwcGeometry();
4287 repaintEverything();
4288 return NO_ERROR;
4289 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004290 // This is an experimental interface
4291 // Needs to be shifted to proper binder interface when we productize
4292 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07004293 n = data.readInt32();
4294 mPrimaryDispSync.setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004295 return NO_ERROR;
4296 }
Dan Stozaee44edd2015-03-23 15:50:23 -07004297 case 1017: {
4298 n = data.readInt32();
4299 mForceFullDamage = static_cast<bool>(n);
4300 return NO_ERROR;
4301 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07004302 case 1018: { // Modify Choreographer's phase offset
4303 n = data.readInt32();
4304 mEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4305 return NO_ERROR;
4306 }
4307 case 1019: { // Modify SurfaceFlinger's phase offset
4308 n = data.readInt32();
4309 mSFEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4310 return NO_ERROR;
4311 }
Irvel468051e2016-06-13 16:44:44 -07004312 case 1020: { // Layer updates interceptor
4313 n = data.readInt32();
4314 if (n) {
4315 ALOGV("Interceptor enabled");
Irvelffc9efc2016-07-27 15:16:37 -07004316 mInterceptor.enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07004317 }
4318 else{
4319 ALOGV("Interceptor disabled");
4320 mInterceptor.disable();
4321 }
4322 return NO_ERROR;
4323 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07004324 case 1021: { // Disable HWC virtual displays
4325 n = data.readInt32();
4326 mUseHwcVirtualDisplays = !n;
4327 return NO_ERROR;
4328 }
Romain Guy0147a172017-06-01 13:53:56 -07004329 case 1022: { // Set saturation boost
4330 mSaturation = std::max(0.0f, std::min(data.readFloat(), 2.0f));
4331
4332 invalidateHwcGeometry();
4333 repaintEverything();
4334 return NO_ERROR;
4335 }
Romain Guy54f154a2017-10-24 21:40:32 +01004336 case 1023: { // Set native mode
4337 mForceNativeColorMode = data.readInt32() == 1;
4338
4339 invalidateHwcGeometry();
4340 repaintEverything();
4341 return NO_ERROR;
4342 }
4343 case 1024: { // Is wide color gamut rendering/color management supported?
4344 reply->writeBool(hasWideColorDisplay);
4345 return NO_ERROR;
4346 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004347 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01004348 n = data.readInt32();
4349 if (n) {
4350 ALOGV("LayerTracing enabled");
4351 mTracing.enable();
4352 doTracing("tracing.enable");
4353 reply->writeInt32(NO_ERROR);
4354 } else {
4355 ALOGV("LayerTracing disabled");
4356 status_t err = mTracing.disable();
4357 reply->writeInt32(err);
4358 }
4359 return NO_ERROR;
4360 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004361 case 1026: { // Get layer tracing status
4362 reply->writeBool(mTracing.isEnabled());
4363 return NO_ERROR;
4364 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004365 }
4366 }
4367 return err;
4368}
4369
Steven Thomas6d8110b2017-08-31 18:24:21 -07004370void SurfaceFlinger::repaintEverythingLocked() {
Mathias Agopian87baae12012-07-31 12:38:26 -07004371 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08004372 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07004373}
4374
Steven Thomas6d8110b2017-08-31 18:24:21 -07004375void SurfaceFlinger::repaintEverything() {
4376 ConditionalLock _l(mStateLock,
4377 std::this_thread::get_id() != mMainThreadId);
4378 repaintEverythingLocked();
4379}
4380
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004381// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
4382class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004383public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004384 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
4385 ~WindowDisconnector() {
4386 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004387 }
4388
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004389private:
4390 ANativeWindow* mWindow;
4391 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004392};
4393
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004394status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display, sp<GraphicBuffer>* outBuffer,
4395 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
4396 int32_t minLayerZ, int32_t maxLayerZ,
4397 bool useIdentityTransform,
chaviwa76b2712017-09-20 12:02:26 -07004398 ISurfaceComposer::Rotation rotation) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004399 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004400
chaviwa76b2712017-09-20 12:02:26 -07004401 if (CC_UNLIKELY(display == 0)) return BAD_VALUE;
4402
4403 const sp<const DisplayDevice> device(getDisplayDeviceLocked(display));
4404 DisplayRenderArea renderArea(device, sourceCrop, reqHeight, reqWidth, rotation);
4405
4406 auto traverseLayers = std::bind(std::mem_fn(&SurfaceFlinger::traverseLayersInDisplay), this,
4407 device, minLayerZ, maxLayerZ, std::placeholders::_1);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004408 return captureScreenCommon(renderArea, traverseLayers, outBuffer, useIdentityTransform);
chaviwa76b2712017-09-20 12:02:26 -07004409}
4410
4411status_t SurfaceFlinger::captureLayers(const sp<IBinder>& layerHandleBinder,
Vishnu Nair87704c92018-01-08 15:32:57 -08004412 sp<GraphicBuffer>* outBuffer, const Rect& sourceCrop,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004413 float frameScale) {
chaviwa76b2712017-09-20 12:02:26 -07004414 ATRACE_CALL();
4415
4416 class LayerRenderArea : public RenderArea {
4417 public:
chaviw7206d492017-11-10 16:16:12 -08004418 LayerRenderArea(const sp<Layer>& layer, const Rect crop, int32_t reqWidth,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004419 int32_t reqHeight)
chaviw7206d492017-11-10 16:16:12 -08004420 : RenderArea(reqHeight, reqWidth), mLayer(layer), mCrop(crop) {}
chaviwa76b2712017-09-20 12:02:26 -07004421 const Transform& getTransform() const override {
4422 // Make the top level transform the inverse the transform and it's parent so it sets
4423 // the whole capture back to 0,0
4424 return *new Transform(mLayer->getTransform().inverse());
4425 }
4426 Rect getBounds() const override {
4427 const Layer::State& layerState(mLayer->getDrawingState());
4428 return Rect(layerState.active.w, layerState.active.h);
4429 }
4430 int getHeight() const override { return mLayer->getDrawingState().active.h; }
4431 int getWidth() const override { return mLayer->getDrawingState().active.w; }
4432 bool isSecure() const override { return false; }
4433 bool needsFiltering() const override { return false; }
4434
chaviw7206d492017-11-10 16:16:12 -08004435 Rect getSourceCrop() const override {
4436 if (mCrop.isEmpty()) {
4437 return getBounds();
4438 } else {
4439 return mCrop;
4440 }
4441 }
chaviwa76b2712017-09-20 12:02:26 -07004442 bool getWideColorSupport() const override { return false; }
4443 android_color_mode_t getActiveColorMode() const override { return HAL_COLOR_MODE_NATIVE; }
4444
4445 private:
chaviw7206d492017-11-10 16:16:12 -08004446 const sp<Layer> mLayer;
4447 const Rect mCrop;
chaviwa76b2712017-09-20 12:02:26 -07004448 };
4449
4450 auto layerHandle = reinterpret_cast<Layer::Handle*>(layerHandleBinder.get());
4451 auto parent = layerHandle->owner.promote();
4452
chaviw7206d492017-11-10 16:16:12 -08004453 if (parent == nullptr || parent->isPendingRemoval()) {
4454 ALOGE("captureLayers called with a removed parent");
4455 return NAME_NOT_FOUND;
4456 }
4457
4458 Rect crop(sourceCrop);
4459 if (sourceCrop.width() <= 0) {
4460 crop.left = 0;
4461 crop.right = parent->getCurrentState().active.w;
4462 }
4463
4464 if (sourceCrop.height() <= 0) {
4465 crop.top = 0;
4466 crop.bottom = parent->getCurrentState().active.h;
4467 }
4468
4469 int32_t reqWidth = crop.width() * frameScale;
4470 int32_t reqHeight = crop.height() * frameScale;
4471
4472 LayerRenderArea renderArea(parent, crop, reqWidth, reqHeight);
4473
chaviwa76b2712017-09-20 12:02:26 -07004474 auto traverseLayers = [parent](const LayerVector::Visitor& visitor) {
4475 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
4476 if (!layer->isVisible()) {
4477 return;
4478 }
4479 visitor(layer);
4480 });
4481 };
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004482 return captureScreenCommon(renderArea, traverseLayers, outBuffer, false);
chaviwa76b2712017-09-20 12:02:26 -07004483}
4484
4485status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
4486 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004487 sp<GraphicBuffer>* outBuffer,
chaviwa76b2712017-09-20 12:02:26 -07004488 bool useIdentityTransform) {
4489 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004490
chaviwa76b2712017-09-20 12:02:26 -07004491 renderArea.updateDimensions();
4492
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004493 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
4494 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
4495 *outBuffer = new GraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
4496 HAL_PIXEL_FORMAT_RGBA_8888, 1, usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004497
4498 // This mutex protects syncFd and captureResult for communication of the return values from the
4499 // main thread back to this Binder thread
4500 std::mutex captureMutex;
4501 std::condition_variable captureCondition;
4502 std::unique_lock<std::mutex> captureLock(captureMutex);
4503 int syncFd = -1;
4504 std::optional<status_t> captureResult;
4505
Robert Carr03480e22018-01-04 16:02:06 -08004506 const int uid = IPCThreadState::self()->getCallingUid();
4507 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
4508
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004509 sp<LambdaMessage> message = new LambdaMessage([&]() {
4510 // If there is a refresh pending, bug out early and tell the binder thread to try again
4511 // after the refresh.
4512 if (mRefreshPending) {
4513 ATRACE_NAME("Skipping screenshot for now");
4514 std::unique_lock<std::mutex> captureLock(captureMutex);
4515 captureResult = std::make_optional<status_t>(EAGAIN);
4516 captureCondition.notify_one();
4517 return;
4518 }
4519
4520 status_t result = NO_ERROR;
4521 int fd = -1;
4522 {
4523 Mutex::Autolock _l(mStateLock);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004524 result = captureScreenImplLocked(renderArea, traverseLayers, (*outBuffer).get(),
Robert Carr03480e22018-01-04 16:02:06 -08004525 useIdentityTransform, forSystem, &fd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004526 }
4527
4528 {
4529 std::unique_lock<std::mutex> captureLock(captureMutex);
4530 syncFd = fd;
4531 captureResult = std::make_optional<status_t>(result);
4532 captureCondition.notify_one();
4533 }
4534 });
4535
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004536 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004537 if (result == NO_ERROR) {
4538 captureCondition.wait(captureLock, [&]() { return captureResult; });
4539 while (*captureResult == EAGAIN) {
4540 captureResult.reset();
4541 result = postMessageAsync(message);
4542 if (result != NO_ERROR) {
4543 return result;
4544 }
4545 captureCondition.wait(captureLock, [&]() { return captureResult; });
4546 }
4547 result = *captureResult;
4548 }
4549
4550 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004551 sync_wait(syncFd, -1);
4552 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004553 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004554
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004555 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004556}
4557
chaviwa76b2712017-09-20 12:02:26 -07004558void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
4559 TraverseLayersFunction traverseLayers, bool yswap,
4560 bool useIdentityTransform) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07004561 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07004562
Lloyd Pique144e1162017-12-20 16:44:52 -08004563 auto& engine(getRenderEngine());
Mathias Agopian180f10d2013-04-10 22:55:41 -07004564
4565 // get screen geometry
chaviwa76b2712017-09-20 12:02:26 -07004566 const auto raWidth = renderArea.getWidth();
4567 const auto raHeight = renderArea.getHeight();
4568
4569 const auto reqWidth = renderArea.getReqWidth();
4570 const auto reqHeight = renderArea.getReqHeight();
4571 Rect sourceCrop = renderArea.getSourceCrop();
4572
4573 const bool filtering = static_cast<int32_t>(reqWidth) != raWidth ||
4574 static_cast<int32_t>(reqHeight) != raHeight;
Mathias Agopian180f10d2013-04-10 22:55:41 -07004575
Dan Stozac1879002014-05-22 15:59:05 -07004576 // if a default or invalid sourceCrop is passed in, set reasonable values
chaviwa76b2712017-09-20 12:02:26 -07004577 if (sourceCrop.width() == 0 || sourceCrop.height() == 0 || !sourceCrop.isValid()) {
Dan Stozac1879002014-05-22 15:59:05 -07004578 sourceCrop.setLeftTop(Point(0, 0));
chaviwa76b2712017-09-20 12:02:26 -07004579 sourceCrop.setRightBottom(Point(raWidth, raHeight));
Dan Stozac1879002014-05-22 15:59:05 -07004580 }
4581
4582 // ensure that sourceCrop is inside screen
4583 if (sourceCrop.left < 0) {
4584 ALOGE("Invalid crop rect: l = %d (< 0)", sourceCrop.left);
4585 }
chaviwa76b2712017-09-20 12:02:26 -07004586 if (sourceCrop.right > raWidth) {
4587 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, raWidth);
Dan Stozac1879002014-05-22 15:59:05 -07004588 }
4589 if (sourceCrop.top < 0) {
4590 ALOGE("Invalid crop rect: t = %d (< 0)", sourceCrop.top);
4591 }
chaviwa76b2712017-09-20 12:02:26 -07004592 if (sourceCrop.bottom > raHeight) {
4593 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, raHeight);
Dan Stozac1879002014-05-22 15:59:05 -07004594 }
4595
chaviwa76b2712017-09-20 12:02:26 -07004596 engine.setWideColor(renderArea.getWideColorSupport() && !mForceNativeColorMode);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004597 engine.setColorMode(mForceNativeColorMode ? HAL_COLOR_MODE_NATIVE
4598 : renderArea.getActiveColorMode());
Romain Guy88d37dd2017-05-26 17:57:05 -07004599
Mathias Agopian180f10d2013-04-10 22:55:41 -07004600 // make sure to clear all GL error flags
Mathias Agopian3f844832013-08-07 21:24:32 -07004601 engine.checkErrors();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004602
4603 // set-up our viewport
chaviwa76b2712017-09-20 12:02:26 -07004604 engine.setViewportAndProjection(reqWidth, reqHeight, sourceCrop, raHeight, yswap,
4605 renderArea.getRotationFlags());
Mathias Agopian3f844832013-08-07 21:24:32 -07004606 engine.disableTexturing();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004607
4608 // redraw the screen entirely...
Mathias Agopian3f844832013-08-07 21:24:32 -07004609 engine.clearWithColor(0, 0, 0, 1);
Mathias Agopian180f10d2013-04-10 22:55:41 -07004610
chaviwa76b2712017-09-20 12:02:26 -07004611 traverseLayers([&](Layer* layer) {
4612 if (filtering) layer->setFiltering(true);
4613 layer->draw(renderArea, useIdentityTransform);
4614 if (filtering) layer->setFiltering(false);
4615 });
Mathias Agopian180f10d2013-04-10 22:55:41 -07004616}
4617
chaviwa76b2712017-09-20 12:02:26 -07004618status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
4619 TraverseLayersFunction traverseLayers,
4620 ANativeWindowBuffer* buffer,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004621 bool useIdentityTransform,
Robert Carr03480e22018-01-04 16:02:06 -08004622 bool forSystem,
chaviwa76b2712017-09-20 12:02:26 -07004623 int* outSyncFd) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004624 ATRACE_CALL();
4625
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004626 bool secureLayerIsVisible = false;
chaviwa76b2712017-09-20 12:02:26 -07004627
4628 traverseLayers([&](Layer* layer) {
4629 secureLayerIsVisible = secureLayerIsVisible || (layer->isVisible() && layer->isSecure());
4630 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004631
Robert Carr03480e22018-01-04 16:02:06 -08004632 // We allow the system server to take screenshots of secure layers for
4633 // use in situations like the Screen-rotation animation and place
4634 // the impetus on WindowManager to not persist them.
4635 if (secureLayerIsVisible && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004636 ALOGW("FB is protected: PERMISSION_DENIED");
4637 return PERMISSION_DENIED;
4638 }
4639
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004640 // this binds the given EGLImage as a framebuffer for the
4641 // duration of this scope.
Lloyd Pique144e1162017-12-20 16:44:52 -08004642 RE::BindNativeBufferAsFramebuffer bufferBond(getRenderEngine(), buffer);
Chia-I Wueadbaa62017-11-09 11:26:15 -08004643 if (bufferBond.getStatus() != NO_ERROR) {
4644 ALOGE("got ANWB binding error while taking screenshot");
Dan Stozaabcda352017-06-01 14:37:39 -07004645 return INVALID_OPERATION;
4646 }
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004647
Dan Stozaabcda352017-06-01 14:37:39 -07004648 // this will in fact render into our dequeued buffer
4649 // via an FBO, which means we didn't have to create
4650 // an EGLSurface and therefore we're not
4651 // dependent on the context's EGLConfig.
chaviwa76b2712017-09-20 12:02:26 -07004652 renderScreenImplLocked(renderArea, traverseLayers, true, useIdentityTransform);
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004653
Dan Stozaabcda352017-06-01 14:37:39 -07004654 if (DEBUG_SCREENSHOTS) {
Chia-I Wu767fcf72017-11-30 22:07:38 -08004655 getRenderEngine().finish();
4656 *outSyncFd = -1;
4657
chaviwa76b2712017-09-20 12:02:26 -07004658 const auto reqWidth = renderArea.getReqWidth();
4659 const auto reqHeight = renderArea.getReqHeight();
4660
Dan Stozaabcda352017-06-01 14:37:39 -07004661 uint32_t* pixels = new uint32_t[reqWidth*reqHeight];
4662 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
chaviwa76b2712017-09-20 12:02:26 -07004663 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels, traverseLayers);
Dan Stozaabcda352017-06-01 14:37:39 -07004664 delete [] pixels;
Chia-I Wu767fcf72017-11-30 22:07:38 -08004665 } else {
4666 base::unique_fd syncFd = getRenderEngine().flush();
4667 if (syncFd < 0) {
4668 getRenderEngine().finish();
4669 }
4670 *outSyncFd = syncFd.release();
Dan Stozaabcda352017-06-01 14:37:39 -07004671 }
4672
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004673 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07004674}
4675
Mathias Agopiand5556842013-09-19 17:08:37 -07004676void SurfaceFlinger::checkScreenshot(size_t w, size_t s, size_t h, void const* vaddr,
chaviwa76b2712017-09-20 12:02:26 -07004677 TraverseLayersFunction traverseLayers) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004678 if (DEBUG_SCREENSHOTS) {
chaviwa76b2712017-09-20 12:02:26 -07004679 for (size_t y = 0; y < h; y++) {
4680 uint32_t const* p = (uint32_t const*)vaddr + y * s;
4681 for (size_t x = 0; x < w; x++) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004682 if (p[x] != 0xFF000000) return;
4683 }
4684 }
chaviwa76b2712017-09-20 12:02:26 -07004685 ALOGE("*** we just took a black screenshot ***");
Robert Carr1f0a16a2016-10-24 16:27:39 -07004686
Robert Carr2047fae2016-11-28 14:09:09 -08004687 size_t i = 0;
chaviwa76b2712017-09-20 12:02:26 -07004688 traverseLayers([&](Layer* layer) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004689 const Layer::State& state(layer->getDrawingState());
chaviwa76b2712017-09-20 12:02:26 -07004690 ALOGE("%c index=%zu, name=%s, layerStack=%d, z=%d, visible=%d, flags=%x, alpha=%.3f",
4691 layer->isVisible() ? '+' : '-', i, layer->getName().string(),
4692 layer->getLayerStack(), state.z, layer->isVisible(), state.flags,
4693 static_cast<float>(state.color.a));
4694 i++;
4695 });
Mathias Agopianfee2b462013-07-03 12:34:01 -07004696 }
4697}
4698
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004699// ---------------------------------------------------------------------------
4700
Dan Stoza412903f2017-04-27 13:42:17 -07004701void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
4702 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004703}
4704
Dan Stoza412903f2017-04-27 13:42:17 -07004705void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
4706 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004707}
4708
chaviwa76b2712017-09-20 12:02:26 -07004709void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& hw, int32_t minLayerZ,
4710 int32_t maxLayerZ,
4711 const LayerVector::Visitor& visitor) {
4712 // We loop through the first level of layers without traversing,
4713 // as we need to interpret min/max layer Z in the top level Z space.
4714 for (const auto& layer : mDrawingState.layersSortedByZ) {
4715 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4716 continue;
4717 }
4718 const Layer::State& state(layer->getDrawingState());
Chia-I Wuec2d9852017-11-21 09:21:01 -08004719 // relative layers are traversed in Layer::traverseInZOrder
4720 if (state.zOrderRelativeOf != nullptr || state.z < minLayerZ || state.z > maxLayerZ) {
chaviwa76b2712017-09-20 12:02:26 -07004721 continue;
4722 }
4723 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01004724 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4725 return;
4726 }
chaviwa76b2712017-09-20 12:02:26 -07004727 if (!layer->isVisible()) {
4728 return;
4729 }
4730 visitor(layer);
4731 });
4732 }
4733}
4734
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004735}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07004736
4737
4738#if defined(__gl_h_)
4739#error "don't include gl/gl.h in this file"
4740#endif
4741
4742#if defined(__gl2_h_)
4743#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08004744#endif