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/dbus.h"
27 #include "qemu/main-loop.h"
28 #include "qemu/option.h"
29 #include "qom/object_interfaces.h"
30 #include "sysemu/sysemu.h"
31 #include "ui/dbus-module.h"
32 #include "ui/egl-helpers.h"
33 #include "ui/egl-context.h"
34 #include "audio/audio.h"
35 #include "audio/audio_int.h"
36 #include "qapi/error.h"
41 static DBusDisplay
*dbus_display
;
43 static QEMUGLContext
dbus_create_context(DisplayGLCtx
*dgc
,
46 eglMakeCurrent(qemu_egl_display
, EGL_NO_SURFACE
, EGL_NO_SURFACE
,
48 return qemu_egl_create_context(dgc
, params
);
51 static const DisplayGLCtxOps dbus_gl_ops
= {
52 .compatible_dcl
= &dbus_gl_dcl_ops
,
53 .dpy_gl_ctx_create
= dbus_create_context
,
54 .dpy_gl_ctx_destroy
= qemu_egl_destroy_context
,
55 .dpy_gl_ctx_make_current
= qemu_egl_make_context_current
,
58 static NotifierList dbus_display_notifiers
=
59 NOTIFIER_LIST_INITIALIZER(dbus_display_notifiers
);
62 dbus_display_notifier_add(Notifier
*notifier
)
64 notifier_list_add(&dbus_display_notifiers
, notifier
);
68 dbus_display_notifier_remove(Notifier
*notifier
)
70 notifier_remove(notifier
);
74 dbus_display_notify(DBusDisplayEvent
*event
)
76 notifier_list_notify(&dbus_display_notifiers
, event
);
80 dbus_display_init(Object
*o
)
82 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
83 g_autoptr(GDBusObjectSkeleton
) vm
= NULL
;
85 dd
->glctx
.ops
= &dbus_gl_ops
;
86 dd
->iface
= qemu_dbus_display1_vm_skeleton_new();
87 dd
->consoles
= g_ptr_array_new_with_free_func(g_object_unref
);
89 dd
->server
= g_dbus_object_manager_server_new(DBUS_DISPLAY1_ROOT
);
91 vm
= g_dbus_object_skeleton_new(DBUS_DISPLAY1_ROOT
"/VM");
92 g_dbus_object_skeleton_add_interface(
93 vm
, G_DBUS_INTERFACE_SKELETON(dd
->iface
));
94 g_dbus_object_manager_server_export(dd
->server
, vm
);
96 dbus_clipboard_init(dd
);
97 dbus_chardev_init(dd
);
101 dbus_display_finalize(Object
*o
)
103 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
105 if (dd
->notifier
.notify
) {
106 dbus_display_notifier_remove(&dd
->notifier
);
109 qemu_clipboard_peer_unregister(&dd
->clipboard_peer
);
110 g_clear_object(&dd
->clipboard
);
112 g_clear_object(&dd
->server
);
113 g_clear_pointer(&dd
->consoles
, g_ptr_array_unref
);
114 if (dd
->add_client_cancellable
) {
115 g_cancellable_cancel(dd
->add_client_cancellable
);
117 g_clear_object(&dd
->add_client_cancellable
);
118 g_clear_object(&dd
->bus
);
119 g_clear_object(&dd
->iface
);
120 g_free(dd
->dbus_addr
);
121 g_free(dd
->audiodev
);
126 dbus_display_add_console(DBusDisplay
*dd
, int idx
, Error
**errp
)
129 DBusDisplayConsole
*dbus_console
;
131 con
= qemu_console_lookup_by_index(idx
);
134 if (qemu_console_is_graphic(con
) &&
135 dd
->gl_mode
!= DISPLAYGL_MODE_OFF
) {
136 qemu_console_set_display_gl_ctx(con
, &dd
->glctx
);
139 dbus_console
= dbus_display_console_new(dd
, con
);
140 g_ptr_array_insert(dd
->consoles
, idx
, dbus_console
);
141 g_dbus_object_manager_server_export(dd
->server
,
142 G_DBUS_OBJECT_SKELETON(dbus_console
));
147 dbus_display_complete(UserCreatable
*uc
, Error
**errp
)
149 DBusDisplay
*dd
= DBUS_DISPLAY(uc
);
150 g_autoptr(GError
) err
= NULL
;
151 g_autofree
char *uuid
= qemu_uuid_unparse_strdup(&qemu_uuid
);
152 g_autoptr(GArray
) consoles
= NULL
;
153 GVariant
*console_ids
;
156 if (!object_resolve_path_type("", TYPE_DBUS_DISPLAY
, NULL
)) {
157 error_setg(errp
, "There is already an instance of %s",
163 /* wait for dbus_display_add_client() */
165 } else if (dd
->dbus_addr
&& *dd
->dbus_addr
) {
166 dd
->bus
= g_dbus_connection_new_for_address_sync(dd
->dbus_addr
,
167 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT
|
168 G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION
,
171 dd
->bus
= g_bus_get_sync(G_BUS_TYPE_SESSION
, NULL
, &err
);
174 error_setg(errp
, "failed to connect to DBus: %s", err
->message
);
178 if (dd
->audiodev
&& *dd
->audiodev
) {
179 AudioState
*audio_state
= audio_state_by_name(dd
->audiodev
);
181 error_setg(errp
, "Audiodev '%s' not found", dd
->audiodev
);
184 if (!g_str_equal(audio_state
->drv
->name
, "dbus")) {
185 error_setg(errp
, "Audiodev '%s' is not compatible with DBus",
189 audio_state
->drv
->set_dbus_server(audio_state
, dd
->server
);
192 consoles
= g_array_new(FALSE
, FALSE
, sizeof(guint32
));
193 for (idx
= 0;; idx
++) {
194 if (!qemu_console_lookup_by_index(idx
)) {
197 if (!dbus_display_add_console(dd
, idx
, errp
)) {
200 g_array_append_val(consoles
, idx
);
203 console_ids
= g_variant_new_from_data(
204 G_VARIANT_TYPE("au"),
205 consoles
->data
, consoles
->len
* sizeof(guint32
), TRUE
,
206 (GDestroyNotify
)g_array_unref
, consoles
);
207 g_steal_pointer(&consoles
);
208 g_object_set(dd
->iface
,
209 "name", qemu_name
?: "QEMU " QEMU_VERSION
,
211 "console-ids", console_ids
,
215 g_dbus_object_manager_server_set_connection(dd
->server
, dd
->bus
);
216 g_bus_own_name_on_connection(dd
->bus
, "org.qemu",
217 G_BUS_NAME_OWNER_FLAGS_NONE
,
218 NULL
, NULL
, NULL
, NULL
);
223 dbus_display_add_client_ready(GObject
*source_object
,
227 g_autoptr(GError
) err
= NULL
;
228 g_autoptr(GDBusConnection
) conn
= NULL
;
230 g_clear_object(&dbus_display
->add_client_cancellable
);
232 conn
= g_dbus_connection_new_finish(res
, &err
);
234 error_printf("Failed to accept D-Bus client: %s", err
->message
);
237 g_dbus_object_manager_server_set_connection(dbus_display
->server
, conn
);
242 dbus_display_add_client(int csock
, Error
**errp
)
244 g_autoptr(GError
) err
= NULL
;
245 g_autoptr(GSocket
) socket
= NULL
;
246 g_autoptr(GSocketConnection
) conn
= NULL
;
247 g_autofree
char *guid
= g_dbus_generate_guid();
250 error_setg(errp
, "p2p connections not accepted in bus mode");
254 if (dbus_display
->add_client_cancellable
) {
255 g_cancellable_cancel(dbus_display
->add_client_cancellable
);
258 socket
= g_socket_new_from_fd(csock
, &err
);
260 error_setg(errp
, "Failed to setup D-Bus socket: %s", err
->message
);
264 conn
= g_socket_connection_factory_create_connection(socket
);
266 dbus_display
->add_client_cancellable
= g_cancellable_new();
268 g_dbus_connection_new(G_IO_STREAM(conn
),
270 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER
,
272 dbus_display
->add_client_cancellable
,
273 dbus_display_add_client_ready
,
280 get_dbus_p2p(Object
*o
, Error
**errp
)
282 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
288 set_dbus_p2p(Object
*o
, bool p2p
, Error
**errp
)
290 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
296 get_dbus_addr(Object
*o
, Error
**errp
)
298 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
300 return g_strdup(dd
->dbus_addr
);
304 set_dbus_addr(Object
*o
, const char *str
, Error
**errp
)
306 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
308 g_free(dd
->dbus_addr
);
309 dd
->dbus_addr
= g_strdup(str
);
313 get_audiodev(Object
*o
, Error
**errp
)
315 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
317 return g_strdup(dd
->audiodev
);
321 set_audiodev(Object
*o
, const char *str
, Error
**errp
)
323 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
325 g_free(dd
->audiodev
);
326 dd
->audiodev
= g_strdup(str
);
331 get_gl_mode(Object
*o
, Error
**errp
)
333 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
339 set_gl_mode(Object
*o
, int val
, Error
**errp
)
341 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
347 dbus_display_class_init(ObjectClass
*oc
, void *data
)
349 UserCreatableClass
*ucc
= USER_CREATABLE_CLASS(oc
);
351 ucc
->complete
= dbus_display_complete
;
352 object_class_property_add_bool(oc
, "p2p", get_dbus_p2p
, set_dbus_p2p
);
353 object_class_property_add_str(oc
, "addr", get_dbus_addr
, set_dbus_addr
);
354 object_class_property_add_str(oc
, "audiodev", get_audiodev
, set_audiodev
);
355 object_class_property_add_enum(oc
, "gl-mode",
356 "DisplayGLMode", &DisplayGLMode_lookup
,
357 get_gl_mode
, set_gl_mode
);
360 #define TYPE_CHARDEV_VC "chardev-vc"
362 typedef struct DBusVCClass
{
363 DBusChardevClass parent_class
;
365 void (*parent_parse
)(QemuOpts
*opts
, ChardevBackend
*b
, Error
**errp
);
368 DECLARE_CLASS_CHECKERS(DBusVCClass
, DBUS_VC
,
372 dbus_vc_parse(QemuOpts
*opts
, ChardevBackend
*backend
,
375 DBusVCClass
*klass
= DBUS_VC_CLASS(object_class_by_name(TYPE_CHARDEV_VC
));
376 const char *name
= qemu_opt_get(opts
, "name");
377 const char *id
= qemu_opts_id(opts
);
380 if (g_str_has_prefix(id
, "compat_monitor")) {
381 name
= "org.qemu.monitor.hmp.0";
382 } else if (g_str_has_prefix(id
, "serial")) {
383 name
= "org.qemu.console.serial.0";
387 if (!qemu_opt_set(opts
, "name", name
, errp
)) {
392 klass
->parent_parse(opts
, backend
, errp
);
396 dbus_vc_class_init(ObjectClass
*oc
, void *data
)
398 DBusVCClass
*klass
= DBUS_VC_CLASS(oc
);
399 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
401 klass
->parent_parse
= cc
->parse
;
402 cc
->parse
= dbus_vc_parse
;
405 static const TypeInfo dbus_vc_type_info
= {
406 .name
= TYPE_CHARDEV_VC
,
407 .parent
= TYPE_CHARDEV_DBUS
,
408 .class_size
= sizeof(DBusVCClass
),
409 .class_init
= dbus_vc_class_init
,
413 early_dbus_init(DisplayOptions
*opts
)
415 DisplayGLMode mode
= opts
->has_gl
? opts
->gl
: DISPLAYGL_MODE_OFF
;
417 if (mode
!= DISPLAYGL_MODE_OFF
) {
418 if (egl_rendernode_init(opts
->u
.dbus
.rendernode
, mode
) < 0) {
419 error_report("dbus: render node init failed");
426 type_register(&dbus_vc_type_info
);
430 dbus_init(DisplayState
*ds
, DisplayOptions
*opts
)
432 DisplayGLMode mode
= opts
->has_gl
? opts
->gl
: DISPLAYGL_MODE_OFF
;
434 if (opts
->u
.dbus
.addr
&& opts
->u
.dbus
.p2p
) {
435 error_report("dbus: can't accept both addr=X and p2p=yes options");
439 using_dbus_display
= 1;
441 object_new_with_props(TYPE_DBUS_DISPLAY
,
442 object_get_objects_root(),
443 "dbus-display", &error_fatal
,
444 "addr", opts
->u
.dbus
.addr
?: "",
445 "audiodev", opts
->u
.dbus
.audiodev
?: "",
446 "gl-mode", DisplayGLMode_str(mode
),
447 "p2p", yes_no(opts
->u
.dbus
.p2p
),
451 static const TypeInfo dbus_display_info
= {
452 .name
= TYPE_DBUS_DISPLAY
,
453 .parent
= TYPE_OBJECT
,
454 .instance_size
= sizeof(DBusDisplay
),
455 .instance_init
= dbus_display_init
,
456 .instance_finalize
= dbus_display_finalize
,
457 .class_init
= dbus_display_class_init
,
458 .interfaces
= (InterfaceInfo
[]) {
459 { TYPE_USER_CREATABLE
},
464 static QemuDisplay qemu_display_dbus
= {
465 .type
= DISPLAY_TYPE_DBUS
,
466 .early_init
= early_dbus_init
,
470 static void register_dbus(void)
472 qemu_dbus_display
= (struct QemuDBusDisplayOps
) {
473 .add_client
= dbus_display_add_client
,
475 type_register_static(&dbus_display_info
);
476 qemu_display_register(&qemu_display_dbus
);
479 type_init(register_dbus
);
482 module_dep("ui-opengl");