1 /*
2 * Copyright © 2008 Kristian Høgsberg
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #define _GNU_SOURCE
27
28 #include <stdlib.h>
29 #include <stdint.h>
30 #include <stddef.h>
31 #include <stdio.h>
32 #include <stdarg.h>
33 #include <stdbool.h>
34 #include <errno.h>
35 #include <string.h>
36 #include <unistd.h>
37 #include <sys/socket.h>
38 #include <sys/un.h>
39 #include <dlfcn.h>
40 #include <assert.h>
41 #include <sys/time.h>
42 #include <fcntl.h>
43 #include <sys/file.h>
44 #include <sys/stat.h>
45
46 #include "wayland-util.h"
47 #include "wayland-private.h"
48 #include "wayland-server.h"
49 #include "wayland-os.h"
50
51 /* This is the size of the char array in struct sock_addr_un.
52 * No Wayland socket can be created with a path longer than this,
53 * including the null terminator.
54 */
55 #ifndef UNIX_PATH_MAX
56 #define UNIX_PATH_MAX 108
57 #endif
58
59 #define LOCK_SUFFIX ".lock"
60 #define LOCK_SUFFIXLEN 5
61
62 struct wl_socket {
63 int fd;
64 int fd_lock;
65 struct sockaddr_un addr;
66 char lock_addr[UNIX_PATH_MAX + LOCK_SUFFIXLEN];
67 struct wl_list link;
68 struct wl_event_source *source;
69 char *display_name;
70 };
71
72 struct wl_client {
73 struct wl_connection *connection;
74 struct wl_event_source *source;
75 struct wl_display *display;
76 struct wl_resource *display_resource;
77 struct wl_list link;
78 struct wl_map objects;
79 struct wl_priv_signal destroy_signal;
80 struct ucred ucred;
81 int error;
82 struct wl_priv_signal resource_created_signal;
83 };
84
85 struct wl_display {
86 struct wl_event_loop *loop;
87 int run;
88
89 uint32_t id;
90 uint32_t serial;
91
92 struct wl_list registry_resource_list;
93 struct wl_list global_list;
94 struct wl_list socket_list;
95 struct wl_list client_list;
96 struct wl_list protocol_loggers;
97
98 struct wl_priv_signal destroy_signal;
99 struct wl_priv_signal create_client_signal;
100
101 struct wl_array additional_shm_formats;
102
103 wl_display_global_filter_func_t global_filter;
104 void *global_filter_data;
105 };
106
107 struct wl_global {
108 struct wl_display *display;
109 const struct wl_interface *interface;
110 uint32_t name;
111 uint32_t version;
112 void *data;
113 wl_global_bind_func_t bind;
114 struct wl_list link;
115 };
116
117 struct wl_resource {
118 struct wl_object object;
119 wl_resource_destroy_func_t destroy;
120 struct wl_list link;
121 /* Unfortunately some users of libwayland (e.g. mesa) still use the
122 * deprecated wl_resource struct, even if creating it with the new
123 * wl_resource_create(). So we cannot change the layout of the struct
124 * unless after the data field. */
125 struct wl_signal deprecated_destroy_signal;
126 struct wl_client *client;
127 void *data;
128 int version;
129 wl_dispatcher_func_t dispatcher;
130 struct wl_priv_signal destroy_signal;
131 };
132
133 struct wl_protocol_logger {
134 struct wl_list link;
135 wl_protocol_logger_func_t func;
136 void *user_data;
137 };
138
139 static int debug_server = 0;
140
141 static void
log_closure(struct wl_resource * resource,struct wl_closure * closure,int send)142 log_closure(struct wl_resource *resource,
143 struct wl_closure *closure, int send)
144 {
145 struct wl_object *object = &resource->object;
146 struct wl_display *display = resource->client->display;
147 struct wl_protocol_logger *protocol_logger;
148 struct wl_protocol_logger_message message;
149
150 if (debug_server)
151 wl_closure_print(closure, object, send);
152
153 if (!wl_list_empty(&display->protocol_loggers)) {
154 message.resource = resource;
155 message.message_opcode = closure->opcode;
156 message.message = closure->message;
157 message.arguments_count = closure->count;
158 message.arguments = closure->args;
159 wl_list_for_each(protocol_logger,
160 &display->protocol_loggers, link) {
161 protocol_logger->func(protocol_logger->user_data,
162 send ? WL_PROTOCOL_LOGGER_EVENT :
163 WL_PROTOCOL_LOGGER_REQUEST,
164 &message);
165 }
166 }
167 }
168
169 static bool
verify_objects(struct wl_resource * resource,uint32_t opcode,union wl_argument * args)170 verify_objects(struct wl_resource *resource, uint32_t opcode,
171 union wl_argument *args)
172 {
173 struct wl_object *object = &resource->object;
174 const char *signature = object->interface->events[opcode].signature;
175 struct argument_details arg;
176 struct wl_resource *res;
177 int count, i;
178
179 count = arg_count_for_signature(signature);
180 for (i = 0; i < count; i++) {
181 signature = get_next_argument(signature, &arg);
182 switch (arg.type) {
183 case 'n':
184 case 'o':
185 res = (struct wl_resource *) (args[i].o);
186 if (res && res->client != resource->client) {
187 wl_log("compositor bug: The compositor "
188 "tried to use an object from one "
189 "client in a '%s.%s' for a different "
190 "client.\n", object->interface->name,
191 object->interface->events[opcode].name);
192 return false;
193 }
194 }
195 }
196 return true;
197 }
198
199 static void
handle_array(struct wl_resource * resource,uint32_t opcode,union wl_argument * args,int (* send_func)(struct wl_closure *,struct wl_connection *))200 handle_array(struct wl_resource *resource, uint32_t opcode,
201 union wl_argument *args,
202 int (*send_func)(struct wl_closure *, struct wl_connection *))
203 {
204 struct wl_closure *closure;
205 struct wl_object *object = &resource->object;
206
207 if (resource->client->error)
208 return;
209
210 if (!verify_objects(resource, opcode, args)) {
211 resource->client->error = 1;
212 return;
213 }
214
215 closure = wl_closure_marshal(object, opcode, args,
216 &object->interface->events[opcode]);
217
218 if (closure == NULL) {
219 resource->client->error = 1;
220 return;
221 }
222
223 log_closure(resource, closure, true);
224
225 if (send_func(closure, resource->client->connection))
226 resource->client->error = 1;
227
228 wl_closure_destroy(closure);
229 }
230
231 WL_EXPORT void
wl_resource_post_event_array(struct wl_resource * resource,uint32_t opcode,union wl_argument * args)232 wl_resource_post_event_array(struct wl_resource *resource, uint32_t opcode,
233 union wl_argument *args)
234 {
235 handle_array(resource, opcode, args, wl_closure_send);
236 }
237
238 WL_EXPORT void
wl_resource_post_event(struct wl_resource * resource,uint32_t opcode,...)239 wl_resource_post_event(struct wl_resource *resource, uint32_t opcode, ...)
240 {
241 union wl_argument args[WL_CLOSURE_MAX_ARGS];
242 struct wl_object *object = &resource->object;
243 va_list ap;
244
245 va_start(ap, opcode);
246 wl_argument_from_va_list(object->interface->events[opcode].signature,
247 args, WL_CLOSURE_MAX_ARGS, ap);
248 va_end(ap);
249
250 wl_resource_post_event_array(resource, opcode, args);
251 }
252
253
254 WL_EXPORT void
wl_resource_queue_event_array(struct wl_resource * resource,uint32_t opcode,union wl_argument * args)255 wl_resource_queue_event_array(struct wl_resource *resource, uint32_t opcode,
256 union wl_argument *args)
257 {
258 handle_array(resource, opcode, args, wl_closure_queue);
259 }
260
261 WL_EXPORT void
wl_resource_queue_event(struct wl_resource * resource,uint32_t opcode,...)262 wl_resource_queue_event(struct wl_resource *resource, uint32_t opcode, ...)
263 {
264 union wl_argument args[WL_CLOSURE_MAX_ARGS];
265 struct wl_object *object = &resource->object;
266 va_list ap;
267
268 va_start(ap, opcode);
269 wl_argument_from_va_list(object->interface->events[opcode].signature,
270 args, WL_CLOSURE_MAX_ARGS, ap);
271 va_end(ap);
272
273 wl_resource_queue_event_array(resource, opcode, args);
274 }
275
276 static void
wl_resource_post_error_vargs(struct wl_resource * resource,uint32_t code,const char * msg,va_list argp)277 wl_resource_post_error_vargs(struct wl_resource *resource,
278 uint32_t code, const char *msg, va_list argp)
279 {
280 struct wl_client *client = resource->client;
281 char buffer[128];
282
283 vsnprintf(buffer, sizeof buffer, msg, argp);
284
285 /*
286 * When a client aborts, its resources are destroyed in id order,
287 * which means the display resource is destroyed first. If destruction
288 * of any later resources results in a protocol error, we end up here
289 * with a NULL display_resource. Do not try to send errors to an
290 * already dead client.
291 */
292 if (client->error || !client->display_resource)
293 return;
294
295 wl_resource_post_event(client->display_resource,
296 WL_DISPLAY_ERROR, resource, code, buffer);
297 client->error = 1;
298
299 }
300
301 WL_EXPORT void
wl_resource_post_error(struct wl_resource * resource,uint32_t code,const char * msg,...)302 wl_resource_post_error(struct wl_resource *resource,
303 uint32_t code, const char *msg, ...)
304 {
305 va_list ap;
306
307 va_start(ap, msg);
308 wl_resource_post_error_vargs(resource, code, msg, ap);
309 va_end(ap);
310 }
311
312 static void
destroy_client_with_error(struct wl_client * client,const char * reason)313 destroy_client_with_error(struct wl_client *client, const char *reason)
314 {
315 wl_log("%s (pid %u)\n", reason, client->ucred.pid);
316 wl_client_destroy(client);
317 }
318
319 static int
wl_client_connection_data(int fd,uint32_t mask,void * data)320 wl_client_connection_data(int fd, uint32_t mask, void *data)
321 {
322 struct wl_client *client = data;
323 struct wl_connection *connection = client->connection;
324 struct wl_resource *resource;
325 struct wl_object *object;
326 struct wl_closure *closure;
327 const struct wl_message *message;
328 uint32_t p[2];
329 uint32_t resource_flags;
330 int opcode, size, since;
331 int len;
332
333 if (mask & WL_EVENT_HANGUP) {
334 wl_client_destroy(client);
335 return 1;
336 }
337
338 if (mask & WL_EVENT_ERROR) {
339 destroy_client_with_error(client, "socket error");
340 return 1;
341 }
342
343 if (mask & WL_EVENT_WRITABLE) {
344 len = wl_connection_flush(connection);
345 if (len < 0 && errno != EAGAIN) {
346 destroy_client_with_error(
347 client, "failed to flush client connection");
348 return 1;
349 } else if (len >= 0) {
350 wl_event_source_fd_update(client->source,
351 WL_EVENT_READABLE);
352 }
353 }
354
355 len = 0;
356 if (mask & WL_EVENT_READABLE) {
357 len = wl_connection_read(connection);
358 if (len == 0 || (len < 0 && errno != EAGAIN)) {
359 destroy_client_with_error(
360 client, "failed to read client connection");
361 return 1;
362 }
363 }
364
365 while (len >= 0 && (size_t) len >= sizeof p) {
366 wl_connection_copy(connection, p, sizeof p);
367 opcode = p[1] & 0xffff;
368 size = p[1] >> 16;
369 if (len < size)
370 break;
371
372 resource = wl_map_lookup(&client->objects, p[0]);
373 resource_flags = wl_map_lookup_flags(&client->objects, p[0]);
374 if (resource == NULL) {
375 wl_resource_post_error(client->display_resource,
376 WL_DISPLAY_ERROR_INVALID_OBJECT,
377 "invalid object %u", p[0]);
378 break;
379 }
380
381 object = &resource->object;
382 if (opcode >= object->interface->method_count) {
383 wl_resource_post_error(client->display_resource,
384 WL_DISPLAY_ERROR_INVALID_METHOD,
385 "invalid method %d, object %s@%u",
386 opcode,
387 object->interface->name,
388 object->id);
389 break;
390 }
391
392 message = &object->interface->methods[opcode];
393 since = wl_message_get_since(message);
394 if (!(resource_flags & WL_MAP_ENTRY_LEGACY) &&
395 resource->version > 0 && resource->version < since) {
396 wl_resource_post_error(client->display_resource,
397 WL_DISPLAY_ERROR_INVALID_METHOD,
398 "invalid method %d (since %d < %d)"
399 ", object %s@%u",
400 opcode, resource->version, since,
401 object->interface->name,
402 object->id);
403 break;
404 }
405
406
407 closure = wl_connection_demarshal(client->connection, size,
408 &client->objects, message);
409
410 if (closure == NULL && errno == ENOMEM) {
411 wl_resource_post_no_memory(resource);
412 break;
413 } else if (closure == NULL ||
414 wl_closure_lookup_objects(closure, &client->objects) < 0) {
415 wl_resource_post_error(client->display_resource,
416 WL_DISPLAY_ERROR_INVALID_METHOD,
417 "invalid arguments for %s@%u.%s",
418 object->interface->name,
419 object->id,
420 message->name);
421 wl_closure_destroy(closure);
422 break;
423 }
424
425 log_closure(resource, closure, false);
426
427 if ((resource_flags & WL_MAP_ENTRY_LEGACY) ||
428 resource->dispatcher == NULL) {
429 wl_closure_invoke(closure, WL_CLOSURE_INVOKE_SERVER,
430 object, opcode, client);
431 } else {
432 wl_closure_dispatch(closure, resource->dispatcher,
433 object, opcode);
434 }
435
436 wl_closure_destroy(closure);
437
438 if (client->error)
439 break;
440
441 len = wl_connection_pending_input(connection);
442 }
443
444 if (client->error) {
445 destroy_client_with_error(client,
446 "error in client communication");
447 }
448
449 return 1;
450 }
451
452 /** Flush pending events to the client
453 *
454 * \param client The client object
455 *
456 * Events sent to clients are queued in a buffer and written to the
457 * socket later - typically when the compositor has handled all
458 * requests and goes back to block in the event loop. This function
459 * flushes all queued up events for a client immediately.
460 *
461 * \memberof wl_client
462 */
463 WL_EXPORT void
wl_client_flush(struct wl_client * client)464 wl_client_flush(struct wl_client *client)
465 {
466 wl_connection_flush(client->connection);
467 }
468
469 /** Get the display object for the given client
470 *
471 * \param client The client object
472 * \return The display object the client is associated with.
473 *
474 * \memberof wl_client
475 */
476 WL_EXPORT struct wl_display *
wl_client_get_display(struct wl_client * client)477 wl_client_get_display(struct wl_client *client)
478 {
479 return client->display;
480 }
481
482 static int
483 bind_display(struct wl_client *client, struct wl_display *display);
484
485 /** Create a client for the given file descriptor
486 *
487 * \param display The display object
488 * \param fd The file descriptor for the socket to the client
489 * \return The new client object or NULL on failure.
490 *
491 * Given a file descriptor corresponding to one end of a socket, this
492 * function will create a wl_client struct and add the new client to
493 * the compositors client list. At that point, the client is
494 * initialized and ready to run, as if the client had connected to the
495 * servers listening socket. When the client eventually sends
496 * requests to the compositor, the wl_client argument to the request
497 * handler will be the wl_client returned from this function.
498 *
499 * The other end of the socket can be passed to
500 * wl_display_connect_to_fd() on the client side or used with the
501 * WAYLAND_SOCKET environment variable on the client side.
502 *
503 * Listeners added with wl_display_add_client_created_listener() will
504 * be notified by this function after the client is fully constructed.
505 *
506 * On failure this function sets errno accordingly and returns NULL.
507 *
508 * \memberof wl_display
509 */
510 WL_EXPORT struct wl_client *
wl_client_create(struct wl_display * display,int fd)511 wl_client_create(struct wl_display *display, int fd)
512 {
513 struct wl_client *client;
514 socklen_t len;
515
516 client = zalloc(sizeof *client);
517 if (client == NULL)
518 return NULL;
519
520 wl_priv_signal_init(&client->resource_created_signal);
521 client->display = display;
522 client->source = wl_event_loop_add_fd(display->loop, fd,
523 WL_EVENT_READABLE,
524 wl_client_connection_data, client);
525
526 if (!client->source)
527 goto err_client;
528
529 len = sizeof client->ucred;
530 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED,
531 &client->ucred, &len) < 0)
532 goto err_source;
533
534 client->connection = wl_connection_create(fd);
535 if (client->connection == NULL)
536 goto err_source;
537
538 wl_map_init(&client->objects, WL_MAP_SERVER_SIDE);
539
540 if (wl_map_insert_at(&client->objects, 0, 0, NULL) < 0)
541 goto err_map;
542
543 wl_priv_signal_init(&client->destroy_signal);
544 if (bind_display(client, display) < 0)
545 goto err_map;
546
547 wl_list_insert(display->client_list.prev, &client->link);
548
549 wl_priv_signal_emit(&display->create_client_signal, client);
550
551 return client;
552
553 err_map:
554 wl_map_release(&client->objects);
555 wl_connection_destroy(client->connection);
556 err_source:
557 wl_event_source_remove(client->source);
558 err_client:
559 free(client);
560 return NULL;
561 }
562
563 /** Return Unix credentials for the client
564 *
565 * \param client The display object
566 * \param pid Returns the process ID
567 * \param uid Returns the user ID
568 * \param gid Returns the group ID
569 *
570 * This function returns the process ID, the user ID and the group ID
571 * for the given client. The credentials come from getsockopt() with
572 * SO_PEERCRED, on the client socket fd. All the pointers can be
573 * NULL, if the caller is not interested in a particular ID.
574 *
575 * Be aware that for clients that a compositor forks and execs and
576 * then connects using socketpair(), this function will return the
577 * credentials for the compositor. The credentials for the socketpair
578 * are set at creation time in the compositor.
579 *
580 * \memberof wl_client
581 */
582 WL_EXPORT void
wl_client_get_credentials(struct wl_client * client,pid_t * pid,uid_t * uid,gid_t * gid)583 wl_client_get_credentials(struct wl_client *client,
584 pid_t *pid, uid_t *uid, gid_t *gid)
585 {
586 if (pid)
587 *pid = client->ucred.pid;
588 if (uid)
589 *uid = client->ucred.uid;
590 if (gid)
591 *gid = client->ucred.gid;
592 }
593
594 /** Get the file descriptor for the client
595 *
596 * \param client The display object
597 * \return The file descriptor to use for the connection
598 *
599 * This function returns the file descriptor for the given client.
600 *
601 * Be sure to use the file descriptor from the client for inspection only.
602 * If the caller does anything to the file descriptor that changes its state,
603 * it will likely cause problems.
604 *
605 * See also wl_client_get_credentials().
606 * It is recommended that you evaluate whether wl_client_get_credentials()
607 * can be applied to your use case instead of this function.
608 *
609 * If you would like to distinguish just between the client and the compositor
610 * itself from the client's request, it can be done by getting the client
611 * credentials and by checking the PID of the client and the compositor's PID.
612 * Regarding the case in which the socketpair() is being used, you need to be
613 * careful. Please note the documentation for wl_client_get_credentials().
614 *
615 * This function can be used for a compositor to validate a request from
616 * a client if there are additional information provided from the client's
617 * file descriptor. For instance, suppose you can get the security contexts
618 * from the client's file descriptor. The compositor can validate the client's
619 * request with the contexts and make a decision whether it permits or deny it.
620 *
621 * \memberof wl_client
622 */
623 WL_EXPORT int
wl_client_get_fd(struct wl_client * client)624 wl_client_get_fd(struct wl_client *client)
625 {
626 return wl_connection_get_fd(client->connection);
627 }
628
629 /** Look up an object in the client name space
630 *
631 * \param client The client object
632 * \param id The object id
633 * \return The object or NULL if there is not object for the given ID
634 *
635 * This looks up an object in the client object name space by its
636 * object ID.
637 *
638 * \memberof wl_client
639 */
640 WL_EXPORT struct wl_resource *
wl_client_get_object(struct wl_client * client,uint32_t id)641 wl_client_get_object(struct wl_client *client, uint32_t id)
642 {
643 return wl_map_lookup(&client->objects, id);
644 }
645
646 WL_EXPORT void
wl_client_post_no_memory(struct wl_client * client)647 wl_client_post_no_memory(struct wl_client *client)
648 {
649 wl_resource_post_error(client->display_resource,
650 WL_DISPLAY_ERROR_NO_MEMORY, "no memory");
651 }
652
653 /** Report an internal server error
654 *
655 * \param client The client object
656 * \param msg A printf-style format string
657 * \param ... Format string arguments
658 *
659 * Report an unspecified internal implementation error and disconnect
660 * the client.
661 *
662 * \memberof wl_client
663 */
664 WL_EXPORT void
wl_client_post_implementation_error(struct wl_client * client,char const * msg,...)665 wl_client_post_implementation_error(struct wl_client *client,
666 char const *msg, ...)
667 {
668 va_list ap;
669
670 va_start(ap, msg);
671 wl_resource_post_error_vargs(client->display_resource,
672 WL_DISPLAY_ERROR_IMPLEMENTATION,
673 msg, ap);
674 va_end(ap);
675 }
676
677 WL_EXPORT void
wl_resource_post_no_memory(struct wl_resource * resource)678 wl_resource_post_no_memory(struct wl_resource *resource)
679 {
680 wl_resource_post_error(resource->client->display_resource,
681 WL_DISPLAY_ERROR_NO_MEMORY, "no memory");
682 }
683
684 /** Detect if a wl_resource uses the deprecated public definition.
685 *
686 * Before Wayland 1.2.0, the definition of struct wl_resource was public.
687 * It was made opaque just before 1.2.0, and later new fields were added.
688 * The new fields cannot be accessed if a program is using the deprecated
689 * defition, as there would not be memory allocated for them.
690 *
691 * The creation pattern for the deprecated definition was wl_resource_init()
692 * followed by wl_client_add_resource(). wl_resource_init() was an inline
693 * function and no longer exists, but binaries might still carry it.
694 * wl_client_add_resource() still exists for ABI compatiblity.
695 */
696 static bool
resource_is_deprecated(struct wl_resource * resource)697 resource_is_deprecated(struct wl_resource *resource)
698 {
699 struct wl_map *map = &resource->client->objects;
700 int id = resource->object.id;
701
702 /* wl_client_add_resource() marks deprecated resources with the flag. */
703 if (wl_map_lookup_flags(map, id) & WL_MAP_ENTRY_LEGACY)
704 return true;
705
706 return false;
707 }
708
709 static enum wl_iterator_result
destroy_resource(void * element,void * data,uint32_t flags)710 destroy_resource(void *element, void *data, uint32_t flags)
711 {
712 struct wl_resource *resource = element;
713
714 wl_signal_emit(&resource->deprecated_destroy_signal, resource);
715 /* Don't emit the new signal for deprecated resources, as that would
716 * access memory outside the bounds of the deprecated struct */
717 if (!resource_is_deprecated(resource))
718 wl_priv_signal_final_emit(&resource->destroy_signal, resource);
719
720 if (resource->destroy)
721 resource->destroy(resource);
722
723 if (!(flags & WL_MAP_ENTRY_LEGACY))
724 free(resource);
725
726 return WL_ITERATOR_CONTINUE;
727 }
728
729 WL_EXPORT void
wl_resource_destroy(struct wl_resource * resource)730 wl_resource_destroy(struct wl_resource *resource)
731 {
732 struct wl_client *client = resource->client;
733 uint32_t id;
734 uint32_t flags;
735
736 id = resource->object.id;
737 flags = wl_map_lookup_flags(&client->objects, id);
738 destroy_resource(resource, NULL, flags);
739
740 if (id < WL_SERVER_ID_START) {
741 if (client->display_resource) {
742 wl_resource_queue_event(client->display_resource,
743 WL_DISPLAY_DELETE_ID, id);
744 }
745 wl_map_insert_at(&client->objects, 0, id, NULL);
746 } else {
747 wl_map_remove(&client->objects, id);
748 }
749 }
750
751 WL_EXPORT uint32_t
wl_resource_get_id(struct wl_resource * resource)752 wl_resource_get_id(struct wl_resource *resource)
753 {
754 return resource->object.id;
755 }
756
757 WL_EXPORT struct wl_list *
wl_resource_get_link(struct wl_resource * resource)758 wl_resource_get_link(struct wl_resource *resource)
759 {
760 return &resource->link;
761 }
762
763 WL_EXPORT struct wl_resource *
wl_resource_from_link(struct wl_list * link)764 wl_resource_from_link(struct wl_list *link)
765 {
766 struct wl_resource *resource;
767
768 return wl_container_of(link, resource, link);
769 }
770
771 WL_EXPORT struct wl_resource *
wl_resource_find_for_client(struct wl_list * list,struct wl_client * client)772 wl_resource_find_for_client(struct wl_list *list, struct wl_client *client)
773 {
774 struct wl_resource *resource;
775
776 if (client == NULL)
777 return NULL;
778
779 wl_list_for_each(resource, list, link) {
780 if (resource->client == client)
781 return resource;
782 }
783
784 return NULL;
785 }
786
787 WL_EXPORT struct wl_client *
wl_resource_get_client(struct wl_resource * resource)788 wl_resource_get_client(struct wl_resource *resource)
789 {
790 return resource->client;
791 }
792
793 WL_EXPORT void
wl_resource_set_user_data(struct wl_resource * resource,void * data)794 wl_resource_set_user_data(struct wl_resource *resource, void *data)
795 {
796 resource->data = data;
797 }
798
799 WL_EXPORT void *
wl_resource_get_user_data(struct wl_resource * resource)800 wl_resource_get_user_data(struct wl_resource *resource)
801 {
802 return resource->data;
803 }
804
805 WL_EXPORT int
wl_resource_get_version(struct wl_resource * resource)806 wl_resource_get_version(struct wl_resource *resource)
807 {
808 return resource->version;
809 }
810
811 WL_EXPORT void
wl_resource_set_destructor(struct wl_resource * resource,wl_resource_destroy_func_t destroy)812 wl_resource_set_destructor(struct wl_resource *resource,
813 wl_resource_destroy_func_t destroy)
814 {
815 resource->destroy = destroy;
816 }
817
818 WL_EXPORT int
wl_resource_instance_of(struct wl_resource * resource,const struct wl_interface * interface,const void * implementation)819 wl_resource_instance_of(struct wl_resource *resource,
820 const struct wl_interface *interface,
821 const void *implementation)
822 {
823 return wl_interface_equal(resource->object.interface, interface) &&
824 resource->object.implementation == implementation;
825 }
826
827 WL_EXPORT void
wl_resource_add_destroy_listener(struct wl_resource * resource,struct wl_listener * listener)828 wl_resource_add_destroy_listener(struct wl_resource *resource,
829 struct wl_listener * listener)
830 {
831 if (resource_is_deprecated(resource))
832 wl_signal_add(&resource->deprecated_destroy_signal, listener);
833 else
834 wl_priv_signal_add(&resource->destroy_signal, listener);
835 }
836
837 WL_EXPORT struct wl_listener *
wl_resource_get_destroy_listener(struct wl_resource * resource,wl_notify_func_t notify)838 wl_resource_get_destroy_listener(struct wl_resource *resource,
839 wl_notify_func_t notify)
840 {
841 if (resource_is_deprecated(resource))
842 return wl_signal_get(&resource->deprecated_destroy_signal, notify);
843 return wl_priv_signal_get(&resource->destroy_signal, notify);
844 }
845
846 /** Retrieve the interface name (class) of a resource object.
847 *
848 * \param resource The resource object
849 *
850 * \memberof wl_resource
851 */
852 WL_EXPORT const char *
wl_resource_get_class(struct wl_resource * resource)853 wl_resource_get_class(struct wl_resource *resource)
854 {
855 return resource->object.interface->name;
856 }
857
858 WL_EXPORT void
wl_client_add_destroy_listener(struct wl_client * client,struct wl_listener * listener)859 wl_client_add_destroy_listener(struct wl_client *client,
860 struct wl_listener *listener)
861 {
862 wl_priv_signal_add(&client->destroy_signal, listener);
863 }
864
865 WL_EXPORT struct wl_listener *
wl_client_get_destroy_listener(struct wl_client * client,wl_notify_func_t notify)866 wl_client_get_destroy_listener(struct wl_client *client,
867 wl_notify_func_t notify)
868 {
869 return wl_priv_signal_get(&client->destroy_signal, notify);
870 }
871
872 WL_EXPORT void
wl_client_destroy(struct wl_client * client)873 wl_client_destroy(struct wl_client *client)
874 {
875 uint32_t serial = 0;
876
877 wl_priv_signal_final_emit(&client->destroy_signal, client);
878
879 wl_client_flush(client);
880 wl_map_for_each(&client->objects, destroy_resource, &serial);
881 wl_map_release(&client->objects);
882 wl_event_source_remove(client->source);
883 close(wl_connection_destroy(client->connection));
884 wl_list_remove(&client->link);
885 wl_list_remove(&client->resource_created_signal.listener_list);
886 free(client);
887 }
888
889 /* Check if a global filter is registered and use it if any.
890 *
891 * If no wl_global filter has been registered, this funtion will
892 * return true, allowing the wl_global to be visible to the wl_client
893 */
894 static bool
wl_global_is_visible(const struct wl_client * client,const struct wl_global * global)895 wl_global_is_visible(const struct wl_client *client,
896 const struct wl_global *global)
897 {
898 struct wl_display *display = client->display;
899
900 return (display->global_filter == NULL ||
901 display->global_filter(client, global, display->global_filter_data));
902 }
903
904 static void
registry_bind(struct wl_client * client,struct wl_resource * resource,uint32_t name,const char * interface,uint32_t version,uint32_t id)905 registry_bind(struct wl_client *client,
906 struct wl_resource *resource, uint32_t name,
907 const char *interface, uint32_t version, uint32_t id)
908 {
909 struct wl_global *global;
910 struct wl_display *display = resource->data;
911
912 wl_list_for_each(global, &display->global_list, link)
913 if (global->name == name)
914 break;
915
916 if (&global->link == &display->global_list)
917 wl_resource_post_error(resource,
918 WL_DISPLAY_ERROR_INVALID_OBJECT,
919 "invalid global %s (%d)", interface, name);
920 else if (version == 0)
921 wl_resource_post_error(resource,
922 WL_DISPLAY_ERROR_INVALID_OBJECT,
923 "invalid version for global %s (%d): 0 is not a valid version",
924 interface, name);
925 else if (global->version < version)
926 wl_resource_post_error(resource,
927 WL_DISPLAY_ERROR_INVALID_OBJECT,
928 "invalid version for global %s (%d): have %d, wanted %d",
929 interface, name, global->version, version);
930 else if (!wl_global_is_visible(client, global))
931 wl_resource_post_error(resource,
932 WL_DISPLAY_ERROR_INVALID_OBJECT,
933 "invalid global %s (%d)", interface, name);
934 else
935 global->bind(client, global->data, version, id);
936 }
937
938 static const struct wl_registry_interface registry_interface = {
939 registry_bind
940 };
941
942 static void
display_sync(struct wl_client * client,struct wl_resource * resource,uint32_t id)943 display_sync(struct wl_client *client,
944 struct wl_resource *resource, uint32_t id)
945 {
946 struct wl_resource *callback;
947 uint32_t serial;
948
949 callback = wl_resource_create(client, &wl_callback_interface, 1, id);
950 if (callback == NULL) {
951 wl_client_post_no_memory(client);
952 return;
953 }
954
955 serial = wl_display_get_serial(client->display);
956 wl_callback_send_done(callback, serial);
957 wl_resource_destroy(callback);
958 }
959
960 static void
unbind_resource(struct wl_resource * resource)961 unbind_resource(struct wl_resource *resource)
962 {
963 wl_list_remove(&resource->link);
964 }
965
966 static void
display_get_registry(struct wl_client * client,struct wl_resource * resource,uint32_t id)967 display_get_registry(struct wl_client *client,
968 struct wl_resource *resource, uint32_t id)
969 {
970 struct wl_display *display = resource->data;
971 struct wl_resource *registry_resource;
972 struct wl_global *global;
973
974 registry_resource =
975 wl_resource_create(client, &wl_registry_interface, 1, id);
976 if (registry_resource == NULL) {
977 wl_client_post_no_memory(client);
978 return;
979 }
980
981 wl_resource_set_implementation(registry_resource,
982 ®istry_interface,
983 display, unbind_resource);
984
985 wl_list_insert(&display->registry_resource_list,
986 ®istry_resource->link);
987
988 wl_list_for_each(global, &display->global_list, link)
989 if (wl_global_is_visible(client, global))
990 wl_resource_post_event(registry_resource,
991 WL_REGISTRY_GLOBAL,
992 global->name,
993 global->interface->name,
994 global->version);
995 }
996
997 static const struct wl_display_interface display_interface = {
998 display_sync,
999 display_get_registry
1000 };
1001
1002 static void
destroy_client_display_resource(struct wl_resource * resource)1003 destroy_client_display_resource(struct wl_resource *resource)
1004 {
1005 resource->client->display_resource = NULL;
1006 }
1007
1008 static int
bind_display(struct wl_client * client,struct wl_display * display)1009 bind_display(struct wl_client *client, struct wl_display *display)
1010 {
1011 client->display_resource =
1012 wl_resource_create(client, &wl_display_interface, 1, 1);
1013 if (client->display_resource == NULL) {
1014 /* DON'T send no-memory error to client - it has no
1015 * resource to which it could post the event */
1016 return -1;
1017 }
1018
1019 wl_resource_set_implementation(client->display_resource,
1020 &display_interface, display,
1021 destroy_client_display_resource);
1022 return 0;
1023 }
1024
1025 /** Create Wayland display object.
1026 *
1027 * \return The Wayland display object. Null if failed to create
1028 *
1029 * This creates the wl_display object.
1030 *
1031 * \memberof wl_display
1032 */
1033 WL_EXPORT struct wl_display *
wl_display_create(void)1034 wl_display_create(void)
1035 {
1036 struct wl_display *display;
1037 const char *debug;
1038
1039 debug = getenv("WAYLAND_DEBUG");
1040 if (debug && (strstr(debug, "server") || strstr(debug, "1")))
1041 debug_server = 1;
1042
1043 display = malloc(sizeof *display);
1044 if (display == NULL)
1045 return NULL;
1046
1047 display->loop = wl_event_loop_create();
1048 if (display->loop == NULL) {
1049 free(display);
1050 return NULL;
1051 }
1052
1053 wl_list_init(&display->global_list);
1054 wl_list_init(&display->socket_list);
1055 wl_list_init(&display->client_list);
1056 wl_list_init(&display->registry_resource_list);
1057 wl_list_init(&display->protocol_loggers);
1058
1059 wl_priv_signal_init(&display->destroy_signal);
1060 wl_priv_signal_init(&display->create_client_signal);
1061
1062 display->id = 1;
1063 display->serial = 0;
1064
1065 display->global_filter = NULL;
1066 display->global_filter_data = NULL;
1067
1068 wl_array_init(&display->additional_shm_formats);
1069
1070 return display;
1071 }
1072
1073 static void
wl_socket_destroy(struct wl_socket * s)1074 wl_socket_destroy(struct wl_socket *s)
1075 {
1076 if (s->source)
1077 wl_event_source_remove(s->source);
1078 if (s->addr.sun_path[0])
1079 unlink(s->addr.sun_path);
1080 if (s->fd >= 0)
1081 close(s->fd);
1082 if (s->lock_addr[0])
1083 unlink(s->lock_addr);
1084 if (s->fd_lock >= 0)
1085 close(s->fd_lock);
1086
1087 free(s);
1088 }
1089
1090 static struct wl_socket *
wl_socket_alloc(void)1091 wl_socket_alloc(void)
1092 {
1093 struct wl_socket *s;
1094
1095 s = zalloc(sizeof *s);
1096 if (!s)
1097 return NULL;
1098
1099 s->fd = -1;
1100 s->fd_lock = -1;
1101
1102 return s;
1103 }
1104
1105 /** Destroy Wayland display object.
1106 *
1107 * \param display The Wayland display object which should be destroyed.
1108 * \return None.
1109 *
1110 * This function emits the wl_display destroy signal, releases
1111 * all the sockets added to this display, free's all the globals associated
1112 * with this display, free's memory of additional shared memory formats and
1113 * destroy the display object.
1114 *
1115 * \sa wl_display_add_destroy_listener
1116 *
1117 * \memberof wl_display
1118 */
1119 WL_EXPORT void
wl_display_destroy(struct wl_display * display)1120 wl_display_destroy(struct wl_display *display)
1121 {
1122 struct wl_socket *s, *next;
1123 struct wl_global *global, *gnext;
1124
1125 wl_priv_signal_final_emit(&display->destroy_signal, display);
1126
1127 wl_list_for_each_safe(s, next, &display->socket_list, link) {
1128 wl_socket_destroy(s);
1129 }
1130 wl_event_loop_destroy(display->loop);
1131
1132 wl_list_for_each_safe(global, gnext, &display->global_list, link)
1133 free(global);
1134
1135 wl_array_release(&display->additional_shm_formats);
1136
1137 wl_list_remove(&display->protocol_loggers);
1138
1139 free(display);
1140 }
1141
1142 /** Set a filter function for global objects
1143 *
1144 * \param display The Wayland display object.
1145 * \param filter The global filter funtion.
1146 * \param data User data to be associated with the global filter.
1147 * \return None.
1148 *
1149 * Set a filter for the wl_display to advertise or hide global objects
1150 * to clients.
1151 * The set filter will be used during wl_global advertisment to
1152 * determine whether a global object should be advertised to a
1153 * given client, and during wl_global binding to determine whether
1154 * a given client should be allowed to bind to a global.
1155 *
1156 * Clients that try to bind to a global that was filtered out will
1157 * have an error raised.
1158 *
1159 * Setting the filter NULL will result in all globals being
1160 * advertised to all clients. The default is no filter.
1161 *
1162 * \memberof wl_display
1163 */
1164 WL_EXPORT void
wl_display_set_global_filter(struct wl_display * display,wl_display_global_filter_func_t filter,void * data)1165 wl_display_set_global_filter(struct wl_display *display,
1166 wl_display_global_filter_func_t filter,
1167 void *data)
1168 {
1169 display->global_filter = filter;
1170 display->global_filter_data = data;
1171 }
1172
1173 WL_EXPORT struct wl_global *
wl_global_create(struct wl_display * display,const struct wl_interface * interface,int version,void * data,wl_global_bind_func_t bind)1174 wl_global_create(struct wl_display *display,
1175 const struct wl_interface *interface, int version,
1176 void *data, wl_global_bind_func_t bind)
1177 {
1178 struct wl_global *global;
1179 struct wl_resource *resource;
1180
1181 if (version < 1) {
1182 wl_log("wl_global_create: failing to create interface "
1183 "'%s' with version %d because it is less than 1\n",
1184 interface->name, version);
1185 return NULL;
1186 }
1187
1188 if (version > interface->version) {
1189 wl_log("wl_global_create: implemented version for '%s' "
1190 "higher than interface version (%d > %d)\n",
1191 interface->name, version, interface->version);
1192 return NULL;
1193 }
1194
1195 global = malloc(sizeof *global);
1196 if (global == NULL)
1197 return NULL;
1198
1199 global->display = display;
1200 global->name = display->id++;
1201 global->interface = interface;
1202 global->version = version;
1203 global->data = data;
1204 global->bind = bind;
1205 wl_list_insert(display->global_list.prev, &global->link);
1206
1207 wl_list_for_each(resource, &display->registry_resource_list, link)
1208 wl_resource_post_event(resource,
1209 WL_REGISTRY_GLOBAL,
1210 global->name,
1211 global->interface->name,
1212 global->version);
1213
1214 return global;
1215 }
1216
1217 WL_EXPORT void
wl_global_destroy(struct wl_global * global)1218 wl_global_destroy(struct wl_global *global)
1219 {
1220 struct wl_display *display = global->display;
1221 struct wl_resource *resource;
1222
1223 wl_list_for_each(resource, &display->registry_resource_list, link)
1224 wl_resource_post_event(resource, WL_REGISTRY_GLOBAL_REMOVE,
1225 global->name);
1226 wl_list_remove(&global->link);
1227 free(global);
1228 }
1229
1230 WL_EXPORT const struct wl_interface *
wl_global_get_interface(const struct wl_global * global)1231 wl_global_get_interface(const struct wl_global *global)
1232 {
1233 return global->interface;
1234 }
1235
1236 WL_EXPORT void *
wl_global_get_user_data(const struct wl_global * global)1237 wl_global_get_user_data(const struct wl_global *global)
1238 {
1239 return global->data;
1240 }
1241
1242 /** Get the current serial number
1243 *
1244 * \param display The display object
1245 *
1246 * This function returns the most recent serial number, but does not
1247 * increment it.
1248 *
1249 * \memberof wl_display
1250 */
1251 WL_EXPORT uint32_t
wl_display_get_serial(struct wl_display * display)1252 wl_display_get_serial(struct wl_display *display)
1253 {
1254 return display->serial;
1255 }
1256
1257 /** Get the next serial number
1258 *
1259 * \param display The display object
1260 *
1261 * This function increments the display serial number and returns the
1262 * new value.
1263 *
1264 * \memberof wl_display
1265 */
1266 WL_EXPORT uint32_t
wl_display_next_serial(struct wl_display * display)1267 wl_display_next_serial(struct wl_display *display)
1268 {
1269 display->serial++;
1270
1271 return display->serial;
1272 }
1273
1274 WL_EXPORT struct wl_event_loop *
wl_display_get_event_loop(struct wl_display * display)1275 wl_display_get_event_loop(struct wl_display *display)
1276 {
1277 return display->loop;
1278 }
1279
1280 WL_EXPORT void
wl_display_terminate(struct wl_display * display)1281 wl_display_terminate(struct wl_display *display)
1282 {
1283 display->run = 0;
1284 }
1285
1286 WL_EXPORT void
wl_display_run(struct wl_display * display)1287 wl_display_run(struct wl_display *display)
1288 {
1289 display->run = 1;
1290
1291 while (display->run) {
1292 wl_display_flush_clients(display);
1293 wl_event_loop_dispatch(display->loop, -1);
1294 }
1295 }
1296
1297 WL_EXPORT void
wl_display_flush_clients(struct wl_display * display)1298 wl_display_flush_clients(struct wl_display *display)
1299 {
1300 struct wl_client *client, *next;
1301 int ret;
1302
1303 wl_list_for_each_safe(client, next, &display->client_list, link) {
1304 ret = wl_connection_flush(client->connection);
1305 if (ret < 0 && errno == EAGAIN) {
1306 wl_event_source_fd_update(client->source,
1307 WL_EVENT_WRITABLE |
1308 WL_EVENT_READABLE);
1309 } else if (ret < 0) {
1310 wl_client_destroy(client);
1311 }
1312 }
1313 }
1314
1315 /** Destroy all clients connected to the display
1316 *
1317 * \param display The display object
1318 *
1319 * This function should be called right before wl_display_destroy() to ensure
1320 * all client resources are closed properly. Destroying a client from within
1321 * wl_display_destroy_clients() is safe, but creating one will leak resources
1322 * and raise a warning.
1323 *
1324 * \memberof wl_display
1325 */
1326 WL_EXPORT void
wl_display_destroy_clients(struct wl_display * display)1327 wl_display_destroy_clients(struct wl_display *display)
1328 {
1329 struct wl_list tmp_client_list, *pos;
1330 struct wl_client *client;
1331
1332 /* Move the whole client list to a temporary head because some new clients
1333 * might be added to the original head. */
1334 wl_list_init(&tmp_client_list);
1335 wl_list_insert_list(&tmp_client_list, &display->client_list);
1336 wl_list_init(&display->client_list);
1337
1338 /* wl_list_for_each_safe isn't enough here: it fails if the next client is
1339 * destroyed by the destroy handler of the current one. */
1340 while (!wl_list_empty(&tmp_client_list)) {
1341 pos = tmp_client_list.next;
1342 client = wl_container_of(pos, client, link);
1343
1344 wl_client_destroy(client);
1345 }
1346
1347 if (!wl_list_empty(&display->client_list)) {
1348 wl_log("wl_display_destroy_clients: cannot destroy all clients because "
1349 "new ones were created by destroy callbacks\n");
1350 }
1351 }
1352
1353 static int
socket_data(int fd,uint32_t mask,void * data)1354 socket_data(int fd, uint32_t mask, void *data)
1355 {
1356 struct wl_display *display = data;
1357 struct sockaddr_un name;
1358 socklen_t length;
1359 int client_fd;
1360
1361 length = sizeof name;
1362 client_fd = wl_os_accept_cloexec(fd, (struct sockaddr *) &name,
1363 &length);
1364 if (client_fd < 0)
1365 wl_log("failed to accept: %m\n");
1366 else
1367 if (!wl_client_create(display, client_fd))
1368 close(client_fd);
1369
1370 return 1;
1371 }
1372
1373 static int
wl_socket_lock(struct wl_socket * socket)1374 wl_socket_lock(struct wl_socket *socket)
1375 {
1376 struct stat socket_stat;
1377
1378 snprintf(socket->lock_addr, sizeof socket->lock_addr,
1379 "%s%s", socket->addr.sun_path, LOCK_SUFFIX);
1380
1381 socket->fd_lock = open(socket->lock_addr, O_CREAT | O_CLOEXEC,
1382 (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP));
1383
1384 if (socket->fd_lock < 0) {
1385 wl_log("unable to open lockfile %s check permissions\n",
1386 socket->lock_addr);
1387 goto err;
1388 }
1389
1390 if (flock(socket->fd_lock, LOCK_EX | LOCK_NB) < 0) {
1391 wl_log("unable to lock lockfile %s, maybe another compositor is running\n",
1392 socket->lock_addr);
1393 goto err_fd;
1394 }
1395
1396 if (stat(socket->addr.sun_path, &socket_stat) < 0 ) {
1397 if (errno != ENOENT) {
1398 wl_log("did not manage to stat file %s\n",
1399 socket->addr.sun_path);
1400 goto err_fd;
1401 }
1402 } else if (socket_stat.st_mode & S_IWUSR ||
1403 socket_stat.st_mode & S_IWGRP) {
1404 unlink(socket->addr.sun_path);
1405 }
1406
1407 return 0;
1408 err_fd:
1409 close(socket->fd_lock);
1410 socket->fd_lock = -1;
1411 err:
1412 *socket->lock_addr = 0;
1413 /* we did not set this value here, but without lock the
1414 * socket won't be created anyway. This prevents the
1415 * wl_socket_destroy from unlinking already existing socket
1416 * created by other compositor */
1417 *socket->addr.sun_path = 0;
1418
1419 return -1;
1420 }
1421
1422 static int
wl_socket_init_for_display_name(struct wl_socket * s,const char * name)1423 wl_socket_init_for_display_name(struct wl_socket *s, const char *name)
1424 {
1425 int name_size;
1426 const char *runtime_dir;
1427
1428 runtime_dir = getenv("XDG_RUNTIME_DIR");
1429 if (!runtime_dir) {
1430 wl_log("error: XDG_RUNTIME_DIR not set in the environment\n");
1431
1432 /* to prevent programs reporting
1433 * "failed to add socket: Success" */
1434 errno = ENOENT;
1435 return -1;
1436 }
1437
1438 s->addr.sun_family = AF_LOCAL;
1439 name_size = snprintf(s->addr.sun_path, sizeof s->addr.sun_path,
1440 "%s/%s", runtime_dir, name) + 1;
1441
1442 s->display_name = (s->addr.sun_path + name_size - 1) - strlen(name);
1443
1444 assert(name_size > 0);
1445 if (name_size > (int)sizeof s->addr.sun_path) {
1446 wl_log("error: socket path \"%s/%s\" plus null terminator"
1447 " exceeds 108 bytes\n", runtime_dir, name);
1448 *s->addr.sun_path = 0;
1449 /* to prevent programs reporting
1450 * "failed to add socket: Success" */
1451 errno = ENAMETOOLONG;
1452 return -1;
1453 }
1454
1455 return 0;
1456 }
1457
1458 static int
_wl_display_add_socket(struct wl_display * display,struct wl_socket * s)1459 _wl_display_add_socket(struct wl_display *display, struct wl_socket *s)
1460 {
1461 socklen_t size;
1462
1463 s->fd = wl_os_socket_cloexec(PF_LOCAL, SOCK_STREAM, 0);
1464 if (s->fd < 0) {
1465 return -1;
1466 }
1467
1468 size = offsetof (struct sockaddr_un, sun_path) + strlen(s->addr.sun_path);
1469 if (bind(s->fd, (struct sockaddr *) &s->addr, size) < 0) {
1470 wl_log("bind() failed with error: %m\n");
1471 return -1;
1472 }
1473
1474 if (listen(s->fd, 128) < 0) {
1475 wl_log("listen() failed with error: %m\n");
1476 return -1;
1477 }
1478
1479 s->source = wl_event_loop_add_fd(display->loop, s->fd,
1480 WL_EVENT_READABLE,
1481 socket_data, display);
1482 if (s->source == NULL) {
1483 return -1;
1484 }
1485
1486 wl_list_insert(display->socket_list.prev, &s->link);
1487 return 0;
1488 }
1489
1490 WL_EXPORT const char *
wl_display_add_socket_auto(struct wl_display * display)1491 wl_display_add_socket_auto(struct wl_display *display)
1492 {
1493 struct wl_socket *s;
1494 int displayno = 0;
1495 char display_name[16] = "";
1496
1497 /* A reasonable number of maximum default sockets. If
1498 * you need more than this, use the explicit add_socket API. */
1499 const int MAX_DISPLAYNO = 32;
1500
1501 s = wl_socket_alloc();
1502 if (s == NULL)
1503 return NULL;
1504
1505 do {
1506 snprintf(display_name, sizeof display_name, "wayland-%d", displayno);
1507 if (wl_socket_init_for_display_name(s, display_name) < 0) {
1508 wl_socket_destroy(s);
1509 return NULL;
1510 }
1511
1512 if (wl_socket_lock(s) < 0)
1513 continue;
1514
1515 if (_wl_display_add_socket(display, s) < 0) {
1516 wl_socket_destroy(s);
1517 return NULL;
1518 }
1519
1520 return s->display_name;
1521 } while (displayno++ < MAX_DISPLAYNO);
1522
1523 /* Ran out of display names. */
1524 wl_socket_destroy(s);
1525 errno = EINVAL;
1526 return NULL;
1527 }
1528
1529 /** Add a socket with an existing fd to Wayland display for the clients to connect.
1530 *
1531 * \param display Wayland display to which the socket should be added.
1532 * \param sock_fd The existing socket file descriptor to be used
1533 * \return 0 if success. -1 if failed.
1534 *
1535 * The existing socket fd must already be created, opened, and locked.
1536 * The fd must be properly set to CLOEXEC and bound to a socket file
1537 * with both bind() and listen() already called.
1538 *
1539 * \memberof wl_display
1540 */
1541 WL_EXPORT int
wl_display_add_socket_fd(struct wl_display * display,int sock_fd)1542 wl_display_add_socket_fd(struct wl_display *display, int sock_fd)
1543 {
1544 struct wl_socket *s;
1545 struct stat buf;
1546
1547 /* Require a valid fd or fail */
1548 if (sock_fd < 0 || fstat(sock_fd, &buf) < 0 || !S_ISSOCK(buf.st_mode)) {
1549 return -1;
1550 }
1551
1552 s = wl_socket_alloc();
1553 if (s == NULL)
1554 return -1;
1555
1556 s->source = wl_event_loop_add_fd(display->loop, sock_fd,
1557 WL_EVENT_READABLE,
1558 socket_data, display);
1559 if (s->source == NULL) {
1560 wl_log("failed to establish event source\n");
1561 wl_socket_destroy(s);
1562 return -1;
1563 }
1564
1565 /* Reuse the existing fd */
1566 s->fd = sock_fd;
1567
1568 wl_list_insert(display->socket_list.prev, &s->link);
1569
1570 return 0;
1571 }
1572
1573 /** Add a socket to Wayland display for the clients to connect.
1574 *
1575 * \param display Wayland display to which the socket should be added.
1576 * \param name Name of the Unix socket.
1577 * \return 0 if success. -1 if failed.
1578 *
1579 * This adds a Unix socket to Wayland display which can be used by clients to
1580 * connect to Wayland display.
1581 *
1582 * If NULL is passed as name, then it would look for WAYLAND_DISPLAY env
1583 * variable for the socket name. If WAYLAND_DISPLAY is not set, then default
1584 * wayland-0 is used.
1585 *
1586 * The Unix socket will be created in the directory pointed to by environment
1587 * variable XDG_RUNTIME_DIR. If XDG_RUNTIME_DIR is not set, then this function
1588 * fails and returns -1.
1589 *
1590 * The length of socket path, i.e., the path set in XDG_RUNTIME_DIR and the
1591 * socket name, must not exceed the maximum length of a Unix socket path.
1592 * The function also fails if the user do not have write permission in the
1593 * XDG_RUNTIME_DIR path or if the socket name is already in use.
1594 *
1595 * \memberof wl_display
1596 */
1597 WL_EXPORT int
wl_display_add_socket(struct wl_display * display,const char * name)1598 wl_display_add_socket(struct wl_display *display, const char *name)
1599 {
1600 struct wl_socket *s;
1601
1602 s = wl_socket_alloc();
1603 if (s == NULL)
1604 return -1;
1605
1606 if (name == NULL)
1607 name = getenv("WAYLAND_DISPLAY");
1608 if (name == NULL)
1609 name = "wayland-0";
1610
1611 if (wl_socket_init_for_display_name(s, name) < 0) {
1612 wl_socket_destroy(s);
1613 return -1;
1614 }
1615
1616 if (wl_socket_lock(s) < 0) {
1617 wl_socket_destroy(s);
1618 return -1;
1619 }
1620
1621 if (_wl_display_add_socket(display, s) < 0) {
1622 wl_socket_destroy(s);
1623 return -1;
1624 }
1625
1626 return 0;
1627 }
1628
1629 WL_EXPORT void
wl_display_add_destroy_listener(struct wl_display * display,struct wl_listener * listener)1630 wl_display_add_destroy_listener(struct wl_display *display,
1631 struct wl_listener *listener)
1632 {
1633 wl_priv_signal_add(&display->destroy_signal, listener);
1634 }
1635
1636 /** Registers a listener for the client connection signal.
1637 * When a new client object is created, \a listener will be notified, carrying
1638 * a pointer to the new wl_client object.
1639 *
1640 * \ref wl_client_create
1641 * \ref wl_display
1642 * \ref wl_listener
1643 *
1644 * \param display The display object
1645 * \param listener Signal handler object
1646 */
1647 WL_EXPORT void
wl_display_add_client_created_listener(struct wl_display * display,struct wl_listener * listener)1648 wl_display_add_client_created_listener(struct wl_display *display,
1649 struct wl_listener *listener)
1650 {
1651 wl_priv_signal_add(&display->create_client_signal, listener);
1652 }
1653
1654 WL_EXPORT struct wl_listener *
wl_display_get_destroy_listener(struct wl_display * display,wl_notify_func_t notify)1655 wl_display_get_destroy_listener(struct wl_display *display,
1656 wl_notify_func_t notify)
1657 {
1658 return wl_priv_signal_get(&display->destroy_signal, notify);
1659 }
1660
1661 WL_EXPORT void
wl_resource_set_implementation(struct wl_resource * resource,const void * implementation,void * data,wl_resource_destroy_func_t destroy)1662 wl_resource_set_implementation(struct wl_resource *resource,
1663 const void *implementation,
1664 void *data, wl_resource_destroy_func_t destroy)
1665 {
1666 resource->object.implementation = implementation;
1667 resource->data = data;
1668 resource->destroy = destroy;
1669 resource->dispatcher = NULL;
1670 }
1671
1672 WL_EXPORT void
wl_resource_set_dispatcher(struct wl_resource * resource,wl_dispatcher_func_t dispatcher,const void * implementation,void * data,wl_resource_destroy_func_t destroy)1673 wl_resource_set_dispatcher(struct wl_resource *resource,
1674 wl_dispatcher_func_t dispatcher,
1675 const void *implementation,
1676 void *data, wl_resource_destroy_func_t destroy)
1677 {
1678 resource->dispatcher = dispatcher;
1679 resource->object.implementation = implementation;
1680 resource->data = data;
1681 resource->destroy = destroy;
1682 }
1683
1684 /** Create a new resource object
1685 *
1686 * \param client The client owner of the new resource.
1687 * \param interface The interface of the new resource.
1688 * \param version The version of the new resource.
1689 * \param id The id of the new resource. If 0, an available id will be used.
1690 *
1691 * Listeners added with \a wl_client_add_resource_created_listener will be
1692 * notified at the end of this function.
1693 *
1694 * \memberof wl_resource
1695 */
1696 WL_EXPORT struct wl_resource *
wl_resource_create(struct wl_client * client,const struct wl_interface * interface,int version,uint32_t id)1697 wl_resource_create(struct wl_client *client,
1698 const struct wl_interface *interface,
1699 int version, uint32_t id)
1700 {
1701 struct wl_resource *resource;
1702
1703 resource = malloc(sizeof *resource);
1704 if (resource == NULL)
1705 return NULL;
1706
1707 if (id == 0)
1708 id = wl_map_insert_new(&client->objects, 0, NULL);
1709
1710 resource->object.id = id;
1711 resource->object.interface = interface;
1712 resource->object.implementation = NULL;
1713
1714 wl_signal_init(&resource->deprecated_destroy_signal);
1715 wl_priv_signal_init(&resource->destroy_signal);
1716
1717 resource->destroy = NULL;
1718 resource->client = client;
1719 resource->data = NULL;
1720 resource->version = version;
1721 resource->dispatcher = NULL;
1722
1723 if (wl_map_insert_at(&client->objects, 0, id, resource) < 0) {
1724 wl_resource_post_error(client->display_resource,
1725 WL_DISPLAY_ERROR_INVALID_OBJECT,
1726 "invalid new id %d", id);
1727 free(resource);
1728 return NULL;
1729 }
1730
1731 wl_priv_signal_emit(&client->resource_created_signal, resource);
1732 return resource;
1733 }
1734
1735 WL_EXPORT void
wl_log_set_handler_server(wl_log_func_t handler)1736 wl_log_set_handler_server(wl_log_func_t handler)
1737 {
1738 wl_log_handler = handler;
1739 }
1740
1741 /** Adds a new protocol logger.
1742 *
1743 * When a new protocol message arrives or is sent from the server
1744 * all the protocol logger functions will be called, carrying the
1745 * \a user_data pointer, the type of the message (request or
1746 * event) and the actual message.
1747 * The lifetime of the messages passed to the logger function ends
1748 * when they return so the messages cannot be stored and accessed
1749 * later.
1750 *
1751 * \a errno is set on error.
1752 *
1753 * \param display The display object
1754 * \param func The function to call to log a new protocol message
1755 * \param user_data The user data pointer to pass to \a func
1756 *
1757 * \return The protol logger object on success, NULL on failure.
1758 *
1759 * \sa wl_protocol_logger_destroy
1760 *
1761 * \memberof wl_display
1762 */
1763 WL_EXPORT struct wl_protocol_logger *
wl_display_add_protocol_logger(struct wl_display * display,wl_protocol_logger_func_t func,void * user_data)1764 wl_display_add_protocol_logger(struct wl_display *display,
1765 wl_protocol_logger_func_t func, void *user_data)
1766 {
1767 struct wl_protocol_logger *logger;
1768
1769 logger = malloc(sizeof *logger);
1770 if (!logger)
1771 return NULL;
1772
1773 logger->func = func;
1774 logger->user_data = user_data;
1775 wl_list_insert(&display->protocol_loggers, &logger->link);
1776
1777 return logger;
1778 }
1779
1780 /** Destroys a protocol logger.
1781 *
1782 * This function destroys a protocol logger and removes it from the display
1783 * it was added to with \a wl_display_add_protocol_logger.
1784 * The \a logger object becomes invalid after calling this function.
1785 *
1786 * \sa wl_display_add_protocol_logger
1787 *
1788 * \memberof wl_protocol_logger
1789 */
1790 WL_EXPORT void
wl_protocol_logger_destroy(struct wl_protocol_logger * logger)1791 wl_protocol_logger_destroy(struct wl_protocol_logger *logger)
1792 {
1793 wl_list_remove(&logger->link);
1794 free(logger);
1795 }
1796
1797 /** Add support for a wl_shm pixel format
1798 *
1799 * \param display The display object
1800 * \param format The wl_shm pixel format to advertise
1801 * \return A pointer to the wl_shm format that was added to the list
1802 * or NULL if adding it to the list failed.
1803 *
1804 * Add the specified wl_shm format to the list of formats the wl_shm
1805 * object advertises when a client binds to it. Adding a format to
1806 * the list means that clients will know that the compositor supports
1807 * this format and may use it for creating wl_shm buffers. The
1808 * compositor must be able to handle the pixel format when a client
1809 * requests it.
1810 *
1811 * The compositor by default supports WL_SHM_FORMAT_ARGB8888 and
1812 * WL_SHM_FORMAT_XRGB8888.
1813 *
1814 * \memberof wl_display
1815 */
1816 WL_EXPORT uint32_t *
wl_display_add_shm_format(struct wl_display * display,uint32_t format)1817 wl_display_add_shm_format(struct wl_display *display, uint32_t format)
1818 {
1819 uint32_t *p = NULL;
1820
1821 p = wl_array_add(&display->additional_shm_formats, sizeof *p);
1822
1823 if (p != NULL)
1824 *p = format;
1825 return p;
1826 }
1827
1828 /**
1829 * Get list of additional wl_shm pixel formats
1830 *
1831 * \param display The display object
1832 *
1833 * This function returns the list of addition wl_shm pixel formats
1834 * that the compositor supports. WL_SHM_FORMAT_ARGB8888 and
1835 * WL_SHM_FORMAT_XRGB8888 are always supported and not included in the
1836 * array, but all formats added through wl_display_add_shm_format()
1837 * will be in the array.
1838 *
1839 * \sa wl_display_add_shm_format()
1840 *
1841 * \private
1842 *
1843 * \memberof wl_display
1844 */
1845 struct wl_array *
wl_display_get_additional_shm_formats(struct wl_display * display)1846 wl_display_get_additional_shm_formats(struct wl_display *display)
1847 {
1848 return &display->additional_shm_formats;
1849 }
1850
1851 /** Get the list of currently connected clients
1852 *
1853 * \param display The display object
1854 *
1855 * This function returns a pointer to the list of clients currently
1856 * connected to the display. You can iterate on the list by using
1857 * the \a wl_client_for_each macro.
1858 * The returned value is valid for the lifetime of the \a display.
1859 * You must not modify the returned list, but only access it.
1860 *
1861 * \sa wl_client_for_each()
1862 * \sa wl_client_get_link()
1863 * \sa wl_client_from_link()
1864 *
1865 * \memberof wl_display
1866 */
1867 WL_EXPORT struct wl_list *
wl_display_get_client_list(struct wl_display * display)1868 wl_display_get_client_list(struct wl_display *display)
1869 {
1870 return &display->client_list;
1871 }
1872
1873 /** Get the link by which a client is inserted in the client list
1874 *
1875 * \param client The client object
1876 *
1877 * \sa wl_client_for_each()
1878 * \sa wl_display_get_client_list()
1879 * \sa wl_client_from_link()
1880 *
1881 * \memberof wl_client
1882 */
1883 WL_EXPORT struct wl_list *
wl_client_get_link(struct wl_client * client)1884 wl_client_get_link(struct wl_client *client)
1885 {
1886 return &client->link;
1887 }
1888
1889 /** Get a wl_client by its link
1890 *
1891 * \param link The link of a wl_client
1892 *
1893 * \sa wl_client_for_each()
1894 * \sa wl_display_get_client_list()
1895 * \sa wl_client_get_link()
1896 *
1897 * \memberof wl_client
1898 */
1899 WL_EXPORT struct wl_client *
wl_client_from_link(struct wl_list * link)1900 wl_client_from_link(struct wl_list *link)
1901 {
1902 return container_of(link, struct wl_client, link);
1903 }
1904
1905 /** Add a listener for the client's resource creation signal
1906 *
1907 * \param client The client object
1908 * \param listener The listener to be added
1909 *
1910 * When a new resource is created for this client the listener
1911 * will be notified, carrying the new resource as the data argument.
1912 *
1913 * \memberof wl_client
1914 */
1915 WL_EXPORT void
wl_client_add_resource_created_listener(struct wl_client * client,struct wl_listener * listener)1916 wl_client_add_resource_created_listener(struct wl_client *client,
1917 struct wl_listener *listener)
1918 {
1919 wl_priv_signal_add(&client->resource_created_signal, listener);
1920 }
1921
1922 struct wl_resource_iterator_context {
1923 void *user_data;
1924 wl_client_for_each_resource_iterator_func_t it;
1925 };
1926
1927 static enum wl_iterator_result
resource_iterator_helper(void * res,void * user_data,uint32_t flags)1928 resource_iterator_helper(void *res, void *user_data, uint32_t flags)
1929 {
1930 struct wl_resource_iterator_context *context = user_data;
1931 struct wl_resource *resource = res;
1932
1933 return context->it(resource, context->user_data);
1934 }
1935
1936 /** Iterate over all the resources of a client
1937 *
1938 * \param client The client object
1939 * \param iterator The iterator function
1940 * \param user_data The user data pointer
1941 *
1942 * The function pointed by \a iterator will be called for each
1943 * resource owned by the client. The \a user_data will be passed
1944 * as the second argument of the iterator function.
1945 * If the \a iterator function returns \a WL_ITERATOR_CONTINUE the iteration
1946 * will continue, if it returns \a WL_ITERATOR_STOP it will stop.
1947 *
1948 * Creating and destroying resources while iterating is safe, but new
1949 * resources may or may not be picked up by the iterator.
1950 *
1951 * \sa wl_iterator_result
1952 *
1953 * \memberof wl_client
1954 */
1955 WL_EXPORT void
wl_client_for_each_resource(struct wl_client * client,wl_client_for_each_resource_iterator_func_t iterator,void * user_data)1956 wl_client_for_each_resource(struct wl_client *client,
1957 wl_client_for_each_resource_iterator_func_t iterator,
1958 void *user_data)
1959 {
1960 struct wl_resource_iterator_context context = {
1961 .user_data = user_data,
1962 .it = iterator,
1963 };
1964
1965 wl_map_for_each(&client->objects, resource_iterator_helper, &context);
1966 }
1967
1968 /** \cond INTERNAL */
1969
1970 /** Initialize a wl_priv_signal object
1971 *
1972 * wl_priv_signal is a safer implementation of a signal type, with the same API
1973 * as wl_signal, but kept as a private utility of libwayland-server.
1974 * It is safer because listeners can be removed from within wl_priv_signal_emit()
1975 * without corrupting the signal's list.
1976 *
1977 * Before passing a wl_priv_signal object to any other function it must be
1978 * initialized by useing wl_priv_signal_init().
1979 *
1980 * \memberof wl_priv_signal
1981 */
1982 void
wl_priv_signal_init(struct wl_priv_signal * signal)1983 wl_priv_signal_init(struct wl_priv_signal *signal)
1984 {
1985 wl_list_init(&signal->listener_list);
1986 wl_list_init(&signal->emit_list);
1987 }
1988
1989 /** Add a listener to a signal
1990 *
1991 * The new listener will be called when calling wl_signal_emit(). If a listener is
1992 * added to the signal while wl_signal_emit() is running it will be called from
1993 * the next time wl_priv_signal_emit() is called.
1994 * To remove a listener call wl_list_remove() on its link member.
1995 *
1996 * \memberof wl_priv_signal
1997 */
1998 void
wl_priv_signal_add(struct wl_priv_signal * signal,struct wl_listener * listener)1999 wl_priv_signal_add(struct wl_priv_signal *signal, struct wl_listener *listener)
2000 {
2001 wl_list_insert(signal->listener_list.prev, &listener->link);
2002 }
2003
2004 /** Get a listener added to a signal
2005 *
2006 * Returns the listener added to the given \a signal and with the given
2007 * \a notify function, or NULL if there isn't any.
2008 * Calling this function from withing wl_priv_signal_emit() is safe and will
2009 * return the correct value.
2010 *
2011 * \memberof wl_priv_signal
2012 */
2013 struct wl_listener *
wl_priv_signal_get(struct wl_priv_signal * signal,wl_notify_func_t notify)2014 wl_priv_signal_get(struct wl_priv_signal *signal, wl_notify_func_t notify)
2015 {
2016 struct wl_listener *l;
2017
2018 wl_list_for_each(l, &signal->listener_list, link)
2019 if (l->notify == notify)
2020 return l;
2021 wl_list_for_each(l, &signal->emit_list, link)
2022 if (l->notify == notify)
2023 return l;
2024
2025 return NULL;
2026 }
2027
2028 /** Emit the signal, calling all the installed listeners
2029 *
2030 * Iterate over all the listeners added to this \a signal and call
2031 * their \a notify function pointer, passing on the given \a data.
2032 * Removing or adding a listener from within wl_priv_signal_emit()
2033 * is safe.
2034 */
2035 void
wl_priv_signal_emit(struct wl_priv_signal * signal,void * data)2036 wl_priv_signal_emit(struct wl_priv_signal *signal, void *data)
2037 {
2038 struct wl_listener *l;
2039 struct wl_list *pos;
2040
2041 wl_list_insert_list(&signal->emit_list, &signal->listener_list);
2042 wl_list_init(&signal->listener_list);
2043
2044 /* Take every element out of the list and put them in a temporary list.
2045 * This way, the 'it' func can remove any element it wants from the list
2046 * without troubles, because we always get the first element, not the
2047 * one after the current, which may be invalid.
2048 * wl_list_for_each_safe tries to be safe but it fails: it works fine
2049 * if the current item is removed, but not if the next one is. */
2050 while (!wl_list_empty(&signal->emit_list)) {
2051 pos = signal->emit_list.next;
2052 l = wl_container_of(pos, l, link);
2053
2054 wl_list_remove(pos);
2055 wl_list_insert(&signal->listener_list, pos);
2056
2057 l->notify(l, data);
2058 }
2059 }
2060
2061 /** Emit the signal for the last time, calling all the installed listeners
2062 *
2063 * Iterate over all the listeners added to this \a signal and call
2064 * their \a notify function pointer, passing on the given \a data.
2065 * Removing or adding a listener from within wl_priv_signal_emit()
2066 * is safe, as is freeing the structure containing the listener.
2067 *
2068 * A large body of external code assumes it's ok to free a destruction
2069 * listener without removing that listener from the list. Mixing code
2070 * that acts like this and code that doesn't will result in list
2071 * corruption.
2072 *
2073 * We resolve this by removing each item from the list and isolating it
2074 * in another list. We discard it completely after firing the notifier.
2075 * This should allow interoperability between code that unlinks its
2076 * destruction listeners and code that just frees structures they're in.
2077 *
2078 */
2079 void
wl_priv_signal_final_emit(struct wl_priv_signal * signal,void * data)2080 wl_priv_signal_final_emit(struct wl_priv_signal *signal, void *data)
2081 {
2082 struct wl_listener *l;
2083 struct wl_list *pos;
2084
2085 /* During a destructor notifier isolate every list item before
2086 * notifying. This renders harmless the long standing misuse
2087 * of freeing listeners without removing them, but allows
2088 * callers that do choose to remove them to interoperate with
2089 * ones that don't. */
2090 while (!wl_list_empty(&signal->listener_list)) {
2091 pos = signal->listener_list.next;
2092 l = wl_container_of(pos, l, link);
2093
2094 wl_list_remove(pos);
2095 wl_list_init(pos);
2096
2097 l->notify(l, data);
2098 }
2099 }
2100
2101 /** \endcond INTERNAL */
2102
2103 /** \cond */ /* Deprecated functions below. */
2104
2105 uint32_t
2106 wl_client_add_resource(struct wl_client *client,
2107 struct wl_resource *resource) WL_DEPRECATED;
2108
2109 WL_EXPORT uint32_t
wl_client_add_resource(struct wl_client * client,struct wl_resource * resource)2110 wl_client_add_resource(struct wl_client *client,
2111 struct wl_resource *resource)
2112 {
2113 if (resource->object.id == 0) {
2114 resource->object.id =
2115 wl_map_insert_new(&client->objects,
2116 WL_MAP_ENTRY_LEGACY, resource);
2117 } else if (wl_map_insert_at(&client->objects, WL_MAP_ENTRY_LEGACY,
2118 resource->object.id, resource) < 0) {
2119 wl_resource_post_error(client->display_resource,
2120 WL_DISPLAY_ERROR_INVALID_OBJECT,
2121 "invalid new id %d",
2122 resource->object.id);
2123 return 0;
2124 }
2125
2126 resource->client = client;
2127 wl_signal_init(&resource->deprecated_destroy_signal);
2128
2129 return resource->object.id;
2130 }
2131
2132 struct wl_resource *
2133 wl_client_add_object(struct wl_client *client,
2134 const struct wl_interface *interface,
2135 const void *implementation,
2136 uint32_t id, void *data) WL_DEPRECATED;
2137
2138 WL_EXPORT struct wl_resource *
wl_client_add_object(struct wl_client * client,const struct wl_interface * interface,const void * implementation,uint32_t id,void * data)2139 wl_client_add_object(struct wl_client *client,
2140 const struct wl_interface *interface,
2141 const void *implementation, uint32_t id, void *data)
2142 {
2143 struct wl_resource *resource;
2144
2145 resource = wl_resource_create(client, interface, -1, id);
2146 if (resource == NULL)
2147 wl_client_post_no_memory(client);
2148 else
2149 wl_resource_set_implementation(resource,
2150 implementation, data, NULL);
2151
2152 return resource;
2153 }
2154
2155 struct wl_resource *
2156 wl_client_new_object(struct wl_client *client,
2157 const struct wl_interface *interface,
2158 const void *implementation, void *data) WL_DEPRECATED;
2159
2160 WL_EXPORT struct wl_resource *
wl_client_new_object(struct wl_client * client,const struct wl_interface * interface,const void * implementation,void * data)2161 wl_client_new_object(struct wl_client *client,
2162 const struct wl_interface *interface,
2163 const void *implementation, void *data)
2164 {
2165 struct wl_resource *resource;
2166
2167 resource = wl_resource_create(client, interface, -1, 0);
2168 if (resource == NULL)
2169 wl_client_post_no_memory(client);
2170 else
2171 wl_resource_set_implementation(resource,
2172 implementation, data, NULL);
2173
2174 return resource;
2175 }
2176
2177 struct wl_global *
2178 wl_display_add_global(struct wl_display *display,
2179 const struct wl_interface *interface,
2180 void *data, wl_global_bind_func_t bind) WL_DEPRECATED;
2181
2182 WL_EXPORT struct wl_global *
wl_display_add_global(struct wl_display * display,const struct wl_interface * interface,void * data,wl_global_bind_func_t bind)2183 wl_display_add_global(struct wl_display *display,
2184 const struct wl_interface *interface,
2185 void *data, wl_global_bind_func_t bind)
2186 {
2187 return wl_global_create(display, interface, interface->version, data, bind);
2188 }
2189
2190 void
2191 wl_display_remove_global(struct wl_display *display,
2192 struct wl_global *global) WL_DEPRECATED;
2193
2194 WL_EXPORT void
wl_display_remove_global(struct wl_display * display,struct wl_global * global)2195 wl_display_remove_global(struct wl_display *display, struct wl_global *global)
2196 {
2197 wl_global_destroy(global);
2198 }
2199
2200 /** \endcond */
2201
2202 /* Functions at the end of this file are deprecated. Instead of adding new
2203 * code here, add it before the comment above that states:
2204 * Deprecated functions below.
2205 */
2206