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
|
/*
Copyright (C) 2021 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#include <json/json.h>
#ifndef VISIBILITY_PRIVATE
#define VISIBILITY_PRIVATE private:
#endif
#include "sinsp_inet.h"
#include "sinsp_public.h"
#include "scap.h"
#include "gen_filter.h"
#include "settings.h"
typedef class sinsp sinsp;
typedef class sinsp_threadinfo sinsp_threadinfo;
namespace test_helpers {
class event_builder;
class sinsp_mock;
}
///////////////////////////////////////////////////////////////////////////////
// Event arguments
///////////////////////////////////////////////////////////////////////////////
typedef enum filtercheck_field_flags
{
EPF_NONE = 0,
EPF_FILTER_ONLY = 1 << 0, ///< this field can only be used as a filter.
EPF_PRINT_ONLY = 1 << 1, ///< this field can only be printed.
EPF_REQUIRES_ARGUMENT = 1 << 2, ///< this field includes an argument, under the form 'property.argument'.
EPF_TABLE_ONLY = 1 << 3, ///< this field is designed to be used in a table and won't appear in the field listing.
EPF_INFO = 1 << 4, ///< this field contains summary information about the event.
EPF_CONVERSATION = 1 << 5, ///< this field can be used to identify conversations.
}filtercheck_field_flags;
/*!
\brief Information about a filter/formatting field.
*/
typedef struct filtercheck_field_info
{
ppm_param_type m_type; ///< Field type.
filtercheck_field_flags m_flags; ///< Field flags.
ppm_print_format m_print_format; ///< If this is a numeric field, this flag specifies if it should be rendered as octal, decimal or hex.
char m_name[64]; ///< Field name.
char m_display[64]; ///< Field display name (short description). May be empty.
char m_description[1024]; ///< Field description.
}filtercheck_field_info;
/** @defgroup event Event manipulation
* Classes to manipulate events, extract their content and convert them into strings.
* @{
*/
/*!
\brief Wrapper that exports the libscap event tables.
*/
class SINSP_PUBLIC sinsp_evttables
{
public:
const struct ppm_event_info* m_event_info; ///< List of events supported by the capture and analysis subsystems. Each entry fully documents an event and its parameters.
const struct ppm_syscall_desc* m_syscall_info_table; ///< List of system calls that the capture subsystem recognizes, including the ones that are not decoded yet.
};
/*!
\brief Event parameter wrapper.
This class describes a raw event coming from the driver.
*/
class SINSP_PUBLIC sinsp_evt_param
{
public:
char* m_val; ///< Pointer to the event parameter data.
uint32_t m_len; ///< Length of the parameter pointed by m_val.
private:
inline void init(char* valptr, uint32_t len)
{
m_val = valptr;
m_len = len;
}
friend class sinsp_evt;
};
/*!
\brief Event class.
This class is returned by \ref sinsp::next() and encapsulates the state
related to a captured event, and includes a bunch of members to manipulate
events and their parameters, including parsing, formatting and extracting
state like the event process or FD.
*/
class SINSP_PUBLIC sinsp_evt : public gen_event
{
public:
/*!
\brief How to render an event parameter to string.
*/
enum param_fmt
{
PF_NORMAL = (1 << 0), ///< Normal screen output
PF_JSON = (1 << 1), ///< Json formatting with data in normal screen format
PF_SIMPLE = (1 << 2), ///< Reduced output, e.g. not type character for FDs
PF_HEX = (1 << 3), ///< Hexadecimal output
PF_HEXASCII = (1 << 4), ///< Hexadecimal + ASCII output
PF_EOLS = (1 << 5), ///< Normal + end of lines
PF_EOLS_COMPACT = (1 << 6), ///< Normal + end of lines but with no force EOL at the beginning
PF_BASE64 = (1 << 7), ///< Base64 output
PF_JSONEOLS = (1 << 8), ///< Json formatting with data in hexadecimal format
PF_JSONHEX = (1 << 9), ///< Json formatting with data in hexadecimal format
PF_JSONHEXASCII = (1 << 10), ///< Json formatting with data in hexadecimal + ASCII format
PF_JSONBASE64 = (1 << 11), ///< Json formatting with data in base64 format
};
/*!
\brief Event subcategory specialization based on the fd type.
*/
enum subcategory
{
SC_UNKNOWN = 0,
SC_NONE = 1,
SC_OTHER = 2,
SC_FILE = 3,
SC_NET = 4,
SC_IPC = 5,
};
enum fd_number_type
{
INVALID_FD_NUM = -100000
};
/*!
\brief Information regarding an event category, enriched with fd state.
*/
struct category
{
ppm_event_category m_category; ///< Event category from the driver
subcategory m_subcategory; ///< Domain for IO and wait events
};
sinsp_evt();
sinsp_evt(sinsp* inspector);
~sinsp_evt();
/*!
\brief Set the inspector.
*/
void inspector(sinsp *value)
{
m_inspector = value;
}
/*!
\brief Get the incremental number of this event.
*/
inline uint64_t get_num() const
{
return m_evtnum;
}
/*!
\brief Get the number of the CPU where this event was captured.
*/
inline int16_t get_cpuid() const
{
return m_cpuid;
}
/*!
\brief Get the event type.
\note For a list of event types, refer to \ref etypes.
*/
inline uint16_t get_type() const override
{
return m_pevt->type;
}
/*!
\brief Get the event's flags.
*/
inline ppm_event_flags get_info_flags() const
{
return m_info->flags;
}
/*!
\brief Get the event's category.
*/
inline ppm_event_category get_info_category() const
{
return m_info->category;
}
/*!
\brief Return the event direction: in or out.
*/
event_direction get_direction() const;
/*!
\brief Get the event timestamp.
\return The event timestamp, in nanoseconds from epoch
*/
inline uint64_t get_ts() const override
{
return m_pevt->ts;
}
/*!
\brief Return the event name string, e.g. 'open' or 'socket'.
*/
const char* get_name() const;
/*!
\brief Return the event category.
*/
inline ppm_event_category get_category() const
{
return m_info->category;
}
/*!
\brief Get the ID of the thread that generated the event.
*/
int64_t get_tid();
/*!
\brief Return the information about the thread that generated the event.
\param query_os_if_not_found if this is a live a capture and this flag is
set to true, scan the /proc file system to find process information in
case the thread is not in the table.
*/
sinsp_threadinfo* get_thread_info(bool query_os_if_not_found = false);
/*!
\brief Return the information about the FD on which this event operated.
\note For events that are not I/O related, get_fd_info() returns NULL.
*/
inline sinsp_fdinfo_t* get_fd_info()
{
return m_fdinfo;
}
inline bool fdinfo_name_changed() const
{
return m_fdinfo_name_changed;
}
inline void set_fdinfo_name_changed(bool changed)
{
m_fdinfo_name_changed = changed;
}
/*!
\brief Return the number of the FD associated with this event.
\note For events that are not I/O related, get_fd_num() returns sinsp_evt::INVALID_FD_NUM.
*/
int64_t get_fd_num();
/*!
\brief Return the number of parameters that this event has.
*/
uint32_t get_num_params();
/*!
\brief Get the name of one of the event parameters, e.g. 'fd' or 'addr'.
\param id The parameter number.
*/
const char* get_param_name(uint32_t id);
/*!
\brief Get the metadata that describes one of this event's parameters.
\param id The parameter number.
\note Refer to the g_event_info structure in driver/event_table.c for
a list of event descriptions.
*/
const struct ppm_param_info* get_param_info(uint32_t id);
/*!
\brief Get a parameter in raw format.
\param id The parameter number.
*/
sinsp_evt_param* get_param(uint32_t id);
/*!
\brief Get a parameter in raw format.
\param name The parameter name.
*/
const sinsp_evt_param* get_param_value_raw(const char* name);
/*!
\brief Get a parameter as a C++ string.
\param name The parameter name.
\param resolved If true, the library will try to resolve the parameter
before returning it. For example, and FD number will be converted into
the correspondent file, TCP tuple, etc.
*/
std::string get_param_value_str(const std::string& name, bool resolved = true);
/*!
\brief Return the event's category, based on the event type and the FD on
which the event operates.
*/
void get_category(OUT sinsp_evt::category* cat);
#ifdef HAS_FILTERING
/*!
\brief Return true if the event has been rejected by the filtering system.
*/
bool is_filtered_out();
scap_dump_flags get_dump_flags(OUT bool* should_drop);
#endif
/*!
\brief Return whether or not a simple consumer that privileges low overhead to
full event capture should consider this event. (Generally, these events are
automatically filtered out, but some events related to internal tracking are
returned by next() anyway).
*/
bool simple_consumer_consider();
inline uint16_t get_source() const override
{
return ESRC_SINSP;
}
/*!
\brief Returns true if this event represents a system call error,
false otherwise.
*/
bool is_syscall_error() const;
/*!
\brief Returns true if this event represents a file open system
call error, false otherwise.
Precondition: is_syscall_error() must return true.
*/
bool is_file_open_error() const;
/*!
\brief Returns true if this event represents a file-related system
call error (including open errors), false otherwise.
Precondition: is_syscall_error() must return true.
*/
bool is_file_error() const;
/*!
\brief Returns true if this event represents a network-related system
call error, false otherwise.
Precondition: is_syscall_error() must return true.
*/
bool is_network_error() const;
uint64_t get_lastevent_ts() const;
// Doxygen doesn't understand VISIBILITY_PRIVATE
#ifdef _DOXYGEN
private:
#endif
void set_iosize(uint32_t size);
uint32_t get_iosize();
std::string get_base_dir(uint32_t id, sinsp_threadinfo *tinfo);
const char* get_param_as_str(uint32_t id, OUT const char** resolved_str, param_fmt fmt = PF_NORMAL);
Json::Value get_param_as_json(uint32_t id, OUT const char** resolved_str, param_fmt fmt = PF_NORMAL);
const char* get_param_value_str(const char* name, OUT const char** resolved_str, param_fmt fmt = PF_NORMAL);
inline void init_keep_threadinfo()
{
m_flags = EF_NONE;
m_info = &(m_event_info_table[m_pevt->type]);
m_fdinfo = NULL;
m_fdinfo_name_changed = false;
m_iosize = 0;
m_poriginal_evt = NULL;
}
inline void init()
{
init_keep_threadinfo();
m_tinfo_ref.reset();
m_tinfo = NULL;
}
inline void init(uint8_t* evdata, uint16_t cpuid)
{
m_flags = EF_NONE;
m_pevt = (scap_evt *)evdata;
m_info = &(m_event_info_table[m_pevt->type]);
m_tinfo_ref.reset();
m_tinfo = NULL;
m_fdinfo = NULL;
m_fdinfo_name_changed = false;
m_iosize = 0;
m_cpuid = cpuid;
m_evtnum = 0;
m_poriginal_evt = NULL;
}
inline void init(scap_evt *scap_event,
ppm_event_info * ppm_event,
sinsp_threadinfo *threadinfo,
sinsp_fdinfo_t *fdinfo)
{
m_pevt = scap_event;
m_info = ppm_event;
m_tinfo_ref.reset(); // we don't own the threadinfo so don't try to manage its lifetime
m_tinfo = threadinfo;
m_fdinfo = fdinfo;
}
inline void load_params()
{
uint32_t j;
uint32_t nparams;
sinsp_evt_param par;
// If we're reading a capture created with a newer version, it may contain
// new parameters. If instead we're reading an older version, the current
// event table entry may contain new parameters.
// Use the minimum between the two values.
nparams = m_info->nparams < m_pevt->nparams ? m_info->nparams : m_pevt->nparams;
char *valptr;
union {
uint16_t* lens16;
uint32_t* lens32;
} lens;
const bool large_payload = get_info_flags() & EF_LARGE_PAYLOAD;
if (large_payload) {
lens.lens32 = (uint32_t *)((char *)m_pevt + sizeof(struct ppm_evt_hdr));
// The offset in the block is instead always based on the capture value.
valptr = (char *)lens.lens32 + m_pevt->nparams * sizeof(uint32_t);
} else
{
lens.lens16 = (uint16_t*)((char*)m_pevt + sizeof(struct ppm_evt_hdr));
// The offset in the block is instead always based on the capture value.
valptr = (char *)lens.lens16 + m_pevt->nparams * sizeof(uint16_t);
}
m_params.clear();
for(j = 0; j < nparams; j++)
{
if (large_payload) {
par.init(valptr, lens.lens32[j]);
valptr += lens.lens32[j];
} else {
par.init(valptr, lens.lens16[j]);
valptr += lens.lens16[j];
}
m_params.push_back(par);
}
}
std::string get_param_value_str(uint32_t id, bool resolved);
std::string get_param_value_str(const char* name, bool resolved = true);
char* render_fd(int64_t fd, const char** resolved_str, sinsp_evt::param_fmt fmt);
int render_fd_json(Json::Value *ret, int64_t fd, const char** resolved_str, sinsp_evt::param_fmt fmt);
uint32_t get_dump_flags();
VISIBILITY_PRIVATE
enum flags
{
SINSP_EF_NONE = 0,
SINSP_EF_PARAMS_LOADED = 1,
SINSP_EF_IS_TRACER = (1 << 1),
};
sinsp* m_inspector;
scap_evt* m_pevt;
scap_evt* m_poriginal_evt; // This is used when the original event is replaced by a different one (e.g. in the case of user events)
char *m_pevt_storage; // In some cases an alternate buffer is used to hold m_pevt. This points to that storage.
uint16_t m_cpuid;
uint64_t m_evtnum;
uint32_t m_flags;
bool m_params_loaded;
const struct ppm_event_info* m_info;
std::vector<sinsp_evt_param> m_params;
std::vector<char> m_paramstr_storage;
std::vector<char> m_resolved_paramstr_storage;
// reference to keep threadinfo alive. currently only used for synthetic container event thread info
// it should either be null, or point to the same place as m_tinfo
std::shared_ptr<sinsp_threadinfo> m_tinfo_ref;
sinsp_threadinfo* m_tinfo;
sinsp_fdinfo_t* m_fdinfo;
// If true, then the associated fdinfo changed names as a part
// of parsing this event.
bool m_fdinfo_name_changed;
uint32_t m_iosize;
int32_t m_errorcode;
int32_t m_rawbuf_str_len;
#ifdef HAS_FILTERING
bool m_filtered_out;
#endif
const struct ppm_event_info* m_event_info_table;
friend class sinsp;
friend class sinsp_parser;
friend class sinsp_threadinfo;
friend class sinsp_analyzer;
friend class sinsp_filter_check_event;
friend class sinsp_filter_check_thread;
friend class sinsp_dumper;
friend class sinsp_analyzer_fd_listener;
friend class sinsp_analyzer_parsers;
friend class lua_cbacks;
friend class sinsp_container_manager;
friend class sinsp_table;
friend class sinsp_cursesui;
friend class sinsp_baseliner;
friend class capture_job_handler;
friend class capture_job;
friend class sinsp_memory_dumper;
friend class sinsp_memory_dumper_job;
friend class protocol_manager;
friend class test_helpers::event_builder;
friend class test_helpers::sinsp_mock;
};
/*@}*/
|