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
|
/*
* Copyright (C) 2009, 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 Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses>
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#define _LARGEFILE64_SOURCE
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <pthread.h>
#include <fcntl.h>
#include <unistd.h>
#include <ctype.h>
#include <errno.h>
#include "trace-cmd.h"
struct tracecmd_recorder {
int fd;
int fd1;
int fd2;
int trace_fd;
int brass[2];
int page_size;
int cpu;
int stop;
int max;
int pages;
int count;
unsigned fd_flags;
unsigned flags;
};
static int append_file(int size, int dst, int src)
{
char buf[size];
int r;
lseek64(src, 0, SEEK_SET);
/* If there's an error, then we are pretty much screwed :-p */
do {
r = read(src, buf, size);
if (r < 0)
return r;
r = write(dst, buf, r);
if (r < 0)
return r;
} while (r);
return 0;
}
void tracecmd_free_recorder(struct tracecmd_recorder *recorder)
{
if (!recorder)
return;
if (recorder->max) {
/* Need to put everything into fd1 */
if (recorder->fd == recorder->fd1) {
int ret;
/*
* Crap, the older data is in fd2, and we need
* to append fd1 onto it, and then copy over to fd1
*/
ret = append_file(recorder->page_size,
recorder->fd2, recorder->fd1);
/* Error on copying, then just keep fd1 */
if (ret) {
lseek64(recorder->fd1, 0, SEEK_END);
goto close;
}
lseek64(recorder->fd1, 0, SEEK_SET);
ftruncate(recorder->fd1, 0);
}
append_file(recorder->page_size, recorder->fd1, recorder->fd2);
}
close:
if (recorder->trace_fd >= 0)
close(recorder->trace_fd);
if (recorder->fd1 >= 0)
close(recorder->fd1);
if (recorder->fd2 >= 0)
close(recorder->fd2);
free(recorder);
}
struct tracecmd_recorder *
tracecmd_create_buffer_recorder_fd2(int fd, int fd2, int cpu, unsigned flags,
const char *buffer, int maxkb)
{
struct tracecmd_recorder *recorder;
char *path = NULL;
int ret;
recorder = malloc_or_die(sizeof(*recorder));
if (!recorder)
return NULL;
recorder->cpu = cpu;
recorder->flags = flags;
recorder->fd_flags = 1; /* SPLICE_F_MOVE */
if (!(recorder->flags & TRACECMD_RECORD_BLOCK))
recorder->fd_flags |= 2; /* and NON_BLOCK */
/* Init to know what to free and release */
recorder->trace_fd = -1;
recorder->brass[0] = -1;
recorder->brass[1] = -1;
recorder->page_size = getpagesize();
if (maxkb) {
int kb_per_page = recorder->page_size >> 10;
if (!kb_per_page)
kb_per_page = 1;
recorder->max = maxkb / kb_per_page;
/* keep max half */
recorder->max >>= 1;
if (!recorder->max)
recorder->max = 1;
} else
recorder->max = 0;
recorder->count = 0;
recorder->pages = 0;
/* fd always points to what to write to */
recorder->fd = fd;
recorder->fd1 = fd;
recorder->fd2 = fd2;
path = malloc_or_die(strlen(buffer) + 40);
if (!path)
goto out_free;
if (flags & TRACECMD_RECORD_SNAPSHOT)
sprintf(path, "%s/per_cpu/cpu%d/snapshot_raw", buffer, cpu);
else
sprintf(path, "%s/per_cpu/cpu%d/trace_pipe_raw", buffer, cpu);
recorder->trace_fd = open(path, O_RDONLY);
if (recorder->trace_fd < 0)
goto out_free;
free(path);
if ((recorder->flags & TRACECMD_RECORD_NOSPLICE) == 0) {
ret = pipe(recorder->brass);
if (ret < 0)
goto out_free;
}
return recorder;
out_free:
free(path);
tracecmd_free_recorder(recorder);
return NULL;
}
struct tracecmd_recorder *
tracecmd_create_buffer_recorder_fd(int fd, int cpu, unsigned flags, const char *buffer)
{
return tracecmd_create_buffer_recorder_fd2(fd, -1, cpu, flags, buffer, 0);
}
struct tracecmd_recorder *
tracecmd_create_buffer_recorder(const char *file, int cpu, unsigned flags, const char *buffer)
{
struct tracecmd_recorder *recorder;
int fd;
fd = open(file, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, 0644);
if (fd < 0)
return NULL;
recorder = tracecmd_create_buffer_recorder_fd(fd, cpu, flags, buffer);
if (!recorder) {
close(fd);
unlink(file);
}
return recorder;
}
struct tracecmd_recorder *
tracecmd_create_buffer_recorder_maxkb(const char *file, int cpu, unsigned flags,
const char *buffer, int maxkb)
{
struct tracecmd_recorder *recorder = NULL;
char *file2;
int len;
int fd;
int fd2;
if (!maxkb)
return tracecmd_create_buffer_recorder(file, cpu, flags, buffer);
len = strlen(file);
file2 = malloc(len + 3);
if (!file2)
return NULL;
sprintf(file2, "%s.1", file);
fd = open(file, O_RDWR | O_CREAT | O_TRUNC | O_LARGEFILE, 0644);
if (fd < 0)
goto out;
fd2 = open(file2, O_RDWR | O_CREAT | O_TRUNC | O_LARGEFILE, 0644);
if (fd < 0)
goto err;
recorder = tracecmd_create_buffer_recorder_fd2(fd, fd2, cpu, flags, buffer, maxkb);
if (!recorder)
goto err2;
out:
/* Unlink file2, we need to add everything to file at the end */
unlink(file2);
free(file2);
return recorder;
err2:
close(fd2);
err:
close(fd);
unlink(file);
goto out;
}
struct tracecmd_recorder *tracecmd_create_recorder_fd(int fd, int cpu, unsigned flags)
{
const char *tracing;
tracing = tracecmd_get_tracing_dir();
if (!tracing) {
errno = ENODEV;
return NULL;
}
return tracecmd_create_buffer_recorder_fd(fd, cpu, flags, tracing);
}
struct tracecmd_recorder *tracecmd_create_recorder(const char *file, int cpu, unsigned flags)
{
const char *tracing;
tracing = tracecmd_get_tracing_dir();
if (!tracing) {
errno = ENODEV;
return NULL;
}
return tracecmd_create_buffer_recorder(file, cpu, flags, tracing);
}
struct tracecmd_recorder *
tracecmd_create_recorder_maxkb(const char *file, int cpu, unsigned flags, int maxkb)
{
const char *tracing;
tracing = tracecmd_get_tracing_dir();
if (!tracing) {
errno = ENODEV;
return NULL;
}
return tracecmd_create_buffer_recorder_maxkb(file, cpu, flags, tracing, maxkb);
}
static inline void update_fd(struct tracecmd_recorder *recorder, int size)
{
int fd;
if (!recorder->max)
return;
recorder->count += size;
if (recorder->count >= recorder->page_size) {
recorder->count = 0;
recorder->pages++;
}
if (recorder->pages < recorder->max)
return;
recorder->pages = 0;
fd = recorder->fd;
/* Swap fd to next file. */
if (fd == recorder->fd1)
fd = recorder->fd2;
else
fd = recorder->fd1;
/* Zero out the new file we are writing to */
lseek64(fd, 0, SEEK_SET);
ftruncate(fd, 0);
recorder->fd = fd;
}
/*
* Returns -1 on error.
* or bytes of data read.
*/
static long splice_data(struct tracecmd_recorder *recorder)
{
long ret;
ret = splice(recorder->trace_fd, NULL, recorder->brass[1], NULL,
recorder->page_size, 1 /* SPLICE_F_MOVE */);
if (ret < 0) {
if (errno != EAGAIN && errno != EINTR) {
warning("recorder error in splice input");
return -1;
}
if (errno == EINTR)
return 0;
} else if (ret == 0)
return 0;
ret = splice(recorder->brass[0], NULL, recorder->fd, NULL,
recorder->page_size, recorder->fd_flags);
if (ret < 0) {
if (errno != EAGAIN && errno != EINTR) {
warning("recorder error in splice output");
return -1;
}
ret = 0;
} else
update_fd(recorder, ret);
return ret;
}
/*
* Returns -1 on error.
* or bytes of data read.
*/
static long read_data(struct tracecmd_recorder *recorder)
{
char buf[recorder->page_size];
long ret;
ret = read(recorder->trace_fd, buf, recorder->page_size);
if (ret < 0) {
if (errno != EAGAIN && errno != EINTR) {
warning("recorder error in read output");
return -1;
}
ret = 0;
}
if (ret > 0) {
write(recorder->fd, buf, ret);
update_fd(recorder, ret);
}
return ret;
}
static void set_nonblock(struct tracecmd_recorder *recorder)
{
long flags;
/* Do not block on reads for flushing */
flags = fcntl(recorder->trace_fd, F_GETFL);
fcntl(recorder->trace_fd, F_SETFL, flags | O_NONBLOCK);
/* Do not block on streams for write */
recorder->fd_flags |= 2; /* NON_BLOCK */
}
long tracecmd_flush_recording(struct tracecmd_recorder *recorder)
{
char buf[recorder->page_size];
long total = 0;
long wrote = 0;
long ret;
set_nonblock(recorder);
do {
if (recorder->flags & TRACECMD_RECORD_NOSPLICE)
ret = read_data(recorder);
else
ret = splice_data(recorder);
if (ret < 0)
return ret;
total += ret;
} while (ret);
/* splice only reads full pages */
do {
ret = read(recorder->trace_fd, buf, recorder->page_size);
if (ret > 0) {
write(recorder->fd, buf, ret);
wrote += ret;
}
} while (ret > 0);
/* Make sure we finish off with a page size boundary */
wrote &= recorder->page_size - 1;
if (wrote) {
memset(buf, 0, recorder->page_size);
write(recorder->fd, buf, recorder->page_size - wrote);
total += recorder->page_size;
}
return total;
}
int tracecmd_start_recording(struct tracecmd_recorder *recorder, unsigned long sleep)
{
struct timespec req;
long read = 1;
long ret;
recorder->stop = 0;
do {
/* Only sleep if we did not read anything last time */
if (!read && sleep) {
req.tv_sec = sleep / 1000000;
req.tv_nsec = (sleep % 1000000) * 1000;
nanosleep(&req, NULL);
}
read = 0;
do {
if (recorder->flags & TRACECMD_RECORD_NOSPLICE)
ret = read_data(recorder);
else
ret = splice_data(recorder);
if (ret < 0)
return ret;
read += ret;
} while (ret);
} while (!recorder->stop);
/* Flush out the rest */
ret = tracecmd_flush_recording(recorder);
if (ret < 0)
return ret;
return 0;
}
void tracecmd_stop_recording(struct tracecmd_recorder *recorder)
{
if (!recorder)
return;
set_nonblock(recorder);
recorder->stop = 1;
}
|