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"
34 #include "ui/egl-helpers.h"
35 #include "ui/egl-context.h"
37 #include "audio/audio.h"
38 #include "audio/audio_int.h"
39 #include "qapi/error.h"
44 static DBusDisplay
*dbus_display
;
47 static QEMUGLContext
dbus_create_context(DisplayGLCtx
*dgc
,
51 eglMakeCurrent(qemu_egl_display
, EGL_NO_SURFACE
, EGL_NO_SURFACE
,
54 return qemu_egl_create_context(dgc
, params
);
58 dbus_is_compatible_dcl(DisplayGLCtx
*dgc
,
59 DisplayChangeListener
*dcl
)
63 dcl
->ops
== &dbus_gl_dcl_ops
||
65 dcl
->ops
== &dbus_console_dcl_ops
;
69 dbus_create_texture(DisplayGLCtx
*ctx
, DisplaySurface
*surface
)
71 surface_gl_create_texture(ctx
->gls
, surface
);
75 dbus_destroy_texture(DisplayGLCtx
*ctx
, DisplaySurface
*surface
)
77 surface_gl_destroy_texture(ctx
->gls
, surface
);
81 dbus_update_texture(DisplayGLCtx
*ctx
, DisplaySurface
*surface
,
82 int x
, int y
, int w
, int h
)
84 surface_gl_update_texture(ctx
->gls
, surface
, x
, y
, w
, h
);
87 static const DisplayGLCtxOps dbus_gl_ops
= {
88 .dpy_gl_ctx_is_compatible_dcl
= dbus_is_compatible_dcl
,
89 .dpy_gl_ctx_create
= dbus_create_context
,
90 .dpy_gl_ctx_destroy
= qemu_egl_destroy_context
,
91 .dpy_gl_ctx_make_current
= qemu_egl_make_context_current
,
92 .dpy_gl_ctx_create_texture
= dbus_create_texture
,
93 .dpy_gl_ctx_destroy_texture
= dbus_destroy_texture
,
94 .dpy_gl_ctx_update_texture
= dbus_update_texture
,
98 static NotifierList dbus_display_notifiers
=
99 NOTIFIER_LIST_INITIALIZER(dbus_display_notifiers
);
102 dbus_display_notifier_add(Notifier
*notifier
)
104 notifier_list_add(&dbus_display_notifiers
, notifier
);
108 dbus_display_notifier_remove(Notifier
*notifier
)
110 notifier_remove(notifier
);
114 dbus_display_notify(DBusDisplayEvent
*event
)
116 notifier_list_notify(&dbus_display_notifiers
, event
);
120 dbus_display_init(Object
*o
)
122 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
123 g_autoptr(GDBusObjectSkeleton
) vm
= NULL
;
126 dd
->glctx
.ops
= &dbus_gl_ops
;
127 if (display_opengl
) {
128 dd
->glctx
.gls
= qemu_gl_init_shader();
131 dd
->iface
= qemu_dbus_display1_vm_skeleton_new();
132 dd
->consoles
= g_ptr_array_new_with_free_func(g_object_unref
);
134 dd
->server
= g_dbus_object_manager_server_new(DBUS_DISPLAY1_ROOT
);
136 vm
= g_dbus_object_skeleton_new(DBUS_DISPLAY1_ROOT
"/VM");
137 g_dbus_object_skeleton_add_interface(
138 vm
, G_DBUS_INTERFACE_SKELETON(dd
->iface
));
139 g_dbus_object_manager_server_export(dd
->server
, vm
);
141 dbus_clipboard_init(dd
);
142 dbus_chardev_init(dd
);
146 dbus_display_finalize(Object
*o
)
148 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
150 if (dd
->notifier
.notify
) {
151 dbus_display_notifier_remove(&dd
->notifier
);
154 qemu_clipboard_peer_unregister(&dd
->clipboard_peer
);
155 g_clear_object(&dd
->clipboard
);
157 g_clear_object(&dd
->server
);
158 g_clear_pointer(&dd
->consoles
, g_ptr_array_unref
);
159 if (dd
->add_client_cancellable
) {
160 g_cancellable_cancel(dd
->add_client_cancellable
);
162 g_clear_object(&dd
->add_client_cancellable
);
163 g_clear_object(&dd
->bus
);
164 g_clear_object(&dd
->iface
);
165 g_free(dd
->dbus_addr
);
166 g_free(dd
->audiodev
);
168 g_clear_pointer(&dd
->glctx
.gls
, qemu_gl_fini_shader
);
174 dbus_display_add_console(DBusDisplay
*dd
, int idx
, Error
**errp
)
177 DBusDisplayConsole
*dbus_console
;
179 con
= qemu_console_lookup_by_index(idx
);
182 if (qemu_console_is_graphic(con
) &&
183 dd
->gl_mode
!= DISPLAYGL_MODE_OFF
) {
184 qemu_console_set_display_gl_ctx(con
, &dd
->glctx
);
187 dbus_console
= dbus_display_console_new(dd
, con
);
188 g_ptr_array_insert(dd
->consoles
, idx
, dbus_console
);
189 g_dbus_object_manager_server_export(dd
->server
,
190 G_DBUS_OBJECT_SKELETON(dbus_console
));
195 dbus_display_complete(UserCreatable
*uc
, Error
**errp
)
197 DBusDisplay
*dd
= DBUS_DISPLAY(uc
);
198 g_autoptr(GError
) err
= NULL
;
199 g_autofree
char *uuid
= qemu_uuid_unparse_strdup(&qemu_uuid
);
200 g_autoptr(GArray
) consoles
= NULL
;
201 GVariant
*console_ids
;
204 if (!object_resolve_path_type("", TYPE_DBUS_DISPLAY
, NULL
)) {
205 error_setg(errp
, "There is already an instance of %s",
211 /* wait for dbus_display_add_client() */
213 } else if (dd
->dbus_addr
&& *dd
->dbus_addr
) {
214 dd
->bus
= g_dbus_connection_new_for_address_sync(dd
->dbus_addr
,
215 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT
|
216 G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION
,
219 dd
->bus
= g_bus_get_sync(G_BUS_TYPE_SESSION
, NULL
, &err
);
222 error_setg(errp
, "failed to connect to DBus: %s", err
->message
);
226 if (dd
->audiodev
&& *dd
->audiodev
) {
227 AudioState
*audio_state
= audio_state_by_name(dd
->audiodev
);
229 error_setg(errp
, "Audiodev '%s' not found", dd
->audiodev
);
232 if (!g_str_equal(audio_state
->drv
->name
, "dbus")) {
233 error_setg(errp
, "Audiodev '%s' is not compatible with DBus",
237 audio_state
->drv
->set_dbus_server(audio_state
, dd
->server
, dd
->p2p
);
240 consoles
= g_array_new(FALSE
, FALSE
, sizeof(guint32
));
241 for (idx
= 0;; idx
++) {
242 if (!qemu_console_lookup_by_index(idx
)) {
245 if (!dbus_display_add_console(dd
, idx
, errp
)) {
248 g_array_append_val(consoles
, idx
);
251 console_ids
= g_variant_new_from_data(
252 G_VARIANT_TYPE("au"),
253 consoles
->data
, consoles
->len
* sizeof(guint32
), TRUE
,
254 (GDestroyNotify
)g_array_unref
, consoles
);
255 g_steal_pointer(&consoles
);
256 g_object_set(dd
->iface
,
257 "name", qemu_name
?: "QEMU " QEMU_VERSION
,
259 "console-ids", console_ids
,
263 g_dbus_object_manager_server_set_connection(dd
->server
, dd
->bus
);
264 g_bus_own_name_on_connection(dd
->bus
, "org.qemu",
265 G_BUS_NAME_OWNER_FLAGS_NONE
,
266 NULL
, NULL
, NULL
, NULL
);
271 dbus_display_add_client_ready(GObject
*source_object
,
275 g_autoptr(GError
) err
= NULL
;
276 g_autoptr(GDBusConnection
) conn
= NULL
;
278 g_clear_object(&dbus_display
->add_client_cancellable
);
280 conn
= g_dbus_connection_new_finish(res
, &err
);
282 error_printf("Failed to accept D-Bus client: %s", err
->message
);
285 g_dbus_object_manager_server_set_connection(dbus_display
->server
, conn
);
286 g_dbus_connection_start_message_processing(conn
);
291 dbus_display_add_client(int csock
, Error
**errp
)
293 g_autoptr(GError
) err
= NULL
;
294 g_autoptr(GSocket
) socket
= NULL
;
295 g_autoptr(GSocketConnection
) conn
= NULL
;
296 g_autofree
char *guid
= g_dbus_generate_guid();
299 error_setg(errp
, "p2p connections not accepted in bus mode");
303 if (dbus_display
->add_client_cancellable
) {
304 g_cancellable_cancel(dbus_display
->add_client_cancellable
);
308 socket
= g_socket_new_from_fd(_get_osfhandle(csock
), &err
);
310 socket
= g_socket_new_from_fd(csock
, &err
);
313 error_setg(errp
, "Failed to setup D-Bus socket: %s", err
->message
);
318 /* socket owns the SOCKET handle now, so release our osf handle */
319 qemu_close_socket_osfhandle(csock
);
322 conn
= g_socket_connection_factory_create_connection(socket
);
324 dbus_display
->add_client_cancellable
= g_cancellable_new();
326 g_dbus_connection_new(G_IO_STREAM(conn
),
328 G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER
|
329 G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING
,
331 dbus_display
->add_client_cancellable
,
332 dbus_display_add_client_ready
,
339 get_dbus_p2p(Object
*o
, Error
**errp
)
341 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
347 set_dbus_p2p(Object
*o
, bool p2p
, Error
**errp
)
349 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
355 get_dbus_addr(Object
*o
, Error
**errp
)
357 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
359 return g_strdup(dd
->dbus_addr
);
363 set_dbus_addr(Object
*o
, const char *str
, Error
**errp
)
365 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
367 g_free(dd
->dbus_addr
);
368 dd
->dbus_addr
= g_strdup(str
);
372 get_audiodev(Object
*o
, Error
**errp
)
374 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
376 return g_strdup(dd
->audiodev
);
380 set_audiodev(Object
*o
, const char *str
, Error
**errp
)
382 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
384 g_free(dd
->audiodev
);
385 dd
->audiodev
= g_strdup(str
);
390 get_gl_mode(Object
*o
, Error
**errp
)
392 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
398 set_gl_mode(Object
*o
, int val
, Error
**errp
)
400 DBusDisplay
*dd
= DBUS_DISPLAY(o
);
406 dbus_display_class_init(ObjectClass
*oc
, void *data
)
408 UserCreatableClass
*ucc
= USER_CREATABLE_CLASS(oc
);
410 ucc
->complete
= dbus_display_complete
;
411 object_class_property_add_bool(oc
, "p2p", get_dbus_p2p
, set_dbus_p2p
);
412 object_class_property_add_str(oc
, "addr", get_dbus_addr
, set_dbus_addr
);
413 object_class_property_add_str(oc
, "audiodev", get_audiodev
, set_audiodev
);
414 object_class_property_add_enum(oc
, "gl-mode",
415 "DisplayGLMode", &DisplayGLMode_lookup
,
416 get_gl_mode
, set_gl_mode
);
419 #define TYPE_CHARDEV_VC "chardev-vc"
421 typedef struct DBusVCClass
{
422 DBusChardevClass parent_class
;
424 void (*parent_parse
)(QemuOpts
*opts
, ChardevBackend
*b
, Error
**errp
);
427 DECLARE_CLASS_CHECKERS(DBusVCClass
, DBUS_VC
,
431 dbus_vc_parse(QemuOpts
*opts
, ChardevBackend
*backend
,
434 DBusVCClass
*klass
= DBUS_VC_CLASS(object_class_by_name(TYPE_CHARDEV_VC
));
435 const char *name
= qemu_opt_get(opts
, "name");
436 const char *id
= qemu_opts_id(opts
);
439 if (g_str_has_prefix(id
, "compat_monitor")) {
440 name
= "org.qemu.monitor.hmp.0";
441 } else if (g_str_has_prefix(id
, "serial")) {
442 name
= "org.qemu.console.serial.0";
446 if (!qemu_opt_set(opts
, "name", name
, errp
)) {
451 klass
->parent_parse(opts
, backend
, errp
);
455 dbus_vc_class_init(ObjectClass
*oc
, void *data
)
457 DBusVCClass
*klass
= DBUS_VC_CLASS(oc
);
458 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
460 klass
->parent_parse
= cc
->parse
;
461 cc
->parse
= dbus_vc_parse
;
464 static const TypeInfo dbus_vc_type_info
= {
465 .name
= TYPE_CHARDEV_VC
,
466 .parent
= TYPE_CHARDEV_DBUS
,
467 .class_size
= sizeof(DBusVCClass
),
468 .class_init
= dbus_vc_class_init
,
472 early_dbus_init(DisplayOptions
*opts
)
474 DisplayGLMode mode
= opts
->has_gl
? opts
->gl
: DISPLAYGL_MODE_OFF
;
476 if (mode
!= DISPLAYGL_MODE_OFF
) {
478 egl_init(opts
->u
.dbus
.rendernode
, mode
, &error_fatal
);
480 error_report("dbus: GL rendering is not supported");
484 type_register(&dbus_vc_type_info
);
488 dbus_init(DisplayState
*ds
, DisplayOptions
*opts
)
490 DisplayGLMode mode
= opts
->has_gl
? opts
->gl
: DISPLAYGL_MODE_OFF
;
492 if (opts
->u
.dbus
.addr
&& opts
->u
.dbus
.p2p
) {
493 error_report("dbus: can't accept both addr=X and p2p=yes options");
497 using_dbus_display
= 1;
499 object_new_with_props(TYPE_DBUS_DISPLAY
,
500 object_get_objects_root(),
501 "dbus-display", &error_fatal
,
502 "addr", opts
->u
.dbus
.addr
?: "",
503 "audiodev", opts
->u
.dbus
.audiodev
?: "",
504 "gl-mode", DisplayGLMode_str(mode
),
505 "p2p", yes_no(opts
->u
.dbus
.p2p
),
509 static const TypeInfo dbus_display_info
= {
510 .name
= TYPE_DBUS_DISPLAY
,
511 .parent
= TYPE_OBJECT
,
512 .instance_size
= sizeof(DBusDisplay
),
513 .instance_init
= dbus_display_init
,
514 .instance_finalize
= dbus_display_finalize
,
515 .class_init
= dbus_display_class_init
,
516 .interfaces
= (InterfaceInfo
[]) {
517 { TYPE_USER_CREATABLE
},
522 static QemuDisplay qemu_display_dbus
= {
523 .type
= DISPLAY_TYPE_DBUS
,
524 .early_init
= early_dbus_init
,
528 static void register_dbus(void)
530 qemu_dbus_display
= (struct QemuDBusDisplayOps
) {
531 .add_client
= dbus_display_add_client
,
533 type_register_static(&dbus_display_info
);
534 qemu_display_register(&qemu_display_dbus
);
537 type_init(register_dbus
);
540 module_dep("ui-opengl");