blob: e14a59b46d94fbc9524fa26dff8d87af11bd5060 [file] [log] [blame]
Mathias Agopiandb403e82012-06-18 16:47:56 -07001/*
2 * Copyright (C) 2012 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
17#include <stdint.h>
18#include <sys/types.h>
19
20#include <binder/PermissionCache.h>
Mathias Agopian4f4f0942013-08-19 17:26:18 -070021#include <binder/IPCThreadState.h>
Mathias Agopiandb403e82012-06-18 16:47:56 -070022
23#include <private/android_filesystem_config.h>
24
25#include "Client.h"
Mathias Agopian921e6ac2012-07-23 23:11:29 -070026#include "Layer.h"
Mathias Agopiandb403e82012-06-18 16:47:56 -070027#include "SurfaceFlinger.h"
28
29namespace android {
30
31// ---------------------------------------------------------------------------
32
33const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
34
35// ---------------------------------------------------------------------------
36
37Client::Client(const sp<SurfaceFlinger>& flinger)
Mathias Agopianac9fa422013-02-11 16:40:36 -080038 : mFlinger(flinger)
Mathias Agopiandb403e82012-06-18 16:47:56 -070039{
40}
41
42Client::~Client()
43{
44 const size_t count = mLayers.size();
45 for (size_t i=0 ; i<count ; i++) {
Dan Stoza22851c32016-08-09 13:21:03 -070046 mFlinger->removeLayer(mLayers.valueAt(i));
Mathias Agopiandb403e82012-06-18 16:47:56 -070047 }
48}
49
50status_t Client::initCheck() const {
51 return NO_ERROR;
52}
53
Mathias Agopian13127d82013-03-05 17:47:11 -080054void Client::attachLayer(const sp<IBinder>& handle, const sp<Layer>& layer)
Mathias Agopiandb403e82012-06-18 16:47:56 -070055{
56 Mutex::Autolock _l(mLock);
Mathias Agopianac9fa422013-02-11 16:40:36 -080057 mLayers.add(handle, layer);
Mathias Agopiandb403e82012-06-18 16:47:56 -070058}
59
Mathias Agopian13127d82013-03-05 17:47:11 -080060void Client::detachLayer(const Layer* layer)
Mathias Agopiandb403e82012-06-18 16:47:56 -070061{
62 Mutex::Autolock _l(mLock);
63 // we do a linear search here, because this doesn't happen often
64 const size_t count = mLayers.size();
65 for (size_t i=0 ; i<count ; i++) {
66 if (mLayers.valueAt(i) == layer) {
67 mLayers.removeItemsAt(i, 1);
68 break;
69 }
70 }
71}
Mathias Agopian13127d82013-03-05 17:47:11 -080072sp<Layer> Client::getLayerUser(const sp<IBinder>& handle) const
Mathias Agopiandb403e82012-06-18 16:47:56 -070073{
74 Mutex::Autolock _l(mLock);
Mathias Agopian13127d82013-03-05 17:47:11 -080075 sp<Layer> lbc;
76 wp<Layer> layer(mLayers.valueFor(handle));
Mathias Agopiandb403e82012-06-18 16:47:56 -070077 if (layer != 0) {
78 lbc = layer.promote();
Mathias Agopianac9fa422013-02-11 16:40:36 -080079 ALOGE_IF(lbc==0, "getLayerUser(name=%p) is dead", handle.get());
Mathias Agopiandb403e82012-06-18 16:47:56 -070080 }
81 return lbc;
82}
83
84
85status_t Client::onTransact(
86 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
87{
88 // these must be checked
89 IPCThreadState* ipc = IPCThreadState::self();
90 const int pid = ipc->getCallingPid();
91 const int uid = ipc->getCallingUid();
92 const int self_pid = getpid();
Jeff Brown3bfe51d2015-04-10 20:20:13 -070093 if (CC_UNLIKELY(pid != self_pid && uid != AID_GRAPHICS && uid != AID_SYSTEM && uid != 0)) {
Mathias Agopiandb403e82012-06-18 16:47:56 -070094 // we're called from a different process, do the real check
95 if (!PermissionCache::checkCallingPermission(sAccessSurfaceFlinger))
96 {
97 ALOGE("Permission Denial: "
98 "can't openGlobalTransaction pid=%d, uid=%d", pid, uid);
99 return PERMISSION_DENIED;
100 }
101 }
102 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
103}
104
105
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700106status_t Client::createSurface(
Mathias Agopiandb403e82012-06-18 16:47:56 -0700107 const String8& name,
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700108 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
109 sp<IBinder>* handle,
110 sp<IGraphicBufferProducer>* gbp)
Mathias Agopiandb403e82012-06-18 16:47:56 -0700111{
112 /*
113 * createSurface must be called from the GL thread so that it can
114 * have access to the GL context.
115 */
116
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700117 class MessageCreateLayer : public MessageBase {
Mathias Agopiandb403e82012-06-18 16:47:56 -0700118 SurfaceFlinger* flinger;
Mathias Agopiandb403e82012-06-18 16:47:56 -0700119 Client* client;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700120 sp<IBinder>* handle;
121 sp<IGraphicBufferProducer>* gbp;
122 status_t result;
Mathias Agopiandb403e82012-06-18 16:47:56 -0700123 const String8& name;
Mathias Agopiandb403e82012-06-18 16:47:56 -0700124 uint32_t w, h;
125 PixelFormat format;
126 uint32_t flags;
127 public:
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700128 MessageCreateLayer(SurfaceFlinger* flinger,
Mathias Agopiandb403e82012-06-18 16:47:56 -0700129 const String8& name, Client* client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700130 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
131 sp<IBinder>* handle,
132 sp<IGraphicBufferProducer>* gbp)
133 : flinger(flinger), client(client),
Pablo Ceballos53390e12015-08-04 11:25:59 -0700134 handle(handle), gbp(gbp), result(NO_ERROR),
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700135 name(name), w(w), h(h), format(format), flags(flags) {
Mathias Agopiandb403e82012-06-18 16:47:56 -0700136 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700137 status_t getResult() const { return result; }
Mathias Agopiandb403e82012-06-18 16:47:56 -0700138 virtual bool handler() {
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700139 result = flinger->createLayer(name, client, w, h, format, flags,
140 handle, gbp);
Mathias Agopiandb403e82012-06-18 16:47:56 -0700141 return true;
142 }
143 };
144
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700145 sp<MessageBase> msg = new MessageCreateLayer(mFlinger.get(),
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700146 name, this, w, h, format, flags, handle, gbp);
Mathias Agopiandb403e82012-06-18 16:47:56 -0700147 mFlinger->postMessageSync(msg);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700148 return static_cast<MessageCreateLayer*>( msg.get() )->getResult();
Mathias Agopiandb403e82012-06-18 16:47:56 -0700149}
Mathias Agopianac9fa422013-02-11 16:40:36 -0800150
151status_t Client::destroySurface(const sp<IBinder>& handle) {
152 return mFlinger->onLayerRemoved(this, handle);
Mathias Agopiandb403e82012-06-18 16:47:56 -0700153}
154
Svetoslavd85084b2014-03-20 10:28:31 -0700155status_t Client::clearLayerFrameStats(const sp<IBinder>& handle) const {
156 sp<Layer> layer = getLayerUser(handle);
157 if (layer == NULL) {
158 return NAME_NOT_FOUND;
159 }
160 layer->clearFrameStats();
161 return NO_ERROR;
162}
163
164status_t Client::getLayerFrameStats(const sp<IBinder>& handle, FrameStats* outStats) const {
165 sp<Layer> layer = getLayerUser(handle);
166 if (layer == NULL) {
167 return NAME_NOT_FOUND;
168 }
169 layer->getFrameStats(outStats);
170 return NO_ERROR;
171}
172
Robert Carr367c5682016-06-20 11:55:28 -0700173status_t Client::getTransformToDisplayInverse(const sp<IBinder>& handle,
174 bool* outTransformToDisplayInverse) const {
175 sp<Layer> layer = getLayerUser(handle);
176 if (layer == NULL) {
177 return NAME_NOT_FOUND;
178 }
179 *outTransformToDisplayInverse = layer->getTransformToDisplayInverse();
180 return NO_ERROR;
181}
182
Mathias Agopiandb403e82012-06-18 16:47:56 -0700183// ---------------------------------------------------------------------------
184}; // namespace android