spapr/pci: Correct "does not support hotplugging error messages
[qemu/armbru.git] / ui / ui-qmp-cmds.c
blobd772e1cb7f0520b301d4303766f42351201e4116
1 /*
2 * QMP commands related to UI
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include "qemu/osdep.h"
18 #include "io/channel-file.h"
19 #include "monitor/qmp-helpers.h"
20 #include "qapi/qapi-commands-ui.h"
21 #include "qapi/qmp/qerror.h"
22 #include "qemu/coroutine.h"
23 #include "qemu/cutils.h"
24 #include "trace.h"
25 #include "ui/console.h"
26 #include "ui/dbus-display.h"
27 #include "ui/qemu-spice.h"
28 #ifdef CONFIG_PNG
29 #include <png.h>
30 #endif
32 void qmp_set_password(SetPasswordOptions *opts, Error **errp)
34 int rc;
36 if (opts->protocol == DISPLAY_PROTOCOL_SPICE) {
37 if (!qemu_using_spice(errp)) {
38 return;
40 rc = qemu_spice.set_passwd(opts->password,
41 opts->connected == SET_PASSWORD_ACTION_FAIL,
42 opts->connected == SET_PASSWORD_ACTION_DISCONNECT);
43 } else {
44 assert(opts->protocol == DISPLAY_PROTOCOL_VNC);
45 if (opts->connected != SET_PASSWORD_ACTION_KEEP) {
46 /* vnc supports "connected=keep" only */
47 error_setg(errp, QERR_INVALID_PARAMETER, "connected");
48 return;
51 * Note that setting an empty password will not disable login
52 * through this interface.
54 rc = vnc_display_password(opts->u.vnc.display, opts->password);
57 if (rc != 0) {
58 error_setg(errp, "Could not set password");
62 void qmp_expire_password(ExpirePasswordOptions *opts, Error **errp)
64 time_t when;
65 int rc;
66 const char *whenstr = opts->time;
67 const char *numstr = NULL;
68 uint64_t num;
70 if (strcmp(whenstr, "now") == 0) {
71 when = 0;
72 } else if (strcmp(whenstr, "never") == 0) {
73 when = TIME_MAX;
74 } else if (whenstr[0] == '+') {
75 when = time(NULL);
76 numstr = whenstr + 1;
77 } else {
78 when = 0;
79 numstr = whenstr;
82 if (numstr) {
83 if (qemu_strtou64(numstr, NULL, 10, &num) < 0) {
84 error_setg(errp, "Parameter 'time' doesn't take value '%s'",
85 whenstr);
86 return;
88 when += num;
91 if (opts->protocol == DISPLAY_PROTOCOL_SPICE) {
92 if (!qemu_using_spice(errp)) {
93 return;
95 rc = qemu_spice.set_pw_expire(when);
96 } else {
97 assert(opts->protocol == DISPLAY_PROTOCOL_VNC);
98 rc = vnc_display_pw_expire(opts->u.vnc.display, when);
101 if (rc != 0) {
102 error_setg(errp, "Could not set password expire time");
106 #ifdef CONFIG_VNC
107 void qmp_change_vnc_password(const char *password, Error **errp)
109 if (vnc_display_password(NULL, password) < 0) {
110 error_setg(errp, "Could not set password");
113 #endif
115 bool qmp_add_client_spice(int fd, bool has_skipauth, bool skipauth,
116 bool has_tls, bool tls, Error **errp)
118 if (!qemu_using_spice(errp)) {
119 return false;
121 skipauth = has_skipauth ? skipauth : false;
122 tls = has_tls ? tls : false;
123 if (qemu_spice.display_add_client(fd, skipauth, tls) < 0) {
124 error_setg(errp, "spice failed to add client");
125 return false;
127 return true;
130 #ifdef CONFIG_VNC
131 bool qmp_add_client_vnc(int fd, bool has_skipauth, bool skipauth,
132 bool has_tls, bool tls, Error **errp)
134 skipauth = has_skipauth ? skipauth : false;
135 vnc_display_add_client(NULL, fd, skipauth);
136 return true;
138 #endif
140 #ifdef CONFIG_DBUS_DISPLAY
141 bool qmp_add_client_dbus_display(int fd, bool has_skipauth, bool skipauth,
142 bool has_tls, bool tls, Error **errp)
144 if (!qemu_using_dbus_display(errp)) {
145 return false;
147 if (!qemu_dbus_display.add_client(fd, errp)) {
148 return false;
150 return true;
152 #endif
154 void qmp_display_reload(DisplayReloadOptions *arg, Error **errp)
156 switch (arg->type) {
157 case DISPLAY_RELOAD_TYPE_VNC:
158 #ifdef CONFIG_VNC
159 if (arg->u.vnc.has_tls_certs && arg->u.vnc.tls_certs) {
160 vnc_display_reload_certs(NULL, errp);
162 #else
163 error_setg(errp, "vnc is invalid, missing 'CONFIG_VNC'");
164 #endif
165 break;
166 default:
167 abort();
171 void qmp_display_update(DisplayUpdateOptions *arg, Error **errp)
173 switch (arg->type) {
174 case DISPLAY_UPDATE_TYPE_VNC:
175 #ifdef CONFIG_VNC
176 vnc_display_update(&arg->u.vnc, errp);
177 #else
178 error_setg(errp, "vnc is invalid, missing 'CONFIG_VNC'");
179 #endif
180 break;
181 default:
182 abort();
186 void qmp_client_migrate_info(const char *protocol, const char *hostname,
187 bool has_port, int64_t port,
188 bool has_tls_port, int64_t tls_port,
189 const char *cert_subject,
190 Error **errp)
192 if (strcmp(protocol, "spice") == 0) {
193 if (!qemu_using_spice(errp)) {
194 return;
197 if (!has_port && !has_tls_port) {
198 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
199 return;
202 if (qemu_spice.migrate_info(hostname,
203 has_port ? port : -1,
204 has_tls_port ? tls_port : -1,
205 cert_subject)) {
206 error_setg(errp, "Could not set up display for migration");
207 return;
209 return;
212 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "'spice'");
215 #ifdef CONFIG_PIXMAN
216 #ifdef CONFIG_PNG
218 * png_save: Take a screenshot as PNG
220 * Saves screendump as a PNG file
222 * Returns true for success or false for error.
224 * @fd: File descriptor for PNG file.
225 * @image: Image data in pixman format.
226 * @errp: Pointer to an error.
228 static bool png_save(int fd, pixman_image_t *image, Error **errp)
230 int width = pixman_image_get_width(image);
231 int height = pixman_image_get_height(image);
232 png_struct *png_ptr;
233 png_info *info_ptr;
234 g_autoptr(pixman_image_t) linebuf =
235 qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
236 uint8_t *buf = (uint8_t *)pixman_image_get_data(linebuf);
237 FILE *f = fdopen(fd, "wb");
238 int y;
239 if (!f) {
240 error_setg_errno(errp, errno,
241 "Failed to create file from file descriptor");
242 return false;
245 png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL,
246 NULL, NULL);
247 if (!png_ptr) {
248 error_setg(errp, "PNG creation failed. Unable to write struct");
249 fclose(f);
250 return false;
253 info_ptr = png_create_info_struct(png_ptr);
255 if (!info_ptr) {
256 error_setg(errp, "PNG creation failed. Unable to write info");
257 fclose(f);
258 png_destroy_write_struct(&png_ptr, &info_ptr);
259 return false;
262 png_init_io(png_ptr, f);
264 png_set_IHDR(png_ptr, info_ptr, width, height, 8,
265 PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
266 PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
268 png_write_info(png_ptr, info_ptr);
270 for (y = 0; y < height; ++y) {
271 qemu_pixman_linebuf_fill(linebuf, image, width, 0, y);
272 png_write_row(png_ptr, buf);
275 png_write_end(png_ptr, NULL);
277 png_destroy_write_struct(&png_ptr, &info_ptr);
279 if (fclose(f) != 0) {
280 error_setg_errno(errp, errno,
281 "PNG creation failed. Unable to close file");
282 return false;
285 return true;
288 #else /* no png support */
290 static bool png_save(int fd, pixman_image_t *image, Error **errp)
292 error_setg(errp, "Enable PNG support with libpng for screendump");
293 return false;
296 #endif /* CONFIG_PNG */
298 static bool ppm_save(int fd, pixman_image_t *image, Error **errp)
300 int width = pixman_image_get_width(image);
301 int height = pixman_image_get_height(image);
302 g_autoptr(Object) ioc = OBJECT(qio_channel_file_new_fd(fd));
303 g_autofree char *header = NULL;
304 g_autoptr(pixman_image_t) linebuf = NULL;
305 int y;
307 trace_ppm_save(fd, image);
309 header = g_strdup_printf("P6\n%d %d\n%d\n", width, height, 255);
310 if (qio_channel_write_all(QIO_CHANNEL(ioc),
311 header, strlen(header), errp) < 0) {
312 return false;
315 linebuf = qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
316 for (y = 0; y < height; y++) {
317 qemu_pixman_linebuf_fill(linebuf, image, width, 0, y);
318 if (qio_channel_write_all(QIO_CHANNEL(ioc),
319 (char *)pixman_image_get_data(linebuf),
320 pixman_image_get_stride(linebuf), errp) < 0) {
321 return false;
325 return true;
328 /* Safety: coroutine-only, concurrent-coroutine safe, main thread only */
329 void coroutine_fn
330 qmp_screendump(const char *filename, const char *device,
331 bool has_head, int64_t head,
332 bool has_format, ImageFormat format, Error **errp)
334 g_autoptr(pixman_image_t) image = NULL;
335 QemuConsole *con;
336 DisplaySurface *surface;
337 int fd;
339 if (device) {
340 con = qemu_console_lookup_by_device_name(device, has_head ? head : 0,
341 errp);
342 if (!con) {
343 return;
345 } else {
346 if (has_head) {
347 error_setg(errp, "'head' must be specified together with 'device'");
348 return;
350 con = qemu_console_lookup_by_index(0);
351 if (!con) {
352 error_setg(errp, "There is no console to take a screendump from");
353 return;
357 qemu_console_co_wait_update(con);
360 * All pending coroutines are woken up, while the BQL is held. No
361 * further graphic update are possible until it is released. Take
362 * an image ref before that.
364 surface = qemu_console_surface(con);
365 if (!surface) {
366 error_setg(errp, "no surface");
367 return;
369 image = pixman_image_ref(surface->image);
371 fd = qemu_open_old(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0666);
372 if (fd == -1) {
373 error_setg(errp, "failed to open file '%s': %s", filename,
374 strerror(errno));
375 return;
379 * The image content could potentially be updated as the coroutine
380 * yields and releases the BQL. It could produce corrupted dump, but
381 * it should be otherwise safe.
383 if (has_format && format == IMAGE_FORMAT_PNG) {
384 /* PNG format specified for screendump */
385 if (!png_save(fd, image, errp)) {
386 qemu_unlink(filename);
388 } else {
389 /* PPM format specified/default for screendump */
390 if (!ppm_save(fd, image, errp)) {
391 qemu_unlink(filename);
395 #endif /* CONFIG_PIXMAN */