1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
/* libguestfs - the guestfsd daemon
* Copyright (C) 2010-2023 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <error.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <augeas.h>
#include "c-ctype.h"
#include "ignore-value.h"
#include "daemon.h"
#include "actions.h"
static void debug_lvm_config (void);
/* Read LVM_SYSTEM_DIR environment variable, or set it to a default
* value if the environment variable is not set.
*/
static char *lvm_system_dir;
static void get_lvm_system_dir (void) __attribute__((constructor));
static void free_lvm_system_dir (void) __attribute__((destructor));
static void
get_lvm_system_dir (void)
{
const char *p;
p = getenv ("LVM_SYSTEM_DIR");
if (p) {
lvm_system_dir = strdup (p);
if (lvm_system_dir == NULL) abort ();
}
if (!lvm_system_dir) {
lvm_system_dir = strdup ("/etc/lvm");
if (lvm_system_dir == NULL) abort ();
}
fprintf (stderr, "lvm_system_dir = %s\n", lvm_system_dir);
}
static void
free_lvm_system_dir (void)
{
free (lvm_system_dir);
}
static bool
devicesfile_feature (void)
{
static bool checked, available;
if (!checked) {
checked = true;
available = command (NULL, NULL, "lvmdevices", "--help", NULL) == 0 ||
command (NULL, NULL, "vgimportdevices", "--help", NULL) == 0;
}
return available;
}
/* Rewrite the 'filter = [ ... ]' line in lvm.conf. */
static int
set_filter (char *const *filters)
{
const char *filter_types[] = { "filter", "global_filter", NULL };
CLEANUP_FREE char *conf = NULL;
FILE *fp;
size_t i, j;
if (asprintf (&conf, "%s/lvm.conf", lvm_system_dir) == -1) {
reply_with_perror ("asprintf");
return -1;
}
fp = fopen (conf, "we");
if (fp == NULL) {
reply_with_perror ("open: %s", conf);
return -1;
}
fprintf (fp, "devices {\n");
/* If lvm2 supports a "devices file", we need to disable its use
* (RHBZ#1965941).
*/
if (devicesfile_feature ())
fprintf (fp, " use_devicesfile = 0\n");
for (j = 0; filter_types[j] != NULL; ++j) {
fprintf (fp, " %s = [\n", filter_types[j]);
fprintf (fp, " ");
for (i = 0; filters[i] != NULL; ++i) {
if (i > 0)
fprintf (fp, ",\n ");
fprintf (fp, "\"%s\"", filters[i]);
}
fprintf (fp, "\n");
fprintf (fp, " ]\n");
}
fprintf (fp, "}\n");
fclose (fp);
debug_lvm_config ();
return 0;
}
static int
vgchange (const char *vgchange_flag)
{
CLEANUP_FREE char *err = NULL;
int r = command (NULL, &err, "lvm", "vgchange", vgchange_flag, NULL);
if (r == -1) {
reply_with_error ("vgchange %s: %s", vgchange_flag, err);
return -1;
}
return 0;
}
/* Deactivate all VGs. */
static int
deactivate (void)
{
return vgchange ("-an");
}
/* Reactivate all VGs. */
static int
reactivate (void)
{
return vgchange ("-ay");
}
/* Clear the cache and rescan. */
static int
rescan (void)
{
char lvm_cache[64];
snprintf (lvm_cache, sizeof lvm_cache, "%s/cache/.cache", lvm_system_dir);
unlink (lvm_cache);
CLEANUP_FREE char *err = NULL;
int r = command (NULL, &err, "lvm", "vgscan", "--cache", NULL);
if (r == -1) {
reply_with_error ("vgscan: %s", err);
return -1;
}
return 0;
}
/* Show what lvm thinks is the current config. Useful for debugging. */
static void
debug_lvm_config (void)
{
if (verbose) {
fprintf (stderr, "lvm config:\n");
ignore_value (system ("lvm config"));
}
}
/* Construct the new, specific filter strings. We can assume that
* the 'devices' array does not contain any regexp metachars,
* because it's already been checked by the stub code.
*/
static char **
make_filter_strings (char *const *devices)
{
size_t i;
CLEANUP_FREE_STRINGSBUF DECLARE_STRINGSBUF (ret);
for (i = 0; devices[i] != NULL; ++i) {
/* Because of the way matching works in LVM (yes, they wrote their
* own regular expression engine!), each match clause should be either:
*
* for single partitions:
* "a|^/dev/sda1$|",
* for whole block devices:
* "a|^/dev/sda$|", "a|^/dev/sda[0-9]|",
*/
const size_t slen = strlen (devices[i]);
if (add_sprintf (&ret, "a|^%s$|", devices[i]) == -1)
return NULL;
if (!c_isdigit (devices[i][slen-1])) {
/* whole block device */
if (add_sprintf (&ret, "a|^%s[0-9]|", devices[i]) == -1)
return NULL;
}
}
if (add_string (&ret, "r|.*|") == -1)
return NULL;
if (end_stringsbuf (&ret) == -1)
return NULL;
return take_stringsbuf (&ret);
}
int
do_lvm_set_filter (char *const *devices)
{
CLEANUP_FREE_STRING_LIST char **filters = make_filter_strings (devices);
if (filters == NULL)
return -1;
if (deactivate () == -1)
return -1;
int r = set_filter (filters);
if (r == -1)
return -1;
if (rescan () == -1)
return -1;
return reactivate ();
}
int
do_lvm_clear_filter (void)
{
const char *const filters[2] = { "a/.*/", NULL };
if (deactivate () == -1)
return -1;
if (set_filter ((char *const *) filters) == -1)
return -1;
if (rescan () == -1)
return -1;
return reactivate ();
}
|