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