blob: befd00b00d0f7dcec97186a95412dbcf60970e99 [file] [log] [blame]
Michael Rothe3d4d252011-07-19 15:41:55 -05001/*
Michael Roth42074a92012-01-19 22:19:27 -06002 * QEMU Guest Agent POSIX-specific command implementations
Michael Rothe3d4d252011-07-19 15:41:55 -05003 *
4 * Copyright IBM Corp. 2011
5 *
6 * Authors:
7 * Michael Roth <mdroth@linux.vnet.ibm.com>
Michal Privoznik3424fc92012-02-29 17:02:23 +01008 * Michal Privoznik <mprivozn@redhat.com>
Michael Rothe3d4d252011-07-19 15:41:55 -05009 *
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
12 */
13
14#include <glib.h>
Michael Rothe3d4d252011-07-19 15:41:55 -050015#include <sys/types.h>
16#include <sys/ioctl.h>
Luiz Capitulino2c02cbf2012-05-23 15:48:05 -030017#include <sys/wait.h>
Laszlo Ersekd2baff62013-03-06 22:59:30 +010018#include <unistd.h>
19#include <errno.h>
20#include <fcntl.h>
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -040021#include <dirent.h>
Laszlo Ersekc689b4f2013-04-24 13:13:18 +020022#include <stdio.h>
23#include <string.h>
24#include <sys/stat.h>
Laszlo Ersekd2baff62013-03-06 22:59:30 +010025#include <inttypes.h>
Michael Rothe3d4d252011-07-19 15:41:55 -050026#include "qga/guest-agent-core.h"
27#include "qga-qmp-commands.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010028#include "qapi/qmp/qerror.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010029#include "qemu/queue.h"
30#include "qemu/host-utils.h"
Michael Rothe3d4d252011-07-19 15:41:55 -050031
Luiz Capitulino2c02cbf2012-05-23 15:48:05 -030032#ifndef CONFIG_HAS_ENVIRON
Andreas Färbereecae142012-05-27 17:02:20 +020033#ifdef __APPLE__
34#include <crt_externs.h>
35#define environ (*_NSGetEnviron())
36#else
Luiz Capitulino2c02cbf2012-05-23 15:48:05 -030037extern char **environ;
38#endif
Andreas Färbereecae142012-05-27 17:02:20 +020039#endif
Luiz Capitulino2c02cbf2012-05-23 15:48:05 -030040
Michael Rothe72c3f22012-03-25 13:59:41 -050041#if defined(__linux__)
42#include <mntent.h>
43#include <linux/fs.h>
44#include <ifaddrs.h>
45#include <arpa/inet.h>
46#include <sys/socket.h>
47#include <net/if.h>
Michael Rothe72c3f22012-03-25 13:59:41 -050048
Paolo Bonzinieab5fd52012-06-13 07:41:28 +020049#ifdef FIFREEZE
Michael Rothe72c3f22012-03-25 13:59:41 -050050#define CONFIG_FSFREEZE
51#endif
Paolo Bonzinieab5fd52012-06-13 07:41:28 +020052#ifdef FITRIM
53#define CONFIG_FSTRIM
54#endif
Michael Rothe72c3f22012-03-25 13:59:41 -050055#endif
56
Markus Armbruster77dbc812014-05-02 13:26:30 +020057static void ga_wait_child(pid_t pid, int *status, Error **errp)
Luiz Capitulinod220a6d2012-11-27 11:01:58 -020058{
59 pid_t rpid;
60
61 *status = 0;
62
63 do {
64 rpid = waitpid(pid, status, 0);
65 } while (rpid == -1 && errno == EINTR);
66
67 if (rpid == -1) {
Markus Armbruster77dbc812014-05-02 13:26:30 +020068 error_setg_errno(errp, errno, "failed to wait for child (pid: %d)",
69 pid);
Luiz Capitulinod220a6d2012-11-27 11:01:58 -020070 return;
71 }
72
73 g_assert(rpid == pid);
74}
75
Markus Armbruster77dbc812014-05-02 13:26:30 +020076void qmp_guest_shutdown(bool has_mode, const char *mode, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -050077{
Michael Rothe3d4d252011-07-19 15:41:55 -050078 const char *shutdown_flag;
Luiz Capitulinod220a6d2012-11-27 11:01:58 -020079 Error *local_err = NULL;
80 pid_t pid;
Luiz Capitulino36748382012-05-14 15:25:20 -030081 int status;
Michael Rothe3d4d252011-07-19 15:41:55 -050082
83 slog("guest-shutdown called, mode: %s", mode);
84 if (!has_mode || strcmp(mode, "powerdown") == 0) {
85 shutdown_flag = "-P";
86 } else if (strcmp(mode, "halt") == 0) {
87 shutdown_flag = "-H";
88 } else if (strcmp(mode, "reboot") == 0) {
89 shutdown_flag = "-r";
90 } else {
Markus Armbruster77dbc812014-05-02 13:26:30 +020091 error_setg(errp,
Luiz Capitulinod220a6d2012-11-27 11:01:58 -020092 "mode is invalid (valid values are: halt|powerdown|reboot");
Michael Rothe3d4d252011-07-19 15:41:55 -050093 return;
94 }
95
Luiz Capitulinod5dd3492012-05-11 16:19:47 -030096 pid = fork();
97 if (pid == 0) {
Michael Rothe3d4d252011-07-19 15:41:55 -050098 /* child, start the shutdown */
99 setsid();
Luiz Capitulino36748382012-05-14 15:25:20 -0300100 reopen_fd_to_null(0);
101 reopen_fd_to_null(1);
102 reopen_fd_to_null(2);
Michael Rothe3d4d252011-07-19 15:41:55 -0500103
whitearchey485e7412013-11-06 10:54:04 +0900104 execle("/sbin/shutdown", "shutdown", "-h", shutdown_flag, "+0",
Luiz Capitulino36748382012-05-14 15:25:20 -0300105 "hypervisor initiated shutdown", (char*)NULL, environ);
106 _exit(EXIT_FAILURE);
Luiz Capitulinod5dd3492012-05-11 16:19:47 -0300107 } else if (pid < 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200108 error_setg_errno(errp, errno, "failed to create child process");
Luiz Capitulinod5dd3492012-05-11 16:19:47 -0300109 return;
110 }
111
Luiz Capitulinod220a6d2012-11-27 11:01:58 -0200112 ga_wait_child(pid, &status, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100113 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200114 error_propagate(errp, local_err);
Luiz Capitulinod220a6d2012-11-27 11:01:58 -0200115 return;
116 }
117
118 if (!WIFEXITED(status)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200119 error_setg(errp, "child process has terminated abnormally");
Luiz Capitulinod220a6d2012-11-27 11:01:58 -0200120 return;
121 }
122
123 if (WEXITSTATUS(status)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200124 error_setg(errp, "child process has failed to shutdown");
Luiz Capitulinod220a6d2012-11-27 11:01:58 -0200125 return;
126 }
127
Peter Maydell085d8132013-03-18 17:20:07 +0000128 /* succeeded */
Michael Rothe3d4d252011-07-19 15:41:55 -0500129}
130
Lei Li6912e6a2013-03-05 17:39:11 +0800131int64_t qmp_guest_get_time(Error **errp)
132{
133 int ret;
134 qemu_timeval tq;
135 int64_t time_ns;
136
137 ret = qemu_gettimeofday(&tq);
138 if (ret < 0) {
139 error_setg_errno(errp, errno, "Failed to get time");
140 return -1;
141 }
142
143 time_ns = tq.tv_sec * 1000000000LL + tq.tv_usec * 1000;
144 return time_ns;
145}
146
Michal Privoznik2c958922014-01-31 11:29:51 +0100147void qmp_guest_set_time(bool has_time, int64_t time_ns, Error **errp)
Lei Lia1bca572013-03-05 17:39:12 +0800148{
149 int ret;
150 int status;
151 pid_t pid;
152 Error *local_err = NULL;
153 struct timeval tv;
154
Michal Privoznik2c958922014-01-31 11:29:51 +0100155 /* If user has passed a time, validate and set it. */
156 if (has_time) {
157 /* year-2038 will overflow in case time_t is 32bit */
158 if (time_ns / 1000000000 != (time_t)(time_ns / 1000000000)) {
159 error_setg(errp, "Time %" PRId64 " is too large", time_ns);
160 return;
161 }
162
163 tv.tv_sec = time_ns / 1000000000;
164 tv.tv_usec = (time_ns % 1000000000) / 1000;
165
166 ret = settimeofday(&tv, NULL);
167 if (ret < 0) {
168 error_setg_errno(errp, errno, "Failed to set time to guest");
169 return;
170 }
Lei Lia1bca572013-03-05 17:39:12 +0800171 }
172
Michal Privoznik2c958922014-01-31 11:29:51 +0100173 /* Now, if user has passed a time to set and the system time is set, we
174 * just need to synchronize the hardware clock. However, if no time was
175 * passed, user is requesting the opposite: set the system time from the
Amos Kong1634df52014-04-04 23:25:02 +0800176 * hardware clock (RTC). */
Lei Lia1bca572013-03-05 17:39:12 +0800177 pid = fork();
178 if (pid == 0) {
179 setsid();
180 reopen_fd_to_null(0);
181 reopen_fd_to_null(1);
182 reopen_fd_to_null(2);
183
Michal Privoznik2c958922014-01-31 11:29:51 +0100184 /* Use '/sbin/hwclock -w' to set RTC from the system time,
185 * or '/sbin/hwclock -s' to set the system time from RTC. */
186 execle("/sbin/hwclock", "hwclock", has_time ? "-w" : "-s",
187 NULL, environ);
Lei Lia1bca572013-03-05 17:39:12 +0800188 _exit(EXIT_FAILURE);
189 } else if (pid < 0) {
190 error_setg_errno(errp, errno, "failed to create child process");
191 return;
192 }
193
194 ga_wait_child(pid, &status, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100195 if (local_err) {
Lei Lia1bca572013-03-05 17:39:12 +0800196 error_propagate(errp, local_err);
197 return;
198 }
199
200 if (!WIFEXITED(status)) {
201 error_setg(errp, "child process has terminated abnormally");
202 return;
203 }
204
205 if (WEXITSTATUS(status)) {
206 error_setg(errp, "hwclock failed to set hardware clock to system time");
207 return;
208 }
209}
210
Michael Rothe3d4d252011-07-19 15:41:55 -0500211typedef struct GuestFileHandle {
212 uint64_t id;
213 FILE *fh;
214 QTAILQ_ENTRY(GuestFileHandle) next;
215} GuestFileHandle;
216
217static struct {
218 QTAILQ_HEAD(, GuestFileHandle) filehandles;
219} guest_file_state;
220
Michael Roth39097da2013-03-01 11:40:27 -0600221static int64_t guest_file_handle_add(FILE *fh, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500222{
223 GuestFileHandle *gfh;
Michael Roth39097da2013-03-01 11:40:27 -0600224 int64_t handle;
225
226 handle = ga_get_fd_handle(ga_state, errp);
Markus Armbrustera903f402014-05-02 13:26:33 +0200227 if (handle < 0) {
228 return -1;
Michael Roth39097da2013-03-01 11:40:27 -0600229 }
Michael Rothe3d4d252011-07-19 15:41:55 -0500230
Anthony Liguori7267c092011-08-20 22:09:37 -0500231 gfh = g_malloc0(sizeof(GuestFileHandle));
Michael Roth39097da2013-03-01 11:40:27 -0600232 gfh->id = handle;
Michael Rothe3d4d252011-07-19 15:41:55 -0500233 gfh->fh = fh;
234 QTAILQ_INSERT_TAIL(&guest_file_state.filehandles, gfh, next);
Michael Roth39097da2013-03-01 11:40:27 -0600235
236 return handle;
Michael Rothe3d4d252011-07-19 15:41:55 -0500237}
238
Markus Armbruster77dbc812014-05-02 13:26:30 +0200239static GuestFileHandle *guest_file_handle_find(int64_t id, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500240{
241 GuestFileHandle *gfh;
242
243 QTAILQ_FOREACH(gfh, &guest_file_state.filehandles, next)
244 {
245 if (gfh->id == id) {
246 return gfh;
247 }
248 }
249
Markus Armbruster77dbc812014-05-02 13:26:30 +0200250 error_setg(errp, "handle '%" PRId64 "' has not been found", id);
Michael Rothe3d4d252011-07-19 15:41:55 -0500251 return NULL;
252}
253
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200254typedef const char * const ccpc;
255
Laszlo Ersek8fe6bbc2013-05-08 17:31:35 +0200256#ifndef O_BINARY
257#define O_BINARY 0
258#endif
259
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200260/* http://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html */
261static const struct {
262 ccpc *forms;
263 int oflag_base;
264} guest_file_open_modes[] = {
Laszlo Ersek8fe6bbc2013-05-08 17:31:35 +0200265 { (ccpc[]){ "r", NULL }, O_RDONLY },
266 { (ccpc[]){ "rb", NULL }, O_RDONLY | O_BINARY },
267 { (ccpc[]){ "w", NULL }, O_WRONLY | O_CREAT | O_TRUNC },
268 { (ccpc[]){ "wb", NULL }, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY },
269 { (ccpc[]){ "a", NULL }, O_WRONLY | O_CREAT | O_APPEND },
270 { (ccpc[]){ "ab", NULL }, O_WRONLY | O_CREAT | O_APPEND | O_BINARY },
271 { (ccpc[]){ "r+", NULL }, O_RDWR },
272 { (ccpc[]){ "rb+", "r+b", NULL }, O_RDWR | O_BINARY },
273 { (ccpc[]){ "w+", NULL }, O_RDWR | O_CREAT | O_TRUNC },
274 { (ccpc[]){ "wb+", "w+b", NULL }, O_RDWR | O_CREAT | O_TRUNC | O_BINARY },
275 { (ccpc[]){ "a+", NULL }, O_RDWR | O_CREAT | O_APPEND },
276 { (ccpc[]){ "ab+", "a+b", NULL }, O_RDWR | O_CREAT | O_APPEND | O_BINARY }
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200277};
278
279static int
Markus Armbruster77dbc812014-05-02 13:26:30 +0200280find_open_flag(const char *mode_str, Error **errp)
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200281{
282 unsigned mode;
283
284 for (mode = 0; mode < ARRAY_SIZE(guest_file_open_modes); ++mode) {
285 ccpc *form;
286
287 form = guest_file_open_modes[mode].forms;
288 while (*form != NULL && strcmp(*form, mode_str) != 0) {
289 ++form;
290 }
291 if (*form != NULL) {
292 break;
293 }
294 }
295
296 if (mode == ARRAY_SIZE(guest_file_open_modes)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200297 error_setg(errp, "invalid file open mode '%s'", mode_str);
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200298 return -1;
299 }
300 return guest_file_open_modes[mode].oflag_base | O_NOCTTY | O_NONBLOCK;
301}
302
303#define DEFAULT_NEW_FILE_MODE (S_IRUSR | S_IWUSR | \
304 S_IRGRP | S_IWGRP | \
305 S_IROTH | S_IWOTH)
306
307static FILE *
Markus Armbruster77dbc812014-05-02 13:26:30 +0200308safe_open_or_create(const char *path, const char *mode, Error **errp)
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200309{
310 Error *local_err = NULL;
311 int oflag;
312
313 oflag = find_open_flag(mode, &local_err);
314 if (local_err == NULL) {
315 int fd;
316
317 /* If the caller wants / allows creation of a new file, we implement it
318 * with a two step process: open() + (open() / fchmod()).
319 *
320 * First we insist on creating the file exclusively as a new file. If
321 * that succeeds, we're free to set any file-mode bits on it. (The
322 * motivation is that we want to set those file-mode bits independently
323 * of the current umask.)
324 *
325 * If the exclusive creation fails because the file already exists
326 * (EEXIST is not possible for any other reason), we just attempt to
327 * open the file, but in this case we won't be allowed to change the
328 * file-mode bits on the preexistent file.
329 *
330 * The pathname should never disappear between the two open()s in
331 * practice. If it happens, then someone very likely tried to race us.
332 * In this case just go ahead and report the ENOENT from the second
333 * open() to the caller.
334 *
335 * If the caller wants to open a preexistent file, then the first
336 * open() is decisive and its third argument is ignored, and the second
337 * open() and the fchmod() are never called.
338 */
339 fd = open(path, oflag | ((oflag & O_CREAT) ? O_EXCL : 0), 0);
340 if (fd == -1 && errno == EEXIST) {
341 oflag &= ~(unsigned)O_CREAT;
342 fd = open(path, oflag);
343 }
344
345 if (fd == -1) {
346 error_setg_errno(&local_err, errno, "failed to open file '%s' "
347 "(mode: '%s')", path, mode);
348 } else {
349 qemu_set_cloexec(fd);
350
351 if ((oflag & O_CREAT) && fchmod(fd, DEFAULT_NEW_FILE_MODE) == -1) {
352 error_setg_errno(&local_err, errno, "failed to set permission "
353 "0%03o on new file '%s' (mode: '%s')",
354 (unsigned)DEFAULT_NEW_FILE_MODE, path, mode);
355 } else {
356 FILE *f;
357
358 f = fdopen(fd, mode);
359 if (f == NULL) {
360 error_setg_errno(&local_err, errno, "failed to associate "
361 "stdio stream with file descriptor %d, "
362 "file '%s' (mode: '%s')", fd, path, mode);
363 } else {
364 return f;
365 }
366 }
367
368 close(fd);
Laszlo Ersek2b720012013-05-08 17:31:36 +0200369 if (oflag & O_CREAT) {
370 unlink(path);
371 }
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200372 }
373 }
374
Markus Armbruster77dbc812014-05-02 13:26:30 +0200375 error_propagate(errp, local_err);
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200376 return NULL;
377}
378
Simon Zolin85b6f6f2015-02-06 20:59:54 +0300379static int guest_file_toggle_flags(int fd, int flags, bool set, Error **err)
380{
381 int ret, old_flags;
382
383 old_flags = fcntl(fd, F_GETFL);
384 if (old_flags == -1) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100385 error_setg_errno(err, errno, QERR_QGA_COMMAND_FAILED,
386 "failed to fetch filehandle flags");
Simon Zolin85b6f6f2015-02-06 20:59:54 +0300387 return -1;
388 }
389
390 ret = fcntl(fd, F_SETFL, set ? (old_flags | flags) : (old_flags & ~flags));
391 if (ret == -1) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100392 error_setg_errno(err, errno, QERR_QGA_COMMAND_FAILED,
393 "failed to set filehandle flags");
Simon Zolin85b6f6f2015-02-06 20:59:54 +0300394 return -1;
395 }
396
397 return ret;
398}
399
Markus Armbruster77dbc812014-05-02 13:26:30 +0200400int64_t qmp_guest_file_open(const char *path, bool has_mode, const char *mode,
401 Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500402{
403 FILE *fh;
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200404 Error *local_err = NULL;
Simon Zolin85b6f6f2015-02-06 20:59:54 +0300405 int64_t handle;
Michael Rothe3d4d252011-07-19 15:41:55 -0500406
407 if (!has_mode) {
408 mode = "r";
409 }
410 slog("guest-file-open called, filepath: %s, mode: %s", path, mode);
Laszlo Ersekc689b4f2013-04-24 13:13:18 +0200411 fh = safe_open_or_create(path, mode, &local_err);
412 if (local_err != NULL) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200413 error_propagate(errp, local_err);
Michael Rothe3d4d252011-07-19 15:41:55 -0500414 return -1;
415 }
416
417 /* set fd non-blocking to avoid common use cases (like reading from a
418 * named pipe) from hanging the agent
419 */
Simon Zolin85b6f6f2015-02-06 20:59:54 +0300420 if (guest_file_toggle_flags(fileno(fh), O_NONBLOCK, true, errp) < 0) {
Michael Rothe3d4d252011-07-19 15:41:55 -0500421 fclose(fh);
422 return -1;
423 }
424
Markus Armbruster77dbc812014-05-02 13:26:30 +0200425 handle = guest_file_handle_add(fh, errp);
Markus Armbrustera903f402014-05-02 13:26:33 +0200426 if (handle < 0) {
Michael Roth39097da2013-03-01 11:40:27 -0600427 fclose(fh);
428 return -1;
429 }
430
Stefan Weild607a522013-11-17 19:19:52 +0100431 slog("guest-file-open, handle: %" PRId64, handle);
Michael Roth39097da2013-03-01 11:40:27 -0600432 return handle;
Michael Rothe3d4d252011-07-19 15:41:55 -0500433}
434
Markus Armbruster77dbc812014-05-02 13:26:30 +0200435void qmp_guest_file_close(int64_t handle, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500436{
Markus Armbruster77dbc812014-05-02 13:26:30 +0200437 GuestFileHandle *gfh = guest_file_handle_find(handle, errp);
Michael Rothe3d4d252011-07-19 15:41:55 -0500438 int ret;
439
Stefan Weild607a522013-11-17 19:19:52 +0100440 slog("guest-file-close called, handle: %" PRId64, handle);
Michael Rothe3d4d252011-07-19 15:41:55 -0500441 if (!gfh) {
Michael Rothe3d4d252011-07-19 15:41:55 -0500442 return;
443 }
444
445 ret = fclose(gfh->fh);
Luiz Capitulino3ac4b7c2012-11-27 11:01:56 -0200446 if (ret == EOF) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200447 error_setg_errno(errp, errno, "failed to close handle");
Michael Rothe3d4d252011-07-19 15:41:55 -0500448 return;
449 }
450
451 QTAILQ_REMOVE(&guest_file_state.filehandles, gfh, next);
Anthony Liguori7267c092011-08-20 22:09:37 -0500452 g_free(gfh);
Michael Rothe3d4d252011-07-19 15:41:55 -0500453}
454
455struct GuestFileRead *qmp_guest_file_read(int64_t handle, bool has_count,
Markus Armbruster77dbc812014-05-02 13:26:30 +0200456 int64_t count, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500457{
Markus Armbruster77dbc812014-05-02 13:26:30 +0200458 GuestFileHandle *gfh = guest_file_handle_find(handle, errp);
Michael Rothe3d4d252011-07-19 15:41:55 -0500459 GuestFileRead *read_data = NULL;
460 guchar *buf;
461 FILE *fh;
462 size_t read_count;
463
464 if (!gfh) {
Michael Rothe3d4d252011-07-19 15:41:55 -0500465 return NULL;
466 }
467
468 if (!has_count) {
469 count = QGA_READ_COUNT_DEFAULT;
470 } else if (count < 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200471 error_setg(errp, "value '%" PRId64 "' is invalid for argument count",
Luiz Capitulinodb3edb62012-11-27 11:01:57 -0200472 count);
Michael Rothe3d4d252011-07-19 15:41:55 -0500473 return NULL;
474 }
475
476 fh = gfh->fh;
Anthony Liguori7267c092011-08-20 22:09:37 -0500477 buf = g_malloc0(count+1);
Michael Rothe3d4d252011-07-19 15:41:55 -0500478 read_count = fread(buf, 1, count, fh);
479 if (ferror(fh)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200480 error_setg_errno(errp, errno, "failed to read file");
Stefan Weild607a522013-11-17 19:19:52 +0100481 slog("guest-file-read failed, handle: %" PRId64, handle);
Michael Rothe3d4d252011-07-19 15:41:55 -0500482 } else {
483 buf[read_count] = 0;
Anthony Liguori7267c092011-08-20 22:09:37 -0500484 read_data = g_malloc0(sizeof(GuestFileRead));
Michael Rothe3d4d252011-07-19 15:41:55 -0500485 read_data->count = read_count;
486 read_data->eof = feof(fh);
487 if (read_count) {
488 read_data->buf_b64 = g_base64_encode(buf, read_count);
489 }
490 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500491 g_free(buf);
Michael Rothe3d4d252011-07-19 15:41:55 -0500492 clearerr(fh);
493
494 return read_data;
495}
496
497GuestFileWrite *qmp_guest_file_write(int64_t handle, const char *buf_b64,
Markus Armbruster77dbc812014-05-02 13:26:30 +0200498 bool has_count, int64_t count,
499 Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500500{
501 GuestFileWrite *write_data = NULL;
502 guchar *buf;
503 gsize buf_len;
504 int write_count;
Markus Armbruster77dbc812014-05-02 13:26:30 +0200505 GuestFileHandle *gfh = guest_file_handle_find(handle, errp);
Michael Rothe3d4d252011-07-19 15:41:55 -0500506 FILE *fh;
507
508 if (!gfh) {
Michael Rothe3d4d252011-07-19 15:41:55 -0500509 return NULL;
510 }
511
512 fh = gfh->fh;
513 buf = g_base64_decode(buf_b64, &buf_len);
514
515 if (!has_count) {
516 count = buf_len;
517 } else if (count < 0 || count > buf_len) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200518 error_setg(errp, "value '%" PRId64 "' is invalid for argument count",
Luiz Capitulinodb3edb62012-11-27 11:01:57 -0200519 count);
Anthony Liguori7267c092011-08-20 22:09:37 -0500520 g_free(buf);
Michael Rothe3d4d252011-07-19 15:41:55 -0500521 return NULL;
522 }
523
524 write_count = fwrite(buf, 1, count, fh);
525 if (ferror(fh)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200526 error_setg_errno(errp, errno, "failed to write to file");
Stefan Weild607a522013-11-17 19:19:52 +0100527 slog("guest-file-write failed, handle: %" PRId64, handle);
Michael Rothe3d4d252011-07-19 15:41:55 -0500528 } else {
Anthony Liguori7267c092011-08-20 22:09:37 -0500529 write_data = g_malloc0(sizeof(GuestFileWrite));
Michael Rothe3d4d252011-07-19 15:41:55 -0500530 write_data->count = write_count;
531 write_data->eof = feof(fh);
532 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500533 g_free(buf);
Michael Rothe3d4d252011-07-19 15:41:55 -0500534 clearerr(fh);
535
536 return write_data;
537}
538
539struct GuestFileSeek *qmp_guest_file_seek(int64_t handle, int64_t offset,
Markus Armbruster77dbc812014-05-02 13:26:30 +0200540 int64_t whence, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500541{
Markus Armbruster77dbc812014-05-02 13:26:30 +0200542 GuestFileHandle *gfh = guest_file_handle_find(handle, errp);
Michael Rothe3d4d252011-07-19 15:41:55 -0500543 GuestFileSeek *seek_data = NULL;
544 FILE *fh;
545 int ret;
546
547 if (!gfh) {
Michael Rothe3d4d252011-07-19 15:41:55 -0500548 return NULL;
549 }
550
551 fh = gfh->fh;
552 ret = fseek(fh, offset, whence);
553 if (ret == -1) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200554 error_setg_errno(errp, errno, "failed to seek file");
Michael Rothe3d4d252011-07-19 15:41:55 -0500555 } else {
Markus Armbruster10b7c5d2014-02-21 13:36:49 +0100556 seek_data = g_new0(GuestFileSeek, 1);
Michael Rothe3d4d252011-07-19 15:41:55 -0500557 seek_data->position = ftell(fh);
558 seek_data->eof = feof(fh);
559 }
560 clearerr(fh);
561
562 return seek_data;
563}
564
Markus Armbruster77dbc812014-05-02 13:26:30 +0200565void qmp_guest_file_flush(int64_t handle, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500566{
Markus Armbruster77dbc812014-05-02 13:26:30 +0200567 GuestFileHandle *gfh = guest_file_handle_find(handle, errp);
Michael Rothe3d4d252011-07-19 15:41:55 -0500568 FILE *fh;
569 int ret;
570
571 if (!gfh) {
Michael Rothe3d4d252011-07-19 15:41:55 -0500572 return;
573 }
574
575 fh = gfh->fh;
576 ret = fflush(fh);
577 if (ret == EOF) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200578 error_setg_errno(errp, errno, "failed to flush file");
Michael Rothe3d4d252011-07-19 15:41:55 -0500579 }
580}
581
582static void guest_file_init(void)
583{
584 QTAILQ_INIT(&guest_file_state.filehandles);
585}
586
Michael Rothe72c3f22012-03-25 13:59:41 -0500587/* linux-specific implementations. avoid this if at all possible. */
588#if defined(__linux__)
589
Paolo Bonzinieab5fd52012-06-13 07:41:28 +0200590#if defined(CONFIG_FSFREEZE) || defined(CONFIG_FSTRIM)
Paolo Bonziniaf022032012-06-13 07:41:27 +0200591typedef struct FsMount {
Michael Rothe3d4d252011-07-19 15:41:55 -0500592 char *dirname;
593 char *devtype;
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400594 unsigned int devmajor, devminor;
Paolo Bonziniaf022032012-06-13 07:41:27 +0200595 QTAILQ_ENTRY(FsMount) next;
596} FsMount;
Michael Rothe3d4d252011-07-19 15:41:55 -0500597
Tomoki Sekiyamae5d9adb2013-10-01 17:09:53 -0400598typedef QTAILQ_HEAD(FsMountList, FsMount) FsMountList;
Michael Roth9e8aded432012-04-16 19:52:17 -0500599
Paolo Bonziniaf022032012-06-13 07:41:27 +0200600static void free_fs_mount_list(FsMountList *mounts)
Michael Roth9e8aded432012-04-16 19:52:17 -0500601{
Paolo Bonziniaf022032012-06-13 07:41:27 +0200602 FsMount *mount, *temp;
Michael Roth9e8aded432012-04-16 19:52:17 -0500603
604 if (!mounts) {
605 return;
606 }
607
608 QTAILQ_FOREACH_SAFE(mount, mounts, next, temp) {
609 QTAILQ_REMOVE(mounts, mount, next);
610 g_free(mount->dirname);
611 g_free(mount->devtype);
612 g_free(mount);
613 }
614}
615
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400616static int dev_major_minor(const char *devpath,
617 unsigned int *devmajor, unsigned int *devminor)
618{
619 struct stat st;
620
621 *devmajor = 0;
622 *devminor = 0;
623
624 if (stat(devpath, &st) < 0) {
625 slog("failed to stat device file '%s': %s", devpath, strerror(errno));
626 return -1;
627 }
628 if (S_ISDIR(st.st_mode)) {
629 /* It is bind mount */
630 return -2;
631 }
632 if (S_ISBLK(st.st_mode)) {
633 *devmajor = major(st.st_rdev);
634 *devminor = minor(st.st_rdev);
635 return 0;
636 }
637 return -1;
638}
639
Michael Rothe3d4d252011-07-19 15:41:55 -0500640/*
641 * Walk the mount table and build a list of local file systems
642 */
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400643static void build_fs_mount_list_from_mtab(FsMountList *mounts, Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -0500644{
645 struct mntent *ment;
Paolo Bonziniaf022032012-06-13 07:41:27 +0200646 FsMount *mount;
Michael Roth9e2fa412012-05-29 10:08:50 -0500647 char const *mtab = "/proc/self/mounts";
Michael Rothe3d4d252011-07-19 15:41:55 -0500648 FILE *fp;
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400649 unsigned int devmajor, devminor;
Michael Rothe3d4d252011-07-19 15:41:55 -0500650
Michael Rothe3d4d252011-07-19 15:41:55 -0500651 fp = setmntent(mtab, "r");
652 if (!fp) {
Markus Armbruster77dbc812014-05-02 13:26:30 +0200653 error_setg(errp, "failed to open mtab file: '%s'", mtab);
Luiz Capitulino261551d2012-11-29 15:29:11 -0200654 return;
Michael Rothe3d4d252011-07-19 15:41:55 -0500655 }
656
657 while ((ment = getmntent(fp))) {
658 /*
659 * An entry which device name doesn't start with a '/' is
660 * either a dummy file system or a network file system.
661 * Add special handling for smbfs and cifs as is done by
662 * coreutils as well.
663 */
664 if ((ment->mnt_fsname[0] != '/') ||
665 (strcmp(ment->mnt_type, "smbfs") == 0) ||
666 (strcmp(ment->mnt_type, "cifs") == 0)) {
667 continue;
668 }
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400669 if (dev_major_minor(ment->mnt_fsname, &devmajor, &devminor) == -2) {
670 /* Skip bind mounts */
671 continue;
672 }
Michael Rothe3d4d252011-07-19 15:41:55 -0500673
Paolo Bonziniaf022032012-06-13 07:41:27 +0200674 mount = g_malloc0(sizeof(FsMount));
Anthony Liguori7267c092011-08-20 22:09:37 -0500675 mount->dirname = g_strdup(ment->mnt_dir);
676 mount->devtype = g_strdup(ment->mnt_type);
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400677 mount->devmajor = devmajor;
678 mount->devminor = devminor;
Michael Rothe3d4d252011-07-19 15:41:55 -0500679
Michael Roth9e8aded432012-04-16 19:52:17 -0500680 QTAILQ_INSERT_TAIL(mounts, mount, next);
Michael Rothe3d4d252011-07-19 15:41:55 -0500681 }
682
683 endmntent(fp);
Michael Rothe3d4d252011-07-19 15:41:55 -0500684}
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400685
686static void decode_mntname(char *name, int len)
687{
688 int i, j = 0;
689 for (i = 0; i <= len; i++) {
690 if (name[i] != '\\') {
691 name[j++] = name[i];
692 } else if (name[i + 1] == '\\') {
693 name[j++] = '\\';
694 i++;
695 } else if (name[i + 1] >= '0' && name[i + 1] <= '3' &&
696 name[i + 2] >= '0' && name[i + 2] <= '7' &&
697 name[i + 3] >= '0' && name[i + 3] <= '7') {
698 name[j++] = (name[i + 1] - '0') * 64 +
699 (name[i + 2] - '0') * 8 +
700 (name[i + 3] - '0');
701 i += 3;
702 } else {
703 name[j++] = name[i];
704 }
705 }
706}
707
708static void build_fs_mount_list(FsMountList *mounts, Error **errp)
709{
710 FsMount *mount;
711 char const *mountinfo = "/proc/self/mountinfo";
712 FILE *fp;
713 char *line = NULL, *dash;
714 size_t n;
715 char check;
716 unsigned int devmajor, devminor;
717 int ret, dir_s, dir_e, type_s, type_e, dev_s, dev_e;
718
719 fp = fopen(mountinfo, "r");
720 if (!fp) {
721 build_fs_mount_list_from_mtab(mounts, errp);
722 return;
723 }
724
725 while (getline(&line, &n, fp) != -1) {
726 ret = sscanf(line, "%*u %*u %u:%u %*s %n%*s%n%c",
727 &devmajor, &devminor, &dir_s, &dir_e, &check);
728 if (ret < 3) {
729 continue;
730 }
731 dash = strstr(line + dir_e, " - ");
732 if (!dash) {
733 continue;
734 }
735 ret = sscanf(dash, " - %n%*s%n %n%*s%n%c",
736 &type_s, &type_e, &dev_s, &dev_e, &check);
737 if (ret < 1) {
738 continue;
739 }
740 line[dir_e] = 0;
741 dash[type_e] = 0;
742 dash[dev_e] = 0;
743 decode_mntname(line + dir_s, dir_e - dir_s);
744 decode_mntname(dash + dev_s, dev_e - dev_s);
745 if (devmajor == 0) {
746 /* btrfs reports major number = 0 */
747 if (strcmp("btrfs", dash + type_s) != 0 ||
748 dev_major_minor(dash + dev_s, &devmajor, &devminor) < 0) {
749 continue;
750 }
751 }
752
753 mount = g_malloc0(sizeof(FsMount));
754 mount->dirname = g_strdup(line + dir_s);
755 mount->devtype = g_strdup(dash + type_s);
756 mount->devmajor = devmajor;
757 mount->devminor = devminor;
758
759 QTAILQ_INSERT_TAIL(mounts, mount, next);
760 }
761 free(line);
762
763 fclose(fp);
764}
Paolo Bonzinieab5fd52012-06-13 07:41:28 +0200765#endif
766
767#if defined(CONFIG_FSFREEZE)
Michael Rothe3d4d252011-07-19 15:41:55 -0500768
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400769static char *get_pci_driver(char const *syspath, int pathlen, Error **errp)
770{
771 char *path;
772 char *dpath;
773 char *driver = NULL;
774 char buf[PATH_MAX];
775 ssize_t len;
776
777 path = g_strndup(syspath, pathlen);
778 dpath = g_strdup_printf("%s/driver", path);
779 len = readlink(dpath, buf, sizeof(buf) - 1);
780 if (len != -1) {
781 buf[len] = 0;
782 driver = g_strdup(basename(buf));
783 }
784 g_free(dpath);
785 g_free(path);
786 return driver;
787}
788
789static int compare_uint(const void *_a, const void *_b)
790{
791 unsigned int a = *(unsigned int *)_a;
792 unsigned int b = *(unsigned int *)_b;
793
794 return a < b ? -1 : a > b ? 1 : 0;
795}
796
797/* Walk the specified sysfs and build a sorted list of host or ata numbers */
798static int build_hosts(char const *syspath, char const *host, bool ata,
799 unsigned int *hosts, int hosts_max, Error **errp)
800{
801 char *path;
802 DIR *dir;
803 struct dirent *entry;
804 int i = 0;
805
806 path = g_strndup(syspath, host - syspath);
807 dir = opendir(path);
808 if (!dir) {
809 error_setg_errno(errp, errno, "opendir(\"%s\")", path);
810 g_free(path);
811 return -1;
812 }
813
814 while (i < hosts_max) {
815 entry = readdir(dir);
816 if (!entry) {
817 break;
818 }
819 if (ata && sscanf(entry->d_name, "ata%d", hosts + i) == 1) {
820 ++i;
821 } else if (!ata && sscanf(entry->d_name, "host%d", hosts + i) == 1) {
822 ++i;
823 }
824 }
825
826 qsort(hosts, i, sizeof(hosts[0]), compare_uint);
827
828 g_free(path);
829 closedir(dir);
830 return i;
831}
832
833/* Store disk device info specified by @sysfs into @fs */
834static void build_guest_fsinfo_for_real_device(char const *syspath,
835 GuestFilesystemInfo *fs,
836 Error **errp)
837{
838 unsigned int pci[4], host, hosts[8], tgt[3];
839 int i, nhosts = 0, pcilen;
840 GuestDiskAddress *disk;
841 GuestPCIAddress *pciaddr;
842 GuestDiskAddressList *list = NULL;
843 bool has_ata = false, has_host = false, has_tgt = false;
844 char *p, *q, *driver = NULL;
845
846 p = strstr(syspath, "/devices/pci");
847 if (!p || sscanf(p + 12, "%*x:%*x/%x:%x:%x.%x%n",
848 pci, pci + 1, pci + 2, pci + 3, &pcilen) < 4) {
849 g_debug("only pci device is supported: sysfs path \"%s\"", syspath);
850 return;
851 }
852
853 driver = get_pci_driver(syspath, (p + 12 + pcilen) - syspath, errp);
854 if (!driver) {
855 goto cleanup;
856 }
857
858 p = strstr(syspath, "/target");
859 if (p && sscanf(p + 7, "%*u:%*u:%*u/%*u:%u:%u:%u",
860 tgt, tgt + 1, tgt + 2) == 3) {
861 has_tgt = true;
862 }
863
864 p = strstr(syspath, "/ata");
865 if (p) {
866 q = p + 4;
867 has_ata = true;
868 } else {
869 p = strstr(syspath, "/host");
870 q = p + 5;
871 }
872 if (p && sscanf(q, "%u", &host) == 1) {
873 has_host = true;
874 nhosts = build_hosts(syspath, p, has_ata, hosts,
875 sizeof(hosts) / sizeof(hosts[0]), errp);
876 if (nhosts < 0) {
877 goto cleanup;
878 }
879 }
880
881 pciaddr = g_malloc0(sizeof(*pciaddr));
882 pciaddr->domain = pci[0];
883 pciaddr->bus = pci[1];
884 pciaddr->slot = pci[2];
885 pciaddr->function = pci[3];
886
887 disk = g_malloc0(sizeof(*disk));
888 disk->pci_controller = pciaddr;
889
890 list = g_malloc0(sizeof(*list));
891 list->value = disk;
892
893 if (strcmp(driver, "ata_piix") == 0) {
894 /* a host per ide bus, target*:0:<unit>:0 */
895 if (!has_host || !has_tgt) {
896 g_debug("invalid sysfs path '%s' (driver '%s')", syspath, driver);
897 goto cleanup;
898 }
899 for (i = 0; i < nhosts; i++) {
900 if (host == hosts[i]) {
901 disk->bus_type = GUEST_DISK_BUS_TYPE_IDE;
902 disk->bus = i;
903 disk->unit = tgt[1];
904 break;
905 }
906 }
907 if (i >= nhosts) {
908 g_debug("no host for '%s' (driver '%s')", syspath, driver);
909 goto cleanup;
910 }
911 } else if (strcmp(driver, "sym53c8xx") == 0) {
912 /* scsi(LSI Logic): target*:0:<unit>:0 */
913 if (!has_tgt) {
914 g_debug("invalid sysfs path '%s' (driver '%s')", syspath, driver);
915 goto cleanup;
916 }
917 disk->bus_type = GUEST_DISK_BUS_TYPE_SCSI;
918 disk->unit = tgt[1];
919 } else if (strcmp(driver, "virtio-pci") == 0) {
920 if (has_tgt) {
921 /* virtio-scsi: target*:0:0:<unit> */
922 disk->bus_type = GUEST_DISK_BUS_TYPE_SCSI;
923 disk->unit = tgt[2];
924 } else {
925 /* virtio-blk: 1 disk per 1 device */
926 disk->bus_type = GUEST_DISK_BUS_TYPE_VIRTIO;
927 }
928 } else if (strcmp(driver, "ahci") == 0) {
929 /* ahci: 1 host per 1 unit */
930 if (!has_host || !has_tgt) {
931 g_debug("invalid sysfs path '%s' (driver '%s')", syspath, driver);
932 goto cleanup;
933 }
934 for (i = 0; i < nhosts; i++) {
935 if (host == hosts[i]) {
936 disk->unit = i;
937 disk->bus_type = GUEST_DISK_BUS_TYPE_SATA;
938 break;
939 }
940 }
941 if (i >= nhosts) {
942 g_debug("no host for '%s' (driver '%s')", syspath, driver);
943 goto cleanup;
944 }
945 } else {
946 g_debug("unknown driver '%s' (sysfs path '%s')", driver, syspath);
947 goto cleanup;
948 }
949
950 list->next = fs->disk;
951 fs->disk = list;
952 g_free(driver);
953 return;
954
955cleanup:
956 if (list) {
957 qapi_free_GuestDiskAddressList(list);
958 }
959 g_free(driver);
960}
961
962static void build_guest_fsinfo_for_device(char const *devpath,
963 GuestFilesystemInfo *fs,
964 Error **errp);
965
966/* Store a list of slave devices of virtual volume specified by @syspath into
967 * @fs */
968static void build_guest_fsinfo_for_virtual_device(char const *syspath,
969 GuestFilesystemInfo *fs,
970 Error **errp)
971{
972 DIR *dir;
973 char *dirpath;
zhanghailiange668d1b2014-09-19 11:09:10 +0800974 struct dirent *entry;
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400975
976 dirpath = g_strdup_printf("%s/slaves", syspath);
977 dir = opendir(dirpath);
978 if (!dir) {
979 error_setg_errno(errp, errno, "opendir(\"%s\")", dirpath);
980 g_free(dirpath);
981 return;
982 }
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400983
984 for (;;) {
zhanghailiange668d1b2014-09-19 11:09:10 +0800985 errno = 0;
986 entry = readdir(dir);
987 if (entry == NULL) {
988 if (errno) {
989 error_setg_errno(errp, errno, "readdir(\"%s\")", dirpath);
990 }
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -0400991 break;
992 }
993
zhanghailiange668d1b2014-09-19 11:09:10 +0800994 if (entry->d_type == DT_LNK) {
995 char *path;
996
997 g_debug(" slave device '%s'", entry->d_name);
998 path = g_strdup_printf("%s/slaves/%s", syspath, entry->d_name);
999 build_guest_fsinfo_for_device(path, fs, errp);
1000 g_free(path);
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -04001001
1002 if (*errp) {
1003 break;
1004 }
1005 }
1006 }
1007
zhanghailiange668d1b2014-09-19 11:09:10 +08001008 g_free(dirpath);
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -04001009 closedir(dir);
1010}
1011
1012/* Dispatch to functions for virtual/real device */
1013static void build_guest_fsinfo_for_device(char const *devpath,
1014 GuestFilesystemInfo *fs,
1015 Error **errp)
1016{
1017 char *syspath = realpath(devpath, NULL);
1018
1019 if (!syspath) {
1020 error_setg_errno(errp, errno, "realpath(\"%s\")", devpath);
1021 return;
1022 }
1023
1024 if (!fs->name) {
1025 fs->name = g_strdup(basename(syspath));
1026 }
1027
1028 g_debug(" parse sysfs path '%s'", syspath);
1029
1030 if (strstr(syspath, "/devices/virtual/block/")) {
1031 build_guest_fsinfo_for_virtual_device(syspath, fs, errp);
1032 } else {
1033 build_guest_fsinfo_for_real_device(syspath, fs, errp);
1034 }
1035
1036 free(syspath);
1037}
1038
1039/* Return a list of the disk device(s)' info which @mount lies on */
1040static GuestFilesystemInfo *build_guest_fsinfo(struct FsMount *mount,
1041 Error **errp)
1042{
1043 GuestFilesystemInfo *fs = g_malloc0(sizeof(*fs));
1044 char *devpath = g_strdup_printf("/sys/dev/block/%u:%u",
1045 mount->devmajor, mount->devminor);
1046
1047 fs->mountpoint = g_strdup(mount->dirname);
1048 fs->type = g_strdup(mount->devtype);
1049 build_guest_fsinfo_for_device(devpath, fs, errp);
1050
1051 g_free(devpath);
1052 return fs;
1053}
1054
1055GuestFilesystemInfoList *qmp_guest_get_fsinfo(Error **errp)
1056{
1057 FsMountList mounts;
1058 struct FsMount *mount;
1059 GuestFilesystemInfoList *new, *ret = NULL;
1060 Error *local_err = NULL;
1061
1062 QTAILQ_INIT(&mounts);
1063 build_fs_mount_list(&mounts, &local_err);
1064 if (local_err) {
1065 error_propagate(errp, local_err);
1066 return NULL;
1067 }
1068
1069 QTAILQ_FOREACH(mount, &mounts, next) {
1070 g_debug("Building guest fsinfo for '%s'", mount->dirname);
1071
1072 new = g_malloc0(sizeof(*ret));
1073 new->value = build_guest_fsinfo(mount, &local_err);
1074 new->next = ret;
1075 ret = new;
1076 if (local_err) {
1077 error_propagate(errp, local_err);
1078 qapi_free_GuestFilesystemInfoList(ret);
1079 ret = NULL;
1080 break;
1081 }
1082 }
1083
1084 free_fs_mount_list(&mounts);
1085 return ret;
1086}
1087
1088
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001089typedef enum {
1090 FSFREEZE_HOOK_THAW = 0,
1091 FSFREEZE_HOOK_FREEZE,
1092} FsfreezeHookArg;
1093
Stefan Weil13a439e2014-07-07 21:07:29 +02001094static const char *fsfreeze_hook_arg_string[] = {
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001095 "thaw",
1096 "freeze",
1097};
1098
Markus Armbruster77dbc812014-05-02 13:26:30 +02001099static void execute_fsfreeze_hook(FsfreezeHookArg arg, Error **errp)
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001100{
1101 int status;
1102 pid_t pid;
1103 const char *hook;
1104 const char *arg_str = fsfreeze_hook_arg_string[arg];
1105 Error *local_err = NULL;
1106
1107 hook = ga_fsfreeze_hook(ga_state);
1108 if (!hook) {
1109 return;
1110 }
1111 if (access(hook, X_OK) != 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001112 error_setg_errno(errp, errno, "can't access fsfreeze hook '%s'", hook);
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001113 return;
1114 }
1115
1116 slog("executing fsfreeze hook with arg '%s'", arg_str);
1117 pid = fork();
1118 if (pid == 0) {
1119 setsid();
1120 reopen_fd_to_null(0);
1121 reopen_fd_to_null(1);
1122 reopen_fd_to_null(2);
1123
1124 execle(hook, hook, arg_str, NULL, environ);
1125 _exit(EXIT_FAILURE);
1126 } else if (pid < 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001127 error_setg_errno(errp, errno, "failed to create child process");
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001128 return;
1129 }
1130
1131 ga_wait_child(pid, &status, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001132 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001133 error_propagate(errp, local_err);
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001134 return;
1135 }
1136
1137 if (!WIFEXITED(status)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001138 error_setg(errp, "fsfreeze hook has terminated abnormally");
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001139 return;
1140 }
1141
1142 status = WEXITSTATUS(status);
1143 if (status) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001144 error_setg(errp, "fsfreeze hook has failed with status %d", status);
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001145 return;
1146 }
1147}
1148
Michael Rothe3d4d252011-07-19 15:41:55 -05001149/*
1150 * Return status of freeze/thaw
1151 */
Markus Armbruster77dbc812014-05-02 13:26:30 +02001152GuestFsfreezeStatus qmp_guest_fsfreeze_status(Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -05001153{
Michael Rothf22d85e2012-04-17 19:01:45 -05001154 if (ga_is_frozen(ga_state)) {
1155 return GUEST_FSFREEZE_STATUS_FROZEN;
1156 }
1157
1158 return GUEST_FSFREEZE_STATUS_THAWED;
Michael Rothe3d4d252011-07-19 15:41:55 -05001159}
1160
Tomoki Sekiyamae99bce22014-06-30 17:51:27 -04001161int64_t qmp_guest_fsfreeze_freeze(Error **errp)
1162{
1163 return qmp_guest_fsfreeze_freeze_list(false, NULL, errp);
1164}
1165
Michael Rothe3d4d252011-07-19 15:41:55 -05001166/*
1167 * Walk list of mounted file systems in the guest, and freeze the ones which
1168 * are real local file systems.
1169 */
Tomoki Sekiyamae99bce22014-06-30 17:51:27 -04001170int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints,
1171 strList *mountpoints,
1172 Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -05001173{
1174 int ret = 0, i = 0;
Tomoki Sekiyamae99bce22014-06-30 17:51:27 -04001175 strList *list;
Paolo Bonziniaf022032012-06-13 07:41:27 +02001176 FsMountList mounts;
1177 struct FsMount *mount;
Luiz Capitulino261551d2012-11-29 15:29:11 -02001178 Error *local_err = NULL;
Michael Rothe3d4d252011-07-19 15:41:55 -05001179 int fd;
Michael Rothe3d4d252011-07-19 15:41:55 -05001180
1181 slog("guest-fsfreeze called");
1182
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001183 execute_fsfreeze_hook(FSFREEZE_HOOK_FREEZE, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001184 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001185 error_propagate(errp, local_err);
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001186 return -1;
1187 }
1188
Michael Roth9e8aded432012-04-16 19:52:17 -05001189 QTAILQ_INIT(&mounts);
Luiz Capitulino261551d2012-11-29 15:29:11 -02001190 build_fs_mount_list(&mounts, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001191 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001192 error_propagate(errp, local_err);
Luiz Capitulino261551d2012-11-29 15:29:11 -02001193 return -1;
Michael Rothe3d4d252011-07-19 15:41:55 -05001194 }
1195
1196 /* cannot risk guest agent blocking itself on a write in this state */
Michael Rothf22d85e2012-04-17 19:01:45 -05001197 ga_set_frozen(ga_state);
Michael Rothe3d4d252011-07-19 15:41:55 -05001198
Tomoki Sekiyamae5d9adb2013-10-01 17:09:53 -04001199 QTAILQ_FOREACH_REVERSE(mount, &mounts, FsMountList, next) {
Tomoki Sekiyamae99bce22014-06-30 17:51:27 -04001200 /* To issue fsfreeze in the reverse order of mounts, check if the
1201 * mount is listed in the list here */
1202 if (has_mountpoints) {
1203 for (list = mountpoints; list; list = list->next) {
1204 if (strcmp(list->value, mount->dirname) == 0) {
1205 break;
1206 }
1207 }
1208 if (!list) {
1209 continue;
1210 }
1211 }
1212
Michael Rothe3d4d252011-07-19 15:41:55 -05001213 fd = qemu_open(mount->dirname, O_RDONLY);
1214 if (fd == -1) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001215 error_setg_errno(errp, errno, "failed to open %s", mount->dirname);
Michael Rothe3d4d252011-07-19 15:41:55 -05001216 goto error;
1217 }
1218
1219 /* we try to cull filesytems we know won't work in advance, but other
1220 * filesytems may not implement fsfreeze for less obvious reasons.
Michael Roth9e8aded432012-04-16 19:52:17 -05001221 * these will report EOPNOTSUPP. we simply ignore these when tallying
1222 * the number of frozen filesystems.
1223 *
1224 * any other error means a failure to freeze a filesystem we
1225 * expect to be freezable, so return an error in those cases
1226 * and return system to thawed state.
Michael Rothe3d4d252011-07-19 15:41:55 -05001227 */
1228 ret = ioctl(fd, FIFREEZE);
Michael Roth9e8aded432012-04-16 19:52:17 -05001229 if (ret == -1) {
1230 if (errno != EOPNOTSUPP) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001231 error_setg_errno(errp, errno, "failed to freeze %s",
Luiz Capitulino617fbbc2012-11-27 11:02:00 -02001232 mount->dirname);
Michael Roth9e8aded432012-04-16 19:52:17 -05001233 close(fd);
1234 goto error;
1235 }
1236 } else {
1237 i++;
Michael Rothe3d4d252011-07-19 15:41:55 -05001238 }
1239 close(fd);
Michael Rothe3d4d252011-07-19 15:41:55 -05001240 }
1241
Paolo Bonziniaf022032012-06-13 07:41:27 +02001242 free_fs_mount_list(&mounts);
Michael Rothe3d4d252011-07-19 15:41:55 -05001243 return i;
1244
1245error:
Paolo Bonziniaf022032012-06-13 07:41:27 +02001246 free_fs_mount_list(&mounts);
Michael Roth9e8aded432012-04-16 19:52:17 -05001247 qmp_guest_fsfreeze_thaw(NULL);
Michael Rothe3d4d252011-07-19 15:41:55 -05001248 return 0;
1249}
1250
1251/*
1252 * Walk list of frozen file systems in the guest, and thaw them.
1253 */
Markus Armbruster77dbc812014-05-02 13:26:30 +02001254int64_t qmp_guest_fsfreeze_thaw(Error **errp)
Michael Rothe3d4d252011-07-19 15:41:55 -05001255{
1256 int ret;
Paolo Bonziniaf022032012-06-13 07:41:27 +02001257 FsMountList mounts;
1258 FsMount *mount;
Michael Roth9e8aded432012-04-16 19:52:17 -05001259 int fd, i = 0, logged;
Luiz Capitulino261551d2012-11-29 15:29:11 -02001260 Error *local_err = NULL;
Michael Rothe3d4d252011-07-19 15:41:55 -05001261
Michael Roth9e8aded432012-04-16 19:52:17 -05001262 QTAILQ_INIT(&mounts);
Luiz Capitulino261551d2012-11-29 15:29:11 -02001263 build_fs_mount_list(&mounts, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001264 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001265 error_propagate(errp, local_err);
Michael Roth9e8aded432012-04-16 19:52:17 -05001266 return 0;
1267 }
1268
1269 QTAILQ_FOREACH(mount, &mounts, next) {
1270 logged = false;
Michael Rothe3d4d252011-07-19 15:41:55 -05001271 fd = qemu_open(mount->dirname, O_RDONLY);
1272 if (fd == -1) {
Michael Rothe3d4d252011-07-19 15:41:55 -05001273 continue;
1274 }
Michael Roth9e8aded432012-04-16 19:52:17 -05001275 /* we have no way of knowing whether a filesystem was actually unfrozen
1276 * as a result of a successful call to FITHAW, only that if an error
1277 * was returned the filesystem was *not* unfrozen by that particular
1278 * call.
1279 *
Jim Meyeringa31f0532012-05-09 05:12:04 +00001280 * since multiple preceding FIFREEZEs require multiple calls to FITHAW
Michael Roth9e8aded432012-04-16 19:52:17 -05001281 * to unfreeze, continuing issuing FITHAW until an error is returned,
1282 * in which case either the filesystem is in an unfreezable state, or,
1283 * more likely, it was thawed previously (and remains so afterward).
1284 *
1285 * also, since the most recent successful call is the one that did
1286 * the actual unfreeze, we can use this to provide an accurate count
1287 * of the number of filesystems unfrozen by guest-fsfreeze-thaw, which
1288 * may * be useful for determining whether a filesystem was unfrozen
1289 * during the freeze/thaw phase by a process other than qemu-ga.
1290 */
1291 do {
1292 ret = ioctl(fd, FITHAW);
1293 if (ret == 0 && !logged) {
1294 i++;
1295 logged = true;
1296 }
1297 } while (ret == 0);
Michael Rothe3d4d252011-07-19 15:41:55 -05001298 close(fd);
Michael Rothe3d4d252011-07-19 15:41:55 -05001299 }
1300
Michael Rothf22d85e2012-04-17 19:01:45 -05001301 ga_unset_frozen(ga_state);
Paolo Bonziniaf022032012-06-13 07:41:27 +02001302 free_fs_mount_list(&mounts);
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001303
Markus Armbruster77dbc812014-05-02 13:26:30 +02001304 execute_fsfreeze_hook(FSFREEZE_HOOK_THAW, errp);
Tomoki Sekiyamaec0f6942012-12-12 12:55:55 +09001305
Michael Rothe3d4d252011-07-19 15:41:55 -05001306 return i;
1307}
1308
Michael Rothe3d4d252011-07-19 15:41:55 -05001309static void guest_fsfreeze_cleanup(void)
1310{
Michael Rothe3d4d252011-07-19 15:41:55 -05001311 Error *err = NULL;
1312
Michael Rothf22d85e2012-04-17 19:01:45 -05001313 if (ga_is_frozen(ga_state) == GUEST_FSFREEZE_STATUS_FROZEN) {
Markus Armbruster6f686742013-01-16 18:15:08 +01001314 qmp_guest_fsfreeze_thaw(&err);
1315 if (err) {
1316 slog("failed to clean up frozen filesystems: %s",
1317 error_get_pretty(err));
1318 error_free(err);
Michael Rothe3d4d252011-07-19 15:41:55 -05001319 }
1320 }
1321}
Michael Rothe72c3f22012-03-25 13:59:41 -05001322#endif /* CONFIG_FSFREEZE */
Michael Rothe3d4d252011-07-19 15:41:55 -05001323
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02001324#if defined(CONFIG_FSTRIM)
1325/*
1326 * Walk list of mounted file systems in the guest, and trim them.
1327 */
Markus Armbruster77dbc812014-05-02 13:26:30 +02001328void qmp_guest_fstrim(bool has_minimum, int64_t minimum, Error **errp)
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02001329{
1330 int ret = 0;
1331 FsMountList mounts;
1332 struct FsMount *mount;
1333 int fd;
Luiz Capitulino261551d2012-11-29 15:29:11 -02001334 Error *local_err = NULL;
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02001335 struct fstrim_range r = {
1336 .start = 0,
1337 .len = -1,
1338 .minlen = has_minimum ? minimum : 0,
1339 };
1340
1341 slog("guest-fstrim called");
1342
1343 QTAILQ_INIT(&mounts);
Luiz Capitulino261551d2012-11-29 15:29:11 -02001344 build_fs_mount_list(&mounts, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001345 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001346 error_propagate(errp, local_err);
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02001347 return;
1348 }
1349
1350 QTAILQ_FOREACH(mount, &mounts, next) {
1351 fd = qemu_open(mount->dirname, O_RDONLY);
1352 if (fd == -1) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001353 error_setg_errno(errp, errno, "failed to open %s", mount->dirname);
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02001354 goto error;
1355 }
1356
1357 /* We try to cull filesytems we know won't work in advance, but other
1358 * filesytems may not implement fstrim for less obvious reasons. These
1359 * will report EOPNOTSUPP; we simply ignore these errors. Any other
1360 * error means an unexpected error, so return it in those cases. In
1361 * some other cases ENOTTY will be reported (e.g. CD-ROMs).
1362 */
1363 ret = ioctl(fd, FITRIM, &r);
1364 if (ret == -1) {
1365 if (errno != ENOTTY && errno != EOPNOTSUPP) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001366 error_setg_errno(errp, errno, "failed to trim %s",
Luiz Capitulino071673b2012-11-27 11:02:01 -02001367 mount->dirname);
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02001368 close(fd);
1369 goto error;
1370 }
1371 }
1372 close(fd);
1373 }
1374
1375error:
1376 free_fs_mount_list(&mounts);
1377}
1378#endif /* CONFIG_FSTRIM */
1379
1380
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001381#define LINUX_SYS_STATE_FILE "/sys/power/state"
1382#define SUSPEND_SUPPORTED 0
1383#define SUSPEND_NOT_SUPPORTED 1
1384
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001385static void bios_supports_mode(const char *pmutils_bin, const char *pmutils_arg,
Markus Armbruster77dbc812014-05-02 13:26:30 +02001386 const char *sysfile_str, Error **errp)
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001387{
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001388 Error *local_err = NULL;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001389 char *pmutils_path;
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001390 pid_t pid;
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001391 int status;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001392
1393 pmutils_path = g_find_program_in_path(pmutils_bin);
1394
1395 pid = fork();
1396 if (!pid) {
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001397 char buf[32]; /* hopefully big enough */
1398 ssize_t ret;
1399 int fd;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001400
1401 setsid();
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001402 reopen_fd_to_null(0);
1403 reopen_fd_to_null(1);
1404 reopen_fd_to_null(2);
1405
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001406 if (pmutils_path) {
1407 execle(pmutils_path, pmutils_bin, pmutils_arg, NULL, environ);
1408 }
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001409
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001410 /*
1411 * If we get here either pm-utils is not installed or execle() has
1412 * failed. Let's try the manual method if the caller wants it.
1413 */
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001414
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001415 if (!sysfile_str) {
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001416 _exit(SUSPEND_NOT_SUPPORTED);
1417 }
1418
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001419 fd = open(LINUX_SYS_STATE_FILE, O_RDONLY);
1420 if (fd < 0) {
1421 _exit(SUSPEND_NOT_SUPPORTED);
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001422 }
1423
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001424 ret = read(fd, buf, sizeof(buf)-1);
1425 if (ret <= 0) {
1426 _exit(SUSPEND_NOT_SUPPORTED);
1427 }
1428 buf[ret] = '\0';
1429
1430 if (strstr(buf, sysfile_str)) {
1431 _exit(SUSPEND_SUPPORTED);
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001432 }
1433
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001434 _exit(SUSPEND_NOT_SUPPORTED);
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001435 } else if (pid < 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001436 error_setg_errno(errp, errno, "failed to create child process");
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001437 goto out;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001438 }
1439
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001440 ga_wait_child(pid, &status, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001441 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001442 error_propagate(errp, local_err);
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001443 goto out;
1444 }
1445
1446 if (!WIFEXITED(status)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001447 error_setg(errp, "child process has terminated abnormally");
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001448 goto out;
1449 }
1450
1451 switch (WEXITSTATUS(status)) {
1452 case SUSPEND_SUPPORTED:
1453 goto out;
1454 case SUSPEND_NOT_SUPPORTED:
Markus Armbruster77dbc812014-05-02 13:26:30 +02001455 error_setg(errp,
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001456 "the requested suspend mode is not supported by the guest");
1457 goto out;
1458 default:
Markus Armbruster77dbc812014-05-02 13:26:30 +02001459 error_setg(errp,
Luiz Capitulino6b26e832012-11-27 11:02:03 -02001460 "the helper program '%s' returned an unexpected exit status"
1461 " code (%d)", pmutils_path, WEXITSTATUS(status));
1462 goto out;
1463 }
1464
1465out:
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001466 g_free(pmutils_path);
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001467}
1468
1469static void guest_suspend(const char *pmutils_bin, const char *sysfile_str,
Markus Armbruster77dbc812014-05-02 13:26:30 +02001470 Error **errp)
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001471{
Luiz Capitulino7b376082012-11-27 11:02:04 -02001472 Error *local_err = NULL;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001473 char *pmutils_path;
Luiz Capitulino7b376082012-11-27 11:02:04 -02001474 pid_t pid;
Luiz Capitulinodc8764f02012-05-11 16:19:46 -03001475 int status;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001476
1477 pmutils_path = g_find_program_in_path(pmutils_bin);
1478
1479 pid = fork();
1480 if (pid == 0) {
1481 /* child */
1482 int fd;
1483
1484 setsid();
1485 reopen_fd_to_null(0);
1486 reopen_fd_to_null(1);
1487 reopen_fd_to_null(2);
1488
1489 if (pmutils_path) {
1490 execle(pmutils_path, pmutils_bin, NULL, environ);
1491 }
1492
1493 /*
1494 * If we get here either pm-utils is not installed or execle() has
1495 * failed. Let's try the manual method if the caller wants it.
1496 */
1497
1498 if (!sysfile_str) {
1499 _exit(EXIT_FAILURE);
1500 }
1501
1502 fd = open(LINUX_SYS_STATE_FILE, O_WRONLY);
1503 if (fd < 0) {
1504 _exit(EXIT_FAILURE);
1505 }
1506
1507 if (write(fd, sysfile_str, strlen(sysfile_str)) < 0) {
1508 _exit(EXIT_FAILURE);
1509 }
1510
1511 _exit(EXIT_SUCCESS);
Luiz Capitulino7b376082012-11-27 11:02:04 -02001512 } else if (pid < 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001513 error_setg_errno(errp, errno, "failed to create child process");
Luiz Capitulino7b376082012-11-27 11:02:04 -02001514 goto out;
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001515 }
1516
Luiz Capitulino7b376082012-11-27 11:02:04 -02001517 ga_wait_child(pid, &status, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001518 if (local_err) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001519 error_propagate(errp, local_err);
Luiz Capitulino7b376082012-11-27 11:02:04 -02001520 goto out;
1521 }
1522
1523 if (!WIFEXITED(status)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001524 error_setg(errp, "child process has terminated abnormally");
Luiz Capitulino7b376082012-11-27 11:02:04 -02001525 goto out;
1526 }
1527
1528 if (WEXITSTATUS(status)) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001529 error_setg(errp, "child process has failed to suspend");
Luiz Capitulino7b376082012-11-27 11:02:04 -02001530 goto out;
1531 }
1532
1533out:
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001534 g_free(pmutils_path);
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001535}
1536
Markus Armbruster77dbc812014-05-02 13:26:30 +02001537void qmp_guest_suspend_disk(Error **errp)
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001538{
Markus Armbruster0f230bf2014-05-02 13:26:38 +02001539 Error *local_err = NULL;
1540
1541 bios_supports_mode("pm-is-supported", "--hibernate", "disk", &local_err);
1542 if (local_err) {
1543 error_propagate(errp, local_err);
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001544 return;
1545 }
1546
Markus Armbruster77dbc812014-05-02 13:26:30 +02001547 guest_suspend("pm-hibernate", "disk", errp);
Luiz Capitulino11d0f122012-02-28 11:03:03 -03001548}
1549
Markus Armbruster77dbc812014-05-02 13:26:30 +02001550void qmp_guest_suspend_ram(Error **errp)
Luiz Capitulinofbf42212012-02-28 11:03:04 -03001551{
Markus Armbruster0f230bf2014-05-02 13:26:38 +02001552 Error *local_err = NULL;
1553
1554 bios_supports_mode("pm-is-supported", "--suspend", "mem", &local_err);
1555 if (local_err) {
1556 error_propagate(errp, local_err);
Luiz Capitulinofbf42212012-02-28 11:03:04 -03001557 return;
1558 }
1559
Markus Armbruster77dbc812014-05-02 13:26:30 +02001560 guest_suspend("pm-suspend", "mem", errp);
Luiz Capitulinofbf42212012-02-28 11:03:04 -03001561}
1562
Markus Armbruster77dbc812014-05-02 13:26:30 +02001563void qmp_guest_suspend_hybrid(Error **errp)
Luiz Capitulino95f4f402012-02-28 11:03:05 -03001564{
Markus Armbruster0f230bf2014-05-02 13:26:38 +02001565 Error *local_err = NULL;
1566
1567 bios_supports_mode("pm-is-supported", "--suspend-hybrid", NULL,
1568 &local_err);
1569 if (local_err) {
1570 error_propagate(errp, local_err);
Luiz Capitulino95f4f402012-02-28 11:03:05 -03001571 return;
1572 }
1573
Markus Armbruster77dbc812014-05-02 13:26:30 +02001574 guest_suspend("pm-suspend-hybrid", NULL, errp);
Luiz Capitulino95f4f402012-02-28 11:03:05 -03001575}
1576
Michal Privoznik3424fc92012-02-29 17:02:23 +01001577static GuestNetworkInterfaceList *
1578guest_find_interface(GuestNetworkInterfaceList *head,
1579 const char *name)
1580{
1581 for (; head; head = head->next) {
1582 if (strcmp(head->value->name, name) == 0) {
1583 break;
1584 }
1585 }
1586
1587 return head;
1588}
1589
1590/*
1591 * Build information about guest interfaces
1592 */
1593GuestNetworkInterfaceList *qmp_guest_network_get_interfaces(Error **errp)
1594{
1595 GuestNetworkInterfaceList *head = NULL, *cur_item = NULL;
1596 struct ifaddrs *ifap, *ifa;
Michal Privoznik3424fc92012-02-29 17:02:23 +01001597
1598 if (getifaddrs(&ifap) < 0) {
Luiz Capitulino878a0ae2012-11-27 11:02:02 -02001599 error_setg_errno(errp, errno, "getifaddrs failed");
Michal Privoznik3424fc92012-02-29 17:02:23 +01001600 goto error;
1601 }
1602
1603 for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
1604 GuestNetworkInterfaceList *info;
1605 GuestIpAddressList **address_list = NULL, *address_item = NULL;
1606 char addr4[INET_ADDRSTRLEN];
1607 char addr6[INET6_ADDRSTRLEN];
1608 int sock;
1609 struct ifreq ifr;
1610 unsigned char *mac_addr;
1611 void *p;
1612
1613 g_debug("Processing %s interface", ifa->ifa_name);
1614
1615 info = guest_find_interface(head, ifa->ifa_name);
1616
1617 if (!info) {
1618 info = g_malloc0(sizeof(*info));
1619 info->value = g_malloc0(sizeof(*info->value));
1620 info->value->name = g_strdup(ifa->ifa_name);
1621
1622 if (!cur_item) {
1623 head = cur_item = info;
1624 } else {
1625 cur_item->next = info;
1626 cur_item = info;
1627 }
1628 }
1629
1630 if (!info->value->has_hardware_address &&
1631 ifa->ifa_flags & SIOCGIFHWADDR) {
1632 /* we haven't obtained HW address yet */
1633 sock = socket(PF_INET, SOCK_STREAM, 0);
1634 if (sock == -1) {
Luiz Capitulino878a0ae2012-11-27 11:02:02 -02001635 error_setg_errno(errp, errno, "failed to create socket");
Michal Privoznik3424fc92012-02-29 17:02:23 +01001636 goto error;
1637 }
1638
1639 memset(&ifr, 0, sizeof(ifr));
Jim Meyering1ab516e2012-10-04 13:09:58 +02001640 pstrcpy(ifr.ifr_name, IF_NAMESIZE, info->value->name);
Michal Privoznik3424fc92012-02-29 17:02:23 +01001641 if (ioctl(sock, SIOCGIFHWADDR, &ifr) == -1) {
Luiz Capitulino878a0ae2012-11-27 11:02:02 -02001642 error_setg_errno(errp, errno,
1643 "failed to get MAC address of %s",
1644 ifa->ifa_name);
Markus Armbruster10a21582013-01-16 18:15:09 +01001645 close(sock);
Michal Privoznik3424fc92012-02-29 17:02:23 +01001646 goto error;
1647 }
1648
Markus Armbruster10a21582013-01-16 18:15:09 +01001649 close(sock);
Michal Privoznik3424fc92012-02-29 17:02:23 +01001650 mac_addr = (unsigned char *) &ifr.ifr_hwaddr.sa_data;
1651
Stefan Weile4ada482013-01-16 18:37:23 +01001652 info->value->hardware_address =
1653 g_strdup_printf("%02x:%02x:%02x:%02x:%02x:%02x",
1654 (int) mac_addr[0], (int) mac_addr[1],
1655 (int) mac_addr[2], (int) mac_addr[3],
1656 (int) mac_addr[4], (int) mac_addr[5]);
Michal Privoznik3424fc92012-02-29 17:02:23 +01001657
1658 info->value->has_hardware_address = true;
Michal Privoznik3424fc92012-02-29 17:02:23 +01001659 }
1660
1661 if (ifa->ifa_addr &&
1662 ifa->ifa_addr->sa_family == AF_INET) {
1663 /* interface with IPv4 address */
Michal Privoznik3424fc92012-02-29 17:02:23 +01001664 p = &((struct sockaddr_in *)ifa->ifa_addr)->sin_addr;
1665 if (!inet_ntop(AF_INET, p, addr4, sizeof(addr4))) {
Luiz Capitulino878a0ae2012-11-27 11:02:02 -02001666 error_setg_errno(errp, errno, "inet_ntop failed");
Michal Privoznik3424fc92012-02-29 17:02:23 +01001667 goto error;
1668 }
1669
Markus Armbruster10a21582013-01-16 18:15:09 +01001670 address_item = g_malloc0(sizeof(*address_item));
1671 address_item->value = g_malloc0(sizeof(*address_item->value));
Michal Privoznik3424fc92012-02-29 17:02:23 +01001672 address_item->value->ip_address = g_strdup(addr4);
1673 address_item->value->ip_address_type = GUEST_IP_ADDRESS_TYPE_IPV4;
1674
1675 if (ifa->ifa_netmask) {
1676 /* Count the number of set bits in netmask.
1677 * This is safe as '1' and '0' cannot be shuffled in netmask. */
1678 p = &((struct sockaddr_in *)ifa->ifa_netmask)->sin_addr;
1679 address_item->value->prefix = ctpop32(((uint32_t *) p)[0]);
1680 }
1681 } else if (ifa->ifa_addr &&
1682 ifa->ifa_addr->sa_family == AF_INET6) {
1683 /* interface with IPv6 address */
Michal Privoznik3424fc92012-02-29 17:02:23 +01001684 p = &((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr;
1685 if (!inet_ntop(AF_INET6, p, addr6, sizeof(addr6))) {
Luiz Capitulino878a0ae2012-11-27 11:02:02 -02001686 error_setg_errno(errp, errno, "inet_ntop failed");
Michal Privoznik3424fc92012-02-29 17:02:23 +01001687 goto error;
1688 }
1689
Markus Armbruster10a21582013-01-16 18:15:09 +01001690 address_item = g_malloc0(sizeof(*address_item));
1691 address_item->value = g_malloc0(sizeof(*address_item->value));
Michal Privoznik3424fc92012-02-29 17:02:23 +01001692 address_item->value->ip_address = g_strdup(addr6);
1693 address_item->value->ip_address_type = GUEST_IP_ADDRESS_TYPE_IPV6;
1694
1695 if (ifa->ifa_netmask) {
1696 /* Count the number of set bits in netmask.
1697 * This is safe as '1' and '0' cannot be shuffled in netmask. */
1698 p = &((struct sockaddr_in6 *)ifa->ifa_netmask)->sin6_addr;
1699 address_item->value->prefix =
1700 ctpop32(((uint32_t *) p)[0]) +
1701 ctpop32(((uint32_t *) p)[1]) +
1702 ctpop32(((uint32_t *) p)[2]) +
1703 ctpop32(((uint32_t *) p)[3]);
1704 }
1705 }
1706
1707 if (!address_item) {
1708 continue;
1709 }
1710
1711 address_list = &info->value->ip_addresses;
1712
1713 while (*address_list && (*address_list)->next) {
1714 address_list = &(*address_list)->next;
1715 }
1716
1717 if (!*address_list) {
1718 *address_list = address_item;
1719 } else {
1720 (*address_list)->next = address_item;
1721 }
1722
1723 info->value->has_ip_addresses = true;
1724
1725
1726 }
1727
1728 freeifaddrs(ifap);
1729 return head;
1730
1731error:
1732 freeifaddrs(ifap);
1733 qapi_free_GuestNetworkInterfaceList(head);
1734 return NULL;
1735}
1736
Markus Armbruster77dbc812014-05-02 13:26:30 +02001737#define SYSCONF_EXACT(name, errp) sysconf_exact((name), #name, (errp))
Laszlo Ersekd2baff62013-03-06 22:59:30 +01001738
Markus Armbruster77dbc812014-05-02 13:26:30 +02001739static long sysconf_exact(int name, const char *name_str, Error **errp)
Laszlo Ersekd2baff62013-03-06 22:59:30 +01001740{
1741 long ret;
1742
1743 errno = 0;
1744 ret = sysconf(name);
1745 if (ret == -1) {
1746 if (errno == 0) {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001747 error_setg(errp, "sysconf(%s): value indefinite", name_str);
Laszlo Ersekd2baff62013-03-06 22:59:30 +01001748 } else {
Markus Armbruster77dbc812014-05-02 13:26:30 +02001749 error_setg_errno(errp, errno, "sysconf(%s)", name_str);
Laszlo Ersekd2baff62013-03-06 22:59:30 +01001750 }
1751 }
1752 return ret;
1753}
1754
1755/* Transfer online/offline status between @vcpu and the guest system.
1756 *
1757 * On input either @errp or *@errp must be NULL.
1758 *
1759 * In system-to-@vcpu direction, the following @vcpu fields are accessed:
1760 * - R: vcpu->logical_id
1761 * - W: vcpu->online
1762 * - W: vcpu->can_offline
1763 *
1764 * In @vcpu-to-system direction, the following @vcpu fields are accessed:
1765 * - R: vcpu->logical_id
1766 * - R: vcpu->online
1767 *
1768 * Written members remain unmodified on error.
1769 */
1770static void transfer_vcpu(GuestLogicalProcessor *vcpu, bool sys2vcpu,
1771 Error **errp)
1772{
1773 char *dirpath;
1774 int dirfd;
1775
1776 dirpath = g_strdup_printf("/sys/devices/system/cpu/cpu%" PRId64 "/",
1777 vcpu->logical_id);
1778 dirfd = open(dirpath, O_RDONLY | O_DIRECTORY);
1779 if (dirfd == -1) {
1780 error_setg_errno(errp, errno, "open(\"%s\")", dirpath);
1781 } else {
1782 static const char fn[] = "online";
1783 int fd;
1784 int res;
1785
1786 fd = openat(dirfd, fn, sys2vcpu ? O_RDONLY : O_RDWR);
1787 if (fd == -1) {
1788 if (errno != ENOENT) {
1789 error_setg_errno(errp, errno, "open(\"%s/%s\")", dirpath, fn);
1790 } else if (sys2vcpu) {
1791 vcpu->online = true;
1792 vcpu->can_offline = false;
1793 } else if (!vcpu->online) {
1794 error_setg(errp, "logical processor #%" PRId64 " can't be "
1795 "offlined", vcpu->logical_id);
1796 } /* otherwise pretend successful re-onlining */
1797 } else {
1798 unsigned char status;
1799
1800 res = pread(fd, &status, 1, 0);
1801 if (res == -1) {
1802 error_setg_errno(errp, errno, "pread(\"%s/%s\")", dirpath, fn);
1803 } else if (res == 0) {
1804 error_setg(errp, "pread(\"%s/%s\"): unexpected EOF", dirpath,
1805 fn);
1806 } else if (sys2vcpu) {
1807 vcpu->online = (status != '0');
1808 vcpu->can_offline = true;
1809 } else if (vcpu->online != (status != '0')) {
1810 status = '0' + vcpu->online;
1811 if (pwrite(fd, &status, 1, 0) == -1) {
1812 error_setg_errno(errp, errno, "pwrite(\"%s/%s\")", dirpath,
1813 fn);
1814 }
1815 } /* otherwise pretend successful re-(on|off)-lining */
1816
1817 res = close(fd);
1818 g_assert(res == 0);
1819 }
1820
1821 res = close(dirfd);
1822 g_assert(res == 0);
1823 }
1824
1825 g_free(dirpath);
1826}
1827
1828GuestLogicalProcessorList *qmp_guest_get_vcpus(Error **errp)
1829{
1830 int64_t current;
1831 GuestLogicalProcessorList *head, **link;
1832 long sc_max;
1833 Error *local_err = NULL;
1834
1835 current = 0;
1836 head = NULL;
1837 link = &head;
1838 sc_max = SYSCONF_EXACT(_SC_NPROCESSORS_CONF, &local_err);
1839
1840 while (local_err == NULL && current < sc_max) {
1841 GuestLogicalProcessor *vcpu;
1842 GuestLogicalProcessorList *entry;
1843
1844 vcpu = g_malloc0(sizeof *vcpu);
1845 vcpu->logical_id = current++;
1846 vcpu->has_can_offline = true; /* lolspeak ftw */
1847 transfer_vcpu(vcpu, true, &local_err);
1848
1849 entry = g_malloc0(sizeof *entry);
1850 entry->value = vcpu;
1851
1852 *link = entry;
1853 link = &entry->next;
1854 }
1855
1856 if (local_err == NULL) {
1857 /* there's no guest with zero VCPUs */
1858 g_assert(head != NULL);
1859 return head;
1860 }
1861
1862 qapi_free_GuestLogicalProcessorList(head);
1863 error_propagate(errp, local_err);
1864 return NULL;
1865}
1866
Laszlo Ersekcbb65fc2013-03-06 22:59:31 +01001867int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList *vcpus, Error **errp)
1868{
1869 int64_t processed;
1870 Error *local_err = NULL;
1871
1872 processed = 0;
1873 while (vcpus != NULL) {
1874 transfer_vcpu(vcpus->value, false, &local_err);
1875 if (local_err != NULL) {
1876 break;
1877 }
1878 ++processed;
1879 vcpus = vcpus->next;
1880 }
1881
1882 if (local_err != NULL) {
1883 if (processed == 0) {
1884 error_propagate(errp, local_err);
1885 } else {
1886 error_free(local_err);
1887 }
1888 }
1889
1890 return processed;
1891}
1892
Daniel P. Berrange215a2772015-02-11 11:26:12 +00001893void qmp_guest_set_user_password(const char *username,
1894 const char *password,
1895 bool crypted,
1896 Error **errp)
1897{
1898 Error *local_err = NULL;
1899 char *passwd_path = NULL;
1900 pid_t pid;
1901 int status;
1902 int datafd[2] = { -1, -1 };
1903 char *rawpasswddata = NULL;
1904 size_t rawpasswdlen;
1905 char *chpasswddata = NULL;
1906 size_t chpasswdlen;
1907
1908 rawpasswddata = (char *)g_base64_decode(password, &rawpasswdlen);
1909 rawpasswddata = g_renew(char, rawpasswddata, rawpasswdlen + 1);
1910 rawpasswddata[rawpasswdlen] = '\0';
1911
1912 if (strchr(rawpasswddata, '\n')) {
1913 error_setg(errp, "forbidden characters in raw password");
1914 goto out;
1915 }
1916
1917 if (strchr(username, '\n') ||
1918 strchr(username, ':')) {
1919 error_setg(errp, "forbidden characters in username");
1920 goto out;
1921 }
1922
1923 chpasswddata = g_strdup_printf("%s:%s\n", username, rawpasswddata);
1924 chpasswdlen = strlen(chpasswddata);
1925
1926 passwd_path = g_find_program_in_path("chpasswd");
1927
1928 if (!passwd_path) {
1929 error_setg(errp, "cannot find 'passwd' program in PATH");
1930 goto out;
1931 }
1932
1933 if (pipe(datafd) < 0) {
1934 error_setg(errp, "cannot create pipe FDs");
1935 goto out;
1936 }
1937
1938 pid = fork();
1939 if (pid == 0) {
1940 close(datafd[1]);
1941 /* child */
1942 setsid();
1943 dup2(datafd[0], 0);
1944 reopen_fd_to_null(1);
1945 reopen_fd_to_null(2);
1946
1947 if (crypted) {
1948 execle(passwd_path, "chpasswd", "-e", NULL, environ);
1949 } else {
1950 execle(passwd_path, "chpasswd", NULL, environ);
1951 }
1952 _exit(EXIT_FAILURE);
1953 } else if (pid < 0) {
1954 error_setg_errno(errp, errno, "failed to create child process");
1955 goto out;
1956 }
1957 close(datafd[0]);
1958 datafd[0] = -1;
1959
1960 if (qemu_write_full(datafd[1], chpasswddata, chpasswdlen) != chpasswdlen) {
1961 error_setg_errno(errp, errno, "cannot write new account password");
1962 goto out;
1963 }
1964 close(datafd[1]);
1965 datafd[1] = -1;
1966
1967 ga_wait_child(pid, &status, &local_err);
1968 if (local_err) {
1969 error_propagate(errp, local_err);
1970 goto out;
1971 }
1972
1973 if (!WIFEXITED(status)) {
1974 error_setg(errp, "child process has terminated abnormally");
1975 goto out;
1976 }
1977
1978 if (WEXITSTATUS(status)) {
1979 error_setg(errp, "child process has failed to set user password");
1980 goto out;
1981 }
1982
1983out:
1984 g_free(chpasswddata);
1985 g_free(rawpasswddata);
1986 g_free(passwd_path);
1987 if (datafd[0] != -1) {
1988 close(datafd[0]);
1989 }
1990 if (datafd[1] != -1) {
1991 close(datafd[1]);
1992 }
1993}
1994
zhanghailiangbd240fc2015-01-22 10:40:03 +08001995static void ga_read_sysfs_file(int dirfd, const char *pathname, char *buf,
1996 int size, Error **errp)
1997{
1998 int fd;
1999 int res;
2000
2001 errno = 0;
2002 fd = openat(dirfd, pathname, O_RDONLY);
2003 if (fd == -1) {
2004 error_setg_errno(errp, errno, "open sysfs file \"%s\"", pathname);
2005 return;
2006 }
2007
2008 res = pread(fd, buf, size, 0);
2009 if (res == -1) {
2010 error_setg_errno(errp, errno, "pread sysfs file \"%s\"", pathname);
2011 } else if (res == 0) {
2012 error_setg(errp, "pread sysfs file \"%s\": unexpected EOF", pathname);
2013 }
2014 close(fd);
2015}
2016
2017static void ga_write_sysfs_file(int dirfd, const char *pathname,
2018 const char *buf, int size, Error **errp)
2019{
2020 int fd;
2021
2022 errno = 0;
2023 fd = openat(dirfd, pathname, O_WRONLY);
2024 if (fd == -1) {
2025 error_setg_errno(errp, errno, "open sysfs file \"%s\"", pathname);
2026 return;
2027 }
2028
2029 if (pwrite(fd, buf, size, 0) == -1) {
2030 error_setg_errno(errp, errno, "pwrite sysfs file \"%s\"", pathname);
2031 }
2032
2033 close(fd);
2034}
2035
2036/* Transfer online/offline status between @mem_blk and the guest system.
2037 *
2038 * On input either @errp or *@errp must be NULL.
2039 *
2040 * In system-to-@mem_blk direction, the following @mem_blk fields are accessed:
2041 * - R: mem_blk->phys_index
2042 * - W: mem_blk->online
2043 * - W: mem_blk->can_offline
2044 *
2045 * In @mem_blk-to-system direction, the following @mem_blk fields are accessed:
2046 * - R: mem_blk->phys_index
2047 * - R: mem_blk->online
2048 *- R: mem_blk->can_offline
2049 * Written members remain unmodified on error.
2050 */
2051static void transfer_memory_block(GuestMemoryBlock *mem_blk, bool sys2memblk,
2052 GuestMemoryBlockResponse *result,
2053 Error **errp)
2054{
2055 char *dirpath;
2056 int dirfd;
2057 char *status;
2058 Error *local_err = NULL;
2059
2060 if (!sys2memblk) {
2061 DIR *dp;
2062
2063 if (!result) {
2064 error_setg(errp, "Internal error, 'result' should not be NULL");
2065 return;
2066 }
2067 errno = 0;
2068 dp = opendir("/sys/devices/system/memory/");
2069 /* if there is no 'memory' directory in sysfs,
2070 * we think this VM does not support online/offline memory block,
2071 * any other solution?
2072 */
2073 if (!dp && errno == ENOENT) {
2074 result->response =
2075 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_NOT_SUPPORTED;
2076 goto out1;
2077 }
2078 closedir(dp);
2079 }
2080
2081 dirpath = g_strdup_printf("/sys/devices/system/memory/memory%" PRId64 "/",
2082 mem_blk->phys_index);
2083 dirfd = open(dirpath, O_RDONLY | O_DIRECTORY);
2084 if (dirfd == -1) {
2085 if (sys2memblk) {
2086 error_setg_errno(errp, errno, "open(\"%s\")", dirpath);
2087 } else {
2088 if (errno == ENOENT) {
2089 result->response = GUEST_MEMORY_BLOCK_RESPONSE_TYPE_NOT_FOUND;
2090 } else {
2091 result->response =
2092 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED;
2093 }
2094 }
2095 g_free(dirpath);
2096 goto out1;
2097 }
2098 g_free(dirpath);
2099
2100 status = g_malloc0(10);
2101 ga_read_sysfs_file(dirfd, "state", status, 10, &local_err);
2102 if (local_err) {
2103 /* treat with sysfs file that not exist in old kernel */
2104 if (errno == ENOENT) {
2105 error_free(local_err);
2106 if (sys2memblk) {
2107 mem_blk->online = true;
2108 mem_blk->can_offline = false;
2109 } else if (!mem_blk->online) {
2110 result->response =
2111 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_NOT_SUPPORTED;
2112 }
2113 } else {
2114 if (sys2memblk) {
2115 error_propagate(errp, local_err);
2116 } else {
2117 result->response =
2118 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED;
2119 }
2120 }
2121 goto out2;
2122 }
2123
2124 if (sys2memblk) {
2125 char removable = '0';
2126
2127 mem_blk->online = (strncmp(status, "online", 6) == 0);
2128
2129 ga_read_sysfs_file(dirfd, "removable", &removable, 1, &local_err);
2130 if (local_err) {
2131 /* if no 'removable' file, it does't support offline mem blk */
2132 if (errno == ENOENT) {
2133 error_free(local_err);
2134 mem_blk->can_offline = false;
2135 } else {
2136 error_propagate(errp, local_err);
2137 }
2138 } else {
2139 mem_blk->can_offline = (removable != '0');
2140 }
2141 } else {
2142 if (mem_blk->online != (strncmp(status, "online", 6) == 0)) {
2143 char *new_state = mem_blk->online ? g_strdup("online") :
2144 g_strdup("offline");
2145
2146 ga_write_sysfs_file(dirfd, "state", new_state, strlen(new_state),
2147 &local_err);
2148 g_free(new_state);
2149 if (local_err) {
2150 error_free(local_err);
2151 result->response =
2152 GUEST_MEMORY_BLOCK_RESPONSE_TYPE_OPERATION_FAILED;
2153 goto out2;
2154 }
2155
2156 result->response = GUEST_MEMORY_BLOCK_RESPONSE_TYPE_SUCCESS;
2157 result->has_error_code = false;
2158 } /* otherwise pretend successful re-(on|off)-lining */
2159 }
2160 g_free(status);
2161 close(dirfd);
2162 return;
2163
2164out2:
2165 g_free(status);
2166 close(dirfd);
2167out1:
2168 if (!sys2memblk) {
2169 result->has_error_code = true;
2170 result->error_code = errno;
2171 }
2172}
2173
zhanghailianga065aaa2015-01-22 10:40:02 +08002174GuestMemoryBlockList *qmp_guest_get_memory_blocks(Error **errp)
2175{
zhanghailiangbd240fc2015-01-22 10:40:03 +08002176 GuestMemoryBlockList *head, **link;
2177 Error *local_err = NULL;
2178 struct dirent *de;
2179 DIR *dp;
2180
2181 head = NULL;
2182 link = &head;
2183
2184 dp = opendir("/sys/devices/system/memory/");
2185 if (!dp) {
2186 error_setg_errno(errp, errno, "Can't open directory"
2187 "\"/sys/devices/system/memory/\"\n");
2188 return NULL;
2189 }
2190
2191 /* Note: the phys_index of memory block may be discontinuous,
2192 * this is because a memblk is the unit of the Sparse Memory design, which
2193 * allows discontinuous memory ranges (ex. NUMA), so here we should
2194 * traverse the memory block directory.
2195 */
2196 while ((de = readdir(dp)) != NULL) {
2197 GuestMemoryBlock *mem_blk;
2198 GuestMemoryBlockList *entry;
2199
2200 if ((strncmp(de->d_name, "memory", 6) != 0) ||
2201 !(de->d_type & DT_DIR)) {
2202 continue;
2203 }
2204
2205 mem_blk = g_malloc0(sizeof *mem_blk);
2206 /* The d_name is "memoryXXX", phys_index is block id, same as XXX */
2207 mem_blk->phys_index = strtoul(&de->d_name[6], NULL, 10);
2208 mem_blk->has_can_offline = true; /* lolspeak ftw */
2209 transfer_memory_block(mem_blk, true, NULL, &local_err);
2210
2211 entry = g_malloc0(sizeof *entry);
2212 entry->value = mem_blk;
2213
2214 *link = entry;
2215 link = &entry->next;
2216 }
2217
2218 closedir(dp);
2219 if (local_err == NULL) {
2220 /* there's no guest with zero memory blocks */
2221 if (head == NULL) {
2222 error_setg(errp, "guest reported zero memory blocks!");
2223 }
2224 return head;
2225 }
2226
2227 qapi_free_GuestMemoryBlockList(head);
2228 error_propagate(errp, local_err);
zhanghailianga065aaa2015-01-22 10:40:02 +08002229 return NULL;
2230}
2231
2232GuestMemoryBlockResponseList *
2233qmp_guest_set_memory_blocks(GuestMemoryBlockList *mem_blks, Error **errp)
2234{
zhanghailiang32ca7922015-01-22 10:40:04 +08002235 GuestMemoryBlockResponseList *head, **link;
2236 Error *local_err = NULL;
2237
2238 head = NULL;
2239 link = &head;
2240
2241 while (mem_blks != NULL) {
2242 GuestMemoryBlockResponse *result;
2243 GuestMemoryBlockResponseList *entry;
2244 GuestMemoryBlock *current_mem_blk = mem_blks->value;
2245
2246 result = g_malloc0(sizeof(*result));
2247 result->phys_index = current_mem_blk->phys_index;
2248 transfer_memory_block(current_mem_blk, false, result, &local_err);
2249 if (local_err) { /* should never happen */
2250 goto err;
2251 }
2252 entry = g_malloc0(sizeof *entry);
2253 entry->value = result;
2254
2255 *link = entry;
2256 link = &entry->next;
2257 mem_blks = mem_blks->next;
2258 }
2259
2260 return head;
2261err:
2262 qapi_free_GuestMemoryBlockResponseList(head);
2263 error_propagate(errp, local_err);
zhanghailianga065aaa2015-01-22 10:40:02 +08002264 return NULL;
2265}
2266
2267GuestMemoryBlockInfo *qmp_guest_get_memory_block_info(Error **errp)
2268{
zhanghailiangef82b602015-01-22 10:40:05 +08002269 Error *local_err = NULL;
2270 char *dirpath;
2271 int dirfd;
2272 char *buf;
2273 GuestMemoryBlockInfo *info;
2274
2275 dirpath = g_strdup_printf("/sys/devices/system/memory/");
2276 dirfd = open(dirpath, O_RDONLY | O_DIRECTORY);
2277 if (dirfd == -1) {
2278 error_setg_errno(errp, errno, "open(\"%s\")", dirpath);
2279 g_free(dirpath);
2280 return NULL;
2281 }
2282 g_free(dirpath);
2283
2284 buf = g_malloc0(20);
2285 ga_read_sysfs_file(dirfd, "block_size_bytes", buf, 20, &local_err);
Shannon Zhao8ce1ee42015-03-14 17:52:15 +08002286 close(dirfd);
zhanghailiangef82b602015-01-22 10:40:05 +08002287 if (local_err) {
2288 g_free(buf);
2289 error_propagate(errp, local_err);
2290 return NULL;
2291 }
2292
2293 info = g_new0(GuestMemoryBlockInfo, 1);
2294 info->size = strtol(buf, NULL, 16); /* the unit is bytes */
2295
2296 g_free(buf);
2297
2298 return info;
zhanghailianga065aaa2015-01-22 10:40:02 +08002299}
2300
Michael Rothe72c3f22012-03-25 13:59:41 -05002301#else /* defined(__linux__) */
2302
Markus Armbruster77dbc812014-05-02 13:26:30 +02002303void qmp_guest_suspend_disk(Error **errp)
Michael Rothe72c3f22012-03-25 13:59:41 -05002304{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002305 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothe72c3f22012-03-25 13:59:41 -05002306}
2307
Markus Armbruster77dbc812014-05-02 13:26:30 +02002308void qmp_guest_suspend_ram(Error **errp)
Michael Rothe72c3f22012-03-25 13:59:41 -05002309{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002310 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothe72c3f22012-03-25 13:59:41 -05002311}
2312
Markus Armbruster77dbc812014-05-02 13:26:30 +02002313void qmp_guest_suspend_hybrid(Error **errp)
Michael Rothe72c3f22012-03-25 13:59:41 -05002314{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002315 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothe72c3f22012-03-25 13:59:41 -05002316}
2317
2318GuestNetworkInterfaceList *qmp_guest_network_get_interfaces(Error **errp)
2319{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002320 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothe72c3f22012-03-25 13:59:41 -05002321 return NULL;
2322}
2323
Laszlo Ersekd2baff62013-03-06 22:59:30 +01002324GuestLogicalProcessorList *qmp_guest_get_vcpus(Error **errp)
2325{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002326 error_setg(errp, QERR_UNSUPPORTED);
Laszlo Ersekd2baff62013-03-06 22:59:30 +01002327 return NULL;
2328}
2329
Laszlo Ersekcbb65fc2013-03-06 22:59:31 +01002330int64_t qmp_guest_set_vcpus(GuestLogicalProcessorList *vcpus, Error **errp)
2331{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002332 error_setg(errp, QERR_UNSUPPORTED);
Laszlo Ersekcbb65fc2013-03-06 22:59:31 +01002333 return -1;
2334}
2335
Daniel P. Berrange215a2772015-02-11 11:26:12 +00002336void qmp_guest_set_user_password(const char *username,
2337 const char *password,
2338 bool crypted,
2339 Error **errp)
2340{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002341 error_setg(errp, QERR_UNSUPPORTED);
Daniel P. Berrange215a2772015-02-11 11:26:12 +00002342}
2343
zhanghailianga065aaa2015-01-22 10:40:02 +08002344GuestMemoryBlockList *qmp_guest_get_memory_blocks(Error **errp)
2345{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002346 error_setg(errp, QERR_UNSUPPORTED);
zhanghailianga065aaa2015-01-22 10:40:02 +08002347 return NULL;
2348}
2349
2350GuestMemoryBlockResponseList *
2351qmp_guest_set_memory_blocks(GuestMemoryBlockList *mem_blks, Error **errp)
2352{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002353 error_setg(errp, QERR_UNSUPPORTED);
zhanghailianga065aaa2015-01-22 10:40:02 +08002354 return NULL;
2355}
2356
2357GuestMemoryBlockInfo *qmp_guest_get_memory_block_info(Error **errp)
2358{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002359 error_setg(errp, QERR_UNSUPPORTED);
zhanghailianga065aaa2015-01-22 10:40:02 +08002360 return NULL;
2361}
2362
Michael Rothe72c3f22012-03-25 13:59:41 -05002363#endif
2364
Michael Rothd35d4cb2012-04-13 21:07:36 -05002365#if !defined(CONFIG_FSFREEZE)
2366
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -04002367GuestFilesystemInfoList *qmp_guest_get_fsinfo(Error **errp)
2368{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002369 error_setg(errp, QERR_UNSUPPORTED);
Tomoki Sekiyama46d4c572014-06-30 17:51:34 -04002370 return NULL;
2371}
2372
Markus Armbruster77dbc812014-05-02 13:26:30 +02002373GuestFsfreezeStatus qmp_guest_fsfreeze_status(Error **errp)
Michael Rothd35d4cb2012-04-13 21:07:36 -05002374{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002375 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothd35d4cb2012-04-13 21:07:36 -05002376
2377 return 0;
2378}
2379
Markus Armbruster77dbc812014-05-02 13:26:30 +02002380int64_t qmp_guest_fsfreeze_freeze(Error **errp)
Michael Rothd35d4cb2012-04-13 21:07:36 -05002381{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002382 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothd35d4cb2012-04-13 21:07:36 -05002383
2384 return 0;
2385}
2386
Tomoki Sekiyamae99bce22014-06-30 17:51:27 -04002387int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints,
2388 strList *mountpoints,
2389 Error **errp)
2390{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002391 error_setg(errp, QERR_UNSUPPORTED);
Tomoki Sekiyamae99bce22014-06-30 17:51:27 -04002392
2393 return 0;
2394}
2395
Markus Armbruster77dbc812014-05-02 13:26:30 +02002396int64_t qmp_guest_fsfreeze_thaw(Error **errp)
Michael Rothd35d4cb2012-04-13 21:07:36 -05002397{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002398 error_setg(errp, QERR_UNSUPPORTED);
Michael Rothd35d4cb2012-04-13 21:07:36 -05002399
2400 return 0;
2401}
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02002402#endif /* CONFIG_FSFREEZE */
Michael Rothd35d4cb2012-04-13 21:07:36 -05002403
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02002404#if !defined(CONFIG_FSTRIM)
Markus Armbruster77dbc812014-05-02 13:26:30 +02002405void qmp_guest_fstrim(bool has_minimum, int64_t minimum, Error **errp)
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02002406{
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +01002407 error_setg(errp, QERR_UNSUPPORTED);
Paolo Bonzinieab5fd52012-06-13 07:41:28 +02002408}
Michael Rothd35d4cb2012-04-13 21:07:36 -05002409#endif
2410
Tomoki Sekiyama1281c082014-06-30 17:51:40 -04002411/* add unsupported commands to the blacklist */
2412GList *ga_command_blacklist_init(GList *blacklist)
2413{
2414#if !defined(__linux__)
2415 {
2416 const char *list[] = {
2417 "guest-suspend-disk", "guest-suspend-ram",
2418 "guest-suspend-hybrid", "guest-network-get-interfaces",
zhanghailiang0dd38a02015-01-22 10:40:06 +08002419 "guest-get-vcpus", "guest-set-vcpus",
2420 "guest-get-memory-blocks", "guest-set-memory-blocks",
2421 "guest-get-memory-block-size", NULL};
Tomoki Sekiyama1281c082014-06-30 17:51:40 -04002422 char **p = (char **)list;
2423
2424 while (*p) {
2425 blacklist = g_list_append(blacklist, *p++);
2426 }
2427 }
2428#endif
2429
2430#if !defined(CONFIG_FSFREEZE)
2431 {
2432 const char *list[] = {
2433 "guest-get-fsinfo", "guest-fsfreeze-status",
2434 "guest-fsfreeze-freeze", "guest-fsfreeze-freeze-list",
2435 "guest-fsfreeze-thaw", "guest-get-fsinfo", NULL};
2436 char **p = (char **)list;
2437
2438 while (*p) {
2439 blacklist = g_list_append(blacklist, *p++);
2440 }
2441 }
2442#endif
2443
2444#if !defined(CONFIG_FSTRIM)
2445 blacklist = g_list_append(blacklist, (char *)"guest-fstrim");
2446#endif
2447
2448 return blacklist;
2449}
2450
Michael Rothe3d4d252011-07-19 15:41:55 -05002451/* register init/cleanup routines for stateful command groups */
2452void ga_command_state_init(GAState *s, GACommandState *cs)
2453{
Anthony Liguori7006b9c2011-07-22 14:14:17 -05002454#if defined(CONFIG_FSFREEZE)
Michael Rothf22d85e2012-04-17 19:01:45 -05002455 ga_command_state_add(cs, NULL, guest_fsfreeze_cleanup);
Anthony Liguori7006b9c2011-07-22 14:14:17 -05002456#endif
Michael Rothe3d4d252011-07-19 15:41:55 -05002457 ga_command_state_add(cs, guest_file_init, NULL);
2458}