1998-12-30 12:06:45 +00:00
|
|
|
/*
|
|
|
|
* Server-side console management
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998 Alexandre Julliard
|
2001-11-23 23:04:58 +00:00
|
|
|
* 2001 Eric Pouech
|
2020-10-15 16:19:43 +00:00
|
|
|
* Copyright 2020 Jacek Caban for CodeWeavers
|
1998-12-30 12:06:45 +00:00
|
|
|
*
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1998-12-30 12:06:45 +00:00
|
|
|
*/
|
|
|
|
|
1999-10-24 22:13:47 +00:00
|
|
|
#include "config.h"
|
2002-04-26 19:05:15 +00:00
|
|
|
#include "wine/port.h"
|
1999-10-24 22:13:47 +00:00
|
|
|
|
1998-12-30 12:06:45 +00:00
|
|
|
#include <assert.h>
|
1999-01-03 11:55:56 +00:00
|
|
|
#include <string.h>
|
1998-12-30 12:06:45 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2002-06-02 21:22:22 +00:00
|
|
|
#include <signal.h>
|
2020-09-21 15:06:26 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <termios.h>
|
1998-12-30 12:06:45 +00:00
|
|
|
|
2005-11-28 16:32:54 +00:00
|
|
|
#include "ntstatus.h"
|
|
|
|
#define WIN32_NO_STATUS
|
1999-05-15 10:48:19 +00:00
|
|
|
#include "handle.h"
|
|
|
|
#include "process.h"
|
1999-06-22 17:26:53 +00:00
|
|
|
#include "request.h"
|
2010-08-28 11:14:43 +00:00
|
|
|
#include "file.h"
|
2001-11-23 23:04:58 +00:00
|
|
|
#include "unicode.h"
|
2007-05-11 10:46:32 +00:00
|
|
|
#include "wincon.h"
|
2005-11-28 16:32:54 +00:00
|
|
|
#include "winternl.h"
|
2020-07-06 17:26:56 +00:00
|
|
|
#include "wine/condrv.h"
|
1998-12-30 12:06:45 +00:00
|
|
|
|
2007-05-11 10:46:32 +00:00
|
|
|
struct screen_buffer;
|
|
|
|
|
2020-03-21 10:57:39 +00:00
|
|
|
struct history_line
|
|
|
|
{
|
|
|
|
data_size_t len;
|
|
|
|
WCHAR text[1];
|
|
|
|
};
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console
|
2007-05-11 10:46:32 +00:00
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
2020-11-10 15:31:43 +00:00
|
|
|
int signaled; /* is console signaled */
|
2007-05-11 10:46:32 +00:00
|
|
|
int num_proc; /* number of processes attached to this console */
|
|
|
|
struct thread *renderer; /* console renderer thread */
|
|
|
|
struct screen_buffer *active; /* active screen buffer */
|
2020-08-20 21:48:21 +00:00
|
|
|
struct console_server *server; /* console server object */
|
2020-08-27 13:04:27 +00:00
|
|
|
unsigned int last_id; /* id of last created console buffer */
|
2010-08-30 20:18:44 +00:00
|
|
|
struct fd *fd; /* for bare console, attached input fd */
|
2020-08-20 21:50:20 +00:00
|
|
|
struct async_queue ioctl_q; /* ioctl queue */
|
2020-07-06 17:28:40 +00:00
|
|
|
struct async_queue read_q; /* read queue */
|
2007-05-11 10:46:32 +00:00
|
|
|
};
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static void console_dump( struct object *obj, int verbose );
|
|
|
|
static void console_destroy( struct object *obj );
|
|
|
|
static int console_signaled( struct object *obj, struct wait_queue_entry *entry );
|
|
|
|
static struct fd *console_get_fd( struct object *obj );
|
|
|
|
static struct object *console_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root );
|
|
|
|
static struct object *console_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
1999-01-19 17:48:23 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static const struct object_ops console_ops =
|
1998-12-30 12:06:45 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
sizeof(struct console), /* size */
|
|
|
|
console_dump, /* dump */
|
2007-12-05 17:16:42 +00:00
|
|
|
no_get_type, /* get_type */
|
2020-11-10 15:31:43 +00:00
|
|
|
add_queue, /* add_queue */
|
|
|
|
remove_queue, /* remove_queue */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_signaled, /* signaled */
|
2000-01-01 00:56:27 +00:00
|
|
|
no_satisfied, /* satisfied */
|
2005-04-24 17:35:52 +00:00
|
|
|
no_signal, /* signal */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_get_fd, /* get_fd */
|
2010-08-28 11:14:43 +00:00
|
|
|
default_fd_map_access, /* map_access */
|
2007-10-03 12:10:37 +00:00
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
2020-09-22 14:52:31 +00:00
|
|
|
no_get_full_name, /* get_full_name */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_lookup_name, /* lookup_name */
|
2016-02-04 12:07:19 +00:00
|
|
|
no_link_name, /* link_name */
|
|
|
|
NULL, /* unlink_name */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_open_file, /* open_file */
|
2019-03-25 13:37:09 +00:00
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
2005-06-09 15:39:52 +00:00
|
|
|
no_close_handle, /* close_handle */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_destroy /* destroy */
|
1999-01-19 17:48:23 +00:00
|
|
|
};
|
|
|
|
|
2020-07-09 17:28:07 +00:00
|
|
|
static enum server_fd_type console_get_fd_type( struct fd *fd );
|
2020-11-20 14:39:44 +00:00
|
|
|
static void console_get_file_info( struct fd *fd, obj_handle_t handle, unsigned int info_class );
|
2020-11-20 14:40:19 +00:00
|
|
|
static void console_get_volume_info( struct fd *fd, unsigned int info_class );
|
2020-11-27 17:13:30 +00:00
|
|
|
static int console_read( struct fd *fd, struct async *async, file_pos_t pos );
|
|
|
|
static int console_flush( struct fd *fd, struct async *async );
|
|
|
|
static int console_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
|
2020-07-09 17:28:07 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static const struct fd_ops console_fd_ops =
|
2020-07-09 17:28:07 +00:00
|
|
|
{
|
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
console_get_fd_type, /* get_fd_type */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_read, /* read */
|
2020-07-09 17:28:07 +00:00
|
|
|
no_fd_write, /* write */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_flush, /* flush */
|
2020-11-20 14:39:44 +00:00
|
|
|
console_get_file_info, /* get_file_info */
|
2020-11-20 14:40:19 +00:00
|
|
|
console_get_volume_info, /* get_volume_info */
|
2020-11-27 17:13:30 +00:00
|
|
|
console_ioctl, /* ioctl */
|
2020-07-09 17:28:07 +00:00
|
|
|
default_fd_queue_async, /* queue_async */
|
|
|
|
default_fd_reselect_async /* reselect_async */
|
|
|
|
};
|
|
|
|
|
2020-08-20 21:50:20 +00:00
|
|
|
struct console_host_ioctl
|
|
|
|
{
|
|
|
|
unsigned int code; /* ioctl code */
|
2020-08-27 13:04:27 +00:00
|
|
|
int output; /* output id for screen buffer ioctls */
|
2020-08-20 21:50:20 +00:00
|
|
|
struct async *async; /* ioctl async */
|
|
|
|
struct list entry; /* list entry */
|
|
|
|
};
|
|
|
|
|
2020-08-20 21:48:08 +00:00
|
|
|
struct console_server
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
2020-09-01 13:36:23 +00:00
|
|
|
struct fd *fd; /* pseudo-fd for ioctls */
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console; /* attached console */
|
2020-08-20 21:50:20 +00:00
|
|
|
struct list queue; /* ioctl queue */
|
2020-08-25 12:52:48 +00:00
|
|
|
struct list read_queue; /* blocking read queue */
|
2020-08-20 21:50:47 +00:00
|
|
|
int busy; /* flag if server processing an ioctl */
|
2020-09-21 15:06:26 +00:00
|
|
|
int term_fd; /* UNIX terminal fd */
|
|
|
|
struct termios termios; /* original termios */
|
2020-08-20 21:48:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void console_server_dump( struct object *obj, int verbose );
|
|
|
|
static void console_server_destroy( struct object *obj );
|
|
|
|
static int console_server_signaled( struct object *obj, struct wait_queue_entry *entry );
|
2020-09-01 13:36:23 +00:00
|
|
|
static struct fd *console_server_get_fd( struct object *obj );
|
2020-11-25 18:42:42 +00:00
|
|
|
static struct object *console_server_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root );
|
2020-08-20 21:48:08 +00:00
|
|
|
static struct object *console_server_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
|
|
|
|
|
|
|
static const struct object_ops console_server_ops =
|
|
|
|
{
|
|
|
|
sizeof(struct console_server), /* size */
|
|
|
|
console_server_dump, /* dump */
|
|
|
|
no_get_type, /* get_type */
|
|
|
|
add_queue, /* add_queue */
|
|
|
|
remove_queue, /* remove_queue */
|
|
|
|
console_server_signaled, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
|
|
|
no_signal, /* signal */
|
2020-09-01 13:36:23 +00:00
|
|
|
console_server_get_fd, /* get_fd */
|
2020-08-20 21:48:08 +00:00
|
|
|
default_fd_map_access, /* map_access */
|
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
2020-09-22 14:52:31 +00:00
|
|
|
no_get_full_name, /* get_full_name */
|
2020-08-20 21:48:21 +00:00
|
|
|
console_server_lookup_name, /* lookup_name */
|
2020-08-20 21:48:08 +00:00
|
|
|
no_link_name, /* link_name */
|
|
|
|
NULL, /* unlink_name */
|
|
|
|
console_server_open_file, /* open_file */
|
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
|
|
|
fd_close_handle, /* close_handle */
|
|
|
|
console_server_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
2020-09-01 13:36:23 +00:00
|
|
|
static int console_server_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
|
|
|
|
|
|
|
|
static const struct fd_ops console_server_fd_ops =
|
|
|
|
{
|
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
console_get_fd_type, /* get_fd_type */
|
|
|
|
no_fd_read, /* read */
|
|
|
|
no_fd_write, /* write */
|
|
|
|
no_fd_flush, /* flush */
|
|
|
|
no_fd_get_file_info, /* get_file_info */
|
|
|
|
no_fd_get_volume_info, /* get_volume_info */
|
|
|
|
console_server_ioctl, /* ioctl */
|
|
|
|
default_fd_queue_async, /* queue_async */
|
|
|
|
default_fd_reselect_async /* reselect_async */
|
|
|
|
};
|
|
|
|
|
2015-10-29 12:17:18 +00:00
|
|
|
struct font_info
|
|
|
|
{
|
|
|
|
short int width;
|
|
|
|
short int height;
|
2019-11-20 10:45:28 +00:00
|
|
|
short int weight;
|
|
|
|
short int pitch_family;
|
|
|
|
WCHAR *face_name;
|
|
|
|
data_size_t face_len;
|
2015-10-29 12:17:18 +00:00
|
|
|
};
|
|
|
|
|
2001-11-23 23:04:58 +00:00
|
|
|
struct screen_buffer
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
2005-02-25 21:06:11 +00:00
|
|
|
struct list entry; /* entry in list of all screen buffers */
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *input; /* associated console input */
|
2020-08-27 13:04:27 +00:00
|
|
|
unsigned int id; /* buffer id */
|
2010-08-30 20:18:52 +00:00
|
|
|
struct fd *fd; /* for bare console, attached output fd */
|
2020-08-27 13:05:09 +00:00
|
|
|
struct async_queue ioctl_q; /* ioctl queue */
|
2001-11-23 23:04:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void screen_buffer_dump( struct object *obj, int verbose );
|
|
|
|
static void screen_buffer_destroy( struct object *obj );
|
2020-11-10 15:31:53 +00:00
|
|
|
static int screen_buffer_add_queue( struct object *obj, struct wait_queue_entry *entry );
|
2010-08-30 20:18:52 +00:00
|
|
|
static struct fd *screen_buffer_get_fd( struct object *obj );
|
2020-06-25 20:26:54 +00:00
|
|
|
static struct object *screen_buffer_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
2001-11-23 23:04:58 +00:00
|
|
|
|
1999-01-19 17:48:23 +00:00
|
|
|
static const struct object_ops screen_buffer_ops =
|
|
|
|
{
|
2000-01-01 00:56:27 +00:00
|
|
|
sizeof(struct screen_buffer), /* size */
|
|
|
|
screen_buffer_dump, /* dump */
|
2007-12-05 17:16:42 +00:00
|
|
|
no_get_type, /* get_type */
|
2020-11-10 15:31:53 +00:00
|
|
|
screen_buffer_add_queue, /* add_queue */
|
2001-11-23 23:04:58 +00:00
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
NULL, /* satisfied */
|
2005-04-24 17:35:52 +00:00
|
|
|
no_signal, /* signal */
|
2010-08-30 20:18:52 +00:00
|
|
|
screen_buffer_get_fd, /* get_fd */
|
2010-08-28 11:14:43 +00:00
|
|
|
default_fd_map_access, /* map_access */
|
2007-10-03 12:10:37 +00:00
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
2020-09-22 14:52:31 +00:00
|
|
|
no_get_full_name, /* get_full_name */
|
2005-11-22 14:55:42 +00:00
|
|
|
no_lookup_name, /* lookup_name */
|
2016-02-04 12:07:19 +00:00
|
|
|
no_link_name, /* link_name */
|
|
|
|
NULL, /* unlink_name */
|
2020-06-25 20:26:54 +00:00
|
|
|
screen_buffer_open_file, /* open_file */
|
2019-03-25 13:37:09 +00:00
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
2005-06-09 15:39:52 +00:00
|
|
|
no_close_handle, /* close_handle */
|
2000-01-01 00:56:27 +00:00
|
|
|
screen_buffer_destroy /* destroy */
|
1998-12-30 12:06:45 +00:00
|
|
|
};
|
|
|
|
|
2020-11-17 17:58:16 +00:00
|
|
|
static int screen_buffer_write( struct fd *fd, struct async *async, file_pos_t pos );
|
2020-07-09 17:28:07 +00:00
|
|
|
static int screen_buffer_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
|
2010-08-30 20:18:44 +00:00
|
|
|
|
2020-07-09 17:28:07 +00:00
|
|
|
static const struct fd_ops screen_buffer_fd_ops =
|
2010-08-30 20:18:44 +00:00
|
|
|
{
|
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
console_get_fd_type, /* get_fd_type */
|
2015-05-05 03:17:45 +00:00
|
|
|
no_fd_read, /* read */
|
2020-11-17 17:58:16 +00:00
|
|
|
screen_buffer_write, /* write */
|
2015-05-05 03:17:45 +00:00
|
|
|
no_fd_flush, /* flush */
|
2020-11-20 14:39:44 +00:00
|
|
|
console_get_file_info, /* get_file_info */
|
2020-11-20 14:40:19 +00:00
|
|
|
console_get_volume_info, /* get_volume_info */
|
2020-07-09 17:28:07 +00:00
|
|
|
screen_buffer_ioctl, /* ioctl */
|
2010-08-30 20:18:44 +00:00
|
|
|
default_fd_queue_async, /* queue_async */
|
2016-12-01 11:10:34 +00:00
|
|
|
default_fd_reselect_async /* reselect_async */
|
2010-08-30 20:18:44 +00:00
|
|
|
};
|
|
|
|
|
2020-06-25 20:26:35 +00:00
|
|
|
static struct object_type *console_device_get_type( struct object *obj );
|
|
|
|
static void console_device_dump( struct object *obj, int verbose );
|
2020-11-25 18:42:42 +00:00
|
|
|
static struct object *console_device_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root );
|
2020-06-25 20:26:35 +00:00
|
|
|
static struct object *console_device_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
|
|
|
|
|
|
|
static const struct object_ops console_device_ops =
|
|
|
|
{
|
|
|
|
sizeof(struct object), /* size */
|
|
|
|
console_device_dump, /* dump */
|
|
|
|
console_device_get_type, /* get_type */
|
|
|
|
no_add_queue, /* add_queue */
|
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
|
|
|
no_signal, /* signal */
|
|
|
|
no_get_fd, /* get_fd */
|
|
|
|
default_fd_map_access, /* map_access */
|
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
2020-09-22 14:52:31 +00:00
|
|
|
default_get_full_name, /* get_full_name */
|
2020-06-25 20:26:35 +00:00
|
|
|
console_device_lookup_name, /* lookup_name */
|
|
|
|
directory_link_name, /* link_name */
|
|
|
|
default_unlink_name, /* unlink_name */
|
|
|
|
console_device_open_file, /* open_file */
|
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
|
|
|
no_close_handle, /* close_handle */
|
|
|
|
no_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
2020-11-27 17:13:59 +00:00
|
|
|
struct console_input
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
|
|
|
struct fd *fd; /* pseudo-fd */
|
|
|
|
};
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static void console_input_dump( struct object *obj, int verbose );
|
|
|
|
static struct object *console_input_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
|
|
|
static int console_input_add_queue( struct object *obj, struct wait_queue_entry *entry );
|
|
|
|
static struct fd *console_input_get_fd( struct object *obj );
|
2020-11-27 17:13:59 +00:00
|
|
|
static void console_input_destroy( struct object *obj );
|
2020-11-12 18:56:18 +00:00
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static const struct object_ops console_input_ops =
|
2020-11-12 18:56:18 +00:00
|
|
|
{
|
2020-11-27 17:13:59 +00:00
|
|
|
sizeof(struct console_input), /* size */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_input_dump, /* dump */
|
2020-11-12 18:56:18 +00:00
|
|
|
console_device_get_type, /* get_type */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_input_add_queue, /* add_queue */
|
2020-11-12 18:56:18 +00:00
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
|
|
|
no_signal, /* signal */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_input_get_fd, /* get_fd */
|
2020-11-12 18:56:18 +00:00
|
|
|
no_map_access, /* map_access */
|
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
|
|
|
no_get_full_name, /* get_full_name */
|
|
|
|
no_lookup_name, /* lookup_name */
|
|
|
|
directory_link_name, /* link_name */
|
|
|
|
default_unlink_name, /* unlink_name */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_input_open_file, /* open_file */
|
2020-11-12 18:56:18 +00:00
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
|
|
|
no_close_handle, /* close_handle */
|
2020-11-27 17:13:59 +00:00
|
|
|
console_input_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int console_input_read( struct fd *fd, struct async *async, file_pos_t pos );
|
|
|
|
static int console_input_flush( struct fd *fd, struct async *async );
|
|
|
|
static int console_input_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
|
|
|
|
|
|
|
|
static const struct fd_ops console_input_fd_ops =
|
|
|
|
{
|
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
console_get_fd_type, /* get_fd_type */
|
|
|
|
console_input_read, /* read */
|
|
|
|
no_fd_write, /* write */
|
|
|
|
console_input_flush, /* flush */
|
|
|
|
console_get_file_info, /* get_file_info */
|
|
|
|
console_get_volume_info, /* get_volume_info */
|
|
|
|
console_input_ioctl, /* ioctl */
|
|
|
|
default_fd_queue_async, /* queue_async */
|
|
|
|
default_fd_reselect_async /* reselect_async */
|
2020-11-12 18:56:18 +00:00
|
|
|
};
|
|
|
|
|
2020-11-27 17:14:12 +00:00
|
|
|
struct console_output
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
|
|
|
struct fd *fd; /* pseudo-fd */
|
|
|
|
};
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static void console_output_dump( struct object *obj, int verbose );
|
|
|
|
static int console_output_add_queue( struct object *obj, struct wait_queue_entry *entry );
|
|
|
|
static struct fd *console_output_get_fd( struct object *obj );
|
|
|
|
static struct object *console_output_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
2020-11-27 17:14:12 +00:00
|
|
|
static void console_output_destroy( struct object *obj );
|
2020-11-12 18:56:23 +00:00
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static const struct object_ops console_output_ops =
|
2020-11-12 18:56:23 +00:00
|
|
|
{
|
2020-11-27 17:14:12 +00:00
|
|
|
sizeof(struct console_output), /* size */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_output_dump, /* dump */
|
2020-11-12 18:56:23 +00:00
|
|
|
console_device_get_type, /* get_type */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_output_add_queue, /* add_queue */
|
2020-11-12 18:56:23 +00:00
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
|
|
|
no_signal, /* signal */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_output_get_fd, /* get_fd */
|
2020-11-12 18:56:23 +00:00
|
|
|
no_map_access, /* map_access */
|
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
|
|
|
no_get_full_name, /* get_full_name */
|
|
|
|
no_lookup_name, /* lookup_name */
|
|
|
|
directory_link_name, /* link_name */
|
|
|
|
default_unlink_name, /* unlink_name */
|
2020-11-27 17:13:51 +00:00
|
|
|
console_output_open_file, /* open_file */
|
2020-11-12 18:56:23 +00:00
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
|
|
|
no_close_handle, /* close_handle */
|
2020-11-27 17:14:12 +00:00
|
|
|
console_output_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int console_output_write( struct fd *fd, struct async *async, file_pos_t pos );
|
|
|
|
static int console_output_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
|
|
|
|
|
|
|
|
static const struct fd_ops console_output_fd_ops =
|
|
|
|
{
|
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
console_get_fd_type, /* get_fd_type */
|
|
|
|
no_fd_read, /* read */
|
|
|
|
console_output_write, /* write */
|
|
|
|
no_fd_flush, /* flush */
|
|
|
|
console_get_file_info, /* get_file_info */
|
|
|
|
console_get_volume_info, /* get_volume_info */
|
|
|
|
console_output_ioctl, /* ioctl */
|
|
|
|
default_fd_queue_async, /* queue_async */
|
|
|
|
default_fd_reselect_async /* reselect_async */
|
2020-11-12 18:56:23 +00:00
|
|
|
};
|
|
|
|
|
2020-09-16 18:38:37 +00:00
|
|
|
struct console_connection
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
2020-09-16 18:39:26 +00:00
|
|
|
struct fd *fd; /* pseudo-fd for ioctls */
|
2020-09-16 18:38:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void console_connection_dump( struct object *obj, int verbose );
|
2020-09-16 18:39:26 +00:00
|
|
|
static struct fd *console_connection_get_fd( struct object *obj );
|
2020-11-25 18:42:42 +00:00
|
|
|
static struct object *console_connection_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root );
|
2020-09-16 18:38:37 +00:00
|
|
|
static struct object *console_connection_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options );
|
|
|
|
static int console_connection_close_handle( struct object *obj, struct process *process, obj_handle_t handle );
|
2020-09-16 18:39:26 +00:00
|
|
|
static void console_connection_destroy( struct object *obj );
|
2020-09-16 18:38:37 +00:00
|
|
|
|
|
|
|
static const struct object_ops console_connection_ops =
|
|
|
|
{
|
|
|
|
sizeof(struct console_connection),/* size */
|
|
|
|
console_connection_dump, /* dump */
|
|
|
|
console_device_get_type, /* get_type */
|
|
|
|
no_add_queue, /* add_queue */
|
|
|
|
NULL, /* remove_queue */
|
|
|
|
NULL, /* signaled */
|
|
|
|
no_satisfied, /* satisfied */
|
|
|
|
no_signal, /* signal */
|
2020-09-16 18:39:26 +00:00
|
|
|
console_connection_get_fd, /* get_fd */
|
2020-09-16 18:38:37 +00:00
|
|
|
no_map_access, /* map_access */
|
|
|
|
default_get_sd, /* get_sd */
|
|
|
|
default_set_sd, /* set_sd */
|
2020-09-22 14:52:31 +00:00
|
|
|
no_get_full_name, /* get_full_name */
|
2020-09-16 18:39:35 +00:00
|
|
|
console_connection_lookup_name, /* lookup_name */
|
2020-09-16 18:38:37 +00:00
|
|
|
directory_link_name, /* link_name */
|
|
|
|
default_unlink_name, /* unlink_name */
|
|
|
|
console_connection_open_file, /* open_file */
|
|
|
|
no_kernel_obj_list, /* get_kernel_obj_list */
|
|
|
|
console_connection_close_handle, /* close_handle */
|
2020-09-16 18:39:26 +00:00
|
|
|
console_connection_destroy /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int console_connection_ioctl( struct fd *fd, ioctl_code_t code, struct async *async );
|
|
|
|
|
|
|
|
static const struct fd_ops console_connection_fd_ops =
|
|
|
|
{
|
|
|
|
default_fd_get_poll_events, /* get_poll_events */
|
|
|
|
default_poll_event, /* poll_event */
|
|
|
|
console_get_fd_type, /* get_fd_type */
|
|
|
|
no_fd_read, /* read */
|
|
|
|
no_fd_write, /* write */
|
|
|
|
no_fd_flush, /* flush */
|
|
|
|
no_fd_get_file_info, /* get_file_info */
|
|
|
|
no_fd_get_volume_info, /* get_volume_info */
|
|
|
|
console_connection_ioctl, /* ioctl */
|
|
|
|
default_fd_queue_async, /* queue_async */
|
|
|
|
default_fd_reselect_async /* reselect_async */
|
2020-09-16 18:38:37 +00:00
|
|
|
};
|
|
|
|
|
2005-02-25 21:06:11 +00:00
|
|
|
static struct list screen_buffer_list = LIST_INIT(screen_buffer_list);
|
2001-11-23 23:04:58 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static int console_signaled( struct object *obj, struct wait_queue_entry *entry )
|
2020-11-10 15:31:43 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = (struct console*)obj;
|
2020-11-10 15:31:43 +00:00
|
|
|
return console->signaled;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static struct fd *console_get_fd( struct object *obj )
|
2010-08-30 20:18:44 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = (struct console *)obj;
|
|
|
|
assert( obj->ops == &console_ops );
|
|
|
|
return (struct fd *)grab_object( console->fd );
|
2010-08-30 20:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static enum server_fd_type console_get_fd_type( struct fd *fd )
|
|
|
|
{
|
|
|
|
return FD_TYPE_CHAR;
|
|
|
|
}
|
|
|
|
|
2020-11-20 14:39:44 +00:00
|
|
|
static void console_get_file_info( struct fd *fd, obj_handle_t handle, unsigned int info_class )
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_DEVICE_REQUEST );
|
|
|
|
}
|
|
|
|
|
2020-11-20 14:40:19 +00:00
|
|
|
static void console_get_volume_info( struct fd *fd, unsigned int info_class )
|
|
|
|
{
|
|
|
|
switch (info_class)
|
|
|
|
{
|
|
|
|
case FileFsDeviceInformation:
|
|
|
|
{
|
|
|
|
static const FILE_FS_DEVICE_INFORMATION device_info =
|
|
|
|
{
|
|
|
|
FILE_DEVICE_CONSOLE,
|
|
|
|
FILE_DEVICE_ALLOW_APPCONTAINER_TRAVERSAL
|
|
|
|
};
|
|
|
|
if (get_reply_max_size() >= sizeof(device_info))
|
|
|
|
set_reply_data( &device_info, sizeof(device_info) );
|
|
|
|
else
|
|
|
|
set_error( STATUS_BUFFER_TOO_SMALL );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
set_error( STATUS_NOT_IMPLEMENTED );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static struct object *create_console(void)
|
1998-12-30 12:06:45 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console;
|
1998-12-30 12:06:45 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
if (!(console = alloc_object( &console_ops )))
|
2014-11-17 18:15:20 +00:00
|
|
|
return NULL;
|
2020-09-22 14:47:10 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
console->renderer = NULL;
|
|
|
|
console->signaled = 0;
|
|
|
|
console->num_proc = 0;
|
|
|
|
console->active = NULL;
|
|
|
|
console->server = NULL;
|
|
|
|
console->fd = NULL;
|
|
|
|
console->last_id = 0;
|
|
|
|
init_async_queue( &console->ioctl_q );
|
|
|
|
init_async_queue( &console->read_q );
|
|
|
|
|
|
|
|
console->fd = alloc_pseudo_fd( &console_fd_ops, &console->obj, FILE_SYNCHRONOUS_IO_NONALERT );
|
|
|
|
if (!console->fd)
|
2020-07-06 17:25:50 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
release_object( console );
|
2020-07-06 17:25:50 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2020-11-27 17:13:30 +00:00
|
|
|
allow_fd_caching( console->fd );
|
|
|
|
return &console->obj;
|
1999-06-22 17:26:53 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 21:50:20 +00:00
|
|
|
static void console_host_ioctl_terminate( struct console_host_ioctl *call, unsigned int status )
|
|
|
|
{
|
|
|
|
if (call->async)
|
|
|
|
{
|
|
|
|
async_terminate( call->async, status );
|
|
|
|
release_object( call->async );
|
|
|
|
}
|
|
|
|
free( call );
|
|
|
|
}
|
|
|
|
|
2020-08-27 13:04:27 +00:00
|
|
|
static int queue_host_ioctl( struct console_server *server, unsigned int code, unsigned int output,
|
2020-08-20 21:50:20 +00:00
|
|
|
struct async *async, struct async_queue *queue )
|
|
|
|
{
|
|
|
|
struct console_host_ioctl *ioctl;
|
|
|
|
|
|
|
|
if (!(ioctl = mem_alloc( sizeof(*ioctl) ))) return 0;
|
2020-08-27 13:04:27 +00:00
|
|
|
ioctl->code = code;
|
|
|
|
ioctl->output = output;
|
|
|
|
ioctl->async = NULL;
|
2020-08-20 21:50:20 +00:00
|
|
|
if (async)
|
|
|
|
{
|
|
|
|
ioctl->async = (struct async *)grab_object( async );
|
|
|
|
queue_async( queue, async );
|
|
|
|
}
|
|
|
|
list_add_tail( &server->queue, &ioctl->entry );
|
|
|
|
wake_up( &server->obj, 0 );
|
|
|
|
if (async) set_error( STATUS_PENDING );
|
2020-10-15 16:19:43 +00:00
|
|
|
return 1;
|
2020-08-20 21:50:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void disconnect_console_server( struct console_server *server )
|
|
|
|
{
|
|
|
|
while (!list_empty( &server->queue ))
|
|
|
|
{
|
|
|
|
struct console_host_ioctl *call = LIST_ENTRY( list_head( &server->queue ), struct console_host_ioctl, entry );
|
|
|
|
list_remove( &call->entry );
|
|
|
|
console_host_ioctl_terminate( call, STATUS_CANCELLED );
|
|
|
|
}
|
2020-08-25 12:52:48 +00:00
|
|
|
while (!list_empty( &server->read_queue ))
|
|
|
|
{
|
|
|
|
struct console_host_ioctl *call = LIST_ENTRY( list_head( &server->read_queue ), struct console_host_ioctl, entry );
|
|
|
|
list_remove( &call->entry );
|
|
|
|
console_host_ioctl_terminate( call, STATUS_CANCELLED );
|
|
|
|
}
|
2020-08-20 21:50:20 +00:00
|
|
|
|
2020-09-21 15:06:26 +00:00
|
|
|
if (server->term_fd != -1)
|
|
|
|
{
|
|
|
|
tcsetattr( server->term_fd, TCSANOW, &server->termios );
|
|
|
|
close( server->term_fd );
|
|
|
|
server->term_fd = -1;
|
|
|
|
}
|
|
|
|
|
2020-08-20 21:50:20 +00:00
|
|
|
if (server->console)
|
|
|
|
{
|
|
|
|
assert( server->console->server == server );
|
|
|
|
server->console->server = NULL;
|
|
|
|
server->console = NULL;
|
|
|
|
wake_up( &server->obj, 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static void set_active_screen_buffer( struct console *console, struct screen_buffer *screen_buffer )
|
2007-12-18 00:03:11 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
if (console->active == screen_buffer) return;
|
|
|
|
if (console->active) release_object( console->active );
|
|
|
|
console->active = (struct screen_buffer *)grab_object( screen_buffer );
|
2020-08-27 13:03:43 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
if (console->server) queue_host_ioctl( console->server, IOCTL_CONDRV_ACTIVATE,
|
|
|
|
screen_buffer->id, NULL, NULL );
|
2007-12-18 00:03:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:37 +00:00
|
|
|
static struct object *create_screen_buffer( struct console *console )
|
1999-06-22 17:26:53 +00:00
|
|
|
{
|
|
|
|
struct screen_buffer *screen_buffer;
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
if (console->last_id == ~0)
|
2020-08-27 13:04:27 +00:00
|
|
|
{
|
|
|
|
set_error( STATUS_NO_MEMORY );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-09-19 10:27:12 +00:00
|
|
|
if (!(screen_buffer = alloc_object( &screen_buffer_ops )))
|
|
|
|
return NULL;
|
2020-09-22 14:47:10 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
screen_buffer->id = ++console->last_id;
|
|
|
|
screen_buffer->input = console;
|
2020-08-27 13:05:09 +00:00
|
|
|
init_async_queue( &screen_buffer->ioctl_q );
|
2015-08-19 10:15:01 +00:00
|
|
|
list_add_head( &screen_buffer_list, &screen_buffer->entry );
|
|
|
|
|
2020-09-22 14:47:10 +00:00
|
|
|
screen_buffer->fd = alloc_pseudo_fd( &screen_buffer_fd_ops, &screen_buffer->obj,
|
|
|
|
FILE_SYNCHRONOUS_IO_NONALERT );
|
2020-07-09 17:28:13 +00:00
|
|
|
if (!screen_buffer->fd)
|
2010-08-30 20:18:52 +00:00
|
|
|
{
|
2020-07-09 17:28:13 +00:00
|
|
|
release_object( screen_buffer );
|
|
|
|
return NULL;
|
2010-08-30 20:18:52 +00:00
|
|
|
}
|
2020-07-09 17:28:13 +00:00
|
|
|
allow_fd_caching(screen_buffer->fd);
|
2001-11-23 23:04:58 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
if (console->server) queue_host_ioctl( console->server, IOCTL_CONDRV_INIT_OUTPUT,
|
|
|
|
screen_buffer->id, NULL, NULL );
|
|
|
|
if (!console->active) set_active_screen_buffer( console, screen_buffer );
|
2020-07-21 12:56:57 +00:00
|
|
|
return &screen_buffer->obj;
|
1999-06-11 18:31:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* free the console for this process */
|
|
|
|
int free_console( struct process *process )
|
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = process->console;
|
2001-11-23 23:04:58 +00:00
|
|
|
|
2010-08-30 20:18:44 +00:00
|
|
|
if (!console) return 0;
|
2001-11-23 23:04:58 +00:00
|
|
|
|
|
|
|
process->console = NULL;
|
2020-10-14 17:57:02 +00:00
|
|
|
console->num_proc--;
|
2001-11-23 23:04:58 +00:00
|
|
|
release_object( console );
|
|
|
|
|
1999-06-11 18:31:22 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
struct thread *console_get_renderer( struct console *console )
|
2007-05-11 10:46:32 +00:00
|
|
|
{
|
|
|
|
return console->renderer;
|
|
|
|
}
|
|
|
|
|
2004-09-08 01:25:05 +00:00
|
|
|
struct console_signal_info
|
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console;
|
|
|
|
process_id_t group;
|
|
|
|
int signal;
|
2002-06-02 21:22:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int propagate_console_signal_cb(struct process *process, void *user)
|
|
|
|
{
|
|
|
|
struct console_signal_info* csi = (struct console_signal_info*)user;
|
|
|
|
|
|
|
|
if (process->console == csi->console && process->running_threads &&
|
2002-10-03 19:54:57 +00:00
|
|
|
(!csi->group || process->group_id == csi->group))
|
2002-06-02 21:22:22 +00:00
|
|
|
{
|
2004-09-08 01:25:05 +00:00
|
|
|
/* find a suitable thread to signal */
|
|
|
|
struct thread *thread;
|
2005-03-01 10:56:18 +00:00
|
|
|
LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
|
2002-06-02 21:22:22 +00:00
|
|
|
{
|
2004-09-08 01:25:05 +00:00
|
|
|
if (send_thread_signal( thread, csi->signal )) break;
|
2002-06-02 21:22:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static void propagate_console_signal( struct console *console,
|
2002-10-03 19:54:57 +00:00
|
|
|
int sig, process_id_t group_id )
|
2002-06-02 21:22:22 +00:00
|
|
|
{
|
|
|
|
struct console_signal_info csi;
|
|
|
|
|
|
|
|
if (!console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* FIXME: should support the other events (like CTRL_BREAK) */
|
|
|
|
if (sig != CTRL_C_EVENT)
|
|
|
|
{
|
|
|
|
set_error( STATUS_NOT_IMPLEMENTED );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
csi.console = console;
|
|
|
|
csi.signal = SIGINT;
|
|
|
|
csi.group = group_id;
|
|
|
|
|
|
|
|
enum_processes(propagate_console_signal_cb, &csi);
|
|
|
|
}
|
|
|
|
|
2001-11-23 23:04:58 +00:00
|
|
|
/* dumb dump */
|
2020-11-27 17:13:30 +00:00
|
|
|
static void console_dump( struct object *obj, int verbose )
|
1998-12-30 12:06:45 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = (struct console *)obj;
|
|
|
|
assert( obj->ops == &console_ops );
|
2020-10-14 17:57:24 +00:00
|
|
|
fprintf( stderr, "Console input active=%p server=%p\n",
|
|
|
|
console->active, console->server );
|
1998-12-30 12:06:45 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static void console_destroy( struct object *obj )
|
1999-01-19 17:48:23 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = (struct console *)obj;
|
2020-10-13 14:30:16 +00:00
|
|
|
struct screen_buffer *curr;
|
2001-11-23 23:04:58 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
assert( obj->ops == &console_ops );
|
2020-08-20 21:48:21 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
if (console->server)
|
2020-08-20 21:48:21 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
assert( console->server->console == console );
|
|
|
|
disconnect_console_server( console->server );
|
2020-08-20 21:48:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
if (console->active) release_object( console->active );
|
|
|
|
console->active = NULL;
|
2001-11-23 23:04:58 +00:00
|
|
|
|
2005-02-25 21:06:11 +00:00
|
|
|
LIST_FOR_EACH_ENTRY( curr, &screen_buffer_list, struct screen_buffer, entry )
|
2001-11-23 23:04:58 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
if (curr->input == console) curr->input = NULL;
|
2001-11-23 23:04:58 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
free_async_queue( &console->ioctl_q );
|
|
|
|
free_async_queue( &console->read_q );
|
|
|
|
if (console->fd)
|
|
|
|
release_object( console->fd );
|
1999-01-19 17:48:23 +00:00
|
|
|
}
|
1998-12-30 12:06:45 +00:00
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static struct object *create_console_connection( struct console *console )
|
2020-09-16 18:38:37 +00:00
|
|
|
{
|
|
|
|
struct console_connection *connection;
|
|
|
|
|
|
|
|
if (current->process->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_ACCESS_DENIED );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(connection = alloc_object( &console_connection_ops ))) return NULL;
|
2020-09-16 18:39:26 +00:00
|
|
|
if (!(connection->fd = alloc_pseudo_fd( &console_connection_fd_ops, &connection->obj, 0 )))
|
|
|
|
{
|
|
|
|
release_object( connection );
|
|
|
|
return NULL;
|
|
|
|
}
|
2020-09-16 18:38:37 +00:00
|
|
|
|
2020-09-16 18:39:10 +00:00
|
|
|
if (console)
|
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
current->process->console = (struct console *)grab_object( console );
|
2020-09-16 18:39:10 +00:00
|
|
|
console->num_proc++;
|
|
|
|
}
|
2020-09-16 18:38:37 +00:00
|
|
|
|
|
|
|
return &connection->obj;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static struct object *console_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root )
|
2020-09-16 18:38:37 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = (struct console *)obj;
|
2020-09-16 18:38:37 +00:00
|
|
|
static const WCHAR connectionW[] = {'C','o','n','n','e','c','t','i','o','n'};
|
2020-11-27 17:13:30 +00:00
|
|
|
assert( obj->ops == &console_ops );
|
2020-09-16 18:38:37 +00:00
|
|
|
|
|
|
|
if (name->len == sizeof(connectionW) && !memcmp( name->str, connectionW, name->len ))
|
|
|
|
{
|
|
|
|
name->len = 0;
|
|
|
|
return create_console_connection( console );
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static struct object *console_open_file( struct object *obj, unsigned int access,
|
2020-06-25 20:26:45 +00:00
|
|
|
unsigned int sharing, unsigned int options )
|
|
|
|
{
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
1999-01-19 17:48:23 +00:00
|
|
|
static void screen_buffer_dump( struct object *obj, int verbose )
|
|
|
|
{
|
2001-11-23 23:04:58 +00:00
|
|
|
struct screen_buffer *screen_buffer = (struct screen_buffer *)obj;
|
1999-01-19 17:48:23 +00:00
|
|
|
assert( obj->ops == &screen_buffer_ops );
|
2001-11-23 23:04:58 +00:00
|
|
|
|
|
|
|
fprintf(stderr, "Console screen buffer input=%p\n", screen_buffer->input );
|
1999-01-19 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2001-11-23 23:04:58 +00:00
|
|
|
static void screen_buffer_destroy( struct object *obj )
|
1999-01-19 17:48:23 +00:00
|
|
|
{
|
2001-11-30 18:46:42 +00:00
|
|
|
struct screen_buffer *screen_buffer = (struct screen_buffer *)obj;
|
2001-11-23 23:04:58 +00:00
|
|
|
|
|
|
|
assert( obj->ops == &screen_buffer_ops );
|
|
|
|
|
2005-02-25 21:06:11 +00:00
|
|
|
list_remove( &screen_buffer->entry );
|
2020-08-27 13:04:27 +00:00
|
|
|
if (screen_buffer->input && screen_buffer->input->server)
|
|
|
|
queue_host_ioctl( screen_buffer->input->server, IOCTL_CONDRV_CLOSE_OUTPUT,
|
|
|
|
screen_buffer->id, NULL, NULL );
|
2010-08-30 20:18:52 +00:00
|
|
|
if (screen_buffer->fd) release_object( screen_buffer->fd );
|
2020-08-27 13:05:09 +00:00
|
|
|
free_async_queue( &screen_buffer->ioctl_q );
|
1999-01-19 17:48:23 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:26:54 +00:00
|
|
|
static struct object *screen_buffer_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options )
|
|
|
|
{
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
2020-11-10 15:31:53 +00:00
|
|
|
static int screen_buffer_add_queue( struct object *obj, struct wait_queue_entry *entry )
|
|
|
|
{
|
|
|
|
struct screen_buffer *screen_buffer = (struct screen_buffer*)obj;
|
|
|
|
if (!screen_buffer->input)
|
|
|
|
{
|
|
|
|
set_error( STATUS_ACCESS_DENIED );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return add_queue( &screen_buffer->input->obj, entry );
|
|
|
|
}
|
|
|
|
|
2010-08-30 20:18:52 +00:00
|
|
|
static struct fd *screen_buffer_get_fd( struct object *obj )
|
|
|
|
{
|
|
|
|
struct screen_buffer *screen_buffer = (struct screen_buffer*)obj;
|
|
|
|
assert( obj->ops == &screen_buffer_ops );
|
2010-09-16 19:05:26 +00:00
|
|
|
if (screen_buffer->fd)
|
|
|
|
return (struct fd*)grab_object( screen_buffer->fd );
|
|
|
|
set_error( STATUS_OBJECT_TYPE_MISMATCH );
|
|
|
|
return NULL;
|
2010-08-30 20:18:52 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 21:48:08 +00:00
|
|
|
static void console_server_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
assert( obj->ops == &console_server_ops );
|
|
|
|
fprintf( stderr, "Console server\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void console_server_destroy( struct object *obj )
|
|
|
|
{
|
2020-08-20 21:48:21 +00:00
|
|
|
struct console_server *server = (struct console_server *)obj;
|
|
|
|
assert( obj->ops == &console_server_ops );
|
2020-08-20 21:50:20 +00:00
|
|
|
disconnect_console_server( server );
|
2020-09-01 13:36:23 +00:00
|
|
|
if (server->fd) release_object( server->fd );
|
2020-08-20 21:48:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 18:42:42 +00:00
|
|
|
static struct object *console_server_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root )
|
2020-08-20 21:48:21 +00:00
|
|
|
{
|
|
|
|
struct console_server *server = (struct console_server*)obj;
|
|
|
|
static const WCHAR referenceW[] = {'R','e','f','e','r','e','n','c','e'};
|
2020-08-20 21:48:08 +00:00
|
|
|
assert( obj->ops == &console_server_ops );
|
2020-08-20 21:48:21 +00:00
|
|
|
|
|
|
|
if (name->len == sizeof(referenceW) && !memcmp( name->str, referenceW, name->len ))
|
|
|
|
{
|
|
|
|
struct screen_buffer *screen_buffer;
|
|
|
|
name->len = 0;
|
|
|
|
if (server->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
2020-11-27 17:13:30 +00:00
|
|
|
if (!(server->console = (struct console *)create_console())) return NULL;
|
2020-11-27 17:13:37 +00:00
|
|
|
if (!(screen_buffer = (struct screen_buffer *)create_screen_buffer( server->console )))
|
2020-08-20 21:48:21 +00:00
|
|
|
{
|
|
|
|
release_object( server->console );
|
|
|
|
server->console = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
release_object( screen_buffer );
|
|
|
|
server->console->server = server;
|
|
|
|
|
|
|
|
return &server->console->obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2020-08-20 21:48:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int console_server_signaled( struct object *obj, struct wait_queue_entry *entry )
|
|
|
|
{
|
2020-08-20 21:48:21 +00:00
|
|
|
struct console_server *server = (struct console_server*)obj;
|
2020-08-20 21:48:08 +00:00
|
|
|
assert( obj->ops == &console_server_ops );
|
2020-08-20 21:50:20 +00:00
|
|
|
return !server->console || !list_empty( &server->queue );
|
2020-08-20 21:48:08 +00:00
|
|
|
}
|
|
|
|
|
2020-09-01 13:36:23 +00:00
|
|
|
static struct fd *console_server_get_fd( struct object* obj )
|
|
|
|
{
|
|
|
|
struct console_server *server = (struct console_server*)obj;
|
|
|
|
assert( obj->ops == &console_server_ops );
|
|
|
|
return (struct fd *)grab_object( server->fd );
|
|
|
|
}
|
|
|
|
|
2020-08-20 21:48:08 +00:00
|
|
|
static struct object *console_server_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options )
|
|
|
|
{
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct object *create_console_server( void )
|
|
|
|
{
|
|
|
|
struct console_server *server;
|
|
|
|
|
|
|
|
if (!(server = alloc_object( &console_server_ops ))) return NULL;
|
2020-08-20 21:48:21 +00:00
|
|
|
server->console = NULL;
|
2020-08-20 21:50:47 +00:00
|
|
|
server->busy = 0;
|
2020-09-21 15:06:26 +00:00
|
|
|
server->term_fd = -1;
|
2020-08-20 21:50:20 +00:00
|
|
|
list_init( &server->queue );
|
2020-08-25 12:52:48 +00:00
|
|
|
list_init( &server->read_queue );
|
2020-09-01 13:36:23 +00:00
|
|
|
server->fd = alloc_pseudo_fd( &console_server_fd_ops, &server->obj, FILE_SYNCHRONOUS_IO_NONALERT );
|
|
|
|
if (!server->fd)
|
|
|
|
{
|
|
|
|
release_object( server );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
allow_fd_caching(server->fd);
|
2020-08-20 21:48:08 +00:00
|
|
|
|
|
|
|
return &server->obj;
|
|
|
|
}
|
|
|
|
|
2020-08-25 12:52:48 +00:00
|
|
|
static int is_blocking_read_ioctl( unsigned int code )
|
|
|
|
{
|
2020-11-19 16:59:16 +00:00
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case IOCTL_CONDRV_READ_INPUT:
|
|
|
|
case IOCTL_CONDRV_READ_CONSOLE:
|
|
|
|
case IOCTL_CONDRV_READ_FILE:
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2020-08-25 12:52:48 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static int console_ioctl( struct fd *fd, ioctl_code_t code, struct async *async )
|
2020-07-06 17:26:56 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = get_fd_user( fd );
|
2020-07-06 17:26:56 +00:00
|
|
|
|
|
|
|
switch (code)
|
|
|
|
{
|
2020-09-01 13:35:51 +00:00
|
|
|
case IOCTL_CONDRV_CTRL_EVENT:
|
|
|
|
{
|
|
|
|
const struct condrv_ctrl_event *event = get_req_data();
|
|
|
|
process_id_t group;
|
|
|
|
if (get_req_data_size() != sizeof(*event))
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
group = event->group_id ? event->group_id : current->process->group_id;
|
|
|
|
if (!group)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
propagate_console_signal( console, event->event, group );
|
|
|
|
return !get_error();
|
|
|
|
}
|
|
|
|
|
2020-07-06 17:26:56 +00:00
|
|
|
default:
|
2020-09-14 16:46:48 +00:00
|
|
|
if (!console->server || code >> 16 != FILE_DEVICE_CONSOLE)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return queue_host_ioctl( console->server, code, 0, async, &console->ioctl_q );
|
2020-07-06 17:26:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static int console_read( struct fd *fd, struct async *async, file_pos_t pos )
|
2020-11-19 16:59:30 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = get_fd_user( fd );
|
2020-11-19 16:59:30 +00:00
|
|
|
|
|
|
|
if (!console->server)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return queue_host_ioctl( console->server, IOCTL_CONDRV_READ_FILE, 0, async, &console->ioctl_q );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:30 +00:00
|
|
|
static int console_flush( struct fd *fd, struct async *async )
|
2020-10-15 16:19:43 +00:00
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
struct console *console = get_fd_user( fd );
|
2020-10-15 16:19:43 +00:00
|
|
|
|
|
|
|
if (!console->server)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return queue_host_ioctl( console->server, IOCTL_CONDRV_FLUSH, 0, NULL, NULL );
|
|
|
|
}
|
|
|
|
|
2020-11-17 17:58:16 +00:00
|
|
|
static int screen_buffer_write( struct fd *fd, struct async *async, file_pos_t pos )
|
|
|
|
{
|
|
|
|
struct screen_buffer *screen_buffer = get_fd_user( fd );
|
|
|
|
struct iosb *iosb;
|
|
|
|
|
|
|
|
if (!screen_buffer->input || !screen_buffer->input->server)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!queue_host_ioctl( screen_buffer->input->server, IOCTL_CONDRV_WRITE_FILE,
|
|
|
|
screen_buffer->id, async, &screen_buffer->ioctl_q ))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* we can't use default async handling, because write result is not
|
|
|
|
* compatible with ioctl result */
|
|
|
|
iosb = async_get_iosb( async );
|
|
|
|
iosb->status = STATUS_SUCCESS;
|
|
|
|
iosb->result = iosb->in_size;
|
|
|
|
async_terminate( async, iosb->result ? STATUS_ALERTED : STATUS_SUCCESS );
|
|
|
|
release_object( iosb );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-07-09 17:28:07 +00:00
|
|
|
static int screen_buffer_ioctl( struct fd *fd, ioctl_code_t code, struct async *async )
|
|
|
|
{
|
2020-07-09 17:28:13 +00:00
|
|
|
struct screen_buffer *screen_buffer = get_fd_user( fd );
|
|
|
|
|
|
|
|
switch (code)
|
|
|
|
{
|
2020-07-17 11:55:40 +00:00
|
|
|
case IOCTL_CONDRV_ACTIVATE:
|
|
|
|
if (!screen_buffer->input)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-08-27 13:03:43 +00:00
|
|
|
set_active_screen_buffer( screen_buffer->input, screen_buffer );
|
2020-07-17 11:55:40 +00:00
|
|
|
return 1;
|
|
|
|
|
2020-07-09 17:28:13 +00:00
|
|
|
default:
|
2020-10-14 17:57:51 +00:00
|
|
|
if (!screen_buffer->input || !screen_buffer->input->server || code >> 16 != FILE_DEVICE_CONSOLE ||
|
|
|
|
is_blocking_read_ioctl( code ))
|
2020-09-11 12:31:07 +00:00
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return queue_host_ioctl( screen_buffer->input->server, code, screen_buffer->id,
|
|
|
|
async, &screen_buffer->ioctl_q );
|
2020-07-09 17:28:13 +00:00
|
|
|
}
|
2020-07-09 17:28:07 +00:00
|
|
|
}
|
|
|
|
|
2020-09-16 18:39:26 +00:00
|
|
|
static int console_connection_ioctl( struct fd *fd, ioctl_code_t code, struct async *async )
|
|
|
|
{
|
|
|
|
struct console_connection *console_connection = get_fd_user( fd );
|
|
|
|
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case IOCTL_CONDRV_BIND_PID:
|
|
|
|
{
|
|
|
|
struct process *process;
|
|
|
|
unsigned int pid;
|
|
|
|
if (get_req_data_size() != sizeof(unsigned int))
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (current->process->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pid = *(unsigned int *)get_req_data();
|
|
|
|
if (pid == ATTACH_PARENT_PROCESS) pid = current->process->parent_id;
|
|
|
|
if (!(process = get_process_from_id( pid ))) return 0;
|
|
|
|
|
|
|
|
if (process->console)
|
|
|
|
{
|
2020-11-27 17:13:30 +00:00
|
|
|
current->process->console = (struct console *)grab_object( process->console );
|
2020-09-16 18:39:26 +00:00
|
|
|
process->console->num_proc++;
|
|
|
|
}
|
|
|
|
else set_error( STATUS_ACCESS_DENIED );
|
|
|
|
release_object( process );
|
|
|
|
return !get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return default_fd_ioctl( console_connection->fd, code, async );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-01 13:36:23 +00:00
|
|
|
static int console_server_ioctl( struct fd *fd, ioctl_code_t code, struct async *async )
|
|
|
|
{
|
|
|
|
struct console_server *server = get_fd_user( fd );
|
|
|
|
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case IOCTL_CONDRV_CTRL_EVENT:
|
|
|
|
{
|
|
|
|
const struct condrv_ctrl_event *event = get_req_data();
|
|
|
|
if (get_req_data_size() != sizeof(*event))
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!server->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
propagate_console_signal( server->console, event->event, event->group_id );
|
|
|
|
return !get_error();
|
|
|
|
}
|
|
|
|
|
2020-09-21 15:06:26 +00:00
|
|
|
case IOCTL_CONDRV_SETUP_INPUT:
|
|
|
|
{
|
|
|
|
struct termios term;
|
|
|
|
obj_handle_t handle;
|
|
|
|
struct file *file;
|
|
|
|
int unix_fd;
|
|
|
|
|
|
|
|
if (get_req_data_size() != sizeof(unsigned int) || get_reply_max_size())
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (server->term_fd != -1)
|
|
|
|
{
|
|
|
|
tcsetattr( server->term_fd, TCSANOW, &server->termios );
|
|
|
|
close( server->term_fd );
|
|
|
|
server->term_fd = -1;
|
|
|
|
}
|
|
|
|
handle = *(unsigned int *)get_req_data();
|
|
|
|
if (!handle) return 1;
|
|
|
|
if (!(file = get_file_obj( current->process, handle, FILE_READ_DATA )))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
unix_fd = get_file_unix_fd( file );
|
|
|
|
release_object( file );
|
|
|
|
|
|
|
|
if (tcgetattr( unix_fd, &server->termios ))
|
|
|
|
{
|
|
|
|
file_set_error();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
term = server->termios;
|
|
|
|
term.c_lflag &= ~(ECHO | ECHONL | ICANON | IEXTEN);
|
|
|
|
term.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
|
|
|
|
term.c_cflag &= ~(CSIZE | PARENB);
|
|
|
|
term.c_cflag |= CS8;
|
|
|
|
term.c_cc[VMIN] = 1;
|
|
|
|
term.c_cc[VTIME] = 0;
|
|
|
|
if (tcsetattr( unix_fd, TCSANOW, &term ) || (server->term_fd = dup( unix_fd )) == -1)
|
|
|
|
{
|
|
|
|
file_set_error();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-09-01 13:36:23 +00:00
|
|
|
default:
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-16 18:38:37 +00:00
|
|
|
static void console_connection_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
fputs( "console connection\n", stderr );
|
|
|
|
}
|
|
|
|
|
2020-09-16 18:39:26 +00:00
|
|
|
static struct fd *console_connection_get_fd( struct object *obj )
|
|
|
|
{
|
|
|
|
struct console_connection *connection = (struct console_connection *)obj;
|
|
|
|
return (struct fd *)grab_object( connection->fd );
|
|
|
|
}
|
|
|
|
|
2020-11-25 18:42:42 +00:00
|
|
|
static struct object *console_connection_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root )
|
2020-09-16 18:39:35 +00:00
|
|
|
{
|
|
|
|
static const WCHAR referenceW[] = {'R','e','f','e','r','e','n','c','e'};
|
|
|
|
|
|
|
|
if (name->len == sizeof(referenceW) && !memcmp( name->str, referenceW, name->len ))
|
|
|
|
{
|
|
|
|
if (!current->process->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
name->len = 0;
|
|
|
|
return grab_object( current->process->console );
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-09-16 18:38:37 +00:00
|
|
|
static struct object *console_connection_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options )
|
|
|
|
{
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int console_connection_close_handle( struct object *obj, struct process *process, obj_handle_t handle )
|
|
|
|
{
|
|
|
|
free_console( process );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-09-16 18:39:26 +00:00
|
|
|
static void console_connection_destroy( struct object *obj )
|
|
|
|
{
|
|
|
|
struct console_connection *connection = (struct console_connection *)obj;
|
|
|
|
if (connection->fd) release_object( connection->fd );
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:26:35 +00:00
|
|
|
static struct object_type *console_device_get_type( struct object *obj )
|
|
|
|
{
|
|
|
|
static const WCHAR name[] = {'D','e','v','i','c','e'};
|
|
|
|
static const struct unicode_str str = { name, sizeof(name) };
|
|
|
|
return get_object_type( &str );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void console_device_dump( struct object *obj, int verbose )
|
|
|
|
{
|
|
|
|
fputs( "Console device\n", stderr );
|
|
|
|
}
|
|
|
|
|
2020-11-25 18:42:42 +00:00
|
|
|
static struct object *console_device_lookup_name( struct object *obj, struct unicode_str *name,
|
|
|
|
unsigned int attr, struct object *root )
|
2020-06-25 20:26:35 +00:00
|
|
|
{
|
2020-09-16 18:39:10 +00:00
|
|
|
static const WCHAR connectionW[] = {'C','o','n','n','e','c','t','i','o','n'};
|
2020-07-21 12:56:57 +00:00
|
|
|
static const WCHAR consoleW[] = {'C','o','n','s','o','l','e'};
|
|
|
|
static const WCHAR current_inW[] = {'C','u','r','r','e','n','t','I','n'};
|
|
|
|
static const WCHAR current_outW[] = {'C','u','r','r','e','n','t','O','u','t'};
|
2020-11-12 18:56:18 +00:00
|
|
|
static const WCHAR inputW[] = {'I','n','p','u','t'};
|
2020-11-12 18:56:23 +00:00
|
|
|
static const WCHAR outputW[] = {'O','u','t','p','u','t'};
|
2020-07-21 12:56:57 +00:00
|
|
|
static const WCHAR screen_bufferW[] = {'S','c','r','e','e','n','B','u','f','f','e','r'};
|
2020-08-20 21:48:08 +00:00
|
|
|
static const WCHAR serverW[] = {'S','e','r','v','e','r'};
|
2020-06-25 20:26:45 +00:00
|
|
|
|
|
|
|
if (name->len == sizeof(current_inW) && !memcmp( name->str, current_inW, name->len ))
|
|
|
|
{
|
|
|
|
if (!current->process->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
name->len = 0;
|
|
|
|
return grab_object( current->process->console );
|
|
|
|
}
|
2020-06-25 20:26:35 +00:00
|
|
|
|
2020-06-25 20:26:54 +00:00
|
|
|
if (name->len == sizeof(current_outW) && !memcmp( name->str, current_outW, name->len ))
|
|
|
|
{
|
|
|
|
if (!current->process->console || !current->process->console->active)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
name->len = 0;
|
|
|
|
return grab_object( current->process->console->active );
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:26:35 +00:00
|
|
|
if (name->len == sizeof(consoleW) && !memcmp( name->str, consoleW, name->len ))
|
|
|
|
{
|
|
|
|
name->len = 0;
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
2020-11-12 18:56:18 +00:00
|
|
|
if (name->len == sizeof(inputW) && !memcmp( name->str, inputW, name->len ))
|
|
|
|
{
|
2020-11-27 17:13:59 +00:00
|
|
|
struct console_input *console_input;
|
2020-11-12 18:56:18 +00:00
|
|
|
name->len = 0;
|
2020-11-27 17:13:59 +00:00
|
|
|
if (!(console_input = alloc_object( &console_input_ops ))) return NULL;
|
|
|
|
console_input->fd = alloc_pseudo_fd( &console_input_fd_ops, &console_input->obj,
|
|
|
|
FILE_SYNCHRONOUS_IO_NONALERT );
|
|
|
|
if (!console_input->fd)
|
|
|
|
{
|
|
|
|
release_object( console_input );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return &console_input->obj;
|
2020-11-12 18:56:18 +00:00
|
|
|
}
|
|
|
|
|
2020-11-12 18:56:23 +00:00
|
|
|
if (name->len == sizeof(outputW) && !memcmp( name->str, outputW, name->len ))
|
|
|
|
{
|
2020-11-27 17:14:12 +00:00
|
|
|
struct console_output *console_output;
|
2020-11-12 18:56:23 +00:00
|
|
|
name->len = 0;
|
2020-11-27 17:14:12 +00:00
|
|
|
if (!(console_output = alloc_object( &console_output_ops ))) return NULL;
|
|
|
|
console_output->fd = alloc_pseudo_fd( &console_output_fd_ops, &console_output->obj,
|
|
|
|
FILE_SYNCHRONOUS_IO_NONALERT );
|
|
|
|
if (!console_output->fd)
|
|
|
|
{
|
|
|
|
release_object( console_output );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return &console_output->obj;
|
2020-11-12 18:56:23 +00:00
|
|
|
}
|
|
|
|
|
2020-07-21 12:56:57 +00:00
|
|
|
if (name->len == sizeof(screen_bufferW) && !memcmp( name->str, screen_bufferW, name->len ))
|
|
|
|
{
|
|
|
|
if (!current->process->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
name->len = 0;
|
2020-11-27 17:13:37 +00:00
|
|
|
return create_screen_buffer( current->process->console );
|
2020-07-21 12:56:57 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 21:48:08 +00:00
|
|
|
if (name->len == sizeof(serverW) && !memcmp( name->str, serverW, name->len ))
|
|
|
|
{
|
|
|
|
name->len = 0;
|
|
|
|
return create_console_server();
|
|
|
|
}
|
|
|
|
|
2020-09-16 18:39:10 +00:00
|
|
|
if (name->len == sizeof(connectionW) && !memcmp( name->str, connectionW, name->len ))
|
|
|
|
{
|
|
|
|
name->len = 0;
|
|
|
|
return create_console_connection( NULL );
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:26:35 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct object *console_device_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options )
|
|
|
|
{
|
|
|
|
int is_output;
|
|
|
|
access = default_fd_map_access( obj, access );
|
|
|
|
is_output = access & FILE_WRITE_DATA;
|
|
|
|
if (!current->process->console || (is_output && !current->process->console))
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (is_output && (access & FILE_READ_DATA))
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_PARAMETER );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return is_output ? grab_object( current->process->console->active ) : grab_object( current->process->console );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static void console_input_dump( struct object *obj, int verbose )
|
2020-11-12 18:56:18 +00:00
|
|
|
{
|
|
|
|
fputs( "console Input device\n", stderr );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static int console_input_add_queue( struct object *obj, struct wait_queue_entry *entry )
|
2020-11-12 18:56:18 +00:00
|
|
|
{
|
|
|
|
if (!current->process->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_ACCESS_DENIED );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return add_queue( ¤t->process->console->obj, entry );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static struct fd *console_input_get_fd( struct object *obj )
|
2020-11-12 18:56:18 +00:00
|
|
|
{
|
2020-11-27 17:13:59 +00:00
|
|
|
struct console_input *console_input = (struct console_input *)obj;
|
|
|
|
assert( obj->ops == &console_input_ops );
|
|
|
|
return (struct fd *)grab_object( console_input->fd );
|
2020-11-12 18:56:18 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static struct object *console_input_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options )
|
2020-11-12 18:56:18 +00:00
|
|
|
{
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:59 +00:00
|
|
|
static void console_input_destroy( struct object *obj )
|
|
|
|
{
|
|
|
|
struct console_input *console_input = (struct console_input *)obj;
|
|
|
|
|
|
|
|
assert( obj->ops == &console_input_ops );
|
|
|
|
if (console_input->fd) release_object( console_input->fd );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int console_input_ioctl( struct fd *fd, ioctl_code_t code, struct async *async )
|
|
|
|
{
|
|
|
|
struct console *console = current->process->console;
|
|
|
|
|
|
|
|
if (!console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return console_ioctl( console->fd, code, async );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int console_input_read( struct fd *fd, struct async *async, file_pos_t pos )
|
|
|
|
{
|
|
|
|
struct console *console = current->process->console;
|
|
|
|
|
|
|
|
if (!console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return console_read( console->fd, async, pos );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int console_input_flush( struct fd *fd, struct async *async )
|
|
|
|
{
|
|
|
|
struct console *console = current->process->console;
|
|
|
|
|
|
|
|
if (!console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return console_flush( console->fd, async );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static void console_output_dump( struct object *obj, int verbose )
|
2020-11-12 18:56:23 +00:00
|
|
|
{
|
|
|
|
fputs( "console Output device\n", stderr );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static int console_output_add_queue( struct object *obj, struct wait_queue_entry *entry )
|
2020-11-12 18:56:23 +00:00
|
|
|
{
|
|
|
|
if (!current->process->console || !current->process->console->active)
|
|
|
|
{
|
|
|
|
set_error( STATUS_ACCESS_DENIED );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return add_queue( ¤t->process->console->obj, entry );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static struct fd *console_output_get_fd( struct object *obj )
|
2020-11-12 18:56:23 +00:00
|
|
|
{
|
2020-11-27 17:14:12 +00:00
|
|
|
struct console_output *console_output = (struct console_output *)obj;
|
|
|
|
assert( obj->ops == &console_output_ops );
|
|
|
|
return (struct fd *)grab_object( console_output->fd );
|
2020-11-12 18:56:23 +00:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:13:51 +00:00
|
|
|
static struct object *console_output_open_file( struct object *obj, unsigned int access,
|
|
|
|
unsigned int sharing, unsigned int options )
|
2020-11-12 18:56:23 +00:00
|
|
|
{
|
|
|
|
return grab_object( obj );
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:14:12 +00:00
|
|
|
static void console_output_destroy( struct object *obj )
|
|
|
|
{
|
|
|
|
struct console_output *console_output = (struct console_output *)obj;
|
|
|
|
|
|
|
|
assert( obj->ops == &console_output_ops );
|
|
|
|
if (console_output->fd) release_object( console_output->fd );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int console_output_ioctl( struct fd *fd, ioctl_code_t code, struct async *async )
|
|
|
|
{
|
|
|
|
struct console *console = current->process->console;
|
|
|
|
|
|
|
|
if (!console || !console->active)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return screen_buffer_ioctl( console->active->fd, code, async );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int console_output_write( struct fd *fd, struct async *async, file_pos_t pos )
|
|
|
|
{
|
|
|
|
struct console *console = current->process->console;
|
|
|
|
|
|
|
|
if (!console || !console->active)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return screen_buffer_write( console->active->fd, async, pos );
|
|
|
|
}
|
|
|
|
|
2020-09-23 09:32:47 +00:00
|
|
|
struct object *create_console_device( struct object *root, const struct unicode_str *name,
|
|
|
|
unsigned int attr, const struct security_descriptor *sd )
|
2020-06-25 20:26:35 +00:00
|
|
|
{
|
2020-09-23 09:32:47 +00:00
|
|
|
return create_named_object( root, &console_device_ops, name, attr, sd );
|
2020-06-25 20:26:35 +00:00
|
|
|
}
|
|
|
|
|
2020-08-20 21:50:47 +00:00
|
|
|
/* retrieve the next pending console ioctl request */
|
|
|
|
DECL_HANDLER(get_next_console_request)
|
|
|
|
{
|
2020-08-25 12:52:48 +00:00
|
|
|
struct console_host_ioctl *ioctl = NULL, *next;
|
2020-08-20 21:50:47 +00:00
|
|
|
struct console_server *server;
|
|
|
|
struct iosb *iosb = NULL;
|
|
|
|
|
|
|
|
server = (struct console_server *)get_handle_obj( current->process, req->handle, 0, &console_server_ops );
|
|
|
|
if (!server) return;
|
|
|
|
|
|
|
|
if (!server->console)
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
release_object( server );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-10 15:31:43 +00:00
|
|
|
if (!req->signal) server->console->signaled = 0;
|
|
|
|
else if (!server->console->signaled)
|
|
|
|
{
|
|
|
|
server->console->signaled = 1;
|
|
|
|
wake_up( &server->console->obj, 0 );
|
|
|
|
}
|
|
|
|
|
2020-08-25 12:52:48 +00:00
|
|
|
if (req->read)
|
2020-08-20 21:50:47 +00:00
|
|
|
{
|
2020-08-25 12:52:48 +00:00
|
|
|
/* set result of current pending ioctl */
|
|
|
|
if (list_empty( &server->read_queue ))
|
|
|
|
{
|
|
|
|
set_error( STATUS_INVALID_HANDLE );
|
|
|
|
release_object( server );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ioctl = LIST_ENTRY( list_head( &server->read_queue ), struct console_host_ioctl, entry );
|
|
|
|
list_remove( &ioctl->entry );
|
|
|
|
list_move_tail( &server->queue, &server->read_queue );
|
|
|
|
}
|
|
|
|
else if (server->busy)
|
|
|
|
{
|
|
|
|
/* set result of previous ioctl */
|
2020-08-20 21:50:47 +00:00
|
|
|
ioctl = LIST_ENTRY( list_head( &server->queue ), struct console_host_ioctl, entry );
|
|
|
|
list_remove( &ioctl->entry );
|
2020-08-25 12:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ioctl)
|
|
|
|
{
|
|
|
|
unsigned int status = req->status;
|
2020-10-01 13:10:09 +00:00
|
|
|
if (status == STATUS_PENDING) status = STATUS_INVALID_PARAMETER;
|
2020-08-20 21:50:47 +00:00
|
|
|
if (ioctl->async)
|
|
|
|
{
|
|
|
|
iosb = async_get_iosb( ioctl->async );
|
2020-11-17 17:58:16 +00:00
|
|
|
if (iosb->status == STATUS_PENDING)
|
2020-08-20 21:50:47 +00:00
|
|
|
{
|
2020-11-17 17:58:16 +00:00
|
|
|
iosb->status = status;
|
|
|
|
iosb->out_size = min( iosb->out_size, get_req_data_size() );
|
|
|
|
if (iosb->out_size)
|
2020-08-20 21:50:47 +00:00
|
|
|
{
|
2020-11-17 17:58:16 +00:00
|
|
|
if ((iosb->out_data = memdup( get_req_data(), iosb->out_size )))
|
|
|
|
{
|
|
|
|
iosb->result = iosb->out_size;
|
|
|
|
status = STATUS_ALERTED;
|
|
|
|
}
|
|
|
|
else if (!status)
|
|
|
|
{
|
|
|
|
iosb->status = STATUS_NO_MEMORY;
|
|
|
|
iosb->out_size = 0;
|
|
|
|
}
|
2020-08-20 21:50:47 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-17 17:58:16 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
release_object( ioctl->async );
|
|
|
|
ioctl->async = NULL;
|
|
|
|
}
|
2020-08-20 21:50:47 +00:00
|
|
|
}
|
|
|
|
console_host_ioctl_terminate( ioctl, status );
|
|
|
|
if (iosb) release_object( iosb );
|
2020-08-25 12:52:48 +00:00
|
|
|
|
|
|
|
if (req->read)
|
|
|
|
{
|
|
|
|
release_object( server );
|
|
|
|
return;
|
|
|
|
}
|
2020-08-20 21:50:47 +00:00
|
|
|
server->busy = 0;
|
|
|
|
}
|
|
|
|
|
2020-08-25 12:52:48 +00:00
|
|
|
/* if we have a blocking read ioctl in queue head and previous blocking read is still waiting,
|
|
|
|
* move it to read queue for execution after current read is complete. move all blocking
|
|
|
|
* ioctl at the same time to preserve their order. */
|
|
|
|
if (!list_empty( &server->queue ) && !list_empty( &server->read_queue ))
|
|
|
|
{
|
|
|
|
ioctl = LIST_ENTRY( list_head( &server->queue ), struct console_host_ioctl, entry );
|
|
|
|
if (is_blocking_read_ioctl( ioctl->code ))
|
|
|
|
{
|
|
|
|
LIST_FOR_EACH_ENTRY_SAFE( ioctl, next, &server->queue, struct console_host_ioctl, entry )
|
|
|
|
{
|
|
|
|
if (!is_blocking_read_ioctl( ioctl->code )) continue;
|
|
|
|
list_remove( &ioctl->entry );
|
|
|
|
list_add_tail( &server->read_queue, &ioctl->entry );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-20 21:50:47 +00:00
|
|
|
/* return the next ioctl */
|
|
|
|
if (!list_empty( &server->queue ))
|
|
|
|
{
|
|
|
|
ioctl = LIST_ENTRY( list_head( &server->queue ), struct console_host_ioctl, entry );
|
|
|
|
iosb = ioctl->async ? async_get_iosb( ioctl->async ) : NULL;
|
|
|
|
|
|
|
|
if (!iosb || get_reply_max_size() >= iosb->in_size)
|
|
|
|
{
|
2020-08-27 13:04:27 +00:00
|
|
|
reply->code = ioctl->code;
|
|
|
|
reply->output = ioctl->output;
|
2020-08-20 21:50:47 +00:00
|
|
|
|
|
|
|
if (iosb)
|
|
|
|
{
|
|
|
|
reply->out_size = iosb->out_size;
|
|
|
|
set_reply_data_ptr( iosb->in_data, iosb->in_size );
|
|
|
|
iosb->in_data = NULL;
|
|
|
|
}
|
|
|
|
|
2020-08-25 12:52:48 +00:00
|
|
|
if (is_blocking_read_ioctl( ioctl->code ))
|
|
|
|
{
|
|
|
|
list_remove( &ioctl->entry );
|
|
|
|
assert( list_empty( &server->read_queue ));
|
|
|
|
list_add_tail( &server->read_queue, &ioctl->entry );
|
|
|
|
}
|
|
|
|
else server->busy = 1;
|
2020-08-20 21:50:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reply->out_size = iosb->in_size;
|
|
|
|
set_error( STATUS_BUFFER_OVERFLOW );
|
|
|
|
}
|
|
|
|
if (iosb) release_object( iosb );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set_error( STATUS_PENDING );
|
|
|
|
}
|
|
|
|
|
|
|
|
release_object( server );
|
|
|
|
}
|