/* * Copyright (c) 2015 Cisco and/or its affiliates. * 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. */ /* Copyright (c) 2005,2009 Eliot Dresselhaus Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /* High speed event logger */ /** \file The fine-grained event logger allows lightweight, thread-safe event logging at minimum cost. In typical operation, logging a single event costs around 80ns on x86_64. It's appropriate for at-least per-frame event-logging in vector packet processing. See https://wiki.fd.io/view/VPP/elog for more information. */ #ifndef included_clib_elog_h #define included_clib_elog_h #include #include /* for ASSERT */ #include #include /* for clib_cpu_time_now */ #include typedef struct { union { /** Absolute time stamp in CPU clock cycles. */ u64 time_cycles; /** Absolute time as floating point number in seconds. */ f64 time; }; /** Event type index. */ u16 type; /** Track for this event. Tracks allow events to be sorted and displayed by track. Think of 2 dimensional display with time and track being the x and y axes. */ u16 track; /** 20-bytes of data follows, pads to 32 bytes. */ u8 data[20]; } elog_event_t; typedef struct { /** Type index plus one assigned to this type. This is used to mark type as seen. */ u32 type_index_plus_one; /** String table as a vector constructed when type is registered. */ char **enum_strings_vector; /** Format string. (example: "my-event (%d,%d)"). */ char *format; /** Specifies how arguments to format are parsed from event data. String of characters '0' '1' or '2' '3' to specify log2 size of data (e.g. for u8, u16, u32 or u64), 's' means a null-terminated C string 't' means argument is an index into enum string table for this type. 'e' is a float, 'f' is a double. */ char *format_args; /** Function name generating event. */ char *function; /** Number of elements in string enum table. */ u32 n_enum_strings; /** String table for enum/number to string formatting. */ char *enum_strings[]; } elog_event_type_t; typedef struct { /** Track name vector. */ char *name; /** Set to one when track has been added to main structure. */ u32 track_index_plus_one; } elog_track_t; typedef struct { /** CPU cycle counter. */ u64 cpu; /** OS timer in nano secs since epoch 3/30/2017, see elog_time_now() */ u64 os_nsec; } elog_time_stamp_t; typedef struct { /** Total number of events in buffer. */ u32 n_total_events; /** When count reaches limit logging is disabled. This is used for event triggers. */ u32 n_total_events_disable_limit; /** Dummy event to use when logger is disabled. */ elog_event_t dummy_event; /** Power of 2 number of elements in ring. */ uword event_ring_size; /** Vector of events (circular buffer). Power of 2 size. Used when events are being collected. */ elog_event_t *event_ring; /** Vector of event types. */ elog_event_type_t *event_types; /** Hash table mapping type format to type index. */ uword *event_type_by_format; /** Events may refer to strings in string table. */ char *string_table; /** Vector of tracks. */ elog_track_t *tracks; /** Default track. */ elog_track_t default_track; /** Place holder for CPU clock frequency. */ clib_time_t cpu_timer; /** Timestamps */ elog_time_stamp_t init_time, serialize_time; /** SMP lock, non-zero means locking required */ uword *lock; /** Use serialize_time and init_time to give estimate for cpu clock frequency. */ f64 nsec_per_cpu_clock; /** Vector of events converted to generic form after collection. */ elog_event_t *events; } elog_main_t; /** @brief Return number of events in the event-log buffer @param em elog_main_t * @return number of events in the buffer */ always_inline uword elog_n_events_in_buffer (elog_main_t * em) { return clib_min (em->n_total_events, em->event_ring_size); } /** @brief Return number of events which can fit in the event buffer @param em elog_main_t * @return number of events which can fit in the buffer */ always_inline uword elog_buffer_capacity (elog_main_t * em) { return em->event_ring_size; } /** @brief Reset the event buffer @param em elog_main_t * */ always_inline void elog_reset_buffer (elog_main_t * em) { em->n_total_events = 0; em->n_total_events_disable_limit = ~0; } /** @brief Enable or disable event logging @param em elog_main_t * */ always_inline void elog_enable_disable (elog_main_t * em, int is_enabled) { em->n_total_events = 0; em->n_total_events_disable_limit = is_enabled ? ~0 : 0; } /** @brief disable logging after specified number of ievents have been logged. This is used as a "debug trigger" when a certain event has occurred. Events will be logged both before and after the "event" but the event will not be lost as long as N < RING_SIZE. @param em elog_main_t * @param n uword number of events before disabling event logging */ always_inline void elog_disable_after_events (elog_main_t * em, uword n) { em->n_total_events_disable_limit = em->n_total_events + n; } /* @brief mid-buffer logic-analyzer trigger Currently, only midpoint triggering is supported, but it's pretty obvious how to generalize the scheme. @param em elog_main_t * */ always_inline void elog_disable_trigger (elog_main_t * em) { em->n_total_events_disable_limit = em->n_total_events + vec_len (em->event_ring) / 2; } /** @brief register an event type @param em elog_main_t * @param t elog_event_type_t * event to register @return type index @warning Typically not called directly */ word elog_event_type_register (elog_main_t * em, elog_event_type_t * t); /** @brief register an event track @param em elog_main_t * @param t elog_track_t * track to register @return track index @note this function is often called directly */ word elog_track_register (elog_main_t * em, elog_track_t * t); /** @brief event logging enabled predicate @param em elog_main_t * @return 1 if enabled, 0 if not enabl
/*
 * Copyright (c) 2017 Cisco and/or its