2 * Copyright (C) 2010-2011 Red Hat Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 #include <libvirt/libvirt.h>
34 #include <libvirt/virterror.h>
43 /* These globals are shared with options.c. */
49 int keys_from_stdin = 0;
51 const char *libvirt_uri = NULL;
54 int csv = 0; /* --csv */
55 int human = 0; /* --human-readable|-h */
56 int inodes = 0; /* --inodes */
57 int one_per_guest = 0; /* --one-per-guest */
58 int uuid = 0; /* --uuid */
61 bad_cast (char const *s)
66 static void __attribute__((noreturn))
69 if (status != EXIT_SUCCESS)
70 fprintf (stderr, _("Try `%s --help' for more information.\n"),
74 _("%s: display free space on virtual filesystems\n"
75 "Copyright (C) 2010 Red Hat Inc.\n"
77 " %s [--options] -d domname\n"
78 " %s [--options] -a disk.img [-a disk.img ...]\n"
80 " -a|--add image Add image\n"
81 " -c|--connect uri Specify libvirt URI for -d option\n"
82 " --csv Output as Comma-Separated Values\n"
83 " -d|--domain guest Add disks from libvirt guest\n"
84 " --format[=raw|..] Force disk format for -a option\n"
85 " -h|--human-readable Human-readable sizes in --long output\n"
86 " --help Display brief help\n"
87 " -i|--inodes Display inodes\n"
88 " --one-per-guest Separate appliance per guest\n"
89 " --uuid Add UUIDs to --long output\n"
90 " -v|--verbose Verbose messages\n"
91 " -V|--version Display version and exit\n"
92 " -x Trace libguestfs API calls\n"
93 "For more information, see the manpage %s(1).\n"),
94 program_name, program_name, program_name,
101 main (int argc, char *argv[])
103 /* Set global program name that is not polluted with libtool artifacts. */
104 set_program_name (argv[0]);
106 setlocale (LC_ALL, "");
107 bindtextdomain (PACKAGE, LOCALEBASEDIR);
108 textdomain (PACKAGE);
110 enum { HELP_OPTION = CHAR_MAX + 1 };
112 static const char *options = "a:c:d:hivVx";
113 static const struct option long_options[] = {
114 { "add", 1, 0, 'a' },
115 { "connect", 1, 0, 'c' },
117 { "domain", 1, 0, 'd' },
118 { "format", 2, 0, 0 },
119 { "help", 0, 0, HELP_OPTION },
120 { "human-readable", 0, 0, 'h' },
121 { "inodes", 0, 0, 'i' },
122 { "one-per-guest", 0, 0, 0 },
124 { "verbose", 0, 0, 'v' },
125 { "version", 0, 0, 'V' },
128 struct drv *drvs = NULL;
130 const char *format = NULL;
134 g = guestfs_create ();
136 fprintf (stderr, _("guestfs_create: failed to create handle\n"));
140 argv[0] = bad_cast (program_name);
143 c = getopt_long (argc, argv, options, long_options, &option_index);
147 case 0: /* options which are long only */
148 if (STREQ (long_options[option_index].name, "format")) {
149 if (!optarg || STREQ (optarg, ""))
153 } else if (STREQ (long_options[option_index].name, "csv")) {
155 } else if (STREQ (long_options[option_index].name, "one-per-guest")) {
157 } else if (STREQ (long_options[option_index].name, "uuid")) {
160 fprintf (stderr, _("%s: unknown long option: %s (%d)\n"),
161 program_name, long_options[option_index].name, option_index);
199 usage (EXIT_SUCCESS);
202 usage (EXIT_FAILURE);
206 /* Old-style syntax? There were no -a or -d options in the old
207 * virt-df which is how we detect this.
210 while (optind < argc) {
211 if (strchr (argv[optind], '/') ||
212 access (argv[optind], F_OK) == 0) { /* simulate -a option */
213 drv = malloc (sizeof (struct drv));
219 drv->a.filename = argv[optind];
220 drv->a.format = NULL;
223 } else { /* simulate -d option */
224 drv = malloc (sizeof (struct drv));
230 drv->d.guest = argv[optind];
239 /* These are really constants, but they have to be variables for the
240 * options parsing code. Assert here that they have known-good
243 assert (read_only == 1);
244 assert (inspector == 0);
247 /* Must be no extra arguments on the command line. */
249 usage (EXIT_FAILURE);
251 /* -h and --csv doesn't make sense. Spreadsheets will corrupt these
252 * fields. (RHBZ#600977).
255 fprintf (stderr, _("%s: you cannot use -h and --csv options together.\n"),
260 /* If the user didn't specify any drives, then we ask libvirt for
261 * the full list of guests and drives, which we add in batches.
265 get_domains_from_libvirt ();
267 fprintf (stderr, _("%s: compiled without support for libvirt.\n"),
275 /* Add domains/drives from the command line (for a single guest). */
276 add_drives (drvs, 'a');
278 if (guestfs_launch (g) == -1)
283 /* Synthesize a display name. */
284 switch (drvs->type) {
286 name = strrchr (drvs->a.filename, '/');
288 name = drvs->a.filename;
290 name++; /* skip '/' character */
293 name = drvs->d.guest;
300 /* XXX regression: in the Perl version we cached the UUID from the
301 * libvirt domain handle so it was available to us here. In this
302 * version the libvirt domain handle is hidden inside
303 * guestfs_add_domain so the UUID is not available easily for
304 * single '-d' command-line options.
306 (void) df_on_handle (name, NULL, NULL, 0);
308 /* Free up data structures, no longer needed after this point. */