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 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650
|
/* SPDX-FileCopyrightText: 2009-2024 Greenbone AG
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
/**
* @file
* @brief Functions to convert different CPE notations into each other.
*
* This library provides functions to read the CPE 2.2 URI binding of a
* CPE or the CPE 2.3 formatted string binding of a CPE into a CPE struct
* that corresponds to the WFN naming of a CPE. Further functions to convert
* the CPE struct into the different bindings are provided.
* This file also contains a function that checks if one CPE (represented in a
* CPE struct) is a match for an other CPE (also represented in a CPE struct).
*/
#include "cpeutils.h"
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <glib.h>
#include <string.h>
#undef G_LOG_DOMAIN
/**
* @brief GLib logging domain.
*/
#define G_LOG_DOMAIN "libgvm util"
static enum set_relation
compare_component (const char *, const char *);
static enum set_relation
compare_strings (const char *, const char *);
static int
count_escapes (const char *, int, int);
static gboolean
is_even_wildcards (const char *, int);
static gboolean
has_wildcards (const char *);
static int
index_of (const char *, const char *, int);
static gboolean
is_string (const char *);
static char *
get_uri_component (const char *, int);
static char *
decode_uri_component (const char *);
static void
unpack_sixth_uri_component (const char *, cpe_struct_t *);
static char *
get_fs_component (const char *, int);
static char *
unbind_fs_component (char *);
static char *
add_quoting (const char *);
static char *
bind_cpe_component_for_uri (const char *);
static char *
transform_for_uri (const char *);
static char *
pack_sixth_uri_component (const cpe_struct_t *);
static char *
bind_cpe_component_for_fs (const char *);
static char *
process_quoted_chars (const char *);
static void
trim_pct (char *);
static void
get_code (char *, const char *);
/**
* @brief Convert a URI CPE to a formatted string CPE.
*
* @param[in] uri_cpe A CPE v2.2-conformant URI.
*
* @return A formatted string CPE.
*/
char *
uri_cpe_to_fs_cpe (const char *uri_cpe)
{
cpe_struct_t cpe;
char *fs_cpe;
cpe_struct_init (&cpe);
uri_cpe_to_cpe_struct (uri_cpe, &cpe);
fs_cpe = cpe_struct_to_fs_cpe (&cpe);
cpe_struct_free (&cpe);
return fs_cpe;
}
/**
* @brief Convert a URI CPE to a formatted string product.
*
* @param[in] uri_cpe A CPE v2.2-conformant URI.
*
* @return A formatted string product.
*/
char *
uri_cpe_to_fs_product (const char *uri_cpe)
{
cpe_struct_t cpe;
char *fs_cpe;
cpe_struct_init (&cpe);
uri_cpe_to_cpe_struct (uri_cpe, &cpe);
fs_cpe = cpe_struct_to_fs_product (&cpe);
cpe_struct_free (&cpe);
return fs_cpe;
}
/**
* @brief Convert a URI CPE to a formatted string product.
*
* @param[in] uri_cpe A CPE v2.2-conformant URI.
*
* @return A CPE v2.2-conformant URI product.
*/
char *
uri_cpe_to_uri_product (const char *uri_cpe)
{
cpe_struct_t cpe;
char *fs_cpe;
cpe_struct_init (&cpe);
uri_cpe_to_cpe_struct (uri_cpe, &cpe);
fs_cpe = cpe_struct_to_uri_product (&cpe);
cpe_struct_free (&cpe);
return fs_cpe;
}
/**
* @brief Convert a formatted string CPE to a URI CPE.
*
* @param[in] fs_cpe A formatted string CPE.
*
* @return A CPE v2.2-conformant URI.
*/
char *
fs_cpe_to_uri_cpe (const char *fs_cpe)
{
cpe_struct_t cpe;
char *uri_cpe;
cpe_struct_init (&cpe);
fs_cpe_to_cpe_struct (fs_cpe, &cpe);
uri_cpe = cpe_struct_to_uri_cpe (&cpe);
cpe_struct_free (&cpe);
return uri_cpe;
}
/**
* @brief Convert a formatted string CPE to an URI product.
*
* @param[in] fs_cpe A formatted string CPE.
*
* @return An URI product.
*/
char *
fs_cpe_to_uri_product (const char *fs_cpe)
{
cpe_struct_t cpe;
char *uri_cpe;
cpe_struct_init (&cpe);
fs_cpe_to_cpe_struct (fs_cpe, &cpe);
uri_cpe = cpe_struct_to_uri_product (&cpe);
cpe_struct_free (&cpe);
return uri_cpe;
}
/**
* @brief Read a URI CPE into the CPE struct.
*
* @param[in] uri_cpe A CPE v2.2-conformant URI.
*
* @param[out] cpe Pointer to the filled CPE struct.
*/
void
uri_cpe_to_cpe_struct (const char *uri_cpe, cpe_struct_t *cpe)
{
char *uri_component;
uri_component = get_uri_component (uri_cpe, 1);
cpe->part = decode_uri_component (uri_component);
g_free (uri_component);
uri_component = get_uri_component (uri_cpe, 2);
cpe->vendor = decode_uri_component (uri_component);
g_free (uri_component);
uri_component = get_uri_component (uri_cpe, 3);
cpe->product = decode_uri_component (uri_component);
g_free (uri_component);
uri_component = get_uri_component (uri_cpe, 4);
cpe->version = decode_uri_component (uri_component);
g_free (uri_component);
uri_component = get_uri_component (uri_cpe, 5);
cpe->update = decode_uri_component (uri_component);
g_free (uri_component);
uri_component = get_uri_component (uri_cpe, 6);
if (strcmp (uri_component, "") == 0 || strcmp (uri_component, "-") == 0
|| *uri_component != '~')
cpe->edition = decode_uri_component (uri_component);
else
unpack_sixth_uri_component (uri_component, cpe);
g_free (uri_component);
uri_component = get_uri_component (uri_cpe, 7);
cpe->language = decode_uri_component (uri_component);
g_free (uri_component);
}
/**
* @brief Convert a CPE struct into a URI CPE.
*
* @param[in] cpe A pointer to the CPE struct.
*
* @return A CPE v2.2-conformant URI.
*/
char *
cpe_struct_to_uri_cpe (const cpe_struct_t *cpe)
{
GString *uri_cpe;
char *bind_cpe_component;
uri_cpe = g_string_new ("cpe:/");
bind_cpe_component = bind_cpe_component_for_uri (cpe->part);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->vendor);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->product);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->version);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->update);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = pack_sixth_uri_component (cpe);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->language);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
char *result = g_string_free (uri_cpe, FALSE);
trim_pct (result);
return result;
}
/**
* @brief Convert a CPE struct into a URI product.
*
* @param[in] cpe A pointer to the CPE struct.
*
* @return A CPE v2.2-conformant URI product.
*/
char *
cpe_struct_to_uri_product (const cpe_struct_t *cpe)
{
GString *uri_cpe;
char *bind_cpe_component;
uri_cpe = g_string_new ("cpe:/");
bind_cpe_component = bind_cpe_component_for_uri (cpe->part);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->vendor);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_uri (cpe->product);
if (bind_cpe_component)
{
g_string_append (uri_cpe, bind_cpe_component);
g_string_append_c (uri_cpe, ':');
g_free (bind_cpe_component);
}
char *result = g_string_free (uri_cpe, FALSE);
trim_pct (result);
return result;
}
/**
* @brief Get the version from an uri cpe.
*
* @param[in] uri_cpe The uri cpe to get the version from.
*
* @return The version of the uri cpe.
*/
char *
get_version_from_uri_cpe (const char *uri_cpe)
{
char *version = get_uri_component (uri_cpe, 4);
char *decoded_version = decode_uri_component (version);
g_free (version);
return decoded_version;
}
/**
* @brief Read a formatted string CPE into the CPE struct.
*
* @param[in] fs_cpe A formatted string CPE.
*
* @param[out] cpe Pointer to the filled CPE struct.
*/
void
fs_cpe_to_cpe_struct (const char *fs_cpe, cpe_struct_t *cpe)
{
char *fs_component;
fs_component = get_fs_component (fs_cpe, 2);
cpe->part = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 3);
cpe->vendor = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 4);
cpe->product = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 5);
cpe->version = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 6);
cpe->update = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 7);
cpe->edition = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 8);
cpe->language = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 9);
cpe->sw_edition = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 10);
cpe->target_sw = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 11);
cpe->target_hw = unbind_fs_component (fs_component);
fs_component = get_fs_component (fs_cpe, 12);
cpe->other = unbind_fs_component (fs_component);
}
/**
* @brief Convert a CPE struct into a formatted string CPE.
*
* @param[in] cpe A pointer to the CPE struct.
*
* @return A formatted string CPE.
*/
char *
cpe_struct_to_fs_cpe (const cpe_struct_t *cpe)
{
GString *fs_cpe;
char *bind_cpe_component;
fs_cpe = g_string_new ("cpe:2.3:");
bind_cpe_component = bind_cpe_component_for_fs (cpe->part);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->vendor);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->product);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->version);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->update);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->edition);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->language);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->sw_edition);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->target_sw);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->target_hw);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->other);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_free (bind_cpe_component);
}
return (g_string_free (fs_cpe, FALSE));
}
/**
* @brief Convert a CPE struct into a formatted string product.
*
* @param[in] cpe A pointer to the CPE struct.
*
* @return A formatted string product.
*/
char *
cpe_struct_to_fs_product (const cpe_struct_t *cpe)
{
GString *fs_cpe;
char *bind_cpe_component;
fs_cpe = g_string_new ("cpe:2.3:");
bind_cpe_component = bind_cpe_component_for_fs (cpe->part);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->vendor);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
bind_cpe_component = bind_cpe_component_for_fs (cpe->product);
if (bind_cpe_component)
{
g_string_append (fs_cpe, bind_cpe_component);
g_string_append_c (fs_cpe, ':');
g_free (bind_cpe_component);
}
return (g_string_free (fs_cpe, FALSE));
}
/**
* @brief Get the indexth component of a URI CPE.
*
* @param[in] uri_cpe The URI CPE.
* @param[in] index The number of the component to get.
*
* @return The indexth component of the URI CPE.
*/
static char *
get_uri_component (const char *uri_cpe, int index)
{
char *component = NULL;
char *c;
char *component_start, *component_end;
if (!uri_cpe)
return NULL;
c = (char *) uri_cpe;
/* find start of component */
for (int i = 0; *c != '\0' && i < index; c++)
{
if (*c == ':')
i++;
}
if (index == 1 && *c != '\0')
c++;
component_start = c;
/* find end of component */
if (*component_start == '\0')
component_end = component_start;
else
{
for (c = component_start; *c != '\0' && *c != ':'; c++)
;
}
component_end = c;
if (component_start >= component_end || component_end == 0)
component = (char *) g_strdup ("");
else
component = g_strndup (component_start, component_end - component_start);
return component;
}
/**
* @brief Decode a component of a URI CPE.
*
* @param[in] component The component to decode.
*
* @return The decoded component of the URI CPE.
*/
static char *
decode_uri_component (const char *component)
{
GString *decoded_component;
char *escapes = "!\"#$%&'()*+,/:;<=>?@[\\]^`{|}~";
char *tmp_component;
char code_a[4], code_b[4], code_c[4];
long unsigned int index;
gboolean embedded;
if (!component)
return NULL;
if (strcmp (component, "") == 0 || strcmp (component, " ") == 0)
{
return (g_strdup ("ANY"));
}
if (strcmp (component, "-") == 0)
{
return (g_strdup ("NA"));
}
tmp_component = g_strdup (component);
/* set all characters to lowercase */
char *c = tmp_component;
for (; *c; c++)
*c = tolower (*c);
index = 0;
embedded = FALSE;
decoded_component = g_string_sized_new (2 * strlen (component));
char l;
char *unescaped;
while (index < strlen (tmp_component))
{
l = *(tmp_component + index);
if (l == '.' || l == '-' || l == '~')
{
g_string_append_c (decoded_component, '\\');
g_string_append_c (decoded_component, l);
index++;
embedded = TRUE;
continue;
}
if (l != '%')
{
g_string_append_c (decoded_component, l);
index++;
embedded = TRUE;
continue;
}
get_code (code_a, tmp_component + index);
if (strcmp (code_a, "%01") == 0)
{
if (index >= 3)
get_code (code_b, tmp_component + index - 3);
else
code_b[0] = '0';
if (strlen (tmp_component) >= index + 6)
get_code (code_c, tmp_component + index + 3);
else
code_c[0] = '0';
if ((index == 0 || index == strlen (tmp_component) - 3)
|| (!embedded && strcmp (code_b, "%01"))
|| (embedded && strcmp (code_c, "%01")))
{
g_string_append_c (decoded_component, '?');
index = index + 3;
continue;
}
else
{
g_string_free (decoded_component, TRUE);
g_free (tmp_component);
return NULL;
}
}
if (strcmp (code_a, "%02") == 0)
{
if (index == 0 || index == strlen (tmp_component) - 3)
{
g_string_append_c (decoded_component, '*');
index = index + 3;
continue;
}
else
{
g_string_free (decoded_component, TRUE);
g_free (tmp_component);
return NULL;
}
}
unescaped = g_uri_unescape_string (code_a, NULL);
if (unescaped && strchr (escapes, *unescaped))
{
g_string_append_c (decoded_component, '\\');
g_string_append (decoded_component, unescaped);
g_free (unescaped);
}
else if (unescaped)
{
g_string_append (decoded_component, unescaped);
g_free (unescaped);
}
else
{
g_string_free (decoded_component, TRUE);
g_free (tmp_component);
return NULL;
}
index = index + 3;
embedded = TRUE;
}
g_free (tmp_component);
return (g_string_free (decoded_component, FALSE));
}
/**
* @brief Unpack the sixth component of a URI CPE.
*
* @param[in] component The component to unpack.
*
* @param[out] cpe Pointer to the CPE struct where the unpacked and
* decoded values of the component are stored.
*/
static void
unpack_sixth_uri_component (const char *component, cpe_struct_t *cpe)
{
const char *start = component + 1;
const char *end;
char *edition, *sw_edition, *target_sw, *target_hw, *other;
end = strchr (start, '~');
if (start >= end || end == NULL)
edition = strdup ("");
else
edition = g_strndup (start, end - start);
if (end != NULL)
{
start = end + 1;
end = strchr (start, '~');
if (start >= end || end == NULL)
sw_edition = strdup ("");
else
sw_edition = g_strndup (start, end - start);
}
else
sw_edition = strdup ("");
if (end != NULL)
{
start = end + 1;
end = strchr (start, '~');
if (start >= end || end == NULL)
target_sw = strdup ("");
else
target_sw = g_strndup (start, end - start);
}
else
target_sw = strdup ("");
if (end != NULL)
{
start = end + 1;
end = strchr (start, '~');
if (start >= end || end == NULL)
target_hw = strdup ("");
else
target_hw = g_strndup (start, end - start);
}
else
target_hw = strdup ("");
if (end != NULL)
{
start = end + 1;
end = component + strlen (component);
if (start >= end)
other = strdup ("");
else
other = g_strndup (start, end - start);
}
else
other = strdup ("");
cpe->edition = decode_uri_component (edition);
g_free (edition);
cpe->sw_edition = decode_uri_component (sw_edition);
g_free (sw_edition);
cpe->target_sw = decode_uri_component (target_sw);
g_free (target_sw);
cpe->target_hw = decode_uri_component (target_hw);
g_free (target_hw);
cpe->other = decode_uri_component (other);
g_free (other);
}
/**
* @brief Get the indexth component of a formatted string CPE.
*
* @param[in] fs_cpe The formatted string CPE.
* @param[in] index The number of the component to get.
*
* @return The indexth component of the formatted string CPE.
*/
static char *
get_fs_component (const char *fs_cpe, int index)
{
char *component = NULL;
char *c;
char *component_start, *component_end;
gboolean escaped;
if (!fs_cpe)
return NULL;
if (*fs_cpe == '\0')
return ((char *) g_strdup (""));
c = (char *) fs_cpe;
/* find start of component */
escaped = FALSE;
if (index == 0)
component_start = c;
else
{
for (int i = 0; *c != '\0' && i < index; c++)
{
if (*c == ':' && !escaped)
i++;
else if (*c == '\\' && !escaped)
escaped = TRUE;
else
escaped = FALSE;
}
component_start = c;
}
/* find end of component */
escaped = FALSE;
if (*component_start == '\0')
component_end = component_start;
else
{
for (c = component_start; *c != '\0'; c++)
{
if (*c == ':' && !escaped)
break;
if (*c == '\\' && !escaped)
escaped = TRUE;
else
escaped = FALSE;
}
}
component_end = c;
if (component_start >= component_end || component_end == NULL)
component = (char *) g_strdup ("");
else
component = g_strndup (component_start, component_end - component_start);
return component;
}
/**
* @brief Unbind a formatted string CPE component.
*
* @param[in] component The component to unbind.
*
* @return The unbound component of the formatted string CPE.
*/
static char *
unbind_fs_component (char *component)
{
char *unbound_component;
if (strcmp (component, "*") == 0)
{
g_free (component);
return ((char *) g_strdup ("ANY"));
}
if (strcmp (component, "-") == 0)
{
g_free (component);
return ((char *) g_strdup ("NA"));
}
unbound_component = add_quoting (component);
g_free (component);
return unbound_component;
}
/**
* @brief Handle the quoting for an unbind formatted string CPE component.
*
* @param[in] component The component to add the quotings to.
*
* @return The component of the formatted string CPE with all necessary
* quotes added.
*/
static char *
add_quoting (const char *component)
{
GString *quoted_component;
char *tmp_component;
char *c;
gboolean embedded;
if (!component)
return NULL;
quoted_component = g_string_sized_new (2 * strlen (component));
tmp_component = (char *) g_strdup (component);
embedded = FALSE;
/* set all characters to lowercase */
for (c = tmp_component; *c; c++)
*c = tolower (*c);
c = tmp_component;
while (*c != '\0')
{
if (g_ascii_isalnum (*c) || *c == '_')
{
g_string_append_c (quoted_component, *c);
c++;
embedded = TRUE;
continue;
}
if (*c == '\\')
{
c++;
if (*c != '\0')
{
g_string_append_c (quoted_component, '\\');
g_string_append_c (quoted_component, *c);
embedded = TRUE;
c++;
continue;
}
}
if (*c == '*')
{
if ((c == tmp_component)
|| (c == tmp_component + strlen (tmp_component - 1)))
{
g_string_append_c (quoted_component, *c);
c++;
embedded = TRUE;
continue;
}
else
{
g_free (tmp_component);
return NULL;
}
}
if (*c == '?')
{
if ((c == tmp_component)
|| (c == tmp_component + strlen (tmp_component - 1))
|| (!embedded && (c > tmp_component) && (*(c - 1) == '?'))
|| (embedded && *(c + 1) == '?'))
{
g_string_append_c (quoted_component, *c);
c++;
embedded = FALSE;
continue;
}
else
{
g_free (tmp_component);
return NULL;
}
}
g_string_append_c (quoted_component, '\\');
g_string_append_c (quoted_component, *c);
c++;
embedded = TRUE;
}
g_free (tmp_component);
return (g_string_free (quoted_component, FALSE));
}
/**
* @brief Bind a CPE component for a URI CPE.
*
* @param[in] component The component to bind.
*
* @return The bound component for the URI CPE.
*/
static char *
bind_cpe_component_for_uri (const char *component)
{
if (!component)
return (g_strdup (""));
if (strcmp (component, "") == 0)
return (g_strdup (""));
if (strcmp (component, "ANY") == 0)
return (g_strdup (""));
if (strcmp (component, "NA") == 0)
return (g_strdup ("-"));
return (transform_for_uri (component));
}
/**
* @brief Transform a CPE component for a URI CPE.
*
* @param[in] component The component to transform.
*
* @return The transformed component for the URI CPE.
*/
static char *
transform_for_uri (const char *component)
{
GString *result;
char *tmp_component;
char *c;
if (!component)
return (g_strdup (""));
if (strcmp (component, "") == 0)
return (g_strdup (""));
tmp_component = g_strdup (component);
/* set all characters to lowercase */
for (c = tmp_component; *c; c++)
*c = tolower (*c);
result = g_string_new ("");
c = tmp_component;
while (*c)
{
if ((g_ascii_isalnum (*c) || *c == '_') && *c != '-')
{
g_string_append_c (result, *c);
c++;
continue;
}
if (*c == '\\')
{
c++;
if (*c != '\0')
{
char to_escape[2];
char *escaped;
to_escape[0] = *c;
to_escape[1] = '\0';
escaped = g_uri_escape_string (to_escape, NULL, FALSE);
g_string_append (result, escaped);
g_free (escaped);
c++;
}
continue;
}
if (*c == '?')
g_string_append (result, "%01");
if (*c == '*')
g_string_append (result, "%02");
c++;
}
g_free (tmp_component);
return (g_string_free (result, FALSE));
}
/**
* @brief Pack the sixth component of a URI CPE.
*
* @param[in] cpe The CPE struct with the components to pack.
*
* @return The packed component for the URI CPE.
*/
static char *
pack_sixth_uri_component (const cpe_struct_t *cpe)
{
if ((cpe->sw_edition == NULL || strcmp (cpe->sw_edition, "") == 0)
&& (cpe->target_sw == NULL || strcmp (cpe->target_sw, "") == 0)
&& (cpe->target_hw == NULL || strcmp (cpe->target_hw, "") == 0)
&& (cpe->other == NULL || strcmp (cpe->other, "") == 0))
{
if (strcmp (cpe->edition, "ANY") == 0)
return (g_strdup (""));
if (strcmp (cpe->edition, "NA") == 0)
return (g_strdup ("-"));
return (g_strdup (cpe->edition));
}
char *edition = bind_cpe_component_for_uri (cpe->edition);
char *sw_edition = bind_cpe_component_for_uri (cpe->sw_edition);
char *target_sw = bind_cpe_component_for_uri (cpe->target_sw);
char *target_hw = bind_cpe_component_for_uri (cpe->target_hw);
char *other = bind_cpe_component_for_uri (cpe->other);
GString *component;
component = g_string_new ("");
if (!((!sw_edition || strcmp (sw_edition, "") == 0)
&& (!target_sw || strcmp (target_sw, "") == 0)
&& (!target_hw || strcmp (target_hw, "") == 0)
&& (!other || strcmp (other, "") == 0)))
g_string_append_printf (component, "~%s~%s~%s~%s~%s", edition, sw_edition,
target_sw, target_hw, other);
else if (edition)
g_string_append (component, edition);
if (edition)
g_free (edition);
if (sw_edition)
g_free (sw_edition);
if (target_sw)
g_free (target_sw);
if (target_hw)
g_free (target_hw);
if (other)
g_free (other);
return (g_string_free (component, FALSE));
}
/**
* @brief Bind a CPE component for a formatted string CPE.
*
* @param[in] component The component to bind.
*
* @return The bound component for the formatted string CPE.
*/
static char *
bind_cpe_component_for_fs (const char *component)
{
if (!component)
return (g_strdup ("*"));
if (strcmp (component, "") == 0)
return (g_strdup ("*"));
if (strcmp (component, "ANY") == 0)
return (g_strdup ("*"));
if (strcmp (component, "NA") == 0)
return (g_strdup ("-"));
return (process_quoted_chars (component));
}
/**
* @brief Process the quoted characters of a CPE component for
* a formatted string CPE.
*
* @param[in] component The component to process.
*
* @return The processed component for the formatted string CPE.
*/
static char *
process_quoted_chars (const char *component)
{
if (!component)
return (g_strdup (""));
if (strcmp (component, "") == 0)
return (g_strdup (""));
GString *fs_component;
fs_component = g_string_new ("");
char *c = (char *) component;
char next_c;
while (*c)
{
if (*c != '\\')
{
g_string_append_c (fs_component, *c);
c++;
}
else
{
next_c = *(c + 1);
if (next_c == '.' || next_c == '-' || next_c == '_')
{
g_string_append_c (fs_component, next_c);
c += 2;
}
else if (next_c)
{
g_string_append_c (fs_component, '\\');
g_string_append_c (fs_component, next_c);
c += 2;
}
}
}
return (g_string_free (fs_component, FALSE));
}
/**
* @brief Initialize a CPE struct.
*
* @param[in,out] cpe The pointer to the CPE to initialize.
*/
void
cpe_struct_init (cpe_struct_t *cpe)
{
cpe->part = NULL;
cpe->vendor = NULL;
cpe->product = NULL;
cpe->version = NULL;
cpe->update = NULL;
cpe->edition = NULL;
cpe->sw_edition = NULL;
cpe->target_sw = NULL;
cpe->target_hw = NULL;
cpe->other = NULL;
cpe->language = NULL;
/* to keep the compiler satisfied */
cpe->part = cpe->part;
}
/**
* @brief Free a CPE struct.
*
* @param[in,out] cpe The CPE to be freed.
*/
void
cpe_struct_free (cpe_struct_t *cpe)
{
if (!cpe)
return;
if (cpe->part)
g_free (cpe->part);
if (cpe->vendor)
g_free (cpe->vendor);
if (cpe->product)
g_free (cpe->product);
if (cpe->version)
g_free (cpe->version);
if (cpe->update)
g_free (cpe->update);
if (cpe->edition)
g_free (cpe->edition);
if (cpe->sw_edition)
g_free (cpe->sw_edition);
if (cpe->target_sw)
g_free (cpe->target_sw);
if (cpe->target_hw)
g_free (cpe->target_hw);
if (cpe->other)
g_free (cpe->other);
if (cpe->language)
g_free (cpe->language);
}
/**
* @brief Cut of trailing ':' signs.
*
* @param[in,out] str The string to be processed.
*/
static void
trim_pct (char *str)
{
char *c;
if (!str)
return;
c = str + strlen (str) - 1;
while (c >= str)
{
if (*c == ':')
{
*c = '\0';
c--;
}
else
break;
}
}
/**
* @brief Get the percent code from the start of a string.
*
* @param[in] str The string to get the code from.
* @param[out] code The percent code.
*/
static void
get_code (char *code, const char *str)
{
code[0] = *str;
code[1] = *(str + 1);
code[2] = *(str + 2);
code[3] = '\0';
}
/**
* @brief Returns if source is a match for target. That means
* that source is a superset of target.
*
* @param[in] source The cpe_struct that represents a set of CPEs.
* @param[in] target The cpe_struct that represents a single CPE or
* or a set of CPEs that is checked if it is a
* subset of source meaning that it is matched by
* source.
*
* @return Returns if source is a match for target.
*/
gboolean
cpe_struct_match (cpe_struct_t *source, cpe_struct_t *target)
{
enum set_relation relation;
relation = compare_component (source->part, target->part);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->vendor, target->vendor);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->product, target->product);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->version, target->version);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->update, target->update);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->edition, target->edition);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->sw_edition, target->sw_edition);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->target_sw, target->target_sw);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->target_hw, target->target_hw);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->other, target->other);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->language, target->language);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
return TRUE;
}
/**
* @brief Returns if the part behind the version of source is a match
* for that part of target. That means, that source is a superset
* of target if also the first part matches.
*
* @param[in] source The cpe_struct that represents a set of CPEs.
* @param[in] target The cpe_struct that represents a single CPE or
* or a set of CPEs that is checked if it is a
* subset of source meaning that it is matched by
* source.
*
* @return Returns if source is a match for target.
*/
gboolean
cpe_struct_match_tail (cpe_struct_t *source, cpe_struct_t *target)
{
enum set_relation relation;
relation = compare_component (source->update, target->update);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->edition, target->edition);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->sw_edition, target->sw_edition);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->target_sw, target->target_sw);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->target_hw, target->target_hw);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->other, target->other);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
relation = compare_component (source->language, target->language);
if (relation != SUPERSET && relation != EQUAL)
return FALSE;
return TRUE;
}
/**
* @brief Returns if the component "source" is a match for the component
* "target". That means that source is a superset of target.
*
* @param[in] source The component of a cpe_struct.
* @param[in] target The component of a cpe_struct that is checked if it
* is a subset of source meaning that it is matched by
* source.
*
* @return Returns if source is a match for target.
*/
static enum set_relation
compare_component (const char *source, const char *target)
{
enum set_relation result;
char *source_cpy, *target_cpy;
char *c;
if (source)
source_cpy = g_strdup (source);
else
source_cpy = g_strdup ("ANY");
if (target)
target_cpy = g_strdup (target);
else
target_cpy = g_strdup ("ANY");
if (is_string (source_cpy))
{
/* set all characters to lowercase */
for (c = source_cpy; *c; c++)
*c = tolower (*c);
}
if (is_string (target_cpy))
{
/* set all characters to lowercase */
for (c = target_cpy; *c; c++)
*c = tolower (*c);
}
if (is_string (target_cpy) && has_wildcards (target_cpy))
{
g_free (source_cpy);
g_free (target_cpy);
return UNDEFINED;
}
if (strcmp (source_cpy, target_cpy) == 0)
{
g_free (source_cpy);
g_free (target_cpy);
return EQUAL;
}
if (strcmp (source_cpy, "ANY") == 0)
{
g_free (source_cpy);
g_free (target_cpy);
return SUPERSET;
}
if (strcmp (target_cpy, "ANY") == 0)
{
g_free (source_cpy);
g_free (target_cpy);
return SUBSET;
}
if (strcmp (target_cpy, "NA") == 0 || strcmp (source_cpy, "NA") == 0)
{
g_free (source_cpy);
g_free (target_cpy);
return DISJOINT;
}
result = compare_strings (source_cpy, target_cpy);
g_free (source_cpy);
g_free (target_cpy);
return result;
}
/**
* @brief Returns if the string of a component "source" is a match for the
* the string of a component "target". That means that source
* represents a superset of target.
*
* @param[in] source The string of a component of a cpe_struct.
* @param[in] target The string of a component of a cpe_struct that is
* checked if it represents a subset of source meaning
* that it is matched by source.
*
* @return Returns if source is a match for target.
*/
static enum set_relation
compare_strings (const char *source, const char *target)
{
int start = 0;
int end = strlen (source);
int begins = 0;
int ends = 0;
char *sub_source;
if (*source == '*')
{
start = 1;
begins = -1;
}
else
{
while (start < (int) strlen (source) && *(source + start) == '?')
{
start++;
begins++;
}
}
if (*(source + end - 1) == '*' && is_even_wildcards (source, end - 1))
{
end--;
ends = -1;
}
else
{
while (end > 0 && *(source + end - 1) == '?'
&& is_even_wildcards (source, end - 1))
{
end--;
ends++;
}
}
sub_source = g_strndup (source + start, end - start);
int index = -1;
int escapes = 0;
int leftover = strlen (target);
while (leftover > 0)
{
index = index_of (target, sub_source, index + 1);
if (index == -1)
break;
escapes = count_escapes (target, 0, index);
if (index > 0 && begins != -1 && begins < (index - escapes))
break;
escapes = count_escapes (target, index + 1, strlen (target));
leftover = strlen (target) - index - escapes - strlen (sub_source);
if (leftover > 0 && (ends != -1 && leftover > ends))
continue;
g_free (sub_source);
return SUPERSET;
}
g_free (sub_source);
return DISJOINT;
}
/**
* @brief Counts the number of unescaped escape signs ("\") in a specified
* part of a string.
*
* @param[in] str The string to be examined.
* @param[in] start The start position in the string where the examination
* begins.
* @param[in] end The end position in the string where the examination
* ends.
*
* @return Returns the number of unescaped escape signs in the specified
* part of the string.
*/
static int
count_escapes (const char *str, int start, int end)
{
int result = 0;
gboolean active = FALSE;
for (int i = 0; i < end && *(str + i) != '\0'; i++)
{
active = (!active && *(str + i) == '\\');
if (active && i >= start)
result++;
}
return result;
}
/**
* @brief Returns true if an even number of escape (backslash) characters
* precede the character at the index "index" in string "str".
*
* @param[in] str The string to be examined.
* @param[in] index The index where the examination starts.
*
* @return Returns if an even number of escape characters precede the
* character at index "index".
*/
static gboolean
is_even_wildcards (const char *str, int index)
{
int result = 0;
while (index > 0 && *(str + index - 1) == '\\')
{
index--;
result++;
}
return ((result % 2) == 0);
}
/**
* @brief Returns if a given string contains wildcards ("*" or "?").
*
* @param[in] str The string to be examined.
*
* @return Returns TRUE if the string contains wildcards. FALSE otherwise.
*/
static gboolean
has_wildcards (const char *str)
{
char *c = (char *) str;
gboolean active = FALSE;
while (*c != '\0')
{
if (!active && (*c == '?' || *c == '*'))
return TRUE;
if (!active && *c == '\\')
active = TRUE;
else
active = FALSE;
c++;
}
return FALSE;
}
/**
* @brief Searches the string "str" for the first occurrence of the string
* "sub_str", starting at the offset "offset" in "str".
*
* @param[in] str The string to be examined.
* @param[in] sub_str The string to be searched for in "str".
* @param[in] offset The offset where to start the search in "str".
*
* @return Returns the index where the string "sub_str" starts in "str", if
* the string "sub_str" was found, -1 otherwise.
*/
static int
index_of (const char *str, const char *sub_str, int offset)
{
char *start;
char *begin_substr;
if (offset > (int) strlen (str))
return -1;
start = (char *) str + offset;
begin_substr = strstr (start, sub_str);
if (begin_substr == NULL)
return -1;
return begin_substr - str;
}
/**
* @brief Returns if a string is an ordinary string and does not represent
* one of the logical values "ANY" or "NA".
*
* @param[in] str The string to be examined.
*
* @return Returns TRUE if the string "str" does not represent one of the
* logical values "ANY" or "NA". Returns FALSE otherwise.
*/
static gboolean
is_string (const char *str)
{
if (!str)
return TRUE;
return (strcmp (str, "ANY") && strcmp (str, "NA"));
}
|