1 /**************************************************************************
5 Copyright 2012 Samsung Electronics co., Ltd. All Rights Reserved.
7 Contact: SooChan Lim <sc1.lim@samsung.com>, Sangjin Lee <lsj119@samsung.com>
8 Boram Park <boram1288.park@samsung.com>, Changyeon Lee <cyeon.lee@samsung.com>
10 Permission is hereby granted, free of charge, to any person obtaining a
11 copy of this software and associated documentation files (the
12 "Software"), to deal in the Software without restriction, including
13 without limitation the rights to use, copy, modify, merge, publish,
14 distribute, sub license, and/or sell copies of the Software, and to
15 permit persons to whom the Software is furnished to do so, subject to
16 the following conditions:
18 The above copyright notice and this permission notice (including the
19 next paragraph) shall be included in all copies or substantial portions
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
25 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
27 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
28 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 **************************************************************************/
32 #define WL_HIDE_DEPRECATED
43 #include "tbm_bufmgr_int.h"
45 #include "wayland-tbm-drm-auth-client-protocol.h"
47 struct wayland_tbm_drm_auth_client {
48 struct wl_display *display;
49 struct wl_tbm_drm_auth *wl_tbm_drm_auth;
52 uint32_t capabilities;
57 handle_tbm_drm_authentication_info(void *data, struct wl_tbm_drm_auth *wl_tbm_drm_auth, const char *device_name, uint32_t capabilities, int32_t auth_fd)
59 struct wayland_tbm_drm_auth_client *tbm_drm_client = (struct wayland_tbm_drm_auth_client *)data;
61 /* client authentication infomation */
62 tbm_drm_client->auth_fd = auth_fd;
63 tbm_drm_client->capabilities = capabilities;
65 tbm_drm_client->device = strdup(device_name);
68 static const struct wl_tbm_drm_auth_listener wl_tbm_drm_auth_client_listener = {
69 handle_tbm_drm_authentication_info
73 _wayland_tbm_drm_auth_client_registry_handle_global(void *data, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version)
75 struct wayland_tbm_drm_auth_client *tbm_drm_client = (struct wayland_tbm_drm_auth_client *)data;
77 if (!strcmp(interface, "wl_tbm_drm_auth")) {
78 tbm_drm_client->wl_tbm_drm_auth = wl_registry_bind(registry, name, &wl_tbm_drm_auth_interface, version);
79 TBM_RETURN_IF_FAIL(tbm_drm_client->wl_tbm_drm_auth != NULL);
81 wl_tbm_drm_auth_add_listener(tbm_drm_client->wl_tbm_drm_auth, &wl_tbm_drm_auth_client_listener, tbm_drm_client);
85 static const struct wl_registry_listener registry_listener = {
86 _wayland_tbm_drm_auth_client_registry_handle_global,
91 tbm_drm_helper_get_auth_info(int *auth_fd, char **device, uint32_t *capabilities)
93 struct wl_display *display;
94 struct wl_registry *wl_registry;
95 struct wayland_tbm_drm_auth_client *tbm_drm_client;
97 tbm_drm_client = calloc(1, sizeof(struct wayland_tbm_drm_auth_client));
98 TBM_RETURN_VAL_IF_FAIL(tbm_drm_client != NULL, 0);
100 tbm_drm_client->auth_fd = -1;
102 display = wl_display_connect("tbm-drm-auth");
104 TBM_LOG_E("Failed to connect display\n");
105 free(tbm_drm_client);
110 tbm_drm_client->display = display;
112 wl_registry = wl_display_get_registry(display);
114 TBM_LOG_E("Failed to get registry\n");
115 wl_display_disconnect(display);
116 free(tbm_drm_client);
121 wl_registry_add_listener(wl_registry, ®istry_listener, tbm_drm_client);
122 if (wl_display_roundtrip(display) < 0) { //For Gloabl registry
123 TBM_LOG_E("Failed to wl_display_roundtrip for global registry\n");
124 wl_registry_destroy(wl_registry);
125 wl_display_disconnect(display);
126 free(tbm_drm_client);
130 if (!tbm_drm_client->wl_tbm_drm_auth) {
131 TBM_LOG_E("Failed to get wl_tbm_drm_auth interface\n");
132 wl_registry_destroy(wl_registry);
133 wl_display_disconnect(display);
134 free(tbm_drm_client);
139 wl_tbm_drm_auth_get_authentication_info(tbm_drm_client->wl_tbm_drm_auth);
140 if (wl_display_roundtrip(display) < 0) {
141 TBM_LOG_E("Failed to wl_display_roundtrip get auth info\n");
142 wl_tbm_drm_auth_set_user_data(tbm_drm_client->wl_tbm_drm_auth, NULL);
143 wl_tbm_drm_auth_destroy(tbm_drm_client->wl_tbm_drm_auth);
144 wl_registry_destroy(wl_registry);
145 wl_display_disconnect(display);
146 free(tbm_drm_client);
150 if (tbm_drm_client->auth_fd < 0) {
151 TBM_LOG_E("Failed to get auth info\n");
152 wl_tbm_drm_auth_set_user_data(tbm_drm_client->wl_tbm_drm_auth, NULL);
153 wl_tbm_drm_auth_destroy(tbm_drm_client->wl_tbm_drm_auth);
154 wl_registry_destroy(wl_registry);
155 wl_display_disconnect(display);
156 free(tbm_drm_client);
162 *auth_fd = tbm_drm_client->auth_fd;
164 close(tbm_drm_client->auth_fd);
167 *capabilities = tbm_drm_client->capabilities;
170 if (tbm_drm_client->device)
171 *device = strdup(tbm_drm_client->device);
176 wl_tbm_drm_auth_set_user_data(tbm_drm_client->wl_tbm_drm_auth, NULL);
177 wl_tbm_drm_auth_destroy(tbm_drm_client->wl_tbm_drm_auth);
179 if (tbm_drm_client->device)
180 free(tbm_drm_client->device);
182 free(tbm_drm_client);
184 wl_registry_destroy(wl_registry);
185 wl_display_disconnect(display);
192 tbm_drm_helper_set_fd(int fd)
197 snprintf(buf, sizeof(buf), "%d", fd);
199 ret = setenv("TBM_DRM_FD", (const char*)buf, 1);
201 TBM_LOG_E("failed to set TBM_DRM_FD to %d\n", fd);
205 TBM_LOG_I("TBM_DRM_FD: %d\n", fd);
209 tbm_drm_helper_unset_fd(void)
213 ret = unsetenv("TBM_DRM_FD");
215 TBM_LOG_E("failed to unset TBM_DRM_FD\n");
221 tbm_drm_helper_get_fd(void)
229 value = (const char*)getenv("TBM_DRM_FD");
233 const long sl = strtol(value, &end, 10);
235 TBM_LOG_E("%s: not a decimal number\n", value);
237 } else if (*end != '\0') {
238 TBM_LOG_E("%s: extra characters at end of input: %s\n", value, end);
240 } else if ((sl == LONG_MIN || sl == LONG_MAX) && errno == ERANGE) {
241 TBM_LOG_E("%s out of range of type long\n", value);
243 } else if (sl > INT_MAX) {
244 TBM_LOG_E("%ld greater than INT_MAX\n", sl);
246 } else if (sl < INT_MIN) {
247 TBM_LOG_E("%ld less than INT_MIN\n", sl);
252 TBM_LOG_E("%d out of fd range\n", fd);
257 TBM_LOG_I("TBM_DRM_FD: %d\n", fd);
259 flags = fcntl(fd, F_GETFD);
261 TBM_LOG_E("fcntl failed: %m\n");
267 TBM_LOG_E("dup failed: %m\n");
271 fcntl(new_fd, F_SETFD, flags|FD_CLOEXEC);
273 TBM_LOG_I("Return TBM_FD: %d\n", new_fd);