[HttpConnection] Bug fix: HttpListener's "IgnoreWriteExceptions" property value is...
[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-internals.h>
35 #include <mono/metadata/metadata.h>
36 #include <mono/metadata/threadpool-ms.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         MonoVTable *vtable;
229
230         /* FIXME: this should likely iterate all the domains, instead */
231         if (!domain->domain)
232                 return;
233
234         klass = mono_class_from_name (mono_defaults.corlib, "System", "Console");
235         if (klass == NULL)
236                 return;
237
238         if (cancel_handler_field == NULL) {
239                 cancel_handler_field = mono_class_get_field_from_name (klass, "cancel_handler");
240                 g_assert (cancel_handler_field);
241         }
242
243         vtable = mono_class_vtable_full (domain, klass, FALSE);
244         if (vtable == NULL)
245                 return;
246         mono_field_static_get_value (vtable, cancel_handler_field, &load_value);
247         if (load_value == NULL)
248                 return;
249
250         klass = load_value->object.vtable->klass;
251         method = mono_class_get_method_from_name (klass, "BeginInvoke", -1);
252         g_assert (method != NULL);
253
254         mono_threadpool_ms_begin_invoke (domain, (MonoObject*) load_value, method, NULL);
255 }
256
257 static int need_cancel = FALSE;
258 /* this is executed from the finalizer thread */
259 void
260 mono_console_handle_async_ops (void)
261 {
262         if (need_cancel) {
263                 need_cancel = FALSE;
264                 do_console_cancel_event ();
265         }
266 }
267
268 static gboolean in_sigint;
269
270 MONO_SIG_HANDLER_FUNC (static, sigint_handler)
271 {
272         int save_errno;
273
274         if (in_sigint)
275                 return;
276
277         in_sigint = TRUE;
278         save_errno = errno;
279         need_cancel = TRUE;
280         mono_gc_finalize_notify ();
281         errno = save_errno;
282         in_sigint = FALSE;
283 }
284
285 static struct sigaction save_sigcont, save_sigint, save_sigwinch;
286
287 MONO_SIG_HANDLER_FUNC (static, sigcont_handler)
288 {
289         int unused G_GNUC_UNUSED;
290         // Ignore error, there is not much we can do in the sigcont handler.
291         tcsetattr (STDIN_FILENO, TCSANOW, &mono_attr);
292
293         if (keypad_xmit_str != NULL)
294                 unused = write (STDOUT_FILENO, keypad_xmit_str, strlen (keypad_xmit_str));
295
296         // Call previous handler
297         if (save_sigcont.sa_sigaction != NULL &&
298             save_sigcont.sa_sigaction != (void *)SIG_DFL &&
299             save_sigcont.sa_sigaction != (void *)SIG_IGN)
300                 (*save_sigcont.sa_sigaction) (MONO_SIG_HANDLER_PARAMS);
301 }
302
303 MONO_SIG_HANDLER_FUNC (static, sigwinch_handler)
304 {
305         int dims = terminal_get_dimensions ();
306         if (dims != -1)
307                 cols_and_lines = dims;
308         
309         // Call previous handler
310         if (save_sigwinch.sa_sigaction != NULL &&
311             save_sigwinch.sa_sigaction != (void *)SIG_DFL &&
312             save_sigwinch.sa_sigaction != (void *)SIG_IGN)
313                 (*save_sigwinch.sa_sigaction) (MONO_SIG_HANDLER_PARAMS);
314 }
315
316 /*
317  * console_set_signal_handlers:
318  *
319  * Installs various signals handlers for the use of the console, as
320  * follows:
321  *
322  * SIGCONT: this is received after the application has resumed execution
323  * if it was suspended with Control-Z before.   This signal handler needs
324  * to resend the terminal sequence to send keyboard in keypad mode (this
325  * is the difference between getting a cuu1 code or a kcuu1 code for up-arrow
326  * for example
327  *
328  * SIGINT: invokes the System.Console.DoConsoleCancelEvent method using
329  * a thread from the thread pool which notifies all registered cancel_event
330  * listeners.
331  *
332  * SIGWINCH: is used to track changes to the console window when a GUI
333  * terminal is resized.    It sets an internal variable that is checked
334  * by System.Console when the Terminfo driver has been activated.
335  */
336 static void
337 console_set_signal_handlers ()
338 {
339 #if defined(HAVE_SIGACTION)
340         struct sigaction sigcont, sigint, sigwinch;
341
342         memset (&sigcont, 0, sizeof (struct sigaction));
343         memset (&sigint, 0, sizeof (struct sigaction));
344         memset (&sigwinch, 0, sizeof (struct sigaction));
345         
346         // Continuing
347         sigcont.sa_handler = (void *) sigcont_handler;
348         sigcont.sa_flags = 0;
349         sigemptyset (&sigcont.sa_mask);
350         sigaction (SIGCONT, &sigcont, &save_sigcont);
351         
352         // Interrupt handler
353         sigint.sa_handler = (void *) sigint_handler;
354         sigint.sa_flags = 0;
355         sigemptyset (&sigint.sa_mask);
356         sigaction (SIGINT, &sigint, &save_sigint);
357
358         // Window size changed
359         sigwinch.sa_handler = (void *) sigwinch_handler;
360         sigwinch.sa_flags = 0;
361         sigemptyset (&sigwinch.sa_mask);
362         sigaction (SIGWINCH, &sigwinch, &save_sigwinch);
363 #endif
364 }
365
366 #if currently_unuused
367 //
368 // Currently unused, should we ever call the restore handler?
369 // Perhaps before calling into Process.Start?
370 //
371 void
372 console_restore_signal_handlers ()
373 {
374         sigaction (SIGCONT, &save_sigcont, NULL);
375         sigaction (SIGINT, &save_sigint, NULL);
376         sigaction (SIGWINCH, &save_sigwinch, NULL);
377 }
378 #endif
379
380 static void
381 set_control_chars (MonoArray *control_chars, const guchar *cc)
382 {
383         /* The index into the array comes from corlib/System/ControlCharacters.cs */
384 #ifdef VINTR
385         mono_array_set (control_chars, gchar, 0, cc [VINTR]);
386 #endif
387 #ifdef VQUIT
388         mono_array_set (control_chars, gchar, 1, cc [VQUIT]);
389 #endif
390 #ifdef VERASE
391         mono_array_set (control_chars, gchar, 2, cc [VERASE]);
392 #endif
393 #ifdef VKILL
394         mono_array_set (control_chars, gchar, 3, cc [VKILL]);
395 #endif
396 #ifdef VEOF
397         mono_array_set (control_chars, gchar, 4, cc [VEOF]);
398 #endif
399 #ifdef VTIME
400         mono_array_set (control_chars, gchar, 5, cc [VTIME]);
401 #endif
402 #ifdef VMIN
403         mono_array_set (control_chars, gchar, 6, cc [VMIN]);
404 #endif
405 #ifdef VSWTC
406         mono_array_set (control_chars, gchar, 7, cc [VSWTC]);
407 #endif
408 #ifdef VSTART
409         mono_array_set (control_chars, gchar, 8, cc [VSTART]);
410 #endif
411 #ifdef VSTOP
412         mono_array_set (control_chars, gchar, 9, cc [VSTOP]);
413 #endif
414 #ifdef VSUSP
415         mono_array_set (control_chars, gchar, 10, cc [VSUSP]);
416 #endif
417 #ifdef VEOL
418         mono_array_set (control_chars, gchar, 11, cc [VEOL]);
419 #endif
420 #ifdef VREPRINT
421         mono_array_set (control_chars, gchar, 12, cc [VREPRINT]);
422 #endif
423 #ifdef VDISCARD
424         mono_array_set (control_chars, gchar, 13, cc [VDISCARD]);
425 #endif
426 #ifdef VWERASE
427         mono_array_set (control_chars, gchar, 14, cc [VWERASE]);
428 #endif
429 #ifdef VLNEXT
430         mono_array_set (control_chars, gchar, 15, cc [VLNEXT]);
431 #endif
432 #ifdef VEOL2
433         mono_array_set (control_chars, gchar, 16, cc [VEOL2]);
434 #endif
435 }
436
437 MonoBoolean
438 ves_icall_System_ConsoleDriver_TtySetup (MonoString *keypad, MonoString *teardown, MonoArray **control_chars, int **size)
439 {
440         int dims;
441
442         dims = terminal_get_dimensions ();
443         if (dims == -1){
444                 int cols = 0, rows = 0;
445                                       
446                 const char *str = g_getenv ("COLUMNS");
447                 if (str != NULL)
448                         cols = atoi (str);
449                 str = g_getenv ("LINES");
450                 if (str != NULL)
451                         rows = atoi (str);
452
453                 if (cols != 0 && rows != 0)
454                         cols_and_lines = (cols << 16) | rows;
455                 else
456                         cols_and_lines = -1;
457         } else {
458                 cols_and_lines = dims;
459         }
460         
461         *size = &cols_and_lines;
462
463         /* 17 is the number of entries set in set_control_chars() above.
464          * NCCS is the total size, but, by now, we only care about those 17 values*/
465         mono_gc_wbarrier_generic_store (control_chars, (MonoObject*) mono_array_new (mono_domain_get (), mono_defaults.byte_class, 17));
466         if (tcgetattr (STDIN_FILENO, &initial_attr) == -1)
467                 return FALSE;
468
469         mono_attr = initial_attr;
470         mono_attr.c_lflag &= ~(ICANON);
471         mono_attr.c_iflag &= ~(IXON|IXOFF);
472         mono_attr.c_cc [VMIN] = 1;
473         mono_attr.c_cc [VTIME] = 0;
474 #ifdef VDSUSP
475         /* Disable C-y being used as a suspend character on OSX */
476         mono_attr.c_cc [VDSUSP] = 255;
477 #endif
478         if (tcsetattr (STDIN_FILENO, TCSANOW, &mono_attr) == -1)
479                 return FALSE;
480
481         set_control_chars (*control_chars, mono_attr.c_cc);
482         /* If initialized from another appdomain... */
483         if (setup_finished)
484                 return TRUE;
485
486         keypad_xmit_str = keypad != NULL ? mono_string_to_utf8 (keypad) : NULL;
487         
488         console_set_signal_handlers ();
489         setup_finished = TRUE;
490         if (!atexit_called) {
491                 if (teardown != NULL)
492                         teardown_str = mono_string_to_utf8 (teardown);
493
494                 mono_atexit (tty_teardown);
495         }
496
497         return TRUE;
498 }
499 #endif /* #if defined(__native_client__) */
500