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.
32 typedef int (*block_dev_func_t)(const char *dev,
33 char ***r, int *size, int *alloc);
35 /* Execute a given function for each discovered block device */
37 foreach_block_device (block_dev_func_t func)
40 int size = 0, alloc = 0;
45 dir = opendir ("/sys/block");
47 reply_with_perror ("opendir: /sys/block");
53 struct dirent *d = readdir(dir);
56 if (STREQLEN (d->d_name, "sd", 2) ||
57 STREQLEN (d->d_name, "hd", 2) ||
58 STREQLEN (d->d_name, "vd", 2) ||
59 STREQLEN (d->d_name, "sr", 2)) {
61 snprintf (dev_path, sizeof dev_path, "/dev/%s", d->d_name);
63 /* RHBZ#514505: Some versions of qemu <= 0.10 add a
64 * CD-ROM device even though we didn't request it. Try to
65 * detect this by seeing if the device contains media.
67 int fd = open (dev_path, O_RDONLY);
74 /* Call the map function for this device */
75 if((*func)(d->d_name, &r, &size, &alloc) != 0) {
82 /* Check readdir didn't fail */
84 reply_with_perror ("readdir: /sys/block");
85 free_stringslen(r, size);
89 /* Close the directory handle */
90 if (closedir (dir) == -1) {
91 reply_with_perror ("closedir: /sys/block");
92 free_stringslen(r, size);
96 /* Free the result list on error */
98 free_stringslen(r, size);
102 /* Sort the devices */
103 sort_strings (r, size);
105 /* NULL terminate the list */
106 if (add_string (&r, &size, &alloc, NULL) == -1) {
113 /* Add a device to the list of devices */
115 add_device(const char *device,
116 char ***const r, int *const size, int *const alloc)
119 snprintf (dev_path, sizeof dev_path, "/dev/%s", device);
121 if (add_string (r, size, alloc, dev_path) == -1) {
129 do_list_devices (void)
131 return foreach_block_device(add_device);
135 add_partitions(const char *device,
136 char ***const r, int *const size, int *const alloc)
140 /* Open the device's directory under /sys/block */
141 snprintf (devdir, sizeof devdir, "/sys/block/%s", device);
143 DIR *dir = opendir (devdir);
145 reply_with_perror ("opendir: %s", devdir);
146 free_stringslen (*r, *size);
150 /* Look in /sys/block/<device>/ for entries starting with <device>
151 * e.g. /sys/block/sda/sda1
155 while ((d = readdir (dir)) != NULL) {
156 if (STREQLEN (d->d_name, device, strlen (device))) {
158 snprintf (part, sizeof part, "/dev/%s", d->d_name);
160 if (add_string (r, size, alloc, part) == -1) {
167 /* Check if readdir failed */
169 reply_with_perror ("readdir: %s", devdir);
170 free_stringslen(*r, *size);
174 /* Close the directory handle */
175 if (closedir (dir) == -1) {
176 reply_with_perror ("closedir: /sys/block/%s", device);
177 free_stringslen (*r, *size);
185 do_list_partitions (void)
187 return foreach_block_device(add_partitions);