mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-06-15 18:05:49 +00:00
e333e41af5
Remove struct stop_cmd and use kvm_ipc__send(). Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
71 lines
1.3 KiB
C
71 lines
1.3 KiB
C
#include <kvm/util.h>
|
|
#include <kvm/kvm-cmd.h>
|
|
#include <kvm/builtin-stop.h>
|
|
#include <kvm/kvm.h>
|
|
#include <kvm/parse-options.h>
|
|
#include <kvm/kvm-ipc.h>
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <signal.h>
|
|
|
|
static bool all;
|
|
static const char *instance_name;
|
|
|
|
static const char * const stop_usage[] = {
|
|
"lkvm stop [--all] [-n name]",
|
|
NULL
|
|
};
|
|
|
|
static const struct option stop_options[] = {
|
|
OPT_GROUP("General options:"),
|
|
OPT_BOOLEAN('a', "all", &all, "Stop all instances"),
|
|
OPT_STRING('n', "name", &instance_name, "name", "Instance name"),
|
|
OPT_END()
|
|
};
|
|
|
|
static void parse_stop_options(int argc, const char **argv)
|
|
{
|
|
while (argc != 0) {
|
|
argc = parse_options(argc, argv, stop_options, stop_usage,
|
|
PARSE_OPT_STOP_AT_NON_OPTION);
|
|
if (argc != 0)
|
|
kvm_stop_help();
|
|
}
|
|
}
|
|
|
|
void kvm_stop_help(void)
|
|
{
|
|
usage_with_options(stop_usage, stop_options);
|
|
}
|
|
|
|
static int do_stop(const char *name, int sock)
|
|
{
|
|
return kvm_ipc__send(sock, KVM_IPC_STOP);
|
|
}
|
|
|
|
int kvm_cmd_stop(int argc, const char **argv, const char *prefix)
|
|
{
|
|
int instance;
|
|
int r;
|
|
|
|
parse_stop_options(argc, argv);
|
|
|
|
if (all)
|
|
return kvm__enumerate_instances(do_stop);
|
|
|
|
if (instance_name == NULL)
|
|
kvm_stop_help();
|
|
|
|
instance = kvm__get_sock_by_instance(instance_name);
|
|
|
|
if (instance <= 0)
|
|
die("Failed locating instance");
|
|
|
|
r = do_stop(instance_name, instance);
|
|
|
|
close(instance);
|
|
|
|
return r;
|
|
}
|