549 lines
17 KiB
C
549 lines
17 KiB
C
/*
|
|
* Helper functions for ntdll
|
|
*
|
|
* Copyright 2000 Juergen Schmied
|
|
* Copyright 2010 Marcus Meissner
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <time.h>
|
|
#include <math.h>
|
|
|
|
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
#include "wine/debug.h"
|
|
#include "ntdll_misc.h"
|
|
#include "wmistr.h"
|
|
#include "evntrace.h"
|
|
#include "evntprov.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
|
|
|
|
LPCSTR debugstr_us( const UNICODE_STRING *us )
|
|
{
|
|
if (!us) return "<null>";
|
|
return debugstr_wn(us->Buffer, us->Length / sizeof(WCHAR));
|
|
}
|
|
|
|
/*********************************************************************
|
|
* abs (NTDLL.@)
|
|
*/
|
|
int CDECL abs( int i )
|
|
{
|
|
return i >= 0 ? i : -i;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* atan (NTDLL.@)
|
|
*/
|
|
double CDECL atan( double d )
|
|
{
|
|
return unix_funcs->atan( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* ceil (NTDLL.@)
|
|
*/
|
|
double CDECL ceil( double d )
|
|
{
|
|
return unix_funcs->ceil( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* cos (NTDLL.@)
|
|
*/
|
|
double CDECL cos( double d )
|
|
{
|
|
return unix_funcs->cos( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* fabs (NTDLL.@)
|
|
*/
|
|
double CDECL fabs( double d )
|
|
{
|
|
return unix_funcs->fabs( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* floor (NTDLL.@)
|
|
*/
|
|
double CDECL floor( double d )
|
|
{
|
|
return unix_funcs->floor( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* log (NTDLL.@)
|
|
*/
|
|
double CDECL log( double d )
|
|
{
|
|
return unix_funcs->log( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* pow (NTDLL.@)
|
|
*/
|
|
double CDECL pow( double x, double y )
|
|
{
|
|
return unix_funcs->pow( x, y );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* sin (NTDLL.@)
|
|
*/
|
|
double CDECL sin( double d )
|
|
{
|
|
return unix_funcs->sin( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* sqrt (NTDLL.@)
|
|
*/
|
|
double CDECL sqrt( double d )
|
|
{
|
|
return unix_funcs->sqrt( d );
|
|
}
|
|
|
|
/*********************************************************************
|
|
* tan (NTDLL.@)
|
|
*/
|
|
double CDECL tan( double d )
|
|
{
|
|
return unix_funcs->tan( d );
|
|
}
|
|
|
|
#if (defined(__GNUC__) || defined(__clang__)) && defined(__i386__)
|
|
|
|
#define FPU_DOUBLE(var) double var; \
|
|
__asm__ __volatile__( "fstpl %0;fwait" : "=m" (var) : )
|
|
#define FPU_DOUBLES(var1,var2) double var1,var2; \
|
|
__asm__ __volatile__( "fstpl %0;fwait" : "=m" (var2) : ); \
|
|
__asm__ __volatile__( "fstpl %0;fwait" : "=m" (var1) : )
|
|
|
|
/*********************************************************************
|
|
* _CIcos (NTDLL.@)
|
|
*/
|
|
double CDECL _CIcos(void)
|
|
{
|
|
FPU_DOUBLE(x);
|
|
return cos(x);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* _CIlog (NTDLL.@)
|
|
*/
|
|
double CDECL _CIlog(void)
|
|
{
|
|
FPU_DOUBLE(x);
|
|
return log(x);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* _CIpow (NTDLL.@)
|
|
*/
|
|
double CDECL _CIpow(void)
|
|
{
|
|
FPU_DOUBLES(x,y);
|
|
return pow(x,y);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* _CIsin (NTDLL.@)
|
|
*/
|
|
double CDECL _CIsin(void)
|
|
{
|
|
FPU_DOUBLE(x);
|
|
return sin(x);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* _CIsqrt (NTDLL.@)
|
|
*/
|
|
double CDECL _CIsqrt(void)
|
|
{
|
|
FPU_DOUBLE(x);
|
|
return sqrt(x);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* _ftol (NTDLL.@)
|
|
*/
|
|
LONGLONG CDECL _ftol(void)
|
|
{
|
|
FPU_DOUBLE(x);
|
|
return (LONGLONG)x;
|
|
}
|
|
|
|
#endif /* (defined(__GNUC__) || defined(__clang__)) && defined(__i386__) */
|
|
|
|
static void
|
|
NTDLL_mergesort( void *arr, void *barr, size_t elemsize, int(__cdecl *compar)(const void *, const void *),
|
|
size_t left, size_t right )
|
|
{
|
|
if(right>left) {
|
|
size_t i, j, k, m;
|
|
m=left+(right-left)/2;
|
|
NTDLL_mergesort( arr, barr, elemsize, compar, left, m);
|
|
NTDLL_mergesort( arr, barr, elemsize, compar, m+1, right);
|
|
|
|
#define X(a,i) ((char*)a+elemsize*(i))
|
|
for (k=left, i=left, j=m+1; i<=m && j<=right; k++) {
|
|
if (compar(X(arr, i), X(arr,j)) <= 0) {
|
|
memcpy(X(barr,k), X(arr, i), elemsize);
|
|
i++;
|
|
} else {
|
|
memcpy(X(barr,k), X(arr, j), elemsize);
|
|
j++;
|
|
}
|
|
}
|
|
if (i<=m)
|
|
memcpy(X(barr,k), X(arr,i), (m-i+1)*elemsize);
|
|
else
|
|
memcpy(X(barr,k), X(arr,j), (right-j+1)*elemsize);
|
|
|
|
memcpy(X(arr, left), X(barr, left), (right-left+1)*elemsize);
|
|
}
|
|
#undef X
|
|
}
|
|
|
|
/*********************************************************************
|
|
* qsort (NTDLL.@)
|
|
*/
|
|
void __cdecl qsort( void *base, size_t nmemb, size_t size,
|
|
int (__cdecl *compar)(const void *, const void *) )
|
|
{
|
|
void *secondarr;
|
|
if (nmemb < 2 || size == 0) return;
|
|
secondarr = RtlAllocateHeap (GetProcessHeap(), 0, nmemb*size);
|
|
NTDLL_mergesort( base, secondarr, size, compar, 0, nmemb-1 );
|
|
RtlFreeHeap (GetProcessHeap(),0, secondarr);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* bsearch (NTDLL.@)
|
|
*/
|
|
void * __cdecl bsearch( const void *key, const void *base, size_t nmemb,
|
|
size_t size, int (__cdecl *compar)(const void *, const void *) )
|
|
{
|
|
ssize_t min = 0;
|
|
ssize_t max = nmemb - 1;
|
|
|
|
while (min <= max)
|
|
{
|
|
ssize_t cursor = min + (max - min) / 2;
|
|
int ret = compar(key,(const char *)base+(cursor*size));
|
|
if (!ret)
|
|
return (char*)base+(cursor*size);
|
|
if (ret < 0)
|
|
max = cursor - 1;
|
|
else
|
|
min = cursor + 1;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
/*********************************************************************
|
|
* _lfind (NTDLL.@)
|
|
*/
|
|
void * __cdecl _lfind( const void *key, const void *base, unsigned int *nmemb,
|
|
size_t size, int(__cdecl *compar)(const void *, const void *) )
|
|
{
|
|
size_t i, n = *nmemb;
|
|
|
|
for (i=0;i<n;i++)
|
|
if (!compar(key,(char*)base+(size*i)))
|
|
return (char*)base+(size*i);
|
|
return NULL;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* WinSqmEndSession (NTDLL.@)
|
|
*/
|
|
NTSTATUS WINAPI WinSqmEndSession(HANDLE session)
|
|
{
|
|
FIXME("(%p): stub\n", session);
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* WinSqmIncrementDWORD (NTDLL.@)
|
|
*/
|
|
void WINAPI WinSqmIncrementDWORD(DWORD unk1, DWORD unk2, DWORD unk3)
|
|
{
|
|
FIXME("(%d, %d, %d): stub\n", unk1, unk2, unk3);
|
|
}
|
|
|
|
/*********************************************************************
|
|
* WinSqmIsOptedIn (NTDLL.@)
|
|
*/
|
|
BOOL WINAPI WinSqmIsOptedIn(void)
|
|
{
|
|
FIXME("(): stub\n");
|
|
return FALSE;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* WinSqmStartSession (NTDLL.@)
|
|
*/
|
|
HANDLE WINAPI WinSqmStartSession(GUID *sessionguid, DWORD sessionid, DWORD unknown1)
|
|
{
|
|
FIXME("(%p, 0x%x, 0x%x): stub\n", sessionguid, sessionid, unknown1);
|
|
return INVALID_HANDLE_VALUE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* WinSqmSetDWORD (NTDLL.@)
|
|
*/
|
|
void WINAPI WinSqmSetDWORD(HANDLE session, DWORD datapoint_id, DWORD datapoint_value)
|
|
{
|
|
FIXME("(%p, %d, %d): stub\n", session, datapoint_id, datapoint_value);
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventActivityIdControl (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventActivityIdControl(ULONG code, GUID *guid)
|
|
{
|
|
static int once;
|
|
|
|
if (!once++) FIXME("0x%x, %p: stub\n", code, guid);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventProviderEnabled (NTDLL.@)
|
|
*/
|
|
BOOLEAN WINAPI EtwEventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG keyword )
|
|
{
|
|
WARN("%s, %u, %s: stub\n", wine_dbgstr_longlong(handle), level, wine_dbgstr_longlong(keyword));
|
|
return FALSE;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventRegister (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID context,
|
|
PREGHANDLE handle )
|
|
{
|
|
WARN("(%s, %p, %p, %p) stub.\n", debugstr_guid(provider), callback, context, handle);
|
|
|
|
if (!handle) return ERROR_INVALID_PARAMETER;
|
|
|
|
*handle = 0xdeadbeef;
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventUnregister (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventUnregister( REGHANDLE handle )
|
|
{
|
|
WARN("(%s) stub.\n", wine_dbgstr_longlong(handle));
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* EtwEventSetInformation (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventSetInformation( REGHANDLE handle, EVENT_INFO_CLASS class, void *info,
|
|
ULONG length )
|
|
{
|
|
FIXME("(%s, %u, %p, %u) stub\n", wine_dbgstr_longlong(handle), class, info, length);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventWriteString (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventWriteString( REGHANDLE handle, UCHAR level, ULONGLONG keyword, PCWSTR string )
|
|
{
|
|
FIXME("%s, %u, %s, %s: stub\n", wine_dbgstr_longlong(handle), level,
|
|
wine_dbgstr_longlong(keyword), debugstr_w(string));
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventWriteTransfer (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventWriteTransfer( REGHANDLE handle, PCEVENT_DESCRIPTOR descriptor, LPCGUID activity,
|
|
LPCGUID related, ULONG count, PEVENT_DATA_DESCRIPTOR data )
|
|
{
|
|
FIXME("%s, %p, %s, %s, %u, %p: stub\n", wine_dbgstr_longlong(handle), descriptor,
|
|
debugstr_guid(activity), debugstr_guid(related), count, data);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwRegisterTraceGuidsW (NTDLL.@)
|
|
*
|
|
* Register an event trace provider and the event trace classes that it uses
|
|
* to generate events.
|
|
*
|
|
* PARAMS
|
|
* RequestAddress [I] ControlCallback function
|
|
* RequestContext [I] Optional provider-defined context
|
|
* ControlGuid [I] GUID of the registering provider
|
|
* GuidCount [I] Number of elements in the TraceGuidReg array
|
|
* TraceGuidReg [I/O] Array of TRACE_GUID_REGISTRATION structures
|
|
* MofImagePath [I] not supported, set to NULL
|
|
* MofResourceName [I] not supported, set to NULL
|
|
* RegistrationHandle [O] Provider's registration handle
|
|
*
|
|
* RETURNS
|
|
* Success: ERROR_SUCCESS
|
|
* Failure: System error code
|
|
*/
|
|
ULONG WINAPI EtwRegisterTraceGuidsW( WMIDPREQUEST RequestAddress,
|
|
void *RequestContext, const GUID *ControlGuid, ULONG GuidCount,
|
|
TRACE_GUID_REGISTRATION *TraceGuidReg, const WCHAR *MofImagePath,
|
|
const WCHAR *MofResourceName, TRACEHANDLE *RegistrationHandle )
|
|
{
|
|
WARN("(%p, %p, %s, %u, %p, %s, %s, %p): stub\n", RequestAddress, RequestContext,
|
|
debugstr_guid(ControlGuid), GuidCount, TraceGuidReg, debugstr_w(MofImagePath),
|
|
debugstr_w(MofResourceName), RegistrationHandle);
|
|
|
|
if (TraceGuidReg)
|
|
{
|
|
ULONG i;
|
|
for (i = 0; i < GuidCount; i++)
|
|
{
|
|
FIXME(" register trace class %s\n", debugstr_guid(TraceGuidReg[i].Guid));
|
|
TraceGuidReg[i].RegHandle = (HANDLE)0xdeadbeef;
|
|
}
|
|
}
|
|
*RegistrationHandle = (TRACEHANDLE)0xdeadbeef;
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwRegisterTraceGuidsA (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwRegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
|
|
void *RequestContext, const GUID *ControlGuid, ULONG GuidCount,
|
|
TRACE_GUID_REGISTRATION *TraceGuidReg, const char *MofImagePath,
|
|
const char *MofResourceName, TRACEHANDLE *RegistrationHandle )
|
|
{
|
|
WARN("(%p, %p, %s, %u, %p, %s, %s, %p): stub\n", RequestAddress, RequestContext,
|
|
debugstr_guid(ControlGuid), GuidCount, TraceGuidReg, debugstr_a(MofImagePath),
|
|
debugstr_a(MofResourceName), RegistrationHandle);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwUnregisterTraceGuids (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
|
|
{
|
|
if (!RegistrationHandle)
|
|
return ERROR_INVALID_PARAMETER;
|
|
|
|
WARN("%s: stub\n", wine_dbgstr_longlong(RegistrationHandle));
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventEnabled (NTDLL.@)
|
|
*/
|
|
BOOLEAN WINAPI EtwEventEnabled( REGHANDLE handle, const EVENT_DESCRIPTOR *descriptor )
|
|
{
|
|
WARN("(%s, %p): stub\n", wine_dbgstr_longlong(handle), descriptor);
|
|
return FALSE;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwEventWrite (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwEventWrite( REGHANDLE handle, const EVENT_DESCRIPTOR *descriptor, ULONG count,
|
|
EVENT_DATA_DESCRIPTOR *data )
|
|
{
|
|
FIXME("(%s, %p, %u, %p): stub\n", wine_dbgstr_longlong(handle), descriptor, count, data);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwGetTraceEnableFlags (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwGetTraceEnableFlags( TRACEHANDLE handle )
|
|
{
|
|
FIXME("(%s) stub\n", wine_dbgstr_longlong(handle));
|
|
return 0;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwGetTraceEnableLevel (NTDLL.@)
|
|
*/
|
|
UCHAR WINAPI EtwGetTraceEnableLevel( TRACEHANDLE handle )
|
|
{
|
|
FIXME("(%s) stub\n", wine_dbgstr_longlong(handle));
|
|
return TRACE_LEVEL_VERBOSE;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwGetTraceLoggerHandle (NTDLL.@)
|
|
*/
|
|
TRACEHANDLE WINAPI EtwGetTraceLoggerHandle( PVOID buf )
|
|
{
|
|
FIXME("(%p) stub\n", buf);
|
|
return INVALID_PROCESSTRACE_HANDLE;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwLogTraceEvent (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwLogTraceEvent( TRACEHANDLE SessionHandle, PEVENT_TRACE_HEADER EventTrace )
|
|
{
|
|
FIXME("%s %p\n", wine_dbgstr_longlong(SessionHandle), EventTrace);
|
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwTraceMessageVa (NTDLL.@)
|
|
*/
|
|
ULONG WINAPI EtwTraceMessageVa( TRACEHANDLE handle, ULONG flags, LPGUID guid, USHORT number,
|
|
__ms_va_list args )
|
|
{
|
|
FIXME("(%s %x %s %d) : stub\n", wine_dbgstr_longlong(handle), flags, debugstr_guid(guid), number);
|
|
return ERROR_SUCCESS;
|
|
}
|
|
|
|
/******************************************************************************
|
|
* EtwTraceMessage (NTDLL.@)
|
|
*/
|
|
ULONG WINAPIV EtwTraceMessage( TRACEHANDLE handle, ULONG flags, LPGUID guid, /*USHORT*/ ULONG number, ... )
|
|
{
|
|
__ms_va_list valist;
|
|
ULONG ret;
|
|
|
|
__ms_va_start( valist, number );
|
|
ret = EtwTraceMessageVa( handle, flags, guid, number, valist );
|
|
__ms_va_end( valist );
|
|
return ret;
|
|
}
|
|
|
|
/*********************************************************************
|
|
* ApiSetQueryApiSetPresence (NTDLL.@)
|
|
*/
|
|
BOOL WINAPI ApiSetQueryApiSetPresence(const UNICODE_STRING *namespace, BOOLEAN *present)
|
|
{
|
|
FIXME("(%s, %p) stub!\n", debugstr_us(namespace), present);
|
|
|
|
if(present)
|
|
*present = TRUE;
|
|
return TRUE;
|
|
}
|