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
|
/*
* Copyright (C) 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License (not later!)
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#define _LARGEFILE64_SOURCE
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libgen.h>
#include <getopt.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/mman.h>
#include <pthread.h>
#include <fcntl.h>
#include <unistd.h>
#include <ctype.h>
#include <errno.h>
#include "trace-local.h"
static unsigned int page_size;
static const char *default_input_file = "trace.dat";
static const char *input_file;
enum split_types {
SPLIT_NONE,
/* The order of these must be reverse of the case statement in the options */
SPLIT_SECONDS,
SPLIT_MSECS,
SPLIT_USECS,
SPLIT_EVENTS,
SPLIT_PAGES,
SPLIT_NR_TYPES,
};
struct cpu_data {
unsigned long long ts;
unsigned long long offset;
struct pevent_record *record;
int cpu;
int fd;
int index;
void *commit;
void *page;
char *file;
};
static int create_type_len(struct pevent *pevent, int time, int len)
{
static int bigendian = -1;
char *ptr;
int test;
if (bigendian < 0) {
test = 0x4321;
ptr = (char *)&test;
if (*ptr == 0x21)
bigendian = 0;
else
bigendian = 1;
}
if (pevent->file_bigendian)
time |= (len << 27);
else
time = (time << 5) | len;
return __data2host4(pevent, time);
}
static int write_record(struct tracecmd_input *handle,
struct pevent_record *record,
struct cpu_data *cpu_data,
enum split_types type)
{
unsigned long long diff;
struct pevent *pevent;
void *page;
int len;
char *ptr;
int index = 0;
int time;
page = cpu_data->page;
pevent = tracecmd_get_pevent(handle);
ptr = page + cpu_data->index;
diff = record->ts - cpu_data->ts;
if (diff > (1 << 27)) {
/* Add a time stamp */
len = RINGBUF_TYPE_TIME_EXTEND;
time = (unsigned int)(diff & ((1ULL << 27) - 1));
time = create_type_len(pevent, time, len);
*(unsigned *)ptr = time;
ptr += 4;
time = (unsigned int)(diff >> 27);
*(unsigned *)ptr = __data2host4(pevent, time);
cpu_data->ts = record->ts;
cpu_data->index += 8;
return 0;
}
if (record->size) {
if (record->size < 28 * 4)
len = record->size / 4;
else
len = 0;
}
time = (unsigned)diff;
time = create_type_len(pevent, time, len);
memcpy(ptr, &time, 4);
ptr += 4;
index = 4;
if (!len) {
len = record->size + 4;
*(unsigned *)ptr = __data2host4(pevent, len);
ptr += 4;
index += 4;
}
len = (record->size + 3) & ~3;
index += len;
memcpy(ptr, record->data, len);
cpu_data->index += index;
cpu_data->ts = record->ts;
return 1;
}
static void write_page(struct pevent *pevent,
struct cpu_data *cpu_data, int long_size)
{
if (long_size == 8)
*(unsigned long long *)cpu_data->commit =
__data2host8(pevent, (unsigned long long)cpu_data->index - 16);
else
*(unsigned int *)cpu_data->commit =
__data2host4(pevent, cpu_data->index - 12);
write(cpu_data->fd, cpu_data->page, page_size);
}
static struct pevent_record *read_record(struct tracecmd_input *handle,
int percpu, int *cpu)
{
if (percpu)
return tracecmd_read_data(handle, *cpu);
return tracecmd_read_next_data(handle, cpu);
}
static void set_cpu_time(struct tracecmd_input *handle,
int percpu, unsigned long long start, int cpu, int cpus)
{
if (percpu) {
tracecmd_set_cpu_to_timestamp(handle, cpu, start);
return;
}
for (cpu = 0; cpu < cpus; cpu++)
tracecmd_set_cpu_to_timestamp(handle, cpu, start);
return;
}
static int parse_cpu(struct tracecmd_input *handle,
struct cpu_data *cpu_data,
unsigned long long start,
unsigned long long end,
int count_limit, int percpu, int cpu,
enum split_types type)
{
struct pevent_record *record;
struct pevent *pevent;
void *ptr;
int page_size;
int long_size = 0;
int cpus;
int count = 0;
int pages = 0;
cpus = tracecmd_cpus(handle);
long_size = tracecmd_long_size(handle);
page_size = tracecmd_page_size(handle);
pevent = tracecmd_get_pevent(handle);
/* Force new creation of first page */
if (percpu) {
cpu_data[cpu].index = page_size + 1;
cpu_data[cpu].page = NULL;
} else {
for (cpu = 0; cpu < cpus; cpu++) {
cpu_data[cpu].index = page_size + 1;
cpu_data[cpu].page = NULL;
}
}
/*
* Get the cpu pointers up to the start of the
* start time stamp.
*/
record = read_record(handle, percpu, &cpu);
if (start) {
set_cpu_time(handle, percpu, start, cpu, cpus);
while (record && record->ts < start) {
free_record(record);
record = read_record(handle, percpu, &cpu);
}
} else if (record)
start = record->ts;
while (record && (!end || record->ts <= end)) {
if (cpu_data[cpu].index + record->record_size > page_size) {
if (type == SPLIT_PAGES && ++pages > count_limit)
break;
if (cpu_data[cpu].page)
write_page(pevent, &cpu_data[cpu], long_size);
else
cpu_data[cpu].page = malloc_or_die(page_size);
memset(cpu_data[cpu].page, 0, page_size);
ptr = cpu_data[cpu].page;
*(unsigned long long*)ptr =
__data2host8(pevent, record->ts);
cpu_data[cpu].ts = record->ts;
ptr += 8;
cpu_data[cpu].commit = ptr;
ptr += long_size;
cpu_data[cpu].index = 8 + long_size;
}
cpu_data[cpu].offset = record->offset;
if (write_record(handle, record, &cpu_data[cpu], type)) {
free_record(record);
record = read_record(handle, percpu, &cpu);
/* if we hit the end of the cpu, clear the offset */
if (!record) {
if (percpu)
cpu_data[cpu].offset = 0;
else
for (cpu = 0; cpu < cpus; cpu++)
cpu_data[cpu].offset = 0;
}
switch (type) {
case SPLIT_NONE:
break;
case SPLIT_SECONDS:
if (record &&
record->ts >
(start + (unsigned long long)count_limit * 1000000000ULL)) {
free_record(record);
record = NULL;
}
break;
case SPLIT_MSECS:
if (record &&
record->ts >
(start + (unsigned long long)count_limit * 1000000ULL)) {
free_record(record);
record = NULL;
}
break;
case SPLIT_USECS:
if (record &&
record->ts >
(start + (unsigned long long)count_limit * 1000ULL)) {
free_record(record);
record = NULL;
}
break;
case SPLIT_EVENTS:
if (++count >= count_limit) {
free_record(record);
record = NULL;
}
break;
default:
break;
}
}
}
if (record)
free_record(record);
if (percpu) {
if (cpu_data[cpu].page) {
write_page(pevent, &cpu_data[cpu], long_size);
free(cpu_data[cpu].page);
cpu_data[cpu].page = NULL;
}
} else {
for (cpu = 0; cpu < cpus; cpu++) {
if (cpu_data[cpu].page) {
write_page(pevent, &cpu_data[cpu], long_size);
free(cpu_data[cpu].page);
cpu_data[cpu].page = NULL;
}
}
}
return 0;
}
static double parse_file(struct tracecmd_input *handle,
const char *output_file,
unsigned long long start,
unsigned long long end, int percpu, int only_cpu,
int count, enum split_types type)
{
unsigned long long current;
struct tracecmd_output *ohandle;
struct cpu_data *cpu_data;
struct pevent_record *record;
char **cpu_list;
char *output;
char *base;
char *file;
char *dir;
int cpus;
int cpu;
int fd;
output = strdup(output_file);
dir = dirname(output);
base = basename(output);
ohandle = tracecmd_copy(handle, output_file);
cpus = tracecmd_cpus(handle);
cpu_data = malloc_or_die(sizeof(*cpu_data) * cpus);
for (cpu = 0; cpu < cpus; cpu++) {
file = malloc_or_die(strlen(output_file) + 50);
sprintf(file, "%s/.tmp.%s.%d", dir, base, cpu);
fd = open(file, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, 0644);
cpu_data[cpu].cpu = cpu;
cpu_data[cpu].fd = fd;
cpu_data[cpu].file = file;
cpu_data[cpu].offset = 0;
if (start)
tracecmd_set_cpu_to_timestamp(handle, cpu, start);
}
if (only_cpu >= 0) {
parse_cpu(handle, cpu_data, start, end, count,
1, only_cpu, type);
} else if (percpu) {
for (cpu = 0; cpu < cpus; cpu++)
parse_cpu(handle, cpu_data, start,
end, count, percpu, cpu, type);
} else
parse_cpu(handle, cpu_data, start,
end, count, percpu, -1, type);
cpu_list = malloc_or_die(sizeof(*cpu_list) * cpus);
for (cpu = 0; cpu < cpus; cpu ++)
cpu_list[cpu] = cpu_data[cpu].file;
tracecmd_append_cpu_data(ohandle, cpus, cpu_list);
current = end;
for (cpu = 0; cpu < cpus; cpu++) {
/* Set the tracecmd cursor to the next set of records */
if (cpu_data[cpu].offset) {
record = tracecmd_read_at(handle, cpu_data[cpu].offset, NULL);
if (record && (!current || record->ts > current))
current = record->ts + 1;
free_record(record);
}
unlink(cpu_data[cpu].file);
free(cpu_data[cpu].file);
}
free(cpu_data);
free(cpu_list);
free(output);
tracecmd_output_close(ohandle);
return current;
}
void trace_split (int argc, char **argv)
{
struct tracecmd_input *handle;
unsigned long long start_ns = 0, end_ns = 0;
unsigned long long current;
double start, end;
char *endptr;
char *output = NULL;
char *output_file;
enum split_types split_type = SPLIT_NONE;
enum split_types type = SPLIT_NONE;
int count;
int repeat = 0;
int percpu = 0;
int cpu = -1;
int ac;
int c;
if (strcmp(argv[1], "split") != 0)
usage(argv);
while ((c = getopt(argc-1, argv+1, "+ho:i:s:m:u:e:p:rcC:")) >= 0) {
switch (c) {
case 'h':
usage(argv);
break;
case 'p':
type++;
case 'e':
type++;
case 'u':
type++;
case 'm':
type++;
case 's':
type++;
if (split_type != SPLIT_NONE)
die("Only one type of split is allowed");
count = atoi(optarg);
if (count <= 0)
die("Units must be greater than 0");
split_type = type;
/* Spliting by pages only makes sense per cpu */
if (type == SPLIT_PAGES)
percpu = 1;
break;
case 'r':
repeat = 1;
break;
case 'c':
percpu = 1;
break;
case 'C':
cpu = atoi(optarg);
break;
case 'o':
if (output)
die("only one output file allowed");
output = strdup(optarg);
break;
case 'i':
input_file = optarg;
break;
default:
usage(argv);
}
}
ac = (argc - optind);
if (ac >= 2) {
optind++;
start = strtod(argv[optind], &endptr);
if (ac > 3)
usage(argv);
/* Make sure a true start value was entered */
if (*endptr != 0)
die("Start value not floating point: %s", argv[optind]);
start_ns = (unsigned long long)(start * 1000000000.0);
optind++;
if (ac == 3) {
end = strtod(argv[optind], &endptr);
/* Make sure a true end value was entered */
if (*endptr != 0)
die("End value not floating point: %s",
argv[optind]);
end_ns = (unsigned long long)(end * 1000000000.0);
if (end_ns < start_ns)
die("Error: end is less than start");
}
}
if (!input_file)
input_file = default_input_file;
handle = tracecmd_open(input_file);
if (!handle)
die("error reading %s", input_file);
if (tracecmd_get_flags(handle) & TRACECMD_FL_LATENCY)
die("trace-cmd split does not work with latency traces\n");
page_size = tracecmd_page_size(handle);
if (!output)
output = strdup(input_file);
if (!repeat) {
output = realloc(output, strlen(output) + 3);
strcat(output, ".1");
}
current = start_ns;
output_file = malloc_or_die(strlen(output) + 50);
c = 1;
do {
if (repeat)
sprintf(output_file, "%s.%04d", output, c++);
else
strcpy(output_file, output);
current = parse_file(handle, output_file, start_ns, end_ns,
percpu, cpu, count, type);
if (!repeat)
break;
start_ns = 0;
} while (current && (!end_ns || current < end_ns));
free(output);
free(output_file);
tracecmd_close(handle);
return;
}
|