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 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsProfiler.h"
#include <fstream>
#include <limits>
#include <sstream>
#include <string>
#include <utility>
#include "GeckoProfiler.h"
#include "ProfilerControl.h"
#include "ProfilerParent.h"
#include "js/Array.h" // JS::NewArrayObject
#include "js/JSON.h"
#include "js/PropertyAndElement.h" // JS_SetElement
#include "js/Value.h"
#include "json/json.h"
#include "mozilla/ErrorResult.h"
#include "mozilla/JSONStringWriteFuncs.h"
#include "mozilla/SchedulerGroup.h"
#include "mozilla/Services.h"
#include "mozilla/dom/Promise.h"
#include "mozilla/dom/TypedArray.h"
#include "mozilla/Preferences.h"
#include "nsComponentManagerUtils.h"
#include "nsIInterfaceRequestor.h"
#include "nsIInterfaceRequestorUtils.h"
#include "nsILoadContext.h"
#include "nsIWebNavigation.h"
#include "nsProfilerStartParams.h"
#include "nsProxyRelease.h"
#include "nsString.h"
#include "nsThreadUtils.h"
#include "platform.h"
#include "SharedLibraries.h"
#include "zlib.h"
#ifndef ANDROID
# include <cstdio>
#else
# include <android/log.h>
#endif
using namespace mozilla;
using dom::AutoJSAPI;
using dom::Promise;
using std::string;
static constexpr size_t scLengthMax = size_t(JS::MaxStringLength);
// Used when trying to add more JSON data, to account for the extra space needed
// for the log and to close the profile.
static constexpr size_t scLengthAccumulationThreshold = scLengthMax - 16 * 1024;
NS_IMPL_ISUPPORTS(nsProfiler, nsIProfiler)
nsProfiler::nsProfiler() : mGathering(false) {}
nsProfiler::~nsProfiler() {
if (mSymbolTableThread) {
mSymbolTableThread->Shutdown();
}
ResetGathering(NS_ERROR_ILLEGAL_DURING_SHUTDOWN);
}
nsresult nsProfiler::Init() { return NS_OK; }
template <typename JsonLogObjectUpdater>
void nsProfiler::Log(JsonLogObjectUpdater&& aJsonLogObjectUpdater) {
if (mGatheringLog) {
MOZ_ASSERT(mGatheringLog->isObject());
std::forward<JsonLogObjectUpdater>(aJsonLogObjectUpdater)(*mGatheringLog);
MOZ_ASSERT(mGatheringLog->isObject());
}
}
template <typename JsonArrayAppender>
void nsProfiler::LogEvent(JsonArrayAppender&& aJsonArrayAppender) {
Log([&](Json::Value& aRoot) {
Json::Value& events = aRoot[Json::StaticString{"events"}];
if (!events.isArray()) {
events = Json::Value{Json::arrayValue};
}
Json::Value newEvent{Json::arrayValue};
newEvent.append(ProfilingLog::Timestamp());
std::forward<JsonArrayAppender>(aJsonArrayAppender)(newEvent);
MOZ_ASSERT(newEvent.isArray());
events.append(std::move(newEvent));
});
}
void nsProfiler::LogEventLiteralString(const char* aEventString) {
LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{aEventString});
});
}
static nsresult FillVectorFromStringArray(Vector<const char*>& aVector,
const nsTArray<nsCString>& aArray) {
if (NS_WARN_IF(!aVector.reserve(aArray.Length()))) {
return NS_ERROR_OUT_OF_MEMORY;
}
for (auto& entry : aArray) {
aVector.infallibleAppend(entry.get());
}
return NS_OK;
}
// Given a PromiseReturningFunction: () -> GenericPromise,
// run the function, and return a JS Promise (through aPromise) that will be
// resolved when the function's GenericPromise gets resolved.
template <typename PromiseReturningFunction>
static nsresult RunFunctionAndConvertPromise(
JSContext* aCx, Promise** aPromise,
PromiseReturningFunction&& aPromiseReturningFunction) {
MOZ_ASSERT(NS_IsMainThread());
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject = xpc::CurrentNativeGlobal(aCx);
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
std::forward<PromiseReturningFunction>(aPromiseReturningFunction)()->Then(
GetMainThreadSerialEventTarget(), __func__,
[promise](GenericPromise::ResolveOrRejectValue&&) {
promise->MaybeResolveWithUndefined();
});
promise.forget(aPromise);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::StartProfiler(uint32_t aEntries, double aInterval,
const nsTArray<nsCString>& aFeatures,
const nsTArray<nsCString>& aFilters,
uint64_t aActiveTabID, double aDuration,
JSContext* aCx, Promise** aPromise) {
ResetGathering(NS_ERROR_DOM_ABORT_ERR);
Vector<const char*> featureStringVector;
nsresult rv = FillVectorFromStringArray(featureStringVector, aFeatures);
if (NS_FAILED(rv)) {
return rv;
}
uint32_t features = ParseFeaturesFromStringArray(
featureStringVector.begin(), featureStringVector.length());
Maybe<double> duration = aDuration > 0.0 ? Some(aDuration) : Nothing();
Vector<const char*> filterStringVector;
rv = FillVectorFromStringArray(filterStringVector, aFilters);
if (NS_FAILED(rv)) {
return rv;
}
return RunFunctionAndConvertPromise(aCx, aPromise, [&]() {
return profiler_start(PowerOfTwo32(aEntries), aInterval, features,
filterStringVector.begin(),
filterStringVector.length(), aActiveTabID, duration);
});
}
NS_IMETHODIMP
nsProfiler::StopProfiler(JSContext* aCx, Promise** aPromise) {
ResetGathering(NS_ERROR_DOM_ABORT_ERR);
return RunFunctionAndConvertPromise(aCx, aPromise,
[]() { return profiler_stop(); });
}
NS_IMETHODIMP
nsProfiler::IsPaused(bool* aIsPaused) {
*aIsPaused = profiler_is_paused();
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::Pause(JSContext* aCx, Promise** aPromise) {
return RunFunctionAndConvertPromise(aCx, aPromise,
[]() { return profiler_pause(); });
}
NS_IMETHODIMP
nsProfiler::Resume(JSContext* aCx, Promise** aPromise) {
return RunFunctionAndConvertPromise(aCx, aPromise,
[]() { return profiler_resume(); });
}
NS_IMETHODIMP
nsProfiler::IsSamplingPaused(bool* aIsSamplingPaused) {
*aIsSamplingPaused = profiler_is_sampling_paused();
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::PauseSampling(JSContext* aCx, Promise** aPromise) {
return RunFunctionAndConvertPromise(
aCx, aPromise, []() { return profiler_pause_sampling(); });
}
NS_IMETHODIMP
nsProfiler::ResumeSampling(JSContext* aCx, Promise** aPromise) {
return RunFunctionAndConvertPromise(
aCx, aPromise, []() { return profiler_resume_sampling(); });
}
NS_IMETHODIMP
nsProfiler::ClearAllPages() {
profiler_clear_all_pages();
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::WaitOnePeriodicSampling(JSContext* aCx, Promise** aPromise) {
MOZ_ASSERT(NS_IsMainThread());
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject = xpc::CurrentNativeGlobal(aCx);
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
// The callback cannot officially own the promise RefPtr directly, because
// `Promise` doesn't support multi-threading, and the callback could destroy
// the promise in the sampler thread.
// `nsMainThreadPtrHandle` ensures that the promise can only be destroyed on
// the main thread. And the invocation from the Sampler thread immediately
// dispatches a task back to the main thread, to resolve/reject the promise.
// The lambda needs to be `mutable`, to allow moving-from
// `promiseHandleInSampler`.
if (!profiler_callback_after_sampling(
[promiseHandleInSampler = nsMainThreadPtrHandle<Promise>(
new nsMainThreadPtrHolder<Promise>(
"WaitOnePeriodicSampling promise for Sampler", promise))](
SamplingState aSamplingState) mutable {
SchedulerGroup::Dispatch(NS_NewRunnableFunction(
"nsProfiler::WaitOnePeriodicSampling result on main thread",
[promiseHandleInMT = std::move(promiseHandleInSampler),
aSamplingState]() mutable {
switch (aSamplingState) {
case SamplingState::JustStopped:
case SamplingState::SamplingPaused:
promiseHandleInMT->MaybeReject(NS_ERROR_FAILURE);
break;
case SamplingState::NoStackSamplingCompleted:
case SamplingState::SamplingCompleted:
// The parent process has succesfully done a sampling,
// check the child processes (if any).
ProfilerParent::WaitOnePeriodicSampling()->Then(
GetMainThreadSerialEventTarget(), __func__,
[promiseHandleInMT = std::move(promiseHandleInMT)](
GenericPromise::ResolveOrRejectValue&&) {
promiseHandleInMT->MaybeResolveWithUndefined();
});
break;
default:
MOZ_ASSERT(false, "Unexpected SamplingState value");
promiseHandleInMT->MaybeReject(NS_ERROR_DOM_UNKNOWN_ERR);
break;
}
}));
})) {
// Callback was not added (e.g., profiler is not running) and will never be
// invoked, so we need to resolve the promise here.
promise->MaybeReject(NS_ERROR_DOM_UNKNOWN_ERR);
}
promise.forget(aPromise);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetProfile(double aSinceTime, char** aProfile) {
mozilla::UniquePtr<char[]> profile = profiler_get_profile(aSinceTime);
*aProfile = profile.release();
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetSharedLibraries(JSContext* aCx,
JS::MutableHandle<JS::Value> aResult) {
JS::Rooted<JS::Value> val(aCx);
{
JSONStringWriteFunc<nsCString> buffer;
JSONWriter w(buffer, JSONWriter::SingleLineStyle);
w.StartArrayElement();
SharedLibraryInfo sharedLibraryInfo = SharedLibraryInfo::GetInfoForSelf();
sharedLibraryInfo.SortByAddress();
AppendSharedLibraries(w, sharedLibraryInfo);
w.EndArray();
NS_ConvertUTF8toUTF16 buffer16(buffer.StringCRef());
MOZ_ALWAYS_TRUE(JS_ParseJSON(aCx,
static_cast<const char16_t*>(buffer16.get()),
buffer16.Length(), &val));
}
JS::Rooted<JSObject*> obj(aCx, &val.toObject());
if (!obj) {
return NS_ERROR_FAILURE;
}
aResult.setObject(*obj);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetActiveConfiguration(JSContext* aCx,
JS::MutableHandle<JS::Value> aResult) {
JS::Rooted<JS::Value> jsValue(aCx);
{
JSONStringWriteFunc<nsCString> buffer;
JSONWriter writer(buffer, JSONWriter::SingleLineStyle);
profiler_write_active_configuration(writer);
NS_ConvertUTF8toUTF16 buffer16(buffer.StringCRef());
MOZ_ALWAYS_TRUE(JS_ParseJSON(aCx,
static_cast<const char16_t*>(buffer16.get()),
buffer16.Length(), &jsValue));
}
if (jsValue.isNull()) {
aResult.setNull();
} else {
JS::Rooted<JSObject*> obj(aCx, &jsValue.toObject());
if (!obj) {
return NS_ERROR_FAILURE;
}
aResult.setObject(*obj);
}
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::DumpProfileToFile(const char* aFilename) {
profiler_save_profile_to_file(aFilename);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetProfileData(double aSinceTime, JSContext* aCx,
JS::MutableHandle<JS::Value> aResult) {
mozilla::UniquePtr<char[]> profile = profiler_get_profile(aSinceTime);
if (!profile) {
return NS_ERROR_FAILURE;
}
NS_ConvertUTF8toUTF16 js_string(nsDependentCString(profile.get()));
auto profile16 = static_cast<const char16_t*>(js_string.get());
JS::Rooted<JS::Value> val(aCx);
MOZ_ALWAYS_TRUE(JS_ParseJSON(aCx, profile16, js_string.Length(), &val));
aResult.set(val);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetProfileDataAsync(double aSinceTime, JSContext* aCx,
Promise** aPromise) {
MOZ_ASSERT(NS_IsMainThread());
if (!profiler_is_active()) {
return NS_ERROR_FAILURE;
}
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject = xpc::CurrentNativeGlobal(aCx);
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
StartGathering(aSinceTime)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[promise](const mozilla::ProfileAndAdditionalInformation& aResult) {
AutoJSAPI jsapi;
if (NS_WARN_IF(!jsapi.Init(promise->GetGlobalObject()))) {
// We're really hosed if we can't get a JS context for some
// reason.
promise->MaybeReject(NS_ERROR_DOM_UNKNOWN_ERR);
return;
}
JSContext* cx = jsapi.cx();
// Now parse the JSON so that we resolve with a JS Object.
JS::Rooted<JS::Value> val(cx);
{
NS_ConvertUTF8toUTF16 js_string(aResult.mProfile);
if (!JS_ParseJSON(cx,
static_cast<const char16_t*>(js_string.get()),
js_string.Length(), &val)) {
if (!jsapi.HasException()) {
promise->MaybeReject(NS_ERROR_DOM_UNKNOWN_ERR);
} else {
JS::Rooted<JS::Value> exn(cx);
DebugOnly<bool> gotException = jsapi.StealException(&exn);
MOZ_ASSERT(gotException);
jsapi.ClearException();
promise->MaybeReject(exn);
}
} else {
promise->MaybeResolve(val);
}
}
},
[promise](nsresult aRv) { promise->MaybeReject(aRv); });
promise.forget(aPromise);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetProfileDataAsArrayBuffer(double aSinceTime, JSContext* aCx,
Promise** aPromise) {
MOZ_ASSERT(NS_IsMainThread());
if (!profiler_is_active()) {
return NS_ERROR_FAILURE;
}
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject = xpc::CurrentNativeGlobal(aCx);
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
StartGathering(aSinceTime)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[promise](const mozilla::ProfileAndAdditionalInformation& aResult) {
promise->MaybeResolve(
dom::TypedArrayCreator<dom::ArrayBuffer>(aResult.mProfile));
},
[promise](nsresult aRv) { promise->MaybeReject(aRv); });
promise.forget(aPromise);
return NS_OK;
}
nsresult CompressString(const nsCString& aString,
FallibleTArray<uint8_t>& aOutBuff) {
// Compress a buffer via zlib (as with `compress()`), but emit a
// gzip header as well. Like `compress()`, this is limited to 4GB in
// size, but that shouldn't be an issue for our purposes.
uLongf outSize = compressBound(aString.Length());
if (!aOutBuff.SetLength(outSize, fallible)) {
return NS_ERROR_OUT_OF_MEMORY;
}
int zerr;
z_stream stream;
stream.zalloc = nullptr;
stream.zfree = nullptr;
stream.opaque = nullptr;
stream.next_out = (Bytef*)aOutBuff.Elements();
stream.avail_out = aOutBuff.Length();
stream.next_in = (z_const Bytef*)aString.Data();
stream.avail_in = aString.Length();
// A windowBits of 31 is the default (15) plus 16 for emitting a
// gzip header; a memLevel of 8 is the default.
zerr =
deflateInit2(&stream, Z_DEFAULT_COMPRESSION, Z_DEFLATED,
/* windowBits */ 31, /* memLevel */ 8, Z_DEFAULT_STRATEGY);
if (zerr != Z_OK) {
return NS_ERROR_FAILURE;
}
zerr = deflate(&stream, Z_FINISH);
outSize = stream.total_out;
deflateEnd(&stream);
if (zerr != Z_STREAM_END) {
return NS_ERROR_FAILURE;
}
aOutBuff.TruncateLength(outSize);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetProfileDataAsGzippedArrayBuffer(double aSinceTime,
JSContext* aCx,
Promise** aPromise) {
MOZ_ASSERT(NS_IsMainThread());
if (!profiler_is_active()) {
return NS_ERROR_FAILURE;
}
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject = xpc::CurrentNativeGlobal(aCx);
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
StartGathering(aSinceTime)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[promise](const mozilla::ProfileAndAdditionalInformation& aResult) {
AutoJSAPI jsapi;
if (NS_WARN_IF(!jsapi.Init(promise->GetGlobalObject()))) {
// We're really hosed if we can't get a JS context for some
// reason.
promise->MaybeReject(NS_ERROR_DOM_UNKNOWN_ERR);
return;
}
FallibleTArray<uint8_t> outBuff;
nsresult result = CompressString(aResult.mProfile, outBuff);
if (result != NS_OK) {
promise->MaybeReject(result);
return;
}
JSContext* cx = jsapi.cx();
// Get the profile typedArray.
JS::Rooted<JS::Value> typedArrayValue(cx);
if (!ToJSValue(cx,
dom::TypedArrayCreator<dom::ArrayBuffer>(outBuff),
&typedArrayValue)) {
promise->MaybeRejectWithExceptionFromContext(cx);
return;
}
// Get the additional information object.
JS::Rooted<JS::Value> additionalInfoVal(cx);
if (aResult.mAdditionalInformation.isSome()) {
aResult.mAdditionalInformation->ToJSValue(cx, &additionalInfoVal);
} else {
additionalInfoVal.setUndefined();
}
// Create the return object.
JS::Rooted<JSObject*> resultObj(cx, JS_NewPlainObject(cx));
JS_SetProperty(cx, resultObj, "profile", typedArrayValue);
JS_SetProperty(cx, resultObj, "additionalInformation",
additionalInfoVal);
promise->MaybeResolve(resultObj);
},
[promise](nsresult aRv) { promise->MaybeReject(aRv); });
promise.forget(aPromise);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::DumpProfileToFileAsync(const nsACString& aFilename,
double aSinceTime, JSContext* aCx,
Promise** aPromise) {
MOZ_ASSERT(NS_IsMainThread());
if (!profiler_is_active()) {
return NS_ERROR_FAILURE;
}
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject = xpc::CurrentNativeGlobal(aCx);
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
nsCString filename(aFilename);
StartGathering(aSinceTime)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[filename,
promise](const mozilla::ProfileAndAdditionalInformation& aResult) {
if (aResult.mProfile.Length() >=
size_t(std::numeric_limits<std::streamsize>::max())) {
promise->MaybeReject(NS_ERROR_FILE_TOO_BIG);
return;
}
std::ofstream stream;
stream.open(filename.get());
if (!stream.is_open()) {
promise->MaybeReject(NS_ERROR_FILE_UNRECOGNIZED_PATH);
return;
}
stream.write(aResult.mProfile.get(),
std::streamsize(aResult.mProfile.Length()));
stream.close();
promise->MaybeResolveWithUndefined();
},
[promise](nsresult aRv) { promise->MaybeReject(aRv); });
promise.forget(aPromise);
return NS_OK;
}
RefPtr<nsProfiler::GatheringPromiseFileDump>
nsProfiler::DumpProfileToFileAsyncNoJs(const nsACString& aFilename,
double aSinceTime) {
if (!profiler_is_active()) {
return GatheringPromiseFileDump::CreateAndReject(NS_ERROR_FAILURE,
__func__);
}
nsCString filename(aFilename);
return StartGathering(aSinceTime)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[filename](const mozilla::ProfileAndAdditionalInformation& aResult) {
if (aResult.mProfile.Length() >=
size_t(std::numeric_limits<std::streamsize>::max())) {
return GatheringPromiseFileDump::CreateAndReject(
NS_ERROR_FILE_TOO_BIG, __func__);
}
std::ofstream stream;
stream.open(filename.get());
if (!stream.is_open()) {
return GatheringPromiseFileDump::CreateAndReject(
NS_ERROR_FILE_UNRECOGNIZED_PATH, __func__);
}
stream.write(aResult.mProfile.get(),
std::streamsize(aResult.mProfile.Length()));
stream.close();
return GatheringPromiseFileDump::CreateAndResolve(void_t(),
__func__);
},
[](nsresult aRv) {
return GatheringPromiseFileDump::CreateAndReject(aRv, __func__);
});
}
NS_IMETHODIMP
nsProfiler::GetSymbolTable(const nsACString& aDebugPath,
const nsACString& aBreakpadID, JSContext* aCx,
Promise** aPromise) {
MOZ_ASSERT(NS_IsMainThread());
if (NS_WARN_IF(!aCx)) {
return NS_ERROR_FAILURE;
}
nsIGlobalObject* globalObject =
xpc::NativeGlobal(JS::CurrentGlobalOrNull(aCx));
if (NS_WARN_IF(!globalObject)) {
return NS_ERROR_FAILURE;
}
ErrorResult result;
RefPtr<Promise> promise = Promise::Create(globalObject, result);
if (NS_WARN_IF(result.Failed())) {
return result.StealNSResult();
}
GetSymbolTableMozPromise(aDebugPath, aBreakpadID)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[promise](const SymbolTable& aSymbolTable) {
AutoJSAPI jsapi;
if (NS_WARN_IF(!jsapi.Init(promise->GetGlobalObject()))) {
// We're really hosed if we can't get a JS context for some
// reason.
promise->MaybeReject(NS_ERROR_DOM_UNKNOWN_ERR);
return;
}
JSContext* cx = jsapi.cx();
JS::Rooted<JS::Value> addrsArray(cx);
if (!ToJSValue(cx,
dom::TypedArrayCreator<dom::Uint32Array>(
aSymbolTable.mAddrs),
&addrsArray)) {
promise->MaybeRejectWithExceptionFromContext(cx);
return;
}
JS::Rooted<JS::Value> indexArray(cx);
if (!ToJSValue(cx,
dom::TypedArrayCreator<dom::Uint32Array>(
aSymbolTable.mIndex),
&indexArray)) {
promise->MaybeRejectWithExceptionFromContext(cx);
return;
}
JS::Rooted<JS::Value> bufferArray(cx);
if (!ToJSValue(cx,
dom::TypedArrayCreator<dom::Uint8Array>(
aSymbolTable.mBuffer),
&bufferArray)) {
promise->MaybeRejectWithExceptionFromContext(cx);
return;
}
JS::Rooted<JSObject*> tuple(cx, JS::NewArrayObject(cx, 3));
JS_SetElement(cx, tuple, 0, addrsArray);
JS_SetElement(cx, tuple, 1, indexArray);
JS_SetElement(cx, tuple, 2, bufferArray);
promise->MaybeResolve(tuple);
},
[promise](nsresult aRv) { promise->MaybeReject(aRv); });
promise.forget(aPromise);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetElapsedTime(double* aElapsedTime) {
*aElapsedTime = profiler_time();
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::IsActive(bool* aIsActive) {
*aIsActive = profiler_is_active();
return NS_OK;
}
static void GetArrayOfStringsForFeatures(uint32_t aFeatures,
nsTArray<nsCString>& aFeatureList) {
#define COUNT_IF_SET(n_, str_, Name_, desc_) \
if (ProfilerFeature::Has##Name_(aFeatures)) { \
len++; \
}
// Count the number of features in use.
uint32_t len = 0;
PROFILER_FOR_EACH_FEATURE(COUNT_IF_SET)
#undef COUNT_IF_SET
aFeatureList.SetCapacity(len);
#define DUP_IF_SET(n_, str_, Name_, desc_) \
if (ProfilerFeature::Has##Name_(aFeatures)) { \
aFeatureList.AppendElement(str_); \
}
// Insert the strings for the features in use.
PROFILER_FOR_EACH_FEATURE(DUP_IF_SET)
#undef DUP_IF_SET
}
NS_IMETHODIMP
nsProfiler::GetFeatures(nsTArray<nsCString>& aFeatureList) {
uint32_t features = profiler_get_available_features();
GetArrayOfStringsForFeatures(features, aFeatureList);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetAllFeatures(nsTArray<nsCString>& aFeatureList) {
GetArrayOfStringsForFeatures((uint32_t)-1, aFeatureList);
return NS_OK;
}
NS_IMETHODIMP
nsProfiler::GetBufferInfo(uint32_t* aCurrentPosition, uint32_t* aTotalSize,
uint32_t* aGeneration) {
MOZ_ASSERT(aCurrentPosition);
MOZ_ASSERT(aTotalSize);
MOZ_ASSERT(aGeneration);
Maybe<ProfilerBufferInfo> info = profiler_get_buffer_info();
if (info) {
*aCurrentPosition = info->mRangeEnd % info->mEntryCount;
*aTotalSize = info->mEntryCount;
*aGeneration = info->mRangeEnd / info->mEntryCount;
} else {
*aCurrentPosition = 0;
*aTotalSize = 0;
*aGeneration = 0;
}
return NS_OK;
}
bool nsProfiler::SendProgressRequest(PendingProfile& aPendingProfile) {
RefPtr<ProfilerParent::SingleProcessProgressPromise> progressPromise =
ProfilerParent::RequestGatherProfileProgress(aPendingProfile.childPid);
if (!progressPromise) {
LOG("RequestGatherProfileProgress(%u) -> null!",
unsigned(aPendingProfile.childPid));
LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Failed to send progress request to pid:"});
aEvent.append(Json::Value::UInt64(aPendingProfile.childPid));
});
// Failed to send request.
return false;
}
DEBUG_LOG("RequestGatherProfileProgress(%u) sent...",
unsigned(aPendingProfile.childPid));
LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{"Requested progress from pid:"});
aEvent.append(Json::Value::UInt64(aPendingProfile.childPid));
});
aPendingProfile.lastProgressRequest = TimeStamp::Now();
progressPromise->Then(
GetMainThreadSerialEventTarget(), __func__,
[self = RefPtr<nsProfiler>(this),
childPid = aPendingProfile.childPid](GatherProfileProgress&& aResult) {
if (!self->mGathering) {
return;
}
PendingProfile* pendingProfile = self->GetPendingProfile(childPid);
DEBUG_LOG(
"RequestGatherProfileProgress(%u) response: %.2f '%s' "
"(%u were pending, %s %u)",
unsigned(childPid),
ProportionValue::FromUnderlyingType(
aResult.progressProportionValueUnderlyingType())
.ToDouble() *
100.0,
aResult.progressLocation().Data(),
unsigned(self->mPendingProfiles.length()),
pendingProfile ? "including" : "excluding", unsigned(childPid));
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Got response from pid, with progress:"});
aEvent.append(Json::Value::UInt64(childPid));
aEvent.append(
Json::Value{ProportionValue::FromUnderlyingType(
aResult.progressProportionValueUnderlyingType())
.ToDouble() *
100.0});
});
if (pendingProfile) {
// We have a progress report for a still-pending profile.
pendingProfile->lastProgressResponse = TimeStamp::Now();
// Has it actually made progress?
if (aResult.progressProportionValueUnderlyingType() !=
pendingProfile->progressProportion.ToUnderlyingType()) {
pendingProfile->lastProgressChange =
pendingProfile->lastProgressResponse;
pendingProfile->progressProportion =
ProportionValue::FromUnderlyingType(
aResult.progressProportionValueUnderlyingType());
pendingProfile->progressLocation = aResult.progressLocation();
self->RestartGatheringTimer();
}
}
},
[self = RefPtr<nsProfiler>(this), childPid = aPendingProfile.childPid](
ipc::ResponseRejectReason&& aReason) {
if (!self->mGathering) {
return;
}
PendingProfile* pendingProfile = self->GetPendingProfile(childPid);
LOG("RequestGatherProfileProgress(%u) rejection: %d "
"(%u were pending, %s %u)",
unsigned(childPid), (int)aReason,
unsigned(self->mPendingProfiles.length()),
pendingProfile ? "including" : "excluding", unsigned(childPid));
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{
"Got progress request rejection from pid, with reason:"});
aEvent.append(Json::Value::UInt64(childPid));
aEvent.append(Json::Value::UInt{static_cast<unsigned>(aReason)});
});
if (pendingProfile) {
// Failure response, assume the child process is gone.
MOZ_ASSERT(self->mPendingProfiles.begin() <= pendingProfile &&
pendingProfile < self->mPendingProfiles.end());
self->mPendingProfiles.erase(pendingProfile);
if (self->mPendingProfiles.empty()) {
// We've got all of the async profiles now. Let's finish off the
// profile and resolve the Promise.
self->FinishGathering();
}
}
});
return true;
}
/* static */ void nsProfiler::GatheringTimerCallback(nsITimer* aTimer,
void* aClosure) {
MOZ_RELEASE_ASSERT(NS_IsMainThread());
nsCOMPtr<nsIProfiler> profiler(
do_GetService("@mozilla.org/tools/profiler;1"));
if (!profiler) {
// No (more) profiler service.
return;
}
nsProfiler* self = static_cast<nsProfiler*>(profiler.get());
if (self != aClosure) {
// Different service object!?
return;
}
if (aTimer != self->mGatheringTimer) {
// This timer was cancelled after this callback was queued.
return;
}
bool progressWasMade = false;
// Going backwards, it's easier and cheaper to erase elements if needed.
for (auto iPlus1 = self->mPendingProfiles.length(); iPlus1 != 0; --iPlus1) {
PendingProfile& pendingProfile = self->mPendingProfiles[iPlus1 - 1];
bool needToSendProgressRequest = false;
if (pendingProfile.lastProgressRequest.IsNull()) {
DEBUG_LOG("GatheringTimerCallback() - child %u: No data yet",
unsigned(pendingProfile.childPid));
// First time going through the list, send an initial progress request.
needToSendProgressRequest = true;
// We pretend that progress was made, so we don't give up yet.
progressWasMade = true;
} else if (pendingProfile.lastProgressResponse.IsNull()) {
LOG("GatheringTimerCallback() - child %u: Waiting for first response",
unsigned(pendingProfile.childPid));
// Still waiting for the first response, no progress made here, don't send
// another request.
} else if (pendingProfile.lastProgressResponse <=
pendingProfile.lastProgressRequest) {
LOG("GatheringTimerCallback() - child %u: Waiting for response",
unsigned(pendingProfile.childPid));
// Still waiting for a response to the last request, no progress made
// here, don't send another request.
} else if (pendingProfile.lastProgressChange.IsNull()) {
LOG("GatheringTimerCallback() - child %u: Still waiting for first change",
unsigned(pendingProfile.childPid));
// Still waiting for the first change, no progress made here, but send a
// new request.
needToSendProgressRequest = true;
} else if (pendingProfile.lastProgressRequest <
pendingProfile.lastProgressChange) {
DEBUG_LOG("GatheringTimerCallback() - child %u: Recent change",
unsigned(pendingProfile.childPid));
// We have a recent change, progress was made.
needToSendProgressRequest = true;
progressWasMade = true;
} else {
LOG("GatheringTimerCallback() - child %u: No recent change",
unsigned(pendingProfile.childPid));
needToSendProgressRequest = true;
}
// And send a new progress request.
if (needToSendProgressRequest) {
if (!self->SendProgressRequest(pendingProfile)) {
// Failed to even send the request, consider this process gone.
self->mPendingProfiles.erase(&pendingProfile);
LOG("... Failed to send progress request");
} else {
DEBUG_LOG("... Sent progress request");
}
} else {
DEBUG_LOG("... No progress request");
}
}
if (self->mPendingProfiles.empty()) {
// We've got all of the async profiles now. Let's finish off the profile
// and resolve the Promise.
self->FinishGathering();
return;
}
// Not finished yet.
if (progressWasMade) {
// We made some progress, just restart the timer.
DEBUG_LOG("GatheringTimerCallback() - Progress made, restart timer");
self->RestartGatheringTimer();
return;
}
DEBUG_LOG("GatheringTimerCallback() - Timeout!");
self->mGatheringTimer = nullptr;
if (!profiler_is_active() || !self->mGathering) {
// Not gathering anymore.
return;
}
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{
"No progress made recently, giving up; pending pids:"});
for (const PendingProfile& pendingProfile : self->mPendingProfiles) {
aEvent.append(Json::Value::UInt64(pendingProfile.childPid));
}
});
NS_WARNING("Profiler failed to gather profiles from all sub-processes");
// We have really reached a timeout while gathering, finish now.
// TODO: Add information about missing processes.
self->FinishGathering();
}
void nsProfiler::RestartGatheringTimer() {
if (mGatheringTimer) {
uint32_t delayMs = 0;
const nsresult r = mGatheringTimer->GetDelay(&delayMs);
mGatheringTimer->Cancel();
if (NS_FAILED(r) || delayMs == 0 ||
NS_FAILED(mGatheringTimer->InitWithNamedFuncCallback(
GatheringTimerCallback, this, delayMs,
nsITimer::TYPE_ONE_SHOT_LOW_PRIORITY,
"nsProfilerGatheringTimer"_ns))) {
// Can't restart the timer, so we can't wait any longer.
FinishGathering();
}
}
}
nsProfiler::PendingProfile* nsProfiler::GetPendingProfile(
base::ProcessId aChildPid) {
for (PendingProfile& pendingProfile : mPendingProfiles) {
if (pendingProfile.childPid == aChildPid) {
return &pendingProfile;
}
}
return nullptr;
}
void nsProfiler::GatheredOOPProfile(
base::ProcessId aChildPid, const nsACString& aProfile,
mozilla::Maybe<ProfileGenerationAdditionalInformation>&&
aAdditionalInformation) {
MOZ_RELEASE_ASSERT(NS_IsMainThread());
if (!profiler_is_active()) {
return;
}
if (!mGathering) {
// If we're not actively gathering, then we don't actually care that we
// gathered a profile here. This can happen for processes that exit while
// profiling.
return;
}
MOZ_RELEASE_ASSERT(mWriter.isSome(),
"Should always have a writer if mGathering is true");
// Combine all the additional information into a single struct.
if (aAdditionalInformation.isSome()) {
mProfileGenerationAdditionalInformation->Append(
std::move(*aAdditionalInformation));
}
if (!aProfile.IsEmpty()) {
if (mWriter->ChunkedWriteFunc().Length() + aProfile.Length() <
scLengthAccumulationThreshold) {
// TODO: Remove PromiseFlatCString, see bug 1657033.
mWriter->Splice(PromiseFlatCString(aProfile));
} else {
LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Discarded child profile that would make the "
"full profile too big, pid and size:"});
aEvent.append(Json::Value::UInt64(aChildPid));
aEvent.append(Json::Value::UInt64{aProfile.Length()});
});
}
}
if (PendingProfile* pendingProfile = GetPendingProfile(aChildPid);
pendingProfile) {
mPendingProfiles.erase(pendingProfile);
if (mPendingProfiles.empty()) {
// We've got all of the async profiles now. Let's finish off the profile
// and resolve the Promise.
FinishGathering();
}
}
// Not finished yet, restart the timer to let any remaining child enough time
// to do their profile-streaming.
RestartGatheringTimer();
}
RefPtr<nsProfiler::GatheringPromiseAndroid>
nsProfiler::GetProfileDataAsGzippedArrayBufferAndroid(double aSinceTime) {
MOZ_ASSERT(NS_IsMainThread());
if (!profiler_is_active()) {
return GatheringPromiseAndroid::CreateAndReject(NS_ERROR_FAILURE, __func__);
}
return StartGathering(aSinceTime)
->Then(
GetMainThreadSerialEventTarget(), __func__,
[](const mozilla::ProfileAndAdditionalInformation& aResult) {
FallibleTArray<uint8_t> outBuff;
nsresult result = CompressString(aResult.mProfile, outBuff);
if (result != NS_OK) {
return GatheringPromiseAndroid::CreateAndReject(result, __func__);
}
return GatheringPromiseAndroid::CreateAndResolve(std::move(outBuff),
__func__);
},
[](nsresult aRv) {
return GatheringPromiseAndroid::CreateAndReject(aRv, __func__);
});
}
RefPtr<nsProfiler::GatheringPromise> nsProfiler::StartGathering(
double aSinceTime) {
MOZ_RELEASE_ASSERT(NS_IsMainThread());
if (mGathering) {
// If we're already gathering, return a rejected promise - this isn't
// going to end well.
return GatheringPromise::CreateAndReject(NS_ERROR_NOT_AVAILABLE, __func__);
}
mGathering = true;
mGatheringLog = mozilla::MakeUnique<Json::Value>(Json::objectValue);
(*mGatheringLog)[Json::StaticString{
"profileGatheringLogBegin" TIMESTAMP_JSON_SUFFIX}] =
ProfilingLog::Timestamp();
if (mGatheringTimer) {
mGatheringTimer->Cancel();
mGatheringTimer = nullptr;
}
// Start building shared library info starting from the current process.
mProfileGenerationAdditionalInformation.emplace();
// Request profiles from the other processes. This will trigger asynchronous
// calls to ProfileGatherer::GatheredOOPProfile as the profiles arrive.
//
// Do this before the call to profiler_stream_json_for_this_process() because
// that call is slow and we want to let the other processes grab their
// profiles as soon as possible.
nsTArray<ProfilerParent::SingleProcessProfilePromiseAndChildPid> profiles =
ProfilerParent::GatherProfiles();
MOZ_ASSERT(mPendingProfiles.empty());
if (!mPendingProfiles.reserve(profiles.Length())) {
ResetGathering(NS_ERROR_OUT_OF_MEMORY);
return GatheringPromise::CreateAndReject(NS_ERROR_OUT_OF_MEMORY, __func__);
}
mFailureLatchSource.emplace();
mWriter.emplace(*mFailureLatchSource);
UniquePtr<ProfilerCodeAddressService> service =
profiler_code_address_service_for_presymbolication();
// Start building up the JSON result and grab the profile from this process.
mWriter->Start();
auto rv = profiler_stream_json_for_this_process(*mWriter, aSinceTime,
/* aIsShuttingDown */ false,
service.get());
if (rv.isErr()) {
// The profiler is inactive. This either means that it was inactive even
// at the time that ProfileGatherer::Start() was called, or that it was
// stopped on a different thread since that call. Either way, we need to
// reject the promise and stop gathering.
ResetGathering(NS_ERROR_NOT_AVAILABLE);
return GatheringPromise::CreateAndReject(NS_ERROR_NOT_AVAILABLE, __func__);
}
mProfileGenerationAdditionalInformation->Append(rv.unwrap());
LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Generated parent process profile, size:"});
aEvent.append(Json::Value::UInt64{mWriter->ChunkedWriteFunc().Length()});
});
mWriter->StartArrayProperty("processes");
// If we have any process exit profiles, add them immediately.
if (Vector<nsCString> exitProfiles = profiler_move_exit_profiles();
!exitProfiles.empty()) {
for (auto& exitProfile : exitProfiles) {
if (!exitProfile.IsEmpty()) {
if (exitProfile[0] == '*') {
LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Exit non-profile with error message:"});
aEvent.append(exitProfile.Data() + 1);
});
} else if (mWriter->ChunkedWriteFunc().Length() + exitProfile.Length() <
scLengthAccumulationThreshold) {
mWriter->Splice(exitProfile);
LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{"Added exit profile with size:"});
aEvent.append(Json::Value::UInt64{exitProfile.Length()});
});
} else {
LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Discarded an exit profile that would make "
"the full profile too big, size:"});
aEvent.append(Json::Value::UInt64{exitProfile.Length()});
});
}
}
}
LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{
"Processed all exit profiles, total size so far:"});
aEvent.append(Json::Value::UInt64{mWriter->ChunkedWriteFunc().Length()});
});
} else {
// There are no pending profiles, we're already done.
LogEventLiteralString("No exit profiles.");
}
mPromiseHolder.emplace();
RefPtr<GatheringPromise> promise = mPromiseHolder->Ensure(__func__);
// Keep the array property "processes" and the root object in mWriter open
// until FinishGathering() is called. As profiles from the other processes
// come in, they will be inserted and end up in the right spot.
// FinishGathering() will close the array and the root object.
if (!profiles.IsEmpty()) {
// There *are* pending profiles, let's add handlers for their promises.
// This timeout value is used to monitor progress while gathering child
// profiles. The timer will be restarted after we receive a response with
// any progress.
constexpr uint32_t cMinChildTimeoutS = 1u; // 1 second minimum and default.
constexpr uint32_t cMaxChildTimeoutS = 60u; // 1 minute max.
uint32_t childTimeoutS = Preferences::GetUint(
"devtools.performance.recording.child.timeout_s", cMinChildTimeoutS);
if (childTimeoutS < cMinChildTimeoutS) {
childTimeoutS = cMinChildTimeoutS;
} else if (childTimeoutS > cMaxChildTimeoutS) {
childTimeoutS = cMaxChildTimeoutS;
}
const uint32_t childTimeoutMs = childTimeoutS * PR_MSEC_PER_SEC;
(void)NS_NewTimerWithFuncCallback(
getter_AddRefs(mGatheringTimer), GatheringTimerCallback, this,
childTimeoutMs, nsITimer::TYPE_ONE_SHOT_LOW_PRIORITY,
"nsProfilerGatheringTimer"_ns, GetMainThreadSerialEventTarget());
MOZ_ASSERT(mPendingProfiles.capacity() >= profiles.Length());
for (const auto& profile : profiles) {
mPendingProfiles.infallibleAppend(PendingProfile{profile.childPid});
LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{"Waiting for pending profile, pid:"});
aEvent.append(Json::Value::UInt64(profile.childPid));
});
profile.profilePromise->Then(
GetMainThreadSerialEventTarget(), __func__,
[self = RefPtr<nsProfiler>(this), childPid = profile.childPid](
IPCProfileAndAdditionalInformation&& aResult) {
PendingProfile* pendingProfile = self->GetPendingProfile(childPid);
mozilla::ipc::Shmem profileShmem = aResult.profileShmem();
LOG("GatherProfile(%u) response: %u bytes (%u were pending, %s %u)",
unsigned(childPid), unsigned(profileShmem.Size<char>()),
unsigned(self->mPendingProfiles.length()),
pendingProfile ? "including" : "excluding", unsigned(childPid));
if (profileShmem.IsReadable()) {
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Got profile from pid, with size:"});
aEvent.append(Json::Value::UInt64(childPid));
aEvent.append(Json::Value::UInt64{profileShmem.Size<char>()});
});
const nsDependentCSubstring profileString(
profileShmem.get<char>(), profileShmem.Size<char>() - 1);
if (profileString.IsEmpty() || profileString[0] != '*') {
self->GatheredOOPProfile(
childPid, profileString,
std::move(aResult.additionalInformation()));
} else {
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{
"Child non-profile from pid, with error message:"});
aEvent.append(Json::Value::UInt64(childPid));
aEvent.append(profileString.Data() + 1);
});
self->GatheredOOPProfile(childPid, ""_ns, Nothing());
}
} else {
// This can happen if the child failed to allocate
// the Shmem (or maliciously sent an invalid Shmem).
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{"Got failure from pid:"});
aEvent.append(Json::Value::UInt64(childPid));
});
self->GatheredOOPProfile(childPid, ""_ns, Nothing());
}
},
[self = RefPtr<nsProfiler>(this),
childPid = profile.childPid](ipc::ResponseRejectReason&& aReason) {
PendingProfile* pendingProfile = self->GetPendingProfile(childPid);
LOG("GatherProfile(%u) rejection: %d (%u were pending, %s %u)",
unsigned(childPid), (int)aReason,
unsigned(self->mPendingProfiles.length()),
pendingProfile ? "including" : "excluding", unsigned(childPid));
self->LogEvent([&](Json::Value& aEvent) {
aEvent.append(
Json::StaticString{"Got rejection from pid, with reason:"});
aEvent.append(Json::Value::UInt64(childPid));
aEvent.append(Json::Value::UInt{static_cast<unsigned>(aReason)});
});
self->GatheredOOPProfile(childPid, ""_ns, Nothing());
});
}
} else {
// There are no pending profiles, we're already done.
LogEventLiteralString("No pending child profiles.");
FinishGathering();
}
return promise;
}
RefPtr<nsProfiler::SymbolTablePromise> nsProfiler::GetSymbolTableMozPromise(
const nsACString& aDebugPath, const nsACString& aBreakpadID) {
MozPromiseHolder<SymbolTablePromise> promiseHolder;
RefPtr<SymbolTablePromise> promise = promiseHolder.Ensure(__func__);
if (!mSymbolTableThread) {
nsresult rv = NS_NewNamedThread("ProfSymbolTable",
getter_AddRefs(mSymbolTableThread));
if (NS_WARN_IF(NS_FAILED(rv))) {
promiseHolder.Reject(NS_ERROR_FAILURE, __func__);
return promise;
}
}
nsresult rv = mSymbolTableThread->Dispatch(NS_NewRunnableFunction(
"nsProfiler::GetSymbolTableMozPromise runnable on ProfSymbolTable thread",
[promiseHolder = std::move(promiseHolder),
debugPath = nsCString(aDebugPath),
breakpadID = nsCString(aBreakpadID)]() mutable {
AUTO_PROFILER_LABEL_DYNAMIC_NSCSTRING("profiler_get_symbol_table",
OTHER, debugPath);
SymbolTable symbolTable;
bool succeeded = profiler_get_symbol_table(
debugPath.get(), breakpadID.get(), &symbolTable);
if (succeeded) {
promiseHolder.Resolve(std::move(symbolTable), __func__);
} else {
promiseHolder.Reject(NS_ERROR_FAILURE, __func__);
}
}));
if (NS_WARN_IF(NS_FAILED(rv))) {
// Get-symbol task was not dispatched and therefore won't fulfill the
// promise, we must reject the promise now.
promiseHolder.Reject(NS_ERROR_FAILURE, __func__);
}
return promise;
}
void nsProfiler::FinishGathering() {
MOZ_RELEASE_ASSERT(NS_IsMainThread());
MOZ_RELEASE_ASSERT(mWriter.isSome());
MOZ_RELEASE_ASSERT(mPromiseHolder.isSome());
MOZ_RELEASE_ASSERT(mProfileGenerationAdditionalInformation.isSome());
// Close the "processes" array property.
mWriter->EndArray();
if (mGatheringLog) {
LogEvent([&](Json::Value& aEvent) {
aEvent.append(Json::StaticString{"Finished gathering, total size:"});
aEvent.append(Json::Value::UInt64{mWriter->ChunkedWriteFunc().Length()});
});
(*mGatheringLog)[Json::StaticString{
"profileGatheringLogEnd" TIMESTAMP_JSON_SUFFIX}] =
ProfilingLog::Timestamp();
mWriter->StartObjectProperty("profileGatheringLog");
{
nsAutoCString pid;
pid.AppendInt(int64_t(profiler_current_process_id().ToNumber()));
Json::String logString = ToCompactString(*mGatheringLog);
mGatheringLog = nullptr;
mWriter->SplicedJSONProperty(pid, logString);
}
mWriter->EndObject();
}
// Close the root object of the generated JSON.
mWriter->End();
if (const char* failure = mWriter->GetFailure(); failure) {
#ifndef ANDROID
fprintf(stderr, "JSON generation failure: %s", failure);
#else
__android_log_print(ANDROID_LOG_INFO, "GeckoProfiler",
"JSON generation failure: %s", failure);
#endif
NS_WARNING("Error during JSON generation, probably OOM.");
ResetGathering(NS_ERROR_OUT_OF_MEMORY);
return;
}
// And try to resolve the promise with the profile JSON.
const size_t len = mWriter->ChunkedWriteFunc().Length();
if (len >= scLengthMax) {
NS_WARNING("Profile JSON is too big to fit in a string.");
ResetGathering(NS_ERROR_FILE_TOO_BIG);
return;
}
nsCString result;
if (!result.SetLength(len, fallible)) {
NS_WARNING("Cannot allocate a string for the Profile JSON.");
ResetGathering(NS_ERROR_OUT_OF_MEMORY);
return;
}
MOZ_ASSERT(*(result.Data() + len) == '\0',
"We expected a null at the end of the string buffer, to be "
"rewritten by CopyDataIntoLazilyAllocatedBuffer");
char* const resultBeginWriting = result.BeginWriting();
if (!resultBeginWriting) {
NS_WARNING("Cannot access the string to write the Profile JSON.");
ResetGathering(NS_ERROR_CACHE_WRITE_ACCESS_DENIED);
return;
}
// Here, we have enough space reserved in `result`, starting at
// `resultBeginWriting`, copy the JSON profile there.
if (!mWriter->ChunkedWriteFunc().CopyDataIntoLazilyAllocatedBuffer(
[&](size_t aBufferLen) -> char* {
MOZ_RELEASE_ASSERT(aBufferLen == len + 1);
return resultBeginWriting;
})) {
NS_WARNING("Could not copy profile JSON, probably OOM.");
ResetGathering(NS_ERROR_FILE_TOO_BIG);
return;
}
MOZ_ASSERT(*(result.Data() + len) == '\0',
"We still expected a null at the end of the string buffer");
mProfileGenerationAdditionalInformation->FinishGathering();
mPromiseHolder->Resolve(
ProfileAndAdditionalInformation{
std::move(result),
std::move(*mProfileGenerationAdditionalInformation)},
__func__);
ResetGathering(NS_ERROR_UNEXPECTED);
}
void nsProfiler::ResetGathering(nsresult aPromiseRejectionIfPending) {
// If we have an unfulfilled Promise in flight, we should reject it before
// destroying the promise holder.
if (mPromiseHolder.isSome()) {
mPromiseHolder->RejectIfExists(aPromiseRejectionIfPending, __func__);
mPromiseHolder.reset();
}
mPendingProfiles.clearAndFree();
mGathering = false;
mGatheringLog = nullptr;
if (mGatheringTimer) {
mGatheringTimer->Cancel();
mGatheringTimer = nullptr;
}
mWriter.reset();
mFailureLatchSource.reset();
mProfileGenerationAdditionalInformation.reset();
}
|