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
|
/* libguestfs - guestfish and guestmount shared option parsing
* Copyright (C) 2010-2012 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 <unistd.h>
#include <termios.h>
#include <string.h>
#include <libintl.h>
#include <errno.h>
#include <error.h>
#include <assert.h>
#include "guestfs.h"
#include "options.h"
/**
* Read a passphrase ('Key') from F</dev/tty> with echo off.
*
* The caller (F<fish/cmds.c>) will call free on the string
* afterwards. Based on the code in cryptsetup file F<lib/utils.c>.
*/
char *
read_key (const char *param)
{
FILE *infp, *outfp;
struct termios orig, temp;
char *ret = NULL;
int tty;
int tcset = 0;
size_t allocsize = 0;
ssize_t len;
/* Read and write to /dev/tty if available. */
if (keys_from_stdin ||
(infp = outfp = fopen ("/dev/tty", "w+")) == NULL) {
infp = stdin;
outfp = stdout;
}
/* Print the prompt and set no echo. */
tty = isatty (fileno (infp));
if (tty) {
fprintf (outfp, _("Enter key or passphrase (\"%s\"): "), param);
if (!echo_keys) {
if (tcgetattr (fileno (infp), &orig) == -1) {
perror ("tcgetattr");
goto error;
}
memcpy (&temp, &orig, sizeof temp);
temp.c_lflag &= ~ECHO;
tcsetattr (fileno (infp), TCSAFLUSH, &temp);
tcset = 1;
}
}
len = getline (&ret, &allocsize, infp);
if (len == -1) {
perror ("getline");
ret = NULL;
goto error;
}
/* Remove the terminating \n if there is one. */
if (len > 0 && ret[len-1] == '\n')
ret[len-1] = '\0';
error:
/* Restore echo, close file descriptor. */
if (tty && tcset) {
printf ("\n");
tcsetattr (fileno (infp), TCSAFLUSH, &orig);
}
if (infp != stdin)
fclose (infp); /* outfp == infp, so this is closed also */
return ret;
}
static char *
read_first_line_from_file (const char *filename)
{
CLEANUP_FCLOSE FILE *fp = NULL;
char *ret = NULL;
size_t allocsize = 0;
ssize_t len;
fp = fopen (filename, "r");
if (!fp)
error (EXIT_FAILURE, errno, "fopen: %s", filename);
len = getline (&ret, &allocsize, fp);
if (len == -1)
error (EXIT_FAILURE, errno, "getline: %s", filename);
/* Remove the terminating \n if there is one. */
if (len > 0 && ret[len-1] == '\n')
ret[len-1] = '\0';
return ret;
}
/* Return the key(s) matching this particular device from the
* keystore. There may be multiple. If none are read from the
* keystore, ask the user.
*/
char **
get_keys (struct key_store *ks, const char *device, const char *uuid)
{
size_t i, j, len;
char **r;
char *s;
/* We know the returned list must have at least one element and not
* more than ks->nr_keys.
*/
len = 1;
if (ks)
len = MIN (1, ks->nr_keys);
r = calloc (len+1, sizeof (char *));
if (r == NULL)
error (EXIT_FAILURE, errno, "calloc");
j = 0;
if (ks) {
for (i = 0; i < ks->nr_keys; ++i) {
struct key_store_key *key = &ks->keys[i];
if (STRNEQ (key->id, device) && (uuid && STRNEQ (key->id, uuid)))
continue;
switch (key->type) {
case key_string:
s = strdup (key->string.s);
if (!s)
error (EXIT_FAILURE, errno, "strdup");
r[j++] = s;
break;
case key_file:
s = read_first_line_from_file (key->file.name);
r[j++] = s;
break;
}
}
}
if (j == 0) {
/* Key not found in the key store, ask the user for it. */
s = read_key (device);
if (!s)
error (EXIT_FAILURE, 0, _("could not read key from user"));
r[0] = s;
}
return r;
}
struct key_store *
key_store_add_from_selector (struct key_store *ks, const char *selector)
{
CLEANUP_FREE_STRING_LIST char **fields =
guestfs_int_split_string (':', selector);
struct key_store_key key;
if (!fields)
error (EXIT_FAILURE, errno, "guestfs_int_split_string");
if (guestfs_int_count_strings (fields) != 3) {
invalid_selector:
error (EXIT_FAILURE, 0, "invalid selector for --key: %s", selector);
}
/* 1: device */
key.id = strdup (fields[0]);
if (!key.id)
error (EXIT_FAILURE, errno, "strdup");
/* 2: key type */
if (STREQ (fields[1], "key"))
key.type = key_string;
else if (STREQ (fields[1], "file"))
key.type = key_file;
else
goto invalid_selector;
/* 3: actual key */
switch (key.type) {
case key_string:
key.string.s = strdup (fields[2]);
if (!key.string.s)
error (EXIT_FAILURE, errno, "strdup");
break;
case key_file:
key.file.name = strdup (fields[2]);
if (!key.file.name)
error (EXIT_FAILURE, errno, "strdup");
break;
}
return key_store_import_key (ks, &key);
}
struct key_store *
key_store_import_key (struct key_store *ks, const struct key_store_key *key)
{
struct key_store_key *new_keys;
if (!ks) {
ks = calloc (1, sizeof (*ks));
if (!ks)
error (EXIT_FAILURE, errno, "strdup");
}
assert (ks != NULL);
new_keys = realloc (ks->keys,
(ks->nr_keys + 1) * sizeof (struct key_store_key));
if (!new_keys)
error (EXIT_FAILURE, errno, "realloc");
ks->keys = new_keys;
ks->keys[ks->nr_keys] = *key;
++ks->nr_keys;
return ks;
}
void
free_key_store (struct key_store *ks)
{
size_t i;
if (!ks)
return;
for (i = 0; i < ks->nr_keys; ++i) {
struct key_store_key *key = &ks->keys[i];
switch (key->type) {
case key_string:
free (key->string.s);
break;
case key_file:
free (key->file.name);
break;
}
free (key->id);
}
}
|