VirtualBox

Ignore:
Timestamp:
Aug 23, 2010 1:56:17 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
65068
Message:

RTCoreDumper: integration into IPRT, cleanup.

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  
    2828*   Header Files                                                               *
    2929*******************************************************************************/
     30#define LOG_GROUP LOG_GROUP_CORE_DUMPER
     31#include <VBox/log.h>
     32#include <iprt/coredumper.h>
    3033#include <iprt/types.h>
    3134#include <iprt/file.h>
     
    3437#include <iprt/path.h>
    3538#include <iprt/string.h>
    36 #include <iprt/stream.h>
    37 #include <iprt/initterm.h>
    3839#include <iprt/thread.h>
    3940#include <iprt/param.h>
    4041#include <iprt/asm.h>
    41 #include "tstRTCoreDump.h"
     42#include "coredumper-solaris.h"
    4243
    4344#ifdef RT_OS_SOLARIS
     45# include <syslog.h>
    4446# include <signal.h>
    4547# include <unistd.h>
     
    5355
    5456/*******************************************************************************
     57*   Globals                                                                    *
     58*******************************************************************************/
     59volatile static uint64_t   g_CoreDumpThread = NIL_RTTHREAD;
     60volatile static bool       g_fCoreDumpSignalSetup = false;
     61volatile static bool       g_fCoreDumpDeliberate = false;
     62volatile static bool       g_fCoreDumpInProgress = false;
     63volatile static uint32_t   g_fCoreDumpFlags = 0;
     64static char                g_szCoreDumpDir[PATH_MAX] = { 0 };
     65static char                g_szCoreDumpFile[PATH_MAX] = { 0 };
     66
     67
     68/*******************************************************************************
    5569*   Defined Constants And Macros                                               *
    5670*******************************************************************************/
    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 */
     85static 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}
    7294
    7395
     
    143165 * @return VINF_SUCCESS, if all the given bytes was read in, otherwise VERR_READ_ERROR.
    144166 */
    145 static ssize_t ReadProcAddrSpace(PVBOXPROCESS pVBoxProc, RTFOFF off, void *pvBuf, size_t cbToRead)
     167static ssize_t ProcReadAddrSpace(PVBOXPROCESS pVBoxProc, RTFOFF off, void *pvBuf, size_t cbToRead)
    146168{
    147169    while (1)
     
    162184 * @return true if the architecture matches the current one.
    163185 */
    164 inline bool IsProcArchNative(PVBOXPROCESS pVBoxProc)
     186static inline bool IsProcessArchNative(PVBOXPROCESS pVBoxProc)
    165187{
    166188    return pVBoxProc->ProcInfo.pr_dmodel == PR_MODEL_NATIVE;
     
    175197 * @return The size of the file in bytes.
    176198 */
    177 size_t GetFileSize(const char *pszPath)
     199static size_t GetFileSize(const char *pszPath)
    178200{
    179201    size_t cb = 0;
     
    186208    }
    187209    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));
    189211    return cb;
    190212}
     
    200222 * @return VBox status code.
    201223 */
    202 int AllocMemoryArea(PVBOXCORE pVBoxCore)
     224static int AllocMemoryArea(PVBOXCORE pVBoxCore)
    203225{
    204226    AssertReturn(pVBoxCore->pvCore == NULL, VERR_ALREADY_EXISTS);
     
    249271    if (pv)
    250272    {
    251         CORELOG(("AllocMemoryArea: memory area of %u bytes allocated.\n", cb));
     273        CORELOG((CORELOG_NAME "AllocMemoryArea: memory area of %u bytes allocated.\n", cb));
    252274        pVBoxCore->pvCore = pv;
    253275        pVBoxCore->pvFree = pv;
     
    257279    else
    258280    {
    259         CORELOGREL(("AllocMemoryArea: failed cb=%u\n", cb));
     281        CORELOGRELSYS((CORELOG_NAME "AllocMemoryArea: failed cb=%u\n", cb));
    260282        return VERR_NO_MEMORY;
    261283    }
     
    268290 * @param pVBoxCore         Pointer to the core object.
    269291 */
    270 void FreeMemoryArea(PVBOXCORE pVBoxCore)
     292static void FreeMemoryArea(PVBOXCORE pVBoxCore)
    271293{
    272294    AssertReturnVoid(pVBoxCore);
     
    275297
    276298    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));
    278300
    279301    pVBoxCore->pvCore = NULL;
     
    291313 * @return Pointer to allocated memory, or NULL on failure.
    292314 */
    293 void *GetMemoryChunk(PVBOXCORE pVBoxCore, size_t cb)
     315static void *GetMemoryChunk(PVBOXCORE pVBoxCore, size_t cb)
    294316{
    295317    AssertReturn(pVBoxCore, NULL);
     
    319341 * @return VBox status code.
    320342 */
    321 int ProcReadFileInto(PVBOXCORE pVBoxCore, const char *pszProcFileName, void **ppv, size_t *pcb)
     343static int ProcReadFileInto(PVBOXCORE pVBoxCore, const char *pszProcFileName, void **ppv, size_t *pcb)
    322344{
    323345    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    346368    }
    347369    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));
    349371    return rc;
    350372}
     
    358380 * @return VBox status code.
    359381 */
    360 int ReadProcInfo(PVBOXCORE pVBoxCore)
     382static int ProcReadInfo(PVBOXCORE pVBoxCore)
    361383{
    362384    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    386408 * @return VBox status code.
    387409 */
    388 int ReadProcStatus(PVBOXCORE pVBoxCore)
     410static int ProcReadStatus(PVBOXCORE pVBoxCore)
    389411{
    390412    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    417439 * @return VBox status code.
    418440 */
    419 int ReadProcCred(PVBOXCORE pVBoxCore)
     441static int ProcReadCred(PVBOXCORE pVBoxCore)
    420442{
    421443    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    434456 * @return VBox status code.
    435457 */
    436 int ReadProcPriv(PVBOXCORE pVBoxCore)
     458static int ProcReadPriv(PVBOXCORE pVBoxCore)
    437459{
    438460    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    445467    if (!pVBoxProc->pcPrivImpl)
    446468    {
    447         CORELOGREL(("ReadProcPriv: getprivimplinfo returned NULL.\n"));
     469        CORELOGRELSYS((CORELOG_NAME "ProcReadPriv: getprivimplinfo returned NULL.\n"));
    448470        return VERR_INVALID_STATE;
    449471    }
     
    460482 * @return VBox status code.
    461483 */
    462 int ReadProcLdt(PVBOXCORE pVBoxCore)
     484static int ProcReadLdt(PVBOXCORE pVBoxCore)
    463485{
    464486    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    477499 * @return VBox status code.
    478500 */
    479 int ReadProcAuxVecs(PVBOXCORE pVBoxCore)
     501static int ProcReadAuxVecs(PVBOXCORE pVBoxCore)
    480502{
    481503    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    488510    if (RT_FAILURE(rc))
    489511    {
    490         CORELOGREL(("ReadProcAuxVecs: RTFileOpen %s failed rc=%Rrc\n", szPath, rc));
     512        CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: RTFileOpen %s failed rc=%Rrc\n", szPath, rc));
    491513        return rc;
    492514    }
     
    504526                /* Terminate list of vectors */
    505527                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));
    507529                if (pVBoxProc->cAuxVecs > 0)
    508530                {
     
    514536                else
    515537                {
    516                     CORELOGREL(("ReadProcAuxVecs: Invalid vector count %u\n", pVBoxProc->cAuxVecs));
     538                    CORELOGRELSYS((CORELOG_NAME "ProcReadAuxVecs: Invalid vector count %u\n", pVBoxProc->cAuxVecs));
    517539                    rc = VERR_READ_ERROR;
    518540                }
    519541            }
    520542            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));
    522544
    523545            pVBoxProc->pAuxVecs = NULL;
     
    526548        else
    527549        {
    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)));
    529551            rc = VERR_NO_MEMORY;
    530552        }
    531553    }
    532554    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)));
    534556
    535557    RTFileClose(hFile);
     
    541563 * Find an element in the process' auxiliary vector.
    542564 */
    543 long GetAuxVal(PVBOXPROCESS pVBoxProc, int Type)
     565static long GetAuxVal(PVBOXPROCESS pVBoxProc, int Type)
    544566{
    545567    AssertReturn(pVBoxProc, -1);
     
    565587 * @return VBox status code.
    566588 */
    567 int ReadProcMappings(PVBOXCORE pVBoxCore)
     589static int ProcReadMappings(PVBOXCORE pVBoxCore)
    568590{
    569591    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    625647                                {
    626648                                    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);
    628650                                    if (RT_FAILURE(rc2))
    629651                                    {
    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));
    631653
    632654                                        /*
     
    652674                            RTFileClose(pVBoxProc->hAs);
    653675                            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));
    655677                            return VINF_SUCCESS;
    656678                        }
    657679                        else
    658680                        {
    659                             CORELOGREL(("ReadProcMappings: GetMemoryChunk failed %u\n", pVBoxProc->cMappings * sizeof(VBOXSOLMAPINFO)));
     681                            CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: GetMemoryChunk failed %u\n", pVBoxProc->cMappings * sizeof(VBOXSOLMAPINFO)));
    660682                            rc = VERR_NO_MEMORY;
    661683                        }
     
    663685                    else
    664686                    {
    665                         CORELOGREL(("ReadProcMappings: Invalid mapping count %u\n", pVBoxProc->cMappings));
     687                        CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: Invalid mapping count %u\n", pVBoxProc->cMappings));
    666688                        rc = VERR_READ_ERROR;
    667689                    }
    668690                }
    669691                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));
    671693            }
    672694            else
    673695            {
    674                 CORELOGREL(("ReadProcMappings: GetMemoryChunk failed. cbMapFile=%u\n", cbMapFile));
     696                CORELOGRELSYS((CORELOG_NAME "ProcReadMappings: GetMemoryChunk failed. cbMapFile=%u\n", cbMapFile));
    675697                rc = VERR_NO_MEMORY;
    676698            }
     
    681703    }
    682704    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));
    684706
    685707    RTFileClose(hFile);
     
    696718 * @return VBox status code.
    697719 */
    698 int ReadProcThreads(PVBOXCORE pVBoxCore)
     720static int ProcReadThreads(PVBOXCORE pVBoxCore)
    699721{
    700722    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    728750            uint64_t cInfo         = pInfoHdr->pr_nent;
    729751
    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));
    731754
    732755            /*
     
    747770                            || pStatus->pr_lwpid != pInfo->pr_lwpid)
    748771                        {
    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));
    750774                            rc = VERR_INVALID_STATE;
    751775                            break;
     
    796820                                    pStatus->pr_ustack = (uintptr_t)&pVBoxProc->pCurThreadCtx->uc_stack;
    797821
    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"));
    799823                                }
    800824
     
    804828                            else
    805829                            {
    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));
    807831                                pCur->pStatus = NULL;
    808832                            }
     
    816840                            pPrev->pNext = NULL;
    817841
    818                         CORELOG(("ReadProcThreads: successfully read %u threads.\n", cInfo));
     842                        CORELOG((CORELOG_NAME "ProcReadThreads: successfully read %u threads.\n", cInfo));
    819843                        pVBoxProc->cThreads = cInfo;
    820844                        return VINF_SUCCESS;
     
    822846                    else
    823847                    {
    824                         CORELOGREL(("ReadProcThreads: GetMemoryChunk failed for %u bytes\n", cbThreadInfo));
     848                        CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: GetMemoryChunk failed for %u bytes\n", cbThreadInfo));
    825849                        rc = VERR_NO_MEMORY;
    826850                    }
    827851                }
    828852                else
    829                     CORELOGREL(("ReadProcThreads: Invalid state information for threads.\n", rc));
     853                    CORELOGRELSYS((CORELOG_NAME "ProcReadThreads: Invalid state information for threads.\n", rc));
    830854            }
    831855            else
    832856            {
    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,
    834858                            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));
    836860                rc = VERR_INVALID_STATE;
    837861            }
    838862        }
    839863        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));
    841865    }
    842866    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));
    844868    return rc;
    845869}
     
    854878 * @return VBox status code.
    855879 */
    856 int ReadProcMiscInfo(PVBOXCORE pVBoxCore)
     880static int ProcReadMiscInfo(PVBOXCORE pVBoxCore)
    857881{
    858882    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    867891    if (rc == -1)
    868892    {
    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));
    870894        return VERR_GENERAL_FAILURE;
    871895    }
     
    875899    if (rc == -1)
    876900    {
    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));
    878902        return VERR_GENERAL_FAILURE;
    879903    }
     
    882906    if (rc < 0)
    883907    {
    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));
    885909        return VERR_GENERAL_FAILURE;
    886910    }
     
    902926 * @param pInfo             Pointer to the old prpsinfo_t structure to update.
    903927 */
    904 void GetOldProcessInfo(PVBOXCORE pVBoxCore, prpsinfo_t *pInfo)
     928static void GetOldProcessInfo(PVBOXCORE pVBoxCore, prpsinfo_t *pInfo)
    905929{
    906930    AssertReturnVoid(pVBoxCore);
     
    961985 *
    962986 */
    963 void GetOldProcessStatus(PVBOXCORE pVBoxCore, lwpsinfo_t *pInfo, lwpstatus_t *pStatus, prstatus_t *pDst)
     987static void GetOldProcessStatus(PVBOXCORE pVBoxCore, lwpsinfo_t *pInfo, lwpstatus_t *pStatus, prstatus_t *pDst)
    964988{
    965989    AssertReturnVoid(pVBoxCore);
     
    10401064
    10411065/**
    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 /**
    10571066 * Resume all threads of this process.
    10581067 *
     
    10611070 * @return VBox error code.
    10621071 */
    1063 int ResumeAllThreads(PVBOXPROCESS pVBoxProc)
     1072static int ResumeAllThreads(PVBOXPROCESS pVBoxProc)
    10641073{
    10651074    AssertReturn(pVBoxProc, VERR_INVALID_POINTER);
     
    10941103        }
    10951104
    1096         CORELOG(("ResumeAllThreads: resumed %d threads\n", cRunningThreads));
     1105        CORELOG((CORELOG_NAME "ResumeAllThreads: resumed %d threads\n", cRunningThreads));
    10971106        RTDirClose(pDir);
    10981107    }
    10991108    else
    11001109    {
    1101         CORELOGREL(("ResumeAllThreads: Failed to open %s\n", szPath));
     1110        CORELOGRELSYS((CORELOG_NAME "ResumeAllThreads: Failed to open %s\n", szPath));
    11021111        rc = VERR_READ_ERROR;
    11031112    }
     
    11151124 * @return VBox error code.
    11161125 */
    1117 int SuspendAllThreads(PVBOXPROCESS pVBoxProc)
     1126static int SuspendAllThreads(PVBOXPROCESS pVBoxProc)
    11181127{
    11191128    char szCurThread[128];
     
    11611170        else
    11621171        {
    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));
    11641173            rc = VERR_READ_ERROR;
    11651174            break;
     
    11681177
    11691178    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));
    11711180
    11721181    return rc;
     
    11811190 * @return Size of data actually used for NOTE header and section.
    11821191 */
    1183 inline size_t ElfNoteHeaderSize(size_t cb)
     1192static inline size_t ElfNoteHeaderSize(size_t cb)
    11841193{
    11851194    return sizeof(ELFNOTEHDR) + RT_ALIGN_Z(cb, 4);
     
    11971206 * @return VBox status code.
    11981207 */
    1199 int ElfWriteNoteHeader(PVBOXCORE pVBoxCore, uint_t Type, const void *pcv, size_t cb)
     1208static int ElfWriteNoteHeader(PVBOXCORE pVBoxCore, uint_t Type, const void *pcv, size_t cb)
    12001209{
    12011210    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    12251234
    12261235    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));
    12281237#else
    12291238#error Port Me!
     
    12421251 * @return Size of NOTE section.
    12431252 */
    1244 size_t ElfNoteSectionSize(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType)
     1253static size_t ElfNoteSectionSize(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType)
    12451254{
    12461255    PVBOXPROCESS pVBoxProc = &pVBoxCore->VBoxProc;
     
    13031312        default:
    13041313        {
    1305             CORELOGREL(("ElfNoteSectionSize: Unknown segment era %d\n", enmType));
     1314            CORELOGRELSYS((CORELOG_NAME "ElfNoteSectionSize: Unknown segment era %d\n", enmType));
    13061315            break;
    13071316        }
     
    13211330 * @return VBox status code.
    13221331 */
    1323 int ElfWriteNoteSection(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType)
     1332static int ElfWriteNoteSection(PVBOXCORE pVBoxCore, VBOXSOLCORETYPE enmType)
    13241333{
    13251334    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    13291338
    13301339#ifdef RT_OS_SOLARIS
    1331 
    13321340    typedef int (*PFNELFWRITENOTEHDR)(PVBOXCORE pVBoxCore, uint_t, const void *pcv, size_t cb);
    13331341    typedef struct ELFWRITENOTE
     
    13551363                if (RT_FAILURE(rc))
    13561364                {
    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));
    13581366                    break;
    13591367                }
     
    13781386                    if (RT_FAILURE(rc))
    13791387                    {
    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));
    13811389                        break;
    13821390                    }
     
    13841392                else
    13851393                {
    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));
    13871395                    break;
    13881396                }
     
    14121420                if (RT_FAILURE(rc))
    14131421                {
    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));
    14151423                    break;
    14161424                }
     
    14271435                if (RT_FAILURE(rc))
    14281436                {
    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));
    14301438                    break;
    14311439                }
     
    14361444                    if (RT_FAILURE(rc))
    14371445                    {
    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));
    14391447                        break;
    14401448                    }
     
    14461454        default:
    14471455        {
    1448             CORELOGREL(("ElfWriteNoteSection: Invalid type %d\n", enmType));
     1456            CORELOGRELSYS((CORELOG_NAME "ElfWriteNoteSection: Invalid type %d\n", enmType));
    14491457            rc = VERR_GENERAL_FAILURE;
    14501458            break;
     
    14651473 * @return VBox status code.
    14661474 */
    1467 int ElfWriteMappings(PVBOXCORE pVBoxCore)
     1475static int ElfWriteMappings(PVBOXCORE pVBoxCore)
    14681476{
    14691477    PVBOXPROCESS pVBoxProc = &pVBoxCore->VBoxProc;
     
    14801488            {
    14811489                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);
    14831491                if (RT_FAILURE(rc2))
    14841492                {
    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));
    14861494                    return VERR_INVALID_STATE;
    14871495                }
     
    14901498                if (RT_FAILURE(rc))
    14911499                {
    1492                     CORELOGREL(("ElfWriteMappings: pfnWriter failed. rc=%Rrc\n", rc));
     1500                    CORELOGRELSYS((CORELOG_NAME "ElfWriteMappings: pfnWriter failed. rc=%Rrc\n", rc));
    14931501                    return rc;
    14941502                }
     
    15021510            memcpy(achBuf, &pMapInfo->fError, sizeof(pMapInfo->fError));
    15031511            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"));
    15051513            rc = pVBoxCore->pfnWriter(pVBoxCore->hCoreFile, &achBuf, sizeof(achBuf));
    15061514            if (RT_FAILURE(rc))
    15071515            {
    1508                 CORELOGREL(("ElfWriteMappings: pfnWriter(2) failed. rc=%Rrc\n", rc));
     1516                CORELOGRELSYS((CORELOG_NAME "ElfWriteMappings: pfnWriter(2) failed. rc=%Rrc\n", rc));
    15091517                return rc;
    15101518            }
     
    15171525}
    15181526
     1527
    15191528/**
    15201529 * Write program headers for all mappings into the core file.
     
    15241533 * @return VBox status code.
    15251534 */
    1526 int ElfWriteMappingHeaders(PVBOXCORE pVBoxCore)
     1535static int ElfWriteMappingHeaders(PVBOXCORE pVBoxCore)
    15271536{
    15281537    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    15561565        if (RT_FAILURE(rc))
    15571566        {
    1558             CORELOGREL(("ElfWriteMappingHeaders: pfnWriter failed. rc=%Rrc\n", rc));
     1567            CORELOGRELSYS((CORELOG_NAME "ElfWriteMappingHeaders: pfnWriter failed. rc=%Rrc\n", rc));
    15591568            return rc;
    15601569        }
     
    15771586 * @return VBox status.
    15781587 */
    1579 int WriteCore(PVBOXCORE pVBoxCore, PFNCOREWRITER pfnWriter)
     1588static int rtCoreDumperWriteCore(PVBOXCORE pVBoxCore, PFNCOREWRITER pfnWriter)
    15801589{
    15811590    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    15971606    if (RT_FAILURE(rc))
    15981607    {
    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));
    16001609        goto WriteCoreDone;
    16011610    }
     
    16081617    if (RT_FAILURE(rc))
    16091618    {
    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));
    16111620        goto WriteCoreDone;
    16121621    }
     
    16141623    pVBoxCore->offWrite = 0;
    16151624    uint32_t cProgHdrs  = pVBoxProc->cMappings + 2; /* two PT_NOTE program headers (old, new style) */
    1616     uint32_t cSecHdrs   = CountSections(pVBoxCore);
    16171625
    16181626    /*
     
    16461654    if (RT_FAILURE(rc))
    16471655    {
    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));
    16491657        goto WriteCoreDone;
    16501658    }
     
    16671675    if (RT_FAILURE(rc))
    16681676    {
    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));
    16701678        goto WriteCoreDone;
    16711679    }
     
    16801688    if (RT_FAILURE(rc))
    16811689    {
    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));
    16831691        goto WriteCoreDone;
    16841692    }
     
    16911699    if (RT_FAILURE(rc))
    16921700    {
    1693         CORELOGREL(("Write: ElfWriteMappings failed. rc=%Rrc\n", rc));
     1701        CORELOGRELSYS((CORELOG_NAME "Write: ElfWriteMappings failed. rc=%Rrc\n", rc));
    16941702        goto WriteCoreDone;
    16951703    }
     
    17011709    if (RT_FAILURE(rc))
    17021710    {
    1703         CORELOGREL(("WriteCore: ElfWriteNoteSection old-style failed. rc=%Rrc\n", rc));
     1711        CORELOGRELSYS((CORELOG_NAME "WriteCore: ElfWriteNoteSection old-style failed. rc=%Rrc\n", rc));
    17041712        goto WriteCoreDone;
    17051713    }
     
    17111719    if (RT_FAILURE(rc))
    17121720    {
    1713         CORELOGREL(("WriteCore: ElfWriteNoteSection new-style failed. rc=%Rrc\n", rc));
     1721        CORELOGRELSYS((CORELOG_NAME "WriteCore: ElfWriteNoteSection new-style failed. rc=%Rrc\n", rc));
    17141722        goto WriteCoreDone;
    17151723    }
     
    17211729    if (RT_FAILURE(rc))
    17221730    {
    1723         CORELOGREL(("WriteCore: ElfWriteMappings failed. rc=%Rrc\n", rc));
     1731        CORELOGRELSYS((CORELOG_NAME "WriteCore: ElfWriteMappings failed. rc=%Rrc\n", rc));
    17241732        goto WriteCoreDone;
    17251733    }
     
    17551763 * @return VBox status code.
    17561764 */
    1757 int CreateCore(PVBOXCORE pVBoxCore, ucontext_t *pContext)
     1765static int rtCoreDumperCreateCore(PVBOXCORE pVBoxCore, ucontext_t *pContext)
    17581766{
    17591767    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    17781786    RTProcGetExecutableName(pVBoxProc->szExecPath, sizeof(pVBoxProc->szExecPath));  /* this gets full path not just name */
    17791787    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));
    17831805
    17841806    /*
     
    17881810    if (RT_SUCCESS(rc))
    17891811    {
    1790         rc = ReadProcInfo(pVBoxCore);
     1812        rc = ProcReadInfo(pVBoxCore);
    17911813        if (RT_SUCCESS(rc))
    17921814        {
    17931815            GetOldProcessInfo(pVBoxCore, &pVBoxProc->ProcInfoOld);
    1794             if (IsProcArchNative(pVBoxProc))
     1816            if (IsProcessArchNative(pVBoxProc))
    17951817            {
    17961818                /*
    17971819                 * Read process status, information such as number of active LWPs will be invalid since we just quiesced the process.
    17981820                 */
    1799                 rc = ReadProcStatus(pVBoxCore);
     1821                rc = ProcReadStatus(pVBoxCore);
    18001822                if (RT_SUCCESS(rc))
    18011823                {
     
    18101832                        } aAccumulators[] =
    18111833                        {
    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 }
    18191841                        };
    18201842
     
    18241846                            if (RT_FAILURE(rc))
    18251847                            {
    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));
    18271849                                if (!aAccumulators[i].fOptional)
    18281850                                    break;
     
    18391861                    }
    18401862                    else
    1841                         CORELOGREL(("DumpCore: AllocMemoryArea failed. rc=%Rrc\n", rc));
     1863                        CORELOGRELSYS((CORELOG_NAME "CreateCore: AllocMemoryArea failed. rc=%Rrc\n", rc));
    18421864                }
    18431865                else
    1844                     CORELOGREL(("DumpCore: ReadProcStatus failed. rc=%Rrc\n", rc));
     1866                    CORELOGRELSYS((CORELOG_NAME "CreateCore: ProcReadStatus failed. rc=%Rrc\n", rc));
    18451867            }
    18461868            else
    18471869            {
    1848                 CORELOGREL(("DumpCore: IsProcArchNative failed.\n"));
     1870                CORELOGRELSYS((CORELOG_NAME "CreateCore: IsProcessArchNative failed.\n"));
    18491871                rc = VERR_BAD_EXE_FORMAT;
    18501872            }
    18511873        }
    18521874        else
    1853             CORELOGREL(("DumpCore: ReadProcInfo failed. rc=%Rrc\n", rc));
     1875            CORELOGRELSYS((CORELOG_NAME "CreateCore: ProcReadInfo failed. rc=%Rrc\n", rc));
    18541876
    18551877        /*
     
    18591881    }
    18601882    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));
    18621884
    18631885    return rc;
     
    18721894 * @return VBox status code.
    18731895 */
    1874 int DestroyCore(PVBOXCORE pVBoxCore)
     1896static int rtCoreDumperDestroyCore(PVBOXCORE pVBoxCore)
    18751897{
    18761898    AssertReturn(pVBoxCore, VERR_INVALID_POINTER);
     
    18841906
    18851907
    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 */
     1915static int rtCoreDumperTakeDump(ucontext_t *pContext)
     1916{
    18911917    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    }
    18931941    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 */
     1956static 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        {
    18991974            /*
    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.
    19031977             */
    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;
    19221997        else
    19231998        {
    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));
    19262000            int64_t iTimeout = 10000;  /* timeout (ms) */
    1927             while (!ASMAtomicUoReadBool(&g_fCoreDumpInProgress))
     2001            while (ASMAtomicUoReadBool(&g_fCoreDumpInProgress) == true)
    19282002            {
    19292003                RTThreadSleep(200);
     
    19332007            }
    19342008            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 */
     2031RTDECL(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);
    19482043    return VINF_SUCCESS;
    19492044}
    19502045
    19512046
    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 */
     2064RTDECL(int) RTCoreDumperSetup(const char *pszOutputDir, uint32_t fFlags)
     2065{
     2066    /*
     2067     * Validate flags.
     2068     */
     2069    AssertReturn(!fFlags, VERR_INVALID_PARAMETER);
    19562070
    19572071    /*
    19582072     * Install core dump signal handler.
    19592073     */
    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 */
     2098RTDECL(int) RTCoreDumperDisable(void)
     2099{
    19682100    /*
    1969      * Spawn a few threads.
     2101     * Remove core dump signal handler & reset variables.
    19702102     */
    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  
    6161
    6262/**
    63  * ELF NOTE header.
     63 * ELFNOTEHDR: ELF NOTE header.
    6464 */
    6565typedef struct ELFNOTEHDR
     
    7070typedef ELFNOTEHDR *PELFNOTEHDR;
    7171
     72
    7273#ifdef RT_OS_SOLARIS
     74/**
     75 * VBOXSOLMAPINFO: Memory mapping description.
     76 */
    7377typedef struct VBOXSOLMAPINFO
    7478{
     
    7983typedef VBOXSOLMAPINFO *PVBOXSOLMAPINFO;
    8084
     85/**
     86 * VBOXSOLCORETYPE: Whether this is an old or new style core.
     87 */
     88typedef enum VBOXSOLCORETYPE
     89{
     90    enmOldEra       = 0x01d,        /* old */
     91    enmNewEra       = 0x5c151       /* sci-fi */
     92} VBOXSOLCORETYPE;
     93
     94/**
     95 * VBOXSOLTHREADINFO: Per-Thread information.
     96 */
    8197typedef struct VBOXSOLTHREADINFO
    8298{
     
    88104#endif
    89105
    90 typedef int (*PFNCOREREADER)(RTFILE hFile, void *pv, size_t cb);
    91 typedef int (*PFNCOREWRITER)(RTFILE hFile, const void *pcv, size_t cb);
    92106
     107/**
     108 * VBOXPROCESS: Current (also the core target) process information.
     109 */
    93110typedef struct VBOXPROCESS
    94111{
     
    127144typedef VBOXPROCESS *PVBOXPROCESS;
    128145
     146typedef int (*PFNCOREREADER)(RTFILE hFile, void *pv, size_t cb);
     147typedef int (*PFNCOREWRITER)(RTFILE hFile, const void *pcv, size_t cb);
     148
     149/**
     150 * VBOXCORE: Core file object.
     151 */
    129152typedef struct VBOXCORE
    130153{
     
    142165typedef VBOXCORE *PVBOXCORE;
    143166
    144 typedef int (*PFNCOREACCUMULATOR)(PVBOXCORE pVBoxCOre);
     167typedef int (*PFNCOREACCUMULATOR)(PVBOXCORE pVBoxCore);
     168
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette