Merge pull request #2826 from mattleibow/mono.options-update
[mono.git] / mono / metadata / console-unix.c
1 /*
2  * console-io.c: ConsoleDriver internal calls for Unix systems.
3  *
4  * Author:
5  *      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6  *
7  * Copyright (C) 2005-2009 Novell, Inc. (http://www.novell.com)
8  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
9  */
10 #if defined(__native_client__)
11 #include "console-null.c"
12 #else
13
14 #include <config.h>
15 #include <glib.h>
16 #include <stdio.h>
17 #include <string.h>
18 #include <fcntl.h>
19 #include <errno.h>
20 #include <signal.h>
21 #ifdef HAVE_SYS_SELECT_H
22 #    include <sys/select.h>
23 #endif
24 #ifdef HAVE_SYS_TIME_H
25 #    include <sys/time.h>
26 #endif
27 #include <sys/types.h>
28 #ifdef HAVE_UNISTD_H
29 #    include <unistd.h>
30 #endif
31 #include <mono/metadata/appdomain.h>
32 #include <mono/metadata/object-internals.h>
33 #include <mono/metadata/class-internals.h>
34 #include <mono/metadata/domain-internals.h>
35 #include <mono/metadata/gc-internals.h>
36 #include <mono/metadata/metadata.h>
37 #include <mono/metadata/threadpool-ms.h>
38 #include <mono/utils/mono-signal-handler.h>
39 #include <mono/utils/mono-proclib.h>
40
41 /* On solaris, curses.h must come before both termios.h and term.h */
42 #ifdef HAVE_CURSES_H
43 #    include <curses.h>
44 #endif
45 #ifdef HAVE_TERMIOS_H
46 #    include <termios.h>
47 #endif
48 #ifdef HAVE_TERM_H
49 #    include <term.h>
50 #endif
51
52 /* Needed for FIONREAD under solaris */
53 #ifdef HAVE_SYS_FILIO_H
54 #    include <sys/filio.h>
55 #endif
56 #ifdef HAVE_SYS_IOCTL_H
57 #    include <sys/ioctl.h>
58 #endif
59
60 #include <mono/metadata/console-io.h>
61 #include <mono/metadata/exception.h>
62
63 static gboolean setup_finished;
64 static gboolean atexit_called;
65
66 /* The string used to return the terminal to its previous state */
67 static gchar *teardown_str;
68
69 /* The string used to set the terminal into keypad xmit mode after SIGCONT is received */
70 static gchar *keypad_xmit_str;
71
72 #ifdef HAVE_TERMIOS_H
73 /* This is the last state used by Mono, used after a CONT signal is received */
74 static struct termios mono_attr;
75 #endif
76
77 /* static void console_restore_signal_handlers (void); */
78 static void console_set_signal_handlers (void);
79
80 void
81 mono_console_init (void)
82 {
83         int fd;
84
85         /* Make sure the standard file descriptors are opened */
86         fd = open ("/dev/null", O_RDWR);
87         while (fd >= 0 && fd < 3) {
88                 fd = open ("/dev/null", O_RDWR);
89         }
90         close (fd);
91 }
92
93 static struct termios initial_attr;
94
95 MonoBoolean
96 ves_icall_System_ConsoleDriver_Isatty (HANDLE handle)
97 {
98         return isatty (GPOINTER_TO_INT (handle));
99 }
100
101 static MonoBoolean
102 set_property (gint property, gboolean value)
103 {
104         struct termios attr;
105         gboolean callset = FALSE;
106         gboolean check;
107         
108         if (tcgetattr (STDIN_FILENO, &attr) == -1)
109                 return FALSE;
110
111         check = (attr.c_lflag & property) != 0;
112         if ((value || check) && !(value && check)) {
113                 callset = TRUE;
114                 if (value)
115                         attr.c_lflag |= property;
116                 else
117                         attr.c_lflag &= ~property;
118         }
119
120         if (!callset)
121                 return TRUE;
122
123         if (tcsetattr (STDIN_FILENO, TCSANOW, &attr) == -1)
124                 return FALSE;
125
126         mono_attr = attr;
127         return TRUE;
128 }
129
130 MonoBoolean
131 ves_icall_System_ConsoleDriver_SetEcho (MonoBoolean want_echo)
132 {
133         
134         return set_property (ECHO, want_echo);
135 }
136
137 MonoBoolean
138 ves_icall_System_ConsoleDriver_SetBreak (MonoBoolean want_break)
139 {
140         return set_property (IGNBRK, !want_break);
141 }
142
143 gint32
144 ves_icall_System_ConsoleDriver_InternalKeyAvailable (gint32 timeout)
145 {
146         fd_set rfds;
147         struct timeval tv;
148         struct timeval *tvptr;
149         div_t divvy;
150         int ret, nbytes;
151
152         do {
153                 FD_ZERO (&rfds);
154                 FD_SET (STDIN_FILENO, &rfds);
155                 if (timeout >= 0) {
156                         divvy = div (timeout, 1000);
157                         tv.tv_sec = divvy.quot;
158                         tv.tv_usec = divvy.rem;
159                         tvptr = &tv;
160                 } else {
161                         tvptr = NULL;
162                 }
163                 ret = select (STDIN_FILENO + 1, &rfds, NULL, NULL, tvptr);
164         } while (ret == -1 && errno == EINTR);
165
166         if (ret > 0) {
167                 nbytes = 0;
168                 ret = ioctl (STDIN_FILENO, FIONREAD, &nbytes);
169                 if (ret >= 0)
170                         ret = nbytes;
171         }
172
173         return (ret > 0) ? ret : 0;
174 }
175
176 static gint32 cols_and_lines;
177
178 #ifdef TIOCGWINSZ
179 static int
180 terminal_get_dimensions (void)
181 {
182         struct winsize ws;
183         int ret;
184         int save_errno = errno;
185         
186         if (ioctl (STDIN_FILENO, TIOCGWINSZ, &ws) == 0){
187                 ret = (ws.ws_col << 16) | ws.ws_row;
188                 errno = save_errno;
189                 return ret;
190         } 
191         return -1;
192 }
193 #else
194 static int
195 terminal_get_dimensions (void)
196 {
197         return -1;
198 }
199 #endif
200
201 static void
202 tty_teardown (void)
203 {
204         int unused G_GNUC_UNUSED;
205
206         if (!setup_finished)
207                 return;
208
209         if (teardown_str != NULL) {
210                 unused = write (STDOUT_FILENO, teardown_str, strlen (teardown_str));
211                 g_free (teardown_str);
212                 teardown_str = NULL;
213         }
214
215         tcflush (STDIN_FILENO, TCIFLUSH);
216         tcsetattr (STDIN_FILENO, TCSANOW, &initial_attr);
217         set_property (ECHO, TRUE);
218         setup_finished = FALSE;
219 }
220
221 static void
222 do_console_cancel_event (void)
223 {
224         static MonoClassField *cancel_handler_field;
225         MonoError error;
226         MonoDomain *domain = mono_domain_get ();
227         MonoClass *klass;
228         MonoDelegate *load_value;
229         MonoMethod *method;
230         MonoVTable *vtable;
231
232         /* FIXME: this should likely iterate all the domains, instead */
233         if (!domain->domain)
234                 return;
235
236         klass = mono_class_try_load_from_name (mono_defaults.corlib, "System", "Console");
237         if (klass == NULL)
238                 return;
239
240         if (cancel_handler_field == NULL) {
241                 cancel_handler_field = mono_class_get_field_from_name (klass, "cancel_handler");
242                 g_assert (cancel_handler_field);
243         }
244
245         vtable = mono_class_vtable_full (domain, klass, &error);
246         if (vtable == NULL || !is_ok (&error)) {
247                 mono_error_cleanup (&error);
248                 return;
249         }
250         mono_field_static_get_value (vtable, cancel_handler_field, &load_value);
251         if (load_value == NULL)
252                 return;
253
254         klass = load_value->object.vtable->klass;
255         method = mono_class_get_method_from_name (klass, "BeginInvoke", -1);
256         g_assert (method != NULL);
257
258         mono_threadpool_ms_begin_invoke (domain, (MonoObject*) load_value, method, NULL, &error);
259         if (!is_ok (&error)) {
260                 g_warning ("Couldn't invoke System.Console cancel handler due to %s", mono_error_get_message (&error));
261                 mono_error_cleanup (&error);
262         }
263 }
264
265 static int need_cancel = FALSE;
266 /* this is executed from the finalizer thread */
267 void
268 mono_console_handle_async_ops (void)
269 {
270         if (need_cancel) {
271                 need_cancel = FALSE;
272                 do_console_cancel_event ();
273         }
274 }
275
276 static gboolean in_sigint;
277
278 MONO_SIG_HANDLER_FUNC (static, sigint_handler)
279 {
280         int save_errno;
281
282         if (in_sigint)
283                 return;
284
285         in_sigint = TRUE;
286         save_errno = errno;
287         need_cancel = TRUE;
288         mono_gc_finalize_notify ();
289         errno = save_errno;
290         in_sigint = FALSE;
291 }
292
293 static struct sigaction save_sigcont, save_sigint, save_sigwinch;
294
295 MONO_SIG_HANDLER_FUNC (static, sigcont_handler)
296 {
297         int unused G_GNUC_UNUSED;
298         // Ignore error, there is not much we can do in the sigcont handler.
299         tcsetattr (STDIN_FILENO, TCSANOW, &mono_attr);
300
301         if (keypad_xmit_str != NULL)
302                 unused = write (STDOUT_FILENO, keypad_xmit_str, strlen (keypad_xmit_str));
303
304         // Call previous handler
305         if (save_sigcont.sa_sigaction != NULL &&
306             save_sigcont.sa_sigaction != (void *)SIG_DFL &&
307             save_sigcont.sa_sigaction != (void *)SIG_IGN)
308                 (*save_sigcont.sa_sigaction) (MONO_SIG_HANDLER_PARAMS);
309 }
310
311 MONO_SIG_HANDLER_FUNC (static, sigwinch_handler)
312 {
313         int dims = terminal_get_dimensions ();
314         if (dims != -1)
315                 cols_and_lines = dims;
316         
317         // Call previous handler
318         if (save_sigwinch.sa_sigaction != NULL &&
319             save_sigwinch.sa_sigaction != (void *)SIG_DFL &&
320             save_sigwinch.sa_sigaction != (void *)SIG_IGN)
321                 (*save_sigwinch.sa_sigaction) (MONO_SIG_HANDLER_PARAMS);
322 }
323
324 /*
325  * console_set_signal_handlers:
326  *
327  * Installs various signals handlers for the use of the console, as
328  * follows:
329  *
330  * SIGCONT: this is received after the application has resumed execution
331  * if it was suspended with Control-Z before.   This signal handler needs
332  * to resend the terminal sequence to send keyboard in keypad mode (this
333  * is the difference between getting a cuu1 code or a kcuu1 code for up-arrow
334  * for example
335  *
336  * SIGINT: invokes the System.Console.DoConsoleCancelEvent method using
337  * a thread from the thread pool which notifies all registered cancel_event
338  * listeners.
339  *
340  * SIGWINCH: is used to track changes to the console window when a GUI
341  * terminal is resized.    It sets an internal variable that is checked
342  * by System.Console when the Terminfo driver has been activated.
343  */
344 static void
345 console_set_signal_handlers ()
346 {
347 #if defined(HAVE_SIGACTION)
348         struct sigaction sigcont, sigint, sigwinch;
349
350         memset (&sigcont, 0, sizeof (struct sigaction));
351         memset (&sigint, 0, sizeof (struct sigaction));
352         memset (&sigwinch, 0, sizeof (struct sigaction));
353         
354         // Continuing
355         sigcont.sa_handler = (void (*)(int)) sigcont_handler;
356         sigcont.sa_flags = SA_RESTART;
357         sigemptyset (&sigcont.sa_mask);
358         sigaction (SIGCONT, &sigcont, &save_sigcont);
359         
360         // Interrupt handler
361         sigint.sa_handler = (void (*)(int)) sigint_handler;
362         sigint.sa_flags = SA_RESTART;
363         sigemptyset (&sigint.sa_mask);
364         sigaction (SIGINT, &sigint, &save_sigint);
365
366         // Window size changed
367         sigwinch.sa_handler = (void (*)(int)) sigwinch_handler;
368         sigwinch.sa_flags = SA_RESTART;
369         sigemptyset (&sigwinch.sa_mask);
370         sigaction (SIGWINCH, &sigwinch, &save_sigwinch);
371 #endif
372 }
373
374 #if currently_unuused
375 //
376 // Currently unused, should we ever call the restore handler?
377 // Perhaps before calling into Process.Start?
378 //
379 void
380 console_restore_signal_handlers ()
381 {
382         sigaction (SIGCONT, &save_sigcont, NULL);
383         sigaction (SIGINT, &save_sigint, NULL);
384         sigaction (SIGWINCH, &save_sigwinch, NULL);
385 }
386 #endif
387
388 static void
389 set_control_chars (MonoArray *control_chars, const guchar *cc)
390 {
391         /* The index into the array comes from corlib/System/ControlCharacters.cs */
392 #ifdef VINTR
393         mono_array_set (control_chars, gchar, 0, cc [VINTR]);
394 #endif
395 #ifdef VQUIT
396         mono_array_set (control_chars, gchar, 1, cc [VQUIT]);
397 #endif
398 #ifdef VERASE
399         mono_array_set (control_chars, gchar, 2, cc [VERASE]);
400 #endif
401 #ifdef VKILL
402         mono_array_set (control_chars, gchar, 3, cc [VKILL]);
403 #endif
404 #ifdef VEOF
405         mono_array_set (control_chars, gchar, 4, cc [VEOF]);
406 #endif
407 #ifdef VTIME
408         mono_array_set (control_chars, gchar, 5, cc [VTIME]);
409 #endif
410 #ifdef VMIN
411         mono_array_set (control_chars, gchar, 6, cc [VMIN]);
412 #endif
413 #ifdef VSWTC
414         mono_array_set (control_chars, gchar, 7, cc [VSWTC]);
415 #endif
416 #ifdef VSTART
417         mono_array_set (control_chars, gchar, 8, cc [VSTART]);
418 #endif
419 #ifdef VSTOP
420         mono_array_set (control_chars, gchar, 9, cc [VSTOP]);
421 #endif
422 #ifdef VSUSP
423         mono_array_set (control_chars, gchar, 10, cc [VSUSP]);
424 #endif
425 #ifdef VEOL
426         mono_array_set (control_chars, gchar, 11, cc [VEOL]);
427 #endif
428 #ifdef VREPRINT
429         mono_array_set (control_chars, gchar, 12, cc [VREPRINT]);
430 #endif
431 #ifdef VDISCARD
432         mono_array_set (control_chars, gchar, 13, cc [VDISCARD]);
433 #endif
434 #ifdef VWERASE
435         mono_array_set (control_chars, gchar, 14, cc [VWERASE]);
436 #endif
437 #ifdef VLNEXT
438         mono_array_set (control_chars, gchar, 15, cc [VLNEXT]);
439 #endif
440 #ifdef VEOL2
441         mono_array_set (control_chars, gchar, 16, cc [VEOL2]);
442 #endif
443 }
444
445 MonoBoolean
446 ves_icall_System_ConsoleDriver_TtySetup (MonoString *keypad, MonoString *teardown, MonoArray **control_chars, int **size)
447 {
448         int dims;
449
450         dims = terminal_get_dimensions ();
451         if (dims == -1){
452                 int cols = 0, rows = 0;
453                                       
454                 const char *str = g_getenv ("COLUMNS");
455                 if (str != NULL)
456                         cols = atoi (str);
457                 str = g_getenv ("LINES");
458                 if (str != NULL)
459                         rows = atoi (str);
460
461                 if (cols != 0 && rows != 0)
462                         cols_and_lines = (cols << 16) | rows;
463                 else
464                         cols_and_lines = -1;
465         } else {
466                 cols_and_lines = dims;
467         }
468         
469         *size = &cols_and_lines;
470
471         /* 17 is the number of entries set in set_control_chars() above.
472          * NCCS is the total size, but, by now, we only care about those 17 values*/
473         mono_gc_wbarrier_generic_store (control_chars, (MonoObject*) mono_array_new (mono_domain_get (), mono_defaults.byte_class, 17));
474         if (tcgetattr (STDIN_FILENO, &initial_attr) == -1)
475                 return FALSE;
476
477         mono_attr = initial_attr;
478         mono_attr.c_lflag &= ~(ICANON);
479         mono_attr.c_iflag &= ~(IXON|IXOFF);
480         mono_attr.c_cc [VMIN] = 1;
481         mono_attr.c_cc [VTIME] = 0;
482 #ifdef VDSUSP
483         /* Disable C-y being used as a suspend character on OSX */
484         mono_attr.c_cc [VDSUSP] = 255;
485 #endif
486         if (tcsetattr (STDIN_FILENO, TCSANOW, &mono_attr) == -1)
487                 return FALSE;
488
489         set_control_chars (*control_chars, mono_attr.c_cc);
490         /* If initialized from another appdomain... */
491         if (setup_finished)
492                 return TRUE;
493
494         keypad_xmit_str = keypad != NULL ? mono_string_to_utf8 (keypad) : NULL;
495         
496         console_set_signal_handlers ();
497         setup_finished = TRUE;
498         if (!atexit_called) {
499                 if (teardown != NULL)
500                         teardown_str = mono_string_to_utf8 (teardown);
501
502                 mono_atexit (tty_teardown);
503         }
504
505         return TRUE;
506 }
507 #endif /* #if defined(__native_client__) */
508