2021-07-21 18:27:58 +02:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2021-07-19 15:11:41 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <linux/limits.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/stat.h>
|
2021-07-30 20:08:40 +02:00
|
|
|
#include <sys/mman.h>
|
2021-07-19 15:11:41 +02:00
|
|
|
#include <stdatomic.h>
|
2021-07-19 19:05:26 +02:00
|
|
|
#include <assert.h>
|
2021-07-22 12:35:02 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2021-07-24 10:53:41 +02:00
|
|
|
#include <dirent.h>
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
#include "ovni.h"
|
2021-07-28 11:56:35 +02:00
|
|
|
#include "ovni_trace.h"
|
2021-08-03 17:48:37 +02:00
|
|
|
#include "parson.h"
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-09-28 19:21:22 +02:00
|
|
|
#ifndef gettid
|
|
|
|
# include <sys/syscall.h>
|
|
|
|
# define gettid() ((pid_t)syscall(SYS_gettid))
|
|
|
|
#endif
|
|
|
|
|
2021-07-22 12:35:02 +02:00
|
|
|
//#define ENABLE_SLOW_CHECKS
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
//#define USE_RDTSC
|
|
|
|
|
2021-07-19 15:11:41 +02:00
|
|
|
/* Data per process */
|
2021-07-24 10:53:41 +02:00
|
|
|
struct ovni_rproc rproc = {0};
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
/* Data per thread */
|
2021-07-24 10:53:41 +02:00
|
|
|
_Thread_local struct ovni_rthread rthread = {0};
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
static int
|
2021-08-02 20:03:20 +02:00
|
|
|
create_trace_dirs(char *tracedir, char *loom, int proc)
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
fprintf(stderr, "create trace dirs for loom=%s, proc=%d\n",
|
2021-07-19 15:11:41 +02:00
|
|
|
loom, proc);
|
|
|
|
|
|
|
|
snprintf(path, PATH_MAX, "%s", tracedir);
|
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
/* May fail if another loom created the directory already */
|
|
|
|
mkdir(path, 0755);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
snprintf(path, PATH_MAX, "%s/loom.%s", tracedir, loom);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
/* Also may fail */
|
|
|
|
mkdir(path, 0755);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
snprintf(rproc.dir, PATH_MAX, "%s/loom.%s/proc.%d", tracedir, loom, proc);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
/* But this one shall not fail */
|
2021-07-19 19:05:26 +02:00
|
|
|
if(mkdir(rproc.dir, 0755))
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
2021-07-19 19:05:26 +02:00
|
|
|
fprintf(stderr, "mkdir %s: %s\n", rproc.dir, strerror(errno));
|
2021-07-19 15:11:41 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2021-07-19 19:05:26 +02:00
|
|
|
create_trace_stream()
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
2021-07-22 12:35:02 +02:00
|
|
|
int fd;
|
2021-07-19 15:11:41 +02:00
|
|
|
char path[PATH_MAX];
|
|
|
|
|
2021-07-21 18:27:58 +02:00
|
|
|
fprintf(stderr, "create thread stream tid=%d gettid=%d rproc.proc=%d rproc.ready=%d\n",
|
2021-09-28 19:21:22 +02:00
|
|
|
rthread.tid, gettid(), rproc.proc, rproc.ready);
|
2021-07-21 18:27:58 +02:00
|
|
|
|
2021-10-21 16:05:31 +02:00
|
|
|
if(snprintf(path, PATH_MAX, "%s/thread.%d", rproc.dir, rthread.tid)
|
|
|
|
>= PATH_MAX)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
2021-07-22 12:35:02 +02:00
|
|
|
|
|
|
|
//rthread.streamfd = open(path, O_WRONLY | O_CREAT | O_DSYNC, 0644);
|
|
|
|
rthread.streamfd = open(path, O_WRONLY | O_CREAT, 0644);
|
|
|
|
|
|
|
|
if(rthread.streamfd == -1)
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
2021-07-22 12:35:02 +02:00
|
|
|
fprintf(stderr, "open %s failed: %s\n", path, strerror(errno));
|
2021-08-02 20:03:20 +02:00
|
|
|
return -1;
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-03 17:48:37 +02:00
|
|
|
static int
|
|
|
|
proc_metadata_init(struct ovni_rproc *proc)
|
|
|
|
{
|
|
|
|
JSON_Value *meta;
|
|
|
|
|
|
|
|
proc->meta = json_value_init_object();
|
|
|
|
|
|
|
|
if(proc->meta == NULL)
|
|
|
|
{
|
|
|
|
err("failed to create json object\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
proc_metadata_store(struct ovni_rproc *proc)
|
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
|
2021-10-21 16:05:31 +02:00
|
|
|
if(snprintf(path, PATH_MAX, "%s/metadata.json", proc->dir) >= PATH_MAX)
|
|
|
|
abort();
|
2021-08-03 17:48:37 +02:00
|
|
|
|
|
|
|
assert(proc->meta != NULL);
|
|
|
|
|
|
|
|
if(json_serialize_to_file_pretty(proc->meta, path) != JSONSuccess)
|
|
|
|
{
|
|
|
|
err("failed to write proc metadata\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovni_add_cpu(int index, int phyid)
|
|
|
|
{
|
|
|
|
JSON_Array *cpuarray;
|
|
|
|
JSON_Object *cpu;
|
|
|
|
JSON_Object *meta;
|
|
|
|
JSON_Value *valcpu, *valcpuarray;
|
|
|
|
int append = 0;
|
|
|
|
|
|
|
|
assert(rproc.ready == 1);
|
|
|
|
assert(rproc.meta != NULL);
|
|
|
|
|
|
|
|
meta = json_value_get_object(rproc.meta);
|
|
|
|
|
|
|
|
assert(meta);
|
|
|
|
|
|
|
|
/* Find the CPU array and create it if needed */
|
|
|
|
cpuarray = json_object_dotget_array(meta, "cpus");
|
|
|
|
|
|
|
|
if(cpuarray == NULL)
|
|
|
|
{
|
|
|
|
valcpuarray = json_value_init_array();
|
|
|
|
assert(valcpuarray);
|
|
|
|
|
|
|
|
cpuarray = json_array(valcpuarray);
|
|
|
|
assert(cpuarray);
|
|
|
|
append = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
valcpuarray = json_array_get_wrapping_value(cpuarray);
|
|
|
|
assert(valcpuarray);
|
|
|
|
|
|
|
|
valcpu = json_value_init_object();
|
|
|
|
assert(valcpu);
|
|
|
|
|
|
|
|
cpu = json_object(valcpu);
|
|
|
|
assert(cpu);
|
|
|
|
|
|
|
|
if(json_object_set_number(cpu, "index", index) != 0)
|
|
|
|
abort();
|
|
|
|
|
|
|
|
if(json_object_set_number(cpu, "phyid", phyid) != 0)
|
|
|
|
abort();
|
|
|
|
|
|
|
|
if(json_array_append_value(cpuarray, valcpu) != 0)
|
|
|
|
abort();
|
|
|
|
|
|
|
|
if(append && json_object_set_value(meta, "cpus", valcpuarray) != 0)
|
|
|
|
abort();
|
|
|
|
|
|
|
|
//puts(json_serialize_to_string_pretty(rproc.meta));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
proc_set_app(int appid)
|
|
|
|
{
|
|
|
|
JSON_Object *meta;
|
|
|
|
|
|
|
|
assert(rproc.ready == 1);
|
|
|
|
assert(rproc.meta != NULL);
|
|
|
|
|
|
|
|
meta = json_value_get_object(rproc.meta);
|
|
|
|
|
|
|
|
assert(meta);
|
|
|
|
|
|
|
|
if(json_object_set_number(meta, "app_id", appid) != 0)
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2021-07-19 15:11:41 +02:00
|
|
|
int
|
2021-08-03 17:48:37 +02:00
|
|
|
ovni_proc_init(int app, char *loom, int proc)
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
|
|
|
int i;
|
2021-07-21 18:27:58 +02:00
|
|
|
|
|
|
|
assert(rproc.ready == 0);
|
|
|
|
|
2021-07-19 19:05:26 +02:00
|
|
|
memset(&rproc, 0, sizeof(rproc));
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-08-02 20:03:20 +02:00
|
|
|
/* FIXME: strcpy is insecure */
|
|
|
|
strcpy(rproc.loom, loom);
|
2021-07-19 19:05:26 +02:00
|
|
|
rproc.proc = proc;
|
2021-08-03 17:48:37 +02:00
|
|
|
rproc.app = app;
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
/* By default we use the monotonic clock */
|
2021-07-19 19:05:26 +02:00
|
|
|
rproc.clockid = CLOCK_MONOTONIC;
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
if(create_trace_dirs(OVNI_TRACEDIR, loom, proc))
|
2021-07-21 18:27:58 +02:00
|
|
|
abort();
|
|
|
|
|
2021-08-03 17:48:37 +02:00
|
|
|
if(proc_metadata_init(&rproc) != 0)
|
|
|
|
abort();
|
|
|
|
|
2021-07-21 18:27:58 +02:00
|
|
|
rproc.ready = 1;
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-08-03 17:48:37 +02:00
|
|
|
proc_set_app(app);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ovni_proc_fini()
|
|
|
|
{
|
|
|
|
if(proc_metadata_store(&rproc) != 0)
|
|
|
|
abort();
|
|
|
|
|
2021-07-19 19:05:26 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ovni_thread_init(pid_t tid)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
assert(tid != 0);
|
|
|
|
|
2021-07-21 18:27:58 +02:00
|
|
|
if(rthread.ready)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "warning: thread tid=%d already initialized\n",
|
|
|
|
tid);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(rthread.ready == 0);
|
|
|
|
assert(rthread.tid == 0);
|
|
|
|
assert(rthread.cpu == 0);
|
|
|
|
assert(rproc.ready == 1);
|
|
|
|
|
|
|
|
fprintf(stderr, "ovni thread init tid=%d\n", tid);
|
|
|
|
|
2021-07-19 19:05:26 +02:00
|
|
|
memset(&rthread, 0, sizeof(rthread));
|
|
|
|
|
|
|
|
rthread.tid = tid;
|
2021-07-21 18:27:58 +02:00
|
|
|
rthread.cpu = -666;
|
2021-07-24 10:53:41 +02:00
|
|
|
rthread.evlen = 0;
|
|
|
|
|
|
|
|
rthread.evbuf = malloc(OVNI_MAX_EV_BUF);
|
|
|
|
if(rthread.evbuf == NULL)
|
|
|
|
{
|
|
|
|
perror("malloc");
|
|
|
|
abort();
|
|
|
|
}
|
2021-07-19 19:05:26 +02:00
|
|
|
|
|
|
|
if(create_trace_stream(tid))
|
2021-07-21 18:27:58 +02:00
|
|
|
abort();
|
|
|
|
|
|
|
|
rthread.ready = 1;
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
int
|
|
|
|
ovni_thread_free()
|
|
|
|
{
|
|
|
|
assert(rthread.ready);
|
|
|
|
free(rthread.evbuf);
|
|
|
|
}
|
|
|
|
|
2021-07-21 18:27:58 +02:00
|
|
|
int
|
|
|
|
ovni_thread_isready()
|
|
|
|
{
|
|
|
|
return rthread.ready;
|
|
|
|
}
|
|
|
|
|
2021-07-19 15:11:41 +02:00
|
|
|
void
|
|
|
|
ovni_cpu_set(int cpu)
|
|
|
|
{
|
2021-07-19 19:05:26 +02:00
|
|
|
rthread.cpu = cpu;
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
static inline
|
|
|
|
uint64_t rdtsc(void)
|
|
|
|
{
|
|
|
|
uint32_t lo, hi;
|
|
|
|
|
|
|
|
// RDTSC copies contents of 64-bit TSC into EDX:EAX
|
2021-09-28 19:21:22 +02:00
|
|
|
__asm__ volatile("rdtsc" : "=a" (lo), "=d" (hi));
|
2021-07-24 10:53:41 +02:00
|
|
|
return (uint64_t) hi << 32 | lo;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
ovni_get_clock()
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
|
|
|
struct timespec tp;
|
|
|
|
uint64_t ns = 1000LL * 1000LL * 1000LL;
|
|
|
|
uint64_t raw;
|
2021-07-22 12:35:02 +02:00
|
|
|
int ret;
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
#ifdef USE_RDTSC
|
|
|
|
raw = rdtsc();
|
|
|
|
#else
|
|
|
|
|
2021-07-22 12:35:02 +02:00
|
|
|
ret = clock_gettime(rproc.clockid, &tp);
|
|
|
|
|
|
|
|
#ifdef ENABLE_SLOW_CHECKS
|
|
|
|
if(ret) abort();
|
2021-07-24 10:53:41 +02:00
|
|
|
#endif /* ENABLE_SLOW_CHECKS */
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
raw = tp.tv_sec * ns + tp.tv_nsec;
|
2021-07-19 19:05:26 +02:00
|
|
|
rthread.clockvalue = (uint64_t) raw;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
|
|
|
#endif /* USE_RDTSC */
|
|
|
|
|
|
|
|
return raw;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sets the current time so that all subsequent events have the new
|
|
|
|
* timestamp */
|
|
|
|
void
|
|
|
|
ovni_clock_update()
|
|
|
|
{
|
|
|
|
rthread.clockvalue = ovni_get_clock();
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-07-19 19:05:26 +02:00
|
|
|
hexdump(uint8_t *buf, size_t size)
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
2021-07-19 19:05:26 +02:00
|
|
|
//printf("writing %ld bytes in cpu=%d\n", size, rthread.cpu);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
for(i=0; i<size; i+=16)
|
|
|
|
{
|
|
|
|
for(j=0; j<16 && i+j < size; j++)
|
|
|
|
{
|
2021-07-28 11:56:35 +02:00
|
|
|
dbg("%02x ", buf[i+j]);
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
2021-07-28 11:56:35 +02:00
|
|
|
dbg("\n");
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
2021-07-19 19:05:26 +02:00
|
|
|
}
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-07-19 19:05:26 +02:00
|
|
|
static int
|
|
|
|
ovni_write(uint8_t *buf, size_t size)
|
|
|
|
{
|
2021-07-22 12:35:02 +02:00
|
|
|
ssize_t written;
|
2021-07-21 18:27:58 +02:00
|
|
|
|
2021-07-22 12:35:02 +02:00
|
|
|
do
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
2021-07-22 12:35:02 +02:00
|
|
|
written = write(rthread.streamfd, buf, size);
|
|
|
|
|
|
|
|
if(written < 0)
|
|
|
|
{
|
|
|
|
perror("write");
|
|
|
|
return -1;
|
|
|
|
}
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-07-22 12:35:02 +02:00
|
|
|
size -= written;
|
|
|
|
buf += written;
|
|
|
|
} while(size > 0);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
static int
|
|
|
|
flush_evbuf()
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
assert(rthread.ready);
|
|
|
|
assert(rproc.ready);
|
|
|
|
|
|
|
|
ret = ovni_write(rthread.evbuf, rthread.evlen);
|
|
|
|
|
|
|
|
rthread.evlen = 0;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ovni_ev_set_clock(struct ovni_ev *ev)
|
|
|
|
{
|
2021-08-11 11:50:07 +02:00
|
|
|
ev->header.clock = rthread.clockvalue;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
ovni_ev_get_clock(struct ovni_ev *ev)
|
|
|
|
{
|
2021-08-11 11:50:07 +02:00
|
|
|
return ev->header.clock;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovni_ev_set_mcv(struct ovni_ev *ev, char *mcv)
|
|
|
|
{
|
2021-07-30 20:08:40 +02:00
|
|
|
ev->header.model = mcv[0];
|
2021-10-11 15:46:49 +02:00
|
|
|
ev->header.category = mcv[1];
|
2021-07-30 20:08:40 +02:00
|
|
|
ev->header.value = mcv[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
get_jumbo_payload_size(struct ovni_ev *ev)
|
|
|
|
{
|
|
|
|
return sizeof(ev->payload.jumbo.size) + ev->payload.jumbo.size;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-22 12:35:02 +02:00
|
|
|
int
|
2021-07-24 10:53:41 +02:00
|
|
|
ovni_payload_size(struct ovni_ev *ev)
|
|
|
|
{
|
2021-07-28 11:56:35 +02:00
|
|
|
int size;
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
if(ev->header.flags & OVNI_EV_JUMBO)
|
|
|
|
return get_jumbo_payload_size(ev);
|
|
|
|
|
|
|
|
size = ev->header.flags & 0x0f;
|
2021-07-28 11:56:35 +02:00
|
|
|
|
|
|
|
if(size == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* The minimum size is 2 bytes, so we can encode a length of 16
|
|
|
|
* bytes using 4 bits (0x0f) */
|
|
|
|
size++;
|
|
|
|
|
|
|
|
return size;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovni_payload_add(struct ovni_ev *ev, uint8_t *buf, int size)
|
|
|
|
{
|
2021-07-28 11:56:35 +02:00
|
|
|
int payload_size;
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
assert((ev->header.flags & OVNI_EV_JUMBO) == 0);
|
|
|
|
assert(size >= 2);
|
|
|
|
|
2021-07-28 11:56:35 +02:00
|
|
|
payload_size = ovni_payload_size(ev);
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
/* Ensure we have room */
|
2021-07-28 11:56:35 +02:00
|
|
|
assert(payload_size + size <= sizeof(ev->payload));
|
|
|
|
|
|
|
|
memcpy(&ev->payload.u8[payload_size], buf, size);
|
|
|
|
payload_size += size;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
ev->header.flags = ev->header.flags & 0xf0 | (payload_size-1) & 0x0f;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ovni_ev_size(struct ovni_ev *ev)
|
|
|
|
{
|
2021-07-30 20:08:40 +02:00
|
|
|
return sizeof(ev->header) + ovni_payload_size(ev);
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-07-30 20:08:40 +02:00
|
|
|
ovni_ev_add(struct ovni_ev *ev);
|
2021-07-24 10:53:41 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
ovni_flush()
|
2021-07-22 12:35:02 +02:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2021-07-24 10:53:41 +02:00
|
|
|
struct ovni_ev pre={0}, post={0};
|
2021-07-22 12:35:02 +02:00
|
|
|
|
|
|
|
assert(rthread.ready);
|
|
|
|
assert(rproc.ready);
|
|
|
|
|
|
|
|
ovni_clock_update();
|
2021-07-24 10:53:41 +02:00
|
|
|
ovni_ev_set_clock(&pre);
|
|
|
|
ovni_ev_set_mcv(&pre, "OF[");
|
2021-07-22 12:35:02 +02:00
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
ret = flush_evbuf();
|
2021-07-22 12:35:02 +02:00
|
|
|
|
|
|
|
ovni_clock_update();
|
2021-07-24 10:53:41 +02:00
|
|
|
ovni_ev_set_clock(&post);
|
|
|
|
ovni_ev_set_mcv(&post, "OF]");
|
2021-07-22 12:35:02 +02:00
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
/* Add the two flush events */
|
|
|
|
ovni_ev_add(&pre);
|
|
|
|
ovni_ev_add(&post);
|
2021-07-22 12:35:02 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
void
|
|
|
|
ovni_ev_add_jumbo(struct ovni_ev *ev, uint8_t *buf, uint32_t bufsize)
|
|
|
|
{
|
|
|
|
size_t evsize, totalsize;
|
|
|
|
|
|
|
|
assert(ovni_payload_size(ev) == 0);
|
|
|
|
|
|
|
|
ovni_payload_add(ev, (uint8_t *) &bufsize, sizeof(bufsize));
|
|
|
|
evsize = ovni_ev_size(ev);
|
|
|
|
|
|
|
|
totalsize = evsize + bufsize;
|
|
|
|
|
|
|
|
/* Check if the event fits or flush first otherwise */
|
|
|
|
if(rthread.evlen + totalsize >= OVNI_MAX_EV_BUF)
|
|
|
|
ovni_flush();
|
|
|
|
|
|
|
|
/* Se the jumbo flag here, so we capture the previous evsize
|
|
|
|
* properly, ignoring the jumbo buffer */
|
|
|
|
ev->header.flags |= OVNI_EV_JUMBO;
|
|
|
|
|
|
|
|
memcpy(&rthread.evbuf[rthread.evlen], ev, evsize);
|
|
|
|
rthread.evlen += evsize;
|
|
|
|
memcpy(&rthread.evbuf[rthread.evlen], buf, bufsize);
|
|
|
|
rthread.evlen += bufsize;
|
|
|
|
|
|
|
|
assert(rthread.evlen < OVNI_MAX_EV_BUF);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
ovni_ev_add(struct ovni_ev *ev)
|
|
|
|
{
|
|
|
|
int size;
|
|
|
|
|
|
|
|
size = ovni_ev_size(ev);
|
|
|
|
|
|
|
|
/* Check if the event fits or flush first otherwise */
|
|
|
|
if(rthread.evlen + size >= OVNI_MAX_EV_BUF)
|
|
|
|
ovni_flush();
|
|
|
|
|
|
|
|
memcpy(&rthread.evbuf[rthread.evlen], ev, size);
|
|
|
|
rthread.evlen += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovni_ev_jumbo(struct ovni_ev *ev, uint8_t *buf, uint32_t bufsize)
|
|
|
|
{
|
|
|
|
ovni_ev_set_clock(ev);
|
|
|
|
ovni_ev_add_jumbo(ev, buf, bufsize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovni_ev(struct ovni_ev *ev)
|
|
|
|
{
|
|
|
|
ovni_ev_set_clock(ev);
|
|
|
|
ovni_ev_add(ev);
|
|
|
|
}
|
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
static int
|
2021-08-02 20:23:57 +02:00
|
|
|
find_dir_prefix_str(struct dirent *dirent, const char *prefix, const char **str)
|
2021-07-30 21:37:25 +02:00
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
p = dirent->d_name;
|
|
|
|
|
|
|
|
/* Check the prefix */
|
|
|
|
if(strncmp(p, prefix, strlen(prefix)) != 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
p += strlen(prefix);
|
|
|
|
|
|
|
|
/* Find the dot */
|
|
|
|
if(*p != '.')
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
p++;
|
|
|
|
|
2021-08-02 20:23:57 +02:00
|
|
|
*str = p;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
find_dir_prefix_int(struct dirent *dirent, const char *prefix, int *num)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
if(find_dir_prefix_str(dirent, prefix, &p) != 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Convert the suffix string to a number */
|
2021-07-30 21:37:25 +02:00
|
|
|
*num = atoi(p);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
static int
|
2021-08-02 10:08:58 +02:00
|
|
|
load_thread(struct ovni_ethread *thread, struct ovni_eproc *proc, int index, int tid, char *filepath)
|
2021-07-30 20:08:40 +02:00
|
|
|
{
|
2021-08-02 10:08:58 +02:00
|
|
|
static int total_threads = 0;
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
thread->tid = tid;
|
2021-08-02 10:08:58 +02:00
|
|
|
thread->index = index;
|
|
|
|
thread->gindex = total_threads++;
|
|
|
|
thread->state = TH_ST_UNKNOWN;
|
|
|
|
thread->proc = proc;
|
2021-07-30 20:08:40 +02:00
|
|
|
thread->stream_fd = open(filepath, O_RDONLY);
|
|
|
|
|
|
|
|
if(thread->stream_fd == -1)
|
|
|
|
{
|
|
|
|
perror("open");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-08-03 18:42:56 +02:00
|
|
|
static void
|
|
|
|
load_proc_metadata(struct ovni_eproc *proc)
|
|
|
|
{
|
|
|
|
JSON_Object *meta;
|
|
|
|
|
|
|
|
meta = json_value_get_object(proc->meta);
|
|
|
|
assert(meta);
|
|
|
|
|
|
|
|
proc->appid = (int) json_object_get_number(meta, "app_id");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-19 15:11:41 +02:00
|
|
|
static int
|
2021-10-14 09:06:11 +02:00
|
|
|
load_proc(struct ovni_eproc *proc, struct ovni_loom *loom, int index, int pid, char *procdir)
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
2021-08-02 10:08:58 +02:00
|
|
|
static int total_procs = 0;
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
struct dirent *dirent;
|
|
|
|
DIR *dir;
|
|
|
|
char path[PATH_MAX];
|
|
|
|
struct ovni_ethread *thread;
|
2021-07-30 21:37:25 +02:00
|
|
|
int tid;
|
|
|
|
|
|
|
|
proc->pid = pid;
|
2021-08-02 10:08:58 +02:00
|
|
|
proc->index = index;
|
|
|
|
proc->gindex = total_procs++;
|
2021-10-14 09:06:11 +02:00
|
|
|
proc->loom = loom;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-08-03 17:48:37 +02:00
|
|
|
sprintf(path, "%s/%s", procdir, "metadata.json");
|
|
|
|
proc->meta = json_parse_file_with_comments(path);
|
|
|
|
assert(proc->meta);
|
|
|
|
|
2021-08-03 18:42:56 +02:00
|
|
|
/* The appid is populated from the metadata */
|
|
|
|
load_proc_metadata(proc);
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
if((dir = opendir(procdir)) == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "opendir %s failed: %s\n",
|
|
|
|
procdir, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2021-07-22 12:35:02 +02:00
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
while((dirent = readdir(dir)) != NULL)
|
|
|
|
{
|
2021-08-02 20:23:57 +02:00
|
|
|
if(find_dir_prefix_int(dirent, "thread", &tid) != 0)
|
2021-07-30 21:37:25 +02:00
|
|
|
continue;
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
sprintf(path, "%s/%s", procdir, dirent->d_name);
|
2021-07-19 15:11:41 +02:00
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
if(proc->nthreads >= OVNI_MAX_THR)
|
|
|
|
{
|
|
|
|
err("too many thread streams for process %d\n", pid);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2021-08-02 10:08:58 +02:00
|
|
|
thread = &proc->thread[proc->nthreads];
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-08-02 10:08:58 +02:00
|
|
|
if(load_thread(thread, proc, proc->nthreads, tid, path) != 0)
|
2021-07-24 10:53:41 +02:00
|
|
|
return -1;
|
2021-08-02 10:08:58 +02:00
|
|
|
|
|
|
|
proc->nthreads++;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
|
|
|
|
2021-08-03 17:48:37 +02:00
|
|
|
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2021-07-30 21:37:25 +02:00
|
|
|
load_loom(struct ovni_loom *loom, int loomid, char *loomdir)
|
2021-07-24 10:53:41 +02:00
|
|
|
{
|
2021-07-30 21:37:25 +02:00
|
|
|
int pid;
|
2021-07-24 10:53:41 +02:00
|
|
|
char path[PATH_MAX];
|
|
|
|
struct stat st;
|
2021-07-30 21:37:25 +02:00
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
struct ovni_eproc *proc;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
if((dir = opendir(loomdir)) == NULL)
|
2021-07-24 10:53:41 +02:00
|
|
|
{
|
2021-07-30 21:37:25 +02:00
|
|
|
fprintf(stderr, "opendir %s failed: %s\n",
|
|
|
|
loomdir, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
while((dirent = readdir(dir)) != NULL)
|
|
|
|
{
|
2021-08-02 20:23:57 +02:00
|
|
|
if(find_dir_prefix_int(dirent, "proc", &pid) != 0)
|
2021-07-30 21:37:25 +02:00
|
|
|
continue;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
sprintf(path, "%s/%s", loomdir, dirent->d_name);
|
|
|
|
|
|
|
|
if(loom->nprocs >= OVNI_MAX_PROC)
|
2021-07-24 10:53:41 +02:00
|
|
|
{
|
2021-07-30 21:37:25 +02:00
|
|
|
err("too many process streams for loom %d\n",
|
|
|
|
loomid);
|
|
|
|
abort();
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
2021-08-02 10:08:58 +02:00
|
|
|
proc = &loom->proc[loom->nprocs];
|
2021-07-30 21:37:25 +02:00
|
|
|
|
2021-10-14 09:06:11 +02:00
|
|
|
if(load_proc(proc, loom, loom->nprocs, pid, path) != 0)
|
2021-07-24 10:53:41 +02:00
|
|
|
return -1;
|
2021-08-02 10:08:58 +02:00
|
|
|
|
|
|
|
loom->nprocs++;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 21:37:25 +02:00
|
|
|
closedir(dir);
|
2021-07-24 10:53:41 +02:00
|
|
|
|
|
|
|
return 0;
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
static int
|
|
|
|
compare_alph(const void* a, const void* b)
|
|
|
|
{
|
|
|
|
return strcmp(*(const char**)a, *(const char**)b);
|
|
|
|
}
|
|
|
|
|
2021-07-19 15:11:41 +02:00
|
|
|
int
|
2021-07-24 10:53:41 +02:00
|
|
|
ovni_load_trace(struct ovni_trace *trace, char *tracedir)
|
2021-07-19 15:11:41 +02:00
|
|
|
{
|
2021-08-02 20:23:57 +02:00
|
|
|
int i;
|
2021-07-24 10:53:41 +02:00
|
|
|
char path[PATH_MAX];
|
2021-08-02 20:23:57 +02:00
|
|
|
const char *loom_name;
|
|
|
|
struct stat st;
|
|
|
|
DIR *dir;
|
|
|
|
struct dirent *dirent;
|
|
|
|
struct ovni_loom *loom;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-08-02 20:23:57 +02:00
|
|
|
trace->nlooms = 0;
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-08-02 20:23:57 +02:00
|
|
|
if((dir = opendir(tracedir)) == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "opendir %s failed: %s\n",
|
|
|
|
tracedir, strerror(errno));
|
2021-07-24 10:53:41 +02:00
|
|
|
return -1;
|
2021-08-02 20:23:57 +02:00
|
|
|
}
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
char *looms[OVNI_MAX_LOOM];
|
|
|
|
char *hosts[OVNI_MAX_LOOM];
|
|
|
|
for (int l = 0; l < OVNI_MAX_LOOM; ++l) {
|
|
|
|
looms[l] = malloc(PATH_MAX*sizeof(char));
|
|
|
|
hosts[l] = malloc(PATH_MAX*sizeof(char));
|
|
|
|
}
|
|
|
|
|
2021-08-02 20:23:57 +02:00
|
|
|
while((dirent = readdir(dir)) != NULL)
|
|
|
|
{
|
|
|
|
if(find_dir_prefix_str(dirent, "loom", &loom_name) != 0)
|
|
|
|
{
|
|
|
|
/* Ignore other files in tracedir */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(trace->nlooms >= OVNI_MAX_LOOM)
|
|
|
|
{
|
|
|
|
err("too many looms for trace %s\n",
|
|
|
|
tracedir);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
sprintf(hosts[trace->nlooms], "%s", loom_name);
|
2021-08-02 20:23:57 +02:00
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
sprintf(looms[trace->nlooms], "%s/%s", tracedir, dirent->d_name);
|
|
|
|
|
|
|
|
trace->nlooms++;
|
|
|
|
}
|
2021-08-02 20:23:57 +02:00
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
qsort((const char **) hosts, trace->nlooms, sizeof(const char*), compare_alph);
|
|
|
|
qsort((const char **) looms, trace->nlooms, sizeof(const char*), compare_alph);
|
2021-08-02 20:23:57 +02:00
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
for (int l = 0; l < trace->nlooms; ++l) {
|
|
|
|
/* FIXME: Unsafe */
|
|
|
|
strcpy(trace->loom[l].hostname, hosts[l]);
|
2021-08-02 20:23:57 +02:00
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
if(load_loom(&trace->loom[l], l, looms[l]) != 0)
|
|
|
|
return -1;
|
2021-08-02 20:23:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
closedir(dir);
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-10-13 15:00:05 +02:00
|
|
|
for (int l = 0; l < OVNI_MAX_LOOM; ++l) {
|
|
|
|
free(looms[l]);
|
|
|
|
free(hosts[l]);
|
|
|
|
}
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
return 0;
|
2021-07-19 15:11:41 +02:00
|
|
|
}
|
2021-07-22 12:35:02 +02:00
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
static int
|
|
|
|
load_stream_buf(struct ovni_stream *stream, struct ovni_ethread *thread)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if(fstat(thread->stream_fd, &st) < 0)
|
|
|
|
{
|
|
|
|
perror("fstat");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-08-02 12:34:11 +02:00
|
|
|
if(st.st_size == 0)
|
|
|
|
{
|
2021-09-28 19:21:22 +02:00
|
|
|
err("warning: stream %d is empty\n", stream->tid);
|
2021-08-02 12:34:11 +02:00
|
|
|
stream->size = 0;
|
|
|
|
stream->buf = NULL;
|
|
|
|
stream->active = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
stream->size = st.st_size;
|
|
|
|
stream->buf = mmap(NULL, stream->size, PROT_READ, MAP_SHARED,
|
|
|
|
thread->stream_fd, 0);
|
|
|
|
|
|
|
|
if(stream->buf == MAP_FAILED)
|
|
|
|
{
|
|
|
|
perror("mmap");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-08-02 12:34:11 +02:00
|
|
|
stream->active = 1;
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
/* Populates the streams in a single array */
|
|
|
|
int
|
|
|
|
ovni_load_streams(struct ovni_trace *trace)
|
|
|
|
{
|
|
|
|
int i, j, k, s;
|
|
|
|
struct ovni_loom *loom;
|
|
|
|
struct ovni_eproc *proc;
|
|
|
|
struct ovni_ethread *thread;
|
|
|
|
struct ovni_stream *stream;
|
|
|
|
|
|
|
|
trace->nstreams = 0;
|
|
|
|
|
|
|
|
for(i=0; i<trace->nlooms; i++)
|
|
|
|
{
|
|
|
|
loom = &trace->loom[i];
|
|
|
|
for(j=0; j<loom->nprocs; j++)
|
|
|
|
{
|
|
|
|
proc = &loom->proc[j];
|
|
|
|
for(k=0; k<proc->nthreads; k++)
|
|
|
|
{
|
|
|
|
trace->nstreams++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trace->stream = calloc(trace->nstreams, sizeof(struct ovni_stream));
|
|
|
|
|
|
|
|
if(trace->stream == NULL)
|
|
|
|
{
|
|
|
|
perror("calloc");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-08-03 19:56:31 +02:00
|
|
|
err("loaded %d streams\n", trace->nstreams);
|
2021-07-24 10:53:41 +02:00
|
|
|
|
|
|
|
for(s=0, i=0; i<trace->nlooms; i++)
|
|
|
|
{
|
|
|
|
loom = &trace->loom[i];
|
|
|
|
for(j=0; j<loom->nprocs; j++)
|
|
|
|
{
|
|
|
|
proc = &loom->proc[j];
|
|
|
|
for(k=0; k<proc->nthreads; k++)
|
|
|
|
{
|
|
|
|
thread = &proc->thread[k];
|
|
|
|
stream = &trace->stream[s++];
|
|
|
|
|
|
|
|
stream->tid = thread->tid;
|
|
|
|
stream->thread = k;
|
|
|
|
stream->proc = j;
|
|
|
|
stream->loom = i;
|
|
|
|
stream->lastclock = 0;
|
2021-07-30 20:08:40 +02:00
|
|
|
stream->offset = 0;
|
|
|
|
stream->cur_ev = NULL;
|
2021-08-02 12:34:11 +02:00
|
|
|
|
|
|
|
if(load_stream_buf(stream, thread) != 0)
|
|
|
|
{
|
|
|
|
err("load_stream_buf failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovni_free_streams(struct ovni_trace *trace)
|
|
|
|
{
|
|
|
|
free(trace->stream);
|
|
|
|
}
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
int
|
2021-07-24 10:53:41 +02:00
|
|
|
ovni_load_next_event(struct ovni_stream *stream)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
size_t n, size;
|
|
|
|
uint8_t flags;
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
if(stream->active == 0)
|
2021-07-24 10:53:41 +02:00
|
|
|
{
|
2021-07-30 20:08:40 +02:00
|
|
|
dbg("stream is inactive, cannot load more events\n");
|
|
|
|
return -1;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
if(stream->cur_ev == NULL)
|
|
|
|
{
|
|
|
|
stream->cur_ev = (struct ovni_ev *) stream->buf;
|
|
|
|
stream->offset = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
//printf("advancing offset %ld bytes\n", ovni_ev_size(stream->cur_ev));
|
|
|
|
stream->offset += ovni_ev_size(stream->cur_ev);
|
2021-07-24 10:53:41 +02:00
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
/* We have reached the end */
|
|
|
|
if(stream->offset == stream->size)
|
2021-07-24 10:53:41 +02:00
|
|
|
{
|
|
|
|
stream->active = 0;
|
2021-08-02 12:34:11 +02:00
|
|
|
dbg("stream %d runs out of events\n", stream->tid);
|
2021-07-30 20:08:40 +02:00
|
|
|
return -1;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
/* It cannot overflow, otherwise we are reading garbage */
|
|
|
|
assert(stream->offset < stream->size);
|
|
|
|
|
|
|
|
stream->cur_ev = (struct ovni_ev *) &stream->buf[stream->offset];
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
|
|
|
//dbg("---------\n");
|
|
|
|
//dbg("ev size = %d\n", ovni_ev_size(stream->cur_ev));
|
|
|
|
//dbg("ev flags = %02x\n", stream->cur_ev->header.flags);
|
2021-07-24 10:53:41 +02:00
|
|
|
//dbg("loaded next event:\n");
|
2021-07-30 20:08:40 +02:00
|
|
|
//hexdump((uint8_t *) stream->cur_ev, ovni_ev_size(stream->cur_ev));
|
2021-07-24 10:53:41 +02:00
|
|
|
//dbg("---------\n");
|
|
|
|
|
2021-07-30 20:08:40 +02:00
|
|
|
return 0;
|
2021-07-24 10:53:41 +02:00
|
|
|
}
|