[System] UriKind.RelativeOrAbsolute workaround.
[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-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         struct sigaction sigcont, sigint, sigwinch;
340
341         memset (&sigcont, 0, sizeof (struct sigaction));
342         memset (&sigint, 0, sizeof (struct sigaction));
343         memset (&sigwinch, 0, sizeof (struct sigaction));
344         
345         // Continuing
346         sigcont.sa_handler = (void *) sigcont_handler;
347         sigcont.sa_flags = 0;
348         sigemptyset (&sigcont.sa_mask);
349         sigaction (SIGCONT, &sigcont, &save_sigcont);
350         
351         // Interrupt handler
352         sigint.sa_handler = (void *) sigint_handler;
353         sigint.sa_flags = 0;
354         sigemptyset (&sigint.sa_mask);
355         sigaction (SIGINT, &sigint, &save_sigint);
356
357         // Window size changed
358         sigwinch.sa_handler = (void *) sigwinch_handler;
359         sigwinch.sa_flags = 0;
360         sigemptyset (&sigwinch.sa_mask);
361         sigaction (SIGWINCH, &sigwinch, &save_sigwinch);
362 }
363
364 #if currently_unuused
365 //
366 // Currently unused, should we ever call the restore handler?
367 // Perhaps before calling into Process.Start?
368 //
369 void
370 console_restore_signal_handlers ()
371 {
372         sigaction (SIGCONT, &save_sigcont, NULL);
373         sigaction (SIGINT, &save_sigint, NULL);
374         sigaction (SIGWINCH, &save_sigwinch, NULL);
375 }
376 #endif
377
378 static void
379 set_control_chars (MonoArray *control_chars, const guchar *cc)
380 {
381         /* The index into the array comes from corlib/System/ControlCharacters.cs */
382 #ifdef VINTR
383         mono_array_set (control_chars, gchar, 0, cc [VINTR]);
384 #endif
385 #ifdef VQUIT
386         mono_array_set (control_chars, gchar, 1, cc [VQUIT]);
387 #endif
388 #ifdef VERASE
389         mono_array_set (control_chars, gchar, 2, cc [VERASE]);
390 #endif
391 #ifdef VKILL
392         mono_array_set (control_chars, gchar, 3, cc [VKILL]);
393 #endif
394 #ifdef VEOF
395         mono_array_set (control_chars, gchar, 4, cc [VEOF]);
396 #endif
397 #ifdef VTIME
398         mono_array_set (control_chars, gchar, 5, cc [VTIME]);
399 #endif
400 #ifdef VMIN
401         mono_array_set (control_chars, gchar, 6, cc [VMIN]);
402 #endif
403 #ifdef VSWTC
404         mono_array_set (control_chars, gchar, 7, cc [VSWTC]);
405 #endif
406 #ifdef VSTART
407         mono_array_set (control_chars, gchar, 8, cc [VSTART]);
408 #endif
409 #ifdef VSTOP
410         mono_array_set (control_chars, gchar, 9, cc [VSTOP]);
411 #endif
412 #ifdef VSUSP
413         mono_array_set (control_chars, gchar, 10, cc [VSUSP]);
414 #endif
415 #ifdef VEOL
416         mono_array_set (control_chars, gchar, 11, cc [VEOL]);
417 #endif
418 #ifdef VREPRINT
419         mono_array_set (control_chars, gchar, 12, cc [VREPRINT]);
420 #endif
421 #ifdef VDISCARD
422         mono_array_set (control_chars, gchar, 13, cc [VDISCARD]);
423 #endif
424 #ifdef VWERASE
425         mono_array_set (control_chars, gchar, 14, cc [VWERASE]);
426 #endif
427 #ifdef VLNEXT
428         mono_array_set (control_chars, gchar, 15, cc [VLNEXT]);
429 #endif
430 #ifdef VEOL2
431         mono_array_set (control_chars, gchar, 16, cc [VEOL2]);
432 #endif
433 }
434
435 MonoBoolean
436 ves_icall_System_ConsoleDriver_TtySetup (MonoString *keypad, MonoString *teardown, MonoArray **control_chars, int **size)
437 {
438         int dims;
439
440         dims = terminal_get_dimensions ();
441         if (dims == -1){
442                 int cols = 0, rows = 0;
443                                       
444                 const char *str = g_getenv ("COLUMNS");
445                 if (str != NULL)
446                         cols = atoi (str);
447                 str = g_getenv ("LINES");
448                 if (str != NULL)
449                         rows = atoi (str);
450
451                 if (cols != 0 && rows != 0)
452                         cols_and_lines = (cols << 16) | rows;
453                 else
454                         cols_and_lines = -1;
455         } else {
456                 cols_and_lines = dims;
457         }
458         
459         *size = &cols_and_lines;
460
461         /* 17 is the number of entries set in set_control_chars() above.
462          * NCCS is the total size, but, by now, we only care about those 17 values*/
463         mono_gc_wbarrier_generic_store (control_chars, (MonoObject*) mono_array_new (mono_domain_get (), mono_defaults.byte_class, 17));
464         if (tcgetattr (STDIN_FILENO, &initial_attr) == -1)
465                 return FALSE;
466
467         mono_attr = initial_attr;
468         mono_attr.c_lflag &= ~(ICANON);
469         mono_attr.c_iflag &= ~(IXON|IXOFF);
470         mono_attr.c_cc [VMIN] = 1;
471         mono_attr.c_cc [VTIME] = 0;
472 #ifdef VDSUSP
473         /* Disable C-y being used as a suspend character on OSX */
474         mono_attr.c_cc [VDSUSP] = 255;
475 #endif
476         if (tcsetattr (STDIN_FILENO, TCSANOW, &mono_attr) == -1)
477                 return FALSE;
478
479         set_control_chars (*control_chars, mono_attr.c_cc);
480         /* If initialized from another appdomain... */
481         if (setup_finished)
482                 return TRUE;
483
484         keypad_xmit_str = keypad != NULL ? mono_string_to_utf8 (keypad) : NULL;
485         
486         console_set_signal_handlers ();
487         setup_finished = TRUE;
488         if (!atexit_called) {
489                 if (teardown != NULL)
490                         teardown_str = mono_string_to_utf8 (teardown);
491
492                 mono_atexit (tty_teardown);
493         }
494
495         return TRUE;
496 }
497 #endif /* #if defined(__native_client__) */
498