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
|
/* SPDX-FileCopyrightText: 2023 Greenbone AG
* SPDX-FileCopyrightText: 1998-2003 Renaud Deraison
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
/**
* @file plugutils.c
* @brief Plugin-specific stuff.
*/
#include "plugutils.h"
#include "kb_cache.h" // for get_main_kb
#include "network.h" // for OPENVAS_ENCAPS_IP
#include "scan_id.h"
#include "support.h" // for g_memdup2 workaround
#include <errno.h> // for errno
#include <gvm/base/hosts.h> // for g_vhost_t
#include <gvm/base/networking.h> // for port_protocol_t
#include <gvm/base/prefs.h> // for prefs_get_bool
#include <gvm/util/mqtt.h> // for mqtt_reset
#include <gvm/util/nvticache.h> // for nvticache_initialized
#include <magic.h>
#include <stdio.h> // for snprintf
#include <stdlib.h> // for exit
#include <string.h> // for strcmp
#include <sys/wait.h> // for wait
#include <unistd.h> // for fork
#undef G_LOG_DOMAIN
/**
* @brief GLib logging domain.
*/
#define G_LOG_DOMAIN "lib misc"
/* Used to allow debugging for openvas-nasl */
int global_nasl_debug = 0;
/* Track amount of KB memory used */
static size_t kb_usage = 0;
static size_t max_kb_usage;
void
init_kb_usage (void)
{
const char *usage_char;
int usage_int;
usage_char = prefs_get ("max_mem_kb");
if (usage_char)
{
usage_int = atoi (usage_char);
if (usage_int < 0)
{
max_kb_usage = 0;
}
else
{
max_kb_usage = (size_t) usage_int * 1024 * 1024;
}
}
else
max_kb_usage = 0;
}
static int
add_kb_usage (struct script_infos *args, size_t size)
{
if (max_kb_usage == 0)
return 0;
if (kb_usage > max_kb_usage)
return -1;
kb_usage += size;
if (kb_usage > max_kb_usage)
{
g_warning ("KB usage exceeded %lu MB. Unable to store any further KB "
"Items for script %s",
max_kb_usage / 1024 / 1024, args->name);
return -1;
}
return 0;
}
/* In case of multiple vhosts fork, this holds the value of the current vhost
* we're scanning.
*/
gvm_vhost_t *current_vhost = NULL;
/* @brief: Return the currently scanned vhost. */
const char *
plug_current_vhost (void)
{
if (current_vhost != NULL)
return current_vhost->value;
return NULL;
}
static int plug_fork_child (kb_t);
void
plug_set_dep (struct script_infos *args, const char *depname)
{
nvti_t *n = args->nvti;
gchar *old = nvti_dependencies (n);
gchar *new;
if (!depname)
return;
if (old)
{
new = g_strdup_printf ("%s, %s", old, depname);
nvti_set_dependencies (n, new);
g_free (new);
}
else
nvti_set_dependencies (n, depname);
}
static void
host_add_port_proto (struct script_infos *args, int portnum, char *proto)
{
char port_s[255];
snprintf (port_s, sizeof (port_s), "Ports/%s/%d", proto, portnum);
plug_set_key (args, port_s, ARG_INT, (void *) 1);
}
/**
* @brief Report state of preferences "unscanned_closed".
*
* @return 0 if pref is "yes", 1 otherwise.
*/
static int
unscanned_ports_as_closed (port_protocol_t ptype)
{
if (ptype == PORT_PROTOCOL_UDP)
return (prefs_get_bool ("unscanned_closed_udp") ? 0 : 1);
return (prefs_get_bool ("unscanned_closed") ? 0 : 1);
}
/**
* @param proto Protocol (udp/tcp). If NULL, "tcp" will be used.
*/
int
kb_get_port_state_proto (kb_t kb, int portnum, char *proto)
{
char port_s[255], *kbstr;
const char *prange = prefs_get ("port_range");
port_protocol_t port_type;
array_t *port_ranges;
if (!proto)
proto = "tcp";
if (!strcmp (proto, "udp"))
{
port_type = PORT_PROTOCOL_UDP;
kbstr = "Host/udp_scanned";
}
else
{
port_type = PORT_PROTOCOL_TCP;
kbstr = "Host/scanned";
}
/* Check that we actually scanned the port */
if (kb_item_get_int (kb, kbstr) <= 0)
return unscanned_ports_as_closed (port_type);
port_ranges = port_range_ranges (prange);
if (!port_in_port_ranges (portnum, port_type, port_ranges))
{
array_free (port_ranges);
return unscanned_ports_as_closed (port_type);
}
array_free (port_ranges);
/* Ok, we scanned it. What is its state ? */
snprintf (port_s, sizeof (port_s), "Ports/%s/%d", proto, portnum);
return kb_item_get_int (kb, port_s) > 0;
}
static int
host_get_port_state_proto (struct script_infos *args, int portnum, char *proto)
{
return kb_get_port_state_proto (args->key, portnum, proto);
}
int
host_get_port_state (struct script_infos *plugdata, int portnum)
{
return (host_get_port_state_proto (plugdata, portnum, "tcp"));
}
int
host_get_port_state_udp (struct script_infos *plugdata, int portnum)
{
return (host_get_port_state_proto (plugdata, portnum, "udp"));
}
/**
* @brief Check for duplicated vhosts before inserting a new one.
*
* @param args script info structure
* @param hostname hostname to check
*
* @return 0 if the vhosts was still not added. -1 if the vhosts already exists.
*/
static int
check_duplicated_vhost (struct script_infos *args, const char *hostname)
{
GSList *vhosts = NULL;
kb_t host_kb = NULL;
struct kb_item *current_vhosts = NULL;
/* Check for duplicate vhost value in args. */
vhosts = args->vhosts;
while (vhosts)
{
gvm_vhost_t *tmp = vhosts->data;
if (!strcmp (tmp->value, hostname))
{
g_warning ("%s: Value '%s' exists already", __func__, hostname);
return -1;
}
vhosts = vhosts->next;
}
/* Check for duplicate vhost value already added by other forked child of the
* same plugin. */
host_kb = args->key;
current_vhosts = kb_item_get_all (host_kb, "internal/vhosts");
if (!current_vhosts)
return 0;
while (current_vhosts)
{
if (!strcmp (current_vhosts->v_str, hostname))
{
g_warning ("%s: Value '%s' exists already", __func__, hostname);
kb_item_free (current_vhosts);
return -1;
}
current_vhosts = current_vhosts->next;
}
kb_item_free (current_vhosts);
return 0;
}
int
plug_add_host_fqdn (struct script_infos *args, const char *hostname,
const char *source)
{
gvm_vhost_t *vhost;
char **excluded;
if (!prefs_get_bool ("expand_vhosts") || !hostname || !source)
return -1;
if (check_duplicated_vhost (args, hostname))
return -1;
/* Check for excluded vhost value. */
if (prefs_get ("exclude_hosts"))
{
char **tmp = excluded = g_strsplit (prefs_get ("exclude_hosts"), ",", 0);
while (*tmp)
{
if (!strcmp (g_strstrip (*tmp), hostname))
{
g_strfreev (excluded);
return -1;
}
tmp++;
}
g_strfreev (excluded);
}
vhost = gvm_vhost_new (g_strdup (hostname), g_strdup (source));
args->vhosts = g_slist_prepend (args->vhosts, vhost);
return 0;
}
char *
plug_get_host_fqdn (struct script_infos *args)
{
GSList *vhosts = args->vhosts;
if (!args->vhosts)
return addr6_as_str (args->ip);
/* Workaround for rapid growth of forked processes ie. http_get() calls
* within foreach() loops. */
if (current_vhost)
return g_strdup (current_vhost->value);
while (vhosts)
{
int ret = plug_fork_child (args->key);
if (ret == 0)
{
current_vhost = vhosts->data;
return g_strdup (current_vhost->value);
}
else if (ret == -1)
return NULL;
vhosts = vhosts->next;
}
// Allow to return to the main process if parent process is openvas-nasl.
// So, the main process can do e.g. a kb clean up
if (args->standalone)
return NULL;
_exit (0);
}
GSList *
plug_get_host_fqdn_list (struct script_infos *args)
{
GSList *results = NULL, *vhosts = args->vhosts;
if (!args->vhosts)
results = g_slist_prepend (results, addr6_as_str (args->ip));
while (vhosts)
{
gvm_vhost_t *vhost = vhosts->data;
results = g_slist_prepend (results, g_strdup (vhost->value));
vhosts = vhosts->next;
}
return results;
}
char *
plug_get_host_source (struct script_infos *args, const char *hostname)
{
if (!args->vhosts)
return g_strdup ("IP-address");
if (hostname)
{
GSList *vhosts = args->vhosts;
/* Search for source of specified hostname/vhost. */
while (vhosts)
{
gvm_vhost_t *vhost = vhosts->data;
if (!strcmp (vhost->value, hostname))
return g_strdup (vhost->source);
vhosts = vhosts->next;
}
return NULL;
}
/* Call plug_get_host_fqdn() to set current_vhost (and fork, in case of
* multiple vhosts.) */
if (!current_vhost)
g_free (plug_get_host_fqdn (args));
return g_strdup (current_vhost->source);
}
struct in6_addr *
plug_get_host_ip (struct script_infos *args)
{
return args->ip;
}
char *
plug_get_host_ip_str (struct script_infos *desc)
{
return addr6_as_str (plug_get_host_ip (desc));
}
/**
* @brief Return string representation of the given msg_t.
*
* @param msg msg_t to transform
*
* @return string representation of the given msg_t if successful, else NULL.
*/
static const char *
msg_type_to_str (msg_t type)
{
gchar *type_str;
switch (type)
{
case ERRMSG:
type_str = "ERRMSG";
break;
case HOST_START:
type_str = "HOST_START";
break;
case HOST_END:
type_str = "HOST_END";
break;
case LOG:
type_str = "LOG";
break;
case HOST_DETAIL:
type_str = "HOST_DETAIL";
break;
case ALARM:
type_str = "ALARM";
break;
case DEADHOST:
type_str = "DEADHOST";
break;
default:
return NULL;
break;
}
return type_str;
}
/**
* @brief Check if the current main kb corresponds to the
* original scan main kb.
* @description Compares the scan id in get_scan_id, set at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param main_kb Current main kb.
*
* @return 0 on success, -1 on missing global scan_id, -2 on missing
* current_scan_id, -3 when inconsistent.
*/
int
check_kb_inconsistency (kb_t main_kb)
{
const char *original_scan_id;
char *current_scan_id;
original_scan_id = get_scan_id ();
if (original_scan_id == NULL)
return -1;
current_scan_id = kb_item_get_str (main_kb, ("internal/scanid"));
if (current_scan_id == NULL)
return -2;
if (!g_strcmp0 (original_scan_id, current_scan_id))
{
g_free (current_scan_id);
return 0;
}
g_warning ("KB inconsitency. %s writing into %s KB", original_scan_id,
current_scan_id);
g_free (current_scan_id);
return -3;
}
/**
* @brief calls check_kb_inconsistency and logs as debug when local scan_id is
missing.
* @description Compares the scan id in get_scan_id, set at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @return 0 on success, -1 on inconsistency.
*/
static int
check_kb_inconsistency_log (void)
{
char *current_scan_id;
kb_t kb = get_main_kb ();
int result = check_kb_inconsistency (kb);
switch (result)
{
case -3:
current_scan_id = kb_item_get_str (kb, ("internal/scanid"));
g_warning (
"%s: scan_id (%s) does not match global scan_id (%s); abort to "
"prevent data corruption",
__func__, current_scan_id, get_scan_id ());
g_free (current_scan_id);
_exit (1);
break;
case -1:
// a call without global scan id can happen in e.g. nasl-lint or
// openvas-nasl calls
break;
case -2:
g_warning (
"%s: No internal/scanid found; abort to prevent data corruption.",
__func__);
_exit (1);
break;
default:
{
// nothing
}
}
return 0;
}
/**
* @brief Check if the current kb corresponds to the
* original scanid, if it matches it kb_item_push_str.
* @description Compares the scan id in get_scan_id, set at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param kb Kb where to store the item into.
* @param name key for the given value.
* @param value to store under key within kb.
*
* @return 0 on success, -1 on inconsistency.
*/
int
kb_item_push_str_with_main_kb_check (kb_t kb, const char *name,
const char *value)
{
int result = check_kb_inconsistency_log ();
return result == 0 ? kb_item_push_str (kb, name, value) : -1;
}
/**
* @brief Check if the current kb corresponds to the
* original scanid, if it matches it call kb_item_set_str.
* @description Compares the scan id in get_scan_id, set at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param kb Kb where to store the item into.
* @param name key for the given value.
* @param value to store under key within kb.
*
* @return 0 on success, -1 on inconsistency.
*/
int
kb_item_set_str_with_main_kb_check (kb_t kb, const char *name,
const char *value, size_t len)
{
int result = check_kb_inconsistency_log ();
return result == 0 ? kb_item_set_str (kb, name, value, len) : -1;
}
/**
* @brief Check if the current kb corresponds to the
* original scanid, if it matches it call kb_item_add_str_unique.
* @description Compares the scan id in get_scan_id, set at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param kb Kb where to store the item into.
* @param name key for the given value.
* @param value to store under key within kb.
*
* @return 0 on success, -1 on inconsistency.
*/
int
kb_item_add_str_unique_with_main_kb_check (kb_t kb, const char *name,
const char *value, size_t len,
int pos)
{
int result = check_kb_inconsistency_log ();
return result == 0 ? kb_item_add_str_unique (kb, name, value, len, pos) : -1;
}
/**
* @brief Check if the current kb corresponds to the
* original scanid, if it matches it call kb_item_set_int.
* @description Compares the scan id in get_scan_id, set at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param kb Kb where to store the item into.
* @param name key for the given value.
* @param value to store under key within kb.
*
* @return 0 on success, -1 on inconsistency.
*/
int
kb_item_set_int_with_main_kb_check (kb_t kb, const char *name, int value)
{
int result = check_kb_inconsistency_log ();
return result == 0 ? kb_item_set_int (kb, name, value) : -1;
}
/**
* @brief Check if the current kb corresponds to the
* original scanid, if it matches it call kb_item_add_int.
* @description Compares the scan id in get_scan_id, add at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param kb Kb where to store the item into.
* @param name key for the given value.
* @param value to store under key within kb.
*
* @return 0 on success, -1 on inconsistency.
*/
int
kb_item_add_int_with_main_kb_check (kb_t kb, const char *name, int value)
{
int result = check_kb_inconsistency_log ();
return result == 0 ? kb_item_add_int (kb, name, value) : -1;
}
/**
* @brief Check if the current kb corresponds to the
* original scanid, if it matches it call kb_item_add_int_unique.
* @description Compares the scan id in get_scan_id, add at the beginning
* of the scan, with the one found in the main kb.
* Therefore it is mandatory that the global main_kb
* variable to be set.
* It helps to detect that the kb was not taken by another
* task/scan, and that the current plugins does not stores
* results in a wrong kb.
*
* @param kb Kb where to store the item into.
* @param name key for the given value.
* @param value to store under key within kb.
*
* @return 0 on success, -1 on inconsistency.
*/
int
kb_item_add_int_unique_with_main_kb_check (kb_t kb, const char *name, int value)
{
int result = check_kb_inconsistency_log ();
return result == 0 ? kb_item_add_int_unique (kb, name, value) : -1;
}
static int
is_utf8_encoded (const char *filename)
{
magic_t magic_cookie = magic_open (MAGIC_MIME_ENCODING);
int ret = 0;
if (!magic_cookie)
{
g_warning ("%s: It is not possible initialize magic db", __func__);
return -1;
}
if (magic_load (magic_cookie, NULL) != 0)
{
g_warning ("%s: It was not possible to load the default magic db",
__func__);
ret = -1;
goto magic_ret;
}
const char *file_encoding = magic_file (magic_cookie, filename);
if (!file_encoding)
{
g_warning ("%s: It was not possible to identify the file encoding for %s",
__func__, filename);
ret = -1;
goto magic_ret;
}
if (g_strstr_len (file_encoding, strlen (file_encoding), "utf-8"))
ret = 1;
magic_ret:
magic_close (magic_cookie);
return ret;
}
/**
* @brief Post a security message (e.g. LOG, NOTE, WARNING ...).
*
* @param oid The oid of the NVT
* @param desc The script infos where to get settings.
* @param port Port number related to the issue.
* @param proto Protocol related to the issue (tcp or udp).
* @param action The actual result text
* @param msg_type The message type.
* @param uri Location like file path or webservice URL.
*/
static void
proto_post_wrapped (const char *oid, struct script_infos *desc, int port,
const char *proto, const char *action, msg_t msg_type,
const char *uri)
{
const char *hostname = "";
char *buffer, *data, port_s[16] = "general";
char ip_str[INET6_ADDRSTRLEN];
GError *err = NULL;
GString *action_str;
gsize length;
/* Should not happen, just to avoid trouble stop here if no NVTI found */
if (!oid)
return;
if (action == NULL)
action_str = g_string_new ("");
else
{
action_str = g_string_new (action);
g_string_append (action_str, "\n");
}
if (port > 0)
snprintf (port_s, sizeof (port_s), "%d", port);
if (current_vhost)
hostname = current_vhost->value;
else if (desc->vhosts)
hostname = ((gvm_vhost_t *) desc->vhosts->data)->value;
addr6_to_str (plug_get_host_ip (desc), ip_str);
buffer = g_strdup_printf ("%s|||%s|||%s|||%s/%s|||%s|||%s|||%s",
msg_type_to_str (msg_type), ip_str,
hostname ? hostname : " ", port_s, proto, oid,
action_str->str, uri ? uri : "");
/* Convert to UTF-8 before sending to Manager only if necessary. */
if (is_utf8_encoded (desc->name) > 0)
data = g_strdup (buffer);
else
data = g_convert (buffer, -1, "UTF-8", "ISO_8859-1", NULL, &length, &err);
if (!data)
{
g_warning ("%s: Error converting to UTF-8: %s\nOriginal string: %s",
__func__, err->message, buffer);
g_free (buffer);
g_string_free (action_str, TRUE);
return;
}
kb_item_push_str_with_main_kb_check (get_main_kb (), "internal/results",
data);
g_free (data);
g_free (buffer);
g_string_free (action_str, TRUE);
}
void
proto_post_alarm (const char *oid, struct script_infos *desc, int port,
const char *proto, const char *action, const char *uri)
{
proto_post_wrapped (oid, desc, port, proto, action, ALARM, uri);
}
void
post_alarm (const char *oid, struct script_infos *desc, int port,
const char *action, const char *uri)
{
proto_post_alarm (oid, desc, port, "tcp", action, uri);
}
/**
* @brief Post a log message
*/
void
proto_post_log (const char *oid, struct script_infos *desc, int port,
const char *proto, const char *action, const char *uri)
{
proto_post_wrapped (oid, desc, port, proto, action, LOG, uri);
}
/**
* @brief Post a log message about a tcp port.
*/
void
post_log (const char *oid, struct script_infos *desc, int port,
const char *action)
{
proto_post_log (oid, desc, port, "tcp", action, NULL);
}
/**
* @brief Post a log message about a tcp port with a uri
*/
void
post_log_with_uri (const char *oid, struct script_infos *desc, int port,
const char *action, const char *uri)
{
proto_post_log (oid, desc, port, "tcp", action, uri);
}
void
proto_post_error (const char *oid, struct script_infos *desc, int port,
const char *proto, const char *action, const char *uri)
{
proto_post_wrapped (oid, desc, port, proto, action, ERRMSG, uri);
}
void
post_error (const char *oid, struct script_infos *desc, int port,
const char *action, const char *uri)
{
proto_post_error (oid, desc, port, "tcp", action, uri);
}
/**
* @brief Get the a plugins preference.
*
* Search in the preferences set by the client. If it is not
* present, search in redis cache for the default.
*
* @param[in] oid Script OID to get the preference from
* @param[in] name Name of the preference to get
* @param[in] pref_id Id of the preferences to get
*
* @return script preference on success, Null otherwise.
**/
char *
get_plugin_preference (const char *oid, const char *name, int pref_id)
{
GHashTable *prefs;
GHashTableIter iter;
char *cname = NULL, *retval = NULL;
void *itername, *itervalue;
char prefix[1024], suffix[1024];
prefs = preferences_get ();
if (!prefs || !nvticache_initialized () || !oid || (!name && pref_id < 0))
return NULL;
g_hash_table_iter_init (&iter, prefs);
if (pref_id >= 0)
{
snprintf (prefix, sizeof (prefix), "%s:%d:", oid, pref_id);
while (g_hash_table_iter_next (&iter, &itername, &itervalue))
{
if (g_str_has_prefix (itername, prefix))
{
retval = g_strdup (itervalue);
break;
}
}
}
else
{
cname = g_strdup (name);
g_strchomp (cname);
snprintf (prefix, sizeof (prefix), "%s:", oid);
snprintf (suffix, sizeof (suffix), ":%s", cname);
/* NVT preferences received in OID:PrefID:PrefType:PrefName form */
while (g_hash_table_iter_next (&iter, &itername, &itervalue))
{
if (g_str_has_prefix (itername, prefix)
&& g_str_has_suffix (itername, suffix))
{
retval = g_strdup (itervalue);
break;
}
}
}
/* If no value set by the user, get the default one. */
if (!retval)
{
GSList *nprefs, *tmp;
tmp = nprefs = nvticache_get_prefs (oid);
while (tmp)
{
if ((cname && !strcmp (cname, nvtpref_name (tmp->data)))
|| (pref_id >= 0 && pref_id == nvtpref_id (tmp->data)))
{
if (!strcmp (nvtpref_type (tmp->data), "radio"))
{
char **opts =
g_strsplit (nvtpref_default (tmp->data), ";", -1);
retval = g_strdup (opts[0]);
g_strfreev (opts);
}
else
retval = g_strdup (nvtpref_default (tmp->data));
break;
}
tmp = tmp->next;
}
g_slist_free_full (nprefs, (void (*) (void *)) nvtpref_free);
}
if (cname)
g_free (cname);
return retval;
}
/**
* @brief Get the file name of a plugins preference that is of type "file".
*
* As files sent to the server (e.g. as plugin preference) are stored at
* pseudo-random locations with different names, the "real" file name has to be
* looked up in a hashtable.
*
* @return Filename on disc for \p filename, NULL if not found or setup
* broken.
*/
const char *
get_plugin_preference_fname (struct script_infos *desc, const char *filename)
{
const char *content;
long contentsize = 0;
gint tmpfile;
gchar *tmpfilename;
GError *error = NULL;
content = get_plugin_preference_file_content (desc, filename);
if (content == NULL)
{
return NULL;
}
contentsize = get_plugin_preference_file_size (desc, filename);
if (contentsize <= 0)
return NULL;
tmpfile =
g_file_open_tmp ("openvas-file-upload.XXXXXX", &tmpfilename, &error);
if (tmpfile == -1)
{
g_message ("get_plugin_preference_fname: Could not open temporary"
" file for %s: %s",
filename, error->message);
g_error_free (error);
return NULL;
}
close (tmpfile);
if (!g_file_set_contents (tmpfilename, content, contentsize, &error))
{
g_message ("get_plugin_preference_fname: could set contents of"
" temporary file for %s: %s",
filename, error->message);
g_error_free (error);
return NULL;
}
return tmpfilename;
}
/**
* @brief Get the file contents of a plugins preference that is of type "file".
*
* As files sent to the scanner (e.g. as plugin preference) are stored in a hash
* table with an identifier supplied by the client as the key, the contents have
* to be looked up here.
*
* @param identifier Identifier that was supplied by the client when the file
* was uploaded.
*
* @return Contents of the file identified by \p identifier, NULL if not found
* or setup broken.
*/
char *
get_plugin_preference_file_content (struct script_infos *desc,
const char *identifier)
{
struct scan_globals *globals = desc->globals;
GHashTable *trans;
if (!globals)
return NULL;
trans = globals->files_translation;
if (!trans)
return NULL;
return g_hash_table_lookup (trans, identifier);
}
/**
* @brief Get the file size of a plugins preference that is of type "file".
*
* Files sent to the scanner (e.g. as plugin preference) are stored in a hash
* table with an identifier supplied by the client as the key. The size of the
* file is stored in a separate hash table with the same identifier as key,
* which can be looked up here.
*
* @param identifier Identifier that was supplied by the client when the file
* was uploaded.
*
* @return Size of the file identified by \p identifier, -1 if not found or
* setup broken.
*/
long
get_plugin_preference_file_size (struct script_infos *desc,
const char *identifier)
{
struct scan_globals *globals = desc->globals;
GHashTable *trans;
gchar *filesize_str;
if (!globals)
return -1;
trans = globals->files_size_translation;
if (!trans)
return -1;
filesize_str = g_hash_table_lookup (trans, identifier);
if (filesize_str == NULL)
return -1;
return atol (filesize_str);
}
void
plug_set_key_len (struct script_infos *args, char *name, int type,
const void *value, size_t len)
{
kb_t kb = plug_get_kb (args);
int pos = 0; // Append the item on the right position of the list
if (name == NULL || value == NULL)
return;
if (type == ARG_STRING)
{
if (add_kb_usage (args, len) == -1)
return;
kb_item_add_str_unique (kb, name, value, len, pos);
}
else if (type == ARG_INT)
kb_item_add_int_unique (kb, name, GPOINTER_TO_SIZE (value));
if (global_nasl_debug == 1)
{
if (type == ARG_STRING)
g_message ("set key %s -> %s", name, (char *) value);
else if (type == ARG_INT)
g_message ("set key %s -> %d", name, (int) GPOINTER_TO_SIZE (value));
}
}
void
plug_set_key (struct script_infos *args, char *name, int type,
const void *value)
{
plug_set_key_len (args, name, type, value, 0);
}
/**
* @brief Set volatile key with expire.
*
* @param args Script infos.
* @param name Key name.
* @param type Key type.
* @param value Key value.
* @param expire Key expire in seconds.
* @param len Len of value.
*/
void
plug_set_key_len_volatile (struct script_infos *args, char *name, int type,
const void *value, int expire, size_t len)
{
kb_t kb = plug_get_kb (args);
int pos = 0; // Append the item on the right position of the list
if (name == NULL || value == NULL || expire == -1)
return;
if (type == ARG_STRING)
kb_add_str_unique_volatile (kb, name, value, expire, len, pos);
else if (type == ARG_INT)
kb_add_int_unique_volatile (kb, name, GPOINTER_TO_SIZE (value),
GPOINTER_TO_SIZE (expire));
if (global_nasl_debug == 1)
{
if (type == ARG_STRING)
g_message ("set volatile key %s -> %s", name, (char *) value);
else if (type == ARG_INT)
g_message ("set volatile key %s -> %d", name,
(int) GPOINTER_TO_SIZE (value));
}
}
/**
* @brief Set volatile key with expire.
*
* @param args Script infos.
* @param name Key name.
* @param type Key type.
* @param value Key value.
* @param expire Key expire in seconds.
*/
void
plug_set_key_volatile (struct script_infos *args, char *name, int type,
const void *value, int expire)
{
plug_set_key_len_volatile (args, name, type, value, expire, 0);
}
void
plug_replace_key_len (struct script_infos *args, char *name, int type,
void *value, size_t len)
{
kb_t kb = plug_get_kb (args);
if (name == NULL || value == NULL)
return;
if (type == ARG_STRING)
{
if (add_kb_usage (args, len) == -1)
return;
kb_item_set_str (kb, name, value, len);
}
else if (type == ARG_INT)
kb_item_set_int (kb, name, GPOINTER_TO_SIZE (value));
if (global_nasl_debug == 1)
{
if (type == ARG_STRING)
g_message ("replace key %s -> %s", name, (char *) value);
else if (type == ARG_INT)
g_message ("replace key %s -> %d", name,
(int) GPOINTER_TO_SIZE (value));
}
}
void
plug_replace_key (struct script_infos *args, char *name, int type, void *value)
{
plug_replace_key_len (args, name, type, value, 0);
}
void
scanner_add_port (struct script_infos *args, int port, char *proto)
{
host_add_port_proto (args, port, proto);
}
kb_t
plug_get_kb (struct script_infos *args)
{
return args->key;
}
static void
plug_get_key_sigchld (int s)
{
int status;
(void) s;
wait (&status);
}
static void
sig_n (int signo, void (*fnc) (int))
{
struct sigaction sa;
sa.sa_handler = fnc;
sa.sa_flags = 0;
sigemptyset (&sa.sa_mask);
sigaction (signo, &sa, (struct sigaction *) 0);
}
/**
* @brief Spawns a new child process. Setups everything that is needed for a new
* process. Child must be handled by caller
*
* @param kb for redis connection
* @return int 0 for the child process, 1 for the parent process and -1 on
* failure
*/
static int
plug_fork_child (kb_t kb)
{
pid_t pid;
// TODO change forking to official channels
if ((pid = fork ()) == 0)
{
sig_n (SIGTERM, _exit);
mqtt_reset ();
kb_lnk_reset (kb);
kb_lnk_reset (get_main_kb ());
nvticache_reset ();
srand48 (getpid () + getppid () + time (NULL));
return 0;
}
else if (pid < 0)
{
g_warning ("%s(): fork() failed (%s)", __func__, strerror (errno));
return -1;
}
else
// the parent waits for the spawned process to finish to prevent DDOS on a
// host when multiple vhosts got spawned
waitpid (pid, NULL, 0);
return 1;
}
/**
* @brief Get values from a kb under the given key name.
*
* @param[in] args The script infos where to get the kb from.
* @param[in] name Key name to search in the kb.
* @param[in/out] type If 1 is given, the answer is forced to be KB_TYPE_INT
* type. Otherwise it returns the fetched type.
* @param[in] len Desired string length to be returned.
* @param[in] single In case of a list, fetch only the last element
*
* @return Null if no result, or a void pointer to the result in success.
*/
void *
plug_get_key (struct script_infos *args, char *name, int *type, size_t *len,
int single)
{
kb_t kb = args->key;
struct kb_item *res = NULL, *res_list;
if (type != NULL && *type != KB_TYPE_INT)
*type = -1;
if (kb == NULL)
return NULL;
if (single && type != NULL && *type != KB_TYPE_INT)
res = kb_item_get_single (kb, name, KB_TYPE_UNSPEC);
else if (type != NULL && *type == KB_TYPE_INT)
res = kb_item_get_single (kb, name, KB_TYPE_INT);
else
res = kb_item_get_all (kb, name);
if (res == NULL)
return NULL;
if (!res->next) /* No fork - good */
{
void *ret;
if (res->type == KB_TYPE_INT)
{
if (type != NULL)
*type = KB_TYPE_INT;
ret = g_memdup2 (&res->v_int, sizeof (res->v_int));
}
else
{
if (type != NULL)
*type = KB_TYPE_STR;
if (len)
*len = res->len;
ret = g_malloc0 (res->len + 1);
memcpy (ret, res->v_str, res->len + 1);
}
kb_item_free (res);
return ret;
}
/* More than one value - we will fork() then */
sig_n (SIGCHLD, plug_get_key_sigchld);
res_list = res;
while (res)
{
int pret = plug_fork_child (kb);
if (pret == 0)
{
/* Forked child. */
void *ret;
if (res->type == KB_TYPE_INT)
{
if (type != NULL)
*type = KB_TYPE_INT;
ret = g_memdup2 (&res->v_int, sizeof (res->v_int));
}
else
{
if (type != NULL)
*type = KB_TYPE_STR;
if (len)
*len = res->len;
ret = g_malloc0 (res->len + 1);
memcpy (ret, res->v_str, res->len + 1);
}
kb_item_free (res_list);
return ret;
}
else if (pret == -1)
return NULL;
res = res->next;
}
kb_item_free (res_list);
// Allow to return to the main process if parent process is openvas-nasl.
// So, the main process can do e.g. a kb clean up
if (args->standalone)
return NULL;
_exit (0);
}
/**
* Don't always return the first open port, otherwise
* we might get bitten by OSes doing active SYN flood
* countermeasures. Also, avoid returning 80 and 21 as
* open ports, as many transparent proxies are acting for these...
*/
unsigned int
plug_get_host_open_port (struct script_infos *desc)
{
kb_t kb = plug_get_kb (desc);
struct kb_item *res, *k;
int open21 = 0, open80 = 0;
#define MAX_CANDIDATES 16
u_short candidates[MAX_CANDIDATES];
int num_candidates = 0;
k = res = kb_item_get_pattern (kb, "Ports/tcp/*");
if (res == NULL)
return 0;
else
{
int ret;
char *s;
for (;;)
{
s = res->name + sizeof ("Ports/tcp/") - 1;
ret = atoi (s);
if (ret == 21)
open21 = 1;
else if (ret == 80)
open80 = 1;
else
{
candidates[num_candidates++] = ret;
if (num_candidates >= MAX_CANDIDATES)
break;
}
res = res->next;
if (res == NULL)
break;
}
kb_item_free (k);
if (num_candidates != 0)
return candidates[lrand48 () % num_candidates];
else if (open21)
return 21;
else if (open80)
return 80;
}
/* Not reachable */
return 0;
}
/** @todo
* Those brain damaged functions should probably be in another file
* They are use to remember who speaks SSL or not
*/
void
plug_set_port_transport (struct script_infos *args, int port, int tr)
{
char s[256];
snprintf (s, sizeof (s), "Transports/TCP/%d", port);
plug_set_key (args, s, ARG_INT, GSIZE_TO_POINTER (tr));
}
/* Return the transport encapsulation mode (OPENVAS_ENCAPS_*) for the
given PORT. If no such encapsulation mode has been stored in the
knowledge base (or its value is < 0), OPENVAS_ENCAPS_IP is
currently returned. */
int
plug_get_port_transport (struct script_infos *args, int port)
{
char s[256];
int trp;
snprintf (s, sizeof (s), "Transports/TCP/%d", port);
trp = kb_item_get_int (plug_get_kb (args), s);
if (trp >= 0)
return trp;
else
return OPENVAS_ENCAPS_IP; /* Change this to 0 for ultra smart SSL
negotiation, at the expense of possibly
breaking stuff */
}
static void
plug_set_ssl_item (struct script_infos *args, char *item, char *itemfname)
{
char s[256];
snprintf (s, sizeof (s), "SSL/%s", item);
plug_set_key (args, s, ARG_STRING, itemfname);
}
void
plug_set_ssl_cert (struct script_infos *args, char *cert)
{
plug_set_ssl_item (args, "cert", cert);
}
void
plug_set_ssl_key (struct script_infos *args, char *key)
{
plug_set_ssl_item (args, "key", key);
}
void
plug_set_ssl_pem_password (struct script_infos *args, char *key)
{
plug_set_ssl_item (args, "password", key);
}
/** @TODO Also, all plug_set_ssl*-functions set values that are only accessed
* in network.c:open_stream_connection under specific conditions.
* Check whether these conditions can actually occur. Document the
* functions on the way. */
void
plug_set_ssl_CA_file (struct script_infos *args, char *key)
{
plug_set_ssl_item (args, "CA", key);
}
|