blob: f6385cbbcef7c5d33fb0f7d674bdef70dec1ea8c [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andy McFadden06a6b552010-07-13 16:28:09 -070017#define LOG_TAG "android.os.Debug"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070019#include <assert.h>
20#include <ctype.h>
21#include <errno.h>
Dianne Hackbornf72467a2012-06-08 17:23:59 -070022#include <fcntl.h>
Mark Salyzyn85394032014-04-16 10:28:37 -070023#include <inttypes.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070024#include <malloc.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028#include <sys/time.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070029#include <time.h>
30#include <unistd.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
Colin Crossc4fb5f92016-02-02 16:51:15 -080032#include <iomanip>
33#include <string>
Sandeep Patilbe825412018-12-11 10:09:46 -080034#include <vector>
Colin Crossc4fb5f92016-02-02 16:51:15 -080035
Christopher Ferris4740d542019-04-16 11:34:58 -070036#include <android-base/logging.h>
Christopher Ferris15c02332019-09-11 19:08:52 -070037#include <bionic/malloc.h>
Josh Gao3ce36962017-01-05 18:28:24 -080038#include <debuggerd/client.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070039#include <log/log.h>
40#include <utils/misc.h>
41#include <utils/String8.h>
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -070042
Steven Morelandbdd5c422017-08-11 10:57:59 -070043#include <nativehelper/JNIHelp.h>
44#include <nativehelper/ScopedUtfChars.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070045#include "jni.h"
Sandeep Patilfcd4a4a2019-01-12 22:42:05 -080046#include <meminfo/procmeminfo.h>
Sandeep Patilbe825412018-12-11 10:09:46 -080047#include <meminfo/sysmeminfo.h>
Mark Salyzyn52eb4e02016-09-28 16:15:30 -070048#include <memtrack/memtrack.h>
49#include <memunreachable/memunreachable.h>
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -080050#include <android-base/strings.h>
Daniel Colascione6c518102017-07-27 03:33:34 -070051#include "android_os_Debug.h"
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -070052
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053namespace android
54{
55
Dianne Hackborn0e3328f2011-07-17 13:31:17 -070056enum {
57 HEAP_UNKNOWN,
58 HEAP_DALVIK,
59 HEAP_NATIVE,
Dianne Hackborn18429302014-11-03 13:58:11 -080060
Dianne Hackborn64770d12013-05-23 17:51:19 -070061 HEAP_DALVIK_OTHER,
Ian Rogers7c9f30b2013-02-27 10:57:13 -080062 HEAP_STACK,
Dianne Hackborn0e3328f2011-07-17 13:31:17 -070063 HEAP_CURSOR,
64 HEAP_ASHMEM,
Dianne Hackborn18429302014-11-03 13:58:11 -080065 HEAP_GL_DEV,
Dianne Hackborn0e3328f2011-07-17 13:31:17 -070066 HEAP_UNKNOWN_DEV,
67 HEAP_SO,
68 HEAP_JAR,
69 HEAP_APK,
70 HEAP_TTF,
71 HEAP_DEX,
Anwar Ghuloum8884ef42013-03-15 12:56:59 -070072 HEAP_OAT,
Anwar Ghuloum88887d02013-03-19 15:30:12 -070073 HEAP_ART,
Dianne Hackborn0e3328f2011-07-17 13:31:17 -070074 HEAP_UNKNOWN_MAP,
Adam Lesinski5b4ef812013-09-23 10:06:09 -070075 HEAP_GRAPHICS,
76 HEAP_GL,
77 HEAP_OTHER_MEMTRACK,
Dianne Hackborn64770d12013-05-23 17:51:19 -070078
Mathieu Chartier95550dd2017-07-13 15:01:34 -070079 // Dalvik extra sections (heap).
Anwar Ghuloum3c615062013-05-13 14:18:02 -070080 HEAP_DALVIK_NORMAL,
81 HEAP_DALVIK_LARGE,
Mathieu Chartier25c5e2b2014-12-08 16:20:26 -080082 HEAP_DALVIK_ZYGOTE,
83 HEAP_DALVIK_NON_MOVING,
Mathieu Chartier95550dd2017-07-13 15:01:34 -070084
85 // Dalvik other extra sections.
86 HEAP_DALVIK_OTHER_LINEARALLOC,
87 HEAP_DALVIK_OTHER_ACCOUNTING,
88 HEAP_DALVIK_OTHER_CODE_CACHE,
89 HEAP_DALVIK_OTHER_COMPILER_METADATA,
90 HEAP_DALVIK_OTHER_INDIRECT_REFERENCE_TABLE,
91
92 // Boot vdex / app dex / app vdex
93 HEAP_DEX_BOOT_VDEX,
94 HEAP_DEX_APP_DEX,
95 HEAP_DEX_APP_VDEX,
96
97 // App art, boot art.
98 HEAP_ART_APP,
99 HEAP_ART_BOOT,
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700100
101 _NUM_HEAP,
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700102 _NUM_EXCLUSIVE_HEAP = HEAP_OTHER_MEMTRACK+1,
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700103 _NUM_CORE_HEAP = HEAP_NATIVE+1
104};
105
106struct stat_fields {
107 jfieldID pss_field;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700108 jfieldID pssSwappable_field;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800109 jfieldID rss_field;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700110 jfieldID privateDirty_field;
111 jfieldID sharedDirty_field;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700112 jfieldID privateClean_field;
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700113 jfieldID sharedClean_field;
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700114 jfieldID swappedOut_field;
Martijn Coenene0764852016-01-07 17:04:22 -0800115 jfieldID swappedOutPss_field;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700116};
117
118struct stat_field_names {
119 const char* pss_name;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700120 const char* pssSwappable_name;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800121 const char* rss_name;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700122 const char* privateDirty_name;
123 const char* sharedDirty_name;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700124 const char* privateClean_name;
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700125 const char* sharedClean_name;
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700126 const char* swappedOut_name;
Martijn Coenene0764852016-01-07 17:04:22 -0800127 const char* swappedOutPss_name;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700128};
129
130static stat_fields stat_fields[_NUM_CORE_HEAP];
131
132static stat_field_names stat_field_names[_NUM_CORE_HEAP] = {
Dianne Hackborne17b4452018-01-10 13:15:40 -0800133 { "otherPss", "otherSwappablePss", "otherRss", "otherPrivateDirty", "otherSharedDirty",
Martijn Coenene0764852016-01-07 17:04:22 -0800134 "otherPrivateClean", "otherSharedClean", "otherSwappedOut", "otherSwappedOutPss" },
Dianne Hackborne17b4452018-01-10 13:15:40 -0800135 { "dalvikPss", "dalvikSwappablePss", "dalvikRss", "dalvikPrivateDirty", "dalvikSharedDirty",
Martijn Coenene0764852016-01-07 17:04:22 -0800136 "dalvikPrivateClean", "dalvikSharedClean", "dalvikSwappedOut", "dalvikSwappedOutPss" },
Dianne Hackborne17b4452018-01-10 13:15:40 -0800137 { "nativePss", "nativeSwappablePss", "nativeRss", "nativePrivateDirty", "nativeSharedDirty",
Martijn Coenene0764852016-01-07 17:04:22 -0800138 "nativePrivateClean", "nativeSharedClean", "nativeSwappedOut", "nativeSwappedOutPss" }
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700139};
140
141jfieldID otherStats_field;
Martijn Coenene0764852016-01-07 17:04:22 -0800142jfieldID hasSwappedOutPss_field;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143
144struct stats_t {
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700145 int pss;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700146 int swappablePss;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800147 int rss;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700148 int privateDirty;
149 int sharedDirty;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700150 int privateClean;
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700151 int sharedClean;
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700152 int swappedOut;
Martijn Coenene0764852016-01-07 17:04:22 -0800153 int swappedOutPss;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154};
155
156#define BINDER_STATS "/proc/binder/stats"
157
158static jlong android_os_Debug_getNativeHeapSize(JNIEnv *env, jobject clazz)
159{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 struct mallinfo info = mallinfo();
161 return (jlong) info.usmblks;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162}
163
164static jlong android_os_Debug_getNativeHeapAllocatedSize(JNIEnv *env, jobject clazz)
165{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800166 struct mallinfo info = mallinfo();
167 return (jlong) info.uordblks;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168}
169
170static jlong android_os_Debug_getNativeHeapFreeSize(JNIEnv *env, jobject clazz)
171{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 struct mallinfo info = mallinfo();
173 return (jlong) info.fordblks;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174}
175
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700176// Container used to retrieve graphics memory pss
177struct graphics_memory_pss
Dianne Hackborn37c99432013-09-05 19:34:57 -0700178{
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700179 int graphics;
180 int gl;
181 int other;
182};
Dianne Hackborn37c99432013-09-05 19:34:57 -0700183
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700184/*
185 * Uses libmemtrack to retrieve graphics memory that the process is using.
186 * Any graphics memory reported in /proc/pid/smaps is not included here.
187 */
Dianne Hackborncb428552013-09-26 11:07:17 -0700188static int read_memtrack_memory(struct memtrack_proc* p, int pid,
189 struct graphics_memory_pss* graphics_mem)
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700190{
191 int err = memtrack_proc_get(p, pid);
192 if (err != 0) {
Dianne Hackborncb428552013-09-26 11:07:17 -0700193 ALOGW("failed to get memory consumption info: %d", err);
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700194 return err;
Dianne Hackborn37c99432013-09-05 19:34:57 -0700195 }
196
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700197 ssize_t pss = memtrack_proc_graphics_pss(p);
198 if (pss < 0) {
Colin Cross0c6bc732014-06-17 15:18:07 -0700199 ALOGW("failed to get graphics pss: %zd", pss);
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700200 return pss;
201 }
202 graphics_mem->graphics = pss / 1024;
Dianne Hackborn37c99432013-09-05 19:34:57 -0700203
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700204 pss = memtrack_proc_gl_pss(p);
205 if (pss < 0) {
Colin Cross0c6bc732014-06-17 15:18:07 -0700206 ALOGW("failed to get gl pss: %zd", pss);
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700207 return pss;
208 }
209 graphics_mem->gl = pss / 1024;
Dianne Hackborn37c99432013-09-05 19:34:57 -0700210
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700211 pss = memtrack_proc_other_pss(p);
212 if (pss < 0) {
Colin Cross0c6bc732014-06-17 15:18:07 -0700213 ALOGW("failed to get other pss: %zd", pss);
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700214 return pss;
215 }
216 graphics_mem->other = pss / 1024;
Dianne Hackborn37c99432013-09-05 19:34:57 -0700217
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700218 return 0;
219}
Dianne Hackborn37c99432013-09-05 19:34:57 -0700220
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700221/*
222 * Retrieves the graphics memory that is unaccounted for in /proc/pid/smaps.
223 */
224static int read_memtrack_memory(int pid, struct graphics_memory_pss* graphics_mem)
225{
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700226 struct memtrack_proc* p = memtrack_proc_new();
227 if (p == NULL) {
Dianne Hackborncb428552013-09-26 11:07:17 -0700228 ALOGW("failed to create memtrack_proc");
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700229 return -1;
230 }
Dianne Hackborn37c99432013-09-05 19:34:57 -0700231
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700232 int err = read_memtrack_memory(p, pid, graphics_mem);
233 memtrack_proc_destroy(p);
234 return err;
Dianne Hackborn37c99432013-09-05 19:34:57 -0700235}
236
Martijn Coenene0764852016-01-07 17:04:22 -0800237static void load_maps(int pid, stats_t* stats, bool* foundSwapPss)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238{
Andreas Gampece711492016-10-04 18:06:42 -0700239 *foundSwapPss = false;
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800240 uint64_t prev_end = 0;
241 int prev_heap = HEAP_UNKNOWN;
Andreas Gampece711492016-10-04 18:06:42 -0700242
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -0700243 std::string smaps_path = base::StringPrintf("/proc/%d/smaps", pid);
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800244 auto vma_scan = [&](const meminfo::Vma& vma) {
245 int which_heap = HEAP_UNKNOWN;
246 int sub_heap = HEAP_UNKNOWN;
247 bool is_swappable = false;
248 std::string name;
249 if (base::EndsWith(vma.name, " (deleted)")) {
250 name = vma.name.substr(0, vma.name.size() - strlen(" (deleted)"));
251 } else {
252 name = vma.name;
253 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800255 uint32_t namesz = name.size();
256 if (base::StartsWith(name, "[heap]")) {
257 which_heap = HEAP_NATIVE;
258 } else if (base::StartsWith(name, "[anon:libc_malloc]")) {
259 which_heap = HEAP_NATIVE;
260 } else if (base::StartsWith(name, "[stack")) {
Sandeep Patil290811a2019-05-31 10:33:59 -0700261 which_heap = HEAP_STACK;
Ryan Prichard40313832019-07-19 13:32:32 -0700262 } else if (base::StartsWith(name, "[anon:stack_and_tls:")) {
263 which_heap = HEAP_STACK;
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800264 } else if (base::EndsWith(name, ".so")) {
265 which_heap = HEAP_SO;
266 is_swappable = true;
267 } else if (base::EndsWith(name, ".jar")) {
268 which_heap = HEAP_JAR;
269 is_swappable = true;
270 } else if (base::EndsWith(name, ".apk")) {
271 which_heap = HEAP_APK;
272 is_swappable = true;
273 } else if (base::EndsWith(name, ".ttf")) {
274 which_heap = HEAP_TTF;
275 is_swappable = true;
276 } else if ((base::EndsWith(name, ".odex")) ||
277 (namesz > 4 && strstr(name.c_str(), ".dex") != nullptr)) {
278 which_heap = HEAP_DEX;
279 sub_heap = HEAP_DEX_APP_DEX;
280 is_swappable = true;
281 } else if (base::EndsWith(name, ".vdex")) {
282 which_heap = HEAP_DEX;
283 // Handle system@framework@boot and system/framework/boot
284 if ((strstr(name.c_str(), "@boot") != nullptr) ||
285 (strstr(name.c_str(), "/boot"))) {
286 sub_heap = HEAP_DEX_BOOT_VDEX;
287 } else {
288 sub_heap = HEAP_DEX_APP_VDEX;
289 }
290 is_swappable = true;
291 } else if (base::EndsWith(name, ".oat")) {
292 which_heap = HEAP_OAT;
293 is_swappable = true;
Mathieu Chartier8da8cbf2019-06-04 13:11:16 -0700294 } else if (base::EndsWith(name, ".art") || base::EndsWith(name, ".art]")) {
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800295 which_heap = HEAP_ART;
296 // Handle system@framework@boot* and system/framework/boot*
297 if ((strstr(name.c_str(), "@boot") != nullptr) ||
298 (strstr(name.c_str(), "/boot"))) {
Mathieu Chartier8da8cbf2019-06-04 13:11:16 -0700299 sub_heap = HEAP_ART_BOOT;
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800300 } else {
Mathieu Chartier8da8cbf2019-06-04 13:11:16 -0700301 sub_heap = HEAP_ART_APP;
Sandeep Patilcb4e8ee2019-01-21 12:00:59 -0800302 }
303 is_swappable = true;
304 } else if (base::StartsWith(name, "/dev/")) {
305 which_heap = HEAP_UNKNOWN_DEV;
306 if (base::StartsWith(name, "/dev/kgsl-3d0")) {
307 which_heap = HEAP_GL_DEV;
308 } else if (base::StartsWith(name, "/dev/ashmem/CursorWindow")) {
309 which_heap = HEAP_CURSOR;
310 } else if (base::StartsWith(name, "/dev/ashmem")) {
311 which_heap = HEAP_ASHMEM;
312 }
313 } else if (base::StartsWith(name, "[anon:")) {
314 which_heap = HEAP_UNKNOWN;
315 if (base::StartsWith(name, "[anon:dalvik-")) {
316 which_heap = HEAP_DALVIK_OTHER;
317 if (base::StartsWith(name, "[anon:dalvik-LinearAlloc")) {
318 sub_heap = HEAP_DALVIK_OTHER_LINEARALLOC;
319 } else if (base::StartsWith(name, "[anon:dalvik-alloc space") ||
320 base::StartsWith(name, "[anon:dalvik-main space")) {
321 // This is the regular Dalvik heap.
322 which_heap = HEAP_DALVIK;
323 sub_heap = HEAP_DALVIK_NORMAL;
324 } else if (base::StartsWith(name,
325 "[anon:dalvik-large object space") ||
326 base::StartsWith(
327 name, "[anon:dalvik-free list large object space")) {
328 which_heap = HEAP_DALVIK;
329 sub_heap = HEAP_DALVIK_LARGE;
330 } else if (base::StartsWith(name, "[anon:dalvik-non moving space")) {
331 which_heap = HEAP_DALVIK;
332 sub_heap = HEAP_DALVIK_NON_MOVING;
333 } else if (base::StartsWith(name, "[anon:dalvik-zygote space")) {
334 which_heap = HEAP_DALVIK;
335 sub_heap = HEAP_DALVIK_ZYGOTE;
336 } else if (base::StartsWith(name, "[anon:dalvik-indirect ref")) {
337 sub_heap = HEAP_DALVIK_OTHER_INDIRECT_REFERENCE_TABLE;
338 } else if (base::StartsWith(name, "[anon:dalvik-jit-code-cache") ||
339 base::StartsWith(name, "[anon:dalvik-data-code-cache")) {
340 sub_heap = HEAP_DALVIK_OTHER_CODE_CACHE;
341 } else if (base::StartsWith(name, "[anon:dalvik-CompilerMetadata")) {
342 sub_heap = HEAP_DALVIK_OTHER_COMPILER_METADATA;
343 } else {
344 sub_heap = HEAP_DALVIK_OTHER_ACCOUNTING; // Default to accounting.
345 }
346 }
347 } else if (namesz > 0) {
348 which_heap = HEAP_UNKNOWN_MAP;
349 } else if (vma.start == prev_end && prev_heap == HEAP_SO) {
350 // bss section of a shared library
351 which_heap = HEAP_SO;
352 }
353
354 prev_end = vma.end;
355 prev_heap = which_heap;
356
357 const meminfo::MemUsage& usage = vma.usage;
358 if (usage.swap_pss > 0 && *foundSwapPss != true) {
359 *foundSwapPss = true;
360 }
361
362 uint64_t swapable_pss = 0;
363 if (is_swappable && (usage.pss > 0)) {
364 float sharing_proportion = 0.0;
365 if ((usage.shared_clean > 0) || (usage.shared_dirty > 0)) {
366 sharing_proportion = (usage.pss - usage.uss) / (usage.shared_clean + usage.shared_dirty);
367 }
368 swapable_pss = (sharing_proportion * usage.shared_clean) + usage.private_clean;
369 }
370
371 stats[which_heap].pss += usage.pss;
372 stats[which_heap].swappablePss += swapable_pss;
373 stats[which_heap].rss += usage.rss;
374 stats[which_heap].privateDirty += usage.private_dirty;
375 stats[which_heap].sharedDirty += usage.shared_dirty;
376 stats[which_heap].privateClean += usage.private_clean;
377 stats[which_heap].sharedClean += usage.shared_clean;
378 stats[which_heap].swappedOut += usage.swap;
379 stats[which_heap].swappedOutPss += usage.swap_pss;
380 if (which_heap == HEAP_DALVIK || which_heap == HEAP_DALVIK_OTHER ||
381 which_heap == HEAP_DEX || which_heap == HEAP_ART) {
382 stats[sub_heap].pss += usage.pss;
383 stats[sub_heap].swappablePss += swapable_pss;
384 stats[sub_heap].rss += usage.rss;
385 stats[sub_heap].privateDirty += usage.private_dirty;
386 stats[sub_heap].sharedDirty += usage.shared_dirty;
387 stats[sub_heap].privateClean += usage.private_clean;
388 stats[sub_heap].sharedClean += usage.shared_clean;
389 stats[sub_heap].swappedOut += usage.swap;
390 stats[sub_heap].swappedOutPss += usage.swap_pss;
391 }
392 };
393
394 meminfo::ForEachVmaFromFile(smaps_path, vma_scan);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395}
396
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700397static void android_os_Debug_getDirtyPagesPid(JNIEnv *env, jobject clazz,
398 jint pid, jobject object)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800399{
Martijn Coenene0764852016-01-07 17:04:22 -0800400 bool foundSwapPss;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700401 stats_t stats[_NUM_HEAP];
402 memset(&stats, 0, sizeof(stats));
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800403
Martijn Coenene0764852016-01-07 17:04:22 -0800404 load_maps(pid, stats, &foundSwapPss);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800405
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700406 struct graphics_memory_pss graphics_mem;
407 if (read_memtrack_memory(pid, &graphics_mem) == 0) {
408 stats[HEAP_GRAPHICS].pss = graphics_mem.graphics;
409 stats[HEAP_GRAPHICS].privateDirty = graphics_mem.graphics;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800410 stats[HEAP_GRAPHICS].rss = graphics_mem.graphics;
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700411 stats[HEAP_GL].pss = graphics_mem.gl;
412 stats[HEAP_GL].privateDirty = graphics_mem.gl;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800413 stats[HEAP_GL].rss = graphics_mem.gl;
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700414 stats[HEAP_OTHER_MEMTRACK].pss = graphics_mem.other;
415 stats[HEAP_OTHER_MEMTRACK].privateDirty = graphics_mem.other;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800416 stats[HEAP_OTHER_MEMTRACK].rss = graphics_mem.other;
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700417 }
Dianne Hackborn37c99432013-09-05 19:34:57 -0700418
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700419 for (int i=_NUM_CORE_HEAP; i<_NUM_EXCLUSIVE_HEAP; i++) {
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700420 stats[HEAP_UNKNOWN].pss += stats[i].pss;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700421 stats[HEAP_UNKNOWN].swappablePss += stats[i].swappablePss;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800422 stats[HEAP_UNKNOWN].rss += stats[i].rss;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700423 stats[HEAP_UNKNOWN].privateDirty += stats[i].privateDirty;
424 stats[HEAP_UNKNOWN].sharedDirty += stats[i].sharedDirty;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700425 stats[HEAP_UNKNOWN].privateClean += stats[i].privateClean;
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700426 stats[HEAP_UNKNOWN].sharedClean += stats[i].sharedClean;
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700427 stats[HEAP_UNKNOWN].swappedOut += stats[i].swappedOut;
Martijn Coenene0764852016-01-07 17:04:22 -0800428 stats[HEAP_UNKNOWN].swappedOutPss += stats[i].swappedOutPss;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700429 }
430
431 for (int i=0; i<_NUM_CORE_HEAP; i++) {
432 env->SetIntField(object, stat_fields[i].pss_field, stats[i].pss);
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700433 env->SetIntField(object, stat_fields[i].pssSwappable_field, stats[i].swappablePss);
Dianne Hackborne17b4452018-01-10 13:15:40 -0800434 env->SetIntField(object, stat_fields[i].rss_field, stats[i].rss);
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700435 env->SetIntField(object, stat_fields[i].privateDirty_field, stats[i].privateDirty);
436 env->SetIntField(object, stat_fields[i].sharedDirty_field, stats[i].sharedDirty);
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700437 env->SetIntField(object, stat_fields[i].privateClean_field, stats[i].privateClean);
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700438 env->SetIntField(object, stat_fields[i].sharedClean_field, stats[i].sharedClean);
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700439 env->SetIntField(object, stat_fields[i].swappedOut_field, stats[i].swappedOut);
Martijn Coenene0764852016-01-07 17:04:22 -0800440 env->SetIntField(object, stat_fields[i].swappedOutPss_field, stats[i].swappedOutPss);
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700441 }
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800442
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700443
Martijn Coenene0764852016-01-07 17:04:22 -0800444 env->SetBooleanField(object, hasSwappedOutPss_field, foundSwapPss);
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700445 jintArray otherIntArray = (jintArray)env->GetObjectField(object, otherStats_field);
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800446
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700447 jint* otherArray = (jint*)env->GetPrimitiveArrayCritical(otherIntArray, 0);
448 if (otherArray == NULL) {
449 return;
450 }
451
452 int j=0;
453 for (int i=_NUM_CORE_HEAP; i<_NUM_HEAP; i++) {
454 otherArray[j++] = stats[i].pss;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700455 otherArray[j++] = stats[i].swappablePss;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800456 otherArray[j++] = stats[i].rss;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700457 otherArray[j++] = stats[i].privateDirty;
458 otherArray[j++] = stats[i].sharedDirty;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700459 otherArray[j++] = stats[i].privateClean;
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700460 otherArray[j++] = stats[i].sharedClean;
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700461 otherArray[j++] = stats[i].swappedOut;
Martijn Coenene0764852016-01-07 17:04:22 -0800462 otherArray[j++] = stats[i].swappedOutPss;
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700463 }
464
465 env->ReleasePrimitiveArrayCritical(otherIntArray, otherArray, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800466}
467
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700468static void android_os_Debug_getDirtyPages(JNIEnv *env, jobject clazz, jobject object)
469{
470 android_os_Debug_getDirtyPagesPid(env, clazz, getpid(), object);
471}
472
Martijn Coenene0764852016-01-07 17:04:22 -0800473static jlong android_os_Debug_getPssPid(JNIEnv *env, jobject clazz, jint pid,
Dianne Hackborne17b4452018-01-10 13:15:40 -0800474 jlongArray outUssSwapPssRss, jlongArray outMemtrack)
Dianne Hackbornb437e092011-08-05 17:50:29 -0700475{
Dianne Hackbornb437e092011-08-05 17:50:29 -0700476 jlong pss = 0;
Dianne Hackborne17b4452018-01-10 13:15:40 -0800477 jlong rss = 0;
Martijn Coenene0764852016-01-07 17:04:22 -0800478 jlong swapPss = 0;
Dianne Hackbornc8230512013-07-13 21:32:12 -0700479 jlong uss = 0;
Dianne Hackborn1a4b5a42014-12-08 17:43:31 -0800480 jlong memtrack = 0;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700481
Adam Lesinski5b4ef812013-09-23 10:06:09 -0700482 struct graphics_memory_pss graphics_mem;
483 if (read_memtrack_memory(pid, &graphics_mem) == 0) {
Dianne Hackborn8c76d912018-08-23 15:20:05 -0700484 pss = uss = rss = memtrack = graphics_mem.graphics + graphics_mem.gl + graphics_mem.other;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700485 }
486
Sandeep Patilfcd4a4a2019-01-12 22:42:05 -0800487 ::android::meminfo::ProcMemInfo proc_mem(pid);
488 ::android::meminfo::MemUsage stats;
489 if (proc_mem.SmapsOrRollup(&stats)) {
490 pss += stats.pss;
491 uss += stats.uss;
492 rss += stats.rss;
493 swapPss = stats.swap_pss;
494 pss += swapPss; // Also in swap, those pages would be accounted as Pss without SWAP
Dianne Hackborn37c99432013-09-05 19:34:57 -0700495 }
Dianne Hackbornb437e092011-08-05 17:50:29 -0700496
Dianne Hackborne17b4452018-01-10 13:15:40 -0800497 if (outUssSwapPssRss != NULL) {
498 if (env->GetArrayLength(outUssSwapPssRss) >= 1) {
499 jlong* outUssSwapPssRssArray = env->GetLongArrayElements(outUssSwapPssRss, 0);
500 if (outUssSwapPssRssArray != NULL) {
501 outUssSwapPssRssArray[0] = uss;
502 if (env->GetArrayLength(outUssSwapPssRss) >= 2) {
503 outUssSwapPssRssArray[1] = swapPss;
504 }
505 if (env->GetArrayLength(outUssSwapPssRss) >= 3) {
506 outUssSwapPssRssArray[2] = rss;
Martijn Coenene0764852016-01-07 17:04:22 -0800507 }
Dianne Hackbornc8230512013-07-13 21:32:12 -0700508 }
Dianne Hackborne17b4452018-01-10 13:15:40 -0800509 env->ReleaseLongArrayElements(outUssSwapPssRss, outUssSwapPssRssArray, 0);
Dianne Hackbornc8230512013-07-13 21:32:12 -0700510 }
511 }
Dianne Hackbornb437e092011-08-05 17:50:29 -0700512
Dianne Hackborn1a4b5a42014-12-08 17:43:31 -0800513 if (outMemtrack != NULL) {
514 if (env->GetArrayLength(outMemtrack) >= 1) {
515 jlong* outMemtrackArray = env->GetLongArrayElements(outMemtrack, 0);
516 if (outMemtrackArray != NULL) {
517 outMemtrackArray[0] = memtrack;
518 }
519 env->ReleaseLongArrayElements(outMemtrack, outMemtrackArray, 0);
520 }
521 }
522
Dianne Hackbornb437e092011-08-05 17:50:29 -0700523 return pss;
524}
525
526static jlong android_os_Debug_getPss(JNIEnv *env, jobject clazz)
527{
Dianne Hackborn1a4b5a42014-12-08 17:43:31 -0800528 return android_os_Debug_getPssPid(env, clazz, getpid(), NULL, NULL);
Dianne Hackbornb437e092011-08-05 17:50:29 -0700529}
530
Sandeep Patilbe825412018-12-11 10:09:46 -0800531// The 1:1 mapping of MEMINFO_* enums here must match with the constants from
532// Debug.java.
Dianne Hackborncbd9a522013-09-24 23:10:14 -0700533enum {
534 MEMINFO_TOTAL,
535 MEMINFO_FREE,
536 MEMINFO_BUFFERS,
537 MEMINFO_CACHED,
538 MEMINFO_SHMEM,
539 MEMINFO_SLAB,
Robert Benea5e099802017-10-04 18:28:01 -0700540 MEMINFO_SLAB_RECLAIMABLE,
541 MEMINFO_SLAB_UNRECLAIMABLE,
Dianne Hackborncbd9a522013-09-24 23:10:14 -0700542 MEMINFO_SWAP_TOTAL,
543 MEMINFO_SWAP_FREE,
544 MEMINFO_ZRAM_TOTAL,
Dianne Hackbornb3af4ec2014-10-17 15:25:13 -0700545 MEMINFO_MAPPED,
546 MEMINFO_VMALLOC_USED,
547 MEMINFO_PAGE_TABLES,
548 MEMINFO_KERNEL_STACK,
Dianne Hackborncbd9a522013-09-24 23:10:14 -0700549 MEMINFO_COUNT
550};
551
Dianne Hackborn8e692572013-09-10 19:06:15 -0700552static void android_os_Debug_getMemInfo(JNIEnv *env, jobject clazz, jlongArray out)
553{
Dianne Hackborn8e692572013-09-10 19:06:15 -0700554 if (out == NULL) {
555 jniThrowNullPointerException(env, "out == null");
556 return;
557 }
558
Sandeep Patilbe825412018-12-11 10:09:46 -0800559 int outLen = env->GetArrayLength(out);
560 if (outLen < MEMINFO_COUNT) {
561 jniThrowRuntimeException(env, "outLen < MEMINFO_COUNT");
Dianne Hackborn8e692572013-09-10 19:06:15 -0700562 return;
563 }
564
Sandeep Patilbe825412018-12-11 10:09:46 -0800565 // Read system memory info including ZRAM. The values are stored in the vector
566 // in the same order as MEMINFO_* enum
567 std::vector<uint64_t> mem(MEMINFO_COUNT);
568 std::vector<std::string> tags(::android::meminfo::SysMemInfo::kDefaultSysMemInfoTags);
569 tags.insert(tags.begin() + MEMINFO_ZRAM_TOTAL, "Zram:");
570 ::android::meminfo::SysMemInfo smi;
571 if (!smi.ReadMemInfo(tags, &mem)) {
572 jniThrowRuntimeException(env, "SysMemInfo read failed");
Dianne Hackborn8e692572013-09-10 19:06:15 -0700573 return;
574 }
Dianne Hackborn8e692572013-09-10 19:06:15 -0700575
Dianne Hackborn8e692572013-09-10 19:06:15 -0700576 jlong* outArray = env->GetLongArrayElements(out, 0);
577 if (outArray != NULL) {
Sandeep Patilbe825412018-12-11 10:09:46 -0800578 outLen = MEMINFO_COUNT;
579 for (int i = 0; i < outLen; i++) {
Sandeep Patilbe825412018-12-11 10:09:46 -0800580 if (i == MEMINFO_VMALLOC_USED) {
Sandeep Patil2481ae02019-01-13 20:33:02 -0800581 outArray[i] = smi.ReadVmallocInfo() / 1024;
Sandeep Patilbe825412018-12-11 10:09:46 -0800582 continue;
583 }
Dianne Hackborn8e692572013-09-10 19:06:15 -0700584 outArray[i] = mem[i];
585 }
586 }
Sandeep Patilbe825412018-12-11 10:09:46 -0800587
Dianne Hackborn8e692572013-09-10 19:06:15 -0700588 env->ReleaseLongArrayElements(out, outArray, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589}
590
591static jint read_binder_stat(const char* stat)
592{
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -0700593 UniqueFile fp = MakeUniqueFile(BINDER_STATS, "re");
594 if (fp == nullptr) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 return -1;
596 }
597
598 char line[1024];
599
600 char compare[128];
601 int len = snprintf(compare, 128, "proc %d", getpid());
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800602
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800603 // loop until we have the block that represents this process
604 do {
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -0700605 if (fgets(line, 1024, fp.get()) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800606 return -1;
607 }
608 } while (strncmp(compare, line, len));
609
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800610 // now that we have this process, read until we find the stat that we are looking for
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 len = snprintf(compare, 128, " %s: ", stat);
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 do {
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -0700614 if (fgets(line, 1024, fp.get()) == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 return -1;
616 }
617 } while (strncmp(compare, line, len));
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800618
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 // we have the line, now increment the line ptr to the value
620 char* ptr = line + len;
Elliott Hughesc367d482013-10-29 13:12:55 -0700621 jint result = atoi(ptr);
Elliott Hughesc367d482013-10-29 13:12:55 -0700622 return result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623}
624
625static jint android_os_Debug_getBinderSentTransactions(JNIEnv *env, jobject clazz)
626{
627 return read_binder_stat("bcTRANSACTION");
628}
629
630static jint android_os_getBinderReceivedTransactions(JNIEnv *env, jobject clazz)
631{
632 return read_binder_stat("brTRANSACTION");
633}
634
635// these are implemented in android_util_Binder.cpp
636jint android_os_Debug_getLocalObjectCount(JNIEnv* env, jobject clazz);
637jint android_os_Debug_getProxyObjectCount(JNIEnv* env, jobject clazz);
638jint android_os_Debug_getDeathObjectCount(JNIEnv* env, jobject clazz);
639
Christopher Ferris8d652f82017-04-11 16:29:18 -0700640static bool openFile(JNIEnv* env, jobject fileDescriptor, UniqueFile& fp)
Andy McFadden06a6b552010-07-13 16:28:09 -0700641{
642 if (fileDescriptor == NULL) {
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800643 jniThrowNullPointerException(env, "fd == null");
Christopher Ferris8d652f82017-04-11 16:29:18 -0700644 return false;
Andy McFadden06a6b552010-07-13 16:28:09 -0700645 }
646 int origFd = jniGetFDFromFileDescriptor(env, fileDescriptor);
647 if (origFd < 0) {
648 jniThrowRuntimeException(env, "Invalid file descriptor");
Christopher Ferris8d652f82017-04-11 16:29:18 -0700649 return false;
Andy McFadden06a6b552010-07-13 16:28:09 -0700650 }
651
652 /* dup() the descriptor so we don't close the original with fclose() */
Nick Kralevich4b3a08c2019-01-28 10:39:10 -0800653 int fd = fcntl(origFd, F_DUPFD_CLOEXEC, 0);
Andy McFadden06a6b552010-07-13 16:28:09 -0700654 if (fd < 0) {
Steve Block8564c8d2012-01-05 23:22:43 +0000655 ALOGW("dup(%d) failed: %s\n", origFd, strerror(errno));
Andy McFadden06a6b552010-07-13 16:28:09 -0700656 jniThrowRuntimeException(env, "dup() failed");
Christopher Ferris8d652f82017-04-11 16:29:18 -0700657 return false;
Andy McFadden06a6b552010-07-13 16:28:09 -0700658 }
659
Christopher Ferris8d652f82017-04-11 16:29:18 -0700660 fp.reset(fdopen(fd, "w"));
Andreas Gampe7ad2f6e2016-10-05 12:59:18 -0700661 if (fp == nullptr) {
Steve Block8564c8d2012-01-05 23:22:43 +0000662 ALOGW("fdopen(%d) failed: %s\n", fd, strerror(errno));
Andy McFadden06a6b552010-07-13 16:28:09 -0700663 close(fd);
664 jniThrowRuntimeException(env, "fdopen() failed");
Christopher Ferris8d652f82017-04-11 16:29:18 -0700665 return false;
666 }
667 return true;
668}
669
670/*
671 * Dump the native heap, writing human-readable output to the specified
672 * file descriptor.
673 */
674static void android_os_Debug_dumpNativeHeap(JNIEnv* env, jobject,
675 jobject fileDescriptor)
676{
677 UniqueFile fp(nullptr, safeFclose);
678 if (!openFile(env, fileDescriptor, fp)) {
Andy McFadden06a6b552010-07-13 16:28:09 -0700679 return;
680 }
681
Steve Block5baa3a62011-12-20 16:23:08 +0000682 ALOGD("Native heap dump starting...\n");
Christopher Ferris38e2c3b2018-06-13 13:19:57 -0700683 // Formatting of the native heap dump is handled by malloc debug itself.
684 // See https://android.googlesource.com/platform/bionic/+/master/libc/malloc_debug/README.md#backtrace-heap-dump-format
Christopher Ferris4740d542019-04-16 11:34:58 -0700685 if (android_mallopt(M_WRITE_MALLOC_LEAK_INFO_TO_FILE, fp.get(), sizeof(FILE*))) {
686 ALOGD("Native heap dump complete.\n");
687 } else {
688 PLOG(ERROR) << "Failed to write native heap dump to file";
689 }
Andy McFadden06a6b552010-07-13 16:28:09 -0700690}
691
Christopher Ferris8d652f82017-04-11 16:29:18 -0700692/*
693 * Dump the native malloc info, writing xml output to the specified
694 * file descriptor.
695 */
696static void android_os_Debug_dumpNativeMallocInfo(JNIEnv* env, jobject,
697 jobject fileDescriptor)
698{
699 UniqueFile fp(nullptr, safeFclose);
700 if (!openFile(env, fileDescriptor, fp)) {
701 return;
702 }
703
704 malloc_info(0, fp.get());
705}
706
Narayan Kamathf013daa2017-05-09 12:55:02 +0100707static bool dumpTraces(JNIEnv* env, jint pid, jstring fileName, jint timeoutSecs,
708 DebuggerdDumpType dumpType) {
709 const ScopedUtfChars fileNameChars(env, fileName);
710 if (fileNameChars.c_str() == nullptr) {
711 return false;
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700712 }
713
Narayan Kamathf013daa2017-05-09 12:55:02 +0100714 android::base::unique_fd fd(open(fileNameChars.c_str(),
715 O_CREAT | O_WRONLY | O_NOFOLLOW | O_CLOEXEC | O_APPEND,
716 0666));
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700717 if (fd < 0) {
Andreas Gampefa178e12019-06-11 13:30:15 -0700718 PLOG(ERROR) << "Can't open " << fileNameChars.c_str();
Narayan Kamathf013daa2017-05-09 12:55:02 +0100719 return false;
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700720 }
721
Andreas Gampe72768ed2019-06-11 13:49:48 -0700722 int res = dump_backtrace_to_file_timeout(pid, dumpType, timeoutSecs, fd);
723 if (fdatasync(fd.get()) != 0) {
724 PLOG(ERROR) << "Failed flushing trace.";
725 }
726 return res == 0;
Narayan Kamathf013daa2017-05-09 12:55:02 +0100727}
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700728
Narayan Kamathf013daa2017-05-09 12:55:02 +0100729static jboolean android_os_Debug_dumpJavaBacktraceToFileTimeout(JNIEnv* env, jobject clazz,
730 jint pid, jstring fileName, jint timeoutSecs) {
Andreas Gampefa178e12019-06-11 13:30:15 -0700731 const bool ret = dumpTraces(env, pid, fileName, timeoutSecs, kDebuggerdJavaBacktrace);
Narayan Kamathf013daa2017-05-09 12:55:02 +0100732 return ret ? JNI_TRUE : JNI_FALSE;
733}
734
735static jboolean android_os_Debug_dumpNativeBacktraceToFileTimeout(JNIEnv* env, jobject clazz,
736 jint pid, jstring fileName, jint timeoutSecs) {
737 const bool ret = dumpTraces(env, pid, fileName, timeoutSecs, kDebuggerdNativeBacktrace);
738 return ret ? JNI_TRUE : JNI_FALSE;
Dianne Hackbornf72467a2012-06-08 17:23:59 -0700739}
740
Colin Crossc4fb5f92016-02-02 16:51:15 -0800741static jstring android_os_Debug_getUnreachableMemory(JNIEnv* env, jobject clazz,
742 jint limit, jboolean contents)
743{
744 std::string s = GetUnreachableMemoryString(contents, limit);
745 return env->NewStringUTF(s.c_str());
746}
747
Ben Murdochfdc55932019-01-30 10:43:15 +0000748static jlong android_os_Debug_getFreeZramKb(JNIEnv* env, jobject clazz) {
749
750 jlong zramFreeKb = 0;
751
752 std::string status_path = android::base::StringPrintf("/proc/meminfo");
753 UniqueFile file = MakeUniqueFile(status_path.c_str(), "re");
754
755 char line[256];
756 while (file != nullptr && fgets(line, sizeof(line), file.get())) {
757 jlong v;
758 if (sscanf(line, "SwapFree: %" SCNd64 " kB", &v) == 1) {
759 zramFreeKb = v;
760 break;
761 }
762 }
763
764 return zramFreeKb;
765}
766
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800767/*
768 * JNI registration.
769 */
770
Daniel Micay76f6a862015-09-19 17:31:01 -0400771static const JNINativeMethod gMethods[] = {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800772 { "getNativeHeapSize", "()J",
773 (void*) android_os_Debug_getNativeHeapSize },
774 { "getNativeHeapAllocatedSize", "()J",
775 (void*) android_os_Debug_getNativeHeapAllocatedSize },
776 { "getNativeHeapFreeSize", "()J",
777 (void*) android_os_Debug_getNativeHeapFreeSize },
778 { "getMemoryInfo", "(Landroid/os/Debug$MemoryInfo;)V",
779 (void*) android_os_Debug_getDirtyPages },
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700780 { "getMemoryInfo", "(ILandroid/os/Debug$MemoryInfo;)V",
781 (void*) android_os_Debug_getDirtyPagesPid },
Dianne Hackbornb437e092011-08-05 17:50:29 -0700782 { "getPss", "()J",
783 (void*) android_os_Debug_getPss },
Dianne Hackborn1a4b5a42014-12-08 17:43:31 -0800784 { "getPss", "(I[J[J)J",
Dianne Hackbornb437e092011-08-05 17:50:29 -0700785 (void*) android_os_Debug_getPssPid },
Dianne Hackborn8e692572013-09-10 19:06:15 -0700786 { "getMemInfo", "([J)V",
787 (void*) android_os_Debug_getMemInfo },
Andy McFadden06a6b552010-07-13 16:28:09 -0700788 { "dumpNativeHeap", "(Ljava/io/FileDescriptor;)V",
789 (void*) android_os_Debug_dumpNativeHeap },
Christopher Ferris8d652f82017-04-11 16:29:18 -0700790 { "dumpNativeMallocInfo", "(Ljava/io/FileDescriptor;)V",
791 (void*) android_os_Debug_dumpNativeMallocInfo },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 { "getBinderSentTransactions", "()I",
793 (void*) android_os_Debug_getBinderSentTransactions },
794 { "getBinderReceivedTransactions", "()I",
795 (void*) android_os_getBinderReceivedTransactions },
796 { "getBinderLocalObjectCount", "()I",
797 (void*)android_os_Debug_getLocalObjectCount },
798 { "getBinderProxyObjectCount", "()I",
799 (void*)android_os_Debug_getProxyObjectCount },
800 { "getBinderDeathObjectCount", "()I",
801 (void*)android_os_Debug_getDeathObjectCount },
Narayan Kamathf013daa2017-05-09 12:55:02 +0100802 { "dumpJavaBacktraceToFileTimeout", "(ILjava/lang/String;I)Z",
803 (void*)android_os_Debug_dumpJavaBacktraceToFileTimeout },
804 { "dumpNativeBacktraceToFileTimeout", "(ILjava/lang/String;I)Z",
songjinshie02e3ea2016-12-16 17:48:21 +0800805 (void*)android_os_Debug_dumpNativeBacktraceToFileTimeout },
Colin Crossc4fb5f92016-02-02 16:51:15 -0800806 { "getUnreachableMemory", "(IZ)Ljava/lang/String;",
807 (void*)android_os_Debug_getUnreachableMemory },
Ben Murdochfdc55932019-01-30 10:43:15 +0000808 { "getZramFreeKb", "()J",
809 (void*)android_os_Debug_getFreeZramKb },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810};
811
812int register_android_os_Debug(JNIEnv *env)
813{
814 jclass clazz = env->FindClass("android/os/Debug$MemoryInfo");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800815
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800816 // Sanity check the number of other statistics expected in Java matches here.
817 jfieldID numOtherStats_field = env->GetStaticFieldID(clazz, "NUM_OTHER_STATS", "I");
818 jint numOtherStats = env->GetStaticIntField(clazz, numOtherStats_field);
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700819 jfieldID numDvkStats_field = env->GetStaticFieldID(clazz, "NUM_DVK_STATS", "I");
820 jint numDvkStats = env->GetStaticIntField(clazz, numDvkStats_field);
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800821 int expectedNumOtherStats = _NUM_HEAP - _NUM_CORE_HEAP;
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700822 if ((numOtherStats + numDvkStats) != expectedNumOtherStats) {
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800823 jniThrowExceptionFmt(env, "java/lang/RuntimeException",
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700824 "android.os.Debug.Meminfo.NUM_OTHER_STATS+android.os.Debug.Meminfo.NUM_DVK_STATS=%d expected %d",
825 numOtherStats+numDvkStats, expectedNumOtherStats);
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800826 return JNI_ERR;
827 }
828
829 otherStats_field = env->GetFieldID(clazz, "otherStats", "[I");
Martijn Coenene0764852016-01-07 17:04:22 -0800830 hasSwappedOutPss_field = env->GetFieldID(clazz, "hasSwappedOutPss", "Z");
Ian Rogers7c9f30b2013-02-27 10:57:13 -0800831
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700832 for (int i=0; i<_NUM_CORE_HEAP; i++) {
833 stat_fields[i].pss_field =
834 env->GetFieldID(clazz, stat_field_names[i].pss_name, "I");
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700835 stat_fields[i].pssSwappable_field =
836 env->GetFieldID(clazz, stat_field_names[i].pssSwappable_name, "I");
Dianne Hackborne17b4452018-01-10 13:15:40 -0800837 stat_fields[i].rss_field =
838 env->GetFieldID(clazz, stat_field_names[i].rss_name, "I");
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700839 stat_fields[i].privateDirty_field =
840 env->GetFieldID(clazz, stat_field_names[i].privateDirty_name, "I");
841 stat_fields[i].sharedDirty_field =
842 env->GetFieldID(clazz, stat_field_names[i].sharedDirty_name, "I");
Anwar Ghuloum3c615062013-05-13 14:18:02 -0700843 stat_fields[i].privateClean_field =
844 env->GetFieldID(clazz, stat_field_names[i].privateClean_name, "I");
Anwar Ghuloum3a8ce1b2013-04-26 16:18:28 -0700845 stat_fields[i].sharedClean_field =
846 env->GetFieldID(clazz, stat_field_names[i].sharedClean_name, "I");
Dianne Hackborn8883ced2013-10-02 16:58:06 -0700847 stat_fields[i].swappedOut_field =
848 env->GetFieldID(clazz, stat_field_names[i].swappedOut_name, "I");
Martijn Coenene0764852016-01-07 17:04:22 -0800849 stat_fields[i].swappedOutPss_field =
850 env->GetFieldID(clazz, stat_field_names[i].swappedOutPss_name, "I");
Dianne Hackborn0e3328f2011-07-17 13:31:17 -0700851 }
852
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 return jniRegisterNativeMethods(env, "android/os/Debug", gMethods, NELEM(gMethods));
854}
855
Andy McFadden06a6b552010-07-13 16:28:09 -0700856}; // namespace android