* Copyright (c) 2016-2023 Google, Inc. All rights reserved.
* **********************************************************/
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * 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.
*
* * Neither the name of Google, Inc. nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* 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 GOOGLE, INC. 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.
*/
* a "burst" of execution and memory allocations (malloc() and free())
* in the middle of the application. It then detaches. Later it re-attaches
* and detaches again for several times.
*/
#include "dr_api.h"
#include "drmemtrace/drmemtrace.h"
#include <assert.h>
#include <iostream>
#include <fstream>
#include <string>
#include <math.h>
#include <stdlib.h>
namespace dynamorio {
namespace drmemtrace {
bool
my_setenv(const char *var, const char *value)
{
#ifdef UNIX
return setenv(var, value, 1 ) == 0;
#else
return SetEnvironmentVariable(var, value) == TRUE;
#endif
}
extern "C" ptr_uint_t
return_big_value(int arg)
{
return (((ptr_uint_t)1 << (8 * sizeof(ptr_uint_t) - 1)) - 1) | arg;
}
#ifdef UNIX
extern "C" {
int
has_aliases(int arg1, int arg2)
{
return arg1;
}
int
alias_1arg(int arg1) __attribute__((alias("has_aliases")));
int
alias_3args(int arg1, int arg2, int arg3) __attribute__((alias("has_aliases")));
}
#endif
static int
do_some_work(int arg)
{
static const int iters = 1000;
double *val = new double;
double **vals = (double **)calloc(iters, sizeof(double *));
*val = arg;
for (int i = 0; i < iters; ++i) {
vals[i] = (double *)malloc(sizeof(double));
*vals[i] = sin(*val);
*val += *vals[i] + (double)return_big_value(i);
#ifdef UNIX
*val += has_aliases(i, i);
#endif
}
for (int i = 0; i < iters; i++) {
*val += *vals[i];
}
for (int i = 0; i < iters; i++) {
free(vals[i]);
}
free(vals);
double temp = *val;
delete val;
return (temp > 0);
}
static void
exit_cb(void *)
{
const char *funclist_path;
drmemtrace_status_t res = drmemtrace_get_funclist_path(&funclist_path);
assert(res == DRMEMTRACE_SUCCESS);
std::ifstream stream(funclist_path);
assert(stream.good());
std::string line;
bool found_malloc = false;
bool found_return_big_value = false;
int found_alias_count = 0;
while (std::getline(stream, line)) {
assert(line.find('!') != std::string::npos);
if (line.find("!return_big_value") != std::string::npos)
found_return_big_value = true;
if (line.find("!malloc") != std::string::npos)
found_malloc = true;
#ifdef UNIX
if (line.find("alias") != std::string::npos) {
++found_alias_count;
assert(line.find(",1,") != std::string::npos);
}
#endif
}
assert(found_malloc);
assert(found_return_big_value);
#ifdef UNIX
assert(found_alias_count == 3);
#endif
}
int
test_main(int argc, const char *argv[])
{
if (!my_setenv("DYNAMORIO_OPTIONS",
"-stderr_mask 0xc -rstats_to_stderr"
" -client_lib ';;-offline -record_heap"
" -record_replace_retaddr"
#ifdef UNIX
" -record_function \"has_aliases|2&alias_1arg|1&alias_3args|3\""
#endif
" -record_function \"malloc|1&return_big_value|1\"'"))
std::cerr << "failed to set env var!\n";
for (int i = 0; i < 3; i++) {
std::cerr << "pre-DR init\n";
dr_app_setup();
assert(!dr_app_running_under_dynamorio());
drmemtrace_status_t res = drmemtrace_buffer_handoff(nullptr, exit_cb, nullptr);
assert(res == DRMEMTRACE_SUCCESS);
std::cerr << "pre-DR start\n";
if (do_some_work(i * 1) < 0)
std::cerr << "error in computation\n";
dr_app_start();
if (do_some_work(i * 2) < 0)
std::cerr << "error in computation\n";
std::cerr << "pre-DR detach\n";
dr_app_stop_and_cleanup();
if (do_some_work(i * 3) < 0)
std::cerr << "error in computation\n";
std::cerr << "all done\n";
}
return 0;
}
#if defined(UNIX) && defined(TEST_APP_DR_CLIENT_MAIN)
# ifdef __cplusplus
extern "C" {
# endif
DR_EXPORT void
dr_client_main(client_id_t id, int argc, const char *argv[])
{
std::cerr << "app dr_client_main\n";
drmemtrace_client_main(id, argc, argv);
}
# ifdef __cplusplus
}
# endif
#endif
}
}