2012-05-29 22:14:26 +04:00
|
|
|
/**
|
|
|
|
* WinPR: Windows Portable Runtime
|
|
|
|
* Synchronization Functions
|
|
|
|
*
|
|
|
|
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:20:53 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-05-29 22:14:26 +04:00
|
|
|
#include <winpr/synch.h>
|
2015-04-28 09:55:26 +03:00
|
|
|
#include <winpr/debug.h>
|
|
|
|
#include <winpr/wlog.h>
|
2012-05-29 22:14:26 +04:00
|
|
|
|
2012-09-19 01:33:52 +04:00
|
|
|
#include "synch.h"
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
2015-04-28 18:29:07 +03:00
|
|
|
#include <errno.h>
|
|
|
|
|
2013-05-17 01:32:58 +04:00
|
|
|
#include "../handle/handle.h"
|
2015-04-28 09:55:26 +03:00
|
|
|
|
|
|
|
#include "../log.h"
|
|
|
|
#define TAG WINPR_TAG("sync.mutex")
|
|
|
|
|
2015-03-11 17:11:14 +03:00
|
|
|
static BOOL MutexCloseHandle(HANDLE handle);
|
|
|
|
|
|
|
|
static BOOL MutexIsHandled(HANDLE handle)
|
|
|
|
{
|
|
|
|
WINPR_TIMER* pMutex = (WINPR_TIMER*) handle;
|
|
|
|
|
2015-03-24 14:13:41 +03:00
|
|
|
if (!pMutex || (pMutex->Type != HANDLE_TYPE_MUTEX))
|
2015-03-11 17:11:14 +03:00
|
|
|
{
|
|
|
|
SetLastError(ERROR_INVALID_HANDLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-03-11 19:57:01 +03:00
|
|
|
static int MutexGetFd(HANDLE handle)
|
2015-03-11 17:11:14 +03:00
|
|
|
{
|
2015-03-11 19:57:01 +03:00
|
|
|
WINPR_MUTEX *mux = (WINPR_MUTEX *)handle;
|
|
|
|
if (!MutexIsHandled(handle))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* TODO: Mutex does not support file handles... */
|
|
|
|
(void)mux;
|
|
|
|
return -1;
|
2015-03-11 17:11:14 +03:00
|
|
|
}
|
|
|
|
|
2015-03-17 23:54:45 +03:00
|
|
|
BOOL MutexCloseHandle(HANDLE handle)
|
|
|
|
{
|
|
|
|
WINPR_MUTEX* mutex = (WINPR_MUTEX*) handle;
|
2015-04-28 18:29:07 +03:00
|
|
|
int rc;
|
2015-03-11 17:11:14 +03:00
|
|
|
|
|
|
|
if (!MutexIsHandled(handle))
|
|
|
|
return FALSE;
|
|
|
|
|
2016-05-24 14:35:11 +03:00
|
|
|
if ((rc = pthread_mutex_destroy(&mutex->mutex)))
|
2015-04-28 09:55:26 +03:00
|
|
|
{
|
2016-05-24 14:35:11 +03:00
|
|
|
WLog_ERR(TAG, "pthread_mutex_destroy failed with %s [%d]", strerror(rc), rc);
|
2015-04-28 10:42:46 +03:00
|
|
|
#if defined(WITH_DEBUG_MUTEX)
|
2015-04-28 09:55:26 +03:00
|
|
|
{
|
2015-04-28 18:29:07 +03:00
|
|
|
size_t used = 0, i;
|
|
|
|
void* stack = winpr_backtrace(20);
|
|
|
|
char **msg = NULL;
|
|
|
|
|
|
|
|
if (stack)
|
|
|
|
msg = winpr_backtrace_symbols(stack, &used);
|
|
|
|
|
|
|
|
if (msg)
|
|
|
|
{
|
|
|
|
for(i=0; i<used; i++)
|
2016-12-14 00:47:08 +03:00
|
|
|
WLog_ERR(TAG, "%2"PRIdz": %s", i, msg[i]);
|
2015-04-28 18:29:07 +03:00
|
|
|
}
|
|
|
|
free (msg);
|
|
|
|
winpr_backtrace_free(stack);
|
2015-04-28 09:55:26 +03:00
|
|
|
}
|
|
|
|
#endif
|
2016-05-24 14:35:11 +03:00
|
|
|
/**
|
|
|
|
* Note: unfortunately we may not return FALSE here since CloseHandle(hmutex) on
|
|
|
|
* Windows always seems to succeed independently of the mutex object locking state
|
|
|
|
*/
|
2015-04-28 18:29:07 +03:00
|
|
|
}
|
2015-03-11 17:11:14 +03:00
|
|
|
|
|
|
|
free(handle);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-05-17 01:32:58 +04:00
|
|
|
|
2015-03-17 23:54:45 +03:00
|
|
|
static HANDLE_OPS ops =
|
|
|
|
{
|
|
|
|
MutexIsHandled,
|
|
|
|
MutexCloseHandle,
|
|
|
|
MutexGetFd,
|
|
|
|
NULL /* CleanupHandle */
|
2015-03-16 02:29:37 +03:00
|
|
|
};
|
|
|
|
|
2012-09-19 01:33:52 +04:00
|
|
|
HANDLE CreateMutexW(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner, LPCWSTR lpName)
|
2012-09-18 20:57:19 +04:00
|
|
|
{
|
2013-04-03 21:35:45 +04:00
|
|
|
HANDLE handle = NULL;
|
2013-05-17 01:32:58 +04:00
|
|
|
WINPR_MUTEX* mutex;
|
2012-09-19 01:33:52 +04:00
|
|
|
|
2015-03-11 20:09:22 +03:00
|
|
|
mutex = (WINPR_MUTEX*) calloc(1, sizeof(WINPR_MUTEX));
|
2012-09-19 01:33:52 +04:00
|
|
|
|
2013-05-17 01:32:58 +04:00
|
|
|
if (mutex)
|
2013-04-03 21:35:45 +04:00
|
|
|
{
|
2016-05-24 14:35:11 +03:00
|
|
|
pthread_mutexattr_t attr;
|
|
|
|
pthread_mutexattr_init(&attr);
|
|
|
|
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
|
|
|
|
pthread_mutex_init(&mutex->mutex, &attr);
|
2013-05-17 01:32:58 +04:00
|
|
|
|
2015-07-14 12:39:41 +03:00
|
|
|
WINPR_HANDLE_SET_TYPE_AND_MODE(mutex, HANDLE_TYPE_MUTEX, WINPR_FD_READ);
|
2015-03-16 02:29:37 +03:00
|
|
|
mutex->ops = &ops;
|
2015-03-11 19:57:01 +03:00
|
|
|
|
2013-05-17 02:27:26 +04:00
|
|
|
handle = (HANDLE) mutex;
|
2013-05-17 01:32:58 +04:00
|
|
|
|
2013-04-03 21:35:45 +04:00
|
|
|
if (bInitialOwner)
|
2013-05-17 01:32:58 +04:00
|
|
|
pthread_mutex_lock(&mutex->mutex);
|
2013-04-03 21:35:45 +04:00
|
|
|
}
|
2012-09-19 01:33:52 +04:00
|
|
|
|
|
|
|
return handle;
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
|
|
|
|
2012-09-19 01:33:52 +04:00
|
|
|
HANDLE CreateMutexA(LPSECURITY_ATTRIBUTES lpMutexAttributes, BOOL bInitialOwner, LPCSTR lpName)
|
2012-09-18 20:57:19 +04:00
|
|
|
{
|
2012-09-19 01:33:52 +04:00
|
|
|
return CreateMutexW(lpMutexAttributes, bInitialOwner, NULL);
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE CreateMutexExA(LPSECURITY_ATTRIBUTES lpMutexAttributes, LPCTSTR lpName, DWORD dwFlags, DWORD dwDesiredAccess)
|
|
|
|
{
|
2012-09-19 01:33:52 +04:00
|
|
|
return CreateMutexW(lpMutexAttributes, FALSE, NULL);
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE CreateMutexExW(LPSECURITY_ATTRIBUTES lpMutexAttributes, LPCWSTR lpName, DWORD dwFlags, DWORD dwDesiredAccess)
|
|
|
|
{
|
2012-09-19 01:33:52 +04:00
|
|
|
return CreateMutexW(lpMutexAttributes, FALSE, NULL);
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
HANDLE OpenMutexA(DWORD dwDesiredAccess, BOOL bInheritHandle,LPCSTR lpName)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-05-29 22:14:26 +04:00
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
HANDLE OpenMutexW(DWORD dwDesiredAccess, BOOL bInheritHandle,LPCWSTR lpName)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-05-29 22:14:26 +04:00
|
|
|
|
2012-09-18 20:57:19 +04:00
|
|
|
BOOL ReleaseMutex(HANDLE hMutex)
|
|
|
|
{
|
2012-09-19 01:33:52 +04:00
|
|
|
ULONG Type;
|
2015-07-03 10:36:58 +03:00
|
|
|
WINPR_HANDLE* Object;
|
2012-09-19 01:33:52 +04:00
|
|
|
|
|
|
|
if (!winpr_Handle_GetInfo(hMutex, &Type, &Object))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (Type == HANDLE_TYPE_MUTEX)
|
|
|
|
{
|
2016-05-24 14:35:11 +03:00
|
|
|
WINPR_MUTEX* mutex = (WINPR_MUTEX*) Object;
|
|
|
|
int rc = pthread_mutex_unlock(&mutex->mutex);
|
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "pthread_mutex_unlock failed with %s [%d]", strerror(rc), rc);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2012-09-19 01:33:52 +04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
2012-09-18 20:57:19 +04:00
|
|
|
}
|
2012-09-19 01:33:52 +04:00
|
|
|
|
|
|
|
#endif
|