2016-09-06 11:29:50 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 11:29:50 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
2016-09-06 17:44:27 +00:00
|
|
|
#include "types.h"
|
2016-09-06 11:29:50 +00:00
|
|
|
#include "memory.h"
|
2016-10-09 20:41:55 +00:00
|
|
|
#include "event.h"
|
|
|
|
#include "dynloader.h"
|
2016-09-28 20:52:42 +00:00
|
|
|
#include "hwmon.h"
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
// nvml functions
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int nvml_init (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
memset (nvml, 0, sizeof (NVML_PTR));
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
|
|
|
nvml->lib = hc_dlopen ("nvml.dll");
|
|
|
|
|
|
|
|
if (!nvml->lib)
|
|
|
|
{
|
|
|
|
DWORD BufferSize = 1024;
|
|
|
|
|
|
|
|
DWORD Type = REG_SZ;
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
char *Buffer = (char *) hcmalloc (hashcat_ctx, BufferSize + 1); VERIFY_PTR (Buffer);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
HKEY hKey = 0;
|
|
|
|
|
|
|
|
if (RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE\\NVIDIA Corporation\\Global\\NVSMI", 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
if (RegQueryValueExA (hKey, "NVSMIPATH", NULL, &Type, (LPBYTE)Buffer, &BufferSize) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
Buffer[BufferSize] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//if (user_options->quiet == false)
|
2016-10-11 08:55:02 +00:00
|
|
|
// event_log_error (hashcat_ctx, "NVML library load failed, proceed without NVML HWMon enabled");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegCloseKey (hKey);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//if (user_options->quiet == false)
|
2016-10-11 08:55:02 +00:00
|
|
|
// event_log_error (hashcat_ctx, "NVML library load failed, proceed without NVML HWMon enabled");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcat (Buffer, "\\nvml.dll");
|
|
|
|
|
|
|
|
nvml->lib = hc_dlopen (Buffer);
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (Buffer);
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined (_POSIX)
|
|
|
|
nvml->lib = hc_dlopen ("libnvidia-ml.so", RTLD_NOW);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!nvml->lib)
|
|
|
|
{
|
|
|
|
//if (user_options->quiet == false)
|
2016-10-11 08:55:02 +00:00
|
|
|
// event_log_error (hashcat_ctx, "NVML library load failed, proceed without NVML HWMon enabled");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlErrorString, NVML_ERROR_STRING, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlInit, NVML_INIT, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlShutdown, NVML_SHUTDOWN, NVML, 0)
|
2016-10-11 10:18:06 +00:00
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetCount, NVML_DEVICE_GET_COUNT, NVML, 0)
|
2016-10-09 20:41:55 +00:00
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetName, NVML_DEVICE_GET_NAME, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetHandleByIndex, NVML_DEVICE_GET_HANDLE_BY_INDEX, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetTemperature, NVML_DEVICE_GET_TEMPERATURE, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetFanSpeed, NVML_DEVICE_GET_FAN_SPEED, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetPowerUsage, NVML_DEVICE_GET_POWER_USAGE, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetUtilizationRates, NVML_DEVICE_GET_UTILIZATION_RATES, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetClockInfo, NVML_DEVICE_GET_CLOCKINFO, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetTemperatureThreshold, NVML_DEVICE_GET_THRESHOLD, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetCurrPcieLinkGeneration, NVML_DEVICE_GET_CURRPCIELINKGENERATION, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetCurrPcieLinkWidth, NVML_DEVICE_GET_CURRPCIELINKWIDTH, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetCurrentClocksThrottleReasons, NVML_DEVICE_GET_CURRENTCLOCKSTHROTTLEREASONS, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetSupportedClocksThrottleReasons, NVML_DEVICE_GET_SUPPORTEDCLOCKSTHROTTLEREASONS, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceSetComputeMode, NVML_DEVICE_SET_COMPUTEMODE, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceSetGpuOperationMode, NVML_DEVICE_SET_OPERATIONMODE, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetPowerManagementLimitConstraints, NVML_DEVICE_GET_POWERMANAGEMENTLIMITCONSTRAINTS, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceSetPowerManagementLimit, NVML_DEVICE_SET_POWERMANAGEMENTLIMIT, NVML, 0)
|
|
|
|
HC_LOAD_FUNC(nvml, nvmlDeviceGetPowerManagementLimit, NVML_DEVICE_GET_POWERMANAGEMENTLIMIT, NVML, 0)
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static void nvml_close (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
if (nvml)
|
|
|
|
{
|
|
|
|
if (nvml->lib)
|
|
|
|
hc_dlclose (nvml->lib);
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (nvml);
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *hm_NVML_nvmlErrorString (NVML_PTR *nvml, const nvmlReturn_t nvml_rc)
|
|
|
|
{
|
|
|
|
return nvml->nvmlErrorString (nvml_rc);
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlInit (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlInit ();
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlInit(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlShutdown (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlShutdown ();
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlShutdown(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetCount (hashcat_ctx_t *hashcat_ctx, unsigned int *deviceCount)
|
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetCount (deviceCount);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetCount(): %s", string);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetHandleByIndex (hashcat_ctx_t *hashcat_ctx, unsigned int index, nvmlDevice_t *device)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetHandleByIndex (index, device);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetHandleByIndex(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceGetName (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, char *name, unsigned int length)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetName (device, name, length);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetName(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetTemperature (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, nvmlTemperatureSensors_t sensorType, unsigned int *temp)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetTemperature (device, sensorType, temp);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetTemperature(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetFanSpeed (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int *speed)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetFanSpeed (device, speed);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetFanSpeed(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceGetPowerUsage (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int *power)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetPowerUsage (device, power);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetPowerUsage(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetUtilizationRates (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, nvmlUtilization_t *utilization)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetUtilizationRates (device, utilization);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetUtilizationRates(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetClockInfo (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, nvmlClockType_t type, unsigned int *clock)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetClockInfo (device, type, clock);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetClockInfo(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetTemperatureThreshold (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, nvmlTemperatureThresholds_t thresholdType, unsigned int *temp)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetTemperatureThreshold (device, thresholdType, temp);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetTemperatureThreshold(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceGetCurrPcieLinkGeneration (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int *currLinkGen)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetCurrPcieLinkGeneration (device, currLinkGen);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetCurrPcieLinkGeneration(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetCurrPcieLinkWidth (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int *currLinkWidth)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetCurrPcieLinkWidth (device, currLinkWidth);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetCurrPcieLinkWidth(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceGetCurrentClocksThrottleReasons (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned long long *clocksThrottleReasons)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetCurrentClocksThrottleReasons (device, clocksThrottleReasons);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetCurrentClocksThrottleReasons(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceGetSupportedClocksThrottleReasons (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned long long *supportedClocksThrottleReasons)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetSupportedClocksThrottleReasons (device, supportedClocksThrottleReasons);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetSupportedClocksThrottleReasons(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceSetComputeMode (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, nvmlComputeMode_t mode)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceSetComputeMode (device, mode);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceSetComputeMode(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_NVML_nvmlDeviceSetGpuOperationMode (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, nvmlGpuOperationMode_t mode)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceSetGpuOperationMode (device, mode);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceSetGpuOperationMode(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetPowerManagementLimitConstraints (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int *minLimit, unsigned int *maxLimit)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetPowerManagementLimitConstraints (device, minLimit, maxLimit);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetPowerManagementLimitConstraints(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceSetPowerManagementLimit (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int limit)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceSetPowerManagementLimit (device, limit);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceSetPowerManagementLimit(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NVML_nvmlDeviceGetPowerManagementLimit (hashcat_ctx_t *hashcat_ctx, nvmlDevice_t device, unsigned int *limit)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVML_PTR *nvml = hwmon_ctx->hm_nvml;
|
|
|
|
|
|
|
|
const nvmlReturn_t nvml_rc = nvml->nvmlDeviceGetPowerManagementLimit (device, limit);
|
|
|
|
|
|
|
|
if (nvml_rc != NVML_SUCCESS)
|
|
|
|
{
|
|
|
|
const char *string = hm_NVML_nvmlErrorString (nvml, nvml_rc);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "nvmlDeviceGetPowerManagementLimit(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nvapi functions
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int nvapi_init (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
memset (nvapi, 0, sizeof (NVAPI_PTR));
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
2016-10-29 22:21:05 +00:00
|
|
|
#if defined (_WIN64)
|
2016-10-09 20:41:55 +00:00
|
|
|
nvapi->lib = hc_dlopen ("nvapi64.dll");
|
2016-10-29 22:21:05 +00:00
|
|
|
#else
|
2016-10-09 20:41:55 +00:00
|
|
|
nvapi->lib = hc_dlopen ("nvapi.dll");
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
nvapi->lib = hc_dlopen ("nvapi.so", RTLD_NOW); // uhm yes, but .. yeah
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!nvapi->lib)
|
|
|
|
{
|
|
|
|
//if (user_options->quiet == false)
|
2016-10-11 08:55:02 +00:00
|
|
|
// event_log_error (hashcat_ctx, "load NVAPI library failed, proceed without NVAPI HWMon enabled");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
HC_LOAD_FUNC(nvapi, nvapi_QueryInterface, NVAPI_QUERYINTERFACE, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_Initialize, NVAPI_INITIALIZE, nvapi_QueryInterface, 0x0150E828, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_Unload, NVAPI_UNLOAD, nvapi_QueryInterface, 0xD22BDD7E, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_GetErrorMessage, NVAPI_GETERRORMESSAGE, nvapi_QueryInterface, 0x6C2D048C, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_EnumPhysicalGPUs, NVAPI_ENUMPHYSICALGPUS, nvapi_QueryInterface, 0xE5AC921F, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_GPU_GetPerfPoliciesInfo, NVAPI_GPU_GETPERFPOLICIESINFO, nvapi_QueryInterface, 0x409D9841, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_GPU_GetPerfPoliciesStatus, NVAPI_GPU_GETPERFPOLICIESSTATUS, nvapi_QueryInterface, 0x3D358A0C, NVAPI, 0)
|
|
|
|
HC_LOAD_ADDR(nvapi, NvAPI_GPU_SetCoolerLevels, NVAPI_GPU_SETCOOLERLEVELS, nvapi_QueryInterface, 0x891FA0AE, NVAPI, 0)
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static void nvapi_close (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
if (nvapi)
|
|
|
|
{
|
|
|
|
if (nvapi->lib)
|
|
|
|
hc_dlclose (nvapi->lib);
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (nvapi);
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void hm_NvAPI_GetErrorMessage (NVAPI_PTR *nvapi, const NvAPI_Status NvAPI_rc, NvAPI_ShortString string)
|
|
|
|
{
|
|
|
|
nvapi->NvAPI_GetErrorMessage (NvAPI_rc, string);
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NvAPI_Initialize (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
const NvAPI_Status NvAPI_rc = nvapi->NvAPI_Initialize ();
|
|
|
|
|
|
|
|
if (NvAPI_rc == NVAPI_LIBRARY_NOT_FOUND) return -1;
|
|
|
|
|
|
|
|
if (NvAPI_rc != NVAPI_OK)
|
|
|
|
{
|
|
|
|
NvAPI_ShortString string = { 0 };
|
|
|
|
|
|
|
|
hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "NvAPI_Initialize(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NvAPI_Unload (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
const NvAPI_Status NvAPI_rc = nvapi->NvAPI_Unload ();
|
|
|
|
|
|
|
|
if (NvAPI_rc != NVAPI_OK)
|
|
|
|
{
|
|
|
|
NvAPI_ShortString string = { 0 };
|
|
|
|
|
|
|
|
hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "NvAPI_Unload(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NvAPI_EnumPhysicalGPUs (hashcat_ctx_t *hashcat_ctx, NvPhysicalGpuHandle nvGPUHandle[NVAPI_MAX_PHYSICAL_GPUS], NvU32 *pGpuCount)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
const NvAPI_Status NvAPI_rc = nvapi->NvAPI_EnumPhysicalGPUs (nvGPUHandle, pGpuCount);
|
|
|
|
|
|
|
|
if (NvAPI_rc != NVAPI_OK)
|
|
|
|
{
|
|
|
|
NvAPI_ShortString string = { 0 };
|
|
|
|
|
|
|
|
hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "NvAPI_EnumPhysicalGPUs(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NvAPI_GPU_GetPerfPoliciesInfo (hashcat_ctx_t *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NV_GPU_PERF_POLICIES_INFO_PARAMS_V1 *perfPolicies_info)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
const NvAPI_Status NvAPI_rc = nvapi->NvAPI_GPU_GetPerfPoliciesInfo (hPhysicalGpu, perfPolicies_info);
|
|
|
|
|
|
|
|
if (NvAPI_rc != NVAPI_OK)
|
|
|
|
{
|
|
|
|
NvAPI_ShortString string = { 0 };
|
|
|
|
|
|
|
|
hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "NvAPI_GPU_GetPerfPoliciesInfo(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NvAPI_GPU_GetPerfPoliciesStatus (hashcat_ctx_t *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1 *perfPolicies_status)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
const NvAPI_Status NvAPI_rc = nvapi->NvAPI_GPU_GetPerfPoliciesStatus (hPhysicalGpu, perfPolicies_status);
|
|
|
|
|
|
|
|
if (NvAPI_rc != NVAPI_OK)
|
|
|
|
{
|
|
|
|
NvAPI_ShortString string = { 0 };
|
|
|
|
|
|
|
|
hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "NvAPI_GPU_GetPerfPoliciesStatus(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_NvAPI_GPU_SetCoolerLevels (hashcat_ctx_t *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NvU32 coolerIndex, NV_GPU_COOLER_LEVELS *pCoolerLevels)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
NVAPI_PTR *nvapi = hwmon_ctx->hm_nvapi;
|
|
|
|
|
|
|
|
const NvAPI_Status NvAPI_rc = nvapi->NvAPI_GPU_SetCoolerLevels (hPhysicalGpu, coolerIndex, pCoolerLevels);
|
|
|
|
|
|
|
|
if (NvAPI_rc != NVAPI_OK)
|
|
|
|
{
|
|
|
|
NvAPI_ShortString string = { 0 };
|
|
|
|
|
|
|
|
hm_NvAPI_GetErrorMessage (nvapi, NvAPI_rc, string);
|
|
|
|
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "NvAPI_GPU_SetCoolerLevels(): %s", string);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined (__MINGW64__)
|
|
|
|
|
|
|
|
void __security_check_cookie (uintptr_t _StackCookie)
|
|
|
|
{
|
|
|
|
(void) _StackCookie;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __GSHandlerCheck ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// xnvctrl functions
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int xnvctrl_init (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
memset (xnvctrl, 0, sizeof (XNVCTRL_PTR));
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
|
|
|
|
|
|
|
// unsupport platform?
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
#elif defined (_POSIX)
|
|
|
|
|
|
|
|
xnvctrl->lib_x11 = dlopen ("libX11.so", RTLD_LAZY);
|
|
|
|
|
|
|
|
if (xnvctrl->lib_x11 == NULL)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
//event_log_error (hashcat_ctx, "Failed loading the X11 library: %s", dlerror());
|
|
|
|
//event_log_error (hashcat_ctx, "Please install libx11-dev package");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
xnvctrl->lib_xnvctrl = dlopen ("libXNVCtrl.so", RTLD_LAZY);
|
|
|
|
|
|
|
|
if (xnvctrl->lib_xnvctrl == NULL)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
//event_log_error (hashcat_ctx, "Failed loading the XNVCTRL library: %s", dlerror());
|
|
|
|
//event_log_error (hashcat_ctx, "Please install libxnvctrl-dev package");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
HC_LOAD_FUNC2 (xnvctrl, XOpenDisplay, XOPENDISPLAY, lib_x11, X11, 0);
|
|
|
|
HC_LOAD_FUNC2 (xnvctrl, XCloseDisplay, XCLOSEDISPLAY, lib_x11, X11, 0);
|
|
|
|
|
|
|
|
HC_LOAD_FUNC2 (xnvctrl, XNVCTRLQueryTargetAttribute, XNVCTRLQUERYTARGETATTRIBUTE, lib_xnvctrl, XNVCTRL, 0);
|
|
|
|
HC_LOAD_FUNC2 (xnvctrl, XNVCTRLSetTargetAttribute, XNVCTRLSETTARGETATTRIBUTE, lib_xnvctrl, XNVCTRL, 0);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static void xnvctrl_close (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl)
|
|
|
|
{
|
|
|
|
#if defined (_POSIX)
|
|
|
|
|
|
|
|
if (xnvctrl->lib_x11)
|
|
|
|
{
|
|
|
|
dlclose (xnvctrl->lib_x11);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xnvctrl->lib_xnvctrl)
|
|
|
|
{
|
|
|
|
dlclose (xnvctrl->lib_xnvctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (xnvctrl);
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_XNVCTRL_XOpenDisplay (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XOpenDisplay == NULL) return -1;
|
|
|
|
|
|
|
|
void *dpy = xnvctrl->XOpenDisplay (NULL);
|
|
|
|
|
|
|
|
if (dpy == NULL)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "XOpenDisplay() failed");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
xnvctrl->dpy = dpy;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static void hm_XNVCTRL_XCloseDisplay (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XCloseDisplay == NULL) return;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return;
|
|
|
|
|
|
|
|
xnvctrl->XCloseDisplay (xnvctrl->dpy);
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_XNVCTRL_get_fan_control (hashcat_ctx_t *hashcat_ctx, const int gpu, int *val)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XNVCTRLQueryTargetAttribute == NULL) return -1;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return -1;
|
|
|
|
|
|
|
|
const bool rc = xnvctrl->XNVCTRLQueryTargetAttribute (xnvctrl->dpy, NV_CTRL_TARGET_TYPE_GPU, gpu, 0, NV_CTRL_GPU_COOLER_MANUAL_CONTROL, val);
|
|
|
|
|
|
|
|
if (rc == false)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "XNVCTRLQueryTargetAttribute(NV_CTRL_GPU_COOLER_MANUAL_CONTROL) failed");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_XNVCTRL_set_fan_control (hashcat_ctx_t *hashcat_ctx, const int gpu, int val)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XNVCTRLSetTargetAttribute == NULL) return -1;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return -1;
|
|
|
|
|
|
|
|
int cur;
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
int rc = hm_XNVCTRL_get_fan_control (hashcat_ctx, gpu, &cur);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
|
|
|
|
|
|
|
xnvctrl->XNVCTRLSetTargetAttribute (xnvctrl->dpy, NV_CTRL_TARGET_TYPE_GPU, gpu, 0, NV_CTRL_GPU_COOLER_MANUAL_CONTROL, val);
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
rc = hm_XNVCTRL_get_fan_control (hashcat_ctx, gpu, &cur);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
|
|
|
|
|
|
|
if (cur != val) return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_XNVCTRL_get_core_threshold (hashcat_ctx_t *hashcat_ctx, const int gpu, int *val)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XNVCTRLQueryTargetAttribute == NULL) return -1;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return -1;
|
|
|
|
|
|
|
|
const bool rc = xnvctrl->XNVCTRLQueryTargetAttribute (xnvctrl->dpy, NV_CTRL_TARGET_TYPE_GPU, gpu, 0, NV_CTRL_GPU_CORE_THRESHOLD, val);
|
|
|
|
|
|
|
|
if (rc == false)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "XNVCTRLQueryTargetAttribute(NV_CTRL_GPU_CORE_THRESHOLD) failed");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_XNVCTRL_get_fan_speed_current (hashcat_ctx_t *hashcat_ctx, const int gpu, int *val)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XNVCTRLQueryTargetAttribute == NULL) return -1;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return -1;
|
|
|
|
|
|
|
|
const bool rc = xnvctrl->XNVCTRLQueryTargetAttribute (xnvctrl->dpy, NV_CTRL_TARGET_TYPE_COOLER, gpu, 0, NV_CTRL_THERMAL_COOLER_CURRENT_LEVEL, val);
|
|
|
|
|
|
|
|
if (rc == false)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "XNVCTRLQueryTargetAttribute(NV_CTRL_THERMAL_COOLER_CURRENT_LEVEL) failed");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_XNVCTRL_get_fan_speed_target (hashcat_ctx_t *hashcat_ctx, const int gpu, int *val)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XNVCTRLQueryTargetAttribute == NULL) return -1;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return -1;
|
|
|
|
|
|
|
|
const int rc = xnvctrl->XNVCTRLQueryTargetAttribute (xnvctrl->dpy, NV_CTRL_TARGET_TYPE_COOLER, gpu, 0, NV_CTRL_THERMAL_COOLER_LEVEL, val);
|
|
|
|
|
|
|
|
if (rc == false)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s", "XNVCTRLQueryTargetAttribute(NV_CTRL_THERMAL_COOLER_LEVEL) failed");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_XNVCTRL_set_fan_speed_target (hashcat_ctx_t *hashcat_ctx, const int gpu, int val)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
XNVCTRL_PTR *xnvctrl = hwmon_ctx->hm_xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl->XNVCTRLSetTargetAttribute == NULL) return -1;
|
|
|
|
|
|
|
|
if (xnvctrl->dpy == NULL) return -1;
|
|
|
|
|
|
|
|
int cur;
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
int rc = hm_XNVCTRL_get_fan_speed_target (hashcat_ctx, gpu, &cur);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
|
|
|
|
|
|
|
xnvctrl->XNVCTRLSetTargetAttribute (xnvctrl->dpy, NV_CTRL_TARGET_TYPE_COOLER, gpu, 0, NV_CTRL_THERMAL_COOLER_LEVEL, val);
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
rc = hm_XNVCTRL_get_fan_speed_target (hashcat_ctx, gpu, &cur);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
|
|
|
|
|
|
|
if (cur != val) return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ADL functions
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int adl_init (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
memset (adl, 0, sizeof (ADL_PTR));
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
|
|
|
adl->lib = hc_dlopen ("atiadlxx.dll");
|
|
|
|
|
|
|
|
if (!adl->lib)
|
|
|
|
{
|
|
|
|
adl->lib = hc_dlopen ("atiadlxy.dll");
|
|
|
|
}
|
|
|
|
#elif defined (_POSIX)
|
|
|
|
adl->lib = hc_dlopen ("libatiadlxx.so", RTLD_NOW);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!adl->lib)
|
|
|
|
{
|
|
|
|
//if (user_options->quiet == false)
|
2016-10-11 08:55:02 +00:00
|
|
|
// event_log_error (hashcat_ctx, "load ADL library failed, proceed without ADL HWMon enabled");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Main_Control_Destroy, ADL_MAIN_CONTROL_DESTROY, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Main_Control_Create, ADL_MAIN_CONTROL_CREATE, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Adapter_NumberOfAdapters_Get, ADL_ADAPTER_NUMBEROFADAPTERS_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Adapter_AdapterInfo_Get, ADL_ADAPTER_ADAPTERINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Display_DisplayInfo_Get, ADL_DISPLAY_DISPLAYINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Adapter_ID_Get, ADL_ADAPTER_ID_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Adapter_VideoBiosInfo_Get, ADL_ADAPTER_VIDEOBIOSINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_ThermalDevices_Enum, ADL_OVERDRIVE5_THERMALDEVICES_ENUM, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_Temperature_Get, ADL_OVERDRIVE5_TEMPERATURE_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_Temperature_Get, ADL_OVERDRIVE6_TEMPERATURE_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_CurrentActivity_Get, ADL_OVERDRIVE5_CURRENTACTIVITY_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_FanSpeedInfo_Get, ADL_OVERDRIVE5_FANSPEEDINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_FanSpeed_Get, ADL_OVERDRIVE5_FANSPEED_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_FanSpeed_Get, ADL_OVERDRIVE6_FANSPEED_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_FanSpeed_Set, ADL_OVERDRIVE5_FANSPEED_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_FanSpeed_Set, ADL_OVERDRIVE6_FANSPEED_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_FanSpeedToDefault_Set, ADL_OVERDRIVE5_FANSPEEDTODEFAULT_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_ODParameters_Get, ADL_OVERDRIVE5_ODPARAMETERS_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_ODPerformanceLevels_Get, ADL_OVERDRIVE5_ODPERFORMANCELEVELS_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive5_ODPerformanceLevels_Set, ADL_OVERDRIVE5_ODPERFORMANCELEVELS_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_PowerControlInfo_Get, ADL_OVERDRIVE6_POWERCONTROLINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_PowerControl_Get, ADL_OVERDRIVE6_POWERCONTROL_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_PowerControl_Set, ADL_OVERDRIVE6_POWERCONTROL_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Adapter_Active_Get, ADL_ADAPTER_ACTIVE_GET, ADL, 0)
|
|
|
|
//HC_LOAD_FUNC(adl, ADL_DisplayEnable_Set, ADL_DISPLAYENABLE_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive_Caps, ADL_OVERDRIVE_CAPS, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_PowerControl_Caps, ADL_OVERDRIVE6_POWERCONTROL_CAPS, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_Capabilities_Get, ADL_OVERDRIVE6_CAPABILITIES_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_StateInfo_Get, ADL_OVERDRIVE6_STATEINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_CurrentStatus_Get, ADL_OVERDRIVE6_CURRENTSTATUS_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_State_Set, ADL_OVERDRIVE6_STATE_SET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_TargetTemperatureData_Get, ADL_OVERDRIVE6_TARGETTEMPERATUREDATA_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_TargetTemperatureRangeInfo_Get, ADL_OVERDRIVE6_TARGETTEMPERATURERANGEINFO_GET, ADL, 0)
|
|
|
|
HC_LOAD_FUNC(adl, ADL_Overdrive6_FanSpeed_Reset, ADL_OVERDRIVE6_FANSPEED_RESET, ADL, 0)
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static void adl_close (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
if (adl)
|
|
|
|
{
|
|
|
|
if (adl->lib)
|
|
|
|
hc_dlclose (adl->lib);
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (adl);
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Main_Control_Destroy (hashcat_ctx_t *hashcat_ctx)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Main_Control_Destroy ();
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Main_Control_Destroy(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Main_Control_Create (hashcat_ctx_t *hashcat_ctx, ADL_MAIN_MALLOC_CALLBACK callback, int iEnumConnectedAdapters)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Main_Control_Create (callback, iEnumConnectedAdapters);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Main_Control_Create(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Adapter_NumberOfAdapters_Get (hashcat_ctx_t *hashcat_ctx, int *lpNumAdapters)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Adapter_NumberOfAdapters_Get (lpNumAdapters);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Adapter_NumberOfAdapters_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Adapter_AdapterInfo_Get (hashcat_ctx_t *hashcat_ctx, LPAdapterInfo lpInfo, int iInputSize)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Adapter_AdapterInfo_Get (lpInfo, iInputSize);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Adapter_AdapterInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Display_DisplayInfo_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *iNumDisplays, ADLDisplayInfo **lppInfo, int iForceDetect)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Display_DisplayInfo_Get (iAdapterIndex, iNumDisplays, lppInfo, iForceDetect);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Display_DisplayInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Adapter_ID_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *lpAdapterID)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Adapter_ID_Get (iAdapterIndex, lpAdapterID);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Adapter_ID_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ADL_rc;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Adapter_VideoBiosInfo_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLBiosInfo *lpBiosInfo)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Adapter_VideoBiosInfo_Get (iAdapterIndex, lpBiosInfo);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Adapter_VideoBiosInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ADL_rc;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Overdrive_ThermalDevices_Enum (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iThermalControllerIndex, ADLThermalControllerInfo *lpThermalControllerInfo)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_ThermalDevices_Enum (iAdapterIndex, iThermalControllerIndex, lpThermalControllerInfo);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_ThermalDevices_Enum(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive5_Temperature_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iThermalControllerIndex, ADLTemperature *lpTemperature)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_Temperature_Get (iAdapterIndex, iThermalControllerIndex, lpTemperature);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_Temperature_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive6_Temperature_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *iTemperature)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_Temperature_Get (iAdapterIndex, iTemperature);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_Temperature_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_CurrentActivity_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLPMActivity *lpActivity)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_CurrentActivity_Get (iAdapterIndex, lpActivity);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_CurrentActivity_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive5_FanSpeedInfo_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iThermalControllerIndex, ADLFanSpeedInfo *lpFanSpeedInfo)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_FanSpeedInfo_Get (iAdapterIndex, iThermalControllerIndex, lpFanSpeedInfo);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_FanSpeedInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ADL_rc;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive5_FanSpeed_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iThermalControllerIndex, ADLFanSpeedValue *lpFanSpeedValue)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_FanSpeed_Get (iAdapterIndex, iThermalControllerIndex, lpFanSpeedValue);
|
|
|
|
|
|
|
|
if ((ADL_rc != ADL_OK) && (ADL_rc != ADL_ERR_NOT_SUPPORTED)) // exception allowed only here
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_FanSpeed_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive6_FanSpeed_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLOD6FanSpeedInfo *lpFanSpeedInfo)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_FanSpeed_Get (iAdapterIndex, lpFanSpeedInfo);
|
|
|
|
|
|
|
|
if ((ADL_rc != ADL_OK) && (ADL_rc != ADL_ERR_NOT_SUPPORTED)) // exception allowed only here
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_FanSpeed_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive5_FanSpeed_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iThermalControllerIndex, ADLFanSpeedValue *lpFanSpeedValue)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_FanSpeed_Set (iAdapterIndex, iThermalControllerIndex, lpFanSpeedValue);
|
|
|
|
|
|
|
|
if ((ADL_rc != ADL_OK) && (ADL_rc != ADL_ERR_NOT_SUPPORTED)) // exception allowed only here
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_FanSpeed_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive6_FanSpeed_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLOD6FanSpeedValue *lpFanSpeedValue)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_FanSpeed_Set (iAdapterIndex, lpFanSpeedValue);
|
|
|
|
|
|
|
|
if ((ADL_rc != ADL_OK) && (ADL_rc != ADL_ERR_NOT_SUPPORTED)) // exception allowed only here
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_FanSpeed_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive5_FanSpeedToDefault_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iThermalControllerIndex)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_FanSpeedToDefault_Set (iAdapterIndex, iThermalControllerIndex);
|
|
|
|
|
|
|
|
if ((ADL_rc != ADL_OK) && (ADL_rc != ADL_ERR_NOT_SUPPORTED)) // exception allowed only here
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_FanSpeedToDefault_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Overdrive_ODParameters_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLODParameters *lpOdParameters)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_ODParameters_Get (iAdapterIndex, lpOdParameters);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_ODParameters_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Overdrive_ODPerformanceLevels_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int iDefault, ADLODPerformanceLevels *lpOdPerformanceLevels)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_ODPerformanceLevels_Get (iAdapterIndex, iDefault, lpOdPerformanceLevels);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_ODPerformanceLevels_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Overdrive_ODPerformanceLevels_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLODPerformanceLevels *lpOdPerformanceLevels)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive5_ODPerformanceLevels_Set (iAdapterIndex, lpOdPerformanceLevels);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive5_ODPerformanceLevels_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_PowerControlInfo_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLOD6PowerControlInfo *powertune)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_PowerControlInfo_Get (iAdapterIndex, powertune);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_PowerControlInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_PowerControl_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *iCurrentValue)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
int default_value = 0;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_PowerControl_Get (iAdapterIndex, iCurrentValue, &default_value);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_PowerControl_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_PowerControl_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int level)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
ADLOD6PowerControlInfo powertune = {0, 0, 0, 0, 0};
|
|
|
|
|
|
|
|
const int hm_rc = hm_ADL_Overdrive_PowerControlInfo_Get (hashcat_ctx, iAdapterIndex, &powertune);
|
|
|
|
|
|
|
|
if (hm_rc == -1) return -1;
|
|
|
|
|
|
|
|
int min = powertune.iMinValue;
|
|
|
|
int max = powertune.iMaxValue;
|
|
|
|
int step = powertune.iStepValue;
|
|
|
|
|
|
|
|
if (level < min || level > max)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL PowerControl level invalid");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (level % step != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL PowerControl step invalid");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_PowerControl_Set (iAdapterIndex, level);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_PowerControl_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Adapter_Active_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *lpStatus)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Adapter_Active_Get (iAdapterIndex, lpStatus);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Adapter_Active_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
/*
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_DisplayEnable_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *lpDisplayIndexList, int iDisplayListSize, int bPersistOnly)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_DisplayEnable_Set (iAdapterIndex, lpDisplayIndexList, iDisplayListSize, bPersistOnly);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_DisplayEnable_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_Caps (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *od_supported, int *od_enabled, int *od_version)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive_Caps (iAdapterIndex, od_supported, od_enabled, od_version);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive_Caps(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive6_PowerControl_Caps (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *lpSupported)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_PowerControl_Caps (iAdapterIndex, lpSupported);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_PowerControl_Caps(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_Capabilities_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLOD6Capabilities *caps)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_Capabilities_Get (iAdapterIndex, caps);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_Capabilities_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_StateInfo_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int type, ADLOD6MemClockState *state)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_StateInfo_Get (iAdapterIndex, type, state);
|
|
|
|
|
|
|
|
if (ADL_rc == ADL_OK)
|
|
|
|
{
|
|
|
|
// check if clocks are okay with step sizes
|
|
|
|
// if not run a little hack: adjust the clocks to nearest clock size (clock down just a little bit)
|
|
|
|
|
|
|
|
ADLOD6Capabilities caps;
|
|
|
|
|
|
|
|
const int hm_rc = hm_ADL_Overdrive_Capabilities_Get (hashcat_ctx, iAdapterIndex, &caps);
|
|
|
|
|
|
|
|
if (hm_rc == -1) return -1;
|
|
|
|
|
|
|
|
if (state->state.aLevels[0].iEngineClock % caps.sEngineClockRange.iStep != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL engine step size invalid for performance level 1");
|
|
|
|
|
|
|
|
//state->state.aLevels[0].iEngineClock -= state->state.aLevels[0].iEngineClock % caps.sEngineClockRange.iStep;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->state.aLevels[1].iEngineClock % caps.sEngineClockRange.iStep != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL engine step size invalid for performance level 2");
|
|
|
|
|
|
|
|
//state->state.aLevels[1].iEngineClock -= state->state.aLevels[1].iEngineClock % caps.sEngineClockRange.iStep;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->state.aLevels[0].iMemoryClock % caps.sMemoryClockRange.iStep != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL memory step size invalid for performance level 1");
|
|
|
|
|
|
|
|
//state->state.aLevels[0].iMemoryClock -= state->state.aLevels[0].iMemoryClock % caps.sMemoryClockRange.iStep;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->state.aLevels[1].iMemoryClock % caps.sMemoryClockRange.iStep != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL memory step size invalid for performance level 2");
|
|
|
|
|
|
|
|
//state->state.aLevels[1].iMemoryClock -= state->state.aLevels[1].iMemoryClock % caps.sMemoryClockRange.iStep;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_StateInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Overdrive_CurrentStatus_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLOD6CurrentStatus *status)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_CurrentStatus_Get (iAdapterIndex, status);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_CurrentStatus_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive_State_Set (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int type, ADLOD6StateInfo *state)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
// sanity checks
|
|
|
|
|
|
|
|
ADLOD6Capabilities caps;
|
|
|
|
|
|
|
|
const int hm_rc = hm_ADL_Overdrive_Capabilities_Get (hashcat_ctx, iAdapterIndex, &caps);
|
|
|
|
|
|
|
|
if (hm_rc == -1) return -1;
|
|
|
|
|
|
|
|
if (state->aLevels[0].iEngineClock < caps.sEngineClockRange.iMin || state->aLevels[1].iEngineClock > caps.sEngineClockRange.iMax)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL engine clock outside valid range");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->aLevels[1].iEngineClock % caps.sEngineClockRange.iStep != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL engine step size invalid");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->aLevels[0].iMemoryClock < caps.sMemoryClockRange.iMin || state->aLevels[1].iMemoryClock > caps.sMemoryClockRange.iMax)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL memory clock outside valid range");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->aLevels[1].iMemoryClock % caps.sMemoryClockRange.iStep != 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "ADL memory step size invalid");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_State_Set (iAdapterIndex, type, state);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_State_Set(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive6_TargetTemperatureData_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, int *cur_temp, int *default_temp)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_TargetTemperatureData_Get (iAdapterIndex, cur_temp, default_temp);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_TargetTemperatureData_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
/*
|
|
|
|
static int hm_ADL_Overdrive6_TargetTemperatureRangeInfo_Get (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex, ADLOD6ParameterRange *lpTargetTemperatureInfo)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_TargetTemperatureRangeInfo_Get (iAdapterIndex, lpTargetTemperatureInfo);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_TargetTemperatureRangeInfo_Get(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static int hm_ADL_Overdrive6_FanSpeed_Reset (hashcat_ctx_t *hashcat_ctx, int iAdapterIndex)
|
2016-10-09 20:41:55 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
ADL_PTR *adl = hwmon_ctx->hm_adl;
|
|
|
|
|
|
|
|
const int ADL_rc = adl->ADL_Overdrive6_FanSpeed_Reset (iAdapterIndex);
|
|
|
|
|
|
|
|
if (ADL_rc != ADL_OK)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "ADL_Overdrive6_FanSpeed_Reset(): %d", ADL_rc);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// general functions
|
|
|
|
|
|
|
|
static int get_adapters_num_adl (hashcat_ctx_t *hashcat_ctx, int *iNumberAdapters)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
const int hm_rc = hm_ADL_Adapter_NumberOfAdapters_Get (hashcat_ctx, iNumberAdapters);
|
|
|
|
|
|
|
|
if (hm_rc == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
if (iNumberAdapters == 0)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "No ADL adapters found");
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
static int hm_get_adapter_info_adl (hashcat_ctx_t *hashcat_ctx, LPAdapterInfo lpAdapterInfo, const size_t AdapterInfoSize)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-13 08:07:04 +00:00
|
|
|
return hm_ADL_Adapter_AdapterInfo_Get (hashcat_ctx, lpAdapterInfo, AdapterInfoSize);
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
static int hm_get_adapter_index_nvapi (hashcat_ctx_t *hashcat_ctx, HM_ADAPTER_NVAPI *nvapiGPUHandle)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
NvU32 pGpuCount;
|
|
|
|
|
2016-10-29 22:21:05 +00:00
|
|
|
if (hm_NvAPI_EnumPhysicalGPUs (hashcat_ctx, nvapiGPUHandle, &pGpuCount) == -1) return 0;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
if (pGpuCount == 0)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
event_log_error (hashcat_ctx, "No NvAPI adapters found");
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (pGpuCount);
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
static int hm_get_adapter_index_nvml (hashcat_ctx_t *hashcat_ctx, HM_ADAPTER_NVML *nvmlGPUHandle)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-11 10:18:06 +00:00
|
|
|
unsigned int deviceCount = 0;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
hm_NVML_nvmlDeviceGetCount (hashcat_ctx, &deviceCount);
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
if (deviceCount == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "No NVML adapters found");
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
return 0;
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
for (u32 i = 0; i < deviceCount; i++)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-11 10:18:06 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetHandleByIndex (hashcat_ctx, i, &nvmlGPUHandle[i]) == -1) break;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
// can be used to determine if the device by index matches the cuda device by index
|
|
|
|
// char name[100]; memset (name, 0, sizeof (name));
|
|
|
|
// hm_NVML_nvmlDeviceGetName (hashcat_ctx, nvGPUHandle[i], name, sizeof (name) - 1);
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 10:18:06 +00:00
|
|
|
return (deviceCount);
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void hm_sort_adl_adapters_by_busid_devid (u32 *valid_adl_device_list, int num_adl_adapters, LPAdapterInfo lpAdapterInfo)
|
|
|
|
{
|
|
|
|
// basically bubble sort
|
|
|
|
|
|
|
|
for (int i = 0; i < num_adl_adapters; i++)
|
|
|
|
{
|
|
|
|
for (int j = 0; j < num_adl_adapters - 1; j++)
|
|
|
|
{
|
|
|
|
// get info of adapter [x]
|
|
|
|
|
|
|
|
u32 adapter_index_x = valid_adl_device_list[j];
|
|
|
|
AdapterInfo info_x = lpAdapterInfo[adapter_index_x];
|
|
|
|
|
|
|
|
u32 bus_num_x = info_x.iBusNumber;
|
|
|
|
u32 dev_num_x = info_x.iDeviceNumber;
|
|
|
|
|
|
|
|
// get info of adapter [y]
|
|
|
|
|
|
|
|
u32 adapter_index_y = valid_adl_device_list[j + 1];
|
|
|
|
AdapterInfo info_y = lpAdapterInfo[adapter_index_y];
|
|
|
|
|
|
|
|
u32 bus_num_y = info_y.iBusNumber;
|
|
|
|
u32 dev_num_y = info_y.iDeviceNumber;
|
|
|
|
|
2016-10-04 04:35:49 +00:00
|
|
|
u32 need_swap = 0;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
if (bus_num_y < bus_num_x)
|
|
|
|
{
|
|
|
|
need_swap = 1;
|
|
|
|
}
|
|
|
|
else if (bus_num_y == bus_num_x)
|
|
|
|
{
|
|
|
|
if (dev_num_y < dev_num_x)
|
|
|
|
{
|
|
|
|
need_swap = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_swap == 1)
|
|
|
|
{
|
|
|
|
u32 temp = valid_adl_device_list[j + 1];
|
|
|
|
|
|
|
|
valid_adl_device_list[j + 1] = valid_adl_device_list[j];
|
|
|
|
valid_adl_device_list[j + 0] = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
static u32 *hm_get_list_valid_adl_adapters (hashcat_ctx_t *hashcat_ctx, int iNumberAdapters, int *num_adl_adapters, LPAdapterInfo lpAdapterInfo)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
*num_adl_adapters = 0;
|
|
|
|
|
|
|
|
u32 *adl_adapters = NULL;
|
|
|
|
|
|
|
|
int *bus_numbers = NULL;
|
|
|
|
int *device_numbers = NULL;
|
|
|
|
|
|
|
|
for (int i = 0; i < iNumberAdapters; i++)
|
|
|
|
{
|
|
|
|
AdapterInfo info = lpAdapterInfo[i];
|
|
|
|
|
|
|
|
if (strlen (info.strUDID) < 1) continue;
|
|
|
|
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (_WIN)
|
2016-09-06 11:29:50 +00:00
|
|
|
if (info.iVendorID != 1002) continue;
|
|
|
|
#else
|
|
|
|
if (info.iVendorID != 0x1002) continue;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (info.iBusNumber < 0) continue;
|
|
|
|
if (info.iDeviceNumber < 0) continue;
|
|
|
|
|
|
|
|
int found = 0;
|
|
|
|
|
|
|
|
for (int pos = 0; pos < *num_adl_adapters; pos++)
|
|
|
|
{
|
|
|
|
if ((bus_numbers[pos] == info.iBusNumber) && (device_numbers[pos] == info.iDeviceNumber))
|
|
|
|
{
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) continue;
|
|
|
|
|
|
|
|
// add it to the list
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
adl_adapters = (u32 *) hcrealloc (hashcat_ctx, adl_adapters, (*num_adl_adapters) * sizeof (int), sizeof (int)); // need check
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
adl_adapters[*num_adl_adapters] = i;
|
|
|
|
|
|
|
|
// rest is just bookkeeping
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
bus_numbers = (int*) hcrealloc (hashcat_ctx, bus_numbers, (*num_adl_adapters) * sizeof (int), sizeof (int)); // need check
|
|
|
|
device_numbers = (int*) hcrealloc (hashcat_ctx, device_numbers, (*num_adl_adapters) * sizeof (int), sizeof (int)); // need check
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
bus_numbers[*num_adl_adapters] = info.iBusNumber;
|
|
|
|
device_numbers[*num_adl_adapters] = info.iDeviceNumber;
|
|
|
|
|
|
|
|
(*num_adl_adapters)++;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (bus_numbers);
|
|
|
|
hcfree (device_numbers);
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
// sort the list by increasing bus id, device id number
|
|
|
|
|
|
|
|
hm_sort_adl_adapters_by_busid_devid (adl_adapters, *num_adl_adapters, lpAdapterInfo);
|
|
|
|
|
|
|
|
return adl_adapters;
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
static int hm_check_fanspeed_control (hashcat_ctx_t *hashcat_ctx, hm_attrs_t *hm_device, u32 *valid_adl_device_list, int num_adl_adapters, LPAdapterInfo lpAdapterInfo)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
// loop through all valid devices
|
|
|
|
|
|
|
|
for (int i = 0; i < num_adl_adapters; i++)
|
|
|
|
{
|
|
|
|
u32 adapter_index = valid_adl_device_list[i];
|
|
|
|
|
|
|
|
// get AdapterInfo
|
|
|
|
|
|
|
|
AdapterInfo info = lpAdapterInfo[adapter_index];
|
|
|
|
|
|
|
|
// unfortunately this doesn't work since bus id and dev id are not unique
|
|
|
|
// int opencl_device_index = hm_get_opencl_device_index (hm_device, num_adl_adapters, info.iBusNumber, info.iDeviceNumber);
|
|
|
|
// if (opencl_device_index == -1) continue;
|
|
|
|
|
|
|
|
int opencl_device_index = i;
|
|
|
|
|
|
|
|
// if (hm_show_performance_level (adl, info.iAdapterIndex) != 0) return -1;
|
|
|
|
|
|
|
|
// get fanspeed info
|
|
|
|
|
|
|
|
if (hm_device[opencl_device_index].od_version == 5)
|
|
|
|
{
|
|
|
|
ADLFanSpeedInfo FanSpeedInfo;
|
|
|
|
|
|
|
|
memset (&FanSpeedInfo, 0, sizeof (ADLFanSpeedInfo));
|
|
|
|
|
|
|
|
FanSpeedInfo.iSize = sizeof (ADLFanSpeedInfo);
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive5_FanSpeedInfo_Get (hashcat_ctx, info.iAdapterIndex, 0, &FanSpeedInfo) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
// check read and write capability in fanspeedinfo
|
|
|
|
|
|
|
|
if ((FanSpeedInfo.iFlags & ADL_DL_FANCTRL_SUPPORTS_PERCENT_READ) &&
|
|
|
|
(FanSpeedInfo.iFlags & ADL_DL_FANCTRL_SUPPORTS_PERCENT_WRITE))
|
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
hm_device[opencl_device_index].fan_get_supported = true;
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
hm_device[opencl_device_index].fan_get_supported = false;
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else // od_version == 6
|
|
|
|
{
|
|
|
|
ADLOD6FanSpeedInfo faninfo;
|
|
|
|
|
|
|
|
memset (&faninfo, 0, sizeof (faninfo));
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive6_FanSpeed_Get (hashcat_ctx, info.iAdapterIndex, &faninfo) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
// check read capability in fanspeedinfo
|
|
|
|
|
|
|
|
if (faninfo.iSpeedType & ADL_OD6_FANSPEED_TYPE_PERCENT)
|
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
hm_device[opencl_device_index].fan_get_supported = true;
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
hm_device[opencl_device_index].fan_get_supported = false;
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
static int hm_get_overdrive_version (hashcat_ctx_t *hashcat_ctx, hm_attrs_t *hm_device, u32 *valid_adl_device_list, int num_adl_adapters, LPAdapterInfo lpAdapterInfo)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
for (int i = 0; i < num_adl_adapters; i++)
|
|
|
|
{
|
|
|
|
u32 adapter_index = valid_adl_device_list[i];
|
|
|
|
|
|
|
|
// get AdapterInfo
|
|
|
|
|
|
|
|
AdapterInfo info = lpAdapterInfo[adapter_index];
|
|
|
|
|
|
|
|
// get overdrive version
|
|
|
|
|
|
|
|
int od_supported = 0;
|
|
|
|
int od_enabled = 0;
|
|
|
|
int od_version = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive_Caps (hashcat_ctx, info.iAdapterIndex, &od_supported, &od_enabled, &od_version) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
// store the overdrive version in hm_device
|
|
|
|
|
|
|
|
// unfortunately this doesn't work since bus id and dev id are not unique
|
|
|
|
// int opencl_device_index = hm_get_opencl_device_index (hm_device, num_adl_adapters, info.iBusNumber, info.iDeviceNumber);
|
|
|
|
// if (opencl_device_index == -1) continue;
|
|
|
|
|
|
|
|
int opencl_device_index = i;
|
|
|
|
|
|
|
|
hm_device[opencl_device_index].od_version = od_version;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
static int hm_get_adapter_index_adl (hashcat_ctx_t *hashcat_ctx, u32 *valid_adl_device_list, int num_adl_adapters, LPAdapterInfo lpAdapterInfo)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
hm_attrs_t *hm_device = hwmon_ctx->hm_device;
|
|
|
|
|
2016-09-06 11:29:50 +00:00
|
|
|
for (int i = 0; i < num_adl_adapters; i++)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
const u32 adapter_index = valid_adl_device_list[i];
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
// get AdapterInfo
|
|
|
|
|
|
|
|
AdapterInfo info = lpAdapterInfo[adapter_index];
|
|
|
|
|
|
|
|
// store the iAdapterIndex in hm_device
|
|
|
|
|
|
|
|
// unfortunately this doesn't work since bus id and dev id are not unique
|
|
|
|
// int opencl_device_index = hm_get_opencl_device_index (hm_device, num_adl_adapters, info.iBusNumber, info.iDeviceNumber);
|
|
|
|
// if (opencl_device_index == -1) continue;
|
|
|
|
|
|
|
|
int opencl_device_index = i;
|
|
|
|
|
|
|
|
hm_device[opencl_device_index].adl = info.iAdapterIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
return num_adl_adapters;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_threshold_slowdown_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
else if (hwmon_ctx->hm_device[device_id].od_version == 6)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
int CurrentValue = 0;
|
|
|
|
int DefaultValue = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive6_TargetTemperatureData_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &CurrentValue, &DefaultValue) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
// the return value has never been tested since hm_ADL_Overdrive6_TargetTemperatureData_Get() never worked on any system. expect problems.
|
|
|
|
|
|
|
|
return DefaultValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
int target = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetTemperatureThreshold (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, NVML_TEMPERATURE_THRESHOLD_SLOWDOWN, (unsigned int *) &target) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_threshold_shutdown_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
else if (hwmon_ctx->hm_device[device_id].od_version == 6)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
int target = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetTemperatureThreshold (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, NVML_TEMPERATURE_THRESHOLD_SHUTDOWN, (unsigned int *) &target) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_temperature_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLTemperature Temperature;
|
|
|
|
|
|
|
|
Temperature.iSize = sizeof (ADLTemperature);
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive5_Temperature_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, 0, &Temperature) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return Temperature.iTemperature / 1000;
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
else if (hwmon_ctx->hm_device[device_id].od_version == 6)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
int Temperature = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive6_Temperature_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &Temperature) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return Temperature / 1000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
int temperature = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetTemperature (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, NVML_TEMPERATURE_GPU, (u32 *) &temperature) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return temperature;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_fanpolicy_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_get_supported == true)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLFanSpeedValue lpFanSpeedValue;
|
|
|
|
|
|
|
|
memset (&lpFanSpeedValue, 0, sizeof (lpFanSpeedValue));
|
|
|
|
|
|
|
|
lpFanSpeedValue.iSize = sizeof (lpFanSpeedValue);
|
|
|
|
lpFanSpeedValue.iSpeedType = ADL_DL_FANCTRL_SPEED_TYPE_PERCENT;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive5_FanSpeed_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, 0, &lpFanSpeedValue) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return (lpFanSpeedValue.iFanSpeed & ADL_DL_FANCTRL_FLAG_USER_DEFINED_SPEED) ? 0 : 1;
|
|
|
|
}
|
|
|
|
else // od_version == 6
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_fanspeed_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_get_supported == true)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLFanSpeedValue lpFanSpeedValue;
|
|
|
|
|
|
|
|
memset (&lpFanSpeedValue, 0, sizeof (lpFanSpeedValue));
|
|
|
|
|
|
|
|
lpFanSpeedValue.iSize = sizeof (lpFanSpeedValue);
|
|
|
|
lpFanSpeedValue.iSpeedType = ADL_DL_FANCTRL_SPEED_TYPE_PERCENT;
|
|
|
|
lpFanSpeedValue.iFlags = ADL_DL_FANCTRL_FLAG_USER_DEFINED_SPEED;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive5_FanSpeed_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, 0, &lpFanSpeedValue) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return lpFanSpeedValue.iFanSpeed;
|
|
|
|
}
|
|
|
|
else // od_version == 6
|
|
|
|
{
|
|
|
|
ADLOD6FanSpeedInfo faninfo;
|
|
|
|
|
|
|
|
memset (&faninfo, 0, sizeof (faninfo));
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive6_FanSpeed_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &faninfo) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return faninfo.iFanSpeedPercent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
int speed = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetFanSpeed (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, (u32 *) &speed) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return speed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_buslanes_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLPMActivity PMActivity;
|
|
|
|
|
|
|
|
PMActivity.iSize = sizeof (ADLPMActivity);
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive_CurrentActivity_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &PMActivity) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return PMActivity.iCurrentBusLanes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
unsigned int currLinkWidth;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetCurrPcieLinkWidth (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, &currLinkWidth) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return currLinkWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_utilization_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLPMActivity PMActivity;
|
|
|
|
|
|
|
|
PMActivity.iSize = sizeof (ADLPMActivity);
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive_CurrentActivity_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &PMActivity) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return PMActivity.iActivityPercent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
nvmlUtilization_t utilization;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetUtilizationRates (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, &utilization) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return utilization.gpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_memoryspeed_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLPMActivity PMActivity;
|
|
|
|
|
|
|
|
PMActivity.iSize = sizeof (ADLPMActivity);
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive_CurrentActivity_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &PMActivity) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return PMActivity.iMemoryClock / 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
unsigned int clock;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetClockInfo (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, NVML_CLOCK_MEM, &clock) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return clock;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_corespeed_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLPMActivity PMActivity;
|
|
|
|
|
|
|
|
PMActivity.iSize = sizeof (ADLPMActivity);
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive_CurrentActivity_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &PMActivity) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return PMActivity.iEngineClock / 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
unsigned int clock;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetClockInfo (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, NVML_CLOCK_SM, &clock) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return clock;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_get_throttle_with_device_id (hashcat_ctx_t *hashcat_ctx, const u32 device_id)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if ((opencl_ctx->devices_param[device_id].device_type & CL_DEVICE_TYPE_GPU) == 0) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-09-15 14:02:52 +00:00
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
/* this is triggered by mask generator, too. therefore useless
|
2016-09-06 11:29:50 +00:00
|
|
|
unsigned long long clocksThrottleReasons = 0;
|
|
|
|
unsigned long long supportedThrottleReasons = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetCurrentClocksThrottleReasons (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, &clocksThrottleReasons) == -1) return -1;
|
|
|
|
if (hm_NVML_nvmlDeviceGetSupportedClocksThrottleReasons (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, &supportedThrottleReasons) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
clocksThrottleReasons &= supportedThrottleReasons;
|
|
|
|
clocksThrottleReasons &= ~nvmlClocksThrottleReasonGpuIdle;
|
|
|
|
clocksThrottleReasons &= ~nvmlClocksThrottleReasonApplicationsClocksSetting;
|
|
|
|
clocksThrottleReasons &= ~nvmlClocksThrottleReasonUnknown;
|
|
|
|
|
2016-09-28 09:49:08 +00:00
|
|
|
if (opencl_ctx->kernel_power_final)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
clocksThrottleReasons &= ~nvmlClocksThrottleReasonHwSlowdown;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (clocksThrottleReasons != nvmlClocksThrottleReasonNone);
|
2016-10-10 09:03:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_nvapi)
|
|
|
|
{
|
|
|
|
NV_GPU_PERF_POLICIES_INFO_PARAMS_V1 perfPolicies_info;
|
|
|
|
NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1 perfPolicies_status;
|
|
|
|
|
|
|
|
memset (&perfPolicies_info, 0, sizeof (NV_GPU_PERF_POLICIES_INFO_PARAMS_V1));
|
|
|
|
memset (&perfPolicies_status, 0, sizeof (NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1));
|
|
|
|
|
|
|
|
perfPolicies_info.version = MAKE_NVAPI_VERSION (NV_GPU_PERF_POLICIES_INFO_PARAMS_V1, 1);
|
|
|
|
perfPolicies_status.version = MAKE_NVAPI_VERSION (NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1, 1);
|
|
|
|
|
|
|
|
hm_NvAPI_GPU_GetPerfPoliciesInfo (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvapi, &perfPolicies_info);
|
|
|
|
|
|
|
|
perfPolicies_status.info_value = perfPolicies_info.info_value;
|
|
|
|
|
|
|
|
hm_NvAPI_GPU_GetPerfPoliciesStatus (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvapi, &perfPolicies_status);
|
|
|
|
|
|
|
|
return perfPolicies_status.throttle & 2;
|
|
|
|
}
|
2016-09-06 11:29:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_set_fanspeed_with_device_id_adl (hashcat_ctx_t *hashcat_ctx, const u32 device_id, const int fanspeed, const int fanpolicy)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_set_supported == true)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_adl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
if (fanpolicy == 1)
|
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
ADLFanSpeedValue lpFanSpeedValue;
|
|
|
|
|
|
|
|
memset (&lpFanSpeedValue, 0, sizeof (lpFanSpeedValue));
|
|
|
|
|
|
|
|
lpFanSpeedValue.iSize = sizeof (lpFanSpeedValue);
|
|
|
|
lpFanSpeedValue.iSpeedType = ADL_DL_FANCTRL_SPEED_TYPE_PERCENT;
|
|
|
|
lpFanSpeedValue.iFlags = ADL_DL_FANCTRL_FLAG_USER_DEFINED_SPEED;
|
|
|
|
lpFanSpeedValue.iFanSpeed = fanspeed;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive5_FanSpeed_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, 0, &lpFanSpeedValue) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else // od_version == 6
|
|
|
|
{
|
|
|
|
ADLOD6FanSpeedValue fan_speed_value;
|
|
|
|
|
|
|
|
memset (&fan_speed_value, 0, sizeof (fan_speed_value));
|
|
|
|
|
|
|
|
fan_speed_value.iSpeedType = ADL_OD6_FANSPEED_TYPE_PERCENT;
|
|
|
|
fan_speed_value.iFanSpeed = fanspeed;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive6_FanSpeed_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &fan_speed_value) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 5)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive5_FanSpeedToDefault_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, 0) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else // od_version == 6
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Overdrive6_FanSpeed_Reset (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_set_fanspeed_with_device_id_nvapi (hashcat_ctx_t *hashcat_ctx, const u32 device_id, const int fanspeed, const int fanpolicy)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_set_supported == true)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_nvapi)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
|
|
|
if (fanpolicy == 1)
|
|
|
|
{
|
|
|
|
NV_GPU_COOLER_LEVELS CoolerLevels;
|
|
|
|
|
|
|
|
memset (&CoolerLevels, 0, sizeof (NV_GPU_COOLER_LEVELS));
|
|
|
|
|
|
|
|
CoolerLevels.Version = GPU_COOLER_LEVELS_VER | sizeof (NV_GPU_COOLER_LEVELS);
|
|
|
|
|
|
|
|
CoolerLevels.Levels[0].Level = fanspeed;
|
|
|
|
CoolerLevels.Levels[0].Policy = 1;
|
|
|
|
|
2016-10-29 22:21:05 +00:00
|
|
|
if (hm_NvAPI_GPU_SetCoolerLevels (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvapi, 0, &CoolerLevels) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-29 22:21:05 +00:00
|
|
|
NV_GPU_COOLER_LEVELS CoolerLevels;
|
|
|
|
|
|
|
|
memset (&CoolerLevels, 0, sizeof (NV_GPU_COOLER_LEVELS));
|
|
|
|
|
|
|
|
CoolerLevels.Version = GPU_COOLER_LEVELS_VER | sizeof (NV_GPU_COOLER_LEVELS);
|
|
|
|
|
|
|
|
CoolerLevels.Levels[0].Level = 100;
|
|
|
|
CoolerLevels.Levels[0].Policy = 0x20;
|
|
|
|
|
|
|
|
if (hm_NvAPI_GPU_SetCoolerLevels (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvapi, 0, &CoolerLevels) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hm_set_fanspeed_with_device_id_xnvctrl (hashcat_ctx_t *hashcat_ctx, const u32 device_id, const int fanspeed)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_set_supported == true)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-09-28 20:28:44 +00:00
|
|
|
if (hwmon_ctx->hm_xnvctrl)
|
2016-09-06 11:29:50 +00:00
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
if (hm_XNVCTRL_set_fan_speed_target (hashcat_ctx, hwmon_ctx->hm_device[device_id].xnvctrl, fanspeed) == -1) return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-30 17:55:27 +00:00
|
|
|
static int hm_set_fanctrl_with_device_id_xnvctrl (hashcat_ctx_t *hashcat_ctx, const u32 device_id, const int val)
|
2016-10-10 09:03:11 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
|
|
|
|
if (hwmon_ctx->enabled == false) return -1;
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_set_supported == true)
|
|
|
|
{
|
|
|
|
if (hwmon_ctx->hm_xnvctrl)
|
|
|
|
{
|
|
|
|
if (hm_XNVCTRL_set_fan_control (hashcat_ctx, hwmon_ctx->hm_device[device_id].xnvctrl, val) == -1) return -1;
|
2016-09-06 11:29:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
int hwmon_ctx_init (hashcat_ctx_t *hashcat_ctx)
|
2016-09-28 13:26:56 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-09-28 13:26:56 +00:00
|
|
|
hwmon_ctx->enabled = false;
|
|
|
|
|
2016-09-30 09:57:28 +00:00
|
|
|
if (user_options->keyspace == true) return 0;
|
|
|
|
if (user_options->left == true) return 0;
|
2016-09-30 11:14:11 +00:00
|
|
|
if (user_options->opencl_info == true) return 0;
|
2016-09-30 09:57:28 +00:00
|
|
|
if (user_options->show == true) return 0;
|
|
|
|
if (user_options->stdout_flag == true) return 0;
|
|
|
|
if (user_options->usage == true) return 0;
|
|
|
|
if (user_options->version == true) return 0;
|
|
|
|
if (user_options->gpu_temp_disable == true) return 0;
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hwmon_ctx->hm_device = (hm_attrs_t *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (hm_attrs_t)); VERIFY_PTR (hwmon_ctx->hm_device);
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
/**
|
|
|
|
* Initialize shared libraries
|
|
|
|
*/
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
ADL_PTR *adl = (ADL_PTR *) hcmalloc (hashcat_ctx, sizeof (ADL_PTR));
|
|
|
|
NVAPI_PTR *nvapi = (NVAPI_PTR *) hcmalloc (hashcat_ctx, sizeof (NVAPI_PTR));
|
|
|
|
NVML_PTR *nvml = (NVML_PTR *) hcmalloc (hashcat_ctx, sizeof (NVML_PTR));
|
|
|
|
XNVCTRL_PTR *xnvctrl = (XNVCTRL_PTR *) hcmalloc (hashcat_ctx, sizeof (XNVCTRL_PTR));
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hm_attrs_t *hm_adapters_adl = (hm_attrs_t *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (hm_attrs_t)); VERIFY_PTR (hm_adapters_adl);
|
|
|
|
hm_attrs_t *hm_adapters_nvapi = (hm_attrs_t *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (hm_attrs_t)); VERIFY_PTR (hm_adapters_nvapi);
|
|
|
|
hm_attrs_t *hm_adapters_nvml = (hm_attrs_t *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (hm_attrs_t)); VERIFY_PTR (hm_adapters_nvml);
|
|
|
|
hm_attrs_t *hm_adapters_xnvctrl = (hm_attrs_t *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (hm_attrs_t)); VERIFY_PTR (hm_adapters_xnvctrl);
|
2016-09-28 21:07:25 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (opencl_ctx->need_nvml == true)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hwmon_ctx->hm_nvml = nvml;
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
if (nvml_init (hashcat_ctx) == -1)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hwmon_ctx->hm_nvml);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
hwmon_ctx->hm_nvml = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opencl_ctx->need_nvapi == true)
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_nvapi = nvapi;
|
|
|
|
|
|
|
|
if (nvapi_init (hashcat_ctx) == -1)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hwmon_ctx->hm_nvapi);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
hwmon_ctx->hm_nvapi = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opencl_ctx->need_xnvctrl == true)
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_xnvctrl = xnvctrl;
|
|
|
|
|
|
|
|
if (xnvctrl_init (hashcat_ctx) == -1)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hwmon_ctx->hm_xnvctrl);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
hwmon_ctx->hm_xnvctrl = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opencl_ctx->need_adl == true)
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_adl = adl;
|
|
|
|
|
|
|
|
if (adl_init (hashcat_ctx) == -1)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hwmon_ctx->hm_adl);
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
hwmon_ctx->hm_adl = NULL;
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_nvml)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlInit (hashcat_ctx) == 0)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-13 08:07:04 +00:00
|
|
|
HM_ADAPTER_NVML *nvmlGPUHandle = (HM_ADAPTER_NVML *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (HM_ADAPTER_NVML)); VERIFY_PTR (nvmlGPUHandle);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
int tmp_in = hm_get_adapter_index_nvml (hashcat_ctx, nvmlGPUHandle);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
int tmp_out = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < tmp_in; i++)
|
|
|
|
{
|
2016-09-28 21:07:25 +00:00
|
|
|
hm_adapters_nvml[tmp_out++].nvml = nvmlGPUHandle[i];
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < tmp_out; i++)
|
|
|
|
{
|
|
|
|
unsigned int speed;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetFanSpeed (hashcat_ctx, hm_adapters_nvml[i].nvml, &speed) == 0) hm_adapters_nvml[i].fan_get_supported = true;
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
// doesn't seem to create any advantages
|
2016-10-09 20:41:55 +00:00
|
|
|
//hm_NVML_nvmlDeviceSetComputeMode (hashcat_ctx, hm_adapters_nvml[i].nvml, NVML_COMPUTEMODE_EXCLUSIVE_PROCESS);
|
|
|
|
//hm_NVML_nvmlDeviceSetGpuOperationMode (hashcat_ctx, hm_adapters_nvml[i].nvml, NVML_GOM_ALL_ON);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (nvmlGPUHandle);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_nvapi)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NvAPI_Initialize (hashcat_ctx) == 0)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-13 08:07:04 +00:00
|
|
|
HM_ADAPTER_NVAPI *nvGPUHandle = (HM_ADAPTER_NVAPI *) hccalloc (hashcat_ctx, DEVICES_MAX, sizeof (HM_ADAPTER_NVAPI)); VERIFY_PTR (nvGPUHandle);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
int tmp_in = hm_get_adapter_index_nvapi (hashcat_ctx, nvGPUHandle);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
int tmp_out = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < tmp_in; i++)
|
|
|
|
{
|
2016-09-28 21:07:25 +00:00
|
|
|
hm_adapters_nvapi[tmp_out++].nvapi = nvGPUHandle[i];
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (nvGPUHandle);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_xnvctrl)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_XNVCTRL_XOpenDisplay (hashcat_ctx) == 0)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-04 04:35:49 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hc_device_param_t *device_param = &opencl_ctx->devices_param[device_id];
|
|
|
|
|
|
|
|
if ((device_param->device_type & CL_DEVICE_TYPE_GPU) == 0) continue;
|
|
|
|
|
2016-09-28 21:07:25 +00:00
|
|
|
hm_adapters_xnvctrl[device_id].xnvctrl = device_id;
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
int speed = 0;
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
if (hm_XNVCTRL_get_fan_speed_current (hashcat_ctx, device_id, &speed) == 0) hm_adapters_xnvctrl[device_id].fan_get_supported = true;
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_adl)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_ADL_Main_Control_Create (hashcat_ctx, ADL_Main_Memory_Alloc, 0) == 0)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
// total number of adapters
|
|
|
|
|
|
|
|
int hm_adapters_num;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (get_adapters_num_adl (hashcat_ctx, &hm_adapters_num) == -1) return -1;
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
// adapter info
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
LPAdapterInfo lpAdapterInfo = (LPAdapterInfo) hccalloc (hashcat_ctx, hm_adapters_num, sizeof (AdapterInfo)); VERIFY_PTR (lpAdapterInfo);
|
|
|
|
|
|
|
|
const int rc_adapter_info_adl = hm_get_adapter_info_adl (hashcat_ctx, lpAdapterInfo, hm_adapters_num * sizeof (AdapterInfo));
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
if (rc_adapter_info_adl == -1) return -1;
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
// get a list (of ids of) valid/usable adapters
|
|
|
|
|
|
|
|
int num_adl_adapters = 0;
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
u32 *valid_adl_device_list = hm_get_list_valid_adl_adapters (hashcat_ctx, hm_adapters_num, &num_adl_adapters, lpAdapterInfo);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
if (num_adl_adapters > 0)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_get_adapter_index_adl (hashcat_ctx, valid_adl_device_list, num_adl_adapters, lpAdapterInfo);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_get_overdrive_version (hashcat_ctx, hm_adapters_adl, valid_adl_device_list, num_adl_adapters, lpAdapterInfo);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_check_fanspeed_control (hashcat_ctx, hm_adapters_adl, valid_adl_device_list, num_adl_adapters, lpAdapterInfo);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (valid_adl_device_list);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (lpAdapterInfo);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_adl == NULL && hwmon_ctx->hm_nvml == NULL && hwmon_ctx->hm_xnvctrl == NULL)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* looks like we have some manageable device
|
|
|
|
*/
|
|
|
|
|
2016-09-28 13:26:56 +00:00
|
|
|
hwmon_ctx->enabled = true;
|
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
/**
|
|
|
|
* save buffer required for later restores
|
|
|
|
*/
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hwmon_ctx->od_clock_mem_status = (ADLOD6MemClockState *) hccalloc (hashcat_ctx, opencl_ctx->devices_cnt, sizeof (ADLOD6MemClockState)); VERIFY_PTR (hwmon_ctx->od_clock_mem_status);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hwmon_ctx->od_power_control_status = (int *) hccalloc (hashcat_ctx, opencl_ctx->devices_cnt, sizeof (int)); VERIFY_PTR (hwmon_ctx->od_power_control_status);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hwmon_ctx->nvml_power_limit = (unsigned int *) hccalloc (hashcat_ctx, opencl_ctx->devices_cnt, sizeof (unsigned int)); VERIFY_PTR (hwmon_ctx->nvml_power_limit);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HM devices: copy
|
|
|
|
*/
|
|
|
|
|
2016-10-04 04:35:49 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hc_device_param_t *device_param = &opencl_ctx->devices_param[device_id];
|
|
|
|
|
|
|
|
if (device_param->skipped) continue;
|
|
|
|
|
|
|
|
if ((device_param->device_type & CL_DEVICE_TYPE_GPU) == 0) continue;
|
|
|
|
|
2016-10-04 04:35:49 +00:00
|
|
|
const u32 platform_devices_id = device_param->platform_devices_id;
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
if (device_param->device_vendor_id == VENDOR_ID_AMD)
|
|
|
|
{
|
2016-09-28 21:07:25 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].adl = hm_adapters_adl[platform_devices_id].adl;
|
2016-09-28 20:28:44 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].nvapi = 0;
|
|
|
|
hwmon_ctx->hm_device[device_id].nvml = 0;
|
|
|
|
hwmon_ctx->hm_device[device_id].xnvctrl = 0;
|
2016-09-28 21:07:25 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].od_version = hm_adapters_adl[platform_devices_id].od_version;
|
|
|
|
hwmon_ctx->hm_device[device_id].fan_get_supported = hm_adapters_adl[platform_devices_id].fan_get_supported;
|
2016-09-28 20:28:44 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].fan_set_supported = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (device_param->device_vendor_id == VENDOR_ID_NV)
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_device[device_id].adl = 0;
|
2016-09-28 21:07:25 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].nvapi = hm_adapters_nvapi[platform_devices_id].nvapi;
|
|
|
|
hwmon_ctx->hm_device[device_id].nvml = hm_adapters_nvml[platform_devices_id].nvml;
|
|
|
|
hwmon_ctx->hm_device[device_id].xnvctrl = hm_adapters_xnvctrl[platform_devices_id].xnvctrl;
|
2016-09-28 20:28:44 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].od_version = 0;
|
2016-09-28 21:07:25 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].fan_get_supported = hm_adapters_nvml[platform_devices_id].fan_get_supported;
|
2016-09-28 20:28:44 +00:00
|
|
|
hwmon_ctx->hm_device[device_id].fan_set_supported = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hm_adapters_adl);
|
|
|
|
hcfree (hm_adapters_nvapi);
|
|
|
|
hcfree (hm_adapters_nvml);
|
|
|
|
hcfree (hm_adapters_xnvctrl);
|
2016-09-28 21:07:25 +00:00
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
/**
|
|
|
|
* powertune on user request
|
|
|
|
*/
|
|
|
|
|
2016-10-04 04:35:49 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hc_device_param_t *device_param = &opencl_ctx->devices_param[device_id];
|
|
|
|
|
|
|
|
if (device_param->skipped) continue;
|
|
|
|
|
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Temporary fix:
|
|
|
|
* with AMD r9 295x cards it seems that we need to set the powertune value just AFTER the ocl init stuff
|
|
|
|
* otherwise after hc_clCreateContext () etc, powertune value was set back to "normal" and cards unfortunately
|
|
|
|
* were not working @ full speed (setting hm_ADL_Overdrive_PowerControl_Set () here seems to fix the problem)
|
|
|
|
* Driver / ADL bug?
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 6)
|
|
|
|
{
|
|
|
|
int ADL_rc;
|
|
|
|
|
|
|
|
// check powertune capabilities first, if not available then skip device
|
|
|
|
|
|
|
|
int powertune_supported = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive6_PowerControl_Caps (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &powertune_supported)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to get ADL PowerControl Capabilities");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// first backup current value, we will restore it later
|
|
|
|
|
|
|
|
if (powertune_supported != 0)
|
|
|
|
{
|
|
|
|
// powercontrol settings
|
|
|
|
|
|
|
|
ADLOD6PowerControlInfo powertune = {0, 0, 0, 0, 0};
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_PowerControlInfo_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &powertune)) == ADL_OK)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
ADL_rc = hm_ADL_Overdrive_PowerControl_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &hwmon_ctx->od_power_control_status[device_id]);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (ADL_rc == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to get current ADL PowerControl settings");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_PowerControl_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, powertune.iMaxValue)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to set new ADL PowerControl values");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clocks
|
|
|
|
|
|
|
|
memset (&hwmon_ctx->od_clock_mem_status[device_id], 0, sizeof (ADLOD6MemClockState));
|
|
|
|
|
|
|
|
hwmon_ctx->od_clock_mem_status[device_id].state.iNumberOfPerformanceLevels = 2;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_StateInfo_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, ADL_OD6_GETSTATEINFO_CUSTOM_PERFORMANCE, &hwmon_ctx->od_clock_mem_status[device_id])) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to get ADL memory and engine clock frequency");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query capabilities only to see if profiles were not "damaged", if so output a warning but do accept the users profile settings
|
|
|
|
|
|
|
|
ADLOD6Capabilities caps = {0, 0, 0, {0, 0, 0}, {0, 0, 0}, 0, 0};
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_Capabilities_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &caps)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to get ADL device capabilities");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int engine_clock_max = (int) (0.6666 * caps.sEngineClockRange.iMax);
|
|
|
|
int memory_clock_max = (int) (0.6250 * caps.sMemoryClockRange.iMax);
|
|
|
|
|
|
|
|
int warning_trigger_engine = (int) (0.25 * engine_clock_max);
|
|
|
|
int warning_trigger_memory = (int) (0.25 * memory_clock_max);
|
|
|
|
|
|
|
|
int engine_clock_profile_max = hwmon_ctx->od_clock_mem_status[device_id].state.aLevels[1].iEngineClock;
|
|
|
|
int memory_clock_profile_max = hwmon_ctx->od_clock_mem_status[device_id].state.aLevels[1].iMemoryClock;
|
|
|
|
|
|
|
|
// warning if profile has too low max values
|
|
|
|
|
|
|
|
if ((engine_clock_max - engine_clock_profile_max) > warning_trigger_engine)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
event_log_error (hashcat_ctx, "The custom profile seems to have too low maximum engine clock values. You therefore may not reach full performance");
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((memory_clock_max - memory_clock_profile_max) > warning_trigger_memory)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
event_log_error (hashcat_ctx, "The custom profile seems to have too low maximum memory clock values. You therefore may not reach full performance");
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
ADLOD6StateInfo *performance_state = (ADLOD6StateInfo*) hccalloc (hashcat_ctx, 1, sizeof (ADLOD6StateInfo) + sizeof (ADLOD6PerformanceLevel)); VERIFY_PTR (performance_state);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
performance_state->iNumberOfPerformanceLevels = 2;
|
|
|
|
|
|
|
|
performance_state->aLevels[0].iEngineClock = engine_clock_profile_max;
|
|
|
|
performance_state->aLevels[1].iEngineClock = engine_clock_profile_max;
|
|
|
|
performance_state->aLevels[0].iMemoryClock = memory_clock_profile_max;
|
|
|
|
performance_state->aLevels[1].iMemoryClock = memory_clock_profile_max;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_State_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, ADL_OD6_SETSTATE_PERFORMANCE, performance_state)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-12 09:45:24 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to set ADL performance state");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (performance_state);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set powertune value only
|
|
|
|
|
|
|
|
if (powertune_supported != 0)
|
|
|
|
{
|
|
|
|
// powertune set
|
|
|
|
ADLOD6PowerControlInfo powertune = {0, 0, 0, 0, 0};
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_PowerControlInfo_Get (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &powertune)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to get current ADL PowerControl settings");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((ADL_rc = hm_ADL_Overdrive_PowerControl_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, powertune.iMaxValue)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Failed to set new ADL PowerControl values");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
|
|
|
{
|
|
|
|
// first backup current value, we will restore it later
|
|
|
|
|
|
|
|
unsigned int limit;
|
|
|
|
|
|
|
|
bool powertune_supported = false;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetPowerManagementLimit (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, &limit) == NVML_SUCCESS)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
powertune_supported = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if backup worked, activate the maximum allowed
|
|
|
|
|
|
|
|
if (powertune_supported == true)
|
|
|
|
{
|
|
|
|
unsigned int minLimit;
|
|
|
|
unsigned int maxLimit;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceGetPowerManagementLimitConstraints (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, &minLimit, &maxLimit) == NVML_SUCCESS)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
if (maxLimit > 0)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hm_NVML_nvmlDeviceSetPowerManagementLimit (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, maxLimit) == NVML_SUCCESS)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
// now we can be sure we need to reset later
|
|
|
|
|
|
|
|
hwmon_ctx->nvml_power_limit[device_id] = limit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store initial fanspeed if gpu_temp_retain is enabled
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (user_options->gpu_temp_retain)
|
|
|
|
{
|
2016-10-04 04:35:49 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hc_device_param_t *device_param = &opencl_ctx->devices_param[device_id];
|
|
|
|
|
|
|
|
if (device_param->skipped) continue;
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_get_supported == true)
|
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
const int fanspeed = hm_get_fanspeed_with_device_id (hashcat_ctx, device_id);
|
|
|
|
const int fanpolicy = hm_get_fanpolicy_with_device_id (hashcat_ctx, device_id);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
// we also set it to tell the OS we take control over the fan and it's automatic controller
|
|
|
|
// if it was set to automatic. we do not control user-defined fanspeeds.
|
|
|
|
|
|
|
|
if (fanpolicy == 1)
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_device[device_id].fan_set_supported = true;
|
|
|
|
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
if (device_param->device_vendor_id == VENDOR_ID_AMD)
|
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
rc = hm_set_fanspeed_with_device_id_adl (hashcat_ctx, device_id, fanspeed, 1);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
else if (device_param->device_vendor_id == VENDOR_ID_NV)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
if (hwmon_ctx->hm_xnvctrl)
|
|
|
|
{
|
|
|
|
rc = hm_set_fanctrl_with_device_id_xnvctrl (hashcat_ctx, device_id, NV_CTRL_GPU_COOLER_MANUAL_CONTROL_TRUE);
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
if (hwmon_ctx->hm_nvapi)
|
|
|
|
{
|
|
|
|
rc = hm_set_fanspeed_with_device_id_nvapi (hashcat_ctx, device_id, fanspeed, 1);
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rc == 0)
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_device[device_id].fan_set_supported = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
//event_log_error (hashcat_ctx, "Failed to set initial fan speed for device #%u", device_id + 1);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
hwmon_ctx->hm_device[device_id].fan_set_supported = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hwmon_ctx->hm_device[device_id].fan_set_supported = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-28 13:26:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
void hwmon_ctx_destroy (hashcat_ctx_t *hashcat_ctx)
|
2016-09-28 13:26:56 +00:00
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx = hashcat_ctx->hwmon_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
if (hwmon_ctx->enabled == false) return;
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
// reset default fan speed
|
|
|
|
|
|
|
|
if (user_options->gpu_temp_retain)
|
|
|
|
{
|
2016-10-04 04:35:49 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hc_device_param_t *device_param = &opencl_ctx->devices_param[device_id];
|
|
|
|
|
|
|
|
if (device_param->skipped) continue;
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_device[device_id].fan_set_supported == true)
|
|
|
|
{
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
if (device_param->device_vendor_id == VENDOR_ID_AMD)
|
|
|
|
{
|
2016-10-06 09:10:00 +00:00
|
|
|
rc = hm_set_fanspeed_with_device_id_adl (hashcat_ctx, device_id, 100, 0);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
else if (device_param->device_vendor_id == VENDOR_ID_NV)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
if (hwmon_ctx->hm_xnvctrl)
|
|
|
|
{
|
|
|
|
rc = hm_set_fanctrl_with_device_id_xnvctrl (hashcat_ctx, device_id, NV_CTRL_GPU_COOLER_MANUAL_CONTROL_FALSE);
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
if (hwmon_ctx->hm_nvapi)
|
|
|
|
{
|
|
|
|
rc = hm_set_fanspeed_with_device_id_nvapi (hashcat_ctx, device_id, 100, 0);
|
|
|
|
}
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
2016-10-29 22:21:05 +00:00
|
|
|
if (rc == -1) event_log_error (hashcat_ctx, "Failed to restore default fan speed and policy for device #%u", device_id + 1);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// reset power tuning
|
|
|
|
|
2016-10-04 04:35:49 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
|
|
|
hc_device_param_t *device_param = &opencl_ctx->devices_param[device_id];
|
|
|
|
|
|
|
|
if (device_param->skipped) continue;
|
|
|
|
|
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_AMD)
|
|
|
|
{
|
|
|
|
if (hwmon_ctx->hm_device[device_id].od_version == 6)
|
|
|
|
{
|
|
|
|
// check powertune capabilities first, if not available then skip device
|
|
|
|
|
|
|
|
int powertune_supported = 0;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((hm_ADL_Overdrive6_PowerControl_Caps (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, &powertune_supported)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-12 09:45:24 +00:00
|
|
|
//event_log_error (hashcat_ctx, "Failed to get ADL PowerControl Capabilities");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (powertune_supported != 0)
|
|
|
|
{
|
|
|
|
// powercontrol settings
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((hm_ADL_Overdrive_PowerControl_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, hwmon_ctx->od_power_control_status[device_id])) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-12 09:45:24 +00:00
|
|
|
//event_log_error (hashcat_ctx, "Failed to restore the ADL PowerControl values");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// clocks
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
ADLOD6StateInfo *performance_state = (ADLOD6StateInfo*) hccalloc (hashcat_ctx, 1, sizeof (ADLOD6StateInfo) + sizeof (ADLOD6PerformanceLevel));
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
performance_state->iNumberOfPerformanceLevels = 2;
|
|
|
|
|
|
|
|
performance_state->aLevels[0].iEngineClock = hwmon_ctx->od_clock_mem_status[device_id].state.aLevels[0].iEngineClock;
|
|
|
|
performance_state->aLevels[1].iEngineClock = hwmon_ctx->od_clock_mem_status[device_id].state.aLevels[1].iEngineClock;
|
|
|
|
performance_state->aLevels[0].iMemoryClock = hwmon_ctx->od_clock_mem_status[device_id].state.aLevels[0].iMemoryClock;
|
|
|
|
performance_state->aLevels[1].iMemoryClock = hwmon_ctx->od_clock_mem_status[device_id].state.aLevels[1].iMemoryClock;
|
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if ((hm_ADL_Overdrive_State_Set (hashcat_ctx, hwmon_ctx->hm_device[device_id].adl, ADL_OD6_SETSTATE_PERFORMANCE, performance_state)) == -1)
|
2016-09-28 20:28:44 +00:00
|
|
|
{
|
2016-10-23 12:49:40 +00:00
|
|
|
//event_log_error (hashcat_ctx, "Failed to restore ADL performance state");
|
2016-09-28 20:28:44 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (performance_state);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opencl_ctx->devices_param[device_id].device_vendor_id == VENDOR_ID_NV)
|
|
|
|
{
|
|
|
|
unsigned int power_limit = hwmon_ctx->nvml_power_limit[device_id];
|
|
|
|
|
|
|
|
if (power_limit > 0)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_NVML_nvmlDeviceSetPowerManagementLimit (hashcat_ctx, hwmon_ctx->hm_device[device_id].nvml, power_limit);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// unload shared libraries
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_nvml)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_NVML_nvmlShutdown (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
nvml_close (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_nvapi)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_NvAPI_Unload (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
nvapi_close (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_xnvctrl)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_XNVCTRL_XCloseDisplay (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
xnvctrl_close (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hwmon_ctx->hm_adl)
|
|
|
|
{
|
2016-10-09 20:41:55 +00:00
|
|
|
hm_ADL_Main_Control_Destroy (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
adl_close (hashcat_ctx);
|
2016-09-28 20:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// free memory
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hwmon_ctx->nvml_power_limit);
|
|
|
|
hcfree (hwmon_ctx->od_power_control_status);
|
|
|
|
hcfree (hwmon_ctx->od_clock_mem_status);
|
2016-09-28 20:28:44 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hwmon_ctx->hm_device);
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
memset (hwmon_ctx, 0, sizeof (hwmon_ctx_t));
|
2016-09-28 13:26:56 +00:00
|
|
|
}
|