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 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
|
/*
* Copyright (C) 2019 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.
*/
package android.app;
import android.annotation.CurrentTimeMillisLong;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.ActivityManager.RunningAppProcessInfo.Importance;
import android.icu.text.SimpleDateFormat;
import android.os.Parcel;
import android.os.ParcelFileDescriptor;
import android.os.Parcelable;
import android.os.RemoteException;
import android.os.UserHandle;
import android.text.TextUtils;
import android.util.DebugUtils;
import android.util.proto.ProtoInputStream;
import android.util.proto.ProtoOutputStream;
import android.util.proto.WireTypeMismatchException;
import com.android.internal.util.ArrayUtils;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.Date;
import java.util.Objects;
import java.util.zip.GZIPInputStream;
/**
* Describes the information of an application process's death.
*
* <p>
* Application process could die for many reasons, for example {@link #REASON_LOW_MEMORY}
* when it was killed by the system because it was running low on memory. Reason
* of the death can be retrieved via {@link #getReason}. Besides the reason, there are a few other
* auxiliary APIs like {@link #getStatus} and {@link #getImportance} to help the caller with
* additional diagnostic information.
* </p>
*
*/
public final class ApplicationExitInfo implements Parcelable {
/**
* Application process died due to unknown reason.
*/
public static final int REASON_UNKNOWN = 0;
/**
* Application process exit normally by itself, for example,
* via {@link java.lang.System#exit}; {@link #getStatus} will specify the exit code.
*
* <p>Applications should normally not do this, as the system has a better knowledge
* in terms of process management.</p>
*/
public static final int REASON_EXIT_SELF = 1;
/**
* Application process died due to the result of an OS signal; for example,
* {@link android.system.OsConstants#SIGKILL}; {@link #getStatus} will specify the signal
* number.
*/
public static final int REASON_SIGNALED = 2;
/**
* Application process was killed by the system low memory killer, meaning the system was
* under memory pressure at the time of kill.
*
* <p class="note">
* Not all devices support reporting {@link #REASON_LOW_MEMORY}; on a device with no such
* support, when a process is killed due to memory pressure, the {@link #getReason} will return
* {@link #REASON_SIGNALED} and {@link #getStatus} will return
* the value {@link android.system.OsConstants#SIGKILL}.
*
* Application should use {@link android.app.ActivityManager#isLowMemoryKillReportSupported()
* ActivityManager.isLowMemoryKillReportSupported()} to check
* if the device supports reporting {@link #REASON_LOW_MEMORY} or not.
* </p>
*/
public static final int REASON_LOW_MEMORY = 3;
/**
* Application process died because of an unhandled exception in Java code.
*/
public static final int REASON_CRASH = 4;
/**
* Application process died because of a native code crash.
*/
public static final int REASON_CRASH_NATIVE = 5;
/**
* Application process was killed due to being unresponsive (ANR).
*/
public static final int REASON_ANR = 6;
/**
* Application process was killed because of initialization failure,
* for example, it took too long to attach to the system during the start,
* or there was an error during initialization.
*/
public static final int REASON_INITIALIZATION_FAILURE = 7;
/**
* Application process was killed due to a runtime permission change.
*/
public static final int REASON_PERMISSION_CHANGE = 8;
/**
* Application process was killed by the system due to excessive resource usage.
*/
public static final int REASON_EXCESSIVE_RESOURCE_USAGE = 9;
/**
* Application process was killed because of the user request, for example,
* user clicked the "Force stop" button of the application in the Settings,
* or removed the application away from Recents.
*/
public static final int REASON_USER_REQUESTED = 10;
/**
* Application process was killed, because the user it is running as on devices
* with mutlple users, was stopped.
*/
public static final int REASON_USER_STOPPED = 11;
/**
* Application process was killed because its dependency was going away, for example,
* a stable content provider connection's client will be killed if the provider is killed.
*/
public static final int REASON_DEPENDENCY_DIED = 12;
/**
* Application process was killed by the system for various other reasons which are
* not by problems in apps and not actionable by apps, for example, the system just
* finished updates; {@link #getDescription} will specify the cause given by the system.
*/
public static final int REASON_OTHER = 13;
/**
* Application process was killed by App Freezer, for example, because it receives
* sync binder transactions while being frozen.
*/
public static final int REASON_FREEZER = 14;
/**
* Application process kills subreason is unknown.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_UNKNOWN = 0;
/**
* Application process was killed because user quit it on the "wait for debugger" dialog;
* this would be set when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_WAIT_FOR_DEBUGGER = 1;
/**
* Application process was killed by the activity manager because there were too many cached
* processes; this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_TOO_MANY_CACHED = 2;
/**
* Application process was killed by the activity manager because there were too many empty
* processes; this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_TOO_MANY_EMPTY = 3;
/**
* Application process was killed by the activity manager because there were too many cached
* processes and this process had been in empty state for a long time;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_TRIM_EMPTY = 4;
/**
* Application process was killed by the activity manager because system was on memory pressure
* and this process took large amount of cached memory;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_LARGE_CACHED = 5;
/**
* Application process was killed by the activity manager because the system was on low memory
* pressure for a significant amount of time since last idle;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_MEMORY_PRESSURE = 6;
/**
* Application process was killed by the activity manager due to excessive CPU usage;
* this would be set only when the reason is {@link #REASON_EXCESSIVE_RESOURCE_USAGE}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_EXCESSIVE_CPU = 7;
/**
* System update has done (so the system update process should be killed);
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_SYSTEM_UPDATE_DONE = 8;
/**
* Kill all foreground services, for now it only occurs when enabling the quiet
* mode for the managed profile;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_KILL_ALL_FG = 9;
/**
* All background processes except certain ones were killed, for now it only occurs
* when the density of the default display is changed;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_KILL_ALL_BG_EXCEPT = 10;
/**
* The process associated with the UID was explicitly killed, for example,
* it could be because of platform compatibility overrides;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_KILL_UID = 11;
/**
* The process was explicitly killed with its PID, typically because of
* the low memory for surfaces;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_KILL_PID = 12;
/**
* The start of the process was invalid;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_INVALID_START = 13;
/**
* The process was killed because it's in an invalid state, typically
* it's triggered from SHELL;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_INVALID_STATE = 14;
/**
* The process was killed when it's imperceptible to user, because it was
* in a bad state;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_IMPERCEPTIBLE = 15;
/**
* The process was killed because it's being moved out from LRU list;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_REMOVE_LRU = 16;
/**
* The process was killed because it's isolated and was in a cached state;
* this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_ISOLATED_NOT_NEEDED = 17;
/**
* The process was killed because it's in forced-app-standby state, and it's cached and
* its uid state is idle; this would be set only when the reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_CACHED_IDLE_FORCED_APP_STANDBY = 18;
/**
* The process was killed because it fails to freeze/unfreeze binder
* or query binder frozen info while being frozen.
* this would be set only when the reason is {@link #REASON_FREEZER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_FREEZER_BINDER_IOCTL = 19;
/**
* The process was killed because it receives sync binder transactions
* while being frozen.
* this would be set only when the reason is {@link #REASON_FREEZER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_FREEZER_BINDER_TRANSACTION = 20;
/**
* The process was killed because of force-stop, it could be due to that
* the user clicked the "Force stop" button of the application in the Settings;
* this would be set only when the reason is {@link #REASON_USER_REQUESTED}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_FORCE_STOP = 21;
/**
* The process was killed because the user removed the application away from Recents;
* this would be set only when the reason is {@link #REASON_USER_REQUESTED}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_REMOVE_TASK = 22;
/**
* The process was killed because the user stopped the application from the task manager;
* this would be set only when the reason is {@link #REASON_USER_REQUESTED}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_STOP_APP = 23;
/**
* The process was killed because the user stopped the application from developer options,
* or via the adb shell commmand interface; this would be set only when the reason is
* {@link #REASON_USER_REQUESTED}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_KILL_BACKGROUND = 24;
/**
* The process was killed because of package update; this would be set only when the reason is
* {@link #REASON_USER_REQUESTED}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_PACKAGE_UPDATE = 25;
/**
* The process was killed because of undelivered broadcasts; this would be set only when the
* reason is {@link #REASON_OTHER}.
*
* For internal use only.
* @hide
*/
public static final int SUBREASON_UNDELIVERED_BROADCAST = 26;
// If there is any OEM code which involves additional app kill reasons, it should
// be categorized in {@link #REASON_OTHER}, with subreason code starting from 1000.
/**
* @see #getPid
*/
private int mPid;
/**
* @see #getRealUid
*/
private int mRealUid;
/**
* @see #getPackageUid
*/
private int mPackageUid;
/**
* @see #getDefiningUid
*/
private int mDefiningUid;
/**
* @see #getProcessName
*/
private String mProcessName;
/**
* @see #getReason
*/
private @Reason int mReason;
/**
* @see #getStatus
*/
private int mStatus;
/**
* @see #getImportance
*/
private @Importance int mImportance;
/**
* @see #getPss
*/
private long mPss;
/**
* @see #getRss
*/
private long mRss;
/**
* @see #getTimestamp
*/
private @CurrentTimeMillisLong long mTimestamp;
/**
* @see #getDescription
*/
private @Nullable String mDescription;
/**
* @see #getSubReason
*/
private @SubReason int mSubReason;
/**
* @see #getConnectionGroup
*/
private int mConnectionGroup;
/**
* @see #getPackageName
*/
private String mPackageName;
/**
* @see #getPackageList
*/
private String[] mPackageList;
/**
* @see #getProcessStateSummary
*/
private byte[] mState;
/**
* The file to the trace file in the storage;
*
* for system internal use only, will not retain across processes.
*
* @see #getTraceInputStream
*/
private File mTraceFile;
/**
* The Binder interface to retrieve the file descriptor to
* the trace file from the system.
*/
private IAppTraceRetriever mAppTraceRetriever;
/**
* ParcelFileDescriptor pointing to a native tombstone.
*
* @see #getTraceInputStream
*/
private IParcelFileDescriptorRetriever mNativeTombstoneRetriever;
/**
* Whether or not we've logged this into the statsd.
*
* for system internal use only, will not retain across processes.
*/
private boolean mLoggedInStatsd;
/**
* Whether or not this process hosts one or more foreground services.
*
* for system internal use only, will not retain across processes.
*/
private boolean mHasForegroundServices;
/** @hide */
@IntDef(prefix = { "REASON_" }, value = {
REASON_UNKNOWN,
REASON_EXIT_SELF,
REASON_SIGNALED,
REASON_LOW_MEMORY,
REASON_CRASH,
REASON_CRASH_NATIVE,
REASON_ANR,
REASON_INITIALIZATION_FAILURE,
REASON_PERMISSION_CHANGE,
REASON_EXCESSIVE_RESOURCE_USAGE,
REASON_USER_REQUESTED,
REASON_USER_STOPPED,
REASON_DEPENDENCY_DIED,
REASON_OTHER,
REASON_FREEZER,
})
@Retention(RetentionPolicy.SOURCE)
public @interface Reason {}
/** @hide */
@IntDef(prefix = { "SUBREASON_" }, value = {
SUBREASON_UNKNOWN,
SUBREASON_WAIT_FOR_DEBUGGER,
SUBREASON_TOO_MANY_CACHED,
SUBREASON_TOO_MANY_EMPTY,
SUBREASON_TRIM_EMPTY,
SUBREASON_LARGE_CACHED,
SUBREASON_MEMORY_PRESSURE,
SUBREASON_EXCESSIVE_CPU,
SUBREASON_SYSTEM_UPDATE_DONE,
SUBREASON_KILL_ALL_FG,
SUBREASON_KILL_ALL_BG_EXCEPT,
SUBREASON_KILL_UID,
SUBREASON_KILL_PID,
SUBREASON_INVALID_START,
SUBREASON_INVALID_STATE,
SUBREASON_IMPERCEPTIBLE,
SUBREASON_REMOVE_LRU,
SUBREASON_ISOLATED_NOT_NEEDED,
SUBREASON_FREEZER_BINDER_IOCTL,
SUBREASON_FREEZER_BINDER_TRANSACTION,
SUBREASON_FORCE_STOP,
SUBREASON_REMOVE_TASK,
SUBREASON_STOP_APP,
SUBREASON_KILL_BACKGROUND,
SUBREASON_PACKAGE_UPDATE,
SUBREASON_UNDELIVERED_BROADCAST,
})
@Retention(RetentionPolicy.SOURCE)
public @interface SubReason {}
/**
* The process id of the process that died.
*/
public int getPid() {
return mPid;
}
/**
* The kernel user identifier of the process, most of the time the system uses this
* to do access control checks. It's typically the uid of the package where the component is
* running from, except the case of isolated process, where this field identifies the kernel
* user identifier that this process is actually running with, while the {@link #getPackageUid}
* identifies the kernel user identifier that is assigned at the package installation time.
*/
public int getRealUid() {
return mRealUid;
}
/**
* Similar to {@link #getRealUid}, it's the kernel user identifier that is assigned at the
* package installation time.
*/
public int getPackageUid() {
return mPackageUid;
}
/**
* Return the defining kernel user identifier, maybe different from {@link #getRealUid} and
* {@link #getPackageUid}, if an external service has the
* {@link android.R.styleable#AndroidManifestService_useAppZygote android:useAppZygote} set
* to <code>true</code> and was bound with the flag
* {@link android.content.Context#BIND_EXTERNAL_SERVICE} - in this case, this field here will
* be the kernel user identifier of the external service provider.
*/
public int getDefiningUid() {
return mDefiningUid;
}
/**
* The actual process name it was running with.
*/
public @NonNull String getProcessName() {
return mProcessName;
}
/**
* The reason code of the process's death.
*/
public @Reason int getReason() {
return mReason;
}
/**
* The exit status argument of exit() if the application calls it, or the signal
* number if the application is signaled.
*/
public int getStatus() {
return mStatus;
}
/**
* The importance of the process that it used to have before the death.
*/
public @Importance int getImportance() {
return mImportance;
}
/**
* Last proportional set size of the memory that the process had used in kB.
*
* <p class="note">Note: This is the value from last sampling on the process,
* it's NOT the exact memory information prior to its death; and it'll be zero
* if the process died before system had a chance to take the sample. </p>
*/
public long getPss() {
return mPss;
}
/**
* Last resident set size of the memory that the process had used in kB.
*
* <p class="note">Note: This is the value from last sampling on the process,
* it's NOT the exact memory information prior to its death; and it'll be zero
* if the process died before system had a chance to take the sample. </p>
*/
public long getRss() {
return mRss;
}
/**
* The timestamp of the process's death, in milliseconds since the epoch,
* as returned by {@link java.lang.System#currentTimeMillis() System.currentTimeMillis()}.
*/
public @CurrentTimeMillisLong long getTimestamp() {
return mTimestamp;
}
/**
* The human readable description of the process's death, given by the system; could be null.
*
* <p class="note">Note: only intended to be human-readable and the system provides no
* guarantees that the format is stable across devices or Android releases.</p>
*/
public @Nullable String getDescription() {
return mDescription;
}
/**
* Return the user id of the record on a multi-user system.
*/
public @NonNull UserHandle getUserHandle() {
return UserHandle.of(UserHandle.getUserId(mRealUid));
}
/**
* Return the state data set by calling
* {@link android.app.ActivityManager#setProcessStateSummary(byte[])
* ActivityManager.setProcessStateSummary(byte[])} from the process before its death.
*
* @return The process-customized data
* @see ActivityManager#setProcessStateSummary(byte[])
*/
public @Nullable byte[] getProcessStateSummary() {
return mState;
}
/**
* Return the InputStream to the traces that was taken by the system
* prior to the death of the process; typically it'll be available when
* the reason is {@link #REASON_ANR}, though if the process gets an ANR
* but recovers, and dies for another reason later, this trace will be included
* in the record of {@link ApplicationExitInfo} still. Beginning with API 31,
* tombstone traces will be returned for
* {@link #REASON_CRASH_NATIVE}, with an InputStream containing a protobuf with
* <a href="https://android.googlesource.com/platform/system/core/+/refs/heads/master/debuggerd/proto/tombstone.proto">this schema</a>.
* Note that because these traces are kept in a separate global circular buffer, crashes may be
* overwritten by newer crashes (including from other applications), so this may still return
* null.
*
* @return The input stream to the traces that was taken by the system
* prior to the death of the process.
*/
public @Nullable InputStream getTraceInputStream() throws IOException {
if (mAppTraceRetriever == null && mNativeTombstoneRetriever == null) {
return null;
}
try {
if (mNativeTombstoneRetriever != null) {
final ParcelFileDescriptor pfd = mNativeTombstoneRetriever.getPfd();
if (pfd == null) {
return null;
}
return new ParcelFileDescriptor.AutoCloseInputStream(pfd);
} else {
final ParcelFileDescriptor fd = mAppTraceRetriever.getTraceFileDescriptor(
mPackageName, mPackageUid, mPid);
if (fd == null) {
return null;
}
return new GZIPInputStream(new ParcelFileDescriptor.AutoCloseInputStream(fd));
}
} catch (RemoteException e) {
return null;
}
}
/**
* Similar to {@link #getTraceInputStream} but return the File object.
*
* For internal use only.
*
* @hide
*/
public @Nullable File getTraceFile() {
return mTraceFile;
}
/**
* A subtype reason in conjunction with {@link #mReason}.
*
* For internal use only.
*
* @hide
*/
public @SubReason int getSubReason() {
return mSubReason;
}
/**
* The connection group this process belongs to, if there is any.
* @see android.content.Context#updateServiceGroup
*
* For internal use only.
*
* @hide
*/
public int getConnectionGroup() {
return mConnectionGroup;
}
/**
* Name of first package running in this process;
*
* @hide
*/
public String getPackageName() {
return mPackageName;
}
/**
* List of packages running in this process;
*
* For system internal use only, will not retain across processes.
*
* @hide
*/
public String[] getPackageList() {
return mPackageList;
}
/**
* @see #getPid
*
* @hide
*/
public void setPid(final int pid) {
mPid = pid;
}
/**
* @see #getRealUid
*
* @hide
*/
public void setRealUid(final int uid) {
mRealUid = uid;
}
/**
* @see #getPackageUid
*
* @hide
*/
public void setPackageUid(final int uid) {
mPackageUid = uid;
}
/**
* @see #getDefiningUid
*
* @hide
*/
public void setDefiningUid(final int uid) {
mDefiningUid = uid;
}
/**
* @see #getProcessName
*
* @hide
*/
public void setProcessName(final String processName) {
mProcessName = intern(processName);
}
/**
* @see #getReason
*
* @hide
*/
public void setReason(final @Reason int reason) {
mReason = reason;
}
/**
* @see #getStatus
*
* @hide
*/
public void setStatus(final int status) {
mStatus = status;
}
/**
* @see #getImportance
*
* @hide
*/
public void setImportance(final @Importance int importance) {
mImportance = importance;
}
/**
* @see #getPss
*
* @hide
*/
public void setPss(final long pss) {
mPss = pss;
}
/**
* @see #getRss
*
* @hide
*/
public void setRss(final long rss) {
mRss = rss;
}
/**
* @see #getTimestamp
*
* @hide
*/
public void setTimestamp(final @CurrentTimeMillisLong long timestamp) {
mTimestamp = timestamp;
}
/**
* @see #getDescription
*
* @hide
*/
public void setDescription(final String description) {
mDescription = intern(description);
}
/**
* @see #getSubReason
*
* @hide
*/
public void setSubReason(final @SubReason int subReason) {
mSubReason = subReason;
}
/**
* @see #getConnectionGroup
*
* @hide
*/
public void setConnectionGroup(final int connectionGroup) {
mConnectionGroup = connectionGroup;
}
/**
* @see #getPackageName
*
* @hide
*/
public void setPackageName(final String packageName) {
mPackageName = intern(packageName);
}
/**
* @see #getPackageList
*
* @hide
*/
public void setPackageList(final String[] packageList) {
mPackageList = packageList;
}
/**
* @see #getProcessStateSummary
*
* @hide
*/
public void setProcessStateSummary(final byte[] state) {
mState = state;
}
/**
* @see #getTraceFile
*
* @hide
*/
public void setTraceFile(final File traceFile) {
mTraceFile = traceFile;
}
/**
* @see #mAppTraceRetriever
*
* @hide
*/
public void setAppTraceRetriever(final IAppTraceRetriever retriever) {
mAppTraceRetriever = retriever;
}
/**
* @see mNativeTombstoneRetriever
*
* @hide
*/
public void setNativeTombstoneRetriever(final IParcelFileDescriptorRetriever retriever) {
mNativeTombstoneRetriever = retriever;
}
/**
* @see #mLoggedInStatsd
*
* @hide
*/
public boolean isLoggedInStatsd() {
return mLoggedInStatsd;
}
/**
* @see #mLoggedInStatsd
*
* @hide
*/
public void setLoggedInStatsd(boolean loggedInStatsd) {
mLoggedInStatsd = loggedInStatsd;
}
/**
* @see #mHasForegroundServices
*
* @hide
*/
public boolean hasForegroundServices() {
return mHasForegroundServices;
}
/**
* @see #mHasForegroundServices
*
* @hide
*/
public void setHasForegroundServices(boolean hasForegroundServices) {
mHasForegroundServices = hasForegroundServices;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
dest.writeInt(mPid);
dest.writeInt(mRealUid);
dest.writeInt(mPackageUid);
dest.writeInt(mDefiningUid);
dest.writeString(mProcessName);
dest.writeString(mPackageName);
dest.writeInt(mConnectionGroup);
dest.writeInt(mReason);
dest.writeInt(mSubReason);
dest.writeInt(mStatus);
dest.writeInt(mImportance);
dest.writeLong(mPss);
dest.writeLong(mRss);
dest.writeLong(mTimestamp);
dest.writeString(mDescription);
dest.writeByteArray(mState);
if (mAppTraceRetriever != null) {
dest.writeInt(1);
dest.writeStrongBinder(mAppTraceRetriever.asBinder());
} else {
dest.writeInt(0);
}
if (mNativeTombstoneRetriever != null) {
dest.writeInt(1);
dest.writeStrongBinder(mNativeTombstoneRetriever.asBinder());
} else {
dest.writeInt(0);
}
}
/** @hide */
public ApplicationExitInfo() {
}
/** @hide */
public ApplicationExitInfo(ApplicationExitInfo other) {
mPid = other.mPid;
mRealUid = other.mRealUid;
mPackageUid = other.mPackageUid;
mDefiningUid = other.mDefiningUid;
mProcessName = other.mProcessName;
mPackageName = other.mPackageName;
mConnectionGroup = other.mConnectionGroup;
mReason = other.mReason;
mStatus = other.mStatus;
mSubReason = other.mSubReason;
mImportance = other.mImportance;
mPss = other.mPss;
mRss = other.mRss;
mTimestamp = other.mTimestamp;
mDescription = other.mDescription;
mPackageName = other.mPackageName;
mPackageList = other.mPackageList;
mState = other.mState;
mTraceFile = other.mTraceFile;
mAppTraceRetriever = other.mAppTraceRetriever;
mNativeTombstoneRetriever = other.mNativeTombstoneRetriever;
mLoggedInStatsd = other.mLoggedInStatsd;
mHasForegroundServices = other.mHasForegroundServices;
}
private ApplicationExitInfo(@NonNull Parcel in) {
mPid = in.readInt();
mRealUid = in.readInt();
mPackageUid = in.readInt();
mDefiningUid = in.readInt();
mProcessName = intern(in.readString());
mPackageName = intern(in.readString());
mConnectionGroup = in.readInt();
mReason = in.readInt();
mSubReason = in.readInt();
mStatus = in.readInt();
mImportance = in.readInt();
mPss = in.readLong();
mRss = in.readLong();
mTimestamp = in.readLong();
mDescription = intern(in.readString());
mState = in.createByteArray();
if (in.readInt() == 1) {
mAppTraceRetriever = IAppTraceRetriever.Stub.asInterface(in.readStrongBinder());
}
if (in.readInt() == 1) {
mNativeTombstoneRetriever = IParcelFileDescriptorRetriever.Stub.asInterface(
in.readStrongBinder());
}
}
private static String intern(@Nullable String source) {
return source != null ? source.intern() : null;
}
public @NonNull static final Creator<ApplicationExitInfo> CREATOR =
new Creator<ApplicationExitInfo>() {
@Override
public ApplicationExitInfo createFromParcel(Parcel in) {
return new ApplicationExitInfo(in);
}
@Override
public ApplicationExitInfo[] newArray(int size) {
return new ApplicationExitInfo[size];
}
};
/** @hide */
public void dump(@NonNull PrintWriter pw, @Nullable String prefix, @Nullable String seqSuffix,
@NonNull SimpleDateFormat sdf) {
StringBuilder sb = new StringBuilder();
sb.append(prefix)
.append("ApplicationExitInfo ").append(seqSuffix).append(':')
.append('\n');
sb.append(prefix).append(' ')
.append(" timestamp=").append(sdf.format(new Date(mTimestamp)))
.append(" pid=").append(mPid)
.append(" realUid=").append(mRealUid)
.append(" packageUid=").append(mPackageUid)
.append(" definingUid=").append(mDefiningUid)
.append(" user=").append(UserHandle.getUserId(mPackageUid))
.append('\n');
sb.append(prefix).append(' ')
.append(" process=").append(mProcessName)
.append(" reason=").append(mReason)
.append(" (").append(reasonCodeToString(mReason)).append(")")
.append(" subreason=").append(mSubReason)
.append(" (").append(subreasonToString(mSubReason)).append(")")
.append(" status=").append(mStatus)
.append('\n');
sb.append(prefix).append(' ')
.append(" importance=").append(mImportance)
.append(" pss=");
DebugUtils.sizeValueToString(mPss << 10, sb);
sb.append(" rss=");
DebugUtils.sizeValueToString(mRss << 10, sb);
sb.append(" description=").append(mDescription)
.append(" state=").append((ArrayUtils.isEmpty(mState)
? "empty" : Integer.toString(mState.length) + " bytes"))
.append(" trace=").append(mTraceFile)
.append('\n');
pw.print(sb.toString());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("ApplicationExitInfo(timestamp=");
sb.append(new SimpleDateFormat().format(new Date(mTimestamp)));
sb.append(" pid=").append(mPid);
sb.append(" realUid=").append(mRealUid);
sb.append(" packageUid=").append(mPackageUid);
sb.append(" definingUid=").append(mDefiningUid);
sb.append(" user=").append(UserHandle.getUserId(mPackageUid));
sb.append(" process=").append(mProcessName);
sb.append(" reason=").append(mReason).append(" (")
.append(reasonCodeToString(mReason)).append(")");
sb.append(" subreason=").append(mSubReason).append(" (")
.append(subreasonToString(mSubReason)).append(")");
sb.append(" status=").append(mStatus);
sb.append(" importance=").append(mImportance);
sb.append(" pss="); DebugUtils.sizeValueToString(mPss << 10, sb);
sb.append(" rss="); DebugUtils.sizeValueToString(mRss << 10, sb);
sb.append(" description=").append(mDescription);
sb.append(" state=").append(ArrayUtils.isEmpty(mState)
? "empty" : Integer.toString(mState.length) + " bytes");
sb.append(" trace=").append(mTraceFile);
return sb.toString();
}
/** @hide */
public static String reasonCodeToString(@Reason int reason) {
switch (reason) {
case REASON_EXIT_SELF:
return "EXIT_SELF";
case REASON_SIGNALED:
return "SIGNALED";
case REASON_LOW_MEMORY:
return "LOW_MEMORY";
case REASON_CRASH:
return "APP CRASH(EXCEPTION)";
case REASON_CRASH_NATIVE:
return "APP CRASH(NATIVE)";
case REASON_ANR:
return "ANR";
case REASON_INITIALIZATION_FAILURE:
return "INITIALIZATION FAILURE";
case REASON_PERMISSION_CHANGE:
return "PERMISSION CHANGE";
case REASON_EXCESSIVE_RESOURCE_USAGE:
return "EXCESSIVE RESOURCE USAGE";
case REASON_USER_REQUESTED:
return "USER REQUESTED";
case REASON_USER_STOPPED:
return "USER STOPPED";
case REASON_DEPENDENCY_DIED:
return "DEPENDENCY DIED";
case REASON_OTHER:
return "OTHER KILLS BY SYSTEM";
case REASON_FREEZER:
return "FREEZER";
default:
return "UNKNOWN";
}
}
/** @hide */
public static String subreasonToString(@SubReason int subreason) {
switch (subreason) {
case SUBREASON_WAIT_FOR_DEBUGGER:
return "WAIT FOR DEBUGGER";
case SUBREASON_TOO_MANY_CACHED:
return "TOO MANY CACHED PROCS";
case SUBREASON_TOO_MANY_EMPTY:
return "TOO MANY EMPTY PROCS";
case SUBREASON_TRIM_EMPTY:
return "TRIM EMPTY";
case SUBREASON_LARGE_CACHED:
return "LARGE CACHED";
case SUBREASON_MEMORY_PRESSURE:
return "MEMORY PRESSURE";
case SUBREASON_EXCESSIVE_CPU:
return "EXCESSIVE CPU USAGE";
case SUBREASON_SYSTEM_UPDATE_DONE:
return "SYSTEM UPDATE_DONE";
case SUBREASON_KILL_ALL_FG:
return "KILL ALL FG";
case SUBREASON_KILL_ALL_BG_EXCEPT:
return "KILL ALL BG EXCEPT";
case SUBREASON_KILL_UID:
return "KILL UID";
case SUBREASON_KILL_PID:
return "KILL PID";
case SUBREASON_INVALID_START:
return "INVALID START";
case SUBREASON_INVALID_STATE:
return "INVALID STATE";
case SUBREASON_IMPERCEPTIBLE:
return "IMPERCEPTIBLE";
case SUBREASON_REMOVE_LRU:
return "REMOVE LRU";
case SUBREASON_ISOLATED_NOT_NEEDED:
return "ISOLATED NOT NEEDED";
case SUBREASON_FREEZER_BINDER_IOCTL:
return "FREEZER BINDER IOCTL";
case SUBREASON_FREEZER_BINDER_TRANSACTION:
return "FREEZER BINDER TRANSACTION";
case SUBREASON_FORCE_STOP:
return "FORCE STOP";
case SUBREASON_REMOVE_TASK:
return "REMOVE TASK";
case SUBREASON_STOP_APP:
return "STOP APP";
case SUBREASON_KILL_BACKGROUND:
return "KILL BACKGROUND";
case SUBREASON_PACKAGE_UPDATE:
return "PACKAGE UPDATE";
case SUBREASON_UNDELIVERED_BROADCAST:
return "UNDELIVERED BROADCAST";
default:
return "UNKNOWN";
}
}
/**
* Write to a protocol buffer output stream.
* Protocol buffer message definition at {@link android.app.ApplicationExitInfoProto}
*
* @param proto Stream to write the ApplicationExitInfo object to.
* @param fieldId Field Id of the ApplicationExitInfo as defined in the parent message
* @hide
*/
public void writeToProto(ProtoOutputStream proto, long fieldId) {
final long token = proto.start(fieldId);
proto.write(ApplicationExitInfoProto.PID, mPid);
proto.write(ApplicationExitInfoProto.REAL_UID, mRealUid);
proto.write(ApplicationExitInfoProto.PACKAGE_UID, mPackageUid);
proto.write(ApplicationExitInfoProto.DEFINING_UID, mDefiningUid);
proto.write(ApplicationExitInfoProto.PROCESS_NAME, mProcessName);
proto.write(ApplicationExitInfoProto.CONNECTION_GROUP, mConnectionGroup);
proto.write(ApplicationExitInfoProto.REASON, mReason);
proto.write(ApplicationExitInfoProto.SUB_REASON, mSubReason);
proto.write(ApplicationExitInfoProto.STATUS, mStatus);
proto.write(ApplicationExitInfoProto.IMPORTANCE, mImportance);
proto.write(ApplicationExitInfoProto.PSS, mPss);
proto.write(ApplicationExitInfoProto.RSS, mRss);
proto.write(ApplicationExitInfoProto.TIMESTAMP, mTimestamp);
proto.write(ApplicationExitInfoProto.DESCRIPTION, mDescription);
proto.write(ApplicationExitInfoProto.STATE, mState);
proto.write(ApplicationExitInfoProto.TRACE_FILE,
mTraceFile == null ? null : mTraceFile.getAbsolutePath());
proto.end(token);
}
/**
* Read from a protocol buffer input stream.
* Protocol buffer message definition at {@link android.app.ApplicationExitInfoProto}
*
* @param proto Stream to read the ApplicationExitInfo object from.
* @param fieldId Field Id of the ApplicationExitInfo as defined in the parent message
* @hide
*/
public void readFromProto(ProtoInputStream proto, long fieldId)
throws IOException, WireTypeMismatchException {
final long token = proto.start(fieldId);
while (proto.nextField() != ProtoInputStream.NO_MORE_FIELDS) {
switch (proto.getFieldNumber()) {
case (int) ApplicationExitInfoProto.PID:
mPid = proto.readInt(ApplicationExitInfoProto.PID);
break;
case (int) ApplicationExitInfoProto.REAL_UID:
mRealUid = proto.readInt(ApplicationExitInfoProto.REAL_UID);
break;
case (int) ApplicationExitInfoProto.PACKAGE_UID:
mPackageUid = proto.readInt(ApplicationExitInfoProto.PACKAGE_UID);
break;
case (int) ApplicationExitInfoProto.DEFINING_UID:
mDefiningUid = proto.readInt(ApplicationExitInfoProto.DEFINING_UID);
break;
case (int) ApplicationExitInfoProto.PROCESS_NAME:
mProcessName = intern(proto.readString(ApplicationExitInfoProto.PROCESS_NAME));
break;
case (int) ApplicationExitInfoProto.CONNECTION_GROUP:
mConnectionGroup = proto.readInt(ApplicationExitInfoProto.CONNECTION_GROUP);
break;
case (int) ApplicationExitInfoProto.REASON:
mReason = proto.readInt(ApplicationExitInfoProto.REASON);
break;
case (int) ApplicationExitInfoProto.SUB_REASON:
mSubReason = proto.readInt(ApplicationExitInfoProto.SUB_REASON);
break;
case (int) ApplicationExitInfoProto.STATUS:
mStatus = proto.readInt(ApplicationExitInfoProto.STATUS);
break;
case (int) ApplicationExitInfoProto.IMPORTANCE:
mImportance = proto.readInt(ApplicationExitInfoProto.IMPORTANCE);
break;
case (int) ApplicationExitInfoProto.PSS:
mPss = proto.readLong(ApplicationExitInfoProto.PSS);
break;
case (int) ApplicationExitInfoProto.RSS:
mRss = proto.readLong(ApplicationExitInfoProto.RSS);
break;
case (int) ApplicationExitInfoProto.TIMESTAMP:
mTimestamp = proto.readLong(ApplicationExitInfoProto.TIMESTAMP);
break;
case (int) ApplicationExitInfoProto.DESCRIPTION:
mDescription = intern(proto.readString(ApplicationExitInfoProto.DESCRIPTION));
break;
case (int) ApplicationExitInfoProto.STATE:
mState = proto.readBytes(ApplicationExitInfoProto.STATE);
break;
case (int) ApplicationExitInfoProto.TRACE_FILE:
final String path = proto.readString(ApplicationExitInfoProto.TRACE_FILE);
if (!TextUtils.isEmpty(path)) {
mTraceFile = new File(path);
}
break;
}
}
proto.end(token);
}
@Override
public boolean equals(@Nullable Object other) {
if (other == null || !(other instanceof ApplicationExitInfo)) {
return false;
}
ApplicationExitInfo o = (ApplicationExitInfo) other;
return mPid == o.mPid && mRealUid == o.mRealUid && mPackageUid == o.mPackageUid
&& mDefiningUid == o.mDefiningUid
&& mConnectionGroup == o.mConnectionGroup && mReason == o.mReason
&& mSubReason == o.mSubReason && mImportance == o.mImportance
&& mStatus == o.mStatus && mTimestamp == o.mTimestamp
&& mPss == o.mPss && mRss == o.mRss
&& TextUtils.equals(mProcessName, o.mProcessName)
&& TextUtils.equals(mDescription, o.mDescription);
}
@Override
public int hashCode() {
int result = mPid;
result = 31 * result + mRealUid;
result = 31 * result + mPackageUid;
result = 31 * result + mDefiningUid;
result = 31 * result + mConnectionGroup;
result = 31 * result + mReason;
result = 31 * result + mSubReason;
result = 31 * result + mImportance;
result = 31 * result + mStatus;
result = 31 * result + (int) mPss;
result = 31 * result + (int) mRss;
result = 31 * result + Long.hashCode(mTimestamp);
result = 31 * result + Objects.hashCode(mProcessName);
result = 31 * result + Objects.hashCode(mDescription);
return result;
}
}
|