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
|
/*
*
* (C) 2013-22 - ntop.org
*
*
* 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; either version 3 of the License, or
* (at your option) any later version.
*
* 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.
*
*/
#ifndef _NTOP_TYPEDEFS_H_
#define _NTOP_TYPEDEFS_H_
#ifndef __linux__
#ifndef TCP_ESTABLISHED
/* /usr/include/netinet/tcp.h */
enum {
TCP_ESTABLISHED = 1,
TCP_SYN_SENT,
TCP_SYN_RECV,
TCP_FIN_WAIT1,
TCP_FIN_WAIT2,
TCP_TIME_WAIT,
TCP_CLOSE,
TCP_CLOSE_WAIT,
TCP_LAST_ACK,
TCP_LISTEN,
TCP_CLOSING /* now a valid state */
};
#endif
#endif
typedef struct {
const char *string;
int64_t int_num;
double double_num;
} ParsedValue;
typedef enum {
no_host_mask = 0,
mask_local_hosts = 1,
mask_remote_hosts = 2
} HostMask;
/* Struct used to pass parameters when walking hosts and flows periodically to update their stats */
class AlertCheckLuaEngine;
class ThreadedActivityStats;
typedef struct {
lua_State *vm;
NetworkInterface *iface;
AlertCheckLuaEngine *acle;
struct timeval *tv;
time_t deadline;
bool no_time_left;
bool skip_checks;
ThreadedActivityStats *thstats;
u_int32_t cur_entries;
u_int32_t tot_entries;
} periodic_ht_state_update_user_data_t;
typedef struct {
struct timeval *tv;
} periodic_stats_update_user_data_t;
typedef enum {
/*
Two queues, one high- and one low-priority
*/
recipient_notification_priority_low = 0,
recipient_notification_priority_high = 1,
RECIPIENT_NOTIFICATION_MAX_NUM_PRIORITIES = 2
} RecipientNotificationPriority;
/* Keep in sync with alert_consts.alerts_granularities and Utils */
typedef enum {
no_periodicity = -1,
aperiodic_script = 0,
minute_script,
five_minute_script,
hour_script,
day_script,
/* IMPORTANT: update MAX_NUM_PERIODIC_SCRIPTS as new entries are added */
} ScriptPeriodicity;
typedef enum {
check_category_other = 0,
check_category_security = 1,
check_category_internals = 2,
check_category_network = 3,
check_category_system = 4,
check_category_ids_ips = 5, /* Intrusion prevention. Used for checks that add hosts to the jailed pool */
MAX_NUM_SCRIPT_CATEGORIES
} CheckCategory; /* Keep in sync with checks.check_categories in scripts/lua/modules/checks.lua */
typedef enum {
alert_category_other = 0,
alert_category_security = 1,
alert_category_internals = 2,
alert_category_network = 3,
alert_category_system = 4,
alert_category_ids_ips = 5,
MAX_NUM_ALERT_CATEGORIES
} AlertCategory; /* TODO: keep in sync with CheckCategory until we remove CheckCategory */
/*
This is a subset of CheckCategory as flow scripts fall only in this subset
*/
typedef enum {
score_category_network = 0,
score_category_security,
MAX_NUM_SCORE_CATEGORIES
} ScoreCategory;
#define MAX_NUM_PERIODIC_SCRIPTS 6
typedef enum {
trend_unknown = 0,
trend_up = 1,
trend_down = 2,
trend_stable = 3
} ValueTrend;
typedef enum {
location_none = 0,
location_local_only,
location_remote_only,
location_broadcast_domain_only,
location_private_only, /* Only 192.168.0.0/16 and other private */
location_public_only, /* Only non-private */
location_all,
} LocationPolicy;
typedef enum {
tcp_flow_state_filter_all = 0,
tcp_flow_state_established,
tcp_flow_state_connecting,
tcp_flow_state_closed,
tcp_flow_state_reset,
} TcpFlowStateFilter;
typedef enum {
traffic_type_all = 0,
traffic_type_one_way = 1,
traffic_type_bidirectional = 2,
} TrafficType;
/* keep in sync with Utils::policySource */
typedef enum {
policy_source_default = 0,
policy_source_pool = 1,
policy_source_protocol = 2,
policy_source_category = 3,
policy_source_device_protocol = 4,
policy_source_schedule = 5,
} L7PolicySource_t;
/* Status are handled in Lua (alert_consts.lua) */
typedef u_int32_t AlertType;
#define alert_none ((u_int8_t)-1)
typedef enum {
alert_level_none = 0,
alert_level_debug = 1,
alert_level_info = 2,
alert_level_notice = 3,
alert_level_warning = 4,
alert_level_error = 5,
alert_level_critical = 6,
alert_level_alert = 7,
alert_level_emergency = 8,
ALERT_LEVEL_MAX_LEVEL = 9
} AlertLevel;
/*
Used to group alert score into coarser-grained groups.
*/
typedef enum {
alert_level_group_none = 0,
alert_level_group_notice_or_lower = 1,
alert_level_group_warning = 2,
alert_level_group_error_or_higher = 3,
ALERT_LEVEL_GROUP_MAX_LEVEL = 4,
} AlertLevelGroup;
/*
Used to filter engaged alerts according to the role
NOTE: Keep in sync with Lua alert_roles.lua
*/
typedef enum {
alert_role_is_any = 0,
alert_role_is_attacker = 1,
alert_role_is_victim = 2,
alert_role_is_client = 3,
alert_role_is_server = 4,
alert_role_is_none = 5,
} AlertRole;
/*
Keep in sync with alert_entities.lua entity_id
*/
typedef enum {
alert_entity_none = -1,
alert_entity_interface = 0,
alert_entity_host = 1,
alert_entity_network = 2,
alert_entity_snmp_device = 3,
alert_entity_flow = 4,
alert_entity_mac = 5,
alert_entity_host_pool = 6,
alert_entity_user = 7,
alert_entity_am_host = 8,
alert_entity_system = 9,
alert_entity_test = 10,
alert_entity_asn = 11,
alert_entity_l7 = 12,
/* Add new entities above ^ and do not exceed alert_entity_other */
alert_entity_other = 15,
ALERT_ENTITY_MAX_NUM_ENTITIES = 16
} AlertEntity;
typedef enum {
IPV4 = 4,
IPV6 = 6
} IPVersion;
/* Used to queue/dequeue elements in recipient queues via AlertFifoQueue.h */
typedef struct {
AlertLevel alert_severity;
AlertCategory alert_category;
u_int32_t score;
char *alert;
} AlertFifoItem;
struct zmq_msg_hdr_v0 {
char url[32];
u_int32_t version;
u_int32_t size;
};
struct zmq_msg_hdr {
char url[16];
u_int8_t version, source_id;
u_int16_t size;
u_int32_t msg_id;
};
typedef u_int8_t dump_mac_t[DUMP_MAC_SIZE];
typedef char macstr_t[MACSTR_SIZE];
typedef struct {
u_int8_t counter[NUM_MINUTES_PER_DAY];
} activity_bitmap;
enum SQLfield { SF_NONE, SF_SELECT, SF_FROM, SF_WHERE, SF_AND, SF_LIMIT, SF_TOK };
#ifndef __OpenBSD__
#define bpf_timeval timeval
#endif
typedef struct ether80211q {
u_int16_t vlanId;
u_int16_t protoType;
} Ether80211q;
typedef enum {
ebpf_event_type_unknown = 0,
ebpf_event_type_tcp_accept,
ebpf_event_type_tcp_connect,
ebpf_event_type_tcp_connect_failed,
ebpf_event_type_tcp_close,
epbf_event_type_tcp_retransmit,
ebpf_event_type_udp_send,
ebpf_event_type_udp_recv,
} eBPFEventType;
typedef struct {
u_int32_t pid, father_pid;
char *process_name, *father_process_name;
char *uid_name, *father_uid_name;
u_int32_t uid /* User Id */, gid; /* Group Id */
u_int32_t father_uid /* User Id */, father_gid; /* Group Id */
u_int32_t actual_memory, peak_memory;
} ProcessInfo;
typedef enum {
container_info_data_type_unknown,
container_info_data_type_k8s,
container_info_data_type_docker
} ContainerInfoDataType;
typedef struct {
char *id;
char *name;
union {
struct {
char *pod;
char *ns;
} k8s;
struct {
/* Reseved for future use */
} docker;
} data;
ContainerInfoDataType data_type;
} ContainerInfo;
typedef struct {
int conn_state;
u_int64_t rcvd_bytes, sent_bytes;
u_int32_t retx_pkts, lost_pkts;
u_int32_t in_segs, out_segs, unacked_segs;
double rtt, rtt_var;
} TcpInfo;
/* Handle vendor-proprietary applications.
Must stay with 32-bit integers as, at least sonicwall, uses
32-bit application ids. */
typedef struct {
u_int32_t pen;
u_int32_t app_id;
u_int32_t remapped_app_id;
} custom_app_t;
/* IMPORTANT: whenever the Parsed_FlowSerial is changed, nProbe must be updated too */
typedef struct zmq_remote_stats {
char remote_ifname[32], remote_ifaddress[64];
char remote_probe_address[64], remote_probe_public_address[64];
char remote_probe_version[64], remote_probe_os[64];
char remote_probe_license[64], remote_probe_edition[64];
char remote_probe_maintenance[64];
u_int8_t source_id, num_exporters;
u_int64_t remote_bytes, remote_pkts, num_flow_exports;
u_int32_t remote_ifspeed, remote_time, local_time, avg_bps, avg_pps;
u_int32_t remote_lifetime_timeout, remote_idle_timeout, remote_collected_lifetime_timeout;
u_int32_t export_queue_full, too_many_flows, elk_flow_drops,
sflow_pkt_sample_drops, flow_collection_drops, flow_collection_udp_socket_drops;
struct {
u_int64_t nf_ipfix_flows;
u_int64_t sflow_samples;
} flow_collection;
} ZMQ_RemoteStats;
typedef struct zmq_template {
u_int32_t pen, field;
const char *format, *name, *descr;
} ZMQ_Template;
typedef struct zmq_field_map {
u_int32_t pen, field;
const char *map;
} ZMQ_FieldMap;
typedef struct zmq_field_value_map {
u_int32_t pen, field, value;
const char *map;
} ZMQ_FieldValueMap;
struct vm_ptree {
lua_State* vm;
AddressTree *ptree;
};
struct active_flow_stats {
u_int32_t num_flows,
ndpi_bytes[NDPI_MAX_SUPPORTED_PROTOCOLS+NDPI_MAX_NUM_CUSTOM_PROTOCOLS],
breeds_bytes[NUM_BREEDS];
};
struct grev1_header {
u_int16_t flags_and_version;
u_int16_t proto;
};
struct string_list {
char *str;
struct string_list *prev, *next;
};
typedef enum {
flow_check_protocol_detected = 0,
flow_check_periodic_update,
flow_check_flow_end,
flow_check_flow_begin,
flow_check_flow_none /* Flow check not bound to protoDetected, periodicUpdate, flowEnd, flowBegin */
} FlowChecks;
/* NOTE: Throw modules/alert_keys.lua as it has been merged with modules/alert_keys.lua */
/* NOTE: keep in sync with modules/alert_keys.lua */
typedef enum {
flow_alert_normal = 0,
flow_alert_blacklisted = 1,
flow_alert_blacklisted_country = 2,
flow_alert_flow_blocked = 3,
flow_alert_data_exfiltration = 4,
flow_alert_device_protocol_not_allowed = 5,
flow_alert_dns_data_exfiltration = 6,
flow_alert_dns_invalid_query = 7,
flow_alert_elephant_flow = 8,
flow_alert_elephant_remote_to_local = 9, /* No longer used, can be recycled */
flow_alert_external = 10,
flow_alert_longlived = 11,
flow_alert_low_goodput = 12,
flow_alert_malicious_signature = 13,
flow_alert_internals = 14,
flow_alert_potentially_dangerous = 15,
flow_alert_remote_to_remote = 16,
flow_alert_suspicious_tcp_probing = 17, /* No longer used, can be recycled */
flow_alert_suspicious_tcp_syn_probing = 18, /* No longer used, can be recycled */
flow_alert_tcp_connection_issues = 19, /* No longer used, can be recycled */
flow_alert_tcp_connection_refused = 20,
flow_alert_tcp_severe_connection_issues = 21, /* No longer used, merged with flow_alert_tcp_connection_issues */
flow_alert_tls_certificate_expired = 22,
flow_alert_tls_certificate_mismatch = 23,
flow_alert_tls_old_protocol_version = 24,
flow_alert_tls_unsafe_ciphers = 25,
flow_alert_udp_unidirectional = 26,
flow_alert_web_mining_detected = 27,
flow_alert_tls_certificate_selfsigned = 28,
flow_alert_binary_application_transfer = 29,
flow_alert_known_proto_on_non_std_port = 30, /* TODO rename to alert_ndpi_known_protocol_on_non_standard_port */
flow_alert_flow_risk = 31, /* No longer used, each risk is reported individually */
flow_alert_unexpected_dhcp_server = 32,
flow_alert_unexpected_dns_server = 33,
flow_alert_unexpected_smtp_server = 34,
flow_alert_unexpected_ntp_server = 35,
flow_alert_zero_tcp_window = 36,
flow_alert_iec_invalid_transition = 37, /* To be implemented */
flow_alert_remote_to_local_insecure_proto = 38,
flow_alert_ndpi_url_possible_xss = 39,
flow_alert_ndpi_url_possible_sql_injection = 40,
flow_alert_ndpi_url_possible_rce_injection = 41,
flow_alert_ndpi_http_suspicious_user_agent = 42,
flow_alert_ndpi_http_numeric_ip_host = 43,
flow_alert_ndpi_http_suspicious_url = 44,
flow_alert_ndpi_http_suspicious_header = 45,
flow_alert_ndpi_tls_not_carrying_https = 46,
flow_alert_ndpi_suspicious_dga_domain = 47,
flow_alert_ndpi_malformed_packet = 48,
flow_alert_ndpi_ssh_obsolete_server = 49,
flow_alert_ndpi_smb_insecure_version = 50,
flow_alert_ndpi_tls_suspicious_esni_usage = 51,
flow_alert_ndpi_unsafe_protocol = 52,
flow_alert_ndpi_dns_suspicious_traffic = 53,
flow_alert_ndpi_tls_missing_sni = 54,
flow_alert_iec_unexpected_type_id = 55, /* To be implemented */
flow_alert_tcp_no_data_exchanged = 56,
flow_alert_remote_access = 57,
flow_alert_lateral_movement = 58,
flow_alert_periodicity_changed = 59,
flow_alert_ndpi_tls_cert_validity_too_long = 60,
flow_alert_ndpi_ssh_obsolete_client = 61,
flow_alert_ndpi_clear_text_credentials = 62,
flow_alert_ndpi_http_suspicious_content = 63,
flow_alert_ndpi_dns_large_packet = 64,
flow_alert_ndpi_dns_fragmented = 65,
flow_alert_ndpi_invalid_characters = 66,
flow_alert_broadcast_non_udp_traffic = 67,
flow_alert_ndpi_possible_exploit = 68,
flow_alert_ndpi_tls_certificate_about_to_expire = 69,
MAX_DEFINED_FLOW_ALERT_TYPE, /* Leave it as last member */
MAX_FLOW_ALERT_TYPE = 127 /* Constrained by `Bitmap128 alert_map` inside Flow.h */
} FlowAlertTypeEnum;
typedef struct {
FlowAlertTypeEnum id;
AlertCategory category;
} FlowAlertType;
typedef struct {
FlowAlertType alert_type;
const char *alert_lua_name;
} FlowAlertTypeExtended;
/*
Each C++ host check must have an entry here,
returned with HostCheckID getID()
*/
typedef enum {
host_alert_normal = 0,
host_alert_smtp_server_contacts = 1,
host_alert_dns_server_contacts = 2,
host_alert_ntp_server_contacts = 3,
host_alert_flow_flood = 4,
host_alert_syn_scan = 5,
host_alert_syn_flood = 6,
host_alert_domain_names_contacts = 7,
host_alert_p2p_traffic = 8,
host_alert_dns_traffic = 9,
host_alert_flows_anomaly = 10,
host_alert_score_anomaly = 11,
host_alert_remote_connection = 12,
host_alert_host_log = 13,
host_alert_dangerous_host = 14,
host_alert_ntp_traffic = 15,
host_alert_countries_contacts = 16,
host_alert_score_threshold = 17,
host_alert_icmp_flood = 18,
host_alert_pkt_threshold = 19,
MAX_DEFINED_HOST_ALERT_TYPE, /* Leave it as last member */
MAX_HOST_ALERT_TYPE = 32 /* Constrained by HostAlertBitmap */
} HostAlertTypeEnum;
typedef struct {
HostAlertTypeEnum id;
AlertCategory category;
} HostAlertType;
class HostAlert;
typedef std::pair<HostAlert *, bool> HostAlertReleasedPair;
typedef Bitmap<u_int32_t> HostAlertBitmap;
typedef enum {
host_check_http_replies_requests_ratio = 0,
host_check_dns_replies_requests_ratio,
host_check_syn_flood,
host_check_syn_scan,
host_check_flow_flood,
host_check_ntp_server_contacts,
host_check_smtp_server_contacts,
host_check_countries_contacts,
host_check_dns_server_contacts,
host_check_score_host,
host_check_p2p_traffic,
host_check_dns_traffic,
host_check_flow_anomaly,
host_check_score_anomaly,
host_check_remote_connection,
host_check_dangerous_host,
host_check_ntp_traffic,
host_check_domain_names_contacts,
host_check_score_threshold,
host_check_icmp_flood,
host_check_pkt_threshold,
NUM_DEFINED_HOST_CHECKS, /* Leave it as last member */
} HostCheckID;
typedef enum {
flow_lua_call_exec_status_ok = 0, /* Call executed successfully */
flow_lua_call_exec_status_not_executed_script_failure, /* Call NOT executed as the script failed to load (syntax?) */
flow_lua_call_exec_status_not_executed_no_time_left, /* Call NOT executed as the deadline was approaching */
flow_lua_call_exec_status_not_executed_unknown_call, /* Call NOT executed as the function to be called is unknown */
flow_lua_call_exec_status_not_executed_shutdown_in_progress, /* Call NOT executed as a shutdown was in progress */
flow_lua_call_exec_status_not_executed_vm_not_allocated, /* Call NOT executed as the vm wasn't allocated */
flow_lua_call_exec_status_not_executed_not_pending, /* Call NOT executed as other hooks have already been exec. */
flow_lua_call_exec_status_unsupported_call, /* Call NOT executed as not supported */
} FlowLuaCallExecStatus;
typedef enum {
details_normal = 0,
details_high,
details_higher,
details_max,
} DetailsLevel;
typedef enum {
/* Flows */
column_client = 0,
column_server,
column_vlan,
column_proto_l4,
column_ndpi,
column_duration,
column_thpt,
column_bytes,
column_info,
column_client_rtt,
column_server_rtt,
/* Hosts */
column_ip,
column_alerts,
column_name,
column_since,
column_asn,
column_asname,
column_local_network_id,
column_local_network,
column_country,
column_mac,
column_os,
column_num_flows, /* = column_incomingflows + column_outgoingflows */
column_num_dropped_flows, /* for bridge interfaces */
/* column_thpt, */
column_traffic,
/* sort criteria */
column_traffic_sent,
column_traffic_rcvd,
column_traffic_unknown,
column_num_flows_as_client,
column_num_flows_as_server,
column_total_num_alerted_flows_as_client,
column_total_num_alerted_flows_as_server,
column_total_num_unreachable_flows_as_client,
column_total_num_unreachable_flows_as_server,
column_total_num_retx_sent,
column_total_num_retx_rcvd,
column_total_alerts,
column_pool_id,
column_score,
column_score_as_client,
column_score_as_server,
/* Macs */
column_num_hosts,
column_manufacturer,
column_device_type,
column_arp_total,
column_arp_sent,
column_arp_rcvd,
column_last_seen,
column_first_seen,
column_obs_point
} sortField;
typedef struct {
u_int32_t samplesGenerated; /* The sequence number of this counter sample */
u_int32_t deviceIP, ifIndex, ifType, ifSpeed;
char *ifName;
bool ifFullDuplex, ifAdminStatus, ifOperStatus, ifPromiscuousMode;
u_int64_t ifInOctets, ifInPackets, ifInErrors,
ifOutOctets, ifOutPackets, ifOutErrors;
ContainerInfo container_info;
bool container_info_set;
} sFlowInterfaceStats;
typedef struct {
const char *class_name;
const luaL_Reg *class_methods;
} ntop_class_reg;
typedef enum {
walker_hosts = 0,
walker_flows,
walker_macs,
walker_ases,
walker_countries,
walker_vlans,
walker_oses,
walker_obs
} WalkerType;
typedef enum {
flowhashing_none = 0,
flowhashing_probe_ip,
flowhashing_iface_idx,
flowhashing_ingress_iface_idx,
flowhashing_vlan,
flowhashing_vrfid, /* VRF Id */
flowhashing_probe_ip_and_ingress_iface_idx,
} FlowHashingEnum;
typedef enum {
hash_entry_state_allocated = 0,
hash_entry_state_flow_notyetdetected, /* Flow only */
hash_entry_state_flow_protocoldetected, /* Flow only */
hash_entry_state_active,
hash_entry_state_idle,
} HashEntryState;
typedef enum {
threaded_activity_state_unknown = -1,
threaded_activity_state_sleeping,
threaded_activity_state_queued,
threaded_activity_state_running,
} ThreadedActivityState;
typedef enum {
device_proto_allowed = 0,
device_proto_forbidden_master,
device_proto_forbidden_app
} DeviceProtoStatus;
struct keyval {
const char *key;
char *val;
};
class StringCache {
public:
std::string value;
time_t expire;
};
PACK_ON
struct arp_header {
u_int16_t ar_hrd;/* Format of hardware address. */
u_int16_t ar_pro;/* Format of protocol address. */
u_int8_t ar_hln;/* Length of hardware address. */
u_int8_t ar_pln;/* Length of protocol address. */
u_int16_t ar_op;/* ARP opcode (command). */
u_char arp_sha[6];/* sender hardware address */
u_int32_t arp_spa;/* sender protocol address */
u_char arp_tha[6];/* target hardware address */
u_int32_t arp_tpa;/* target protocol address */
} PACK_OFF;
PACK_ON
struct arp_packet {
u_char dst_mac[6], src_mac[6];
u_int16_t proto;
struct arp_header arph;
} PACK_OFF;
PACK_ON
struct dhcp_packet {
u_int8_t msgType;
u_int8_t htype;
u_int8_t hlen;
u_int8_t hops;
u_int32_t xid;/* 4 */
u_int16_t secs;/* 8 */
u_int16_t flags;
u_int32_t ciaddr;/* 12 */
u_int32_t yiaddr;/* 16 */
u_int32_t siaddr;/* 20 */
u_int32_t giaddr;/* 24 */
u_int8_t chaddr[16]; /* 28 */
u_int8_t sname[64]; /* 44 */
u_int8_t file[128]; /* 108 */
u_int32_t magic; /* 236 */
u_int8_t options[308];
} PACK_OFF;
/* http://en.wikipedia.org/wiki/SCTP_packet_structure */
PACK_ON
struct sctphdr {
/* Common Header */
u_int16_t sport, dport;
u_int32_t verification_tag; /* A 32-bit random value created during initialization to distinguish stale packets from a previous connection. */
u_int32_t checksum; /* CRC32c algorithm */
} PACK_OFF;
#ifdef NTOPNG_PRO
typedef struct {
char *host_or_mac;
time_t lifetime;
UT_hash_handle hh; /* makes this structure hashable */
} volatile_members_t;
#endif
/*
NOTE:
Keep in sync with discover.lua (asset_icons)
*/
typedef enum {
device_unknown = 0,
device_printer,
device_video,
device_workstation,
device_laptop,
device_tablet,
device_phone,
device_tv,
device_networking,
device_wifi,
device_nas,
device_multimedia,
device_iot,
device_max_type /* Leave it at the end */
} DeviceType;
typedef struct {
NDPI_PROTOCOL_BITMASK clientAllowed, serverAllowed;
} DeviceProtocolBitmask;
class SNMP;
typedef struct {
u_int32_t pktRetr, pktOOO, pktLost, pktKeepAlive;
} FlowTCPPacketStats;
typedef struct {
u_int8_t num_get, num_post, num_head, num_put, num_other;
u_int8_t num_1xx, num_2xx, num_3xx, num_4xx, num_5xx;
} FlowHTTPStats;
typedef struct {
u_int8_t num_a, num_ns, num_cname, num_soa,
num_ptr, num_mx, num_txt, num_aaaa,
num_any, num_other;
u_int8_t num_replies_ok, num_replies_error;
} FlowDNSStats;
/* Forward class declarations for the Lua context */
class NetworkStats;
class Host;
class Flow;
class ThreadedActivity;
class ThreadedActivityStats;
struct ntopngLuaContext {
char *allowed_ifname, *user, *group, *csrf;
char *sqlite_hosts_filter, *sqlite_flows_filter;
bool sqlite_filters_loaded;
void *zmq_context, *zmq_subscriber;
struct mg_connection *conn;
AddressTree *allowedNets;
NetworkInterface *iface;
AddressTree *addr_tree;
SNMP *snmpBatch, *snmpAsyncEngine[MAX_NUM_ASYNC_SNMP_ENGINES];
Host *host;
NetworkStats *network;
Flow *flow;
bool localuser;
u_int16_t observationPointId;
/* Capabilities bitmap */
u_int64_t capabilities;
/* Packet capture */
struct {
bool captureInProgress;
pthread_t captureThreadLoop;
pcap_t *pd;
pcap_dumper_t *dumper;
u_int32_t end_capture;
} pkt_capture;
/* Live capture written to mongoose socket */
struct {
u_int32_t capture_until, capture_max_pkts, num_captured_packets;
void *matching_host;
bool bpfFilterSet;
struct bpf_program fcode;
/* Status */
bool pcaphdr_sent;
bool stopped;
} live_capture;
/*
Indicate the time when the vm will be reloaded.
This can be used so that Lua scripts running in an infinite-loop fashion, e.g., notifications.lua,
can know when to break so they can be reloaded with new configurations.
Useful when user scripts change or when recipient configurations change.
*/
time_t next_reload;
/* Periodic scripts (ThreadedActivity.cpp) */
time_t deadline;
const ThreadedActivity *threaded_activity;
ThreadedActivityStats *threaded_activity_stats;
#if defined(NTOPNG_PRO)
BinAnalysis *bin;
#endif
};
typedef enum {
located_on_lan_interface = 1,
located_on_wan_interface,
located_on_unknown_interface,
} MacLocation;
typedef enum {
interface_type_UNKNOWN = 0,
interface_type_PCAP,
interface_type_PCAP_DUMP,
interface_type_ZMQ,
interface_type_VLAN,
interface_type_FLOW,
interface_type_VIEW,
interface_type_PF_RING,
interface_type_NETFILTER,
interface_type_DIVERT,
interface_type_DUMMY,
interface_type_ZC_FLOW,
interface_type_SYSLOG
} InterfaceType;
/* Update Flow::dissectHTTP when extending the type below */
/* Keep in sync with discover.os2label */
typedef enum {
os_unknown = 0,
os_linux,
os_windows,
os_macos,
os_ios,
os_android,
os_laserjet,
os_apple_airport,
os_max_os, /* Keep as last element */
os_any
} OSType;
/* Action to be performed after ntopng shutdown*/
typedef enum {
after_shutdown_nop = 0,
after_shutdown_reboot = 1,
after_shutdown_poweroff = 2,
after_shutdown_restart_self = 3,
} AfterShutdownAction;
typedef struct {
bool admin;
char *allowedIfname;
char *allowedNets;
char *language;
} HTTPAuthenticator;
/*
An enum to identify possible capabilities for non-admin web users.
Enum i-th will represent the i-th bit in a 64-bit bitmap of user capabilities
*/
typedef enum {
capability_pools = 0,
capability_notifications = 1,
capability_snmp = 2,
capability_active_monitoring = 3,
capability_preferences = 4,
capability_developer = 5,
capability_checks = 6,
capability_flowdevices = 7,
capability_alerts = 8,
capability_historical_flows = 9,
MAX_NUM_USER_CAPABILITIES = 10 /* Do NOT go above 63 */
} UserCapabilities;
typedef struct {
double namelookup, connect, appconnect, pretransfer, redirect, start, total;
} HTTPTranferStats;
typedef struct {
lua_State* vm;
time_t last_conn_check;
struct {
u_int32_t download, upload;
} bytes;
} ProgressState;
struct pcap_disk_timeval {
u_int32_t tv_sec;
u_int32_t tv_usec;
};
struct pcap_disk_pkthdr {
struct pcap_disk_timeval ts; /* time stamp */
u_int32_t caplen; /* length of portion present */
u_int32_t len; /* length this packet (off wire) */
};
typedef struct dhcp_range {
IpAddress first_ip;
IpAddress last_ip;
} dhcp_range;
typedef struct cpu_load_stats {
float load;
} cpu_load_stats;
typedef struct grouped_alerts_counters {
std::map<std::pair<AlertEntity, AlertType>, u_int32_t> types;
std::map<std::pair<AlertEntity, AlertLevel>, u_int32_t> severities;
} grouped_alerts_counters;
/* ICMP stats required for timeseries generation */
typedef struct ts_icmp_stats {
u_int16_t echo_packets_sent;
u_int16_t echo_packets_rcvd;
u_int16_t echo_reply_packets_sent;
u_int16_t echo_reply_packets_rcvd;
} ts_icmp_stats;
class AlertableEntity;
typedef void (alertable_callback)(AlertEntity alert_entity_type, AlertableEntity *alertable, void *user_data);
typedef struct bcast_domain_info {
bool is_interface_network;
u_int64_t hits;
} bcast_domain_info;
typedef enum ts_driver {
ts_driver_rrd = 0,
ts_driver_influxdb,
ts_driver_prometheus
} TsDriver;
/* Wrapper for pcap_if_t and pfring_if_t */
typedef struct _ntop_if_t {
/* pcap fields */
char *name;
char *description;
/* PF_RING related fields */
char *module;
int license;
_ntop_if_t *next;
} ntop_if_t;
typedef enum {
service_allowed = 0,
service_denied,
service_undecided,
service_unknown
} ServiceAcceptance;
typedef enum {
ntopng_edition_community,
ntopng_edition_pro,
ntopng_edition_enterprise_m,
ntopng_edition_enterprise_l
} NtopngEdition;
#endif /* _NTOP_TYPEDEFS_H_ */
|