2 * QEMU I/O channels external command driver
4 * Copyright (c) 2015 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "io/channel-command.h"
23 #include "io/channel-watch.h"
24 #include "qapi/error.h"
25 #include "qemu/sockets.h"
30 qio_channel_command_new_pid(int writefd,
34 QIOChannelCommand *ioc;
36 ioc = QIO_CHANNEL_COMMAND(object_new(TYPE_QIO_CHANNEL_COMMAND));
39 ioc->writefd = writefd;
42 trace_qio_channel_command_new_pid(ioc, writefd, readfd, pid);
49 qio_channel_command_new_spawn(const char *const argv[],
54 int stdinfd[2] = { -1, -1 };
55 int stdoutfd[2] = { -1, -1 };
57 bool stdinnull = false, stdoutnull = false;
58 QIOChannelCommand *ioc;
60 flags = flags & O_ACCMODE;
62 if (flags == O_RDONLY) {
65 if (flags == O_WRONLY) {
69 if (stdinnull || stdoutnull) {
70 devnull = open("/dev/null", O_RDWR);
72 error_setg_errno(errp, errno,
73 "Unable to open /dev/null");
78 if ((!stdinnull && pipe(stdinfd) < 0) ||
79 (!stdoutnull && pipe(stdoutfd) < 0)) {
80 error_setg_errno(errp, errno,
81 "Unable to open pipe");
85 pid = qemu_fork(errp);
90 if (pid == 0) { /* child */
91 dup2(stdinnull ? devnull : stdinfd[0], STDIN_FILENO);
92 dup2(stdoutnull ? devnull : stdoutfd[1], STDOUT_FILENO);
93 /* Leave stderr connected to qemu's stderr */
107 execv(argv[0], (char * const *)argv);
118 ioc = qio_channel_command_new_pid(stdinnull ? devnull : stdinfd[1],
119 stdoutnull ? devnull : stdoutfd[0],
121 trace_qio_channel_command_new_spawn(ioc, argv[0], flags);
128 if (stdinfd[0] != -1) {
131 if (stdinfd[1] != -1) {
134 if (stdoutfd[0] != -1) {
137 if (stdoutfd[1] != -1) {
145 qio_channel_command_new_spawn(const char *const argv[],
149 error_setg_errno(errp, ENOSYS,
150 "Command spawn not supported on this platform");
156 static int qio_channel_command_abort(QIOChannelCommand *ioc,
163 /* See if intermediate process has exited; if not, try a nice
164 * SIGTERM followed by a more severe SIGKILL.
167 trace_qio_channel_command_abort(ioc, ioc->pid);
168 ret = waitpid(ioc->pid, &status, WNOHANG);
169 trace_qio_channel_command_wait(ioc, ioc->pid, ret, status);
170 if (ret == (pid_t)-1) {
171 if (errno == EINTR) {
174 error_setg_errno(errp, errno,
175 "Cannot wait on pid %llu",
176 (unsigned long long)ioc->pid);
179 } else if (ret == 0) {
181 kill(ioc->pid, SIGTERM);
182 } else if (step == 1) {
183 kill(ioc->pid, SIGKILL);
186 "Process %llu refused to die",
187 (unsigned long long)ioc->pid);
200 static void qio_channel_command_init(Object *obj)
202 QIOChannelCommand *ioc = QIO_CHANNEL_COMMAND(obj);
208 static void qio_channel_command_finalize(Object *obj)
210 QIOChannelCommand *ioc = QIO_CHANNEL_COMMAND(obj);
211 if (ioc->readfd != -1) {
214 if (ioc->writefd != -1 &&
215 ioc->writefd != ioc->readfd) {
218 ioc->writefd = ioc->readfd = -1;
221 qio_channel_command_abort(ioc, NULL);
227 static ssize_t qio_channel_command_readv(QIOChannel *ioc,
228 const struct iovec *iov,
234 QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
238 ret = readv(cioc->readfd, iov, niov);
240 if (errno == EAGAIN) {
241 return QIO_CHANNEL_ERR_BLOCK;
243 if (errno == EINTR) {
247 error_setg_errno(errp, errno,
248 "Unable to read from command");
255 static ssize_t qio_channel_command_writev(QIOChannel *ioc,
256 const struct iovec *iov,
262 QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
266 ret = writev(cioc->writefd, iov, niov);
268 if (errno == EAGAIN) {
269 return QIO_CHANNEL_ERR_BLOCK;
271 if (errno == EINTR) {
274 error_setg_errno(errp, errno, "%s",
275 "Unable to write to command");
281 static int qio_channel_command_set_blocking(QIOChannel *ioc,
285 QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
288 qemu_set_block(cioc->writefd);
289 qemu_set_block(cioc->readfd);
291 qemu_set_nonblock(cioc->writefd);
292 qemu_set_nonblock(cioc->readfd);
299 static int qio_channel_command_close(QIOChannel *ioc,
302 QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
305 /* We close FDs before killing, because that
306 * gives a better chance of clean shutdown
308 if (cioc->readfd != -1 &&
309 close(cioc->readfd) < 0) {
312 if (cioc->writefd != -1 &&
313 cioc->writefd != cioc->readfd &&
314 close(cioc->writefd) < 0) {
317 cioc->writefd = cioc->readfd = -1;
319 if (qio_channel_command_abort(cioc, errp) < 0) {
324 error_setg_errno(errp, errno, "%s",
325 "Unable to close command");
331 static void qio_channel_command_set_aio_fd_handler(QIOChannel *ioc,
337 QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
338 aio_set_fd_handler(ctx, cioc->readfd, false, io_read, NULL, NULL, opaque);
339 aio_set_fd_handler(ctx, cioc->writefd, false, NULL, io_write, NULL, opaque);
343 static GSource *qio_channel_command_create_watch(QIOChannel *ioc,
344 GIOCondition condition)
346 QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
347 return qio_channel_create_fd_pair_watch(ioc,
354 static void qio_channel_command_class_init(ObjectClass *klass,
355 void *class_data G_GNUC_UNUSED)
357 QIOChannelClass *ioc_klass = QIO_CHANNEL_CLASS(klass);
359 ioc_klass->io_writev = qio_channel_command_writev;
360 ioc_klass->io_readv = qio_channel_command_readv;
361 ioc_klass->io_set_blocking = qio_channel_command_set_blocking;
362 ioc_klass->io_close = qio_channel_command_close;
363 ioc_klass->io_create_watch = qio_channel_command_create_watch;
364 ioc_klass->io_set_aio_fd_handler = qio_channel_command_set_aio_fd_handler;
367 static const TypeInfo qio_channel_command_info = {
368 .parent = TYPE_QIO_CHANNEL,
369 .name = TYPE_QIO_CHANNEL_COMMAND,
370 .instance_size = sizeof(QIOChannelCommand),
371 .instance_init = qio_channel_command_init,
372 .instance_finalize = qio_channel_command_finalize,
373 .class_init = qio_channel_command_class_init,
376 static void qio_channel_command_register_types(void)
378 type_register_static(&qio_channel_command_info);
381 type_init(qio_channel_command_register_types);