FD.io VPP  v21.06-1-gbb7418cf9
Vector Packet Processing
elog.c File Reference
+ Include dependency graph for elog.c:

Go to the source code of this file.

Functions

static void elog_lock (elog_main_t *em)
 
static void elog_unlock (elog_main_t *em)
 
__clib_export void * elog_event_data (elog_main_t *em, elog_event_type_t *type, elog_track_t *track, u64 cpu_time)
 
static void new_event_type (elog_main_t *em, uword i)
 
static uword find_or_create_type (elog_main_t *em, elog_event_type_t *t)
 
word elog_event_type_register (elog_main_t *em, elog_event_type_t *t)
 register an event type More...
 
__clib_export word elog_track_register (elog_main_t *em, elog_track_t *t)
 register an event track More...
 
static uword parse_2digit_decimal (char *p, uword *number)
 
static u8fixed_format (u8 *s, char *fmt, char *result, uword *result_len)
 
__clib_export u8format_elog_event (u8 *s, va_list *va)
 
__clib_export u8format_elog_track_name (u8 *s, va_list *va)
 
__clib_export u8format_elog_track (u8 *s, va_list *args)
 
__clib_export char * format_one_elog_event (void *em_arg, void *ep_arg)
 
void elog_time_now (elog_time_stamp_t *et)
 
static i64 elog_time_stamp_diff_os_nsec (elog_time_stamp_t *t1, elog_time_stamp_t *t2)
 
static i64 elog_time_stamp_diff_cpu (elog_time_stamp_t *t1, elog_time_stamp_t *t2)
 
static f64 elog_nsec_per_clock (elog_main_t *em)
 
static void elog_alloc_internal (elog_main_t *em, u32 n_events, int free_ring)
 
__clib_export void elog_alloc (elog_main_t *em, u32 n_events)
 
__clib_export void elog_resize (elog_main_t *em, u32 n_events)
 
__clib_export void elog_init (elog_main_t *em, u32 n_events)
 
static uword elog_event_range (elog_main_t *em, uword *lo)
 
__clib_export elog_event_telog_peek_events (elog_main_t *em)
 convert event ring events to events, and return them as a vector. More...
 
__clib_export u32 elog_string (elog_main_t *em, char *fmt,...)
 add a string to the event-log string table More...
 
__clib_export elog_event_telog_get_events (elog_main_t *em)
 convert event ring events to events, and return them as a vector. More...
 
static void maybe_fix_string_table_offset (elog_event_t *e, elog_event_type_t *t, u32 offset)
 
static int elog_cmp (void *a1, void *a2)
 
__clib_export void elog_merge (elog_main_t *dst, u8 *dst_tag, elog_main_t *src, u8 *src_tag, f64 align_tweak)
 
static void serialize_elog_event (serialize_main_t *m, va_list *va)
 
static void unserialize_elog_event (serialize_main_t *m, va_list *va)
 
static void serialize_elog_event_type (serialize_main_t *m, va_list *va)
 
static void unserialize_elog_event_type (serialize_main_t *m, va_list *va)
 
static void serialize_elog_track (serialize_main_t *m, va_list *va)
 
static void unserialize_elog_track (serialize_main_t *m, va_list *va)
 
static void serialize_elog_time_stamp (serialize_main_t *m, va_list *va)
 
static void unserialize_elog_time_stamp (serialize_main_t *m, va_list *va)
 
__clib_export void serialize_elog_main (serialize_main_t *m, va_list *va)
 
__clib_export void unserialize_elog_main (serialize_main_t *m, va_list *va)
 
clib_error_telog_write_file_not_inline (elog_main_t *em, char *clib_file, int flush_ring)
 
__clib_export clib_error_telog_read_file_not_inline (elog_main_t *em, char *clib_file)
 

Variables

static char * elog_serialize_magic = "elog v0"
 

Function Documentation

◆ elog_alloc()

__clib_export void elog_alloc ( elog_main_t em,
u32  n_events 
)

Definition at line 501 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_alloc_internal()

static void elog_alloc_internal ( elog_main_t em,
u32  n_events,
int  free_ring 
)
static

Definition at line 488 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_cmp()

static int elog_cmp ( void *  a1,
void *  a2 
)
static

Definition at line 681 of file elog.c.

+ Here is the caller graph for this function:

◆ elog_event_data()

__clib_export void* elog_event_data ( elog_main_t em,
elog_event_type_t type,
elog_track_t track,
u64  cpu_time 
)

Definition at line 65 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_event_range()

static uword elog_event_range ( elog_main_t em,
uword lo 
)
static

Definition at line 536 of file elog.c.

+ Here is the caller graph for this function:

◆ elog_event_type_register()

word elog_event_type_register ( elog_main_t em,
elog_event_type_t t 
)

register an event type

Parameters
emelog_main_t *
telog_event_type_t * event to register
Returns
type index
Warning
Typically not called directly

Definition at line 104 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_get_events()

__clib_export elog_event_t* elog_get_events ( elog_main_t em)

convert event ring events to events, and return them as a vector.

Parameters
emelog_main_t *
Returns
event vector with timestamps in f64 seconds
Note
sets em->events to resulting vector.

Definition at line 626 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_init()

__clib_export void elog_init ( elog_main_t em,
u32  n_events 
)

Definition at line 513 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_lock()

static void elog_lock ( elog_main_t em)
inlinestatic

Definition at line 47 of file elog.c.

+ Here is the caller graph for this function:

◆ elog_merge()

__clib_export void elog_merge ( elog_main_t dst,
u8 dst_tag,
elog_main_t src,
u8 src_tag,
f64  align_tweak 
)

Definition at line 699 of file elog.c.

+ Here is the call graph for this function:

◆ elog_nsec_per_clock()

static f64 elog_nsec_per_clock ( elog_main_t em)
inlinestatic

Definition at line 479 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_peek_events()

__clib_export elog_event_t* elog_peek_events ( elog_main_t em)

convert event ring events to events, and return them as a vector.

Parameters
emelog_main_t *
Returns
event vector with timestamps in f64 seconds
Note
no side effects

Definition at line 557 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_read_file_not_inline()

__clib_export clib_error_t* elog_read_file_not_inline ( elog_main_t em,
char *  clib_file 
)

Definition at line 1199 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_resize()

__clib_export void elog_resize ( elog_main_t em,
u32  n_events 
)

Definition at line 507 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_string()

__clib_export u32 elog_string ( elog_main_t em,
char *  format,
  ... 
)

add a string to the event-log string table

Often combined with hashing and the T4 elog format specifier to display complex strings in offline tooling

Parameters
emelog_main_t *
formatchar *
VARARGS
Returns
u32 index to add to event log

Definition at line 582 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_time_now()

void elog_time_now ( elog_time_stamp_t et)

Definition at line 440 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_time_stamp_diff_cpu()

static i64 elog_time_stamp_diff_cpu ( elog_time_stamp_t t1,
elog_time_stamp_t t2 
)
inlinestatic

Definition at line 473 of file elog.c.

+ Here is the caller graph for this function:

◆ elog_time_stamp_diff_os_nsec()

static i64 elog_time_stamp_diff_os_nsec ( elog_time_stamp_t t1,
elog_time_stamp_t t2 
)
inlinestatic

Definition at line 467 of file elog.c.

+ Here is the caller graph for this function:

◆ elog_track_register()

__clib_export word elog_track_register ( elog_main_t em,
elog_track_t t 
)

register an event track

Parameters
emelog_main_t *
telog_track_t * track to register
Returns
track index
Note
this function is often called directly

Definition at line 198 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ elog_unlock()

static void elog_unlock ( elog_main_t em)
inlinestatic

Definition at line 55 of file elog.c.

+ Here is the caller graph for this function:

◆ elog_write_file_not_inline()

clib_error_t* elog_write_file_not_inline ( elog_main_t em,
char *  clib_file,
int  flush_ring 
)

Definition at line 1184 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ find_or_create_type()

static uword find_or_create_type ( elog_main_t em,
elog_event_type_t t 
)
static

Definition at line 85 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fixed_format()

static u8* fixed_format ( u8 s,
char *  fmt,
char *  result,
uword result_len 
)
static

Definition at line 249 of file elog.c.

+ Here is the caller graph for this function:

◆ format_elog_event()

__clib_export u8* format_elog_event ( u8 s,
va_list *  va 
)

Definition at line 296 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_elog_track()

__clib_export u8* format_elog_track ( u8 s,
va_list *  args 
)

Definition at line 408 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ format_elog_track_name()

__clib_export u8* format_elog_track_name ( u8 s,
va_list *  va 
)

Definition at line 399 of file elog.c.

◆ format_one_elog_event()

__clib_export char* format_one_elog_event ( void *  em_arg,
void *  ep_arg 
)

Definition at line 431 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ maybe_fix_string_table_offset()

static void maybe_fix_string_table_offset ( elog_event_t e,
elog_event_type_t t,
u32  offset 
)
static

Definition at line 634 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ new_event_type()

static void new_event_type ( elog_main_t em,
uword  i 
)
static

Definition at line 72 of file elog.c.

+ Here is the caller graph for this function:

◆ parse_2digit_decimal()

static uword parse_2digit_decimal ( char *  p,
uword number 
)
static

Definition at line 222 of file elog.c.

+ Here is the caller graph for this function:

◆ serialize_elog_event()

static void serialize_elog_event ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 867 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ serialize_elog_event_type()

static void serialize_elog_event_type ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 1032 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ serialize_elog_main()

__clib_export void serialize_elog_main ( serialize_main_t m,
va_list *  va 
)

Definition at line 1113 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ serialize_elog_time_stamp()

static void serialize_elog_time_stamp ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 1095 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ serialize_elog_track()

static void serialize_elog_track ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 1071 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unserialize_elog_event()

static void unserialize_elog_event ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 928 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unserialize_elog_event_type()

static void unserialize_elog_event_type ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 1051 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unserialize_elog_main()

__clib_export void unserialize_elog_main ( serialize_main_t m,
va_list *  va 
)

Definition at line 1147 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unserialize_elog_time_stamp()

static void unserialize_elog_time_stamp ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 1103 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ unserialize_elog_track()

static void unserialize_elog_track ( serialize_main_t m,
va_list *  va 
)
static

Definition at line 1083 of file elog.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ elog_serialize_magic

char* elog_serialize_magic = "elog v0"
static

Definition at line 1110 of file elog.c.