qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v7 2/3] Simpletrace v2: Support multiple argumen


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH v7 2/3] Simpletrace v2: Support multiple arguments, strings.
Date: Tue, 17 Jul 2012 16:21:47 +0100

On Tue, Jul 3, 2012 at 10:20 AM, Harsh Prateek Bora
<address@hidden> wrote:
> Existing simpletrace backend allows to trace at max 6 args and does not
> support strings. This newer tracelog format gets rid of fixed size records
> and therefore allows to trace variable number of args including strings.
>
> Sample trace with strings:
> v9fs_version 0.000 tag=0xffff id=0x64 msize=0x2000 version=9P2000.L
> v9fs_version_return 6.705 tag=0xffff id=0x64 msize=0x2000 version=9P2000.L
>
> Signed-off-by: Harsh Prateek Bora <address@hidden>
> ---
>  scripts/tracetool/backend/simple.py |   84 +++++++++---
>  trace/simple.c                      |  256 
> ++++++++++++++++++++++-------------
>  trace/simple.h                      |   39 +++++-
>  3 files changed, 260 insertions(+), 119 deletions(-)
>
> diff --git a/scripts/tracetool/backend/simple.py 
> b/scripts/tracetool/backend/simple.py
> index fbb5717..d3cf4da 100644
> --- a/scripts/tracetool/backend/simple.py
> +++ b/scripts/tracetool/backend/simple.py
> @@ -15,9 +15,16 @@ __email__      = "address@hidden"
>
>  from tracetool import out
>
> +def is_string(arg):
> +    strtype = ('const char*', 'char*', 'const char *', 'char *')
> +    if arg.lstrip().startswith(strtype):
> +        return True
> +    else:
> +        return False
>
>  def c(events):
>      out('#include "trace.h"',
> +        '#include "trace/simple.h"',
>          '',
>          'TraceEvent trace_list[] = {')
>
> @@ -26,30 +33,69 @@ def c(events):
>              name = e.name,
>              )
>
> -    out('};')
> -
> -def h(events):
> -    out('#include "trace/simple.h"',
> +    out('};',
>          '')
>
> -    for num, e in enumerate(events):
> -        if len(e.args):
> -            argstr = e.args.names()
> -            arg_prefix = ', (uint64_t)(uintptr_t)'
> -            cast_args = arg_prefix + arg_prefix.join(argstr)
> -            simple_args = (str(num) + cast_args)
> -        else:
> -            simple_args = str(num)
> +    for num, event in enumerate(events):
> +        sizes = []
> +        for type_, name in event.args:
> +            if is_string(type_):
> +                sizes.append("4 + ((" + name + " ? strlen(" + name + ") : 0) 
> % MAX_TRACE_STRLEN)")

trace_record_write_str() and this code both use % to truncate the
string.  If the string is 512 characters long you get an empty string.
 That's weird and not normally how truncation works.

Perhaps it's better to change this Python code to emit something like:
size_t arg%(num)d_len = %(name)s ? MAX(strlen(%(name)s, MAX_TRACE_STRLEN)) : 0;

Then you can emit the following to actual store the string:

out('    trace_record_write_str(&rec, %(name)s, arg%(num)d_len);',
name=name, num=num)

The difference is that MAX() is used to truncate and we only do strlen() once.

> +            else:
> +                sizes.append("8")
> +        sizestr = " + ".join(sizes)
> +        if len(event.args) == 0:
> +            sizestr = '0'
>
> -        out('static inline void trace_%(name)s(%(args)s)',
> +        out('void trace_%(name)s(%(args)s)',
>              '{',
> -            '    trace%(argc)d(%(trace_args)s);',
> -            '}',
> -            name = e.name,
> -            args = e.args,
> -            argc = len(e.args),
> -            trace_args = simple_args,
> +            '    TraceBufferRecord rec;',
> +            '',
> +            '    if (!trace_list[%(event_id)s].state) {',
> +            '        return;',
> +            '    }',
> +            '',
> +            '    if (trace_record_start(&rec, %(event_id)s, %(size_str)s)) 
> {',
> +            '        return; /* Trace Buffer Full, Event Dropped ! */',
> +            '    }',
> +            name = event.name,
> +            args = event.args,
> +            event_id = num,
> +            size_str = sizestr,
>              )
>
> +        if len(event.args) > 0:
> +            for type_, name in event.args:
> +                # string
> +                if is_string(type_):
> +                    out('    trace_record_write_str(&rec, %(name)s);',
> +                        name = name,
> +                       )
> +                # pointer var (not string)
> +                elif type_.endswith('*'):
> +                    out('    trace_record_write_u64(&rec, 
> (uint64_t)(uint64_t *)%(name)s);',
> +                        name = name,
> +                       )
> +                # primitive data type
> +                else:
> +                    out('    trace_record_write_u64(&rec, 
> (uint64_t)%(name)s);',
> +                       name = name,
> +                       )
> +
> +        out('    trace_record_finish(&rec);',
> +            '}',
> +            '')
> +
> +
> +def h(events):
> +    out('#include "trace/simple.h"',
> +        '')
> +
> +    for event in events:
> +        out('void trace_%(name)s(%(args)s);',
> +            name = event.name,
> +            args = event.args,
> +            )
> +    out('')
>      out('#define NR_TRACE_EVENTS %d' % len(events))
>      out('extern TraceEvent trace_list[NR_TRACE_EVENTS];')
> diff --git a/trace/simple.c b/trace/simple.c
> index b64bcf4..3c14568 100644
> --- a/trace/simple.c
> +++ b/trace/simple.c
> @@ -27,7 +27,7 @@
>  #define HEADER_MAGIC 0xf2b177cb0aa429b4ULL
>
>  /** Trace file version number, bump if format changes */
> -#define HEADER_VERSION 0
> +#define HEADER_VERSION 2
>
>  /** Records were dropped event ID */
>  #define DROPPED_EVENT_ID (~(uint64_t)0 - 1)
> @@ -35,23 +35,6 @@
>  /** Trace record is valid */
>  #define TRACE_RECORD_VALID ((uint64_t)1 << 63)
>
> -/** Trace buffer entry */
> -typedef struct {
> -    uint64_t event;
> -    uint64_t timestamp_ns;
> -    uint64_t x1;
> -    uint64_t x2;
> -    uint64_t x3;
> -    uint64_t x4;
> -    uint64_t x5;
> -    uint64_t x6;
> -} TraceRecord;
> -
> -enum {
> -    TRACE_BUF_LEN = 4096,
> -    TRACE_BUF_FLUSH_THRESHOLD = TRACE_BUF_LEN / 4,
> -};
> -
>  /*
>   * Trace records are written out by a dedicated thread.  The thread waits for
>   * records to become available, writes them out, and then waits again.
> @@ -62,11 +45,49 @@ static GCond *trace_empty_cond;
>  static bool trace_available;
>  static bool trace_writeout_enabled;
>
> -static TraceRecord trace_buf[TRACE_BUF_LEN];
> +enum {
> +    TRACE_BUF_LEN = 4096 * 64,
> +    TRACE_BUF_FLUSH_THRESHOLD = TRACE_BUF_LEN / 4,
> +};
> +
> +uint8_t trace_buf[TRACE_BUF_LEN];
>  static unsigned int trace_idx;
> +static unsigned int writeout_idx;
> +static uint64_t dropped_events;
>  static FILE *trace_fp;
>  static char *trace_file_name = NULL;
>
> +/* * Trace buffer entry */
> +typedef struct {
> +    uint64_t event; /*   TraceEventID */
> +    uint64_t timestamp_ns;
> +    uint32_t length;   /*    in bytes */
> +    uint32_t reserved; /*    unused */
> +    uint8_t arguments[];
> +} TraceRecord;
> +
> +typedef struct {
> +    uint64_t header_event_id; /* HEADER_EVENT_ID */
> +    uint64_t header_magic;    /* HEADER_MAGIC    */
> +    uint64_t header_version;  /* HEADER_VERSION  */
> +} TraceRecordHeader;
> +
> +
> +static void read_from_buffer(unsigned int idx, void *dataptr, size_t size);
> +static unsigned int write_to_buffer(unsigned int idx, void *dataptr, size_t 
> size);
> +static void clear_buffer_range(unsigned int idx, size_t len);

clear_buffer_range() is defined on the next line, no need for a prototype.

> +static void clear_buffer_range(unsigned int idx, size_t len)
> +{
> +    uint32_t num = 0;
> +    while (num < len) {
> +        if (idx >= TRACE_BUF_LEN) {
> +            idx = idx % TRACE_BUF_LEN;
> +        }
> +        trace_buf[idx++] = 0;
> +        num++;
> +    }
> +}
>  /**
>   * Read a trace record from the trace buffer
>   *
> @@ -75,16 +96,31 @@ static char *trace_file_name = NULL;
>   *
>   * Returns false if the record is not valid.
>   */
> -static bool get_trace_record(unsigned int idx, TraceRecord *record)
> +static bool get_trace_record(unsigned int idx, TraceRecord **recordptr)
>  {
> -    if (!(trace_buf[idx].event & TRACE_RECORD_VALID)) {
> +    uint8_t rec_hdr[sizeof(TraceRecord)];
> +    uint64_t event_flag = 0;
> +    TraceRecord *record = (TraceRecord *) rec_hdr;

Declaring rec_hdr as a uint8_t array is only because you're trying to
avoid a cast later?  The easiest way to make this nice is to do what
memset(), memcpy() and friends do: just use a void *buf argument.
That way a caller can pass a TraceRecord* or any other pointer without
explicit casts, unions, or the uint8_t array trick you are using.

> +    /* read the event flag to see if its a valid record */
> +    read_from_buffer(idx, rec_hdr, sizeof(event_flag));
> +
> +    if (!(record->event & TRACE_RECORD_VALID)) {
>          return false;
>      }
>
>      __sync_synchronize(); /* read memory barrier before accessing record */
> -
> -    *record = trace_buf[idx];
> -    record->event &= ~TRACE_RECORD_VALID;
> +    /* read the record header to know record length */
> +    read_from_buffer(idx, rec_hdr, sizeof(TraceRecord));
> +    *recordptr = g_malloc(record->length);
> +    /* make a copy of record to avoid being overwritten */
> +    read_from_buffer(idx, (uint8_t *)*recordptr, record->length);
> +    smp_rmb(); /* memory barrier before clearing valid flag */

You are adding smp_*() instead of __sync_synchronize().  Please either
continue to use __sync_synchronize() or convert everything to smp_*()
barriers from qemu-barrier.h.

> +    (*recordptr)->event &= ~TRACE_RECORD_VALID;
> +    /* clear the trace buffer range for consumed record otherwise any byte
> +     * with its MSB set may be considered as a valid event id when the writer
> +     * thread crosses this range of buffer again.
> +     */
> +    clear_buffer_range(idx, record->length);
>      return true;
>  }
>
> @@ -120,29 +156,41 @@ static void wait_for_trace_records_available(void)
>
>  static gpointer writeout_thread(gpointer opaque)
>  {
> -    TraceRecord record;
> -    unsigned int writeout_idx = 0;
> -    unsigned int num_available, idx;
> +    TraceRecord *recordptr, *dropped_ptr;
> +    union {
> +        TraceRecord rec;
> +        uint8_t bytes[sizeof(TraceRecord) + sizeof(uint64_t)];
> +    } dropped;
> +    dropped_ptr = (TraceRecord *)dropped.bytes;

dropped_ptr isn't needed, just use dropped.rec.

> +    unsigned int idx = 0;
> +    uint64_t dropped_count;
>      size_t unused __attribute__ ((unused));
>
>      for (;;) {
>          wait_for_trace_records_available();
>
> -        num_available = trace_idx - writeout_idx;
> -        if (num_available > TRACE_BUF_LEN) {
> -            record = (TraceRecord){
> -                .event = DROPPED_EVENT_ID,
> -                .x1 = num_available,
> -            };
> -            unused = fwrite(&record, sizeof(record), 1, trace_fp);
> -            writeout_idx += num_available;
> +        if (dropped_events) {
> +            dropped_ptr->event = DROPPED_EVENT_ID,
> +            dropped_ptr->timestamp_ns = get_clock();
> +            dropped_ptr->length = sizeof(TraceRecord) + 
> sizeof(dropped_events),
> +            dropped_ptr->reserved = 0;
> +            while (1) {
> +                dropped_count = dropped_events;
> +                smp_rmb();

Not needed, glib says g_atomic_int_compare_and_exchange() "acts as a
full compiler and hardware memory barrier".

http://developer.gnome.org/glib/2.32/glib-Atomic-Operations.html#g-atomic-int-compare-and-exchange

> +                if (g_atomic_int_compare_and_exchange((gint 
> *)&dropped_events,
> +                                                      dropped_count, 0)) {
> +                    break;
> +                }
> +            }

It's a shame we have to loop when a simple atomic exchange would have
done the job better but glib doesn't seem to support that.

Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]