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 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
|
/*
Copyright (C) CFEngine AS
This file is part of CFEngine 3 - written and maintained by CFEngine AS.
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; version 3.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
To the extent this program is licensed as part of the Enterprise
versions of CFEngine, the applicable Commercial Open Source License
(COSL) may apply to this file if you as a licensee so wish it. See
included file COSL.txt.
*/
#include <file_lib.h>
#include <dir.h>
#include <alloc.h>
#include <logging.h>
bool FileCanOpen(const char *path, const char *modes)
{
FILE *test = NULL;
if ((test = fopen(path, modes)) != NULL)
{
fclose(test);
return true;
}
else
{
return false;
}
}
#define READ_BUFSIZE 4096
Writer *FileRead(const char *filename, size_t max_size, bool *truncated)
{
int fd = safe_open(filename, O_RDONLY);
if (fd == -1)
{
return NULL;
}
Writer *w = FileReadFromFd(fd, max_size, truncated);
close(fd);
return w;
}
Writer *FileReadFromFd(int fd, size_t max_size, bool *truncated)
{
if (truncated)
{
*truncated = false;
}
Writer *w = StringWriter();
for (;;)
{
char buf[READ_BUFSIZE];
/* Reading more data than needed is deliberate. It is a truncation detection. */
ssize_t read_ = read(fd, buf, READ_BUFSIZE);
if (read_ == 0)
{
/* Done. */
return w;
}
else if (read_ < 0)
{
if (errno != EINTR)
{
/* Something went wrong. */
WriterClose(w);
return NULL;
}
/* Else: interrupted - try again. */
}
else if (read_ + StringWriterLength(w) > max_size)
{
WriterWriteLen(w, buf, max_size - StringWriterLength(w));
/* Reached limit - stop. */
if (truncated)
{
*truncated = true;
}
return w;
}
else /* Filled buffer; copy and ask for more. */
{
WriterWriteLen(w, buf, read_);
}
}
}
int FullWrite(int desc, const char *ptr, size_t len)
{
int total_written = 0;
while (len > 0)
{
int written = write(desc, ptr, len);
if (written < 0)
{
if (errno == EINTR)
{
continue;
}
return written;
}
total_written += written;
ptr += written;
len -= written;
}
return total_written;
}
int FullRead(int fd, char *ptr, size_t len)
{
int total_read = 0;
while (len > 0)
{
int bytes_read = read(fd, ptr, len);
if (bytes_read < 0)
{
if (errno == EINTR)
{
continue;
}
return -1;
}
if (bytes_read == 0)
{
return total_read;
}
total_read += bytes_read;
ptr += bytes_read;
len -= bytes_read;
}
return total_read;
}
/**
* @return 1 if dir, 0 if not, -1 in case of error.
* @note difference with files_names.h:IsDir() is that this doesn't
* follow symlinks, so a symlink is never a directory...
*/
int IsDirReal(const char *path)
{
struct stat s;
if (lstat(path, &s) == -1)
{
return -1;
}
return (S_ISDIR(s.st_mode) != 0);
}
#ifndef __MINGW32__
NewLineMode FileNewLineMode(ARG_UNUSED const char *file)
{
return NewLineMode_Unix;
}
#endif // !__MINGW32__
bool IsAbsoluteFileName(const char *f)
{
int off = 0;
// Check for quoted strings
for (off = 0; f[off] == '\"'; off++)
{
}
#ifdef _WIN32
if (IsFileSep(f[off]) && IsFileSep(f[off + 1]))
{
return true;
}
if (isalpha(f[off]) && f[off + 1] == ':' && IsFileSep(f[off + 2]))
{
return true;
}
#endif
if (IsFileSep(f[off]))
{
return true;
}
return false;
}
/* We assume that s is at least MAX_FILENAME large.
* MapName() is thread-safe, but the argument is modified. */
#ifdef _WIN32
# if defined(__MINGW32__)
char *MapNameCopy(const char *s)
{
char *str = xstrdup(s);
char *c = str;
while ((c = strchr(c, '/')))
{
*c = '\\';
}
return str;
}
char *MapName(char *s)
{
char *c = s;
while ((c = strchr(c, '/')))
{
*c = '\\';
}
return s;
}
# elif defined(__CYGWIN__)
char *MapNameCopy(const char *s)
{
Writer *w = StringWriter();
/* c:\a\b -> /cygdrive/c\a\b */
if (s[0] && isalpha(s[0]) && s[1] == ':')
{
WriterWriteF(w, "/cygdrive/%c", s[0]);
s += 2;
}
for (; *s; s++)
{
/* a//b//c -> a/b/c */
/* a\\b\\c -> a\b\c */
if (IsFileSep(*s) && IsFileSep(*(s + 1)))
{
continue;
}
/* a\b\c -> a/b/c */
WriterWriteChar(w, *s == '\\' ? '/' : *s);
}
return StringWriterClose(w);
}
char *MapName(char *s)
{
char *ret = MapNameCopy(s);
if (strlcpy(s, ret, MAX_FILENAME) >= MAX_FILENAME)
{
FatalError(ctx, "Expanded path (%s) is longer than MAX_FILENAME ("
TOSTRING(MAX_FILENAME) ") characters",
ret);
}
free(ret);
return s;
}
# else/* !__MINGW32__ && !__CYGWIN__ */
# error Unknown NT-based compilation environment
# endif/* __MINGW32__ || __CYGWIN__ */
#else /* !_WIN32 */
char *MapName(char *s)
{
return s;
}
char *MapNameCopy(const char *s)
{
return xstrdup(s);
}
#endif /* !_WIN32 */
char *MapNameForward(char *s)
/* Like MapName(), but maps all slashes to forward */
{
while ((s = strchr(s, '\\')))
{
*s = '/';
}
return s;
}
#ifdef TEST_SYMLINK_ATOMICITY
void switch_symlink_hook();
#define TEST_SYMLINK_SWITCH_POINT switch_symlink_hook();
#else
#define TEST_SYMLINK_SWITCH_POINT
#endif
/**
* Opens a file safely. It will follow symlinks, but only if the symlink is trusted,
* that is, if the owner of the symlink and the owner of the target are the same.
* All components are checked, even symlinks encountered in earlier parts of the
* path name.
*
* It should always be used when opening a file or directory that is not guaranteed
* to be owned by root.
*
* @param pathname The path to open.
* @param flags Same flags as for system open().
* @param ... Optional mode argument, as per system open().
* @return Same errors as open().
*/
int safe_open(const char *pathname, int flags, ...)
{
if (!pathname)
{
errno = EINVAL;
return -1;
}
if (*pathname == '\0')
{
errno = ENOENT;
return -1;
}
mode_t mode;
if (flags & O_CREAT)
{
va_list ap;
va_start(ap, flags);
mode = va_arg(ap, int);
va_end(ap);
}
else
{
mode = 0;
}
#ifdef __MINGW32__
// Windows gets off easy. No symlinks there.
return open(pathname, flags, mode);
#else // !__MINGW32__
char path[strlen(pathname) + 1];
strcpy(path, pathname);
int currentfd;
const char *first_dir;
char *next_component;
bool trunc = false;
int orig_flags = flags;
if (flags & O_TRUNC)
{
trunc = true;
/* We need to check after we have opened the file whether we opened the
* right one. But if we truncate it, the damage is already done, we have
* destroyed the contents. So save that flag and apply the truncation
* afterwards instead. */
flags &= ~O_TRUNC;
}
next_component = path;
if (*next_component == '/')
{
first_dir = "/";
// Eliminate double slashes.
while (*(++next_component) == '/') { /*noop*/ }
if (!*next_component)
{
next_component = NULL;
}
}
else
{
first_dir = ".";
}
currentfd = openat(AT_FDCWD, first_dir, O_RDONLY);
if (currentfd < 0)
{
return -1;
}
while (next_component)
{
char *component = next_component;
next_component = strchr(component + 1, '/');
// Used to restore the slashes in the final path component.
char *restore_slash = NULL;
if (next_component)
{
restore_slash = next_component;
*next_component = '\0';
// Eliminate double slashes.
while (*(++next_component) == '/') { /*noop*/ }
if (!*next_component)
{
next_component = NULL;
}
else
{
restore_slash = NULL;
}
}
// In cases of a race condition when creating a file, our attempt to open it may fail
// (see O_EXCL and O_CREAT flags below). However, this can happen even under normal
// circumstances, if we are unlucky; it does not mean that someone is up to something bad.
// So retry it a few times before giving up.
int attempts = 3;
while (true)
{
if (restore_slash)
{
*restore_slash = '\0';
}
struct stat stat_before, stat_after;
int stat_before_result = fstatat(currentfd, component, &stat_before, AT_SYMLINK_NOFOLLOW);
if (stat_before_result < 0
&& (errno != ENOENT
|| next_component // Meaning "not a leaf".
|| !(flags & O_CREAT)))
{
close(currentfd);
return -1;
}
TEST_SYMLINK_SWITCH_POINT
if (!next_component)
{
// Last component.
if (stat_before_result < 0)
{
// Doesn't exist. Make *sure* we create it.
flags |= O_EXCL;
}
else
{
// Already exists. Make sure we *don't* create it.
flags &= ~O_CREAT;
}
if (restore_slash)
{
*restore_slash = '/';
}
int filefd = openat(currentfd, component, flags, mode);
if (filefd < 0)
{
if ((stat_before_result < 0 && !(orig_flags & O_EXCL) && errno == EEXIST)
|| (stat_before_result >= 0 && orig_flags & O_CREAT && errno == ENOENT))
{
if (--attempts >= 0)
{
// Might be our fault. Try again.
flags = orig_flags;
continue;
}
else
{
// Too many attempts. Give up.
errno = EACCES;
}
}
close(currentfd);
return -1;
}
close(currentfd);
currentfd = filefd;
}
else
{
int new_currentfd = openat(currentfd, component, O_RDONLY);
close(currentfd);
if (new_currentfd < 0)
{
return -1;
}
currentfd = new_currentfd;
}
if (stat_before_result == 0)
{
if (fstat(currentfd, &stat_after) < 0)
{
close(currentfd);
return -1;
}
if (stat_before.st_uid != stat_after.st_uid || stat_before.st_gid != stat_after.st_gid)
{
close(currentfd);
errno = EACCES;
return -1;
}
}
// If we got here, we've been successful, so don't try again.
break;
}
}
if (trunc)
{
if (ftruncate(currentfd, 0) < 0)
{
close(currentfd);
return -1;
}
}
return currentfd;
#endif // !__MINGW32__
}
/**
* Opens a file safely. It will follow symlinks, but only if the symlink is trusted,
* that is, if the owner of the symlink and the owner of the target are the same.
* All components are checked, even symlinks encountered in earlier parts of the
* path name.
*
* It should always be used when opening a directory that is not guaranteed to be
* owned by root.
*
* @param pathname The path to open.
* @param flags Same mode as for system fopen().
* @return Same errors as fopen().
*/
FILE *safe_fopen(const char *path, const char *mode)
{
if (!path || !mode)
{
errno = EINVAL;
return NULL;
}
int flags = 0;
for (int c = 0; mode[c]; c++)
{
switch (mode[c])
{
case 'r':
flags |= O_RDONLY;
break;
case 'w':
flags |= O_WRONLY | O_TRUNC | O_CREAT;
break;
case 'a':
flags |= O_WRONLY | O_CREAT;
break;
case '+':
flags &= ~(O_RDONLY | O_WRONLY);
flags |= O_RDWR;
break;
case 'b':
flags |= O_BINARY;
break;
case 't':
flags |= O_TEXT;
break;
default:
break;
}
}
int fd = safe_open(path, flags, 0666);
if (fd < 0)
{
return NULL;
}
FILE *ret = fdopen(fd, mode);
if (!ret)
{
close(fd);
return NULL;
}
if (mode[0] == 'a')
{
if (fseek(ret, 0, SEEK_END) < 0)
{
fclose(ret);
return NULL;
}
}
return ret;
}
/**
* Use this instead of chdir(). It changes into the directory safely, using safe_open().
* @param path Path to change into.
* @return Same return values as chdir().
*/
int safe_chdir(const char *path)
{
#ifdef __MINGW32__
return chdir(path);
#else // !__MINGW32__
int fd = safe_open(path, O_RDONLY);
if (fd < 0)
{
return -1;
}
if (fchdir(fd) < 0)
{
close(fd);
return -1;
}
close(fd);
return 0;
#endif // !__MINGW32__
}
/**
* Use this instead of chown(). It changes file owner safely, using safe_open().
* @param path Path to operate on.
* @param owner Owner.
* @param group Group.
* @return Same return values as chown().
*/
int safe_chown(const char *path, uid_t owner, gid_t group)
{
#ifdef __MINGW32__
return chown(path, owner, group);
#else // !__MINGW32__
int fd = safe_open(path, 0);
if (fd < 0)
{
return -1;
}
int ret = fchown(fd, owner, group);
close(fd);
return ret;
#endif // !__MINGW32__
}
/**
* Use this instead of lchown(). It changes file owner safely, using safe_open().
* @param path Path to operate on.
* @param owner Owner.
* @param group Group.
* @return Same return values as lchown().
*/
#ifndef __MINGW32__
int safe_lchown(const char *path, uid_t owner, gid_t group)
{
if (*path == '\0')
{
errno = EINVAL;
return -1;
}
size_t orig_size = strlen(path);
char parent_dir[orig_size + 1];
char *slash_pos = strrchr(path, '/');
const char *leaf;
if (slash_pos)
{
strcpy(parent_dir, path);
// Same value, but relative to parent_dir.
leaf = slash_pos = &parent_dir[slash_pos - path];
leaf++;
// Remove all superflous slashes, but not if it's the root slash.
while (*slash_pos == '/' && slash_pos != parent_dir)
{
*(slash_pos--) = '\0';
}
}
else
{
parent_dir[0] = '.';
parent_dir[1] = '\0';
leaf = path;
}
int parent_fd = safe_open(parent_dir, O_RDONLY);
if (parent_fd < 0)
{
return -1;
}
int ret = fchownat(parent_fd, leaf, owner, group, AT_SYMLINK_NOFOLLOW);
close(parent_fd);
return ret;
}
#endif // !__MINGW32__
/**
* Use this instead of chmod(). It changes file permissions safely, using safe_open().
* @param path Path to operate on.
* @param mode Permissions.
* @return Same return values as chmod().
*/
int safe_chmod(const char *path, mode_t mode)
{
#ifdef __MINGW32__
return chmod(path, mode);
#else // !__MINGW32__
int fd = safe_open(path, 0);
if (fd < 0)
{
return -1;
}
int ret = fchmod(fd, mode);
close(fd);
return ret;
#endif // !__MINGW32__
}
/**
* Use this instead of creat(). It creates a file safely, using safe_open().
* @param path Path to operate on.
* @param mode Permissions.
* @return Same return values as creat().
*/
int safe_creat(const char *pathname, mode_t mode)
{
return safe_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
}
static bool DeleteDirectoryTreeInternal(const char *basepath, const char *path)
{
Dir *dirh = DirOpen(path);
const struct dirent *dirp;
bool failed = false;
if (dirh == NULL)
{
if (errno == ENOENT)
{
/* Directory disappeared on its own */
return true;
}
Log(LOG_LEVEL_INFO, "Unable to open directory '%s' during purge of directory tree '%s' (opendir: %s)",
path, basepath, GetErrorStr());
return false;
}
for (dirp = DirRead(dirh); dirp != NULL; dirp = DirRead(dirh))
{
if (!strcmp(dirp->d_name, ".") || !strcmp(dirp->d_name, ".."))
{
continue;
}
char subpath[PATH_MAX];
snprintf(subpath, sizeof(subpath), "%s" FILE_SEPARATOR_STR "%s", path, dirp->d_name);
struct stat lsb;
if (lstat(subpath, &lsb) == -1)
{
if (errno == ENOENT)
{
/* File disappeared on its own */
continue;
}
Log(LOG_LEVEL_VERBOSE, "Unable to stat file '%s' during purge of directory tree '%s' (lstat: %s)", path, basepath, GetErrorStr());
failed = true;
}
else
{
if (S_ISDIR(lsb.st_mode))
{
if (!DeleteDirectoryTreeInternal(basepath, subpath))
{
failed = true;
}
if (rmdir(subpath) == -1)
{
failed = true;
}
}
else
{
if (unlink(subpath) == -1)
{
if (errno == ENOENT)
{
/* File disappeared on its own */
continue;
}
Log(LOG_LEVEL_VERBOSE, "Unable to remove file '%s' during purge of directory tree '%s'. (unlink: %s)",
subpath, basepath, GetErrorStr());
failed = true;
}
}
}
}
DirClose(dirh);
return !failed;
}
bool DeleteDirectoryTree(const char *path)
{
return DeleteDirectoryTreeInternal(path, path);
}
|