1 /**
2  * Author......: See docs/credits.txt
3  * License.....: MIT
4  */
5 
6 #ifndef _EXT_NVAPI_H
7 #define _EXT_NVAPI_H
8 
9 /**
10  * Declarations from nvapi.h and subheaders
11  */
12 
13 #define NVAPI_INTERFACE extern NvAPI_Status
14 
15 typedef unsigned int NvU32;
16 typedef   signed int NvS32;
17 
18 #define NV_DECLARE_HANDLE(name) struct name##__ { int unused; }; typedef struct name##__ *name
19 
20 NV_DECLARE_HANDLE(NvPhysicalGpuHandle);            // A single physical GPU
21 
22 #define NVAPI_GENERIC_STRING_MAX    4096
23 #define NVAPI_LONG_STRING_MAX       256
24 #define NVAPI_SHORT_STRING_MAX      64
25 
26 typedef char NvAPI_String[NVAPI_GENERIC_STRING_MAX];
27 typedef char NvAPI_LongString[NVAPI_LONG_STRING_MAX];
28 typedef char NvAPI_ShortString[NVAPI_SHORT_STRING_MAX];
29 
30 #define MAKE_NVAPI_VERSION(typeName,ver) (NvU32)(sizeof(typeName) | ((ver)<<16))
31 
32 #define NVAPI_MAX_PHYSICAL_GPUS     64
33 
34 typedef enum _NvAPI_Status
35 {
36     NVAPI_OK                                    =  0,      // Success. Request is completed.
37     NVAPI_ERROR                                 = -1,      // Generic error
38     NVAPI_LIBRARY_NOT_FOUND                     = -2,      // NVAPI support library cannot be loaded.
39     NVAPI_NO_IMPLEMENTATION                     = -3,      // not implemented in current driver installation
40     NVAPI_API_NOT_INITIALIZED                   = -4,      // NvAPI_Initialize has not been called (successfully)
41     NVAPI_INVALID_ARGUMENT                      = -5,      // The argument/parameter value is not valid or NULL.
42     NVAPI_NVIDIA_DEVICE_NOT_FOUND               = -6,      // No NVIDIA display driver, or NVIDIA GPU driving a display, was found.
43     NVAPI_END_ENUMERATION                       = -7,      // No more items to enumerate
44     NVAPI_INVALID_HANDLE                        = -8,      // Invalid handle
45     NVAPI_INCOMPATIBLE_STRUCT_VERSION           = -9,      // An argument's structure version is not supported
46     NVAPI_HANDLE_INVALIDATED                    = -10,     // The handle is no longer valid (likely due to GPU or display re-configuration)
47     NVAPI_OPENGL_CONTEXT_NOT_CURRENT            = -11,     // No NVIDIA OpenGL context is current (but needs to be)
48     NVAPI_INVALID_POINTER                       = -14,     // An invalid pointer, usually NULL, was passed as a parameter
49     NVAPI_NO_GL_EXPERT                          = -12,     // OpenGL Expert is not supported by the current drivers
50     NVAPI_INSTRUMENTATION_DISABLED              = -13,     // OpenGL Expert is supported, but driver instrumentation is currently disabled
51     NVAPI_NO_GL_NSIGHT                          = -15,     // OpenGL does not support Nsight
52 
53     NVAPI_EXPECTED_LOGICAL_GPU_HANDLE           = -100,    // Expected a logical GPU handle for one or more parameters
54     NVAPI_EXPECTED_PHYSICAL_GPU_HANDLE          = -101,    // Expected a physical GPU handle for one or more parameters
55     NVAPI_EXPECTED_DISPLAY_HANDLE               = -102,    // Expected an NV display handle for one or more parameters
56     NVAPI_INVALID_COMBINATION                   = -103,    // The combination of parameters is not valid.
57     NVAPI_NOT_SUPPORTED                         = -104,    // Requested feature is not supported in the selected GPU
58     NVAPI_PORTID_NOT_FOUND                      = -105,    // No port ID was found for the I2C transaction
59     NVAPI_EXPECTED_UNATTACHED_DISPLAY_HANDLE    = -106,    // Expected an unattached display handle as one of the input parameters.
60     NVAPI_INVALID_PERF_LEVEL                    = -107,    // Invalid perf level
61     NVAPI_DEVICE_BUSY                           = -108,    // Device is busy; request not fulfilled
62     NVAPI_NV_PERSIST_FILE_NOT_FOUND             = -109,    // NV persist file is not found
63     NVAPI_PERSIST_DATA_NOT_FOUND                = -110,    // NV persist data is not found
64     NVAPI_EXPECTED_TV_DISPLAY                   = -111,    // Expected a TV output display
65     NVAPI_EXPECTED_TV_DISPLAY_ON_DCONNECTOR     = -112,    // Expected a TV output on the D Connector - HDTV_EIAJ4120.
66     NVAPI_NO_ACTIVE_SLI_TOPOLOGY                = -113,    // SLI is not active on this device.
67     NVAPI_SLI_RENDERING_MODE_NOTALLOWED         = -114,    // Setup of SLI rendering mode is not possible right now.
68     NVAPI_EXPECTED_DIGITAL_FLAT_PANEL           = -115,    // Expected a digital flat panel.
69     NVAPI_ARGUMENT_EXCEED_MAX_SIZE              = -116,    // Argument exceeds the expected size.
70     NVAPI_DEVICE_SWITCHING_NOT_ALLOWED          = -117,    // Inhibit is ON due to one of the flags in NV_GPU_DISPLAY_CHANGE_INHIBIT or SLI active.
71     NVAPI_TESTING_CLOCKS_NOT_SUPPORTED          = -118,    // Testing of clocks is not supported.
72     NVAPI_UNKNOWN_UNDERSCAN_CONFIG              = -119,    // The specified underscan config is from an unknown source (e.g. INF)
73     NVAPI_TIMEOUT_RECONFIGURING_GPU_TOPO        = -120,    // Timeout while reconfiguring GPUs
74     NVAPI_DATA_NOT_FOUND                        = -121,    // Requested data was not found
75     NVAPI_EXPECTED_ANALOG_DISPLAY               = -122,    // Expected an analog display
76     NVAPI_NO_VIDLINK                            = -123,    // No SLI video bridge is present
77     NVAPI_REQUIRES_REBOOT                       = -124,    // NVAPI requires a reboot for the settings to take effect
78     NVAPI_INVALID_HYBRID_MODE                   = -125,    // The function is not supported with the current Hybrid mode.
79     NVAPI_MIXED_TARGET_TYPES                    = -126,    // The target types are not all the same
80     NVAPI_SYSWOW64_NOT_SUPPORTED                = -127,    // The function is not supported from 32-bit on a 64-bit system.
81     NVAPI_IMPLICIT_SET_GPU_TOPOLOGY_CHANGE_NOT_ALLOWED = -128,    // There is no implicit GPU topology active. Use NVAPI_SetHybridMode to change topology.
82     NVAPI_REQUEST_USER_TO_CLOSE_NON_MIGRATABLE_APPS = -129,      // Prompt the user to close all non-migratable applications.
83     NVAPI_OUT_OF_MEMORY                         = -130,    // Could not allocate sufficient memory to complete the call.
84     NVAPI_WAS_STILL_DRAWING                     = -131,    // The previous operation that is transferring information to or from this surface is incomplete.
85     NVAPI_FILE_NOT_FOUND                        = -132,    // The file was not found.
86     NVAPI_TOO_MANY_UNIQUE_STATE_OBJECTS         = -133,    // There are too many unique instances of a particular type of state object.
87     NVAPI_INVALID_CALL                          = -134,    // The method call is invalid. For example, a method's parameter may not be a valid pointer.
88     NVAPI_D3D10_1_LIBRARY_NOT_FOUND             = -135,    // d3d10_1.dll cannot be loaded.
89     NVAPI_FUNCTION_NOT_FOUND                    = -136,    // Couldn't find the function in the loaded DLL.
90     NVAPI_INVALID_USER_PRIVILEGE                = -137,    // Current User is not Admin.
91     NVAPI_EXPECTED_NON_PRIMARY_DISPLAY_HANDLE   = -138,    // The handle corresponds to GDIPrimary.
92     NVAPI_EXPECTED_COMPUTE_GPU_HANDLE           = -139,    // Setting Physx GPU requires that the GPU is compute-capable.
93     NVAPI_STEREO_NOT_INITIALIZED                = -140,    // The Stereo part of NVAPI failed to initialize completely. Check if the stereo driver is installed.
94     NVAPI_STEREO_REGISTRY_ACCESS_FAILED         = -141,    // Access to stereo-related registry keys or values has failed.
95     NVAPI_STEREO_REGISTRY_PROFILE_TYPE_NOT_SUPPORTED = -142, // The given registry profile type is not supported.
96     NVAPI_STEREO_REGISTRY_VALUE_NOT_SUPPORTED   = -143,    // The given registry value is not supported.
97     NVAPI_STEREO_NOT_ENABLED                    = -144,    // Stereo is not enabled and the function needed it to execute completely.
98     NVAPI_STEREO_NOT_TURNED_ON                  = -145,    // Stereo is not turned on and the function needed it to execute completely.
99     NVAPI_STEREO_INVALID_DEVICE_INTERFACE       = -146,    // Invalid device interface.
100     NVAPI_STEREO_PARAMETER_OUT_OF_RANGE         = -147,    // Separation percentage or JPEG image capture quality is out of [0-100] range.
101     NVAPI_STEREO_FRUSTUM_ADJUST_MODE_NOT_SUPPORTED = -148, // The given frustum adjust mode is not supported.
102     NVAPI_TOPO_NOT_POSSIBLE                     = -149,    // The mosaic topology is not possible given the current state of the hardware.
103     NVAPI_MODE_CHANGE_FAILED                    = -150,    // An attempt to do a display resolution mode change has failed.
104     NVAPI_D3D11_LIBRARY_NOT_FOUND               = -151,    // d3d11.dll/d3d11_beta.dll cannot be loaded.
105     NVAPI_INVALID_ADDRESS                       = -152,    // Address is outside of valid range.
106     NVAPI_STRING_TOO_SMALL                      = -153,    // The pre-allocated string is too small to hold the result.
107     NVAPI_MATCHING_DEVICE_NOT_FOUND             = -154,    // The input does not match any of the available devices.
108     NVAPI_DRIVER_RUNNING                        = -155,    // Driver is running.
109     NVAPI_DRIVER_NOTRUNNING                     = -156,    // Driver is not running.
110     NVAPI_ERROR_DRIVER_RELOAD_REQUIRED          = -157,    // A driver reload is required to apply these settings.
111     NVAPI_SET_NOT_ALLOWED                       = -158,    // Intended setting is not allowed.
112     NVAPI_ADVANCED_DISPLAY_TOPOLOGY_REQUIRED    = -159,    // Information can't be returned due to "advanced display topology".
113     NVAPI_SETTING_NOT_FOUND                     = -160,    // Setting is not found.
114     NVAPI_SETTING_SIZE_TOO_LARGE                = -161,    // Setting size is too large.
115     NVAPI_TOO_MANY_SETTINGS_IN_PROFILE          = -162,    // There are too many settings for a profile.
116     NVAPI_PROFILE_NOT_FOUND                     = -163,    // Profile is not found.
117     NVAPI_PROFILE_NAME_IN_USE                   = -164,    // Profile name is duplicated.
118     NVAPI_PROFILE_NAME_EMPTY                    = -165,    // Profile name is empty.
119     NVAPI_EXECUTABLE_NOT_FOUND                  = -166,    // Application not found in the Profile.
120     NVAPI_EXECUTABLE_ALREADY_IN_USE             = -167,    // Application already exists in the other profile.
121     NVAPI_DATATYPE_MISMATCH                     = -168,    // Data Type mismatch
122     NVAPI_PROFILE_REMOVED                       = -169,    // The profile passed as parameter has been removed and is no longer valid.
123     NVAPI_UNREGISTERED_RESOURCE                 = -170,    // An unregistered resource was passed as a parameter.
124     NVAPI_ID_OUT_OF_RANGE                       = -171,    // The DisplayId corresponds to a display which is not within the normal outputId range.
125     NVAPI_DISPLAYCONFIG_VALIDATION_FAILED       = -172,    // Display topology is not valid so the driver cannot do a mode set on this configuration.
126     NVAPI_DPMST_CHANGED                         = -173,    // Display Port Multi-Stream topology has been changed.
127     NVAPI_INSUFFICIENT_BUFFER                   = -174,    // Input buffer is insufficient to hold the contents.
128     NVAPI_ACCESS_DENIED                         = -175,    // No access to the caller.
129     NVAPI_MOSAIC_NOT_ACTIVE                     = -176,    // The requested action cannot be performed without Mosaic being enabled.
130     NVAPI_SHARE_RESOURCE_RELOCATED              = -177,    // The surface is relocated away from video memory.
131     NVAPI_REQUEST_USER_TO_DISABLE_DWM           = -178,    // The user should disable DWM before calling NvAPI.
132     NVAPI_D3D_DEVICE_LOST                       = -179,    // D3D device status is D3DERR_DEVICELOST or D3DERR_DEVICENOTRESET - the user has to reset the device.
133     NVAPI_INVALID_CONFIGURATION                 = -180,    // The requested action cannot be performed in the current state.
134     NVAPI_STEREO_HANDSHAKE_NOT_DONE             = -181,    // Call failed as stereo handshake not completed.
135     NVAPI_EXECUTABLE_PATH_IS_AMBIGUOUS          = -182,    // The path provided was too short to determine the correct NVDRS_APPLICATION
136     NVAPI_DEFAULT_STEREO_PROFILE_IS_NOT_DEFINED = -183,    // Default stereo profile is not currently defined
137     NVAPI_DEFAULT_STEREO_PROFILE_DOES_NOT_EXIST = -184,    // Default stereo profile does not exist
138     NVAPI_CLUSTER_ALREADY_EXISTS                = -185,    // A cluster is already defined with the given configuration.
139     NVAPI_DPMST_DISPLAY_ID_EXPECTED             = -186,    // The input display id is not that of a multi stream enabled connector or a display device in a multi stream topology
140     NVAPI_INVALID_DISPLAY_ID                    = -187,    // The input display id is not valid or the monitor associated to it does not support the current operation
141     NVAPI_STREAM_IS_OUT_OF_SYNC                 = -188,    // While playing secure audio stream, stream goes out of sync
142     NVAPI_INCOMPATIBLE_AUDIO_DRIVER             = -189,    // Older audio driver version than required
143     NVAPI_VALUE_ALREADY_SET                     = -190,    // Value already set, setting again not allowed.
144     NVAPI_TIMEOUT                               = -191,    // Requested operation timed out
145     NVAPI_GPU_WORKSTATION_FEATURE_INCOMPLETE    = -192,    // The requested workstation feature set has incomplete driver internal allocation resources
146     NVAPI_STEREO_INIT_ACTIVATION_NOT_DONE       = -193,    // Call failed because InitActivation was not called.
147     NVAPI_SYNC_NOT_ACTIVE                       = -194,    // The requested action cannot be performed without Sync being enabled.
148     NVAPI_SYNC_MASTER_NOT_FOUND                 = -195,    // The requested action cannot be performed without Sync Master being enabled.
149     NVAPI_INVALID_SYNC_TOPOLOGY                 = -196,    // Invalid displays passed in the NV_GSYNC_DISPLAY pointer.
150     NVAPI_ECID_SIGN_ALGO_UNSUPPORTED            = -197,    // The specified signing algorithm is not supported. Either an incorrect value was entered or the current installed driver/hardware does not support the input value.
151     NVAPI_ECID_KEY_VERIFICATION_FAILED          = -198,    // The encrypted public key verification has failed.
152     NVAPI_FIRMWARE_OUT_OF_DATE                  = -199,    // The device's firmware is out of date.
153     NVAPI_FIRMWARE_REVISION_NOT_SUPPORTED       = -200,    // The device's firmware is not supported.
154 } NvAPI_Status;
155 
156 typedef struct struct_NV_GPU_PERF_POLICIES_INFO_PARAMS_V1
157 {
158   // total size (of memset) is always: 76 = 0x4c
159 
160   NvU32 version;
161 
162   NvU32 a;
163   NvU32 info_value;
164 
165   unsigned char x[64];
166 
167 } NV_GPU_PERF_POLICIES_INFO_PARAMS_V1;
168 
169 typedef struct struct_NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1
170 {
171   // total size (of memset) is always: 1360 = 0x550
172 
173   NvU32 version;
174   NvU32 info_value;
175 
176   NvU32 a;
177   NvU32 b;
178 
179   NvU32 throttle;
180 
181   unsigned char x[1340];
182 
183 } NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1;
184 
185 typedef struct struct_NvLevel
186 {
187   NvS32 Level;
188   NvS32 Policy;
189 
190 } NvLevel;
191 
192 NVAPI_INTERFACE NvAPI_QueryInterface (unsigned int offset);
193 NVAPI_INTERFACE NvAPI_Initialize (void);
194 NVAPI_INTERFACE NvAPI_Unload (void);
195 NVAPI_INTERFACE NvAPI_GetErrorMessage (NvAPI_Status nr,NvAPI_ShortString szDesc);
196 NVAPI_INTERFACE NvAPI_EnumPhysicalGPUs (NvPhysicalGpuHandle nvGPUHandle[NVAPI_MAX_PHYSICAL_GPUS], NvU32 *pGpuCount);
197 NVAPI_INTERFACE NvAPI_GPU_GetPerfPoliciesInfo (NvPhysicalGpuHandle hPhysicalGpu, NV_GPU_PERF_POLICIES_INFO_PARAMS_V1 *perfPolicies_info);
198 NVAPI_INTERFACE NvAPI_GPU_GetPerfPoliciesStatus (NvPhysicalGpuHandle hPhysicalGpu, NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1 *perfPolicies_status);
199 NVAPI_INTERFACE NvAPI_GPU_GetBusId (NvPhysicalGpuHandle hPhysicalGpu, NvU32 *pBusId);
200 NVAPI_INTERFACE NvAPI_GPU_GetBusSlotId (NvPhysicalGpuHandle hPhysicalGpu, NvU32 *pBusSlotId);
201 
202 /*
203  * End of declarations from nvapi.h and subheaders
204  **/
205 
206 typedef NvPhysicalGpuHandle HM_ADAPTER_NVAPI;
207 
208 #if defined(_WIN32) || defined(__WIN32__)
209 #define NVAPI_API_CALL __stdcall
210 #else
211 #define NVAPI_API_CALL
212 #endif
213 
214 typedef int *(*NVAPI_API_CALL NVAPI_QUERYINTERFACE) (unsigned int);
215 typedef int (*NVAPI_API_CALL NVAPI_INITIALIZE) (void);
216 typedef int (*NVAPI_API_CALL NVAPI_UNLOAD) (void);
217 typedef int (*NVAPI_API_CALL NVAPI_GETERRORMESSAGE) (NvAPI_Status, NvAPI_ShortString);
218 typedef int (*NVAPI_API_CALL NVAPI_ENUMPHYSICALGPUS) (NvPhysicalGpuHandle nvGPUHandle[NVAPI_MAX_PHYSICAL_GPUS], NvU32 *);
219 typedef int (*NVAPI_API_CALL NVAPI_GPU_GETPERFPOLICIESINFO) (NvPhysicalGpuHandle, NV_GPU_PERF_POLICIES_INFO_PARAMS_V1 *);
220 typedef int (*NVAPI_API_CALL NVAPI_GPU_GETPERFPOLICIESSTATUS) (NvPhysicalGpuHandle, NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1 *);
221 typedef int (*NVAPI_API_CALL NVAPI_GPU_GETBUSID) (NvPhysicalGpuHandle, NvU32 *);
222 typedef int (*NVAPI_API_CALL NVAPI_GPU_GETBUSSLOTID) (NvPhysicalGpuHandle, NvU32 *);
223 
224 typedef struct hm_nvapi_lib
225 {
226   hc_dynlib_t lib;
227 
228   NVAPI_QUERYINTERFACE nvapi_QueryInterface;
229   NVAPI_INITIALIZE NvAPI_Initialize;
230   NVAPI_UNLOAD NvAPI_Unload;
231   NVAPI_GETERRORMESSAGE NvAPI_GetErrorMessage;
232   NVAPI_ENUMPHYSICALGPUS NvAPI_EnumPhysicalGPUs;
233   NVAPI_GPU_GETPERFPOLICIESINFO NvAPI_GPU_GetPerfPoliciesInfo;
234   NVAPI_GPU_GETPERFPOLICIESSTATUS NvAPI_GPU_GetPerfPoliciesStatus;
235   NVAPI_GPU_GETBUSID NvAPI_GPU_GetBusId;
236   NVAPI_GPU_GETBUSSLOTID NvAPI_GPU_GetBusSlotId;
237 
238 } hm_nvapi_lib_t;
239 
240 typedef hm_nvapi_lib_t NVAPI_PTR;
241 
242 int nvapi_init (void *hashcat_ctx);
243 void nvapi_close (void *hashcat_ctx);
244 void hm_NvAPI_GetErrorMessage (NVAPI_PTR *nvapi, const NvAPI_Status NvAPI_rc, NvAPI_ShortString string);
245 int hm_NvAPI_Initialize (void *hashcat_ctx);
246 int hm_NvAPI_Unload (void *hashcat_ctx);
247 int hm_NvAPI_EnumPhysicalGPUs (void *hashcat_ctx, NvPhysicalGpuHandle nvGPUHandle[NVAPI_MAX_PHYSICAL_GPUS], NvU32 *pGpuCount);
248 int hm_NvAPI_GPU_GetPerfPoliciesInfo (void *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NV_GPU_PERF_POLICIES_INFO_PARAMS_V1 *perfPolicies_info);
249 int hm_NvAPI_GPU_GetPerfPoliciesStatus (void *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NV_GPU_PERF_POLICIES_STATUS_PARAMS_V1 *perfPolicies_status);
250 int hm_NvAPI_GPU_GetBusId (void *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NvU32 *pBusId);
251 int hm_NvAPI_GPU_GetBusSlotId (void *hashcat_ctx, NvPhysicalGpuHandle hPhysicalGpu, NvU32 *pBusSlotId);
252 
253 #endif // _EXT_NVAPI_H
254