Add a core_pattern debug command
[libguestfs.git] / daemon / devsparts.c
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009 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., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <dirent.h>
27 #include <sys/stat.h>
28
29 #include "daemon.h"
30 #include "actions.h"
31
32 typedef int (*block_dev_func_t)(const char *dev,
33                                 char ***r, int *size, int *alloc);
34
35 /* Execute a given function for each discovered block device */
36 static char**
37 foreach_block_device (block_dev_func_t func)
38 {
39   char **r = NULL;
40   int size = 0, alloc = 0;
41
42   DIR *dir;
43   int err = 0;
44
45   dir = opendir ("/sys/block");
46   if (!dir) {
47     reply_with_perror ("opendir: /sys/block");
48     return NULL;
49   }
50
51   while(1) {
52     errno = 0;
53     struct dirent *d = readdir(dir);
54     if(NULL == d) break;
55
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)) {
60       char dev_path[256];
61       snprintf (dev_path, sizeof dev_path, "/dev/%s", d->d_name);
62
63       /* Ignore the root device. */
64       if (is_root_device (dev_path))
65         continue;
66
67       /* RHBZ#514505: Some versions of qemu <= 0.10 add a
68        * CD-ROM device even though we didn't request it.  Try to
69        * detect this by seeing if the device contains media.
70        */
71       int fd = open (dev_path, O_RDONLY);
72       if (fd == -1) {
73         perror (dev_path);
74         continue;
75       }
76       close (fd);
77
78       /* Call the map function for this device */
79       if((*func)(d->d_name, &r, &size, &alloc) != 0) {
80         err = 1;
81         break;
82       }
83     }
84   }
85
86   /* Check readdir didn't fail */
87   if(0 != errno) {
88     reply_with_perror ("readdir: /sys/block");
89     free_stringslen(r, size);
90     return NULL;
91   }
92
93   /* Close the directory handle */
94   if (closedir (dir) == -1) {
95     reply_with_perror ("closedir: /sys/block");
96     free_stringslen(r, size);
97     return NULL;
98   }
99
100   /* Free the result list on error */
101   if(err) {
102     free_stringslen(r, size);
103     return NULL;
104   }
105
106   /* Sort the devices */
107   sort_strings (r, size);
108
109   /* NULL terminate the list */
110   if (add_string (&r, &size, &alloc, NULL) == -1) {
111     return NULL;
112   }
113
114   return r;
115 }
116
117 /* Add a device to the list of devices */
118 static int
119 add_device(const char *device,
120            char ***const r, int *const size, int *const alloc)
121 {
122   char dev_path[256];
123   snprintf (dev_path, sizeof dev_path, "/dev/%s", device);
124
125   if (add_string (r, size, alloc, dev_path) == -1) {
126     return -1;
127   }
128
129   return 0;
130 }
131
132 char **
133 do_list_devices (void)
134 {
135   return foreach_block_device(add_device);
136 }
137
138 static int
139 add_partitions(const char *device,
140                char ***const r, int *const size, int *const alloc)
141 {
142   char devdir[256];
143
144   /* Open the device's directory under /sys/block */
145   snprintf (devdir, sizeof devdir, "/sys/block/%s", device);
146
147   DIR *dir = opendir (devdir);
148   if (!dir) {
149     reply_with_perror ("opendir: %s", devdir);
150     free_stringslen (*r, *size);
151     return -1;
152   }
153
154   /* Look in /sys/block/<device>/ for entries starting with <device>
155    * e.g. /sys/block/sda/sda1
156    */
157   errno = 0;
158   struct dirent *d;
159   while ((d = readdir (dir)) != NULL) {
160     if (STREQLEN (d->d_name, device, strlen (device))) {
161       char part[256];
162       snprintf (part, sizeof part, "/dev/%s", d->d_name);
163
164       if (add_string (r, size, alloc, part) == -1) {
165         closedir (dir);
166         return -1;
167       }
168     }
169   }
170
171   /* Check if readdir failed */
172   if(0 != errno) {
173       reply_with_perror ("readdir: %s", devdir);
174       free_stringslen(*r, *size);
175       return -1;
176   }
177
178   /* Close the directory handle */
179   if (closedir (dir) == -1) {
180     reply_with_perror ("closedir: /sys/block/%s", device);
181     free_stringslen (*r, *size);
182     return -1;
183   }
184
185   return 0;
186 }
187
188 char **
189 do_list_partitions (void)
190 {
191   return foreach_block_device(add_partitions);
192 }