123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- /**
- * WinPR: Windows Portable Runtime
- * Synchronization Functions
- *
- * Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
- * Copyright 2017 Armin Novak <armin.novak@thincast.com>
- * Copyright 2017 Thincast Technologies GmbH
- *
- * 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.
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <winpr/synch.h>
- #ifndef _WIN32
- #include "synch.h"
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #ifdef HAVE_SYS_EVENTFD_H
- #include <sys/eventfd.h>
- #endif
- #include <errno.h>
- #include "../handle/handle.h"
- #include "../pipe/pipe.h"
- #include "../log.h"
- #define TAG WINPR_TAG("synch.event")
- static BOOL EventCloseHandle(HANDLE handle);
- static BOOL EventIsHandled(HANDLE handle)
- {
- WINPR_TIMER* pEvent = (WINPR_TIMER*)handle;
- if (!pEvent || (pEvent->Type != HANDLE_TYPE_EVENT))
- {
- SetLastError(ERROR_INVALID_HANDLE);
- return FALSE;
- }
- return TRUE;
- }
- static int EventGetFd(HANDLE handle)
- {
- WINPR_EVENT* event = (WINPR_EVENT*)handle;
- if (!EventIsHandled(handle))
- return -1;
- return event->pipe_fd[0];
- }
- static BOOL EventCloseHandle_(WINPR_EVENT* event)
- {
- if (!event)
- return FALSE;
- if (!event->bAttached)
- {
- if (event->pipe_fd[0] != -1)
- {
- close(event->pipe_fd[0]);
- event->pipe_fd[0] = -1;
- }
- if (event->pipe_fd[1] != -1)
- {
- close(event->pipe_fd[1]);
- event->pipe_fd[1] = -1;
- }
- }
- free(event->name);
- free(event);
- return TRUE;
- }
- static BOOL EventCloseHandle(HANDLE handle)
- {
- WINPR_EVENT* event = (WINPR_EVENT*)handle;
- if (!EventIsHandled(handle))
- return FALSE;
- return EventCloseHandle_(event);
- }
- static HANDLE_OPS ops = { EventIsHandled, EventCloseHandle,
- EventGetFd, NULL, /* CleanupHandle */
- NULL, NULL,
- NULL, NULL,
- NULL, NULL,
- NULL, NULL,
- NULL, NULL,
- NULL, NULL,
- NULL, NULL,
- NULL, NULL };
- HANDLE CreateEventW(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset, BOOL bInitialState,
- LPCWSTR lpName)
- {
- HANDLE handle;
- char* name = NULL;
- if (lpName)
- {
- int rc = ConvertFromUnicode(CP_UTF8, 0, lpName, -1, &name, 0, NULL, NULL);
- if (rc < 0)
- return NULL;
- }
- handle = CreateEventA(lpEventAttributes, bManualReset, bInitialState, name);
- free(name);
- return handle;
- }
- HANDLE CreateEventA(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset, BOOL bInitialState,
- LPCSTR lpName)
- {
- WINPR_EVENT* event = (WINPR_EVENT*)calloc(1, sizeof(WINPR_EVENT));
- if (lpEventAttributes)
- WLog_WARN(TAG, "%s [%s] does not support lpEventAttributes", __FUNCTION__, lpName);
- if (!event)
- return NULL;
- if (lpName)
- event->name = strdup(lpName);
- event->bAttached = FALSE;
- event->bManualReset = bManualReset;
- event->ops = &ops;
- WINPR_HANDLE_SET_TYPE_AND_MODE(event, HANDLE_TYPE_EVENT, FD_READ);
- /*
- * If this parameter is TRUE, the function creates a manual-reset event object,
- * which requires the use of the ResetEvent function to set the event state to nonsignaled.
- *
- * If this parameter is FALSE, the function creates an auto-reset event object,
- * and system automatically resets the event state to nonsignaled after a single waiting thread
- * has been released.
- */
- if (!event->bManualReset)
- WLog_ERR(TAG, "auto-reset events not yet implemented");
- event->pipe_fd[0] = -1;
- event->pipe_fd[1] = -1;
- #ifdef HAVE_SYS_EVENTFD_H
- /*returns a file descriptor that can be used to refer to the eventfd object*/
- event->pipe_fd[0] = eventfd(0, EFD_NONBLOCK);
- if (event->pipe_fd[0] < 0)
- goto fail;
- #else
- /*pipe[0] refers to the read end of the pipe.
- * pipe[1] refers to the write end of the pipe.
- */
- if (pipe(event->pipe_fd) < 0)
- goto fail;
- #endif
- if (bInitialState)
- {
- if (!SetEvent(event))
- goto fail;
- }
- return (HANDLE)event;
- fail:
- EventCloseHandle_(event);
- return NULL;
- }
- HANDLE CreateEventExW(LPSECURITY_ATTRIBUTES lpEventAttributes, LPCWSTR lpName, DWORD dwFlags,
- DWORD dwDesiredAccess)
- {
- BOOL initial = FALSE;
- BOOL manual = FALSE;
- if (dwFlags & CREATE_EVENT_INITIAL_SET)
- initial = TRUE;
- if (dwFlags & CREATE_EVENT_MANUAL_RESET)
- manual = TRUE;
- if (dwDesiredAccess != 0)
- WLog_WARN(TAG, "%s [%s] does not support dwDesiredAccess 0x%08" PRIx32, __FUNCTION__,
- lpName, dwDesiredAccess);
- return CreateEventW(lpEventAttributes, manual, initial, lpName);
- }
- HANDLE CreateEventExA(LPSECURITY_ATTRIBUTES lpEventAttributes, LPCSTR lpName, DWORD dwFlags,
- DWORD dwDesiredAccess)
- {
- BOOL initial = FALSE;
- BOOL manual = FALSE;
- if (dwFlags & CREATE_EVENT_INITIAL_SET)
- initial = TRUE;
- if (dwFlags & CREATE_EVENT_MANUAL_RESET)
- manual = TRUE;
- if (dwDesiredAccess != 0)
- WLog_WARN(TAG, "%s [%s] does not support dwDesiredAccess 0x%08" PRIx32, __FUNCTION__,
- lpName, dwDesiredAccess);
- return CreateEventA(lpEventAttributes, manual, initial, lpName);
- }
- HANDLE OpenEventW(DWORD dwDesiredAccess, BOOL bInheritHandle, LPCWSTR lpName)
- {
- /* TODO: Implement */
- WINPR_UNUSED(dwDesiredAccess);
- WINPR_UNUSED(bInheritHandle);
- WINPR_UNUSED(lpName);
- WLog_ERR(TAG, "%s not implemented", __FUNCTION__);
- return NULL;
- }
- HANDLE OpenEventA(DWORD dwDesiredAccess, BOOL bInheritHandle, LPCSTR lpName)
- {
- /* TODO: Implement */
- WINPR_UNUSED(dwDesiredAccess);
- WINPR_UNUSED(bInheritHandle);
- WINPR_UNUSED(lpName);
- WLog_ERR(TAG, "%s not implemented", __FUNCTION__);
- return NULL;
- }
- #ifdef HAVE_SYS_EVENTFD_H
- #if !defined(WITH_EVENTFD_READ_WRITE)
- static int eventfd_read(int fd, eventfd_t* value)
- {
- return (read(fd, value, sizeof(*value)) == sizeof(*value)) ? 0 : -1;
- }
- static int eventfd_write(int fd, eventfd_t value)
- {
- return (write(fd, &value, sizeof(value)) == sizeof(value)) ? 0 : -1;
- }
- #endif
- #endif
- BOOL SetEvent(HANDLE hEvent)
- {
- ULONG Type;
- WINPR_HANDLE* Object;
- int length;
- BOOL status;
- WINPR_EVENT* event;
- status = FALSE;
- if (winpr_Handle_GetInfo(hEvent, &Type, &Object))
- {
- event = (WINPR_EVENT*)Object;
- #ifdef HAVE_SYS_EVENTFD_H
- eventfd_t val = 1;
- do
- {
- length = eventfd_write(event->pipe_fd[0], val);
- } while ((length < 0) && (errno == EINTR)); /*EINTR: the call was interrupted by a signal before the data was written*/
- status = (length == 0) ? TRUE : FALSE;
- #else
- if (WaitForSingleObject(hEvent, 0) != WAIT_OBJECT_0)
- {
- length = write(event->pipe_fd[1], "-", 1);
- if (length == 1)
- status = TRUE;
- }
- else
- {
- status = TRUE;
- }
- #endif
- }
- return status;
- }
- BOOL ResetEvent(HANDLE hEvent)
- {
- ULONG Type;
- WINPR_HANDLE* Object;
- int length;
- BOOL status = TRUE;
- WINPR_EVENT* event;
- if (!winpr_Handle_GetInfo(hEvent, &Type, &Object))
- return FALSE;
- event = (WINPR_EVENT*)Object;
- while (status && WaitForSingleObject(hEvent, 0) == WAIT_OBJECT_0)
- {
- do
- {
- #ifdef HAVE_SYS_EVENTFD_H
- eventfd_t value;
- length = eventfd_read(event->pipe_fd[0], &value);
- #else
- length = read(event->pipe_fd[0], &length, 1);
- #endif
- } while ((length < 0) && (errno == EINTR));
- if (length < 0)
- status = FALSE;
- }
- return status;
- }
- #endif
- HANDLE CreateFileDescriptorEventW(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset,
- BOOL bInitialState, int FileDescriptor, ULONG mode)
- {
- #ifndef _WIN32
- WINPR_EVENT* event;
- HANDLE handle = NULL;
- event = (WINPR_EVENT*)calloc(1, sizeof(WINPR_EVENT));
- if (event)
- {
- event->bAttached = TRUE;
- event->bManualReset = bManualReset;
- event->pipe_fd[0] = FileDescriptor;
- event->pipe_fd[1] = -1;
- event->ops = &ops;
- WINPR_HANDLE_SET_TYPE_AND_MODE(event, HANDLE_TYPE_EVENT, mode);
- handle = (HANDLE)event;
- }
- return handle;
- #else
- return NULL;
- #endif
- }
- HANDLE CreateFileDescriptorEventA(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset,
- BOOL bInitialState, int FileDescriptor, ULONG mode)
- {
- return CreateFileDescriptorEventW(lpEventAttributes, bManualReset, bInitialState,
- FileDescriptor, mode);
- }
- /**
- * Returns an event based on the handle returned by GetEventWaitObject()
- */
- HANDLE CreateWaitObjectEvent(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset,
- BOOL bInitialState, void* pObject)
- {
- #ifndef _WIN32
- return CreateFileDescriptorEventW(lpEventAttributes, bManualReset, bInitialState,
- (int)(ULONG_PTR)pObject, WINPR_FD_READ);
- #else
- HANDLE hEvent = NULL;
- DuplicateHandle(GetCurrentProcess(), pObject, GetCurrentProcess(), &hEvent, 0, FALSE,
- DUPLICATE_SAME_ACCESS);
- return hEvent;
- #endif
- }
- /*
- * Returns inner file descriptor for usage with select()
- * This file descriptor is not usable on Windows
- */
- int GetEventFileDescriptor(HANDLE hEvent)
- {
- #ifndef _WIN32
- return winpr_Handle_getFd(hEvent);
- #else
- return -1;
- #endif
- }
- /*
- * Set inner file descriptor for usage with select()
- * This file descriptor is not usable on Windows
- */
- int SetEventFileDescriptor(HANDLE hEvent, int FileDescriptor, ULONG mode)
- {
- #ifndef _WIN32
- ULONG Type;
- WINPR_HANDLE* Object;
- WINPR_EVENT* event;
- if (!winpr_Handle_GetInfo(hEvent, &Type, &Object))
- return -1;
- event = (WINPR_EVENT*)Object;
- if (!event->bAttached && event->pipe_fd[0] >= 0 && event->pipe_fd[0] != FileDescriptor)
- close(event->pipe_fd[0]);
- event->bAttached = TRUE;
- event->Mode = mode;
- event->pipe_fd[0] = FileDescriptor;
- return 0;
- #else
- return -1;
- #endif
- }
- /**
- * Returns platform-specific wait object as a void pointer
- *
- * On Windows, the returned object is the same as the hEvent
- * argument and is an event HANDLE usable in WaitForMultipleObjects
- *
- * On other platforms, the returned object can be cast to an int
- * to obtain a file descriptor usable in select()
- */
- void* GetEventWaitObject(HANDLE hEvent)
- {
- #ifndef _WIN32
- int fd;
- void* obj;
- fd = GetEventFileDescriptor(hEvent);
- obj = ((void*)(long)fd);
- return obj;
- #else
- return hEvent;
- #endif
- }
|