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
|
#include <arpa/inet.h>
#include <iostream>
#include <chrono>
#include <cutils/sockets.h>
#include <hardware/gralloc.h>
#include <vector>
#include <tuple>
#include <algorithm>
#include <tuple>
#include <numeric>
#include <fcntl.h>
#include <string>
#include <fstream>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
//#define TRACE_CHILD_LIFETIME
#ifdef TRACE_CHILD_LIFETIME
#define ATRACE_TAG ATRACE_TAG_ALWAYS
#include <utils/Trace.h>
#endif // TRACE_CHILD_LIFETIME
using namespace std;
#define ASSERT_TRUE(cond) \
do { \
if (!(cond)) {\
cerr << __func__ << "( " << getpid() << "):" << __LINE__ << " condition:" << #cond << " failed\n" << endl; \
exit(EXIT_FAILURE); \
} \
} while (0)
class Pipe {
int m_readFd;
int m_writeFd;
Pipe(const Pipe &) = delete;
Pipe& operator=(const Pipe &) = delete;
Pipe& operator=(const Pipe &&) = delete;
public:
Pipe(int readFd, int writeFd) : m_readFd{readFd}, m_writeFd{writeFd} {
fcntl(m_readFd, F_SETFD, FD_CLOEXEC);
fcntl(m_writeFd, F_SETFD, FD_CLOEXEC);
}
Pipe(Pipe&& rval) noexcept {
m_readFd = rval.m_readFd;
m_writeFd = rval.m_writeFd;
rval.m_readFd = 0;
rval.m_writeFd = 0;
}
~Pipe() {
if (m_readFd)
close(m_readFd);
if (m_writeFd)
close(m_writeFd);
}
void preserveOverFork(bool preserve) {
if (preserve) {
fcntl(m_readFd, F_SETFD, 0);
fcntl(m_writeFd, F_SETFD,0);
} else {
fcntl(m_readFd, F_SETFD, FD_CLOEXEC);
fcntl(m_writeFd, F_SETFD, FD_CLOEXEC);
}
}
int getReadFd() {
return m_readFd;
}
int getWriteFd() {
return m_writeFd;
}
void signal() {
bool val = true;
int error = write(m_writeFd, &val, sizeof(val));
ASSERT_TRUE(error == sizeof(val));
};
void wait() {
bool val = false;
int error = read(m_readFd, &val, sizeof(val));
ASSERT_TRUE(error == sizeof(val));
}
bool wait_ret_error() {
bool val = false;
int error = read(m_readFd, &val, sizeof(val));
return (error != 1);
}
template <typename T> void send(const T& v) {
int error = write(m_writeFd, &v, sizeof(T));
ASSERT_TRUE(error >= 0);
}
template <typename T> void recv(T& v) {
int error = read(m_readFd, &v, sizeof(T));
ASSERT_TRUE(error >= 0);
}
static Pipe makePipeFromFds(int readFd, int writeFd) {
return Pipe(readFd, writeFd);
}
static tuple<Pipe, Pipe> createPipePair() {
int a[2];
int b[2];
int error1 = pipe(a);
int error2 = pipe(b);
ASSERT_TRUE(error1 >= 0);
ASSERT_TRUE(error2 >= 0);
return make_tuple(Pipe(a[0], b[1]), Pipe(b[0], a[1]));
}
};
pid_t createProcess(Pipe pipe, const char *exName,
const char *arg, bool use_memcg)
{
pipe.preserveOverFork(true);
pid_t pid = fork();
// child proc
if (pid == 0) {
char readFdStr[16];
char writeFdStr[16];
snprintf(readFdStr, sizeof(readFdStr), "%d", pipe.getReadFd());
snprintf(writeFdStr, sizeof(writeFdStr), "%d", pipe.getWriteFd());
char exPath[PATH_MAX];
ssize_t exPathLen = readlink("/proc/self/exe", exPath, sizeof(exPath));
bool isExPathAvailable =
exPathLen != -1 && exPathLen < static_cast<ssize_t>(sizeof(exPath));
if (isExPathAvailable) {
exPath[exPathLen] = '\0';
}
execl(isExPathAvailable ? exPath : exName, exName, "--worker", arg, readFdStr, writeFdStr,
use_memcg ? "1" : "0", nullptr);
ASSERT_TRUE(0);
}
// parent process
else if (pid > 0) {
pipe.preserveOverFork(false);
}
else {
ASSERT_TRUE(0);
}
return pid;
}
static void write_oomadj_to_lmkd(int oomadj) {
// Connect to lmkd and store our oom_adj
int lmk_procprio_cmd[4];
int sock;
int tries = 10;
while ((sock = socket_local_client("lmkd",
ANDROID_SOCKET_NAMESPACE_RESERVED,
SOCK_SEQPACKET)) < 0) {
usleep(100000);
if (tries-- < 0) break;
}
if (sock < 0) {
cout << "Failed to connect to lmkd, errno " << errno << endl;
exit(1);
}
lmk_procprio_cmd[0] = htonl(1);
lmk_procprio_cmd[1] = htonl(getpid());
lmk_procprio_cmd[2] = htonl(getuid());
lmk_procprio_cmd[3] = htonl(oomadj);
int written = write(sock, lmk_procprio_cmd, sizeof(lmk_procprio_cmd));
cout << "Wrote " << written << " bytes to lmkd control socket." << endl;
}
static void create_memcg() {
char buf[256];
uid_t uid = getuid();
pid_t pid = getpid();
snprintf(buf, sizeof(buf), "/dev/memcg/apps/uid_%u", uid);
int tasks = mkdir(buf, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
if (tasks < 0 && errno != EEXIST) {
cerr << "Failed to create memory cgroup under " << buf << endl;
return;
}
snprintf(buf, sizeof(buf), "/dev/memcg/apps/uid_%u/pid_%u", uid, pid);
tasks = mkdir(buf, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
if (tasks < 0) {
cerr << "Failed to create memory cgroup under " << buf << endl;
return;
}
snprintf(buf, sizeof(buf), "/dev/memcg/apps/uid_%u/pid_%u/tasks", uid, pid);
tasks = open(buf, O_WRONLY);
if (tasks < 0) {
cerr << "Unable to add process to memory cgroup" << endl;
return;
}
snprintf(buf, sizeof(buf), "%u", pid);
write(tasks, buf, strlen(buf));
close(tasks);
}
void usage() {
cout << "Application allocates memory until it's killed." << endl
<< "It starts at max oom_score_adj and gradually "
<< "decreases it to 0." << endl
<< "Usage: alloc-stress [-g | --cgroup]" << endl
<< "\t-g | --cgroup\tcreates memory cgroup for the process" << endl;
}
size_t s = 4 * (1 << 20);
void *gptr;
int main(int argc, char *argv[])
{
bool use_memcg = false;
if ((argc > 1) && (std::string(argv[1]) == "--worker")) {
if (std::string(argv[5]) == "1") {
create_memcg();
}
write_oomadj_to_lmkd(atoi(argv[2]));
Pipe p{atoi(argv[3]), atoi(argv[4])};
long long allocCount = 0;
while (1) {
p.wait();
char *ptr = (char*)malloc(s);
memset(ptr, (int)allocCount >> 10, s);
for (int i = 0; i < s; i+= 4096) {
*((long long*)&ptr[i]) = allocCount + i;
}
usleep(10 * 1000);
gptr = ptr;
//cout << "total alloc: " << allocCount / (1<<20)<< " adj: " << argv[2]<< endl;;
//cout << "ptr: " << (long long)(void*)ptr << endl;;
p.signal();
allocCount += s;
}
} else {
if (argc == 2) {
if (std::string(argv[1]) == "--help" ||
std::string(argv[1]) == "-h") {
usage();
return 0;
}
if (std::string(argv[1]) == "--cgroup" ||
std::string(argv[1]) == "-g") {
use_memcg = true;
}
}
cout << "Memory cgroups are "
<< (use_memcg ? "used" : "not used") << endl;
write_oomadj_to_lmkd(-1000);
for (int i = 1000; i >= 0; i -= 100) {
auto pipes = Pipe::createPipePair();
char arg[16];
pid_t ch_pid;
snprintf(arg, sizeof(arg), "%d", i);
ch_pid = createProcess(std::move(std::get<1>(pipes)),
argv[0], arg, use_memcg);
Pipe &p = std::get<0>(pipes);
size_t t = 0;
#ifdef TRACE_CHILD_LIFETIME
char trace_str[64];
snprintf(trace_str, sizeof(trace_str), "alloc-stress, adj=%d, pid=%u", i, ch_pid);
ATRACE_INT(trace_str, i);
#endif
while (1) {
//;cout << getpid() << ":" << "parent signal" << endl;
p.signal();
if (p.wait_ret_error()) {
int status;
waitpid(0, &status, 0);
break;
}
t += s;
}
cout << "pid: " << ch_pid << " adj: " << i << " sz: " << t / (1 << 20) << endl;
#ifdef TRACE_CHILD_LIFETIME
ATRACE_INT(trace_str, 0);
#endif
}
}
return 0;
}
|