2015-03-31 20:14:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TEST_UTILS_H
|
|
|
|
#define __TEST_UTILS_H
|
2016-01-26 22:04:57 +01:00
|
|
|
|
2015-03-31 20:14:03 +02:00
|
|
|
#include <inttypes.h>
|
|
|
|
#include <sys/mman.h>
|
2016-01-26 22:04:57 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2015-11-19 22:52:16 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <string>
|
|
|
|
#include <regex>
|
|
|
|
|
2015-12-05 00:27:46 +01:00
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/stringprintf.h>
|
2015-03-31 20:14:03 +02:00
|
|
|
|
|
|
|
#include "private/ScopeGuard.h"
|
|
|
|
|
2017-02-27 21:17:47 +01:00
|
|
|
#if defined(__LP64__)
|
|
|
|
#define PATH_TO_SYSTEM_LIB "/system/lib64/"
|
|
|
|
#else
|
|
|
|
#define PATH_TO_SYSTEM_LIB "/system/lib/"
|
|
|
|
#endif
|
|
|
|
|
2017-01-10 22:00:37 +01:00
|
|
|
#if defined(__BIONIC__)
|
|
|
|
#define KNOWN_FAILURE_ON_BIONIC(x) xfail_ ## x
|
|
|
|
#else
|
|
|
|
#define KNOWN_FAILURE_ON_BIONIC(x) x
|
|
|
|
#endif
|
|
|
|
|
2016-10-11 03:34:27 +02:00
|
|
|
#if defined(__linux__)
|
|
|
|
|
2015-03-31 20:14:03 +02:00
|
|
|
struct map_record {
|
|
|
|
uintptr_t addr_start;
|
|
|
|
uintptr_t addr_end;
|
|
|
|
|
|
|
|
int perms;
|
|
|
|
|
|
|
|
size_t offset;
|
|
|
|
|
|
|
|
dev_t device;
|
|
|
|
ino_t inode;
|
|
|
|
|
|
|
|
std::string pathname;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Maps {
|
|
|
|
public:
|
|
|
|
static bool parse_maps(std::vector<map_record>* maps) {
|
2015-09-23 01:40:14 +02:00
|
|
|
FILE* fp = fopen("/proc/self/maps", "re");
|
2015-03-31 20:14:03 +02:00
|
|
|
if (fp == nullptr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto fp_guard = make_scope_guard([&]() {
|
|
|
|
fclose(fp);
|
|
|
|
});
|
|
|
|
|
|
|
|
char line[BUFSIZ];
|
|
|
|
while (fgets(line, sizeof(line), fp) != nullptr) {
|
|
|
|
map_record record;
|
2015-04-07 04:05:58 +02:00
|
|
|
uint32_t dev_major, dev_minor;
|
2015-09-23 01:40:14 +02:00
|
|
|
int path_offset;
|
2015-03-31 20:14:03 +02:00
|
|
|
char prot[5]; // sizeof("rwxp")
|
2015-09-23 01:40:14 +02:00
|
|
|
if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %4s %" SCNxPTR " %x:%x %lu %n",
|
2015-03-31 20:14:03 +02:00
|
|
|
&record.addr_start, &record.addr_end, prot, &record.offset,
|
2015-09-23 01:40:14 +02:00
|
|
|
&dev_major, &dev_minor, &record.inode, &path_offset) == 7) {
|
2015-03-31 20:14:03 +02:00
|
|
|
record.perms = 0;
|
|
|
|
if (prot[0] == 'r') {
|
|
|
|
record.perms |= PROT_READ;
|
|
|
|
}
|
|
|
|
if (prot[1] == 'w') {
|
|
|
|
record.perms |= PROT_WRITE;
|
|
|
|
}
|
|
|
|
if (prot[2] == 'x') {
|
|
|
|
record.perms |= PROT_EXEC;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: parse shared/private?
|
|
|
|
|
|
|
|
record.device = makedev(dev_major, dev_minor);
|
2015-09-23 01:40:14 +02:00
|
|
|
record.pathname = line + path_offset;
|
|
|
|
if (!record.pathname.empty() && record.pathname.back() == '\n') {
|
|
|
|
record.pathname.pop_back();
|
|
|
|
}
|
2015-03-31 20:14:03 +02:00
|
|
|
maps->push_back(record);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-11-19 22:52:16 +01:00
|
|
|
extern "C" pid_t gettid();
|
|
|
|
|
2016-10-11 03:34:27 +02:00
|
|
|
#endif
|
|
|
|
|
2015-11-19 22:52:16 +01:00
|
|
|
static inline void WaitUntilThreadSleep(std::atomic<pid_t>& tid) {
|
|
|
|
while (tid == 0) {
|
|
|
|
usleep(1000);
|
|
|
|
}
|
|
|
|
std::string filename = android::base::StringPrintf("/proc/%d/stat", tid.load());
|
|
|
|
std::regex regex {R"(\s+S\s+)"};
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
std::string content;
|
|
|
|
ASSERT_TRUE(android::base::ReadFileToString(filename, &content));
|
|
|
|
if (std::regex_search(content, regex)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
usleep(1000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 22:04:57 +01:00
|
|
|
static inline void AssertChildExited(int pid, int expected_exit_status) {
|
|
|
|
int status;
|
|
|
|
ASSERT_EQ(pid, waitpid(pid, &status, 0));
|
2017-01-31 22:19:30 +01:00
|
|
|
if (expected_exit_status >= 0) {
|
|
|
|
ASSERT_TRUE(WIFEXITED(status));
|
|
|
|
ASSERT_EQ(expected_exit_status, WEXITSTATUS(status));
|
|
|
|
} else {
|
|
|
|
ASSERT_TRUE(WIFSIGNALED(status));
|
|
|
|
ASSERT_EQ(-expected_exit_status, WTERMSIG(status));
|
|
|
|
}
|
2016-01-26 22:04:57 +01:00
|
|
|
}
|
|
|
|
|
2016-05-17 22:29:37 +02:00
|
|
|
// The absolute path to the executable
|
|
|
|
const std::string& get_executable_path();
|
2016-03-01 22:11:28 +01:00
|
|
|
|
2016-07-21 00:33:07 +02:00
|
|
|
// Access to argc/argv/envp
|
|
|
|
int get_argc();
|
|
|
|
char** get_argv();
|
|
|
|
char** get_envp();
|
|
|
|
|
2017-01-31 22:19:30 +01:00
|
|
|
// ExecTestHelper is only used in bionic and glibc tests.
|
|
|
|
#ifndef __APPLE__
|
|
|
|
class ExecTestHelper {
|
|
|
|
public:
|
|
|
|
char** GetArgs() {
|
|
|
|
return const_cast<char**>(args_.data());
|
|
|
|
}
|
|
|
|
char** GetEnv() {
|
|
|
|
return const_cast<char**>(env_.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetArgs(const std::vector<const char*> args) {
|
|
|
|
args_ = args;
|
|
|
|
}
|
|
|
|
void SetEnv(const std::vector<const char*> env) {
|
|
|
|
env_ = env;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Run(const std::function<void()>& child_fn, int expected_exit_status,
|
|
|
|
const char* expected_output) {
|
|
|
|
int fds[2];
|
|
|
|
ASSERT_NE(pipe(fds), -1);
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
ASSERT_NE(pid, -1);
|
|
|
|
|
|
|
|
if (pid == 0) {
|
|
|
|
// Child.
|
|
|
|
close(fds[0]);
|
|
|
|
dup2(fds[1], STDOUT_FILENO);
|
|
|
|
dup2(fds[1], STDERR_FILENO);
|
|
|
|
if (fds[1] != STDOUT_FILENO && fds[1] != STDERR_FILENO) close(fds[1]);
|
|
|
|
child_fn();
|
|
|
|
FAIL();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parent.
|
|
|
|
close(fds[1]);
|
|
|
|
std::string output;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
ssize_t bytes_read;
|
|
|
|
while ((bytes_read = TEMP_FAILURE_RETRY(read(fds[0], buf, sizeof(buf)))) > 0) {
|
|
|
|
output.append(buf, bytes_read);
|
|
|
|
}
|
|
|
|
close(fds[0]);
|
|
|
|
|
|
|
|
AssertChildExited(pid, expected_exit_status);
|
|
|
|
if (expected_output != nullptr) {
|
|
|
|
ASSERT_EQ(expected_output, output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<const char*> args_;
|
|
|
|
std::vector<const char*> env_;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2015-03-31 20:14:03 +02:00
|
|
|
#endif
|