blob: 48359d31ea1217cd93616e0708c96f98f023f9a5 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * OS/2 port by Paul Slootman
5 * VMS merge by Zoltan Arpadffy
6 *
7 * Do ":help uganda" in Vim to read copying and usage conditions.
8 * Do ":help credits" in Vim to see a list of people who contributed.
9 * See README.txt for an overview of the Vim source code.
10 */
11
12/*
13 * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...)
14 * Also for OS/2, using the excellent EMX package!!!
15 * Also for BeOS and Atari MiNT.
16 *
17 * A lot of this file was originally written by Juergen Weigert and later
18 * changed beyond recognition.
19 */
20
21/*
22 * Some systems have a prototype for select() that has (int *) instead of
23 * (fd_set *), which is wrong. This define removes that prototype. We define
24 * our own prototype below.
25 * Don't use it for the Mac, it causes a warning for precompiled headers.
26 * TODO: use a configure check for precompiled headers?
27 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000028#if !defined(__APPLE__) && !defined(__TANDEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +000029# define select select_declared_wrong
30#endif
31
32#include "vim.h"
33
Bram Moolenaar325b7a22004-07-05 15:58:32 +000034#ifdef FEAT_MZSCHEME
35# include "if_mzsch.h"
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "os_unixx.h" /* unix includes for os_unix.c only */
39
40#ifdef USE_XSMP
41# include <X11/SM/SMlib.h>
42#endif
43
Bram Moolenaar588ebeb2008-05-07 17:09:24 +000044#ifdef HAVE_SELINUX
45# include <selinux/selinux.h>
46static int selinux_enabled = -1;
47#endif
48
Bram Moolenaar5bd32f42014-04-02 14:05:38 +020049#ifdef HAVE_SMACK
50# include <attr/xattr.h>
51# include <linux/xattr.h>
52# ifndef SMACK_LABEL_LEN
53# define SMACK_LABEL_LEN 1024
54# endif
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057/*
58 * Use this prototype for select, some include files have a wrong prototype
59 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000060#ifndef __TANDEM
61# undef select
62# ifdef __BEOS__
63# define select beos_select
64# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#endif
66
Bram Moolenaara2442432007-04-26 14:26:37 +000067#ifdef __CYGWIN__
68# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000069# include <cygwin/version.h>
70# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
71 * for cygwin_conv_path() */
Bram Moolenaar693e40c2013-02-26 14:56:42 +010072# ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
73# define WIN32_LEAN_AND_MEAN
74# include <windows.h>
75# include "winclip.pro"
76# endif
Bram Moolenaara2442432007-04-26 14:26:37 +000077# endif
78#endif
79
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#if defined(HAVE_SELECT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010081extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
Bram Moolenaar071d4272004-06-13 20:20:40 +000082#endif
83
84#ifdef FEAT_MOUSE_GPM
85# include <gpm.h>
86/* <linux/keyboard.h> contains defines conflicting with "keymap.h",
87 * I just copied relevant defines here. A cleaner solution would be to put gpm
88 * code into separate file and include there linux/keyboard.h
89 */
90/* #include <linux/keyboard.h> */
91# define KG_SHIFT 0
92# define KG_CTRL 2
93# define KG_ALT 3
94# define KG_ALTGR 1
95# define KG_SHIFTL 4
96# define KG_SHIFTR 5
97# define KG_CTRLL 6
98# define KG_CTRLR 7
99# define KG_CAPSSHIFT 8
100
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100101static void gpm_close(void);
102static int gpm_open(void);
103static int mch_gpm_process(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000106#ifdef FEAT_SYSMOUSE
107# include <sys/consio.h>
108# include <sys/fbio.h>
109
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100110static int sysmouse_open(void);
111static void sysmouse_close(void);
Bram Moolenaard99df422016-01-29 23:20:40 +0100112static RETSIGTYPE sig_sysmouse SIGPROTOARG;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000113#endif
114
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115/*
116 * end of autoconf section. To be extended...
117 */
118
119/* Are the following #ifdefs still required? And why? Is that for X11? */
120
121#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
122# ifdef SIGWINCH
123# undef SIGWINCH
124# endif
125# ifdef TIOCGWINSZ
126# undef TIOCGWINSZ
127# endif
128#endif
129
130#if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
131# define SIGWINCH SIGWINDOW
132#endif
133
134#ifdef FEAT_X11
135# include <X11/Xlib.h>
136# include <X11/Xutil.h>
137# include <X11/Xatom.h>
138# ifdef FEAT_XCLIPBOARD
139# include <X11/Intrinsic.h>
140# include <X11/Shell.h>
141# include <X11/StringDefs.h>
142static Widget xterm_Shell = (Widget)0;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100143static void clip_update(void);
144static void xterm_update(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145# endif
146
147# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
148Window x11_window = 0;
149# endif
150Display *x11_display = NULL;
151
152# ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100153static int get_x11_windis(void);
154static void set_x11_title(char_u *);
155static void set_x11_icon(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156# endif
157#endif
158
159#ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100160static int get_x11_title(int);
161static int get_x11_icon(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162
163static char_u *oldtitle = NULL;
164static int did_set_title = FALSE;
165static char_u *oldicon = NULL;
166static int did_set_icon = FALSE;
167#endif
168
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100169static void may_core_dump(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170
Bram Moolenaar205b8862011-09-07 15:04:31 +0200171#ifdef HAVE_UNION_WAIT
172typedef union wait waitstatus;
173#else
174typedef int waitstatus;
175#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100176static pid_t wait4pid(pid_t, waitstatus *);
Bram Moolenaar205b8862011-09-07 15:04:31 +0200177
Bram Moolenaarcda77642016-06-04 13:32:35 +0200178static int WaitForChar(long msec, int *interrupted);
179static int WaitForCharOrMouse(long msec, int *interrupted);
Bram Moolenaar4ffa0702013-12-11 17:12:37 +0100180#if defined(__BEOS__) || defined(VMS)
Bram Moolenaarcda77642016-06-04 13:32:35 +0200181int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182#else
Bram Moolenaarcda77642016-06-04 13:32:35 +0200183static int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184#endif
185
186#ifdef FEAT_XCLIPBOARD
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100187static int do_xterm_trace(void);
Bram Moolenaarcf851ce2005-06-16 21:52:47 +0000188# define XT_TRACE_DELAY 50 /* delay for xterm tracing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189#endif
190
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100191static void handle_resize(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192
193#if defined(SIGWINCH)
Bram Moolenaard99df422016-01-29 23:20:40 +0100194static RETSIGTYPE sig_winch SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195#endif
196#if defined(SIGINT)
Bram Moolenaard99df422016-01-29 23:20:40 +0100197static RETSIGTYPE catch_sigint SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198#endif
199#if defined(SIGPWR)
Bram Moolenaard99df422016-01-29 23:20:40 +0100200static RETSIGTYPE catch_sigpwr SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#endif
202#if defined(SIGALRM) && defined(FEAT_X11) \
203 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
204# define SET_SIG_ALARM
Bram Moolenaard99df422016-01-29 23:20:40 +0100205static RETSIGTYPE sig_alarm SIGPROTOARG;
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000206/* volatile because it is used in signal handler sig_alarm(). */
207static volatile int sig_alarm_called;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208#endif
Bram Moolenaard99df422016-01-29 23:20:40 +0100209static RETSIGTYPE deathtrap SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100211static void catch_int_signal(void);
212static void set_signals(void);
213static void catch_signals(RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)());
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +0200214#ifdef HAVE_SIGPROCMASK
215# define SIGSET_DECL(set) sigset_t set;
216# define BLOCK_SIGNALS(set) block_signals(set)
217# define UNBLOCK_SIGNALS(set) unblock_signals(set)
218#else
219# define SIGSET_DECL(set)
220# define BLOCK_SIGNALS(set) do { /**/ } while (0)
221# define UNBLOCK_SIGNALS(set) do { /**/ } while (0)
222#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100223static int have_wildcard(int, char_u **);
224static int have_dollars(int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100226static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227
228#ifndef SIG_ERR
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000229# define SIG_ERR ((RETSIGTYPE (*)())-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230#endif
231
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000232/* volatile because it is used in signal handler sig_winch(). */
233static volatile int do_resize = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234static char_u *extra_shell_arg = NULL;
235static int show_shell_mess = TRUE;
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000236/* volatile because it is used in signal handler deathtrap(). */
237static volatile int deadly_signal = 0; /* The signal we caught */
238/* volatile because it is used in signal handler deathtrap(). */
239static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +0100241#if defined(FEAT_JOB_CHANNEL) && !defined(USE_SYSTEM)
242static int dont_check_job_ended = 0;
243#endif
244
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
246
247#ifdef USE_XSMP
248typedef struct
249{
250 SmcConn smcconn; /* The SM connection ID */
251 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaar67c53842010-05-22 18:28:27 +0200252 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 Bool save_yourself; /* If we're in the middle of a save_yourself */
254 Bool shutdown; /* If we're in shutdown mode */
255} xsmp_config_T;
256
257static xsmp_config_T xsmp;
258#endif
259
260#ifdef SYS_SIGLIST_DECLARED
261/*
262 * I have seen
263 * extern char *_sys_siglist[NSIG];
264 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
265 * that describe the signals. That is nearly what we want here. But
266 * autoconf does only check for sys_siglist (without the underscore), I
267 * do not want to change everything today.... jw.
Bram Moolenaar3f7d0902016-11-12 21:13:42 +0100268 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 */
270#endif
271
272static struct signalinfo
273{
274 int sig; /* Signal number, eg. SIGSEGV etc */
275 char *name; /* Signal name (not char_u!). */
276 char deadly; /* Catch as a deadly signal? */
277} signal_info[] =
278{
279#ifdef SIGHUP
280 {SIGHUP, "HUP", TRUE},
281#endif
282#ifdef SIGQUIT
283 {SIGQUIT, "QUIT", TRUE},
284#endif
285#ifdef SIGILL
286 {SIGILL, "ILL", TRUE},
287#endif
288#ifdef SIGTRAP
289 {SIGTRAP, "TRAP", TRUE},
290#endif
291#ifdef SIGABRT
292 {SIGABRT, "ABRT", TRUE},
293#endif
294#ifdef SIGEMT
295 {SIGEMT, "EMT", TRUE},
296#endif
297#ifdef SIGFPE
298 {SIGFPE, "FPE", TRUE},
299#endif
300#ifdef SIGBUS
301 {SIGBUS, "BUS", TRUE},
302#endif
Bram Moolenaar75676462013-01-30 14:55:42 +0100303#if defined(SIGSEGV) && !defined(FEAT_MZSCHEME)
304 /* MzScheme uses SEGV in its garbage collector */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 {SIGSEGV, "SEGV", TRUE},
306#endif
307#ifdef SIGSYS
308 {SIGSYS, "SYS", TRUE},
309#endif
310#ifdef SIGALRM
311 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
312#endif
313#ifdef SIGTERM
314 {SIGTERM, "TERM", TRUE},
315#endif
Bram Moolenaarb292a2a2011-02-09 18:47:40 +0100316#if defined(SIGVTALRM) && !defined(FEAT_RUBY)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 {SIGVTALRM, "VTALRM", TRUE},
318#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000319#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
320 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
321 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 {SIGPROF, "PROF", TRUE},
323#endif
324#ifdef SIGXCPU
325 {SIGXCPU, "XCPU", TRUE},
326#endif
327#ifdef SIGXFSZ
328 {SIGXFSZ, "XFSZ", TRUE},
329#endif
330#ifdef SIGUSR1
331 {SIGUSR1, "USR1", TRUE},
332#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000333#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
334 /* Used for sysmouse handling */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 {SIGUSR2, "USR2", TRUE},
336#endif
337#ifdef SIGINT
338 {SIGINT, "INT", FALSE},
339#endif
340#ifdef SIGWINCH
341 {SIGWINCH, "WINCH", FALSE},
342#endif
343#ifdef SIGTSTP
344 {SIGTSTP, "TSTP", FALSE},
345#endif
346#ifdef SIGPIPE
347 {SIGPIPE, "PIPE", FALSE},
348#endif
349 {-1, "Unknown!", FALSE}
350};
351
Bram Moolenaar25724922009-07-14 15:38:41 +0000352 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100353mch_chdir(char *path)
Bram Moolenaar25724922009-07-14 15:38:41 +0000354{
355 if (p_verbose >= 5)
356 {
357 verbose_enter();
358 smsg((char_u *)"chdir(%s)", path);
359 verbose_leave();
360 }
361# ifdef VMS
362 return chdir(vms_fixfilename(path));
363# else
364 return chdir(path);
365# endif
366}
367
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000368/*
369 * Write s[len] to the screen.
370 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100372mch_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373{
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000374 ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 if (p_wd) /* Unix is too fast, slow down a bit more */
Bram Moolenaar8fdd7212016-03-26 19:41:48 +0100376 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377}
378
379/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000380 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 * Get a characters from the keyboard.
382 * Return the number of characters that are available.
383 * If wtime == 0 do not wait for characters.
384 * If wtime == n wait a short time for characters.
385 * If wtime == -1 wait forever for characters.
386 */
387 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100388mch_inchar(
389 char_u *buf,
390 int maxlen,
391 long wtime, /* don't use "time", MIPS cannot handle it */
392 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393{
394 int len;
Bram Moolenaarcda77642016-06-04 13:32:35 +0200395 int interrupted = FALSE;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200396 int did_start_blocking = FALSE;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200397 long wait_time;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200398 long elapsed_time = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100399#ifdef ELAPSED_FUNC
400 ELAPSED_TYPE start_tv;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200401
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100402 ELAPSED_INIT(start_tv);
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200403#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200405 /* repeat until we got a character or waited long enough */
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200406 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 {
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200408 /* Check if window changed size while we were busy, perhaps the ":set
409 * columns=99" command was used. */
410 while (do_resize)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 handle_resize();
Bram Moolenaar67c53842010-05-22 18:28:27 +0200412
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200413#ifdef MESSAGE_QUEUE
414 parse_queued_messages();
Bram Moolenaar67c53842010-05-22 18:28:27 +0200415#endif
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200416 if (wtime < 0 && did_start_blocking)
417 /* blocking and already waited for p_ut */
418 wait_time = -1;
419 else
420 {
421 if (wtime >= 0)
422 wait_time = wtime;
423 else
424 /* going to block after p_ut */
425 wait_time = p_ut;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100426#ifdef ELAPSED_FUNC
427 elapsed_time = ELAPSED_FUNC(start_tv);
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200428#endif
429 wait_time -= elapsed_time;
430 if (wait_time < 0)
431 {
432 if (wtime >= 0)
433 /* no character available within "wtime" */
434 return 0;
435
436 if (wtime < 0)
437 {
438 /* no character available within 'updatetime' */
439 did_start_blocking = TRUE;
440#ifdef FEAT_AUTOCMD
441 if (trigger_cursorhold() && maxlen >= 3
442 && !typebuf_changed(tb_change_cnt))
443 {
444 buf[0] = K_SPECIAL;
445 buf[1] = KS_EXTRA;
446 buf[2] = (int)KE_CURSORHOLD;
447 return 3;
448 }
449#endif
450 /*
451 * If there is no character available within 'updatetime'
452 * seconds flush all the swap files to disk.
453 * Also done when interrupted by SIGWINCH.
454 */
455 before_blocking();
456 continue;
457 }
458 }
459 }
460
461#ifdef FEAT_JOB_CHANNEL
462 /* Checking if a job ended requires polling. Do this every 100 msec. */
463 if (has_pending_job() && (wait_time < 0 || wait_time > 100L))
464 wait_time = 100L;
Bram Moolenaar8a8199e2016-11-26 15:13:33 +0100465 /* If there is readahead then parse_queued_messages() timed out and we
466 * should call it again soon. */
467 if ((wait_time < 0 || wait_time > 100L) && channel_any_readahead())
468 wait_time = 10L;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200469#endif
470
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 /*
Bram Moolenaar48bae372010-07-29 23:12:15 +0200472 * We want to be interrupted by the winch signal
473 * or by an event on the monitored file descriptors.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 */
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200475 if (WaitForChar(wait_time, &interrupted))
Bram Moolenaar67c53842010-05-22 18:28:27 +0200476 {
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200477 /* If input was put directly in typeahead buffer bail out here. */
478 if (typebuf_changed(tb_change_cnt))
479 return 0;
480
481 /*
482 * For some terminals we only get one character at a time.
483 * We want the get all available characters, so we could keep on
484 * trying until none is available
485 * For some other terminals this is quite slow, that's why we don't
486 * do it.
487 */
488 len = read_from_input_buf(buf, (long)maxlen);
489 if (len > 0)
490 return len;
491 continue;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200494 /* no character available */
495#if !(defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H))
496 /* estimate the elapsed time */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100497 elapsed_time += wait_time;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200500 if (do_resize /* interrupted by SIGWINCH signal */
501#ifdef FEAT_CLIENTSERVER
502 || server_waiting()
503#endif
504#ifdef MESSAGE_QUEUE
505 || interrupted
506#endif
507 || wait_time > 0
508 || !did_start_blocking)
509 continue;
510
511 /* no character available or interrupted */
512 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 }
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200514 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515}
516
517 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100518handle_resize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519{
520 do_resize = FALSE;
521 shell_resized();
522}
523
524/*
Bram Moolenaar40b1b542016-04-20 20:18:23 +0200525 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 */
527 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100528mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529{
Bram Moolenaarcda77642016-06-04 13:32:35 +0200530 return WaitForChar(0L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531}
532
533#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
534# ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000535# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536# endif
537# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
538# include <sys/sysctl.h>
539# endif
540# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
541# include <sys/sysinfo.h>
542# endif
543
544/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000545 * Return total amount of memory available in Kbyte.
546 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100549mch_total_mem(int special UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000552 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200554# ifdef HAVE_SYSCTL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 int mib[2], physmem;
556 size_t len;
557
558 /* BSD way of getting the amount of RAM available. */
559 mib[0] = CTL_HW;
560 mib[1] = HW_USERMEM;
561 len = sizeof(physmem);
562 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
563 mem = (long_u)physmem;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200564# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200566# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567 if (mem == 0)
568 {
569 struct sysinfo sinfo;
570
571 /* Linux way of getting amount of RAM available */
572 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000573 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200574# ifdef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaar914572a2007-05-01 11:37:47 +0000575 /* avoid overflow as much as possible */
576 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
577 {
578 sinfo.mem_unit = sinfo.mem_unit >> 1;
579 --shiftright;
580 }
581 mem = sinfo.totalram * sinfo.mem_unit;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200582# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 mem = sinfo.totalram;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200584# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200587# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200589# ifdef HAVE_SYSCONF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 if (mem == 0)
591 {
592 long pagesize, pagecount;
593
594 /* Solaris way of getting amount of RAM available */
595 pagesize = sysconf(_SC_PAGESIZE);
596 pagecount = sysconf(_SC_PHYS_PAGES);
597 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000598 {
599 /* avoid overflow as much as possible */
600 while (shiftright > 0 && (pagesize & 1) == 0)
601 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000602 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000603 --shiftright;
604 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000606 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200608# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609
610 /* Return the minimum of the physical memory and the user limit, because
611 * using more than the user limit may cause Vim to be terminated. */
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200612# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613 {
614 struct rlimit rlp;
615
616 if (getrlimit(RLIMIT_DATA, &rlp) == 0
617 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200618# ifdef RLIM_INFINITY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 && rlp.rlim_cur != RLIM_INFINITY
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200620# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000621 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000623 {
624 mem = (long_u)rlp.rlim_cur;
625 shiftright = 10;
626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200628# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629
630 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000631 return mem >> shiftright;
632 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633}
634#endif
635
636 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100637mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638{
639 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000640#ifdef FEAT_MZSCHEME
641 long total = msec; /* remember original value */
642#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643
644 if (ignoreinput)
645 {
646 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000647 * here. But we don't want QUIT to kill us (CTRL-\ used in a
648 * shell may produce SIGQUIT). */
649 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 old_tmode = curr_tmode;
651 if (curr_tmode == TMODE_RAW)
652 settmode(TMODE_SLEEP);
653
654 /*
655 * Everybody sleeps in a different way...
656 * Prefer nanosleep(), some versions of usleep() can only sleep up to
657 * one second.
658 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000659#ifdef FEAT_MZSCHEME
660 do
661 {
662 /* if total is large enough, wait by portions in p_mzq */
663 if (total > p_mzq)
664 msec = p_mzq;
665 else
666 msec = total;
667 total -= msec;
668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669#ifdef HAVE_NANOSLEEP
670 {
671 struct timespec ts;
672
673 ts.tv_sec = msec / 1000;
674 ts.tv_nsec = (msec % 1000) * 1000000;
675 (void)nanosleep(&ts, NULL);
676 }
677#else
678# ifdef HAVE_USLEEP
679 while (msec >= 1000)
680 {
681 usleep((unsigned int)(999 * 1000));
682 msec -= 999;
683 }
684 usleep((unsigned int)(msec * 1000));
685# else
686# ifndef HAVE_SELECT
687 poll(NULL, 0, (int)msec);
688# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 {
690 struct timeval tv;
691
692 tv.tv_sec = msec / 1000;
693 tv.tv_usec = (msec % 1000) * 1000;
694 /*
695 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
696 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
697 */
698 select(0, NULL, NULL, NULL, &tv);
699 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700# endif /* HAVE_SELECT */
701# endif /* HAVE_NANOSLEEP */
702#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000703#ifdef FEAT_MZSCHEME
704 }
705 while (total > 0);
706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
708 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000709 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 }
711 else
Bram Moolenaarcda77642016-06-04 13:32:35 +0200712 WaitForChar(msec, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713}
714
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000715#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
717# define HAVE_CHECK_STACK_GROWTH
718/*
719 * Support for checking for an almost-out-of-stack-space situation.
720 */
721
722/*
723 * Return a pointer to an item on the stack. Used to find out if the stack
724 * grows up or down.
725 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100726static void check_stack_growth(char *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727static int stack_grows_downwards;
728
729/*
730 * Find out if the stack grows upwards or downwards.
731 * "p" points to a variable on the stack of the caller.
732 */
733 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100734check_stack_growth(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735{
736 int i;
737
738 stack_grows_downwards = (p > (char *)&i);
739}
740#endif
741
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000742#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743static char *stack_limit = NULL;
744
745#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
746# include <pthread.h>
747# include <pthread_np.h>
748#endif
749
750/*
751 * Find out until how var the stack can grow without getting into trouble.
752 * Called when starting up and when switching to the signal stack in
753 * deathtrap().
754 */
755 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100756get_stack_limit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757{
758 struct rlimit rlp;
759 int i;
760 long lim;
761
762 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
763 * limit doesn't fit in a long (rlim_cur might be "long long"). */
764 if (getrlimit(RLIMIT_STACK, &rlp) == 0
765 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
766# ifdef RLIM_INFINITY
767 && rlp.rlim_cur != RLIM_INFINITY
768# endif
769 )
770 {
771 lim = (long)rlp.rlim_cur;
772#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
773 {
774 pthread_attr_t attr;
775 size_t size;
776
777 /* On FreeBSD the initial thread always has a fixed stack size, no
778 * matter what the limits are set to. Normally it's 1 Mbyte. */
779 pthread_attr_init(&attr);
780 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
781 {
782 pthread_attr_getstacksize(&attr, &size);
783 if (lim > (long)size)
784 lim = (long)size;
785 }
786 pthread_attr_destroy(&attr);
787 }
788#endif
789 if (stack_grows_downwards)
790 {
791 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
792 if (stack_limit >= (char *)&i)
793 /* overflow, set to 1/16 of current stack position */
794 stack_limit = (char *)((long)&i / 16L);
795 }
796 else
797 {
798 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
799 if (stack_limit <= (char *)&i)
800 stack_limit = NULL; /* overflow */
801 }
802 }
803}
804
805/*
806 * Return FAIL when running out of stack space.
807 * "p" must point to any variable local to the caller that's on the stack.
808 */
809 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100810mch_stackcheck(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811{
812 if (stack_limit != NULL)
813 {
814 if (stack_grows_downwards)
815 {
816 if (p < stack_limit)
817 return FAIL;
818 }
819 else if (p > stack_limit)
820 return FAIL;
821 }
822 return OK;
823}
824#endif
825
826#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
827/*
828 * Support for using the signal stack.
829 * This helps when we run out of stack space, which causes a SIGSEGV. The
830 * signal handler then must run on another stack, since the normal stack is
831 * completely full.
832 */
833
Bram Moolenaar39766a72013-11-03 00:41:00 +0100834#if defined(HAVE_AVAILABILITYMACROS_H)
Bram Moolenaar4cc95d12013-11-02 21:49:32 +0100835# include <AvailabilityMacros.h>
836#endif
837
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838#ifndef SIGSTKSZ
839# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
840#endif
841
842# ifdef HAVE_SIGALTSTACK
843static stack_t sigstk; /* for sigaltstack() */
844# else
845static struct sigstack sigstk; /* for sigstack() */
846# endif
847
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100848static void init_signal_stack(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849static char *signal_stack;
850
851 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100852init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853{
854 if (signal_stack != NULL)
855 {
856# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000857# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
858 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
860 * "struct sigaltstack" needs to be declared. */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100861 extern int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862# endif
863
864# ifdef HAVE_SS_BASE
865 sigstk.ss_base = signal_stack;
866# else
867 sigstk.ss_sp = signal_stack;
868# endif
869 sigstk.ss_size = SIGSTKSZ;
870 sigstk.ss_flags = 0;
871 (void)sigaltstack(&sigstk, NULL);
872# else
873 sigstk.ss_sp = signal_stack;
874 if (stack_grows_downwards)
875 sigstk.ss_sp += SIGSTKSZ - 1;
876 sigstk.ss_onstack = 0;
877 (void)sigstack(&sigstk, NULL);
878# endif
879 }
880}
881#endif
882
883/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000884 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * will barf when the second argument to signal() is ``wrong''.
886 * Let me try it with a few tricky defines from my own osdef.h (jw).
887 */
888#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 static RETSIGTYPE
890sig_winch SIGDEFARG(sigarg)
891{
892 /* this is not required on all systems, but it doesn't hurt anybody */
893 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
894 do_resize = TRUE;
895 SIGRETURN;
896}
897#endif
898
899#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 static RETSIGTYPE
901catch_sigint SIGDEFARG(sigarg)
902{
903 /* this is not required on all systems, but it doesn't hurt anybody */
904 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
905 got_int = TRUE;
906 SIGRETURN;
907}
908#endif
909
910#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 static RETSIGTYPE
912catch_sigpwr SIGDEFARG(sigarg)
913{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000914 /* this is not required on all systems, but it doesn't hurt anybody */
915 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 /*
917 * I'm not sure we get the SIGPWR signal when the system is really going
918 * down or when the batteries are almost empty. Just preserve the swap
919 * files and don't exit, that can't do any harm.
920 */
921 ml_sync_all(FALSE, FALSE);
922 SIGRETURN;
923}
924#endif
925
926#ifdef SET_SIG_ALARM
927/*
928 * signal function for alarm().
929 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 static RETSIGTYPE
931sig_alarm SIGDEFARG(sigarg)
932{
933 /* doesn't do anything, just to break a system call */
934 sig_alarm_called = TRUE;
935 SIGRETURN;
936}
937#endif
938
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000939#if (defined(HAVE_SETJMP_H) \
940 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
941 || defined(FEAT_LIBCALL))) \
942 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943/*
944 * A simplistic version of setjmp() that only allows one level of using.
945 * Don't call twice before calling mch_endjmp()!.
946 * Usage:
947 * mch_startjmp();
948 * if (SETJMP(lc_jump_env) != 0)
949 * {
950 * mch_didjmp();
951 * EMSG("crash!");
952 * }
953 * else
954 * {
955 * do_the_work;
956 * mch_endjmp();
957 * }
958 * Note: Can't move SETJMP() here, because a function calling setjmp() must
959 * not return before the saved environment is used.
960 * Returns OK for normal return, FAIL when the protected code caused a
961 * problem and LONGJMP() was used.
962 */
963 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100964mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965{
966#ifdef SIGHASARG
967 lc_signal = 0;
968#endif
969 lc_active = TRUE;
970}
971
972 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100973mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 lc_active = FALSE;
976}
977
978 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100979mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980{
981# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
982 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
983 * otherwise catching the signal only works once. */
984 init_signal_stack();
985# endif
986}
987#endif
988
989/*
990 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200991 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200993 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
994 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 */
996 static RETSIGTYPE
997deathtrap SIGDEFARG(sigarg)
998{
999 static int entered = 0; /* count the number of times we got here.
1000 Note: when memory has been corrupted
1001 this may get an arbitrary value! */
1002#ifdef SIGHASARG
1003 int i;
1004#endif
1005
1006#if defined(HAVE_SETJMP_H)
1007 /*
1008 * Catch a crash in protected code.
1009 * Restores the environment saved in lc_jump_env, which looks like
1010 * SETJMP() returns 1.
1011 */
1012 if (lc_active)
1013 {
1014# if defined(SIGHASARG)
1015 lc_signal = sigarg;
1016# endif
1017 lc_active = FALSE; /* don't jump again */
1018 LONGJMP(lc_jump_env, 1);
1019 /* NOTREACHED */
1020 }
1021#endif
1022
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001023#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +00001024# ifdef SIGQUIT
1025 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
1026 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
1027 * pressing CTRL-\, but we don't want Vim to exit then. */
1028 if (in_mch_delay && sigarg == SIGQUIT)
1029 SIGRETURN;
1030# endif
1031
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001032 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
1033 * here. This avoids that a non-reentrant function is interrupted, e.g.,
1034 * free(). Calling free() again may then cause a crash. */
1035 if (entered == 0
1036 && (0
1037# ifdef SIGHUP
1038 || sigarg == SIGHUP
1039# endif
1040# ifdef SIGQUIT
1041 || sigarg == SIGQUIT
1042# endif
1043# ifdef SIGTERM
1044 || sigarg == SIGTERM
1045# endif
1046# ifdef SIGPWR
1047 || sigarg == SIGPWR
1048# endif
1049# ifdef SIGUSR1
1050 || sigarg == SIGUSR1
1051# endif
1052# ifdef SIGUSR2
1053 || sigarg == SIGUSR2
1054# endif
1055 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001056 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001057 SIGRETURN;
1058#endif
1059
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 /* Remember how often we have been called. */
1061 ++entered;
1062
Bram Moolenaare429e702016-06-10 19:49:14 +02001063#ifdef FEAT_AUTOCMD
1064 /* Executing autocommands is likely to use more stack space than we have
1065 * available in the signal stack. */
1066 block_autocmds();
1067#endif
1068
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069#ifdef FEAT_EVAL
1070 /* Set the v:dying variable. */
1071 set_vim_var_nr(VV_DYING, (long)entered);
1072#endif
1073
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001074#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 /* Since we are now using the signal stack, need to reset the stack
1076 * limit. Otherwise using a regexp will fail. */
1077 get_stack_limit();
1078#endif
1079
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001080#if 0
1081 /* This is for opening gdb the moment Vim crashes.
1082 * You need to manually adjust the file name and Vim executable name.
1083 * Suggested by SungHyun Nam. */
1084 {
1085# define VI_GDB_FILE "/tmp/vimgdb"
1086# define VIM_NAME "/usr/bin/vim"
1087 FILE *fp = fopen(VI_GDB_FILE, "w");
1088 if (fp)
1089 {
1090 fprintf(fp,
1091 "file %s\n"
1092 "attach %d\n"
1093 "set height 1000\n"
1094 "bt full\n"
1095 , VIM_NAME, getpid());
1096 fclose(fp);
1097 system("xterm -e gdb -x "VI_GDB_FILE);
1098 unlink(VI_GDB_FILE);
1099 }
1100 }
1101#endif
1102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103#ifdef SIGHASARG
1104 /* try to find the name of this signal */
1105 for (i = 0; signal_info[i].sig != -1; i++)
1106 if (sigarg == signal_info[i].sig)
1107 break;
1108 deadly_signal = sigarg;
1109#endif
1110
1111 full_screen = FALSE; /* don't write message to the GUI, it might be
1112 * part of the problem... */
1113 /*
1114 * If something goes wrong after entering here, we may get here again.
1115 * When this happens, give a message and try to exit nicely (resetting the
1116 * terminal mode, etc.)
1117 * When this happens twice, just exit, don't even try to give a message,
1118 * stack may be corrupt or something weird.
1119 * When this still happens again (or memory was corrupted in such a way
1120 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1121 */
1122 if (entered >= 3)
1123 {
1124 reset_signals(); /* don't catch any signals anymore */
1125 may_core_dump();
1126 if (entered >= 4)
1127 _exit(8);
1128 exit(7);
1129 }
1130 if (entered == 2)
1131 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001132 /* No translation, it may call malloc(). */
1133 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 out_flush();
1135 getout(1);
1136 }
1137
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001138 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001140 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 signal_info[i].name);
1142#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001143 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001145
1146 /* Preserve files and exit. This sets the really_exiting flag to prevent
1147 * calling free(). */
1148 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149
Bram Moolenaare429e702016-06-10 19:49:14 +02001150 /* NOTREACHED */
1151
Bram Moolenaar009b2592004-10-24 19:18:58 +00001152#ifdef NBDEBUG
1153 reset_signals();
1154 may_core_dump();
1155 abort();
1156#endif
1157
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 SIGRETURN;
1159}
1160
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001161#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162/*
1163 * On Solaris with multi-threading, suspending might not work immediately.
1164 * Catch the SIGCONT signal, which will be used as an indication whether the
1165 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001166 *
1167 * On Linux, signal is not always handled immediately either.
1168 * See https://bugs.launchpad.net/bugs/291373
1169 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001170 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001172static volatile int sigcont_received;
Bram Moolenaard99df422016-01-29 23:20:40 +01001173static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
1175/*
1176 * signal handler for SIGCONT
1177 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 static RETSIGTYPE
1179sigcont_handler SIGDEFARG(sigarg)
1180{
1181 sigcont_received = TRUE;
1182 SIGRETURN;
1183}
1184#endif
1185
Bram Moolenaar62b42182010-09-21 22:09:37 +02001186# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001187static void loose_clipboard(void);
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001188# ifdef USE_SYSTEM
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001189static void save_clipboard(void);
1190static void restore_clipboard(void);
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001191
1192static void *clip_star_save = NULL;
1193static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001194# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001195
1196/*
1197 * Called when Vim is going to sleep or execute a shell command.
1198 * We can't respond to requests for the X selections. Lose them, otherwise
1199 * other applications will hang. But first copy the text to cut buffer 0.
1200 */
1201 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001202loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001203{
1204 if (clip_star.owned || clip_plus.owned)
1205 {
1206 x11_export_final_selection();
1207 if (clip_star.owned)
1208 clip_lose_selection(&clip_star);
1209 if (clip_plus.owned)
1210 clip_lose_selection(&clip_plus);
1211 if (x11_display != NULL)
1212 XFlush(x11_display);
1213 }
1214}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001215
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001216# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001217/*
1218 * Save clipboard text to restore later.
1219 */
1220 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001221save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001222{
1223 if (clip_star.owned)
1224 clip_star_save = get_register('*', TRUE);
1225 if (clip_plus.owned)
1226 clip_plus_save = get_register('+', TRUE);
1227}
1228
1229/*
1230 * Restore clipboard text if no one own the X selection.
1231 */
1232 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001233restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001234{
1235 if (clip_star_save != NULL)
1236 {
1237 if (!clip_gen_owner_exists(&clip_star))
1238 put_register('*', clip_star_save);
1239 else
1240 free_register(clip_star_save);
1241 clip_star_save = NULL;
1242 }
1243 if (clip_plus_save != NULL)
1244 {
1245 if (!clip_gen_owner_exists(&clip_plus))
1246 put_register('+', clip_plus_save);
1247 else
1248 free_register(clip_plus_save);
1249 clip_plus_save = NULL;
1250 }
1251}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001252# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001253#endif
1254
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255/*
1256 * If the machine has job control, use it to suspend the program,
1257 * otherwise fake it by starting a new shell.
1258 */
1259 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001260mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261{
1262 /* BeOS does have SIGTSTP, but it doesn't work. */
1263#if defined(SIGTSTP) && !defined(__BEOS__)
1264 out_flush(); /* needed to make cursor visible on some systems */
1265 settmode(TMODE_COOK);
1266 out_flush(); /* needed to disable mouse on some systems */
1267
1268# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001269 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270# endif
1271
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001272# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 sigcont_received = FALSE;
1274# endif
1275 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001276# if defined(_REENTRANT) && defined(SIGCONT)
1277 /*
1278 * Wait for the SIGCONT signal to be handled. It generally happens
1279 * immediately, but somehow not all the time. Do not call pause()
1280 * because there would be race condition which would hang Vim if
1281 * signal happened in between the test of sigcont_received and the
1282 * call to pause(). If signal is not yet received, call sleep(0)
1283 * to just yield CPU. Signal should then be received. If somehow
1284 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1285 * further if signal is not received after 1+2+3+4 ms (not expected
1286 * to happen).
1287 */
1288 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001289 long wait_time;
1290 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001291 /* Loop is not entered most of the time */
Bram Moolenaar262735e2009-07-14 10:20:22 +00001292 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001293 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294# endif
1295
1296# ifdef FEAT_TITLE
1297 /*
1298 * Set oldtitle to NULL, so the current title is obtained again.
1299 */
1300 vim_free(oldtitle);
1301 oldtitle = NULL;
1302# endif
1303 settmode(TMODE_RAW);
1304 need_check_timestamps = TRUE;
1305 did_check_timestamps = FALSE;
1306#else
1307 suspend_shell();
1308#endif
1309}
1310
1311 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001312mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313{
1314 Columns = 80;
1315 Rows = 24;
1316
1317 out_flush();
1318 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001319
Bram Moolenaar56718732006-03-15 22:53:57 +00001320#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001321 mac_conv_init();
1322#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001323#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1324 win_clip_init();
1325#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326}
1327
1328 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001329set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330{
1331#if defined(SIGWINCH)
1332 /*
1333 * WINDOW CHANGE signal is handled with sig_winch().
1334 */
1335 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1336#endif
1337
1338 /*
1339 * We want the STOP signal to work, to make mch_suspend() work.
1340 * For "rvim" the STOP signal is ignored.
1341 */
1342#ifdef SIGTSTP
1343 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1344#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001345#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 signal(SIGCONT, sigcont_handler);
1347#endif
1348
1349 /*
1350 * We want to ignore breaking of PIPEs.
1351 */
1352#ifdef SIGPIPE
1353 signal(SIGPIPE, SIG_IGN);
1354#endif
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001357 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358#endif
1359
1360 /*
1361 * Ignore alarm signals (Perl's alarm() generates it).
1362 */
1363#ifdef SIGALRM
1364 signal(SIGALRM, SIG_IGN);
1365#endif
1366
1367 /*
1368 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1369 * work will be lost.
1370 */
1371#ifdef SIGPWR
1372 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1373#endif
1374
1375 /*
1376 * Arrange for other signals to gracefully shutdown Vim.
1377 */
1378 catch_signals(deathtrap, SIG_ERR);
1379
1380#if defined(FEAT_GUI) && defined(SIGHUP)
1381 /*
1382 * When the GUI is running, ignore the hangup signal.
1383 */
1384 if (gui.in_use)
1385 signal(SIGHUP, SIG_IGN);
1386#endif
1387}
1388
Bram Moolenaardf177f62005-02-22 08:39:57 +00001389#if defined(SIGINT) || defined(PROTO)
1390/*
1391 * Catch CTRL-C (only works while in Cooked mode).
1392 */
1393 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001394catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001395{
1396 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1397}
1398#endif
1399
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001401reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402{
1403 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001404#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 /* SIGCONT isn't in the list, because its default action is ignore */
1406 signal(SIGCONT, SIG_DFL);
1407#endif
1408}
1409
1410 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001411catch_signals(
1412 RETSIGTYPE (*func_deadly)(),
1413 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414{
1415 int i;
1416
1417 for (i = 0; signal_info[i].sig != -1; i++)
1418 if (signal_info[i].deadly)
1419 {
1420#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1421 struct sigaction sa;
1422
1423 /* Setup to use the alternate stack for the signal function. */
1424 sa.sa_handler = func_deadly;
1425 sigemptyset(&sa.sa_mask);
1426# if defined(__linux__) && defined(_REENTRANT)
1427 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1428 * thread handling in combination with using the alternate stack:
1429 * pthread library functions try to use the stack pointer to
1430 * identify the current thread, causing a SEGV signal, which
1431 * recursively calls deathtrap() and hangs. */
1432 sa.sa_flags = 0;
1433# else
1434 sa.sa_flags = SA_ONSTACK;
1435# endif
1436 sigaction(signal_info[i].sig, &sa, NULL);
1437#else
1438# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1439 struct sigvec sv;
1440
1441 /* Setup to use the alternate stack for the signal function. */
1442 sv.sv_handler = func_deadly;
1443 sv.sv_mask = 0;
1444 sv.sv_flags = SV_ONSTACK;
1445 sigvec(signal_info[i].sig, &sv, NULL);
1446# else
1447 signal(signal_info[i].sig, func_deadly);
1448# endif
1449#endif
1450 }
1451 else if (func_other != SIG_ERR)
1452 signal(signal_info[i].sig, func_other);
1453}
1454
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001455#ifdef HAVE_SIGPROCMASK
1456 static void
1457block_signals(sigset_t *set)
1458{
1459 sigset_t newset;
1460 int i;
1461
1462 sigemptyset(&newset);
1463
1464 for (i = 0; signal_info[i].sig != -1; i++)
1465 sigaddset(&newset, signal_info[i].sig);
1466
1467# if defined(_REENTRANT) && defined(SIGCONT)
1468 /* SIGCONT isn't in the list, because its default action is ignore */
1469 sigaddset(&newset, SIGCONT);
1470# endif
1471
1472 sigprocmask(SIG_BLOCK, &newset, set);
1473}
1474
1475 static void
1476unblock_signals(sigset_t *set)
1477{
1478 sigprocmask(SIG_SETMASK, set, NULL);
1479}
1480#endif
1481
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001483 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001484 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1485 * return TRUE
1486 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1487 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001488 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001489 * Returns TRUE when Vim should exit.
1490 */
1491 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001492vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001493{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001494 static int got_signal = 0;
1495 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001496
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001497 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001498 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001499 case SIGNAL_BLOCK: blocked = TRUE;
1500 break;
1501
1502 case SIGNAL_UNBLOCK: blocked = FALSE;
1503 if (got_signal != 0)
1504 {
1505 kill(getpid(), got_signal);
1506 got_signal = 0;
1507 }
1508 break;
1509
1510 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001511 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001512 got_signal = sig;
1513#ifdef SIGPWR
1514 if (sig != SIGPWR)
1515#endif
1516 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001517 break;
1518 }
1519 return FALSE;
1520}
1521
1522/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 * Check_win checks whether we have an interactive stdout.
1524 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001526mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 if (isatty(1))
1529 return OK;
1530 return FAIL;
1531}
1532
1533/*
1534 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1535 */
1536 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001537mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538{
1539 if (isatty(read_cmd_fd))
1540 return TRUE;
1541 return FALSE;
1542}
1543
1544#ifdef FEAT_X11
1545
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001546# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1548
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549/*
1550 * Give a message about the elapsed time for opening the X window.
1551 */
1552 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001553xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554{
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001555 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556}
1557# endif
1558#endif
1559
1560#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1561/*
1562 * A few functions shared by X11 title and clipboard code.
1563 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001564static int x_error_handler(Display *dpy, XErrorEvent *error_event);
1565static int x_error_check(Display *dpy, XErrorEvent *error_event);
1566static int x_connect_to_server(void);
1567static int test_x11_window(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
1569static int got_x_error = FALSE;
1570
1571/*
1572 * X Error handler, otherwise X just exits! (very rude) -- webb
1573 */
1574 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001575x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001577 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 STRCAT(IObuff, _("\nVim: Got X error\n"));
1579
1580 /* We cannot print a message and continue, because no X calls are allowed
1581 * here (causes my system to hang). Silently continuing might be an
1582 * alternative... */
1583 preserve_exit(); /* preserve files and exit */
1584
1585 return 0; /* NOTREACHED */
1586}
1587
1588/*
1589 * Another X Error handler, just used to check for errors.
1590 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001592x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593{
1594 got_x_error = TRUE;
1595 return 0;
1596}
1597
1598#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1599# if defined(HAVE_SETJMP_H)
1600/*
1601 * An X IO Error handler, used to catch error while opening the display.
1602 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001603static int x_IOerror_check(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001606x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
1608 /* This function should not return, it causes exit(). Longjump instead. */
1609 LONGJMP(lc_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001610# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001611 return 0; /* avoid the compiler complains about missing return value */
1612# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613}
1614# endif
1615
1616/*
1617 * An X IO Error handler, used to catch terminal errors.
1618 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001619static int x_IOerror_handler(Display *dpy);
1620static void may_restore_clipboard(void);
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001621static int xterm_dpy_was_reset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001624x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 xterm_dpy = NULL;
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001627 xterm_dpy_was_reset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 x11_window = 0;
1629 x11_display = NULL;
1630 xterm_Shell = (Widget)0;
1631
1632 /* This function should not return, it causes exit(). Longjump instead. */
1633 LONGJMP(x_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001634# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001635 return 0; /* avoid the compiler complains about missing return value */
1636# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001638
1639/*
1640 * If the X11 connection was lost try to restore it.
1641 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001642 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001643 */
1644 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001645may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001646{
1647 if (xterm_dpy_was_reset)
1648 {
1649 xterm_dpy_was_reset = FALSE;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001650
1651# ifndef LESSTIF_VERSION
1652 /* This has been reported to avoid Vim getting stuck. */
1653 if (app_context != (XtAppContext)NULL)
1654 {
1655 XtDestroyApplicationContext(app_context);
1656 app_context = (XtAppContext)NULL;
1657 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1658 }
1659# endif
1660
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001661 setup_term_clip();
1662 get_x11_title(FALSE);
1663 }
1664}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#endif
1666
1667/*
1668 * Return TRUE when connection to the X server is desired.
1669 */
1670 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001671x_connect_to_server(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673#if defined(FEAT_CLIENTSERVER)
1674 if (x_force_connect)
1675 return TRUE;
1676#endif
1677 if (x_no_connect)
1678 return FALSE;
1679
1680 /* Check for a match with "exclude:" from 'clipboard'. */
1681 if (clip_exclude_prog != NULL)
1682 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01001683 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 return FALSE;
1685 }
1686 return TRUE;
1687}
1688
1689/*
1690 * Test if "dpy" and x11_window are valid by getting the window title.
1691 * I don't actually want it yet, so there may be a simpler call to use, but
1692 * this will cause the error handler x_error_check() to be called if anything
1693 * is wrong, such as the window pointer being invalid (as can happen when the
1694 * user changes his DISPLAY, but not his WINDOWID) -- webb
1695 */
1696 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001697test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698{
1699 int (*old_handler)();
1700 XTextProperty text_prop;
1701
1702 old_handler = XSetErrorHandler(x_error_check);
1703 got_x_error = FALSE;
1704 if (XGetWMName(dpy, x11_window, &text_prop))
1705 XFree((void *)text_prop.value);
1706 XSync(dpy, False);
1707 (void)XSetErrorHandler(old_handler);
1708
1709 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001710 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711
1712 return (got_x_error ? FAIL : OK);
1713}
1714#endif
1715
1716#ifdef FEAT_TITLE
1717
1718#ifdef FEAT_X11
1719
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001720static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721
1722/*
1723 * try to get x11 window and display
1724 *
1725 * return FAIL for failure, OK otherwise
1726 */
1727 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001728get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729{
1730 char *winid;
1731 static int result = -1;
1732#define XD_NONE 0 /* x11_display not set here */
1733#define XD_HERE 1 /* x11_display opened here */
1734#define XD_GUI 2 /* x11_display used from gui.dpy */
1735#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1736 static int x11_display_from = XD_NONE;
1737 static int did_set_error_handler = FALSE;
1738
1739 if (!did_set_error_handler)
1740 {
1741 /* X just exits if it finds an error otherwise! */
1742 (void)XSetErrorHandler(x_error_handler);
1743 did_set_error_handler = TRUE;
1744 }
1745
Bram Moolenaar9372a112005-12-06 19:59:18 +00001746#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 if (gui.in_use)
1748 {
1749 /*
1750 * If the X11 display was opened here before, for the window where Vim
1751 * was started, close that one now to avoid a memory leak.
1752 */
1753 if (x11_display_from == XD_HERE && x11_display != NULL)
1754 {
1755 XCloseDisplay(x11_display);
1756 x11_display_from = XD_NONE;
1757 }
1758 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1759 {
1760 x11_display_from = XD_GUI;
1761 return OK;
1762 }
1763 x11_display = NULL;
1764 return FAIL;
1765 }
1766 else if (x11_display_from == XD_GUI)
1767 {
1768 /* GUI must have stopped somehow, clear x11_display */
1769 x11_window = 0;
1770 x11_display = NULL;
1771 x11_display_from = XD_NONE;
1772 }
1773#endif
1774
1775 /* When started with the "-X" argument, don't try connecting. */
1776 if (!x_connect_to_server())
1777 return FAIL;
1778
1779 /*
1780 * If WINDOWID not set, should try another method to find out
1781 * what the current window number is. The only code I know for
1782 * this is very complicated.
1783 * We assume that zero is invalid for WINDOWID.
1784 */
1785 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1786 x11_window = (Window)atol(winid);
1787
1788#ifdef FEAT_XCLIPBOARD
1789 if (xterm_dpy != NULL && x11_window != 0)
1790 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001791 /* We may have checked it already, but Gnome terminal can move us to
1792 * another window, so we need to check every time. */
1793 if (x11_display_from != XD_XTERM)
1794 {
1795 /*
1796 * If the X11 display was opened here before, for the window where
1797 * Vim was started, close that one now to avoid a memory leak.
1798 */
1799 if (x11_display_from == XD_HERE && x11_display != NULL)
1800 XCloseDisplay(x11_display);
1801 x11_display = xterm_dpy;
1802 x11_display_from = XD_XTERM;
1803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 if (test_x11_window(x11_display) == FAIL)
1805 {
1806 /* probably bad $WINDOWID */
1807 x11_window = 0;
1808 x11_display = NULL;
1809 x11_display_from = XD_NONE;
1810 return FAIL;
1811 }
1812 return OK;
1813 }
1814#endif
1815
1816 if (x11_window == 0 || x11_display == NULL)
1817 result = -1;
1818
1819 if (result != -1) /* Have already been here and set this */
1820 return result; /* Don't do all these X calls again */
1821
1822 if (x11_window != 0 && x11_display == NULL)
1823 {
1824#ifdef SET_SIG_ALARM
1825 RETSIGTYPE (*sig_save)();
1826#endif
1827#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1828 struct timeval start_tv;
1829
1830 if (p_verbose > 0)
1831 gettimeofday(&start_tv, NULL);
1832#endif
1833
1834#ifdef SET_SIG_ALARM
1835 /*
1836 * Opening the Display may hang if the DISPLAY setting is wrong, or
1837 * the network connection is bad. Set an alarm timer to get out.
1838 */
1839 sig_alarm_called = FALSE;
1840 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1841 (RETSIGTYPE (*)())sig_alarm);
1842 alarm(2);
1843#endif
1844 x11_display = XOpenDisplay(NULL);
1845
1846#ifdef SET_SIG_ALARM
1847 alarm(0);
1848 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1849 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001850 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851#endif
1852 if (x11_display != NULL)
1853 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001854# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001856 {
1857 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001858 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001859 verbose_leave();
1860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861# endif
1862 if (test_x11_window(x11_display) == FAIL)
1863 {
1864 /* Maybe window id is bad */
1865 x11_window = 0;
1866 XCloseDisplay(x11_display);
1867 x11_display = NULL;
1868 }
1869 else
1870 x11_display_from = XD_HERE;
1871 }
1872 }
1873 if (x11_window == 0 || x11_display == NULL)
1874 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001875
1876# ifdef FEAT_EVAL
1877 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1878# endif
1879
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 return (result = OK);
1881}
1882
1883/*
1884 * Determine original x11 Window Title
1885 */
1886 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001887get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001889 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890}
1891
1892/*
1893 * Determine original x11 Window icon
1894 */
1895 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001896get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897{
1898 int retval = FALSE;
1899
1900 retval = get_x11_thing(FALSE, test_only);
1901
1902 /* could not get old icon, use terminal name */
1903 if (oldicon == NULL && !test_only)
1904 {
1905 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001906 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001908 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909 }
1910
1911 return retval;
1912}
1913
1914 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001915get_x11_thing(
1916 int get_title, /* get title string */
1917 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918{
1919 XTextProperty text_prop;
1920 int retval = FALSE;
1921 Status status;
1922
1923 if (get_x11_windis() == OK)
1924 {
1925 /* Get window/icon name if any */
1926 if (get_title)
1927 status = XGetWMName(x11_display, x11_window, &text_prop);
1928 else
1929 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1930
1931 /*
1932 * If terminal is xterm, then x11_window may be a child window of the
1933 * outer xterm window that actually contains the window/icon name, so
1934 * keep traversing up the tree until a window with a title/icon is
1935 * found.
1936 */
1937 /* Previously this was only done for xterm and alikes. I don't see a
1938 * reason why it would fail for other terminal emulators.
1939 * if (term_is_xterm) */
1940 {
1941 Window root;
1942 Window parent;
1943 Window win = x11_window;
1944 Window *children;
1945 unsigned int num_children;
1946
1947 while (!status || text_prop.value == NULL)
1948 {
1949 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1950 &num_children))
1951 break;
1952 if (children)
1953 XFree((void *)children);
1954 if (parent == root || parent == 0)
1955 break;
1956
1957 win = parent;
1958 if (get_title)
1959 status = XGetWMName(x11_display, win, &text_prop);
1960 else
1961 status = XGetWMIconName(x11_display, win, &text_prop);
1962 }
1963 }
1964 if (status && text_prop.value != NULL)
1965 {
1966 retval = TRUE;
1967 if (!test_only)
1968 {
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001969#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
1970 if (text_prop.encoding == XA_STRING
1971# ifdef FEAT_MBYTE
1972 && !has_mbyte
1973# endif
1974 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 {
1976#endif
1977 if (get_title)
1978 oldtitle = vim_strsave((char_u *)text_prop.value);
1979 else
1980 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001981#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 }
1983 else
1984 {
1985 char **cl;
1986 Status transform_status;
1987 int n = 0;
1988
1989 transform_status = XmbTextPropertyToTextList(x11_display,
1990 &text_prop,
1991 &cl, &n);
1992 if (transform_status >= Success && n > 0 && cl[0])
1993 {
1994 if (get_title)
1995 oldtitle = vim_strsave((char_u *) cl[0]);
1996 else
1997 oldicon = vim_strsave((char_u *) cl[0]);
1998 XFreeStringList(cl);
1999 }
2000 else
2001 {
2002 if (get_title)
2003 oldtitle = vim_strsave((char_u *)text_prop.value);
2004 else
2005 oldicon = vim_strsave((char_u *)text_prop.value);
2006 }
2007 }
2008#endif
2009 }
2010 XFree((void *)text_prop.value);
2011 }
2012 }
2013 return retval;
2014}
2015
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002016/* Xutf8 functions are not avaialble on older systems. Note that on some
2017 * systems X_HAVE_UTF8_STRING may be defined in a header file but
2018 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2019 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002021# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022# define USE_UTF8_STRING
2023# endif
2024#endif
2025
2026/*
2027 * Set x11 Window Title
2028 *
2029 * get_x11_windis() must be called before this and have returned OK
2030 */
2031 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002032set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033{
2034 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2035 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2036 * supported everywhere and STRING doesn't work for multi-byte titles.
2037 */
2038#ifdef USE_UTF8_STRING
2039 if (enc_utf8)
2040 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2041 NULL, NULL, 0, NULL, NULL, NULL);
2042 else
2043#endif
2044 {
2045#if XtSpecificationRelease >= 4
2046# ifdef FEAT_XFONTSET
2047 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2048 NULL, NULL, 0, NULL, NULL, NULL);
2049# else
2050 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002051 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052
2053 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002054 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 XSetWMProperties(x11_display, x11_window, &text_prop,
2056 NULL, NULL, 0, NULL, NULL, NULL);
2057# endif
2058#else
2059 XStoreName(x11_display, x11_window, (char *)title);
2060#endif
2061 }
2062 XFlush(x11_display);
2063}
2064
2065/*
2066 * Set x11 Window icon
2067 *
2068 * get_x11_windis() must be called before this and have returned OK
2069 */
2070 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002071set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072{
2073 /* See above for comments about using X*SetWMProperties(). */
2074#ifdef USE_UTF8_STRING
2075 if (enc_utf8)
2076 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2077 NULL, 0, NULL, NULL, NULL);
2078 else
2079#endif
2080 {
2081#if XtSpecificationRelease >= 4
2082# ifdef FEAT_XFONTSET
2083 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2084 NULL, 0, NULL, NULL, NULL);
2085# else
2086 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002087 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002089 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2091 NULL, 0, NULL, NULL, NULL);
2092# endif
2093#else
2094 XSetIconName(x11_display, x11_window, (char *)icon);
2095#endif
2096 }
2097 XFlush(x11_display);
2098}
2099
2100#else /* FEAT_X11 */
2101
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002103get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104{
2105 return FALSE;
2106}
2107
2108 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002109get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110{
2111 if (!test_only)
2112 {
2113 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002114 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002116 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 }
2118 return FALSE;
2119}
2120
2121#endif /* FEAT_X11 */
2122
2123 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002124mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125{
2126 return get_x11_title(TRUE);
2127}
2128
2129 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002130mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131{
2132 return get_x11_icon(TRUE);
2133}
2134
2135/*
2136 * Set the window title and icon.
2137 */
2138 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002139mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140{
2141 int type = 0;
2142 static int recursive = 0;
2143
2144 if (T_NAME == NULL) /* no terminal name (yet) */
2145 return;
2146 if (title == NULL && icon == NULL) /* nothing to do */
2147 return;
2148
2149 /* When one of the X11 functions causes a deadly signal, we get here again
2150 * recursively. Avoid hanging then (something is probably locked). */
2151 if (recursive)
2152 return;
2153 ++recursive;
2154
2155 /*
2156 * if the window ID and the display is known, we may use X11 calls
2157 */
2158#ifdef FEAT_X11
2159 if (get_x11_windis() == OK)
2160 type = 1;
2161#else
2162# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2163 if (gui.in_use)
2164 type = 1;
2165# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166#endif
2167
2168 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002169 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 * than x11 calls, because the x11 calls don't always work
2171 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 if ((type || *T_TS != NUL) && title != NULL)
2173 {
2174 if (oldtitle == NULL
2175#ifdef FEAT_GUI
2176 && !gui.in_use
2177#endif
2178 ) /* first call but not in GUI, save title */
2179 (void)get_x11_title(FALSE);
2180
2181 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2182 term_settitle(title);
2183#ifdef FEAT_X11
2184 else
2185# ifdef FEAT_GUI_GTK
2186 if (!gui.in_use) /* don't do this if GTK+ is running */
2187# endif
2188 set_x11_title(title); /* x11 */
2189#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002190#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2192 else
2193 gui_mch_settitle(title, icon);
2194#endif
2195 did_set_title = TRUE;
2196 }
2197
2198 if ((type || *T_CIS != NUL) && icon != NULL)
2199 {
2200 if (oldicon == NULL
2201#ifdef FEAT_GUI
2202 && !gui.in_use
2203#endif
2204 ) /* first call, save icon */
2205 get_x11_icon(FALSE);
2206
2207 if (*T_CIS != NUL)
2208 {
2209 out_str(T_CIS); /* set icon start */
2210 out_str_nf(icon);
2211 out_str(T_CIE); /* set icon end */
2212 out_flush();
2213 }
2214#ifdef FEAT_X11
2215 else
2216# ifdef FEAT_GUI_GTK
2217 if (!gui.in_use) /* don't do this if GTK+ is running */
2218# endif
2219 set_x11_icon(icon); /* x11 */
2220#endif
2221 did_set_icon = TRUE;
2222 }
2223 --recursive;
2224}
2225
2226/*
2227 * Restore the window/icon title.
2228 * "which" is one of:
2229 * 1 only restore title
2230 * 2 only restore icon
2231 * 3 restore title and icon
2232 */
2233 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002234mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235{
2236 /* only restore the title or icon when it has been set */
2237 mch_settitle(((which & 1) && did_set_title) ?
2238 (oldtitle ? oldtitle : p_titleold) : NULL,
2239 ((which & 2) && did_set_icon) ? oldicon : NULL);
2240}
2241
2242#endif /* FEAT_TITLE */
2243
2244/*
2245 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002246 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 */
2248 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002249vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250{
2251 if (name == NULL)
2252 return FALSE;
2253 return (STRNICMP(name, "xterm", 5) == 0
2254 || STRNICMP(name, "nxterm", 6) == 0
2255 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002256 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257 || STRNICMP(name, "rxvt", 4) == 0
2258 || STRCMP(name, "builtin_xterm") == 0);
2259}
2260
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002261#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2262/*
2263 * Return TRUE if "name" appears to be that of a terminal
2264 * known to support the xterm-style mouse protocol.
2265 * Relies on term_is_xterm having been set to its correct value.
2266 */
2267 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002268use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002269{
2270 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002271 && (term_is_xterm
2272 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002273 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002274 || STRICMP(name, "st") == 0
2275 || STRNICMP(name, "st-", 3) == 0
2276 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002277}
2278#endif
2279
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2281/*
2282 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2283 * Return 1 for "xterm".
2284 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002285 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002286 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 */
2288 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002289use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002291 if (ttym_flags == TTYM_SGR)
2292 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002293 if (ttym_flags == TTYM_URXVT)
2294 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 if (ttym_flags == TTYM_XTERM2)
2296 return 2;
2297 if (ttym_flags == TTYM_XTERM)
2298 return 1;
2299 return 0;
2300}
2301#endif
2302
2303 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002304vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305{
2306 if (name == NULL)
2307 return FALSE;
2308 return (STRNICMP(name, "iris-ansi", 9) == 0
2309 || STRCMP(name, "builtin_iris-ansi") == 0);
2310}
2311
2312 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002313vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314{
2315 if (name == NULL)
2316 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002317 /* catch VT100 - VT5xx */
2318 return ((STRNICMP(name, "vt", 2) == 0
2319 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 || STRCMP(name, "builtin_vt320") == 0);
2321}
2322
2323/*
2324 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2325 * This should include all windowed terminal emulators.
2326 */
2327 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002328vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330 if (name == NULL)
2331 return FALSE;
2332 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2333 return TRUE;
2334 return ( STRNICMP(name, "hpterm", 6) == 0
2335 || STRNICMP(name, "sun-cmd", 7) == 0
2336 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002337 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 || STRNICMP(name, "dtterm", 6) == 0);
2339}
2340
2341/*
2342 * Insert user name in s[len].
2343 * Return OK if a name found.
2344 */
2345 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002346mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347{
2348#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002349 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 return OK;
2351#else
2352 return mch_get_uname(getuid(), s, len);
2353#endif
2354}
2355
2356/*
2357 * Insert user name for "uid" in s[len].
2358 * Return OK if a name found.
2359 */
2360 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002361mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362{
2363#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2364 struct passwd *pw;
2365
2366 if ((pw = getpwuid(uid)) != NULL
2367 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2368 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002369 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370 return OK;
2371 }
2372#endif
2373 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2374 return FAIL; /* a number is not a name */
2375}
2376
2377/*
2378 * Insert host name is s[len].
2379 */
2380
2381#ifdef HAVE_SYS_UTSNAME_H
2382 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002383mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384{
2385 struct utsname vutsname;
2386
2387 if (uname(&vutsname) < 0)
2388 *s = NUL;
2389 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002390 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391}
2392#else /* HAVE_SYS_UTSNAME_H */
2393
2394# ifdef HAVE_SYS_SYSTEMINFO_H
2395# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2396# endif
2397
2398 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002399mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400{
2401# ifdef VAXC
2402 vaxc$gethostname((char *)s, len);
2403# else
2404 gethostname((char *)s, len);
2405# endif
2406 s[len - 1] = NUL; /* make sure it's terminated */
2407}
2408#endif /* HAVE_SYS_UTSNAME_H */
2409
2410/*
2411 * return process ID
2412 */
2413 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002414mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415{
2416 return (long)getpid();
2417}
2418
2419#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002420static char *strerror(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421
2422 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002423strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424{
2425 extern int sys_nerr;
2426 extern char *sys_errlist[];
2427 static char er[20];
2428
2429 if (err > 0 && err < sys_nerr)
2430 return (sys_errlist[err]);
2431 sprintf(er, "Error %d", err);
2432 return er;
2433}
2434#endif
2435
2436/*
2437 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2438 * Return OK for success, FAIL for failure.
2439 */
2440 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002441mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442{
2443#if defined(USE_GETCWD)
2444 if (getcwd((char *)buf, len) == NULL)
2445 {
2446 STRCPY(buf, strerror(errno));
2447 return FAIL;
2448 }
2449 return OK;
2450#else
2451 return (getwd((char *)buf) != NULL ? OK : FAIL);
2452#endif
2453}
2454
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002456 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 *
2458 * return FAIL for failure, OK for success
2459 */
2460 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002461mch_FullName(
2462 char_u *fname,
2463 char_u *buf,
2464 int len,
2465 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466{
2467 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002468#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 int fd = -1;
2470 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 char_u olddir[MAXPATHL];
2473 char_u *p;
2474 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002475#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002476 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2477 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002478#endif
2479
Bram Moolenaar38323e42007-03-06 19:22:53 +00002480#ifdef VMS
2481 fname = vms_fixfilename(fname);
2482#endif
2483
Bram Moolenaara2442432007-04-26 14:26:37 +00002484#ifdef __CYGWIN__
2485 /*
2486 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2487 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002488# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002489 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2490 * a forward slash. */
2491 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2492 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002493# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002494 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002495# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002496 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002497#endif
2498
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002499 /* Expand it if forced or not an absolute path.
2500 * Do not do it for "/file", the result is always "/". */
2501 if ((force || !mch_isFullName(fname))
2502 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 {
2504 /*
2505 * If the file name has a path, change to that directory for a moment,
2506 * and then do the getwd() (and get back to where we were).
2507 * This will get the correct path name with "../" things.
2508 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002509 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002511#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 /*
2513 * Use fchdir() if possible, it's said to be faster and more
2514 * reliable. But on SunOS 4 it might not work. Check this by
2515 * doing a fchdir() right now.
2516 */
2517 if (!dont_fchdir)
2518 {
2519 fd = open(".", O_RDONLY | O_EXTRA, 0);
2520 if (fd >= 0 && fchdir(fd) < 0)
2521 {
2522 close(fd);
2523 fd = -1;
2524 dont_fchdir = TRUE; /* don't try again */
2525 }
2526 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002527#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528
2529 /* Only change directory when we are sure we can return to where
2530 * we are now. After doing "su" chdir(".") might not work. */
2531 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002532#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002534#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 (mch_dirname(olddir, MAXPATHL) == FAIL
2536 || mch_chdir((char *)olddir) != 0))
2537 {
2538 p = NULL; /* can't get current dir: don't chdir */
2539 retval = FAIL;
2540 }
2541 else
2542 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 /* The directory is copied into buf[], to be able to remove
2544 * the file name without changing it (could be a string in
2545 * read-only memory) */
2546 if (p - fname >= len)
2547 retval = FAIL;
2548 else
2549 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002550 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002551 if (mch_chdir((char *)buf))
2552 retval = FAIL;
2553 else
2554 fname = p + 1;
2555 *buf = NUL;
2556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 }
2558 }
2559 if (mch_dirname(buf, len) == FAIL)
2560 {
2561 retval = FAIL;
2562 *buf = NUL;
2563 }
2564 if (p != NULL)
2565 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002566#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 if (fd >= 0)
2568 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002569 if (p_verbose >= 5)
2570 {
2571 verbose_enter();
2572 MSG("fchdir() to previous dir");
2573 verbose_leave();
2574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 l = fchdir(fd);
2576 close(fd);
2577 }
2578 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002579#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 l = mch_chdir((char *)olddir);
2581 if (l != 0)
2582 EMSG(_(e_prev_dir));
2583 }
2584
2585 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002586 if (l >= len - 1)
2587 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002588#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002589 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002591 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002592#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002594
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002596 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 return FAIL;
2598
2599 /* Do not append ".", "/dir/." is equal to "/dir". */
2600 if (STRCMP(fname, ".") != 0)
2601 STRCAT(buf, fname);
2602
2603 return OK;
2604}
2605
2606/*
2607 * Return TRUE if "fname" does not depend on the current directory.
2608 */
2609 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002610mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002612#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 return ( fname[0] == '/' || fname[0] == '.' ||
2614 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2615 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2616 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002617#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619#endif
2620}
2621
Bram Moolenaar24552be2005-12-10 20:17:30 +00002622#if defined(USE_FNAME_CASE) || defined(PROTO)
2623/*
2624 * Set the case of the file name, if it already exists. This will cause the
2625 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002626 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002627 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002628 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002629fname_case(
2630 char_u *name,
2631 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002632{
2633 struct stat st;
2634 char_u *slash, *tail;
2635 DIR *dirp;
2636 struct dirent *dp;
2637
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002638 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002639 {
2640 /* Open the directory where the file is located. */
2641 slash = vim_strrchr(name, '/');
2642 if (slash == NULL)
2643 {
2644 dirp = opendir(".");
2645 tail = name;
2646 }
2647 else
2648 {
2649 *slash = NUL;
2650 dirp = opendir((char *)name);
2651 *slash = '/';
2652 tail = slash + 1;
2653 }
2654
2655 if (dirp != NULL)
2656 {
2657 while ((dp = readdir(dirp)) != NULL)
2658 {
2659 /* Only accept names that differ in case and are the same byte
2660 * length. TODO: accept different length name. */
2661 if (STRICMP(tail, dp->d_name) == 0
2662 && STRLEN(tail) == STRLEN(dp->d_name))
2663 {
2664 char_u newname[MAXPATHL + 1];
2665 struct stat st2;
2666
2667 /* Verify the inode is equal. */
2668 vim_strncpy(newname, name, MAXPATHL);
2669 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2670 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002671 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002672 && st.st_ino == st2.st_ino
2673 && st.st_dev == st2.st_dev)
2674 {
2675 STRCPY(tail, dp->d_name);
2676 break;
2677 }
2678 }
2679 }
2680
2681 closedir(dirp);
2682 }
2683 }
2684}
2685#endif
2686
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687/*
2688 * Get file permissions for 'name'.
2689 * Returns -1 when it doesn't exist.
2690 */
2691 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002692mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693{
2694 struct stat statb;
2695
2696 /* Keep the #ifdef outside of stat(), it may be a macro. */
2697#ifdef VMS
2698 if (stat((char *)vms_fixfilename(name), &statb))
2699#else
2700 if (stat((char *)name, &statb))
2701#endif
2702 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002703#ifdef __INTERIX
2704 /* The top bit makes the value negative, which means the file doesn't
2705 * exist. Remove the bit, we don't use it. */
2706 return statb.st_mode & ~S_ADDACE;
2707#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002709#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710}
2711
2712/*
2713 * set file permission for 'name' to 'perm'
2714 *
2715 * return FAIL for failure, OK otherwise
2716 */
2717 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002718mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719{
2720 return (chmod((char *)
2721#ifdef VMS
2722 vms_fixfilename(name),
2723#else
2724 name,
2725#endif
2726 (mode_t)perm) == 0 ? OK : FAIL);
2727}
2728
2729#if defined(HAVE_ACL) || defined(PROTO)
2730# ifdef HAVE_SYS_ACL_H
2731# include <sys/acl.h>
2732# endif
2733# ifdef HAVE_SYS_ACCESS_H
2734# include <sys/access.h>
2735# endif
2736
2737# ifdef HAVE_SOLARIS_ACL
2738typedef struct vim_acl_solaris_T {
2739 int acl_cnt;
2740 aclent_t *acl_entry;
2741} vim_acl_solaris_T;
2742# endif
2743
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002744#if defined(HAVE_SELINUX) || defined(PROTO)
2745/*
2746 * Copy security info from "from_file" to "to_file".
2747 */
2748 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002749mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002750{
2751 if (from_file == NULL)
2752 return;
2753
2754 if (selinux_enabled == -1)
2755 selinux_enabled = is_selinux_enabled();
2756
2757 if (selinux_enabled > 0)
2758 {
2759 security_context_t from_context = NULL;
2760 security_context_t to_context = NULL;
2761
2762 if (getfilecon((char *)from_file, &from_context) < 0)
2763 {
2764 /* If the filesystem doesn't support extended attributes,
2765 the original had no special security context and the
2766 target cannot have one either. */
2767 if (errno == EOPNOTSUPP)
2768 return;
2769
2770 MSG_PUTS(_("\nCould not get security context for "));
2771 msg_outtrans(from_file);
2772 msg_putchar('\n');
2773 return;
2774 }
2775 if (getfilecon((char *)to_file, &to_context) < 0)
2776 {
2777 MSG_PUTS(_("\nCould not get security context for "));
2778 msg_outtrans(to_file);
2779 msg_putchar('\n');
2780 freecon (from_context);
2781 return ;
2782 }
2783 if (strcmp(from_context, to_context) != 0)
2784 {
2785 if (setfilecon((char *)to_file, from_context) < 0)
2786 {
2787 MSG_PUTS(_("\nCould not set security context for "));
2788 msg_outtrans(to_file);
2789 msg_putchar('\n');
2790 }
2791 }
2792 freecon(to_context);
2793 freecon(from_context);
2794 }
2795}
2796#endif /* HAVE_SELINUX */
2797
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002798#if defined(HAVE_SMACK) && !defined(PROTO)
2799/*
2800 * Copy security info from "from_file" to "to_file".
2801 */
2802 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002803mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002804{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002805 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002806 {
2807 XATTR_NAME_SMACK,
2808 XATTR_NAME_SMACKEXEC,
2809 XATTR_NAME_SMACKMMAP
2810 };
2811
2812 char buffer[SMACK_LABEL_LEN];
2813 const char *name;
2814 int index;
2815 int ret;
2816 ssize_t size;
2817
2818 if (from_file == NULL)
2819 return;
2820
2821 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2822 / sizeof(smack_copied_attributes)[0]) ; index++)
2823 {
2824 /* get the name of the attribute to copy */
2825 name = smack_copied_attributes[index];
2826
2827 /* get the value of the attribute in buffer */
2828 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2829 if (size >= 0)
2830 {
2831 /* copy the attribute value of buffer */
2832 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2833 if (ret < 0)
2834 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002835 vim_snprintf((char *)IObuff, IOSIZE,
2836 _("Could not set security context %s for %s"),
2837 name, to_file);
2838 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002839 msg_putchar('\n');
2840 }
2841 }
2842 else
2843 {
2844 /* what reason of not having the attribute value? */
2845 switch (errno)
2846 {
2847 case ENOTSUP:
2848 /* extended attributes aren't supported or enabled */
2849 /* should a message be echoed? not sure... */
2850 return; /* leave because it isn't usefull to continue */
2851
2852 case ERANGE:
2853 default:
2854 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002855 vim_snprintf((char *)IObuff, IOSIZE,
2856 _("Could not get security context %s for %s. Removing it!"),
2857 name, from_file);
2858 msg_puts(IObuff);
2859 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002860 /* FALLTHROUGH to remove the attribute */
2861
2862 case ENODATA:
2863 /* no attribute of this name */
2864 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002865 /* Silently ignore errors, apparently this happens when
2866 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002867 break;
2868 }
2869 }
2870 }
2871}
2872#endif /* HAVE_SMACK */
2873
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874/*
2875 * Return a pointer to the ACL of file "fname" in allocated memory.
2876 * Return NULL if the ACL is not available for whatever reason.
2877 */
2878 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002879mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002880{
2881 vim_acl_T ret = NULL;
2882#ifdef HAVE_POSIX_ACL
2883 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2884#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002885#ifdef HAVE_SOLARIS_ZFS_ACL
2886 acl_t *aclent;
2887
2888 if (acl_get((char *)fname, 0, &aclent) < 0)
2889 return NULL;
2890 ret = (vim_acl_T)aclent;
2891#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002892#ifdef HAVE_SOLARIS_ACL
2893 vim_acl_solaris_T *aclent;
2894
2895 aclent = malloc(sizeof(vim_acl_solaris_T));
2896 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2897 {
2898 free(aclent);
2899 return NULL;
2900 }
2901 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2902 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2903 {
2904 free(aclent->acl_entry);
2905 free(aclent);
2906 return NULL;
2907 }
2908 ret = (vim_acl_T)aclent;
2909#else
2910#if defined(HAVE_AIX_ACL)
2911 int aclsize;
2912 struct acl *aclent;
2913
2914 aclsize = sizeof(struct acl);
2915 aclent = malloc(aclsize);
2916 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2917 {
2918 if (errno == ENOSPC)
2919 {
2920 aclsize = aclent->acl_len;
2921 aclent = realloc(aclent, aclsize);
2922 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2923 {
2924 free(aclent);
2925 return NULL;
2926 }
2927 }
2928 else
2929 {
2930 free(aclent);
2931 return NULL;
2932 }
2933 }
2934 ret = (vim_acl_T)aclent;
2935#endif /* HAVE_AIX_ACL */
2936#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002937#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002938#endif /* HAVE_POSIX_ACL */
2939 return ret;
2940}
2941
2942/*
2943 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2944 */
2945 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002946mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947{
2948 if (aclent == NULL)
2949 return;
2950#ifdef HAVE_POSIX_ACL
2951 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2952#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002953#ifdef HAVE_SOLARIS_ZFS_ACL
2954 acl_set((char *)fname, (acl_t *)aclent);
2955#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956#ifdef HAVE_SOLARIS_ACL
2957 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2958 ((vim_acl_solaris_T *)aclent)->acl_entry);
2959#else
2960#ifdef HAVE_AIX_ACL
2961 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2962#endif /* HAVE_AIX_ACL */
2963#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002964#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965#endif /* HAVE_POSIX_ACL */
2966}
2967
2968 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002969mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970{
2971 if (aclent == NULL)
2972 return;
2973#ifdef HAVE_POSIX_ACL
2974 acl_free((acl_t)aclent);
2975#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002976#ifdef HAVE_SOLARIS_ZFS_ACL
2977 acl_free((acl_t *)aclent);
2978#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979#ifdef HAVE_SOLARIS_ACL
2980 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2981 free(aclent);
2982#else
2983#ifdef HAVE_AIX_ACL
2984 free(aclent);
2985#endif /* HAVE_AIX_ACL */
2986#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002987#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#endif /* HAVE_POSIX_ACL */
2989}
2990#endif
2991
2992/*
2993 * Set hidden flag for "name".
2994 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002996mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
2998 /* can't hide a file */
2999}
3000
3001/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003002 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 * return FALSE if "name" is not a directory
3004 * return FALSE for error
3005 */
3006 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003007mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008{
3009 struct stat statb;
3010
3011 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3012 return FALSE;
3013 if (stat((char *)name, &statb))
3014 return FALSE;
3015#ifdef _POSIX_SOURCE
3016 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3017#else
3018 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3019#endif
3020}
3021
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003022/*
3023 * return TRUE if "name" is a directory, NOT a symlink to a directory
3024 * return FALSE if "name" is not a directory
3025 * return FALSE for error
3026 */
3027 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003028mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003029{
3030 struct stat statb;
3031
3032 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3033 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003034 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003035 return FALSE;
3036#ifdef _POSIX_SOURCE
3037 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3038#else
3039 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3040#endif
3041}
3042
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003043static int executable_file(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044
3045/*
3046 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3047 */
3048 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003049executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050{
3051 struct stat st;
3052
3053 if (stat((char *)name, &st))
3054 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003055#ifdef VMS
3056 /* Like on Unix system file can have executable rights but not necessarily
3057 * be an executable, but on Unix is not a default for an ordianry file to
3058 * have an executable flag - on VMS it is in most cases.
3059 * Therefore, this check does not have any sense - let keep us to the
3060 * conventions instead:
3061 * *.COM and *.EXE files are the executables - the rest are not. This is
3062 * not ideal but better then it was.
3063 */
3064 int vms_executable = 0;
3065 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3066 {
3067 if (strstr(vms_tolower((char*)name),".exe") != NULL
3068 || strstr(vms_tolower((char*)name),".com")!= NULL)
3069 vms_executable = 1;
3070 }
3071 return vms_executable;
3072#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003074#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075}
3076
3077/*
3078 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003079 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080 * Return -1 if unknown.
3081 */
3082 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003083mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084{
3085 char_u *buf;
3086 char_u *p, *e;
3087 int retval;
3088
Bram Moolenaarb5971142015-03-21 17:32:19 +01003089 /* When "use_path" is false and if it's an absolute or relative path don't
3090 * need to use $PATH. */
3091 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3092 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003093 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003094 /* There must be a path separator, files in the current directory
3095 * can't be executed. */
3096 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003097 {
3098 if (path != NULL)
3099 {
3100 if (name[0] == '.')
3101 *path = FullName_save(name, TRUE);
3102 else
3103 *path = vim_strsave(name);
3104 }
3105 return TRUE;
3106 }
3107 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109
3110 p = (char_u *)getenv("PATH");
3111 if (p == NULL || *p == NUL)
3112 return -1;
3113 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3114 if (buf == NULL)
3115 return -1;
3116
3117 /*
3118 * Walk through all entries in $PATH to check if "name" exists there and
3119 * is an executable file.
3120 */
3121 for (;;)
3122 {
3123 e = (char_u *)strchr((char *)p, ':');
3124 if (e == NULL)
3125 e = p + STRLEN(p);
3126 if (e - p <= 1) /* empty entry means current dir */
3127 STRCPY(buf, "./");
3128 else
3129 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003130 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 add_pathsep(buf);
3132 }
3133 STRCAT(buf, name);
3134 retval = executable_file(buf);
3135 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003136 {
3137 if (path != NULL)
3138 {
3139 if (buf[0] == '.')
3140 *path = FullName_save(buf, TRUE);
3141 else
3142 *path = vim_strsave(buf);
3143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146
3147 if (*e != ':')
3148 break;
3149 p = e + 1;
3150 }
3151
3152 vim_free(buf);
3153 return retval;
3154}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155
3156/*
3157 * Check what "name" is:
3158 * NODE_NORMAL: file or directory (or doesn't exist)
3159 * NODE_WRITABLE: writable device, socket, fifo, etc.
3160 * NODE_OTHER: non-writable things
3161 */
3162 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003163mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164{
3165 struct stat st;
3166
3167 if (stat((char *)name, &st))
3168 return NODE_NORMAL;
3169 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3170 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3172 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 /* Everything else is writable? */
3174 return NODE_WRITABLE;
3175}
3176
3177 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003178mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003179{
3180#ifdef HAVE_CHECK_STACK_GROWTH
3181 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 check_stack_growth((char *)&i);
3184
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003185# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 get_stack_limit();
3187# endif
3188
3189#endif
3190
3191 /*
3192 * Setup an alternative stack for signals. Helps to catch signals when
3193 * running out of stack space.
3194 * Use of sigaltstack() is preferred, it's more portable.
3195 * Ignore any errors.
3196 */
3197#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003198 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 init_signal_stack();
3200#endif
3201}
3202
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003203#if defined(EXITFREE) || defined(PROTO)
3204 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003205mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003206{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003207# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3208 if (clip_star.owned)
3209 clip_lose_selection(&clip_star);
3210 if (clip_plus.owned)
3211 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003212# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003213# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003214 if (xterm_Shell != (Widget)0)
3215 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003216# ifndef LESSTIF_VERSION
3217 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003218 if (xterm_dpy != NULL)
3219 XtCloseDisplay(xterm_dpy);
3220 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003221 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003222 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003223# ifdef FEAT_X11
3224 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3225# endif
3226 }
3227# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003228# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003229# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003230 if (x11_display != NULL
3231# ifdef FEAT_XCLIPBOARD
3232 && x11_display != xterm_dpy
3233# endif
3234 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003235 XCloseDisplay(x11_display);
3236# endif
3237# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
3238 vim_free(signal_stack);
3239 signal_stack = NULL;
3240# endif
3241# ifdef FEAT_TITLE
3242 vim_free(oldtitle);
3243 vim_free(oldicon);
3244# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003245}
3246#endif
3247
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003248static void exit_scroll(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249
3250/*
3251 * Output a newline when exiting.
3252 * Make sure the newline goes to the same stream as the text.
3253 */
3254 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003255exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003257 if (silent_mode)
3258 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 if (newline_on_exit || msg_didout)
3260 {
3261 if (msg_use_printf())
3262 {
3263 if (info_message)
3264 mch_msg("\n");
3265 else
3266 mch_errmsg("\r\n");
3267 }
3268 else
3269 out_char('\n');
3270 }
3271 else
3272 {
3273 restore_cterm_colors(); /* get original colors back */
3274 msg_clr_eos_force(); /* clear the rest of the display */
3275 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3276 }
3277}
3278
3279 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003280mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003281{
3282 exiting = TRUE;
3283
3284#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3285 x11_export_final_selection();
3286#endif
3287
3288#ifdef FEAT_GUI
3289 if (!gui.in_use)
3290#endif
3291 {
3292 settmode(TMODE_COOK);
3293#ifdef FEAT_TITLE
3294 mch_restore_title(3); /* restore xterm title and icon name */
3295#endif
3296 /*
3297 * When t_ti is not empty but it doesn't cause swapping terminal
3298 * pages, need to output a newline when msg_didout is set. But when
3299 * t_ti does swap pages it should not go to the shell page. Do this
3300 * before stoptermcap().
3301 */
3302 if (swapping_screen() && !newline_on_exit)
3303 exit_scroll();
3304
3305 /* Stop termcap: May need to check for T_CRV response, which
3306 * requires RAW mode. */
3307 stoptermcap();
3308
3309 /*
3310 * A newline is only required after a message in the alternate screen.
3311 * This is set to TRUE by wait_return().
3312 */
3313 if (!swapping_screen() || newline_on_exit)
3314 exit_scroll();
3315
3316 /* Cursor may have been switched off without calling starttermcap()
3317 * when doing "vim -u vimrc" and vimrc contains ":q". */
3318 if (full_screen)
3319 cursor_on();
3320 }
3321 out_flush();
3322 ml_close_all(TRUE); /* remove all memfiles */
3323 may_core_dump();
3324#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 gui_exit(r);
3327#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003328
Bram Moolenaar56718732006-03-15 22:53:57 +00003329#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003330 mac_conv_cleanup();
3331#endif
3332
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333#ifdef __QNX__
3334 /* A core dump won't be created if the signal handler
3335 * doesn't return, so we can't call exit() */
3336 if (deadly_signal != 0)
3337 return;
3338#endif
3339
Bram Moolenaar009b2592004-10-24 19:18:58 +00003340#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003341 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003342#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003343
3344#ifdef EXITFREE
3345 free_all_mem();
3346#endif
3347
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 exit(r);
3349}
3350
3351 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003352may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353{
3354 if (deadly_signal != 0)
3355 {
3356 signal(deadly_signal, SIG_DFL);
3357 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3358 }
3359}
3360
3361#ifndef VMS
3362
3363 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003364mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365{
3366 static int first = TRUE;
3367
3368 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3369#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3370 /*
3371 * for "new" tty systems
3372 */
3373# ifdef HAVE_TERMIOS_H
3374 static struct termios told;
3375 struct termios tnew;
3376# else
3377 static struct termio told;
3378 struct termio tnew;
3379# endif
3380
3381 if (first)
3382 {
3383 first = FALSE;
3384# if defined(HAVE_TERMIOS_H)
3385 tcgetattr(read_cmd_fd, &told);
3386# else
3387 ioctl(read_cmd_fd, TCGETA, &told);
3388# endif
3389 }
3390
3391 tnew = told;
3392 if (tmode == TMODE_RAW)
3393 {
3394 /*
3395 * ~ICRNL enables typing ^V^M
3396 */
3397 tnew.c_iflag &= ~ICRNL;
3398 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3399# if defined(IEXTEN) && !defined(__MINT__)
3400 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3401 /* but it breaks function keys on MINT */
3402# endif
3403 );
3404# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3405 tnew.c_oflag &= ~ONLCR;
3406# endif
3407 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3408 tnew.c_cc[VTIME] = 0; /* don't wait */
3409 }
3410 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003411 {
3412 /* Also reset ICANON here, otherwise on Solaris select() won't see
3413 * typeahead characters. */
3414 tnew.c_lflag &= ~(ICANON | ECHO);
3415 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3416 tnew.c_cc[VTIME] = 0; /* don't wait */
3417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418
3419# if defined(HAVE_TERMIOS_H)
3420 {
3421 int n = 10;
3422
3423 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3424 * few times. */
3425 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3426 && errno == EINTR && n > 0)
3427 --n;
3428 }
3429# else
3430 ioctl(read_cmd_fd, TCSETA, &tnew);
3431# endif
3432
3433#else
3434
3435 /*
3436 * for "old" tty systems
3437 */
3438# ifndef TIOCSETN
3439# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3440# endif
3441 static struct sgttyb ttybold;
3442 struct sgttyb ttybnew;
3443
3444 if (first)
3445 {
3446 first = FALSE;
3447 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3448 }
3449
3450 ttybnew = ttybold;
3451 if (tmode == TMODE_RAW)
3452 {
3453 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3454 ttybnew.sg_flags |= RAW;
3455 }
3456 else if (tmode == TMODE_SLEEP)
3457 ttybnew.sg_flags &= ~(ECHO);
3458 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3459#endif
3460 curr_tmode = tmode;
3461}
3462
3463/*
3464 * Try to get the code for "t_kb" from the stty setting
3465 *
3466 * Even if termcap claims a backspace key, the user's setting *should*
3467 * prevail. stty knows more about reality than termcap does, and if
3468 * somebody's usual erase key is DEL (which, for most BSD users, it will
3469 * be), they're going to get really annoyed if their erase key starts
3470 * doing forward deletes for no reason. (Eric Fischer)
3471 */
3472 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003473get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474{
3475 char_u buf[2];
3476 char_u *p;
3477
3478 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3479#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3480 /* for "new" tty systems */
3481# ifdef HAVE_TERMIOS_H
3482 struct termios keys;
3483# else
3484 struct termio keys;
3485# endif
3486
3487# if defined(HAVE_TERMIOS_H)
3488 if (tcgetattr(read_cmd_fd, &keys) != -1)
3489# else
3490 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3491# endif
3492 {
3493 buf[0] = keys.c_cc[VERASE];
3494 intr_char = keys.c_cc[VINTR];
3495#else
3496 /* for "old" tty systems */
3497 struct sgttyb keys;
3498
3499 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3500 {
3501 buf[0] = keys.sg_erase;
3502 intr_char = keys.sg_kill;
3503#endif
3504 buf[1] = NUL;
3505 add_termcode((char_u *)"kb", buf, FALSE);
3506
3507 /*
3508 * If <BS> and <DEL> are now the same, redefine <DEL>.
3509 */
3510 p = find_termcode((char_u *)"kD");
3511 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3512 do_fixdel(NULL);
3513 }
3514#if 0
3515 } /* to keep cindent happy */
3516#endif
3517}
3518
3519#endif /* VMS */
3520
3521#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3522/*
3523 * Set mouse clicks on or off.
3524 */
3525 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003526mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527{
3528 static int ison = FALSE;
3529 int xterm_mouse_vers;
3530
3531 if (on == ison) /* return quickly if nothing to do */
3532 return;
3533
3534 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003535
3536# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003537 if (ttym_flags == TTYM_URXVT)
3538 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003539 out_str_nf((char_u *)
3540 (on
3541 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3542 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
3543 ison = on;
3544 }
3545# endif
3546
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003547# ifdef FEAT_MOUSE_SGR
3548 if (ttym_flags == TTYM_SGR)
3549 {
3550 out_str_nf((char_u *)
3551 (on
3552 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3553 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
3554 ison = on;
3555 }
3556# endif
3557
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 if (xterm_mouse_vers > 0)
3559 {
3560 if (on) /* enable mouse events, use mouse tracking if available */
3561 out_str_nf((char_u *)
3562 (xterm_mouse_vers > 1
3563 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3564 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3565 else /* disable mouse events, could probably always send the same */
3566 out_str_nf((char_u *)
3567 (xterm_mouse_vers > 1
3568 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3569 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3570 ison = on;
3571 }
3572
3573# ifdef FEAT_MOUSE_DEC
3574 else if (ttym_flags == TTYM_DEC)
3575 {
3576 if (on) /* enable mouse events */
3577 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3578 else /* disable mouse events */
3579 out_str_nf((char_u *)"\033['z");
3580 ison = on;
3581 }
3582# endif
3583
3584# ifdef FEAT_MOUSE_GPM
3585 else
3586 {
3587 if (on)
3588 {
3589 if (gpm_open())
3590 ison = TRUE;
3591 }
3592 else
3593 {
3594 gpm_close();
3595 ison = FALSE;
3596 }
3597 }
3598# endif
3599
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003600# ifdef FEAT_SYSMOUSE
3601 else
3602 {
3603 if (on)
3604 {
3605 if (sysmouse_open() == OK)
3606 ison = TRUE;
3607 }
3608 else
3609 {
3610 sysmouse_close();
3611 ison = FALSE;
3612 }
3613 }
3614# endif
3615
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616# ifdef FEAT_MOUSE_JSB
3617 else
3618 {
3619 if (on)
3620 {
3621 /* D - Enable Mouse up/down messages
3622 * L - Enable Left Button Reporting
3623 * M - Enable Middle Button Reporting
3624 * R - Enable Right Button Reporting
3625 * K - Enable SHIFT and CTRL key Reporting
3626 * + - Enable Advanced messaging of mouse moves and up/down messages
3627 * Q - Quiet No Ack
3628 * # - Numeric value of mouse pointer required
3629 * 0 = Multiview 2000 cursor, used as standard
3630 * 1 = Windows Arrow
3631 * 2 = Windows I Beam
3632 * 3 = Windows Hour Glass
3633 * 4 = Windows Cross Hair
3634 * 5 = Windows UP Arrow
3635 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003636# ifdef JSBTERM_MOUSE_NONADVANCED
3637 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3639 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003640# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3642 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003643# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 ison = TRUE;
3645 }
3646 else
3647 {
3648 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3649 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3650 ison = FALSE;
3651 }
3652 }
3653# endif
3654# ifdef FEAT_MOUSE_PTERM
3655 else
3656 {
3657 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3658 if (on)
3659 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3660 else
3661 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3662 ison = on;
3663 }
3664# endif
3665}
3666
3667/*
3668 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3669 */
3670 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003671check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672{
3673# ifdef FEAT_MOUSE_XTERM
3674 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003675# ifdef FEAT_MOUSE_URXVT
3676 && use_xterm_mouse() != 3
3677# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678# ifdef FEAT_GUI
3679 && !gui.in_use
3680# endif
3681 )
3682 {
3683 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003684 ? IF_EB("\233M", CSI_STR "M")
3685 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 if (*p_mouse != NUL)
3687 {
3688 /* force mouse off and maybe on to send possibly new mouse
3689 * activation sequence to the xterm, with(out) drag tracing. */
3690 mch_setmouse(FALSE);
3691 setmouse();
3692 }
3693 }
3694 else
3695 del_mouse_termcode(KS_MOUSE);
3696# endif
3697
3698# ifdef FEAT_MOUSE_GPM
3699 if (!use_xterm_mouse()
3700# ifdef FEAT_GUI
3701 && !gui.in_use
3702# endif
3703 )
3704 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3705# endif
3706
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003707# ifdef FEAT_SYSMOUSE
3708 if (!use_xterm_mouse()
3709# ifdef FEAT_GUI
3710 && !gui.in_use
3711# endif
3712 )
3713 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3714# endif
3715
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003717 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 if (!use_xterm_mouse()
3719# ifdef FEAT_GUI
3720 && !gui.in_use
3721# endif
3722 )
3723 set_mouse_termcode(KS_JSBTERM_MOUSE,
3724 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3725 else
3726 del_mouse_termcode(KS_JSBTERM_MOUSE);
3727# endif
3728
3729# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003730 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 * define it in the GUI or when using an xterm. */
3732 if (!use_xterm_mouse()
3733# ifdef FEAT_GUI
3734 && !gui.in_use
3735# endif
3736 )
3737 set_mouse_termcode(KS_NETTERM_MOUSE,
3738 (char_u *)IF_EB("\033}", ESC_STR "}"));
3739 else
3740 del_mouse_termcode(KS_NETTERM_MOUSE);
3741# endif
3742
3743# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003744 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003745 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746# ifdef FEAT_GUI
3747 && !gui.in_use
3748# endif
3749 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003750 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3751 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 else
3753 del_mouse_termcode(KS_DEC_MOUSE);
3754# endif
3755# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003756 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003757 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758# ifdef FEAT_GUI
3759 && !gui.in_use
3760# endif
3761 )
3762 set_mouse_termcode(KS_PTERM_MOUSE,
3763 (char_u *) IF_EB("\033[", ESC_STR "["));
3764 else
3765 del_mouse_termcode(KS_PTERM_MOUSE);
3766# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003767# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003768 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003769 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003770# ifdef FEAT_GUI
3771 && !gui.in_use
3772# endif
3773 )
3774 {
3775 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3776 ? IF_EB("\233", CSI_STR)
3777 : IF_EB("\033[", ESC_STR "[")));
3778
3779 if (*p_mouse != NUL)
3780 {
3781 mch_setmouse(FALSE);
3782 setmouse();
3783 }
3784 }
3785 else
3786 del_mouse_termcode(KS_URXVT_MOUSE);
3787# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003788# ifdef FEAT_MOUSE_SGR
Bram Moolenaar24dc2302014-05-13 20:19:58 +02003789 /* There is no conflict with xterm mouse */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003790 if (use_xterm_mouse() == 4
3791# ifdef FEAT_GUI
3792 && !gui.in_use
3793# endif
3794 )
3795 {
3796 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3797 ? IF_EB("\233<", CSI_STR "<")
3798 : IF_EB("\033[<", ESC_STR "[<")));
3799
3800 if (*p_mouse != NUL)
3801 {
3802 mch_setmouse(FALSE);
3803 setmouse();
3804 }
3805 }
3806 else
3807 del_mouse_termcode(KS_SGR_MOUSE);
3808# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809}
3810#endif
3811
3812/*
3813 * set screen mode, always fails.
3814 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003816mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817{
3818 EMSG(_(e_screenmode));
3819 return FAIL;
3820}
3821
3822#ifndef VMS
3823
3824/*
3825 * Try to get the current window size:
3826 * 1. with an ioctl(), most accurate method
3827 * 2. from the environment variables LINES and COLUMNS
3828 * 3. from the termcap
3829 * 4. keep using the old values
3830 * Return OK when size could be determined, FAIL otherwise.
3831 */
3832 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003833mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834{
3835 long rows = 0;
3836 long columns = 0;
3837 char_u *p;
3838
3839 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 * 1. try using an ioctl. It is the most accurate method.
3841 *
3842 * Try using TIOCGWINSZ first, some systems that have it also define
3843 * TIOCGSIZE but don't have a struct ttysize.
3844 */
3845# ifdef TIOCGWINSZ
3846 {
3847 struct winsize ws;
3848 int fd = 1;
3849
3850 /* When stdout is not a tty, use stdin for the ioctl(). */
3851 if (!isatty(fd) && isatty(read_cmd_fd))
3852 fd = read_cmd_fd;
3853 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3854 {
3855 columns = ws.ws_col;
3856 rows = ws.ws_row;
3857 }
3858 }
3859# else /* TIOCGWINSZ */
3860# ifdef TIOCGSIZE
3861 {
3862 struct ttysize ts;
3863 int fd = 1;
3864
3865 /* When stdout is not a tty, use stdin for the ioctl(). */
3866 if (!isatty(fd) && isatty(read_cmd_fd))
3867 fd = read_cmd_fd;
3868 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3869 {
3870 columns = ts.ts_cols;
3871 rows = ts.ts_lines;
3872 }
3873 }
3874# endif /* TIOCGSIZE */
3875# endif /* TIOCGWINSZ */
3876
3877 /*
3878 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003879 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3880 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003882 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883 {
3884 if ((p = (char_u *)getenv("LINES")))
3885 rows = atoi((char *)p);
3886 if ((p = (char_u *)getenv("COLUMNS")))
3887 columns = atoi((char *)p);
3888 }
3889
3890#ifdef HAVE_TGETENT
3891 /*
3892 * 3. try reading "co" and "li" entries from termcap
3893 */
3894 if (columns == 0 || rows == 0)
3895 getlinecol(&columns, &rows);
3896#endif
3897
3898 /*
3899 * 4. If everything fails, use the old values
3900 */
3901 if (columns <= 0 || rows <= 0)
3902 return FAIL;
3903
3904 Rows = rows;
3905 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003906 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 return OK;
3908}
3909
3910/*
3911 * Try to set the window size to Rows and Columns.
3912 */
3913 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003914mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915{
3916 if (*T_CWS)
3917 {
3918 /*
3919 * NOTE: if you get an error here that term_set_winsize() is
3920 * undefined, check the output of configure. It could probably not
3921 * find a ncurses, termcap or termlib library.
3922 */
3923 term_set_winsize((int)Rows, (int)Columns);
3924 out_flush();
3925 screen_start(); /* don't know where cursor is now */
3926 }
3927}
3928
3929#endif /* VMS */
3930
3931/*
3932 * Rows and/or Columns has changed.
3933 */
3934 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003935mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936{
3937 /* Nothing to do. */
3938}
3939
Bram Moolenaar205b8862011-09-07 15:04:31 +02003940/*
3941 * Wait for process "child" to end.
3942 * Return "child" if it exited properly, <= 0 on error.
3943 */
3944 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01003945wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02003946{
3947 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02003948 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02003949
3950 while (wait_pid != child)
3951 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003952 /* When compiled with Python threads are probably used, in which case
3953 * wait() sometimes hangs for no obvious reason. Use waitpid()
3954 * instead and loop (like the GUI). Also needed for other interfaces,
3955 * they might call system(). */
3956# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02003957 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003958# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02003959 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003960# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02003961 if (wait_pid == 0)
3962 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02003963 /* Wait for 1 to 10 msec before trying again. */
3964 mch_delay(delay_msec, TRUE);
3965 if (++delay_msec > 10)
3966 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02003967 continue;
3968 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02003969 if (wait_pid <= 0
3970# ifdef ECHILD
3971 && errno == ECHILD
3972# endif
3973 )
3974 break;
3975 }
3976 return wait_pid;
3977}
3978
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003979#if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO)
Bram Moolenaar72801402016-02-09 11:37:50 +01003980/*
3981 * Parse "cmd" and put the white-separated parts in "argv".
3982 * "argv" is an allocated array with "argc" entries.
3983 * Returns FAIL when out of memory.
3984 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01003985 int
3986mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
3987{
3988 int i;
3989 char_u *p;
3990 int inquote;
3991
3992 /*
3993 * Do this loop twice:
3994 * 1: find number of arguments
3995 * 2: separate them and build argv[]
3996 */
3997 for (i = 0; i < 2; ++i)
3998 {
Bram Moolenaar6231cb82016-04-26 19:42:42 +02003999 p = skipwhite(cmd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004000 inquote = FALSE;
4001 *argc = 0;
4002 for (;;)
4003 {
4004 if (i == 1)
4005 (*argv)[*argc] = (char *)p;
4006 ++*argc;
4007 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4008 {
4009 if (*p == '"')
4010 inquote = !inquote;
4011 ++p;
4012 }
4013 if (*p == NUL)
4014 break;
4015 if (i == 1)
4016 *p++ = NUL;
4017 p = skipwhite(p);
4018 }
4019 if (*argv == NULL)
4020 {
4021 if (use_shcf)
4022 {
4023 /* Account for possible multiple args in p_shcf. */
4024 p = p_shcf;
4025 for (;;)
4026 {
4027 p = skiptowhite(p);
4028 if (*p == NUL)
4029 break;
4030 ++*argc;
4031 p = skipwhite(p);
4032 }
4033 }
4034
4035 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4036 if (*argv == NULL) /* out of memory */
4037 return FAIL;
4038 }
4039 }
4040 return OK;
4041}
4042#endif
4043
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004044#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004045 static void
4046set_child_environment(void)
4047{
4048# ifdef HAVE_SETENV
4049 char envbuf[50];
4050# else
4051 static char envbuf_Rows[20];
4052 static char envbuf_Columns[20];
4053# endif
4054
4055 /* Simulate to have a dumb terminal (for now) */
4056# ifdef HAVE_SETENV
4057 setenv("TERM", "dumb", 1);
4058 sprintf((char *)envbuf, "%ld", Rows);
4059 setenv("ROWS", (char *)envbuf, 1);
4060 sprintf((char *)envbuf, "%ld", Rows);
4061 setenv("LINES", (char *)envbuf, 1);
4062 sprintf((char *)envbuf, "%ld", Columns);
4063 setenv("COLUMNS", (char *)envbuf, 1);
4064# else
4065 /*
4066 * Putenv does not copy the string, it has to remain valid.
4067 * Use a static array to avoid losing allocated memory.
4068 */
4069 putenv("TERM=dumb");
4070 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4071 putenv(envbuf_Rows);
4072 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4073 putenv(envbuf_Rows);
4074 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4075 putenv(envbuf_Columns);
4076# endif
4077}
4078#endif
4079
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004081mch_call_shell(
4082 char_u *cmd,
4083 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084{
4085#ifdef VMS
4086 char *ifn = NULL;
4087 char *ofn = NULL;
4088#endif
4089 int tmode = cur_tmode;
4090#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004091 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004092 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093
4094 out_flush();
4095
4096 if (options & SHELL_COOKED)
4097 settmode(TMODE_COOK); /* set to normal mode */
4098
Bram Moolenaar62b42182010-09-21 22:09:37 +02004099# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004100 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004101 loose_clipboard();
4102# endif
4103
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 if (cmd == NULL)
4105 x = system((char *)p_sh);
4106 else
4107 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004108# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004109 if (ofn = strchr((char *)cmd, '>'))
4110 *ofn++ = '\0';
4111 if (ifn = strchr((char *)cmd, '<'))
4112 {
4113 char *p;
4114
4115 *ifn++ = '\0';
4116 p = strchr(ifn,' '); /* chop off any trailing spaces */
4117 if (p)
4118 *p = '\0';
4119 }
4120 if (ofn)
4121 x = vms_sys((char *)cmd, ofn, ifn);
4122 else
4123 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004124# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125 newcmd = lalloc(STRLEN(p_sh)
4126 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4127 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4128 if (newcmd == NULL)
4129 x = 0;
4130 else
4131 {
4132 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4133 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4134 (char *)p_shcf,
4135 (char *)cmd);
4136 x = system((char *)newcmd);
4137 vim_free(newcmd);
4138 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004139# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 }
4141# ifdef VMS
4142 x = vms_sys_status(x);
4143# endif
4144 if (emsg_silent)
4145 ;
4146 else if (x == 127)
4147 MSG_PUTS(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 else if (x && !(options & SHELL_SILENT))
4149 {
4150 MSG_PUTS(_("\nshell returned "));
4151 msg_outnum((long)x);
4152 msg_putchar('\n');
4153 }
4154
4155 if (tmode == TMODE_RAW)
4156 settmode(TMODE_RAW); /* set to raw mode */
4157# ifdef FEAT_TITLE
4158 resettitle();
4159# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004160# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4161 restore_clipboard();
4162# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 return x;
4164
4165#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
4166
Bram Moolenaardf177f62005-02-22 08:39:57 +00004167# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4168 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169
Bram Moolenaar835dc632016-02-07 14:27:38 +01004170 char_u *newcmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004172 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 pid_t wait_pid = 0;
4174# ifdef HAVE_UNION_WAIT
4175 union wait status;
4176# else
4177 int status = -1;
4178# endif
4179 int retval = -1;
4180 char **argv = NULL;
4181 int argc;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004182 char_u *p_shcf_copy = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 int i;
4184 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004186# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 int pty_slave_fd = -1;
4188 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004189# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004190 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 int fd_fromshell[2];
4192 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004193 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194
Bram Moolenaar62b42182010-09-21 22:09:37 +02004195 newcmd = vim_strsave(p_sh);
4196 if (newcmd == NULL) /* out of memory */
4197 goto error;
4198
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 out_flush();
4200 if (options & SHELL_COOKED)
4201 settmode(TMODE_COOK); /* set to normal mode */
4202
Bram Moolenaar835dc632016-02-07 14:27:38 +01004203 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL)
4204 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004205
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 if (cmd != NULL)
4207 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004208 char_u *s;
4209
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210 if (extra_shell_arg != NULL)
4211 argv[argc++] = (char *)extra_shell_arg;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004212
4213 /* Break 'shellcmdflag' into white separated parts. This doesn't
4214 * handle quoted strings, they are very unlikely to appear. */
4215 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1);
4216 if (p_shcf_copy == NULL) /* out of memory */
4217 goto error;
4218 s = p_shcf_copy;
4219 p = p_shcf;
4220 while (*p != NUL)
4221 {
4222 argv[argc++] = (char *)s;
4223 while (*p && *p != ' ' && *p != TAB)
4224 *s++ = *p++;
4225 *s++ = NUL;
4226 p = skipwhite(p);
4227 }
4228
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 argv[argc++] = (char *)cmd;
4230 }
4231 argv[argc] = NULL;
4232
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004234 * For the GUI, when writing the output into the buffer and when reading
4235 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4236 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004238 if ((options & (SHELL_READ|SHELL_WRITE))
4239# ifdef FEAT_GUI
4240 || (gui.in_use && show_shell_mess)
4241# endif
4242 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004244# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 /*
4246 * Try to open a master pty.
4247 * If this works, open the slave pty.
4248 * If the slave can't be opened, close the master pty.
4249 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004250 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 {
4252 pty_master_fd = OpenPTY(&tty_name); /* open pty */
Bram Moolenaare70172e2011-08-04 19:36:52 +02004253 if (pty_master_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 {
Bram Moolenaare70172e2011-08-04 19:36:52 +02004255 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4256 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4257 * adding O_NOCTTY always works when defined. */
4258#ifdef O_NOCTTY
4259 pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4260#else
4261 pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4262#endif
4263 if (pty_slave_fd < 0)
4264 {
4265 close(pty_master_fd);
4266 pty_master_fd = -1;
4267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 }
4269 }
4270 /*
4271 * If not opening a pty or it didn't work, try using pipes.
4272 */
4273 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004274# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 {
4276 pipe_error = (pipe(fd_toshell) < 0);
4277 if (!pipe_error) /* pipe create OK */
4278 {
4279 pipe_error = (pipe(fd_fromshell) < 0);
4280 if (pipe_error) /* pipe create failed */
4281 {
4282 close(fd_toshell[0]);
4283 close(fd_toshell[1]);
4284 }
4285 }
4286 if (pipe_error)
4287 {
4288 MSG_PUTS(_("\nCannot create pipes\n"));
4289 out_flush();
4290 }
4291 }
4292 }
4293
4294 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004296 SIGSET_DECL(curset)
4297
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298# ifdef __BEOS__
4299 beos_cleanup_read_thread();
4300# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004301
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004302 BLOCK_SIGNALS(&curset);
4303 pid = fork(); /* maybe we should use vfork() */
4304 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004306 UNBLOCK_SIGNALS(&curset);
4307
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004309 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004311 || (gui.in_use && show_shell_mess)
4312# endif
4313 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004315# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 if (pty_master_fd >= 0) /* close the pseudo tty */
4317 {
4318 close(pty_master_fd);
4319 close(pty_slave_fd);
4320 }
4321 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 {
4324 close(fd_toshell[0]);
4325 close(fd_toshell[1]);
4326 close(fd_fromshell[0]);
4327 close(fd_fromshell[1]);
4328 }
4329 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 }
4331 else if (pid == 0) /* child */
4332 {
4333 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004334 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335
4336 if (!show_shell_mess || (options & SHELL_EXPAND))
4337 {
4338 int fd;
4339
4340 /*
4341 * Don't want to show any message from the shell. Can't just
4342 * close stdout and stderr though, because some systems will
4343 * break if you try to write to them after that, so we must
4344 * use dup() to replace them with something else -- webb
4345 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4346 * waiting for input.
4347 */
4348 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4349 fclose(stdin);
4350 fclose(stdout);
4351 fclose(stderr);
4352
4353 /*
4354 * If any of these open()'s and dup()'s fail, we just continue
4355 * anyway. It's not fatal, and on most systems it will make
4356 * no difference at all. On a few it will cause the execvp()
4357 * to exit with a non-zero status even when the completion
4358 * could be done, which is nothing too serious. If the open()
4359 * or dup() failed we'd just do the same thing ourselves
4360 * anyway -- webb
4361 */
4362 if (fd >= 0)
4363 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004364 ignored = dup(fd); /* To replace stdin (fd 0) */
4365 ignored = dup(fd); /* To replace stdout (fd 1) */
4366 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367
4368 /* Don't need this now that we've duplicated it */
4369 close(fd);
4370 }
4371 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004372 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004374 || gui.in_use
4375# endif
4376 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 {
4378
Bram Moolenaardf177f62005-02-22 08:39:57 +00004379# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004380 /* Create our own process group, so that the child and all its
4381 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004382 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004383 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004384 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004385 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004386# if defined(SIGHUP)
4387 /* When doing "!xterm&" and 'shell' is bash: the shell
4388 * will exit and send SIGHUP to all processes in its
4389 * group, killing the just started process. Ignore SIGHUP
4390 * to avoid that. (suggested by Simon Schubert)
4391 */
4392 signal(SIGHUP, SIG_IGN);
4393# endif
4394 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004395# endif
4396# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004397 if (pty_slave_fd >= 0)
4398 {
4399 /* push stream discipline modules */
4400 if (options & SHELL_COOKED)
4401 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004403 /* Try to become controlling tty (probably doesn't work,
4404 * unless run by root) */
4405 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004407 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004408# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004409 set_child_environment();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410
Bram Moolenaara5792f52005-11-23 21:25:05 +00004411 /*
4412 * stderr is only redirected when using the GUI, so that a
4413 * program like gpg can still access the terminal to get a
4414 * passphrase using stderr.
4415 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004416# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 if (pty_master_fd >= 0)
4418 {
4419 close(pty_master_fd); /* close master side of pty */
4420
4421 /* set up stdin/stdout/stderr for the child */
4422 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004423 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004425 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004426 if (gui.in_use)
4427 {
4428 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004429 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431
4432 close(pty_slave_fd); /* has been dupped, close it now */
4433 }
4434 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004435# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 {
4437 /* set up stdin for the child */
4438 close(fd_toshell[1]);
4439 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004440 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441 close(fd_toshell[0]);
4442
4443 /* set up stdout for the child */
4444 close(fd_fromshell[0]);
4445 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004446 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 close(fd_fromshell[1]);
4448
Bram Moolenaara5792f52005-11-23 21:25:05 +00004449# ifdef FEAT_GUI
4450 if (gui.in_use)
4451 {
4452 /* set up stderr for the child */
4453 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004454 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004455 }
4456# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 }
4458 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004459
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 /*
4461 * There is no type cast for the argv, because the type may be
4462 * different on different machines. This may cause a warning
4463 * message with strict compilers, don't worry about it.
4464 * Call _exit() instead of exit() to avoid closing the connection
4465 * to the X server (esp. with GTK, which uses atexit()).
4466 */
4467 execvp(argv[0], argv);
4468 _exit(EXEC_FAILED); /* exec failed, return failure code */
4469 }
4470 else /* parent */
4471 {
4472 /*
4473 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004474 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 */
4476 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004477 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004478 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004479# ifdef FEAT_JOB_CHANNEL
4480 ++dont_check_job_ended;
4481# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 /*
4483 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004484 * This is also used to pipe stdin/stdout to/from the external
4485 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004487 if ((options & (SHELL_READ|SHELL_WRITE))
4488# ifdef FEAT_GUI
4489 || (gui.in_use && show_shell_mess)
4490# endif
4491 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004493# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004495# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004497# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4499 int ta_len = 0; /* valid bytes in ta_buf[] */
4500 int len;
4501 int p_more_save;
4502 int old_State;
4503 int c;
4504 int toshell_fd;
4505 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004506 garray_T ga;
4507 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004508# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4509 struct timeval start_tv;
4510# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511
Bram Moolenaardf177f62005-02-22 08:39:57 +00004512# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 if (pty_master_fd >= 0)
4514 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 fromshell_fd = pty_master_fd;
4516 toshell_fd = dup(pty_master_fd);
4517 }
4518 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004519# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 {
4521 close(fd_toshell[0]);
4522 close(fd_fromshell[1]);
4523 toshell_fd = fd_toshell[1];
4524 fromshell_fd = fd_fromshell[0];
4525 }
4526
4527 /*
4528 * Write to the child if there are typed characters.
4529 * Read from the child if there are characters available.
4530 * Repeat the reading a few times if more characters are
4531 * available. Need to check for typed keys now and then, but
4532 * not too often (delays when no chars are available).
4533 * This loop is quit if no characters can be read from the pty
4534 * (WaitForChar detected special condition), or there are no
4535 * characters available and the child has exited.
4536 * Only check if the child has exited when there is no more
4537 * output. The child may exit before all the output has
4538 * been printed.
4539 *
4540 * Currently this busy loops!
4541 * This can probably dead-lock when the write blocks!
4542 */
4543 p_more_save = p_more;
4544 p_more = FALSE;
4545 old_State = State;
4546 State = EXTERNCMD; /* don't redraw at window resize */
4547
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004548 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004549 {
4550 /* Fork a process that will write the lines to the
4551 * external program. */
4552 if ((wpid = fork()) == -1)
4553 {
4554 MSG_PUTS(_("\nCannot fork\n"));
4555 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004556 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004557 {
4558 linenr_T lnum = curbuf->b_op_start.lnum;
4559 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004560 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004561 size_t l;
4562
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004563 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004564 for (;;)
4565 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004566 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004567 if (l == 0)
4568 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004569 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004570 /* NL -> NUL translation */
4571 len = write(toshell_fd, "", (size_t)1);
4572 else
4573 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004574 char_u *s = vim_strchr(lp + written, NL);
4575
Bram Moolenaar89d40322006-08-29 15:30:07 +00004576 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004577 s == NULL ? l
4578 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004579 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004580 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004581 {
4582 /* Finished a line, add a NL, unless this line
4583 * should not have one. */
4584 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004585 || (!curbuf->b_p_bin
4586 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004587 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004588 && (lnum !=
4589 curbuf->b_ml.ml_line_count
4590 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004591 ignored = write(toshell_fd, "\n",
4592 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004593 ++lnum;
4594 if (lnum > curbuf->b_op_end.lnum)
4595 {
4596 /* finished all the lines, close pipe */
4597 close(toshell_fd);
4598 toshell_fd = -1;
4599 break;
4600 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004601 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004602 written = 0;
4603 }
4604 else if (len > 0)
4605 written += len;
4606 }
4607 _exit(0);
4608 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004609 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004610 {
4611 close(toshell_fd);
4612 toshell_fd = -1;
4613 }
4614 }
4615
4616 if (options & SHELL_READ)
4617 ga_init2(&ga, 1, BUFLEN);
4618
4619 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004620# ifdef ELAPSED_FUNC
4621 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004622# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 for (;;)
4624 {
4625 /*
4626 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004627 * if there are any.
4628 * Don't do this if we are expanding wild cards (would eat
4629 * typeahead).
4630 * Don't do this when filtering and terminal is in cooked
4631 * mode, the shell command will handle the I/O. Avoids
4632 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004633 * Don't get characters when the child has already
4634 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004635 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004636 * while (noread_cnt > 4), avoids that ":r !ls" eats
4637 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638 */
4639 len = 0;
4640 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004641 && ((options &
4642 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4643 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004644# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004645 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004646# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004647 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004648 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004649 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004651 if (ta_len == 0)
4652 {
4653 /* Get extra characters when we don't have any.
4654 * Reset the counter and timer. */
4655 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004656# ifdef ELAPSED_FUNC
4657 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004658# endif
4659 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4660 }
4661 if (ta_len > 0 || len > 0)
4662 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 /*
4664 * For pipes:
4665 * Check for CTRL-C: send interrupt signal to child.
4666 * Check for CTRL-D: EOF, close pipe to child.
4667 */
4668 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4669 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004670# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 /*
4672 * Send SIGINT to the child's group or all
4673 * processes in our group.
4674 */
4675 if (ta_buf[ta_len] == Ctrl_C
4676 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004677 {
4678# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004680# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004683 if (wpid > 0)
4684 kill(wpid, SIGINT);
4685 }
4686# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687 if (pty_master_fd < 0 && toshell_fd >= 0
4688 && ta_buf[ta_len] == Ctrl_D)
4689 {
4690 close(toshell_fd);
4691 toshell_fd = -1;
4692 }
4693 }
4694
4695 /* replace K_BS by <BS> and K_DEL by <DEL> */
4696 for (i = ta_len; i < ta_len + len; ++i)
4697 {
4698 if (ta_buf[i] == CSI && len - i > 2)
4699 {
4700 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4701 if (c == K_DEL || c == K_KDEL || c == K_BS)
4702 {
4703 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4704 (size_t)(len - i - 2));
4705 if (c == K_DEL || c == K_KDEL)
4706 ta_buf[i] = DEL;
4707 else
4708 ta_buf[i] = Ctrl_H;
4709 len -= 2;
4710 }
4711 }
4712 else if (ta_buf[i] == '\r')
4713 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004714# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004716 i += (*mb_ptr2len_len)(ta_buf + i,
4717 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004718# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 }
4720
4721 /*
4722 * For pipes: echo the typed characters.
4723 * For a pty this does not seem to work.
4724 */
4725 if (pty_master_fd < 0)
4726 {
4727 for (i = ta_len; i < ta_len + len; ++i)
4728 {
4729 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4730 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004731# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 else if (has_mbyte)
4733 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004734 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735
4736 msg_outtrans_len(ta_buf + i, l);
4737 i += l - 1;
4738 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004739# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 else
4741 msg_outtrans_len(ta_buf + i, 1);
4742 }
4743 windgoto(msg_row, msg_col);
4744 out_flush();
4745 }
4746
4747 ta_len += len;
4748
4749 /*
4750 * Write the characters to the child, unless EOF has
4751 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004752 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004753 * When writing buffer lines, drop the typed
4754 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004756 if (options & SHELL_WRITE)
4757 ta_len = 0;
4758 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 {
4760 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4761 if (len > 0)
4762 {
4763 ta_len -= len;
4764 mch_memmove(ta_buf, ta_buf + len, ta_len);
4765 }
4766 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004767 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 }
4769
Bram Moolenaardf177f62005-02-22 08:39:57 +00004770 if (got_int)
4771 {
4772 /* CTRL-C sends a signal to the child, we ignore it
4773 * ourselves */
4774# ifdef HAVE_SETSID
4775 kill(-pid, SIGINT);
4776# else
4777 kill(0, SIGINT);
4778# endif
4779 if (wpid > 0)
4780 kill(wpid, SIGINT);
4781 got_int = FALSE;
4782 }
4783
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 /*
4785 * Check if the child has any characters to be printed.
4786 * Read them and write them to our window. Repeat this as
4787 * long as there is something to do, avoid the 10ms wait
4788 * for mch_inchar(), or sending typeahead characters to
4789 * the external process.
4790 * TODO: This should handle escape sequences, compatible
4791 * to some terminal (vt52?).
4792 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004793 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01004794 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004796 len = read_eintr(fromshell_fd, buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004797# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004799# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004801# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 );
4803 if (len <= 0) /* end of file or error */
4804 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004805
4806 noread_cnt = 0;
4807 if (options & SHELL_READ)
4808 {
4809 /* Do NUL -> NL translation, append NL separated
4810 * lines to the current buffer. */
4811 for (i = 0; i < len; ++i)
4812 {
4813 if (buffer[i] == NL)
4814 append_ga_line(&ga);
4815 else if (buffer[i] == NUL)
4816 ga_append(&ga, NL);
4817 else
4818 ga_append(&ga, buffer[i]);
4819 }
4820 }
4821# ifdef FEAT_MBYTE
4822 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 {
4824 int l;
4825
Bram Moolenaardf177f62005-02-22 08:39:57 +00004826 len += buffer_off;
4827 buffer[len] = NUL;
4828
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 /* Check if the last character in buffer[] is
4830 * incomplete, keep these bytes for the next
4831 * round. */
4832 for (p = buffer; p < buffer + len; p += l)
4833 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004834 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 if (l == 0)
4836 l = 1; /* NUL byte? */
4837 else if (MB_BYTE2LEN(*p) != l)
4838 break;
4839 }
4840 if (p == buffer) /* no complete character */
4841 {
4842 /* avoid getting stuck at an illegal byte */
4843 if (len >= 12)
4844 ++p;
4845 else
4846 {
4847 buffer_off = len;
4848 continue;
4849 }
4850 }
4851 c = *p;
4852 *p = NUL;
4853 msg_puts(buffer);
4854 if (p < buffer + len)
4855 {
4856 *p = c;
4857 buffer_off = (buffer + len) - p;
4858 mch_memmove(buffer, p, buffer_off);
4859 continue;
4860 }
4861 buffer_off = 0;
4862 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004863# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 {
4866 buffer[len] = NUL;
4867 msg_puts(buffer);
4868 }
4869
4870 windgoto(msg_row, msg_col);
4871 cursor_on();
4872 out_flush();
4873 if (got_int)
4874 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004875
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004876# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004877 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004878 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004879 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004880
4881 /* Avoid that we keep looping here without
4882 * checking for a CTRL-C for a long time. Don't
4883 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004884 if (msec > 2000)
4885 {
4886 noread_cnt = 5;
4887 break;
4888 }
4889 }
4890# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 }
4892
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004893 /* If we already detected the child has finished, continue
4894 * reading output for a short while. Some text may be
4895 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004896 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004897 {
4898 if (noread_cnt < 5)
4899 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004900 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004901 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004902
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 /*
4904 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004905 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004907# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004908 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004909# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4913 || (wait_pid == pid && WIFEXITED(status)))
4914 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004915 /* Don't break the loop yet, try reading more
4916 * characters from "fromshell_fd" first. When using
4917 * pipes there might still be something to read and
4918 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004921 else
4922 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004923
Bram Moolenaar95a51352013-03-21 22:53:50 +01004924# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004925 /* Handle any X events, e.g. serving the clipboard. */
4926 clip_update();
4927# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 }
4929finished:
4930 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004931 if (options & SHELL_READ)
4932 {
4933 if (ga.ga_len > 0)
4934 {
4935 append_ga_line(&ga);
4936 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004937 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004938 }
4939 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004940 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004941 ga_clear(&ga);
4942 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 /*
4945 * Give all typeahead that wasn't used back to ui_inchar().
4946 */
4947 if (ta_len)
4948 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 State = old_State;
4950 if (toshell_fd >= 0)
4951 close(toshell_fd);
4952 close(fromshell_fd);
4953 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01004954# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004955 else
4956 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004957 long delay_msec = 1;
4958
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004959 /*
4960 * Similar to the loop above, but only handle X events, no
4961 * I/O.
4962 */
4963 for (;;)
4964 {
4965 if (got_int)
4966 {
4967 /* CTRL-C sends a signal to the child, we ignore it
4968 * ourselves */
4969# ifdef HAVE_SETSID
4970 kill(-pid, SIGINT);
4971# else
4972 kill(0, SIGINT);
4973# endif
4974 got_int = FALSE;
4975 }
4976# ifdef __NeXT__
4977 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4978# else
4979 wait_pid = waitpid(pid, &status, WNOHANG);
4980# endif
4981 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4982 || (wait_pid == pid && WIFEXITED(status)))
4983 {
4984 wait_pid = pid;
4985 break;
4986 }
4987
4988 /* Handle any X events, e.g. serving the clipboard. */
4989 clip_update();
4990
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004991 /* Wait for 1 to 10 msec. 1 is faster but gives the child
4992 * less time. */
4993 mch_delay(delay_msec, TRUE);
4994 if (++delay_msec > 10)
4995 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004996 }
4997 }
4998# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999
5000 /*
5001 * Wait until our child has exited.
5002 * Ignore wait() returning pids of other children and returning
5003 * because of some signal like SIGWINCH.
5004 * Don't wait if wait_pid was already set above, indicating the
5005 * child already exited.
5006 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005007 if (wait_pid != pid)
5008 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009
Bram Moolenaar624891f2010-10-13 16:22:09 +02005010# ifdef FEAT_GUI
5011 /* Close slave side of pty. Only do this after the child has
5012 * exited, otherwise the child may hang when it tries to write on
5013 * the pty. */
5014 if (pty_master_fd >= 0)
5015 close(pty_slave_fd);
5016# endif
5017
Bram Moolenaardf177f62005-02-22 08:39:57 +00005018 /* Make sure the child that writes to the external program is
5019 * dead. */
5020 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005021 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005022 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005023 wait4pid(wpid, NULL);
5024 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005025
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005026# ifdef FEAT_JOB_CHANNEL
5027 --dont_check_job_ended;
5028# endif
5029
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 /*
5031 * Set to raw mode right now, otherwise a CTRL-C after
5032 * catch_signals() will kill Vim.
5033 */
5034 if (tmode == TMODE_RAW)
5035 settmode(TMODE_RAW);
5036 did_settmode = TRUE;
5037 set_signals();
5038
5039 if (WIFEXITED(status))
5040 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005041 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005043 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 {
5045 if (retval == EXEC_FAILED)
5046 {
5047 MSG_PUTS(_("\nCannot execute shell "));
5048 msg_outtrans(p_sh);
5049 msg_putchar('\n');
5050 }
5051 else if (!(options & SHELL_SILENT))
5052 {
5053 MSG_PUTS(_("\nshell returned "));
5054 msg_outnum((long)retval);
5055 msg_putchar('\n');
5056 }
5057 }
5058 }
5059 else
5060 MSG_PUTS(_("\nCommand terminated\n"));
5061 }
5062 }
5063 vim_free(argv);
Bram Moolenaarea35ef62011-08-04 22:59:28 +02005064 vim_free(p_shcf_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065
5066error:
5067 if (!did_settmode)
5068 if (tmode == TMODE_RAW)
5069 settmode(TMODE_RAW); /* set to raw mode */
5070# ifdef FEAT_TITLE
5071 resettitle();
5072# endif
5073 vim_free(newcmd);
5074
5075 return retval;
5076
5077#endif /* USE_SYSTEM */
5078}
5079
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005080#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005081 void
Bram Moolenaar802d5592016-03-05 22:05:27 +01005082mch_start_job(char **argv, job_T *job, jobopt_T *options UNUSED)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005083{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005084 pid_t pid;
5085 int fd_in[2]; /* for stdin */
5086 int fd_out[2]; /* for stdout */
5087 int fd_err[2]; /* for stderr */
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005088 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005089 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5090 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5091 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005092 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005093 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5094 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005095 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005096 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005097
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005098 if (use_out_for_err && use_null_for_out)
5099 use_null_for_err = TRUE;
5100
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005101 /* default is to fail */
5102 job->jv_status = JOB_FAILED;
5103 fd_in[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005104 fd_in[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005105 fd_out[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005106 fd_out[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005107 fd_err[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005108 fd_err[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005109
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005110 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005111 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005112 if (use_file_for_in)
5113 {
5114 char_u *fname = options->jo_io_name[PART_IN];
5115
5116 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5117 if (fd_in[0] < 0)
5118 {
5119 EMSG2(_(e_notopen), fname);
5120 goto failed;
5121 }
5122 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005123 else if (!use_null_for_in && pipe(fd_in) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005124 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005125
5126 if (use_file_for_out)
5127 {
5128 char_u *fname = options->jo_io_name[PART_OUT];
5129
5130 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5131 if (fd_out[1] < 0)
5132 {
5133 EMSG2(_(e_notopen), fname);
5134 goto failed;
5135 }
5136 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005137 else if (!use_null_for_out && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005138 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005139
5140 if (use_file_for_err)
5141 {
5142 char_u *fname = options->jo_io_name[PART_ERR];
5143
5144 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5145 if (fd_err[1] < 0)
5146 {
5147 EMSG2(_(e_notopen), fname);
5148 goto failed;
5149 }
5150 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005151 else if (!use_out_for_err && !use_null_for_err && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005152 goto failed;
5153
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005154 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5155 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005156 if (options->jo_set & JO_CHANNEL)
5157 {
5158 channel = options->jo_channel;
5159 if (channel != NULL)
5160 ++channel->ch_refcount;
5161 }
5162 else
5163 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005164 if (channel == NULL)
5165 goto failed;
5166 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005167
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005168 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005169 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005170 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005171 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005172 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005173 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005174 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005175 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005176 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005177 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005178 int null_fd = -1;
5179 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005180
Bram Moolenaar835dc632016-02-07 14:27:38 +01005181 /* child */
5182 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005183 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005184
5185# ifdef HAVE_SETSID
5186 /* Create our own process group, so that the child and all its
5187 * children can be kill()ed. Don't do this when using pipes,
5188 * because stdin is not a tty, we would lose /dev/tty. */
5189 (void)setsid();
5190# endif
5191
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005192 set_child_environment();
5193
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005194 if (use_null_for_in || use_null_for_out || use_null_for_err)
5195 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
5196
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005197 /* set up stdin for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005198 if (use_null_for_in && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005199 {
5200 close(0);
5201 ignored = dup(null_fd);
5202 }
5203 else
5204 {
5205 if (!use_file_for_in)
5206 close(fd_in[1]);
5207 close(0);
5208 ignored = dup(fd_in[0]);
5209 close(fd_in[0]);
5210 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005211
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005212 /* set up stderr for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005213 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005214 {
5215 close(2);
5216 ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005217 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005218 }
5219 else if (use_out_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005220 {
5221 close(2);
5222 ignored = dup(fd_out[1]);
5223 }
5224 else
5225 {
Bram Moolenaare98d1212016-03-08 15:37:41 +01005226 if (!use_file_for_err)
5227 close(fd_err[0]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005228 close(2);
5229 ignored = dup(fd_err[1]);
5230 close(fd_err[1]);
5231 }
5232
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005233 /* set up stdout for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005234 if (use_null_for_out && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005235 {
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005236 close(1);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005237 ignored = dup(null_fd);
5238 }
5239 else
5240 {
5241 if (!use_file_for_out)
5242 close(fd_out[0]);
5243 close(1);
5244 ignored = dup(fd_out[1]);
5245 close(fd_out[1]);
5246 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005247
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005248 if (null_fd >= 0)
5249 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005250
Bram Moolenaar835dc632016-02-07 14:27:38 +01005251 /* See above for type of argv. */
5252 execvp(argv[0], argv);
5253
Bram Moolenaar4694a172016-04-21 14:05:23 +02005254 if (stderr_works)
5255 perror("executing job failed");
Bram Moolenaarcda77642016-06-04 13:32:35 +02005256#ifdef EXITFREE
5257 /* calling free_all_mem() here causes problems. Ignore valgrind
5258 * reporting possibly leaked memory. */
5259#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005260 _exit(EXEC_FAILED); /* exec failed, return failure code */
5261 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005262
5263 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005264 UNBLOCK_SIGNALS(&curset);
5265
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005266 job->jv_pid = pid;
5267 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005268 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005269
5270 /* child stdin, stdout and stderr */
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005271 if (!use_file_for_in && fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005272 close(fd_in[0]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005273 if (!use_file_for_out && fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005274 close(fd_out[1]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005275 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005276 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005277 if (channel != NULL)
5278 {
5279 channel_set_pipes(channel,
5280 use_file_for_in || use_null_for_in
5281 ? INVALID_FD : fd_in[1],
5282 use_file_for_out || use_null_for_out
5283 ? INVALID_FD : fd_out[0],
5284 use_out_for_err || use_file_for_err || use_null_for_err
Bram Moolenaare98d1212016-03-08 15:37:41 +01005285 ? INVALID_FD : fd_err[0]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005286 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005287 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005288
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005289 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005290 return;
5291
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005292failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005293 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005294 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005295 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005296 if (fd_in[1] >= 0)
5297 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005298 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005299 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005300 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005301 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005302 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005303 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005304 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005305 close(fd_err[1]);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005306}
5307
5308 char *
5309mch_job_status(job_T *job)
5310{
5311# ifdef HAVE_UNION_WAIT
5312 union wait status;
5313# else
5314 int status = -1;
5315# endif
5316 pid_t wait_pid = 0;
5317
5318# ifdef __NeXT__
5319 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5320# else
5321 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5322# endif
5323 if (wait_pid == -1)
5324 {
5325 /* process must have exited */
Bram Moolenaar97792de2016-10-15 18:36:49 +02005326 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005327 }
5328 if (wait_pid == 0)
5329 return "run";
5330 if (WIFEXITED(status))
5331 {
5332 /* LINTED avoid "bitwise operation on signed value" */
5333 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005334 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005335 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005336 if (WIFSIGNALED(status))
5337 {
5338 job->jv_exitval = -1;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005339 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005340 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005341 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005342
5343return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005344 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005345 {
5346 ch_log(job->jv_channel, "Job ended");
5347 job->jv_status = JOB_ENDED;
5348 }
5349 return "dead";
5350}
5351
5352 job_T *
5353mch_detect_ended_job(job_T *job_list)
5354{
5355# ifdef HAVE_UNION_WAIT
5356 union wait status;
5357# else
5358 int status = -1;
5359# endif
5360 pid_t wait_pid = 0;
5361 job_T *job;
5362
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005363# ifndef USE_SYSTEM
5364 /* Do not do this when waiting for a shell command to finish, we would get
5365 * the exit value here (and discard it), the exit value obtained there
5366 * would then be wrong. */
5367 if (dont_check_job_ended > 0)
5368 return NULL;
5369# endif
5370
Bram Moolenaar97792de2016-10-15 18:36:49 +02005371# ifdef __NeXT__
5372 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5373# else
5374 wait_pid = waitpid(-1, &status, WNOHANG);
5375# endif
5376 if (wait_pid <= 0)
5377 /* no process ended */
5378 return NULL;
5379 for (job = job_list; job != NULL; job = job->jv_next)
5380 {
5381 if (job->jv_pid == wait_pid)
5382 {
5383 if (WIFEXITED(status))
5384 /* LINTED avoid "bitwise operation on signed value" */
5385 job->jv_exitval = WEXITSTATUS(status);
5386 else if (WIFSIGNALED(status))
5387 job->jv_exitval = -1;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005388 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005389 {
5390 ch_log(job->jv_channel, "Job ended");
5391 job->jv_status = JOB_ENDED;
5392 }
5393 return job;
5394 }
5395 }
5396 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005397}
5398
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005399/*
5400 * Send a (deadly) signal to "job".
5401 * Return FAIL if "how" is not a valid name.
5402 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005403 int
5404mch_stop_job(job_T *job, char_u *how)
5405{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005406 int sig = -1;
5407 pid_t job_pid;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005408
Bram Moolenaar923d9262016-02-25 20:56:01 +01005409 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005410 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005411 else if (STRCMP(how, "hup") == 0)
5412 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005413 else if (STRCMP(how, "quit") == 0)
5414 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005415 else if (STRCMP(how, "int") == 0)
5416 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005417 else if (STRCMP(how, "kill") == 0)
5418 sig = SIGKILL;
5419 else if (isdigit(*how))
5420 sig = atoi((char *)how);
5421 else
5422 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005423
Bram Moolenaar72801402016-02-09 11:37:50 +01005424 /* TODO: have an option to only kill the process, not the group? */
Bram Moolenaar76467df2016-02-12 19:30:26 +01005425 job_pid = job->jv_pid;
5426 if (job_pid == getpgid(job_pid))
5427 job_pid = -job_pid;
5428
5429 kill(job_pid, sig);
5430
Bram Moolenaar835dc632016-02-07 14:27:38 +01005431 return OK;
5432}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005433
5434/*
5435 * Clear the data related to "job".
5436 */
5437 void
5438mch_clear_job(job_T *job)
5439{
5440 /* call waitpid because child process may become zombie */
5441# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005442 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005443# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005444 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005445# endif
5446}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005447#endif
5448
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449/*
5450 * Check for CTRL-C typed by reading all available characters.
5451 * In cooked mode we should get SIGINT, no need to check.
5452 */
5453 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005454mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005456 if ((curr_tmode == TMODE_RAW || force)
5457 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005458 fill_input_buf(FALSE);
5459}
5460
5461/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005462 * Wait "msec" msec until a character is available from the mouse, keyboard,
5463 * from inbuf[].
5464 * "msec" == -1 will block forever.
5465 * Invokes timer callbacks when needed.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005466 * "interrupted" (if not NULL) is set to TRUE when no character is available
5467 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005468 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005469 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 */
5471 static int
Bram Moolenaarcda77642016-06-04 13:32:35 +02005472WaitForChar(long msec, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005473{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005474#ifdef FEAT_TIMERS
5475 long due_time;
5476 long remaining = msec;
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005477 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005478
5479 /* When waiting very briefly don't trigger timers. */
5480 if (msec >= 0 && msec < 10L)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005481 return WaitForCharOrMouse(msec, NULL);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005482
5483 while (msec < 0 || remaining > 0)
5484 {
5485 /* Trigger timers and then get the time in msec until the next one is
5486 * due. Wait up to that time. */
5487 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005488 if (typebuf.tb_change_cnt != tb_change_cnt)
5489 {
5490 /* timer may have used feedkeys() */
5491 return FALSE;
5492 }
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005493 if (due_time <= 0 || (msec > 0 && due_time > remaining))
5494 due_time = remaining;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005495 if (WaitForCharOrMouse(due_time, interrupted))
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005496 return TRUE;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005497 if (interrupted != NULL && *interrupted)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005498 /* Nothing available, but need to return so that side effects get
5499 * handled, such as handling a message on a channel. */
5500 return FALSE;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005501 if (msec > 0)
5502 remaining -= due_time;
5503 }
5504 return FALSE;
5505#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005506 return WaitForCharOrMouse(msec, interrupted);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005507#endif
5508}
5509
5510/*
5511 * Wait "msec" msec until a character is available from the mouse or keyboard
5512 * or from inbuf[].
5513 * "msec" == -1 will block forever.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005514 * "interrupted" (if not NULL) is set to TRUE when no character is available
5515 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005516 * When a GUI is being used, this will never get called -- webb
5517 */
5518 static int
Bram Moolenaarcda77642016-06-04 13:32:35 +02005519WaitForCharOrMouse(long msec, int *interrupted)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005520{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521#ifdef FEAT_MOUSE_GPM
5522 int gpm_process_wanted;
5523#endif
5524#ifdef FEAT_XCLIPBOARD
5525 int rest;
5526#endif
5527 int avail;
5528
5529 if (input_available()) /* something in inbuf[] */
5530 return 1;
5531
5532#if defined(FEAT_MOUSE_DEC)
5533 /* May need to query the mouse position. */
5534 if (WantQueryMouse)
5535 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005536 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5538 }
5539#endif
5540
5541 /*
5542 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5543 * events. This is a bit complicated, because they might both be defined.
5544 */
5545#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5546# ifdef FEAT_XCLIPBOARD
5547 rest = 0;
5548 if (do_xterm_trace())
5549 rest = msec;
5550# endif
5551 do
5552 {
5553# ifdef FEAT_XCLIPBOARD
5554 if (rest != 0)
5555 {
5556 msec = XT_TRACE_DELAY;
5557 if (rest >= 0 && rest < XT_TRACE_DELAY)
5558 msec = rest;
5559 if (rest >= 0)
5560 rest -= msec;
5561 }
5562# endif
5563# ifdef FEAT_MOUSE_GPM
5564 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005565 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005566 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005568 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569# endif
5570 if (!avail)
5571 {
5572 if (input_available())
5573 return 1;
5574# ifdef FEAT_XCLIPBOARD
5575 if (rest == 0 || !do_xterm_trace())
5576# endif
5577 break;
5578 }
5579 }
5580 while (FALSE
5581# ifdef FEAT_MOUSE_GPM
5582 || (gpm_process_wanted && mch_gpm_process() == 0)
5583# endif
5584# ifdef FEAT_XCLIPBOARD
5585 || (!avail && rest != 0)
5586# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005587 )
5588 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589
5590#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005591 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592#endif
5593 return avail;
5594}
5595
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005596#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597/*
5598 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005599 * "msec" == 0 will check for characters once.
5600 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005603 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005604 * "interrupted" (if not NULL) is set to TRUE when no character is available
5605 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607#if defined(__BEOS__)
5608 int
5609#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005610 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005612RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613{
5614 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005615 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005616#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 static int busy = FALSE;
5618
5619 /* May retry getting characters after an event was handled. */
5620# define MAY_LOOP
5621
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005622# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 /* Remember at what time we started, so that we know how much longer we
5624 * should wait after being interrupted. */
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005625 long start_msec = msec;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005626 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005628 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005629 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630# endif
5631
5632 /* Handle being called recursively. This may happen for the session
5633 * manager stuff, it may save the file, which does a breakcheck. */
5634 if (busy)
5635 return 0;
5636#endif
5637
5638#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005639 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640#endif
5641 {
5642#ifdef MAY_LOOP
5643 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005644# ifdef FEAT_MZSCHEME
5645 int mzquantum_used = FALSE;
5646# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647#endif
5648#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005649 /* each channel may use in, out and err */
5650 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005651 int nfd;
5652# ifdef FEAT_XCLIPBOARD
5653 int xterm_idx = -1;
5654# endif
5655# ifdef FEAT_MOUSE_GPM
5656 int gpm_idx = -1;
5657# endif
5658# ifdef USE_XSMP
5659 int xsmp_idx = -1;
5660# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005661 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005663# ifdef FEAT_MZSCHEME
5664 mzvim_check_threads();
5665 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5666 {
5667 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
5668 mzquantum_used = TRUE;
5669 }
5670# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 fds[0].fd = fd;
5672 fds[0].events = POLLIN;
5673 nfd = 1;
5674
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005676 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 if (xterm_Shell != (Widget)0)
5678 {
5679 xterm_idx = nfd;
5680 fds[nfd].fd = ConnectionNumber(xterm_dpy);
5681 fds[nfd].events = POLLIN;
5682 nfd++;
5683 }
5684# endif
5685# ifdef FEAT_MOUSE_GPM
5686 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5687 {
5688 gpm_idx = nfd;
5689 fds[nfd].fd = gpm_fd;
5690 fds[nfd].events = POLLIN;
5691 nfd++;
5692 }
5693# endif
5694# ifdef USE_XSMP
5695 if (xsmp_icefd != -1)
5696 {
5697 xsmp_idx = nfd;
5698 fds[nfd].fd = xsmp_icefd;
5699 fds[nfd].events = POLLIN;
5700 nfd++;
5701 }
5702# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005703#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005704 nfd = channel_poll_setup(nfd, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005705#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005706 if (interrupted != NULL)
5707 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005709 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005710
5711 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02005712 if (result == 0 && interrupted != NULL && ret > 0)
5713 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005714
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005715# ifdef FEAT_MZSCHEME
5716 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005717 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005718 finished = FALSE;
5719# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721# ifdef FEAT_XCLIPBOARD
5722 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
5723 {
5724 xterm_update(); /* Maybe we should hand out clipboard */
5725 if (--ret == 0 && !input_available())
5726 /* Try again */
5727 finished = FALSE;
5728 }
5729# endif
5730# ifdef FEAT_MOUSE_GPM
5731 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
5732 {
5733 *check_for_gpm = 1;
5734 }
5735# endif
5736# ifdef USE_XSMP
5737 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
5738 {
5739 if (fds[xsmp_idx].revents & POLLIN)
5740 {
5741 busy = TRUE;
5742 xsmp_handle_requests();
5743 busy = FALSE;
5744 }
5745 else if (fds[xsmp_idx].revents & POLLHUP)
5746 {
5747 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005748 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 xsmp_close();
5750 }
5751 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005752 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 }
5754# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005755#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005756 if (ret > 0)
5757 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760#else /* HAVE_SELECT */
5761
5762 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005763 struct timeval *tvp;
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005764 fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005766 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005768# ifdef FEAT_MZSCHEME
5769 mzvim_check_threads();
5770 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5771 {
5772 towait = p_mzq; /* don't wait longer than 'mzquantum' */
5773 mzquantum_used = TRUE;
5774 }
5775# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005777 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005779 tv.tv_sec = towait / 1000;
5780 tv.tv_usec = (towait % 1000) * (1000000/1000);
5781 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005783 else
5784 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785
5786 /*
5787 * Select on ready for reading and exceptional condition (end of file).
5788 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005789select_eintr:
5790 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005791 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 FD_ZERO(&efds);
5793 FD_SET(fd, &rfds);
5794# if !defined(__QNX__) && !defined(__CYGWIN32__)
5795 /* For QNX select() always returns 1 if this is set. Why? */
5796 FD_SET(fd, &efds);
5797# endif
5798 maxfd = fd;
5799
Bram Moolenaar071d4272004-06-13 20:20:40 +00005800# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005801 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 if (xterm_Shell != (Widget)0)
5803 {
5804 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
5805 if (maxfd < ConnectionNumber(xterm_dpy))
5806 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02005807
5808 /* An event may have already been read but not handled. In
5809 * particulary, XFlush may cause this. */
5810 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 }
5812# endif
5813# ifdef FEAT_MOUSE_GPM
5814 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5815 {
5816 FD_SET(gpm_fd, &rfds);
5817 FD_SET(gpm_fd, &efds);
5818 if (maxfd < gpm_fd)
5819 maxfd = gpm_fd;
5820 }
5821# endif
5822# ifdef USE_XSMP
5823 if (xsmp_icefd != -1)
5824 {
5825 FD_SET(xsmp_icefd, &rfds);
5826 FD_SET(xsmp_icefd, &efds);
5827 if (maxfd < xsmp_icefd)
5828 maxfd = xsmp_icefd;
5829 }
5830# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005831# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005832 maxfd = channel_select_setup(maxfd, &rfds, &wfds);
Bram Moolenaardd82d692012-08-15 17:26:57 +02005833# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005834 if (interrupted != NULL)
5835 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005837 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005838 result = ret > 0 && FD_ISSET(fd, &rfds);
5839 if (result)
5840 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005841 else if (interrupted != NULL && ret > 0)
5842 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005843
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005844# ifdef EINTR
5845 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02005846 {
5847 /* Check whether window has been resized, EINTR may be caused by
5848 * SIGWINCH. */
5849 if (do_resize)
5850 handle_resize();
5851
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005852 /* Interrupted by a signal, need to try again. We ignore msec
5853 * here, because we do want to check even after a timeout if
5854 * characters are available. Needed for reading output of an
5855 * external command after the process has finished. */
5856 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02005857 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005858# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00005859# ifdef __TANDEM
5860 if (ret == -1 && errno == ENOTSUP)
5861 {
5862 FD_ZERO(&rfds);
5863 FD_ZERO(&efds);
5864 ret = 0;
5865 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005866# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005867# ifdef FEAT_MZSCHEME
5868 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005869 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005870 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871# endif
5872
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873# ifdef FEAT_XCLIPBOARD
5874 if (ret > 0 && xterm_Shell != (Widget)0
5875 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5876 {
5877 xterm_update(); /* Maybe we should hand out clipboard */
5878 /* continue looping when we only got the X event and the input
5879 * buffer is empty */
5880 if (--ret == 0 && !input_available())
5881 {
5882 /* Try again */
5883 finished = FALSE;
5884 }
5885 }
5886# endif
5887# ifdef FEAT_MOUSE_GPM
5888 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5889 {
5890 if (FD_ISSET(gpm_fd, &efds))
5891 gpm_close();
5892 else if (FD_ISSET(gpm_fd, &rfds))
5893 *check_for_gpm = 1;
5894 }
5895# endif
5896# ifdef USE_XSMP
5897 if (ret > 0 && xsmp_icefd != -1)
5898 {
5899 if (FD_ISSET(xsmp_icefd, &efds))
5900 {
5901 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005902 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903 xsmp_close();
5904 if (--ret == 0)
5905 finished = FALSE; /* keep going if event was only one */
5906 }
5907 else if (FD_ISSET(xsmp_icefd, &rfds))
5908 {
5909 busy = TRUE;
5910 xsmp_handle_requests();
5911 busy = FALSE;
5912 if (--ret == 0)
5913 finished = FALSE; /* keep going if event was only one */
5914 }
5915 }
5916# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005917#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005918 if (ret > 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005919 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921
5922#endif /* HAVE_SELECT */
5923
5924#ifdef MAY_LOOP
5925 if (finished || msec == 0)
5926 break;
5927
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005928# ifdef FEAT_CLIENTSERVER
5929 if (server_waiting())
5930 break;
5931# endif
5932
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 /* We're going to loop around again, find out for how long */
5934 if (msec > 0)
5935 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005936# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005938 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939# else
5940 /* Guess we got interrupted halfway. */
5941 msec = msec / 2;
5942# endif
5943 if (msec <= 0)
5944 break; /* waited long enough */
5945 }
5946#endif
5947 }
5948
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005949 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950}
5951
Bram Moolenaar071d4272004-06-13 20:20:40 +00005952#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005954 * Expand a path into all matching files and/or directories. Handles "*",
5955 * "?", "[a-z]", "**", etc.
5956 * "path" has backslashes before chars that are not to be expanded.
5957 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 */
5959 int
Bram Moolenaar05540972016-01-30 20:31:25 +01005960mch_expandpath(
5961 garray_T *gap,
5962 char_u *path,
5963 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964{
Bram Moolenaar02743632005-07-25 20:42:36 +00005965 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966}
5967#endif
5968
5969/*
5970 * mch_expand_wildcards() - this code does wild-card pattern matching using
5971 * the shell
5972 *
5973 * return OK for success, FAIL for error (you may lose some memory) and put
5974 * an error message in *file.
5975 *
5976 * num_pat is number of input patterns
5977 * pat is array of pointers to input patterns
5978 * num_file is pointer to number of matched file names
5979 * file is pointer to array of pointers to matched file names
5980 */
5981
5982#ifndef SEEK_SET
5983# define SEEK_SET 0
5984#endif
5985#ifndef SEEK_END
5986# define SEEK_END 2
5987#endif
5988
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005989#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005990
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 int
Bram Moolenaar05540972016-01-30 20:31:25 +01005992mch_expand_wildcards(
5993 int num_pat,
5994 char_u **pat,
5995 int *num_file,
5996 char_u ***file,
5997 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998{
5999 int i;
6000 size_t len;
6001 char_u *p;
6002 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003
Bram Moolenaarc7247912008-01-13 12:54:11 +00006004 /*
6005 * This is the non-OS/2 implementation (really Unix).
6006 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 int j;
6008 char_u *tempname;
6009 char_u *command;
6010 FILE *fd;
6011 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006012#define STYLE_ECHO 0 /* use "echo", the default */
6013#define STYLE_GLOB 1 /* use "glob", for csh */
6014#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6015#define STYLE_PRINT 3 /* use "print -N", for zsh */
6016#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6017 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 int shell_style = STYLE_ECHO;
6019 int check_spaces;
6020 static int did_find_nul = FALSE;
6021 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006022 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006023 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024
6025 *num_file = 0; /* default: no files found */
6026 *file = NULL;
6027
6028 /*
6029 * If there are no wildcards, just copy the names to allocated memory.
6030 * Saves a lot of time, because we don't have to start a new shell.
6031 */
6032 if (!have_wildcard(num_pat, pat))
6033 return save_patterns(num_pat, pat, num_file, file);
6034
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006035# ifdef HAVE_SANDBOX
6036 /* Don't allow any shell command in the sandbox. */
6037 if (sandbox != 0 && check_secure())
6038 return FAIL;
6039# endif
6040
Bram Moolenaar071d4272004-06-13 20:20:40 +00006041 /*
6042 * Don't allow the use of backticks in secure and restricted mode.
6043 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006044 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 for (i = 0; i < num_pat; ++i)
6046 if (vim_strchr(pat[i], '`') != NULL
6047 && (check_restricted() || check_secure()))
6048 return FAIL;
6049
6050 /*
6051 * get a name for the temp file
6052 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006053 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 {
6055 EMSG(_(e_notmp));
6056 return FAIL;
6057 }
6058
6059 /*
6060 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006061 * file.
6062 * STYLE_BT: NL separated
6063 * If expanding `cmd` execute it directly.
6064 * STYLE_GLOB: NUL separated
6065 * If we use *csh, "glob" will work better than "echo".
6066 * STYLE_PRINT: NL or NUL separated
6067 * If we use *zsh, "print -N" will work better than "glob".
6068 * STYLE_VIMGLOB: NL separated
6069 * If we use *sh*, we define "vimglob()".
6070 * STYLE_ECHO: space separated.
6071 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 */
6073 if (num_pat == 1 && *pat[0] == '`'
6074 && (len = STRLEN(pat[0])) > 2
6075 && *(pat[0] + len - 1) == '`')
6076 shell_style = STYLE_BT;
6077 else if ((len = STRLEN(p_sh)) >= 3)
6078 {
6079 if (STRCMP(p_sh + len - 3, "csh") == 0)
6080 shell_style = STYLE_GLOB;
6081 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6082 shell_style = STYLE_PRINT;
6083 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006084 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6085 "sh") != NULL)
6086 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087
Bram Moolenaarc7247912008-01-13 12:54:11 +00006088 /* Compute the length of the command. We need 2 extra bytes: for the
6089 * optional '&' and for the NUL.
6090 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006092 if (shell_style == STYLE_VIMGLOB)
6093 len += STRLEN(sh_vimglob_func);
6094
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006095 for (i = 0; i < num_pat; ++i)
6096 {
6097 /* Count the length of the patterns in the same way as they are put in
6098 * "command" below. */
6099#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006101#else
6102 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006103 for (j = 0; pat[i][j] != NUL; ++j)
6104 {
6105 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6106 ++len; /* may add a backslash */
6107 ++len;
6108 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006109#endif
6110 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 command = alloc(len);
6112 if (command == NULL)
6113 {
6114 /* out of memory */
6115 vim_free(tempname);
6116 return FAIL;
6117 }
6118
6119 /*
6120 * Build the shell command:
6121 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6122 * recognizes this).
6123 * - Add the shell command to print the expanded names.
6124 * - Add the temp file name.
6125 * - Add the file name patterns.
6126 */
6127 if (shell_style == STYLE_BT)
6128 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006129 /* change `command; command& ` to (command; command ) */
6130 STRCPY(command, "(");
6131 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006133 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 while (p > command && vim_iswhite(*p))
6135 --p;
6136 if (*p == '&') /* remove trailing '&' */
6137 {
6138 ampersent = TRUE;
6139 *p = ' ';
6140 }
6141 STRCAT(command, ">");
6142 }
6143 else
6144 {
6145 if (flags & EW_NOTFOUND)
6146 STRCPY(command, "set nonomatch; ");
6147 else
6148 STRCPY(command, "unset nonomatch; ");
6149 if (shell_style == STYLE_GLOB)
6150 STRCAT(command, "glob >");
6151 else if (shell_style == STYLE_PRINT)
6152 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006153 else if (shell_style == STYLE_VIMGLOB)
6154 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 else
6156 STRCAT(command, "echo >");
6157 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006158
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006160
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 if (shell_style != STYLE_BT)
6162 for (i = 0; i < num_pat; ++i)
6163 {
6164 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006165 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006166 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167#ifdef USE_SYSTEM
6168 STRCAT(command, " \"");
6169 STRCAT(command, pat[i]);
6170 STRCAT(command, "\"");
6171#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006172 int intick = FALSE;
6173
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 p = command + STRLEN(command);
6175 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006176 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006177 {
6178 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006179 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006180 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6181 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006182 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006183 * backslash inside backticks, before a special character
6184 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006185 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006186 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6187 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006188 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006189 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006190 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006191 else if (!intick
6192 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6193 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006194 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006195 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6196 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006197 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006198
6199 /* Copy one character. */
6200 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 *p = NUL;
6203#endif
6204 }
6205 if (flags & EW_SILENT)
6206 show_shell_mess = FALSE;
6207 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006208 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209
6210 /*
6211 * Using zsh -G: If a pattern has no matches, it is just deleted from
6212 * the argument list, otherwise zsh gives an error message and doesn't
6213 * expand any other pattern.
6214 */
6215 if (shell_style == STYLE_PRINT)
6216 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6217
6218 /*
6219 * If we use -f then shell variables set in .cshrc won't get expanded.
6220 * vi can do it, so we will too, but it is only necessary if there is a "$"
6221 * in one of the patterns, otherwise we can still use the fast option.
6222 */
6223 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6224 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6225
6226 /*
6227 * execute the shell command
6228 */
6229 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6230
6231 /* When running in the background, give it some time to create the temp
6232 * file, but don't wait for it to finish. */
6233 if (ampersent)
6234 mch_delay(10L, TRUE);
6235
6236 extra_shell_arg = NULL; /* cleanup */
6237 show_shell_mess = TRUE;
6238 vim_free(command);
6239
Bram Moolenaarc7247912008-01-13 12:54:11 +00006240 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 {
6242 mch_remove(tempname);
6243 vim_free(tempname);
6244 /*
6245 * With interactive completion, the error message is not printed.
6246 * However with USE_SYSTEM, I don't know how to turn off error messages
6247 * from the shell, so screen may still get messed up -- webb.
6248 */
6249#ifndef USE_SYSTEM
6250 if (!(flags & EW_SILENT))
6251#endif
6252 {
6253 redraw_later_clear(); /* probably messed up screen */
6254 msg_putchar('\n'); /* clear bottom line quickly */
6255 cmdline_row = Rows - 1; /* continue on last line */
6256#ifdef USE_SYSTEM
6257 if (!(flags & EW_SILENT))
6258#endif
6259 {
6260 MSG(_(e_wildexpand));
6261 msg_start(); /* don't overwrite this message */
6262 }
6263 }
6264 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6265 * EW_NOTFOUND is given */
6266 if (shell_style == STYLE_BT)
6267 return FAIL;
6268 goto notfound;
6269 }
6270
6271 /*
6272 * read the names from the file into memory
6273 */
6274 fd = fopen((char *)tempname, READBIN);
6275 if (fd == NULL)
6276 {
6277 /* Something went wrong, perhaps a file name with a special char. */
6278 if (!(flags & EW_SILENT))
6279 {
6280 MSG(_(e_wildexpand));
6281 msg_start(); /* don't overwrite this message */
6282 }
6283 vim_free(tempname);
6284 goto notfound;
6285 }
6286 fseek(fd, 0L, SEEK_END);
6287 len = ftell(fd); /* get size of temp file */
6288 fseek(fd, 0L, SEEK_SET);
6289 buffer = alloc(len + 1);
6290 if (buffer == NULL)
6291 {
6292 /* out of memory */
6293 mch_remove(tempname);
6294 vim_free(tempname);
6295 fclose(fd);
6296 return FAIL;
6297 }
6298 i = fread((char *)buffer, 1, len, fd);
6299 fclose(fd);
6300 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006301 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 {
6303 /* unexpected read error */
6304 EMSG2(_(e_notread), tempname);
6305 vim_free(tempname);
6306 vim_free(buffer);
6307 return FAIL;
6308 }
6309 vim_free(tempname);
6310
Bram Moolenaarc7247912008-01-13 12:54:11 +00006311# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6313 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006314 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6316 *p++ = buffer[i];
6317 len = p - buffer;
6318# endif
6319
6320
6321 /* file names are separated with Space */
6322 if (shell_style == STYLE_ECHO)
6323 {
6324 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6325 p = buffer;
6326 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6327 {
6328 while (*p != ' ' && *p != '\n')
6329 ++p;
6330 p = skipwhite(p); /* skip to next entry */
6331 }
6332 }
6333 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006334 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 {
6336 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6337 p = buffer;
6338 for (i = 0; *p != NUL; ++i) /* count number of entries */
6339 {
6340 while (*p != '\n' && *p != NUL)
6341 ++p;
6342 if (*p != NUL)
6343 ++p;
6344 p = skipwhite(p); /* skip leading white space */
6345 }
6346 }
6347 /* file names are separated with NUL */
6348 else
6349 {
6350 /*
6351 * Some versions of zsh use spaces instead of NULs to separate
6352 * results. Only do this when there is no NUL before the end of the
6353 * buffer, otherwise we would never be able to use file names with
6354 * embedded spaces when zsh does use NULs.
6355 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6356 * don't check for spaces again.
6357 */
6358 check_spaces = FALSE;
6359 if (shell_style == STYLE_PRINT && !did_find_nul)
6360 {
6361 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006362 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006363 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 did_find_nul = TRUE;
6365 else
6366 check_spaces = TRUE;
6367 }
6368
6369 /*
6370 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6371 * already is one, for STYLE_GLOB it needs to be added.
6372 */
6373 if (len && buffer[len - 1] == NUL)
6374 --len;
6375 else
6376 buffer[len] = NUL;
6377 i = 0;
6378 for (p = buffer; p < buffer + len; ++p)
6379 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6380 {
6381 ++i;
6382 *p = NUL;
6383 }
6384 if (len)
6385 ++i; /* count last entry */
6386 }
6387 if (i == 0)
6388 {
6389 /*
6390 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6391 * /bin/sh will happily expand it to nothing rather than returning an
6392 * error; and hey, it's good to check anyway -- webb.
6393 */
6394 vim_free(buffer);
6395 goto notfound;
6396 }
6397 *num_file = i;
6398 *file = (char_u **)alloc(sizeof(char_u *) * i);
6399 if (*file == NULL)
6400 {
6401 /* out of memory */
6402 vim_free(buffer);
6403 return FAIL;
6404 }
6405
6406 /*
6407 * Isolate the individual file names.
6408 */
6409 p = buffer;
6410 for (i = 0; i < *num_file; ++i)
6411 {
6412 (*file)[i] = p;
6413 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006414 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6415 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006417 while (!(shell_style == STYLE_ECHO && *p == ' ')
6418 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 ++p;
6420 if (p == buffer + len) /* last entry */
6421 *p = NUL;
6422 else
6423 {
6424 *p++ = NUL;
6425 p = skipwhite(p); /* skip to next entry */
6426 }
6427 }
6428 else /* NUL separates */
6429 {
6430 while (*p && p < buffer + len) /* skip entry */
6431 ++p;
6432 ++p; /* skip NUL */
6433 }
6434 }
6435
6436 /*
6437 * Move the file names to allocated memory.
6438 */
6439 for (j = 0, i = 0; i < *num_file; ++i)
6440 {
6441 /* Require the files to exist. Helps when using /bin/sh */
6442 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6443 continue;
6444
6445 /* check if this entry should be included */
6446 dir = (mch_isdir((*file)[i]));
6447 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6448 continue;
6449
Bram Moolenaara2031822006-03-07 22:29:51 +00006450 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006451 if (!dir && (flags & EW_EXEC)
6452 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006453 continue;
6454
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6456 if (p)
6457 {
6458 STRCPY(p, (*file)[i]);
6459 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006460 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 (*file)[j++] = p;
6462 }
6463 }
6464 vim_free(buffer);
6465 *num_file = j;
6466
6467 if (*num_file == 0) /* rejected all entries */
6468 {
6469 vim_free(*file);
6470 *file = NULL;
6471 goto notfound;
6472 }
6473
6474 return OK;
6475
6476notfound:
6477 if (flags & EW_NOTFOUND)
6478 return save_patterns(num_pat, pat, num_file, file);
6479 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480}
6481
6482#endif /* VMS */
6483
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006485save_patterns(
6486 int num_pat,
6487 char_u **pat,
6488 int *num_file,
6489 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490{
6491 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006492 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493
6494 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6495 if (*file == NULL)
6496 return FAIL;
6497 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006498 {
6499 s = vim_strsave(pat[i]);
6500 if (s != NULL)
6501 /* Be compatible with expand_filename(): halve the number of
6502 * backslashes. */
6503 backslash_halve(s);
6504 (*file)[i] = s;
6505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 *num_file = num_pat;
6507 return OK;
6508}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510/*
6511 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6512 * expand.
6513 */
6514 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006515mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006517 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 if (*p == '\\' && p[1] != NUL)
6520 ++p;
6521 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522 if (vim_strchr((char_u *)
6523#ifdef VMS
6524 "*?%"
6525#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527#endif
6528 , *p) != NULL)
6529 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 }
6531 return FALSE;
6532}
6533
6534/*
6535 * Return TRUE if the string "p" contains a wildcard.
6536 * Don't recognize '~' at the end as a wildcard.
6537 */
6538 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006539mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006541 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006542 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 if (*p == '\\' && p[1] != NUL)
6544 ++p;
6545 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546 if (vim_strchr((char_u *)
6547#ifdef VMS
6548 "*?%$"
6549#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006550 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551#endif
6552 , *p) != NULL
6553 || (*p == '~' && p[1] != NUL))
6554 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006555 }
6556 return FALSE;
6557}
6558
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006560have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561{
6562 int i;
6563
6564 for (i = 0; i < num; i++)
6565 if (mch_has_wildcard(file[i]))
6566 return 1;
6567 return 0;
6568}
6569
6570 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006571have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006572{
6573 int i;
6574
6575 for (i = 0; i < num; i++)
6576 if (vim_strchr(file[i], '$') != NULL)
6577 return TRUE;
6578 return FALSE;
6579}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006581#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582/*
6583 * Scaled-down version of rename(), which is missing in Xenix.
6584 * This version can only move regular files and will fail if the
6585 * destination exists.
6586 */
6587 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006588mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589{
6590 struct stat st;
6591
6592 if (stat(dest, &st) >= 0) /* fail if destination exists */
6593 return -1;
6594 if (link(src, dest) != 0) /* link file to new name */
6595 return -1;
6596 if (mch_remove(src) == 0) /* delete link to old name */
6597 return 0;
6598 return -1;
6599}
6600#endif /* !HAVE_RENAME */
6601
6602#ifdef FEAT_MOUSE_GPM
6603/*
6604 * Initializes connection with gpm (if it isn't already opened)
6605 * Return 1 if succeeded (or connection already opened), 0 if failed
6606 */
6607 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006608gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609{
6610 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
6611
6612 if (!gpm_flag)
6613 {
6614 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
6615 gpm_connect.defaultMask = ~GPM_HARD;
6616 /* Default handling for mouse move*/
6617 gpm_connect.minMod = 0; /* Handle any modifier keys */
6618 gpm_connect.maxMod = 0xffff;
6619 if (Gpm_Open(&gpm_connect, 0) > 0)
6620 {
6621 /* gpm library tries to handling TSTP causes
6622 * problems. Anyways, we close connection to Gpm whenever
6623 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006624 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006626# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006628# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 return 1; /* succeed */
6630 }
6631 if (gpm_fd == -2)
6632 Gpm_Close(); /* We don't want to talk to xterm via gpm */
6633 return 0;
6634 }
6635 return 1; /* already open */
6636}
6637
6638/*
6639 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640 */
6641 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006642gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643{
6644 if (gpm_flag && gpm_fd >= 0) /* if Open */
6645 Gpm_Close();
6646}
6647
6648/* Reads gpm event and adds special keys to input buf. Returns length of
6649 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02006650 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 */
6652 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006653mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654{
6655 int button;
6656 static Gpm_Event gpm_event;
6657 char_u string[6];
6658 int_u vim_modifiers;
6659 int row,col;
6660 unsigned char buttons_mask;
6661 unsigned char gpm_modifiers;
6662 static unsigned char old_buttons = 0;
6663
6664 Gpm_GetEvent(&gpm_event);
6665
6666#ifdef FEAT_GUI
6667 /* Don't put events in the input queue now. */
6668 if (hold_gui_events)
6669 return 0;
6670#endif
6671
6672 row = gpm_event.y - 1;
6673 col = gpm_event.x - 1;
6674
6675 string[0] = ESC; /* Our termcode */
6676 string[1] = 'M';
6677 string[2] = 'G';
6678 switch (GPM_BARE_EVENTS(gpm_event.type))
6679 {
6680 case GPM_DRAG:
6681 string[3] = MOUSE_DRAG;
6682 break;
6683 case GPM_DOWN:
6684 buttons_mask = gpm_event.buttons & ~old_buttons;
6685 old_buttons = gpm_event.buttons;
6686 switch (buttons_mask)
6687 {
6688 case GPM_B_LEFT:
6689 button = MOUSE_LEFT;
6690 break;
6691 case GPM_B_MIDDLE:
6692 button = MOUSE_MIDDLE;
6693 break;
6694 case GPM_B_RIGHT:
6695 button = MOUSE_RIGHT;
6696 break;
6697 default:
6698 return 0;
6699 /*Don't know what to do. Can more than one button be
6700 * reported in one event? */
6701 }
6702 string[3] = (char_u)(button | 0x20);
6703 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
6704 break;
6705 case GPM_UP:
6706 string[3] = MOUSE_RELEASE;
6707 old_buttons &= ~gpm_event.buttons;
6708 break;
6709 default:
6710 return 0;
6711 }
6712 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6713 gpm_modifiers = gpm_event.modifiers;
6714 vim_modifiers = 0x0;
6715 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6716 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6717 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6718 */
6719 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6720 vim_modifiers |= MOUSE_SHIFT;
6721
6722 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6723 vim_modifiers |= MOUSE_CTRL;
6724 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6725 vim_modifiers |= MOUSE_ALT;
6726 string[3] |= vim_modifiers;
6727 string[4] = (char_u)(col + ' ' + 1);
6728 string[5] = (char_u)(row + ' ' + 1);
6729 add_to_input_buf(string, 6);
6730 return 6;
6731}
6732#endif /* FEAT_MOUSE_GPM */
6733
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006734#ifdef FEAT_SYSMOUSE
6735/*
6736 * Initialize connection with sysmouse.
6737 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6738 * output, any sysmouse output than will be processed via sig_sysmouse().
6739 * Return OK if succeeded, FAIL if failed.
6740 */
6741 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006742sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006743{
6744 struct mouse_info mouse;
6745
6746 mouse.operation = MOUSE_MODE;
6747 mouse.u.mode.mode = 0;
6748 mouse.u.mode.signal = SIGUSR2;
6749 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6750 {
6751 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6752 mouse.operation = MOUSE_SHOW;
6753 ioctl(1, CONS_MOUSECTL, &mouse);
6754 return OK;
6755 }
6756 return FAIL;
6757}
6758
6759/*
6760 * Stop processing SIGUSR2 signals, and also make sure that
6761 * virtual console do not send us any sysmouse related signal.
6762 */
6763 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006764sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006765{
6766 struct mouse_info mouse;
6767
6768 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6769 mouse.operation = MOUSE_MODE;
6770 mouse.u.mode.mode = 0;
6771 mouse.u.mode.signal = 0;
6772 ioctl(1, CONS_MOUSECTL, &mouse);
6773}
6774
6775/*
6776 * Gets info from sysmouse and adds special keys to input buf.
6777 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006778 static RETSIGTYPE
6779sig_sysmouse SIGDEFARG(sigarg)
6780{
6781 struct mouse_info mouse;
6782 struct video_info video;
6783 char_u string[6];
6784 int row, col;
6785 int button;
6786 int buttons;
6787 static int oldbuttons = 0;
6788
6789#ifdef FEAT_GUI
6790 /* Don't put events in the input queue now. */
6791 if (hold_gui_events)
6792 return;
6793#endif
6794
6795 mouse.operation = MOUSE_GETINFO;
6796 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6797 && ioctl(1, FBIO_MODEINFO, &video) != -1
6798 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6799 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6800 {
6801 row = mouse.u.data.y / video.vi_cheight;
6802 col = mouse.u.data.x / video.vi_cwidth;
6803 buttons = mouse.u.data.buttons;
6804 string[0] = ESC; /* Our termcode */
6805 string[1] = 'M';
6806 string[2] = 'S';
6807 if (oldbuttons == buttons && buttons != 0)
6808 {
6809 button = MOUSE_DRAG;
6810 }
6811 else
6812 {
6813 switch (buttons)
6814 {
6815 case 0:
6816 button = MOUSE_RELEASE;
6817 break;
6818 case 1:
6819 button = MOUSE_LEFT;
6820 break;
6821 case 2:
6822 button = MOUSE_MIDDLE;
6823 break;
6824 case 4:
6825 button = MOUSE_RIGHT;
6826 break;
6827 default:
6828 return;
6829 }
6830 oldbuttons = buttons;
6831 }
6832 string[3] = (char_u)(button);
6833 string[4] = (char_u)(col + ' ' + 1);
6834 string[5] = (char_u)(row + ' ' + 1);
6835 add_to_input_buf(string, 6);
6836 }
6837 return;
6838}
6839#endif /* FEAT_SYSMOUSE */
6840
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01006842typedef char_u * (*STRPROCSTR)(char_u *);
6843typedef char_u * (*INTPROCSTR)(int);
6844typedef int (*STRPROCINT)(char_u *);
6845typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846
6847/*
6848 * Call a DLL routine which takes either a string or int param
6849 * and returns an allocated string.
6850 */
6851 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006852mch_libcall(
6853 char_u *libname,
6854 char_u *funcname,
6855 char_u *argstring, /* NULL when using a argint */
6856 int argint,
6857 char_u **string_result,/* NULL when using number_result */
6858 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859{
6860# if defined(USE_DLOPEN)
6861 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006862 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863# else
6864 shl_t hinstLib;
6865# endif
6866 STRPROCSTR ProcAdd;
6867 INTPROCSTR ProcAddI;
6868 char_u *retval_str = NULL;
6869 int retval_int = 0;
6870 int success = FALSE;
6871
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006872 /*
6873 * Get a handle to the DLL module.
6874 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006876 /* First clear any error, it's not cleared by the dlopen() call. */
6877 (void)dlerror();
6878
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 hinstLib = dlopen((char *)libname, RTLD_LAZY
6880# ifdef RTLD_LOCAL
6881 | RTLD_LOCAL
6882# endif
6883 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006884 if (hinstLib == NULL)
6885 {
6886 /* "dlerr" must be used before dlclose() */
6887 dlerr = (char *)dlerror();
6888 if (dlerr != NULL)
6889 EMSG2(_("dlerror = \"%s\""), dlerr);
6890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891# else
6892 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6893# endif
6894
6895 /* If the handle is valid, try to get the function address. */
6896 if (hinstLib != NULL)
6897 {
6898# ifdef HAVE_SETJMP_H
6899 /*
6900 * Catch a crash when calling the library function. For example when
6901 * using a number where a string pointer is expected.
6902 */
6903 mch_startjmp();
6904 if (SETJMP(lc_jump_env) != 0)
6905 {
6906 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006907# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006908 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006909# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 mch_didjmp();
6911 }
6912 else
6913# endif
6914 {
6915 retval_str = NULL;
6916 retval_int = 0;
6917
6918 if (argstring != NULL)
6919 {
6920# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01006921 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006922 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923# else
6924 if (shl_findsym(&hinstLib, (const char *)funcname,
6925 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
6926 ProcAdd = NULL;
6927# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006928 if ((success = (ProcAdd != NULL
6929# if defined(USE_DLOPEN)
6930 && dlerr == NULL
6931# endif
6932 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933 {
6934 if (string_result == NULL)
6935 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6936 else
6937 retval_str = (ProcAdd)(argstring);
6938 }
6939 }
6940 else
6941 {
6942# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01006943 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006944 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945# else
6946 if (shl_findsym(&hinstLib, (const char *)funcname,
6947 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6948 ProcAddI = NULL;
6949# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006950 if ((success = (ProcAddI != NULL
6951# if defined(USE_DLOPEN)
6952 && dlerr == NULL
6953# endif
6954 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955 {
6956 if (string_result == NULL)
6957 retval_int = ((INTPROCINT)ProcAddI)(argint);
6958 else
6959 retval_str = (ProcAddI)(argint);
6960 }
6961 }
6962
6963 /* Save the string before we free the library. */
6964 /* Assume that a "1" or "-1" result is an illegal pointer. */
6965 if (string_result == NULL)
6966 *number_result = retval_int;
6967 else if (retval_str != NULL
6968 && retval_str != (char_u *)1
6969 && retval_str != (char_u *)-1)
6970 *string_result = vim_strsave(retval_str);
6971 }
6972
6973# ifdef HAVE_SETJMP_H
6974 mch_endjmp();
6975# ifdef SIGHASARG
6976 if (lc_signal != 0)
6977 {
6978 int i;
6979
6980 /* try to find the name of this signal */
6981 for (i = 0; signal_info[i].sig != -1; i++)
6982 if (lc_signal == signal_info[i].sig)
6983 break;
6984 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6985 }
6986# endif
6987# endif
6988
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006990 /* "dlerr" must be used before dlclose() */
6991 if (dlerr != NULL)
6992 EMSG2(_("dlerror = \"%s\""), dlerr);
6993
6994 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995 (void)dlclose(hinstLib);
6996# else
6997 (void)shl_unload(hinstLib);
6998# endif
6999 }
7000
7001 if (!success)
7002 {
7003 EMSG2(_(e_libcall), funcname);
7004 return FAIL;
7005 }
7006
7007 return OK;
7008}
7009#endif
7010
7011#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7012static int xterm_trace = -1; /* default: disabled */
7013static int xterm_button;
7014
7015/*
7016 * Setup a dummy window for X selections in a terminal.
7017 */
7018 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007019setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020{
7021 int z = 0;
7022 char *strp = "";
7023 Widget AppShell;
7024
7025 if (!x_connect_to_server())
7026 return;
7027
7028 open_app_context();
7029 if (app_context != NULL && xterm_Shell == (Widget)0)
7030 {
7031 int (*oldhandler)();
7032#if defined(HAVE_SETJMP_H)
7033 int (*oldIOhandler)();
7034#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007035# ifdef ELAPSED_FUNC
7036 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037
7038 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007039 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040# endif
7041
7042 /* Ignore X errors while opening the display */
7043 oldhandler = XSetErrorHandler(x_error_check);
7044
7045#if defined(HAVE_SETJMP_H)
7046 /* Ignore X IO errors while opening the display */
7047 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7048 mch_startjmp();
7049 if (SETJMP(lc_jump_env) != 0)
7050 {
7051 mch_didjmp();
7052 xterm_dpy = NULL;
7053 }
7054 else
7055#endif
7056 {
7057 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7058 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
7059#if defined(HAVE_SETJMP_H)
7060 mch_endjmp();
7061#endif
7062 }
7063
7064#if defined(HAVE_SETJMP_H)
7065 /* Now handle X IO errors normally. */
7066 (void)XSetIOErrorHandler(oldIOhandler);
7067#endif
7068 /* Now handle X errors normally. */
7069 (void)XSetErrorHandler(oldhandler);
7070
7071 if (xterm_dpy == NULL)
7072 {
7073 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007074 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 return;
7076 }
7077
7078 /* Catch terminating error of the X server connection. */
7079 (void)XSetIOErrorHandler(x_IOerror_handler);
7080
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007081# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007083 {
7084 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007085 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007086 verbose_leave();
7087 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088# endif
7089
7090 /* Create a Shell to make converters work. */
7091 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7092 applicationShellWidgetClass, xterm_dpy,
7093 NULL);
7094 if (AppShell == (Widget)0)
7095 return;
7096 xterm_Shell = XtVaCreatePopupShell("VIM",
7097 topLevelShellWidgetClass, AppShell,
7098 XtNmappedWhenManaged, 0,
7099 XtNwidth, 1,
7100 XtNheight, 1,
7101 NULL);
7102 if (xterm_Shell == (Widget)0)
7103 return;
7104
7105 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007106 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107 if (x11_display == NULL)
7108 x11_display = xterm_dpy;
7109
7110 XtRealizeWidget(xterm_Shell);
7111 XSync(xterm_dpy, False);
7112 xterm_update();
7113 }
7114 if (xterm_Shell != (Widget)0)
7115 {
7116 clip_init(TRUE);
7117 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7118 x11_window = (Window)atol(strp);
7119 /* Check if $WINDOWID is valid. */
7120 if (test_x11_window(xterm_dpy) == FAIL)
7121 x11_window = 0;
7122 if (x11_window != 0)
7123 xterm_trace = 0;
7124 }
7125}
7126
7127 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007128start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129{
7130 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7131 return;
7132 xterm_trace = 1;
7133 xterm_button = button;
7134 do_xterm_trace();
7135}
7136
7137
7138 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007139stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140{
7141 if (xterm_trace < 0)
7142 return;
7143 xterm_trace = 0;
7144}
7145
7146/*
7147 * Query the xterm pointer and generate mouse termcodes if necessary
7148 * return TRUE if dragging is active, else FALSE
7149 */
7150 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007151do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152{
7153 Window root, child;
7154 int root_x, root_y;
7155 int win_x, win_y;
7156 int row, col;
7157 int_u mask_return;
7158 char_u buf[50];
7159 char_u *strp;
7160 long got_hints;
7161 static char_u *mouse_code;
7162 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7163 static int prev_row = 0, prev_col = 0;
7164 static XSizeHints xterm_hints;
7165
7166 if (xterm_trace <= 0)
7167 return FALSE;
7168
7169 if (xterm_trace == 1)
7170 {
7171 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007172 * have changed recently. */
7173 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7174 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 || xterm_hints.width_inc <= 1
7176 || xterm_hints.height_inc <= 1)
7177 {
7178 xterm_trace = -1; /* Not enough data -- disable tracing */
7179 return FALSE;
7180 }
7181
7182 /* Rely on the same mouse code for the duration of this */
7183 mouse_code = find_termcode(mouse_name);
7184 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007185 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 xterm_trace = 2;
7187
7188 /* Find the offset of the chars, there might be a scrollbar on the
7189 * left of the window and/or a menu on the top (eterm etc.) */
7190 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7191 &win_x, &win_y, &mask_return);
7192 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7193 - (xterm_hints.height_inc / 2);
7194 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7195 xterm_hints.y = 2;
7196 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7197 - (xterm_hints.width_inc / 2);
7198 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7199 xterm_hints.x = 2;
7200 return TRUE;
7201 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007202 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 {
7204 xterm_trace = 0;
7205 return FALSE;
7206 }
7207
7208 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7209 &win_x, &win_y, &mask_return);
7210
7211 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7212 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7213 if (row == prev_row && col == prev_col)
7214 return TRUE;
7215
7216 STRCPY(buf, mouse_code);
7217 strp = buf + STRLEN(buf);
7218 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7219 *strp++ = (char_u)(col + ' ' + 1);
7220 *strp++ = (char_u)(row + ' ' + 1);
7221 *strp = 0;
7222 add_to_input_buf(buf, STRLEN(buf));
7223
7224 prev_row = row;
7225 prev_col = col;
7226 return TRUE;
7227}
7228
7229# if defined(FEAT_GUI) || defined(PROTO)
7230/*
7231 * Destroy the display, window and app_context. Required for GTK.
7232 */
7233 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007234clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235{
7236 if (xterm_Shell != (Widget)0)
7237 {
7238 XtDestroyWidget(xterm_Shell);
7239 xterm_Shell = (Widget)0;
7240 }
7241 if (xterm_dpy != NULL)
7242 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007243# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 /* Lesstif and Solaris crash here, lose some memory */
7245 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007246# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 if (x11_display == xterm_dpy)
7248 x11_display = NULL;
7249 xterm_dpy = NULL;
7250 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007251# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007252 if (app_context != (XtAppContext)NULL)
7253 {
7254 /* Lesstif and Solaris crash here, lose some memory */
7255 XtDestroyApplicationContext(app_context);
7256 app_context = (XtAppContext)NULL;
7257 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007258# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259}
7260# endif
7261
7262/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007263 * Catch up with GUI or X events.
7264 */
7265 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007266clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007267{
7268# ifdef FEAT_GUI
7269 if (gui.in_use)
7270 gui_mch_update();
7271 else
7272# endif
7273 if (xterm_Shell != (Widget)0)
7274 xterm_update();
7275}
7276
7277/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007278 * Catch up with any queued X events. This may put keyboard input into the
7279 * input buffer, call resize call-backs, trigger timers etc. If there is
7280 * nothing in the X event queue (& no timers pending), then we return
7281 * immediately.
7282 */
7283 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007284xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285{
7286 XEvent event;
7287
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007288 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007289 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007290 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007292 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007293 break;
7294
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007295 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007296 {
7297 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007298 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007299#ifdef FEAT_CLIENTSERVER
7300 {
7301 XPropertyEvent *e = (XPropertyEvent *)&event;
7302
7303 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007305 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007306 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007308 XtDispatchEvent(&event);
7309 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007310 else
7311 {
7312 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007313 XtAppProcessEvent(app_context, mask);
7314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315 }
7316}
7317
7318 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007319clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007320{
7321 if (xterm_Shell != (Widget)0)
7322 return clip_x11_own_selection(xterm_Shell, cbd);
7323 return FAIL;
7324}
7325
7326 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007327clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328{
7329 if (xterm_Shell != (Widget)0)
7330 clip_x11_lose_selection(xterm_Shell, cbd);
7331}
7332
7333 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007334clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335{
7336 if (xterm_Shell != (Widget)0)
7337 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7338}
7339
7340 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007341clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342{
7343 clip_x11_set_selection(cbd);
7344}
7345#endif
7346
7347
7348#if defined(USE_XSMP) || defined(PROTO)
7349/*
7350 * Code for X Session Management Protocol.
7351 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007352static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast);
7353static void xsmp_die(SmcConn smc_conn, SmPointer client_data);
7354static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data);
7355static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data);
7356static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007357
7358
7359# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007360static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007361
7362/*
7363 * This is our chance to ask the user if they want to save,
7364 * or abort the logout
7365 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007367xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007368{
7369 cmdmod_T save_cmdmod;
7370 int cancel_shutdown = False;
7371
7372 save_cmdmod = cmdmod;
7373 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007374 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375 /* Mustn't logout */
7376 cancel_shutdown = True;
7377 cmdmod = save_cmdmod;
7378 setcursor(); /* position cursor */
7379 out_flush();
7380
7381 /* Done interaction */
7382 SmcInteractDone(smc_conn, cancel_shutdown);
7383
7384 /* Finish off
7385 * Only end save-yourself here if we're not cancelling shutdown;
7386 * we'll get a cancelled callback later in which we'll end it.
7387 * Hopefully get around glitchy SMs (like GNOME-1)
7388 */
7389 if (!cancel_shutdown)
7390 {
7391 xsmp.save_yourself = False;
7392 SmcSaveYourselfDone(smc_conn, True);
7393 }
7394}
7395# endif
7396
7397/*
7398 * Callback that starts save-yourself.
7399 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007401xsmp_handle_save_yourself(
7402 SmcConn smc_conn,
7403 SmPointer client_data UNUSED,
7404 int save_type UNUSED,
7405 Bool shutdown,
7406 int interact_style UNUSED,
7407 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408{
7409 /* Handle already being in saveyourself */
7410 if (xsmp.save_yourself)
7411 SmcSaveYourselfDone(smc_conn, True);
7412 xsmp.save_yourself = True;
7413 xsmp.shutdown = shutdown;
7414
7415 /* First up, preserve all files */
7416 out_flush();
7417 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7418
7419 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007420 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421
7422# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7423 /* Now see if we can ask about unsaved files */
7424 if (shutdown && !fast && gui.in_use)
7425 /* Need to interact with user, but need SM's permission */
7426 SmcInteractRequest(smc_conn, SmDialogError,
7427 xsmp_handle_interaction, client_data);
7428 else
7429# endif
7430 {
7431 /* Can stop the cycle here */
7432 SmcSaveYourselfDone(smc_conn, True);
7433 xsmp.save_yourself = False;
7434 }
7435}
7436
7437
7438/*
7439 * Callback to warn us of imminent death.
7440 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007441 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007442xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443{
7444 xsmp_close();
7445
7446 /* quit quickly leaving swapfiles for modified buffers behind */
7447 getout_preserve_modified(0);
7448}
7449
7450
7451/*
7452 * Callback to tell us that save-yourself has completed.
7453 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007454 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007455xsmp_save_complete(
7456 SmcConn smc_conn UNUSED,
7457 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458{
7459 xsmp.save_yourself = False;
7460}
7461
7462
7463/*
7464 * Callback to tell us that an instigated shutdown was cancelled
7465 * (maybe even by us)
7466 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007467 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007468xsmp_shutdown_cancelled(
7469 SmcConn smc_conn,
7470 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471{
7472 if (xsmp.save_yourself)
7473 SmcSaveYourselfDone(smc_conn, True);
7474 xsmp.save_yourself = False;
7475 xsmp.shutdown = False;
7476}
7477
7478
7479/*
7480 * Callback to tell us that a new ICE connection has been established.
7481 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007483xsmp_ice_connection(
7484 IceConn iceConn,
7485 IcePointer clientData UNUSED,
7486 Bool opening,
7487 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488{
7489 /* Intercept creation of ICE connection fd */
7490 if (opening)
7491 {
7492 xsmp_icefd = IceConnectionNumber(iceConn);
7493 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7494 }
7495}
7496
7497
7498/* Handle any ICE processing that's required; return FAIL if SM lost */
7499 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007500xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501{
7502 Bool rep;
7503
7504 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7505 == IceProcessMessagesIOError)
7506 {
7507 /* Lost ICE */
7508 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007509 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510 xsmp_close();
7511 return FAIL;
7512 }
7513 else
7514 return OK;
7515}
7516
7517static int dummy;
7518
7519/* Set up X Session Management Protocol */
7520 void
7521xsmp_init(void)
7522{
7523 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007524 SmcCallbacks smcallbacks;
7525#if 0
7526 SmPropValue smname;
7527 SmProp smnameprop;
7528 SmProp *smprops[1];
7529#endif
7530
7531 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007532 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533
7534 xsmp.save_yourself = xsmp.shutdown = False;
7535
7536 /* Set up SM callbacks - must have all, even if they're not used */
7537 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7538 smcallbacks.save_yourself.client_data = NULL;
7539 smcallbacks.die.callback = xsmp_die;
7540 smcallbacks.die.client_data = NULL;
7541 smcallbacks.save_complete.callback = xsmp_save_complete;
7542 smcallbacks.save_complete.client_data = NULL;
7543 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7544 smcallbacks.shutdown_cancelled.client_data = NULL;
7545
7546 /* Set up a watch on ICE connection creations. The "dummy" argument is
7547 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7548 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7549 {
7550 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007551 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007552 return;
7553 }
7554
7555 /* Create an SM connection */
7556 xsmp.smcconn = SmcOpenConnection(
7557 NULL,
7558 NULL,
7559 SmProtoMajor,
7560 SmProtoMinor,
7561 SmcSaveYourselfProcMask | SmcDieProcMask
7562 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7563 &smcallbacks,
7564 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007565 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566 sizeof(errorstring),
7567 errorstring);
7568 if (xsmp.smcconn == NULL)
7569 {
7570 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007571
Bram Moolenaar071d4272004-06-13 20:20:40 +00007572 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007573 {
7574 vim_snprintf(errorreport, sizeof(errorreport),
7575 _("XSMP SmcOpenConnection failed: %s"), errorstring);
7576 verb_msg((char_u *)errorreport);
7577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007578 return;
7579 }
7580 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7581
7582#if 0
7583 /* ID ourselves */
7584 smname.value = "vim";
7585 smname.length = 3;
7586 smnameprop.name = "SmProgram";
7587 smnameprop.type = "SmARRAY8";
7588 smnameprop.num_vals = 1;
7589 smnameprop.vals = &smname;
7590
7591 smprops[0] = &smnameprop;
7592 SmcSetProperties(xsmp.smcconn, 1, smprops);
7593#endif
7594}
7595
7596
7597/* Shut down XSMP comms. */
7598 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007599xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600{
7601 if (xsmp_icefd != -1)
7602 {
7603 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00007604 if (xsmp.clientid != NULL)
7605 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00007606 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007607 xsmp_icefd = -1;
7608 }
7609}
7610#endif /* USE_XSMP */
7611
7612
7613#ifdef EBCDIC
7614/* Translate character to its CTRL- value */
7615char CtrlTable[] =
7616{
7617/* 00 - 5E */
7618 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7619 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7620 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7621 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7622 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7623 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7624/* ^ */ 0x1E,
7625/* - */ 0x1F,
7626/* 61 - 6C */
7627 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7628/* _ */ 0x1F,
7629/* 6E - 80 */
7630 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7631/* a */ 0x01,
7632/* b */ 0x02,
7633/* c */ 0x03,
7634/* d */ 0x37,
7635/* e */ 0x2D,
7636/* f */ 0x2E,
7637/* g */ 0x2F,
7638/* h */ 0x16,
7639/* i */ 0x05,
7640/* 8A - 90 */
7641 0, 0, 0, 0, 0, 0, 0,
7642/* j */ 0x15,
7643/* k */ 0x0B,
7644/* l */ 0x0C,
7645/* m */ 0x0D,
7646/* n */ 0x0E,
7647/* o */ 0x0F,
7648/* p */ 0x10,
7649/* q */ 0x11,
7650/* r */ 0x12,
7651/* 9A - A1 */
7652 0, 0, 0, 0, 0, 0, 0, 0,
7653/* s */ 0x13,
7654/* t */ 0x3C,
7655/* u */ 0x3D,
7656/* v */ 0x32,
7657/* w */ 0x26,
7658/* x */ 0x18,
7659/* y */ 0x19,
7660/* z */ 0x3F,
7661/* AA - AC */
7662 0, 0, 0,
7663/* [ */ 0x27,
7664/* AE - BC */
7665 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7666/* ] */ 0x1D,
7667/* BE - C0 */ 0, 0, 0,
7668/* A */ 0x01,
7669/* B */ 0x02,
7670/* C */ 0x03,
7671/* D */ 0x37,
7672/* E */ 0x2D,
7673/* F */ 0x2E,
7674/* G */ 0x2F,
7675/* H */ 0x16,
7676/* I */ 0x05,
7677/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
7678/* J */ 0x15,
7679/* K */ 0x0B,
7680/* L */ 0x0C,
7681/* M */ 0x0D,
7682/* N */ 0x0E,
7683/* O */ 0x0F,
7684/* P */ 0x10,
7685/* Q */ 0x11,
7686/* R */ 0x12,
7687/* DA - DF */ 0, 0, 0, 0, 0, 0,
7688/* \ */ 0x1C,
7689/* E1 */ 0,
7690/* S */ 0x13,
7691/* T */ 0x3C,
7692/* U */ 0x3D,
7693/* V */ 0x32,
7694/* W */ 0x26,
7695/* X */ 0x18,
7696/* Y */ 0x19,
7697/* Z */ 0x3F,
7698/* EA - FF*/ 0, 0, 0, 0, 0, 0,
7699 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7700};
7701
7702char MetaCharTable[]=
7703{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7704 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
7705 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
7706 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
7707 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
7708};
7709
7710
7711/* TODO: Use characters NOT numbers!!! */
7712char CtrlCharTable[]=
7713{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7714 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
7715 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
7716 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
7717 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
7718};
7719
7720
7721#endif