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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
/* nbdkit
* Copyright Red Hat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <config.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <nbdkit-filter.h>
#include "cleanup.h"
#include "open_memstream.h"
#include "utils.h"
static const char *default_export;
static enum {
LIST_KEEP,
LIST_ERROR,
LIST_EMPTY,
LIST_DEFAULT,
LIST_EXPLICIT,
} list;
static bool strict;
static enum {
DESC_KEEP,
DESC_NONE,
DESC_FIXED,
DESC_SCRIPT,
} desc_mode;
static const char *desc;
struct nbdkit_exports *exports;
static void
exportname_load (void)
{
exports = nbdkit_exports_new ();
if (!exports) {
nbdkit_error ("malloc: %m");
exit (EXIT_FAILURE);
}
}
static void
exportname_unload (void)
{
nbdkit_exports_free (exports);
}
/* Called for each key=value passed on the command line. */
static int
exportname_config (nbdkit_next_config *next, nbdkit_backend *nxdata,
const char *key, const char *value)
{
int r;
if (strcmp (key, "default-export") == 0 ||
strcmp (key, "default_export") == 0) {
default_export = value;
return 0;
}
if (strcmp (key, "exportname-list") == 0 ||
strcmp (key, "exportname_list") == 0) {
if (strcmp (value, "keep") == 0)
list = LIST_KEEP;
else if (strcmp (value, "error") == 0)
list = LIST_ERROR;
else if (strcmp (value, "empty") == 0)
list = LIST_EMPTY;
else if (strcmp (value, "defaultonly") == 0 ||
strcmp (value, "default-only") == 0)
list = LIST_DEFAULT;
else if (strcmp (value, "explicit") == 0)
list = LIST_EXPLICIT;
else {
nbdkit_error ("unrecognized exportname-list mode: %s", value);
return -1;
}
return 0;
}
if (strcmp (key, "exportname-strict") == 0 ||
strcmp (key, "exportname_strict") == 0) {
r = nbdkit_parse_bool (value);
if (r == -1)
return -1;
strict = r;
return 0;
}
if (strcmp (key, "exportname") == 0)
return nbdkit_add_export (exports, value, NULL);
if (strcmp (key, "exportdesc") == 0) {
if (strcmp (value, "keep") == 0)
desc_mode = DESC_KEEP;
else if (strcmp (value, "none") == 0) {
desc_mode = DESC_NONE;
desc = NULL;
}
else if (strncmp (value, "fixed:", 6) == 0) {
desc_mode = DESC_FIXED;
desc = value + 6;
}
else if (strncmp (value, "script:", 7) == 0) {
desc_mode = DESC_SCRIPT;
desc = value + 7;
}
else {
nbdkit_error ("unrecognized exportdesc mode: %s", value);
return -1;
}
return 0;
}
return next (nxdata, key, value);
}
#define exportname_config_help \
"default-export=<NAME> Canonical name for the \"\" default export.\n" \
"exportname-list=<MODE> Which exports to advertise: keep (default),\n" \
" error, empty, defaultonly, explicit.\n" \
"exportname-strict=<BOOL> Limit clients to explicit exports (default\n" \
" false).\n" \
"exportname=<NAME> Add an explicit export name, may be\n" \
" repeated.\n" \
"exportdesc=<MODE> Set descriptions according to mode: keep\n" \
" (default), none, fixed:STRING,\n" \
" script:SCRIPT.\n" \
static const char *
get_desc (const char *name, const char *def)
{
FILE *fp;
CLEANUP_FREE char *cmd = NULL;
size_t cmdlen = 0;
char buf[4096]; /* Maximum NBD string; we truncate any longer response */
size_t r;
switch (desc_mode) {
case DESC_KEEP:
return def;
case DESC_NONE:
case DESC_FIXED:
return desc;
case DESC_SCRIPT:
break;
default:
abort ();
}
/* Construct the command. */
fp = open_memstream (&cmd, &cmdlen);
if (fp == NULL) {
nbdkit_debug ("open_memstream: %m");
return NULL;
}
fprintf (fp, "export name; name=");
shell_quote (name, fp);
fprintf (fp, "\n%s\n", desc);
if (close_memstream (fp) == -1) {
nbdkit_debug ("memstream failed: %m");
return NULL;
}
nbdkit_debug ("%s", cmd);
fp = popen (cmd, "r");
if (fp == NULL) {
nbdkit_debug ("popen: %m");
return NULL;
}
/* Now read the description */
r = fread (buf, 1, sizeof buf, fp);
if (r == 0 && ferror (fp)) {
nbdkit_debug ("fread: %m");
pclose (fp);
return NULL;
}
pclose (fp);
if (r && buf[r-1] == '\n')
r--;
return nbdkit_strndup_intern (buf, r);
}
static int
exportname_list_exports (nbdkit_next_list_exports *next,
nbdkit_backend *nxdata,
int readonly, int is_tls,
struct nbdkit_exports *exps)
{
size_t i;
struct nbdkit_exports *source;
CLEANUP_EXPORTS_FREE struct nbdkit_exports *exps2 = NULL;
switch (list) {
case LIST_KEEP:
source = exps2 = nbdkit_exports_new ();
if (exps2 == NULL)
return -1;
if (next (nxdata, readonly, exps2) == -1)
return -1;
break;
case LIST_ERROR:
nbdkit_error ("export list restricted by policy");
return -1;
case LIST_EMPTY:
return 0;
case LIST_DEFAULT:
return nbdkit_use_default_export (exps);
case LIST_EXPLICIT:
source = exports;
break;
default:
abort ();
}
for (i = 0; i < nbdkit_exports_count (source); i++) {
struct nbdkit_export e = nbdkit_get_export (source, i);
if (nbdkit_add_export (exps, e.name,
get_desc (e.name, e.description)) == -1)
return -1;
}
return 0;
}
static const char *
exportname_default_export (nbdkit_next_default_export *next,
nbdkit_backend *nxdata,
int readonly, int is_tls)
{
size_t i;
/* If we are strict, do not allow connection unless "" was advertised. */
if (strict) {
for (i = 0; i < nbdkit_exports_count (exports); i++) {
if (nbdkit_get_export (exports, i).name[0] == '\0')
return default_export ?: "";
}
return NULL;
}
if (default_export)
return default_export;
return next (nxdata, readonly);
}
struct handle {
const char *name;
};
static void *
exportname_open (nbdkit_next_open *next, nbdkit_context *nxdata,
int readonly, const char *exportname, int is_tls)
{
size_t i;
struct handle *h;
if (strict) {
for (i = 0; i < nbdkit_exports_count (exports); i++) {
if (strcmp (nbdkit_get_export (exports, i).name, exportname) == 0)
break;
}
if (i == nbdkit_exports_count (exports)) {
nbdkit_error ("export '%s not found", exportname);
errno = ENOENT;
return NULL;
}
}
h = malloc (sizeof *h);
if (h == NULL) {
nbdkit_error ("malloc: %m");
return NULL;
}
h->name = nbdkit_strdup_intern (exportname);
if (h->name == NULL) {
free (h);
return NULL;
}
if (next (nxdata, readonly, exportname) == -1) {
free (h);
return NULL;
}
return h;
}
static void
exportname_close (void *handle)
{
free (handle);
}
static const char *
exportname_export_description (nbdkit_next *next,
void *handle)
{
struct handle *h = handle;
const char *def = NULL;
if (desc_mode == DESC_KEEP)
def = next->export_description (next);
return get_desc (h->name, def);
}
static struct nbdkit_filter filter = {
.name = "exportname",
.longname = "nbdkit exportname filter",
.load = exportname_load,
.unload = exportname_unload,
.config = exportname_config,
.config_help = exportname_config_help,
.list_exports = exportname_list_exports,
.default_export = exportname_default_export,
.open = exportname_open,
.close = exportname_close,
.export_description = exportname_export_description,
};
NBDKIT_REGISTER_FILTER (filter)
|