1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
32 static bool arg_quiet = false;
37 } arg_mode = ANY_VIRTUALIZATION;
39 static void help(void) {
40 printf("%s [OPTIONS...]\n\n"
41 "Detect execution in a virtualized environment.\n\n"
42 " -h --help Show this help\n"
43 " --version Show package version\n"
44 " -c --container Only detect whether we are run in a container\n"
45 " -v --vm Only detect whether we are run in a VM\n"
46 " -q --quiet Don't output anything, just set return value\n"
47 , program_invocation_short_name);
50 static int parse_argv(int argc, char *argv[]) {
56 static const struct option options[] = {
57 { "help", no_argument, NULL, 'h' },
58 { "version", no_argument, NULL, ARG_VERSION },
59 { "container", no_argument, NULL, 'c' },
60 { "vm", optional_argument, NULL, 'v' },
61 { "quiet", no_argument, NULL, 'q' },
70 while ((c = getopt_long(argc, argv, "hqcv", options, NULL)) >= 0)
80 puts(SYSTEMD_FEATURES);
88 arg_mode = ONLY_CONTAINER;
99 assert_not_reached("Unhandled option");
103 log_error("%s takes no arguments.",
104 program_invocation_short_name);
111 int main(int argc, char *argv[]) {
112 const char *id = NULL;
113 int retval = EXIT_SUCCESS;
116 /* This is mostly intended to be used for scripts which want
117 * to detect whether we are being run in a virtualized
118 * environment or not */
120 log_parse_environment();
123 r = parse_argv(argc, argv);
125 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
129 case ANY_VIRTUALIZATION: {
132 v = detect_virtualization(&id);
134 log_error("Failed to check for virtualization: %s", strerror(-v));
138 retval = v != VIRTUALIZATION_NONE ? EXIT_SUCCESS : EXIT_FAILURE;
143 r = detect_container(&id);
145 log_error("Failed to check for container: %s", strerror(-r));
149 retval = r > 0 ? EXIT_SUCCESS : EXIT_FAILURE;
155 log_error("Failed to check for vm: %s", strerror(-r));
159 retval = r > 0 ? EXIT_SUCCESS : EXIT_FAILURE;
164 puts(id ? id : "none");