blob: 0f56f99d3be8feaa2793b4b7e14c446186cd80a5 [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>
21
22#include <private/android_filesystem_config.h>
23
24#include "Client.h"
Mathias Agopian921e6ac2012-07-23 23:11:29 -070025#include "Layer.h"
Mathias Agopiandb403e82012-06-18 16:47:56 -070026#include "LayerBase.h"
27#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++) {
46 sp<LayerBaseClient> layer(mLayers.valueAt(i).promote());
47 if (layer != 0) {
48 mFlinger->removeLayer(layer);
49 }
50 }
51}
52
53status_t Client::initCheck() const {
54 return NO_ERROR;
55}
56
Mathias Agopianac9fa422013-02-11 16:40:36 -080057void Client::attachLayer(const sp<IBinder>& handle, const sp<LayerBaseClient>& layer)
Mathias Agopiandb403e82012-06-18 16:47:56 -070058{
59 Mutex::Autolock _l(mLock);
Mathias Agopianac9fa422013-02-11 16:40:36 -080060 mLayers.add(handle, layer);
Mathias Agopiandb403e82012-06-18 16:47:56 -070061}
62
63void Client::detachLayer(const LayerBaseClient* layer)
64{
65 Mutex::Autolock _l(mLock);
66 // we do a linear search here, because this doesn't happen often
67 const size_t count = mLayers.size();
68 for (size_t i=0 ; i<count ; i++) {
69 if (mLayers.valueAt(i) == layer) {
70 mLayers.removeItemsAt(i, 1);
71 break;
72 }
73 }
74}
Mathias Agopianac9fa422013-02-11 16:40:36 -080075sp<LayerBaseClient> Client::getLayerUser(const sp<IBinder>& handle) const
Mathias Agopiandb403e82012-06-18 16:47:56 -070076{
77 Mutex::Autolock _l(mLock);
78 sp<LayerBaseClient> lbc;
Mathias Agopianac9fa422013-02-11 16:40:36 -080079 wp<LayerBaseClient> layer(mLayers.valueFor(handle));
Mathias Agopiandb403e82012-06-18 16:47:56 -070080 if (layer != 0) {
81 lbc = layer.promote();
Mathias Agopianac9fa422013-02-11 16:40:36 -080082 ALOGE_IF(lbc==0, "getLayerUser(name=%p) is dead", handle.get());
Mathias Agopiandb403e82012-06-18 16:47:56 -070083 }
84 return lbc;
85}
86
87
88status_t Client::onTransact(
89 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
90{
91 // these must be checked
92 IPCThreadState* ipc = IPCThreadState::self();
93 const int pid = ipc->getCallingPid();
94 const int uid = ipc->getCallingUid();
95 const int self_pid = getpid();
96 if (CC_UNLIKELY(pid != self_pid && uid != AID_GRAPHICS && uid != 0)) {
97 // we're called from a different process, do the real check
98 if (!PermissionCache::checkCallingPermission(sAccessSurfaceFlinger))
99 {
100 ALOGE("Permission Denial: "
101 "can't openGlobalTransaction pid=%d, uid=%d", pid, uid);
102 return PERMISSION_DENIED;
103 }
104 }
105 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
106}
107
108
109sp<ISurface> Client::createSurface(
Mathias Agopiandb403e82012-06-18 16:47:56 -0700110 const String8& name,
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700111 uint32_t w, uint32_t h, PixelFormat format,
Mathias Agopiandb403e82012-06-18 16:47:56 -0700112 uint32_t flags)
113{
114 /*
115 * createSurface must be called from the GL thread so that it can
116 * have access to the GL context.
117 */
118
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700119 class MessageCreateLayer : public MessageBase {
Mathias Agopiandb403e82012-06-18 16:47:56 -0700120 sp<ISurface> result;
121 SurfaceFlinger* flinger;
Mathias Agopiandb403e82012-06-18 16:47:56 -0700122 Client* client;
123 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,
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700130 uint32_t w, uint32_t h, PixelFormat format,
Mathias Agopiandb403e82012-06-18 16:47:56 -0700131 uint32_t flags)
Mathias Agopianac9fa422013-02-11 16:40:36 -0800132 : flinger(flinger), client(client), name(name),
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700133 w(w), h(h), format(format), flags(flags)
Mathias Agopiandb403e82012-06-18 16:47:56 -0700134 {
135 }
136 sp<ISurface> getResult() const { return result; }
137 virtual bool handler() {
Mathias Agopianac9fa422013-02-11 16:40:36 -0800138 result = flinger->createLayer(name, client, w, h, format, flags);
Mathias Agopiandb403e82012-06-18 16:47:56 -0700139 return true;
140 }
141 };
142
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700143 sp<MessageBase> msg = new MessageCreateLayer(mFlinger.get(),
Mathias Agopianac9fa422013-02-11 16:40:36 -0800144 name, this, w, h, format, flags);
Mathias Agopiandb403e82012-06-18 16:47:56 -0700145 mFlinger->postMessageSync(msg);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700146 return static_cast<MessageCreateLayer*>( msg.get() )->getResult();
Mathias Agopiandb403e82012-06-18 16:47:56 -0700147}
Mathias Agopianac9fa422013-02-11 16:40:36 -0800148
149status_t Client::destroySurface(const sp<IBinder>& handle) {
150 return mFlinger->onLayerRemoved(this, handle);
Mathias Agopiandb403e82012-06-18 16:47:56 -0700151}
152
153// ---------------------------------------------------------------------------
154}; // namespace android