2 * Server-side console management
4 * Copyright (C) 1998 Alexandre Julliard
6 * FIXME: all this stuff is a hack to avoid breaking
7 * the client-side console support.
18 #ifdef HAVE_SYS_ERRNO_H
19 #include <sys/errno.h>
23 #include <sys/types.h>
40 struct object obj
; /* object header */
41 int mode
; /* input mode */
42 struct screen_buffer
*output
; /* associated screen buffer */
43 int recnum
; /* number of input records */
44 INPUT_RECORD
*records
; /* input records */
49 struct object obj
; /* object header */
50 int mode
; /* output mode */
51 struct console_input
*input
; /* associated console input */
52 int cursor_size
; /* size of cursor (percentage filled) */
53 int cursor_visible
;/* cursor visibility flag */
54 int pid
; /* xterm pid (hack) */
55 char *title
; /* console title */
59 static void console_input_dump( struct object
*obj
, int verbose
);
60 static int console_input_get_poll_events( struct object
*obj
);
61 static int console_input_get_fd( struct object
*obj
);
62 static void console_input_destroy( struct object
*obj
);
64 static void screen_buffer_dump( struct object
*obj
, int verbose
);
65 static int screen_buffer_get_poll_events( struct object
*obj
);
66 static int screen_buffer_get_fd( struct object
*obj
);
67 static void screen_buffer_destroy( struct object
*obj
);
70 static int console_get_info( struct object
*obj
, struct get_file_info_request
*req
);
72 static const struct object_ops console_input_ops
=
74 sizeof(struct console_input
), /* size */
75 console_input_dump
, /* dump */
76 default_poll_add_queue
, /* add_queue */
77 default_poll_remove_queue
, /* remove_queue */
78 default_poll_signaled
, /* signaled */
79 no_satisfied
, /* satisfied */
80 console_input_get_poll_events
, /* get_poll_events */
81 default_poll_event
, /* poll_event */
82 console_input_get_fd
, /* get_fd */
84 console_get_info
, /* get_file_info */
85 console_input_destroy
/* destroy */
88 static const struct object_ops screen_buffer_ops
=
90 sizeof(struct screen_buffer
), /* size */
91 screen_buffer_dump
, /* dump */
92 default_poll_add_queue
, /* add_queue */
93 default_poll_remove_queue
, /* remove_queue */
94 default_poll_signaled
, /* signaled */
95 no_satisfied
, /* satisfied */
96 screen_buffer_get_poll_events
, /* get_poll_events */
97 default_poll_event
, /* poll_event */
98 screen_buffer_get_fd
, /* get_fd */
100 console_get_info
, /* get_file_info */
101 screen_buffer_destroy
/* destroy */
105 static struct object
*create_console_input( int fd
)
107 struct console_input
*console_input
;
109 if ((fd
= (fd
!= -1) ? dup(fd
) : dup(0)) == -1)
114 if (!(console_input
= alloc_object( &console_input_ops
, fd
))) return NULL
;
115 console_input
->mode
= ENABLE_PROCESSED_INPUT
| ENABLE_LINE_INPUT
|
116 ENABLE_ECHO_INPUT
| ENABLE_MOUSE_INPUT
;
117 console_input
->output
= NULL
;
118 console_input
->recnum
= 0;
119 console_input
->records
= NULL
;
120 return &console_input
->obj
;
123 static struct object
*create_console_output( int fd
, struct object
*input
)
125 struct console_input
*console_input
= (struct console_input
*)input
;
126 struct screen_buffer
*screen_buffer
;
128 if ((fd
= (fd
!= -1) ? dup(fd
) : dup(1)) == -1)
133 if (!(screen_buffer
= alloc_object( &screen_buffer_ops
, fd
))) return NULL
;
134 screen_buffer
->mode
= ENABLE_PROCESSED_OUTPUT
| ENABLE_WRAP_AT_EOL_OUTPUT
;
135 screen_buffer
->input
= console_input
;
136 screen_buffer
->cursor_size
= 100;
137 screen_buffer
->cursor_visible
= 1;
138 screen_buffer
->pid
= 0;
139 screen_buffer
->title
= strdup( "Wine console" );
140 console_input
->output
= screen_buffer
;
141 return &screen_buffer
->obj
;
144 /* allocate a console for this process */
145 int alloc_console( struct process
*process
)
147 if (process
->console_in
|| process
->console_out
)
149 set_error( STATUS_ACCESS_DENIED
);
152 if ((process
->console_in
= create_console_input( -1 )))
154 if ((process
->console_out
= create_console_output( -1, process
->console_in
)))
156 release_object( process
->console_in
);
161 /* free the console for this process */
162 int free_console( struct process
*process
)
164 if (process
->console_in
) release_object( process
->console_in
);
165 if (process
->console_out
) release_object( process
->console_out
);
166 process
->console_in
= process
->console_out
= NULL
;
170 static int set_console_fd( handle_t handle
, int fd_in
, int fd_out
, int pid
)
172 struct console_input
*input
;
173 struct screen_buffer
*output
;
176 if (!(obj
= get_handle_obj( current
->process
, handle
, 0, NULL
)))
178 if (obj
->ops
== &console_input_ops
)
180 input
= (struct console_input
*)obj
;
181 output
= input
->output
;
182 grab_object( output
);
184 else if (obj
->ops
== &screen_buffer_ops
)
186 output
= (struct screen_buffer
*)obj
;
187 input
= output
->input
;
188 grab_object( input
);
192 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
193 release_object( obj
);
197 /* can't change the fd if someone is waiting on it */
198 assert( !input
->obj
.head
);
199 assert( !output
->obj
.head
);
201 change_select_fd( &input
->obj
, fd_in
);
202 change_select_fd( &output
->obj
, fd_out
);
204 release_object( input
);
205 release_object( output
);
209 static int get_console_mode( handle_t handle
)
214 if ((obj
= get_handle_obj( current
->process
, handle
, GENERIC_READ
, NULL
)))
216 if (obj
->ops
== &console_input_ops
)
217 ret
= ((struct console_input
*)obj
)->mode
;
218 else if (obj
->ops
== &screen_buffer_ops
)
219 ret
= ((struct screen_buffer
*)obj
)->mode
;
221 set_error( STATUS_OBJECT_TYPE_MISMATCH
);
222 release_object( obj
);
227 static int set_console_mode( handle_t handle
, int mode
)
232 if (!(obj
= get_handle_obj( current
->process
, handle
, GENERIC_READ
, NULL
)))
234 if (obj
->ops
== &console_input_ops
)
236 ((struct console_input
*)obj
)->mode
= mode
;
239 else if (obj
->ops
== &screen_buffer_ops
)
241 ((struct screen_buffer
*)obj
)->mode
= mode
;
244 else set_error( STATUS_OBJECT_TYPE_MISMATCH
);
245 release_object( obj
);
249 /* set misc console information (output handle only) */
250 static int set_console_info( handle_t handle
, struct set_console_info_request
*req
,
251 const char *title
, size_t len
)
253 struct screen_buffer
*console
;
254 if (!(console
= (struct screen_buffer
*)get_handle_obj( current
->process
, handle
,
255 GENERIC_WRITE
, &screen_buffer_ops
)))
257 if (req
->mask
& SET_CONSOLE_INFO_CURSOR
)
259 console
->cursor_size
= req
->cursor_size
;
260 console
->cursor_visible
= req
->cursor_visible
;
262 if (req
->mask
& SET_CONSOLE_INFO_TITLE
)
264 char *new_title
= mem_alloc( len
+ 1 );
267 memcpy( new_title
, title
, len
);
269 if (console
->title
) free( console
->title
);
270 console
->title
= new_title
;
273 release_object( console
);
277 /* add input events to a console input queue */
278 static int write_console_input( handle_t handle
, int count
, INPUT_RECORD
*records
)
280 INPUT_RECORD
*new_rec
;
281 struct console_input
*console
;
283 if (!(console
= (struct console_input
*)get_handle_obj( current
->process
, handle
,
284 GENERIC_WRITE
, &console_input_ops
)))
286 if (!(new_rec
= realloc( console
->records
,
287 (console
->recnum
+ count
) * sizeof(INPUT_RECORD
) )))
289 set_error( STATUS_NO_MEMORY
);
290 release_object( console
);
293 console
->records
= new_rec
;
294 memcpy( new_rec
+ console
->recnum
, records
, count
* sizeof(INPUT_RECORD
) );
295 console
->recnum
+= count
;
296 release_object( console
);
300 /* retrieve a pointer to the console input records */
301 static int read_console_input( handle_t handle
, int count
, INPUT_RECORD
*rec
, int flush
)
303 struct console_input
*console
;
305 if (!(console
= (struct console_input
*)get_handle_obj( current
->process
, handle
,
306 GENERIC_READ
, &console_input_ops
)))
311 /* special case: do not retrieve anything, but return
312 * the total number of records available */
313 count
= console
->recnum
;
317 if (count
> console
->recnum
) count
= console
->recnum
;
318 memcpy( rec
, console
->records
, count
* sizeof(INPUT_RECORD
) );
323 for (i
= count
; i
< console
->recnum
; i
++)
324 console
->records
[i
-count
] = console
->records
[i
];
325 if ((console
->recnum
-= count
) > 0)
327 INPUT_RECORD
*new_rec
= realloc( console
->records
,
328 console
->recnum
* sizeof(INPUT_RECORD
) );
329 if (new_rec
) console
->records
= new_rec
;
333 free( console
->records
);
334 console
->records
= NULL
;
337 release_object( console
);
341 static void console_input_dump( struct object
*obj
, int verbose
)
343 struct console_input
*console
= (struct console_input
*)obj
;
344 assert( obj
->ops
== &console_input_ops
);
345 fprintf( stderr
, "Console input fd=%d\n", console
->obj
.fd
);
348 static int console_input_get_poll_events( struct object
*obj
)
353 static int console_input_get_fd( struct object
*obj
)
355 struct console_input
*console
= (struct console_input
*)obj
;
356 assert( obj
->ops
== &console_input_ops
);
357 return console
->obj
.fd
;
360 static int console_get_info( struct object
*obj
, struct get_file_info_request
*req
)
362 req
->type
= FILE_TYPE_CHAR
;
364 req
->access_time
= 0;
375 static void console_input_destroy( struct object
*obj
)
377 struct console_input
*console
= (struct console_input
*)obj
;
378 assert( obj
->ops
== &console_input_ops
);
379 if (console
->output
) console
->output
->input
= NULL
;
382 static void screen_buffer_dump( struct object
*obj
, int verbose
)
384 struct screen_buffer
*console
= (struct screen_buffer
*)obj
;
385 assert( obj
->ops
== &screen_buffer_ops
);
386 fprintf( stderr
, "Console screen buffer fd=%d\n", console
->obj
.fd
);
389 static int screen_buffer_get_poll_events( struct object
*obj
)
394 static int screen_buffer_get_fd( struct object
*obj
)
396 struct screen_buffer
*console
= (struct screen_buffer
*)obj
;
397 assert( obj
->ops
== &screen_buffer_ops
);
398 return console
->obj
.fd
;
401 static void screen_buffer_destroy( struct object
*obj
)
403 struct screen_buffer
*console
= (struct screen_buffer
*)obj
;
404 assert( obj
->ops
== &screen_buffer_ops
);
405 if (console
->input
) console
->input
->output
= NULL
;
406 if (console
->title
) free( console
->title
);
409 /* allocate a console for the current process */
410 DECL_HANDLER(alloc_console
)
412 handle_t in
= 0, out
= 0;
414 if (!alloc_console( current
->process
)) goto done
;
416 if ((in
= alloc_handle( current
->process
, current
->process
->console_in
,
417 req
->access
, req
->inherit
)))
419 if ((out
= alloc_handle( current
->process
, current
->process
->console_out
,
420 req
->access
, req
->inherit
)))
421 goto done
; /* everything is fine */
422 close_handle( current
->process
, in
, NULL
);
425 free_console( current
->process
);
429 req
->handle_out
= out
;
432 /* free the console of the current process */
433 DECL_HANDLER(free_console
)
435 free_console( current
->process
);
438 /* open a handle to the process console */
439 DECL_HANDLER(open_console
)
441 struct object
*obj
= req
->output
? current
->process
->console_out
: current
->process
->console_in
;
444 if (obj
) req
->handle
= alloc_handle( current
->process
, obj
, req
->access
, req
->inherit
);
445 else set_error( STATUS_ACCESS_DENIED
);
448 /* set info about a console (output only) */
449 DECL_HANDLER(set_console_info
)
451 set_console_info( req
->handle
, req
, get_req_data(req
), get_req_data_size(req
) );
454 /* get info about a console (output only) */
455 DECL_HANDLER(get_console_info
)
457 struct screen_buffer
*console
;
460 if ((console
= (struct screen_buffer
*)get_handle_obj( current
->process
, req
->handle
,
461 GENERIC_READ
, &screen_buffer_ops
)))
463 req
->cursor_size
= console
->cursor_size
;
464 req
->cursor_visible
= console
->cursor_visible
;
465 req
->pid
= console
->pid
;
468 len
= strlen( console
->title
);
469 if (len
> get_req_data_size(req
)) len
= get_req_data_size(req
);
470 memcpy( get_req_data(req
), console
->title
, len
);
472 release_object( console
);
474 set_req_data_size( req
, len
);
477 /* set a console fd */
478 DECL_HANDLER(set_console_fd
)
480 int fd_out
, fd_in
= thread_get_inflight_fd( current
, req
->fd_in
);
482 if (req
->fd_out
== req
->fd_in
) fd_out
= dup( fd_in
);
483 else fd_out
= thread_get_inflight_fd( current
, req
->fd_out
);
485 if (fd_in
== -1 || fd_out
== -1) set_error( STATUS_INVALID_HANDLE
);
486 else if (set_console_fd( req
->handle
, fd_in
, fd_out
, req
->pid
)) return;
488 if (fd_in
!= -1) close( fd_in
);
489 if (fd_out
!= -1) close( fd_out
);
492 /* get a console mode (input or output) */
493 DECL_HANDLER(get_console_mode
)
495 req
->mode
= get_console_mode( req
->handle
);
498 /* set a console mode (input or output) */
499 DECL_HANDLER(set_console_mode
)
501 set_console_mode( req
->handle
, req
->mode
);
504 /* add input records to a console input queue */
505 DECL_HANDLER(write_console_input
)
507 req
->written
= write_console_input( req
->handle
, get_req_data_size(req
) / sizeof(INPUT_RECORD
),
511 /* fetch input records from a console input queue */
512 DECL_HANDLER(read_console_input
)
514 size_t size
= get_req_data_size(req
) / sizeof(INPUT_RECORD
);
515 int res
= read_console_input( req
->handle
, size
, get_req_data(req
), req
->flush
);
516 /* if size was 0 we didn't fetch anything */
517 if (size
) set_req_data_size( req
, res
* sizeof(INPUT_RECORD
) );