1 | /* $Id: coredumper-solaris.h 31862 2010-08-23 14:31:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - Core dump, header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #include <iprt/process.h>
|
---|
28 | #include <iprt/file.h>
|
---|
29 |
|
---|
30 | #ifdef RT_OS_SOLARIS
|
---|
31 | # if defined(RT_ARCH_X86) && _FILE_OFFSET_BITS==64
|
---|
32 | /*
|
---|
33 | * Solaris' procfs cannot be used with large file environment in 32-bit.
|
---|
34 | */
|
---|
35 | # undef _FILE_OFFSET_BITS
|
---|
36 | # define _FILE_OFFSET_BITS 32
|
---|
37 | # include <procfs.h>
|
---|
38 | # include <sys/procfs.h>
|
---|
39 | # include <sys/old_procfs.h>
|
---|
40 | # undef _FILE_OFFSET_BITS
|
---|
41 | # define _FILE_OFFSET_BITS 64
|
---|
42 | #else
|
---|
43 | # include <procfs.h>
|
---|
44 | # include <sys/procfs.h>
|
---|
45 | # include <sys/old_procfs.h>
|
---|
46 | #endif
|
---|
47 | # include <limits.h>
|
---|
48 | # include <thread.h>
|
---|
49 | # include <sys/auxv.h>
|
---|
50 | # include <sys/lwp.h>
|
---|
51 | # include <sys/zone.h>
|
---|
52 | # include <sys/utsname.h>
|
---|
53 |
|
---|
54 | #ifdef RT_ARCH_AMD64
|
---|
55 | # define _ELF64
|
---|
56 | # undef _ELF32_COMPAT
|
---|
57 | #endif
|
---|
58 | # include <sys/machelf.h>
|
---|
59 | # include <sys/corectl.h>
|
---|
60 | #endif
|
---|
61 |
|
---|
62 | /**
|
---|
63 | * ELFNOTEHDR: ELF NOTE header.
|
---|
64 | */
|
---|
65 | typedef struct ELFNOTEHDR
|
---|
66 | {
|
---|
67 | Nhdr Hdr; /* Header of NOTE section */
|
---|
68 | char achName[8]; /* Name of NOTE section */
|
---|
69 | } ELFNOTEHDR;
|
---|
70 | typedef ELFNOTEHDR *PELFNOTEHDR;
|
---|
71 |
|
---|
72 |
|
---|
73 | #ifdef RT_OS_SOLARIS
|
---|
74 | /**
|
---|
75 | * VBOXSOLMAPINFO: Memory mapping description.
|
---|
76 | */
|
---|
77 | typedef struct VBOXSOLMAPINFO
|
---|
78 | {
|
---|
79 | prmap_t pMap; /* Proc description of this mapping */
|
---|
80 | int fError; /* Any error reading this mapping (errno) */
|
---|
81 | struct VBOXSOLMAPINFO *pNext; /* Pointer to the next mapping */
|
---|
82 | } VBOXSOLMAPINFO;
|
---|
83 | typedef VBOXSOLMAPINFO *PVBOXSOLMAPINFO;
|
---|
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 = 0x5c1f1 /* sci-fi */
|
---|
92 | } VBOXSOLCORETYPE;
|
---|
93 |
|
---|
94 | /**
|
---|
95 | * VBOXSOLTHREADINFO: Per-Thread information.
|
---|
96 | */
|
---|
97 | typedef struct VBOXSOLTHREADINFO
|
---|
98 | {
|
---|
99 | lwpsinfo_t Info; /* Proc description of this thread */
|
---|
100 | lwpstatus_t *pStatus; /* Proc description of this thread's status (can be NULL, zombie lwp) */
|
---|
101 | struct VBOXSOLTHREADINFO *pNext; /* Pointer to the next thread */
|
---|
102 | } VBOXSOLTHREADINFO;
|
---|
103 | typedef VBOXSOLTHREADINFO *PVBOXSOLTHREADINFO;
|
---|
104 | #endif
|
---|
105 |
|
---|
106 |
|
---|
107 | /**
|
---|
108 | * VBOXPROCESS: Current (also the core target) process information.
|
---|
109 | */
|
---|
110 | typedef struct VBOXPROCESS
|
---|
111 | {
|
---|
112 | RTPROCESS Process; /* The pid of the process */
|
---|
113 | char szExecPath[PATH_MAX]; /* Path of the executable */
|
---|
114 | char *pszExecName; /* Name of the executable file */
|
---|
115 | #ifdef RT_OS_SOLARIS
|
---|
116 | psinfo_t ProcInfo; /* Process info. */
|
---|
117 | prpsinfo_t ProcInfoOld; /* Process info. Older version (for GDB compat.) */
|
---|
118 | pstatus_t ProcStatus; /* Process status info. */
|
---|
119 | thread_t hCurThread; /* The current thread */
|
---|
120 | ucontext_t *pCurThreadCtx; /* Context info. of current thread before starting to dump */
|
---|
121 | RTFILE hAs; /* proc/<pid/as file handle */
|
---|
122 | auxv_t *pAuxVecs; /* Aux vector of process */
|
---|
123 | int cAuxVecs; /* Number of aux vector entries */
|
---|
124 | PVBOXSOLMAPINFO pMapInfoHead; /* Pointer to the head of list of mappings */
|
---|
125 | uint32_t cMappings; /* Number of mappings (count of pMapInfoHead list) */
|
---|
126 | PVBOXSOLTHREADINFO pThreadInfoHead; /* Pointer to the head of list of threads */
|
---|
127 | uint64_t cThreads; /* Number of threads (count of pThreadInfoHead list) */
|
---|
128 | char szPlatform[SYS_NMLN]; /* Platform name */
|
---|
129 | char szZoneName[ZONENAME_MAX]; /* Zone name */
|
---|
130 | struct utsname UtsName; /* UTS name */
|
---|
131 | void *pvCred; /* Process credential info. */
|
---|
132 | size_t cbCred; /* Size of process credential info. */
|
---|
133 | void *pvLdt; /* Process LDT info. */
|
---|
134 | size_t cbLdt; /* Size of the LDT info. */
|
---|
135 | prpriv_t *pPriv; /* Process privilege info. */
|
---|
136 | size_t cbPriv; /* Size of process privilege info. */
|
---|
137 | const priv_impl_info_t *pcPrivImpl; /* Process privilege implementation info. (opaque handle) */
|
---|
138 | core_content_t CoreContent; /* What information goes in the core */
|
---|
139 | #else
|
---|
140 | # error Port Me!
|
---|
141 | #endif
|
---|
142 |
|
---|
143 | } VBOXPROCESS;
|
---|
144 | typedef VBOXPROCESS *PVBOXPROCESS;
|
---|
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 | */
|
---|
152 | typedef struct VBOXCORE
|
---|
153 | {
|
---|
154 | char szCorePath[PATH_MAX]; /* Path of the core file */
|
---|
155 | VBOXPROCESS VBoxProc; /* Current process information */
|
---|
156 | void *pvCore; /* Pointer to memory area during dumping */
|
---|
157 | size_t cbCore; /* Size of memory area during dumping */
|
---|
158 | void *pvFree; /* Pointer to base of free range in preallocated memory area */
|
---|
159 | bool fIsValid; /* Whether core information has been fully collected */
|
---|
160 | PFNCOREREADER pfnReader; /* Reader function */
|
---|
161 | PFNCOREWRITER pfnWriter; /* Writer function */
|
---|
162 | RTFILE hCoreFile; /* Core file (used only while writing the core) */
|
---|
163 | RTFOFF offWrite; /* Segment/section offset (used only while writing the core) */
|
---|
164 | } VBOXCORE;
|
---|
165 | typedef VBOXCORE *PVBOXCORE;
|
---|
166 |
|
---|
167 | typedef int (*PFNCOREACCUMULATOR)(PVBOXCORE pVBoxCore);
|
---|
168 |
|
---|