daemon: debug segv correct use of dereferencing NULL.
[libguestfs.git] / fish / prep_fs.c
1 /* guestfish - the filesystem interactive shell
2  * Copyright (C) 2010 Red Hat Inc.
3  *
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.
8  *
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.
13  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <stdarg.h>
24 #include <string.h>
25 #include <unistd.h>
26
27 #include "fish.h"
28 #include "prepopts.h"
29
30 void
31 prep_prelaunch_fs (const char *filename, prep_data *data)
32 {
33   if (alloc_disk (filename, data->params[1], 0, 1) == -1)
34     prep_error (data, filename, _("failed to allocate disk"));
35 }
36
37 void
38 prep_postlaunch_fs (const char *filename, prep_data *data, const char *device)
39 {
40   if (guestfs_part_disk (g, device, data->params[2]) == -1)
41     prep_error (data, filename, _("failed to partition disk: %s"),
42                 guestfs_last_error (g));
43
44   char *part;
45   if (asprintf (&part, "%s1", device) == -1) {
46     perror ("asprintf");
47     exit (EXIT_FAILURE);
48   }
49
50   if (guestfs_mkfs (g, data->params[0], part) == -1)
51     prep_error (data, filename, _("failed to create filesystem (%s): %s"),
52                 data->params[0], guestfs_last_error (g));
53
54   free (part);
55 }