1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009 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 do_list_devices (void)
36 int size = 0, alloc = 0;
41 dir = opendir ("/sys/block");
43 reply_with_perror ("opendir: /sys/block");
47 while ((d = readdir (dir)) != NULL) {
48 if (strncmp (d->d_name, "sd", 2) == 0 ||
49 strncmp (d->d_name, "hd", 2) == 0) {
50 snprintf (buf, sizeof buf, "/dev/%s", d->d_name);
51 if (add_string (&r, &size, &alloc, buf) == -1) {
58 if (add_string (&r, &size, &alloc, NULL) == -1) {
63 if (closedir (dir) == -1) {
64 reply_with_perror ("closedir: /sys/block");
69 sort_strings (r, size-1);
74 do_list_partitions (void)
77 int size = 0, alloc = 0;
80 char buf[256], devname[256];
82 dir = opendir ("/sys/block");
84 reply_with_perror ("opendir: /sys/block");
88 while ((d = readdir (dir)) != NULL) {
89 if (strncmp (d->d_name, "sd", 2) == 0 ||
90 strncmp (d->d_name, "hd", 2) == 0) {
91 strncpy (devname, d->d_name, sizeof devname);
92 devname[sizeof devname - 1] = '\0';
94 snprintf (buf, sizeof buf, "/sys/block/%s", devname);
98 reply_with_perror ("opendir: %s", buf);
99 free_stringslen (r, size);
102 while ((d = readdir (dir2)) != NULL) {
103 if (strncmp (d->d_name, devname, strlen (devname)) == 0) {
104 snprintf (buf, sizeof buf, "/dev/%s", d->d_name);
106 if (add_string (&r, &size, &alloc, buf) == -1) {
114 if (closedir (dir2) == -1) {
115 reply_with_perror ("closedir: /sys/block/%s", devname);
116 free_stringslen (r, size);
122 if (add_string (&r, &size, &alloc, NULL) == -1) {
127 if (closedir (dir) == -1) {
128 reply_with_perror ("closedir: /sys/block");
133 sort_strings (r, size-1);
138 do_mkfs (const char *fstype, const char *device)
143 IS_DEVICE (device, -1);
145 r = command (NULL, &err, "/sbin/mkfs", "-t", fstype, device, NULL);
147 reply_with_error ("mkfs: %s", err);