4 * Copyright (c) 2021 Marc-André Lureau <marcandre.lureau@redhat.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu/osdep.h"
25 #include "qemu/cutils.h"
26 #include "qemu/error-report.h"
27 #include "qemu/dbus.h"
28 #include "qemu/main-loop.h"
29 #include "qemu/option.h"
30 #include "qom/object_interfaces.h"
31 #include "sysemu/sysemu.h"
32 #include "ui/dbus-module.h"
33 #include "ui/egl-helpers.h"
34 #include "ui/egl-context.h"
35 #include "audio/audio.h"
36 #include "audio/audio_int.h"
37 #include "qapi/error.h"
42 static DBusDisplay
*dbus_display
;
44 static QEMUGLContext
dbus_create_context(DisplayGLCtx
*dgc
,
47 eglMakeCurrent(qemu_egl_display
, EGL_NO_SURFACE
, EGL_NO_SURFACE
,
49 return qemu_egl_create_context(dgc
, params
);
53 dbus_is_compatible_dcl(DisplayGLCtx
*dgc
,
54 DisplayChangeListener
*dcl
)
56 return dcl
->ops
== &dbus_gl_dcl_ops
|| dcl
->ops
== &dbus_console_dcl_ops
;
60 dbus_create_texture(DisplayGLCtx
*ctx
, DisplaySurface
*surface
)
62 surface_gl_create_texture(ctx
->gls
, surface
);
66 dbus_destroy_texture(DisplayGLCtx
*ctx
, DisplaySurface
*surface
)
68 surface_gl_destroy_texture(ctx
->gls
, surface
);
72 dbus_update_texture(DisplayGLCtx
*ctx
, DisplaySurface
*surface
,
73 int x
, int y
, int w
, int h
)
75 surface_gl_update_texture(ctx
->gls
, surface
, x
, y
, w
, h
);
78 static const DisplayGLCtxOps dbus_gl_ops
= {
79 .dpy_gl_ctx_is_compatible_dcl
= dbus_is_compatible_dcl
,
80 .dpy_gl_ctx_create
= dbus_create_context
,
81 .dpy_gl_ctx_destroy
= qemu_egl_destroy_context
,
82 .dpy_gl_ctx_make_current
= qemu_egl_make_context_current
,
83 .dpy_gl_ctx_create_texture
= dbus_create_texture
,
84 .dpy_gl_ctx_destroy_texture
= dbus_destroy_texture
,
85 .dpy_gl_ctx_update_texture
= dbus_update_texture
,
88 static NotifierList dbus_display_notifiers
=
89 NOTIFIER_LIST_INITIALIZER(dbus_display_notifiers
);
92 dbus_display_notifier_add(Notifier
*notifier
)
94 notifier_list_add(&dbus_display_notifiers
, notifier
);
98 dbus_display_notifier_remove(Notifier
*notifier
)
100 notifier_remove(notifier
);
104 dbus_display_notify(DBusDisplayEvent
*event
)
106 notifier_list_notify(&dbus_display_notifiers
, event
);
110 dbus_display_init(Object
*o
)
112 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
113 g_autoptr(GDBusObjectSkeleton
) vm
= NULL
;
115 dd
->glctx
.ops
= &dbus_gl_ops
;
116 if (display_opengl
) {
117 dd
->glctx
.gls
= qemu_gl_init_shader();
119 dd
->iface
= qemu_dbus_display1_vm_skeleton_new();
120 dd
->consoles
= g_ptr_array_new_with_free_func(g_object_unref
);
122 dd
->server
= g_dbus_object_manager_server_new(DBUS_DISPLAY1_ROOT
);
124 vm
= g_dbus_object_skeleton_new(DBUS_DISPLAY1_ROOT
"/VM");
125 g_dbus_object_skeleton_add_interface(
126 vm
, G_DBUS_INTERFACE_SKELETON(dd
->iface
));
127 g_dbus_object_manager_server_export(dd
->server
, vm
);
129 dbus_clipboard_init(dd
);
130 dbus_chardev_init(dd
);
134 dbus_display_finalize(Object
*o
)
136 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
138 if (dd
->notifier
.notify
) {
139 dbus_display_notifier_remove(&dd
->notifier
);
142 qemu_clipboard_peer_unregister(&dd
->clipboard_peer
);
143 g_clear_object(&dd
->clipboard
);
145 g_clear_object(&dd
->server
);
146 g_clear_pointer(&dd
->consoles
, g_ptr_array_unref
);
147 if (dd
->add_client_cancellable
) {
148 g_cancellable_cancel(dd
->add_client_cancellable
);
150 g_clear_object(&dd
->add_client_cancellable
);
151 g_clear_object(&dd
->bus
);
152 g_clear_object(&dd
->iface
);
153 g_free(dd
->dbus_addr
);
154 g_free(dd
->audiodev
);
155 g_clear_pointer(&dd
->glctx
.gls
, qemu_gl_fini_shader
);
160 dbus_display_add_console(DBusDisplay
*dd
, int idx
, Error
**errp
)
163 DBusDisplayConsole
*dbus_console
;
165 con
= qemu_console_lookup_by_index(idx
);
168 if (qemu_console_is_graphic(con
) &&
169 dd
->gl_mode
!= DISPLAYGL_MODE_OFF
) {
170 qemu_console_set_display_gl_ctx(con
, &dd
->glctx
);
173 dbus_console
= dbus_display_console_new(dd
, con
);
174 g_ptr_array_insert(dd
->consoles
, idx
, dbus_console
);
175 g_dbus_object_manager_server_export(dd
->server
,
176 G_DBUS_OBJECT_SKELETON(dbus_console
));
181 dbus_display_complete(UserCreatable
*uc
, Error
**errp
)
183 DBusDisplay
*dd
= DBUS_DISPLAY(uc
);
184 g_autoptr(GError
) err
= NULL
;
185 g_autofree
char *uuid
= qemu_uuid_unparse_strdup(&qemu_uuid
);
186 g_autoptr(GArray
) consoles
= NULL
;
187 GVariant
*console_ids
;
190 if (!object_resolve_path_type("", TYPE_DBUS_DISPLAY
, NULL
)) {
191 error_setg(errp
, "There is already an instance of %s",
197 /* wait for dbus_display_add_client() */
199 } else if (dd
->dbus_addr
&& *dd
->dbus_addr
) {
200 dd
->bus
= g_dbus_connection_new_for_address_sync(dd
->dbus_addr
,
201 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT
|
202 G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION
,
205 dd
->bus
= g_bus_get_sync(G_BUS_TYPE_SESSION
, NULL
, &err
);
208 error_setg(errp
, "failed to connect to DBus: %s", err
->message
);
212 if (dd
->audiodev
&& *dd
->audiodev
) {
213 AudioState
*audio_state
= audio_state_by_name(dd
->audiodev
);
215 error_setg(errp
, "Audiodev '%s' not found", dd
->audiodev
);
218 if (!g_str_equal(audio_state
->drv
->name
, "dbus")) {
219 error_setg(errp
, "Audiodev '%s' is not compatible with DBus",
223 audio_state
->drv
->set_dbus_server(audio_state
, dd
->server
);
226 consoles
= g_array_new(FALSE
, FALSE
, sizeof(guint32
));
227 for (idx
= 0;; idx
++) {
228 if (!qemu_console_lookup_by_index(idx
)) {
231 if (!dbus_display_add_console(dd
, idx
, errp
)) {
234 g_array_append_val(consoles
, idx
);
237 console_ids
= g_variant_new_from_data(
238 G_VARIANT_TYPE("au"),
239 consoles
->data
, consoles
->len
* sizeof(guint32
), TRUE
,
240 (GDestroyNotify
)g_array_unref
, consoles
);
241 g_steal_pointer(&consoles
);
242 g_object_set(dd
->iface
,
243 "name", qemu_name
?: "QEMU " QEMU_VERSION
,
245 "console-ids", console_ids
,
249 g_dbus_object_manager_server_set_connection(dd
->server
, dd
->bus
);
250 g_bus_own_name_on_connection(dd
->bus
, "org.qemu",
251 G_BUS_NAME_OWNER_FLAGS_NONE
,
252 NULL
, NULL
, NULL
, NULL
);
257 dbus_display_add_client_ready(GObject
*source_object
,
261 g_autoptr(GError
) err
= NULL
;
262 g_autoptr(GDBusConnection
) conn
= NULL
;
264 g_clear_object(&dbus_display
->add_client_cancellable
);
266 conn
= g_dbus_connection_new_finish(res
, &err
);
268 error_printf("Failed to accept D-Bus client: %s", err
->message
);
271 g_dbus_object_manager_server_set_connection(dbus_display
->server
, conn
);
272 g_dbus_connection_start_message_processing(conn
);
277 dbus_display_add_client(int csock
, Error
**errp
)
279 g_autoptr(GError
) err
= NULL
;
280 g_autoptr(GSocket
) socket
= NULL
;
281 g_autoptr(GSocketConnection
) conn
= NULL
;
282 g_autofree
char *guid
= g_dbus_generate_guid();
285 error_setg(errp
, "p2p connections not accepted in bus mode");
289 if (dbus_display
->add_client_cancellable
) {
290 g_cancellable_cancel(dbus_display
->add_client_cancellable
);
293 socket
= g_socket_new_from_fd(csock
, &err
);
295 error_setg(errp
, "Failed to setup D-Bus socket: %s", err
->message
);
299 conn
= g_socket_connection_factory_create_connection(socket
);
301 dbus_display
->add_client_cancellable
= g_cancellable_new();
303 g_dbus_connection_new(G_IO_STREAM(conn
),
305 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER
|
306 G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING
,
308 dbus_display
->add_client_cancellable
,
309 dbus_display_add_client_ready
,
316 get_dbus_p2p(Object
*o
, Error
**errp
)
318 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
324 set_dbus_p2p(Object
*o
, bool p2p
, Error
**errp
)
326 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
332 get_dbus_addr(Object
*o
, Error
**errp
)
334 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
336 return g_strdup(dd
->dbus_addr
);
340 set_dbus_addr(Object
*o
, const char *str
, Error
**errp
)
342 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
344 g_free(dd
->dbus_addr
);
345 dd
->dbus_addr
= g_strdup(str
);
349 get_audiodev(Object
*o
, Error
**errp
)
351 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
353 return g_strdup(dd
->audiodev
);
357 set_audiodev(Object
*o
, const char *str
, Error
**errp
)
359 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
361 g_free(dd
->audiodev
);
362 dd
->audiodev
= g_strdup(str
);
367 get_gl_mode(Object
*o
, Error
**errp
)
369 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
375 set_gl_mode(Object
*o
, int val
, Error
**errp
)
377 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
383 dbus_display_class_init(ObjectClass
*oc
, void *data
)
385 UserCreatableClass
*ucc
= USER_CREATABLE_CLASS(oc
);
387 ucc
->complete
= dbus_display_complete
;
388 object_class_property_add_bool(oc
, "p2p", get_dbus_p2p
, set_dbus_p2p
);
389 object_class_property_add_str(oc
, "addr", get_dbus_addr
, set_dbus_addr
);
390 object_class_property_add_str(oc
, "audiodev", get_audiodev
, set_audiodev
);
391 object_class_property_add_enum(oc
, "gl-mode",
392 "DisplayGLMode", &DisplayGLMode_lookup
,
393 get_gl_mode
, set_gl_mode
);
396 #define TYPE_CHARDEV_VC "chardev-vc"
398 typedef struct DBusVCClass
{
399 DBusChardevClass parent_class
;
401 void (*parent_parse
)(QemuOpts
*opts
, ChardevBackend
*b
, Error
**errp
);
404 DECLARE_CLASS_CHECKERS(DBusVCClass
, DBUS_VC
,
408 dbus_vc_parse(QemuOpts
*opts
, ChardevBackend
*backend
,
411 DBusVCClass
*klass
= DBUS_VC_CLASS(object_class_by_name(TYPE_CHARDEV_VC
));
412 const char *name
= qemu_opt_get(opts
, "name");
413 const char *id
= qemu_opts_id(opts
);
416 if (g_str_has_prefix(id
, "compat_monitor")) {
417 name
= "org.qemu.monitor.hmp.0";
418 } else if (g_str_has_prefix(id
, "serial")) {
419 name
= "org.qemu.console.serial.0";
423 if (!qemu_opt_set(opts
, "name", name
, errp
)) {
428 klass
->parent_parse(opts
, backend
, errp
);
432 dbus_vc_class_init(ObjectClass
*oc
, void *data
)
434 DBusVCClass
*klass
= DBUS_VC_CLASS(oc
);
435 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
437 klass
->parent_parse
= cc
->parse
;
438 cc
->parse
= dbus_vc_parse
;
441 static const TypeInfo dbus_vc_type_info
= {
442 .name
= TYPE_CHARDEV_VC
,
443 .parent
= TYPE_CHARDEV_DBUS
,
444 .class_size
= sizeof(DBusVCClass
),
445 .class_init
= dbus_vc_class_init
,
449 early_dbus_init(DisplayOptions
*opts
)
451 DisplayGLMode mode
= opts
->has_gl
? opts
->gl
: DISPLAYGL_MODE_OFF
;
453 if (mode
!= DISPLAYGL_MODE_OFF
) {
454 if (egl_rendernode_init(opts
->u
.dbus
.rendernode
, mode
) < 0) {
455 error_report("dbus: render node init failed");
462 type_register(&dbus_vc_type_info
);
466 dbus_init(DisplayState
*ds
, DisplayOptions
*opts
)
468 DisplayGLMode mode
= opts
->has_gl
? opts
->gl
: DISPLAYGL_MODE_OFF
;
470 if (opts
->u
.dbus
.addr
&& opts
->u
.dbus
.p2p
) {
471 error_report("dbus: can't accept both addr=X and p2p=yes options");
475 using_dbus_display
= 1;
477 object_new_with_props(TYPE_DBUS_DISPLAY
,
478 object_get_objects_root(),
479 "dbus-display", &error_fatal
,
480 "addr", opts
->u
.dbus
.addr
?: "",
481 "audiodev", opts
->u
.dbus
.audiodev
?: "",
482 "gl-mode", DisplayGLMode_str(mode
),
483 "p2p", yes_no(opts
->u
.dbus
.p2p
),
487 static const TypeInfo dbus_display_info
= {
488 .name
= TYPE_DBUS_DISPLAY
,
489 .parent
= TYPE_OBJECT
,
490 .instance_size
= sizeof(DBusDisplay
),
491 .instance_init
= dbus_display_init
,
492 .instance_finalize
= dbus_display_finalize
,
493 .class_init
= dbus_display_class_init
,
494 .interfaces
= (InterfaceInfo
[]) {
495 { TYPE_USER_CREATABLE
},
500 static QemuDisplay qemu_display_dbus
= {
501 .type
= DISPLAY_TYPE_DBUS
,
502 .early_init
= early_dbus_init
,
506 static void register_dbus(void)
508 qemu_dbus_display
= (struct QemuDBusDisplayOps
) {
509 .add_client
= dbus_display_add_client
,
511 type_register_static(&dbus_display_info
);
512 qemu_display_register(&qemu_display_dbus
);
515 type_init(register_dbus
);
518 module_dep("ui-opengl");