mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-29 17:15:23 +00:00
109efd7941
Given a PID, the QEMU driver reads /proc/$PID/cmdline and /proc/$PID/environ to get the configuration. This is fed into the ARGV->XML convertor to build an XML configuration for the process. /proc/$PID/exe is resolved to identify the full command binary path After checking for name/uuid uniqueness, an attempt is made to connect to the monitor socket. If successful then 'info status' and 'info kvm' are issued to determine whether the CPUs are running and if KVM is enabled. * src/qemu/qemu_driver.c: Implement virDomainQemuAttach * src/qemu/qemu_process.h, src/qemu/qemu_process.c: Add qemuProcessAttach to connect to the monitor of an existing QEMU process
82 lines
3.2 KiB
C
82 lines
3.2 KiB
C
/*
|
|
* qemu_process.c: QEMU process management
|
|
*
|
|
* Copyright (C) 2006-2011 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef __QEMU_PROCESS_H__
|
|
# define __QEMU_PROCESS_H__
|
|
|
|
# include "qemu_conf.h"
|
|
|
|
int qemuProcessPrepareMonitorChr(struct qemud_driver *driver,
|
|
virDomainChrSourceDefPtr monConfig,
|
|
const char *vm);
|
|
|
|
int qemuProcessStartCPUs(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn,
|
|
virDomainRunningReason reason);
|
|
int qemuProcessStopCPUs(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virDomainPausedReason reason);
|
|
|
|
void qemuProcessAutostartAll(struct qemud_driver *driver);
|
|
void qemuProcessReconnectAll(virConnectPtr conn, struct qemud_driver *driver);
|
|
|
|
int qemuProcessAssignPCIAddresses(virDomainDefPtr def);
|
|
|
|
int qemuProcessStart(virConnectPtr conn,
|
|
struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
const char *migrateFrom,
|
|
bool start_paused,
|
|
bool autodestroy,
|
|
int stdin_fd,
|
|
const char *stdin_path,
|
|
enum virVMOperationType vmop);
|
|
|
|
void qemuProcessStop(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
int migrated,
|
|
virDomainShutoffReason reason);
|
|
|
|
int qemuProcessAttach(virConnectPtr conn,
|
|
struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
int pid,
|
|
const char *pidfile,
|
|
virDomainChrSourceDefPtr monConfig,
|
|
bool monJSON);
|
|
|
|
void qemuProcessKill(virDomainObjPtr vm);
|
|
|
|
int qemuProcessAutoDestroyInit(struct qemud_driver *driver);
|
|
void qemuProcessAutoDestroyRun(struct qemud_driver *driver,
|
|
virConnectPtr conn);
|
|
void qemuProcessAutoDestroyShutdown(struct qemud_driver *driver);
|
|
int qemuProcessAutoDestroyAdd(struct qemud_driver *driver,
|
|
virDomainObjPtr vm,
|
|
virConnectPtr conn);
|
|
int qemuProcessAutoDestroyRemove(struct qemud_driver *driver,
|
|
virDomainObjPtr vm);
|
|
bool qemuProcessAutoDestroyActive(struct qemud_driver *driver,
|
|
virDomainObjPtr vm);
|
|
|
|
#endif /* __QEMU_PROCESS_H__ */
|