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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
|
/*
* Copyright © Jan Engelhardt, 2009-2011
*
* This file is part of pam_mount; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*/
/*
* We need a way to store the
* container<->loop device<->crypto device<->mountpoint associations,
* because it is a real pain to try and retrieve them through the
* interfaces of each layer. Especially because given a loop device,
* we have (had) no knowledge of whether the user fed to loop device
* to cryptsetup (possibly via mount.crypt) or whether mount.crypt
* set up the loop device itself.
*
* We used to write {container, mountpoint} into /etc/mtab, but only
* informationally, since /etc/mtab could be a link to the read-only
* /proc/mounts.
*
* In fact, this is always the case on Solaris -- /etc/mnttab is read-only.
* BSD does not even have an mtab.
* So we do need a way to track our device associations.
*/
#define _GNU_SOURCE 1
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <libHX/ctype_helper.h>
#include <libHX/defs.h>
#include <libHX/io.h>
#include <libHX/string.h>
#include "cmt-internal.h"
#include "libcryptmount.h"
#include "pam_mount.h"
typedef int (*scompare_t)(const char *, const char *);
enum {
MKDIR_NEVER = false,
MKDIR_MAY = true,
};
/* crypto mtab */
static const char pmt_cmtab_file[] = RUNDIR "/cmtab";
#if defined(__linux__)
static const char pmt_smtab_file[] = "/etc/mtab";
static const char pmt_kmtab_file[] = "/proc/mounts";
#elif defined(__sun__)
static const char pmt_smtab_file[] = "";
static const char pmt_kmtab_file[] = "/etc/mnttab";
#else
static const char pmt_smtab_file[] = "";
static const char pmt_kmtab_file[] = "";
#endif
/**
* mt_esccat - escape string as needed and append to buffer
* @vp: buffer to append to
* @str: string to escape
*/
static void mt_esccat(hxmc_t **vp, const char *str)
{
static const char del[] = " \\\t\n";
char esc[5] = "\\000";
const char *p;
size_t seg;
if (strpbrk(str, del) == NULL) {
HXmc_strcat(vp, str);
return;
}
for (p = str; *p != '\0'; ++p) {
seg = strcspn(str, del);
HXmc_memcat(vp, p, seg);
p += seg;
if (*p == '\0')
break;
esc[1] = '0' + ((*p & 0700) >> 6);
esc[2] = '0' + ((*p & 0070) >> 3);
esc[3] = '0' + (*p & 0007);
HXmc_strcat(vp, esc);
}
}
/**
* mt_unescape - unescape mtab data
* @input: input string, will be modified in-place
*/
static char *mt_unescape(char *input)
{
unsigned char c;
char *input_orig, *ptr, *output;
unsigned int delta;
if ((ptr = strchr(input, '\\')) == NULL)
return input;
input_orig = input;
for (output = input = ptr; *input != '\0'; ) {
if (!HX_isdigit(input[1]) || !HX_isdigit(input[2]) ||
!HX_isdigit(input[3])) {
++input;
continue;
}
c = ((input[1] - '0') & 07) << 6;
c |= ((input[2] - '0') & 07) << 3;
c |= (input[3] - '0') & 07;
*output++ = c;
input += 4;
ptr = strchr(input, '\\');
if (ptr == NULL)
ptr = input + strlen(input);
delta = ptr - input;
memmove(output, input, delta);
input += delta;
output += delta;
}
*output++ = '\0';
return input_orig;
}
static int pmt_mtab_add(const char *file, const char *line, bool do_mkdir)
{
int fd, ret;
if (do_mkdir) {
char *dirname = HX_dirname(file);
if (dirname == NULL) {
l0g("HX_dirname: %s\n", strerror(errno));
return -errno;
}
ret = HX_mkdir(dirname, S_IRUGO | S_IXUGO | S_IWUSR);
free(dirname);
if (ret < 0) {
l0g("HX_mkdir: %s\n", strerror(-ret));
return ret;
}
}
if ((fd = open(file, O_RDWR | O_CREAT | O_APPEND,
S_IRUGO | S_IWUSR)) < 0) {
fprintf(stderr, "Could not open %s: %s\n", file, strerror(errno));
return -errno;
}
ret = fcntl(fd, F_SETLKW, &(struct flock){.l_type = F_WRLCK,
.l_whence = SEEK_SET, .l_start = 0, .l_len = 0});
if (ret < 0) {
ret = errno;
close(fd);
return -(errno = ret);
}
if ((ret = write(fd, line, strlen(line))) < 0)
ret = -errno;
else if (ret < strlen(line))
ret = 0;
close(fd);
return ret;
}
int pmt_smtab_add(const char *device, const char *mountpoint,
const char *fstype, const char *options)
{
int ret;
hxmc_t *line = HXmc_meminit(NULL, strlen(device) +
strlen(mountpoint) + strlen(fstype) + strlen(options) + 8);
if (line == NULL)
return -errno;
mt_esccat(&line, device);
HXmc_strcat(&line, " ");
mt_esccat(&line, mountpoint);
HXmc_strcat(&line, " ");
mt_esccat(&line, fstype);
HXmc_strcat(&line, " ");
mt_esccat(&line, options);
HXmc_strcat(&line, " 0 0\n");
ret = pmt_mtab_add(pmt_smtab_file, line, MKDIR_NEVER);
HXmc_free(line);
return ret;
}
int pmt_cmtab_add(struct ehd_mount_info *mt)
{
const char *loop_device, *crypto_device;
hxmc_t *line;
int ret;
if (mt->container == NULL)
return -EINVAL;
loop_device = (mt->loop_device == NULL) ? "-" : mt->loop_device;
crypto_device = (mt->crypto_device == NULL) ? "-" : mt->crypto_device;
/* Preallocate just the normal size */
line = HXmc_meminit(NULL, strlen(mt->mountpoint) +
strlen(mt->container) + strlen(loop_device) +
strlen(crypto_device) + 5);
if (line == NULL)
return -errno;
mt_esccat(&line, mt->mountpoint);
HXmc_strcat(&line, "\t");
mt_esccat(&line, mt->container);
HXmc_strcat(&line, "\t");
mt_esccat(&line, loop_device);
HXmc_strcat(&line, "\t");
mt_esccat(&line, crypto_device);
HXmc_strcat(&line, "\n");
ret = pmt_mtab_add(pmt_cmtab_file, line, MKDIR_MAY);
HXmc_free(line);
return ret;
}
/**
* cmtab_parse_line - parse one line from a cmtab file into its fields
* @line: line buffer, will be modified in-place
* @field: field pointers
*/
static void cmtab_parse_line(char *line, char **field)
{
static const unsigned int fld_num = 4;
const char *eol = line + strlen(line);
char *p = line, *q;
int i;
for (i = 0; i < fld_num; ++i)
field[i] = NULL;
for (i = 0; i < fld_num && p < eol; ++i) {
for (q = p; HX_isspace(*q); ++q)
;
for (p = q; !HX_isspace(*p) && *p != '\0'; ++p)
;
*p++ = '\0';
field[i] = mt_unescape(q);
}
}
/**
* __pmt_cmtab_get - get one mtab entry
* @spec: specificator to match on (must be %CMTABF_*)
* @type: type of the specificator
* @mountpoint: mountpoint
* @container: container file or block device
* @loop_device: loop device (if any)
* @crypto_device: crypto device (full path)
*
* Returns true/1 if an entry has been found, false/0 if not,
* negative indicates errno.
*/
static int pmt_cmtab_get1(const char *spec, enum cmtab_field type,
char **mountpoint, char **container, char **loop_device,
char **crypto_device)
{
hxmc_t *line = NULL;
FILE *fp;
int ret = 0;
if (type >= __CMTABF_MAX)
return -EINVAL;
if (mountpoint != NULL) *mountpoint = NULL;
if (container != NULL) *container = NULL;
if (loop_device != NULL) *loop_device = NULL;
if (crypto_device != NULL) *crypto_device = NULL;
if ((fp = fopen(pmt_cmtab_file, "r")) == NULL)
return (errno == ENOENT) ? false : -errno;
fcntl(fileno(fp), F_SETLKW, &(struct flock){.l_type = F_RDLCK,
.l_whence = SEEK_SET, .l_start = 0, .l_len = 0});
while (HX_getl(&line, fp) != NULL) {
char *field[4];
cmtab_parse_line(line, field);
if (strcmp(spec, field[type]) != 0)
continue;
if (mountpoint != NULL) {
free(*mountpoint);
*mountpoint = HX_strdup(field[0]);
}
if (container != NULL) {
free(*container);
*container = HX_strdup(field[1]);
}
if (loop_device != NULL) {
free(*loop_device);
if (strcmp(field[2], "-") != 0)
*loop_device = HX_strdup(field[2]);
else
*loop_device = NULL;
}
if (crypto_device != NULL) {
free(*crypto_device);
if (strcmp(field[3], "-") != 0)
*crypto_device = HX_strdup(field[3]);
else
*crypto_device = NULL;
}
ret = 1;
/*
* most recent entry is at the bottom - must continue to
* loop in case of overmounts.
*/
}
HXmc_free(line);
fclose(fp);
return ret;
}
/**
* pmt_cmtab_get - cmtab_get plus check for stale entries
*
* @mountpoint, @container, @loop_device and @crypto_device must not be %NULL.
* Stale entries in cmtab -- this can happen if the devices are unmounted
* without umount.crypt, or, for example, a sudden reboot -- will be removed.
*/
int pmt_cmtab_get(const char *spec, enum cmtab_field type, char **mountpoint,
char **container, char **loop_device, char **crypto_device)
{
int ret;
char *crypto_device1 = NULL;
if (crypto_device == NULL)
crypto_device = &crypto_device1;
do {
ret = pmt_cmtab_get1(spec, type, mountpoint, container,
loop_device, crypto_device);
if (ret <= 0)
/* error or done */
break;
/* Guard against stale entries - verify that it is mounted. */
if (*container != NULL) {
ret = 0;
if (pmt_smtab_mounted(*container,
*mountpoint, strcmp) > 0)
ret |= PMT_BY_CONTAINER;
if (pmt_smtab_mounted(*crypto_device,
*mountpoint, strcmp) > 0)
ret |= PMT_BY_CRYPTODEV;
break;
}
pmt_cmtab_remove(*mountpoint);
free(*mountpoint);
free(*container);
free(*loop_device);
free(*crypto_device);
} while (true);
if (crypto_device1 != NULL)
free(crypto_device1);
return ret;
}
/**
* pmt_mtab_remove - remove entry from mtab-style file
* @file: file to inspect and modify
* @spec: string to match on
* @field_idx: field to match on
*
* Returns true/1 if entry was removed, false/0 if none was removed,
* negative indicates errno.
*/
static int pmt_mtab_remove(const char *file, const char *spec,
unsigned int field_idx)
{
hxmc_t *line = NULL;
size_t pos_src = 0, pos_dst = 0;
FILE *fp;
int ret;
if ((fp = fopen(file, "r+")) == NULL)
return (errno == ENOENT) ? false : -errno;
ret = fcntl(fileno(fp), F_SETLKW, &(struct flock){.l_type = F_WRLCK,
.l_whence = SEEK_SET, .l_start = 0, .l_len = 0});
if (ret < 0) {
ret = -errno;
goto out;
}
ret = 0;
do {
char *field[4];
size_t curr_pos;
curr_pos = ftello(fp);
if (HX_getl(&line, fp) == NULL)
break;
cmtab_parse_line(line, field);
if (strcmp(spec, field[field_idx]) != 0)
continue;
pos_src = ftello(fp);
pos_dst = curr_pos;
ret = 1;
/* continue looping - and look for overmounts */
} while (true);
if (ret == 1) {
char buf[1024];
ssize_t rdret, wrret;
while ((rdret = pread(fileno(fp), buf, sizeof(buf), pos_src)) > 0) {
wrret = pwrite(fileno(fp), buf, rdret, pos_dst);
if (wrret != rdret) {
w4rn("%s: pwrite: %s\n", __func__, strerror(errno));
if (wrret > 0)
pos_dst += wrret;
break;
}
pos_src += rdret;
pos_dst += rdret;
}
if (ftruncate(fileno(fp), pos_dst) < 0)
w4rn("%s: ftruncate: %s\n", __func__, strerror(errno));
}
out:
HXmc_free(line);
fclose(fp);
return ret;
}
/**
* pmt_smtab_remove - remove an smtab entry
* @spec: specificator to match on (must be %SMTABF_*)
* @type: type of the specificator
*/
int pmt_smtab_remove(const char *spec, enum smtab_field type)
{
if (type >= __SMTABF_MAX)
return -EINVAL;
if (*pmt_smtab_file != '\0')
return pmt_mtab_remove(pmt_smtab_file, spec, type);
return 0;
}
/**
* pmt_cmtab_remove - remove a cmtab entry
* @spec: specificator to match on (must be %CMTABF_*)
*
* By definition, removal operates on the most recent entry in an mtab.
*/
int pmt_cmtab_remove(const char *spec)
{
return pmt_mtab_remove(pmt_cmtab_file, spec, CMTABF_MOUNTPOINT);
}
static int pmt_mtab_mounted(const char *file, const char *const *spec,
const scompare_t *compare, bool cmtab_verify)
{
hxmc_t *line = NULL;
int ret = 0;
FILE *fp;
if ((fp = fopen(file, "r")) == NULL)
return (errno == ENOENT) ? false : -errno;
fcntl(fileno(fp), F_SETLKW, &(struct flock){.l_type = F_RDLCK,
.l_whence = SEEK_SET, .l_start = 0, .l_len = 0});
while (HX_getl(&line, fp) != NULL) {
char *field[4];
cmtab_parse_line(line, field);
if ((spec[0] == NULL || (field[0] && (*compare[0])(spec[0], field[0]) == 0)) &&
(spec[1] == NULL || (field[1] && (*compare[1])(spec[1], field[1]) == 0)) &&
(!cmtab_verify || pmt_smtab_mounted(field[CMTABF_CRYPTO_DEV],
spec[CMTABF_MOUNTPOINT], strcmp) > 0)) {
ret = true;
break;
/* No need to continue looping here. */
}
}
HXmc_free(line);
fclose(fp);
return ret;
}
int pmt_smtab_mounted(const char *container, const char *mountpoint,
scompare_t cont_compare)
{
/* Note alternate order */
const char *const p_spec[] = {container, mountpoint};
scompare_t p_compare[2] = {cont_compare, strcmp};
int ret;
if (*pmt_smtab_file == '\0')
return false;
/* Ignore errors on read. Just return false then. */
ret = pmt_mtab_mounted(pmt_smtab_file, p_spec, p_compare, false);
if (ret > 0)
return ret;
if (*pmt_kmtab_file == '\0')
return false;
ret = pmt_mtab_mounted(pmt_kmtab_file, p_spec, p_compare, false);
return (ret >= 0) ? ret : false;
}
/**
* pam_*mtab_mounted - return if object is mounted
*
* Returns false/0 for not mounted, true/1 for mounted,
* or negative numbers for errors.
*/
int pmt_cmtab_mounted(const char *container, const char *mountpoint)
{
const char *const p_spec[] = {mountpoint, container};
static const scompare_t p_compare[2] = {strcmp, strcmp};
return pmt_mtab_mounted(pmt_cmtab_file, p_spec, p_compare, true);
}
const char *pmt_cmtab_path(void)
{
return pmt_cmtab_file;
}
const char *pmt_smtab_path(void)
{
return (*pmt_smtab_file != '\0') ? pmt_smtab_file : NULL;
}
const char *pmt_kmtab_path(void)
{
return (*pmt_kmtab_file != '\0') ? pmt_kmtab_file : NULL;
}
|