2012-09-24 23:58:33 +04:00
|
|
|
/**
|
|
|
|
* WinPR: Windows Portable Runtime
|
|
|
|
* Asynchronous I/O 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.
|
|
|
|
*/
|
|
|
|
|
2022-02-16 12:08:00 +03:00
|
|
|
#include <winpr/config.h>
|
2012-09-24 23:58:33 +04:00
|
|
|
|
|
|
|
#include <winpr/io.h>
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
2023-01-10 16:30:23 +03:00
|
|
|
#ifdef WINPR_HAVE_UNISTD_H
|
2013-08-23 06:36:37 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2013-09-26 07:16:33 +04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/un.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <winpr/crt.h>
|
2016-06-01 17:26:26 +03:00
|
|
|
#include <winpr/wlog.h>
|
2013-09-26 07:16:33 +04:00
|
|
|
|
2013-08-23 06:36:37 +04:00
|
|
|
#include "../handle/handle.h"
|
|
|
|
#include "../pipe/pipe.h"
|
2016-06-01 17:26:26 +03:00
|
|
|
#include "../log.h"
|
|
|
|
|
|
|
|
#define TAG WINPR_TAG("io")
|
2013-08-23 06:36:37 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL GetOverlappedResult(HANDLE hFile, LPOVERLAPPED lpOverlapped,
|
|
|
|
LPDWORD lpNumberOfBytesTransferred, BOOL bWait)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2016-06-01 17:26:26 +03:00
|
|
|
#if 1
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
|
|
|
#else
|
2013-08-23 06:36:37 +04:00
|
|
|
ULONG Type;
|
2015-07-03 10:36:58 +03:00
|
|
|
WINPR_HANDLE* Object;
|
2013-08-23 06:36:37 +04:00
|
|
|
|
|
|
|
if (!winpr_Handle_GetInfo(hFile, &Type, &Object))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
else if (Type == HANDLE_TYPE_NAMED_PIPE)
|
|
|
|
{
|
2014-02-04 01:03:43 +04:00
|
|
|
int status = -1;
|
2013-08-23 06:36:37 +04:00
|
|
|
DWORD request;
|
|
|
|
PVOID lpBuffer;
|
|
|
|
DWORD nNumberOfBytes;
|
|
|
|
WINPR_NAMED_PIPE* pipe;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
pipe = (WINPR_NAMED_PIPE*)Object;
|
2013-08-23 06:36:37 +04:00
|
|
|
|
|
|
|
if (!(pipe->dwFlagsAndAttributes & FILE_FLAG_OVERLAPPED))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
lpBuffer = lpOverlapped->Pointer;
|
2019-11-06 17:24:51 +03:00
|
|
|
request = (DWORD)lpOverlapped->Internal;
|
|
|
|
nNumberOfBytes = (DWORD)lpOverlapped->InternalHigh;
|
2013-08-23 06:36:37 +04:00
|
|
|
|
|
|
|
if (request == 0)
|
|
|
|
{
|
2013-09-26 07:16:33 +04:00
|
|
|
if (pipe->clientfd == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-08-23 06:36:37 +04:00
|
|
|
status = read(pipe->clientfd, lpBuffer, nNumberOfBytes);
|
|
|
|
}
|
2013-09-26 07:16:33 +04:00
|
|
|
else if (request == 1)
|
2013-08-23 06:36:37 +04:00
|
|
|
{
|
2013-09-26 07:16:33 +04:00
|
|
|
if (pipe->clientfd == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-08-23 06:36:37 +04:00
|
|
|
status = write(pipe->clientfd, lpBuffer, nNumberOfBytes);
|
|
|
|
}
|
2013-09-26 07:16:33 +04:00
|
|
|
else if (request == 2)
|
|
|
|
{
|
|
|
|
socklen_t length;
|
2022-10-13 17:25:36 +03:00
|
|
|
struct sockaddr_un s = { 0 };
|
2013-09-26 07:16:33 +04:00
|
|
|
|
|
|
|
if (pipe->serverfd == -1)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
length = sizeof(struct sockaddr_un);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
status = accept(pipe->serverfd, (struct sockaddr*)&s, &length);
|
2013-09-26 07:16:33 +04:00
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
pipe->clientfd = status;
|
|
|
|
pipe->ServerMode = FALSE;
|
|
|
|
|
|
|
|
status = 0;
|
|
|
|
}
|
2013-08-23 06:36:37 +04:00
|
|
|
|
|
|
|
if (status < 0)
|
|
|
|
{
|
|
|
|
*lpNumberOfBytesTransferred = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*lpNumberOfBytesTransferred = status;
|
|
|
|
}
|
|
|
|
|
2012-09-24 23:58:33 +04:00
|
|
|
return TRUE;
|
2016-06-01 17:26:26 +03:00
|
|
|
#endif
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL GetOverlappedResultEx(HANDLE hFile, LPOVERLAPPED lpOverlapped,
|
|
|
|
LPDWORD lpNumberOfBytesTransferred, DWORD dwMilliseconds,
|
|
|
|
BOOL bAlertable)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL DeviceIoControl(HANDLE hDevice, DWORD dwIoControlCode, LPVOID lpInBuffer, DWORD nInBufferSize,
|
2019-11-06 17:24:51 +03:00
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesReturned,
|
|
|
|
LPOVERLAPPED lpOverlapped)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
HANDLE CreateIoCompletionPort(HANDLE FileHandle, HANDLE ExistingCompletionPort,
|
|
|
|
ULONG_PTR CompletionKey, DWORD NumberOfConcurrentThreads)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
2012-09-24 23:58:33 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL GetQueuedCompletionStatus(HANDLE CompletionPort, LPDWORD lpNumberOfBytesTransferred,
|
2019-11-06 17:24:51 +03:00
|
|
|
PULONG_PTR lpCompletionKey, LPOVERLAPPED* lpOverlapped,
|
|
|
|
DWORD dwMilliseconds)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL GetQueuedCompletionStatusEx(HANDLE CompletionPort, LPOVERLAPPED_ENTRY lpCompletionPortEntries,
|
2019-11-06 17:24:51 +03:00
|
|
|
ULONG ulCount, PULONG ulNumEntriesRemoved, DWORD dwMilliseconds,
|
|
|
|
BOOL fAlertable)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL PostQueuedCompletionStatus(HANDLE CompletionPort, DWORD dwNumberOfBytesTransferred,
|
|
|
|
ULONG_PTR dwCompletionKey, LPOVERLAPPED lpOverlapped)
|
2012-09-24 23:58:33 +04:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CancelIo(HANDLE hFile)
|
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CancelIoEx(HANDLE hFile, LPOVERLAPPED lpOverlapped)
|
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CancelSynchronousIo(HANDLE hThread)
|
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2012-09-24 23:58:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2016-03-29 23:03:15 +03:00
|
|
|
|
|
|
|
#ifdef _UWP
|
|
|
|
|
2016-12-02 21:18:55 +03:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/wlog.h>
|
|
|
|
|
|
|
|
#include "../log.h"
|
|
|
|
|
|
|
|
#define TAG WINPR_TAG("io")
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL GetOverlappedResult(HANDLE hFile, LPOVERLAPPED lpOverlapped,
|
|
|
|
LPDWORD lpNumberOfBytesTransferred, BOOL bWait)
|
2016-03-29 23:03:15 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
return GetOverlappedResultEx(hFile, lpOverlapped, lpNumberOfBytesTransferred,
|
|
|
|
bWait ? INFINITE : 0, TRUE);
|
2016-03-29 23:03:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL DeviceIoControl(HANDLE hDevice, DWORD dwIoControlCode, LPVOID lpInBuffer, DWORD nInBufferSize,
|
2019-11-06 17:24:51 +03:00
|
|
|
LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesReturned,
|
|
|
|
LPOVERLAPPED lpOverlapped)
|
2016-03-29 23:03:15 +03:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2016-03-29 23:03:15 +03:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
HANDLE CreateIoCompletionPort(HANDLE FileHandle, HANDLE ExistingCompletionPort,
|
|
|
|
ULONG_PTR CompletionKey, DWORD NumberOfConcurrentThreads)
|
2016-03-29 23:03:15 +03:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
2016-03-29 23:03:15 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL GetQueuedCompletionStatus(HANDLE CompletionPort, LPDWORD lpNumberOfBytesTransferred,
|
2019-11-06 17:24:51 +03:00
|
|
|
PULONG_PTR lpCompletionKey, LPOVERLAPPED* lpOverlapped,
|
|
|
|
DWORD dwMilliseconds)
|
2016-03-29 23:03:15 +03:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2016-03-29 23:03:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL GetQueuedCompletionStatusEx(HANDLE CompletionPort, LPOVERLAPPED_ENTRY lpCompletionPortEntries,
|
2019-11-06 17:24:51 +03:00
|
|
|
ULONG ulCount, PULONG ulNumEntriesRemoved, DWORD dwMilliseconds,
|
|
|
|
BOOL fAlertable)
|
2016-03-29 23:03:15 +03:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2016-03-29 23:03:15 +03:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL PostQueuedCompletionStatus(HANDLE CompletionPort, DWORD dwNumberOfBytesTransferred,
|
|
|
|
ULONG_PTR dwCompletionKey, LPOVERLAPPED lpOverlapped)
|
2016-03-29 23:03:15 +03:00
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2016-03-29 23:03:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CancelIo(HANDLE hFile)
|
|
|
|
{
|
|
|
|
return CancelIoEx(hFile, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CancelSynchronousIo(HANDLE hThread)
|
|
|
|
{
|
2023-01-23 14:03:18 +03:00
|
|
|
WLog_ERR(TAG, "Not implemented");
|
2016-06-01 17:26:26 +03:00
|
|
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
|
|
return FALSE;
|
2016-03-29 23:03:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|