Changeset 31860 in vbox for trunk/src/VBox/Runtime/r3/solaris
- Timestamp:
- Aug 23, 2010 1:56:17 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65068
- Location:
- trunk/src/VBox/Runtime/r3/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp
r31822 r31860 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #define LOG_GROUP LOG_GROUP_CORE_DUMPER 31 #include <VBox/log.h> 32 #include <iprt/coredumper.h> 30 33 #include <iprt/types.h> 31 34 #include <iprt/file.h> … … 34 37 #include <iprt/path.h> 35 38 #include <iprt/string.h> 36 #include <iprt/stream.h>37 #include <iprt/initterm.h>38 39 #include <iprt/thread.h> 39 40 #include <iprt/param.h> 40 41 #include <iprt/asm.h> 41 #include " tstRTCoreDump.h"42 #include "coredumper-solaris.h" 42 43 43 44 #ifdef RT_OS_SOLARIS 45 # include <syslog.h> 44 46 # include <signal.h> 45 47 # include <unistd.h> … … 53 55 54 56 /******************************************************************************* 57 * Globals * 58 *******************************************************************************/ 59 volatile static uint64_t g_CoreDumpThread = NIL_RTTHREAD; 60 volatile static bool g_fCoreDumpSignalSetup = false; 61 volatile static bool g_fCoreDumpDeliberate = false; 62 volatile static bool g_fCoreDumpInProgress = false; 63 volatile static uint32_t g_fCoreDumpFlags = 0; 64 static char g_szCoreDumpDir[PATH_MAX] = { 0 }; 65 static char g_szCoreDumpFile[PATH_MAX] = { 0 }; 66 67 68 /******************************************************************************* 55 69 * Defined Constants And Macros * 56 70 *******************************************************************************/ 57 #define CORELOG(a) RTPrintf a 58 #define CORELOGREL(a) RTPrintf a 59 60 /** 61 * VBOXSOLCORETYPE: Whether this is an old or new style core. 62 */ 63 typedef enum VBOXSOLCORETYPE 64 { 65 enmOldEra = 0x01d, /* old */ 66 enmNewEra = 0x5c151 /* sci-fi */ 67 } VBOXSOLCORETYPE; 68 69 static unsigned volatile g_cErrors = 0; 70 71 volatile bool g_fCoreDumpInProgress = false; 71 #define CORELOG_NAME "CoreDumper: " 72 #define CORELOG(a) Log(a) 73 #define CORELOGRELSYS(a) \ 74 do { \ 75 LogRel(a); \ 76 rtCoreDumperSysLogWrapper a; \ 77 } while (0) 78 79 80 /** 81 * Wrapper function to write IPRT format style string to the syslog. 82 * 83 * @param pszFormat Format string 84 */ 85 static void rtCoreDumperSysLogWrapper(const char *pszFormat, ...) 86 { 87 va_list va; 88 va_start(va, pszFormat); 89 char szBuf[1024]; 90 RTStrPrintfV(szBuf, sizeof(szBuf), pszFormat, va); 91 va_end(va); 92 syslog(LOG_ERR, "%s", szBuf); 93 } 72 94 73 95 … … 143 165 * @return VINF_SUCCESS, if all the given bytes was read in, otherwise VERR_READ_ERROR. 144 166 */ 145 static ssize_t ReadProcAddrSpace(PVBOXPROCESS pVBoxProc, RTFOFF off, void *pvBuf, size_t cbToRead)167 static ssize_t ProcReadAddrSpace(PVBOXPROCESS pVBoxProc, RTFOFF off, void *pvBuf, size_t cbToRead) 146 168 { 147 169 while (1) … … 162 184 * @return true if the architecture matches the current one. 163 185 */ 164 inline bool IsProcArchNative(PVBOXPROCESS pVBoxProc)186 static inline bool IsProcessArchNative(PVBOXPROCESS pVBoxProc) 165 187 { 166 188 return pVBoxProc->ProcInfo.pr_dmodel == PR_MODEL_NATIVE; … … 175 197 * @return The size of the file in bytes. 176 198 */ 177 s ize_t GetFileSize(const char *pszPath)199 static size_t GetFileSize(const char *pszPath) 178 200 { 179 201 size_t cb = 0; … … 186 208 } 187 209 else 188 CORELOGREL (("GetFileSize failed to open %s rc=%Rrc\n", pszPath, rc));210 CORELOGRELSYS((CORELOG_NAME "GetFileSize failed to open %s rc=%Rrc\n", pszPath, rc)); 189 211 return cb; 190 212 } … … 200 222 * @return VBox status code. 201 223 */ 202 int AllocMemoryArea(PVBOXCORE pVBoxCore)224 static int AllocMemoryArea(PVBOXCORE pVBoxCore) 203 225 { 204 226 AssertReturn(pVBoxCore->pvCore == NULL, VERR_ALREADY_EXISTS); … … 249 271 if (pv) 250 272 { 251 CORELOG(( "AllocMemoryArea: memory area of %u bytes allocated.\n", cb));273 CORELOG((CORELOG_NAME "AllocMemoryArea: memory area of %u bytes allocated.\n", cb)); 252 274 pVBoxCore->pvCore = pv; 253 275 pVBoxCore->pvFree = pv; … … 257 279 else 258 280 { 259 CORELOGREL (("AllocMemoryArea: failed cb=%u\n", cb));281 CORELOGRELSYS((CORELOG_NAME "AllocMemoryArea: failed cb=%u\n", cb)); 260 282 return VERR_NO_MEMORY; 261 283 } … … 268 290 * @param pVBoxCore Pointer to the core object. 269 291 */ 270 void FreeMemoryArea(PVBOXCORE pVBoxCore)292 static void FreeMemoryArea(PVBOXCORE pVBoxCore) 271 293 { 272 294 AssertReturnVoid(pVBoxCore); … … 275 297 276 298 munmap(pVBoxCore->pvCore, pVBoxCore->cbCore); 277 CORELOG(( "FreeMemoryArea: memory area of %u bytes freed.\n", pVBoxCore->cbCore));299 CORELOG((CORELOG_NAME "FreeMemoryArea: memory area of %u bytes freed.\n", pVBoxCore->cbCore)); 278 300 279 301 pVBoxCore->pvCore = NULL; … … 291 313 * @return Pointer to allocated memory, or NULL on failure. 292 314 */ 293 void *GetMemoryChunk(PVBOXCORE pVBoxCore, size_t cb)315 static void *GetMemoryChunk(PVBOXCORE pVBoxCore, size_t cb) 294 316 { 295 317 AssertReturn(pVBoxCore, NULL); … … 319 341 * @return VBox status code. 320 342 */ 321 int ProcReadFileInto(PVBOXCORE pVBoxCore, const char *pszProcFileName, void **ppv, size_t *pcb)343 static int ProcReadFileInto(PVBOXCORE pVBoxCore, const char *pszProcFileName, void **ppv, size_t *pcb) 322 344 { 323 345 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 346 368 } 347 369 else 348 CORELOGREL (("ProcReadFileInto: failed to open %s. rc=%Rrc\n", szPath, rc));370 CORELOGRELSYS((CORELOG_NAME "ProcReadFileInto: failed to open %s. rc=%Rrc\n", szPath, rc)); 349 371 return rc; 350 372 } … … 358 380 * @return VBox status code. 359 381 */ 360 int ReadProcInfo(PVBOXCORE pVBoxCore)382 static int ProcReadInfo(PVBOXCORE pVBoxCore) 361 383 { 362 384 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 386 408 * @return VBox status code. 387 409 */ 388 int ReadProcStatus(PVBOXCORE pVBoxCore)410 static int ProcReadStatus(PVBOXCORE pVBoxCore) 389 411 { 390 412 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 417 439 * @return VBox status code. 418 440 */ 419 int ReadProcCred(PVBOXCORE pVBoxCore)441 static int ProcReadCred(PVBOXCORE pVBoxCore) 420 442 { 421 443 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 434 456 * @return VBox status code. 435 457 */ 436 int ReadProcPriv(PVBOXCORE pVBoxCore)458 static int ProcReadPriv(PVBOXCORE pVBoxCore) 437 459 { 438 460 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 445 467 if (!pVBoxProc->pcPrivImpl) 446 468 { 447 CORELOGREL (("ReadProcPriv: getprivimplinfo returned NULL.\n"));469 CORELOGRELSYS((CORELOG_NAME "ProcReadPriv: getprivimplinfo returned NULL.\n")); 448 470 return VERR_INVALID_STATE; 449 471 } … … 460 482 * @return VBox status code. 461 483 */ 462 int ReadProcLdt(PVBOXCORE pVBoxCore)484 static int ProcReadLdt(PVBOXCORE pVBoxCore) 463 485 { 464 486 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 477 499 * @return VBox status code. 478 500 */ 479 int ReadProcAuxVecs(PVBOXCORE pVBoxCore)501 static int ProcReadAuxVecs(PVBOXCORE pVBoxCore) 480 502 { 481 503 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 488 510 if (RT_FAILURE(rc)) 489 511 { 490 CORELOGREL (("ReadProcAuxVecs: RTFileOpen %s failed rc=%Rrc\n", szPath, rc));512 CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: RTFileOpen %s failed rc=%Rrc\n", szPath, rc)); 491 513 return rc; 492 514 } … … 504 526 /* Terminate list of vectors */ 505 527 pVBoxProc->cAuxVecs = cbAuxFile / sizeof(auxv_t); 506 CORELOG(( "ReadProcAuxVecs: cbAuxFile=%u auxv_t size %d cAuxVecs=%u\n", cbAuxFile, sizeof(auxv_t), pVBoxProc->cAuxVecs));528 CORELOG((CORELOG_NAME "ProcReadAuxVecs: cbAuxFile=%u auxv_t size %d cAuxVecs=%u\n", cbAuxFile, sizeof(auxv_t), pVBoxProc->cAuxVecs)); 507 529 if (pVBoxProc->cAuxVecs > 0) 508 530 { … … 514 536 else 515 537 { 516 CORELOGREL (("ReadProcAuxVecs: Invalid vector count %u\n", pVBoxProc->cAuxVecs));538 CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: Invalid vector count %u\n", pVBoxProc->cAuxVecs)); 517 539 rc = VERR_READ_ERROR; 518 540 } 519 541 } 520 542 else 521 CORELOGREL (("ReadProcAuxVecs: ReadFileNoIntr failed. rc=%Rrc cbAuxFile=%u\n", rc, cbAuxFile));543 CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: ReadFileNoIntr failed. rc=%Rrc cbAuxFile=%u\n", rc, cbAuxFile)); 522 544 523 545 pVBoxProc->pAuxVecs = NULL; … … 526 548 else 527 549 { 528 CORELOGREL (("ReadProcAuxVecs: no memory for %u bytes\n", cbAuxFile + sizeof(auxv_t)));550 CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: no memory for %u bytes\n", cbAuxFile + sizeof(auxv_t))); 529 551 rc = VERR_NO_MEMORY; 530 552 } 531 553 } 532 554 else 533 CORELOGREL (("ReadProcAuxVecs: aux file too small %u, expecting %u or more\n", cbAuxFile, sizeof(auxv_t)));555 CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: aux file too small %u, expecting %u or more\n", cbAuxFile, sizeof(auxv_t))); 534 556 535 557 RTFileClose(hFile); … … 541 563 * Find an element in the process' auxiliary vector. 542 564 */ 543 long GetAuxVal(PVBOXPROCESS pVBoxProc, int Type)565 static long GetAuxVal(PVBOXPROCESS pVBoxProc, int Type) 544 566 { 545 567 AssertReturn(pVBoxProc, -1); … … 565 587 * @return VBox status code. 566 588 */ 567 int ReadProcMappings(PVBOXCORE pVBoxCore)589 static int ProcReadMappings(PVBOXCORE pVBoxCore) 568 590 { 569 591 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 625 647 { 626 648 size_t cb = RT_MIN(sizeof(achBuf), pCur->pMap.pr_size - k); 627 int rc2 = ReadProcAddrSpace(pVBoxProc, pCur->pMap.pr_vaddr + k, &achBuf, cb);649 int rc2 = ProcReadAddrSpace(pVBoxProc, pCur->pMap.pr_vaddr + k, &achBuf, cb); 628 650 if (RT_FAILURE(rc2)) 629 651 { 630 CORELOGREL (("ReadProcMappings: skipping mapping. vaddr=%#x rc=%Rrc\n", pCur->pMap.pr_vaddr, rc2));652 CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: skipping mapping. vaddr=%#x rc=%Rrc\n", pCur->pMap.pr_vaddr, rc2)); 631 653 632 654 /* … … 652 674 RTFileClose(pVBoxProc->hAs); 653 675 pVBoxProc->hAs = NIL_RTFILE; 654 CORELOG(( "ReadProcMappings: successfully read in %u mappings\n", pVBoxProc->cMappings));676 CORELOG((CORELOG_NAME "ProcReadMappings: successfully read in %u mappings\n", pVBoxProc->cMappings)); 655 677 return VINF_SUCCESS; 656 678 } 657 679 else 658 680 { 659 CORELOGREL (("ReadProcMappings: GetMemoryChunk failed %u\n", pVBoxProc->cMappings * sizeof(VBOXSOLMAPINFO)));681 CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: GetMemoryChunk failed %u\n", pVBoxProc->cMappings * sizeof(VBOXSOLMAPINFO))); 660 682 rc = VERR_NO_MEMORY; 661 683 } … … 663 685 else 664 686 { 665 CORELOGREL (("ReadProcMappings: Invalid mapping count %u\n", pVBoxProc->cMappings));687 CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: Invalid mapping count %u\n", pVBoxProc->cMappings)); 666 688 rc = VERR_READ_ERROR; 667 689 } 668 690 } 669 691 else 670 CORELOGREL (("ReadProcMappings: FileReadNoIntr failed. rc=%Rrc cbMapFile=%u\n", rc, cbMapFile));692 CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: FileReadNoIntr failed. rc=%Rrc cbMapFile=%u\n", rc, cbMapFile)); 671 693 } 672 694 else 673 695 { 674 CORELOGREL (("ReadProcMappings: GetMemoryChunk failed. cbMapFile=%u\n", cbMapFile));696 CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: GetMemoryChunk failed. cbMapFile=%u\n", cbMapFile)); 675 697 rc = VERR_NO_MEMORY; 676 698 } … … 681 703 } 682 704 else 683 CORELOGREL (("ReadProcMappings: failed to open %s. rc=%Rrc\n", szPath, rc));705 CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: failed to open %s. rc=%Rrc\n", szPath, rc)); 684 706 685 707 RTFileClose(hFile); … … 696 718 * @return VBox status code. 697 719 */ 698 int ReadProcThreads(PVBOXCORE pVBoxCore)720 static int ProcReadThreads(PVBOXCORE pVBoxCore) 699 721 { 700 722 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 728 750 uint64_t cInfo = pInfoHdr->pr_nent; 729 751 730 CORELOG(("ReadProcThreads: read info(%u) status(%u), threads:cInfo=%u cStatus=%u\n", cbInfoHdrAndData, cbStatusHdrAndData, cInfo, cStatus)); 752 CORELOG((CORELOG_NAME "ProcReadThreads: read info(%u) status(%u), threads:cInfo=%u cStatus=%u\n", cbInfoHdrAndData, 753 cbStatusHdrAndData, cInfo, cStatus)); 731 754 732 755 /* … … 747 770 || pStatus->pr_lwpid != pInfo->pr_lwpid) 748 771 { 749 CORELOGREL(("ReadProcThreads: cStatus = %u pStatuslwpid=%d infolwpid=%d\n", cStatus, pStatus->pr_lwpid, pInfo->pr_lwpid)); 772 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: cStatus = %u pStatuslwpid=%d infolwpid=%d\n", cStatus, 773 pStatus->pr_lwpid, pInfo->pr_lwpid)); 750 774 rc = VERR_INVALID_STATE; 751 775 break; … … 796 820 pStatus->pr_ustack = (uintptr_t)&pVBoxProc->pCurThreadCtx->uc_stack; 797 821 798 CORELOG(( "ReadProcThreads: patched dumper thread context with pre-dump time context.\n"));822 CORELOG((CORELOG_NAME "ProcReadThreads: patched dumper thread context with pre-dump time context.\n")); 799 823 } 800 824 … … 804 828 else 805 829 { 806 CORELOGREL (("ReadProcThreads: missing status for lwp %d\n", pInfo->pr_lwpid));830 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: missing status for lwp %d\n", pInfo->pr_lwpid)); 807 831 pCur->pStatus = NULL; 808 832 } … … 816 840 pPrev->pNext = NULL; 817 841 818 CORELOG(( "ReadProcThreads: successfully read %u threads.\n", cInfo));842 CORELOG((CORELOG_NAME "ProcReadThreads: successfully read %u threads.\n", cInfo)); 819 843 pVBoxProc->cThreads = cInfo; 820 844 return VINF_SUCCESS; … … 822 846 else 823 847 { 824 CORELOGREL (("ReadProcThreads: GetMemoryChunk failed for %u bytes\n", cbThreadInfo));848 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: GetMemoryChunk failed for %u bytes\n", cbThreadInfo)); 825 849 rc = VERR_NO_MEMORY; 826 850 } 827 851 } 828 852 else 829 CORELOGREL (("ReadProcThreads: Invalid state information for threads.\n", rc));853 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: Invalid state information for threads.\n", rc)); 830 854 } 831 855 else 832 856 { 833 CORELOGREL (("ReadProcThreads: huh!? cbStatusHdrAndData=%u prheader_t=%u entsize=%u\n", cbStatusHdrAndData,857 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: huh!? cbStatusHdrAndData=%u prheader_t=%u entsize=%u\n", cbStatusHdrAndData, 834 858 sizeof(prheader_t), pStatusHdr->pr_entsize)); 835 CORELOGREL (("ReadProcThreads: huh!? cbInfoHdrAndData=%u entsize=%u\n", cbInfoHdrAndData, pStatusHdr->pr_entsize));859 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: huh!? cbInfoHdrAndData=%u entsize=%u\n", cbInfoHdrAndData, pStatusHdr->pr_entsize)); 836 860 rc = VERR_INVALID_STATE; 837 861 } 838 862 } 839 863 else 840 CORELOGREL (("ReadProcThreads: ReadFileNoIntr failed for \"lpsinfo\" rc=%Rrc\n", rc));864 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: ReadFileNoIntr failed for \"lpsinfo\" rc=%Rrc\n", rc)); 841 865 } 842 866 else 843 CORELOGREL (("ReadProcThreads: ReadFileNoIntr failed for \"lstatus\" rc=%Rrc\n", rc));867 CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: ReadFileNoIntr failed for \"lstatus\" rc=%Rrc\n", rc)); 844 868 return rc; 845 869 } … … 854 878 * @return VBox status code. 855 879 */ 856 int ReadProcMiscInfo(PVBOXCORE pVBoxCore)880 static int ProcReadMiscInfo(PVBOXCORE pVBoxCore) 857 881 { 858 882 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 867 891 if (rc == -1) 868 892 { 869 CORELOGREL (("ReadProcMiscInfo: sysinfo failed. rc=%d errno=%d\n", rc, errno));893 CORELOGRELSYS((CORELOG_NAME "ProcReadMiscInfo: sysinfo failed. rc=%d errno=%d\n", rc, errno)); 870 894 return VERR_GENERAL_FAILURE; 871 895 } … … 875 899 if (rc == -1) 876 900 { 877 CORELOGREL (("ReadProcMiscInfo: uname failed. rc=%d errno=%d\n", rc, errno));901 CORELOGRELSYS((CORELOG_NAME "ProcReadMiscInfo: uname failed. rc=%d errno=%d\n", rc, errno)); 878 902 return VERR_GENERAL_FAILURE; 879 903 } … … 882 906 if (rc < 0) 883 907 { 884 CORELOGREL (("ReadProcMiscInfo: getzonenamebyid failed. rc=%d errno=%d zoneid=%d\n", rc, errno, pVBoxProc->ProcInfo.pr_zoneid));908 CORELOGRELSYS((CORELOG_NAME "ProcReadMiscInfo: getzonenamebyid failed. rc=%d errno=%d zoneid=%d\n", rc, errno, pVBoxProc->ProcInfo.pr_zoneid)); 885 909 return VERR_GENERAL_FAILURE; 886 910 } … … 902 926 * @param pInfo Pointer to the old prpsinfo_t structure to update. 903 927 */ 904 void GetOldProcessInfo(PVBOXCORE pVBoxCore, prpsinfo_t *pInfo)928 static void GetOldProcessInfo(PVBOXCORE pVBoxCore, prpsinfo_t *pInfo) 905 929 { 906 930 AssertReturnVoid(pVBoxCore); … … 961 985 * 962 986 */ 963 void GetOldProcessStatus(PVBOXCORE pVBoxCore, lwpsinfo_t *pInfo, lwpstatus_t *pStatus, prstatus_t *pDst)987 static void GetOldProcessStatus(PVBOXCORE pVBoxCore, lwpsinfo_t *pInfo, lwpstatus_t *pStatus, prstatus_t *pDst) 964 988 { 965 989 AssertReturnVoid(pVBoxCore); … … 1040 1064 1041 1065 /** 1042 * Count the number of sections which will be dumped into the core file.1043 *1044 * @param pVBoxCore Pointer to the core object.1045 *1046 * @return Number of sections for the core file.1047 */1048 uint32_t CountSections(PVBOXCORE pVBoxCore)1049 {1050 /* @todo sections */1051 NOREF(pVBoxCore);1052 return 0;1053 }1054 1055 1056 /**1057 1066 * Resume all threads of this process. 1058 1067 * … … 1061 1070 * @return VBox error code. 1062 1071 */ 1063 int ResumeAllThreads(PVBOXPROCESS pVBoxProc)1072 static int ResumeAllThreads(PVBOXPROCESS pVBoxProc) 1064 1073 { 1065 1074 AssertReturn(pVBoxProc, VERR_INVALID_POINTER); … … 1094 1103 } 1095 1104 1096 CORELOG(( "ResumeAllThreads: resumed %d threads\n", cRunningThreads));1105 CORELOG((CORELOG_NAME "ResumeAllThreads: resumed %d threads\n", cRunningThreads)); 1097 1106 RTDirClose(pDir); 1098 1107 } 1099 1108 else 1100 1109 { 1101 CORELOGREL (("ResumeAllThreads: Failed to open %s\n", szPath));1110 CORELOGRELSYS((CORELOG_NAME "ResumeAllThreads: Failed to open %s\n", szPath)); 1102 1111 rc = VERR_READ_ERROR; 1103 1112 } … … 1115 1124 * @return VBox error code. 1116 1125 */ 1117 int SuspendAllThreads(PVBOXPROCESS pVBoxProc)1126 static int SuspendAllThreads(PVBOXPROCESS pVBoxProc) 1118 1127 { 1119 1128 char szCurThread[128]; … … 1161 1170 else 1162 1171 { 1163 CORELOGREL (("SuspendAllThreads: Failed to open %s cTries=%d\n", szPath, cTries));1172 CORELOGRELSYS((CORELOG_NAME "SuspendAllThreads: Failed to open %s cTries=%d\n", szPath, cTries)); 1164 1173 rc = VERR_READ_ERROR; 1165 1174 break; … … 1168 1177 1169 1178 if (RT_SUCCESS(rc)) 1170 CORELOG(( "Stopped %u threads successfully with %u tries\n", cThreads, cTries));1179 CORELOG((CORELOG_NAME "Stopped %u threads successfully with %u tries\n", cThreads, cTries)); 1171 1180 1172 1181 return rc; … … 1181 1190 * @return Size of data actually used for NOTE header and section. 1182 1191 */ 1183 inline size_t ElfNoteHeaderSize(size_t cb)1192 static inline size_t ElfNoteHeaderSize(size_t cb) 1184 1193 { 1185 1194 return sizeof(ELFNOTEHDR) + RT_ALIGN_Z(cb, 4); … … 1197 1206 * @return VBox status code. 1198 1207 */ 1199 int ElfWriteNoteHeader(PVBOXCORE pVBoxCore, uint_t Type, const void *pcv, size_t cb)1208 static int ElfWriteNoteHeader(PVBOXCORE pVBoxCore, uint_t Type, const void *pcv, size_t cb) 1200 1209 { 1201 1210 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 1225 1234 1226 1235 if (RT_FAILURE(rc)) 1227 CORELOGREL (("ElfWriteNote: pfnWriter failed. Type=%d rc=%Rrc\n", Type, rc));1236 CORELOGRELSYS((CORELOG_NAME "ElfWriteNote: pfnWriter failed. Type=%d rc=%Rrc\n", Type, rc)); 1228 1237 #else 1229 1238 #error Port Me! … … 1242 1251 * @return Size of NOTE section. 1243 1252 */ 1244 s ize_t ElfNoteSectionSize(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType)1253 static size_t ElfNoteSectionSize(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType) 1245 1254 { 1246 1255 PVBOXPROCESS pVBoxProc = &pVBoxCore->VBoxProc; … … 1303 1312 default: 1304 1313 { 1305 CORELOGREL (("ElfNoteSectionSize: Unknown segment era %d\n", enmType));1314 CORELOGRELSYS((CORELOG_NAME "ElfNoteSectionSize: Unknown segment era %d\n", enmType)); 1306 1315 break; 1307 1316 } … … 1321 1330 * @return VBox status code. 1322 1331 */ 1323 int ElfWriteNoteSection(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType)1332 static int ElfWriteNoteSection(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType) 1324 1333 { 1325 1334 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 1329 1338 1330 1339 #ifdef RT_OS_SOLARIS 1331 1332 1340 typedef int (*PFNELFWRITENOTEHDR)(PVBOXCORE pVBoxCore, uint_t, const void *pcv, size_t cb); 1333 1341 typedef struct ELFWRITENOTE … … 1355 1363 if (RT_FAILURE(rc)) 1356 1364 { 1357 CORELOGREL (("ElfWriteNoteSection: ElfWriteNoteHeader failed for %s. rc=%Rrc\n", aElfNotes[i].pszType, rc));1365 CORELOGRELSYS((CORELOG_NAME "ElfWriteNoteSection: ElfWriteNoteHeader failed for %s. rc=%Rrc\n", aElfNotes[i].pszType, rc)); 1358 1366 break; 1359 1367 } … … 1378 1386 if (RT_FAILURE(rc)) 1379 1387 { 1380 CORELOGREL (("ElfWriteSegment: ElfWriteNote failed for NT_PRFPREF. rc=%Rrc\n", rc));1388 CORELOGRELSYS((CORELOG_NAME "ElfWriteSegment: ElfWriteNote failed for NT_PRFPREF. rc=%Rrc\n", rc)); 1381 1389 break; 1382 1390 } … … 1384 1392 else 1385 1393 { 1386 CORELOGREL (("ElfWriteSegment: ElfWriteNote failed for NT_PRSTATUS. rc=%Rrc\n", rc));1394 CORELOGRELSYS((CORELOG_NAME "ElfWriteSegment: ElfWriteNote failed for NT_PRSTATUS. rc=%Rrc\n", rc)); 1387 1395 break; 1388 1396 } … … 1412 1420 if (RT_FAILURE(rc)) 1413 1421 { 1414 CORELOGREL (("ElfWriteNoteSection: ElfWriteNoteHeader failed for %s. rc=%Rrc\n", aElfNotes[i].pszType, rc));1422 CORELOGRELSYS((CORELOG_NAME "ElfWriteNoteSection: ElfWriteNoteHeader failed for %s. rc=%Rrc\n", aElfNotes[i].pszType, rc)); 1415 1423 break; 1416 1424 } … … 1427 1435 if (RT_FAILURE(rc)) 1428 1436 { 1429 CORELOGREL (("ElfWriteNoteSection: ElfWriteNoteHeader for NT_LWPSINFO failed. rc=%Rrc\n", rc));1437 CORELOGRELSYS((CORELOG_NAME "ElfWriteNoteSection: ElfWriteNoteHeader for NT_LWPSINFO failed. rc=%Rrc\n", rc)); 1430 1438 break; 1431 1439 } … … 1436 1444 if (RT_FAILURE(rc)) 1437 1445 { 1438 CORELOGREL (("ElfWriteNoteSection: ElfWriteNoteHeader for NT_LWPSTATUS failed. rc=%Rrc\n", rc));1446 CORELOGRELSYS((CORELOG_NAME "ElfWriteNoteSection: ElfWriteNoteHeader for NT_LWPSTATUS failed. rc=%Rrc\n", rc)); 1439 1447 break; 1440 1448 } … … 1446 1454 default: 1447 1455 { 1448 CORELOGREL (("ElfWriteNoteSection: Invalid type %d\n", enmType));1456 CORELOGRELSYS((CORELOG_NAME "ElfWriteNoteSection: Invalid type %d\n", enmType)); 1449 1457 rc = VERR_GENERAL_FAILURE; 1450 1458 break; … … 1465 1473 * @return VBox status code. 1466 1474 */ 1467 int ElfWriteMappings(PVBOXCORE pVBoxCore)1475 static int ElfWriteMappings(PVBOXCORE pVBoxCore) 1468 1476 { 1469 1477 PVBOXPROCESS pVBoxProc = &pVBoxCore->VBoxProc; … … 1480 1488 { 1481 1489 size_t cb = RT_MIN(sizeof(achBuf), pMapInfo->pMap.pr_size - k); 1482 int rc2 = ReadProcAddrSpace(pVBoxProc, pMapInfo->pMap.pr_vaddr + k, &achBuf, cb);1490 int rc2 = ProcReadAddrSpace(pVBoxProc, pMapInfo->pMap.pr_vaddr + k, &achBuf, cb); 1483 1491 if (RT_FAILURE(rc2)) 1484 1492 { 1485 CORELOGREL (("ElfWriteMappings: Failed to read mapping, can't recover. Bye. rc=%Rrc\n", rc));1493 CORELOGRELSYS((CORELOG_NAME "ElfWriteMappings: Failed to read mapping, can't recover. Bye. rc=%Rrc\n", rc)); 1486 1494 return VERR_INVALID_STATE; 1487 1495 } … … 1490 1498 if (RT_FAILURE(rc)) 1491 1499 { 1492 CORELOGREL (("ElfWriteMappings: pfnWriter failed. rc=%Rrc\n", rc));1500 CORELOGRELSYS((CORELOG_NAME "ElfWriteMappings: pfnWriter failed. rc=%Rrc\n", rc)); 1493 1501 return rc; 1494 1502 } … … 1502 1510 memcpy(achBuf, &pMapInfo->fError, sizeof(pMapInfo->fError)); 1503 1511 if (sizeof(achBuf) != pMapInfo->pMap.pr_size) 1504 CORELOGREL (("ElfWriteMappings: Huh!? something is wrong!\n"));1512 CORELOGRELSYS((CORELOG_NAME "ElfWriteMappings: Huh!? something is wrong!\n")); 1505 1513 rc = pVBoxCore->pfnWriter(pVBoxCore->hCoreFile, &achBuf, sizeof(achBuf)); 1506 1514 if (RT_FAILURE(rc)) 1507 1515 { 1508 CORELOGREL (("ElfWriteMappings: pfnWriter(2) failed. rc=%Rrc\n", rc));1516 CORELOGRELSYS((CORELOG_NAME "ElfWriteMappings: pfnWriter(2) failed. rc=%Rrc\n", rc)); 1509 1517 return rc; 1510 1518 } … … 1517 1525 } 1518 1526 1527 1519 1528 /** 1520 1529 * Write program headers for all mappings into the core file. … … 1524 1533 * @return VBox status code. 1525 1534 */ 1526 int ElfWriteMappingHeaders(PVBOXCORE pVBoxCore)1535 static int ElfWriteMappingHeaders(PVBOXCORE pVBoxCore) 1527 1536 { 1528 1537 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 1556 1565 if (RT_FAILURE(rc)) 1557 1566 { 1558 CORELOGREL (("ElfWriteMappingHeaders: pfnWriter failed. rc=%Rrc\n", rc));1567 CORELOGRELSYS((CORELOG_NAME "ElfWriteMappingHeaders: pfnWriter failed. rc=%Rrc\n", rc)); 1559 1568 return rc; 1560 1569 } … … 1577 1586 * @return VBox status. 1578 1587 */ 1579 intWriteCore(PVBOXCORE pVBoxCore, PFNCOREWRITER pfnWriter)1588 static int rtCoreDumperWriteCore(PVBOXCORE pVBoxCore, PFNCOREWRITER pfnWriter) 1580 1589 { 1581 1590 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 1597 1606 if (RT_FAILURE(rc)) 1598 1607 { 1599 CORELOGREL (("WriteCore: Failed to open address space, %s. rc=%Rrc\n", szPath, rc));1608 CORELOGRELSYS((CORELOG_NAME "WriteCore: Failed to open address space, %s. rc=%Rrc\n", szPath, rc)); 1600 1609 goto WriteCoreDone; 1601 1610 } … … 1608 1617 if (RT_FAILURE(rc)) 1609 1618 { 1610 CORELOGREL (("WriteCore: failed to open %s. rc=%Rrc\n", szPath, rc));1619 CORELOGRELSYS((CORELOG_NAME "WriteCore: failed to open %s. rc=%Rrc\n", szPath, rc)); 1611 1620 goto WriteCoreDone; 1612 1621 } … … 1614 1623 pVBoxCore->offWrite = 0; 1615 1624 uint32_t cProgHdrs = pVBoxProc->cMappings + 2; /* two PT_NOTE program headers (old, new style) */ 1616 uint32_t cSecHdrs = CountSections(pVBoxCore);1617 1625 1618 1626 /* … … 1646 1654 if (RT_FAILURE(rc)) 1647 1655 { 1648 CORELOGREL (("WriteCore: pfnWriter failed writing ELF header. rc=%Rrc\n", rc));1656 CORELOGRELSYS((CORELOG_NAME "WriteCore: pfnWriter failed writing ELF header. rc=%Rrc\n", rc)); 1649 1657 goto WriteCoreDone; 1650 1658 } … … 1667 1675 if (RT_FAILURE(rc)) 1668 1676 { 1669 CORELOGREL (("WriteCore: pfnWriter failed writing old-style ELF program Header. rc=%Rrc\n", rc));1677 CORELOGRELSYS((CORELOG_NAME "WriteCore: pfnWriter failed writing old-style ELF program Header. rc=%Rrc\n", rc)); 1670 1678 goto WriteCoreDone; 1671 1679 } … … 1680 1688 if (RT_FAILURE(rc)) 1681 1689 { 1682 CORELOGREL (("WriteCore: pfnWriter failed writing new-style ELF program header. rc=%Rrc\n", rc));1690 CORELOGRELSYS((CORELOG_NAME "WriteCore: pfnWriter failed writing new-style ELF program header. rc=%Rrc\n", rc)); 1683 1691 goto WriteCoreDone; 1684 1692 } … … 1691 1699 if (RT_FAILURE(rc)) 1692 1700 { 1693 CORELOGREL (("Write: ElfWriteMappings failed. rc=%Rrc\n", rc));1701 CORELOGRELSYS((CORELOG_NAME "Write: ElfWriteMappings failed. rc=%Rrc\n", rc)); 1694 1702 goto WriteCoreDone; 1695 1703 } … … 1701 1709 if (RT_FAILURE(rc)) 1702 1710 { 1703 CORELOGREL (("WriteCore: ElfWriteNoteSection old-style failed. rc=%Rrc\n", rc));1711 CORELOGRELSYS((CORELOG_NAME "WriteCore: ElfWriteNoteSection old-style failed. rc=%Rrc\n", rc)); 1704 1712 goto WriteCoreDone; 1705 1713 } … … 1711 1719 if (RT_FAILURE(rc)) 1712 1720 { 1713 CORELOGREL (("WriteCore: ElfWriteNoteSection new-style failed. rc=%Rrc\n", rc));1721 CORELOGRELSYS((CORELOG_NAME "WriteCore: ElfWriteNoteSection new-style failed. rc=%Rrc\n", rc)); 1714 1722 goto WriteCoreDone; 1715 1723 } … … 1721 1729 if (RT_FAILURE(rc)) 1722 1730 { 1723 CORELOGREL (("WriteCore: ElfWriteMappings failed. rc=%Rrc\n", rc));1731 CORELOGRELSYS((CORELOG_NAME "WriteCore: ElfWriteMappings failed. rc=%Rrc\n", rc)); 1724 1732 goto WriteCoreDone; 1725 1733 } … … 1755 1763 * @return VBox status code. 1756 1764 */ 1757 intCreateCore(PVBOXCORE pVBoxCore, ucontext_t *pContext)1765 static int rtCoreDumperCreateCore(PVBOXCORE pVBoxCore, ucontext_t *pContext) 1758 1766 { 1759 1767 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 1778 1786 RTProcGetExecutableName(pVBoxProc->szExecPath, sizeof(pVBoxProc->szExecPath)); /* this gets full path not just name */ 1779 1787 pVBoxProc->pszExecName = RTPathFilename(pVBoxProc->szExecPath); 1780 RTStrPrintf(pVBoxCore->szCorePath, sizeof(pVBoxCore->szCorePath), "core.vb.%s.%d", pVBoxProc->pszExecName, (int)pVBoxProc->Process); 1781 1782 CORELOG(("tstRTCoreDump: Taking Core %s from Thread %d\n", pVBoxCore->szCorePath, (int)pVBoxProc->hCurThread)); 1788 1789 /* 1790 * If no output directory is specified, use current directory. 1791 */ 1792 if (g_szCoreDumpDir[0] == '\0') 1793 g_szCoreDumpDir[0] = '.'; 1794 1795 if (g_szCoreDumpFile[0] == '\0') 1796 { 1797 /* We cannot call RTPathAbs*() as they call getcwd() which calls malloc. */ 1798 RTStrPrintf(pVBoxCore->szCorePath, sizeof(pVBoxCore->szCorePath), "%s/core.vb.%s.%d", 1799 g_szCoreDumpDir, pVBoxProc->pszExecName, (int)pVBoxProc->Process); 1800 } 1801 else 1802 RTStrPrintf(pVBoxCore->szCorePath, sizeof(pVBoxCore->szCorePath), "%s/core.vb.%s", g_szCoreDumpDir, g_szCoreDumpFile); 1803 1804 CORELOG((CORELOG_NAME "CreateCore: Taking Core %s from Thread %d\n", pVBoxCore->szCorePath, (int)pVBoxProc->hCurThread)); 1783 1805 1784 1806 /* … … 1788 1810 if (RT_SUCCESS(rc)) 1789 1811 { 1790 rc = ReadProcInfo(pVBoxCore);1812 rc = ProcReadInfo(pVBoxCore); 1791 1813 if (RT_SUCCESS(rc)) 1792 1814 { 1793 1815 GetOldProcessInfo(pVBoxCore, &pVBoxProc->ProcInfoOld); 1794 if (IsProc ArchNative(pVBoxProc))1816 if (IsProcessArchNative(pVBoxProc)) 1795 1817 { 1796 1818 /* 1797 1819 * Read process status, information such as number of active LWPs will be invalid since we just quiesced the process. 1798 1820 */ 1799 rc = ReadProcStatus(pVBoxCore);1821 rc = ProcReadStatus(pVBoxCore); 1800 1822 if (RT_SUCCESS(rc)) 1801 1823 { … … 1810 1832 } aAccumulators[] = 1811 1833 { 1812 { " ReadProcLdt", &ReadProcLdt, false },1813 { " ReadProcCred", &ReadProcCred, false },1814 { " ReadProcPriv", &ReadProcPriv, false },1815 { " ReadProcAuxVecs", &ReadProcAuxVecs, false },1816 { " ReadProcMappings", &ReadProcMappings, false },1817 { " ReadProcThreads", &ReadProcThreads, false },1818 { " ReadProcMiscInfo", &ReadProcMiscInfo, false }1834 { "ProcReadLdt", &ProcReadLdt, false }, 1835 { "ProcReadCred", &ProcReadCred, false }, 1836 { "ProcReadPriv", &ProcReadPriv, false }, 1837 { "ProcReadAuxVecs", &ProcReadAuxVecs, false }, 1838 { "ProcReadMappings", &ProcReadMappings, false }, 1839 { "ProcReadThreads", &ProcReadThreads, false }, 1840 { "ProcReadMiscInfo", &ProcReadMiscInfo, false } 1819 1841 }; 1820 1842 … … 1824 1846 if (RT_FAILURE(rc)) 1825 1847 { 1826 CORELOGREL (("DumpCore: %s failed. rc=%Rrc\n", aAccumulators[i].pszName, rc));1848 CORELOGRELSYS((CORELOG_NAME "CreateCore: %s failed. rc=%Rrc\n", aAccumulators[i].pszName, rc)); 1827 1849 if (!aAccumulators[i].fOptional) 1828 1850 break; … … 1839 1861 } 1840 1862 else 1841 CORELOGREL (("DumpCore: AllocMemoryArea failed. rc=%Rrc\n", rc));1863 CORELOGRELSYS((CORELOG_NAME "CreateCore: AllocMemoryArea failed. rc=%Rrc\n", rc)); 1842 1864 } 1843 1865 else 1844 CORELOGREL (("DumpCore: ReadProcStatus failed. rc=%Rrc\n", rc));1866 CORELOGRELSYS((CORELOG_NAME "CreateCore: ProcReadStatus failed. rc=%Rrc\n", rc)); 1845 1867 } 1846 1868 else 1847 1869 { 1848 CORELOGREL (("DumpCore: IsProcArchNative failed.\n"));1870 CORELOGRELSYS((CORELOG_NAME "CreateCore: IsProcessArchNative failed.\n")); 1849 1871 rc = VERR_BAD_EXE_FORMAT; 1850 1872 } 1851 1873 } 1852 1874 else 1853 CORELOGREL (("DumpCore: ReadProcInfo failed. rc=%Rrc\n", rc));1875 CORELOGRELSYS((CORELOG_NAME "CreateCore: ProcReadInfo failed. rc=%Rrc\n", rc)); 1854 1876 1855 1877 /* … … 1859 1881 } 1860 1882 else 1861 CORELOG(( "DumpCore: SuspendAllThreads failed. Thread bomb!?! rc=%Rrc\n", rc));1883 CORELOG((CORELOG_NAME "CreateCore: SuspendAllThreads failed. Thread bomb!?! rc=%Rrc\n", rc)); 1862 1884 1863 1885 return rc; … … 1872 1894 * @return VBox status code. 1873 1895 */ 1874 intDestroyCore(PVBOXCORE pVBoxCore)1896 static int rtCoreDumperDestroyCore(PVBOXCORE pVBoxCore) 1875 1897 { 1876 1898 AssertReturn(pVBoxCore, VERR_INVALID_POINTER); … … 1884 1906 1885 1907 1886 void CoreSigHandler(int Sig, siginfo_t *pSigInfo, void *pvArg) 1887 { 1888 CORELOG(("CoreSigHandler Sig=%d pvArg=%p\n", Sig, pvArg)); 1889 1890 ucontext_t *pContext = (ucontext_t *)pvArg; 1908 /** 1909 * Takes a core dump. This function has no other parameters than the context 1910 * because it can be called from signal handlers. 1911 * 1912 * @param pContext The context of the caller. 1913 * @returns VBox status code. 1914 */ 1915 static int rtCoreDumperTakeDump(ucontext_t *pContext) 1916 { 1891 1917 if (!pContext) 1892 CORELOGREL(("CoreSigHandler: Missing context.\n")); 1918 { 1919 CORELOGRELSYS((CORELOG_NAME "TakeDump: Missing context.\n")); 1920 return VERR_INVALID_POINTER; 1921 } 1922 1923 /* 1924 * Take a snapshot, then dump core to disk, all threads except this one are halted 1925 * from before taking the snapshot until writing the core is completely finished. 1926 * Any errors would resume all threads if they were halted. 1927 */ 1928 VBOXCORE VBoxCore; 1929 RT_ZERO(VBoxCore); 1930 int rc = rtCoreDumperCreateCore(&VBoxCore, pContext); 1931 if (RT_SUCCESS(rc)) 1932 { 1933 rc = rtCoreDumperWriteCore(&VBoxCore, &WriteFileNoIntr); 1934 if (RT_SUCCESS(rc)) 1935 CORELOGRELSYS((CORELOG_NAME "Success! Core written to %s\n", VBoxCore.szCorePath)); 1936 else 1937 CORELOGRELSYS((CORELOG_NAME "TakeDump: WriteCore failed. szCorePath=%s rc=%Rrc\n", VBoxCore.szCorePath, rc)); 1938 1939 rtCoreDumperDestroyCore(&VBoxCore); 1940 } 1893 1941 else 1894 { 1895 if (!ASMAtomicUoReadBool(&g_fCoreDumpInProgress)) 1896 { 1897 ASMAtomicWriteBool(&g_fCoreDumpInProgress, true); 1898 1942 CORELOGRELSYS((CORELOG_NAME "TakeDump: CreateCore failed. rc=%Rrc\n", rc)); 1943 1944 return rc; 1945 } 1946 1947 1948 /** 1949 * The signal handler that will be invoked to take core dumps. 1950 * 1951 * @param Sig The signal that invoked us. 1952 * @param pSigInfo The signal information. 1953 * @param pvArg Opaque pointer to the caller context structure, 1954 * this cannot be NULL. 1955 */ 1956 static void rtCoreDumperSignalHandler(int Sig, siginfo_t *pSigInfo, void *pvArg) 1957 { 1958 CORELOG((CORELOG_NAME "SignalHandler Sig=%d pvArg=%p\n", Sig, pvArg)); 1959 1960 int rc = VERR_GENERAL_FAILURE; 1961 bool fCallSystemDump = false; 1962 if (ASMAtomicUoReadBool(&g_fCoreDumpInProgress) == false) 1963 { 1964 ASMAtomicWriteBool(&g_fCoreDumpInProgress, true); 1965 ASMAtomicWriteU64(&g_CoreDumpThread, (uint64_t)RTThreadSelf()); 1966 1967 rc = rtCoreDumperTakeDump((ucontext_t *)pvArg); 1968 1969 ASMAtomicWriteU64(&g_CoreDumpThread, NIL_RTTHREAD); 1970 ASMAtomicWriteBool(&g_fCoreDumpInProgress, false); 1971 1972 if (RT_FAILURE(rc)) 1973 { 1899 1974 /* 1900 * Take a snapshot, then dump core to disk, all threads except this one are halted 1901 * from before taking the snapshot until writing the core is completely finished. 1902 * Any errors would resume all threads if they were halted. 1975 * If it is NOT a deliberate dump taken by us & our handler fails we assume the 1976 * worst, try to use the system signal handler and abort the process. 1903 1977 */ 1904 VBOXCORE VBoxCore; 1905 RT_ZERO(VBoxCore); 1906 int rc = CreateCore(&VBoxCore, pContext); 1907 if (RT_SUCCESS(rc)) 1908 { 1909 rc = WriteCore(&VBoxCore, &WriteFileNoIntr); 1910 if (RT_SUCCESS(rc)) 1911 CORELOG(("CoreSigHandler: Successfully wrote core file to disk.\n")); 1912 else 1913 CORELOGREL(("CoreSigHandler: WriteCore failed. rc=%Rrc\n", rc)); 1914 1915 DestroyCore(&VBoxCore); 1916 } 1917 else 1918 CORELOGREL(("CoreSigHandler: CreateCore failed. rc=%Rrc\n", rc)); 1919 1920 ASMAtomicWriteBool(&g_fCoreDumpInProgress, false); 1921 } 1978 CORELOGRELSYS((CORELOG_NAME "TakeDump failed! rc=%Rrc\n", rc)); 1979 if (ASMAtomicReadBool(&g_fCoreDumpDeliberate) == false) 1980 fCallSystemDump = true; 1981 } 1982 } 1983 else 1984 { 1985 /* 1986 * Core dumping is already in progress and we've somehow ended up being 1987 * signalled again. 1988 */ 1989 rc = VERR_INTERNAL_ERROR; 1990 1991 /* 1992 * If our dumper has crashed. No point in waiting, trigger the system one. 1993 * Wait only when the dumping thread is not the one generating this signal. 1994 */ 1995 if (ASMAtomicReadU64(&g_CoreDumpThread) != (uint64_t)RTThreadSelf()) 1996 fCallSystemDump = true; 1922 1997 else 1923 1998 { 1924 /* @todo detect if we are awaiting for ourselves, if so don't. */ 1925 CORELOGREL(("CoreSigHandler: Core dump already in progress! Waiting before signalling Sig=%d.\n", Sig)); 1999 CORELOGRELSYS((CORELOG_NAME "SignalHandler: Core dump already in progress! Waiting before signalling Sig=%d.\n", Sig)); 1926 2000 int64_t iTimeout = 10000; /* timeout (ms) */ 1927 while ( !ASMAtomicUoReadBool(&g_fCoreDumpInProgress))2001 while (ASMAtomicUoReadBool(&g_fCoreDumpInProgress) == true) 1928 2002 { 1929 2003 RTThreadSleep(200); … … 1933 2007 } 1934 2008 if (iTimeout <= 0) 1935 CORELOGREL(("CoreSigHandler: Core dump seems to be stuck. Signalling new signal %d\n", Sig)); 1936 } 1937 } 1938 1939 signal(Sig, SIG_DFL); 1940 kill((int)getpid(), Sig); 1941 } 1942 1943 1944 static DECLCALLBACK(int) SleepyThread(RTTHREAD Thread, void *pvUser) 1945 { 1946 NOREF(pvUser); 1947 sleep(10000); 2009 { 2010 fCallSystemDump = true; 2011 CORELOGRELSYS((CORELOG_NAME "SignalHandler: Core dump seems to be stuck. Signalling new signal %d\n", Sig)); 2012 } 2013 } 2014 } 2015 2016 if (fCallSystemDump) 2017 { 2018 signal(Sig, SIG_DFL); 2019 raise(Sig); 2020 } 2021 } 2022 2023 2024 /** 2025 * Take a core dump of the current process without terminating it. 2026 * 2027 * @returns IPRT status code. 2028 * @param pszOutputFile Name of the core file. If NULL use the 2029 * default naming scheme. 2030 */ 2031 RTDECL(int) RTCoreDumperTakeDump(const char *pszOutputFile) 2032 { 2033 if (ASMAtomicReadBool(&g_fCoreDumpSignalSetup) == false) 2034 return VERR_WRONG_ORDER; 2035 2036 RT_ZERO(g_szCoreDumpFile); 2037 if (pszOutputFile) 2038 RTStrCopy(g_szCoreDumpFile, sizeof(g_szCoreDumpFile), pszOutputFile); 2039 2040 ASMAtomicWriteBool(&g_fCoreDumpDeliberate, true); 2041 raise(SIGSEGV); 2042 ASMAtomicWriteBool(&g_fCoreDumpDeliberate, false); 1948 2043 return VINF_SUCCESS; 1949 2044 } 1950 2045 1951 2046 1952 int main() 1953 { 1954 RTR3Init(); 1955 CORELOG(("tstRTCoreDump: TESTING pid=%d\n", getpid())); 2047 /** 2048 * Sets up and enables the core dumper. 2049 * 2050 * Installs signal / unhandled exception handlers for catching fatal errors 2051 * that should result in a core dump. If you wish to install your own handlers 2052 * you should do that after calling this function and make sure you pass on 2053 * events you don't handle. 2054 * 2055 * This can be called multiple times to change the settings without needing to 2056 * call RTCoreDumperDisable in between. 2057 * 2058 * @param pszOutputDir The directory to store the cores in. If NULL 2059 * the current directory will be used. 2060 * @param pszBaseName Base file name, no directory. If NULL the 2061 * dumper will generate an appropriate name. 2062 * @param fFlags Reserved for later, MBZ. 2063 */ 2064 RTDECL(int) RTCoreDumperSetup(const char *pszOutputDir, uint32_t fFlags) 2065 { 2066 /* 2067 * Validate flags. 2068 */ 2069 AssertReturn(!fFlags, VERR_INVALID_PARAMETER); 1956 2070 1957 2071 /* 1958 2072 * Install core dump signal handler. 1959 2073 */ 1960 struct sigaction sigAction; 1961 sigAction.sa_sigaction = CoreSigHandler; 1962 sigemptyset(&sigAction.sa_mask); 1963 sigAction.sa_flags = SA_RESTART | SA_SIGINFO; 1964 sigaction(SIGSEGV, &sigAction, NULL); 1965 sigaction(SIGBUS, &sigAction, NULL); 1966 sigaction(SIGUSR1, &sigAction, NULL); 1967 2074 struct sigaction sigAct; 2075 sigAct.sa_sigaction = &rtCoreDumperSignalHandler; 2076 sigemptyset(&sigAct.sa_mask); 2077 sigAct.sa_flags = SA_RESTART | SA_SIGINFO; 2078 sigaction(SIGSEGV, &sigAct, NULL); 2079 sigaction(SIGBUS, &sigAct, NULL); 2080 2081 ASMAtomicWriteBool(&g_fCoreDumpSignalSetup, true); 2082 2083 RT_ZERO(g_szCoreDumpDir); 2084 if (pszOutputDir) 2085 RTStrCopy(g_szCoreDumpDir, sizeof(g_szCoreDumpDir), pszOutputDir); 2086 2087 ASMAtomicWriteU32(&g_fCoreDumpFlags, fFlags); 2088 2089 return VINF_SUCCESS; 2090 } 2091 2092 2093 /** 2094 * Disables the core dumper, i.e. undoes what RTCoreDumperSetup did. 2095 * 2096 * @returns IPRT status code. 2097 */ 2098 RTDECL(int) RTCoreDumperDisable(void) 2099 { 1968 2100 /* 1969 * Spawn a few threads.2101 * Remove core dump signal handler & reset variables. 1970 2102 */ 1971 RTTHREAD ahThreads[5]; 1972 for (unsigned i = 0; i < RT_ELEMENTS(ahThreads); i++) 1973 { 1974 int rc = RTThreadCreate(&ahThreads[i], SleepyThread, &ahThreads[i], 0, RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, "TEST1"); 1975 if (RT_FAILURE(rc)) 1976 { 1977 CORELOG(("tstRTCoreDump: FAILURE(%d) - %d RTThreadCreate failed, rc=%Rrc\n", __LINE__, i, rc)); 1978 g_cErrors++; 1979 ahThreads[i] = NIL_RTTHREAD; 1980 break; 1981 } 1982 } 1983 1984 CORELOG(("Spawned %d threads\n", RT_ELEMENTS(ahThreads))); 1985 1986 /* 1987 * Send signal to dump core. 1988 */ 1989 kill(getpid(), SIGSEGV); 1990 g_cErrors++; 1991 1992 sleep(10); 1993 1994 /* 1995 * Summary. 1996 */ 1997 if (!g_cErrors) 1998 CORELOG(("tstRTCoreDump: SUCCESS\n")); 1999 else 2000 CORELOG(("tstRTCoreDump: FAILURE - %d errors\n", g_cErrors)); 2001 2002 return !!g_cErrors; 2003 } 2004 2103 signal(SIGSEGV, SIG_DFL); 2104 signal(SIGBUS, SIG_DFL); 2105 ASMAtomicWriteBool(&g_fCoreDumpSignalSetup, false); 2106 2107 RT_ZERO(g_szCoreDumpDir); 2108 RT_ZERO(g_szCoreDumpFile); 2109 return VINF_SUCCESS; 2110 } 2111 -
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.h
r31822 r31860 61 61 62 62 /** 63 * ELF NOTE header.63 * ELFNOTEHDR: ELF NOTE header. 64 64 */ 65 65 typedef struct ELFNOTEHDR … … 70 70 typedef ELFNOTEHDR *PELFNOTEHDR; 71 71 72 72 73 #ifdef RT_OS_SOLARIS 74 /** 75 * VBOXSOLMAPINFO: Memory mapping description. 76 */ 73 77 typedef struct VBOXSOLMAPINFO 74 78 { … … 79 83 typedef VBOXSOLMAPINFO *PVBOXSOLMAPINFO; 80 84 85 /** 86 * VBOXSOLCORETYPE: Whether this is an old or new style core. 87 */ 88 typedef enum VBOXSOLCORETYPE 89 { 90 enmOldEra = 0x01d, /* old */ 91 enmNewEra = 0x5c151 /* sci-fi */ 92 } VBOXSOLCORETYPE; 93 94 /** 95 * VBOXSOLTHREADINFO: Per-Thread information. 96 */ 81 97 typedef struct VBOXSOLTHREADINFO 82 98 { … … 88 104 #endif 89 105 90 typedef int (*PFNCOREREADER)(RTFILE hFile, void *pv, size_t cb);91 typedef int (*PFNCOREWRITER)(RTFILE hFile, const void *pcv, size_t cb);92 106 107 /** 108 * VBOXPROCESS: Current (also the core target) process information. 109 */ 93 110 typedef struct VBOXPROCESS 94 111 { … … 127 144 typedef VBOXPROCESS *PVBOXPROCESS; 128 145 146 typedef int (*PFNCOREREADER)(RTFILE hFile, void *pv, size_t cb); 147 typedef int (*PFNCOREWRITER)(RTFILE hFile, const void *pcv, size_t cb); 148 149 /** 150 * VBOXCORE: Core file object. 151 */ 129 152 typedef struct VBOXCORE 130 153 { … … 142 165 typedef VBOXCORE *PVBOXCORE; 143 166 144 typedef int (*PFNCOREACCUMULATOR)(PVBOXCORE pVBoxCOre); 167 typedef int (*PFNCOREACCUMULATOR)(PVBOXCORE pVBoxCore); 168
Note:
See TracChangeset
for help on using the changeset viewer.