mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 00:03:14 +08:00
240 lines
9.7 KiB
C++
240 lines
9.7 KiB
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "level_zero/tools/source/debug/windows/debug_session.h"
|
|
|
|
namespace L0 {
|
|
|
|
DebugSession *createDebugSessionHelper(const zet_debug_config_t &config, Device *device, int debugFd);
|
|
|
|
DebugSession *DebugSession::create(const zet_debug_config_t &config, Device *device, ze_result_t &result) {
|
|
if (!device->getOsInterface().isDebugAttachAvailable()) {
|
|
result = ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
return nullptr;
|
|
}
|
|
|
|
auto debugSession = createDebugSessionHelper(config, device, 0);
|
|
result = debugSession->initialize();
|
|
if (result != ZE_RESULT_SUCCESS) {
|
|
debugSession->closeConnection();
|
|
delete debugSession;
|
|
debugSession = nullptr;
|
|
}
|
|
|
|
return debugSession;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::initialize() {
|
|
wddm = connectedDevice->getOsInterface().getDriverModel()->as<NEO::Wddm>();
|
|
UNRECOVERABLE_IF(wddm == nullptr);
|
|
|
|
KM_ESCAPE_INFO escapeInfo = {0};
|
|
escapeInfo.KmEuDbgL0EscapeInfo.EscapeActionType = DBGUMD_ACTION_ATTACH_DEBUGGER;
|
|
escapeInfo.KmEuDbgL0EscapeInfo.AttachDebuggerParams.hAdapter = wddm->getAdapter();
|
|
escapeInfo.KmEuDbgL0EscapeInfo.AttachDebuggerParams.ProcessId = processId;
|
|
|
|
auto status = runEscape(escapeInfo);
|
|
if (STATUS_SUCCESS != status || DBGUMD_RETURN_ESCAPE_SUCCESS != escapeInfo.KmEuDbgL0EscapeInfo.EscapeReturnStatus) {
|
|
PRINT_DEBUGGER_ERROR_LOG("DBGUMD_ACTION_ATTACH_DEBUGGER: Failed - ProcessId: %d Status: %d EscapeReturnStatus: %d\n", processId, status, escapeInfo.KmEuDbgL0EscapeInfo.EscapeReturnStatus);
|
|
return DebugSessionWindows::translateEscapeReturnStatusToZeResult(escapeInfo.KmEuDbgL0EscapeInfo.EscapeReturnStatus);
|
|
}
|
|
|
|
debugHandle = escapeInfo.KmEuDbgL0EscapeInfo.AttachDebuggerParams.hDebugHandle;
|
|
PRINT_DEBUGGER_INFO_LOG("DBGUMD_ACTION_ATTACH_DEBUGGER: SUCCESS - ProcessId: %d DebugHandle: 0x%ullx\n", processId, debugHandle);
|
|
|
|
auto result = ZE_RESULT_SUCCESS;
|
|
do {
|
|
result = readAndHandleEvent(100);
|
|
} while (result == ZE_RESULT_SUCCESS && !moduleDebugAreaCaptured);
|
|
|
|
if (moduleDebugAreaCaptured) {
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
bool DebugSessionWindows::closeConnection() {
|
|
if (debugHandle == 0) {
|
|
return false;
|
|
}
|
|
|
|
KM_ESCAPE_INFO escapeInfo = {0};
|
|
escapeInfo.KmEuDbgL0EscapeInfo.EscapeActionType = DBGUMD_ACTION_DETACH_DEBUGGER;
|
|
escapeInfo.KmEuDbgL0EscapeInfo.DetachDebuggerParams.ProcessID = processId;
|
|
|
|
auto status = runEscape(escapeInfo);
|
|
if (STATUS_SUCCESS != status) {
|
|
PRINT_DEBUGGER_ERROR_LOG("DBGUMD_ACTION_DETACH_DEBUGGER: Failed - ProcessId: %d Status: %d\n", processId, status);
|
|
return false;
|
|
}
|
|
|
|
PRINT_DEBUGGER_INFO_LOG("DBGUMD_ACTION_DETACH_DEBUGGER: SUCCESS\n");
|
|
return true;
|
|
}
|
|
|
|
NTSTATUS DebugSessionWindows::runEscape(KM_ESCAPE_INFO &escapeInfo) {
|
|
D3DKMT_ESCAPE escapeCommand = {0};
|
|
|
|
escapeInfo.Header.EscapeCode = GFX_ESCAPE_KMD;
|
|
escapeInfo.EscapeOperation = KM_ESCAPE_EUDBG_L0_DBGUMD_HANDLER;
|
|
escapeInfo.KmEuDbgL0EscapeInfo.hDebugHandle = debugHandle;
|
|
|
|
escapeCommand.Flags.HardwareAccess = 0;
|
|
escapeCommand.Flags.Reserved = 0;
|
|
escapeCommand.hAdapter = wddm->getAdapter();
|
|
escapeCommand.hContext = (D3DKMT_HANDLE)0;
|
|
escapeCommand.hDevice = wddm->getDeviceHandle();
|
|
escapeCommand.pPrivateDriverData = &escapeInfo;
|
|
escapeCommand.PrivateDriverDataSize = sizeof(escapeInfo);
|
|
escapeCommand.Type = D3DKMT_ESCAPE_DRIVERPRIVATE;
|
|
|
|
return wddm->escape(escapeCommand);
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::readAndHandleEvent(uint64_t timeoutMs) {
|
|
KM_ESCAPE_INFO escapeInfo = {0};
|
|
|
|
union {
|
|
READ_EVENT_PARAMS_BUFFER eventParamsBuffer;
|
|
uint8_t rawBytes[READ_EVENT_PARAMS_BUFFER_MIN_SIZE_BYTES] = {0};
|
|
} eventParamsBuffer;
|
|
|
|
escapeInfo.KmEuDbgL0EscapeInfo.EscapeActionType = DBGUMD_ACTION_READ_EVENT;
|
|
escapeInfo.KmEuDbgL0EscapeInfo.ReadEventParams.TimeoutMs = timeoutMs;
|
|
escapeInfo.KmEuDbgL0EscapeInfo.ReadEventParams.EventParamsBufferSize = sizeof(eventParamsBuffer);
|
|
escapeInfo.KmEuDbgL0EscapeInfo.ReadEventParams.EventParamBufferPtr = reinterpret_cast<uint64_t>(&eventParamsBuffer);
|
|
|
|
auto status = runEscape(escapeInfo);
|
|
if (STATUS_SUCCESS != status || DBGUMD_RETURN_ESCAPE_SUCCESS != escapeInfo.KmEuDbgL0EscapeInfo.EscapeReturnStatus) {
|
|
PRINT_DEBUGGER_ERROR_LOG("DBGUMD_ACTION_READ_EVENT: Failed - Status: %d EscapeReturnStatus: %d\n", status, escapeInfo.KmEuDbgL0EscapeInfo.EscapeReturnStatus);
|
|
return DebugSessionWindows::translateEscapeReturnStatusToZeResult(escapeInfo.KmEuDbgL0EscapeInfo.EscapeReturnStatus);
|
|
}
|
|
|
|
switch (escapeInfo.KmEuDbgL0EscapeInfo.ReadEventParams.ReadEventType) {
|
|
case DBGUMD_READ_EVENT_MODULE_CREATE_NOTIFICATION:
|
|
return handleModuleCreateEvent(eventParamsBuffer.eventParamsBuffer.ModuleCreateEventParams);
|
|
case DBGUMD_READ_EVENT_EU_ATTN_BIT_SET:
|
|
return handleEuAttentionBitsEvent(eventParamsBuffer.eventParamsBuffer.EuBitSetEventParams);
|
|
case DBGUMD_READ_EVENT_ALLOCATION_DATA_INFO:
|
|
return handleAllocationDataEvent(eventParamsBuffer.eventParamsBuffer.ReadAdditionalAllocDataParams);
|
|
case DBGUMD_READ_EVENT_CONTEXT_CREATE_DESTROY:
|
|
return handleContextCreateDestroyEvent(eventParamsBuffer.eventParamsBuffer.ContextCreateDestroyEventParams);
|
|
case DBGUMD_READ_EVENT_DEVICE_CREATE_DESTROY:
|
|
return handleDeviceCreateDestroyEvent(eventParamsBuffer.eventParamsBuffer.DeviceCreateDestroyEventParams);
|
|
case DBGUMD_READ_EVENT_CREATE_DEBUG_DATA:
|
|
return handleCreateDebugDataEvent(eventParamsBuffer.eventParamsBuffer.ReadCreateDebugDataParams);
|
|
default:
|
|
break;
|
|
}
|
|
|
|
PRINT_DEBUGGER_ERROR_LOG("DBGUMD_ACTION_READ_EVENT: Unknown ReadEventType returned: %d\n", escapeInfo.KmEuDbgL0EscapeInfo.ReadEventParams.ReadEventType);
|
|
return ZE_RESULT_ERROR_UNKNOWN;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::handleModuleCreateEvent(DBGUMD_READ_EVENT_MODULE_CREATE_EVENT_PARAMS &moduleCreateParams) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::handleEuAttentionBitsEvent(DBGUMD_READ_EVENT_EU_ATTN_BIT_SET_PARAMS &euAttentionBitsParams) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::handleAllocationDataEvent(DBGUMD_READ_EVENT_READ_ALLOCATION_DATA_PARAMS &allocationDataParams) {
|
|
auto allocationDebugData = reinterpret_cast<GFX_ALLOCATION_DEBUG_DATA_INFO *>(allocationDataParams.DebugDataBufferPtr);
|
|
UNRECOVERABLE_IF(nullptr == allocationDebugData);
|
|
|
|
if (allocationDebugData->DataType == MODULE_HEAP_DEBUG_AREA) {
|
|
moduleDebugAreaCaptured = true;
|
|
}
|
|
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::handleContextCreateDestroyEvent(DBGUMD_READ_EVENT_CONTEXT_CREATE_DESTROY_EVENT_PARAMS &contextCreateDestroyParams) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::handleDeviceCreateDestroyEvent(DBGUMD_READ_EVENT_DEVICE_CREATE_DESTROY_EVENT_PARAMS &deviceCreateDestroyParams) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::handleCreateDebugDataEvent(DBGUMD_READ_EVENT_CREATE_DEBUG_DATA_PARAMS &createDebugDataParams) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::translateEscapeReturnStatusToZeResult(uint32_t escapeReturnStatus) {
|
|
switch (escapeReturnStatus) {
|
|
case DBGUMD_RETURN_ESCAPE_SUCCESS:
|
|
return ZE_RESULT_SUCCESS;
|
|
case DBGUMD_RETURN_DEBUGGER_ATTACH_DEVICE_BUSY:
|
|
case DBGUMD_RETURN_READ_EVENT_TIMEOUT_EXPIRED:
|
|
return ZE_RESULT_ERROR_NOT_AVAILABLE;
|
|
case DBGUMD_RETURN_INVALID_ARGS:
|
|
case DBGUMD_RETURN_NOT_VALID_PROCESS:
|
|
return ZE_RESULT_ERROR_INVALID_ARGUMENT;
|
|
case DBGUMD_RETURN_PERMISSION_DENIED:
|
|
return ZE_RESULT_ERROR_INSUFFICIENT_PERMISSIONS;
|
|
case DBGUMD_RETURN_EU_DEBUG_NOT_SUPPORTED:
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
default:
|
|
return ZE_RESULT_ERROR_UNKNOWN;
|
|
}
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::readEvent(uint64_t timeout, zet_debug_event_t *event) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::readMemory(ze_device_thread_t thread, const zet_debug_memory_space_desc_t *desc, size_t size, void *buffer) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::writeMemory(ze_device_thread_t thread, const zet_debug_memory_space_desc_t *desc, size_t size, const void *buffer) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::acknowledgeEvent(const zet_debug_event_t *event) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::resumeImp(std::vector<ze_device_thread_t> threads, uint32_t deviceIndex) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::interruptImp(uint32_t deviceIndex) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::readGpuMemory(uint64_t memoryHandle, char *output, size_t size, uint64_t gpuVa) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::writeGpuMemory(uint64_t memoryHandle, const char *input, size_t size, uint64_t gpuVa) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
void DebugSessionWindows::enqueueApiEvent(zet_debug_event_t &debugEvent) {
|
|
}
|
|
|
|
bool DebugSessionWindows::readSystemRoutineIdent(EuThread *thread, uint64_t vmHandle, SIP::sr_ident &srMagic) {
|
|
return false;
|
|
}
|
|
|
|
bool DebugSessionWindows::readModuleDebugArea() {
|
|
return false;
|
|
}
|
|
|
|
void DebugSessionWindows::startAsyncThread() {
|
|
}
|
|
|
|
ze_result_t DebugSessionWindows::readSbaBuffer(EuThread::ThreadId, SbaTrackedAddresses &sbaBuffer) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
} // namespace L0
|