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 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
|
/*
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 <syntax.h>
#include <json.h>
#include <files_names.h>
#include <mod_files.h>
#include <mod_custom.h>
#include <item_lib.h>
#include <conversion.h>
#include <expand.h>
#include <matching.h>
#include <scope.h>
#include <fncall.h>
#include <string_lib.h> /* IsStrIn */
#include <regex.h> /* StringMatchFull */
#include <misc_lib.h>
#include <rlist.h>
#include <vars.h>
#include <eval_context.h>
static SyntaxTypeMatch CheckParseString(const char *lv, const char *s, const char *range);
static SyntaxTypeMatch CheckParseInt(const char *lv, const char *s, const char *range);
static SyntaxTypeMatch CheckParseReal(const char *lv, const char *s, const char *range);
static SyntaxTypeMatch CheckParseRealRange(const char *lval, const char *s, const char *range);
static SyntaxTypeMatch CheckParseIntRange(const char *lval, const char *s, const char *range);
static SyntaxTypeMatch CheckParseOpts(const char *s, const char *range);
static SyntaxTypeMatch CheckFnCallType(const char *s, DataType dtype);
/*********************************************************/
static const PromiseTypeSyntax *PromiseTypeSyntaxGetStrict(const char *bundle_type, const char *promise_type)
{
assert(bundle_type != NULL);
assert(promise_type != NULL);
for (int module_index = 0; module_index < CF3_MODULES; module_index++)
{
for (int promise_type_index = 0; CF_ALL_PROMISE_TYPES[module_index][promise_type_index].promise_type; promise_type_index++)
{
const PromiseTypeSyntax *promise_type_syntax = &CF_ALL_PROMISE_TYPES[module_index][promise_type_index];
if (strcmp(bundle_type, promise_type_syntax->bundle_type) == 0
&& strcmp(promise_type, promise_type_syntax->promise_type) == 0)
{
return promise_type_syntax;
}
}
}
return NULL;
}
bool IsBuiltInPromiseType(const char *const promise_type)
{
// Any built in promise type, regardless of bundle (agent) type
assert(promise_type != NULL);
for (int module_index = 0; module_index < CF3_MODULES; module_index++)
{
const PromiseTypeSyntax *const module = CF_ALL_PROMISE_TYPES[module_index];
for (int promise_type_index = 0; module[promise_type_index].promise_type; promise_type_index++)
{
const PromiseTypeSyntax *promise_type_syntax = &(module[promise_type_index]);
if (StringEqual(promise_type, promise_type_syntax->promise_type))
{
return true;
}
}
}
return false;
}
const PromiseTypeSyntax *PromiseTypeSyntaxGet(const char *bundle_type, const char *promise_type)
{
const PromiseTypeSyntax *pts = PromiseTypeSyntaxGetStrict(bundle_type, promise_type);
if (!pts)
{
pts = PromiseTypeSyntaxGetStrict("*", promise_type);
}
return pts;
}
static const ConstraintSyntax *GetCommonConstraint(const char *lval)
{
for (int i = 0; CF_COMMON_PROMISE_TYPES[i].promise_type; i++)
{
const ConstraintSyntax *constraints = CF_COMMON_PROMISE_TYPES[i].constraints;
for (int j = 0; constraints[j].lval != NULL; j++)
{
if (StringEqual(constraints[j].lval, lval))
{
return &(constraints[j]);
}
}
}
return NULL;
}
const ConstraintSyntax *BodySyntaxGetConstraintSyntax(const ConstraintSyntax *body_syntax, const char *lval)
{
if (body_syntax == NULL)
{
return NULL;
}
for (int j = 0; body_syntax[j].lval; j++)
{
if (strcmp(body_syntax[j].lval, lval) == 0)
{
return &body_syntax[j];
}
}
return NULL;
}
const ConstraintSyntax *PromiseTypeSyntaxGetConstraintSyntax(const PromiseTypeSyntax *promise_type_syntax, const char *lval)
{
assert(promise_type_syntax != NULL);
assert(lval != NULL);
for (int i = 0; promise_type_syntax->constraints[i].lval; i++)
{
if (strcmp(promise_type_syntax->constraints[i].lval, lval) == 0)
{
return &promise_type_syntax->constraints[i];
}
}
const ConstraintSyntax *constraint_syntax = NULL;
if (strcmp("edit_line", promise_type_syntax->bundle_type) == 0)
{
constraint_syntax = BodySyntaxGetConstraintSyntax(CF_COMMON_EDITBODIES, lval);
if (constraint_syntax)
{
return constraint_syntax;
}
}
else if (strcmp("edit_xml", promise_type_syntax->bundle_type) == 0)
{
constraint_syntax = BodySyntaxGetConstraintSyntax(CF_COMMON_XMLBODIES, lval);
if (constraint_syntax)
{
return constraint_syntax;
}
}
return GetCommonConstraint(lval);
}
const BodySyntax *BodySyntaxGet(ARG_UNUSED ParserBlock block, const char *body_type)
{
if (block == PARSER_BLOCK_PROMISE)
{
// Required: promise agent <id>
if (!StringEqual(body_type, "agent"))
{
return NULL;
}
return &CUSTOM_PROMISE_BLOCK_SYNTAX;
}
assert(block == PARSER_BLOCK_BODY);
for (int i = 0; i < CF3_MODULES; i++)
{
const PromiseTypeSyntax *promise_type_syntax = CF_ALL_PROMISE_TYPES[i];
for (int k = 0; promise_type_syntax[k].bundle_type != NULL; k++)
{
for (int z = 0; promise_type_syntax[k].constraints[z].lval != NULL; z++)
{
const ConstraintSyntax constraint_syntax = promise_type_syntax[k].constraints[z];
if (constraint_syntax.dtype == CF_DATA_TYPE_BODY && strcmp(body_type, constraint_syntax.lval) == 0)
{
return constraint_syntax.range.body_type_syntax;
}
}
}
}
for (int i = 0; CONTROL_BODIES[i].body_type != NULL; i++)
{
const BodySyntax body_syntax = CONTROL_BODIES[i];
if (strcmp(body_type, body_syntax.body_type) == 0)
{
return &CONTROL_BODIES[i];
}
}
// Not a built in body type, assume it's a custom body type
return &CUSTOM_BODY_BLOCK_SYNTAX;
}
const char *SyntaxStatusToString(SyntaxStatus status)
{
assert( status == SYNTAX_STATUS_DEPRECATED ||
status == SYNTAX_STATUS_NORMAL ||
status == SYNTAX_STATUS_REMOVED );
switch (status)
{
case SYNTAX_STATUS_DEPRECATED:
return "deprecated";
case SYNTAX_STATUS_NORMAL:
return "normal";
case SYNTAX_STATUS_REMOVED:
return "removed";
case SYNTAX_STATUS_CUSTOM:
return "custom";
default:
break;
}
return NULL;
}
/****************************************************************************/
DataType ExpectedDataType(const char *lvalname)
{
int i, j, k, l;
const ConstraintSyntax *bs, *bs2;
const PromiseTypeSyntax *ss;
for (i = 0; i < CF3_MODULES; i++)
{
if ((ss = CF_ALL_PROMISE_TYPES[i]) == NULL)
{
continue;
}
for (j = 0; ss[j].promise_type != NULL; j++)
{
if ((bs = ss[j].constraints) == NULL)
{
continue;
}
for (k = 0; bs[k].lval != NULL; k++)
{
if (strcmp(lvalname, bs[k].lval) == 0)
{
return bs[k].dtype;
}
}
for (k = 0; bs[k].lval != NULL; k++)
{
if (bs[k].dtype == CF_DATA_TYPE_BODY)
{
bs2 = bs[k].range.body_type_syntax->constraints;
if (bs2 == NULL || bs2 == (void *) CF_BUNDLE)
{
continue;
}
for (l = 0; bs2[l].dtype != CF_DATA_TYPE_NONE; l++)
{
if (strcmp(lvalname, bs2[l].lval) == 0)
{
return bs2[l].dtype;
}
}
}
}
}
}
return CF_DATA_TYPE_NONE;
}
/****************************************************************************/
/* Level 1 */
/****************************************************************************/
const char *SyntaxTypeMatchToString(SyntaxTypeMatch result)
{
assert(result < SYNTAX_TYPE_MATCH_MAX);
static const char *const msgs[SYNTAX_TYPE_MATCH_MAX] =
{
[SYNTAX_TYPE_MATCH_OK] = "OK",
[SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED] = "Cannot check unexpanded value",
[SYNTAX_TYPE_MATCH_ERROR_RANGE_BRACKETED] = "Real range specification should not be enclosed in brackets - just 'a,b'",
[SYNTAX_TYPE_MATCH_ERROR_RANGE_MULTIPLE_ITEMS] = "Range format specifier should be of form 'a,b'' but got multiple items",
[SYNTAX_TYPE_MATCH_ERROR_GOT_SCALAR] = "Attempted to give a scalar to a non-scalar type",
[SYNTAX_TYPE_MATCH_ERROR_GOT_LIST] = "Attempted to give a list to a non-list type",
[SYNTAX_TYPE_MATCH_ERROR_GOT_NULL] = "Attempted to give a value of type null",
[SYNTAX_TYPE_MATCH_ERROR_STRING_UNIX_PERMISSION] = "Error parsing Unix permission string",
[SYNTAX_TYPE_MATCH_ERROR_SCALAR_OUT_OF_RANGE] = "Scalar value is out of range",
[SYNTAX_TYPE_MATCH_ERROR_EMPTY_SCALAR_OUT_OF_RANGE] = "Empty scalar value is out of range",
[SYNTAX_TYPE_MATCH_ERROR_INT_PARSE] = "Cannot parse value as integer",
[SYNTAX_TYPE_MATCH_ERROR_INT_OUT_OF_RANGE] = "Integer is out of range",
[SYNTAX_TYPE_MATCH_ERROR_REAL_INF] = "Keyword 'inf' has an integer value, cannot be used as real",
[SYNTAX_TYPE_MATCH_ERROR_REAL_OUT_OF_RANGE] = "Real value is out of range",
[SYNTAX_TYPE_MATCH_ERROR_OPTS_OUT_OF_RANGE] = "Selection is out of bounds",
[SYNTAX_TYPE_MATCH_ERROR_FNCALL_RETURN_TYPE] = "Function does not return the required type",
[SYNTAX_TYPE_MATCH_ERROR_FNCALL_UNKNOWN] = "Unknown function",
[SYNTAX_TYPE_MATCH_ERROR_CONTEXT_OUT_OF_RANGE] = "Context string is invalid/out of range",
[SYNTAX_TYPE_MATCH_ERROR_ABSOLUTE_PATH] = "Filename is not an absolute path",
};
return msgs[result];
}
SyntaxTypeMatch CheckConstraintTypeMatch(const char *lval, Rval rval, DataType dt, const char *range, int level)
{
Rlist *rp;
Item *checklist;
/* Get type of lval */
switch (rval.type)
{
case RVAL_TYPE_SCALAR:
switch (dt)
{
case CF_DATA_TYPE_STRING_LIST:
case CF_DATA_TYPE_INT_LIST:
case CF_DATA_TYPE_REAL_LIST:
case CF_DATA_TYPE_CONTEXT_LIST:
case CF_DATA_TYPE_OPTION_LIST:
if (level == 0)
{
return SYNTAX_TYPE_MATCH_ERROR_GOT_SCALAR;
}
break;
default:
/* Only lists are incompatible with scalars */
break;
}
break;
case RVAL_TYPE_LIST:
switch (dt)
{
case CF_DATA_TYPE_STRING_LIST:
case CF_DATA_TYPE_INT_LIST:
case CF_DATA_TYPE_REAL_LIST:
case CF_DATA_TYPE_CONTEXT_LIST:
case CF_DATA_TYPE_OPTION_LIST:
break;
default:
return SYNTAX_TYPE_MATCH_ERROR_GOT_LIST;
}
for (rp = (Rlist *) rval.item; rp != NULL; rp = rp->next)
{
SyntaxTypeMatch err = CheckConstraintTypeMatch(lval, rp->val, dt, range, 1);
switch (err)
{
case SYNTAX_TYPE_MATCH_OK:
case SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED:
break;
default:
return err;
}
}
return SYNTAX_TYPE_MATCH_OK;
case RVAL_TYPE_FNCALL:
/* Fn-like objects are assumed to be parameterized bundles in these... */
checklist = SplitString("bundlesequence,edit_line,edit_xml,usebundle,service_bundle,home_bundle", ',');
if (!IsItemIn(checklist, lval))
{
SyntaxTypeMatch err = CheckFnCallType(RvalFnCallValue(rval)->name, dt);
DeleteItemList(checklist);
return err;
}
DeleteItemList(checklist);
return SYNTAX_TYPE_MATCH_OK;
case RVAL_TYPE_CONTAINER:
break;
case RVAL_TYPE_NOPROMISEE:
return SYNTAX_TYPE_MATCH_ERROR_GOT_NULL;
}
/* If we get here, we have a literal scalar type */
switch (dt)
{
case CF_DATA_TYPE_STRING:
case CF_DATA_TYPE_STRING_LIST:
return CheckParseString(lval, (const char *) rval.item, range);
case CF_DATA_TYPE_INT:
case CF_DATA_TYPE_INT_LIST:
return CheckParseInt(lval, (const char *) rval.item, range);
case CF_DATA_TYPE_REAL:
case CF_DATA_TYPE_REAL_LIST:
return CheckParseReal(lval, (const char *) rval.item, range);
case CF_DATA_TYPE_BODY:
case CF_DATA_TYPE_BUNDLE:
case CF_DATA_TYPE_CONTAINER:
break;
case CF_DATA_TYPE_OPTION:
case CF_DATA_TYPE_OPTION_LIST:
return CheckParseOpts(RvalScalarValue(rval), range);
case CF_DATA_TYPE_CONTEXT:
case CF_DATA_TYPE_CONTEXT_LIST:
return CheckParseContext((const char *) rval.item, range);
case CF_DATA_TYPE_INT_RANGE:
return CheckParseIntRange(lval, (const char *) rval.item, range);
case CF_DATA_TYPE_REAL_RANGE:
return CheckParseRealRange(lval, (char *) rval.item, range);
default:
ProgrammingError("Unknown (unhandled) datatype for lval = %s (CheckConstraintTypeMatch)", lval);
break;
}
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
DataType StringDataType(EvalContext *ctx, const char *string)
{
int islist = false; /* TODO something is wrong here */
/*-------------------------------------------------------
What happens if we embed vars in a literal string
"$(list)withending" - a list?
"$(list1)$(list2)" - not a simple list
Disallow these manual concatenations as ambiguous.
Demand this syntax to work around
vars:
"listvar" slist => EmbellishList("prefix$(list)suffix");
---------------------------------------------------------*/
size_t len = strlen(string);
if (*string == '$')
{
Buffer *inner_value = BufferNew();
if (ExtractScalarReference(inner_value, string, len, true))
{
DataType dtype;
if (!IsExpandable(BufferData(inner_value)))
{
VarRef *ref = VarRefParse(BufferData(inner_value));
EvalContextVariableGet(ctx, ref, &dtype);
VarRefDestroy(ref);
if (DataTypeToRvalType(dtype) == RVAL_TYPE_LIST)
{
if (!islist)
{
islist = true;
}
else
{
islist = false;
}
}
}
if (BufferSize(inner_value) == strlen(string))
{
BufferDestroy(inner_value);
return dtype;
}
else
{
BufferDestroy(inner_value);
return CF_DATA_TYPE_STRING;
}
}
BufferDestroy(inner_value);
}
return CF_DATA_TYPE_STRING;
}
/****************************************************************************/
/* Level 1 */
/****************************************************************************/
static SyntaxTypeMatch CheckParseString(const char *lval, const char *s, const char *range)
{
if (s == NULL)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (strlen(range) == 0)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (IsNakedVar(s, '@') || IsNakedVar(s, '$'))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
/* Deal with complex strings as special cases */
if (strcmp(lval, "mode") == 0 || strcmp(lval, "search_mode") == 0)
{
mode_t plus, minus;
if (!ParseModeString(s, &plus, &minus))
{
return SYNTAX_TYPE_MATCH_ERROR_STRING_UNIX_PERMISSION;
}
}
/* FIXME: review this strcmp. Moved out from StringMatch */
if (!strcmp(range, s) || StringMatchFull(range, s))
{
return SYNTAX_TYPE_MATCH_OK;
}
if (IsCf3VarString(s))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
else if ('\0' == s[0])
{
return SYNTAX_TYPE_MATCH_ERROR_EMPTY_SCALAR_OUT_OF_RANGE;
}
else if (!strcmp(range, CF_ABSPATHRANGE))
{
return SYNTAX_TYPE_MATCH_ERROR_ABSOLUTE_PATH;
}
else
{
return SYNTAX_TYPE_MATCH_ERROR_SCALAR_OUT_OF_RANGE;
}
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
SyntaxTypeMatch CheckParseContext(const char *context, const char *range)
{
if (strlen(range) == 0)
{
return SYNTAX_TYPE_MATCH_OK;
}
/* FIXME: review this strcmp. Moved out from StringMatch */
if (!strcmp(range, context) || StringMatchFull(range, context))
{
return SYNTAX_TYPE_MATCH_OK;
}
return SYNTAX_TYPE_MATCH_ERROR_CONTEXT_OUT_OF_RANGE;
}
/****************************************************************************/
static SyntaxTypeMatch CheckParseInt(const char *lval, const char *s, const char *range)
{
Item *split;
int n;
long long max = CF_LOWINIT, min = CF_HIGHINIT;
// Numeric types are registered by range separated by comma str "min,max"
split = SplitString(range, ',');
if ((n = ListLen(split)) != 2)
{
ProgrammingError("INTERN: format specifier for int rvalues is not ok for lval %s - got %d items", lval, n);
}
sscanf(split->name, "%lld", &min);
if (strcmp(split->next->name, "inf") == 0)
{
max = CF_INFINITY;
}
else
{
sscanf(split->next->name, "%lld", &max);
}
DeleteItemList(split);
if (min == CF_HIGHINIT || max == CF_LOWINIT)
{
ProgrammingError("INTERN: could not parse format specifier for int rvalues for lval %s", lval);
}
if (IsCf3VarString(s))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
long val = IntFromString(s);
if (val == CF_NOINT)
{
return SYNTAX_TYPE_MATCH_ERROR_INT_PARSE;
}
if (val > max || val < min)
{
return SYNTAX_TYPE_MATCH_ERROR_INT_OUT_OF_RANGE;
}
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
static SyntaxTypeMatch CheckParseIntRange(const char *lval, const char *s, const char *range)
{
Item *split, *ip, *rangep;
int n;
long long max = CF_LOWINIT, min = CF_HIGHINIT;
// Numeric types are registered by range separated by comma str "min,max"
if (*s == '[' || *s == '(')
{
return SYNTAX_TYPE_MATCH_ERROR_RANGE_BRACKETED;
}
split = SplitString(range, ',');
if ((n = ListLen(split)) != 2)
{
ProgrammingError("Format specifier %s for irange rvalues is not ok for lval %s - got %d items", range, lval, n);
}
sscanf(split->name, "%lld", &min);
if (strcmp(split->next->name, "inf") == 0)
{
max = CF_INFINITY;
}
else
{
sscanf(split->next->name, "%lld", &max);
}
DeleteItemList(split);
if (min == CF_HIGHINIT || max == CF_LOWINIT)
{
ProgrammingError("Could not parse irange format specifier for int rvalues for lval %s", lval);
}
if (IsCf3VarString(s))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
rangep = SplitString(s, ',');
if ((n = ListLen(rangep)) != 2)
{
return SYNTAX_TYPE_MATCH_ERROR_RANGE_MULTIPLE_ITEMS;
}
for (ip = rangep; ip != NULL; ip = ip->next)
{
long val = IntFromString(ip->name);
if (val > max || val < min)
{
return SYNTAX_TYPE_MATCH_ERROR_INT_OUT_OF_RANGE;
}
}
DeleteItemList(rangep);
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
static SyntaxTypeMatch CheckParseReal(const char *lval, const char *s, const char *range)
{
Item *split;
double max = (double) CF_LOWINIT, min = (double) CF_HIGHINIT, val;
int n;
if (strcmp(s, "inf") == 0)
{
return SYNTAX_TYPE_MATCH_ERROR_REAL_INF;
}
if (IsCf3VarString(s))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
/* Numeric types are registered by range separated by comma str "min,max" */
split = SplitString(range, ',');
if ((n = ListLen(split)) != 2)
{
ProgrammingError("Format specifier for real rvalues is not ok for lval %s - %d items", lval, n);
}
sscanf(split->name, "%lf", &min);
sscanf(split->next->name, "%lf", &max);
DeleteItemList(split);
if (min == CF_HIGHINIT || max == CF_LOWINIT)
{
ProgrammingError("Could not parse format specifier for int rvalues for lval %s", lval);
}
if (!DoubleFromString(s, &val))
{
return SYNTAX_TYPE_MATCH_ERROR_REAL_OUT_OF_RANGE;
}
if (val > max || val < min)
{
return SYNTAX_TYPE_MATCH_ERROR_REAL_OUT_OF_RANGE;
}
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
static SyntaxTypeMatch CheckParseRealRange(const char *lval, const char *s, const char *range)
{
Item *split, *rangep, *ip;
double max = (double) CF_LOWINIT, min = (double) CF_HIGHINIT, val;
int n;
if (*s == '[' || *s == '(')
{
return SYNTAX_TYPE_MATCH_ERROR_RANGE_BRACKETED;
}
if (strcmp(s, "inf") == 0)
{
return SYNTAX_TYPE_MATCH_ERROR_REAL_INF;
}
if (IsCf3VarString(s))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
/* Numeric types are registered by range separated by comma str "min,max" */
split = SplitString(range, ',');
if ((n = ListLen(split)) != 2)
{
ProgrammingError("Format specifier for real rvalues is not ok for lval %s - %d items", lval, n);
}
sscanf(split->name, "%lf", &min);
sscanf(split->next->name, "%lf", &max);
DeleteItemList(split);
if (min == CF_HIGHINIT || max == CF_LOWINIT)
{
ProgrammingError("Could not parse format specifier for int rvalues for lval %s", lval);
}
rangep = SplitString(s, ',');
if ((n = ListLen(rangep)) != 2)
{
return SYNTAX_TYPE_MATCH_ERROR_RANGE_MULTIPLE_ITEMS;
}
for (ip = rangep; ip != NULL; ip = ip->next)
{
if (!DoubleFromString(ip->name, &val))
{
return SYNTAX_TYPE_MATCH_ERROR_REAL_OUT_OF_RANGE;
}
if (val > max || val < min)
{
return SYNTAX_TYPE_MATCH_ERROR_REAL_OUT_OF_RANGE;
}
}
DeleteItemList(rangep);
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
static SyntaxTypeMatch CheckParseOpts(const char *s, const char *range)
{
Item *split;
/* List/menu types are separated by comma str "a,b,c,..." */
if (IsNakedVar(s, '@') || IsNakedVar(s, '$'))
{
return SYNTAX_TYPE_MATCH_ERROR_UNEXPANDED;
}
split = SplitString(range, ',');
if (!IsItemIn(split, s))
{
DeleteItemList(split);
return SYNTAX_TYPE_MATCH_ERROR_OPTS_OUT_OF_RANGE;
}
DeleteItemList(split);
return SYNTAX_TYPE_MATCH_OK;
}
/****************************************************************************/
bool CheckParseVariableName(const char *const name)
{
assert(name != NULL);
const char *const reserved[] = {
"promiser",
"handle",
"promise_filename",
"promise_dirname",
"promise_linenumber",
"this",
NULL
};
if (IsStrIn(name, reserved))
{
return false;
}
int count = 0, level = 0;
const char *const first_dot = strchr(name, '.');
if (first_dot != NULL)
{
for (const char *sp = name; *sp != '\0'; sp++)
{
switch (*sp)
{
case '.':
count++;
if (count > 1 && level != 1)
{
// Adding a second dot is not allowed,
// except inside 1 level of square brackets
return false;
}
break;
case '[':
level++;
break;
case ']':
level--;
break;
default:
break;
}
if (level > 1)
{
yyerror("Too many levels of [] reserved for array use");
return false;
}
}
if (count == 1)
{
// Check that there is something before and after first dot:
if (name[0] == '.' || first_dot[1] == '\0')
{
return false;
}
}
}
return true;
}
/****************************************************************************/
static SyntaxTypeMatch CheckFnCallType(const char *s, DataType desired_type)
{
const FnCallType *fn = FnCallTypeGet(s);
if (fn != NULL)
{
DataType fn_ret_type = fn->dtype;
if (desired_type != fn_ret_type)
{
/* All scalar values can be used where string is expected (they are,
* in fact, strings internally, see RvalType). */
if ((desired_type == CF_DATA_TYPE_STRING) &&
((fn_ret_type == CF_DATA_TYPE_INT) ||
(fn_ret_type == CF_DATA_TYPE_REAL) ||
(fn_ret_type == CF_DATA_TYPE_OPTION) ||
(fn_ret_type == CF_DATA_TYPE_CONTEXT)))
{
return SYNTAX_TYPE_MATCH_OK;
}
/* Ok to allow fn calls of correct element-type in lists */
if (fn_ret_type == CF_DATA_TYPE_STRING && desired_type == CF_DATA_TYPE_STRING_LIST)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (fn_ret_type == CF_DATA_TYPE_STRING && desired_type == CF_DATA_TYPE_CONTEXT)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (fn_ret_type == CF_DATA_TYPE_INT && desired_type == CF_DATA_TYPE_INT_LIST)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (fn_ret_type == CF_DATA_TYPE_REAL && desired_type == CF_DATA_TYPE_REAL_LIST)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (fn_ret_type == CF_DATA_TYPE_OPTION && desired_type == CF_DATA_TYPE_OPTION_LIST)
{
return SYNTAX_TYPE_MATCH_OK;
}
if (fn_ret_type == CF_DATA_TYPE_CONTEXT && desired_type == CF_DATA_TYPE_CONTEXT_LIST)
{
return SYNTAX_TYPE_MATCH_OK;
}
return SYNTAX_TYPE_MATCH_ERROR_FNCALL_RETURN_TYPE;
}
else
{
return SYNTAX_TYPE_MATCH_OK;
}
}
else
{
return SYNTAX_TYPE_MATCH_ERROR_FNCALL_UNKNOWN;
}
}
/****************************************************************************/
static JsonElement *ConstraintSyntaxToJson(const ConstraintSyntax *constraint_syntax)
{
JsonElement *json_constraint = JsonObjectCreate(5);
JsonObjectAppendString(json_constraint, "attribute", constraint_syntax->lval);
JsonObjectAppendString(json_constraint, "status", SyntaxStatusToString(constraint_syntax->status));
JsonObjectAppendString(json_constraint, "type", DataTypeToString(constraint_syntax->dtype));
if (constraint_syntax->dtype != CF_DATA_TYPE_BODY && constraint_syntax->dtype != CF_DATA_TYPE_BUNDLE)
{
JsonObjectAppendString(json_constraint, "range", constraint_syntax->range.validation_string);
}
return json_constraint;
}
static JsonElement *BodySyntaxToJson(const BodySyntax *body_syntax)
{
JsonElement *json_body = JsonObjectCreate(2);
JsonObjectAppendString(json_body, "status", SyntaxStatusToString(body_syntax->status));
{
JsonElement *attributes = JsonObjectCreate(50);
for (int i = 0; body_syntax->constraints[i].lval; i++)
{
const ConstraintSyntax *constraint_syntax = &body_syntax->constraints[i];
if (constraint_syntax->status != SYNTAX_STATUS_REMOVED)
{
JsonElement *json_constraint = ConstraintSyntaxToJson(constraint_syntax);
JsonObjectAppendString(json_constraint, "visibility", "body");
JsonObjectAppendObject(attributes, constraint_syntax->lval, json_constraint);
}
}
JsonObjectAppendObject(json_body, "attributes", attributes);
}
return json_body;
}
static JsonElement *JsonBundleTypeNew(void)
{
JsonElement *json_bundle_type = JsonObjectCreate(2);
JsonObjectAppendString(json_bundle_type, "status", SyntaxStatusToString(SYNTAX_STATUS_NORMAL));
JsonObjectAppendArray(json_bundle_type, "promiseTypes", JsonArrayCreate(50));
return json_bundle_type;
}
static JsonElement *BundleTypesToJson(void)
{
JsonElement *bundle_types = JsonObjectCreate(50);
Seq *common_promise_types = SeqNew(50, free);
for (int module_index = 0; module_index < CF3_MODULES; module_index++)
{
for (int promise_type_index = 0; CF_ALL_PROMISE_TYPES[module_index][promise_type_index].promise_type; promise_type_index++)
{
const PromiseTypeSyntax *promise_type_syntax = &CF_ALL_PROMISE_TYPES[module_index][promise_type_index];
// skip global constraints
if (strcmp("*", promise_type_syntax->promise_type) == 0)
{
continue;
}
// collect common promise types to be appended at the end
if (strcmp("*", promise_type_syntax->bundle_type) == 0)
{
SeqAppend(common_promise_types, xstrdup(promise_type_syntax->promise_type));
continue;
}
if (promise_type_syntax->status == SYNTAX_STATUS_REMOVED)
{
continue;
}
JsonElement *bundle_type = JsonObjectGet(bundle_types, promise_type_syntax->bundle_type);
if (!bundle_type)
{
bundle_type = JsonBundleTypeNew();
JsonObjectAppendObject(bundle_types, promise_type_syntax->bundle_type, bundle_type);
}
assert(bundle_type);
JsonElement *promise_types = JsonObjectGet(bundle_type, "promiseTypes");
assert(promise_types);
JsonArrayAppendString(promise_types, promise_type_syntax->promise_type);
}
}
// Append the common bundle, which has only common promise types, but is not declared in syntax
{
JsonElement *bundle_type = JsonBundleTypeNew();
JsonObjectAppendObject(bundle_types, "common", bundle_type);
}
JsonIterator it = JsonIteratorInit(bundle_types);
const char *bundle_type = NULL;
while ((bundle_type = JsonIteratorNextKey(&it)))
{
JsonElement *promise_types = JsonObjectGetAsArray(JsonObjectGetAsObject(bundle_types, bundle_type), "promiseTypes");
for (size_t i = 0; i < SeqLength(common_promise_types); i++)
{
const char *common_promise_type = SeqAt(common_promise_types, i);
JsonArrayAppendString(promise_types, common_promise_type);
}
}
SeqDestroy(common_promise_types);
return bundle_types;
}
static JsonElement *JsonPromiseTypeNew(SyntaxStatus status)
{
JsonElement *promise_type = JsonObjectCreate(2);
JsonObjectAppendString(promise_type, "status", SyntaxStatusToString(status));
JsonObjectAppendObject(promise_type, "attributes", JsonObjectCreate(50));
return promise_type;
}
static JsonElement *PromiseTypesToJson(void)
{
JsonElement *promise_types = JsonObjectCreate(50);
const PromiseTypeSyntax *global_promise_type = PromiseTypeSyntaxGet("*", "*");
for (int module_index = 0; module_index < CF3_MODULES; module_index++)
{
for (int promise_type_index = 0; CF_ALL_PROMISE_TYPES[module_index][promise_type_index].promise_type; promise_type_index++)
{
const PromiseTypeSyntax *promise_type_syntax = &CF_ALL_PROMISE_TYPES[module_index][promise_type_index];
// skip global and bundle-local common constraints
if (strcmp("*", promise_type_syntax->promise_type) == 0)
{
continue;
}
if (promise_type_syntax->status == SYNTAX_STATUS_REMOVED)
{
continue;
}
JsonElement *promise_type = JsonObjectGet(promise_types, promise_type_syntax->promise_type);
if (!promise_type)
{
promise_type = JsonPromiseTypeNew(promise_type_syntax->status);
JsonObjectAppendObject(promise_types, promise_type_syntax->promise_type, promise_type);
}
assert(promise_type);
JsonElement *attributes = JsonObjectGet(promise_type, "attributes");
assert(attributes);
for (int i = 0; promise_type_syntax->constraints[i].lval; i++)
{
const ConstraintSyntax *constraint_syntax = &promise_type_syntax->constraints[i];
JsonElement *json_constraint = ConstraintSyntaxToJson(constraint_syntax);
JsonObjectAppendString(json_constraint, "visibility", "promiseType");
JsonObjectAppendObject(attributes, constraint_syntax->lval, json_constraint);
}
// append bundle common constraints
const PromiseTypeSyntax *bundle_promise_type = PromiseTypeSyntaxGet(promise_type_syntax->bundle_type, "*");
if (strcmp("*", bundle_promise_type->bundle_type) != 0)
{
for (int i = 0; bundle_promise_type->constraints[i].lval; i++)
{
const ConstraintSyntax *constraint_syntax = &bundle_promise_type->constraints[i];
JsonElement *json_constraint = ConstraintSyntaxToJson(constraint_syntax);
JsonObjectAppendString(json_constraint, "visibility", "bundle");
JsonObjectAppendObject(attributes, constraint_syntax->lval, json_constraint);
}
}
// append global common constraints
for (int i = 0; global_promise_type->constraints[i].lval; i++)
{
const ConstraintSyntax *constraint_syntax = &global_promise_type->constraints[i];
JsonElement *json_constraint = ConstraintSyntaxToJson(constraint_syntax);
JsonObjectAppendString(json_constraint, "visibility", "global");
JsonObjectAppendObject(attributes, constraint_syntax->lval, json_constraint);
}
}
}
return promise_types;
}
static JsonElement *BodyTypesToJson(void)
{
JsonElement *body_types = JsonObjectCreate(50);
for (int module_index = 0; module_index < CF3_MODULES; module_index++)
{
for (int promise_type_index = 0; CF_ALL_PROMISE_TYPES[module_index][promise_type_index].promise_type; promise_type_index++)
{
const PromiseTypeSyntax *promise_type_syntax = &CF_ALL_PROMISE_TYPES[module_index][promise_type_index];
for (int constraint_index = 0; promise_type_syntax->constraints[constraint_index].lval; constraint_index++)
{
const ConstraintSyntax *constraint_syntax = &promise_type_syntax->constraints[constraint_index];
if (constraint_syntax->dtype != CF_DATA_TYPE_BODY)
{
continue;
}
if (constraint_syntax->status == SYNTAX_STATUS_REMOVED)
{
continue;
}
const BodySyntax *body_syntax = constraint_syntax->range.body_type_syntax;
JsonElement *body_type = JsonObjectGet(body_types, body_syntax->body_type);
if (!body_type)
{
JsonElement *body_type = BodySyntaxToJson(body_syntax);
JsonObjectAppendObject(body_types, body_syntax->body_type, body_type);
}
}
}
}
for (int i = 0; CONTROL_BODIES[i].body_type; i++)
{
const BodySyntax *body_syntax = &CONTROL_BODIES[i];
if (body_syntax->status == SYNTAX_STATUS_REMOVED)
{
continue;
}
JsonElement *body_type = JsonObjectGet(body_types, body_syntax->body_type);
if (!body_type)
{
JsonElement *body_type = BodySyntaxToJson(body_syntax);
JsonObjectAppendObject(body_types, body_syntax->body_type, body_type);
}
}
return body_types;
}
static const char *FnCallCategoryToString(FnCallCategory category)
{
static const char *const category_str[] =
{
[FNCALL_CATEGORY_COMM] = "communication",
[FNCALL_CATEGORY_DATA] = "data",
[FNCALL_CATEGORY_FILES] = "files",
[FNCALL_CATEGORY_IO] = "io",
[FNCALL_CATEGORY_SYSTEM] = "system",
[FNCALL_CATEGORY_UTILS] = "utils",
[FNCALL_CATEGORY_INTERNAL] = "internal"
};
return category_str[category];
}
static JsonElement *FnCallTypeToJson(const FnCallType *fn_syntax)
{
JsonElement *json_fn = JsonObjectCreate(10);
JsonObjectAppendString(json_fn, "status", SyntaxStatusToString(fn_syntax->status));
JsonObjectAppendString(json_fn, "returnType", DataTypeToString(fn_syntax->dtype));
{
JsonElement *params = JsonArrayCreate(10);
for (int i = 0; fn_syntax->args[i].pattern; i++)
{
const FnCallArg *param = &fn_syntax->args[i];
JsonElement *json_param = JsonObjectCreate(2);
JsonObjectAppendString(json_param, "type", DataTypeToString(param->dtype));
JsonObjectAppendString(json_param, "range", param->pattern);
JsonObjectAppendString(json_param, "description", param->description);
JsonArrayAppendObject(params, json_param);
}
JsonObjectAppendArray(json_fn, "parameters", params);
}
JsonObjectAppendBool(json_fn, "variadic", fn_syntax->options & FNCALL_OPTION_VARARG);
JsonObjectAppendBool(json_fn, "cached", fn_syntax->options & FNCALL_OPTION_CACHED);
JsonObjectAppendBool(json_fn, "collecting", fn_syntax->options & FNCALL_OPTION_COLLECTING);
JsonObjectAppendString(json_fn, "category", FnCallCategoryToString(fn_syntax->category));
return json_fn;
}
static JsonElement *FunctionsToJson(void)
{
JsonElement *functions = JsonObjectCreate(500);
for (int i = 0; CF_FNCALL_TYPES[i].name; i++)
{
const FnCallType *fn_syntax = &CF_FNCALL_TYPES[i];
if (fn_syntax->status == SYNTAX_STATUS_REMOVED)
{
continue;
}
JsonObjectAppendObject(functions, fn_syntax->name, FnCallTypeToJson(fn_syntax));
}
return functions;
}
JsonElement *SyntaxToJson(void)
{
JsonElement *syntax_tree = JsonObjectCreate(3);
JsonObjectAppendObject(syntax_tree, "bundleTypes", BundleTypesToJson());
JsonObjectAppendObject(syntax_tree, "promiseTypes", PromiseTypesToJson());
JsonObjectAppendObject(syntax_tree, "bodyTypes", BodyTypesToJson());
JsonObjectAppendObject(syntax_tree, "functions", FunctionsToJson());
return syntax_tree;
}
|