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 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
|
/*
Copyright 2024 Northern.tech AS
This file is part of CFEngine 3 - written and maintained by Northern.tech 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 <verify_files.h>
#include <actuator.h>
#include <promises.h>
#include <vars.h>
#include <dir.h>
#include <scope.h>
#include <eval_context.h>
#include <files_names.h>
#include <files_interfaces.h>
#include <files_lib.h>
#include <files_operators.h>
#include <hash.h>
#include <files_copy.h>
#include <files_edit.h>
#include <files_editxml.h>
#include <files_editline.h>
#include <files_links.h>
#include <files_properties.h>
#include <files_select.h>
#include <item_lib.h>
#include <match_scope.h>
#include <attributes.h>
#include <locks.h>
#include <string_lib.h>
#include <verify_files_utils.h>
#include <verify_files_hashes.h>
#include <misc_lib.h>
#include <fncall.h>
#include <promiser_regex_resolver.h>
#include <ornaments.h>
#include <audit.h>
#include <expand.h>
#include <mustache.h>
#include <known_dirs.h>
#include <evalfunction.h>
#include <changes_chroot.h> /* PrepareChangesChroot(), RecordFileChangedInChroot() */
static PromiseResult FindFilePromiserObjects(EvalContext *ctx, const Promise *pp);
static PromiseResult VerifyFilePromise(EvalContext *ctx, char *path, const Promise *pp);
static PromiseResult WriteContentFromString(EvalContext *ctx, const char *path, const Attributes *attr,
const Promise *pp);
/*****************************************************************************/
static bool FileSanityChecks(char *path, const Attributes *a, const Promise *pp)
{
assert(a != NULL);
if ((a->havelink) && (a->havecopy))
{
Log(LOG_LEVEL_ERR,
"Promise constraint conflicts - '%s' file cannot both be a copy of and a link to the source", path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
/* We can't do this verification during parsing as we did not yet read the
* body, so we can't distinguish between link and copy source. In
* post-verification all bodies are already expanded, so we don't have the
* information either */
if ((a->havelink) && (!a->link.source))
{
Log(LOG_LEVEL_ERR, "Promise to establish a link at '%s' has no source", path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->haveeditline) && (a->haveeditxml))
{
Log(LOG_LEVEL_ERR, "Promise constraint conflicts - '%s' editing file as both line and xml makes no sense",
path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->havedepthsearch) && (a->haveedit))
{
Log(LOG_LEVEL_ERR, "Recursive depth_searches are not compatible with general file editing");
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->havedelete) && ((a->create) || (a->havecopy) || (a->haveedit) || (a->haverename)))
{
Log(LOG_LEVEL_ERR, "Promise constraint conflicts - '%s' cannot be deleted and exist at the same time", path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->haverename) && ((a->create) || (a->havecopy) || (a->haveedit)))
{
Log(LOG_LEVEL_ERR,
"Promise constraint conflicts - '%s' cannot be renamed/moved and exist there at the same time", path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->havedelete) && (a->havedepthsearch) && (!a->haveselect))
{
Log(LOG_LEVEL_ERR,
"Dangerous or ambiguous promise - '%s' specifies recursive deletion but has no file selection criteria",
path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->haveselect) && (!a->select.result))
{
Log(LOG_LEVEL_ERR, "File select constraint body promised no result (check body definition)");
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->havedelete) && (a->haverename))
{
Log(LOG_LEVEL_ERR, "File '%s' cannot promise both deletion and renaming", path);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->havecopy) && (a->havedepthsearch) && (a->havedelete))
{
Log(LOG_LEVEL_WARNING,
"depth_search of '%s' applies to both delete and copy, but these refer to different searches (source/destination)",
pp->promiser);
PromiseRef(LOG_LEVEL_INFO, pp);
}
if ((a->transaction.background) && (a->transaction.audit))
{
Log(LOG_LEVEL_ERR, "Auditing cannot be performed on backgrounded promises (this might change).");
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if (((a->havecopy) || (a->havelink)) && (a->transformer))
{
Log(LOG_LEVEL_ERR, "File object(s) '%s' cannot both be a copy of source and transformed simultaneously",
pp->promiser);
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->haveselect) && (a->select.result == NULL))
{
Log(LOG_LEVEL_ERR, "Missing file_result attribute in file_select body");
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->havedepthsearch) && (a->change.report_diffs))
{
Log(LOG_LEVEL_ERR, "Difference reporting is not allowed during a depth_search");
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
if ((a->haveedit) && (a->file_type) && (!strncmp(a->file_type, "fifo", 5)))
{
Log(LOG_LEVEL_ERR, "Editing is not allowed on fifos");
PromiseRef(LOG_LEVEL_ERR, pp);
return false;
}
return true;
}
static bool AttrHasNoAction(const Attributes *attr)
{
assert(attr != NULL);
/* Hopefully this includes all "actions" for a files promise. See struct
* Attributes for reference. */
if (!(attr->transformer || attr->haverename || attr->havedelete ||
attr->havecopy || attr->create || attr->touch || attr->havelink ||
attr->haveperms || attr->havechange || attr->acl.acl_entries ||
attr->haveedit || attr->haveeditline || attr->haveeditxml ||
(attr->content != NULL)))
{
return true;
}
else
{
return false;
}
}
/*
* Expands source in-place.
*/
static char *ExpandThisPromiserScalar(EvalContext *ctx, const char *ns, const char *scope, const char *source)
{
if (!source)
{
return NULL;
}
Buffer *expanded = BufferNew();
ExpandScalar(ctx, ns, scope, source, expanded);
char *result = strdup(BufferData(expanded));
BufferDestroy(expanded);
return result;
}
/*
* Overwrite non-specific attributes with expanded this.promiser.
*/
Attributes GetExpandedAttributes(EvalContext *ctx, const Promise *pp, const Attributes *attr)
{
const char *namespace = PromiseGetBundle(pp)->ns;
const char *scope = PromiseGetBundle(pp)->name;
Attributes a = *attr; // shallow copy
a.classes.change = ExpandList(ctx, namespace, scope, attr->classes.change, true);
a.classes.failure = ExpandList(ctx, namespace, scope, attr->classes.failure, true);
a.classes.denied = ExpandList(ctx, namespace, scope, attr->classes.denied, true);
a.classes.timeout = ExpandList(ctx, namespace, scope, attr->classes.timeout, true);
a.classes.kept = ExpandList(ctx, namespace, scope, attr->classes.kept, true);
a.classes.del_change = ExpandList(ctx, namespace, scope, attr->classes.del_change, true);
a.classes.del_kept = ExpandList(ctx, namespace, scope, attr->classes.del_kept, true);
a.classes.del_notkept = ExpandList(ctx, namespace, scope, attr->classes.del_notkept, true);
a.transaction.log_string = ExpandThisPromiserScalar(ctx, namespace, scope, attr->transaction.log_string);
a.transaction.log_kept = ExpandThisPromiserScalar(ctx, namespace, scope, attr->transaction.log_kept);
a.transaction.log_repaired = ExpandThisPromiserScalar(ctx, namespace, scope, attr->transaction.log_repaired);
a.transaction.log_failed = ExpandThisPromiserScalar(ctx, namespace, scope, attr->transaction.log_failed);
a.transaction.measure_id = ExpandThisPromiserScalar(ctx, namespace, scope, attr->transaction.measure_id);
// a.transformer = ExpandThisPromiserScalar(ctx, namespace, scope, attr->transformer);
a.edit_template = ExpandThisPromiserScalar(ctx, namespace, scope, attr->edit_template);
a.edit_template_string = ExpandThisPromiserScalar(ctx, namespace, scope, attr->edit_template_string);
return a;
}
void ClearExpandedAttributes(Attributes *a)
{
DESTROY_AND_NULL(RlistDestroy, a->classes.change);
DESTROY_AND_NULL(RlistDestroy, a->classes.failure);
DESTROY_AND_NULL(RlistDestroy, a->classes.denied);
DESTROY_AND_NULL(RlistDestroy, a->classes.timeout);
DESTROY_AND_NULL(RlistDestroy, a->classes.kept);
DESTROY_AND_NULL(RlistDestroy, a->classes.del_change);
DESTROY_AND_NULL(RlistDestroy, a->classes.del_kept);
DESTROY_AND_NULL(RlistDestroy, a->classes.del_notkept);
FREE_AND_NULL(a->transaction.log_string);
FREE_AND_NULL(a->transaction.log_kept);
FREE_AND_NULL(a->transaction.log_repaired);
FREE_AND_NULL(a->transaction.log_failed);
FREE_AND_NULL(a->transaction.measure_id);
FREE_AND_NULL(a->edit_template);
FREE_AND_NULL(a->edit_template_string);
ClearFilesAttributes(a);
}
static inline bool CreateFalseWasSpecified(const Promise *pp)
{
assert(pp != NULL);
const size_t n = SeqLength(pp->conlist);
for (size_t i = 0; i < n; i++)
{
Constraint *cp = SeqAt(pp->conlist, i);
if (StringEqual(cp->lval, "create") &&
(StringEqual(cp->rval.item, "false") ||
StringEqual(cp->rval.item, "no")))
{
return true;
}
}
return false;
}
static PromiseResult VerifyFilePromise(EvalContext *ctx, char *path, const Promise *pp)
{
struct stat osb, oslb, dsb;
CfLock thislock;
int exists;
bool link = false;
Attributes attr = GetFilesAttributes(ctx, pp);
if (!FileSanityChecks(path, &attr, pp))
{
ClearFilesAttributes(&attr);
return PROMISE_RESULT_NOOP;
}
thislock = AcquireLock(ctx, path, VUQNAME, CFSTARTTIME, attr.transaction.ifelapsed, attr.transaction.expireafter, pp, false);
if (thislock.lock == NULL)
{
ClearFilesAttributes(&attr);
return PROMISE_RESULT_SKIPPED;
}
EvalContextVariablePutSpecial(ctx, SPECIAL_SCOPE_THIS, "promiser", path, CF_DATA_TYPE_STRING, "source=promise");
Attributes a = GetExpandedAttributes(ctx, pp, &attr);
PromiseResult result = PROMISE_RESULT_NOOP;
char *chrooted_path = NULL;
/* if template_data was specified, it must have been resolved to a data
* container by now */
/* check this early to prevent creation of the file below in case of failure */
const Constraint *template_data_constraint = PromiseGetConstraint(pp, "template_data");
if (template_data_constraint != NULL &&
template_data_constraint->rval.type != RVAL_TYPE_CONTAINER)
{
cfPS(ctx, LOG_LEVEL_ERR, PROMISE_RESULT_FAIL, pp, &a,
"No template data for the promise '%s'", pp->promiser);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
goto exit;
}
if (ChrootChanges())
{
PrepareChangesChroot(path);
}
const char *changes_path = path;
if (ChrootChanges())
{
chrooted_path = xstrdup(ToChangesChroot(path));
changes_path = chrooted_path;
}
if (lstat(changes_path, &oslb) == -1) /* Careful if the object is a link */
{
if ((a.create) || (a.touch))
{
if (!CfCreateFile(ctx, path, pp, &a, &result))
{
goto exit;
}
else
{
exists = (lstat(changes_path, &oslb) != -1);
}
}
exists = false;
}
else
{
if ((a.create) || (a.touch))
{
RecordNoChange(ctx, pp, &a, "File '%s' exists as promised", path);
}
exists = true;
link = true;
}
if ((a.havedelete) && (!exists))
{
RecordNoChange(ctx, pp, &a, "File '%s' does not exist as promised", path);
goto exit;
}
if (!a.havedepthsearch) /* if the search is trivial, make sure that we are in the parent dir of the leaf */
{
Log(LOG_LEVEL_DEBUG, "Direct file reference '%s', no search implied", path);
char basedir[CF_BUFSIZE];
strlcpy(basedir, path, sizeof(basedir));
if (StringEqual(ReadLastNode(basedir), "."))
{
// Handle /. notation for deletion of directories
ChopLastNode(basedir);
ChopLastNode(path);
}
ChopLastNode(basedir);
if (safe_chdir(ToChangesPath(basedir)) != 0)
{
/* TODO: PROMISE_RESULT_FAIL?!?!?!?! */
char msg[sizeof(basedir) + 36 + 100]; // 36 for fmt string 100 for error string
snprintf(msg, sizeof(msg), "Failed to chdir into '%s'. (chdir: '%s')",
basedir, GetErrorStr());
if (errno == ENOLINK)
{
Log(LOG_LEVEL_ERR, "%s. There may be a symlink in the path that has a different "
"owner from the owner of its target (security risk).", msg);
}
else
{
Log(LOG_LEVEL_ERR, "%s", msg);
}
}
}
/* If file or directory exists but it is not selected by body file_select
* (if we have one) then just exit. But continue if it's a directory and
* depth_search is on, so that we can file_select into it. */
if (exists
&& (a.haveselect && !SelectLeaf(ctx, path, &oslb, &(a.select)))
&& !(a.havedepthsearch && S_ISDIR(oslb.st_mode)))
{
goto skip;
}
if (stat(changes_path, &osb) == -1)
{
if ((a.create) || (a.touch))
{
if (!CfCreateFile(ctx, path, pp, &a, &result))
{
goto exit;
}
else
{
exists = true;
}
}
else
{
exists = false;
}
}
else
{
if (!S_ISDIR(osb.st_mode) && a.havedepthsearch)
{
Log(LOG_LEVEL_WARNING,
"depth_search (recursion) is promised for a base object '%s' that is not a directory",
path);
}
exists = true;
}
if (a.link.link_children)
{
const char *changes_link_source = a.link.source;
if (ChrootChanges())
{
/* Make sure the link source is in the changes chroot. */
PrepareChangesChroot(a.link.source);
changes_link_source = ToChangesChroot(a.link.source);
}
if (stat(changes_link_source, &dsb) != -1)
{
if (!S_ISDIR(dsb.st_mode))
{
/* TODO: PROMISE_RESULT_FAIL */
Log(LOG_LEVEL_ERR, "Cannot promise to link the children of '%s' as it is not a directory!",
a.link.source);
goto exit;
}
}
}
/* Phase 1 - */
if ((exists
&& (a.haverename || a.haveperms || a.havechange || a.transformer ||
a.acl.acl_entries != NULL)
) ||
((exists || link) && a.havedelete))
{
lstat(changes_path, &oslb); /* if doesn't exist have to stat again anyway */
DepthSearch(ctx, path, &oslb, 0, &a, pp, oslb.st_dev, &result);
/* normally searches do not include the base directory */
if (a.recursion.include_basedir)
{
int save_search = a.havedepthsearch;
/* Handle this node specially */
a.havedepthsearch = false;
DepthSearch(ctx, path, &oslb, 0, &a, pp, oslb.st_dev, &result);
a.havedepthsearch = save_search;
}
else
{
/* unless child nodes were repaired, set a promise kept class */
if (result == PROMISE_RESULT_NOOP)
{
Log(LOG_LEVEL_VERBOSE, "Basedir '%s' not promising anything", path);
}
}
}
/* Phase 2a - copying is potentially threadable if no followup actions */
if (a.havecopy)
{
result = PromiseResultUpdate(result, ScheduleCopyOperation(ctx, path, &a, pp));
}
/* Phase 2b link after copy in case need file first */
if ((a.havelink) && (a.link.link_children))
{
result = PromiseResultUpdate(result, ScheduleLinkChildrenOperation(ctx, path, a.link.source, 1, &a, pp));
}
else if (a.havelink)
{
result = PromiseResultUpdate(result, ScheduleLinkOperation(ctx, path, a.link.source, &a, pp));
}
/* Phase 3a - direct content */
if (a.content)
{
if (a.haveedit)
{
// Disallow edits on top of content creation
RecordFailure(ctx, pp, &a, "A file promise with content attribute cannot have edit operations");
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
goto exit;
}
/* Files promises that promise full file content shall create files by
* default, unless `create => "false"` is specified. */
if (!exists && !CreateFalseWasSpecified(pp))
{
exists = CfCreateFile(ctx, path, pp, &a, &result);
}
if (!exists)
{
Log(LOG_LEVEL_VERBOSE,
"Cannot render file '%s' with content '%s': file does not exist",
path, a.content);
goto exit;
}
Log(LOG_LEVEL_VERBOSE, "Replacing '%s' with content '%s'",
path, a.content);
PromiseResult render_result = WriteContentFromString(ctx, path, &a, pp);
result = PromiseResultUpdate(result, render_result);
goto exit;
}
/* Phase 3b - content editing */
if (a.haveedit)
{
/* Files promises that promise full file content shall create files by
* default, unless `create => "false"` is specified. */
if (exists ||
((StringEqual(a.template_method, "mustache") ||
StringEqual(a.template_method, "inline_mustache") ||
StringEqual(a.template_method, "cfengine")) &&
!CreateFalseWasSpecified(pp)))
{
result = PromiseResultUpdate(result, ScheduleEditOperation(ctx,
path,
exists,
&a,
pp));
}
else
{
Log(LOG_LEVEL_VERBOSE,
"Cannot render file '%s': file does not exist", path);
goto exit;
}
}
// Once more in case a file has been created as a result of editing or copying
exists = (lstat(changes_path, &osb) != -1);
if (exists && (S_ISREG(osb.st_mode) || S_ISLNK(osb.st_mode))
&& (!a.haveselect || SelectLeaf(ctx, path, &osb, &(a.select))))
{
VerifyFileLeaf(ctx, path, &osb, &a, pp, &result);
}
if (!exists && a.havechange)
{
RecordFailure(ctx, pp, &a, "Promised to monitor '%s' for changes, but file does not exist", path);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
exit:
free(chrooted_path);
if (AttrHasNoAction(&a))
{
Log(LOG_LEVEL_VERBOSE, "No action was requested for file '%s'. "
"Maybe all attributes are skipped due to unresolved arguments in policy functions? "
"Maybe a typo in the policy?", path);
}
switch(result)
{
case PROMISE_RESULT_NOOP:
cfPS(ctx, LOG_LEVEL_VERBOSE, result, pp, &a,
"No changes done for the files promise '%s'", pp->promiser);
if (EVAL_MODE == EVAL_MODE_SIMULATE_MANIFEST_FULL)
{
RecordFileEvaluatedInChroot(path);
}
break;
case PROMISE_RESULT_CHANGE:
cfPS(ctx, LOG_LEVEL_VERBOSE, result, pp, &a,
"files promise '%s' repaired", pp->promiser);
if (ChrootChanges() && !a.haverename)
{
/* Record that file was changed in the changes chroot so that we can
* later show the diff or manifest. Renames are reported
* separately. */
RecordFileChangedInChroot(path);
}
break;
case PROMISE_RESULT_WARN:
cfPS(ctx, LOG_LEVEL_WARNING, result, pp, &a,
"Warnings encountered when actuating files promise '%s'", pp->promiser);
break;
default:
cfPS(ctx, LOG_LEVEL_ERR, result, pp, &a,
"Errors encountered when actuating files promise '%s'", pp->promiser);
break;
}
skip:
YieldCurrentLock(thislock);
ClearExpandedAttributes(&a);
EvalContextVariableRemoveSpecial(ctx, SPECIAL_SCOPE_THIS, "promiser");
return result;
}
/*****************************************************************************/
static PromiseResult WriteContentFromString(EvalContext *ctx, const char *path, const Attributes *attr,
const Promise *pp)
{
assert(path != NULL);
assert(attr != NULL);
assert(attr->content != NULL);
const char *changes_path = path;
if (ChrootChanges())
{
changes_path = ToChangesChroot(path);
}
PromiseResult result = PROMISE_RESULT_NOOP;
unsigned char existing_content_digest[EVP_MAX_MD_SIZE + 1] = { 0 };
if (access(changes_path, R_OK) == 0)
{
HashFile(changes_path, existing_content_digest, CF_DEFAULT_DIGEST,
FileNewLineMode(changes_path) == NewLineMode_Native);
}
size_t bytes_to_write = strlen(attr->content);
unsigned char promised_content_digest[EVP_MAX_MD_SIZE + 1] = { 0 };
HashString(attr->content, strlen(attr->content),
promised_content_digest, CF_DEFAULT_DIGEST);
if (!HashesMatch(existing_content_digest, promised_content_digest, CF_DEFAULT_DIGEST))
{
if (!MakingChanges(ctx, pp, attr, &result,
"update file '%s' with content '%s'",
path, attr->content))
{
return result;
}
FILE *f = safe_fopen(changes_path, "w");
if (f == NULL)
{
RecordFailure(ctx, pp, attr, "Cannot open file '%s' for writing", path);
return PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
Writer *w = FileWriter(f);
if (WriterWriteLen(w, attr->content, bytes_to_write) == bytes_to_write )
{
RecordChange(ctx, pp, attr,
"Updated file '%s' with content '%s'",
path, attr->content);
result = PromiseResultUpdate(result, PROMISE_RESULT_CHANGE);
}
else
{
RecordFailure(ctx, pp, attr,
"Failed to update file '%s' with content '%s'",
path, attr->content);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
WriterClose(w);
}
return result;
}
/*****************************************************************************/
static PromiseResult RenderTemplateCFEngine(EvalContext *ctx,
const Promise *pp,
const Rlist *bundle_args,
const Attributes *attr,
EditContext *edcontext,
bool file_exists)
{
assert(edcontext != NULL);
assert(attr != NULL);
Attributes a = *attr; // TODO: Try to remove this copy
PromiseResult result = PROMISE_RESULT_NOOP;
Policy *tmp_policy = PolicyNew();
Bundle *bp = NULL;
if ((bp = MakeTemporaryBundleFromTemplate(ctx, tmp_policy, &a, pp, &result)))
{
if (!file_exists && !CfCreateFile(ctx, edcontext->changes_filename,
pp, attr, &result))
{
RecordFailure(ctx, pp, attr,
"Failed to create file '%s' for rendering cfengine template '%s'",
edcontext->filename, attr->edit_template);
return PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
a.haveeditline = true;
EvalContextStackPushBundleFrame(ctx, bp, bundle_args, a.edits.inherit);
BundleResolve(ctx, bp);
ScheduleEditLineOperations(ctx, bp, &a, pp, edcontext);
EvalContextStackPopFrame(ctx);
if (edcontext->num_edits == 0)
{
edcontext->num_edits++;
}
}
PolicyDestroy(tmp_policy);
return result;
}
static bool SaveBufferCallback(const char *dest_filename, void *param, NewLineMode new_line_mode)
{
FILE *fp = safe_fopen(
dest_filename, (new_line_mode == NewLineMode_Native) ? "wt" : "w");
if (fp == NULL)
{
Log(LOG_LEVEL_ERR, "Unable to open destination file '%s' for writing. (fopen: %s)",
dest_filename, GetErrorStr());
return false;
}
Buffer *output_buffer = param;
size_t bytes_written = fwrite(BufferData(output_buffer), sizeof(char), BufferSize(output_buffer), fp);
if (bytes_written != BufferSize(output_buffer))
{
Log(LOG_LEVEL_ERR,
"Error writing to output file '%s' when writing. %zu bytes written but expected %zu. (fclose: %s)",
dest_filename, bytes_written, BufferSize(output_buffer), GetErrorStr());
fclose(fp);
return false;
}
if (fclose(fp) == -1)
{
Log(LOG_LEVEL_ERR, "Unable to close file '%s' after writing. (fclose: %s)",
dest_filename, GetErrorStr());
return false;
}
return true;
}
static PromiseResult RenderTemplateMustache(EvalContext *ctx,
const Promise *pp,
const Attributes *attr,
EditContext *edcontext,
const char *template,
bool file_exists)
{
assert(attr != NULL);
assert(edcontext != NULL);
PromiseResult result = PROMISE_RESULT_NOOP;
const JsonElement *template_data = attr->template_data;
JsonElement *destroy_this = NULL;
if (template_data == NULL)
{
destroy_this = DefaultTemplateData(ctx, NULL);
template_data = destroy_this;
}
unsigned char existing_output_digest[EVP_MAX_MD_SIZE + 1] = { 0 };
if (access(edcontext->changes_filename, R_OK) == 0)
{
HashFile(edcontext->changes_filename, existing_output_digest, CF_DEFAULT_DIGEST,
edcontext->new_line_mode == NewLineMode_Native);
}
Buffer *output_buffer = BufferNew();
char *message;
if (strcmp("inline_mustache", attr->template_method) == 0)
{
message = xstrdup("inline");
}
else
{
message = xstrdup(attr->edit_template);
}
if (MustacheRender(output_buffer, template, template_data))
{
unsigned char rendered_output_digest[EVP_MAX_MD_SIZE + 1] = { 0 };
HashString(BufferData(output_buffer), BufferSize(output_buffer), rendered_output_digest, CF_DEFAULT_DIGEST);
if (!HashesMatch(existing_output_digest, rendered_output_digest, CF_DEFAULT_DIGEST))
{
if (MakingChanges(ctx, pp, attr, &result,
"update rendering of '%s' from mustache template '%s'",
edcontext->filename, message))
{
if (!file_exists && !CfCreateFile(ctx,
edcontext->changes_filename,
pp, attr, &result))
{
RecordFailure(ctx, pp, attr,
"Failed to create file '%s' for rendering mustache template '%s'",
edcontext->filename, message);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
else if (SaveAsFile(SaveBufferCallback, output_buffer,
edcontext->changes_filename, attr,
edcontext->new_line_mode))
{
RecordChange(ctx, pp, attr,
"Updated rendering of '%s' from mustache template '%s'",
edcontext->filename, message);
result = PromiseResultUpdate(result, PROMISE_RESULT_CHANGE);
}
else
{
RecordFailure(ctx, pp, attr,
"Failed to update rendering of '%s' from mustache template '%s'",
edcontext->filename, message);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
}
}
}
else
{
/* Use `edit_template` attribute when template method is "mustache".
* Use `edit_template_string` attribute when template method is
* "inline_mustache".
*/
char *tmpl = StringEqual(attr->template_method, "mustache")
? attr->edit_template : attr->edit_template_string;
RecordFailure(ctx, pp, attr, "Error rendering mustache template '%s'",
tmpl);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
BufferDestroy(output_buffer);
JsonDestroy(destroy_this);
free(message);
return result;
}
static PromiseResult RenderTemplateMustacheFromFile(EvalContext *ctx,
const Promise *pp,
const Attributes *a,
EditContext *edcontext,
bool file_exists)
{
assert(a != NULL);
PromiseResult result = PROMISE_RESULT_NOOP;
if (!FileCanOpen(a->edit_template, "r"))
{
RecordFailure(ctx, pp, a, "Template file '%s' could not be opened for reading", a->edit_template);
return PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
int template_fd = safe_open(a->edit_template, O_RDONLY | O_TEXT);
Writer *template_writer = NULL;
if (template_fd >= 0)
{
template_writer = FileReadFromFd(template_fd, SIZE_MAX, NULL);
close(template_fd);
}
if (template_writer == NULL)
{
RecordFailure(ctx, pp, a, "Could not read template file '%s'", a->edit_template);
return PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
result = RenderTemplateMustache(ctx, pp, a, edcontext,
StringWriterData(template_writer),
file_exists);
WriterClose(template_writer);
return result;
}
static PromiseResult RenderTemplateMustacheFromString(EvalContext *ctx,
const Promise *pp,
const Attributes *a,
EditContext *edcontext,
bool file_exists)
{
assert(a != NULL);
if ( a->edit_template_string == NULL )
{
PromiseResult result = PROMISE_RESULT_NOOP;
RecordFailure(ctx, pp, a, "'edit_template_string' not set for promiser: '%s'", pp->promiser);
return PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
}
return RenderTemplateMustache(ctx, pp, a, edcontext,
a->edit_template_string,
file_exists);
}
PromiseResult ScheduleEditOperation(EvalContext *ctx, char *filename,
bool file_exists, const Attributes *a,
const Promise *pp)
{
assert(a != NULL);
void *vp;
FnCall *fp;
Rlist *args = NULL;
char edit_bundle_name[CF_BUFSIZE], lockname[CF_BUFSIZE];
CfLock thislock;
snprintf(lockname, CF_BUFSIZE - 1, "fileedit-%s", filename);
thislock = AcquireLock(ctx, lockname, VUQNAME, CFSTARTTIME, a->transaction.ifelapsed, a->transaction.expireafter, pp, false);
if (thislock.lock == NULL)
{
return PROMISE_RESULT_SKIPPED;
}
EditContext *edcontext = NewEditContext(filename, a);
StartLoggingIntoBuffer(LOG_LEVEL_INFO, LOG_LEVEL_INFO);
PromiseResult result = PROMISE_RESULT_NOOP;
if (edcontext == NULL)
{
RecordFailure(ctx, pp, a, "File '%s' was marked for editing but could not be opened", filename);
result = PromiseResultUpdate(result, PROMISE_RESULT_FAIL);
goto exit;
}
const Policy *policy = PolicyFromPromise(pp);
if (a->haveeditline)
{
if ((vp = PromiseGetConstraintAsRval(pp, "edit_line", RVAL_TYPE_FNCALL)))
{
fp = (FnCall *) vp;
strcpy(edit_bundle_name, fp->name);
args = fp->args;
}
else if ((vp = PromiseGetConstraintAsRval(pp, "edit_line", RVAL_TYPE_SCALAR)))
{
strcpy(edit_bundle_name, (char *) vp);
args = NULL;
}
else
{
goto exit;
}
Log(LOG_LEVEL_VERBOSE, "Handling file edits in edit_line bundle '%s'", edit_bundle_name);
const Bundle *bp = EvalContextResolveBundleExpression(ctx, policy, edit_bundle_name, "edit_line");
if (bp)
{
EvalContextStackPushBundleFrame(ctx, bp, args, a->edits.inherit);
BundleResolve(ctx, bp);
ScheduleEditLineOperations(ctx, bp, a, pp, edcontext);
EvalContextStackPopFrame(ctx);
}
else
{
Log(LOG_LEVEL_ERR, "Did not find bundle '%s' for edit operation", edit_bundle_name);
}
}
if (a->haveeditxml)
{
if ((vp = PromiseGetConstraintAsRval(pp, "edit_xml", RVAL_TYPE_FNCALL)))
{
fp = (FnCall *) vp;
strcpy(edit_bundle_name, fp->name);
args = fp->args;
}
else if ((vp = PromiseGetConstraintAsRval(pp, "edit_xml", RVAL_TYPE_SCALAR)))
{
strcpy(edit_bundle_name, (char *) vp);
args = NULL;
}
else
{
goto exit;
}
Log(LOG_LEVEL_VERBOSE, "Handling file edits in edit_xml bundle '%s'", edit_bundle_name);
const Bundle *bp = EvalContextResolveBundleExpression(ctx, policy, edit_bundle_name, "edit_xml");
if (bp)
{
EvalContextStackPushBundleFrame(ctx, bp, args, a->edits.inherit);
BundleResolve(ctx, bp);
ScheduleEditXmlOperations(ctx, bp, a, pp, edcontext);
EvalContextStackPopFrame(ctx);
}
}
if (strcmp("cfengine", a->template_method) == 0)
{
if (a->edit_template)
{
Log(LOG_LEVEL_VERBOSE, "Rendering '%s' using template '%s' with method '%s'",
filename, a->edit_template, a->template_method);
PromiseResult render_result = RenderTemplateCFEngine(ctx, pp,
args, a,
edcontext,
file_exists);
result = PromiseResultUpdate(result, render_result);
}
}
else if (strcmp("mustache", a->template_method) == 0)
{
if (a->edit_template)
{
Log(LOG_LEVEL_VERBOSE, "Rendering '%s' using template '%s' with method '%s'",
filename, a->edit_template, a->template_method);
PromiseResult render_result =
RenderTemplateMustacheFromFile(ctx, pp, a, edcontext,
file_exists);
result = PromiseResultUpdate(result, render_result);
}
}
else if (strcmp("inline_mustache", a->template_method) == 0)
{
if (a->edit_template_string)
{
Log(LOG_LEVEL_VERBOSE, "Rendering '%s' with method '%s'",
filename, a->template_method);
PromiseResult render_result =
RenderTemplateMustacheFromString(ctx, pp, a, edcontext,
file_exists);
result = PromiseResultUpdate(result, render_result);
}
}
exit:
FinishEditContext(ctx, edcontext, a, pp, &result);
YieldCurrentLock(thislock);
if (result == PROMISE_RESULT_CHANGE)
{
CommitLogBuffer();
}
else
{
DiscardLogBuffer();
}
return result;
}
/*****************************************************************************/
PromiseResult FindAndVerifyFilesPromises(EvalContext *ctx, const Promise *pp)
{
PromiseBanner(ctx, pp);
return FindFilePromiserObjects(ctx, pp);
}
/*****************************************************************************/
static DefineClasses GetExpandedClassDefinitionConstraints(const EvalContext *ctx, const Promise *pp)
{
const char *namespace = PromiseGetBundle(pp)->ns;
const char *scope = PromiseGetBundle(pp)->name;
/* Get the unexpanded classes. */
DefineClasses c = GetClassDefinitionConstraints(ctx, pp);
/* Expand the classes just like GetExpandedAttributes() does.
* NOTE: The original Rlists are owned by the promise, the new ones need to be
* RlistDestroy()-ed.*/
c.change = ExpandList(ctx, namespace, scope, c.change, true);
c.failure = ExpandList(ctx, namespace, scope, c.failure, true);
c.denied = ExpandList(ctx, namespace, scope, c.denied, true);
c.timeout = ExpandList(ctx, namespace, scope, c.timeout, true);
c.kept = ExpandList(ctx, namespace, scope, c.kept, true);
c.del_change = ExpandList(ctx, namespace, scope, c.del_change, true);
c.del_kept = ExpandList(ctx, namespace, scope, c.del_kept, true);
c.del_notkept = ExpandList(ctx, namespace, scope, c.del_notkept, true);
return c;
}
static void ClearExpandedClassDefinitionConstraints(DefineClasses *c)
{
assert(c != NULL);
RlistDestroy(c->change);
RlistDestroy(c->failure);
RlistDestroy(c->denied);
RlistDestroy(c->timeout);
RlistDestroy(c->kept);
RlistDestroy(c->del_change);
RlistDestroy(c->del_kept);
RlistDestroy(c->del_notkept);
}
static PromiseResult FindFilePromiserObjects(EvalContext *ctx, const Promise *pp)
{
assert(pp != NULL);
char *val = PromiseGetConstraintAsRval(pp, "pathtype", RVAL_TYPE_SCALAR);
int literal = (PromiseGetConstraintAsBoolean(ctx, "copy_from", pp)) || ((val != NULL) && (strcmp(val, "literal") == 0));
/* Check if we are searching over a regular expression */
PromiseResult result = PROMISE_RESULT_SKIPPED;
if (literal)
{
// Prime the promiser temporarily, may override later
result = PromiseResultUpdate(result, VerifyFilePromise(ctx, pp->promiser, pp));
}
else // Default is to expand regex paths
{
result = PromiseResultUpdate(result, LocateFilePromiserGroup(ctx, pp->promiser, pp, VerifyFilePromise));
/* Now set the outcome classes for the pp->promiser itself (not the expanded paths). */
if (result != PROMISE_RESULT_SKIPPED)
{
EvalContextVariablePutSpecial(ctx, SPECIAL_SCOPE_THIS, "promiser", pp->promiser, CF_DATA_TYPE_STRING, "source=promise");
Attributes a = ZeroAttributes;
a.classes = GetExpandedClassDefinitionConstraints(ctx, pp);
SetPromiseOutcomeClasses(ctx, result, &(a.classes));
ClearExpandedClassDefinitionConstraints(&(a.classes));
EvalContextVariableRemoveSpecial(ctx, SPECIAL_SCOPE_THIS, "promiser");
}
}
return result;
}
|