kvm tools, setup: Create private directory
[linux-2.6/next.git] / tools / kvm / builtin-stop.c
blobfd0500e9c2ede837e6253f8ed0c96354ff383f8d
1 #include <kvm/util.h>
2 #include <kvm/kvm-cmd.h>
3 #include <kvm/builtin-stop.h>
4 #include <kvm/kvm.h>
5 #include <kvm/parse-options.h>
7 #include <stdio.h>
8 #include <string.h>
9 #include <signal.h>
11 static bool all;
12 static pid_t instance_pid;
13 static const char *instance_name;
15 static const char * const stop_usage[] = {
16 "kvm stop [--all] [-n name] [-p pid]",
17 NULL
20 static const struct option stop_options[] = {
21 OPT_GROUP("General options:"),
22 OPT_BOOLEAN('a', "all", &all, "Stop all instances"),
23 OPT_STRING('n', "name", &instance_name, "name", "Instance name"),
24 OPT_INTEGER('p', "pid", &instance_pid, "Instance pid"),
25 OPT_END()
28 static void parse_stop_options(int argc, const char **argv)
30 while (argc != 0) {
31 argc = parse_options(argc, argv, stop_options, stop_usage,
32 PARSE_OPT_STOP_AT_NON_OPTION);
33 if (argc != 0)
34 kvm_stop_help();
38 void kvm_stop_help(void)
40 usage_with_options(stop_usage, stop_options);
43 static int do_stop(const char *name, int pid)
45 return kill(pid, SIGKVMSTOP);
48 int kvm_cmd_stop(int argc, const char **argv, const char *prefix)
50 parse_stop_options(argc, argv);
52 if (all)
53 return kvm__enumerate_instances(do_stop);
55 if (instance_name == NULL &&
56 instance_pid == 0)
57 kvm_stop_help();
59 if (instance_name)
60 instance_pid = kvm__get_pid_by_instance(instance_name);
62 if (instance_pid <= 0)
63 die("Failed locating instance");
65 return kill(instance_pid, SIGKVMSTOP);