|
|
dd89bb |
/********************************************************/
|
|
|
dd89bb |
/* ntapi: Native API core library */
|
|
|
dde53a |
/* Copyright (C) 2013--2017 Z. Gilboa */
|
|
|
dd89bb |
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
|
|
|
dd89bb |
/********************************************************/
|
|
|
dd89bb |
|
|
|
dd89bb |
#include <psxtypes/psxtypes.h>
|
|
|
dd89bb |
#include <ntapi/nt_port.h>
|
|
|
dd89bb |
#include <ntapi/nt_tty.h>
|
|
|
dd89bb |
#include <ntapi/ntapi.h>
|
|
|
dd89bb |
#include "ntapi_impl.h"
|
|
|
dd89bb |
#include "ntapi_pty.h"
|
|
|
dd89bb |
|
|
|
dd89bb |
int32_t __stdcall __ntapi_pty_set(
|
|
|
dd89bb |
nt_pty * pty,
|
|
|
dd89bb |
nt_io_status_block * iosb,
|
|
|
dd89bb |
void * pty_info,
|
|
|
dd89bb |
uint32_t pty_info_length,
|
|
|
dd89bb |
nt_pty_info_class pty_info_class)
|
|
|
dd89bb |
{
|
|
|
dd89bb |
int32_t status;
|
|
|
dd89bb |
nt_pty_sigctl_msg msg;
|
|
|
dd89bb |
uintptr_t * info;
|
|
|
dd89bb |
|
|
|
858b95 |
if (pty_info_class>=NT_PTY_INFORMATION_CAP)
|
|
|
dd89bb |
return NT_STATUS_INVALID_INFO_CLASS;
|
|
|
c4fe1e |
|
|
|
c4fe1e |
if (pty_info_class == NT_PTY_BASIC_INFORMATION)
|
|
|
dd89bb |
return NT_STATUS_NOT_IMPLEMENTED;
|
|
|
c4fe1e |
|
|
|
c4fe1e |
if (pty_info_class == NT_PTY_INHERIT_INFORMATION)
|
|
|
efc01e |
return NT_STATUS_INVALID_INFO_CLASS;
|
|
|
c4fe1e |
|
|
|
c4fe1e |
if (pty_info_class == NT_PTY_CLIENT_INFORMATION)
|
|
|
c4fe1e |
if (pty_info_length != sizeof(nt_pty_client_info))
|
|
|
c4fe1e |
return NT_STATUS_INVALID_PARAMETER;
|
|
|
dd89bb |
|
|
|
dd89bb |
__ntapi->tt_aligned_block_memset(
|
|
|
dd89bb |
&msg,0,sizeof(msg));
|
|
|
dd89bb |
|
|
|
dd89bb |
msg.header.msg_type = NT_LPC_NEW_MESSAGE;
|
|
|
dd89bb |
msg.header.data_size = sizeof(msg.data);
|
|
|
dd89bb |
msg.header.msg_size = sizeof(msg);
|
|
|
dd89bb |
msg.data.ttyinfo.opcode = NT_TTY_PTY_SET;
|
|
|
dd89bb |
|
|
|
dd89bb |
msg.data.ctlinfo.hpty = pty->hpty;
|
|
|
dd89bb |
msg.data.ctlinfo.luid.high = pty->luid.high;
|
|
|
dd89bb |
msg.data.ctlinfo.luid.low = pty->luid.low;
|
|
|
dd89bb |
msg.data.ctlinfo.ctlcode = pty_info_class;
|
|
|
dd89bb |
|
|
|
dd89bb |
__ntapi->tt_guid_copy(
|
|
|
dd89bb |
&msg.data.ctlinfo.guid,
|
|
|
dd89bb |
&pty->guid);
|
|
|
dd89bb |
|
|
|
c4fe1e |
info = (uintptr_t *)pty_info;
|
|
|
dd89bb |
msg.data.ctlinfo.ctxarg[0] = info[0];
|
|
|
dd89bb |
msg.data.ctlinfo.ctxarg[1] = info[1];
|
|
|
dd89bb |
msg.data.ctlinfo.ctxarg[2] = info[2];
|
|
|
dd89bb |
msg.data.ctlinfo.ctxarg[3] = info[3];
|
|
|
dd89bb |
|
|
|
dd89bb |
if ((status = __ntapi->zw_request_wait_reply_port(pty->hport,&msg,&msg)))
|
|
|
dd89bb |
return status;
|
|
|
c4fe1e |
|
|
|
dd89bb |
else if (msg.data.ttyinfo.status)
|
|
|
dd89bb |
return msg.data.ttyinfo.status;
|
|
|
dd89bb |
|
|
|
dd89bb |
iosb->info = msg.data.ctlinfo.iosb.info;
|
|
|
dd89bb |
iosb->status = msg.data.ctlinfo.iosb.status;
|
|
|
dd89bb |
|
|
|
dd89bb |
return NT_STATUS_SUCCESS;
|
|
|
dd89bb |
}
|