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
|
/*********************************************************************
*
* Copyright 2011 Intel Corporation
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*********************************************************************/
#include <assert.h>
#include <string.h>
#include <stdlib.h>
#include <getopt.h>
#include <iostream>
#include <fstream>
#ifndef __has_feature
# define __has_feature(x) 0
#endif
#include "os_string.hpp"
#include "os_process.hpp"
#include "os_version.hpp"
#include "cli.hpp"
#include "cli_resources.hpp"
#if defined(__APPLE__)
#define TRACE_VARIABLE "DYLD_FRAMEWORK_PATH"
#define GL_TRACE_WRAPPER "OpenGL.framework/OpenGL"
#elif defined(_WIN32)
#define GL_TRACE_WRAPPER "opengl32.dll"
#else
#define TRACE_VARIABLE "LD_PRELOAD"
#define GL_TRACE_WRAPPER "glxtrace.so"
#define EGL_TRACE_WRAPPER "egltrace.so"
#endif
#ifdef _WIN32
static inline bool
copyWrapper(const os::String & wrapperPath,
const char *programPath,
bool verbose)
{
os::String wrapperFilename(wrapperPath);
wrapperFilename.trimDirectory();
os::String tmpWrapper(programPath);
tmpWrapper.trimFilename();
tmpWrapper.join(wrapperFilename);
if (verbose) {
std::cerr << wrapperPath << " -> " << tmpWrapper << "\n";
}
if (tmpWrapper.exists()) {
std::cerr << "error: not overwriting " << tmpWrapper << "\n";
return false;
}
if (!os::copyFile(wrapperPath, tmpWrapper, false)) {
std::cerr << "error: failed to copy " << wrapperPath << " into " << tmpWrapper << "\n";
return false;
}
return true;
}
#endif /* _WIN32 */
static int
traceProgram(trace::API api,
char * const *argv,
const char *output,
int verbose,
bool debug,
bool mhook,
bool timestamp)
{
const char *wrapperFilename;
std::vector<const char *> args;
int status = 1;
/*
* TODO: simplify code
*/
bool useInject = false;
switch (api) {
case trace::API_GL:
wrapperFilename = GL_TRACE_WRAPPER;
break;
#ifdef EGL_TRACE_WRAPPER
case trace::API_EGL:
wrapperFilename = EGL_TRACE_WRAPPER;
break;
#endif
#ifdef _WIN32
case trace::API_D3D7:
wrapperFilename = "ddraw.dll";
break;
case trace::API_D3D8:
wrapperFilename = "d3d8.dll";
break;
case trace::API_D3D9:
wrapperFilename = "d3d9.dll";
break;
case trace::API_DXGI:
wrapperFilename = "dxgitrace.dll";
useInject = true;
break;
case trace::API_D2D1:
wrapperFilename = "d2d1trace.dll";
useInject = true;
break;
#endif
default:
std::cerr << "error: unsupported API\n";
return 1;
}
os::String wrapperPath = findWrapper(wrapperFilename, verbose);
if (!wrapperPath.length()) {
std::cerr << "error: failed to find " << wrapperFilename << " wrapper (rerun with -v option for more details)\n";
goto exit;
}
#if defined(_WIN32)
/*
* Use DLL injection method on Windows, even for APIs that don't stricly
* need it.
*/
useInject = true;
if (useInject) {
args.push_back("inject");
if (debug) {
args.push_back("-d");
}
if (mhook) {
args.push_back("-m");
}
if (timestamp) {
args.push_back("-t");
}
for (int i = 1; i < verbose; ++i) {
args.push_back("-v");
}
args.push_back("-D");
args.push_back(wrapperPath);
args.push_back("--");
} else {
/* On Windows copy the wrapper to the program directory.
*/
if (!copyWrapper(wrapperPath, argv[0], verbose)) {
goto exit;
}
}
#else /* !_WIN32 */
(void)useInject;
#endif /* !_WIN32 */
#if defined(__APPLE__)
/* On Mac OS X, using DYLD_LIBRARY_PATH, we actually set the
* parent directory, not the file. */
wrapperPath.trimFilename();
wrapperPath.trimFilename();
#endif
/*
* Spawn child process.
*/
{
#if defined(TRACE_VARIABLE)
const char *oldEnvVarValue = getenv(TRACE_VARIABLE);
if (oldEnvVarValue) {
#if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
/* Ensure libasan.so is preloaded first. */
os::String tmp = oldEnvVarValue;
tmp.append(OS_PATH_SEP);
tmp.append(wrapperPath);
wrapperPath = tmp;
#else
wrapperPath.append(OS_PATH_SEP);
wrapperPath.append(oldEnvVarValue);
#endif
}
std::string ex;
if (debug) {
#if defined(__APPLE__)
bool lldb = true;
#else
bool lldb = false;
#endif
if (lldb) {
/*
* Debug with LLDB.
*
* See also http://lldb.llvm.org/lldb-gdb.html
*/
char scriptFileName[] = "/tmp/apitrace.XXXXXX";
int scriptFD = mkstemp(scriptFileName);
if (scriptFD < 0) {
std::cerr << "error: failed to create temporary lldb script file\n";
exit(1);
}
FILE *scriptStream = fdopen(scriptFD, "w");
fprintf(scriptStream, "env " TRACE_VARIABLE "='%s'\n", wrapperPath.str());
fclose(scriptStream);
args.push_back("lldb");
args.push_back("-s");
args.push_back(scriptFileName);
args.push_back("--");
} else {
/*
* Debug with GDB.
*/
ex = "set exec-wrapper env " TRACE_VARIABLE "='";
ex.append(wrapperPath.str());
ex.append("'");
args.push_back("gdb");
args.push_back("--ex");
args.push_back(ex.c_str());
args.push_back("--args");
}
os::unsetEnvironment(TRACE_VARIABLE);
} else {
/* FIXME: Don't modify our (ie parent) environment */
os::setEnvironment(TRACE_VARIABLE, wrapperPath.str());
}
if (verbose) {
std::cerr << TRACE_VARIABLE << "=" << wrapperPath.str() << "\n";
}
#endif /* TRACE_VARIABLE */
if (output) {
os::setEnvironment("TRACE_FILE", output);
}
if (timestamp) {
os::setEnvironment("TRACE_TIMESTAMP", "1");
}
for (char * const * arg = argv; *arg; ++arg) {
args.push_back(*arg);
}
if (verbose) {
const char *sep = "";
for (auto & arg : args) {
const char *quote;
if (strchr(arg, ' ') != NULL) {
quote = "\"";
} else {
quote = "";
}
std::cerr << sep << quote << arg << quote;
sep = " ";
}
std::cerr << "\n";
}
args.push_back(NULL);
status = os::execute((char * const *)&args[0]);
#if defined(TRACE_VARIABLE)
if (oldEnvVarValue) {
os::setEnvironment(TRACE_VARIABLE, oldEnvVarValue);
} else {
os::unsetEnvironment(TRACE_VARIABLE);
}
#endif
}
exit:
#if defined(_WIN32)
if (!useInject) {
os::String tmpWrapper(argv[0]);
tmpWrapper.trimFilename();
tmpWrapper.join(wrapperFilename);
os::removeFile(tmpWrapper);
}
#endif
if (output) {
os::unsetEnvironment("TRACE_FILE");
}
return status;
}
static const char *synopsis = "Generate a new trace by executing the given program.";
static void
usage(void)
{
std::cout << "usage: apitrace trace [OPTIONS] PROGRAM [ARGS ...]\n"
<< synopsis << "\n"
"\n"
" The given program will be executed with the given arguments.\n"
" During execution, all OpenGL calls will be captured to a trace\n"
" file. That trace file can then be used\n"
" with other apitrace utilities for replay or analysis.\n"
"\n"
" -v, --verbose verbose output\n"
" -a, --api=API specify API to trace: "
#ifdef _WIN32
"gl, d3d7, d3d8, d3d9, or dxgi (for d3d10 and higher)"
#else
"gl (for glx or cgl) or egl"
#endif
";\n"
" default is `gl`\n"
" -o, --output=TRACE specify output trace file;\n"
" default is `PROGRAM.trace`\n"
" -t, --timestamp append timestamp to output trace filename\n"
#ifdef TRACE_VARIABLE
" -d, --debug run inside debugger (gdb/lldb)\n"
#endif
#ifdef _WIN32
" -m, --mhook use Mhook (instead of IAT patching)\n"
#endif
;
}
const static char *
shortOptions = "+hva:o:dmt";
const static struct option
longOptions[] = {
{ "help", no_argument, 0, 'h' },
{ "verbose", no_argument, 0, 'v' },
{ "api", required_argument, 0, 'a' },
{ "output", required_argument, 0, 'o' },
{ "debug", no_argument, 0, 'd' },
{ "mhook", no_argument, 0, 'm' },
{ "timestamp", no_argument, 0, 't' },
{ 0, 0, 0, 0 }
};
static int
command(int argc, char *argv[])
{
int verbose = 0;
trace::API api = trace::API_GL;
const char *output = NULL;
bool debug = false;
bool mhook = false;
bool timestamp = false;
int opt;
while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) {
switch (opt) {
case 'h':
usage();
return 0;
case 'v':
++verbose;
break;
case 'a':
if (strcmp(optarg, "gl") == 0) {
api = trace::API_GL;
} else if (strcmp(optarg, "egl") == 0) {
api = trace::API_EGL;
} else if (strcmp(optarg, "ddraw") == 0 ||
strcmp(optarg, "d3d6") == 0 ||
strcmp(optarg, "d3d7") == 0) {
api = trace::API_D3D7;
} else if (strcmp(optarg, "d3d8") == 0) {
api = trace::API_D3D8;
} else if (strcmp(optarg, "d3d9") == 0) {
api = trace::API_D3D9;
} else if (strcmp(optarg, "dxgi") == 0 ||
strcmp(optarg, "d3d10") == 0 ||
strcmp(optarg, "d3d10_1") == 0 ||
strcmp(optarg, "d3d11") == 0 ||
strcmp(optarg, "d3d11_1") == 0) {
api = trace::API_DXGI;
} else if (strcmp(optarg, "d2d") == 0 ||
strcmp(optarg, "d2d1") == 0) {
api = trace::API_D2D1;
} else {
std::cerr << "error: unknown API `" << optarg << "`\n";
usage();
return 1;
}
break;
case 'o':
output = optarg;
break;
case 'd':
debug = true;
break;
case 'm':
mhook = true;
break;
case 't':
timestamp = true;
break;
default:
std::cerr << "error: unexpected option `" << (char)opt << "`\n";
usage();
return 1;
}
}
if (optind == argc) {
std::cerr << "error: no command specified\n";
usage();
return 1;
}
assert(argv[argc] == 0);
return traceProgram(api, argv + optind, output, verbose, debug, mhook, timestamp);
}
const Command trace_command = {
"trace",
synopsis,
usage,
command
};
|