VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTR0DbgKrnlInfo.cpp@ 102335

Last change on this file since 102335 was 98103, checked in by vboxsync, 2 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/* $Id: tstRTR0DbgKrnlInfo.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT R0 Testcase - Debug kernel information.
4 */
5
6/*
7 * Copyright (C) 2012-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include <iprt/thread.h>
42
43#include <iprt/asm-amd64-x86.h>
44#include <iprt/err.h>
45#include <iprt/time.h>
46#include <iprt/string.h>
47#include <VBox/sup.h>
48#include <iprt/dbg.h>
49#include "tstRTR0DbgKrnlInfo.h"
50#include "tstRTR0Common.h"
51
52
53/**
54 * Service request callback function.
55 *
56 * @returns VBox status code.
57 * @param pSession The caller's session.
58 * @param u64Arg 64-bit integer argument.
59 * @param pReqHdr The request header. Input / Output. Optional.
60 */
61DECLEXPORT(int) TSTR0DbgKrnlInfoSrvReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation,
62 uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr)
63{
64 NOREF(pSession);
65 if (u64Arg)
66 return VERR_INVALID_PARAMETER;
67 if (!RT_VALID_PTR(pReqHdr))
68 return VERR_INVALID_PARAMETER;
69 char *pszErr = (char *)(pReqHdr + 1);
70 size_t cchErr = pReqHdr->cbReq - sizeof(*pReqHdr);
71 if (cchErr < 32 || cchErr >= 0x10000)
72 return VERR_INVALID_PARAMETER;
73 *pszErr = '\0';
74
75 /*
76 * The big switch.
77 */
78 bool fSavedMayPanic = RTAssertSetMayPanic(false); /* Don't crash the host with strict builds! */
79 RTDBGKRNLINFO hKrnlInfo = NIL_RTDBGKRNLINFO;
80 switch (uOperation)
81 {
82 case TSTRTR0DBGKRNLINFO_SANITY_OK:
83 break;
84
85 case TSTRTR0DBGKRNLINFO_SANITY_FAILURE:
86 RTStrPrintf(pszErr, cchErr, "!42failure42%1024s", "");
87 break;
88
89 case TSTRTR0DBGKRNLINFO_BASIC:
90 {
91 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoOpen(&hKrnlInfo, 1), VERR_INVALID_PARAMETER);
92 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoOpen(NULL, 0), VERR_INVALID_PARAMETER);
93 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoOpen(&hKrnlInfo, 0), VINF_SUCCESS);
94
95 size_t offMemb;
96 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQueryMember(NULL, NULL, "Test", "Test", &offMemb), VERR_INVALID_HANDLE);
97 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQueryMember(hKrnlInfo, NULL, NULL, "Test", &offMemb), VERR_INVALID_PARAMETER);
98 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQueryMember(hKrnlInfo, NULL, "Test", NULL, &offMemb), VERR_INVALID_PARAMETER);
99 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQueryMember(hKrnlInfo, NULL, "Test", "Test", NULL), VERR_INVALID_PARAMETER);
100
101 void *pvSymbol;
102 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQuerySymbol(NULL, "Test", "Test", &pvSymbol), VERR_INVALID_HANDLE);
103 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, "TestModule", "Test", &pvSymbol), VERR_MODULE_NOT_FOUND);
104 RTR0TESTR0_CHECK_RC_BREAK(RTR0DbgKrnlInfoQuerySymbol(hKrnlInfo, NULL, NULL, &pvSymbol), VERR_INVALID_PARAMETER);
105
106 RTR0DbgKrnlInfoRelease(hKrnlInfo);
107 hKrnlInfo = NIL_RTDBGKRNLINFO;
108 uint32_t cRefs;
109 RTR0TESTR0_CHECK_MSG((cRefs = RTR0DbgKrnlInfoRelease(NIL_RTDBGKRNLINFO)) == 0, ("cRefs=%#x", cRefs));
110 break;
111 }
112
113 /** @todo check member retreival based on target platform. */
114 /** @todo check symbol lookups based on target platform. */
115
116 default:
117 RTStrPrintf(pszErr, cchErr, "!Unknown test #%d", uOperation);
118 break;
119 }
120 if (hKrnlInfo != NIL_RTDBGKRNLINFO)
121 RTR0DbgKrnlInfoRelease(hKrnlInfo);
122 RTAssertSetMayPanic(fSavedMayPanic);
123
124 /* The error indicator is the '!' in the message buffer. */
125 return VINF_SUCCESS;
126}
127
Note: See TracBrowser for help on using the repository browser.

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