summaryrefslogtreecommitdiffstats
path: root/trace/record/record-main-lttng.c
blob: f931209c133f883b0589b83fc65a42a37d0288ea (plain) (blame)
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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Ravindra Kumar Meena <rmeena840@gmail.com>
 * Copyright (C) 2018, 2019 embedded brains GmbH
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <rtems/recorddata.h>
#include <rtems/recordclient.h>

#include <sys/queue.h>
#include <sys/socket.h>

#include <assert.h>
#include <getopt.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <inttypes.h>
#include <fcntl.h>
#include <errno.h>

#include <netinet/in.h>
#include <arpa/inet.h>

#define CTF_MAGIC                 0xC1FC1FC1
#define TASK_RUNNING              0x0000
#define TASK_IDLE                 0x0402
#define UUID_SIZE                 16
#define THREAD_NAME_SIZE          16
#define THREAD_API_SIZE           3
#define THREAD_ID_SIZE            65536
#define CHAR_BIT_SIZE             8
#define COMPACT_HEADER_ID         31

static const struct option longopts[] = {
  { "help", 0, NULL, 'h' },
  { "host", 1, NULL, 'H' },
  { "port", 1, NULL, 'p' },
  { "input", 1, NULL, 'i' },
  { NULL, 0, NULL, 0 }
};

typedef struct client_item {
  uint64_t           ns;
  uint32_t           cpu;
  rtems_record_event event;
  uint64_t           data;
} client_item;

typedef struct packet_header {
  uint32_t                     ctf_magic;
  uint8_t                      uuid[ UUID_SIZE ];
  uint32_t                     stream_id;
  uint64_t                     stream_instance_id;
} __attribute__((__packed__)) packet_header;

typedef struct packet_context {
  packet_header                packet_header;
  uint64_t                     timestamp_begin;
  uint64_t                     timestamp_end;
  uint64_t                     content_size;
  uint64_t                     packet_size;
  uint64_t                     packet_seq_num;
  unsigned long                events_discarded;
  uint32_t                     cpu_id;
} __attribute__((__packed__)) packet_context;

typedef struct event_header_compact {
  uint8_t                      id;
  uint32_t                     event_id;
  uint64_t                     ns;
} __attribute__((__packed__)) event_header_compact;

typedef struct sched_switch {
  event_header_compact         event_header_compact;
  uint8_t                      prev_comm[ THREAD_NAME_SIZE ];
  int32_t                      prev_tid;
  int32_t                      prev_prio;
  int64_t                      prev_state;
  uint8_t                      next_comm[ THREAD_NAME_SIZE ];
  int32_t                      next_tid;
  int32_t                      next_prio;
} __attribute__((__packed__)) sched_switch;

typedef struct thread_id_name {
  uint64_t                     thread_id;
  size_t                       name_index;
} thread_id_name;

typedef struct client_context {
  FILE              *event_streams[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  uint64_t          timestamp_begin[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  uint64_t          timestamp_end[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  uint64_t          content_size[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  uint64_t          packet_size[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  thread_id_name    thread_id_name[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  sched_switch      sched_switch[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];
  /*
   * @brief Thread names indexed by API and object index.
   *
   * The API indices are 0 for Internal API, 1 for Classic API and 2 for
   * POSIX API.
   */
  char thread_names[ THREAD_API_SIZE ][ THREAD_ID_SIZE ][ THREAD_NAME_SIZE ];
} client_context;

static const uint8_t uuid[] = { 0x6a, 0x77, 0x15, 0xd0, 0xb5, 0x02, 0x4c, 0x65,
0x86, 0x78, 0x67, 0x77, 0xac, 0x7f, 0x75, 0x5a };

static void usage( char **argv )
{
  printf(
    "%s [--host=HOST] [--port=PORT] [--input=INPUT]\n"
    "\n"
    "Mandatory arguments to long options are mandatory for short options too.\n"
    "  -h, --help                 print this help text\n"
    "  -H, --host=HOST            the host IPv4 address of the record server\n"
    "  -p, --port=PORT            the TCP port of the record server\n"
    "  -i, --input=INPUT          the input file\n",
    argv[ 0 ]
  );
}

static int connect_client( const char *host, uint16_t port,
const char *input_file, bool input_file_flag )
{
  struct sockaddr_in in_addr;
  int fd;
  int rv;

  fd = ( input_file_flag ) ? open( input_file, O_RDONLY ) :
  socket( PF_INET, SOCK_STREAM, 0 );
  assert( fd >= 0 );

  memset( &in_addr, 0, sizeof( in_addr ) );
  in_addr.sin_family = AF_INET;
  in_addr.sin_port = htons( port );
  in_addr.sin_addr.s_addr = inet_addr( host );

  if ( !input_file_flag ) {
    rv = connect( fd, ( struct sockaddr * ) &in_addr, sizeof( in_addr ) );
    assert( rv == 0 );
  }

  return fd;
}

static size_t get_api_of_id( uint64_t id )
{
  return ( id >> 24 ) & 0x7;
}

static size_t get_index_of_id( uint64_t id )
{
  return id & 0xffff;
}

static bool is_idle_task_by_api( size_t api )
{
  return api == 1;
}

void write_sched_switch( client_context *cctx, const client_item *item )
{
  event_header_compact *evt_head_name;
  FILE **f;
  sched_switch se;
  size_t se_size;
  char *thd_name;
  size_t api;
  size_t index;

  f = cctx->event_streams;
  se = cctx->sched_switch[ item->cpu ];
  evt_head_name = &se.event_header_compact;
  se_size = sizeof( sched_switch ) * CHAR_BIT_SIZE;
  api = get_api_of_id( item->data );
  index = get_index_of_id( item->data );

  if( api > THREAD_API_SIZE || api == 0 ) {
    return;
  } else {
    se.next_tid = is_idle_task_by_api( api ) ? 0 : item->data;
    api--;
  }

  if( index > THREAD_ID_SIZE ) {
    return;
  }

  /*
   * next_* values
   */
  thd_name = cctx->thread_names[ api ][ index ];
  memcpy( se.next_comm, thd_name, sizeof( se.next_comm ) );
  se.next_prio = 0;

  evt_head_name->id = COMPACT_HEADER_ID;
  evt_head_name->event_id = 0;
  evt_head_name->ns = item->ns;

  cctx->content_size[ item->cpu ] += se_size;
  cctx->packet_size[ item->cpu] += se_size;

  fwrite( &se, sizeof( se ), 1, f[ item->cpu ] );
}

void map_thread_names( client_context *cctx, const client_item *item )
{
  thread_id_name thd_id_name;
  uint64_t thread_name;
  size_t api;
  size_t index;
  size_t i;
  size_t j;

  thd_id_name = cctx->thread_id_name[ item->cpu ];
  thread_name = item->data;
  api = get_api_of_id( thd_id_name.thread_id );
  index = get_index_of_id( thd_id_name.thread_id );
  i = thd_id_name.name_index == 0 ? 0 : THREAD_NAME_SIZE/2;
  j = thd_id_name.name_index == 0 ? THREAD_NAME_SIZE/2 : THREAD_NAME_SIZE;

  if( api > THREAD_API_SIZE || api == 0 ) {
    return;
  } else {
    api--;
  }

  if( index > THREAD_ID_SIZE ) {
    return;
  }

  for( i = 0; i < j ; i++ ) {
    cctx->thread_names[ api ][ index ][ i ] = ( thread_name  & 0xff );
    thread_name = ( thread_name >> CHAR_BIT_SIZE );
  }
  thd_id_name.name_index++;
}

static void print_item( client_context *cctx, const client_item *item )
{
  sched_switch *se;
  thread_id_name *thd_id_name;
  event_header_compact *evt_head_name;
  size_t api;
  size_t index;
  char *thd_name;

  se = &cctx->sched_switch[ item->cpu ];
  thd_id_name = &cctx->thread_id_name[ item->cpu ];
  evt_head_name = &se->event_header_compact;

  if( cctx->timestamp_begin[ item->cpu ] == 0 ) {
    cctx->timestamp_begin[ item->cpu ] = item->ns;
  }
  cctx->timestamp_end[ item->cpu ] = item->ns;

  switch ( item->event )
  {
    case RTEMS_RECORD_THREAD_SWITCH_OUT:
      ;
      evt_head_name->ns = item->ns;
      api = get_api_of_id( item->data );
      index = get_index_of_id( item->data );

      if( api > THREAD_API_SIZE || api == 0 ) {
        break;
      } else {
        se->prev_tid = is_idle_task_by_api( api ) ? 0 : item->data;
        se->prev_state = is_idle_task_by_api( api ) ? TASK_IDLE :
        TASK_RUNNING;
        api--;
      }

      if( index > THREAD_ID_SIZE ) {
        break;
      }

      thd_name = cctx->thread_names[ api ][ index ];
      memcpy( se->prev_comm, thd_name, sizeof( se->prev_comm ) );
      se->prev_prio = 0;
      break;
    case RTEMS_RECORD_THREAD_SWITCH_IN:
      /*
       * current timestamp equals record item timestamp
       */
      if ( item->ns == evt_head_name->ns ) {
        write_sched_switch( cctx, item );
      }
      break;
    case RTEMS_RECORD_THREAD_ID:
      thd_id_name->thread_id = item->data;
      thd_id_name->name_index = 0;
      break;
    case RTEMS_RECORD_THREAD_NAME:
      if( thd_id_name->name_index > 1 ) {
        break;
      }
      map_thread_names( cctx, item );
      break;
    default:
      break;
  }
}

static rtems_record_client_status handler(
  uint64_t            bt,
  uint32_t            cpu,
  rtems_record_event  event,
  uint64_t            data,
  void               *arg
)
{
  client_item item;

  item.ns = rtems_record_client_bintime_to_nanoseconds( bt );
  item.cpu = cpu;
  item.event = event;
  item.data = data;

  print_item( arg, &item );

  return RTEMS_RECORD_CLIENT_SUCCESS;
}

static const char metadata[] =
"/* CTF 1.8 */\n"
"\n"
"typealias integer { size = 5; align = 1; signed = false; } := uint5_t;\n"
"typealias integer { size = 8; align = 8; signed = false; } := uint8_t;\n"
"typealias integer { size = 32; align = 8; signed = false; } := uint32_t;\n"
"typealias integer { size = 64; align = 8; signed = false; } := uint64_t;\n"
"typealias integer { size = 64; align = 8; signed = false; } := unsigned long;\n"
"\n"
"trace {\n"
"\tmajor = 1;\n"
"\tminor = 8;\n"
"\tuuid = \"6a7715d0-b502-4c65-8678-6777ac7f755a\";\n"
"\tbyte_order = le;\n"
"\tpacket.header := struct {\n"
"\t\tuint32_t magic;\n"
"\t\tuint8_t  uuid[16];\n"
"\t\tuint32_t stream_id;\n"
"\t\tuint64_t stream_instance_id;\n"
"\t};\n"
"};\n"
"\n"
"env {\n"
"\thostname = \"Record_Item\";\n"
"\tdomain = \"kernel\";\n"
"\tsysname = \"Linux\";\n"
"\tkernel_release = \"4.18.14-arch1-1-ARCH\";\n"
"\tkernel_version = \"#1 SMP PREEMPT Sat Thu 17 13:42:37 UTC 2019\";\n"
"\ttracer_name = \"lttng-modules\";\n"
"\ttracer_major = 2;\n"
"\ttracer_minor = 11;\n"
"\ttracer_patchlevel = 0;\n"
"};\n"
"\n"
"clock {\n"
"\tname = \"monotonic\";\n"
"\tuuid = \"234d669d-7651-4bc1-a7fd-af581ecc6232\";\n"
"\tdescription = \"Monotonic Clock\";\n"
"\tfreq = 1000000000;\n"
"\toffset = 1539783991179109789;\n"
"};\n"
"\n"
"typealias integer {\n"
"\tsize = 27; align = 1; signed = false;\n"
"\tmap = clock.monotonic.value;\n"
"} := uint27_clock_monotonic_t;\n"
"\n"
"typealias integer {\n"
"\tsize = 64; align = 8; signed = false;\n"
"\tmap = clock.monotonic.value;\n"
"} := uint64_clock_monotonic_t;\n"
"\n"
"struct packet_context {\n"
"\tuint64_clock_monotonic_t timestamp_begin;\n"
"\tuint64_clock_monotonic_t timestamp_end;\n"
"\tuint64_t content_size;\n"
"\tuint64_t packet_size;\n"
"\tuint64_t packet_seq_num;\n"
"\tunsigned long events_discarded;\n"
"\tuint32_t cpu_id;\n"
"};\n"
"\n"
"struct event_header_compact {\n"
"\tenum : uint5_t { compact = 0 ... 30, extended = 31 } id;\n"
"\tvariant <id> {\n"
"\t\tstruct {\n"
"\t\t\tuint27_clock_monotonic_t timestamp;\n"
"\t\t} compact;\n"
"\t\tstruct {\n"
"\t\t\tuint32_t id;\n"
"\t\t\tuint64_clock_monotonic_t timestamp;\n"
"\t\t} extended;\n"
"\t} v;\n"
"} align(8);\n"
"\n"
"stream {\n"
"\tid = 0;\n"
"\tevent.header := struct event_header_compact;\n"
"\tpacket.context := struct packet_context;\n"
"};\n"
"\n"
"event {\n"
"\tname = \"sched_switch\";\n"
"\tid = 0;\n"
"\tstream_id = 0;\n"
"\tfields := struct {\n"
"\t\tinteger { size = 8; align = 8; signed = 0; encoding = UTF8; base = 10;}\
 _prev_comm[16];\n"
"\t\tinteger { size = 32; align = 8; signed = 1; encoding = none; base = 10; }\
 _prev_tid;\n"
"\t\tinteger { size = 32; align = 8; signed = 1; encoding = none; base = 10; }\
 _prev_prio;\n"
"\t\tinteger { size = 64; align = 8; signed = 1; encoding = none; base = 10; }\
 _prev_state;\n"
"\t\tinteger { size = 8; align = 8; signed = 0; encoding = UTF8; base = 10; }\
 _next_comm[16];\n"
"\t\tinteger { size = 32; align = 8; signed = 1; encoding = none; base = 10; }\
 _next_tid;\n"
"\t\tinteger { size = 32; align = 8; signed = 1; encoding = none; base = 10; }\
 _next_prio;\n"
"\t};\n"
"};"
;

void generate_metadata()
{
  FILE *file = fopen( "metadata", "w" );
  assert( file != NULL );
  fwrite( metadata, sizeof( metadata ) - 1, 1, file );
  fclose( file );
}

int main( int argc, char **argv )
{
  rtems_record_client_context ctx;
  client_context cctx;
  packet_context pckt_ctx;
  packet_header *pckt_head;
  const char *host;
  uint16_t port;
  const char *input_file;
  bool input_file_flag;
  bool input_TCP_host;
  bool input_TCP_port;
  int fd;
  int rv;
  int opt;
  int longindex;
  size_t i;
  size_t pckt_ctx_size;
  char filename[ 256 ];
  FILE *event_streams[ RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT ];

  host = "127.0.0.1";
  port = 1234;
  input_file = "raw_data";
  input_file_flag = false;
  input_TCP_host = false;
  input_TCP_port = false;
  pckt_head = &pckt_ctx.packet_header;
  pckt_ctx_size = sizeof( pckt_ctx ) * CHAR_BIT_SIZE;

  while (
    ( opt = getopt_long( argc, argv, "hH:p:i:", &longopts[0], &longindex ) )
      != -1
  ) {
    switch ( opt ) {
      case 'h':
        usage( argv );
        exit( EXIT_SUCCESS );
        break;
      case 'H':
        host = optarg;
        input_TCP_host = true;
        break;
      case 'p':
        port = (uint16_t) strtoul( optarg, NULL, 10 );
        input_TCP_port = true;
        break;
      case 'i':
        input_file = optarg;
        assert( input_file != NULL );
        input_file_flag = true;
        break;
      default:
        exit( EXIT_FAILURE );
        break;
    }
  }

  if( input_file_flag && ( input_TCP_host || input_TCP_port ) ) {
    printf( "There should be one input medium\n" );
    exit( EXIT_SUCCESS );
  }

  memset( &cctx, 0, sizeof( cctx ) );
  memcpy( pckt_head->uuid, uuid, sizeof( pckt_head->uuid ) );

  generate_metadata();

  for( i = 0; i < RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT; i++ ) {
    snprintf( filename, sizeof( filename ), "event_%zu", i );
    event_streams[ i ] = fopen( filename, "wb" );
    fwrite( &pckt_ctx, sizeof( pckt_ctx ), 1, event_streams[ i ] );
    assert( event_streams[ i ] != NULL );
    cctx.event_streams[ i ] = event_streams[ i ];
  }

  fd = connect_client( host, port, input_file, input_file_flag );
  rtems_record_client_init( &ctx, handler, &cctx );

  while ( true ) {
    int buf[ 8192 ];
    ssize_t n;

    n = ( input_file_flag ) ? read( fd, buf, sizeof( buf ) ) :
    recv( fd, buf, sizeof( buf ), 0 );
    if ( n > 0 ) {
      rtems_record_client_run( &ctx, buf, (size_t) n );
    } else {
      break;
    }
  }

  for ( i = 0; i < RTEMS_RECORD_CLIENT_MAXIMUM_CPU_COUNT; i++ ) {
    fseek( event_streams[ i ], 0, SEEK_SET );

    pckt_head->ctf_magic = CTF_MAGIC;
    pckt_head->stream_id = 0;
    pckt_head->stream_instance_id = i;

    pckt_ctx.timestamp_begin =  cctx.timestamp_begin[ i ];
    pckt_ctx.timestamp_end = cctx.timestamp_end[ i ];

    pckt_ctx.content_size = cctx.content_size[ i ] + pckt_ctx_size;
    pckt_ctx.packet_size = cctx.packet_size[ i ] + pckt_ctx_size;

    pckt_ctx.packet_seq_num = 0;
    pckt_ctx.events_discarded = 0;
    pckt_ctx.cpu_id = i;

    fwrite( &pckt_ctx, sizeof( pckt_ctx ), 1, event_streams[ i ] );
    fclose( event_streams[ i ] );
  }

  rv = close( fd );
  assert( rv == 0 );

  rtems_record_client_destroy( &ctx );

  return 0;
}