aboutsummaryrefslogtreecommitdiffstats
path: root/builtin-stop.c
blob: 6067630568dfcf98e13f32731d14c9396f60a14f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#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;
}